diff --git a/.github/workflows/codeql.yaml b/.github/workflows/codeql.yaml new file mode 100644 index 0000000..9287a65 --- /dev/null +++ b/.github/workflows/codeql.yaml @@ -0,0 +1,24 @@ +name: CodeQL Analysis + +on: + push: + pull_request: + schedule: + - cron: '0 0 * * 0' + +jobs: + CodeQL-Build: + strategy: + fail-fast: false + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: go + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 5a4df79..02d8291 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -15,13 +15,13 @@ jobs: os: [ ubuntu-latest ] steps: - name: Set up Go 1.x - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: - go-version: '>= 1.19.1' + go-version: stable id: go - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Docker Build - run: make docker-watchmantest && make docker-webhook + run: make docker-watchmantest diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..28d5681 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,119 @@ +name: Go + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + name: Go Build + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, macos-latest] + # Settings for test_split + total_test_splits: [5] + index: [0, 1, 2, 3, 4] + + steps: + - name: Check out code into the Go module directory + uses: actions/checkout@v3 + + - name: Set up Go 1.x + uses: actions/setup-go@v4 + with: + go-version: stable + id: go + + - name: Setup + if: runner.os == 'Linux' + run: docker-compose up -d mysql + + - name: Generate go test Slice + id: test_split + uses: hashicorp-forge/go-test-split-action@v1 + with: + total: ${{ matrix.total_test_splits }} + index: ${{ matrix.index }} + + - name: Run Tests (Linux) + if: runner.os == 'Linux' + env: + GOTEST_FLAGS: '-run "${{ steps.test_split.outputs.run}}"' + run: make check + + - name: Run Short Tests (Non-Linux) + if: runner.os != 'Linux' + env: + GOTEST_FLAGS: '-short -run "${{ steps.test_split.outputs.run}}"' + run: make check + + - name: Upload Code Coverage + if: runner.os == 'Linux' + run: bash <(curl -s https://codecov.io/bash) + + winbuild: + name: Build (Windows) + runs-on: [ windows-latest ] + steps: + - name: Check out code into the Go module directory + uses: actions/checkout@v3 + + - name: Set up Go 1.x + uses: actions/setup-go@v4 + with: + go-version: stable + id: go + + - name: Install make (Windows) + run: | + choco install -y make mingw + + - name: Run Short Tests (Non-Linux) + run: | + go test ./... -short + + docker: + name: Docker build + runs-on: [ ubuntu-latest ] + steps: + - name: Setup Node / NPM + if: runner.os == 'Linux' + uses: actions/setup-node@v3 + with: + node-version: '20' + + - name: Check out code into the Go module directory + uses: actions/checkout@v3 + + # disable and stop mono-xsp4.service + # Details: https://github.com/actions/virtual-environments/issues/2821 + - name: Ubuntu 20.04 Cleanup + if: runner.os == 'Linux' + run: | + sudo systemctl disable mono-xsp4.service || true + sudo systemctl stop mono-xsp4.service || true + sudo killall mono || true + + - name: Build Frontend + run: make build + + - name: Docker Build + if: runner.os == 'Linux' + run: make docker-hub + + - name: Build batchsearch + if: runner.os == 'Linux' + run: make build-batchsearch + + # - name: Integration Test + # if: runner.os == 'Linux' + # run: make test-integration + + - name: Test Cleanup + if: runner.os == 'Linux' && always() + run: | + docker-compose logs + make clean-integration diff --git a/.github/workflows/openshift.yml b/.github/workflows/openshift.yml index 7126a11..4004de3 100644 --- a/.github/workflows/openshift.yml +++ b/.github/workflows/openshift.yml @@ -15,19 +15,19 @@ jobs: os: [ ubuntu-latest ] steps: - name: Set up Go 1.x - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: - go-version: '>= 1.19.1' + go-version: stable id: go - name: Setup Node / NPM if: runner.os == 'Linux' - uses: actions/setup-node@v2-beta + uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '20' - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Docker Build if: runner.os == 'Linux' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..fbd3e51 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,174 @@ +name: Create Release + +on: + push: + tags: [ "v*.*.*" ] + +jobs: + testing: + name: Testing + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + steps: + - name: Set up Go 1.x + uses: actions/setup-go@v4 + with: + go-version: stable + id: go + + - name: Check out code into the Go module directory + uses: actions/checkout@v3 + + - name: Setup + if: runner.os == 'Linux' + run: docker-compose up -d mysql + + - name: Short Tests + if: runner.os == 'Linux' + env: + GOTEST_FLAGS: "-short" + run: make check + + create_release: + name: Create Release + needs: [testing] + runs-on: ubuntu-latest + steps: + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + prerelease: true + + - name: Output Release URL File + run: echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt + + - name: Save Release URL File for publish + uses: actions/upload-artifact@v3 + with: + name: release_url + path: release_url.txt + + publish: + name: Publish + needs: [testing, create_release] + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + steps: + - name: Set up Go 1.x + uses: actions/setup-go@v4 + with: + go-version: stable + id: go + + - name: Setup Node / NPM + uses: actions/setup-node@v3 + with: + node-version: '20' + + - name: Check out code into the Go module directory + uses: actions/checkout@v3 + + - name: Load Release URL File from release job + uses: actions/download-artifact@v1 + with: + name: release_url + + - name: Distribute + run: make dist + + - name: Get Release File Name & Upload URL + id: get_release_info + shell: bash + run: | + value=`cat release_url/release_url.txt` + echo ::set-output name=upload_url::$value + env: + TAG_REF_NAME: ${{ github.ref }} + REPOSITORY_NAME: ${{ github.repository }} + + - name: Upload Linux Binary + if: runner.os == 'Linux' + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.get_release_info.outputs.upload_url }} + asset_path: ./bin/watchman-linux-amd64 + asset_name: watchman-linux-amd64 + asset_content_type: application/octet-stream + + - name: Upload macOS Binary + if: runner.os == 'macOS' + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.get_release_info.outputs.upload_url }} + asset_path: ./bin/watchman-darwin-amd64 + asset_name: watchman-darwin-amd64 + asset_content_type: application/octet-stream + + - name: Upload Windows Binary + if: runner.os == 'Windows' + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.get_release_info.outputs.upload_url }} + asset_path: ./bin/watchman.exe + asset_name: watchman.exe + asset_content_type: application/octet-stream + + docker: + name: Docker + needs: [testing, create_release] + runs-on: ubuntu-latest + steps: + - name: Set up Go 1.x + uses: actions/setup-go@v4 + with: + go-version: stable + id: go + + - name: Check out code into the Go module directory + uses: actions/checkout@v3 + + - name: Clean + run: make clean + + - name: Docker Hub + run: make docker-hub + + - name: Docker Openshift + run: make docker-openshift + + - name: Docker Static + run: make docker-static + + - name: Docker watchmantest + run: make docker-watchmantest + + - name: Docker Push + run: |+ + echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin + make release-push + env: + DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} + DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} + + - name: Quay.io Push + run: |+ + echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin quay.io + make quay-push + env: + DOCKER_USERNAME: ${{ secrets.QUAY_USERNAME }} + DOCKER_PASSWORD: ${{ secrets.QUAY_PASSWORD }} diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index d311d09..a19a699 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -15,16 +15,16 @@ jobs: os: [ ubuntu-latest ] steps: - name: Set up Go 1.x - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: - go-version: '>= 1.19.1' + go-version: stable id: go - name: Setup Node / NPM if: runner.os == 'Linux' - uses: actions/setup-node@v2-beta + uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '20' - name: Check out code into the Go module directory uses: actions/checkout@v2 diff --git a/.gitignore b/.gitignore index 866448a..05d3c8a 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,7 @@ coverage.txt /bin/ /lint-project.sh +/gitleaks.tar.gz misspell* staticcheck* @@ -28,4 +29,6 @@ openapi-generator*jar *.db webui/build/ -webui/node_modules/ \ No newline at end of file +webui/node_modules/ + +makefile.dev \ No newline at end of file diff --git a/.gitleaksignore b/.gitleaksignore new file mode 100644 index 0000000..36792c6 --- /dev/null +++ b/.gitleaksignore @@ -0,0 +1 @@ +client/api/openapi.yaml:generic-api-key:2923 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a977c4..feeb8dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,100 @@ +## v0.27.0 (Released 2023-12-14) + +This release of Watchman includes additional improvements to the search match scores to [reduce false positives and increase true positive matches](https://github.com/moov-io/watchman/pull/524#issue-2031927107). A few of the specific improvements are: + +1. Compare tokens in the search to the index tokens + - i.e. "find matches for every search token" rather than "find match for every indexed token" + - Improves scores of searches that don't include "middle" names + - Prevents sanctioned names that are 1 word (HADI, EMMA, KAMILA) matching long searches + - Has a side-effect that short search terms will have more false positives. I think this is a good trade off as the sanction lists will always contain the full name, but the search might not +2. Once a token has matched something, it can't match a different token + - This prevents names with repeated words having artificially high scores + - e.g. prevents any search containing "Vladimir" matching "VLADIMIROV, Vladimir Vladimirovich" +3. Weights each word-score by the length of the word, relative to the search and indexed name + - This corrects for error that is introduced by splitting names into tokens and doing piecewise Jaro-Winkler scoring + - Combing word-scores using a simple average gives short words (like Li, Al) equal weight to much longer words + - The length-weighted scores are comparable to what you get by doing whole-name to whole-name Jaro-Winkler comparison +4. Punishes word-scores when the matching tokens have significantly different length +5. Punishes word-scores when the matching tokens start with different letters + +## v0.26.1 (Released 2023-11-20) + +This release of Watchman has removed Company/Customer models and Watches. They've been deprecated for a while and do not perform as users expect. Stay tuned for a future Moov OSS project integrating with Watchman for sanctions screening. + +IMPROVEMENTS + +- feat: return matchedName in non-OFAC results +- search: apply more edge case logic to decrease bad scoring +- search: return matchedName for OFAC SDNs, Alts, and DPL records +- test: remove duplicate (and skipped) UK/EU CSL tests + +## v0.25.0 (Released 2023-11-15) + +This release of Watchman lowers most match percentages by comparing names better. + +IMPROVEMENTS + +- fix: close xml encoder +- fix: panic cleanup from newer linter rules +- cmd/server: only check adjacent terms for local jaro max score +- cmd/server: read ADJACENT_SIMILARITY_POSITIONS env var +- cmd/server: weight term score by length similarity + +BUILD + +- build: bump numerous javascript dependencies +- build: update to Go 1.21 +- build: update to node 20 +- build: update Debian, Fedora, node, and Go base images + +## v0.24.2 (Released 2023-04-03) + +IMPROVEMENTS + +- fix: keep numbers during stopwords step +- fix: stop setting level=error for info logs + +BUILD + +- bump golang.org/x/crypto to v0.6.0 +- bump golang.org/x/net from 0.6.0 to 0.7.0 +- build(deps): bump activesupport from 6.1.7.2 to 7.0.4.3 in /docs +- build(deps): bump webpack from 5.75.0 to 5.76.1 in /webui + +## v0.24.1 (Released 2023-02-16) + +IMPROVEMENTS + +- fix: filter SDNs in async search rather than truncate + +BUILD + +- build: update Go dependencies +- docs: bundle update +- webui: npm audit fix + +## v0.24.0 (Released 2023-02-02) + +ADDITIONS + +- search: Add the EU Consolidated Screening List +- search: Add the UK Consolidated Screening List + +IMPROVEMENTS + +- feat: log status after download +- fix: guard around race condition in pkg/download +- fix: cap match percentage + +BUILD + +- build: upgrade golang to 1.20 +- build: try using hashicorp-forge/go-test-split-action to speedup tests +- build(deps): bump activesupport from 6.0.3.4 to 6.0.6.1 in /docs +- build(deps): bump json5 from 1.0.1 to 1.0.2 in /webui +- build(deps): bump loader-utils from 2.0.0 to 2.0.4 in /webui +- build(deps): bump nokogiri from 1.13.6 to 1.13.9 in /docs + ## v0.23.1 (Released 2022-10-17) IMPROVEMENTS diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 24ccd57..793e7e1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -24,7 +24,7 @@ We use GitHub to manage reviews of pull requests. Before starting please make sure you have Go setup and can build our projects from source. -This project uses [Go Modules](https://github.com/golang/go/wiki/Modules) and uses Go 1.14 or higher. See [Golang's install instructions](https://golang.org/doc/install) for help setting up Go. You can download the source code and we offer [tagged and released versions](https://github.com/moov-io/watchman/releases/latest) as well. We highly recommend you use a tagged release for production. +This project uses [Go Modules](https://go.dev/blog/using-go-modules) and Go v1.18 or newer. See [Golang's install instructions](https://golang.org/doc/install) for help setting up Go. You can download the source code and we offer [tagged and released versions](https://github.com/moov-io/watchman/releases/latest) as well. We highly recommend you use a tagged release for production. ``` # Just pull down into the Go Module's cache, not the source code. diff --git a/Dockerfile b/Dockerfile index 9f7c5a3..334e14c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM golang:1.19-buster as backend +FROM golang:1.21-bookworm as backend WORKDIR /go/src/github.com/moov-io/watchman RUN apt-get update && apt-get upgrade -y && apt-get install make gcc g++ COPY . . RUN go mod download RUN make build-server -FROM node:18-buster as frontend +FROM node:21-bookworm as frontend COPY webui/ /watchman/ WORKDIR /watchman/ RUN npm install --legacy-peer-deps @@ -22,6 +22,6 @@ ENV WEB_ROOT=/watchman/ # USER moov # TODO(adam): non-root users -EXPOSE 8080 -EXPOSE 9090 +EXPOSE 8084 +EXPOSE 9094 ENTRYPOINT ["/bin/server"] diff --git a/Dockerfile-openshift b/Dockerfile-openshift index b3f0029..c1df8b0 100644 --- a/Dockerfile-openshift +++ b/Dockerfile-openshift @@ -1,16 +1,16 @@ -FROM quay.io/fedora/fedora:37-x86_64 as builder +FROM quay.io/fedora/fedora:40-x86_64 as builder RUN yum install -y git golang make npm wget glibc WORKDIR /opt/app-root/src/ COPY . . RUN make build -FROM node:18-buster as frontend +FROM node:21-bookworm as frontend COPY webui/ /watchman/ WORKDIR /watchman/ RUN npm install --legacy-peer-deps RUN npm run build -FROM quay.io/fedora/fedora:37-x86_64 +FROM quay.io/fedora/fedora:40-x86_64 RUN yum install -y glibc ARG VERSION=unknown diff --git a/README.md b/README.md index ea08dbc..80033f0 100644 --- a/README.md +++ b/README.md @@ -38,22 +38,27 @@ Lists included in search are: - Includes SDN, SDN Alternative Names, SDN Addresses - [United States Consolidated Screening List](https://www.export.gov/article2?id=Consolidated-Screening-List) - Department of Commerce – Bureau of Industry and Security - - [Denied Persons List](http://www.bis.doc.gov/dpl/default.shtm) - - [Unverified List](http://www.bis.doc.gov/enforcement/unverifiedlist/unverified_parties.html) - - [Entity List](http://www.bis.doc.gov/entities/default.htm) + - [Denied Persons List](https://www.bis.doc.gov/index.php/policy-guidance/lists-of-parties-of-concern/denied-persons-list) + - [Unverified List](https://www.bis.doc.gov/index.php/policy-guidance/lists-of-parties-of-concern/unverified-list) + - [Entity List](https://www.bis.doc.gov/index.php/policy-guidance/lists-of-parties-of-concern/entity-list) - Department of State – Bureau of International Security and Non-proliferation - [Nonproliferation Sanctions](http://www.state.gov/t/isn/c15231.htm) - Department of State – Directorate of Defense Trade Controls - ITAR Debarred (DTC) - Department of the Treasury – Office of Foreign Assets Control - - [Specially Designated Nationals List](http://www.treasury.gov/resource-center/sanctions/SDN-List/Pages/default.aspx) - - [Foreign Sanctions Evaders List](http://www.treasury.gov/resource-center/sanctions/SDN-List/Pages/fse_list.aspx) - - [Sectoral Sanctions Identifications List](http://www.treasury.gov/resource-center/sanctions/SDN-List/Pages/ssi_list.aspx) - - [Palestinian Legislative Council List](https://www.treasury.gov/resource-center/sanctions/Terrorism-Proliferation-Narcotics/Pages/pa.aspx) + - [Specially Designated Nationals List](https://ofac.treasury.gov/specially-designated-nationals-list-data-formats-data-schemas) + - [Foreign Sanctions Evaders List](https://ofac.treasury.gov/consolidated-sanctions-list-non-sdn-lists/foreign-sanctions-evaders-fse-list) + - [Sectoral Sanctions Identifications List](https://ofac.treasury.gov/consolidated-sanctions-list-non-sdn-lists/sectoral-sanctions-identifications-ssi-list) + - [Palestinian Legislative Council List](https://ofac.treasury.gov/consolidated-sanctions-list/non-sdn-palestinian-legislative-council-ns-plc-list) - Department of the Treasury – Office of Foreign Assets Control - - [Sectoral Sanctions Identifications List](http://www.treasury.gov/resource-center/sanctions/SDN-List/Pages/ssi_list.aspx) + - [Sectoral Sanctions Identifications List](https://ofac.treasury.gov/consolidated-sanctions-list-non-sdn-lists/sectoral-sanctions-identifications-ssi-list) +- [EU - Consolidated Sanctions List](https://data.europa.eu/data/datasets/consolidated-list-of-persons-groups-and-entities-subject-to-eu-financial-sanctions?locale=en) + - NOTE: it is recommended to [create your own europa.eu account](https://webgate.ec.europa.eu/cas/login) and then access the [EU Financial Sanctions Files](https://webgate.ec.europa.eu/fsd/fsf) + - Use the token described under the "Show settings for crawler/robot" section +- [UK - OFSI Sactions List](https://www.gov.uk/government/publications/financial-sanctions-consolidated-list-of-targets/consolidated-list-of-targets#contents) +- [UK - Sanctions List](https://www.gov.uk/government/publications/the-uk-sanctions-list) (Disabled by default) -All United States and European Union companies are required to comply with various regulations and sanction lists (such as the US Patriot Act requiring compliance with the BIS Denied Persons List). Moov's primary usage for this project is with ACH origination in our [paygate](https://github.com/moov-io/paygate) project. +All United States, UK and European Union companies are required to comply with various regulations and sanction lists (such as the US Patriot Act requiring compliance with the BIS Denied Persons List). ## Table of contents @@ -78,13 +83,11 @@ Moov Watchman is actively used in multiple production environments. Please star ## Usage -The Watchman project implements an HTTP server and [Go library](https://pkg.go.dev/github.com/moov-io/watchman) for searching, parsing, and downloading lists. We also have an [example](https://pkg.go.dev/github.com/moov-io/watchman/examples) of the webhook service. Below, you can find a detailed list of features offered by Watchman: +The Watchman project implements an HTTP server and [Go library](https://pkg.go.dev/github.com/moov-io/watchman) for searching, parsing, and downloading lists. Below, you can find a detailed list of features offered by Watchman: -- Download OFAC, BIS Denied Persons List (DPL), and various other data sources on startup +- Download OFAC, US/UK/EU CSL, BIS Denied Persons List (DPL), and various other data sources on startup - Admin endpoint to [manually refresh OFAC and DPL data](docs/runbook.md#force-data-refresh) - Index data for searches -- Async searches and notifications (webhooks) -- Manual overrides to mark a `Company` or `Customer` as `unsafe` (blocked) or `exception` (never blocked). - Library for OFAC and BIS DPL data to download and parse their custom files ### Docker @@ -181,13 +184,18 @@ You should get this response: PONG ``` -### Configuration settings +### Configuration settings | Environmental Variable | Description | Default | |-----|-----|-----| | `DATA_REFRESH_INTERVAL` | Interval for data redownload and reparse. `off` disables this refreshing. | 12h | | `INITIAL_DATA_DIRECTORY` | Directory filepath with initial files to use instead of downloading. Periodic downloads will replace the initial files. | Empty | +| `ADJACENT_SIMILARITY_POSITIONS` | How many nearby words to search for highest max similarly score. | 3 | | `EXACT_MATCH_FAVORITISM` | Extra weighting assigned to exact matches. | 0.0 | +| `LENGTH_DIFFERENCE_CUTOFF_FACTOR` | Minimum ratio for the length of two matching tokens, before they score is penalised. | 0.9 | +| `LENGTH_DIFFERENCE_PENALTY_WEIGHT` | Weight of penalty applied to scores when two matching tokens have different lengths. | 0.3 | +| `DIFFERENT_LETTER_PENALTY_WEIGHT` | Weight of penalty applied to scores when two matching tokens begin with different letters. | 0.9 | +| `UNMATCHED_INDEX_TOKEN_WEIGHT` | Weight of penalty applied to scores when part of the indexed name isn't matched. | 0.15 | | `JARO_WINKLER_BOOST_THRESHOLD` | Jaro-Winkler boost threshold. | 0.7 | | `JARO_WINKLER_PREFIX_SIZE` | Jaro-Winkler prefix size. | 4 | | `WEBHOOK_BATCH_SIZE` | How many watches to read from database per batch of async searches. | 100 | @@ -210,7 +218,12 @@ PONG |-----|-----|-----| | `OFAC_DOWNLOAD_TEMPLATE` | HTTP address for downloading raw OFAC files. | `https://www.treasury.gov/ofac/downloads/%s` | | `DPL_DOWNLOAD_TEMPLATE` | HTTP address for downloading the DPL. | `https://www.bis.doc.gov/dpl/%s` | -| `CSL_DOWNLOAD_TEMPLATE` | HTTP address for downloading the Consolidated Screening List (CSL), which is a collection of US government sanctions lists. | `https://api.trade.gov/consolidated_screening_list/%s` | +| `EU_CSL_DOWNLOAD_URL` | Use an alternate URL for downloading EU Consolidated Screening List | Subresource of `webgate.ec.europa.eu` | +| `UK_CSL_DOWNLOAD_URL` | Use an alternate URL for downloading UK Consolidated Screening List | Subresource of `www.gov.uk` | +| `UK_SANCTIONS_LIST_URL` | Use an alternate URL for downloading UK Sanctions List | Subresource of `www.gov.uk` | +| `WITH_UK_SANCTIONS_LIST` | Download and parse the UK Sanctions List on startup. | Default: `false` | +| `US_CSL_DOWNLOAD_URL` | Use an alternate URL for downloading US Consolidated Screening List | Subresource of `api.trade.gov` | +| `CSL_DOWNLOAD_TEMPLATE` | Same as `US_CSL_DOWNLOAD_URL` | | | `KEEP_STOPWORDS` | Boolean to keep stopwords in names. | `false` | | `DEBUG_NAME_PIPELINE` | Boolean to print debug messages for each name (SDN, SSI) processing step. | `false` | @@ -231,21 +244,13 @@ Refer to the MySQL driver documentation for [connection parameters](https://gith ##### SQLite -- `SQLITE_DB_PATH`: Local filepath location for the paygate SQLite database. (Default: `watchman.db`) +- `SQLITE_DB_PATH`: Local filepath location for the SQLite database. (Default: `watchman.db`) Refer to the SQLite driver documentation for [connection parameters](https://github.com/mattn/go-sqlite3#connection-string). -#### Webhook notifications - -When Watchman sends a [webhook](https://en.wikipedia.org/wiki/Webhook) to your application, the body will contain a JSON representation of the [Company](https://godoc.org/github.com/moov-io/watchman/client#OfacCompany) or [Customer](https://godoc.org/github.com/moov-io/watchman/client#OfacCustomer) model as the body to a POST request. You can see an [example in Go](examples/webhook/webhook.go). - -An `Authorization` header will also be sent with the `authToken` provided when setting up the watch. Clients should verify this token to ensure authenticated communication. - -Webhook notifications are run after the OFAC data is successfully refreshed, which is determined by the `DATA_REFRESH_INTERVAL` environmental variable. - ##### Downloads -Moov Watchman supports sending a webhook when the underlying data is refreshed. The body will be the count of entities indexed for each list. The body will be in JSON format and the same schema as the manual data refresh endpoint. +Moov Watchman supports sending a webhook (`POST` HTTP Request) when the underlying data is refreshed. The body will be the count of entities indexed for each list. The body will be in JSON format and the same schema as the manual data refresh endpoint. ##### Watching a specific customer or company by ID @@ -271,7 +276,7 @@ By design, Watchman **does not persist** (save) any data about the search queri ### Go library -This project uses [Go Modules](https://github.com/golang/go/wiki/Modules) and uses Go v1.14 or higher. See [Golang's install instructions](https://golang.org/doc/install) for help setting up Go. You can download the source code and we offer [tagged and released versions](https://github.com/moov-io/watchman/releases/latest) as well. We highly recommend you use a tagged release for production. +This project uses [Go Modules](https://go.dev/blog/using-go-modules) and Go v1.18 or newer. See [Golang's install instructions](https://golang.org/doc/install) for help setting up Go. You can download the source code and we offer [tagged and released versions](https://github.com/moov-io/watchman/releases/latest) as well. We highly recommend you use a tagged release for production. ``` $ git@github.com:moov-io/watchman.git @@ -321,7 +326,7 @@ Note: 32-bit platforms have known issues and are not supported. Yes please! Please review our [Contributing guide](CONTRIBUTING.md) and [Code of Conduct](https://github.com/moov-io/ach/blob/master/CODE_OF_CONDUCT.md) to get started! Checkout our [issues for first time contributors](https://github.com/moov-io/watchman/contribute) for something to help out with. -This project uses [Go Modules](https://github.com/golang/go/wiki/Modules) and uses Go 1.14 or higher. See [Golang's install instructions](https://golang.org/doc/install) for help setting up Go. You can download the source code and we offer [tagged and released versions](https://github.com/moov-io/watchman/releases/latest) as well. We highly recommend you use a tagged release for production. +This project uses [Go Modules](https://go.dev/blog/using-go-modules) and Go v1.18 or newer. See [Golang's install instructions](https://golang.org/doc/install) for help setting up Go. You can download the source code and we offer [tagged and released versions](https://github.com/moov-io/watchman/releases/latest) as well. We highly recommend you use a tagged release for production. ### Releasing diff --git a/admin/client.go b/admin/client.go index e30afcc..f6aacfe 100644 --- a/admin/client.go +++ b/admin/client.go @@ -429,7 +429,11 @@ func setBody(body interface{}, contentType string) (bodyBuf *bytes.Buffer, err e } else if jsonCheck.MatchString(contentType) { err = json.NewEncoder(bodyBuf).Encode(body) } else if xmlCheck.MatchString(contentType) { - err = xml.NewEncoder(bodyBuf).Encode(body) + var bs []byte + bs, err = xml.Marshal(body) + if err == nil { + bodyBuf.Write(bs) + } } if err != nil { diff --git a/api/client.yaml b/api/client.yaml index e173428..9fa4151 100644 --- a/api/client.yaml +++ b/api/client.yaml @@ -28,503 +28,7 @@ paths: '200': description: Service is running properly - # Company Endpoints - /ofac/companies/{companyID}: - get: - tags: [Watchman] - summary: Get company - description: Get information about a company, trust, or organization such as addresses, alternate names, and remarks. - operationId: getOfacCompany - parameters: - - name: X-Request-ID - in: header - description: Optional Request ID allows application developer to trace requests through the system's logs - schema: - type: string - example: 94c825ee - - name: companyID - in: path - description: Company ID - required: true - schema: - type: string - example: 1d1c824a - responses: - '200': - description: Company and associated metadata - content: - application/json: - schema: - $ref: '#/components/schemas/OfacCompany' - '400': - description: Error occurred, see response body. - content: - application/json: - schema: - $ref: 'https://raw.githubusercontent.com/moov-io/base/master/api/common.yaml#/components/schemas/Error' - - put: - tags: [Watchman] - summary: Update company - description: Update a Company's sanction status to always block or always allow transactions. - operationId: updateOfacCompanyStatus - parameters: - - name: X-Request-ID - in: header - description: Optional Request ID allows application developer to trace requests through the system's logs - schema: - type: string - example: 94c825ee - - name: X-User-ID - in: header - description: User ID used to perform this search - schema: - type: string - - name: companyID - in: path - description: Company ID - required: true - schema: - type: string - example: 8d49fd61 - requestBody: - required: true - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateOfacCompanyStatus' - responses: - '200': - description: Company status updated - '400': - description: Error occurred, see response body. - content: - application/json: - schema: - $ref: 'https://raw.githubusercontent.com/moov-io/base/master/api/common.yaml#/components/schemas/Error' - - /ofac/companies/{companyID}/watch: - post: - tags: [Watchman] - summary: Watch OFAC company - description: Add ID watch on an OFAC Company. - operationId: addOfacCompanyWatch - parameters: - - name: X-Request-ID - in: header - description: Optional Request ID allows application developer to trace requests through the system's logs - schema: - type: string - example: 94c825ee - - name: companyID - in: path - description: Company ID - required: true - schema: - type: string - example: c3cf0f66 - requestBody: - required: true - content: - application/json: - schema: - $ref: '#/components/schemas/OfacWatchRequest' - responses: - '200': - description: Company watch added - content: - application/json: - schema: - $ref: '#/components/schemas/OfacWatch' - '400': - description: Error occurred, see response body. - content: - application/json: - schema: - $ref: 'https://raw.githubusercontent.com/moov-io/base/master/api/common.yaml#/components/schemas/Error' - '404': - description: Company not found - - /ofac/companies/{companyID}/watch/{watchID}: - delete: - tags: [Watchman] - summary: Remove company watch - description: Delete a company ID watch. - operationId: removeOfacCompanyWatch - parameters: - - name: X-Request-ID - in: header - description: Optional Request ID allows application developer to trace requests through the system's logs - schema: - type: string - example: 94c825ee - - name: companyID - in: path - description: Company ID - required: true - schema: - type: string - example: c3cf0f66 - - name: watchID - in: path - description: Watch ID, used to identify a specific watch - required: true - schema: - type: string - example: 0c5e215c - responses: - '200': - description: Company watch removed - '400': - description: Error occurred, see response body. - content: - application/json: - schema: - $ref: 'https://raw.githubusercontent.com/moov-io/base/master/api/common.yaml#/components/schemas/Error' - - /ofac/companies/watch: - post: - tags: [Watchman] - summary: Watch company - description: Watch a company by its name. The match percentage will be included in the webhook's JSON payload. - operationId: addOfacCompanyNameWatch - parameters: - - name: X-Request-ID - in: header - description: Optional Request ID allows application developer to trace requests through the system's logs - schema: - type: string - example: 94c825ee - - name: name - in: query - required: true - description: Company name used to match and send watch notifications - schema: - type: string - example: Jane Smith - requestBody: - required: true - content: - application/json: - schema: - $ref: '#/components/schemas/OfacWatchRequest' - responses: - '200': - description: Company watch applied - content: - application/json: - schema: - $ref: '#/components/schemas/OfacWatch' - '400': - description: Error occurred, see response body. - content: - application/json: - schema: - $ref: 'https://raw.githubusercontent.com/moov-io/base/master/api/common.yaml#/components/schemas/Error' - - /ofac/companies/watch/{watchID}: - delete: - tags: [Watchman] - summary: Remove company watch - description: Delete a company name watch. - operationId: removeOfacCompanyNameWatch - parameters: - - name: X-Request-ID - in: header - description: Optional Request ID allows application developer to trace requests through the system's logs - schema: - type: string - example: 94c825ee - - name: watchID - in: path - description: Watch ID, used to identify a specific watch - required: true - schema: - type: string - example: 0c5e215c - - name: name - in: query - description: Company name watch - required: true - schema: - type: string - example: Jane Smith - responses: - '200': - description: Company watch removed - '400': - description: Error occurred, see response body. - content: - application/json: - schema: - $ref: 'https://raw.githubusercontent.com/moov-io/base/master/api/common.yaml#/components/schemas/Error' - - # Customer Endpoints - /ofac/customers/{customerID}: - get: - tags: [Watchman] - summary: Get customer - description: Get information about a customer's addresses, alternate names, and SDN metadata. - operationId: getOfacCustomer - parameters: - - name: X-Request-ID - in: header - description: Optional Request ID allows application developer to trace requests through the system's logs - schema: - type: string - example: 94c825ee - - name: customerID - in: path - description: Customer ID - required: true - schema: - type: string - example: c3cf0f66 - responses: - '200': - description: Customer and associated metadata - content: - application/json: - schema: - $ref: '#/components/schemas/OfacCustomer' - '400': - description: Error occurred, see response body. - content: - application/json: - schema: - $ref: 'https://raw.githubusercontent.com/moov-io/base/master/api/common.yaml#/components/schemas/Error' - - put: - tags: [Watchman] - summary: Update customer - description: Update a Customer sanction status to always block or always allow transactions. - operationId: updateOfacCustomerStatus - parameters: - - name: X-Request-ID - in: header - description: Optional Request ID allows application developer to trace requests through the system's logs - schema: - type: string - example: 94c825ee - - name: X-User-ID - in: header - description: User ID used to perform this search - schema: - type: string - - name: customerID - in: path - description: Customer ID - required: true - schema: - type: string - example: c3cf0f66 - requestBody: - required: true - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateOfacCustomerStatus' - responses: - '200': - description: Customer status updated - '400': - description: Error occurred, see response body. - content: - application/json: - schema: - $ref: 'https://raw.githubusercontent.com/moov-io/base/master/api/common.yaml#/components/schemas/Error' - - /ofac/customers/{customerID}/watch: - post: - tags: [Watchman] - summary: Watch OFAC customer - description: Add ID watch on an OFAC Customer. - operationId: addOfacCustomerWatch - parameters: - - name: X-Request-ID - in: header - description: Optional Request ID allows application developer to trace requests through the system's logs - schema: - type: string - example: 94c825ee - - name: customerID - in: path - description: Customer ID - required: true - schema: - type: string - example: c3cf0f66 - requestBody: - required: true - content: - application/json: - schema: - $ref: '#/components/schemas/OfacWatchRequest' - responses: - '200': - description: Customer watch added - content: - application/json: - schema: - $ref: '#/components/schemas/OfacWatch' - '400': - description: Error occurred, see response body. - content: - application/json: - schema: - $ref: 'https://raw.githubusercontent.com/moov-io/base/master/api/common.yaml#/components/schemas/Error' - '404': - description: Customer not found - - /ofac/customers/{customerID}/watch/{watchID}: - delete: - tags: [Watchman] - summary: Remove customer watch - description: Delete a customer ID watch. - operationId: removeOfacCustomerWatch - parameters: - - name: X-Request-ID - in: header - description: Optional Request ID allows application developer to trace requests through the system's logs - schema: - type: string - example: 94c825ee - - name: customerID - in: path - description: Customer ID - required: true - schema: - type: string - example: c3cf0f66 - - name: watchID - in: path - description: Watch ID, used to identify a specific watch - required: true - schema: - type: string - example: 0c5e215c - responses: - '200': - description: Customer watch removed - '400': - description: Error occurred, see response body. - content: - application/json: - schema: - $ref: 'https://raw.githubusercontent.com/moov-io/base/master/api/common.yaml#/components/schemas/Error' - - /ofac/customers/watch: - post: - tags: [Watchman] - summary: Watch customer - description: Watch a customer by its name. The match percentage will be included in the webhook's JSON payload. - operationId: addOfacCustomerNameWatch - parameters: - - name: X-Request-ID - in: header - description: Optional Request ID allows application developer to trace requests through the system's logs - schema: - type: string - example: 94c825ee - - name: name - in: query - required: true - description: Individual name used to match and send watch notifications - schema: - type: string - example: Jane Smith - requestBody: - required: true - content: - application/json: - schema: - $ref: '#/components/schemas/OfacWatchRequest' - responses: - '200': - description: Customer watch applied - content: - application/json: - schema: - $ref: '#/components/schemas/OfacWatch' - '400': - description: Error occurred, see response body. - content: - application/json: - schema: - $ref: 'https://raw.githubusercontent.com/moov-io/base/master/api/common.yaml#/components/schemas/Error' - - /ofac/customers/watch/{watchID}: - delete: - tags: [Watchman] - summary: Remove customer watch - description: Delete a customer name watch. - operationId: removeOfacCustomerNameWatch - parameters: - - name: X-Request-ID - in: header - description: Optional Request ID allows application developer to trace requests through the system's logs - schema: - type: string - example: 94c825ee - - name: watchID - in: path - description: Watch ID, used to identify a specific watch - required: true - schema: - type: string - example: 0c5e215c - - name: name - in: query - description: Customer or Company name watch - required: true - schema: - type: string - example: Jane Smith - responses: - '200': - description: Company or Customer watch removed - '400': - description: Error occurred, see response body. - content: - application/json: - schema: - $ref: 'https://raw.githubusercontent.com/moov-io/base/master/api/common.yaml#/components/schemas/Error' - - # SDN Endpoints - /ofac/sdn/{sdnID}: - get: - tags: [Watchman] - summary: Get SDN - description: Get SDN details - operationId: getSDN - parameters: - - name: X-Request-ID - in: header - description: Optional Request ID allows application developer to trace requests through the system's logs - schema: - type: string - example: 94c825ee - - in: path - name: sdnID - required: true - description: SDN ID - schema: - type: string - example: 564dd7d1 - responses: - '200': - description: SDN metadata - content: - application/json: - schema: - $ref: '#/components/schemas/OfacSDN' - '400': - description: Error occurred, see response body. - content: - application/json: - schema: - $ref: 'https://raw.githubusercontent.com/moov-io/base/master/api/common.yaml#/components/schemas/Error' - + # OFAC endpoints /ofac/sdn/{sdnID}/alts: get: tags: [Watchman] @@ -702,6 +206,8 @@ paths: schema: $ref: 'https://raw.githubusercontent.com/moov-io/base/master/api/common.yaml#/components/schemas/Error' + # US, UK, and EU Consolidated Screening List endpoints + # TODO(adam): add UK and EU CSL endpoints /search/us-csl: get: tags: [Watchman] @@ -809,86 +315,6 @@ paths: components: schemas: - OfacCompany: - description: OFAC Company and metadata - properties: - ID: - description: OFAC Company ID - type: string - example: 9574756b - sdn: - $ref: '#/components/schemas/OfacSDN' - addresses: - type: array - items: - $ref: '#/components/schemas/OfacEntityAddress' - alts: - type: array - items: - $ref: '#/components/schemas/OfacAlt' - status: - $ref: '#/components/schemas/OfacCompanyStatus' - OfacCompanyStatus: - description: Status properties of an OFAC Company - properties: - userID: - description: User ID provided when updating status - type: string - example: 349661f9 - note: - description: Optional note from updating status - type: string - example: 'Incorrect match' - status: - description: Manually applied status for OFAC Company - type: string - enum: - - unsafe - - exception - createdAt: - type: string - format: date-time - example: "2006-01-02T15:04:05" - OfacCustomer: - description: OFAC Customer and metadata - properties: - ID: - description: OFAC Customer ID - type: string - example: 9574756b - sdn: - $ref: '#/components/schemas/OfacSDN' - addresses: - type: array - items: - $ref: '#/components/schemas/OfacEntityAddress' - alts: - type: array - items: - $ref: '#/components/schemas/OfacAlt' - status: - $ref: '#/components/schemas/OfacCustomerStatus' - OfacCustomerStatus: - description: Status properties of an OFAC Customer - properties: - userID: - description: User ID provided when updating status - type: string - example: 349661f9 - note: - description: Optional note from updating status - type: string - example: 'Incorrect match' - status: - description: Manually applied status for OFAC Customer - type: string - enum: - - unsafe - - exception - createdAt: - type: string - format: date-time - example: "2006-01-02T15:04:05" OfacSDN: description: Specially designated national from OFAC list properties: @@ -917,6 +343,10 @@ components: type: number description: Match percentage of search query example: 0.91 + matchedName: + type: string + description: "The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm." + example: "jane doe" OfacEntityAddresses: type: array items: @@ -969,6 +399,10 @@ components: type: number description: Match percentage of search query example: 0.91 + matchedName: + type: string + description: "The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm." + example: "jane doe" SdnType: description: 'Used for classifying SDNs — typically represents an individual or company' type: string @@ -1039,6 +473,10 @@ components: type: number description: Match percentage of search query example: 0.92 + matchedName: + type: string + description: "The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm." + example: "jane doe" SSI: description: Treasury Department Sectoral Sanctions Identifications List (SSI) properties: @@ -1094,6 +532,10 @@ components: type: number description: Match percentage of search query example: 0.91 + matchedName: + type: string + description: "The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm." + example: "jane doe" BISEntities: description: Bureau of Industry and Security Entity List properties: @@ -1141,6 +583,10 @@ components: type: number description: Match percentage of search query example: 0.91 + matchedName: + type: string + description: "The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm." + example: "jane doe" MilitaryEndUser: properties: entityID: @@ -1165,6 +611,10 @@ components: type: number description: Match percentage of search query example: 0.92 + matchedName: + type: string + description: "The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm." + example: "jane doe" Unverified: properties: entityID: @@ -1189,6 +639,10 @@ components: type: number description: Match percentage of search query example: 0.92 + matchedName: + type: string + description: "The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm." + example: "jane doe" NonProliferationSanction: properties: entityID: @@ -1233,6 +687,10 @@ components: type: number description: Match percentage of search query example: 0.92 + matchedName: + type: string + description: "The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm." + example: "jane doe" ForeignSanctionsEvader: properties: entityID: @@ -1281,6 +739,10 @@ components: type: number description: Match percentage of search query example: 0.92 + matchedName: + type: string + description: "The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm." + example: "jane doe" PalestinianLegislativeCouncil: properties: entityID: @@ -1333,6 +795,10 @@ components: type: number description: Match percentage of search query example: 0.92 + matchedName: + type: string + description: "The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm." + example: "jane doe" CAPTAList: properties: entityID: @@ -1391,6 +857,10 @@ components: type: number description: Match percentage of search query example: 0.92 + matchedName: + type: string + description: "The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm." + example: "jane doe" ITARDebarred: properties: entityID: @@ -1419,6 +889,10 @@ components: type: number description: Match percentage of search query example: 0.92 + matchedName: + type: string + description: "The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm." + example: "jane doe" NonSDNChineseMilitaryIndustrialComplex: properties: entityID: @@ -1475,6 +949,10 @@ components: type: number description: Match percentage of search query example: 0.92 + matchedName: + type: string + description: "The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm." + example: "jane doe" NonSDNMenuBasedSanctionsList: properties: EntityID: @@ -1531,36 +1009,132 @@ components: type: number description: Match percentage of search query example: 0.92 - UpdateOfacCompanyStatus: - description: Request body to update a company status. + matchedName: + type: string + description: "The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm." + example: "jane doe" + EUConsolidatedSanctionsList: properties: - status: - description: Manual override of company/SDN sanction status - type: string - enum: - - unsafe - - exception - notes: - description: Free form notes about manually changing the Company status - type: string - example: "False positive" - required: - - status - UpdateOfacCustomerStatus: - description: Request body to update a customers status. + fileGenerationDate: + type: string + example: "28/10/2022" + entityLogicalId: + type: integer + example: 13 + entityRemark: + type: string + entitySubjectType: + type: string + entityPublicationURL: + type: string + entityReferenceNumber: + type: string + nameAliasWholeNames: + type: array + items: + type: string + nameAliasTitles: + type: array + items: + type: string + addressCities: + type: array + items: + type: string + addressStreets: + type: array + items: + type: string + addressPoBoxes: + type: array + items: + type: string + addressZipCodes: + type: array + items: + type: string + addressCountryDescriptions: + type: array + items: + type: string + birthDates: + type: array + items: + type: string + birthCities: + type: array + items: + type: string + birthCountries: + type: array + items: + type: string + validFromTo: + type: object + match: + description: Match percentage of search query + example: 0.92 + type: number + matchedName: + type: string + description: "The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm." + example: "jane doe" + UKConsolidatedSanctionsList: + properties: + names: + type: array + items: + type: string + addresses: + type: array + items: + type: string + countries: + type: array + items: + type: string + groupType: + type: string + match: + description: Match percentage of search query + example: 0.92 + type: number + matchedName: + type: string + description: "The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm." + example: "jane doe" + UKSanctionsList: properties: - status: - description: Manual override of customer/SDN sanction status - type: string - enum: - - unsafe - - exception - notes: - description: Free form notes about manually changing the Customer status - type: string - example: "False positive" - required: - - status + names: + type: array + items: + type: string + nonLatinNames: + type: array + items: + type: string + entityType: + type: string + addresses: + type: array + items: + type: string + addressCountries: + type: array + items: + type: string + stateLocalities: + type: array + items: + type: string + match: + description: Match percentage of search query + example: 0.92 + type: number + matchedName: + type: string + description: "The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm." + example: "jane doe" Search: description: Search results containing SDNs, alternate names, and/or addreses properties: @@ -1627,32 +1201,23 @@ components: type: array items: $ref: '#/components/schemas/NonSDNMenuBasedSanctionsList' + euConsolidatedSanctionsList: + items: + $ref: '#/components/schemas/EUConsolidatedSanctionsList' + type: array + ukConsolidatedSanctionsList: + items: + $ref: '#/components/schemas/UKConsolidatedSanctionsList' + type: array + ukSanctionsList: + items: + $ref: '#/components/schemas/UKSanctionsList' + type: array # Metadata refreshedAt: type: string format: date-time example: "2006-01-02T15:04:05" - OfacWatch: - description: Customer or Company watch - properties: - watchID: - description: Object representing a customer or company watch - type: string - example: 08ddba92 - OfacWatchRequest: - description: Webhook or other means of notification on search criteria. OFAC will make a POST request with a body of the customer or company (SDN, AltNames, and Address). - properties: - authToken: - description: Private token supplied by clients to be used for authenticating webhooks. - type: string - example: 75d0384b-a105-4048-9fce-91a280ce7337 - webhook: - description: HTTPS url for webhook on search match - type: string - example: https://api.example.com/ofac/webhook - required: - - authToken - - webhook Downloads: type: array items: diff --git a/client/README.md b/client/README.md index 80fdf0e..8e5257b 100644 --- a/client/README.md +++ b/client/README.md @@ -33,26 +33,13 @@ All URIs are relative to *http://localhost:8084* Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- -*WatchmanApi* | [**AddOfacCompanyNameWatch**](docs/WatchmanApi.md#addofaccompanynamewatch) | **Post** /ofac/companies/watch | Watch company -*WatchmanApi* | [**AddOfacCompanyWatch**](docs/WatchmanApi.md#addofaccompanywatch) | **Post** /ofac/companies/{companyID}/watch | Watch OFAC company -*WatchmanApi* | [**AddOfacCustomerNameWatch**](docs/WatchmanApi.md#addofaccustomernamewatch) | **Post** /ofac/customers/watch | Watch customer -*WatchmanApi* | [**AddOfacCustomerWatch**](docs/WatchmanApi.md#addofaccustomerwatch) | **Post** /ofac/customers/{customerID}/watch | Watch OFAC customer *WatchmanApi* | [**GetLatestDownloads**](docs/WatchmanApi.md#getlatestdownloads) | **Get** /downloads | Get latest downloads -*WatchmanApi* | [**GetOfacCompany**](docs/WatchmanApi.md#getofaccompany) | **Get** /ofac/companies/{companyID} | Get company -*WatchmanApi* | [**GetOfacCustomer**](docs/WatchmanApi.md#getofaccustomer) | **Get** /ofac/customers/{customerID} | Get customer -*WatchmanApi* | [**GetSDN**](docs/WatchmanApi.md#getsdn) | **Get** /ofac/sdn/{sdnID} | Get SDN *WatchmanApi* | [**GetSDNAddresses**](docs/WatchmanApi.md#getsdnaddresses) | **Get** /ofac/sdn/{sdnID}/addresses | Get SDN addresses *WatchmanApi* | [**GetSDNAltNames**](docs/WatchmanApi.md#getsdnaltnames) | **Get** /ofac/sdn/{sdnID}/alts | Get SDN alt names *WatchmanApi* | [**GetUIValues**](docs/WatchmanApi.md#getuivalues) | **Get** /ui/values/{key} | Get UI values *WatchmanApi* | [**Ping**](docs/WatchmanApi.md#ping) | **Get** /ping | Ping Watchman service -*WatchmanApi* | [**RemoveOfacCompanyNameWatch**](docs/WatchmanApi.md#removeofaccompanynamewatch) | **Delete** /ofac/companies/watch/{watchID} | Remove company watch -*WatchmanApi* | [**RemoveOfacCompanyWatch**](docs/WatchmanApi.md#removeofaccompanywatch) | **Delete** /ofac/companies/{companyID}/watch/{watchID} | Remove company watch -*WatchmanApi* | [**RemoveOfacCustomerNameWatch**](docs/WatchmanApi.md#removeofaccustomernamewatch) | **Delete** /ofac/customers/watch/{watchID} | Remove customer watch -*WatchmanApi* | [**RemoveOfacCustomerWatch**](docs/WatchmanApi.md#removeofaccustomerwatch) | **Delete** /ofac/customers/{customerID}/watch/{watchID} | Remove customer watch *WatchmanApi* | [**Search**](docs/WatchmanApi.md#search) | **Get** /search | Search *WatchmanApi* | [**SearchUSCSL**](docs/WatchmanApi.md#searchuscsl) | **Get** /search/us-csl | Search US CSL -*WatchmanApi* | [**UpdateOfacCompanyStatus**](docs/WatchmanApi.md#updateofaccompanystatus) | **Put** /ofac/companies/{companyID} | Update company -*WatchmanApi* | [**UpdateOfacCustomerStatus**](docs/WatchmanApi.md#updateofaccustomerstatus) | **Put** /ofac/customers/{customerID} | Update customer ## Documentation For Models @@ -62,6 +49,7 @@ Class | Method | HTTP request | Description - [Download](docs/Download.md) - [Dpl](docs/Dpl.md) - [Error](docs/Error.md) + - [EuConsolidatedSanctionsList](docs/EuConsolidatedSanctionsList.md) - [ForeignSanctionsEvader](docs/ForeignSanctionsEvader.md) - [ItarDebarred](docs/ItarDebarred.md) - [MilitaryEndUser](docs/MilitaryEndUser.md) @@ -69,22 +57,16 @@ Class | Method | HTTP request | Description - [NonSdnChineseMilitaryIndustrialComplex](docs/NonSdnChineseMilitaryIndustrialComplex.md) - [NonSdnMenuBasedSanctionsList](docs/NonSdnMenuBasedSanctionsList.md) - [OfacAlt](docs/OfacAlt.md) - - [OfacCompany](docs/OfacCompany.md) - - [OfacCompanyStatus](docs/OfacCompanyStatus.md) - - [OfacCustomer](docs/OfacCustomer.md) - - [OfacCustomerStatus](docs/OfacCustomerStatus.md) - [OfacEntityAddress](docs/OfacEntityAddress.md) - [OfacSdn](docs/OfacSdn.md) - - [OfacWatch](docs/OfacWatch.md) - - [OfacWatchRequest](docs/OfacWatchRequest.md) - [PalestinianLegislativeCouncil](docs/PalestinianLegislativeCouncil.md) - [SdnType](docs/SdnType.md) - [Search](docs/Search.md) - [Ssi](docs/Ssi.md) - [SsiType](docs/SsiType.md) + - [UkConsolidatedSanctionsList](docs/UkConsolidatedSanctionsList.md) + - [UkSanctionsList](docs/UkSanctionsList.md) - [Unverified](docs/Unverified.md) - - [UpdateOfacCompanyStatus](docs/UpdateOfacCompanyStatus.md) - - [UpdateOfacCustomerStatus](docs/UpdateOfacCustomerStatus.md) ## Documentation For Authorization diff --git a/client/api/openapi.yaml b/client/api/openapi.yaml index 38b3b94..3fd2282 100644 --- a/client/api/openapi.yaml +++ b/client/api/openapi.yaml @@ -30,598 +30,6 @@ paths: summary: Ping Watchman service tags: - Watchman - /ofac/companies/{companyID}: - get: - description: Get information about a company, trust, or organization such as - addresses, alternate names, and remarks. - operationId: getOfacCompany - parameters: - - description: Optional Request ID allows application developer to trace requests - through the system's logs - explode: false - in: header - name: X-Request-ID - required: false - schema: - example: 94c825ee - type: string - style: simple - - description: Company ID - explode: false - in: path - name: companyID - required: true - schema: - example: 1d1c824a - type: string - style: simple - responses: - "200": - content: - application/json: - schema: - $ref: '#/components/schemas/OfacCompany' - description: Company and associated metadata - "400": - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - description: Error occurred, see response body. - summary: Get company - tags: - - Watchman - put: - description: Update a Company's sanction status to always block or always allow - transactions. - operationId: updateOfacCompanyStatus - parameters: - - description: Optional Request ID allows application developer to trace requests - through the system's logs - explode: false - in: header - name: X-Request-ID - required: false - schema: - example: 94c825ee - type: string - style: simple - - description: User ID used to perform this search - explode: false - in: header - name: X-User-ID - required: false - schema: - type: string - style: simple - - description: Company ID - explode: false - in: path - name: companyID - required: true - schema: - example: 8d49fd61 - type: string - style: simple - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateOfacCompanyStatus' - required: true - responses: - "200": - description: Company status updated - "400": - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - description: Error occurred, see response body. - summary: Update company - tags: - - Watchman - /ofac/companies/{companyID}/watch: - post: - description: Add ID watch on an OFAC Company. - operationId: addOfacCompanyWatch - parameters: - - description: Optional Request ID allows application developer to trace requests - through the system's logs - explode: false - in: header - name: X-Request-ID - required: false - schema: - example: 94c825ee - type: string - style: simple - - description: Company ID - explode: false - in: path - name: companyID - required: true - schema: - example: c3cf0f66 - type: string - style: simple - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/OfacWatchRequest' - required: true - responses: - "200": - content: - application/json: - schema: - $ref: '#/components/schemas/OfacWatch' - description: Company watch added - "400": - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - description: Error occurred, see response body. - "404": - description: Company not found - summary: Watch OFAC company - tags: - - Watchman - /ofac/companies/{companyID}/watch/{watchID}: - delete: - description: Delete a company ID watch. - operationId: removeOfacCompanyWatch - parameters: - - description: Optional Request ID allows application developer to trace requests - through the system's logs - explode: false - in: header - name: X-Request-ID - required: false - schema: - example: 94c825ee - type: string - style: simple - - description: Company ID - explode: false - in: path - name: companyID - required: true - schema: - example: c3cf0f66 - type: string - style: simple - - description: Watch ID, used to identify a specific watch - explode: false - in: path - name: watchID - required: true - schema: - example: 0c5e215c - type: string - style: simple - responses: - "200": - description: Company watch removed - "400": - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - description: Error occurred, see response body. - summary: Remove company watch - tags: - - Watchman - /ofac/companies/watch: - post: - description: Watch a company by its name. The match percentage will be included - in the webhook's JSON payload. - operationId: addOfacCompanyNameWatch - parameters: - - description: Optional Request ID allows application developer to trace requests - through the system's logs - explode: false - in: header - name: X-Request-ID - required: false - schema: - example: 94c825ee - type: string - style: simple - - description: Company name used to match and send watch notifications - explode: true - in: query - name: name - required: true - schema: - example: Jane Smith - type: string - style: form - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/OfacWatchRequest' - required: true - responses: - "200": - content: - application/json: - schema: - $ref: '#/components/schemas/OfacWatch' - description: Company watch applied - "400": - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - description: Error occurred, see response body. - summary: Watch company - tags: - - Watchman - /ofac/companies/watch/{watchID}: - delete: - description: Delete a company name watch. - operationId: removeOfacCompanyNameWatch - parameters: - - description: Optional Request ID allows application developer to trace requests - through the system's logs - explode: false - in: header - name: X-Request-ID - required: false - schema: - example: 94c825ee - type: string - style: simple - - description: Watch ID, used to identify a specific watch - explode: false - in: path - name: watchID - required: true - schema: - example: 0c5e215c - type: string - style: simple - - description: Company name watch - explode: true - in: query - name: name - required: true - schema: - example: Jane Smith - type: string - style: form - responses: - "200": - description: Company watch removed - "400": - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - description: Error occurred, see response body. - summary: Remove company watch - tags: - - Watchman - /ofac/customers/{customerID}: - get: - description: Get information about a customer's addresses, alternate names, - and SDN metadata. - operationId: getOfacCustomer - parameters: - - description: Optional Request ID allows application developer to trace requests - through the system's logs - explode: false - in: header - name: X-Request-ID - required: false - schema: - example: 94c825ee - type: string - style: simple - - description: Customer ID - explode: false - in: path - name: customerID - required: true - schema: - example: c3cf0f66 - type: string - style: simple - responses: - "200": - content: - application/json: - schema: - $ref: '#/components/schemas/OfacCustomer' - description: Customer and associated metadata - "400": - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - description: Error occurred, see response body. - summary: Get customer - tags: - - Watchman - put: - description: Update a Customer sanction status to always block or always allow - transactions. - operationId: updateOfacCustomerStatus - parameters: - - description: Optional Request ID allows application developer to trace requests - through the system's logs - explode: false - in: header - name: X-Request-ID - required: false - schema: - example: 94c825ee - type: string - style: simple - - description: User ID used to perform this search - explode: false - in: header - name: X-User-ID - required: false - schema: - type: string - style: simple - - description: Customer ID - explode: false - in: path - name: customerID - required: true - schema: - example: c3cf0f66 - type: string - style: simple - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateOfacCustomerStatus' - required: true - responses: - "200": - description: Customer status updated - "400": - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - description: Error occurred, see response body. - summary: Update customer - tags: - - Watchman - /ofac/customers/{customerID}/watch: - post: - description: Add ID watch on an OFAC Customer. - operationId: addOfacCustomerWatch - parameters: - - description: Optional Request ID allows application developer to trace requests - through the system's logs - explode: false - in: header - name: X-Request-ID - required: false - schema: - example: 94c825ee - type: string - style: simple - - description: Customer ID - explode: false - in: path - name: customerID - required: true - schema: - example: c3cf0f66 - type: string - style: simple - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/OfacWatchRequest' - required: true - responses: - "200": - content: - application/json: - schema: - $ref: '#/components/schemas/OfacWatch' - description: Customer watch added - "400": - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - description: Error occurred, see response body. - "404": - description: Customer not found - summary: Watch OFAC customer - tags: - - Watchman - /ofac/customers/{customerID}/watch/{watchID}: - delete: - description: Delete a customer ID watch. - operationId: removeOfacCustomerWatch - parameters: - - description: Optional Request ID allows application developer to trace requests - through the system's logs - explode: false - in: header - name: X-Request-ID - required: false - schema: - example: 94c825ee - type: string - style: simple - - description: Customer ID - explode: false - in: path - name: customerID - required: true - schema: - example: c3cf0f66 - type: string - style: simple - - description: Watch ID, used to identify a specific watch - explode: false - in: path - name: watchID - required: true - schema: - example: 0c5e215c - type: string - style: simple - responses: - "200": - description: Customer watch removed - "400": - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - description: Error occurred, see response body. - summary: Remove customer watch - tags: - - Watchman - /ofac/customers/watch: - post: - description: Watch a customer by its name. The match percentage will be included - in the webhook's JSON payload. - operationId: addOfacCustomerNameWatch - parameters: - - description: Optional Request ID allows application developer to trace requests - through the system's logs - explode: false - in: header - name: X-Request-ID - required: false - schema: - example: 94c825ee - type: string - style: simple - - description: Individual name used to match and send watch notifications - explode: true - in: query - name: name - required: true - schema: - example: Jane Smith - type: string - style: form - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/OfacWatchRequest' - required: true - responses: - "200": - content: - application/json: - schema: - $ref: '#/components/schemas/OfacWatch' - description: Customer watch applied - "400": - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - description: Error occurred, see response body. - summary: Watch customer - tags: - - Watchman - /ofac/customers/watch/{watchID}: - delete: - description: Delete a customer name watch. - operationId: removeOfacCustomerNameWatch - parameters: - - description: Optional Request ID allows application developer to trace requests - through the system's logs - explode: false - in: header - name: X-Request-ID - required: false - schema: - example: 94c825ee - type: string - style: simple - - description: Watch ID, used to identify a specific watch - explode: false - in: path - name: watchID - required: true - schema: - example: 0c5e215c - type: string - style: simple - - description: Customer or Company name watch - explode: true - in: query - name: name - required: true - schema: - example: Jane Smith - type: string - style: form - responses: - "200": - description: Company or Customer watch removed - "400": - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - description: Error occurred, see response body. - summary: Remove customer watch - tags: - - Watchman - /ofac/sdn/{sdnID}: - get: - description: Get SDN details - operationId: getSDN - parameters: - - description: Optional Request ID allows application developer to trace requests - through the system's logs - explode: false - in: header - name: X-Request-ID - required: false - schema: - example: 94c825ee - type: string - style: simple - - description: SDN ID - explode: false - in: path - name: sdnID - required: true - schema: - example: 564dd7d1 - type: string - style: simple - responses: - "200": - content: - application/json: - schema: - $ref: '#/components/schemas/OfacSDN' - description: SDN metadata - "400": - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - description: Error occurred, see response body. - summary: Get SDN - tags: - - Watchman /ofac/sdn/{sdnID}/alts: get: operationId: getSDNAltNames @@ -963,217 +371,45 @@ paths: tags: - Watchman /ui/values/{key}: - get: - description: Return an ordered distinct list of keys for an SDN property. - operationId: getUIValues - parameters: - - description: SDN property to lookup. Values are sdnType, ofacProgram - explode: false - in: path - name: key - required: true - schema: - $ref: '#/components/schemas/SdnType' - style: simple - - description: Maximum number of UI keys returned - explode: true - in: query - name: limit - required: false - schema: - example: 25 - type: integer - style: form - responses: - "200": - content: - application/json: - schema: - $ref: '#/components/schemas/UIKeys' - description: Ordered and distinct list of values for an SDN property - "400": - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - description: Error occurred, see response body. - summary: Get UI values - tags: - - Watchman -components: - schemas: - OfacCompany: - description: OFAC Company and metadata - example: - addresses: - - country: Japan - address: 123 73th St - cityStateProvincePostalCode: Tokyo 103 - match: 0.91 - entityID: "2112" - addressID: "201" - - country: Japan - address: 123 73th St - cityStateProvincePostalCode: Tokyo 103 - match: 0.91 - entityID: "2112" - addressID: "201" - alts: - - alternateID: "220" - alternateRemarks: Extra information - alternateType: aka - match: 0.91 - entityID: "306" - alternateName: NATIONAL BANK OF CUBA - - alternateID: "220" - alternateRemarks: Extra information - alternateType: aka - match: 0.91 - entityID: "306" - alternateName: NATIONAL BANK OF CUBA - ID: 9574756b - sdn: - sdnType: individual - match: 0.91 - entityID: "1231" - programs: - - CUBA - sdnName: BANCO NACIONAL DE CUBA - title: Title of an individual - remarks: Additional info - status: - note: Incorrect match - createdAt: 2000-01-23T04:56:07.000+00:00 - userID: 349661f9 - status: unsafe - properties: - ID: - description: OFAC Company ID - example: 9574756b - type: string - sdn: - $ref: '#/components/schemas/OfacSDN' - addresses: - items: - $ref: '#/components/schemas/OfacEntityAddress' - type: array - alts: - items: - $ref: '#/components/schemas/OfacAlt' - type: array - status: - $ref: '#/components/schemas/OfacCompanyStatus' - OfacCompanyStatus: - description: Status properties of an OFAC Company - example: - note: Incorrect match - createdAt: 2000-01-23T04:56:07.000+00:00 - userID: 349661f9 - status: unsafe - properties: - userID: - description: User ID provided when updating status - example: 349661f9 - type: string - note: - description: Optional note from updating status - example: Incorrect match - type: string - status: - description: Manually applied status for OFAC Company - enum: - - unsafe - - exception - type: string - createdAt: - format: date-time - type: string - OfacCustomer: - description: OFAC Customer and metadata - example: - addresses: - - country: Japan - address: 123 73th St - cityStateProvincePostalCode: Tokyo 103 - match: 0.91 - entityID: "2112" - addressID: "201" - - country: Japan - address: 123 73th St - cityStateProvincePostalCode: Tokyo 103 - match: 0.91 - entityID: "2112" - addressID: "201" - alts: - - alternateID: "220" - alternateRemarks: Extra information - alternateType: aka - match: 0.91 - entityID: "306" - alternateName: NATIONAL BANK OF CUBA - - alternateID: "220" - alternateRemarks: Extra information - alternateType: aka - match: 0.91 - entityID: "306" - alternateName: NATIONAL BANK OF CUBA - ID: 9574756b - sdn: - sdnType: individual - match: 0.91 - entityID: "1231" - programs: - - CUBA - sdnName: BANCO NACIONAL DE CUBA - title: Title of an individual - remarks: Additional info - status: - note: Incorrect match - createdAt: 2000-01-23T04:56:07.000+00:00 - userID: 349661f9 - status: unsafe - properties: - ID: - description: OFAC Customer ID - example: 9574756b - type: string - sdn: - $ref: '#/components/schemas/OfacSDN' - addresses: - items: - $ref: '#/components/schemas/OfacEntityAddress' - type: array - alts: - items: - $ref: '#/components/schemas/OfacAlt' - type: array - status: - $ref: '#/components/schemas/OfacCustomerStatus' - OfacCustomerStatus: - description: Status properties of an OFAC Customer - example: - note: Incorrect match - createdAt: 2000-01-23T04:56:07.000+00:00 - userID: 349661f9 - status: unsafe - properties: - userID: - description: User ID provided when updating status - example: 349661f9 - type: string - note: - description: Optional note from updating status - example: Incorrect match - type: string - status: - description: Manually applied status for OFAC Customer - enum: - - unsafe - - exception - type: string - createdAt: - format: date-time - type: string + get: + description: Return an ordered distinct list of keys for an SDN property. + operationId: getUIValues + parameters: + - description: SDN property to lookup. Values are sdnType, ofacProgram + explode: false + in: path + name: key + required: true + schema: + $ref: '#/components/schemas/SdnType' + style: simple + - description: Maximum number of UI keys returned + explode: true + in: query + name: limit + required: false + schema: + example: 25 + type: integer + style: form + responses: + "200": + content: + application/json: + schema: + $ref: '#/components/schemas/UIKeys' + description: Ordered and distinct list of values for an SDN property + "400": + content: + application/json: + schema: + $ref: '#/components/schemas/Error' + description: Error occurred, see response body. + summary: Get UI values + tags: + - Watchman +components: + schemas: OfacSDN: description: Specially designated national from OFAC list example: @@ -1184,6 +420,7 @@ components: - CUBA sdnName: BANCO NACIONAL DE CUBA title: Title of an individual + matchedName: jane doe remarks: Additional info properties: entityID: @@ -1212,6 +449,11 @@ components: description: Match percentage of search query example: 0.91 type: number + matchedName: + description: The highest scoring term from the search query. This term is + the precomputed indexed value used by the search algorithm. + example: jane doe + type: string OfacEntityAddresses: items: $ref: '#/components/schemas/OfacEntityAddress' @@ -1258,6 +500,7 @@ components: match: 0.91 entityID: "306" alternateName: NATIONAL BANK OF CUBA + matchedName: jane doe properties: entityID: example: "306" @@ -1278,6 +521,11 @@ components: description: Match percentage of search query example: 0.91 type: number + matchedName: + description: The highest scoring term from the search query. This term is + the precomputed indexed value used by the search algorithm. + example: jane doe + type: string SdnType: description: Used for classifying SDNs — typically represents an individual or company @@ -1309,6 +557,7 @@ components: name: ISMAEL RETA action: FR NOTICE ADDED state: TX + matchedName: jane doe effectiveDate: 06/15/2016 expirationDate: 06/15/2025 properties: @@ -1366,6 +615,11 @@ components: description: Match percentage of search query example: 0.92 type: number + matchedName: + description: The highest scoring term from the search query. This term is + the precomputed indexed value used by the search algorithm. + example: jane doe + type: string SSI: description: Treasury Department Sectoral Sanctions Identifications List (SSI) example: @@ -1387,6 +641,7 @@ components: - UKRAINE-EO13662 - SYRIA sourceListURL: http://bit.ly/1MLgou0 + matchedName: jane doe remarks: - 'For more information on directives, please visit the following link: http://www.treasury.gov/resource-center/sanctions/Programs/Pages/ukraine.aspx#directives.' - '(Linked To: OPEN JOINT-STOCK COMPANY ROSNEFT OIL COMPANY)' @@ -1455,6 +710,11 @@ components: description: Match percentage of search query example: 0.91 type: number + matchedName: + description: The highest scoring term from the search query. This term is + the precomputed indexed value used by the search algorithm. + example: jane doe + type: string BISEntities: description: Bureau of Industry and Security Entity List example: @@ -1471,6 +731,7 @@ components: name: Luhansk People¬ís Republic match: 0.91 sourceListURL: http://bit.ly/1MLgou0 + matchedName: jane doe startDate: 6/21/16 frNotice: 81 FR 61595 properties: @@ -1522,6 +783,11 @@ components: description: Match percentage of search query example: 0.91 type: number + matchedName: + description: The highest scoring term from the search query. This term is + the precomputed indexed value used by the search algorithm. + example: jane doe + type: string MilitaryEndUser: example: addresses: Xiujia Bay, Weiyong Dt, Xian, 710021, CN @@ -1530,6 +796,7 @@ components: match: 0.92 FRNotice: 85 FR 83799 entityID: 26744194bd9b5cbec49db6ee29a4b53c697c7420 + matchedName: jane doe startDate: 2020-12-23 properties: entityID: @@ -1553,6 +820,11 @@ components: description: Match percentage of search query example: 0.92 type: number + matchedName: + description: The highest scoring term from the search query. This term is + the precomputed indexed value used by the search algorithm. + example: jane doe + type: string Unverified: example: sourceInfoURL: http://bit.ly/1Qi4R7Z @@ -1562,6 +834,7 @@ components: match: 0.92 entityID: f15fa805ff4ac5e09026f5e78011a1bb6b26dec2 sourceListURL: http://bit.ly/1iwwTSJ + matchedName: jane doe properties: entityID: example: f15fa805ff4ac5e09026f5e78011a1bb6b26dec2 @@ -1585,6 +858,11 @@ components: description: Match percentage of search query example: 0.92 type: number + matchedName: + description: The highest scoring term from the search query. This term is + the precomputed indexed value used by the search algorithm. + example: jane doe + type: string NonProliferationSanction: example: sourceInfoURL: http://bit.ly/1NuVFxV @@ -1600,6 +878,7 @@ components: - Export-Import Bank Act - Nuclear Proliferation Prevention Act sourceListURL: http://bit.ly/1NuVFxV + matchedName: jane doe startDate: 2009-01-09 remarks: Associated with the A.Q. Khan Network properties: @@ -1645,23 +924,29 @@ components: description: Match percentage of search query example: 0.92 type: number + matchedName: + description: The highest scoring term from the search query. This term is + the precomputed indexed value used by the search algorithm. + example: jane doe + type: string ForeignSanctionsEvader: example: - sourceInfoURL: http://bit.ly/1N1docf addresses: [] entityNumber: "17526" + match: 0.92 + entityID: "17526" + datesOfBirth: 1966-02-13 + type: Individual + sourceListURL: https://bit.ly/1QWTIfE + sourceInfoURL: http://bit.ly/1N1docf citizenships: CH name: BEKTAS, Halis - match: 0.92 IDs: - CH, X0906223, Passport - entityID: "17526" programs: - SYRIA - FSE-SY - datesOfBirth: 1966-02-13 - type: Individual - sourceListURL: https://bit.ly/1QWTIfE + matchedName: jane doe properties: entityID: example: "17526" @@ -1709,6 +994,11 @@ components: description: Match percentage of search query example: 0.92 type: number + matchedName: + description: The highest scoring term from the search query. This term is + the precomputed indexed value used by the search algorithm. + example: jane doe + type: string PalestinianLegislativeCouncil: example: addresses: @@ -1727,6 +1017,7 @@ components: programs: - NS-PLC - Office of Misinformation + matchedName: jane doe remarks: HAMAS - Der al-Balah properties: entityID: @@ -1778,27 +1069,33 @@ components: description: Match percentage of search query example: 0.92 type: number + matchedName: + description: The highest scoring term from the search query. This term is + the precomputed indexed value used by the search algorithm. + example: jane doe + type: string CAPTAList: example: - sourceInfoURL: http://bit.ly/2PqohAD addresses: Bld 3 8/15, Rozhdestvenka St., Moscow, 107996, RU + entityNumber: "20002" + match: 0.92 + entityID: "20002" + type: Entity + sourceListURL: sourceListURL + sourceInfoURL: http://bit.ly/2PqohAD alternateNames: - BM BANK JSC - BM BANK AO - AKTSIONERNOE OBSHCHESTVO BM BANK - entityNumber: "20002" name: BM BANK PUBLIC JOINT STOCK COMPANY - match: 0.92 IDs: - RU, 1027700159497, Registration Number - RU, 29292940, Government Gazette Number - MOSWRUMM, SWIFT/BIC - entityID: "20002" programs: - UKRAINE-EO13662 - RUSSIA-EO14024 - type: Entity - sourceListURL: sourceListURL + matchedName: jane doe remarks: - All offices worldwide properties: @@ -1857,6 +1154,11 @@ components: description: Match percentage of search query example: 0.92 type: number + matchedName: + description: The highest scoring term from the search query. This term is + the precomputed indexed value used by the search algorithm. + example: jane doe + type: string ITARDebarred: example: sourceInfoURL: http://bit.ly/307FuRQ @@ -1868,6 +1170,7 @@ components: match: 0.92 entityID: d44d88d0265d93927b9ff1c13bbbb7c7db64142c sourceListURL: http://bit.ly/307FuRQ + matchedName: jane doe properties: entityID: example: d44d88d0265d93927b9ff1c13bbbb7c7db64142c @@ -1895,26 +1198,32 @@ components: description: Match percentage of search query example: 0.92 type: number + matchedName: + description: The highest scoring term from the search query. This term is + the precomputed indexed value used by the search algorithm. + example: jane doe + type: string NonSDNChineseMilitaryIndustrialComplex: example: - sourceInfoURL: https://bit.ly/3zsMQ4n addresses: - C/O Vistra Corporate Services Centre, Wickhams Cay II, Road Town, VG1110, VG + entityNumber: "32091" + match: 0.92 + entityID: "32091" + type: Entity + sourceListURL: https://bit.ly/1QWTIfE + sourceInfoURL: https://bit.ly/3zsMQ4n alternateNames: - PROVEN HONOUR CAPITAL LTD - PROVEN HONOUR - entityNumber: "32091" name: PROVEN HONOUR CAPITAL LIMITED - match: 0.92 IDs: - Proven Honour Capital Ltd, Issuer Name - XS1233275194, ISIN - entityID: "32091" programs: - CMIC-EO13959 - type: Entity - sourceListURL: https://bit.ly/1QWTIfE + matchedName: jane doe remarks: - '(Linked To: HUAWEI INVESTMENT & HOLDING CO., LTD.)' properties: @@ -1973,6 +1282,11 @@ components: description: Match percentage of search query example: 0.92 type: number + matchedName: + description: The highest scoring term from the search query. This term is + the precomputed indexed value used by the search algorithm. + example: jane doe + type: string NonSDNMenuBasedSanctionsList: example: EntityID: "17016" @@ -1995,6 +1309,7 @@ components: - GAZPROMBANK OPEN JOINT STOCK COMPANY - BANK GPB JSC - GAZPROMBANK AO + matchedName: jane doe Name: GAZPROMBANK JOINT STOCK COMPANY properties: EntityID: @@ -2052,84 +1367,252 @@ components: description: Match percentage of search query example: 0.92 type: number - UpdateOfacCompanyStatus: - description: Request body to update a company status. + matchedName: + description: The highest scoring term from the search query. This term is + the precomputed indexed value used by the search algorithm. + example: jane doe + type: string + EUConsolidatedSanctionsList: example: - notes: False positive - status: unsafe + birthCities: + - birthCities + - birthCities + entitySubjectType: entitySubjectType + nameAliasTitles: + - nameAliasTitles + - nameAliasTitles + addressPoBoxes: + - addressPoBoxes + - addressPoBoxes + addressCities: + - addressCities + - addressCities + match: 0.92 + birthDates: + - birthDates + - birthDates + entityPublicationURL: entityPublicationURL + entityLogicalId: 13 + nameAliasWholeNames: + - nameAliasWholeNames + - nameAliasWholeNames + validFromTo: '{}' + addressZipCodes: + - addressZipCodes + - addressZipCodes + addressCountryDescriptions: + - addressCountryDescriptions + - addressCountryDescriptions + entityReferenceNumber: entityReferenceNumber + addressStreets: + - addressStreets + - addressStreets + birthCountries: + - birthCountries + - birthCountries + matchedName: jane doe + fileGenerationDate: 28/10/2022 + entityRemark: entityRemark properties: - status: - description: Manual override of company/SDN sanction status - enum: - - unsafe - - exception + fileGenerationDate: + example: 28/10/2022 type: string - notes: - description: Free form notes about manually changing the Company status - example: False positive + entityLogicalId: + example: 13 + type: integer + entityRemark: type: string - required: - - status - UpdateOfacCustomerStatus: - description: Request body to update a customers status. + entitySubjectType: + type: string + entityPublicationURL: + type: string + entityReferenceNumber: + type: string + nameAliasWholeNames: + items: + type: string + type: array + nameAliasTitles: + items: + type: string + type: array + addressCities: + items: + type: string + type: array + addressStreets: + items: + type: string + type: array + addressPoBoxes: + items: + type: string + type: array + addressZipCodes: + items: + type: string + type: array + addressCountryDescriptions: + items: + type: string + type: array + birthDates: + items: + type: string + type: array + birthCities: + items: + type: string + type: array + birthCountries: + items: + type: string + type: array + validFromTo: + type: object + match: + description: Match percentage of search query + example: 0.92 + type: number + matchedName: + description: The highest scoring term from the search query. This term is + the precomputed indexed value used by the search algorithm. + example: jane doe + type: string + UKConsolidatedSanctionsList: example: - notes: False positive - status: unsafe + addresses: + - addresses + - addresses + groupType: groupType + names: + - names + - names + match: 0.92 + countries: + - countries + - countries + matchedName: jane doe properties: - status: - description: Manual override of customer/SDN sanction status - enum: - - unsafe - - exception + names: + items: + type: string + type: array + addresses: + items: + type: string + type: array + countries: + items: + type: string + type: array + groupType: + type: string + match: + description: Match percentage of search query + example: 0.92 + type: number + matchedName: + description: The highest scoring term from the search query. This term is + the precomputed indexed value used by the search algorithm. + example: jane doe type: string - notes: - description: Free form notes about manually changing the Customer status - example: False positive + UKSanctionsList: + example: + stateLocalities: + - stateLocalities + - stateLocalities + addresses: + - addresses + - addresses + names: + - names + - names + entityType: entityType + addressCountries: + - addressCountries + - addressCountries + match: 0.92 + nonLatinNames: + - nonLatinNames + - nonLatinNames + matchedName: jane doe + properties: + names: + items: + type: string + type: array + nonLatinNames: + items: + type: string + type: array + entityType: + type: string + addresses: + items: + type: string + type: array + addressCountries: + items: + type: string + type: array + stateLocalities: + items: + type: string + type: array + match: + description: Match percentage of search query + example: 0.92 + type: number + matchedName: + description: The highest scoring term from the search query. This term is + the precomputed indexed value used by the search algorithm. + example: jane doe type: string - required: - - status Search: description: Search results containing SDNs, alternate names, and/or addreses example: nonSDNChineseMilitaryIndustrialComplex: - - sourceInfoURL: https://bit.ly/3zsMQ4n - addresses: + - addresses: - C/O Vistra Corporate Services Centre, Wickhams Cay II, Road Town, VG1110, VG + entityNumber: "32091" + match: 0.92 + entityID: "32091" + type: Entity + sourceListURL: https://bit.ly/1QWTIfE + sourceInfoURL: https://bit.ly/3zsMQ4n alternateNames: - PROVEN HONOUR CAPITAL LTD - PROVEN HONOUR - entityNumber: "32091" name: PROVEN HONOUR CAPITAL LIMITED - match: 0.92 IDs: - Proven Honour Capital Ltd, Issuer Name - XS1233275194, ISIN - entityID: "32091" programs: - CMIC-EO13959 - type: Entity - sourceListURL: https://bit.ly/1QWTIfE + matchedName: jane doe remarks: - '(Linked To: HUAWEI INVESTMENT & HOLDING CO., LTD.)' - - sourceInfoURL: https://bit.ly/3zsMQ4n - addresses: + - addresses: - C/O Vistra Corporate Services Centre, Wickhams Cay II, Road Town, VG1110, VG + entityNumber: "32091" + match: 0.92 + entityID: "32091" + type: Entity + sourceListURL: https://bit.ly/1QWTIfE + sourceInfoURL: https://bit.ly/3zsMQ4n alternateNames: - PROVEN HONOUR CAPITAL LTD - PROVEN HONOUR - entityNumber: "32091" name: PROVEN HONOUR CAPITAL LIMITED - match: 0.92 IDs: - Proven Honour Capital Ltd, Issuer Name - XS1233275194, ISIN - entityID: "32091" programs: - CMIC-EO13959 - type: Entity - sourceListURL: https://bit.ly/1QWTIfE + matchedName: jane doe remarks: - '(Linked To: HUAWEI INVESTMENT & HOLDING CO., LTD.)' altNames: @@ -2139,12 +1622,14 @@ components: match: 0.91 entityID: "306" alternateName: NATIONAL BANK OF CUBA + matchedName: jane doe - alternateID: "220" alternateRemarks: Extra information alternateType: aka match: 0.91 entityID: "306" alternateName: NATIONAL BANK OF CUBA + matchedName: jane doe addresses: - country: Japan address: 123 73th St @@ -2171,6 +1656,7 @@ components: name: ISMAEL RETA action: FR NOTICE ADDED state: TX + matchedName: jane doe effectiveDate: 06/15/2016 expirationDate: 06/15/2025 - country: United States @@ -2185,8 +1671,34 @@ components: name: ISMAEL RETA action: FR NOTICE ADDED state: TX + matchedName: jane doe effectiveDate: 06/15/2016 expirationDate: 06/15/2025 + ukConsolidatedSanctionsList: + - addresses: + - addresses + - addresses + groupType: groupType + names: + - names + - names + match: 0.92 + countries: + - countries + - countries + matchedName: jane doe + - addresses: + - addresses + - addresses + groupType: groupType + names: + - names + - names + match: 0.92 + countries: + - countries + - countries + matchedName: jane doe palestinianLegislativeCouncil: - addresses: - 123 Dunbar Street, Testerville, TX, Palestine @@ -2204,6 +1716,7 @@ components: programs: - NS-PLC - Office of Misinformation + matchedName: jane doe remarks: HAMAS - Der al-Balah - addresses: - 123 Dunbar Street, Testerville, TX, Palestine @@ -2221,6 +1734,7 @@ components: programs: - NS-PLC - Office of Misinformation + matchedName: jane doe remarks: HAMAS - Der al-Balah itarDebarred: - sourceInfoURL: http://bit.ly/307FuRQ @@ -2232,6 +1746,7 @@ components: match: 0.92 entityID: d44d88d0265d93927b9ff1c13bbbb7c7db64142c sourceListURL: http://bit.ly/307FuRQ + matchedName: jane doe - sourceInfoURL: http://bit.ly/307FuRQ alternateNames: - Yasmin Tariq @@ -2241,6 +1756,7 @@ components: match: 0.92 entityID: d44d88d0265d93927b9ff1c13bbbb7c7db64142c sourceListURL: http://bit.ly/307FuRQ + matchedName: jane doe unverifiedCSL: - sourceInfoURL: http://bit.ly/1Qi4R7Z addresses: @@ -2249,6 +1765,7 @@ components: match: 0.92 entityID: f15fa805ff4ac5e09026f5e78011a1bb6b26dec2 sourceListURL: http://bit.ly/1iwwTSJ + matchedName: jane doe - sourceInfoURL: http://bit.ly/1Qi4R7Z addresses: - Komitas 26/114, Yerevan, Armenia, AM @@ -2256,47 +1773,50 @@ components: match: 0.92 entityID: f15fa805ff4ac5e09026f5e78011a1bb6b26dec2 sourceListURL: http://bit.ly/1iwwTSJ + matchedName: jane doe captaList: - - sourceInfoURL: http://bit.ly/2PqohAD - addresses: Bld 3 8/15, Rozhdestvenka St., Moscow, 107996, RU + - addresses: Bld 3 8/15, Rozhdestvenka St., Moscow, 107996, RU + entityNumber: "20002" + match: 0.92 + entityID: "20002" + type: Entity + sourceListURL: sourceListURL + sourceInfoURL: http://bit.ly/2PqohAD alternateNames: - BM BANK JSC - BM BANK AO - AKTSIONERNOE OBSHCHESTVO BM BANK - entityNumber: "20002" name: BM BANK PUBLIC JOINT STOCK COMPANY - match: 0.92 IDs: - RU, 1027700159497, Registration Number - RU, 29292940, Government Gazette Number - MOSWRUMM, SWIFT/BIC - entityID: "20002" programs: - UKRAINE-EO13662 - RUSSIA-EO14024 - type: Entity - sourceListURL: sourceListURL + matchedName: jane doe remarks: - All offices worldwide - - sourceInfoURL: http://bit.ly/2PqohAD - addresses: Bld 3 8/15, Rozhdestvenka St., Moscow, 107996, RU + - addresses: Bld 3 8/15, Rozhdestvenka St., Moscow, 107996, RU + entityNumber: "20002" + match: 0.92 + entityID: "20002" + type: Entity + sourceListURL: sourceListURL + sourceInfoURL: http://bit.ly/2PqohAD alternateNames: - BM BANK JSC - BM BANK AO - AKTSIONERNOE OBSHCHESTVO BM BANK - entityNumber: "20002" name: BM BANK PUBLIC JOINT STOCK COMPANY - match: 0.92 IDs: - RU, 1027700159497, Registration Number - RU, 29292940, Government Gazette Number - MOSWRUMM, SWIFT/BIC - entityID: "20002" programs: - UKRAINE-EO13662 - RUSSIA-EO14024 - type: Entity - sourceListURL: sourceListURL + matchedName: jane doe remarks: - All offices worldwide SDNs: @@ -2307,6 +1827,7 @@ components: - CUBA sdnName: BANCO NACIONAL DE CUBA title: Title of an individual + matchedName: jane doe remarks: Additional info - sdnType: individual match: 0.91 @@ -2315,7 +1836,45 @@ components: - CUBA sdnName: BANCO NACIONAL DE CUBA title: Title of an individual + matchedName: jane doe remarks: Additional info + ukSanctionsList: + - stateLocalities: + - stateLocalities + - stateLocalities + addresses: + - addresses + - addresses + names: + - names + - names + entityType: entityType + addressCountries: + - addressCountries + - addressCountries + match: 0.92 + nonLatinNames: + - nonLatinNames + - nonLatinNames + matchedName: jane doe + - stateLocalities: + - stateLocalities + - stateLocalities + addresses: + - addresses + - addresses + names: + - names + - names + entityType: entityType + addressCountries: + - addressCountries + - addressCountries + match: 0.92 + nonLatinNames: + - nonLatinNames + - nonLatinNames + matchedName: jane doe bisEntities: - licenseRequirement: For all items subject to the EAR. (See ¬ß744.11 of the EAR). @@ -2330,6 +1889,7 @@ components: name: Luhansk People¬ís Republic match: 0.91 sourceListURL: http://bit.ly/1MLgou0 + matchedName: jane doe startDate: 6/21/16 frNotice: 81 FR 61595 - licenseRequirement: For all items subject to the EAR. (See ¬ß744.11 of the @@ -2345,8 +1905,88 @@ components: name: Luhansk People¬ís Republic match: 0.91 sourceListURL: http://bit.ly/1MLgou0 + matchedName: jane doe startDate: 6/21/16 frNotice: 81 FR 61595 + euConsolidatedSanctionsList: + - birthCities: + - birthCities + - birthCities + entitySubjectType: entitySubjectType + nameAliasTitles: + - nameAliasTitles + - nameAliasTitles + addressPoBoxes: + - addressPoBoxes + - addressPoBoxes + addressCities: + - addressCities + - addressCities + match: 0.92 + birthDates: + - birthDates + - birthDates + entityPublicationURL: entityPublicationURL + entityLogicalId: 13 + nameAliasWholeNames: + - nameAliasWholeNames + - nameAliasWholeNames + validFromTo: '{}' + addressZipCodes: + - addressZipCodes + - addressZipCodes + addressCountryDescriptions: + - addressCountryDescriptions + - addressCountryDescriptions + entityReferenceNumber: entityReferenceNumber + addressStreets: + - addressStreets + - addressStreets + birthCountries: + - birthCountries + - birthCountries + matchedName: jane doe + fileGenerationDate: 28/10/2022 + entityRemark: entityRemark + - birthCities: + - birthCities + - birthCities + entitySubjectType: entitySubjectType + nameAliasTitles: + - nameAliasTitles + - nameAliasTitles + addressPoBoxes: + - addressPoBoxes + - addressPoBoxes + addressCities: + - addressCities + - addressCities + match: 0.92 + birthDates: + - birthDates + - birthDates + entityPublicationURL: entityPublicationURL + entityLogicalId: 13 + nameAliasWholeNames: + - nameAliasWholeNames + - nameAliasWholeNames + validFromTo: '{}' + addressZipCodes: + - addressZipCodes + - addressZipCodes + addressCountryDescriptions: + - addressCountryDescriptions + - addressCountryDescriptions + entityReferenceNumber: entityReferenceNumber + addressStreets: + - addressStreets + - addressStreets + birthCountries: + - birthCountries + - birthCountries + matchedName: jane doe + fileGenerationDate: 28/10/2022 + entityRemark: entityRemark militaryEndUsers: - addresses: Xiujia Bay, Weiyong Dt, Xian, 710021, CN endDate: endDate @@ -2354,6 +1994,7 @@ components: match: 0.92 FRNotice: 85 FR 83799 entityID: 26744194bd9b5cbec49db6ee29a4b53c697c7420 + matchedName: jane doe startDate: 2020-12-23 - addresses: Xiujia Bay, Weiyong Dt, Xian, 710021, CN endDate: endDate @@ -2361,38 +2002,41 @@ components: match: 0.92 FRNotice: 85 FR 83799 entityID: 26744194bd9b5cbec49db6ee29a4b53c697c7420 + matchedName: jane doe startDate: 2020-12-23 foreignSanctionsEvaders: - - sourceInfoURL: http://bit.ly/1N1docf - addresses: [] + - addresses: [] entityNumber: "17526" + match: 0.92 + entityID: "17526" + datesOfBirth: 1966-02-13 + type: Individual + sourceListURL: https://bit.ly/1QWTIfE + sourceInfoURL: http://bit.ly/1N1docf citizenships: CH name: BEKTAS, Halis - match: 0.92 IDs: - CH, X0906223, Passport - entityID: "17526" programs: - SYRIA - FSE-SY + matchedName: jane doe + - addresses: [] + entityNumber: "17526" + match: 0.92 + entityID: "17526" datesOfBirth: 1966-02-13 type: Individual sourceListURL: https://bit.ly/1QWTIfE - - sourceInfoURL: http://bit.ly/1N1docf - addresses: [] - entityNumber: "17526" + sourceInfoURL: http://bit.ly/1N1docf citizenships: CH name: BEKTAS, Halis - match: 0.92 IDs: - CH, X0906223, Passport - entityID: "17526" programs: - SYRIA - FSE-SY - datesOfBirth: 1966-02-13 - type: Individual - sourceListURL: https://bit.ly/1QWTIfE + matchedName: jane doe nonSDNMenuBasedSanctionsList: - EntityID: "17016" Programs: @@ -2415,6 +2059,7 @@ components: - GAZPROMBANK OPEN JOINT STOCK COMPANY - BANK GPB JSC - GAZPROMBANK AO + matchedName: jane doe Name: GAZPROMBANK JOINT STOCK COMPANY - EntityID: "17016" Programs: @@ -2437,6 +2082,7 @@ components: - GAZPROMBANK OPEN JOINT STOCK COMPANY - BANK GPB JSC - GAZPROMBANK AO + matchedName: jane doe Name: GAZPROMBANK JOINT STOCK COMPANY refreshedAt: 2000-01-23T04:56:07.000+00:00 sectoralSanctions: @@ -2458,6 +2104,7 @@ components: - UKRAINE-EO13662 - SYRIA sourceListURL: http://bit.ly/1MLgou0 + matchedName: jane doe remarks: - 'For more information on directives, please visit the following link: http://www.treasury.gov/resource-center/sanctions/Programs/Pages/ukraine.aspx#directives.' @@ -2480,6 +2127,7 @@ components: - UKRAINE-EO13662 - SYRIA sourceListURL: http://bit.ly/1MLgou0 + matchedName: jane doe remarks: - 'For more information on directives, please visit the following link: http://www.treasury.gov/resource-center/sanctions/Programs/Pages/ukraine.aspx#directives.' @@ -2498,6 +2146,7 @@ components: - Export-Import Bank Act - Nuclear Proliferation Prevention Act sourceListURL: http://bit.ly/1NuVFxV + matchedName: jane doe startDate: 2009-01-09 remarks: Associated with the A.Q. Khan Network - sourceInfoURL: http://bit.ly/1NuVFxV @@ -2513,6 +2162,7 @@ components: - Export-Import Bank Act - Nuclear Proliferation Prevention Act sourceListURL: http://bit.ly/1NuVFxV + matchedName: jane doe startDate: 2009-01-09 remarks: Associated with the A.Q. Khan Network properties: @@ -2576,38 +2226,21 @@ components: items: $ref: '#/components/schemas/NonSDNMenuBasedSanctionsList' type: array + euConsolidatedSanctionsList: + items: + $ref: '#/components/schemas/EUConsolidatedSanctionsList' + type: array + ukConsolidatedSanctionsList: + items: + $ref: '#/components/schemas/UKConsolidatedSanctionsList' + type: array + ukSanctionsList: + items: + $ref: '#/components/schemas/UKSanctionsList' + type: array refreshedAt: format: date-time type: string - OfacWatch: - description: Customer or Company watch - example: - watchID: 08ddba92 - properties: - watchID: - description: Object representing a customer or company watch - example: 08ddba92 - type: string - OfacWatchRequest: - description: Webhook or other means of notification on search criteria. OFAC - will make a POST request with a body of the customer or company (SDN, AltNames, - and Address). - example: - webhook: https://api.example.com/ofac/webhook - authToken: 75d0384b-a105-4048-9fce-91a280ce7337 - properties: - authToken: - description: Private token supplied by clients to be used for authenticating - webhooks. - example: 75d0384b-a105-4048-9fce-91a280ce7337 - type: string - webhook: - description: HTTPS url for webhook on search match - example: https://api.example.com/ofac/webhook - type: string - required: - - authToken - - webhook Downloads: items: $ref: '#/components/schemas/Download' diff --git a/client/api_watchman.go b/client/api_watchman.go index a1c6055..a3f225f 100644 --- a/client/api_watchman.go +++ b/client/api_watchman.go @@ -26,41 +26,43 @@ var ( // WatchmanApiService WatchmanApi service type WatchmanApiService service -// AddOfacCompanyNameWatchOpts Optional parameters for the method 'AddOfacCompanyNameWatch' -type AddOfacCompanyNameWatchOpts struct { +// GetLatestDownloadsOpts Optional parameters for the method 'GetLatestDownloads' +type GetLatestDownloadsOpts struct { XRequestID optional.String + Limit optional.Int32 } /* -AddOfacCompanyNameWatch Watch company -Watch a company by its name. The match percentage will be included in the webhook's JSON payload. +GetLatestDownloads Get latest downloads +Return list of recent downloads of list data. - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param name Company name used to match and send watch notifications - - @param ofacWatchRequest - - @param optional nil or *AddOfacCompanyNameWatchOpts - Optional Parameters: + - @param optional nil or *GetLatestDownloadsOpts - Optional Parameters: - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs + - @param "Limit" (optional.Int32) - Maximum number of downloads to return sorted by their timestamp in decending order. -@return OfacWatch +@return []Download */ -func (a *WatchmanApiService) AddOfacCompanyNameWatch(ctx _context.Context, name string, ofacWatchRequest OfacWatchRequest, localVarOptionals *AddOfacCompanyNameWatchOpts) (OfacWatch, *_nethttp.Response, error) { +func (a *WatchmanApiService) GetLatestDownloads(ctx _context.Context, localVarOptionals *GetLatestDownloadsOpts) ([]Download, *_nethttp.Response, error) { var ( - localVarHTTPMethod = _nethttp.MethodPost + localVarHTTPMethod = _nethttp.MethodGet localVarPostBody interface{} localVarFormFileName string localVarFileName string localVarFileBytes []byte - localVarReturnValue OfacWatch + localVarReturnValue []Download ) // create path and map variables - localVarPath := a.client.cfg.BasePath + "/ofac/companies/watch" + localVarPath := a.client.cfg.BasePath + "/downloads" localVarHeaderParams := make(map[string]string) localVarQueryParams := _neturl.Values{} localVarFormParams := _neturl.Values{} - localVarQueryParams.Add("name", parameterToString(name, "")) + if localVarOptionals != nil && localVarOptionals.Limit.IsSet() { + localVarQueryParams.Add("limit", parameterToString(localVarOptionals.Limit.Value(), "")) + } // to determine the Content-Type header - localVarHTTPContentTypes := []string{"application/json"} + localVarHTTPContentTypes := []string{} // set Content-Type header localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) @@ -79,8 +81,6 @@ func (a *WatchmanApiService) AddOfacCompanyNameWatch(ctx _context.Context, name if localVarOptionals != nil && localVarOptionals.XRequestID.IsSet() { localVarHeaderParams["X-Request-ID"] = parameterToString(localVarOptionals.XRequestID.Value(), "") } - // body params - localVarPostBody = &ofacWatchRequest r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) if err != nil { return localVarReturnValue, nil, err @@ -126,42 +126,40 @@ func (a *WatchmanApiService) AddOfacCompanyNameWatch(ctx _context.Context, name return localVarReturnValue, localVarHTTPResponse, nil } -// AddOfacCompanyWatchOpts Optional parameters for the method 'AddOfacCompanyWatch' -type AddOfacCompanyWatchOpts struct { +// GetSDNAddressesOpts Optional parameters for the method 'GetSDNAddresses' +type GetSDNAddressesOpts struct { XRequestID optional.String } /* -AddOfacCompanyWatch Watch OFAC company -Add ID watch on an OFAC Company. +GetSDNAddresses Get SDN addresses - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param companyID Company ID - - @param ofacWatchRequest - - @param optional nil or *AddOfacCompanyWatchOpts - Optional Parameters: + - @param sdnID SDN ID + - @param optional nil or *GetSDNAddressesOpts - Optional Parameters: - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs -@return OfacWatch +@return []OfacEntityAddress */ -func (a *WatchmanApiService) AddOfacCompanyWatch(ctx _context.Context, companyID string, ofacWatchRequest OfacWatchRequest, localVarOptionals *AddOfacCompanyWatchOpts) (OfacWatch, *_nethttp.Response, error) { +func (a *WatchmanApiService) GetSDNAddresses(ctx _context.Context, sdnID string, localVarOptionals *GetSDNAddressesOpts) ([]OfacEntityAddress, *_nethttp.Response, error) { var ( - localVarHTTPMethod = _nethttp.MethodPost + localVarHTTPMethod = _nethttp.MethodGet localVarPostBody interface{} localVarFormFileName string localVarFileName string localVarFileBytes []byte - localVarReturnValue OfacWatch + localVarReturnValue []OfacEntityAddress ) // create path and map variables - localVarPath := a.client.cfg.BasePath + "/ofac/companies/{companyID}/watch" - localVarPath = strings.Replace(localVarPath, "{"+"companyID"+"}", _neturl.QueryEscape(parameterToString(companyID, "")), -1) + localVarPath := a.client.cfg.BasePath + "/ofac/sdn/{sdnID}/addresses" + localVarPath = strings.Replace(localVarPath, "{"+"sdnID"+"}", _neturl.QueryEscape(parameterToString(sdnID, "")), -1) localVarHeaderParams := make(map[string]string) localVarQueryParams := _neturl.Values{} localVarFormParams := _neturl.Values{} // to determine the Content-Type header - localVarHTTPContentTypes := []string{"application/json"} + localVarHTTPContentTypes := []string{} // set Content-Type header localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) @@ -180,8 +178,6 @@ func (a *WatchmanApiService) AddOfacCompanyWatch(ctx _context.Context, companyID if localVarOptionals != nil && localVarOptionals.XRequestID.IsSet() { localVarHeaderParams["X-Request-ID"] = parameterToString(localVarOptionals.XRequestID.Value(), "") } - // body params - localVarPostBody = &ofacWatchRequest r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) if err != nil { return localVarReturnValue, nil, err @@ -211,7 +207,6 @@ func (a *WatchmanApiService) AddOfacCompanyWatch(ctx _context.Context, companyID return localVarReturnValue, localVarHTTPResponse, newErr } newErr.model = v - return localVarReturnValue, localVarHTTPResponse, newErr } return localVarReturnValue, localVarHTTPResponse, newErr } @@ -228,41 +223,40 @@ func (a *WatchmanApiService) AddOfacCompanyWatch(ctx _context.Context, companyID return localVarReturnValue, localVarHTTPResponse, nil } -// AddOfacCustomerNameWatchOpts Optional parameters for the method 'AddOfacCustomerNameWatch' -type AddOfacCustomerNameWatchOpts struct { +// GetSDNAltNamesOpts Optional parameters for the method 'GetSDNAltNames' +type GetSDNAltNamesOpts struct { XRequestID optional.String } /* -AddOfacCustomerNameWatch Watch customer -Watch a customer by its name. The match percentage will be included in the webhook's JSON payload. +GetSDNAltNames Get SDN alt names - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param name Individual name used to match and send watch notifications - - @param ofacWatchRequest - - @param optional nil or *AddOfacCustomerNameWatchOpts - Optional Parameters: + - @param sdnID SDN ID + - @param optional nil or *GetSDNAltNamesOpts - Optional Parameters: - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs -@return OfacWatch +@return []OfacAlt */ -func (a *WatchmanApiService) AddOfacCustomerNameWatch(ctx _context.Context, name string, ofacWatchRequest OfacWatchRequest, localVarOptionals *AddOfacCustomerNameWatchOpts) (OfacWatch, *_nethttp.Response, error) { +func (a *WatchmanApiService) GetSDNAltNames(ctx _context.Context, sdnID string, localVarOptionals *GetSDNAltNamesOpts) ([]OfacAlt, *_nethttp.Response, error) { var ( - localVarHTTPMethod = _nethttp.MethodPost + localVarHTTPMethod = _nethttp.MethodGet localVarPostBody interface{} localVarFormFileName string localVarFileName string localVarFileBytes []byte - localVarReturnValue OfacWatch + localVarReturnValue []OfacAlt ) // create path and map variables - localVarPath := a.client.cfg.BasePath + "/ofac/customers/watch" + localVarPath := a.client.cfg.BasePath + "/ofac/sdn/{sdnID}/alts" + localVarPath = strings.Replace(localVarPath, "{"+"sdnID"+"}", _neturl.QueryEscape(parameterToString(sdnID, "")), -1) + localVarHeaderParams := make(map[string]string) localVarQueryParams := _neturl.Values{} localVarFormParams := _neturl.Values{} - localVarQueryParams.Add("name", parameterToString(name, "")) // to determine the Content-Type header - localVarHTTPContentTypes := []string{"application/json"} + localVarHTTPContentTypes := []string{} // set Content-Type header localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) @@ -281,8 +275,6 @@ func (a *WatchmanApiService) AddOfacCustomerNameWatch(ctx _context.Context, name if localVarOptionals != nil && localVarOptionals.XRequestID.IsSet() { localVarHeaderParams["X-Request-ID"] = parameterToString(localVarOptionals.XRequestID.Value(), "") } - // body params - localVarPostBody = &ofacWatchRequest r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) if err != nil { return localVarReturnValue, nil, err @@ -328,42 +320,44 @@ func (a *WatchmanApiService) AddOfacCustomerNameWatch(ctx _context.Context, name return localVarReturnValue, localVarHTTPResponse, nil } -// AddOfacCustomerWatchOpts Optional parameters for the method 'AddOfacCustomerWatch' -type AddOfacCustomerWatchOpts struct { - XRequestID optional.String +// GetUIValuesOpts Optional parameters for the method 'GetUIValues' +type GetUIValuesOpts struct { + Limit optional.Int32 } /* -AddOfacCustomerWatch Watch OFAC customer -Add ID watch on an OFAC Customer. +GetUIValues Get UI values +Return an ordered distinct list of keys for an SDN property. - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param customerID Customer ID - - @param ofacWatchRequest - - @param optional nil or *AddOfacCustomerWatchOpts - Optional Parameters: - - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs + - @param key SDN property to lookup. Values are sdnType, ofacProgram + - @param optional nil or *GetUIValuesOpts - Optional Parameters: + - @param "Limit" (optional.Int32) - Maximum number of UI keys returned -@return OfacWatch +@return []SdnType */ -func (a *WatchmanApiService) AddOfacCustomerWatch(ctx _context.Context, customerID string, ofacWatchRequest OfacWatchRequest, localVarOptionals *AddOfacCustomerWatchOpts) (OfacWatch, *_nethttp.Response, error) { +func (a *WatchmanApiService) GetUIValues(ctx _context.Context, key SdnType, localVarOptionals *GetUIValuesOpts) ([]SdnType, *_nethttp.Response, error) { var ( - localVarHTTPMethod = _nethttp.MethodPost + localVarHTTPMethod = _nethttp.MethodGet localVarPostBody interface{} localVarFormFileName string localVarFileName string localVarFileBytes []byte - localVarReturnValue OfacWatch + localVarReturnValue []SdnType ) // create path and map variables - localVarPath := a.client.cfg.BasePath + "/ofac/customers/{customerID}/watch" - localVarPath = strings.Replace(localVarPath, "{"+"customerID"+"}", _neturl.QueryEscape(parameterToString(customerID, "")), -1) + localVarPath := a.client.cfg.BasePath + "/ui/values/{key}" + localVarPath = strings.Replace(localVarPath, "{"+"key"+"}", _neturl.QueryEscape(parameterToString(key, "")), -1) localVarHeaderParams := make(map[string]string) localVarQueryParams := _neturl.Values{} localVarFormParams := _neturl.Values{} + if localVarOptionals != nil && localVarOptionals.Limit.IsSet() { + localVarQueryParams.Add("limit", parameterToString(localVarOptionals.Limit.Value(), "")) + } // to determine the Content-Type header - localVarHTTPContentTypes := []string{"application/json"} + localVarHTTPContentTypes := []string{} // set Content-Type header localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) @@ -379,11 +373,6 @@ func (a *WatchmanApiService) AddOfacCustomerWatch(ctx _context.Context, customer if localVarHTTPHeaderAccept != "" { localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } - if localVarOptionals != nil && localVarOptionals.XRequestID.IsSet() { - localVarHeaderParams["X-Request-ID"] = parameterToString(localVarOptionals.XRequestID.Value(), "") - } - // body params - localVarPostBody = &ofacWatchRequest r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) if err != nil { return localVarReturnValue, nil, err @@ -413,7 +402,6 @@ func (a *WatchmanApiService) AddOfacCustomerWatch(ctx _context.Context, customer return localVarReturnValue, localVarHTTPResponse, newErr } newErr.model = v - return localVarReturnValue, localVarHTTPResponse, newErr } return localVarReturnValue, localVarHTTPResponse, newErr } @@ -430,41 +418,26 @@ func (a *WatchmanApiService) AddOfacCustomerWatch(ctx _context.Context, customer return localVarReturnValue, localVarHTTPResponse, nil } -// GetLatestDownloadsOpts Optional parameters for the method 'GetLatestDownloads' -type GetLatestDownloadsOpts struct { - XRequestID optional.String - Limit optional.Int32 -} - /* -GetLatestDownloads Get latest downloads -Return list of recent downloads of list data. +Ping Ping Watchman service +Check if the Watchman service is running. - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param optional nil or *GetLatestDownloadsOpts - Optional Parameters: - - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs - - @param "Limit" (optional.Int32) - Maximum number of downloads to return sorted by their timestamp in decending order. - -@return []Download */ -func (a *WatchmanApiService) GetLatestDownloads(ctx _context.Context, localVarOptionals *GetLatestDownloadsOpts) ([]Download, *_nethttp.Response, error) { +func (a *WatchmanApiService) Ping(ctx _context.Context) (*_nethttp.Response, error) { var ( localVarHTTPMethod = _nethttp.MethodGet localVarPostBody interface{} localVarFormFileName string localVarFileName string localVarFileBytes []byte - localVarReturnValue []Download ) // create path and map variables - localVarPath := a.client.cfg.BasePath + "/downloads" + localVarPath := a.client.cfg.BasePath + "/ping" localVarHeaderParams := make(map[string]string) localVarQueryParams := _neturl.Values{} localVarFormParams := _neturl.Values{} - if localVarOptionals != nil && localVarOptionals.Limit.IsSet() { - localVarQueryParams.Add("limit", parameterToString(localVarOptionals.Limit.Value(), "")) - } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -475,30 +448,27 @@ func (a *WatchmanApiService) GetLatestDownloads(ctx _context.Context, localVarOp } // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} + localVarHTTPHeaderAccepts := []string{} // set Accept header localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) if localVarHTTPHeaderAccept != "" { localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } - if localVarOptionals != nil && localVarOptionals.XRequestID.IsSet() { - localVarHeaderParams["X-Request-ID"] = parameterToString(localVarOptionals.XRequestID.Value(), "") - } r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) if err != nil { - return localVarReturnValue, nil, err + return nil, err } localVarHTTPResponse, err := a.client.callAPI(r) if err != nil || localVarHTTPResponse == nil { - return localVarReturnValue, localVarHTTPResponse, err + return localVarHTTPResponse, err } localVarBody, err := _ioutil.ReadAll(localVarHTTPResponse.Body) localVarHTTPResponse.Body.Close() if err != nil { - return localVarReturnValue, localVarHTTPResponse, err + return localVarHTTPResponse, err } if localVarHTTPResponse.StatusCode >= 300 { @@ -506,63 +476,111 @@ func (a *WatchmanApiService) GetLatestDownloads(ctx _context.Context, localVarOp body: localVarBody, error: localVarHTTPResponse.Status, } - if localVarHTTPResponse.StatusCode == 400 { - var v Error - err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHTTPResponse, newErr - } - newErr.model = v - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: err.Error(), - } - return localVarReturnValue, localVarHTTPResponse, newErr + return localVarHTTPResponse, newErr } - return localVarReturnValue, localVarHTTPResponse, nil + return localVarHTTPResponse, nil } -// GetOfacCompanyOpts Optional parameters for the method 'GetOfacCompany' -type GetOfacCompanyOpts struct { +// SearchOpts Optional parameters for the method 'Search' +type SearchOpts struct { XRequestID optional.String + Q optional.String + Name optional.String + Address optional.String + City optional.String + State optional.String + Providence optional.String + Zip optional.String + Country optional.String + AltName optional.String + Id optional.String + MinMatch optional.Float32 + Limit optional.Int32 + SdnType optional.Interface + Program optional.String } /* -GetOfacCompany Get company -Get information about a company, trust, or organization such as addresses, alternate names, and remarks. +Search Search - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param companyID Company ID - - @param optional nil or *GetOfacCompanyOpts - Optional Parameters: + - @param optional nil or *SearchOpts - Optional Parameters: - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs + - @param "Q" (optional.String) - Search across Name, Alt Names, and SDN Address fields for all available sanctions lists. Entries may be returned in all response sub-objects. + - @param "Name" (optional.String) - Name which could correspond to an entry on the SDN, Denied Persons, Sectoral Sanctions Identifications, or BIS Entity List sanctions lists. Alt names are also searched. + - @param "Address" (optional.String) - Physical address which could correspond to a human on the SDN list. Only Address results will be returned. + - @param "City" (optional.String) - City name as desginated by SDN guidelines. Only Address results will be returned. + - @param "State" (optional.String) - State name as desginated by SDN guidelines. Only Address results will be returned. + - @param "Providence" (optional.String) - Providence name as desginated by SDN guidelines. Only Address results will be returned. + - @param "Zip" (optional.String) - Zip code as desginated by SDN guidelines. Only Address results will be returned. + - @param "Country" (optional.String) - Country name as desginated by SDN guidelines. Only Address results will be returned. + - @param "AltName" (optional.String) - Alternate name which could correspond to a human on the SDN list. Only Alt name results will be returned. + - @param "Id" (optional.String) - ID value often found in remarks property of an SDN. Takes the form of 'No. NNNNN' as an alphanumeric value. + - @param "MinMatch" (optional.Float32) - Match percentage that search query must obtain for results to be returned. + - @param "Limit" (optional.Int32) - Maximum results returned by a search. Results are sorted by their match percentage in decending order. + - @param "SdnType" (optional.Interface of SdnType) - Optional filter to only return SDNs whose type case-insensitively matches. + - @param "Program" (optional.String) - Optional filter to only return SDNs whose program case-insensitively matches. -@return OfacCompany +@return Search */ -func (a *WatchmanApiService) GetOfacCompany(ctx _context.Context, companyID string, localVarOptionals *GetOfacCompanyOpts) (OfacCompany, *_nethttp.Response, error) { +func (a *WatchmanApiService) Search(ctx _context.Context, localVarOptionals *SearchOpts) (Search, *_nethttp.Response, error) { var ( localVarHTTPMethod = _nethttp.MethodGet localVarPostBody interface{} localVarFormFileName string localVarFileName string localVarFileBytes []byte - localVarReturnValue OfacCompany + localVarReturnValue Search ) // create path and map variables - localVarPath := a.client.cfg.BasePath + "/ofac/companies/{companyID}" - localVarPath = strings.Replace(localVarPath, "{"+"companyID"+"}", _neturl.QueryEscape(parameterToString(companyID, "")), -1) - + localVarPath := a.client.cfg.BasePath + "/search" localVarHeaderParams := make(map[string]string) localVarQueryParams := _neturl.Values{} localVarFormParams := _neturl.Values{} + if localVarOptionals != nil && localVarOptionals.Q.IsSet() { + localVarQueryParams.Add("q", parameterToString(localVarOptionals.Q.Value(), "")) + } + if localVarOptionals != nil && localVarOptionals.Name.IsSet() { + localVarQueryParams.Add("name", parameterToString(localVarOptionals.Name.Value(), "")) + } + if localVarOptionals != nil && localVarOptionals.Address.IsSet() { + localVarQueryParams.Add("address", parameterToString(localVarOptionals.Address.Value(), "")) + } + if localVarOptionals != nil && localVarOptionals.City.IsSet() { + localVarQueryParams.Add("city", parameterToString(localVarOptionals.City.Value(), "")) + } + if localVarOptionals != nil && localVarOptionals.State.IsSet() { + localVarQueryParams.Add("state", parameterToString(localVarOptionals.State.Value(), "")) + } + if localVarOptionals != nil && localVarOptionals.Providence.IsSet() { + localVarQueryParams.Add("providence", parameterToString(localVarOptionals.Providence.Value(), "")) + } + if localVarOptionals != nil && localVarOptionals.Zip.IsSet() { + localVarQueryParams.Add("zip", parameterToString(localVarOptionals.Zip.Value(), "")) + } + if localVarOptionals != nil && localVarOptionals.Country.IsSet() { + localVarQueryParams.Add("country", parameterToString(localVarOptionals.Country.Value(), "")) + } + if localVarOptionals != nil && localVarOptionals.AltName.IsSet() { + localVarQueryParams.Add("altName", parameterToString(localVarOptionals.AltName.Value(), "")) + } + if localVarOptionals != nil && localVarOptionals.Id.IsSet() { + localVarQueryParams.Add("id", parameterToString(localVarOptionals.Id.Value(), "")) + } + if localVarOptionals != nil && localVarOptionals.MinMatch.IsSet() { + localVarQueryParams.Add("minMatch", parameterToString(localVarOptionals.MinMatch.Value(), "")) + } + if localVarOptionals != nil && localVarOptionals.Limit.IsSet() { + localVarQueryParams.Add("limit", parameterToString(localVarOptionals.Limit.Value(), "")) + } + if localVarOptionals != nil && localVarOptionals.SdnType.IsSet() { + localVarQueryParams.Add("sdnType", parameterToString(localVarOptionals.SdnType.Value(), "")) + } + if localVarOptionals != nil && localVarOptionals.Program.IsSet() { + localVarQueryParams.Add("program", parameterToString(localVarOptionals.Program.Value(), "")) + } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -628,39 +646,46 @@ func (a *WatchmanApiService) GetOfacCompany(ctx _context.Context, companyID stri return localVarReturnValue, localVarHTTPResponse, nil } -// GetOfacCustomerOpts Optional parameters for the method 'GetOfacCustomer' -type GetOfacCustomerOpts struct { +// SearchUSCSLOpts Optional parameters for the method 'SearchUSCSL' +type SearchUSCSLOpts struct { XRequestID optional.String + Name optional.String + Limit optional.Int32 } /* -GetOfacCustomer Get customer -Get information about a customer's addresses, alternate names, and SDN metadata. +SearchUSCSL Search US CSL +Search the US Consolidated Screening List - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param customerID Customer ID - - @param optional nil or *GetOfacCustomerOpts - Optional Parameters: + - @param optional nil or *SearchUSCSLOpts - Optional Parameters: - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs + - @param "Name" (optional.String) - Name which could correspond to an entry on the CSL + - @param "Limit" (optional.Int32) - Maximum number of downloads to return sorted by their timestamp in decending order. -@return OfacCustomer +@return Search */ -func (a *WatchmanApiService) GetOfacCustomer(ctx _context.Context, customerID string, localVarOptionals *GetOfacCustomerOpts) (OfacCustomer, *_nethttp.Response, error) { +func (a *WatchmanApiService) SearchUSCSL(ctx _context.Context, localVarOptionals *SearchUSCSLOpts) (Search, *_nethttp.Response, error) { var ( localVarHTTPMethod = _nethttp.MethodGet localVarPostBody interface{} localVarFormFileName string localVarFileName string localVarFileBytes []byte - localVarReturnValue OfacCustomer + localVarReturnValue Search ) // create path and map variables - localVarPath := a.client.cfg.BasePath + "/ofac/customers/{customerID}" - localVarPath = strings.Replace(localVarPath, "{"+"customerID"+"}", _neturl.QueryEscape(parameterToString(customerID, "")), -1) - + localVarPath := a.client.cfg.BasePath + "/search/us-csl" localVarHeaderParams := make(map[string]string) localVarQueryParams := _neturl.Values{} localVarFormParams := _neturl.Values{} + if localVarOptionals != nil && localVarOptionals.Name.IsSet() { + localVarQueryParams.Add("name", parameterToString(localVarOptionals.Name.Value(), "")) + } + if localVarOptionals != nil && localVarOptionals.Limit.IsSet() { + localVarQueryParams.Add("limit", parameterToString(localVarOptionals.Limit.Value(), "")) + } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -725,1268 +750,3 @@ func (a *WatchmanApiService) GetOfacCustomer(ctx _context.Context, customerID st return localVarReturnValue, localVarHTTPResponse, nil } - -// GetSDNOpts Optional parameters for the method 'GetSDN' -type GetSDNOpts struct { - XRequestID optional.String -} - -/* -GetSDN Get SDN -Get SDN details - - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param sdnID SDN ID - - @param optional nil or *GetSDNOpts - Optional Parameters: - - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs - -@return OfacSdn -*/ -func (a *WatchmanApiService) GetSDN(ctx _context.Context, sdnID string, localVarOptionals *GetSDNOpts) (OfacSdn, *_nethttp.Response, error) { - var ( - localVarHTTPMethod = _nethttp.MethodGet - localVarPostBody interface{} - localVarFormFileName string - localVarFileName string - localVarFileBytes []byte - localVarReturnValue OfacSdn - ) - - // create path and map variables - localVarPath := a.client.cfg.BasePath + "/ofac/sdn/{sdnID}" - localVarPath = strings.Replace(localVarPath, "{"+"sdnID"+"}", _neturl.QueryEscape(parameterToString(sdnID, "")), -1) - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := _neturl.Values{} - localVarFormParams := _neturl.Values{} - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - if localVarOptionals != nil && localVarOptionals.XRequestID.IsSet() { - localVarHeaderParams["X-Request-ID"] = parameterToString(localVarOptionals.XRequestID.Value(), "") - } - r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) - if err != nil { - return localVarReturnValue, nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(r) - if err != nil || localVarHTTPResponse == nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - localVarBody, err := _ioutil.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - if err != nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - if localVarHTTPResponse.StatusCode == 400 { - var v Error - err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHTTPResponse, newErr - } - newErr.model = v - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: err.Error(), - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - return localVarReturnValue, localVarHTTPResponse, nil -} - -// GetSDNAddressesOpts Optional parameters for the method 'GetSDNAddresses' -type GetSDNAddressesOpts struct { - XRequestID optional.String -} - -/* -GetSDNAddresses Get SDN addresses - - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param sdnID SDN ID - - @param optional nil or *GetSDNAddressesOpts - Optional Parameters: - - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs - -@return []OfacEntityAddress -*/ -func (a *WatchmanApiService) GetSDNAddresses(ctx _context.Context, sdnID string, localVarOptionals *GetSDNAddressesOpts) ([]OfacEntityAddress, *_nethttp.Response, error) { - var ( - localVarHTTPMethod = _nethttp.MethodGet - localVarPostBody interface{} - localVarFormFileName string - localVarFileName string - localVarFileBytes []byte - localVarReturnValue []OfacEntityAddress - ) - - // create path and map variables - localVarPath := a.client.cfg.BasePath + "/ofac/sdn/{sdnID}/addresses" - localVarPath = strings.Replace(localVarPath, "{"+"sdnID"+"}", _neturl.QueryEscape(parameterToString(sdnID, "")), -1) - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := _neturl.Values{} - localVarFormParams := _neturl.Values{} - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - if localVarOptionals != nil && localVarOptionals.XRequestID.IsSet() { - localVarHeaderParams["X-Request-ID"] = parameterToString(localVarOptionals.XRequestID.Value(), "") - } - r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) - if err != nil { - return localVarReturnValue, nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(r) - if err != nil || localVarHTTPResponse == nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - localVarBody, err := _ioutil.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - if err != nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - if localVarHTTPResponse.StatusCode == 400 { - var v Error - err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHTTPResponse, newErr - } - newErr.model = v - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: err.Error(), - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - return localVarReturnValue, localVarHTTPResponse, nil -} - -// GetSDNAltNamesOpts Optional parameters for the method 'GetSDNAltNames' -type GetSDNAltNamesOpts struct { - XRequestID optional.String -} - -/* -GetSDNAltNames Get SDN alt names - - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param sdnID SDN ID - - @param optional nil or *GetSDNAltNamesOpts - Optional Parameters: - - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs - -@return []OfacAlt -*/ -func (a *WatchmanApiService) GetSDNAltNames(ctx _context.Context, sdnID string, localVarOptionals *GetSDNAltNamesOpts) ([]OfacAlt, *_nethttp.Response, error) { - var ( - localVarHTTPMethod = _nethttp.MethodGet - localVarPostBody interface{} - localVarFormFileName string - localVarFileName string - localVarFileBytes []byte - localVarReturnValue []OfacAlt - ) - - // create path and map variables - localVarPath := a.client.cfg.BasePath + "/ofac/sdn/{sdnID}/alts" - localVarPath = strings.Replace(localVarPath, "{"+"sdnID"+"}", _neturl.QueryEscape(parameterToString(sdnID, "")), -1) - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := _neturl.Values{} - localVarFormParams := _neturl.Values{} - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - if localVarOptionals != nil && localVarOptionals.XRequestID.IsSet() { - localVarHeaderParams["X-Request-ID"] = parameterToString(localVarOptionals.XRequestID.Value(), "") - } - r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) - if err != nil { - return localVarReturnValue, nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(r) - if err != nil || localVarHTTPResponse == nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - localVarBody, err := _ioutil.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - if err != nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - if localVarHTTPResponse.StatusCode == 400 { - var v Error - err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHTTPResponse, newErr - } - newErr.model = v - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: err.Error(), - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - return localVarReturnValue, localVarHTTPResponse, nil -} - -// GetUIValuesOpts Optional parameters for the method 'GetUIValues' -type GetUIValuesOpts struct { - Limit optional.Int32 -} - -/* -GetUIValues Get UI values -Return an ordered distinct list of keys for an SDN property. - - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param key SDN property to lookup. Values are sdnType, ofacProgram - - @param optional nil or *GetUIValuesOpts - Optional Parameters: - - @param "Limit" (optional.Int32) - Maximum number of UI keys returned - -@return []SdnType -*/ -func (a *WatchmanApiService) GetUIValues(ctx _context.Context, key SdnType, localVarOptionals *GetUIValuesOpts) ([]SdnType, *_nethttp.Response, error) { - var ( - localVarHTTPMethod = _nethttp.MethodGet - localVarPostBody interface{} - localVarFormFileName string - localVarFileName string - localVarFileBytes []byte - localVarReturnValue []SdnType - ) - - // create path and map variables - localVarPath := a.client.cfg.BasePath + "/ui/values/{key}" - localVarPath = strings.Replace(localVarPath, "{"+"key"+"}", _neturl.QueryEscape(parameterToString(key, "")), -1) - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := _neturl.Values{} - localVarFormParams := _neturl.Values{} - - if localVarOptionals != nil && localVarOptionals.Limit.IsSet() { - localVarQueryParams.Add("limit", parameterToString(localVarOptionals.Limit.Value(), "")) - } - // to determine the Content-Type header - localVarHTTPContentTypes := []string{} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) - if err != nil { - return localVarReturnValue, nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(r) - if err != nil || localVarHTTPResponse == nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - localVarBody, err := _ioutil.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - if err != nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - if localVarHTTPResponse.StatusCode == 400 { - var v Error - err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHTTPResponse, newErr - } - newErr.model = v - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: err.Error(), - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - return localVarReturnValue, localVarHTTPResponse, nil -} - -/* -Ping Ping Watchman service -Check if the Watchman service is running. - - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). -*/ -func (a *WatchmanApiService) Ping(ctx _context.Context) (*_nethttp.Response, error) { - var ( - localVarHTTPMethod = _nethttp.MethodGet - localVarPostBody interface{} - localVarFormFileName string - localVarFileName string - localVarFileBytes []byte - ) - - // create path and map variables - localVarPath := a.client.cfg.BasePath + "/ping" - localVarHeaderParams := make(map[string]string) - localVarQueryParams := _neturl.Values{} - localVarFormParams := _neturl.Values{} - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) - if err != nil { - return nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(r) - if err != nil || localVarHTTPResponse == nil { - return localVarHTTPResponse, err - } - - localVarBody, err := _ioutil.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - if err != nil { - return localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - return localVarHTTPResponse, newErr - } - - return localVarHTTPResponse, nil -} - -// RemoveOfacCompanyNameWatchOpts Optional parameters for the method 'RemoveOfacCompanyNameWatch' -type RemoveOfacCompanyNameWatchOpts struct { - XRequestID optional.String -} - -/* -RemoveOfacCompanyNameWatch Remove company watch -Delete a company name watch. - - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param watchID Watch ID, used to identify a specific watch - - @param name Company name watch - - @param optional nil or *RemoveOfacCompanyNameWatchOpts - Optional Parameters: - - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs -*/ -func (a *WatchmanApiService) RemoveOfacCompanyNameWatch(ctx _context.Context, watchID string, name string, localVarOptionals *RemoveOfacCompanyNameWatchOpts) (*_nethttp.Response, error) { - var ( - localVarHTTPMethod = _nethttp.MethodDelete - localVarPostBody interface{} - localVarFormFileName string - localVarFileName string - localVarFileBytes []byte - ) - - // create path and map variables - localVarPath := a.client.cfg.BasePath + "/ofac/companies/watch/{watchID}" - localVarPath = strings.Replace(localVarPath, "{"+"watchID"+"}", _neturl.QueryEscape(parameterToString(watchID, "")), -1) - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := _neturl.Values{} - localVarFormParams := _neturl.Values{} - - localVarQueryParams.Add("name", parameterToString(name, "")) - // to determine the Content-Type header - localVarHTTPContentTypes := []string{} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - if localVarOptionals != nil && localVarOptionals.XRequestID.IsSet() { - localVarHeaderParams["X-Request-ID"] = parameterToString(localVarOptionals.XRequestID.Value(), "") - } - r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) - if err != nil { - return nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(r) - if err != nil || localVarHTTPResponse == nil { - return localVarHTTPResponse, err - } - - localVarBody, err := _ioutil.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - if err != nil { - return localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - if localVarHTTPResponse.StatusCode == 400 { - var v Error - err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr.error = err.Error() - return localVarHTTPResponse, newErr - } - newErr.model = v - } - return localVarHTTPResponse, newErr - } - - return localVarHTTPResponse, nil -} - -// RemoveOfacCompanyWatchOpts Optional parameters for the method 'RemoveOfacCompanyWatch' -type RemoveOfacCompanyWatchOpts struct { - XRequestID optional.String -} - -/* -RemoveOfacCompanyWatch Remove company watch -Delete a company ID watch. - - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param companyID Company ID - - @param watchID Watch ID, used to identify a specific watch - - @param optional nil or *RemoveOfacCompanyWatchOpts - Optional Parameters: - - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs -*/ -func (a *WatchmanApiService) RemoveOfacCompanyWatch(ctx _context.Context, companyID string, watchID string, localVarOptionals *RemoveOfacCompanyWatchOpts) (*_nethttp.Response, error) { - var ( - localVarHTTPMethod = _nethttp.MethodDelete - localVarPostBody interface{} - localVarFormFileName string - localVarFileName string - localVarFileBytes []byte - ) - - // create path and map variables - localVarPath := a.client.cfg.BasePath + "/ofac/companies/{companyID}/watch/{watchID}" - localVarPath = strings.Replace(localVarPath, "{"+"companyID"+"}", _neturl.QueryEscape(parameterToString(companyID, "")), -1) - - localVarPath = strings.Replace(localVarPath, "{"+"watchID"+"}", _neturl.QueryEscape(parameterToString(watchID, "")), -1) - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := _neturl.Values{} - localVarFormParams := _neturl.Values{} - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - if localVarOptionals != nil && localVarOptionals.XRequestID.IsSet() { - localVarHeaderParams["X-Request-ID"] = parameterToString(localVarOptionals.XRequestID.Value(), "") - } - r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) - if err != nil { - return nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(r) - if err != nil || localVarHTTPResponse == nil { - return localVarHTTPResponse, err - } - - localVarBody, err := _ioutil.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - if err != nil { - return localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - if localVarHTTPResponse.StatusCode == 400 { - var v Error - err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr.error = err.Error() - return localVarHTTPResponse, newErr - } - newErr.model = v - } - return localVarHTTPResponse, newErr - } - - return localVarHTTPResponse, nil -} - -// RemoveOfacCustomerNameWatchOpts Optional parameters for the method 'RemoveOfacCustomerNameWatch' -type RemoveOfacCustomerNameWatchOpts struct { - XRequestID optional.String -} - -/* -RemoveOfacCustomerNameWatch Remove customer watch -Delete a customer name watch. - - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param watchID Watch ID, used to identify a specific watch - - @param name Customer or Company name watch - - @param optional nil or *RemoveOfacCustomerNameWatchOpts - Optional Parameters: - - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs -*/ -func (a *WatchmanApiService) RemoveOfacCustomerNameWatch(ctx _context.Context, watchID string, name string, localVarOptionals *RemoveOfacCustomerNameWatchOpts) (*_nethttp.Response, error) { - var ( - localVarHTTPMethod = _nethttp.MethodDelete - localVarPostBody interface{} - localVarFormFileName string - localVarFileName string - localVarFileBytes []byte - ) - - // create path and map variables - localVarPath := a.client.cfg.BasePath + "/ofac/customers/watch/{watchID}" - localVarPath = strings.Replace(localVarPath, "{"+"watchID"+"}", _neturl.QueryEscape(parameterToString(watchID, "")), -1) - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := _neturl.Values{} - localVarFormParams := _neturl.Values{} - - localVarQueryParams.Add("name", parameterToString(name, "")) - // to determine the Content-Type header - localVarHTTPContentTypes := []string{} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - if localVarOptionals != nil && localVarOptionals.XRequestID.IsSet() { - localVarHeaderParams["X-Request-ID"] = parameterToString(localVarOptionals.XRequestID.Value(), "") - } - r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) - if err != nil { - return nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(r) - if err != nil || localVarHTTPResponse == nil { - return localVarHTTPResponse, err - } - - localVarBody, err := _ioutil.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - if err != nil { - return localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - if localVarHTTPResponse.StatusCode == 400 { - var v Error - err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr.error = err.Error() - return localVarHTTPResponse, newErr - } - newErr.model = v - } - return localVarHTTPResponse, newErr - } - - return localVarHTTPResponse, nil -} - -// RemoveOfacCustomerWatchOpts Optional parameters for the method 'RemoveOfacCustomerWatch' -type RemoveOfacCustomerWatchOpts struct { - XRequestID optional.String -} - -/* -RemoveOfacCustomerWatch Remove customer watch -Delete a customer ID watch. - - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param customerID Customer ID - - @param watchID Watch ID, used to identify a specific watch - - @param optional nil or *RemoveOfacCustomerWatchOpts - Optional Parameters: - - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs -*/ -func (a *WatchmanApiService) RemoveOfacCustomerWatch(ctx _context.Context, customerID string, watchID string, localVarOptionals *RemoveOfacCustomerWatchOpts) (*_nethttp.Response, error) { - var ( - localVarHTTPMethod = _nethttp.MethodDelete - localVarPostBody interface{} - localVarFormFileName string - localVarFileName string - localVarFileBytes []byte - ) - - // create path and map variables - localVarPath := a.client.cfg.BasePath + "/ofac/customers/{customerID}/watch/{watchID}" - localVarPath = strings.Replace(localVarPath, "{"+"customerID"+"}", _neturl.QueryEscape(parameterToString(customerID, "")), -1) - - localVarPath = strings.Replace(localVarPath, "{"+"watchID"+"}", _neturl.QueryEscape(parameterToString(watchID, "")), -1) - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := _neturl.Values{} - localVarFormParams := _neturl.Values{} - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - if localVarOptionals != nil && localVarOptionals.XRequestID.IsSet() { - localVarHeaderParams["X-Request-ID"] = parameterToString(localVarOptionals.XRequestID.Value(), "") - } - r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) - if err != nil { - return nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(r) - if err != nil || localVarHTTPResponse == nil { - return localVarHTTPResponse, err - } - - localVarBody, err := _ioutil.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - if err != nil { - return localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - if localVarHTTPResponse.StatusCode == 400 { - var v Error - err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr.error = err.Error() - return localVarHTTPResponse, newErr - } - newErr.model = v - } - return localVarHTTPResponse, newErr - } - - return localVarHTTPResponse, nil -} - -// SearchOpts Optional parameters for the method 'Search' -type SearchOpts struct { - XRequestID optional.String - Q optional.String - Name optional.String - Address optional.String - City optional.String - State optional.String - Providence optional.String - Zip optional.String - Country optional.String - AltName optional.String - Id optional.String - MinMatch optional.Float32 - Limit optional.Int32 - SdnType optional.Interface - Program optional.String -} - -/* -Search Search - - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param optional nil or *SearchOpts - Optional Parameters: - - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs - - @param "Q" (optional.String) - Search across Name, Alt Names, and SDN Address fields for all available sanctions lists. Entries may be returned in all response sub-objects. - - @param "Name" (optional.String) - Name which could correspond to an entry on the SDN, Denied Persons, Sectoral Sanctions Identifications, or BIS Entity List sanctions lists. Alt names are also searched. - - @param "Address" (optional.String) - Physical address which could correspond to a human on the SDN list. Only Address results will be returned. - - @param "City" (optional.String) - City name as desginated by SDN guidelines. Only Address results will be returned. - - @param "State" (optional.String) - State name as desginated by SDN guidelines. Only Address results will be returned. - - @param "Providence" (optional.String) - Providence name as desginated by SDN guidelines. Only Address results will be returned. - - @param "Zip" (optional.String) - Zip code as desginated by SDN guidelines. Only Address results will be returned. - - @param "Country" (optional.String) - Country name as desginated by SDN guidelines. Only Address results will be returned. - - @param "AltName" (optional.String) - Alternate name which could correspond to a human on the SDN list. Only Alt name results will be returned. - - @param "Id" (optional.String) - ID value often found in remarks property of an SDN. Takes the form of 'No. NNNNN' as an alphanumeric value. - - @param "MinMatch" (optional.Float32) - Match percentage that search query must obtain for results to be returned. - - @param "Limit" (optional.Int32) - Maximum results returned by a search. Results are sorted by their match percentage in decending order. - - @param "SdnType" (optional.Interface of SdnType) - Optional filter to only return SDNs whose type case-insensitively matches. - - @param "Program" (optional.String) - Optional filter to only return SDNs whose program case-insensitively matches. - -@return Search -*/ -func (a *WatchmanApiService) Search(ctx _context.Context, localVarOptionals *SearchOpts) (Search, *_nethttp.Response, error) { - var ( - localVarHTTPMethod = _nethttp.MethodGet - localVarPostBody interface{} - localVarFormFileName string - localVarFileName string - localVarFileBytes []byte - localVarReturnValue Search - ) - - // create path and map variables - localVarPath := a.client.cfg.BasePath + "/search" - localVarHeaderParams := make(map[string]string) - localVarQueryParams := _neturl.Values{} - localVarFormParams := _neturl.Values{} - - if localVarOptionals != nil && localVarOptionals.Q.IsSet() { - localVarQueryParams.Add("q", parameterToString(localVarOptionals.Q.Value(), "")) - } - if localVarOptionals != nil && localVarOptionals.Name.IsSet() { - localVarQueryParams.Add("name", parameterToString(localVarOptionals.Name.Value(), "")) - } - if localVarOptionals != nil && localVarOptionals.Address.IsSet() { - localVarQueryParams.Add("address", parameterToString(localVarOptionals.Address.Value(), "")) - } - if localVarOptionals != nil && localVarOptionals.City.IsSet() { - localVarQueryParams.Add("city", parameterToString(localVarOptionals.City.Value(), "")) - } - if localVarOptionals != nil && localVarOptionals.State.IsSet() { - localVarQueryParams.Add("state", parameterToString(localVarOptionals.State.Value(), "")) - } - if localVarOptionals != nil && localVarOptionals.Providence.IsSet() { - localVarQueryParams.Add("providence", parameterToString(localVarOptionals.Providence.Value(), "")) - } - if localVarOptionals != nil && localVarOptionals.Zip.IsSet() { - localVarQueryParams.Add("zip", parameterToString(localVarOptionals.Zip.Value(), "")) - } - if localVarOptionals != nil && localVarOptionals.Country.IsSet() { - localVarQueryParams.Add("country", parameterToString(localVarOptionals.Country.Value(), "")) - } - if localVarOptionals != nil && localVarOptionals.AltName.IsSet() { - localVarQueryParams.Add("altName", parameterToString(localVarOptionals.AltName.Value(), "")) - } - if localVarOptionals != nil && localVarOptionals.Id.IsSet() { - localVarQueryParams.Add("id", parameterToString(localVarOptionals.Id.Value(), "")) - } - if localVarOptionals != nil && localVarOptionals.MinMatch.IsSet() { - localVarQueryParams.Add("minMatch", parameterToString(localVarOptionals.MinMatch.Value(), "")) - } - if localVarOptionals != nil && localVarOptionals.Limit.IsSet() { - localVarQueryParams.Add("limit", parameterToString(localVarOptionals.Limit.Value(), "")) - } - if localVarOptionals != nil && localVarOptionals.SdnType.IsSet() { - localVarQueryParams.Add("sdnType", parameterToString(localVarOptionals.SdnType.Value(), "")) - } - if localVarOptionals != nil && localVarOptionals.Program.IsSet() { - localVarQueryParams.Add("program", parameterToString(localVarOptionals.Program.Value(), "")) - } - // to determine the Content-Type header - localVarHTTPContentTypes := []string{} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - if localVarOptionals != nil && localVarOptionals.XRequestID.IsSet() { - localVarHeaderParams["X-Request-ID"] = parameterToString(localVarOptionals.XRequestID.Value(), "") - } - r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) - if err != nil { - return localVarReturnValue, nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(r) - if err != nil || localVarHTTPResponse == nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - localVarBody, err := _ioutil.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - if err != nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - if localVarHTTPResponse.StatusCode == 400 { - var v Error - err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHTTPResponse, newErr - } - newErr.model = v - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: err.Error(), - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - return localVarReturnValue, localVarHTTPResponse, nil -} - -// SearchUSCSLOpts Optional parameters for the method 'SearchUSCSL' -type SearchUSCSLOpts struct { - XRequestID optional.String - Name optional.String - Limit optional.Int32 -} - -/* -SearchUSCSL Search US CSL -Search the US Consolidated Screening List - - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param optional nil or *SearchUSCSLOpts - Optional Parameters: - - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs - - @param "Name" (optional.String) - Name which could correspond to an entry on the CSL - - @param "Limit" (optional.Int32) - Maximum number of downloads to return sorted by their timestamp in decending order. - -@return Search -*/ -func (a *WatchmanApiService) SearchUSCSL(ctx _context.Context, localVarOptionals *SearchUSCSLOpts) (Search, *_nethttp.Response, error) { - var ( - localVarHTTPMethod = _nethttp.MethodGet - localVarPostBody interface{} - localVarFormFileName string - localVarFileName string - localVarFileBytes []byte - localVarReturnValue Search - ) - - // create path and map variables - localVarPath := a.client.cfg.BasePath + "/search/us-csl" - localVarHeaderParams := make(map[string]string) - localVarQueryParams := _neturl.Values{} - localVarFormParams := _neturl.Values{} - - if localVarOptionals != nil && localVarOptionals.Name.IsSet() { - localVarQueryParams.Add("name", parameterToString(localVarOptionals.Name.Value(), "")) - } - if localVarOptionals != nil && localVarOptionals.Limit.IsSet() { - localVarQueryParams.Add("limit", parameterToString(localVarOptionals.Limit.Value(), "")) - } - // to determine the Content-Type header - localVarHTTPContentTypes := []string{} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - if localVarOptionals != nil && localVarOptionals.XRequestID.IsSet() { - localVarHeaderParams["X-Request-ID"] = parameterToString(localVarOptionals.XRequestID.Value(), "") - } - r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) - if err != nil { - return localVarReturnValue, nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(r) - if err != nil || localVarHTTPResponse == nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - localVarBody, err := _ioutil.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - if err != nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - if localVarHTTPResponse.StatusCode == 400 { - var v Error - err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHTTPResponse, newErr - } - newErr.model = v - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: err.Error(), - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - return localVarReturnValue, localVarHTTPResponse, nil -} - -// UpdateOfacCompanyStatusOpts Optional parameters for the method 'UpdateOfacCompanyStatus' -type UpdateOfacCompanyStatusOpts struct { - XRequestID optional.String - XUserID optional.String -} - -/* -UpdateOfacCompanyStatus Update company -Update a Company's sanction status to always block or always allow transactions. - - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param companyID Company ID - - @param updateOfacCompanyStatus - - @param optional nil or *UpdateOfacCompanyStatusOpts - Optional Parameters: - - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs - - @param "XUserID" (optional.String) - User ID used to perform this search -*/ -func (a *WatchmanApiService) UpdateOfacCompanyStatus(ctx _context.Context, companyID string, updateOfacCompanyStatus UpdateOfacCompanyStatus, localVarOptionals *UpdateOfacCompanyStatusOpts) (*_nethttp.Response, error) { - var ( - localVarHTTPMethod = _nethttp.MethodPut - localVarPostBody interface{} - localVarFormFileName string - localVarFileName string - localVarFileBytes []byte - ) - - // create path and map variables - localVarPath := a.client.cfg.BasePath + "/ofac/companies/{companyID}" - localVarPath = strings.Replace(localVarPath, "{"+"companyID"+"}", _neturl.QueryEscape(parameterToString(companyID, "")), -1) - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := _neturl.Values{} - localVarFormParams := _neturl.Values{} - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{"application/json"} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - if localVarOptionals != nil && localVarOptionals.XRequestID.IsSet() { - localVarHeaderParams["X-Request-ID"] = parameterToString(localVarOptionals.XRequestID.Value(), "") - } - if localVarOptionals != nil && localVarOptionals.XUserID.IsSet() { - localVarHeaderParams["X-User-ID"] = parameterToString(localVarOptionals.XUserID.Value(), "") - } - // body params - localVarPostBody = &updateOfacCompanyStatus - r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) - if err != nil { - return nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(r) - if err != nil || localVarHTTPResponse == nil { - return localVarHTTPResponse, err - } - - localVarBody, err := _ioutil.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - if err != nil { - return localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - if localVarHTTPResponse.StatusCode == 400 { - var v Error - err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr.error = err.Error() - return localVarHTTPResponse, newErr - } - newErr.model = v - } - return localVarHTTPResponse, newErr - } - - return localVarHTTPResponse, nil -} - -// UpdateOfacCustomerStatusOpts Optional parameters for the method 'UpdateOfacCustomerStatus' -type UpdateOfacCustomerStatusOpts struct { - XRequestID optional.String - XUserID optional.String -} - -/* -UpdateOfacCustomerStatus Update customer -Update a Customer sanction status to always block or always allow transactions. - - @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - - @param customerID Customer ID - - @param updateOfacCustomerStatus - - @param optional nil or *UpdateOfacCustomerStatusOpts - Optional Parameters: - - @param "XRequestID" (optional.String) - Optional Request ID allows application developer to trace requests through the system's logs - - @param "XUserID" (optional.String) - User ID used to perform this search -*/ -func (a *WatchmanApiService) UpdateOfacCustomerStatus(ctx _context.Context, customerID string, updateOfacCustomerStatus UpdateOfacCustomerStatus, localVarOptionals *UpdateOfacCustomerStatusOpts) (*_nethttp.Response, error) { - var ( - localVarHTTPMethod = _nethttp.MethodPut - localVarPostBody interface{} - localVarFormFileName string - localVarFileName string - localVarFileBytes []byte - ) - - // create path and map variables - localVarPath := a.client.cfg.BasePath + "/ofac/customers/{customerID}" - localVarPath = strings.Replace(localVarPath, "{"+"customerID"+"}", _neturl.QueryEscape(parameterToString(customerID, "")), -1) - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := _neturl.Values{} - localVarFormParams := _neturl.Values{} - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{"application/json"} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - if localVarOptionals != nil && localVarOptionals.XRequestID.IsSet() { - localVarHeaderParams["X-Request-ID"] = parameterToString(localVarOptionals.XRequestID.Value(), "") - } - if localVarOptionals != nil && localVarOptionals.XUserID.IsSet() { - localVarHeaderParams["X-User-ID"] = parameterToString(localVarOptionals.XUserID.Value(), "") - } - // body params - localVarPostBody = &updateOfacCustomerStatus - r, err := a.client.prepareRequest(ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFormFileName, localVarFileName, localVarFileBytes) - if err != nil { - return nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(r) - if err != nil || localVarHTTPResponse == nil { - return localVarHTTPResponse, err - } - - localVarBody, err := _ioutil.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - if err != nil { - return localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - if localVarHTTPResponse.StatusCode == 400 { - var v Error - err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr.error = err.Error() - return localVarHTTPResponse, newErr - } - newErr.model = v - } - return localVarHTTPResponse, newErr - } - - return localVarHTTPResponse, nil -} diff --git a/client/client.go b/client/client.go index 13d47b0..9082221 100644 --- a/client/client.go +++ b/client/client.go @@ -429,7 +429,11 @@ func setBody(body interface{}, contentType string) (bodyBuf *bytes.Buffer, err e } else if jsonCheck.MatchString(contentType) { err = json.NewEncoder(bodyBuf).Encode(body) } else if xmlCheck.MatchString(contentType) { - err = xml.NewEncoder(bodyBuf).Encode(body) + var bs []byte + bs, err = xml.Marshal(body) + if err == nil { + bodyBuf.Write(bs) + } } if err != nil { diff --git a/client/docs/BisEntities.md b/client/docs/BisEntities.md index 172cd0f..0e6200e 100644 --- a/client/docs/BisEntities.md +++ b/client/docs/BisEntities.md @@ -14,6 +14,7 @@ Name | Type | Description | Notes **SourceListURL** | **string** | The link to the official SSI list | [optional] **SourceInfoURL** | **string** | The link for information regarding the source | [optional] **Match** | **float32** | Match percentage of search query | [optional] +**MatchedName** | **string** | The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/client/docs/CaptaList.md b/client/docs/CaptaList.md index b821e88..4f863a0 100644 --- a/client/docs/CaptaList.md +++ b/client/docs/CaptaList.md @@ -16,6 +16,7 @@ Name | Type | Description | Notes **SourceInfoURL** | **string** | | [optional] **IDs** | **[]string** | | [optional] **Match** | **float32** | Match percentage of search query | [optional] +**MatchedName** | **string** | The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/client/docs/Dpl.md b/client/docs/Dpl.md index 2b105e3..2a21e53 100644 --- a/client/docs/Dpl.md +++ b/client/docs/Dpl.md @@ -17,6 +17,7 @@ Name | Type | Description | Notes **Action** | **string** | Most recent action taken regarding the denial | [optional] **FrCitation** | **string** | Reference to the order's citation in the Federal Register | [optional] **Match** | **float32** | Match percentage of search query | [optional] +**MatchedName** | **string** | The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/client/docs/EuConsolidatedSanctionsList.md b/client/docs/EuConsolidatedSanctionsList.md new file mode 100644 index 0000000..0583718 --- /dev/null +++ b/client/docs/EuConsolidatedSanctionsList.md @@ -0,0 +1,29 @@ +# EuConsolidatedSanctionsList + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**FileGenerationDate** | **string** | | [optional] +**EntityLogicalId** | **int32** | | [optional] +**EntityRemark** | **string** | | [optional] +**EntitySubjectType** | **string** | | [optional] +**EntityPublicationURL** | **string** | | [optional] +**EntityReferenceNumber** | **string** | | [optional] +**NameAliasWholeNames** | **[]string** | | [optional] +**NameAliasTitles** | **[]string** | | [optional] +**AddressCities** | **[]string** | | [optional] +**AddressStreets** | **[]string** | | [optional] +**AddressPoBoxes** | **[]string** | | [optional] +**AddressZipCodes** | **[]string** | | [optional] +**AddressCountryDescriptions** | **[]string** | | [optional] +**BirthDates** | **[]string** | | [optional] +**BirthCities** | **[]string** | | [optional] +**BirthCountries** | **[]string** | | [optional] +**ValidFromTo** | [**map[string]interface{}**](.md) | | [optional] +**Match** | **float32** | Match percentage of search query | [optional] +**MatchedName** | **string** | The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/client/docs/ForeignSanctionsEvader.md b/client/docs/ForeignSanctionsEvader.md index 2e0e8ee..24d7331 100644 --- a/client/docs/ForeignSanctionsEvader.md +++ b/client/docs/ForeignSanctionsEvader.md @@ -16,6 +16,7 @@ Name | Type | Description | Notes **SourceInfoURL** | **string** | | [optional] **IDs** | **[]string** | | [optional] **Match** | **float32** | Match percentage of search query | [optional] +**MatchedName** | **string** | The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/client/docs/ItarDebarred.md b/client/docs/ItarDebarred.md index 9b184ae..66d56c8 100644 --- a/client/docs/ItarDebarred.md +++ b/client/docs/ItarDebarred.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes **AlternateNames** | **[]string** | | [optional] **SourceInfoURL** | **string** | | [optional] **Match** | **float32** | Match percentage of search query | [optional] +**MatchedName** | **string** | The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/client/docs/MilitaryEndUser.md b/client/docs/MilitaryEndUser.md index 425a5d2..47c3457 100644 --- a/client/docs/MilitaryEndUser.md +++ b/client/docs/MilitaryEndUser.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes **StartDate** | **string** | | [optional] **EndDate** | **string** | | [optional] **Match** | **float32** | Match percentage of search query | [optional] +**MatchedName** | **string** | The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/client/docs/NonProliferationSanction.md b/client/docs/NonProliferationSanction.md index 59517f5..537b30c 100644 --- a/client/docs/NonProliferationSanction.md +++ b/client/docs/NonProliferationSanction.md @@ -14,6 +14,7 @@ Name | Type | Description | Notes **AlternateNames** | **[]string** | | [optional] **SourceInfoURL** | **string** | | [optional] **Match** | **float32** | Match percentage of search query | [optional] +**MatchedName** | **string** | The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/client/docs/NonSdnChineseMilitaryIndustrialComplex.md b/client/docs/NonSdnChineseMilitaryIndustrialComplex.md index 2336e29..36faaa0 100644 --- a/client/docs/NonSdnChineseMilitaryIndustrialComplex.md +++ b/client/docs/NonSdnChineseMilitaryIndustrialComplex.md @@ -16,6 +16,7 @@ Name | Type | Description | Notes **SourceInfoURL** | **string** | | [optional] **IDs** | **[]string** | | [optional] **Match** | **float32** | Match percentage of search query | [optional] +**MatchedName** | **string** | The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/client/docs/NonSdnMenuBasedSanctionsList.md b/client/docs/NonSdnMenuBasedSanctionsList.md index e68168b..12f5036 100644 --- a/client/docs/NonSdnMenuBasedSanctionsList.md +++ b/client/docs/NonSdnMenuBasedSanctionsList.md @@ -15,6 +15,7 @@ Name | Type | Description | Notes **SourceInfoURL** | **string** | | [optional] **IDs** | **[]string** | | [optional] **Match** | **float32** | Match percentage of search query | [optional] +**MatchedName** | **string** | The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/client/docs/OfacAlt.md b/client/docs/OfacAlt.md index 36e014a..4f56279 100644 --- a/client/docs/OfacAlt.md +++ b/client/docs/OfacAlt.md @@ -10,6 +10,7 @@ Name | Type | Description | Notes **AlternateName** | **string** | | [optional] **AlternateRemarks** | **string** | | [optional] **Match** | **float32** | Match percentage of search query | [optional] +**MatchedName** | **string** | The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/client/docs/OfacCompany.md b/client/docs/OfacCompany.md deleted file mode 100644 index 8ec61ff..0000000 --- a/client/docs/OfacCompany.md +++ /dev/null @@ -1,15 +0,0 @@ -# OfacCompany - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**ID** | **string** | OFAC Company ID | [optional] -**Sdn** | [**OfacSdn**](OfacSDN.md) | | [optional] -**Addresses** | [**[]OfacEntityAddress**](OfacEntityAddress.md) | | [optional] -**Alts** | [**[]OfacAlt**](OfacAlt.md) | | [optional] -**Status** | [**OfacCompanyStatus**](OfacCompanyStatus.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/client/docs/OfacCompanyStatus.md b/client/docs/OfacCompanyStatus.md deleted file mode 100644 index 41477c9..0000000 --- a/client/docs/OfacCompanyStatus.md +++ /dev/null @@ -1,14 +0,0 @@ -# OfacCompanyStatus - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**UserID** | **string** | User ID provided when updating status | [optional] -**Note** | **string** | Optional note from updating status | [optional] -**Status** | **string** | Manually applied status for OFAC Company | [optional] -**CreatedAt** | [**time.Time**](time.Time.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/client/docs/OfacCustomer.md b/client/docs/OfacCustomer.md deleted file mode 100644 index 10f637b..0000000 --- a/client/docs/OfacCustomer.md +++ /dev/null @@ -1,15 +0,0 @@ -# OfacCustomer - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**ID** | **string** | OFAC Customer ID | [optional] -**Sdn** | [**OfacSdn**](OfacSDN.md) | | [optional] -**Addresses** | [**[]OfacEntityAddress**](OfacEntityAddress.md) | | [optional] -**Alts** | [**[]OfacAlt**](OfacAlt.md) | | [optional] -**Status** | [**OfacCustomerStatus**](OfacCustomerStatus.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/client/docs/OfacCustomerStatus.md b/client/docs/OfacCustomerStatus.md deleted file mode 100644 index 3dfec40..0000000 --- a/client/docs/OfacCustomerStatus.md +++ /dev/null @@ -1,14 +0,0 @@ -# OfacCustomerStatus - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**UserID** | **string** | User ID provided when updating status | [optional] -**Note** | **string** | Optional note from updating status | [optional] -**Status** | **string** | Manually applied status for OFAC Customer | [optional] -**CreatedAt** | [**time.Time**](time.Time.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/client/docs/OfacSdn.md b/client/docs/OfacSdn.md index 8b03a5a..2ec499c 100644 --- a/client/docs/OfacSdn.md +++ b/client/docs/OfacSdn.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes **Title** | **string** | | [optional] **Remarks** | **string** | Remarks on SDN and often additional information about the SDN | [optional] **Match** | **float32** | Match percentage of search query | [optional] +**MatchedName** | **string** | The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/client/docs/OfacWatch.md b/client/docs/OfacWatch.md deleted file mode 100644 index 7060897..0000000 --- a/client/docs/OfacWatch.md +++ /dev/null @@ -1,11 +0,0 @@ -# OfacWatch - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**WatchID** | **string** | Object representing a customer or company watch | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/client/docs/OfacWatchRequest.md b/client/docs/OfacWatchRequest.md deleted file mode 100644 index f520b55..0000000 --- a/client/docs/OfacWatchRequest.md +++ /dev/null @@ -1,12 +0,0 @@ -# OfacWatchRequest - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**AuthToken** | **string** | Private token supplied by clients to be used for authenticating webhooks. | -**Webhook** | **string** | HTTPS url for webhook on search match | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/client/docs/PalestinianLegislativeCouncil.md b/client/docs/PalestinianLegislativeCouncil.md index 5e99050..63ffae2 100644 --- a/client/docs/PalestinianLegislativeCouncil.md +++ b/client/docs/PalestinianLegislativeCouncil.md @@ -17,6 +17,7 @@ Name | Type | Description | Notes **PlacesOfBirth** | **string** | | [optional] **SourceInfoURL** | **string** | | [optional] **Match** | **float32** | Match percentage of search query | [optional] +**MatchedName** | **string** | The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/client/docs/Search.md b/client/docs/Search.md index 5b37103..6e10c59 100644 --- a/client/docs/Search.md +++ b/client/docs/Search.md @@ -19,6 +19,9 @@ Name | Type | Description | Notes **ItarDebarred** | [**[]ItarDebarred**](ITARDebarred.md) | | [optional] **NonSDNChineseMilitaryIndustrialComplex** | [**[]NonSdnChineseMilitaryIndustrialComplex**](NonSDNChineseMilitaryIndustrialComplex.md) | | [optional] **NonSDNMenuBasedSanctionsList** | [**[]NonSdnMenuBasedSanctionsList**](NonSDNMenuBasedSanctionsList.md) | | [optional] +**EuConsolidatedSanctionsList** | [**[]EuConsolidatedSanctionsList**](EUConsolidatedSanctionsList.md) | | [optional] +**UkConsolidatedSanctionsList** | [**[]UkConsolidatedSanctionsList**](UKConsolidatedSanctionsList.md) | | [optional] +**UkSanctionsList** | [**[]UkSanctionsList**](UKSanctionsList.md) | | [optional] **RefreshedAt** | [**time.Time**](time.Time.md) | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/client/docs/Ssi.md b/client/docs/Ssi.md index ea351d9..991adfc 100644 --- a/client/docs/Ssi.md +++ b/client/docs/Ssi.md @@ -15,6 +15,7 @@ Name | Type | Description | Notes **SourceListURL** | **string** | The link to the official SSI list | [optional] **SourceInfoURL** | **string** | The link for information regarding the source | [optional] **Match** | **float32** | Match percentage of search query | [optional] +**MatchedName** | **string** | The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/client/docs/UkConsolidatedSanctionsList.md b/client/docs/UkConsolidatedSanctionsList.md new file mode 100644 index 0000000..d13316e --- /dev/null +++ b/client/docs/UkConsolidatedSanctionsList.md @@ -0,0 +1,16 @@ +# UkConsolidatedSanctionsList + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**Names** | **[]string** | | [optional] +**Addresses** | **[]string** | | [optional] +**Countries** | **[]string** | | [optional] +**GroupType** | **string** | | [optional] +**Match** | **float32** | Match percentage of search query | [optional] +**MatchedName** | **string** | The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/client/docs/UkSanctionsList.md b/client/docs/UkSanctionsList.md new file mode 100644 index 0000000..36bfade --- /dev/null +++ b/client/docs/UkSanctionsList.md @@ -0,0 +1,18 @@ +# UkSanctionsList + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**Names** | **[]string** | | [optional] +**NonLatinNames** | **[]string** | | [optional] +**EntityType** | **string** | | [optional] +**Addresses** | **[]string** | | [optional] +**AddressCountries** | **[]string** | | [optional] +**StateLocalities** | **[]string** | | [optional] +**Match** | **float32** | Match percentage of search query | [optional] +**MatchedName** | **string** | The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/client/docs/Unverified.md b/client/docs/Unverified.md index f514551..8394192 100644 --- a/client/docs/Unverified.md +++ b/client/docs/Unverified.md @@ -10,6 +10,7 @@ Name | Type | Description | Notes **SourceListURL** | **string** | | [optional] **SourceInfoURL** | **string** | | [optional] **Match** | **float32** | Match percentage of search query | [optional] +**MatchedName** | **string** | The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/client/docs/UpdateOfacCompanyStatus.md b/client/docs/UpdateOfacCompanyStatus.md deleted file mode 100644 index 66c650c..0000000 --- a/client/docs/UpdateOfacCompanyStatus.md +++ /dev/null @@ -1,12 +0,0 @@ -# UpdateOfacCompanyStatus - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**Status** | **string** | Manual override of company/SDN sanction status | -**Notes** | **string** | Free form notes about manually changing the Company status | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/client/docs/UpdateOfacCustomerStatus.md b/client/docs/UpdateOfacCustomerStatus.md deleted file mode 100644 index 47609f5..0000000 --- a/client/docs/UpdateOfacCustomerStatus.md +++ /dev/null @@ -1,12 +0,0 @@ -# UpdateOfacCustomerStatus - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**Status** | **string** | Manual override of customer/SDN sanction status | -**Notes** | **string** | Free form notes about manually changing the Customer status | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/client/docs/WatchmanApi.md b/client/docs/WatchmanApi.md index 7de17c2..a746759 100644 --- a/client/docs/WatchmanApi.md +++ b/client/docs/WatchmanApi.md @@ -4,217 +4,16 @@ All URIs are relative to *http://localhost:8084* Method | HTTP request | Description ------------- | ------------- | ------------- -[**AddOfacCompanyNameWatch**](WatchmanApi.md#AddOfacCompanyNameWatch) | **Post** /ofac/companies/watch | Watch company -[**AddOfacCompanyWatch**](WatchmanApi.md#AddOfacCompanyWatch) | **Post** /ofac/companies/{companyID}/watch | Watch OFAC company -[**AddOfacCustomerNameWatch**](WatchmanApi.md#AddOfacCustomerNameWatch) | **Post** /ofac/customers/watch | Watch customer -[**AddOfacCustomerWatch**](WatchmanApi.md#AddOfacCustomerWatch) | **Post** /ofac/customers/{customerID}/watch | Watch OFAC customer [**GetLatestDownloads**](WatchmanApi.md#GetLatestDownloads) | **Get** /downloads | Get latest downloads -[**GetOfacCompany**](WatchmanApi.md#GetOfacCompany) | **Get** /ofac/companies/{companyID} | Get company -[**GetOfacCustomer**](WatchmanApi.md#GetOfacCustomer) | **Get** /ofac/customers/{customerID} | Get customer -[**GetSDN**](WatchmanApi.md#GetSDN) | **Get** /ofac/sdn/{sdnID} | Get SDN [**GetSDNAddresses**](WatchmanApi.md#GetSDNAddresses) | **Get** /ofac/sdn/{sdnID}/addresses | Get SDN addresses [**GetSDNAltNames**](WatchmanApi.md#GetSDNAltNames) | **Get** /ofac/sdn/{sdnID}/alts | Get SDN alt names [**GetUIValues**](WatchmanApi.md#GetUIValues) | **Get** /ui/values/{key} | Get UI values [**Ping**](WatchmanApi.md#Ping) | **Get** /ping | Ping Watchman service -[**RemoveOfacCompanyNameWatch**](WatchmanApi.md#RemoveOfacCompanyNameWatch) | **Delete** /ofac/companies/watch/{watchID} | Remove company watch -[**RemoveOfacCompanyWatch**](WatchmanApi.md#RemoveOfacCompanyWatch) | **Delete** /ofac/companies/{companyID}/watch/{watchID} | Remove company watch -[**RemoveOfacCustomerNameWatch**](WatchmanApi.md#RemoveOfacCustomerNameWatch) | **Delete** /ofac/customers/watch/{watchID} | Remove customer watch -[**RemoveOfacCustomerWatch**](WatchmanApi.md#RemoveOfacCustomerWatch) | **Delete** /ofac/customers/{customerID}/watch/{watchID} | Remove customer watch [**Search**](WatchmanApi.md#Search) | **Get** /search | Search [**SearchUSCSL**](WatchmanApi.md#SearchUSCSL) | **Get** /search/us-csl | Search US CSL -[**UpdateOfacCompanyStatus**](WatchmanApi.md#UpdateOfacCompanyStatus) | **Put** /ofac/companies/{companyID} | Update company -[**UpdateOfacCustomerStatus**](WatchmanApi.md#UpdateOfacCustomerStatus) | **Put** /ofac/customers/{customerID} | Update customer -## AddOfacCompanyNameWatch - -> OfacWatch AddOfacCompanyNameWatch(ctx, name, ofacWatchRequest, optional) - -Watch company - -Watch a company by its name. The match percentage will be included in the webhook's JSON payload. - -### Required Parameters - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. -**name** | **string**| Company name used to match and send watch notifications | -**ofacWatchRequest** | [**OfacWatchRequest**](OfacWatchRequest.md)| | - **optional** | ***AddOfacCompanyNameWatchOpts** | optional parameters | nil if no parameters - -### Optional Parameters - -Optional parameters are passed through a pointer to a AddOfacCompanyNameWatchOpts struct - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - - - **xRequestID** | **optional.String**| Optional Request ID allows application developer to trace requests through the system's logs | - -### Return type - -[**OfacWatch**](OfacWatch.md) - -### Authorization - -No authorization required - -### HTTP request headers - -- **Content-Type**: application/json -- **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - -## AddOfacCompanyWatch - -> OfacWatch AddOfacCompanyWatch(ctx, companyID, ofacWatchRequest, optional) - -Watch OFAC company - -Add ID watch on an OFAC Company. - -### Required Parameters - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. -**companyID** | **string**| Company ID | -**ofacWatchRequest** | [**OfacWatchRequest**](OfacWatchRequest.md)| | - **optional** | ***AddOfacCompanyWatchOpts** | optional parameters | nil if no parameters - -### Optional Parameters - -Optional parameters are passed through a pointer to a AddOfacCompanyWatchOpts struct - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - - - **xRequestID** | **optional.String**| Optional Request ID allows application developer to trace requests through the system's logs | - -### Return type - -[**OfacWatch**](OfacWatch.md) - -### Authorization - -No authorization required - -### HTTP request headers - -- **Content-Type**: application/json -- **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - -## AddOfacCustomerNameWatch - -> OfacWatch AddOfacCustomerNameWatch(ctx, name, ofacWatchRequest, optional) - -Watch customer - -Watch a customer by its name. The match percentage will be included in the webhook's JSON payload. - -### Required Parameters - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. -**name** | **string**| Individual name used to match and send watch notifications | -**ofacWatchRequest** | [**OfacWatchRequest**](OfacWatchRequest.md)| | - **optional** | ***AddOfacCustomerNameWatchOpts** | optional parameters | nil if no parameters - -### Optional Parameters - -Optional parameters are passed through a pointer to a AddOfacCustomerNameWatchOpts struct - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - - - **xRequestID** | **optional.String**| Optional Request ID allows application developer to trace requests through the system's logs | - -### Return type - -[**OfacWatch**](OfacWatch.md) - -### Authorization - -No authorization required - -### HTTP request headers - -- **Content-Type**: application/json -- **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - -## AddOfacCustomerWatch - -> OfacWatch AddOfacCustomerWatch(ctx, customerID, ofacWatchRequest, optional) - -Watch OFAC customer - -Add ID watch on an OFAC Customer. - -### Required Parameters - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. -**customerID** | **string**| Customer ID | -**ofacWatchRequest** | [**OfacWatchRequest**](OfacWatchRequest.md)| | - **optional** | ***AddOfacCustomerWatchOpts** | optional parameters | nil if no parameters - -### Optional Parameters - -Optional parameters are passed through a pointer to a AddOfacCustomerWatchOpts struct - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - - - **xRequestID** | **optional.String**| Optional Request ID allows application developer to trace requests through the system's logs | - -### Return type - -[**OfacWatch**](OfacWatch.md) - -### Authorization - -No authorization required - -### HTTP request headers - -- **Content-Type**: application/json -- **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - ## GetLatestDownloads > []Download GetLatestDownloads(ctx, optional) @@ -259,141 +58,6 @@ No authorization required [[Back to README]](../README.md) -## GetOfacCompany - -> OfacCompany GetOfacCompany(ctx, companyID, optional) - -Get company - -Get information about a company, trust, or organization such as addresses, alternate names, and remarks. - -### Required Parameters - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. -**companyID** | **string**| Company ID | - **optional** | ***GetOfacCompanyOpts** | optional parameters | nil if no parameters - -### Optional Parameters - -Optional parameters are passed through a pointer to a GetOfacCompanyOpts struct - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - - **xRequestID** | **optional.String**| Optional Request ID allows application developer to trace requests through the system's logs | - -### Return type - -[**OfacCompany**](OfacCompany.md) - -### Authorization - -No authorization required - -### HTTP request headers - -- **Content-Type**: Not defined -- **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - -## GetOfacCustomer - -> OfacCustomer GetOfacCustomer(ctx, customerID, optional) - -Get customer - -Get information about a customer's addresses, alternate names, and SDN metadata. - -### Required Parameters - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. -**customerID** | **string**| Customer ID | - **optional** | ***GetOfacCustomerOpts** | optional parameters | nil if no parameters - -### Optional Parameters - -Optional parameters are passed through a pointer to a GetOfacCustomerOpts struct - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - - **xRequestID** | **optional.String**| Optional Request ID allows application developer to trace requests through the system's logs | - -### Return type - -[**OfacCustomer**](OfacCustomer.md) - -### Authorization - -No authorization required - -### HTTP request headers - -- **Content-Type**: Not defined -- **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - -## GetSDN - -> OfacSdn GetSDN(ctx, sdnID, optional) - -Get SDN - -Get SDN details - -### Required Parameters - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. -**sdnID** | **string**| SDN ID | - **optional** | ***GetSDNOpts** | optional parameters | nil if no parameters - -### Optional Parameters - -Optional parameters are passed through a pointer to a GetSDNOpts struct - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - - **xRequestID** | **optional.String**| Optional Request ID allows application developer to trace requests through the system's logs | - -### Return type - -[**OfacSdn**](OfacSDN.md) - -### Authorization - -No authorization required - -### HTTP request headers - -- **Content-Type**: Not defined -- **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - ## GetSDNAddresses > []OfacEntityAddress GetSDNAddresses(ctx, sdnID, optional) @@ -555,194 +219,6 @@ No authorization required [[Back to README]](../README.md) -## RemoveOfacCompanyNameWatch - -> RemoveOfacCompanyNameWatch(ctx, watchID, name, optional) - -Remove company watch - -Delete a company name watch. - -### Required Parameters - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. -**watchID** | **string**| Watch ID, used to identify a specific watch | -**name** | **string**| Company name watch | - **optional** | ***RemoveOfacCompanyNameWatchOpts** | optional parameters | nil if no parameters - -### Optional Parameters - -Optional parameters are passed through a pointer to a RemoveOfacCompanyNameWatchOpts struct - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - - - **xRequestID** | **optional.String**| Optional Request ID allows application developer to trace requests through the system's logs | - -### Return type - - (empty response body) - -### Authorization - -No authorization required - -### HTTP request headers - -- **Content-Type**: Not defined -- **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - -## RemoveOfacCompanyWatch - -> RemoveOfacCompanyWatch(ctx, companyID, watchID, optional) - -Remove company watch - -Delete a company ID watch. - -### Required Parameters - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. -**companyID** | **string**| Company ID | -**watchID** | **string**| Watch ID, used to identify a specific watch | - **optional** | ***RemoveOfacCompanyWatchOpts** | optional parameters | nil if no parameters - -### Optional Parameters - -Optional parameters are passed through a pointer to a RemoveOfacCompanyWatchOpts struct - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - - - **xRequestID** | **optional.String**| Optional Request ID allows application developer to trace requests through the system's logs | - -### Return type - - (empty response body) - -### Authorization - -No authorization required - -### HTTP request headers - -- **Content-Type**: Not defined -- **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - -## RemoveOfacCustomerNameWatch - -> RemoveOfacCustomerNameWatch(ctx, watchID, name, optional) - -Remove customer watch - -Delete a customer name watch. - -### Required Parameters - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. -**watchID** | **string**| Watch ID, used to identify a specific watch | -**name** | **string**| Customer or Company name watch | - **optional** | ***RemoveOfacCustomerNameWatchOpts** | optional parameters | nil if no parameters - -### Optional Parameters - -Optional parameters are passed through a pointer to a RemoveOfacCustomerNameWatchOpts struct - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - - - **xRequestID** | **optional.String**| Optional Request ID allows application developer to trace requests through the system's logs | - -### Return type - - (empty response body) - -### Authorization - -No authorization required - -### HTTP request headers - -- **Content-Type**: Not defined -- **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - -## RemoveOfacCustomerWatch - -> RemoveOfacCustomerWatch(ctx, customerID, watchID, optional) - -Remove customer watch - -Delete a customer ID watch. - -### Required Parameters - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. -**customerID** | **string**| Customer ID | -**watchID** | **string**| Watch ID, used to identify a specific watch | - **optional** | ***RemoveOfacCustomerWatchOpts** | optional parameters | nil if no parameters - -### Optional Parameters - -Optional parameters are passed through a pointer to a RemoveOfacCustomerWatchOpts struct - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - - - **xRequestID** | **optional.String**| Optional Request ID allows application developer to trace requests through the system's logs | - -### Return type - - (empty response body) - -### Authorization - -No authorization required - -### HTTP request headers - -- **Content-Type**: Not defined -- **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - ## Search > Search Search(ctx, optional) @@ -842,99 +318,3 @@ No authorization required [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -## UpdateOfacCompanyStatus - -> UpdateOfacCompanyStatus(ctx, companyID, updateOfacCompanyStatus, optional) - -Update company - -Update a Company's sanction status to always block or always allow transactions. - -### Required Parameters - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. -**companyID** | **string**| Company ID | -**updateOfacCompanyStatus** | [**UpdateOfacCompanyStatus**](UpdateOfacCompanyStatus.md)| | - **optional** | ***UpdateOfacCompanyStatusOpts** | optional parameters | nil if no parameters - -### Optional Parameters - -Optional parameters are passed through a pointer to a UpdateOfacCompanyStatusOpts struct - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - - - **xRequestID** | **optional.String**| Optional Request ID allows application developer to trace requests through the system's logs | - **xUserID** | **optional.String**| User ID used to perform this search | - -### Return type - - (empty response body) - -### Authorization - -No authorization required - -### HTTP request headers - -- **Content-Type**: application/json -- **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - -## UpdateOfacCustomerStatus - -> UpdateOfacCustomerStatus(ctx, customerID, updateOfacCustomerStatus, optional) - -Update customer - -Update a Customer sanction status to always block or always allow transactions. - -### Required Parameters - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. -**customerID** | **string**| Customer ID | -**updateOfacCustomerStatus** | [**UpdateOfacCustomerStatus**](UpdateOfacCustomerStatus.md)| | - **optional** | ***UpdateOfacCustomerStatusOpts** | optional parameters | nil if no parameters - -### Optional Parameters - -Optional parameters are passed through a pointer to a UpdateOfacCustomerStatusOpts struct - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - - - **xRequestID** | **optional.String**| Optional Request ID allows application developer to trace requests through the system's logs | - **xUserID** | **optional.String**| User ID used to perform this search | - -### Return type - - (empty response body) - -### Authorization - -No authorization required - -### HTTP request headers - -- **Content-Type**: application/json -- **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - diff --git a/client/model_bis_entities.go b/client/model_bis_entities.go index a41217d..fa86128 100644 --- a/client/model_bis_entities.go +++ b/client/model_bis_entities.go @@ -31,4 +31,6 @@ type BisEntities struct { SourceInfoURL string `json:"sourceInfoURL,omitempty"` // Match percentage of search query Match float32 `json:"match,omitempty"` + // The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. + MatchedName string `json:"matchedName,omitempty"` } diff --git a/client/model_capta_list.go b/client/model_capta_list.go index 7224470..8c80b22 100644 --- a/client/model_capta_list.go +++ b/client/model_capta_list.go @@ -24,4 +24,6 @@ type CaptaList struct { IDs []string `json:"IDs,omitempty"` // Match percentage of search query Match float32 `json:"match,omitempty"` + // The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. + MatchedName string `json:"matchedName,omitempty"` } diff --git a/client/model_dpl.go b/client/model_dpl.go index be28dfd..4fec664 100644 --- a/client/model_dpl.go +++ b/client/model_dpl.go @@ -37,4 +37,6 @@ type Dpl struct { FrCitation string `json:"frCitation,omitempty"` // Match percentage of search query Match float32 `json:"match,omitempty"` + // The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. + MatchedName string `json:"matchedName,omitempty"` } diff --git a/client/model_eu_consolidated_sanctions_list.go b/client/model_eu_consolidated_sanctions_list.go new file mode 100644 index 0000000..1a600b2 --- /dev/null +++ b/client/model_eu_consolidated_sanctions_list.go @@ -0,0 +1,35 @@ +/* + * Watchman API + * + * Moov Watchman offers download, parse, and search functions over numerous U.S. trade sanction lists for complying with regional laws. Also included is a web UI and async webhook notification service to initiate processes on remote systems. + * + * API version: v1 + * Generated by: OpenAPI Generator (https://openapi-generator.tech) + */ + +package client + +// EuConsolidatedSanctionsList struct for EuConsolidatedSanctionsList +type EuConsolidatedSanctionsList struct { + FileGenerationDate string `json:"fileGenerationDate,omitempty"` + EntityLogicalId int32 `json:"entityLogicalId,omitempty"` + EntityRemark string `json:"entityRemark,omitempty"` + EntitySubjectType string `json:"entitySubjectType,omitempty"` + EntityPublicationURL string `json:"entityPublicationURL,omitempty"` + EntityReferenceNumber string `json:"entityReferenceNumber,omitempty"` + NameAliasWholeNames []string `json:"nameAliasWholeNames,omitempty"` + NameAliasTitles []string `json:"nameAliasTitles,omitempty"` + AddressCities []string `json:"addressCities,omitempty"` + AddressStreets []string `json:"addressStreets,omitempty"` + AddressPoBoxes []string `json:"addressPoBoxes,omitempty"` + AddressZipCodes []string `json:"addressZipCodes,omitempty"` + AddressCountryDescriptions []string `json:"addressCountryDescriptions,omitempty"` + BirthDates []string `json:"birthDates,omitempty"` + BirthCities []string `json:"birthCities,omitempty"` + BirthCountries []string `json:"birthCountries,omitempty"` + ValidFromTo map[string]interface{} `json:"validFromTo,omitempty"` + // Match percentage of search query + Match float32 `json:"match,omitempty"` + // The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. + MatchedName string `json:"matchedName,omitempty"` +} diff --git a/client/model_foreign_sanctions_evader.go b/client/model_foreign_sanctions_evader.go index 9147f27..d231bfb 100644 --- a/client/model_foreign_sanctions_evader.go +++ b/client/model_foreign_sanctions_evader.go @@ -24,4 +24,6 @@ type ForeignSanctionsEvader struct { IDs []string `json:"IDs,omitempty"` // Match percentage of search query Match float32 `json:"match,omitempty"` + // The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. + MatchedName string `json:"matchedName,omitempty"` } diff --git a/client/model_itar_debarred.go b/client/model_itar_debarred.go index 87bc4ca..fdc1a6c 100644 --- a/client/model_itar_debarred.go +++ b/client/model_itar_debarred.go @@ -19,4 +19,6 @@ type ItarDebarred struct { SourceInfoURL string `json:"sourceInfoURL,omitempty"` // Match percentage of search query Match float32 `json:"match,omitempty"` + // The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. + MatchedName string `json:"matchedName,omitempty"` } diff --git a/client/model_military_end_user.go b/client/model_military_end_user.go index 0187cd5..e2c61a1 100644 --- a/client/model_military_end_user.go +++ b/client/model_military_end_user.go @@ -19,4 +19,6 @@ type MilitaryEndUser struct { EndDate string `json:"endDate,omitempty"` // Match percentage of search query Match float32 `json:"match,omitempty"` + // The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. + MatchedName string `json:"matchedName,omitempty"` } diff --git a/client/model_non_proliferation_sanction.go b/client/model_non_proliferation_sanction.go index c244521..fb8ac60 100644 --- a/client/model_non_proliferation_sanction.go +++ b/client/model_non_proliferation_sanction.go @@ -22,4 +22,6 @@ type NonProliferationSanction struct { SourceInfoURL string `json:"sourceInfoURL,omitempty"` // Match percentage of search query Match float32 `json:"match,omitempty"` + // The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. + MatchedName string `json:"matchedName,omitempty"` } diff --git a/client/model_non_sdn_chinese_military_industrial_complex.go b/client/model_non_sdn_chinese_military_industrial_complex.go index 734ed44..12eba73 100644 --- a/client/model_non_sdn_chinese_military_industrial_complex.go +++ b/client/model_non_sdn_chinese_military_industrial_complex.go @@ -24,4 +24,6 @@ type NonSdnChineseMilitaryIndustrialComplex struct { IDs []string `json:"IDs,omitempty"` // Match percentage of search query Match float32 `json:"match,omitempty"` + // The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. + MatchedName string `json:"matchedName,omitempty"` } diff --git a/client/model_non_sdn_menu_based_sanctions_list.go b/client/model_non_sdn_menu_based_sanctions_list.go index c8d67da..9cf0f7f 100644 --- a/client/model_non_sdn_menu_based_sanctions_list.go +++ b/client/model_non_sdn_menu_based_sanctions_list.go @@ -23,4 +23,6 @@ type NonSdnMenuBasedSanctionsList struct { IDs []string `json:"IDs,omitempty"` // Match percentage of search query Match float32 `json:"match,omitempty"` + // The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. + MatchedName string `json:"matchedName,omitempty"` } diff --git a/client/model_ofac_alt.go b/client/model_ofac_alt.go index cbe3c6f..3bfe7b5 100644 --- a/client/model_ofac_alt.go +++ b/client/model_ofac_alt.go @@ -18,4 +18,6 @@ type OfacAlt struct { AlternateRemarks string `json:"alternateRemarks,omitempty"` // Match percentage of search query Match float32 `json:"match,omitempty"` + // The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. + MatchedName string `json:"matchedName,omitempty"` } diff --git a/client/model_ofac_company.go b/client/model_ofac_company.go deleted file mode 100644 index cecab48..0000000 --- a/client/model_ofac_company.go +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Watchman API - * - * Moov Watchman offers download, parse, and search functions over numerous U.S. trade sanction lists for complying with regional laws. Also included is a web UI and async webhook notification service to initiate processes on remote systems. - * - * API version: v1 - * Generated by: OpenAPI Generator (https://openapi-generator.tech) - */ - -package client - -// OfacCompany OFAC Company and metadata -type OfacCompany struct { - // OFAC Company ID - ID string `json:"ID,omitempty"` - Sdn OfacSdn `json:"sdn,omitempty"` - Addresses []OfacEntityAddress `json:"addresses,omitempty"` - Alts []OfacAlt `json:"alts,omitempty"` - Status OfacCompanyStatus `json:"status,omitempty"` -} diff --git a/client/model_ofac_company_status.go b/client/model_ofac_company_status.go deleted file mode 100644 index a2c1700..0000000 --- a/client/model_ofac_company_status.go +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Watchman API - * - * Moov Watchman offers download, parse, and search functions over numerous U.S. trade sanction lists for complying with regional laws. Also included is a web UI and async webhook notification service to initiate processes on remote systems. - * - * API version: v1 - * Generated by: OpenAPI Generator (https://openapi-generator.tech) - */ - -package client - -import ( - "time" -) - -// OfacCompanyStatus Status properties of an OFAC Company -type OfacCompanyStatus struct { - // User ID provided when updating status - UserID string `json:"userID,omitempty"` - // Optional note from updating status - Note string `json:"note,omitempty"` - // Manually applied status for OFAC Company - Status string `json:"status,omitempty"` - CreatedAt time.Time `json:"createdAt,omitempty"` -} diff --git a/client/model_ofac_customer.go b/client/model_ofac_customer.go deleted file mode 100644 index 4a8d2fc..0000000 --- a/client/model_ofac_customer.go +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Watchman API - * - * Moov Watchman offers download, parse, and search functions over numerous U.S. trade sanction lists for complying with regional laws. Also included is a web UI and async webhook notification service to initiate processes on remote systems. - * - * API version: v1 - * Generated by: OpenAPI Generator (https://openapi-generator.tech) - */ - -package client - -// OfacCustomer OFAC Customer and metadata -type OfacCustomer struct { - // OFAC Customer ID - ID string `json:"ID,omitempty"` - Sdn OfacSdn `json:"sdn,omitempty"` - Addresses []OfacEntityAddress `json:"addresses,omitempty"` - Alts []OfacAlt `json:"alts,omitempty"` - Status OfacCustomerStatus `json:"status,omitempty"` -} diff --git a/client/model_ofac_customer_status.go b/client/model_ofac_customer_status.go deleted file mode 100644 index 709908f..0000000 --- a/client/model_ofac_customer_status.go +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Watchman API - * - * Moov Watchman offers download, parse, and search functions over numerous U.S. trade sanction lists for complying with regional laws. Also included is a web UI and async webhook notification service to initiate processes on remote systems. - * - * API version: v1 - * Generated by: OpenAPI Generator (https://openapi-generator.tech) - */ - -package client - -import ( - "time" -) - -// OfacCustomerStatus Status properties of an OFAC Customer -type OfacCustomerStatus struct { - // User ID provided when updating status - UserID string `json:"userID,omitempty"` - // Optional note from updating status - Note string `json:"note,omitempty"` - // Manually applied status for OFAC Customer - Status string `json:"status,omitempty"` - CreatedAt time.Time `json:"createdAt,omitempty"` -} diff --git a/client/model_ofac_sdn.go b/client/model_ofac_sdn.go index e03a920..11a1e34 100644 --- a/client/model_ofac_sdn.go +++ b/client/model_ofac_sdn.go @@ -21,4 +21,6 @@ type OfacSdn struct { Remarks string `json:"remarks,omitempty"` // Match percentage of search query Match float32 `json:"match,omitempty"` + // The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. + MatchedName string `json:"matchedName,omitempty"` } diff --git a/client/model_ofac_watch.go b/client/model_ofac_watch.go deleted file mode 100644 index c0bfc26..0000000 --- a/client/model_ofac_watch.go +++ /dev/null @@ -1,16 +0,0 @@ -/* - * Watchman API - * - * Moov Watchman offers download, parse, and search functions over numerous U.S. trade sanction lists for complying with regional laws. Also included is a web UI and async webhook notification service to initiate processes on remote systems. - * - * API version: v1 - * Generated by: OpenAPI Generator (https://openapi-generator.tech) - */ - -package client - -// OfacWatch Customer or Company watch -type OfacWatch struct { - // Object representing a customer or company watch - WatchID string `json:"watchID,omitempty"` -} diff --git a/client/model_ofac_watch_request.go b/client/model_ofac_watch_request.go deleted file mode 100644 index 35ba6bf..0000000 --- a/client/model_ofac_watch_request.go +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Watchman API - * - * Moov Watchman offers download, parse, and search functions over numerous U.S. trade sanction lists for complying with regional laws. Also included is a web UI and async webhook notification service to initiate processes on remote systems. - * - * API version: v1 - * Generated by: OpenAPI Generator (https://openapi-generator.tech) - */ - -package client - -// OfacWatchRequest Webhook or other means of notification on search criteria. OFAC will make a POST request with a body of the customer or company (SDN, AltNames, and Address). -type OfacWatchRequest struct { - // Private token supplied by clients to be used for authenticating webhooks. - AuthToken string `json:"authToken"` - // HTTPS url for webhook on search match - Webhook string `json:"webhook"` -} diff --git a/client/model_palestinian_legislative_council.go b/client/model_palestinian_legislative_council.go index 342eeaa..669a414 100644 --- a/client/model_palestinian_legislative_council.go +++ b/client/model_palestinian_legislative_council.go @@ -25,4 +25,6 @@ type PalestinianLegislativeCouncil struct { SourceInfoURL string `json:"sourceInfoURL,omitempty"` // Match percentage of search query Match float32 `json:"match,omitempty"` + // The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. + MatchedName string `json:"matchedName,omitempty"` } diff --git a/client/model_search.go b/client/model_search.go index 8b6b4ba..a7d3733 100644 --- a/client/model_search.go +++ b/client/model_search.go @@ -30,5 +30,8 @@ type Search struct { ItarDebarred []ItarDebarred `json:"itarDebarred,omitempty"` NonSDNChineseMilitaryIndustrialComplex []NonSdnChineseMilitaryIndustrialComplex `json:"nonSDNChineseMilitaryIndustrialComplex,omitempty"` NonSDNMenuBasedSanctionsList []NonSdnMenuBasedSanctionsList `json:"nonSDNMenuBasedSanctionsList,omitempty"` + EuConsolidatedSanctionsList []EuConsolidatedSanctionsList `json:"euConsolidatedSanctionsList,omitempty"` + UkConsolidatedSanctionsList []UkConsolidatedSanctionsList `json:"ukConsolidatedSanctionsList,omitempty"` + UkSanctionsList []UkSanctionsList `json:"ukSanctionsList,omitempty"` RefreshedAt time.Time `json:"refreshedAt,omitempty"` } diff --git a/client/model_ssi.go b/client/model_ssi.go index 7e04fe0..bc09385 100644 --- a/client/model_ssi.go +++ b/client/model_ssi.go @@ -32,4 +32,6 @@ type Ssi struct { SourceInfoURL string `json:"sourceInfoURL,omitempty"` // Match percentage of search query Match float32 `json:"match,omitempty"` + // The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. + MatchedName string `json:"matchedName,omitempty"` } diff --git a/client/model_uk_consolidated_sanctions_list.go b/client/model_uk_consolidated_sanctions_list.go new file mode 100644 index 0000000..c7d96a4 --- /dev/null +++ b/client/model_uk_consolidated_sanctions_list.go @@ -0,0 +1,22 @@ +/* + * Watchman API + * + * Moov Watchman offers download, parse, and search functions over numerous U.S. trade sanction lists for complying with regional laws. Also included is a web UI and async webhook notification service to initiate processes on remote systems. + * + * API version: v1 + * Generated by: OpenAPI Generator (https://openapi-generator.tech) + */ + +package client + +// UkConsolidatedSanctionsList struct for UkConsolidatedSanctionsList +type UkConsolidatedSanctionsList struct { + Names []string `json:"names,omitempty"` + Addresses []string `json:"addresses,omitempty"` + Countries []string `json:"countries,omitempty"` + GroupType string `json:"groupType,omitempty"` + // Match percentage of search query + Match float32 `json:"match,omitempty"` + // The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. + MatchedName string `json:"matchedName,omitempty"` +} diff --git a/client/model_uk_sanctions_list.go b/client/model_uk_sanctions_list.go new file mode 100644 index 0000000..22abc4e --- /dev/null +++ b/client/model_uk_sanctions_list.go @@ -0,0 +1,24 @@ +/* + * Watchman API + * + * Moov Watchman offers download, parse, and search functions over numerous U.S. trade sanction lists for complying with regional laws. Also included is a web UI and async webhook notification service to initiate processes on remote systems. + * + * API version: v1 + * Generated by: OpenAPI Generator (https://openapi-generator.tech) + */ + +package client + +// UkSanctionsList struct for UkSanctionsList +type UkSanctionsList struct { + Names []string `json:"names,omitempty"` + NonLatinNames []string `json:"nonLatinNames,omitempty"` + EntityType string `json:"entityType,omitempty"` + Addresses []string `json:"addresses,omitempty"` + AddressCountries []string `json:"addressCountries,omitempty"` + StateLocalities []string `json:"stateLocalities,omitempty"` + // Match percentage of search query + Match float32 `json:"match,omitempty"` + // The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. + MatchedName string `json:"matchedName,omitempty"` +} diff --git a/client/model_unverified.go b/client/model_unverified.go index b133c99..194f4f2 100644 --- a/client/model_unverified.go +++ b/client/model_unverified.go @@ -18,4 +18,6 @@ type Unverified struct { SourceInfoURL string `json:"sourceInfoURL,omitempty"` // Match percentage of search query Match float32 `json:"match,omitempty"` + // The highest scoring term from the search query. This term is the precomputed indexed value used by the search algorithm. + MatchedName string `json:"matchedName,omitempty"` } diff --git a/client/model_update_ofac_company_status.go b/client/model_update_ofac_company_status.go deleted file mode 100644 index c0f86b0..0000000 --- a/client/model_update_ofac_company_status.go +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Watchman API - * - * Moov Watchman offers download, parse, and search functions over numerous U.S. trade sanction lists for complying with regional laws. Also included is a web UI and async webhook notification service to initiate processes on remote systems. - * - * API version: v1 - * Generated by: OpenAPI Generator (https://openapi-generator.tech) - */ - -package client - -// UpdateOfacCompanyStatus Request body to update a company status. -type UpdateOfacCompanyStatus struct { - // Manual override of company/SDN sanction status - Status string `json:"status"` - // Free form notes about manually changing the Company status - Notes string `json:"notes,omitempty"` -} diff --git a/client/model_update_ofac_customer_status.go b/client/model_update_ofac_customer_status.go deleted file mode 100644 index 188f894..0000000 --- a/client/model_update_ofac_customer_status.go +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Watchman API - * - * Moov Watchman offers download, parse, and search functions over numerous U.S. trade sanction lists for complying with regional laws. Also included is a web UI and async webhook notification service to initiate processes on remote systems. - * - * API version: v1 - * Generated by: OpenAPI Generator (https://openapi-generator.tech) - */ - -package client - -// UpdateOfacCustomerStatus Request body to update a customers status. -type UpdateOfacCustomerStatus struct { - // Manual override of customer/SDN sanction status - Status string `json:"status"` - // Free form notes about manually changing the Customer status - Notes string `json:"notes,omitempty"` -} diff --git a/cmd/server/companies.go b/cmd/server/companies.go deleted file mode 100644 index 652b371..0000000 --- a/cmd/server/companies.go +++ /dev/null @@ -1,377 +0,0 @@ -// Copyright 2022 The Moov Authors -// Use of this source code is governed by an Apache License -// license that can be found in the LICENSE file. - -package main - -import ( - "database/sql" - "encoding/json" - "errors" - "fmt" - "net/http" - "strings" - "time" - - moovhttp "github.com/moov-io/base/http" - "github.com/moov-io/base/log" - "github.com/moov-io/watchman/internal/database" - "github.com/moov-io/watchman/pkg/ofac" - - "github.com/gorilla/mux" -) - -var ( - errNoCompanyID = errors.New("no Company ID found") -) - -// Company is a company on one or more SDN list(s) -type Company struct { - ID string `json:"id"` - // Federal Data - SDN *ofac.SDN `json:"sdn"` - Addresses []*ofac.Address `json:"addresses"` - Alts []*ofac.AlternateIdentity `json:"alts"` - Comments []*ofac.SDNComments `json:"comments"` - // Metadata - Status *CompanyStatus `json:"status"` - Match float64 `json:"match,omitempty"` -} - -// CompanyBlockStatus can be either CompanyUnsafe or CompanyException -type CompanyBlockStatus string - -const ( - // CompanyUnsafe companies have been manually marked to block all transactions with - CompanyUnsafe CompanyBlockStatus = "unsafe" - // CompanyException companies have been manually marked to allow transactions with - CompanyException CompanyBlockStatus = "exception" -) - -// CompanyStatus represents a userID's manual override of an SDN -type CompanyStatus struct { - UserID string `json:"userID"` - Note string `json:"note"` - Status CompanyBlockStatus `json:"block"` - CreatedAt time.Time `json:"createdAt"` -} - -type companyWatchResponse struct { - WatchID string `json:"watchID"` -} - -func addCompanyRoutes(logger log.Logger, r *mux.Router, searcher *searcher, companyRepo companyRepository, watchRepo *sqliteWatchRepository) { - r.Methods("GET").Path("/ofac/companies/{companyID}").HandlerFunc(getCompany(logger, searcher, companyRepo)) - r.Methods("PUT").Path("/ofac/companies/{companyID}").HandlerFunc(updateCompanyStatus(logger, searcher, companyRepo)) - - r.Methods("POST").Path("/ofac/companies/{companyID}/watch").HandlerFunc(addCompanyWatch(logger, searcher, watchRepo)) - r.Methods("DELETE").Path("/ofac/companies/{companyID}/watch/{watchID}").HandlerFunc(removeCompanyWatch(logger, searcher, watchRepo)) - - r.Methods("POST").Path("/ofac/companies/watch").HandlerFunc(addCompanyNameWatch(logger, searcher, watchRepo)) - r.Methods("DELETE").Path("/ofac/companies/watch/{watchID}").HandlerFunc(removeCompanyNameWatch(logger, searcher, watchRepo)) -} - -func getCompanyID(w http.ResponseWriter, r *http.Request) string { - v, ok := mux.Vars(r)["companyID"] - if !ok || v == "" { - moovhttp.Problem(w, errNoCompanyID) - return "" - } - return v -} - -func getCompanyByID(id string, searcher *searcher, repo companyRepository) (*Company, error) { - sdn := searcher.FindSDN(id) - if sdn == nil { - return nil, fmt.Errorf("Company %s not found", id) - } - if strings.EqualFold(sdn.SDNType, "individual") { - // SDN is an individual, so they aren't a company/trust/organization - return nil, nil - } - if repo == nil { - return nil, errors.New("nil companyRepository provided - logic bug") - } - status, err := repo.getCompanyStatus(sdn.EntityID) - if err != nil { - return nil, fmt.Errorf("problem reading Company=%s block status: %v", id, err) - } - return &Company{ - ID: id, - SDN: sdn, - Addresses: searcher.FindAddresses(100, id), - Alts: searcher.FindAlts(100, id), - Status: status, - }, nil -} - -// companyRepository holds the current status (i.e. unsafe or exception) for a given company and -// is expected to save metadata about each time the status is changed. -type companyRepository interface { - getCompanyStatus(companyID string) (*CompanyStatus, error) - upsertCompanyStatus(companyID string, status *CompanyStatus) error -} - -type sqliteCompanyRepository struct { - db *sql.DB - logger log.Logger -} - -func (r *sqliteCompanyRepository) close() error { - return r.db.Close() -} - -func (r *sqliteCompanyRepository) getCompanyStatus(companyID string) (*CompanyStatus, error) { - if companyID == "" { - return nil, errors.New("getCompanyStatus: no Company.ID") - } - query := `select user_id, note, status, created_at from company_status where company_id = ? and deleted_at is null order by created_at desc limit 1;` - stmt, err := r.db.Prepare(query) - if err != nil { - return nil, err - } - defer stmt.Close() - - row := stmt.QueryRow(companyID) - - var status CompanyStatus - err = row.Scan(&status.UserID, &status.Note, &status.Status, &status.CreatedAt) - if err != nil && !strings.Contains(err.Error(), "no rows in result set") { - return nil, fmt.Errorf("getCompanyStatus: %v", err) - } - if status.UserID == "" { - return nil, nil // not found - } - return &status, nil -} - -func (r *sqliteCompanyRepository) upsertCompanyStatus(companyID string, status *CompanyStatus) error { - tx, err := r.db.Begin() - if err != nil { - return fmt.Errorf("upsertCompanyStatus: begin: %v", err) - } - - query := `insert into company_status (company_id, user_id, note, status, created_at) values (?, ?, ?, ?, ?);` - stmt, err := tx.Prepare(query) - if err != nil { - return fmt.Errorf("upsertCompanyStatus: prepare error=%v rollback=%v", err, tx.Rollback()) - } - _, err = stmt.Exec(companyID, status.UserID, status.Note, status.Status, status.CreatedAt) - defer stmt.Close() - if err == nil { - return tx.Commit() - } - if database.UniqueViolation(err) { - query = `update company_status set note = ?, status = ? where company_id = ? and user_id = ?;` - stmt, err = tx.Prepare(query) - if err != nil { - return fmt.Errorf("upsertCompanyStatus: inner prepare error=%v rollback=%v", err, tx.Rollback()) - } - _, err := stmt.Exec(status.Note, status.Status, companyID, status.UserID) - defer stmt.Close() - if err != nil { - return fmt.Errorf("upsertCompanyStatus: unique error=%v rollback=%v", err, tx.Rollback()) - } - } - return tx.Commit() -} - -func getCompany(logger log.Logger, searcher *searcher, companyRepo companyRepository) http.HandlerFunc { - return func(w http.ResponseWriter, r *http.Request) { - w = wrapResponseWriter(logger, w, r) - id := getCompanyID(w, r) - if id == "" { - return - } - company, err := getCompanyByID(id, searcher, companyRepo) - if err != nil { - moovhttp.Problem(w, err) - return - } - - logger.Info().With(log.Fields{ - "requestID": log.String(moovhttp.GetRequestID(r)), - }).Logf("getting companies=%s", id) - - w.Header().Set("Content-Type", "application/json; charset=utf-8") - w.WriteHeader(http.StatusOK) - json.NewEncoder(w).Encode(company) - } -} - -type companyStatusRequest struct { - Notes string `json:"notes,omitempty"` - - // Status represents a manual exception or unsafe designation - Status string `json:"status"` -} - -func updateCompanyStatus(logger log.Logger, searcher *searcher, companyRepo companyRepository) http.HandlerFunc { - return func(w http.ResponseWriter, r *http.Request) { - w = wrapResponseWriter(logger, w, r) - - companyID, userID := getCompanyID(w, r), moovhttp.GetUserID(r) - if companyID == "" { - return - } - if userID == "" { - moovhttp.Problem(w, errNoUserID) - return - } - - var req companyStatusRequest - if err := json.NewDecoder(r.Body).Decode(&req); err != nil { - moovhttp.Problem(w, err) - return - } - - status := CompanyBlockStatus(strings.ToLower(strings.TrimSpace(req.Status))) - switch status { - case CompanyUnsafe, CompanyException: - companyStatus := &CompanyStatus{ - UserID: userID, - Note: req.Notes, - Status: status, - CreatedAt: time.Now(), - } - if err := companyRepo.upsertCompanyStatus(companyID, companyStatus); err != nil { - moovhttp.Problem(w, err) - return - } - - logger.Info().With(log.Fields{ - "requestID": log.String(moovhttp.GetRequestID(r)), - }).Logf("updated company=%s status", companyID) - - w.WriteHeader(http.StatusOK) - return - - default: - w.Header().Set("Content-Type", "application/json; charset=utf-8") - w.WriteHeader(http.StatusBadRequest) - w.Write([]byte(`{"error": "unknown status"}`)) - } - } -} - -func addCompanyWatch(logger log.Logger, searcher *searcher, repo watchRepository) http.HandlerFunc { - return func(w http.ResponseWriter, r *http.Request) { - w = wrapResponseWriter(logger, w, r) - - var req watchRequest - if err := json.NewDecoder(r.Body).Decode(&req); err != nil { - moovhttp.Problem(w, err) - return - } - if req.AuthToken == "" { - moovhttp.Problem(w, errNoAuthToken) - return - } - webhook, err := validateWebhook(req.Webhook) - if err != nil { - moovhttp.Problem(w, err) - return - } - req.Webhook = webhook - - companyID := getCompanyID(w, r) - if companyID == "" { - return - } - watchID, err := repo.addCompanyWatch(companyID, req) - if err != nil { - moovhttp.Problem(w, err) - return - } - - logger.Info().With(log.Fields{ - "requestID": log.String(moovhttp.GetRequestID(r)), - }).Logf("added watch for company=%s", companyID) - - w.Header().Set("Content-Type", "application/json; charset=utf-8") - w.WriteHeader(http.StatusOK) - json.NewEncoder(w).Encode(companyWatchResponse{watchID}) - } -} - -func removeCompanyWatch(logger log.Logger, searcher *searcher, repo watchRepository) http.HandlerFunc { - return func(w http.ResponseWriter, r *http.Request) { - w = wrapResponseWriter(logger, w, r) - - companyID, watchID := getCompanyID(w, r), getWatchID(w, r) - if companyID == "" || watchID == "" { - return - } - if err := repo.removeCompanyWatch(companyID, watchID); err != nil { - moovhttp.Problem(w, err) - return - } - - logger.Info().With(log.Fields{ - "requestID": log.String(moovhttp.GetRequestID(r)), - }).Logf("removed company=%s watch=%s", companyID, watchID) - - w.WriteHeader(http.StatusOK) - } -} - -func addCompanyNameWatch(logger log.Logger, searcher *searcher, repo watchRepository) http.HandlerFunc { - return func(w http.ResponseWriter, r *http.Request) { - w = wrapResponseWriter(logger, w, r) - - name := r.URL.Query().Get("name") - if name == "" { - moovhttp.Problem(w, errNoNameParam) - return - } - - var req watchRequest - if err := json.NewDecoder(r.Body).Decode(&req); err != nil { - moovhttp.Problem(w, err) - return - } - if req.AuthToken == "" { - moovhttp.Problem(w, errNoAuthToken) - return - } - webhook, err := validateWebhook(req.Webhook) - if err != nil { - moovhttp.Problem(w, err) - return - } - watchID, err := repo.addCompanyNameWatch(name, webhook, req.AuthToken) - if err != nil { - moovhttp.Problem(w, err) - return - } - - logger.Info().With(log.Fields{ - "requestID": log.String(moovhttp.GetRequestID(r)), - }).Log("added company name watch") - - w.Header().Set("Content-Type", "application/json; charset=utf-8") - w.WriteHeader(http.StatusOK) - json.NewEncoder(w).Encode(companyWatchResponse{watchID}) - } -} - -func removeCompanyNameWatch(logger log.Logger, searcher *searcher, repo watchRepository) http.HandlerFunc { - return func(w http.ResponseWriter, r *http.Request) { - w = wrapResponseWriter(logger, w, r) - - watchID := getWatchID(w, r) - if watchID == "" { - return - } - if err := repo.removeCompanyNameWatch(watchID); err != nil { - moovhttp.Problem(w, err) - return - } - - logger.Info().With(log.Fields{ - "requestID": log.String(moovhttp.GetRequestID(r)), - }).Logf("removed company name watch=%s", watchID) - - w.WriteHeader(http.StatusOK) - } -} diff --git a/cmd/server/companies_test.go b/cmd/server/companies_test.go deleted file mode 100644 index 9fb2a0e..0000000 --- a/cmd/server/companies_test.go +++ /dev/null @@ -1,665 +0,0 @@ -// Copyright 2022 The Moov Authors -// Use of this source code is governed by an Apache License -// license that can be found in the LICENSE file. - -package main - -import ( - "encoding/json" - "net/http" - "net/http/httptest" - "strings" - "testing" - "time" - - "github.com/moov-io/base" - "github.com/moov-io/base/log" - "github.com/moov-io/watchman/internal/database" - "github.com/moov-io/watchman/pkg/ofac" - - "github.com/gorilla/mux" -) - -var ( - // companySearcher is a searcher instance with one company entity contained. It's designed to be used - // in tests that expect a non-individual SDN. - companySearcher *searcher -) - -func init() { - companySearcher = newSearcher(log.NewNopLogger(), noLogPipeliner, 1) - companySearcher.SDNs = precomputeSDNs([]*ofac.SDN{ - { - EntityID: "21206", - SDNName: "AL-HISN", - Programs: []string{"SYRIA"}, - Remarks: "Linked To: MAKHLUF, Rami.", - }, - }, nil, noLogPipeliner) - companySearcher.Addresses = precomputeAddresses([]*ofac.Address{ - { - EntityID: "21206", - AddressID: "32272", - Address: "Jurmana", - CityStateProvincePostalCode: "Damascus", - Country: "Syria", - }, - }) - companySearcher.Alts = precomputeAlts([]*ofac.AlternateIdentity{ - { - EntityID: "21206", - AlternateID: "33627", - AlternateType: "aka", - AlternateName: "AL-HISN FIRM", - }, - }, noLogPipeliner) -} - -func createTestCompanyRepository(t *testing.T) *sqliteCompanyRepository { - t.Helper() - - db := database.CreateTestSqliteDB(t) - return &sqliteCompanyRepository{db.DB, log.NewNopLogger()} -} - -func TestCompanies__id(t *testing.T) { - router := mux.NewRouter() - - // Happy path - w := httptest.NewRecorder() - req := httptest.NewRequest("GET", "/ofac/companies/random-company-id", nil) - router.Methods("GET").Path("/companies/{companyID}").HandlerFunc(func(_ http.ResponseWriter, r *http.Request) { - if v := getCompanyID(w, r); v != "random-company-id" { - t.Errorf("got %s", v) - } - if w.Code != http.StatusOK { - t.Errorf("got status code %d", w.Code) - } - }) - router.ServeHTTP(w, req) - - // Unhappy case - w = httptest.NewRecorder() - req = httptest.NewRequest("GET", "/ofac/companies", nil) - router.Methods("GET").Path("/companies/{companyID}").HandlerFunc(func(_ http.ResponseWriter, r *http.Request) { - if v := getCompanyID(w, req); v != "" { - t.Errorf("didn't expect companyID, got %s", v) - } - if w.Code != http.StatusBadRequest { - t.Errorf("got status code %d", w.Code) - } - }) - router.ServeHTTP(w, req) - - // Don't pass req through mux so mux.Vars finds nothing - if v := getCompanyID(w, req); v != "" { - t.Errorf("expected empty, but got %q", v) - } -} - -func TestCompany_getById(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCompanyRepository) { - // make sure we only return SDNType != "individual" - // We do this by proviing a searcher with individual results - company, err := getCompanyByID("306", customerSearcher, repo) - if company != nil { - t.Fatalf("expected no Company, but got %#v", company) - } - if err != nil { - t.Fatalf("expected no error, but got %#v", err) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCompanyRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCompanyRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCompany_get(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCompanyRepository) { - w := httptest.NewRecorder() - req := httptest.NewRequest("GET", "/ofac/companies/21206", nil) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCompanyRoutes(log.NewNopLogger(), router, companySearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } - - var company Company - if err := json.NewDecoder(w.Body).Decode(&company); err != nil { - t.Fatal(err) - } - if company.ID == "" { - t.Fatalf("empty ofac.Company: %#v", company) - } - if company.SDN == nil { - t.Fatal("missing company.SDN") - } - if len(company.Addresses) != 1 { - t.Errorf("company.Addresses: %#v", company.Addresses) - } - if len(company.Alts) != 1 { - t.Errorf("company.Alts: %#v", company.Alts) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCompanyRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCompanyRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCompany_EmptyHTTP(t *testing.T) { - w := httptest.NewRecorder() - req := httptest.NewRequest("GET", "/ofac/companies/foo", nil) - - companyRepo := createTestCompanyRepository(t) - defer companyRepo.close() - - getCompany(nil, companySearcher, companyRepo)(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("bogus status code: %d", w.Code) - } -} - -func TestCompany_addWatch(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCompanyRepository) { - w := httptest.NewRecorder() - body := strings.NewReader(`{"webhook": "https://moov.io", "authToken": "foo"}`) - req := httptest.NewRequest("POST", "/ofac/companies/foo/watch", body) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCompanyRoutes(log.NewNopLogger(), router, companySearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } - - var watch companyWatchResponse - if err := json.NewDecoder(w.Body).Decode(&watch); err != nil { - t.Fatal(err) - } - if watch.WatchID == "" { - t.Error("empty watch.WatchID") - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCompanyRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCompanyRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCompany_addWatchNoBody(t *testing.T) { - w := httptest.NewRecorder() - req := httptest.NewRequest("POST", "/ofac/companies/foo/watch", nil) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCompanyRoutes(log.NewNopLogger(), router, companySearcher, nil, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("bogus status code: %d", w.Code) - } -} - -func TestCompany_addWatchMissingAuthToken(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCompanyRepository) { - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - body := strings.NewReader(`{"webhook": "https://moov.io", "authToken": ""}`) - - req := httptest.NewRequest("POST", "/ofac/companies/foo/watch", body) - req.Header.Set("x-user-id", "test") - - w := httptest.NewRecorder() - - // Setup test HTTP server - router := mux.NewRouter() - addCompanyRoutes(log.NewNopLogger(), router, companySearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("bogus status code: %d", w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCompanyRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCompanyRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCompany_addNameWatch(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCompanyRepository) { - w := httptest.NewRecorder() - body := strings.NewReader(`{"webhook": "https://moov.io", "authToken": "foo"}`) - req := httptest.NewRequest("POST", "/ofac/companies/watch?name=foo", body) - req.Header.Set("x-user-id", "test") - req.Header.Set("x-request-id", base.ID()) - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCompanyRoutes(log.NewNopLogger(), router, companySearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } - - var watch companyWatchResponse - if err := json.NewDecoder(w.Body).Decode(&watch); err != nil { - t.Fatal(err) - } - if watch.WatchID == "" { - t.Error("empty watch.WatchID") - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCompanyRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCompanyRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCompany_addCompanyNameWatchNoBody(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCompanyRepository) { - w := httptest.NewRecorder() - req := httptest.NewRequest("POST", "/ofac/companies/watch?name=foo", nil) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCompanyRoutes(log.NewNopLogger(), router, companySearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("bogus status code: %d", w.Code) - } - - // reset - w = httptest.NewRecorder() - if w.Code != http.StatusOK { - t.Errorf("bad state reset: %d", w.Code) - } - - req = httptest.NewRequest("POST", "/ofac/companies/watch", nil) - req.Header.Set("x-user-id", "test") - - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("bogus status code: %d", w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCompanyRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCompanyRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCompany_updateUnsafe(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCompanyRepository) { - w := httptest.NewRecorder() - - body := strings.NewReader(`{"status": "unsafe"}`) - req := httptest.NewRequest("PUT", "/ofac/companies/foo", body) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCompanyRoutes(log.NewNopLogger(), router, companySearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCompanyRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCompanyRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCompany_updateException(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCompanyRepository) { - w := httptest.NewRecorder() - - body := strings.NewReader(`{"status": "exception"}`) - req := httptest.NewRequest("PUT", "/ofac/companies/foo", body) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCompanyRoutes(log.NewNopLogger(), router, companySearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCompanyRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCompanyRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCompany_updateUnknown(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCompanyRepository) { - w := httptest.NewRecorder() - - body := strings.NewReader(`{"status": "unknown"}`) // has status, but not blocked or unblocked - req := httptest.NewRequest("PUT", "/ofac/companies/foo", body) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCompanyRoutes(log.NewNopLogger(), router, companySearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("bogus status code: %d", w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCompanyRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCompanyRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCompany_updateNoUserId(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCompanyRepository) { - w := httptest.NewRecorder() - req := httptest.NewRequest("PUT", "/ofac/companies/foo", nil) - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCompanyRoutes(log.NewNopLogger(), router, companySearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("expected %d but got: %d", http.StatusBadRequest, w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCompanyRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCompanyRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCompany_updateNoBody(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCompanyRepository) { - w := httptest.NewRecorder() - req := httptest.NewRequest("PUT", "/ofac/companies/foo", nil) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCompanyRoutes(log.NewNopLogger(), router, companySearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("expected %d but got: %d", http.StatusBadRequest, w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCompanyRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCompanyRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCompany_removeWatch(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCompanyRepository) { - w := httptest.NewRecorder() - req := httptest.NewRequest("DELETE", "/ofac/companies/foo/watch/watch-id", nil) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCompanyRoutes(log.NewNopLogger(), router, companySearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCompanyRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCompanyRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCompany_removeNameWatch(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCompanyRepository) { - w := httptest.NewRecorder() - req := httptest.NewRequest("DELETE", "/ofac/companies/watch/foo", nil) - req.Header.Set("x-user-id", "test") - req.Header.Set("x-request-id", base.ID()) - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCompanyRoutes(log.NewNopLogger(), router, companySearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCompanyRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCompanyRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCompanyRepository(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCompanyRepository) { - companyID, userID := base.ID(), base.ID() - - status, err := repo.getCompanyStatus(companyID) - if err != nil { - t.Fatal(err) - } - if status != nil { - t.Fatal("should give nil CompanyStatus") - } - - // block company - status = &CompanyStatus{UserID: userID, Status: CompanyUnsafe, CreatedAt: time.Now()} - if err := repo.upsertCompanyStatus(companyID, status); err != nil { - t.Errorf("addCompanyBlock: shouldn't error, but got %v", err) - } - - // verify - status, err = repo.getCompanyStatus(companyID) - if err != nil { - t.Error(err) - } - if status == nil { - t.Fatal("empty CompanyStatus") - } - if status.UserID == "" || string(status.Status) == "" { - t.Errorf("invalid CompanyStatus: %#v", status) - } - if status.Status != CompanyUnsafe { - t.Errorf("status.Status=%v", status.Status) - } - - // unblock - status = &CompanyStatus{UserID: userID, Status: CompanyException, CreatedAt: time.Now()} - if err := repo.upsertCompanyStatus(companyID, status); err != nil { - t.Errorf("addCompanyBlock: shouldn't error, but got %v", err) - } - - status, err = repo.getCompanyStatus(companyID) - if err != nil { - t.Error(err) - } - if status == nil { - t.Fatal("empty CompanyStatus") - } - if status.UserID == "" || string(status.Status) == "" { - t.Errorf("invalid CompanyStatus: %#v", status) - } - if status.Status != CompanyException { - t.Errorf("status.Status=%v", status.Status) - } - - // edgae case - status, err = repo.getCompanyStatus("") - if status != nil { - t.Error("empty companyID shouldn return nil status") - } - if err == nil { - t.Error("but an error should be returned") - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCompanyRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCompanyRepository{mysqlDB, log.NewNopLogger()}) -} diff --git a/cmd/server/customers.go b/cmd/server/customers.go deleted file mode 100644 index bfae798..0000000 --- a/cmd/server/customers.go +++ /dev/null @@ -1,388 +0,0 @@ -// Copyright 2022 The Moov Authors -// Use of this source code is governed by an Apache License -// license that can be found in the LICENSE file. - -package main - -import ( - "database/sql" - "encoding/json" - "errors" - "fmt" - "net/http" - "strings" - "time" - - moovhttp "github.com/moov-io/base/http" - "github.com/moov-io/base/log" - "github.com/moov-io/watchman/internal/database" - "github.com/moov-io/watchman/pkg/ofac" - - "github.com/gorilla/mux" -) - -var ( - errNoAuthToken = errors.New("no authToken provided for webhook") - errNoCustomerID = errors.New("no Customer ID found") - errNoNameParam = errors.New("no name parameter found") - errNoUserID = errors.New("no userID (X-User-Id header) found") -) - -// Customer is an individual on one or more SDN list(s) -type Customer struct { - ID string `json:"id"` - // Federal Data - SDN *ofac.SDN `json:"sdn"` - Addresses []*ofac.Address `json:"addresses"` - Alts []*ofac.AlternateIdentity `json:"alts"` - Comments []*ofac.SDNComments `json:"comments"` - // Metadata - Status *CustomerStatus `json:"status"` - Match float64 `json:"match,omitempty"` -} - -// CustomerBlockStatus can be either CustomerUnsafe or CustomerException -type CustomerBlockStatus string - -const ( - // CustomerUnsafe customers have been manually marked to block all transactions with - CustomerUnsafe CustomerBlockStatus = "unsafe" - // CustomerException customers have been manually marked to allow transactions with - CustomerException CustomerBlockStatus = "exception" -) - -// CustomerStatus represents a userID's manual override of an SDN -type CustomerStatus struct { - UserID string `json:"userID"` - Note string `json:"note"` - Status CustomerBlockStatus `json:"block"` - CreatedAt time.Time `json:"createdAt"` -} - -type customerWatchResponse struct { - WatchID string `json:"watchID"` -} - -func addCustomerRoutes(logger log.Logger, r *mux.Router, searcher *searcher, custRepo *sqliteCustomerRepository, watchRepo *sqliteWatchRepository) { - r.Methods("GET").Path("/ofac/customers/{customerID}").HandlerFunc(getCustomer(logger, searcher, custRepo)) - r.Methods("PUT").Path("/ofac/customers/{customerID}").HandlerFunc(updateCustomerStatus(logger, searcher, custRepo)) - - r.Methods("POST").Path("/ofac/customers/{customerID}/watch").HandlerFunc(addCustomerWatch(logger, searcher, watchRepo)) - r.Methods("DELETE").Path("/ofac/customers/{customerID}/watch/{watchID}").HandlerFunc(removeCustomerWatch(logger, searcher, watchRepo)) - - r.Methods("POST").Path("/ofac/customers/watch").HandlerFunc(addCustomerNameWatch(logger, searcher, watchRepo)) - r.Methods("DELETE").Path("/ofac/customers/watch/{watchID}").HandlerFunc(removeCustomerNameWatch(logger, searcher, watchRepo)) -} - -func getCustomerID(w http.ResponseWriter, r *http.Request) string { - v, ok := mux.Vars(r)["customerID"] - if !ok || v == "" { - moovhttp.Problem(w, errNoCustomerID) - return "" - } - return v -} - -// getCustomerID returns an SDN for an individual and any addresses or alt names by the entity id provided.a -func getCustomerByID(id string, searcher *searcher, custRepo customerRepository) (*Customer, error) { - sdn := searcher.FindSDN(id) - if sdn == nil { - return nil, fmt.Errorf("Customer %s not found", id) - } - if !strings.EqualFold(sdn.SDNType, "individual") { - // SDN wasn't an individual, so don't return it for method that only returns individuals - return nil, nil - } - if custRepo == nil { - return nil, errors.New("nil customerRepository provided - logic bug") - } - status, err := custRepo.getCustomerStatus(sdn.EntityID) - if err != nil { - return nil, fmt.Errorf("problem reading Customer=%s block status: %v", id, err) - } - return &Customer{ - ID: id, - SDN: sdn, - Addresses: searcher.FindAddresses(100, id), - Alts: searcher.FindAlts(100, id), - Status: status, - }, nil -} - -// customerRepository holds the current status (i.e. unsafe or exception) for a given customer -// (individual) and is expected to save metadata about each time the status is changed. -type customerRepository interface { - getCustomerStatus(customerID string) (*CustomerStatus, error) - upsertCustomerStatus(customerID string, status *CustomerStatus) error -} - -type sqliteCustomerRepository struct { - db *sql.DB - logger log.Logger -} - -func (r *sqliteCustomerRepository) close() error { - return r.db.Close() -} - -func (r *sqliteCustomerRepository) getCustomerStatus(customerID string) (*CustomerStatus, error) { - if customerID == "" { - return nil, errors.New("getCustomerStatus: no Customer.ID") - } - query := `select user_id, note, status, created_at from customer_status where customer_id = ? and deleted_at is null order by created_at desc limit 1;` - stmt, err := r.db.Prepare(query) - if err != nil { - return nil, err - } - defer stmt.Close() - - row := stmt.QueryRow(customerID) - - var status CustomerStatus - err = row.Scan(&status.UserID, &status.Note, &status.Status, &status.CreatedAt) - if err != nil && !strings.Contains(err.Error(), "no rows in result set") { - return nil, fmt.Errorf("getCustomerStatus: %v", err) - } - if status.UserID == "" { - return nil, nil // not found - } - return &status, nil -} - -func (r *sqliteCustomerRepository) upsertCustomerStatus(customerID string, status *CustomerStatus) error { - tx, err := r.db.Begin() - if err != nil { - return fmt.Errorf("upsertCustomerStatus: begin: %v", err) - } - - query := `insert into customer_status (customer_id, user_id, note, status, created_at) values (?, ?, ?, ?, ?);` - stmt, err := r.db.Prepare(query) - if err != nil { - return fmt.Errorf("upsertCustomerStatus: prepare error=%v rollback=%v", err, tx.Rollback()) - } - _, err = stmt.Exec(customerID, status.UserID, status.Note, status.Status, status.CreatedAt) - defer stmt.Close() - if err == nil { - return tx.Commit() - } - if database.UniqueViolation(err) { - query = `update customer_status set note = ?, status = ? where customer_id = ? and user_id = ?` - stmt, err = tx.Prepare(query) - if err != nil { - return fmt.Errorf("upsertCustomerStatus: inner prepare error=%v rollback=%v", err, tx.Rollback()) - } - _, err := stmt.Exec(status.Note, status.Status, customerID, status.UserID) - defer stmt.Close() - if err != nil { - return fmt.Errorf("upsertCustomerStatus: unique error=%v rollback=%v", err, tx.Rollback()) - } - } - return tx.Commit() -} - -func getCustomer(logger log.Logger, searcher *searcher, custRepo customerRepository) http.HandlerFunc { - return func(w http.ResponseWriter, r *http.Request) { - w = wrapResponseWriter(logger, w, r) - id := getCustomerID(w, r) - if id == "" { - return - } - customer, err := getCustomerByID(id, searcher, custRepo) - if err != nil { - moovhttp.Problem(w, err) - return - } - - logger.With(log.Fields{ - "requestID": log.String(moovhttp.GetRequestID(r)), - "userID": log.String(moovhttp.GetUserID(r)), - }).Logf("get customer=%s", id) - - w.Header().Set("Content-Type", "application/json; charset=utf-8") - w.WriteHeader(http.StatusOK) - if err := json.NewEncoder(w).Encode(customer); err != nil { - moovhttp.Problem(w, err) - return - } - } -} - -func addCustomerNameWatch(logger log.Logger, searcher *searcher, repo *sqliteWatchRepository) http.HandlerFunc { - return func(w http.ResponseWriter, r *http.Request) { - w = wrapResponseWriter(logger, w, r) - - name := r.URL.Query().Get("name") - if name == "" { - moovhttp.Problem(w, errNoNameParam) - return - } - - var req watchRequest - if err := json.NewDecoder(r.Body).Decode(&req); err != nil { - moovhttp.Problem(w, err) - return - } - if req.AuthToken == "" { - moovhttp.Problem(w, errNoAuthToken) - return - } - webhook, err := validateWebhook(req.Webhook) - if err != nil { - moovhttp.Problem(w, err) - return - } - watchID, err := repo.addCustomerNameWatch(name, webhook, req.AuthToken) - if err != nil { - moovhttp.Problem(w, err) - return - } - - logger.With(log.Fields{ - "requestID": log.String(moovhttp.GetRequestID(r)), - "userID": log.String(moovhttp.GetUserID(r)), - }).Log("added customer name watch") - - w.Header().Set("Content-Type", "application/json; charset=utf-8") - w.WriteHeader(http.StatusOK) - if err := json.NewEncoder(w).Encode(customerWatchResponse{watchID}); err != nil { - moovhttp.Problem(w, err) - return - } - } -} - -func addCustomerWatch(logger log.Logger, searcher *searcher, repo *sqliteWatchRepository) http.HandlerFunc { - return func(w http.ResponseWriter, r *http.Request) { - w = wrapResponseWriter(logger, w, r) - - var req watchRequest - if err := json.NewDecoder(r.Body).Decode(&req); err != nil { - moovhttp.Problem(w, err) - return - } - if req.AuthToken == "" { - moovhttp.Problem(w, errNoAuthToken) - return - } - webhook, err := validateWebhook(req.Webhook) - if err != nil { - moovhttp.Problem(w, err) - return - } - req.Webhook = webhook - - customerID := getCustomerID(w, r) - watchID, err := repo.addCustomerWatch(customerID, req) - if err != nil { - moovhttp.Problem(w, err) - return - } - - logger.With(log.Fields{ - "requestID": log.String(moovhttp.GetRequestID(r)), - "userID": log.String(moovhttp.GetUserID(r)), - }).Log("added customer name watch") - - w.Header().Set("Content-Type", "application/json; charset=utf-8") - w.WriteHeader(http.StatusOK) - if err := json.NewEncoder(w).Encode(customerWatchResponse{watchID}); err != nil { - moovhttp.Problem(w, err) - return - } - } -} - -type customerStatusRequest struct { - Notes string `json:"notes,omitempty"` - - // Status represents a manual exception or unsafe designation - Status string `json:"status"` -} - -func updateCustomerStatus(logger log.Logger, searcher *searcher, custRepo customerRepository) http.HandlerFunc { - return func(w http.ResponseWriter, r *http.Request) { - w = wrapResponseWriter(logger, w, r) - - custID := getCustomerID(w, r) - userID := moovhttp.GetUserID(r) - if userID == "" { - moovhttp.Problem(w, errNoUserID) - return - } - - var req customerStatusRequest - if err := json.NewDecoder(r.Body).Decode(&req); err != nil { - moovhttp.Problem(w, err) - return - } - - status := CustomerBlockStatus(strings.ToLower(strings.TrimSpace(req.Status))) - switch status { - case CustomerUnsafe, CustomerException: - custStatus := &CustomerStatus{ - UserID: userID, - Note: req.Notes, - Status: status, - CreatedAt: time.Now(), - } - if err := custRepo.upsertCustomerStatus(custID, custStatus); err != nil { - moovhttp.Problem(w, err) - return - } - - logger.With(log.Fields{ - "requestID": log.String(moovhttp.GetRequestID(r)), - "userID": log.String(userID), - }).Logf("updated customer=%s status", custID) - - w.WriteHeader(http.StatusOK) - return - default: - w.Header().Set("Content-Type", "application/json; charset=utf-8") - w.WriteHeader(http.StatusBadRequest) - w.Write([]byte(`{"error": "unknown status"}`)) - } - } -} - -func removeCustomerWatch(logger log.Logger, searcher *searcher, repo *sqliteWatchRepository) http.HandlerFunc { - return func(w http.ResponseWriter, r *http.Request) { - w = wrapResponseWriter(logger, w, r) - - customerID, watchID := getCustomerID(w, r), getWatchID(w, r) - if customerID == "" || watchID == "" { - return - } - if err := repo.removeCustomerWatch(customerID, watchID); err != nil { - moovhttp.Problem(w, err) - return - } - - logger.With(log.Fields{ - "requestID": log.String(moovhttp.GetRequestID(r)), - "userID": log.String(moovhttp.GetUserID(r)), - }).Logf("removed customer=%s watch", customerID) - - w.WriteHeader(http.StatusOK) - } -} - -func removeCustomerNameWatch(logger log.Logger, searcher *searcher, repo *sqliteWatchRepository) http.HandlerFunc { - return func(w http.ResponseWriter, r *http.Request) { - w = wrapResponseWriter(logger, w, r) - - watchID := getWatchID(w, r) - if watchID == "" { - return - } - if err := repo.removeCustomerNameWatch(watchID); err != nil { - moovhttp.Problem(w, err) - return - } - logger.With(log.Fields{ - "requestID": log.String(moovhttp.GetRequestID(r)), - "userID": log.String(moovhttp.GetUserID(r)), - }).Log("removed customer name watch") - w.WriteHeader(http.StatusOK) - } -} diff --git a/cmd/server/customers_test.go b/cmd/server/customers_test.go deleted file mode 100644 index 35ccad7..0000000 --- a/cmd/server/customers_test.go +++ /dev/null @@ -1,664 +0,0 @@ -// Copyright 2022 The Moov Authors -// Use of this source code is governed by an Apache License -// license that can be found in the LICENSE file. - -package main - -import ( - "encoding/json" - "net/http" - "net/http/httptest" - "strings" - "testing" - "time" - - "github.com/moov-io/base" - "github.com/moov-io/base/log" - "github.com/moov-io/watchman/internal/database" - "github.com/moov-io/watchman/pkg/ofac" - - "github.com/gorilla/mux" -) - -var ( - // customerSearcher is a searcher instance with one individual entity contained. It's designed to be used - // in tests that expect an individual SDN. - customerSearcher *searcher -) - -func init() { - customerSearcher = newSearcher(log.NewNopLogger(), noLogPipeliner, 1) - customerSearcher.SDNs = precomputeSDNs([]*ofac.SDN{ - { - EntityID: "306", - SDNName: "BANCO NACIONAL DE CUBA", - SDNType: "individual", - Programs: []string{"CUBA"}, - Title: "", - Remarks: "a.k.a. 'BNC'.", - }, - }, nil, noLogPipeliner) - customerSearcher.Addresses = precomputeAddresses([]*ofac.Address{ - { - EntityID: "306", - AddressID: "201", - Address: "Dai-Ichi Bldg. 6th Floor, 10-2 Nihombashi, 2-chome, Chuo-ku", - CityStateProvincePostalCode: "Tokyo 103", - Country: "Japan", - }, - }) - customerSearcher.Alts = precomputeAlts([]*ofac.AlternateIdentity{ - { - EntityID: "306", - AlternateID: "220", - AlternateType: "aka", - AlternateName: "NATIONAL BANK OF CUBA", - }, - }, noLogPipeliner) -} - -func createTestCustomerRepository(t *testing.T) *sqliteCustomerRepository { - t.Helper() - - db := database.CreateTestSqliteDB(t) - return &sqliteCustomerRepository{db.DB, log.NewNopLogger()} -} - -func TestCustomers__id(t *testing.T) { - router := mux.NewRouter() - - // Happy path - w := httptest.NewRecorder() - req := httptest.NewRequest("GET", "/ofac/customers/random-cust-id", nil) - router.Methods("GET").Path("/customers/{customerID}").HandlerFunc(func(_ http.ResponseWriter, r *http.Request) { - if v := getCustomerID(w, r); v != "random-cust-id" { - t.Errorf("got %s", v) - } - if w.Code != http.StatusOK { - t.Errorf("got status code %d", w.Code) - } - }) - router.ServeHTTP(w, req) - - // Unhappy case - w = httptest.NewRecorder() - req = httptest.NewRequest("GET", "/ofac/customers", nil) - router.Methods("GET").Path("/customers/{customerID}").HandlerFunc(func(_ http.ResponseWriter, r *http.Request) { - if v := getCustomerID(w, req); v != "" { - t.Errorf("didn't expect customerID, got %s", v) - } - if w.Code != http.StatusBadRequest { - t.Errorf("got status code %d", w.Code) - } - }) - router.ServeHTTP(w, req) - - // Don't pass req through mux so mux.Vars finds nothing - if v := getCustomerID(w, req); v != "" { - t.Errorf("expected empty, but got %q", v) - } -} - -func TestCustomer_getById(t *testing.T) { - repo := createTestCustomerRepository(t) - defer repo.close() - - // make sure we only return SDNType == "individual" - // We do this by proviing a searcher with non-individual results - cust, err := getCustomerByID("21206", companySearcher, repo) - if cust != nil { - t.Fatalf("expected no Customer, but got %#v", cust) - } - if err != nil { - t.Fatalf("expected no error, but got %#v", err) - } -} - -func TestCustomer_get(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCustomerRepository) { - w := httptest.NewRecorder() - req := httptest.NewRequest("GET", "/ofac/customers/306", nil) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCustomerRoutes(log.NewNopLogger(), router, customerSearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } - - var cust Customer - if err := json.NewDecoder(w.Body).Decode(&cust); err != nil { - t.Fatal(err) - } - if cust.ID == "" { - t.Fatalf("empty ofac.Customer: %#v", cust) - } - if cust.SDN == nil { - t.Fatal("missing cust.SDN") - } - if len(cust.Addresses) != 1 { - t.Errorf("cust.Addresses: %#v", cust.Addresses) - } - if len(cust.Alts) != 1 { - t.Errorf("cust.Alts: %#v", cust.Alts) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCustomerRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCustomerRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCustomer_EmptyHTTP(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCustomerRepository) { - w := httptest.NewRecorder() - req := httptest.NewRequest("GET", "/ofac/customers/foo", nil) - - getCustomer(nil, customerSearcher, repo)(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("bogus status code: %d", w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCustomerRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCustomerRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCustomer_addWatch(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCustomerRepository) { - w := httptest.NewRecorder() - body := strings.NewReader(`{"webhook": "https://moov.io", "authToken": "foo"}`) - req := httptest.NewRequest("POST", "/ofac/customers/foo/watch", body) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCustomerRoutes(log.NewNopLogger(), router, customerSearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } - - var watch customerWatchResponse - if err := json.NewDecoder(w.Body).Decode(&watch); err != nil { - t.Fatal(err) - } - if watch.WatchID == "" { - t.Error("empty watch.WatchID") - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCustomerRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCustomerRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCustomer_addWatchNoBody(t *testing.T) { - w := httptest.NewRecorder() - req := httptest.NewRequest("POST", "/ofac/customers/foo/watch", nil) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCustomerRoutes(log.NewNopLogger(), router, customerSearcher, nil, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("bogus status code: %d", w.Code) - } -} - -func TestCustomer_addWatchMissingAuthToken(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCustomerRepository) { - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - body := strings.NewReader(`{"webhook": "https://moov.io", "authToken": ""}`) - - req := httptest.NewRequest("POST", "/ofac/customers/foo/watch", body) - req.Header.Set("x-user-id", "test") - - w := httptest.NewRecorder() - - // Setup test HTTP server - router := mux.NewRouter() - addCustomerRoutes(log.NewNopLogger(), router, customerSearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("bogus status code: %d", w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCustomerRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCustomerRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCustomer_addNameWatch(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCustomerRepository) { - w := httptest.NewRecorder() - body := strings.NewReader(`{"webhook": "https://moov.io", "authToken": "foo"}`) - req := httptest.NewRequest("POST", "/ofac/customers/watch?name=foo", body) - req.Header.Set("x-user-id", "test") - req.Header.Set("x-request-id", base.ID()) - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCustomerRoutes(log.NewNopLogger(), router, customerSearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } - - var watch customerWatchResponse - if err := json.NewDecoder(w.Body).Decode(&watch); err != nil { - t.Fatal(err) - } - if watch.WatchID == "" { - t.Error("empty watch.WatchID") - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCustomerRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCustomerRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCustomer_addCustomerNameWatchNoBody(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCustomerRepository) { - w := httptest.NewRecorder() - req := httptest.NewRequest("POST", "/ofac/customers/watch?name=foo", nil) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCustomerRoutes(log.NewNopLogger(), router, customerSearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("bogus status code: %d", w.Code) - } - - // reset - w = httptest.NewRecorder() - if w.Code != http.StatusOK { - t.Errorf("bad state reset: %d", w.Code) - } - - req = httptest.NewRequest("POST", "/ofac/customers/watch", nil) - req.Header.Set("x-user-id", "test") - - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("bogus status code: %d", w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCustomerRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCustomerRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCustomer_updateUnsafe(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCustomerRepository) { - w := httptest.NewRecorder() - body := strings.NewReader(`{"status": "unsafe"}`) - req := httptest.NewRequest("PUT", "/ofac/customers/foo", body) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCustomerRoutes(log.NewNopLogger(), router, customerSearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCustomerRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCustomerRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCustomer_updateException(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCustomerRepository) { - w := httptest.NewRecorder() - body := strings.NewReader(`{"status": "exception"}`) - req := httptest.NewRequest("PUT", "/ofac/customers/foo", body) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCustomerRoutes(log.NewNopLogger(), router, customerSearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCustomerRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCustomerRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCustomer_updateUnknown(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCustomerRepository) { - w := httptest.NewRecorder() - body := strings.NewReader(`{"status": "unknown"}`) // has status, but not blocked or unblocked - req := httptest.NewRequest("PUT", "/ofac/customers/foo", body) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCustomerRoutes(log.NewNopLogger(), router, customerSearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("bogus status code: %d", w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCustomerRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCustomerRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCustomer_updateNoUserId(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCustomerRepository) { - w := httptest.NewRecorder() - req := httptest.NewRequest("PUT", "/ofac/customers/foo", nil) - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCustomerRoutes(log.NewNopLogger(), router, customerSearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("expected %d but got: %d", http.StatusBadRequest, w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCustomerRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCustomerRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCustomer_updateNoBody(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCustomerRepository) { - w := httptest.NewRecorder() - req := httptest.NewRequest("PUT", "/ofac/customers/foo", nil) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCustomerRoutes(log.NewNopLogger(), router, customerSearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("expected %d but got: %d", http.StatusBadRequest, w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCustomerRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCustomerRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCustomer_removeWatch(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCustomerRepository) { - w := httptest.NewRecorder() - req := httptest.NewRequest("DELETE", "/ofac/customers/foo/watch/watch-id", nil) - req.Header.Set("x-user-id", "test") - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCustomerRoutes(log.NewNopLogger(), router, customerSearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCustomerRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCustomerRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCustomer_removeNameWatch(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCustomerRepository) { - w := httptest.NewRecorder() - req := httptest.NewRequest("DELETE", "/ofac/customers/watch/foo", nil) - req.Header.Set("x-user-id", "test") - req.Header.Set("x-request-id", base.ID()) - - watchRepo := createTestWatchRepository(t) - defer watchRepo.close() - - router := mux.NewRouter() - addCustomerRoutes(log.NewNopLogger(), router, customerSearcher, repo, watchRepo) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCustomerRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCustomerRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCustomerRepository(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteCustomerRepository) { - customerID, userID := base.ID(), base.ID() - - status, err := repo.getCustomerStatus(customerID) - if err != nil { - t.Fatal(err) - } - if status != nil { - t.Fatal("should give nil CustomerStatus") - } - - // block customer - status = &CustomerStatus{UserID: userID, Status: CustomerUnsafe, CreatedAt: time.Now()} - if err := repo.upsertCustomerStatus(customerID, status); err != nil { - t.Errorf("addCustomerBlock: shouldn't error, but got %v", err) - } - - // verify - status, err = repo.getCustomerStatus(customerID) - if err != nil { - t.Error(err) - } - if status == nil { - t.Fatal("empty CustomerStatus") - } - if status.UserID == "" || string(status.Status) == "" { - t.Errorf("invalid CustomerStatus: %#v", status) - } - if status.Status != CustomerUnsafe { - t.Errorf("status.Status=%v", status.Status) - } - - // unblock - status = &CustomerStatus{UserID: userID, Status: CustomerException, CreatedAt: time.Now()} - if err := repo.upsertCustomerStatus(customerID, status); err != nil { - t.Errorf("addCustomerBlock: shouldn't error, but got %v", err) - } - - status, err = repo.getCustomerStatus(customerID) - if err != nil { - t.Error(err) - } - if status == nil { - t.Fatal("empty CustomerStatus") - } - if status.UserID == "" || string(status.Status) == "" { - t.Errorf("invalid CustomerStatus: %#v", status) - } - if status.Status != CustomerException { - t.Errorf("status.Status=%v", status.Status) - } - - // edgae case - status, err = repo.getCustomerStatus("") - if status != nil { - t.Error("empty customerID shouldn return nil status") - } - if err == nil { - t.Error("but an error should be returned") - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteCustomerRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteCustomerRepository{mysqlDB, log.NewNopLogger()}) -} diff --git a/cmd/server/debug_sdn_test.go b/cmd/server/debug_sdn_test.go index bd1c68d..820ee14 100644 --- a/cmd/server/debug_sdn_test.go +++ b/cmd/server/debug_sdn_test.go @@ -13,10 +13,16 @@ import ( "github.com/moov-io/base" "github.com/moov-io/base/admin" "github.com/moov-io/base/log" + + "github.com/stretchr/testify/require" ) func TestDebug__SDN(t *testing.T) { - svc := admin.NewServer(":0") + svc, err := admin.New(admin.Opts{ + Addr: ":0", + }) + require.NoError(t, err) + go svc.Listen() defer svc.Shutdown() @@ -26,9 +32,7 @@ func TestDebug__SDN(t *testing.T) { req.Header.Set("x-request-id", base.ID()) resp, err := http.DefaultClient.Do(req) - if err != nil { - t.Fatal(err) - } + require.NoError(t, err) defer resp.Body.Close() if resp.StatusCode != http.StatusOK { @@ -42,14 +46,9 @@ func TestDebug__SDN(t *testing.T) { ParsedRemarksID string `json:"parsedRemarksId"` } `json:"debug"` } - if err := json.NewDecoder(resp.Body).Decode(&response); err != nil { - t.Fatal(err) - } + err = json.NewDecoder(resp.Body).Decode(&response) + require.NoError(t, err) - if response.Debug.IndexedName != "nicolas maduro moros" { - t.Errorf("debug: indexed name: %v", response.Debug.IndexedName) - } - if response.Debug.ParsedRemarksID != "5892464" { - t.Errorf("got parsed ID: %s", response.Debug.ParsedRemarksID) - } + require.Equal(t, "nicolas maduro moros", response.Debug.IndexedName) + require.Equal(t, "5892464", response.Debug.ParsedRemarksID) } diff --git a/cmd/server/download.go b/cmd/server/download.go index 002800c..40c7883 100644 --- a/cmd/server/download.go +++ b/cmd/server/download.go @@ -12,6 +12,7 @@ import ( "fmt" "net/http" "os" + "strings" "time" moovhttp "github.com/moov-io/base/http" @@ -71,6 +72,15 @@ type DownloadStats struct { ChineseMilitaryIndustrialComplex int `json:"chineseMilitaryIndustrialComplex"` NonSDNMenuBasedSanctions int `json:"nonSDNMenuBasedSanctions"` + // EU Consolidated Sanctions List + EUCSL int `json:"europeanSanctionsList"` + + // UK Consolidated Sanctions List + UKCSL int `json:"ukConsolidatedSanctionsList"` + + // UK Sanctions List + UKSanctionsList int `json:"ukSanctionsList"` + Errors []error `json:"-"` RefreshedAt time.Time `json:"timestamp"` } @@ -136,9 +146,11 @@ func (s *searcher) periodicDataRefresh(interval time.Duration, downloadRepo down "DTC": log.Int(stats.ITARDebarred), "CMIC": log.Int(stats.ChineseMilitaryIndustrialComplex), "NS_MBS": log.Int(stats.NonSDNMenuBasedSanctions), + "EU_CSL": log.Int(stats.EUCSL), + "UK_CSL": log.Int(stats.UKCSL), }).Logf("data refreshed %v ago", time.Since(stats.RefreshedAt)) } - updates <- stats // send stats for re-search and watch notifications + updates <- stats // send stats back } } } @@ -190,7 +202,7 @@ func dplRecords(logger log.Logger, initialDir string) ([]*dpl.DPL, error) { func cslRecords(logger log.Logger, initialDir string) (*csl.CSL, error) { file, err := csl.Download(logger, initialDir) if err != nil { - logger.Warn().LogErrorf("skipping CSL download: %v", err) + logger.Warn().Logf("skipping CSL download: %v", err) return &csl.CSL{}, nil } cslRecords, err := csl.ReadFile(file) @@ -200,6 +212,49 @@ func cslRecords(logger log.Logger, initialDir string) (*csl.CSL, error) { return cslRecords, err } +func euCSLRecords(logger log.Logger, initialDir string) ([]*csl.EUCSLRecord, error) { + file, err := csl.DownloadEU(logger, initialDir) + if err != nil { + logger.Warn().Logf("skipping EU CSL download: %v", err) + // no error to return because we skip the download + return nil, nil + } + cslRecords, _, err := csl.ReadEUFile(file) + if err != nil { + return nil, err + } + return cslRecords, err +} + +func ukCSLRecords(logger log.Logger, initialDir string) ([]*csl.UKCSLRecord, error) { + file, err := csl.DownloadUKCSL(logger, initialDir) + if err != nil { + logger.Warn().Logf("skipping UK CSL download: %v", err) + // no error to return because we skip the download + return nil, nil + } + cslRecords, _, err := csl.ReadUKCSLFile(file) + if err != nil { + return nil, err + } + return cslRecords, err +} + +func ukSanctionsListRecords(logger log.Logger, initialDir string) ([]*csl.UKSanctionsListRecord, error) { + file, err := csl.DownloadUKSanctionsList(logger, initialDir) + if err != nil { + logger.Warn().Logf("skipping UK Sanctions List download: %v", err) + // no error to return because we skip the download + return nil, nil + } + + records, _, err := csl.ReadUKSanctionsListFile(file) + if err != nil { + return nil, err + } + return records, err +} + // refreshData reaches out to the various websites to download the latest // files, runs each list's parser, and index data for searches. func (s *searcher) refreshData(initialDir string) (*DownloadStats, error) { @@ -234,6 +289,37 @@ func (s *searcher) refreshData(initialDir string) (*DownloadStats, error) { } dps := precomputeDPs(deniedPersons, s.pipe) + euConsolidatedList, err := euCSLRecords(s.logger, initialDir) + if err != nil { + lastDataRefreshFailure.WithLabelValues("EUCSL").Set(float64(time.Now().Unix())) + stats.Errors = append(stats.Errors, fmt.Errorf("EUCSL: %v", err)) + } + + euCSLs := precomputeCSLEntities[csl.EUCSLRecord](euConsolidatedList, s.pipe) + + ukConsolidatedList, err := ukCSLRecords(s.logger, initialDir) + if err != nil { + lastDataRefreshFailure.WithLabelValues("UKCSL").Set(float64(time.Now().Unix())) + stats.Errors = append(stats.Errors, fmt.Errorf("UKCSL: %v", err)) + } + + ukCSLs := precomputeCSLEntities[csl.UKCSLRecord](ukConsolidatedList, s.pipe) + + var ukSLs []*Result[csl.UKSanctionsListRecord] + withSanctionsList := os.Getenv("WITH_UK_SANCTIONS_LIST") + if strings.ToLower(withSanctionsList) == "true" { + ukSanctionsList, err := ukSanctionsListRecords(s.logger, initialDir) + if err != nil { + lastDataRefreshFailure.WithLabelValues("UKSanctionsList").Set(float64(time.Now().Unix())) + stats.Errors = append(stats.Errors, fmt.Errorf("UKSanctionsList: %v", err)) + } + ukSLs = precomputeCSLEntities[csl.UKSanctionsListRecord](ukSanctionsList, s.pipe) + + stats.UKSanctionsList = len(ukSLs) + lastDataRefreshCount.WithLabelValues("UKSL").Set(float64(len(ukSLs))) + } + + // csl records from US downloaded here consolidatedLists, err := cslRecords(s.logger, initialDir) if err != nil { lastDataRefreshFailure.WithLabelValues("CSL").Set(float64(time.Now().Unix())) @@ -269,6 +355,11 @@ func (s *searcher) refreshData(initialDir string) (*DownloadStats, error) { stats.ITARDebarred = len(dtcs) stats.ChineseMilitaryIndustrialComplex = len(cmics) stats.NonSDNMenuBasedSanctions = len(ns_mbss) + // EU - CSL + stats.EUCSL = len(euCSLs) + + // UK - CSL + stats.UKCSL = len(ukCSLs) // record prometheus metrics lastDataRefreshCount.WithLabelValues("SDNs").Set(float64(len(sdns))) @@ -284,6 +375,10 @@ func (s *searcher) refreshData(initialDir string) (*DownloadStats, error) { lastDataRefreshCount.WithLabelValues("DTCs").Set(float64(len(dtcs))) lastDataRefreshCount.WithLabelValues("CMICs").Set(float64(len(cmics))) lastDataRefreshCount.WithLabelValues("NS_MBSs").Set(float64(len(ns_mbss))) + // EU CSL + lastDataRefreshCount.WithLabelValues("EUCSL").Set(float64(len(euCSLs))) + // UK CSL + lastDataRefreshCount.WithLabelValues("UKCSL").Set(float64(len(ukCSLs))) if len(stats.Errors) > 0 { return stats, stats @@ -313,6 +408,11 @@ func (s *searcher) refreshData(initialDir string) (*DownloadStats, error) { s.DTCs = dtcs s.CMICs = cmics s.NS_MBSs = ns_mbss + //EUCSL + s.EUCSL = euCSLs + //UKCSL + s.UKCSL = ukCSLs + s.UKSanctionsList = ukSLs // metadata s.lastRefreshedAt = stats.RefreshedAt s.Unlock() diff --git a/cmd/server/download_handler.go b/cmd/server/download_handler.go index 61cb683..59c3c18 100644 --- a/cmd/server/download_handler.go +++ b/cmd/server/download_handler.go @@ -36,15 +36,25 @@ func manualRefreshHandler(logger log.Logger, searcher *searcher, updates chan *D }() logger.Info().With(log.Fields{ - "SDNs": log.Int(stats.SDNs), - "AltNames": log.Int(stats.Alts), - "Addresses": log.Int(stats.Addresses), - "SSI": log.Int(stats.SectoralSanctions), - "DPL": log.Int(stats.DeniedPersons), - "BISEntities": log.Int(stats.BISEntities), + "SDNs": log.Int(stats.SDNs), + "AltNames": log.Int(stats.Alts), + "Addresses": log.Int(stats.Addresses), + "SSI": log.Int(stats.SectoralSanctions), + "DPL": log.Int(stats.DeniedPersons), + "BISEntities": log.Int(stats.BISEntities), + "UVL": log.Int(stats.Unverified), + "ISN": log.Int(stats.NonProliferationSanctions), + "FSE": log.Int(stats.ForeignSanctionsEvaders), + "PLC": log.Int(stats.PalestinianLegislativeCouncil), + "CAP": log.Int(stats.CAPTA), + "DTC": log.Int(stats.ITARDebarred), + "CMIC": log.Int(stats.ChineseMilitaryIndustrialComplex), + "NS_MBS": log.Int(stats.NonSDNMenuBasedSanctions), + "EUCSL": log.Int(stats.EUCSL), + "UKCSL": log.Int(stats.UKCSL), + "UKSanctionsList": log.Int(stats.UKSanctionsList), }).Logf("admin: finished data refresh %v ago", time.Since(stats.RefreshedAt)) - w.WriteHeader(http.StatusOK) json.NewEncoder(w).Encode(stats) } } diff --git a/cmd/server/download_handler_test.go b/cmd/server/download_handler_test.go index af07eaf..32ee67a 100644 --- a/cmd/server/download_handler_test.go +++ b/cmd/server/download_handler_test.go @@ -16,10 +16,10 @@ import ( ) func TestDownload__manualRefreshPath(t *testing.T) { - t.Parallel() if testing.Short() { return } + t.Setenv("WITH_UK_SANCTIONS_LIST", "false") check := func(t *testing.T, repo *sqliteDownloadRepository) { searcher := newSearcher(log.NewNopLogger(), noLogPipeliner, 1) diff --git a/cmd/server/download_webhook.go b/cmd/server/download_webhook.go index 86f4d24..39bb965 100644 --- a/cmd/server/download_webhook.go +++ b/cmd/server/download_webhook.go @@ -7,18 +7,19 @@ package main import ( "bytes" "encoding/json" + "fmt" "os" "strings" "github.com/moov-io/base/log" ) -func callDownloadWebook(logger log.Logger, stats *DownloadStats) { +func callDownloadWebook(logger log.Logger, stats *DownloadStats) error { webhookURL := strings.TrimSpace(os.Getenv("DOWNLOAD_WEBHOOK_URL")) webhookAuthToken := strings.TrimSpace(os.Getenv("DOWNLOAD_WEBHOOK_AUTH_TOKEN")) if webhookURL == "" { - return + return nil } logger.Info().Log("sending stats to download webhook url") @@ -27,8 +28,10 @@ func callDownloadWebook(logger log.Logger, stats *DownloadStats) { statusCode, err := callWebhook(&body, webhookURL, webhookAuthToken) if err != nil { - logger.Error().LogErrorf("calling download webhook: %v", err) + err = fmt.Errorf("problem calling download webhook: %w", err) + return logger.Error().LogError(err).Err() } else { logger.Info().Logf("http status code %d from download webhook", statusCode) } + return nil } diff --git a/cmd/server/issue115_test.go b/cmd/server/issue115_test.go index e3601c4..fb53e15 100644 --- a/cmd/server/issue115_test.go +++ b/cmd/server/issue115_test.go @@ -16,7 +16,7 @@ func TestIssue115__TopSDNs(t *testing.T) { eql(t, "george bush jaroWinkler", score, 0.896) score = jaroWinkler("g", "geoergebush") - eql(t, "g vs geoergebush", score, 0.697) + eql(t, "g vs geoergebush", score, 0.070) pipe := noLogPipeliner s := newSearcher(log.NewNopLogger(), pipe, 1) @@ -29,13 +29,13 @@ func TestIssue115__TopSDNs(t *testing.T) { s.SDNs = precomputeSDNs([]*ofac.SDN{{EntityID: "2680", SDNName: "HABBASH, George", SDNType: "INDIVIDUAL"}}, nil, pipe) out := s.TopSDNs(1, 0.00, "george bush", keeper) - eql(t, "issue115: top SDN 2680", out[0].match, 0.732) + eql(t, "issue115: top SDN 2680", out[0].match, 0.687) // was 88.3% match s.SDNs = precomputeSDNs([]*ofac.SDN{{EntityID: "9432", SDNName: "CHIWESHE, George", SDNType: "INDIVIDUAL"}}, nil, pipe) out = s.TopSDNs(1, 0.00, "george bush", keeper) - eql(t, "issue115: top SDN 18996", out[0].match, 0.764) + eql(t, "issue115: top SDN 18996", out[0].match, 0.650) // another example s.SDNs = precomputeSDNs([]*ofac.SDN{{EntityID: "0", SDNName: "Bush, George W", SDNType: "INDIVIDUAL"}}, nil, pipe) @@ -47,5 +47,5 @@ func TestIssue115__TopSDNs(t *testing.T) { eql(t, "issue115: top SDN 0", out[0].match, 1.0) out = s.TopSDNs(1, 0.00, "george bush", keeper) - eql(t, "issue115: top SDN 0", out[0].match, 0.667) + eql(t, "issue115: top SDN 0", out[0].match, 0.986) } diff --git a/cmd/server/issue326_test.go b/cmd/server/issue326_test.go index d41d99a..ec3187a 100644 --- a/cmd/server/issue326_test.go +++ b/cmd/server/issue326_test.go @@ -16,17 +16,17 @@ func TestIssue326(t *testing.T) { // Cuba score := jaroWinkler(precompute("Huawei Cuba"), precompute("Huawei")) - assert.Equal(t, score, 0.8055555555555556) + assert.Equal(t, 0.7444444444444445, score) // India score = jaroWinkler(india, precompute("Huawei")) - assert.Equal(t, score, 0.5592063492063492) + assert.Equal(t, 0.4846031746031746, score) score = jaroWinkler(india, precompute("Huawei Technologies")) - assert.Equal(t, score, 0.6903174603174603) + assert.Equal(t, 0.6084415584415584, score) // Investment score = jaroWinkler(investment, precompute("Huawei")) - assert.Equal(t, score, 0.3788888888888889) + assert.Equal(t, 0.3788888888888889, score) score = jaroWinkler(investment, precompute("Huawei Technologies")) - assert.Equal(t, score, 0.7377777777777779) + assert.Equal(t, 0.5419191919191919, score) } diff --git a/cmd/server/largest.go b/cmd/server/largest.go index 204f04d..627a9e9 100644 --- a/cmd/server/largest.go +++ b/cmd/server/largest.go @@ -8,8 +8,9 @@ import "sync" // item represents an arbitrary value with an associated weight type item struct { - value interface{} - weight float64 + matched string + value interface{} + weight float64 } // newLargest returns a `largest` instance which can be used to track items with the highest weights diff --git a/cmd/server/largest_test.go b/cmd/server/largest_test.go index 3142cb4..f9c1aac 100644 --- a/cmd/server/largest_test.go +++ b/cmd/server/largest_test.go @@ -8,15 +8,10 @@ import ( "math" "math/rand" "testing" - "time" "github.com/stretchr/testify/require" ) -func init() { - rand.Seed(time.Now().Unix()) -} - func randomWeight() float64 { //nolint:gosec return float64(rand.Intn(1000)) @@ -44,7 +39,9 @@ func TestLargest(t *testing.T) { if i+1 > len(xs.items)-1 { continue // don't hit index out of bounds } - + if xs.items[i].weight < 0.0001 { + t.Fatalf("weight of %.2f is too low", xs.items[i].weight) + } if xs.items[i].weight < xs.items[i+1].weight { t.Errorf("xs.items[%d].weight=%.2f < xs.items[%d].weight=%.2f", i, xs.items[i].weight, i+1, xs.items[i+1].weight) } diff --git a/cmd/server/main.go b/cmd/server/main.go index 399dde2..6d8609d 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -122,7 +122,12 @@ func main() { } // Start Admin server (with Prometheus metrics) - adminServer := admin.NewServer(*adminAddr) + adminServer, err := admin.New(admin.Opts{ + Addr: *adminAddr, + }) + if err != nil { + errs <- fmt.Errorf("problem starting admin server: %v", err) + } adminServer.AddVersionHandler(watchman.Version) // Setup 'GET /version' go func() { logger.Logf("listening on %s", adminServer.BindAddr()) @@ -159,50 +164,38 @@ func main() { os.Exit(1) } logger.Info().With(log.Fields{ - "SDNs": log.Int(stats.SDNs), - "AltNames": log.Int(stats.Alts), - "Addresses": log.Int(stats.Addresses), - "SSI": log.Int(stats.SectoralSanctions), - "DPL": log.Int(stats.DeniedPersons), - "BISEntities": log.Int(stats.BISEntities), - "UVL": log.Int(stats.Unverified), - "ISN": log.Int(stats.NonProliferationSanctions), - "FSE": log.Int(stats.ForeignSanctionsEvaders), - "PLC": log.Int(stats.PalestinianLegislativeCouncil), - "CAP": log.Int(stats.CAPTA), - "DTC": log.Int(stats.ITARDebarred), - "CMIC": log.Int(stats.ChineseMilitaryIndustrialComplex), - "NS_MBS": log.Int(stats.NonSDNMenuBasedSanctions), + "SDNs": log.Int(stats.SDNs), + "AltNames": log.Int(stats.Alts), + "Addresses": log.Int(stats.Addresses), + "SSI": log.Int(stats.SectoralSanctions), + "DPL": log.Int(stats.DeniedPersons), + "BISEntities": log.Int(stats.BISEntities), + "UVL": log.Int(stats.Unverified), + "ISN": log.Int(stats.NonProliferationSanctions), + "FSE": log.Int(stats.ForeignSanctionsEvaders), + "PLC": log.Int(stats.PalestinianLegislativeCouncil), + "CAP": log.Int(stats.CAPTA), + "DTC": log.Int(stats.ITARDebarred), + "CMIC": log.Int(stats.ChineseMilitaryIndustrialComplex), + "NS_MBS": log.Int(stats.NonSDNMenuBasedSanctions), + "EU_CSL": log.Int(stats.EUCSL), + "UK_CSL": log.Int(stats.UKCSL), + "UK_SanctionsList": log.Int(stats.UKSanctionsList), }).Logf("data refreshed %v ago", time.Since(stats.RefreshedAt)) } - // Setup Watch and Webhook database wrapper - watchRepo := &sqliteWatchRepository{db, logger} - defer watchRepo.close() - webhookRepo := &sqliteWebhookRepository{db} - defer webhookRepo.close() - - // Setup company / customer repositories - companyRepo := &sqliteCompanyRepository{db, logger} - defer companyRepo.close() - custRepo := &sqliteCustomerRepository{db, logger} - defer custRepo.close() - // Setup periodic download and re-search updates := make(chan *DownloadStats) dataRefreshInterval = getDataRefreshInterval(logger, os.Getenv("DATA_REFRESH_INTERVAL")) go searcher.periodicDataRefresh(dataRefreshInterval, downloadRepo, updates) go handleDownloadStats(updates, func(stats *DownloadStats) { callDownloadWebook(logger, stats) - searcher.spawnResearching(logger, companyRepo, custRepo, watchRepo, webhookRepo) }) // Add manual data refresh endpoint adminServer.AddHandler(manualRefreshPath, manualRefreshHandler(logger, searcher, updates, downloadRepo)) // Add searcher for HTTP routes - addCompanyRoutes(logger, router, searcher, companyRepo, watchRepo) - addCustomerRoutes(logger, router, searcher, custRepo, watchRepo) addSDNRoutes(logger, router, searcher) addSearchRoutes(logger, router, searcher) addDownloadRoutes(logger, router, downloadRepo) diff --git a/cmd/server/new_algorithm_test.go b/cmd/server/new_algorithm_test.go new file mode 100644 index 0000000..3006722 --- /dev/null +++ b/cmd/server/new_algorithm_test.go @@ -0,0 +1,76 @@ +// Copyright 2022 The Moov Authors +// Use of this source code is governed by an Apache License +// license that can be found in the LICENSE file. + +package main + +import ( + "strings" + "testing" +) + +func TestBestPairsJaroWinkler__FalsePositives(t *testing.T) { + // Words in the query should be matched against at most one indexed word. Doubled names on the sanctioned list can + // skew results + // 1. SDN Entity 40273, VLADIMIROV, Vladimir Vladimirovich + oldScore, newScore := compareAlgorithms("vladimirov vladimir vladimirovich", "vladimir levenshtein") + eql(t, "Score is too high", oldScore, 0.961) + eql(t, "New score is better", newScore, 0.603) + + // 2. SDN Entity 7788 "SHAQIRI, Shaqir" + oldScore, newScore = compareAlgorithms("shaqiri shaqir", "zaid shakir") + eql(t, "Score is too high", oldScore, 0.908) + eql(t, "New score is better", newScore, 0.704) + + // Single-word sanctioned names shouldn't match any query with that name part + // 1. SDN Entity 15050 "HADI" + oldScore, newScore = compareAlgorithms("hadi", "hadi alwai") + eql(t, "Score is too high", oldScore, 0.900) + eql(t, "New score is better", newScore, 0.615) + + // Name-part scores should be weighted by the character length. If not, small words can have unfair weight + // 1. SDN Entity "LI, Shangfu" + oldScore, newScore = compareAlgorithms("li shangfu", "li shanlan") + eql(t, "Score is too high", oldScore, 0.914) + eql(t, "New score is better", newScore, 0.867) + + // Words with different lengths shouldn't match very highly + oldScore, newScore = compareAlgorithms("browningweight", "brown") + eql(t, "Score is too high", oldScore, 0.871) + eql(t, "New score is better", newScore, 0.703) + + // Words that start with different letters shouldn't match very highly + oldScore, newScore = compareAlgorithms("dominguez", "jimenez") + eql(t, "Score is too high", oldScore, 0.690) + eql(t, "New score is better", newScore, 0.580) +} + +func TestBestPairsJaroWinkler__TruePositives(t *testing.T) { + // Unmatched indexed words had a large weight, causing false negatives for missing "middle names" + // 1. Saddam Hussein + oldScore, newScore := compareAlgorithms("saddam hussein al tikriti", "saddam hussien") + eql(t, "Score is too low", oldScore, 0.656) + eql(t, "New score is better", newScore, 0.924) + + // 2. SDN Entity 7574 "VALENCIA TRUJILLO, Joaquin Mario" + oldScore, newScore = compareAlgorithms("valencia trujillo joaquin mario", "valencia trujillo joaquin") + eql(t, "Score is too low", oldScore, 0.868) + eql(t, "New score is better", newScore, 0.973) + + // 3. SDN Entity 9760 "LUKASHENKO, Alexander Grigoryevich" + oldScore, newScore = compareAlgorithms("lukashenko alexander grigoryevich", "alexander lukashenko") + eql(t, "Score is too low", oldScore, 0.765) + eql(t, "New score is better", newScore, 0.942) + + // Small words had too much weight, causing false negatives + // 1. SDN Entity 4691 "A.I.C. SOGO KENKYUSHO" + oldScore, newScore = compareAlgorithms("a i c sogo kenkyusho", "sogo kenkyusho") + eql(t, "Score is too low", oldScore, 0.400) + eql(t, "New score is better", newScore, 0.972) +} + +func compareAlgorithms(indexedName string, query string) (float64, float64) { + oldScore := jaroWinkler(indexedName, query) + newScore := bestPairsJaroWinkler(strings.Fields(query), indexedName) + return oldScore, newScore +} diff --git a/cmd/server/pipeline.go b/cmd/server/pipeline.go index b443b0b..8cf80d8 100644 --- a/cmd/server/pipeline.go +++ b/cmd/server/pipeline.go @@ -36,6 +36,12 @@ type Name struct { cmic *csl.CMIC ns_mbs *csl.NS_MBS + eu_csl *csl.EUCSLRecord + + uk_csl *csl.UKCSLRecord + + uk_sanctionsList *csl.UKSanctionsListRecord + dp *dpl.DPL el *csl.EL addrs []*ofac.Address @@ -142,6 +148,41 @@ func cslName(item interface{}) *Name { ns_mbs: v, altNames: v.AlternateNames, } + case *csl.EUCSLRecord: + if len(v.NameAliasWholeNames) >= 1 { + var alts []string + alts = append(alts, v.NameAliasWholeNames...) + return &Name{ + Original: v.NameAliasWholeNames[0], + Processed: v.NameAliasWholeNames[0], + eu_csl: v, + altNames: alts, + } + } + case *csl.UKCSLRecord: + if len(v.Names) >= 1 { + var alts []string + alts = append(alts, v.Names...) + return &Name{ + Original: v.Names[0], + Processed: v.Names[0], + uk_csl: v, + altNames: alts, + } + } + case *csl.UKSanctionsListRecord: + if len(v.Names) >= 1 { + var alts []string + alts = append(alts, v.Names...) + return &Name{ + Original: v.Names[0], + Processed: v.Names[0], + uk_sanctionsList: v, + altNames: alts, + } + } + + return &Name{} } return &Name{} } diff --git a/cmd/server/pipeline_company_name_cleanup_test.go b/cmd/server/pipeline_company_name_cleanup_test.go index 20d08be..f8ed9d1 100644 --- a/cmd/server/pipeline_company_name_cleanup_test.go +++ b/cmd/server/pipeline_company_name_cleanup_test.go @@ -51,6 +51,10 @@ func TestRemoveCompanyTitles(t *testing.T) { {"MC OVERSEAS TRADING COMPANY SA DE CV", "MC OVERSEAS TRADING COMPANY"}, // SDN 10252 {"SIRJANCO TRADING L.L.C.", "SIRJANCO TRADING"}, // SDN 15985 + // Issue 483 + {"11420 CORP.", "11420 CORP."}, + {"11,420.2-1 CORP.", "11,420.2-1 CORP."}, + // Controls {"TADBIR ECONOMIC DEVELOPMENT GROUP", "TADBIR ECONOMIC DEVELOPMENT GROUP"}, // SDN 16006 {"DI LAURO, Marco", "DI LAURO, Marco"}, // SDN 16128 diff --git a/cmd/server/pipeline_normalize.go b/cmd/server/pipeline_normalize.go index 8fd3130..cade7ee 100644 --- a/cmd/server/pipeline_normalize.go +++ b/cmd/server/pipeline_normalize.go @@ -17,8 +17,7 @@ var ( punctuationReplacer = strings.NewReplacer(".", "", ",", "", "-", " ", " ", " ") ) -type normalizeStep struct { -} +type normalizeStep struct{} func (s *normalizeStep) apply(in *Name) error { in.Processed = precompute(in.Processed) diff --git a/cmd/server/pipeline_normalize_test.go b/cmd/server/pipeline_normalize_test.go index b57fb67..27767ce 100644 --- a/cmd/server/pipeline_normalize_test.go +++ b/cmd/server/pipeline_normalize_test.go @@ -31,6 +31,9 @@ func TestPrecompute(t *testing.T) { {"convert IAcute", "Delcy Rodríguez", "delcy rodriguez"}, {"issue 58", "Raúl Castro", "raul castro"}, {"remove hyphen", "ANGLO-CARIBBEAN ", "anglo caribbean"}, + // Issue 483 + {"issue 483 #1", "11420 CORP.", "11420 corp"}, + {"issue 483 #2", "11,420.2-1 CORP.", "114202 1 corp"}, } for i, tc := range tests { guess := precompute(tc.input) diff --git a/cmd/server/pipeline_reorder_test.go b/cmd/server/pipeline_reorder_test.go index 67cc29e..5d1e670 100644 --- a/cmd/server/pipeline_reorder_test.go +++ b/cmd/server/pipeline_reorder_test.go @@ -49,4 +49,19 @@ func TestReorderSDNName(t *testing.T) { t.Errorf("reorderSDNName(%q)=%q expected %q", cases[i].input, guess, cases[i].expected) } } + + // Entities + cases = []struct { + input, expected string + }{ + // Issue 483 + {"11420 CORP.", "11420 CORP."}, + {"11,420.2-1 CORP.", "11,420.2-1 CORP."}, + } + for i := range cases { + guess := reorderSDNName(cases[i].input, "") // blank refers to a company + if guess != cases[i].expected { + t.Errorf("reorderSDNName(%q)=%q expected %q", cases[i].input, guess, cases[i].expected) + } + } } diff --git a/cmd/server/pipeline_stopwords.go b/cmd/server/pipeline_stopwords.go index 62f12d4..68da6e4 100644 --- a/cmd/server/pipeline_stopwords.go +++ b/cmd/server/pipeline_stopwords.go @@ -6,6 +6,7 @@ package main import ( "os" + "regexp" "strconv" "strings" @@ -48,11 +49,29 @@ func (s *stopwordsStep) apply(in *Name) error { return nil } +var ( + numberRegex = regexp.MustCompile(`([\d\.\,\-]{1,}[\d]{1,})`) +) + func removeStopwords(in string, lang whatlanggo.Lang) string { if keepStopwords { return in } - return strings.TrimSpace(stopwords.CleanString(strings.ToLower(in), lang.Iso6391(), false)) + + var out []string + words := strings.Fields(strings.ToLower(in)) + for i := range words { + cleaned := strings.TrimSpace(words[i]) + + // When the word is a number leave it alone + if !numberRegex.MatchString(cleaned) { + cleaned = strings.TrimSpace(stopwords.CleanString(cleaned, lang.Iso6391(), false)) + } + if cleaned != "" { + out = append(out, cleaned) + } + } + return strings.Join(out, " ") } // detectLanguage will return a guess as to the appropriate language a given SDN's name diff --git a/cmd/server/pipeline_stopwords_test.go b/cmd/server/pipeline_stopwords_test.go index dbfbf7a..afb5015 100644 --- a/cmd/server/pipeline_stopwords_test.go +++ b/cmd/server/pipeline_stopwords_test.go @@ -72,7 +72,7 @@ func TestStopwords__clean(t *testing.T) { for i := range cases { result := removeStopwords(cases[i].in, cases[i].lang) if result != cases[i].expected { - t.Errorf("\n#%d in=%q lang=%v\ngot=%q", i, cases[i].in, cases[i].lang, result) + t.Errorf("\n#%d in=%q lang=%v\n got=%q\n exp=%q", i, cases[i].in, cases[i].lang, result, cases[i].expected) } } } @@ -113,6 +113,21 @@ func TestStopwords__apply(t *testing.T) { in: &Name{Processed: "Trees and Trucks", ssi: &csl.SSI{Type: "business"}}, expected: "trees trucks", }, + { + testName: "Issue 483 #1", + in: &Name{Processed: "11420 CORP.", sdn: &ofac.SDN{SDNType: "business"}}, + expected: "11420 corp", + }, + { + testName: "Issue 483 #2", + in: &Name{Processed: "11,420.2-1 CORP.", sdn: &ofac.SDN{SDNType: "business"}}, + expected: "11,420.2-1 corp", + }, + { + testName: "Issue 483 #3", + in: &Name{Processed: "11AA420 CORP.", sdn: &ofac.SDN{SDNType: "business"}}, + expected: "11aa420 corp", + }, } for _, test := range cases { diff --git a/cmd/server/pipeline_test.go b/cmd/server/pipeline_test.go index fce0f08..880540a 100644 --- a/cmd/server/pipeline_test.go +++ b/cmd/server/pipeline_test.go @@ -64,6 +64,11 @@ func TestFullPipeline(t *testing.T) { {company("MKS INTERNATIONAL CO. LTD."), "mks international"}, // SDN 21553 {company("SHANGHAI NORTH TRANSWAY INTERNATIONAL TRADING CO."), "shanghai north transway international trading"}, // SDN 22246 + // Keep numbers + {company("11420 CORP."), "11420 corp"}, + {company("11AA420 CORP."), "11aa420 corp"}, + {company("11,420.2-1 CORP."), "114202 1 corp"}, + // Remove stopwords {company("INVERSIONES LA QUINTA Y CIA. LTDA."), "inversiones la quinta y cia"}, diff --git a/cmd/server/search.go b/cmd/server/search.go index 2ab5423..aa73c12 100644 --- a/cmd/server/search.go +++ b/cmd/server/search.go @@ -43,6 +43,8 @@ type searcher struct { // BIS DPs []*DP + // TODO: this could be refactored into sub structs that have us/eu (and eventually others) + // US Consolidated Screening List BISEntities []*Result[csl.EL] MilitaryEndUsers []*Result[csl.MEU] @@ -56,6 +58,15 @@ type searcher struct { CMICs []*Result[csl.CMIC] NS_MBSs []*Result[csl.NS_MBS] + // EU Consolidated List of Sactions + EUCSL []*Result[csl.EUCSLRecord] + + // UK Consolidated List of Sactions - OFSI + UKCSL []*Result[csl.UKCSLRecord] + + // UK Sanctions List + UKSanctionsList []*Result[csl.UKSanctionsListRecord] + // metadata lastRefreshedAt time.Time sync.RWMutex // protects all above fields @@ -237,6 +248,7 @@ func (s *searcher) FindAlts(limit int, id string) []*ofac.AlternateIdentity { func (s *searcher) TopAltNames(limit int, minMatch float64, alt string) []Alt { alt = precompute(alt) + altTokens := strings.Fields(alt) s.RLock() defer s.RUnlock() @@ -255,8 +267,9 @@ func (s *searcher) TopAltNames(limit int, minMatch float64, alt string) []Alt { defer wg.Done() defer s.Gate.Done() xs.add(&item{ - value: s.Alts[i], - weight: jaroWinkler(s.Alts[i].name, alt), + matched: s.Alts[i].name, + value: s.Alts[i], + weight: bestPairsJaroWinkler(altTokens, s.Alts[i].name), }) }(i) } @@ -271,12 +284,121 @@ func (s *searcher) TopAltNames(limit int, minMatch float64, alt string) []Alt { } alt := *aa alt.match = v.weight + alt.matchedName = v.matched out = append(out, alt) } } return out } +// bestPairsJaroWinkler compares a search query to an indexed term (name, address, etc) and returns a decimal fraction +// score. +// +// The algorithm splits each string into tokens, and does a pairwise Jaro-Winkler score of all token combinations +// (outer product). The best match for each search token is chosen, such that each index token can be matched at most +// once. +// +// The pairwise scores are combined into an average in a way that corrects for character length, and the fraction of the +// indexed term that didn't match. +func bestPairsJaroWinkler(searchTokens []string, indexed string) float64 { + type Score struct { + score float64 + searchTokenIdx int + indexTokenIdx int + } + + indexedTokens := strings.Fields(indexed) + searchTokensLength := sumLength(searchTokens) + indexTokensLength := sumLength(indexedTokens) + + //Compare each search token to each indexed token. Sort the results in descending order + scores := make([]Score, 0) + for searchIdx, searchToken := range searchTokens { + for indexIdx, indexedToken := range indexedTokens { + score := customJaroWinkler(indexedToken, searchToken) + scores = append(scores, Score{score, searchIdx, indexIdx}) + } + } + sort.Slice(scores[:], func(i, j int) bool { + return scores[i].score > scores[j].score + }) + + //Pick the highest score for each search term, where the indexed token hasn't yet been matched + matchedSearchTokens := make([]bool, len(searchTokens)) + matchedIndexTokens := make([]bool, len(indexedTokens)) + matchedIndexTokensLength := 0 + totalWeightedScores := 0.0 + for _, score := range scores { + //If neither the search token nor index token have been matched so far + if !matchedSearchTokens[score.searchTokenIdx] && !matchedIndexTokens[score.indexTokenIdx] { + //Weight the importance of this word score by its character length + searchToken := searchTokens[score.searchTokenIdx] + indexToken := indexedTokens[score.indexTokenIdx] + totalWeightedScores += score.score * float64(len(searchToken)+len(indexToken)) + + matchedSearchTokens[score.searchTokenIdx] = true + matchedIndexTokens[score.indexTokenIdx] = true + matchedIndexTokensLength += len(indexToken) + } + } + lengthWeightedAverageScore := totalWeightedScores / float64(searchTokensLength+matchedIndexTokensLength) + + //If some index tokens weren't matched by any search token, penalise this search a small amount. If this isn't done, + //a query of "John Doe" will match "John Doe" and "John Bartholomew Doe" equally well. + //Calculate the fraction of the index name that wasn't matched, apply a weighting to reduce the importance of + //unmatched portion, then scale down the final score. + matchedIndexLength := 0 + for i, str := range indexedTokens { + if matchedIndexTokens[i] { + matchedIndexLength += len(str) + } + } + matchedFraction := float64(matchedIndexLength) / float64(indexTokensLength) + return lengthWeightedAverageScore * scalingFactor(matchedFraction, unmatchedIndexPenaltyWeight) +} + +func customJaroWinkler(s1 string, s2 string) float64 { + score := smetrics.JaroWinkler(s1, s2, boostThreshold, prefixSize) + + if lengthMetric := lengthDifferenceFactor(s1, s2); lengthMetric < lengthDifferenceCutoffFactor { + //If there's a big difference in matched token lengths, punish the score. Jaro-Winkler is quite permissive about + //different lengths + score = score * scalingFactor(lengthMetric, lengthDifferencePenaltyWeight) + } + if s1[0] != s2[0] { + //Penalise words that start with a different characters. Jaro-Winkler is too lenient on this + //TODO should use a phonetic comparison here, like Soundex + score = score * differentLetterPenaltyWeight + } + return score +} + +// scalingFactor returns a float [0,1] that can be used to scale another number down, given some metric and a desired +// weight +// e.g. If a score has a 50% value according to a metric, and we want a 10% weight to the metric: +// +// scaleFactor := scalingFactor(0.5, 0.1) // 0.95 +// scaledScore := score * scaleFactor +func scalingFactor(metric float64, weight float64) float64 { + return 1.0 - (1.0-metric)*weight +} + +func sumLength(strs []string) int { + totalLength := 0 + for _, str := range strs { + totalLength += len(str) + } + return totalLength +} + +func lengthDifferenceFactor(s1 string, s2 string) float64 { + ls1 := float64(len(s1)) + ls2 := float64(len(s2)) + min := math.Min(ls1, ls2) + max := math.Max(ls1, ls2) + return min / max +} + func (s *searcher) FindSDN(entityID string) *ofac.SDN { if sdn := s.debugSDN(entityID); sdn != nil { return sdn.SDN @@ -352,6 +474,7 @@ func (s *searcher) FindSDNsByRemarksID(limit int, id string) []*SDN { func (s *searcher) TopSDNs(limit int, minMatch float64, name string, keepSDN func(*SDN) bool) []*SDN { name = precompute(name) + nameTokens := strings.Fields(name) s.RLock() defer s.RUnlock() @@ -374,8 +497,9 @@ func (s *searcher) TopSDNs(limit int, minMatch float64, name string, keepSDN fun defer wg.Done() defer s.Gate.Done() xs.add(&item{ - value: s.SDNs[i], - weight: jaroWinkler(s.SDNs[i].name, name), + matched: s.SDNs[i].name, + value: s.SDNs[i], + weight: bestPairsJaroWinkler(nameTokens, s.SDNs[i].name), }) }(i) } @@ -390,6 +514,7 @@ func (s *searcher) TopSDNs(limit int, minMatch float64, name string, keepSDN fun } sdn := *ss // deref for a copy sdn.match = v.weight + sdn.matchedName = v.matched out = append(out, &sdn) } } @@ -398,6 +523,7 @@ func (s *searcher) TopSDNs(limit int, minMatch float64, name string, keepSDN fun func (s *searcher) TopDPs(limit int, minMatch float64, name string) []DP { name = precompute(name) + nameTokens := strings.Fields(name) s.RLock() defer s.RUnlock() @@ -416,8 +542,9 @@ func (s *searcher) TopDPs(limit int, minMatch float64, name string) []DP { defer wg.Done() defer s.Gate.Done() xs.add(&item{ - value: s.DPs[i], - weight: jaroWinkler(s.DPs[i].name, name), + matched: s.DPs[i].name, + value: s.DPs[i], + weight: bestPairsJaroWinkler(nameTokens, s.DPs[i].name), }) }(i) } @@ -432,6 +559,7 @@ func (s *searcher) TopDPs(limit int, minMatch float64, name string) []DP { } dp := *ss dp.match = v.weight + dp.matchedName = v.matched out = append(out, dp) } } @@ -445,6 +573,9 @@ type SDN struct { // match holds the match ratio for an SDN in search results match float64 + // matchedName holds the highest scoring term from the search query + matchedName string + // name is precomputed for speed name string @@ -460,10 +591,12 @@ type SDN struct { func (s SDN) MarshalJSON() ([]byte, error) { return json.Marshal(struct { *ofac.SDN - Match float64 `json:"match"` + Match float64 `json:"match"` + MatchedName string `json:"matchedName"` }{ s.SDN, s.match, + s.matchedName, }) } @@ -534,7 +667,11 @@ func precomputeAddresses(adds []*ofac.Address) []*Address { type Alt struct { AlternateIdentity *ofac.AlternateIdentity - match float64 // match % + // match holds the match ratio for an Alt in search results + match float64 + + // matchedName holds the highest scoring term from the search query + matchedName string // name is precomputed for speed name string @@ -544,10 +681,12 @@ type Alt struct { func (a Alt) MarshalJSON() ([]byte, error) { return json.Marshal(struct { *ofac.AlternateIdentity - Match float64 `json:"match"` + Match float64 `json:"match"` + MatchedName string `json:"matchedName"` }{ a.AlternateIdentity, a.match, + a.matchedName, }) } @@ -573,6 +712,7 @@ func precomputeAlts(alts []*ofac.AlternateIdentity, pipe *pipeliner) []*Alt { type DP struct { DeniedPerson *dpl.DPL match float64 + matchedName string name string } @@ -580,10 +720,12 @@ type DP struct { func (d DP) MarshalJSON() ([]byte, error) { return json.Marshal(struct { *dpl.DPL - Match float64 `json:"match"` + Match float64 `json:"match"` + MatchedName string `json:"matchedName"` }{ d.DeniedPerson, d.match, + d.matchedName, }) } @@ -607,16 +749,21 @@ var ( // Jaro-Winkler parameters boostThreshold = readFloat(os.Getenv("JARO_WINKLER_BOOST_THRESHOLD"), 0.7) prefixSize = readInt(os.Getenv("JARO_WINKLER_PREFIX_SIZE"), 4) + // Customised Jaro-Winkler parameters + lengthDifferenceCutoffFactor = readFloat(os.Getenv("LENGTH_DIFFERENCE_CUTOFF_FACTOR"), 0.9) + lengthDifferencePenaltyWeight = readFloat(os.Getenv("LENGTH_DIFFERENCE_PENALTY_WEIGHT"), 0.3) + differentLetterPenaltyWeight = readFloat(os.Getenv("DIFFERENT_LETTER_PENALTY_WEIGHT"), 0.9) // Watchman parameters - exactMatchFavoritism = readFloat(os.Getenv("EXACT_MATCH_FAVORITISM"), 0.0) + exactMatchFavoritism = readFloat(os.Getenv("EXACT_MATCH_FAVORITISM"), 0.0) + unmatchedIndexPenaltyWeight = readFloat(os.Getenv("UNMATCHED_INDEX_TOKEN_WEIGHT"), 0.15) ) func readFloat(override string, value float64) float64 { if override != "" { n, err := strconv.ParseFloat(override, 32) if err != nil { - panic(fmt.Errorf("unable to parse %q as float64", override)) + panic(fmt.Errorf("unable to parse %q as float64", override)) //nolint:forbidigo } return n } @@ -627,7 +774,7 @@ func readInt(override string, value int) int { if override != "" { n, err := strconv.ParseInt(override, 10, 32) if err != nil { - panic(fmt.Errorf("unable to parse %q as int", override)) + panic(fmt.Errorf("unable to parse %q as int", override)) //nolint:forbidigo } return int(n) } @@ -637,51 +784,99 @@ func readInt(override string, value int) int { // jaroWinkler runs the similarly named algorithm over the two input strings and averages their match percentages // according to the second string (assumed to be the user's query) // +// Terms are compared between a few adjacent terms and accumulate the highest near-neighbor match. +// // For more details see https://en.wikipedia.org/wiki/Jaro%E2%80%93Winkler_distance func jaroWinkler(s1, s2 string) float64 { return jaroWinklerWithFavoritism(s1, s2, exactMatchFavoritism) } -func jaroWinklerWithFavoritism(s1, s2 string, favoritism float64) float64 { - maxMatch := func(word string, parts []string) float64 { - if len(parts) == 0 { - return 0.0 +var ( + adjacentSimilarityPositions = readInt(os.Getenv("ADJACENT_SIMILARITY_POSITIONS"), 3) +) + +func jaroWinklerWithFavoritism(indexedTerm, query string, favoritism float64) float64 { + maxMatch := func(indexedWord string, indexedWordIdx int, queryWords []string) (float64, string) { + if indexedWord == "" || len(queryWords) == 0 { + return 0.0, "" } - max := smetrics.JaroWinkler(word, parts[0], boostThreshold, prefixSize) - for i := 1; i < len(parts); i++ { - if score := smetrics.JaroWinkler(word, parts[i], boostThreshold, prefixSize); score > max { - max = score + // We're only looking for the highest match close + start := indexedWordIdx - adjacentSimilarityPositions + end := indexedWordIdx + adjacentSimilarityPositions + + var max float64 + var maxTerm string + for i := start; i < end; i++ { + if i >= 0 && len(queryWords) > i { + score := smetrics.JaroWinkler(indexedWord, queryWords[i], boostThreshold, prefixSize) + if score > max { + max = score + maxTerm = queryWords[i] + } } } - return max + return max, maxTerm } - s1Parts, s2Parts := strings.Fields(s1), strings.Fields(s2) - if len(s1Parts) == 0 || len(s2Parts) == 0 { + indexedWords, queryWords := strings.Fields(indexedTerm), strings.Fields(query) + if len(indexedWords) == 0 || len(queryWords) == 0 { return 0.0 // avoid returning NaN later on } var scores []float64 - for i := range s1Parts { - max := maxMatch(s1Parts[i], s2Parts) + for i := range indexedWords { + max, term := maxMatch(indexedWords[i], i, queryWords) + //fmt.Printf("%s maxMatch %s %f\n", indexedWords[i], term, max) if max >= 1.0 { + // If the query is longer than our indexed term (and EITHER are longer than most names) + // we want to reduce the maximum weight proportionally by the term difference, which + // forces more terms to match instead of one or two dominating the weight. + if (len(queryWords) > len(indexedWords)) && (len(indexedWords) > 3 || len(queryWords) > 3) { + max *= (float64(len(indexedWords)) / float64(len(queryWords))) + goto add + } + // If the indexed term is really short cap the match at 90%. + // This sill allows names to match highly with a couple different characters. + if len(indexedWords) == 1 && len(queryWords) > 1 { + max *= 0.9 + goto add + } + // Otherwise, apply Perfect match favoritism max += favoritism + add: + scores = append(scores, max) + } else { + // If there are more terms in the user's query than what's indexed then + // adjust the max lower by the proportion of different terms. + // + // We do this to decrease the importance of a short (often common) term. + if len(queryWords) > len(indexedWords) { + scores = append(scores, max*float64(len(indexedWords))/float64(len(queryWords))) + continue + } + + // Apply an additional weight based on similarity of term lengths, + // so terms which are closer in length match higher. + s1 := float64(len(indexedWords[i])) + t := float64(len(term)) - 1 + weight := math.Min(math.Abs(s1/t), 1.0) + + scores = append(scores, max*weight) } - scores = append(scores, max) } - // average the highest N scores where N is the words in our query (s2). + // average the highest N scores where N is the words in our query (query). + // Only truncate scores if there are enough words (aka more than First/Last). sort.Float64s(scores) - if len(s1Parts) > len(s2Parts) && len(s2Parts) > 2 { - scores = scores[len(s1Parts)-len(s2Parts):] + if len(indexedWords) > len(queryWords) && len(queryWords) > 5 { + scores = scores[len(indexedWords)-len(queryWords):] } var sum float64 for i := range scores { sum += scores[i] } - return math.Min(sum/float64(len(scores)), 1.00) } diff --git a/cmd/server/search_async.go b/cmd/server/search_async.go deleted file mode 100644 index 3e9a3f6..0000000 --- a/cmd/server/search_async.go +++ /dev/null @@ -1,135 +0,0 @@ -// Copyright 2022 The Moov Authors -// Use of this source code is governed by an Apache License -// license that can be found in the LICENSE file. - -package main - -import ( - "bytes" - "encoding/json" - "fmt" - "os" - "strconv" - "strings" - "time" - - "github.com/moov-io/base/log" -) - -var ( - watchResearchBatchSize = 100 -) - -func init() { - watchResearchBatchSize = readWebhookBatchSize(os.Getenv("WEBHOOK_BATCH_SIZE")) -} - -func readWebhookBatchSize(str string) int { - if str == "" { - return watchResearchBatchSize - } - d, _ := strconv.Atoi(str) - if d > 0 { - return d - } - return watchResearchBatchSize -} - -// spawnResearching will block and select on updates for when to re-inspect all watches setup. -// Since watches are used to post list data via webhooks they are used as catalysts in other systems. -func (s *searcher) spawnResearching(logger log.Logger, companyRepo companyRepository, custRepo customerRepository, watchRepo watchRepository, webhookRepo webhookRepository) { - s.logger.Log("async: starting re-search of watches") - cursor := watchRepo.getWatchesCursor(logger, watchResearchBatchSize) - for { - watches, _ := cursor.Next() - if len(watches) == 0 { - break - } - for i := range watches { - body, err := s.renderBody(watches[i], companyRepo, custRepo) - if err != nil { - s.logger.Logf("async: watch %s: %v", watches[i].id, err) - continue - } - if body == nil { - s.logger.Logf("async: no body rendered for watchID=%s - skipping", watches[i].id) - continue - } - - // Send HTTP webhook - now := time.Now() - status, err := callWebhook(body, watches[i].webhook, watches[i].authToken) - if err != nil { - s.logger.Logf("async: problem writing watch (%s) webhook status: %v", watches[i].id, err) - } - if err := webhookRepo.recordWebhook(watches[i].id, now, status); err != nil { - s.logger.Logf("async: problem writing watch (%s) webhook status: %v", watches[i].id, err) - } - } - } - s.logger.Log("async: finished re-search of watches") -} - -func (s *searcher) renderBody(w watch, companyRepo companyRepository, custRepo customerRepository) (*bytes.Buffer, error) { - keeper := keepSDN(filterRequest{}) - - // Perform a query (ID watches) or search (name watches) and encode the model in JSON for calling the webhook. - switch { - case w.customerID != "": - s.logger.Logf("async: watch %s for customer %s found", w.id, w.customerID) - return getCustomerBody(s, w.id, w.customerID, 1.0, custRepo) - - case w.customerName != "": - s.logger.Logf("async: name watch '%s' for customer %s found", w.customerName, w.id) - sdns := s.TopSDNs(5, 0.00, w.customerName, keeper) - for j := range sdns { - if strings.EqualFold(sdns[j].SDNType, "individual") { - return getCustomerBody(s, w.id, sdns[j].EntityID, sdns[j].match, custRepo) - } - } - - case w.companyID != "": - s.logger.Logf("async: watch %s for company %s found", w.id, w.companyID) - return getCompanyBody(s, w.id, w.companyID, 1.0, companyRepo) - - case w.companyName != "": - s.logger.Logf("async: name watch '%s' for company %s found", w.companyName, w.id) - sdns := s.TopSDNs(5, 0.00, w.companyName, keeper) - for j := range sdns { - if !strings.EqualFold(sdns[j].SDNType, "individual") { - return getCompanyBody(s, w.id, sdns[j].EntityID, sdns[j].match, companyRepo) - } - } - } - return nil, nil -} - -// getCustomerBody returns the JSON encoded form of a given customer by their EntityID -func getCustomerBody(s *searcher, watchID string, customerID string, match float64, repo customerRepository) (*bytes.Buffer, error) { - customer, _ := getCustomerByID(customerID, s, repo) - if customer == nil { - return nil, fmt.Errorf("async: watch %s customer %v not found", watchID, customerID) - } - customer.Match = match - - var buf bytes.Buffer - if err := json.NewEncoder(&buf).Encode(customer); err != nil { - return nil, fmt.Errorf("problem creating JSON for customer watch %s: %v", watchID, err) - } - return &buf, nil -} - -// getCompanyBody returns the JSON encoded form of a given customer by their EntityID -func getCompanyBody(s *searcher, watchID string, companyID string, match float64, repo companyRepository) (*bytes.Buffer, error) { - company, _ := getCompanyByID(companyID, s, repo) - if company == nil { - return nil, fmt.Errorf("async: watch %s company %v not found", watchID, companyID) - } - company.Match = match - - var buf bytes.Buffer - if err := json.NewEncoder(&buf).Encode(company); err != nil { - return nil, fmt.Errorf("problem creating JSON for company watch %s: %v", watchID, err) - } - return &buf, nil -} diff --git a/cmd/server/search_async_test.go b/cmd/server/search_async_test.go deleted file mode 100644 index 6f163bf..0000000 --- a/cmd/server/search_async_test.go +++ /dev/null @@ -1,154 +0,0 @@ -// Copyright 2022 The Moov Authors -// Use of this source code is governed by an Apache License -// license that can be found in the LICENSE file. - -package main - -import ( - "encoding/json" - "testing" -) - -func TestSearchAsync_batchSize(t *testing.T) { - if d := readWebhookBatchSize(""); d != watchResearchBatchSize { - t.Errorf("expected watchResearchBatchSize default, but got %d", d) - } - - if d := readWebhookBatchSize("42"); d != 42 { - t.Errorf("expected watchResearchBatchSize default, but got %d", d) - } -} - -func TestSearchAsync__renderBody(t *testing.T) { - w := watch{ - id: "12345", - customerID: "306", - customerName: "BANCO NACIONAL DE CUBA", - webhook: "https://example.com", - authToken: "secret-value", - } - - companyRepo := createTestCompanyRepository(t) - defer companyRepo.close() - customerRepo := createTestCustomerRepository(t) - defer customerRepo.close() - - body, err := customerSearcher.renderBody(w, companyRepo, customerRepo) - if err != nil { - t.Fatal(err) - } - if body == nil { - t.Fatal("nil Body") - } - - w = watch{ - id: "54321", - companyID: "21206", - companyName: "AL-HISN", - webhook: "https://moov.io", - authToken: "hidden", - } - body, err = companySearcher.renderBody(w, companyRepo, customerRepo) - if err != nil { - t.Fatal(err) - } - if body == nil { - t.Fatal("nil Body") - } -} - -func TestSearchAsync__renderBodyName(t *testing.T) { - w := watch{ - id: "12345", - customerName: "BANCO NACIONAL DE CUBA", - webhook: "https://example.com", - authToken: "secret-value", - } - - companyRepo := createTestCompanyRepository(t) - defer companyRepo.close() - customerRepo := createTestCustomerRepository(t) - defer customerRepo.close() - - body, err := customerSearcher.renderBody(w, companyRepo, customerRepo) - if err != nil { - t.Fatal(err) - } - if body == nil { - t.Fatal("nil Body") - } - - w = watch{ - id: "54321", - companyName: "AL-HISN", - webhook: "https://moov.io", - authToken: "hidden", - } - body, err = companySearcher.renderBody(w, companyRepo, customerRepo) - if err != nil { - t.Fatal(err) - } - if body == nil { - t.Fatal("nil Body") - } -} - -func TestSearchAsync_getCompanyBody(t *testing.T) { - repo := createTestCompanyRepository(t) - defer repo.close() - - body, err := getCompanyBody(companySearcher, "watchID", "21206", 1.0, repo) - if err != nil { - t.Fatal(err) - } - if body == nil { - t.Error("empty body") - } - - var company Company - if err := json.NewDecoder(body).Decode(&company); err != nil { - t.Error(err) - } - if company.ID == "" { - t.Errorf("empty company: %#v", company) - } - if (1.0 - company.Match) > 0.001 { - t.Errorf("unexpected company.Match=%.2f", company.Match) - } - - // Company not found - body, err = getCompanyBody(companySearcher, "watchID", "", 0.0, repo) - if err == nil || body != nil { - t.Fatal("expected error and no body") - } -} - -func TestSearchAsync_getCustomerBody(t *testing.T) { - repo := createTestCustomerRepository(t) - defer repo.close() - - body, err := getCustomerBody(customerSearcher, "watchID", "306", 0.91, repo) - if err != nil { - t.Fatal(err) - } - if body == nil { - t.Error("empty body") - } - - var customer Customer - if err := json.NewDecoder(body).Decode(&customer); err != nil { - t.Error(err) - } - if customer.ID == "" { - t.Errorf("empty customer: %#v", customer) - } - if (0.91 - customer.Match) > 0.001 { - t.Errorf("unexpected customer.Match=%.2f", customer.Match) - } - - // Customer not found - body, err = getCustomerBody(customerSearcher, "watchID", "", 0.0, repo) - if err == nil || body != nil { - t.Fatal("expected error and no body") - } -} diff --git a/cmd/server/search_benchmark_test.go b/cmd/server/search_benchmark_test.go index e6d88e4..732597a 100644 --- a/cmd/server/search_benchmark_test.go +++ b/cmd/server/search_benchmark_test.go @@ -7,16 +7,20 @@ package main import ( "testing" - "github.com/docker/docker/pkg/namesgenerator" + "github.com/jaswdr/faker" "github.com/stretchr/testify/require" ) +var ( + fake = faker.New() +) + func BenchmarkSearch__All(b *testing.B) { searcher := createBenchmarkSearcher(b) b.ResetTimer() for i := 0; i < b.N; i++ { - buildFullSearchResponse(searcher, filterRequest{}, 10, 0.0, randomName()) + buildFullSearchResponse(searcher, filterRequest{}, 10, 0.0, fake.Person().Name()) } } @@ -25,7 +29,7 @@ func BenchmarkSearch__Addresses(b *testing.B) { b.ResetTimer() for i := 0; i < b.N; i++ { - searcher.TopAddresses(10, 0.0, randomName()) + searcher.TopAddresses(10, 0.0, fake.Person().Name()) } } @@ -34,7 +38,7 @@ func BenchmarkSearch__BISEntities(b *testing.B) { b.ResetTimer() for i := 0; i < b.N; i++ { - searcher.TopBISEntities(10, 0.0, randomName()) + searcher.TopBISEntities(10, 0.0, fake.Person().Name()) } } @@ -43,7 +47,7 @@ func BenchmarkSearch__DPs(b *testing.B) { b.ResetTimer() for i := 0; i < b.N; i++ { - searcher.TopDPs(10, 0.0, randomName()) + searcher.TopDPs(10, 0.0, fake.Person().Name()) } } @@ -53,7 +57,7 @@ func BenchmarkSearch__SDNsBasic(b *testing.B) { b.ResetTimer() for i := 0; i < b.N; i++ { - searcher.TopSDNs(10, 0.0, randomName(), keeper) + searcher.TopSDNs(10, 0.0, fake.Person().Name(), keeper) } } @@ -64,7 +68,7 @@ func BenchmarkSearch__SDNsMinMatch50(b *testing.B) { b.ResetTimer() for i := 0; i < b.N; i++ { - searcher.TopSDNs(10, minMatch, randomName(), keeper) + searcher.TopSDNs(10, minMatch, fake.Person().Name(), keeper) } } @@ -75,7 +79,7 @@ func BenchmarkSearch__SDNsMinMatch95(b *testing.B) { b.ResetTimer() for i := 0; i < b.N; i++ { - searcher.TopSDNs(10, minMatch, randomName(), keeper) + searcher.TopSDNs(10, minMatch, fake.Person().Name(), keeper) } } @@ -87,7 +91,7 @@ func BenchmarkSearch__SDNsEntity(b *testing.B) { b.ResetTimer() for i := 0; i < b.N; i++ { - searcher.TopSDNs(10, 0.0, randomName(), keeper) + searcher.TopSDNs(10, 0.0, fake.Person().Name(), keeper) } } @@ -100,7 +104,7 @@ func BenchmarkSearch__SDNsComplex(b *testing.B) { b.ResetTimer() for i := 0; i < b.N; i++ { - searcher.TopSDNs(10, minMatch, randomName(), keeper) + searcher.TopSDNs(10, minMatch, fake.Person().Name(), keeper) } } @@ -109,7 +113,7 @@ func BenchmarkSearch__SSIs(b *testing.B) { b.ResetTimer() for i := 0; i < b.N; i++ { - searcher.TopSSIs(10, 0.0, randomName()) + searcher.TopSSIs(10, 0.0, fake.Person().Name()) } } @@ -118,7 +122,7 @@ func BenchmarkSearch__CSL(b *testing.B) { b.ResetTimer() for i := 0; i < b.N; i++ { - resp := buildFullSearchResponseWith(searcher, cslGatherings, filterRequest{}, 10, 0.0, randomName()) + resp := buildFullSearchResponseWith(searcher, cslGatherings, filterRequest{}, 10, 0.0, fake.Person().Name()) b.StopTimer() require.Greater(b, len(resp.BISEntities), 1) @@ -135,7 +139,3 @@ func BenchmarkSearch__CSL(b *testing.B) { b.StartTimer() } } - -func randomName() string { - return namesgenerator.GetRandomName(0) -} diff --git a/cmd/server/search_eu_csl.go b/cmd/server/search_eu_csl.go new file mode 100644 index 0000000..eba46d9 --- /dev/null +++ b/cmd/server/search_eu_csl.go @@ -0,0 +1,49 @@ +// Copyright 2022 The Moov Authors +// Use of this source code is governed by an Apache License +// license that can be found in the LICENSE file. + +package main + +import ( + "encoding/json" + "net/http" + + moovhttp "github.com/moov-io/base/http" + "github.com/moov-io/base/log" + "github.com/moov-io/watchman/pkg/csl" +) + +// search EUCLS +func searchEUCSL(logger log.Logger, searcher *searcher) http.HandlerFunc { + return func(w http.ResponseWriter, r *http.Request) { + w = wrapResponseWriter(logger, w, r) + requestID := moovhttp.GetRequestID(r) + + limit := extractSearchLimit(r) + filters := buildFilterRequest(r.URL) + minMatch := extractSearchMinMatch(r) + + name := r.URL.Query().Get("name") + resp := buildFullSearchResponseWith(searcher, euGatherings, filters, limit, minMatch, name) + + logger.Info().With(log.Fields{ + "name": log.String(name), + "requestID": log.String(requestID), + }).Log("performing EU-CSL search") + + w.Header().Set("Content-Type", "application/json; charset=utf-8") + w.WriteHeader(http.StatusOK) + json.NewEncoder(w).Encode(resp) + } +} + +// TopEUCSL searches the EU Sanctions list by Name and Alias +func (s *searcher) TopEUCSL(limit int, minMatch float64, name string) []*Result[csl.EUCSLRecord] { + s.RLock() + defer s.RUnlock() + + s.Gate.Start() + defer s.Gate.Done() + + return topResults[csl.EUCSLRecord](limit, minMatch, name, s.EUCSL) +} diff --git a/cmd/server/search_eu_csl_test.go b/cmd/server/search_eu_csl_test.go new file mode 100644 index 0000000..7d192c2 --- /dev/null +++ b/cmd/server/search_eu_csl_test.go @@ -0,0 +1,43 @@ +// Copyright 2022 The Moov Authors +// Use of this source code is governed by an Apache License +// license that can be found in the LICENSE file. + +package main + +import ( + "encoding/json" + "net/http" + "net/http/httptest" + "testing" + + "github.com/moov-io/base/log" + "github.com/moov-io/watchman/pkg/csl" + + "github.com/gorilla/mux" + "github.com/stretchr/testify/require" +) + +func TestSearch__EU_CSL(t *testing.T) { + w := httptest.NewRecorder() + // misspelled on purpose to also check jaro winkler is picking up the right records + req := httptest.NewRequest("GET", "/search/eu-csl?name=Saddam%20Hussien", nil) + + router := mux.NewRouter() + addSearchRoutes(log.NewNopLogger(), router, eu_cslSearcher) + router.ServeHTTP(w, req) + w.Flush() + + require.Equal(t, http.StatusOK, w.Code) + require.Contains(t, w.Body.String(), `"match":0.92419`) + require.Contains(t, w.Body.String(), `"matchedName":"saddam hussein al tikriti"`) + + var wrapper struct { + EUConsolidatedSanctionsList []csl.EUCSLRecord `json:"euConsolidatedSanctionsList"` + } + err := json.NewDecoder(w.Body).Decode(&wrapper) + require.NoError(t, err) + + require.Len(t, wrapper.EUConsolidatedSanctionsList, 1) + prolif := wrapper.EUConsolidatedSanctionsList[0] + require.Equal(t, 13, prolif.EntityLogicalID) +} diff --git a/cmd/server/search_generic.go b/cmd/server/search_generic.go index a0f2af4..df977fb 100644 --- a/cmd/server/search_generic.go +++ b/cmd/server/search_generic.go @@ -6,15 +6,17 @@ package main import ( "encoding/json" - "math" "reflect" + "strings" "sync" ) type Result[T any] struct { Data T - match float64 + match float64 + matchedName string + precomputedName string precomputedAlts []string } @@ -40,6 +42,7 @@ func (e Result[T]) MarshalJSON() ([]byte, error) { } result["match"] = e.match + result["matchedName"] = e.matchedName return json.Marshal(result) } @@ -50,6 +53,8 @@ func topResults[T any](limit int, minMatch float64, name string, data []*Result[ } name = precompute(name) + nameTokens := strings.Fields(name) + xs := newLargest(limit, minMatch) var wg sync.WaitGroup @@ -60,15 +65,21 @@ func topResults[T any](limit int, minMatch float64, name string, data []*Result[ defer wg.Done() it := &item{ - value: data[i], - weight: jaroWinkler(data[i].precomputedName, name), + matched: data[i].precomputedName, + value: data[i], + weight: bestPairsJaroWinkler(nameTokens, data[i].precomputedName), } for _, alt := range data[i].precomputedAlts { if alt == "" { continue } - it.weight = math.Max(it.weight, jaroWinkler(alt, name)) + + score := bestPairsJaroWinkler(nameTokens, alt) + if score > it.weight { + it.matched = alt + it.weight = score + } } xs.add(it) @@ -86,6 +97,7 @@ func topResults[T any](limit int, minMatch float64, name string, data []*Result[ res := &Result[T]{ Data: vv.Data, match: v.weight, + matchedName: v.matched, precomputedName: vv.precomputedName, precomputedAlts: vv.precomputedAlts, } diff --git a/cmd/server/search_handlers.go b/cmd/server/search_handlers.go index 8a4f7b9..2877411 100644 --- a/cmd/server/search_handlers.go +++ b/cmd/server/search_handlers.go @@ -31,9 +31,12 @@ var ( }, []string{"type"}) ) +// TODO: modify existing search endpoint with additional eu info and add an eu only endpoint func addSearchRoutes(logger log.Logger, r *mux.Router, searcher *searcher) { r.Methods("GET").Path("/search").HandlerFunc(search(logger, searcher)) r.Methods("GET").Path("/search/us-csl").HandlerFunc(searchUSCSL(logger, searcher)) + r.Methods("GET").Path("/search/eu-csl").HandlerFunc(searchEUCSL(logger, searcher)) + r.Methods("GET").Path("/search/uk-csl").HandlerFunc(searchUKCSL(logger, searcher)) } func extractSearchLimit(r *http.Request) int { @@ -108,58 +111,38 @@ func readAddressSearchRequest(u *url.URL) addressSearchRequest { func search(logger log.Logger, searcher *searcher) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { w = wrapResponseWriter(logger, w, r) - requestID := moovhttp.GetRequestID(r) // Search over all fields if q := strings.TrimSpace(r.URL.Query().Get("q")); q != "" { - logger.Info().With(log.Fields{ - "requestID": log.String(requestID), - }).Logf("searching all names and address for %s", q) - searchViaQ(logger, searcher, q)(w, r) + searchViaQ(searcher, q)(w, r) return } // Search by ID (found in an SDN's Remarks property) if id := strings.TrimSpace(r.URL.Query().Get("id")); id != "" { - logger.Info().With(log.Fields{ - "requestID": log.String(requestID), - }).Logf("searching SDNs by remarks ID for %s", id) - searchByRemarksID(logger, searcher, id)(w, r) + searchByRemarksID(searcher, id)(w, r) return } // Search by Name if name := strings.TrimSpace(r.URL.Query().Get("name")); name != "" { if req := readAddressSearchRequest(r.URL); !req.empty() { - logger.Info().With(log.Fields{ - "requestID": log.String(requestID), - }).Logf("searching SDN names='%s' and addresses", name) - searchViaAddressAndName(logger, searcher, name, req)(w, r) - return + searchViaAddressAndName(searcher, name, req)(w, r) + } else { + searchByName(searcher, name)(w, r) } - - logger.Info().With(log.Fields{ - "requestID": log.String(requestID), - }).Logf("searching SDN names for %s", name) - searchByName(logger, searcher, name)(w, r) return } // Search by Alt Name if alt := strings.TrimSpace(r.URL.Query().Get("altName")); alt != "" { - logger.Info().With(log.Fields{ - "requestID": log.String(requestID), - }).Logf("searching SDN alt names for %s", alt) - searchByAltName(logger, searcher, alt)(w, r) + searchByAltName(searcher, alt)(w, r) return } // Search Addresses if req := readAddressSearchRequest(r.URL); !req.empty() { - logger.Info().With(log.Fields{ - "requestID": log.String(requestID), - }).Logf("searching address for %#v", req) - searchByAddress(logger, searcher, req)(w, r) + searchByAddress(searcher, req)(w, r) return } @@ -190,6 +173,15 @@ type searchResponse struct { NonSDNChineseMilitaryIndustrialComplex []*Result[csl.CMIC] `json:"nonSDNChineseMilitaryIndustrialComplex"` NonSDNMenuBasedSanctionsList []*Result[csl.NS_MBS] `json:"nonSDNMenuBasedSanctionsList"` + // EU - Consolidated Sanctions List + EUCSL []*Result[csl.EUCSLRecord] `json:"euConsolidatedSanctionsList"` + + // UK - Consolidated Sanctions List + UKCSL []*Result[csl.UKCSLRecord] `json:"ukConsolidatedSanctionsList"` + + // UK Sanctions List + UKSanctionsList []*Result[csl.UKSanctionsListRecord] `json:"ukSanctionsList"` + // Metadata RefreshedAt time.Time `json:"refreshedAt"` } @@ -217,7 +209,7 @@ func buildAddressCompares(req addressSearchRequest) []func(*Address) *item { return compares } -func searchByAddress(logger log.Logger, searcher *searcher, req addressSearchRequest) http.HandlerFunc { +func searchByAddress(searcher *searcher, req addressSearchRequest) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { if req.empty() { w.WriteHeader(http.StatusBadRequest) @@ -252,7 +244,7 @@ func searchByAddress(logger log.Logger, searcher *searcher, req addressSearchReq } } -func searchViaQ(logger log.Logger, searcher *searcher, name string) http.HandlerFunc { +func searchViaQ(searcher *searcher, name string) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { name = strings.TrimSpace(name) if name == "" { @@ -283,7 +275,7 @@ func searchViaQ(logger log.Logger, searcher *searcher, name string) http.Handler type searchGather func(searcher *searcher, filters filterRequest, limit int, minMatch float64, name string, resp *searchResponse) var ( - gatherings = append([]searchGather{ + baseGatherings = []searchGather{ // OFAC SDN Search func(s *searcher, filters filterRequest, limit int, minMatch float64, name string, resp *searchResponse) { sdns := s.FindSDNsByRemarksID(limit, name) @@ -305,7 +297,7 @@ var ( func(s *searcher, _ filterRequest, limit int, minMatch float64, name string, resp *searchResponse) { resp.DeniedPersons = s.TopDPs(limit, minMatch, name) }, - }, cslGatherings...) + } // Consolidated Screening List Results cslGatherings = []searchGather{ @@ -343,10 +335,29 @@ var ( resp.NonSDNMenuBasedSanctionsList = s.TopNS_MBS(limit, minMatch, name) }, } + + // eu - consolidated sanctions list + euGatherings = []searchGather{ + func(s *searcher, _ filterRequest, limit int, minMatch float64, name string, resp *searchResponse) { + resp.EUCSL = s.TopEUCSL(limit, minMatch, name) + }, + } + + // uk - consolidated sanctions list + ukGatherings = []searchGather{ + func(s *searcher, _ filterRequest, limit int, minMatch float64, name string, resp *searchResponse) { + resp.UKCSL = s.TopUKCSL(limit, minMatch, name) + }, + func(s *searcher, _ filterRequest, limit int, minMatch float64, name string, resp *searchResponse) { + resp.UKSanctionsList = s.TopUKSanctionsList(limit, minMatch, name) + }, + } + + allGatherings = append(append(append(baseGatherings, cslGatherings...), euGatherings...), ukGatherings...) ) func buildFullSearchResponse(searcher *searcher, filters filterRequest, limit int, minMatch float64, name string) *searchResponse { - return buildFullSearchResponseWith(searcher, gatherings, filters, limit, minMatch, name) + return buildFullSearchResponseWith(searcher, allGatherings, filters, limit, minMatch, name) } func buildFullSearchResponseWith(searcher *searcher, searchGatherings []searchGather, filters filterRequest, limit int, minMatch float64, name string) *searchResponse { @@ -365,7 +376,7 @@ func buildFullSearchResponseWith(searcher *searcher, searchGatherings []searchGa return &resp } -func searchViaAddressAndName(logger log.Logger, searcher *searcher, name string, req addressSearchRequest) http.HandlerFunc { +func searchViaAddressAndName(searcher *searcher, name string, req addressSearchRequest) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { name = strings.TrimSpace(name) if name == "" || req.empty() { @@ -398,7 +409,7 @@ func searchViaAddressAndName(logger log.Logger, searcher *searcher, name string, } } -func searchByRemarksID(logger log.Logger, searcher *searcher, id string) http.HandlerFunc { +func searchByRemarksID(searcher *searcher, id string) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { if id == "" { moovhttp.Problem(w, errNoSearchParams) @@ -426,7 +437,7 @@ func searchByRemarksID(logger log.Logger, searcher *searcher, id string) http.Ha } } -func searchByName(logger log.Logger, searcher *searcher, nameSlug string) http.HandlerFunc { +func searchByName(searcher *searcher, nameSlug string) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { nameSlug = strings.TrimSpace(nameSlug) if nameSlug == "" { @@ -457,13 +468,19 @@ func searchByName(logger log.Logger, searcher *searcher, nameSlug string) http.H // BIS DeniedPersons: searcher.TopDPs(limit, minMatch, nameSlug), BISEntities: searcher.TopBISEntities(limit, minMatch, nameSlug), + // EUCSL + EUCSL: searcher.TopEUCSL(limit, minMatch, nameSlug), + // UKCSL + UKCSL: searcher.TopUKCSL(limit, minMatch, nameSlug), + // UKSanctionsList + UKSanctionsList: searcher.TopUKSanctionsList(limit, minMatch, nameSlug), // Metadata RefreshedAt: searcher.lastRefreshedAt, }) } } -func searchByAltName(logger log.Logger, searcher *searcher, altSlug string) http.HandlerFunc { +func searchByAltName(searcher *searcher, altSlug string) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { altSlug = strings.TrimSpace(altSlug) if altSlug == "" { diff --git a/cmd/server/search_handlers_test.go b/cmd/server/search_handlers_test.go index 14a6003..db9ee0a 100644 --- a/cmd/server/search_handlers_test.go +++ b/cmd/server/search_handlers_test.go @@ -30,13 +30,8 @@ func TestSearch__Address(t *testing.T) { router.ServeHTTP(w, req) w.Flush() - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } - - if v := w.Body.String(); !strings.Contains(v, `"match":1`) { - t.Fatalf("%#v", v) - } + require.Equal(t, http.StatusOK, w.Code) + require.Contains(t, w.Body.String(), `"match":0.88194`) var wrapper struct { Addresses []*ofac.Address `json:"addresses"` @@ -71,13 +66,9 @@ func TestSearch__AddressCountry(t *testing.T) { router.ServeHTTP(w, req) w.Flush() - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } + require.Equal(t, http.StatusOK, w.Code) + require.Contains(t, w.Body.String(), `"match":1`) - if v := w.Body.String(); !strings.Contains(v, `"match":1`) { - t.Errorf("%#v", v) - } } func TestSearch__AddressMulti(t *testing.T) { @@ -89,13 +80,9 @@ func TestSearch__AddressMulti(t *testing.T) { router.ServeHTTP(w, req) w.Flush() - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } + require.Equal(t, http.StatusOK, w.Code) + require.Contains(t, w.Body.String(), `"match":0.8847`) - if v := w.Body.String(); !strings.Contains(v, `"match":0.8847`) { - t.Errorf("%#v", v) - } } func TestSearch__AddressProvidence(t *testing.T) { @@ -107,13 +94,9 @@ func TestSearch__AddressProvidence(t *testing.T) { router.ServeHTTP(w, req) w.Flush() - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } + require.Equal(t, http.StatusOK, w.Code) + require.Contains(t, w.Body.String(), `"match":0.923`) - if v := w.Body.String(); !strings.Contains(v, `"match":0.923`) { - t.Errorf("%#v", v) - } } func TestSearch__AddressCity(t *testing.T) { @@ -125,13 +108,9 @@ func TestSearch__AddressCity(t *testing.T) { router.ServeHTTP(w, req) w.Flush() - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } + require.Equal(t, http.StatusOK, w.Code) + require.Contains(t, w.Body.String(), `"match":0.923`) - if v := w.Body.String(); !strings.Contains(v, `"match":0.923`) { - t.Errorf("%#v", v) - } } func TestSearch__AddressState(t *testing.T) { @@ -143,13 +122,9 @@ func TestSearch__AddressState(t *testing.T) { router.ServeHTTP(w, req) w.Flush() - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } + require.Equal(t, http.StatusOK, w.Code) + require.Contains(t, w.Body.String(), `"match":0.923`) - if v := w.Body.String(); !strings.Contains(v, `"match":0.923`) { - t.Errorf("%#v", v) - } } func TestSearch__NameAndAddress(t *testing.T) { @@ -265,25 +240,14 @@ func TestSearch__NameAndAltName(t *testing.T) { } // OFAC - if wrapper.SDNs[0].EntityID != "2681" { - t.Errorf("%#v", wrapper.SDNs[0]) - } - if wrapper.AltNames[0].EntityID != "4691" { - t.Errorf("%#v", wrapper.AltNames[0].EntityID) - } - if wrapper.Addresses[0].EntityID != "735" { - t.Errorf("%#v", wrapper.Addresses[0].EntityID) - } - if wrapper.SectoralSanctions[0].EntityID != "18782" { - t.Errorf("%#v", wrapper.SectoralSanctions[0].EntityID) - } + require.Equal(t, "2681", wrapper.SDNs[0].EntityID) + require.Equal(t, "4691", wrapper.AltNames[0].EntityID) + require.Equal(t, "735", wrapper.Addresses[0].EntityID) + require.Equal(t, "18782", wrapper.SectoralSanctions[0].EntityID) + // BIS - if wrapper.DeniedPersons[0].StreetAddress != "P.O. BOX 28360" { - t.Errorf("%#v", wrapper.DeniedPersons[0].StreetAddress) - } - if wrapper.BISEntities[0].Name != "Mohammad Jan Khan Mangal" { - t.Errorf("%#v", wrapper.BISEntities[0]) - } + require.Equal(t, "P.O. BOX 28360", wrapper.DeniedPersons[0].StreetAddress) + require.Equal(t, "Luqman Yasin Yunus Shgragi", wrapper.BISEntities[0].Name) } func TestSearch__Name(t *testing.T) { @@ -304,13 +268,9 @@ func TestSearch__Name(t *testing.T) { router.ServeHTTP(w, req) w.Flush() - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } - - if v := w.Body.String(); !strings.Contains(v, `"match":1`) { - t.Error(v) - } + require.Equal(t, http.StatusOK, w.Code) + require.Contains(t, w.Body.String(), `"match":0.95588`) + require.Contains(t, w.Body.String(), `"matchedName":"dr ayman al zawahiri"`) var wrapper struct { // OFAC @@ -358,9 +318,9 @@ func TestSearch__AltName(t *testing.T) { t.Errorf("bogus status code: %d", w.Code) } - if v := w.Body.String(); !strings.Contains(v, `"match":0.5`) { - t.Error(v) - } + require.Equal(t, http.StatusOK, w.Code) + require.Contains(t, w.Body.String(), `"match":0.98`) + require.Contains(t, w.Body.String(), `"matchedName":"i c sogo kenkyusho"`) var wrapper struct { Alts []*ofac.AlternateIdentity `json:"altNames"` diff --git a/cmd/server/search_test.go b/cmd/server/search_test.go index fc22643..60eaa70 100644 --- a/cmd/server/search_test.go +++ b/cmd/server/search_test.go @@ -46,6 +46,10 @@ var ( dtcSearcher = newSearcher(log.NewNopLogger(), noLogPipeliner, 1) cmicSearcher = newSearcher(log.NewNopLogger(), noLogPipeliner, 1) ns_mbsSearcher = newSearcher(log.NewNopLogger(), noLogPipeliner, 1) + + eu_cslSearcher = newSearcher(log.NewNopLogger(), noLogPipeliner, 1) + uk_cslSearcher = newSearcher(log.NewNopLogger(), noLogPipeliner, 1) + uk_sanctionsListSearcher = newSearcher(log.NewNopLogger(), noLogPipeliner, 1) ) func init() { @@ -327,9 +331,42 @@ func init() { "For more information on directives, please visit the following link: https://home.treasury.gov/policy-issues/financial-sanctions/sanctions-programs-and-country-information/russian-harmful-foreign-activities-sanctions#directives, Executive Order 14024 Directive Information -"}, }, }, noLogPipeliner) + + eu_cslSearcher.EUCSL = precomputeCSLEntities[csl.EUCSLRecord]([]*csl.EUCSLRecord{{ + FileGenerationDate: "28/10/2022", + EntityLogicalID: 13, + EntityRemark: "(UNSC RESOLUTION 1483)", + EntitySubjectType: "person", + EntityPublicationURL: "http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF", + EntityReferenceNumber: "", + NameAliasWholeNames: []string{"Saddam Hussein Al-Tikriti", "Abu Ali", "Abou Ali"}, + AddressCities: []string{"test city"}, + AddressStreets: []string{"test street"}, + AddressPoBoxes: []string{"test po box"}, + AddressZipCodes: []string{"test zip"}, + AddressCountryDescriptions: []string{"test country"}, + BirthDates: []string{"1937-04-28"}, + BirthCities: []string{"al-Awja, near Tikrit"}, + BirthCountries: []string{"IRAQ"}, + ValidFromTo: map[string]string{"2022": "2030"}, + }}, noLogPipeliner) + + uk_cslSearcher.UKCSL = precomputeCSLEntities([]*csl.UKCSLRecord{{ + Names: []string{"'ABD AL-NASIR"}, + Addresses: []string{"Tall 'Afar"}, + GroupType: "Individual", + GroupID: 13720, + }}, noLogPipeliner) + + uk_sanctionsListSearcher.UKSanctionsList = precomputeCSLEntities([]*csl.UKSanctionsListRecord{{ + Names: []string{"HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE"}, + Addresses: []string{"Branch Office 2, Peshawar, Khyber Paktunkhwa Province, Pakistan"}, + UniqueID: "AFG0001", + }}, noLogPipeliner) } func createTestSearcher(t *testing.T) *searcher { + t.Setenv("WITH_UK_SANCTIONS_LIST", "false") if testing.Short() { t.Skip("-short enabled") } @@ -381,80 +418,121 @@ func verifyDownloadStats(b *testing.B) { require.Greater(b, testSearcherStats.ITARDebarred, 1) require.Greater(b, testSearcherStats.ChineseMilitaryIndustrialComplex, 1) require.Greater(b, testSearcherStats.NonSDNMenuBasedSanctions, 1) + + // EU - CSL + require.Greater(b, testSearcherStats.EUCSL, 1) + // UK - CSL + require.Greater(b, testSearcherStats.UKCSL, 1) + // UK - SanctionsList + require.Greater(b, testSearcherStats.UKSanctionsList, 1) } func TestJaroWinkler(t *testing.T) { cases := []struct { - s1, s2 string - match float64 + indexed, search string + match float64 }{ - {"wei, zhao", "wei, Zhao", 0.917}, + // examples + {"wei, zhao", "wei, Zhao", 0.875}, {"WEI, Zhao", "WEI, Zhao", 1.0}, {"WEI Zhao", "WEI Zhao", 1.0}, {strings.ToLower("WEI Zhao"), precompute("WEI, Zhao"), 1.0}, - // make sure jaroWinkler is communative - {"jane doe", "jan lahore", 0.721}, - {"jan lahore", "jane doe", 0.776}, + + // apply jaroWinkler in both directions + {"jane doe", "jan lahore", 0.596}, + {"jan lahore", "jane doe", 0.596}, + // real world case - {"john doe", "paul john", 0.764}, - {"john doe", "john othername", 0.815}, + {"john doe", "paul john", 0.533}, + {"john doe", "john othername", 0.672}, + // close match - {"jane doe", "jane doe2", 0.971}, + {"jane doe", "jane doe2", 0.940}, + // real-ish world examples - {"kalamity linden", "kala limited", 0.771}, - {"kala limited", "kalamity linden", 0.795}, + {"kalamity linden", "kala limited", 0.687}, + {"kala limited", "kalamity linden", 0.687}, + // examples used in demos / commonly {"nicolas", "nicolas", 1.0}, - {"nicolas moros maduro", "nicolas maduro", 0.91}, - {"nicolas maduro", "nicolas moros maduro", 1.0}, + {"nicolas moros maduro", "nicolas maduro", 0.958}, + {"nicolas maduro", "nicolas moros maduro", 0.839}, + + // customer examples + {"ian", "ian mckinley", 0.429}, + {"iap", "ian mckinley", 0.352}, + {"ian mckinley", "ian", 0.891}, + {"ian mckinley", "iap", 0.733}, + {"ian mckinley", "tian xiang 7", 0.526}, + {"bindaree food group pty", precompute("independent insurance group ltd"), 0.576}, // precompute removes ltd + {"bindaree food group pty ltd", "independent insurance group ltd", 0.631}, // only matches higher from 'ltd' + {"p.c.c. (singapore) private limited", "culver max entertainment private limited", 0.658}, + {"zincum llc", "easy verification inc.", 0.380}, + {"transpetrochart co ltd", "jx metals trading co.", 0.496}, + {"technolab", "moomoo technologies inc", 0.565}, + {"sewa security services", "sesa - safety & environmental services australia pty ltd", 0.480}, + {"bueno", "20/f rykadan capital twr135 hoi bun rd, kwun tong 135 hoi bun rd., kwun tong", 0.094}, + // example cases - {"nicolas maduro", "nicolás maduro", 0.961}, + {"nicolas maduro", "nicolás maduro", 0.937}, {"nicolas maduro", precompute("nicolás maduro"), 1.0}, + {"nic maduro", "nicolas maduro", 0.872}, + {"nick maduro", "nicolas maduro", 0.859}, + {"nicolas maduroo", "nicolas maduro", 0.966}, {"nicolas maduro", "nicolas maduro", 1.0}, {"maduro, nicolas", "maduro, nicolas", 1.0}, {"maduro moros, nicolas", "maduro moros, nicolas", 1.0}, - {"maduro moros, nicolas", "nicolas maduro", 0.889}, - {"nicolas maduro moros", "maduro", 0.722}, - {"nicolas maduro moros", "nicolás maduro", 0.884}, - {"nicolas, maduro moros", "maduro", 0.720}, - {"nicolas, maduro moros", "nicolas maduro", 0.902}, - {"nicolas, maduro moros", "nicolás", 0.627}, - {"nicolas, maduro moros", "maduro", 0.720}, - {"nicolas, maduro moros", "nicolás maduro", 0.877}, - {"africada financial services bureau change", "skylight", 0.352}, - {"africada financial services bureau change", "skylight financial inc", 0.72}, - {"africada financial services bureau change", "skylight services inc", 0.806}, - {"africada financial services bureau change", "skylight financial services", 0.887}, - {"africada financial services bureau change", "skylight financial services inc", 0.79}, + {"maduro moros, nicolas", "nicolas maduro", 0.953}, + {"nicolas maduro moros", "maduro", 0.900}, + {"nicolas maduro moros", "nicolás maduro", 0.898}, + {"nicolas, maduro moros", "maduro", 0.897}, + {"nicolas, maduro moros", "nicolas maduro", 0.928}, + {"nicolas, maduro moros", "nicolás", 0.822}, + {"nicolas, maduro moros", "maduro", 0.897}, + {"nicolas, maduro moros", "nicolás maduro", 0.906}, + {"africada financial services bureau change", "skylight", 0.441}, + {"africada financial services bureau change", "skylight financial inc", 0.658}, + {"africada financial services bureau change", "skylight services inc", 0.621}, + {"africada financial services bureau change", "skylight financial services", 0.761}, + {"africada financial services bureau change", "skylight financial services inc", 0.730}, // stopwords tests - {"the group for the preservation of the holy sites", "the bridgespan group", 1.00}, - {precompute("the group for the preservation of the holy sites"), precompute("the bridgespan group"), 1.00}, - {"group preservation holy sites", "bridgespan group", 0.689}, - {"the group for the preservation of the holy sites", "the logan group", 1.00}, - {precompute("the group for the preservation of the holy sites"), precompute("the logan group"), 1.00}, - {"group preservation holy sites", "logan group", 0.478}, - {"the group for the preservation of the holy sites", "the anything group", 1.00}, - {precompute("the group for the preservation of the holy sites"), precompute("the anything group"), 1.00}, - {"group preservation holy sites", "anything group", 0.617}, - {"the group for the preservation of the holy sites", "the hello world group", 1.00}, - {precompute("the group for the preservation of the holy sites"), precompute("the hello world group"), 1.00}, - {"group preservation holy sites", "hello world group", 0.687}, - {"the group for the preservation of the holy sites", "the group", 0.67}, - {precompute("the group for the preservation of the holy sites"), precompute("the group"), 0.67}, - {"group preservation holy sites", "group", 0.460}, - {"the group for the preservation of the holy sites", "The flibbity jibbity flobbity jobbity grobbity zobbity group", 0.699}, - {precompute("the group for the preservation of the holy sites"), precompute("the flibbity jibbity flobbity jobbity grobbity zobbity group"), .783}, - {"group preservation holy sites", "flibbity jibbity flobbity jobbity grobbity zobbity group", 0.590}, + {"the group for the preservation of the holy sites", "the bridgespan group", 0.682}, + {precompute("the group for the preservation of the holy sites"), precompute("the bridgespan group"), 0.682}, + {"group preservation holy sites", "bridgespan group", 0.652}, + + {"the group for the preservation of the holy sites", "the logan group", 0.730}, + {precompute("the group for the preservation of the holy sites"), precompute("the logan group"), 0.730}, + {"group preservation holy sites", "logan group", 0.649}, + + {"the group for the preservation of the holy sites", "the anything group", 0.698}, + {precompute("the group for the preservation of the holy sites"), precompute("the anything group"), 0.698}, + {"group preservation holy sites", "anything group", 0.585}, + + {"the group for the preservation of the holy sites", "the hello world group", 0.706}, + {precompute("the group for the preservation of the holy sites"), precompute("the hello world group"), 0.706}, + {"group preservation holy sites", "hello world group", 0.560}, + + {"the group for the preservation of the holy sites", "the group", 0.880}, + {precompute("the group for the preservation of the holy sites"), precompute("the group"), 0.880}, + {"group preservation holy sites", "group", 0.879}, + + {"the group for the preservation of the holy sites", "The flibbity jibbity flobbity jobbity grobbity zobbity group", 0.426}, + { + precompute("the group for the preservation of the holy sites"), + precompute("the flibbity jibbity flobbity jobbity grobbity zobbity group"), + 0.446, + }, + {"group preservation holy sites", "flibbity jibbity flobbity jobbity grobbity zobbity group", 0.334}, // precompute - {"i c sogo kenkyusho", precompute("A.I.C. SOGO KENKYUSHO"), 0.667}, - {precompute("A.I.C. SOGO KENKYUSHO"), "sogo kenkyusho", 0.667}, + {"i c sogo kenkyusho", precompute("A.I.C. SOGO KENKYUSHO"), 0.858}, + {precompute("A.I.C. SOGO KENKYUSHO"), "sogo kenkyusho", 0.972}, } for i := range cases { v := cases[i] // Only need to call chomp on s1, see jaroWinkler doc - eql(t, fmt.Sprintf("#%d %s vs %s", i, v.s1, v.s2), jaroWinkler(v.s1, v.s2), v.match) + eql(t, fmt.Sprintf("#%d %s vs %s", i, v.indexed, v.search), bestPairsJaroWinkler(strings.Fields(v.search), v.indexed), v.match) } } @@ -503,9 +581,11 @@ func TestSearch_liveData(t *testing.T) { name string match float64 // top match % }{ - {"Nicolas MADURO", 0.932}, - {"nicolas maduro", 0.932}, + {"Nicolas MADURO", 0.958}, + {"nicolas maduro", 0.958}, + {"NICOLAS maduro", 0.958}, } + keeper := keepSDN(filterRequest{}) for i := range cases { sdns := searcher.TopSDNs(1, 0.00, cases[i].name, keeper) @@ -673,9 +753,7 @@ func TestSearch__TopSDNs(t *testing.T) { if len(sdns) == 0 { t.Fatal("empty SDNs") } - if sdns[0].EntityID != "2676" { - t.Errorf("%#v", sdns[0].SDN) - } + require.Equal(t, "2676", sdns[0].EntityID) } func TestSearch__TopDPs(t *testing.T) { diff --git a/cmd/server/search_uk_csl.go b/cmd/server/search_uk_csl.go new file mode 100644 index 0000000..dc6e49f --- /dev/null +++ b/cmd/server/search_uk_csl.go @@ -0,0 +1,60 @@ +// Copyright 2022 The Moov Authors +// Use of this source code is governed by an Apache License +// license that can be found in the LICENSE file. + +package main + +import ( + "encoding/json" + "net/http" + + moovhttp "github.com/moov-io/base/http" + "github.com/moov-io/base/log" + "github.com/moov-io/watchman/pkg/csl" +) + +// search UKCLS +func searchUKCSL(logger log.Logger, searcher *searcher) http.HandlerFunc { + return func(w http.ResponseWriter, r *http.Request) { + w = wrapResponseWriter(logger, w, r) + requestID := moovhttp.GetRequestID(r) + + limit := extractSearchLimit(r) + filters := buildFilterRequest(r.URL) + minMatch := extractSearchMinMatch(r) + + name := r.URL.Query().Get("name") + resp := buildFullSearchResponseWith(searcher, ukGatherings, filters, limit, minMatch, name) + + logger.Info().With(log.Fields{ + "name": log.String(name), + "requestID": log.String(requestID), + }).Log("performing UK-CSL search") + + w.Header().Set("Content-Type", "application/json; charset=utf-8") + w.WriteHeader(http.StatusOK) + json.NewEncoder(w).Encode(resp) + } +} + +// TopUKCSL searches the UK Sanctions list by Name and Alias +func (s *searcher) TopUKCSL(limit int, minMatch float64, name string) []*Result[csl.UKCSLRecord] { + s.RLock() + defer s.RUnlock() + + s.Gate.Start() + defer s.Gate.Done() + + return topResults[csl.UKCSLRecord](limit, minMatch, name, s.UKCSL) +} + +// TopUKSanctionsList searches the UK Sanctions list by Name and Alias +func (s *searcher) TopUKSanctionsList(limit int, minMatch float64, name string) []*Result[csl.UKSanctionsListRecord] { + s.RLock() + defer s.RUnlock() + + s.Gate.Start() + defer s.Gate.Done() + + return topResults[csl.UKSanctionsListRecord](limit, minMatch, name, s.UKSanctionsList) +} diff --git a/cmd/server/search_uk_csl_test.go b/cmd/server/search_uk_csl_test.go new file mode 100644 index 0000000..6812e77 --- /dev/null +++ b/cmd/server/search_uk_csl_test.go @@ -0,0 +1,66 @@ +// Copyright 2022 The Moov Authors +// Use of this source code is governed by an Apache License +// license that can be found in the LICENSE file. + +package main + +import ( + "encoding/json" + "net/http" + "net/http/httptest" + "testing" + + "github.com/moov-io/base/log" + "github.com/moov-io/watchman/pkg/csl" + + "github.com/gorilla/mux" + "github.com/stretchr/testify/require" +) + +func TestSearch_UK_CSL(t *testing.T) { + w := httptest.NewRecorder() + req := httptest.NewRequest("GET", "/search/uk-csl?name=%27ABD%20AL-NASIR", nil) + + router := mux.NewRouter() + addSearchRoutes(log.NewNopLogger(), router, uk_cslSearcher) + router.ServeHTTP(w, req) + w.Flush() + + require.Equal(t, http.StatusOK, w.Code) + require.Contains(t, w.Body.String(), `"match":1`) + require.Contains(t, w.Body.String(), `"matchedName":"'abd al nasir"`) + + var wrapper struct { + UKCSL []csl.UKCSLRecord `json:"ukConsolidatedSanctionsList"` + } + err := json.NewDecoder(w.Body).Decode(&wrapper) + require.NoError(t, err) + + require.Greater(t, len(wrapper.UKCSL), 0) + + require.Equal(t, int(13720), wrapper.UKCSL[0].GroupID) +} + +func TestSearch_UK_SanctionsList(t *testing.T) { + w := httptest.NewRecorder() + req := httptest.NewRequest("GET", "/search/uk-csl?name=HAJI%20KHAIRULLAH%20HAJI%20SATTAR%20MONEY%20EXCHANGE", nil) + + router := mux.NewRouter() + addSearchRoutes(log.NewNopLogger(), router, uk_sanctionsListSearcher) + router.ServeHTTP(w, req) + w.Flush() + + require.Equal(t, http.StatusOK, w.Code) + require.Contains(t, w.Body.String(), `"match":1`) + require.Contains(t, w.Body.String(), `"matchedName":"haji khairullah haji sattar money exchange"`) + + var wrapper struct { + UKSanctionsList []csl.UKSanctionsListRecord `json:"ukSanctionsList"` + } + err := json.NewDecoder(w.Body).Decode(&wrapper) + require.NoError(t, err) + + require.Greater(t, len(wrapper.UKSanctionsList), 0) + + require.Equal(t, "AFG0001", wrapper.UKSanctionsList[0].UniqueID) +} diff --git a/cmd/server/search_us_csl.go b/cmd/server/search_us_csl.go index 43b01fc..95250ce 100644 --- a/cmd/server/search_us_csl.go +++ b/cmd/server/search_us_csl.go @@ -64,6 +64,26 @@ func precomputeCSLEntities[T any](items []*T, pipe *pipeliner) []*Result[T] { pipe.Do(alt) altNames = append(altNames, alt.Processed) } + } else if name == "NameAliasWholesNames" && _type == "[]string" { + alts, ok := elm.Field(i).Interface().([]string) + if !ok { + continue + } + for j := range alts { + alt := &Name{Processed: alts[j]} + pipe.Do(alt) + altNames = append(altNames, alt.Processed) + } + } else if name == "Names" && _type == "[]string" { + alts, ok := elm.Field(i).Interface().([]string) + if !ok { + continue + } + for j := range alts { + alt := &Name{Processed: alts[j]} + pipe.Do(alt) + altNames = append(altNames, alt.Processed) + } } } diff --git a/cmd/server/search_us_csl_test.go b/cmd/server/search_us_csl_test.go index 943ea22..f05a878 100644 --- a/cmd/server/search_us_csl_test.go +++ b/cmd/server/search_us_csl_test.go @@ -20,7 +20,7 @@ import ( "github.com/stretchr/testify/require" ) -func TestSearch__US_CSL(t *testing.T) { +func TestSearch_US_CSL(t *testing.T) { w := httptest.NewRecorder() req := httptest.NewRequest("GET", "/search/us-csl?name=Khan&limit=1", nil) @@ -30,7 +30,8 @@ func TestSearch__US_CSL(t *testing.T) { w.Flush() require.Equal(t, http.StatusOK, w.Code) - require.Contains(t, w.Body.String(), `"match":0.6333`) + require.Contains(t, w.Body.String(), `"match":0.89`) + require.Contains(t, w.Body.String(), `"matchedName":"abdul qadeer khan"`) var wrapper struct { NonProliferationSanctions []csl.ISN `json:"nonProliferationSanctions"` @@ -75,7 +76,7 @@ func TestSearcher_TopMEUs(t *testing.T) { require.Len(t, meus, 1) require.Equal(t, "d54346ef81802673c1b1daeb2ca8bd5d13755abd", meus[0].Data.EntityID) - require.Equal(t, "0.70597", fmt.Sprintf("%.5f", meus[0].match)) + require.Equal(t, "0.88750", fmt.Sprintf("%.5f", meus[0].match)) } func TestSearcher_TopSSIs(t *testing.T) { @@ -97,9 +98,7 @@ func TestSearcher_TopSSIs_limit(t *testing.T) { if len(ssis) != 2 { t.Fatalf("Expected 2 results, found %d", len(ssis)) } - if ssis[0].Data.EntityID != "18736" { - t.Errorf("%#v", ssis[0].Data) - } + require.Equal(t, "18736", ssis[0].Data.EntityID) } func TestSearcher_TopSSIs_reportAltNameWeight(t *testing.T) { @@ -121,7 +120,7 @@ func TestSearcher_TopISNs(t *testing.T) { isn := isns[0] require.Equal(t, "2d2db09c686e4829d0ef1b0b04145eec3d42cd88", isn.Data.EntityID) - require.Equal(t, "0.92", fmt.Sprintf("%.2f", isn.match)) + require.Equal(t, "0.93", fmt.Sprintf("%.2f", isn.match)) } func TestSearcher_TopUVLs(t *testing.T) { diff --git a/cmd/server/watch.go b/cmd/server/watch.go deleted file mode 100644 index b78b3b8..0000000 --- a/cmd/server/watch.go +++ /dev/null @@ -1,403 +0,0 @@ -// Copyright 2022 The Moov Authors -// Use of this source code is governed by an Apache License -// license that can be found in the LICENSE file. - -package main - -import ( - "database/sql" - "errors" - "net/http" - "time" - - "github.com/moov-io/base" - moovhttp "github.com/moov-io/base/http" - "github.com/moov-io/base/log" - - "github.com/gorilla/mux" -) - -var ( - errNoWatchID = errors.New("no watchID found") -) - -func getWatchID(w http.ResponseWriter, r *http.Request) string { - v, ok := mux.Vars(r)["watchID"] - if !ok || v == "" { - moovhttp.Problem(w, errNoWatchID) - return "" - } - return v -} - -type watchRequest struct { - AuthToken string `json:"authToken"` - Webhook string `json:"webhook"` -} - -// watchRepository holds information about each company and/or customer that another service wants notifications -// for every time we re-download data. -type watchRepository interface { - // getWatchesCursor returns a watchCursor which traverses both customer and company watches - getWatchesCursor(logger log.Logger, batchSize int) *watchCursor - - // Company watches - addCompanyWatch(companyID string, params watchRequest) (string, error) - addCompanyNameWatch(name string, webhook string, authToken string) (string, error) - removeCompanyWatch(companyID string, watchID string) error - removeCompanyNameWatch(watchID string) error - - // Customer watches - addCustomerWatch(customerID string, params watchRequest) (string, error) - addCustomerNameWatch(name string, webhook string, authToken string) (string, error) - removeCustomerWatch(customerID string, watchID string) error - removeCustomerNameWatch(watchID string) error -} - -type sqliteWatchRepository struct { - db *sql.DB - logger log.Logger -} - -func (r *sqliteWatchRepository) close() error { - return r.db.Close() -} - -func (r *sqliteWatchRepository) getWatchesCursor(logger log.Logger, batchSize int) *watchCursor { - return &watchCursor{ - batchSize: batchSize, - db: r.db, - logger: logger, - } -} - -// Company methods - -func (r *sqliteWatchRepository) addCompanyWatch(companyID string, params watchRequest) (string, error) { - if companyID == "" { - return "", errNoCompanyID - } - id := base.ID() - - query := `insert into company_watches (id, company_id, webhook, auth_token, created_at) values (?, ?, ?, ?, ?)` - stmt, err := r.db.Prepare(query) - if err != nil { - return "", err - } - defer stmt.Close() - - _, err = stmt.Exec(id, companyID, params.Webhook, params.AuthToken, time.Now()) - if err != nil { - return "", err - } - return id, nil -} - -func (r *sqliteWatchRepository) removeCompanyWatch(companyID string, watchID string) error { - if watchID == "" { - return errNoWatchID - } - - query := `update company_watches set deleted_at = ? where company_id = ? and id = ? and deleted_at is null` - stmt, err := r.db.Prepare(query) - if err != nil { - return err - } - defer stmt.Close() - - _, err = stmt.Exec(time.Now(), companyID, watchID) - return err -} - -func (r *sqliteWatchRepository) addCompanyNameWatch(name string, webhook string, authToken string) (string, error) { - query := `insert into company_name_watches (id, name, webhook, auth_token, created_at) values (?, ?, ?, ?, ?);` - stmt, err := r.db.Prepare(query) - if err != nil { - return "", err - } - defer stmt.Close() - - id := base.ID() - _, err = stmt.Exec(id, name, webhook, authToken, time.Now()) - if err != nil { - return "", err - } - return id, nil -} - -func (r *sqliteWatchRepository) removeCompanyNameWatch(watchID string) error { - if watchID == "" { - return errNoWatchID - } - - query := `update company_name_watches set deleted_at = ? where id = ? and deleted_at is null` - stmt, err := r.db.Prepare(query) - if err != nil { - return err - } - defer stmt.Close() - - _, err = stmt.Exec(time.Now(), watchID) - return err -} - -// Customer methods - -func (r *sqliteWatchRepository) addCustomerWatch(customerID string, params watchRequest) (string, error) { - if customerID == "" { - return "", errNoCustomerID - } - id := base.ID() - - query := `insert into customer_watches (id, customer_id, webhook, auth_token, created_at) values (?, ?, ?, ?, ?)` - stmt, err := r.db.Prepare(query) - if err != nil { - return "", err - } - defer stmt.Close() - - _, err = stmt.Exec(id, customerID, params.Webhook, params.AuthToken, time.Now()) - if err != nil { - return "", err - } - return id, nil -} - -func (r *sqliteWatchRepository) removeCustomerWatch(customerID string, watchID string) error { - if watchID == "" { - return errNoWatchID - } - - query := `update customer_watches set deleted_at = ? where customer_id = ? and id = ? and deleted_at is null` - stmt, err := r.db.Prepare(query) - if err != nil { - return err - } - defer stmt.Close() - - _, err = stmt.Exec(time.Now(), customerID, watchID) - return err -} - -func (r *sqliteWatchRepository) addCustomerNameWatch(name string, webhook string, authToken string) (string, error) { - query := `insert into customer_name_watches (id, name, webhook, auth_token, created_at) values (?, ?, ?, ?, ?);` - stmt, err := r.db.Prepare(query) - if err != nil { - return "", err - } - defer stmt.Close() - - id := base.ID() - _, err = stmt.Exec(id, name, webhook, authToken, time.Now()) - if err != nil { - return "", err - } - return id, nil -} - -func (r *sqliteWatchRepository) removeCustomerNameWatch(watchID string) error { - if watchID == "" { - return errNoWatchID - } - - query := `update customer_name_watches set deleted_at = ? where id = ? and deleted_at is null` - stmt, err := r.db.Prepare(query) - if err != nil { - return err - } - defer stmt.Close() - - _, err = stmt.Exec(time.Now(), watchID) - return err -} - -type watch struct { - id string - customerID, customerName string - companyID, companyName string - webhook string - authToken string -} - -type watchCursor struct { - batchSize int - db *sql.DB - - logger log.Logger - - // '*NewerThan' values represent the minimum (oldest) created_at value to return in the batch. - // - // These values start at "zero time" (an empty time.Time) and progresses towards time.Now() - // with each batch by being set to the batch's newest time. - customerNewerThan, customerNameNewerThan time.Time - companyNewerThan, companyNameNewerThan time.Time -} - -// Next returns a batch of watches that will be sent off to their respective webhook URL. -func (cur *watchCursor) Next() ([]watch, error) { - var watches []watch - limit := cur.batchSize / 4 // 4 SQL queries - if cur.batchSize < 4 { - limit = 1 // return one if batchSize is invalid - } - - // Companies - companyWatches, err := cur.getCompanyBatch(limit) - if err != nil { - cur.logger.LogErrorf("problem reading company watches: %v", err) - } - watches = append(watches, companyWatches...) - - companyNameWatches, err := cur.getCompanyNameBatch(limit) - if err != nil { - cur.logger.LogErrorf("problem reading company name watches: %v", err) - } - watches = append(watches, companyNameWatches...) - - // Customers - customerWatches, err := cur.getCustomerBatch(limit) - if err != nil { - cur.logger.LogErrorf("problem reading customer watches: %v", err) - } - watches = append(watches, customerWatches...) - - customerNameWatches, err := cur.getCustomerNameBatch(limit) - if err != nil { - cur.logger.LogErrorf("problem reading customer name watches: %v", err) - } - watches = append(watches, customerNameWatches...) - - return watches, nil -} - -func (cur *watchCursor) getCompanyBatch(limit int) ([]watch, error) { - query := `select id, company_id, webhook, auth_token, created_at from company_watches where created_at > ? and deleted_at is null order by created_at asc limit ?` - stmt, err := cur.db.Prepare(query) - if err != nil { - return nil, err - } - defer stmt.Close() - - rows, err := stmt.Query(cur.companyNewerThan, limit) - if err != nil { - return nil, err - } - defer rows.Close() - - max := cur.companyNewerThan - - var watches []watch - for rows.Next() { - var createdAt time.Time - var watch watch - if err := rows.Scan(&watch.id, &watch.companyID, &watch.webhook, &watch.authToken, &createdAt); err == nil { - watches = append(watches, watch) - } - if createdAt.After(max) { - // advance max to newest time - max = createdAt - } - } - cur.companyNewerThan = max - - return watches, rows.Err() -} - -func (cur *watchCursor) getCompanyNameBatch(limit int) ([]watch, error) { - query := `select id, name, webhook, auth_token, created_at from company_name_watches where created_at > ? and deleted_at is null order by created_at asc limit ?` - stmt, err := cur.db.Prepare(query) - if err != nil { - return nil, err - } - defer stmt.Close() - - rows, err := stmt.Query(cur.companyNameNewerThan, limit) - if err != nil { - return nil, err - } - defer rows.Close() - - max := cur.companyNameNewerThan - - var watches []watch - for rows.Next() { - var createdAt time.Time - var watch watch - if err := rows.Scan(&watch.id, &watch.companyName, &watch.webhook, &watch.authToken, &createdAt); err == nil { - watches = append(watches, watch) - } - if createdAt.After(max) { - // advance max to newest time - max = createdAt - } - } - cur.companyNameNewerThan = max - - return watches, rows.Err() -} - -func (cur *watchCursor) getCustomerBatch(limit int) ([]watch, error) { - query := `select id, customer_id, webhook, auth_token, created_at from customer_watches where created_at > ? and deleted_at is null order by created_at asc limit ?` - stmt, err := cur.db.Prepare(query) - if err != nil { - return nil, err - } - defer stmt.Close() - - rows, err := stmt.Query(cur.customerNewerThan, limit) - if err != nil { - return nil, err - } - defer rows.Close() - - max := cur.customerNewerThan - - var watches []watch - for rows.Next() { - var createdAt time.Time - var watch watch - if err := rows.Scan(&watch.id, &watch.customerID, &watch.webhook, &watch.authToken, &createdAt); err == nil { - watches = append(watches, watch) - } - if createdAt.After(max) { - // advance max to newest time - max = createdAt - } - } - cur.customerNewerThan = max - - return watches, rows.Err() -} - -func (cur *watchCursor) getCustomerNameBatch(limit int) ([]watch, error) { - query := `select id, name, webhook, auth_token, created_at from customer_name_watches where created_at > ? and deleted_at is null order by created_at asc limit ?` - stmt, err := cur.db.Prepare(query) - if err != nil { - return nil, err - } - defer stmt.Close() - - rows, err := stmt.Query(cur.customerNameNewerThan, limit) - if err != nil { - return nil, err - } - defer rows.Close() - - max := cur.customerNameNewerThan - - var watches []watch - for rows.Next() { - var createdAt time.Time - var watch watch - if err := rows.Scan(&watch.id, &watch.customerName, &watch.webhook, &watch.authToken, &createdAt); err == nil { - watches = append(watches, watch) - } - if createdAt.After(max) { - // advance max to newest time - max = createdAt - } - } - cur.customerNameNewerThan = max - - return watches, rows.Err() -} diff --git a/cmd/server/watch_test.go b/cmd/server/watch_test.go deleted file mode 100644 index a132ef1..0000000 --- a/cmd/server/watch_test.go +++ /dev/null @@ -1,240 +0,0 @@ -// Copyright 2022 The Moov Authors -// Use of this source code is governed by an Apache License -// license that can be found in the LICENSE file. - -package main - -import ( - "testing" - - "github.com/moov-io/base" - "github.com/moov-io/base/log" - "github.com/moov-io/watchman/internal/database" - - "github.com/stretchr/testify/require" -) - -func createTestWatchRepository(t *testing.T) *sqliteWatchRepository { - t.Helper() - - db := database.CreateTestSqliteDB(t) - return &sqliteWatchRepository{db.DB, log.NewNopLogger()} -} - -func TestCompanyWatch(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteWatchRepository) { - companyID := base.ID() - err := repo.removeCompanyWatch(companyID, base.ID()) - require.NoError(t, err) - - // add watch, then remove - watchID, err := repo.addCompanyWatch(companyID, watchRequest{Webhook: "https://moov.io"}) - require.NoError(t, err) - require.NotEmpty(t, watchID) - - // remove - err = repo.removeCompanyWatch(companyID, watchID) - require.NoError(t, err) - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteWatchRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteWatchRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCompanyNameWatch(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteWatchRepository) { - err := repo.removeCompanyNameWatch(base.ID()) - require.NoError(t, err) - - // Add - name := base.ID() - watchID, err := repo.addCompanyNameWatch(name, "https://moov.io", "authToken") - require.NoError(t, err) - require.NotEmpty(t, watchID) - - // Remove - err = repo.removeCompanyNameWatch(watchID) - require.NoError(t, err) - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteWatchRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteWatchRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCustomerWatch(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteWatchRepository) { - customerID := base.ID() - err := repo.removeCustomerWatch(customerID, base.ID()) - require.NoError(t, err) - - // add watch, then remove - watchID, err := repo.addCustomerWatch(customerID, watchRequest{Webhook: "https://moov.io"}) - require.NoError(t, err) - require.NotEmpty(t, watchID) - - // remove - err = repo.removeCustomerWatch(customerID, watchID) - require.NoError(t, err) - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteWatchRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteWatchRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestCustomerNameWatch(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteWatchRepository) { - err := repo.removeCustomerNameWatch(base.ID()) - require.NoError(t, err) - - // Add - name := base.ID() - watchID, err := repo.addCustomerNameWatch(name, "https://moov.io", "authToken") - require.NoError(t, err) - require.NotEmpty(t, watchID) - - // Remove - err = repo.removeCustomerNameWatch(watchID) - require.NoError(t, err) - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteWatchRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteWatchRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestWatchCursor_ID(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteWatchRepository) { - cur := repo.getWatchesCursor(log.NewNopLogger(), 4) // batchSize is divided in 4 parts to equally grab customer, customer name, company, and company name watches - - // insert some watches - watchID1, _ := repo.addCustomerWatch(base.ID(), watchRequest{Webhook: "https://moov.io/1"}) - watchID2, _ := repo.addCustomerWatch(base.ID(), watchRequest{Webhook: "https://moov.io/2"}) - watchID3, _ := repo.addCompanyWatch(base.ID(), watchRequest{Webhook: "https://moov.io/3"}) - - // get first batch (should have 2 watches) - firstBatch, err := cur.Next() - if len(firstBatch) != 2 || err != nil { - t.Fatalf("len(firstBatch)=%d expected 2, err=%v", len(firstBatch), err) - } - for i := range firstBatch { - switch firstBatch[i].id { - case watchID1: - if firstBatch[i].webhook != "https://moov.io/1" || firstBatch[i].customerID == "" { - t.Errorf("watch %#v didn't match", firstBatch[i]) - } - case watchID3: - if firstBatch[i].webhook != "https://moov.io/3" || firstBatch[i].companyID == "" { - t.Errorf("watch %#v didn't match", firstBatch[i]) - } - default: - t.Errorf("unknown watch: %v", firstBatch[i]) - } - } - - // second batch (should only have watchID3) - secondBatch, err := cur.Next() - if len(secondBatch) != 1 || err != nil { - t.Fatalf("len(secondBatch)=%d expected 1, err=%v", len(secondBatch), err) - } - require.Equal(t, watchID2, secondBatch[0].id) - require.Equal(t, "https://moov.io/2", secondBatch[0].webhook) - require.NotEmpty(t, secondBatch[0].customerID) - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteWatchRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteWatchRepository{mysqlDB, log.NewNopLogger()}) -} - -func TestWatchCursor_Names(t *testing.T) { - check := func(t *testing.T, repo *sqliteWatchRepository) { - cur := repo.getWatchesCursor(log.NewNopLogger(), 4) - - // insert some watches - watchID1, _ := repo.addCustomerNameWatch("foo corp", "https://moov.io/1", base.ID()) - watchID2, _ := repo.addCustomerNameWatch("jane doe", "https://moov.io/2", base.ID()) - watchID3, _ := repo.addCompanyNameWatch("bar corp", "https://moov.io/3", base.ID()) - - // get first batch (should have 2 watches) - firstBatch, err := cur.Next() - if len(firstBatch) != 2 || err != nil { - t.Fatalf("len(firstBatch)=%d expected 2, err=%v", len(firstBatch), err) - } - for i := range firstBatch { - switch firstBatch[i].id { - case watchID1: - if firstBatch[i].webhook != "https://moov.io/1" { - t.Errorf("watch %#v didn't match", firstBatch[i]) - } - if firstBatch[i].customerName != "foo corp" { - t.Errorf("watch %#v didn't match", firstBatch[i]) - } - case watchID3: - if firstBatch[i].webhook != "https://moov.io/3" { - t.Errorf("watch %#v didn't match", firstBatch[i]) - } - if firstBatch[i].companyName != "bar corp" { - t.Errorf("watch %#v didn't match", firstBatch[i]) - } - default: - t.Errorf("unknown watch: %v", firstBatch[i]) - } - } - - // second batch (should only have watchID3) - secondBatch, err := cur.Next() - if len(secondBatch) != 1 || err != nil { - t.Fatalf("len(secondBatch)=%d expected 1, err=%v", len(secondBatch), err) - } - require.Equal(t, watchID2, secondBatch[0].id) - require.Equal(t, "https://moov.io/2", secondBatch[0].webhook) - require.Equal(t, "jane doe", secondBatch[0].customerName) - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteWatchRepository{sqliteDB.DB, log.NewNopLogger()}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteWatchRepository{mysqlDB, log.NewNopLogger()}) -} diff --git a/cmd/server/webhook.go b/cmd/server/webhook.go index 52f793d..107b22e 100644 --- a/cmd/server/webhook.go +++ b/cmd/server/webhook.go @@ -6,7 +6,6 @@ package main import ( "bytes" - "database/sql" "fmt" "net/http" "net/url" @@ -41,10 +40,9 @@ var ( func init() { maxWorkers, err := strconv.ParseInt(strx.Or(os.Getenv("WEBHOOK_MAX_WORKERS"), "10"), 10, 32) - if err != nil { - panic(fmt.Sprintf("ERROR reading WEBHOOK_MAX_WORKERS: %v", err)) + if err == nil { + webhookGate = syncutil.NewGate(int(maxWorkers)) } - webhookGate = syncutil.NewGate(int(maxWorkers)) } // callWebhook will take `body` as JSON and make a POST request to the provided webhook url. @@ -65,8 +63,10 @@ func callWebhook(body *bytes.Buffer, webhook string, authToken string) (int, err } // Guard HTTP calls in-flight - webhookGate.Start() - defer webhookGate.Done() + if webhookGate != nil { + webhookGate.Start() + defer webhookGate.Done() + } resp, err := webhookHTTPClient.Do(req) if resp == nil || err != nil { @@ -99,27 +99,3 @@ func validateWebhook(raw string) (string, error) { } return u.String(), nil } - -type webhookRepository interface { - recordWebhook(watchID string, attemptedAt time.Time, status int) error -} - -type sqliteWebhookRepository struct { - db *sql.DB -} - -func (r *sqliteWebhookRepository) close() error { - return r.db.Close() -} - -func (r *sqliteWebhookRepository) recordWebhook(watchID string, attemptedAt time.Time, status int) error { - query := `insert into webhook_stats (watch_id, attempted_at, status) values (?, ?, ?);` - stmt, err := r.db.Prepare(query) - if err != nil { - return err - } - defer stmt.Close() - - _, err = stmt.Exec(watchID, attemptedAt, status) - return err -} diff --git a/cmd/server/webhook_test.go b/cmd/server/webhook_test.go index e3e6b8c..1078be7 100644 --- a/cmd/server/webhook_test.go +++ b/cmd/server/webhook_test.go @@ -6,6 +6,7 @@ package main import ( "bytes" + "crypto/tls" "encoding/json" "io" "net/http" @@ -13,25 +14,21 @@ import ( "testing" "time" - "github.com/moov-io/base" - "github.com/moov-io/watchman/internal/database" + "github.com/moov-io/base/log" ) var ( - // customerWebhook reads a Customer in JSON from the incoming request and replies - // with the Customer.ID - customerWebhook = func(w http.ResponseWriter, r *http.Request) { - var cust Customer - if err := json.NewDecoder(r.Body).Decode(&cust); err != nil { + downloadWebhook = func(w http.ResponseWriter, r *http.Request) { + var stats DownloadStats + if err := json.NewDecoder(r.Body).Decode(&stats); err != nil { w.WriteHeader(http.StatusInternalServerError) w.Write([]byte(err.Error())) } else { - if cust.ID == "" { + if stats.SDNs != 101 { w.WriteHeader(http.StatusBadRequest) return } w.WriteHeader(http.StatusOK) - w.Write([]byte(cust.ID)) } } @@ -111,12 +108,13 @@ func TestWebhook_call(t *testing.T) { return } - server := httptest.NewTLSServer(http.HandlerFunc(customerWebhook)) + server := httptest.NewTLSServer(http.HandlerFunc(downloadWebhook)) defer server.Close() // override to add test TLS certificate if tr, ok := webhookHTTPClient.Transport.(*http.Transport); ok { if ctr, ok := server.Client().Transport.(*http.Transport); ok { + tr.TLSClientConfig = new(tls.Config) tr.TLSClientConfig.RootCAs = ctr.TLSClientConfig.RootCAs } else { t.Errorf("unknown server.Client().Transport type: %T", server.Client().Transport) @@ -125,15 +123,17 @@ func TestWebhook_call(t *testing.T) { t.Fatalf("%T %#v", webhookHTTPClient.Transport, webhookHTTPClient.Transport) } - custRepo := createTestCustomerRepository(t) - defer custRepo.close() - - // execute webhook with arbitrary Customer - body, err := getCustomerBody(customerSearcher, "watchID", "306", 1.0, custRepo) - if body == nil { - t.Fatalf("nil body: %v", err) + stats := &DownloadStats{ + SDNs: 101, + RefreshedAt: time.Now().In(time.UTC), } - if _, err := callWebhook(body, server.URL, "authToken"); err != nil { + + t.Setenv("DOWNLOAD_WEBHOOK_URL", server.URL) + t.Setenv("DOWNLOAD_WEBHOOK_AUTH_TOKEN", "authToken") + + logger := log.NewTestLogger() + err := callDownloadWebook(logger, stats) + if err != nil { t.Fatal(err) } } @@ -150,22 +150,3 @@ func TestWebhook__CallErr(t *testing.T) { t.Errorf("bogus HTTP status: %d", status) } } - -func TestWebhook_record(t *testing.T) { - t.Parallel() - - check := func(t *testing.T, repo *sqliteWebhookRepository) { - if err := repo.recordWebhook(base.ID(), time.Now(), 200); err != nil { - t.Fatal(err) - } - } - - // SQLite tests - sqliteDB := database.CreateTestSqliteDB(t) - defer sqliteDB.Close() - check(t, &sqliteWebhookRepository{sqliteDB.DB}) - - // MySQL tests - mysqlDB := database.TestMySQLConnection(t) - check(t, &sqliteWebhookRepository{mysqlDB}) -} diff --git a/cmd/watchmantest/Dockerfile b/cmd/watchmantest/Dockerfile index ba294ab..df5a51d 100644 --- a/cmd/watchmantest/Dockerfile +++ b/cmd/watchmantest/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.19-alpine as builder +FROM golang:1.21-alpine as builder RUN apk add -U make git RUN adduser -D -g '' --shell /bin/false moov WORKDIR /go/src/github.com/moov-io/watchman diff --git a/cmd/watchmantest/README.md b/cmd/watchmantest/README.md index deead96..9682b60 100644 --- a/cmd/watchmantest/README.md +++ b/cmd/watchmantest/README.md @@ -14,7 +14,6 @@ $ watchmantest -local moh 2019/02/14 23:37:44.434534 main.go:76: [SUCCESS] ping 2019/02/14 23:37:44.435204 main.go:83: [SUCCESS] last download was: 3h45m58s ago 2019/02/14 23:37:44.440230 main.go:96: [SUCCESS] name search passed, query="moh" -2019/02/14 23:37:44.441506 main.go:104: [SUCCESS] added customer=24032 watch 2019/02/14 23:37:44.445473 main.go:118: [SUCCESS] alt name search passed 2019/02/14 23:37:44.449367 main.go:123: [SUCCESS] address search passed ``` diff --git a/cmd/watchmantest/main.go b/cmd/watchmantest/main.go index 06f968f..53df678 100644 --- a/cmd/watchmantest/main.go +++ b/cmd/watchmantest/main.go @@ -17,7 +17,6 @@ // 2019/02/14 23:37:44.434534 main.go:76: [SUCCESS] ping // 2019/02/14 23:37:44.435204 main.go:83: [SUCCESS] last download was: 3h45m58s ago // 2019/02/14 23:37:44.440230 main.go:96: [SUCCESS] name search passed, query="moh" -// 2019/02/14 23:37:44.441506 main.go:104: [SUCCESS] added customer=24032 watch // 2019/02/14 23:37:44.445473 main.go:118: [SUCCESS] alt name search passed // 2019/02/14 23:37:44.449367 main.go:123: [SUCCESS] address search passed // @@ -44,7 +43,6 @@ import ( var ( flagApiAddress = flag.String("address", internal.DefaultApiAddress, "Moov API address") flagLocal = flag.Bool("local", false, "Use local HTTP addresses") - flagWebhook = flag.String("webhook", "https://moov.io/watchman", "Secure HTTP address for webhooks") flagRequestID = flag.String("request-id", "", "Override what is set for the X-Request-ID HTTP header") ) @@ -94,22 +92,7 @@ func main() { if err != nil { log.Fatalf("[FAILURE] problem searching SDNs: %v", err) } else { - log.Printf("[SUCCESS] name search passed, query=%q", query) - } - - // Add watch on the SDN - if sdn.SdnType == moov.SDNTYPE_INDIVIDUAL { - if err := addCustomerWatch(ctx, api, sdn.EntityID, *flagWebhook); err != nil { - log.Fatalf("[FAILURE] problem adding customer watch: %v", err) - } else { - log.Printf("[SUCCESS] added customer=%s watch", sdn.EntityID) - } - } else { - if err := addCompanyWatch(ctx, api, sdn.EntityID, *flagWebhook); err != nil { - log.Fatalf("[FAILURE] problem adding company watch: %v", err) - } else { - log.Printf("[SUCCESS] added company=%s watch", sdn.EntityID) - } + log.Printf("[SUCCESS] name search passed, query=%q sdn=%q", query, sdn.EntityID) } // Load alt names and addresses diff --git a/cmd/watchmantest/search.go b/cmd/watchmantest/search.go index 5b8ce85..be4c7f6 100644 --- a/cmd/watchmantest/search.go +++ b/cmd/watchmantest/search.go @@ -32,17 +32,6 @@ func searchByName(ctx context.Context, api *moov.APIClient, name string) (*moov. if len(search.SDNs) == 0 { return nil, fmt.Errorf("searchByName: found no SDNs for %q", name) } - - // Find Customer or company - if search.SDNs[0].SdnType == moov.SDNTYPE_INDIVIDUAL { - if err := getCustomer(ctx, api, search.SDNs[0].EntityID); err != nil { - return nil, err - } - } else { - if err := getCompany(ctx, api, search.SDNs[0].EntityID); err != nil { - return nil, err - } - } return &search.SDNs[0], nil } @@ -117,27 +106,3 @@ func getSDNAltNames(ctx context.Context, api *moov.APIClient, id string) error { } return nil } - -func getCustomer(ctx context.Context, api *moov.APIClient, id string) error { - cust, resp, err := api.WatchmanApi.GetOfacCustomer(ctx, id, nil) - if err != nil { - return fmt.Errorf("loadCustomer: %v", err) - } - defer resp.Body.Close() - if cust.ID != id { - return fmt.Errorf("loadCustomer: wrong Customer: expected %s but got %s", id, cust.ID) - } - return nil -} - -func getCompany(ctx context.Context, api *moov.APIClient, id string) error { - company, resp, err := api.WatchmanApi.GetOfacCompany(ctx, id, nil) - if err != nil { - return fmt.Errorf("loadCompany: %v", err) - } - defer resp.Body.Close() - if company.ID != id { - return fmt.Errorf("loadCompany: wrong Company: expected %s but got %s", id, company.ID) - } - return nil -} diff --git a/cmd/watchmantest/watch.go b/cmd/watchmantest/watch.go deleted file mode 100644 index 7298c84..0000000 --- a/cmd/watchmantest/watch.go +++ /dev/null @@ -1,67 +0,0 @@ -// Copyright 2022 The Moov Authors -// Use of this source code is governed by an Apache License -// license that can be found in the LICENSE file. - -package main - -import ( - "context" - "fmt" - - "github.com/moov-io/base" - moov "github.com/moov-io/watchman/client" - - "github.com/antihax/optional" -) - -func addCompanyWatch(ctx context.Context, api *moov.APIClient, id string, webhook string) error { - // add watch - req := moov.OfacWatchRequest{ - AuthToken: base.ID(), - Webhook: webhook, - } - opts := &moov.AddOfacCompanyWatchOpts{ - XRequestID: optional.NewString(*flagRequestID), - } - watch, resp, err := api.WatchmanApi.AddOfacCompanyWatch(ctx, id, req, opts) - if err != nil { - return fmt.Errorf("addCompanyWatch: %v", err) - } - defer resp.Body.Close() - - // remove watch - resp, err = api.WatchmanApi.RemoveOfacCompanyWatch(ctx, id, watch.WatchID, &moov.RemoveOfacCompanyWatchOpts{ - XRequestID: optional.NewString(*flagRequestID), - }) - if err != nil { - return fmt.Errorf("addCompanyWatch: remove: %v", err) - } - resp.Body.Close() - return nil -} - -func addCustomerWatch(ctx context.Context, api *moov.APIClient, id string, webhook string) error { - // add watch - req := moov.OfacWatchRequest{ - AuthToken: base.ID(), - Webhook: webhook, - } - opts := &moov.AddOfacCustomerWatchOpts{ - XRequestID: optional.NewString(*flagRequestID), - } - watch, resp, err := api.WatchmanApi.AddOfacCustomerWatch(ctx, id, req, opts) - if err != nil { - return fmt.Errorf("addCustomerWatch: add: %v", err) - } - resp.Body.Close() - - // remove watch - resp, err = api.WatchmanApi.RemoveOfacCustomerWatch(ctx, id, watch.WatchID, &moov.RemoveOfacCustomerWatchOpts{ - XRequestID: optional.NewString(*flagRequestID), - }) - if err != nil { - return fmt.Errorf("addCustomerWatch: remove: %v", err) - } - resp.Body.Close() - return nil -} diff --git a/docker-compose.yml b/docker-compose.yml index 92cbce4..1c8b4d2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -21,6 +21,9 @@ services: watchman: image: moov/watchman:latest + build: + context: . + dockerfile: ./Dockerfile environment: INITIAL_DATA_DIRECTORY: /data/ volumes: @@ -28,5 +31,6 @@ services: ports: - "8084:8084" - "9094:9094" + networks: intranet: {} diff --git a/docs/Gemfile b/docs/Gemfile index efde910..b4f7a4a 100644 --- a/docs/Gemfile +++ b/docs/Gemfile @@ -20,7 +20,7 @@ end # Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem # and associated library. platforms :mingw, :x64_mingw, :mswin, :jruby do - gem "tzinfo", "~> 1.2" + gem "tzinfo", "~> 2.0" gem "tzinfo-data" end diff --git a/docs/Gemfile.lock b/docs/Gemfile.lock index 397fe9f..3cd35d1 100644 --- a/docs/Gemfile.lock +++ b/docs/Gemfile.lock @@ -1,19 +1,20 @@ GEM remote: https://rubygems.org/ specs: - activesupport (6.0.3.4) + activesupport (6.1.7.6) concurrent-ruby (~> 1.0, >= 1.0.2) - i18n (>= 0.7, < 2) - minitest (~> 5.1) - tzinfo (~> 1.1) - zeitwerk (~> 2.2, >= 2.2.2) - addressable (2.8.0) - public_suffix (>= 2.0.2, < 5.0) - bulma-clean-theme (0.10.5) - jekyll (~> 3.9) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) + zeitwerk (~> 2.3) + addressable (2.8.5) + public_suffix (>= 2.0.2, < 6.0) + base64 (0.2.0) + bulma-clean-theme (0.13.3) + jekyll (>= 3.9, < 5.0) jekyll-feed (~> 0.15) jekyll-paginate (~> 1.1) - jekyll-seo-tag (~> 2.6) + jekyll-seo-tag (~> 2.7) jekyll-sitemap (~> 1.4) kramdown-parser-gfm (~> 1.1) coffee-script (2.4.1) @@ -21,87 +22,87 @@ GEM execjs coffee-script-source (1.11.1) colorator (1.1.0) - commonmarker (0.17.13) - ruby-enum (~> 0.5) - concurrent-ruby (1.1.8) - dnsruby (1.61.5) - simpleidn (~> 0.1) - em-websocket (0.5.2) + commonmarker (0.23.10) + concurrent-ruby (1.2.2) + dnsruby (1.70.0) + simpleidn (~> 0.2.1) + em-websocket (0.5.3) eventmachine (>= 0.12.9) - http_parser.rb (~> 0.6.0) - ethon (0.12.0) - ffi (>= 1.3.0) + http_parser.rb (~> 0) + ethon (0.16.0) + ffi (>= 1.15.0) eventmachine (1.2.7) - execjs (2.7.0) - faraday (1.3.0) - faraday-net_http (~> 1.0) - multipart-post (>= 1.2, < 3) - ruby2_keywords - faraday-net_http (1.0.1) - ffi (1.14.2) + execjs (2.9.1) + faraday (2.7.11) + base64 + faraday-net_http (>= 2.0, < 3.1) + ruby2_keywords (>= 0.0.4) + faraday-net_http (3.0.2) + ffi (1.16.3) forwardable-extended (2.6.0) gemoji (3.0.1) - github-pages (211) - github-pages-health-check (= 1.16.1) - jekyll (= 3.9.0) + github-pages (228) + github-pages-health-check (= 1.17.9) + jekyll (= 3.9.3) jekyll-avatar (= 0.7.0) jekyll-coffeescript (= 1.1.1) - jekyll-commonmark-ghpages (= 0.1.6) + jekyll-commonmark-ghpages (= 0.4.0) jekyll-default-layout (= 0.1.4) jekyll-feed (= 0.15.1) jekyll-gist (= 1.5.0) jekyll-github-metadata (= 2.13.0) + jekyll-include-cache (= 0.2.1) jekyll-mentions (= 1.6.0) jekyll-optional-front-matter (= 0.3.2) jekyll-paginate (= 1.1.0) jekyll-readme-index (= 0.3.0) jekyll-redirect-from (= 0.16.0) jekyll-relative-links (= 0.6.1) - jekyll-remote-theme (= 0.4.2) + jekyll-remote-theme (= 0.4.3) jekyll-sass-converter (= 1.5.2) - jekyll-seo-tag (= 2.7.1) + jekyll-seo-tag (= 2.8.0) jekyll-sitemap (= 1.4.0) jekyll-swiss (= 1.0.0) - jekyll-theme-architect (= 0.1.1) - jekyll-theme-cayman (= 0.1.1) - jekyll-theme-dinky (= 0.1.1) - jekyll-theme-hacker (= 0.1.2) - jekyll-theme-leap-day (= 0.1.1) - jekyll-theme-merlot (= 0.1.1) - jekyll-theme-midnight (= 0.1.1) - jekyll-theme-minimal (= 0.1.1) - jekyll-theme-modernist (= 0.1.1) - jekyll-theme-primer (= 0.5.4) - jekyll-theme-slate (= 0.1.1) - jekyll-theme-tactile (= 0.1.1) - jekyll-theme-time-machine (= 0.1.1) + jekyll-theme-architect (= 0.2.0) + jekyll-theme-cayman (= 0.2.0) + jekyll-theme-dinky (= 0.2.0) + jekyll-theme-hacker (= 0.2.0) + jekyll-theme-leap-day (= 0.2.0) + jekyll-theme-merlot (= 0.2.0) + jekyll-theme-midnight (= 0.2.0) + jekyll-theme-minimal (= 0.2.0) + jekyll-theme-modernist (= 0.2.0) + jekyll-theme-primer (= 0.6.0) + jekyll-theme-slate (= 0.2.0) + jekyll-theme-tactile (= 0.2.0) + jekyll-theme-time-machine (= 0.2.0) jekyll-titles-from-headings (= 0.5.3) jemoji (= 0.12.0) - kramdown (= 2.3.0) + kramdown (= 2.3.2) kramdown-parser-gfm (= 1.1.0) - liquid (= 4.0.3) + liquid (= 4.0.4) mercenary (~> 0.3) minima (= 2.5.1) - nokogiri (>= 1.10.4, < 2.0) + nokogiri (>= 1.13.6, < 2.0) rouge (= 3.26.0) terminal-table (~> 1.4) - github-pages-health-check (1.16.1) + github-pages-health-check (1.17.9) addressable (~> 2.3) dnsruby (~> 1.60) octokit (~> 4.0) - public_suffix (~> 3.0) + public_suffix (>= 3.0, < 5.0) typhoeus (~> 1.3) - html-pipeline (2.14.0) + html-pipeline (2.14.3) activesupport (>= 2) nokogiri (>= 1.4) - http_parser.rb (0.6.0) - i18n (0.9.5) + http_parser.rb (0.8.0) + i18n (1.14.1) concurrent-ruby (~> 1.0) - jekyll (3.9.0) + jekyll (3.9.3) addressable (~> 2.4) colorator (~> 1.0) em-websocket (~> 0.5) - i18n (~> 0.7) + i18n (>= 0.7, < 2) jekyll-sass-converter (~> 1.0) jekyll-watch (~> 2.0) kramdown (>= 1.17, < 3) @@ -115,13 +116,13 @@ GEM jekyll-coffeescript (1.1.1) coffee-script (~> 2.2) coffee-script-source (~> 1.11.1) - jekyll-commonmark (1.3.1) - commonmarker (~> 0.14) - jekyll (>= 3.7, < 5.0) - jekyll-commonmark-ghpages (0.1.6) - commonmarker (~> 0.17.6) - jekyll-commonmark (~> 1.2) - rouge (>= 2.0, < 4.0) + jekyll-commonmark (1.4.0) + commonmarker (~> 0.22) + jekyll-commonmark-ghpages (0.4.0) + commonmarker (~> 0.23.7) + jekyll (~> 3.9.0) + jekyll-commonmark (~> 1.4.0) + rouge (>= 2.0, < 5.0) jekyll-default-layout (0.1.4) jekyll (~> 3.0) jekyll-feed (0.15.1) @@ -131,6 +132,8 @@ GEM jekyll-github-metadata (2.13.0) jekyll (>= 3.4, < 5.0) octokit (~> 4.0, != 4.4.0) + jekyll-include-cache (0.2.1) + jekyll (>= 3.7, < 5.0) jekyll-mentions (1.6.0) html-pipeline (~> 2.3) jekyll (>= 3.7, < 5.0) @@ -143,57 +146,57 @@ GEM jekyll (>= 3.3, < 5.0) jekyll-relative-links (0.6.1) jekyll (>= 3.3, < 5.0) - jekyll-remote-theme (0.4.2) + jekyll-remote-theme (0.4.3) addressable (~> 2.0) jekyll (>= 3.5, < 5.0) jekyll-sass-converter (>= 1.0, <= 3.0.0, != 2.0.0) rubyzip (>= 1.3.0, < 3.0) jekyll-sass-converter (1.5.2) sass (~> 3.4) - jekyll-seo-tag (2.7.1) + jekyll-seo-tag (2.8.0) jekyll (>= 3.8, < 5.0) jekyll-sitemap (1.4.0) jekyll (>= 3.7, < 5.0) jekyll-swiss (1.0.0) - jekyll-theme-architect (0.1.1) - jekyll (~> 3.5) + jekyll-theme-architect (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-cayman (0.1.1) - jekyll (~> 3.5) + jekyll-theme-cayman (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-dinky (0.1.1) - jekyll (~> 3.5) + jekyll-theme-dinky (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-hacker (0.1.2) + jekyll-theme-hacker (0.2.0) jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-leap-day (0.1.1) - jekyll (~> 3.5) + jekyll-theme-leap-day (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-merlot (0.1.1) - jekyll (~> 3.5) + jekyll-theme-merlot (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-midnight (0.1.1) - jekyll (~> 3.5) + jekyll-theme-midnight (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-minimal (0.1.1) - jekyll (~> 3.5) + jekyll-theme-minimal (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-modernist (0.1.1) - jekyll (~> 3.5) + jekyll-theme-modernist (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-primer (0.5.4) + jekyll-theme-primer (0.6.0) jekyll (> 3.5, < 5.0) jekyll-github-metadata (~> 2.9) jekyll-seo-tag (~> 2.0) - jekyll-theme-slate (0.1.1) - jekyll (~> 3.5) + jekyll-theme-slate (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-tactile (0.1.1) - jekyll (~> 3.5) + jekyll-theme-tactile (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-time-machine (0.1.1) - jekyll (~> 3.5) + jekyll-theme-time-machine (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) jekyll-titles-from-headings (0.5.3) jekyll (>= 3.3, < 5.0) @@ -203,12 +206,12 @@ GEM gemoji (~> 3.0) html-pipeline (~> 2.2) jekyll (>= 3.0, < 5.0) - kramdown (2.3.0) + kramdown (2.3.2) rexml kramdown-parser-gfm (1.1.0) kramdown (~> 2.0) - liquid (4.0.3) - listen (3.4.1) + liquid (4.0.4) + listen (3.8.0) rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) mercenary (0.3.6) @@ -216,65 +219,63 @@ GEM jekyll (>= 3.5, < 5.0) jekyll-feed (~> 0.9) jekyll-seo-tag (~> 2.1) - minitest (5.14.3) - multipart-post (2.1.1) - nokogiri (1.13.9-arm64-darwin) + minitest (5.20.0) + nokogiri (1.13.10-arm64-darwin) racc (~> 1.4) - nokogiri (1.13.9-x86_64-darwin) + nokogiri (1.13.10-x86_64-darwin) racc (~> 1.4) - nokogiri (1.13.9-x86_64-linux) + nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) - octokit (4.20.0) - faraday (>= 0.9) - sawyer (~> 0.8.0, >= 0.5.3) + octokit (4.25.1) + faraday (>= 1, < 3) + sawyer (~> 0.9) pathutil (0.16.2) forwardable-extended (~> 2.6) - public_suffix (3.1.1) - racc (1.6.0) - rb-fsevent (0.10.4) + public_suffix (4.0.7) + racc (1.7.3) + rb-fsevent (0.11.2) rb-inotify (0.10.1) ffi (~> 1.0) - rexml (3.2.5) + rexml (3.2.6) rouge (3.26.0) - ruby-enum (0.8.0) - i18n - ruby2_keywords (0.0.4) - rubyzip (2.3.0) + ruby2_keywords (0.0.5) + rubyzip (2.3.2) safe_yaml (1.0.5) sass (3.7.4) sass-listen (~> 4.0.0) sass-listen (4.0.0) rb-fsevent (~> 0.9, >= 0.9.4) rb-inotify (~> 0.9, >= 0.9.7) - sawyer (0.8.2) + sawyer (0.9.2) addressable (>= 2.3.5) - faraday (> 0.8, < 2.0) + faraday (>= 0.17.3, < 3) simpleidn (0.2.1) unf (~> 0.1.4) terminal-table (1.8.0) unicode-display_width (~> 1.1, >= 1.1.1) - thread_safe (0.3.6) typhoeus (1.4.0) ethon (>= 0.9.0) - tzinfo (1.2.10) - thread_safe (~> 0.1) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) unf (0.1.4) unf_ext - unf_ext (0.0.7.7) - unicode-display_width (1.7.0) - zeitwerk (2.4.2) + unf_ext (0.0.9) + unicode-display_width (1.8.0) + zeitwerk (2.6.12) PLATFORMS universal-darwin-20 + universal-darwin-22 + universal-darwin-23 x86_64-linux DEPENDENCIES bulma-clean-theme github-pages jekyll-feed (~> 0.12) - tzinfo (~> 1.2) + tzinfo (~> 2.0) tzinfo-data wdm (~> 0.1.1) BUNDLED WITH - 2.2.7 + 2.2.17 diff --git a/docs/README.md b/docs/README.md index 8484862..bca45a8 100644 --- a/docs/README.md +++ b/docs/README.md @@ -4,7 +4,7 @@ ## Purpose -Moov Watchman is an HTTP API and Go library that offers download, parse, and search functions over numerous trade sanction lists from the United States, agencies, and nonprofits for complying with regional laws. Also included is a web UI and async webhook notification service to initiate processes on remote systems. +Moov Watchman is an HTTP API and Go library that offers download, parse, and search functions over numerous trade sanction lists from the United States and European Union, agencies, and nonprofits for complying with regional laws. Also included is a web UI and async webhook notification service to initiate processes on remote systems. ## Getting help diff --git a/docs/index.md b/docs/index.md index e872d8d..85e67fe 100644 --- a/docs/index.md +++ b/docs/index.md @@ -21,19 +21,24 @@ Lists included in search are: - Includes SDN, SDN Alternative Names, SDN Addresses - [United States Consolidated Screening List](https://www.export.gov/article2?id=Consolidated-Screening-List) - Department of Commerce – Bureau of Industry and Security - - [Denied Persons List](http://www.bis.doc.gov/dpl/default.shtm) - - [Unverified List](http://www.bis.doc.gov/enforcement/unverifiedlist/unverified_parties.html) - - [Entity List](http://www.bis.doc.gov/entities/default.htm) + - [Denied Persons List](https://www.bis.doc.gov/index.php/policy-guidance/lists-of-parties-of-concern/denied-persons-list) + - [Unverified List](https://www.bis.doc.gov/index.php/policy-guidance/lists-of-parties-of-concern/unverified-list) + - [Entity List](https://www.bis.doc.gov/index.php/policy-guidance/lists-of-parties-of-concern/entity-list) - Department of State – Bureau of International Security and Non-proliferation - [Nonproliferation Sanctions](http://www.state.gov/t/isn/c15231.htm) - Department of State – Directorate of Defense Trade Controls - ITAR Debarred (DTC) - Department of the Treasury – Office of Foreign Assets Control - - [Specially Designated Nationals List](http://www.treasury.gov/resource-center/sanctions/SDN-List/Pages/default.aspx) - - [Foreign Sanctions Evaders List](http://www.treasury.gov/resource-center/sanctions/SDN-List/Pages/fse_list.aspx) - - [Sectoral Sanctions Identifications List](http://www.treasury.gov/resource-center/sanctions/SDN-List/Pages/ssi_list.aspx) - - [Palestinian Legislative Council List](https://www.treasury.gov/resource-center/sanctions/Terrorism-Proliferation-Narcotics/Pages/pa.aspx) + - [Specially Designated Nationals List](https://ofac.treasury.gov/specially-designated-nationals-list-data-formats-data-schemas) + - [Foreign Sanctions Evaders List](https://ofac.treasury.gov/consolidated-sanctions-list-non-sdn-lists/foreign-sanctions-evaders-fse-list) + - [Sectoral Sanctions Identifications List](https://ofac.treasury.gov/consolidated-sanctions-list-non-sdn-lists/sectoral-sanctions-identifications-ssi-list) + - [Palestinian Legislative Council List](https://ofac.treasury.gov/consolidated-sanctions-list/non-sdn-palestinian-legislative-council-ns-plc-list) - Department of the Treasury – Office of Foreign Assets Control - - [Sectoral Sanctions Identifications List](http://www.treasury.gov/resource-center/sanctions/SDN-List/Pages/ssi_list.aspx) + - [Sectoral Sanctions Identifications List](https://ofac.treasury.gov/consolidated-sanctions-list-non-sdn-lists/sectoral-sanctions-identifications-ssi-list) +- [EU - Consolidated Sanctions List](https://data.europa.eu/data/datasets/consolidated-list-of-persons-groups-and-entities-subject-to-eu-financial-sanctions?locale=en) + - NOTE: it is recommended to [create your own europa.eu account](https://webgate.ec.europa.eu/cas/login) and then access the [EU Financial Sanctions Files](https://webgate.ec.europa.eu/fsd/fsf) + - Use the token described under the "Show settings for crawler/robot" section +- [UK - OFSI Sactions List](https://www.gov.uk/government/publications/financial-sanctions-consolidated-list-of-targets/consolidated-list-of-targets#contents) +- [UK - Sanctions List](https://www.gov.uk/government/publications/the-uk-sanctions-list) (Disabled by default) All United States and European Union companies are required to comply with various regulations and sanction lists (such as the US Patriot Act requiring compliance with the BIS Denied Persons List). diff --git a/docs/intro.md b/docs/intro.md index d83d66f..7c689f1 100644 --- a/docs/intro.md +++ b/docs/intro.md @@ -8,16 +8,14 @@ menubar: docs-menu ## What is Watchman? -The Watchman project implements an HTTP server and [Go library](https://pkg.go.dev/github.com/moov-io/watchman) for searching, parsing, and downloading lists. We also have an [example](https://pkg.go.dev/github.com/moov-io/watchman/examples) of the webhook service. Below, you can find a detailed list of features offered by Watchman: +The Watchman project implements an HTTP server and [Go library](https://pkg.go.dev/github.com/moov-io/watchman) for searching, parsing, and downloading lists. Below, you can find a detailed list of features offered by Watchman: - Download OFAC, BIS Denied Persons List, Consolidated Screening List, and various other data sources on startup - Admin endpoint to [manually refresh OFAC, CSL, and other data sources](https://moov-io.github.io/watchman/runbook/#force-data-refresh) - Index data for searches -- Async searches and notifications (webhooks) -- Manual overrides to mark an OFAC `Company` or `Customer` as `unsafe` (blocked) or `exception` (never blocked). -- Libraries for OFAC, CSL, and BIS DPL data to download and parse their custom files +- Libraries for OFAC, US CSL, UK/EU CSL, and BIS DPL data to download and parse their custom files -Searching across all sanction lists Watchman uses the [Jaro–Winkler](https://en.wikipedia.org/wiki/Jaro%E2%80%93Winkler_distance) algorithm to score the probability of each search query matching a list entry. This follows after what the [US Treasury OFAC Search](https://home.treasury.gov/policy-issues/financial-sanctions/faqs/topic/1636) uses and what is [recommended in academic literature](https://www.wseas.org/multimedia/journals/computers/2015/a965705-699.pdf). +Searching across all sanction lists Watchman uses the [Jaro–Winkler](https://en.wikipedia.org/wiki/Jaro%E2%80%93Winkler_distance) algorithm to score the probability of each search query matching a list entry. This follows after what the [US Treasury OFAC Search](https://ofac.treasury.gov/faqs/892) uses and what is [recommended in academic literature](https://www.wseas.org/multimedia/journals/computers/2015/a965705-699.pdf). ## FAQ diff --git a/docs/model-validation.md b/docs/model-validation.md index ed997cf..97cee7b 100644 --- a/docs/model-validation.md +++ b/docs/model-validation.md @@ -74,7 +74,7 @@ A web UI is included with Watchman for inspecting OFAC results. - [FDIC Bank Secrecy Act / Anti-Money Laundering](https://www.fdic.gov/resources/bankers/bank-secrecy-act/) - [FFIEC BSA/AML Risk Assessment](https://bsaaml.ffiec.gov/manual/BSAAMLRiskAssessment/01) - [Frequently Asked Questions Regarding Customer Due Diligence Requirements for Financial Institutions](https://www.fincen.gov/sites/default/files/2018-04/FinCEN_Guidance_CDD_FAQ_FINAL_508_2.pdf) -- [OFAC FAQ #249 - How is the Score calculated?](https://home.treasury.gov/policy-issues/financial-sanctions/faqs/topic/1636) +- [OFAC FAQ #249 - How is the Score calculated?](https://ofac.treasury.gov/faqs/249) - [Sound Practices for Model Risk Management: Supervisory Guidance on Model Risk Management](https://www.occ.gov/news-issuances/bulletins/2011/bulletin-2011-12.html) - [Application of Jaro-Winkler String Comparator in Enhancing Veterans Administrative Records](https://nces.ed.gov/FCSM/pdf/H_4HyoParkFCSM2018final.pdf) - [Efficient Approximate Entity Matching Using Jaro-Winkler Distance](https://jqin.gitee.io/files/wise2017-wang.pdf) diff --git a/docs/usage-configuration.md b/docs/usage-configuration.md index 92c5aee..d298465 100644 --- a/docs/usage-configuration.md +++ b/docs/usage-configuration.md @@ -12,6 +12,7 @@ menubar: docs-menu |-----|-----|-----| | `DATA_REFRESH_INTERVAL` | Interval for data redownload and reparse. `off` disables this refreshing. | 12h | | `INITIAL_DATA_DIRECTORY` | Directory filepath with initial files to use instead of downloading. Periodic downloads will replace the initial files. | Empty | +| `ADJACENT_SIMILARITY_POSITIONS` | How many nearby words to search for highest max similarly score. | 3 | | `EXACT_MATCH_FAVORITISM` | Extra weighting assigned to exact matches. | 0.0 | | `JARO_WINKLER_BOOST_THRESHOLD` | Jaro-Winkler boost threshold. | 0.7 | | `JARO_WINKLER_PREFIX_SIZE` | Jaro-Winkler prefix size. | 4 | @@ -55,7 +56,7 @@ Refer to the MySQL driver documentation for [connection parameters](https://gith ### SQLite -- `SQLITE_DB_PATH`: Local filepath location for the paygate SQLite database. (Default: `watchman.db`) +- `SQLITE_DB_PATH`: Local filepath location for the SQLite database. (Default: `watchman.db`) Refer to the SQLite driver documentation for [connection parameters](https://github.com/mattn/go-sqlite3#connection-string). diff --git a/docs/usage-go.md b/docs/usage-go.md index 956b28e..03cd842 100644 --- a/docs/usage-go.md +++ b/docs/usage-go.md @@ -8,7 +8,7 @@ menubar: docs-menu # Go library -This project uses [Go Modules](https://github.com/golang/go/wiki/Modules) and uses Go v1.14 or higher. See [Golang's install instructions](https://golang.org/doc/install) for help setting up Go. You can download the source code and we offer [tagged and released versions](https://github.com/moov-io/watchman/releases/latest) as well. We highly recommend you use a tagged release for production. +This project uses [Go Modules](https://go.dev/blog/using-go-modules) and Go v1.18 or newer. See [Golang's install instructions](https://golang.org/doc/install) for help setting up Go. You can download the source code and we offer [tagged and released versions](https://github.com/moov-io/watchman/releases/latest) as well. We highly recommend you use a tagged release for production. ``` $ git@github.com:moov-io/watchman.git @@ -17,4 +17,4 @@ $ git@github.com:moov-io/watchman.git $ go get -u github.com/moov-io/watchman $ go doc github.com/moov-io/watchman/client Search -``` \ No newline at end of file +``` diff --git a/docs/webhook-notifications.md b/docs/webhook-notifications.md index 4b960a4..380bbb5 100644 --- a/docs/webhook-notifications.md +++ b/docs/webhook-notifications.md @@ -8,40 +8,47 @@ menubar: docs-menu # Webhooks -Watchman supports registering a callback URL (also called a [webhook](https://en.wikipedia.org/wiki/Webhook)) for searches or a given entity ID ([Company](https://moov-io.github.io/watchman/api/#post-/ofac/companies/-companyID-/watch) or [Customer](https://moov-io.github.io/watchman/api/#post-/ofac/customers/-customerID-/watch)). This allows services to monitor for changes to the OFAC data. There's an example [app that receives webhooks](https://github.com/moov-io/watchman/blob/master/examples/webhook/webhook.go) written in Go. Watchman sends either a [Company](https://godoc.org/github.com/moov-io/watchman/client#OfacCompany) or [Customer](https://godoc.org/github.com/moov-io/watchman/client#OfacCustomer) model in JSON to the webhook URL. +Watchman supports registering a callback URL (also called a [webhook](https://en.wikipedia.org/wiki/Webhook)) for notifications on list download and reindexing. Webhook URLs MUST be secure (https://...) and an `Authorization` header is sent with an auth token provided when setting up the webhook. Callers should always verify this auth token matches what was originally provided. -When Watchman sends a [webhook](https://en.wikipedia.org/wiki/Webhook) to your application, the body will contain a JSON representation of the [Company](https://godoc.org/github.com/moov-io/watchman/client#OfacCompany) or [Customer](https://godoc.org/github.com/moov-io/watchman/client#OfacCustomer) model as the body to a POST request. You can see an [example in Go](https://github.com/moov-io/watchman/blob/master/examples/webhook/webhook.go). +When Watchman sends a [webhook](https://en.wikipedia.org/wiki/Webhook) to your application, the body will contain a JSON representation of the `DownloadStats` model (described below) as the body to a POST request. An `Authorization` header will also be sent with the `authToken` provided when setting up the watch. Clients should verify this token to ensure authenticated communicated. Webhook notifications are ran after the OFAC data is successfully refreshed, which is determined by the `DATA_REFRESH_INTERVAL` environmental variable. `WEBHOOK_MAX_WORKERS` can be set to control how many goroutines can process webhooks concurrently -## Watching a specific customer or company by ID - -Moov Watchman supports sending a webhook periodically when a specific [Company](https://moov-io.github.io/watchman/api/#post-/ofac/companies/-companyID-/watch) or [Customer](https://moov-io.github.io/watchman/api/#post-/ofac/customers/-customerID-/watch) is to be watched. This is designed to update another system about an OFAC entry's sanction status. - -## Watching a customer or company name - -Moov Watchman supports sending a webhook periodically with a free-form name of a [Company](https://moov-io.github.io/watchman/api/#post-/ofac/companies/watch) or [Customer](https://moov-io.github.io/watchman/api/#post-/ofac/customers/watch). This allows external applications to be notified when an entity matching that name is added to the OFAC list. The match percentage will be included in the JSON payload. - ## Download / Refresh Watchman can notify when the OFAC, CSL, etc lists are downloaded and re-indexed. The address specified at `DOWNLOAD_WEBHOOK_URL` will be sent a POST HTTP request with the following body. An Authorization header can be specified with `DOWNLOAD_WEBHOOK_AUTH_TOKEN`. ```json { - "addresses": 123, - "altNames": 123, - "SDNs": 123, - "deniedPersons": 321, - "sectoralSanctions": 213, - "militaryEndUsers": 213, - "bisEntities": 213, + "SDNs": 0, + "altNames": 0, + "addresses": 0, + + "deniedPersons": 0, + "bisEntities": 0, + "militaryEndUsers": 0, + "sectoralSanctions": 0, + "unverifiedCSL": 0, + "nonProliferationSanctions": 0, + "foreignSanctionsEvaders": 0, + "palestinianLegislativeCouncil": 0, + "CAPTA": 0, + "ITARDebarred": 0, + "chineseMilitaryIndustrialComplex": 0, + "nonSDNMenuBasedSanctions": 0, + + "europeanSanctionsList": 0, + "ukConsolidatedSanctionsList": 0, + "ukSanctionsList": 0, + "errors": [ "CSL: unexpected error 429" ], + "timestamp": "2009-11-10T23:00:00Z" } ``` diff --git a/examples/webhook/Dockerfile b/examples/webhook/Dockerfile deleted file mode 100644 index b6e9de3..0000000 --- a/examples/webhook/Dockerfile +++ /dev/null @@ -1,16 +0,0 @@ -FROM golang:1.19-alpine as builder -WORKDIR /go/src/github.com/moov-io/watchman -RUN apk add -U make git -RUN adduser -D -g '' --shell /bin/false moov -COPY . . -RUN go mod download -RUN make build-webhook-example -USER moov - -FROM scratch -COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt -COPY --from=builder /go/src/github.com/moov-io/watchman/bin/webhook-example /bin/webhook-example -COPY --from=builder /etc/passwd /etc/passwd -USER moov -EXPOSE 10101 -ENTRYPOINT ["/bin/webhook-example"] diff --git a/examples/webhook/main.go b/examples/webhook/main.go deleted file mode 100644 index 3b0871b..0000000 --- a/examples/webhook/main.go +++ /dev/null @@ -1,81 +0,0 @@ -// Copyright 2022 The Moov Authors -// Use of this source code is governed by an Apache License -// license that can be found in the LICENSE file. - -package main - -import ( - "context" - "flag" - "fmt" - "net/http" - "os" - "os/signal" - "syscall" - "time" - - "github.com/moov-io/base/log" - "github.com/moov-io/watchman" - - "github.com/gorilla/mux" -) - -var ( - httpAddr = flag.String("http.addr", ":10101", "HTTP listen address") -) - -func main() { - flag.Parse() - - logger := log.NewDefaultLogger() - logger.Logf("Starting moov/watchman-webhook-example:%s", watchman.Version) - - // Listen for application termination. - errs := make(chan error) - go func() { - c := make(chan os.Signal, 1) - signal.Notify(c, syscall.SIGINT, syscall.SIGTERM) - errs <- fmt.Errorf("%s", <-c) - }() - - // Setup HTTP handler - handler := mux.NewRouter() - addPingRoute(handler) - addWebhookRoute(logger, handler) - - // Create main HTTP server - serve := &http.Server{ - Addr: *httpAddr, - Handler: handler, - ReadTimeout: 30 * time.Second, - WriteTimeout: 30 * time.Second, - IdleTimeout: 60 * time.Second, - } - shutdownServer := func() { - if err := serve.Shutdown(context.TODO()); err != nil { - logger.LogError(err) - } - } - defer shutdownServer() - - // Start main HTTP server - go func() { - logger.Logf("listening on %s", *httpAddr) - if err := serve.ListenAndServe(); err != nil { - logger.LogError(err) - } - }() - - // Wait for app shutdown - if err := <-errs; err != nil { - logger.LogError(err) - } - os.Exit(0) -} - -func addPingRoute(r *mux.Router) { - r.Methods("GET").Path("/ping").HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - w.Header().Set("Content-Type", "text/plain") - w.Write([]byte("PONG")) - }) -} diff --git a/examples/webhook/webhook.go b/examples/webhook/webhook.go deleted file mode 100644 index c9cc032..0000000 --- a/examples/webhook/webhook.go +++ /dev/null @@ -1,78 +0,0 @@ -// Copyright 2022 The Moov Authors -// Use of this source code is governed by an Apache License -// license that can be found in the LICENSE file. - -package main - -import ( - "bytes" - "encoding/json" - "fmt" - "io" - "net/http" - - "github.com/moov-io/base/log" - "github.com/moov-io/watchman/pkg/ofac" - - "github.com/gorilla/mux" -) - -type Customer struct { - ID string `json:"id"` - SDN *ofac.SDN `json:"sdn"` - Addresses []*ofac.Address `json:"addresses"` - Alts []*ofac.AlternateIdentity `json:"alts"` - Match float64 `json:"match,omitempty"` -} - -type Company struct { - ID string `json:"id,omitempty"` - SDN *ofac.SDN `json:"sdn"` - Addresses []*ofac.Address `json:"addresses"` - Alts []*ofac.AlternateIdentity `json:"alts"` - Match float64 `json:"match,omitempty"` -} - -func addWebhookRoute(logger log.Logger, r *mux.Router) { - r.Methods("POST").Path("/ofac").HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - bs, err := io.ReadAll(io.LimitReader(r.Body, 5*1024*1024)) - if err != nil { - logger.Logf("problem reading request: %v", err) - - w.Header().Set("Content-Type", "application/json; charset=utf-8") - w.WriteHeader(http.StatusBadRequest) - w.Write([]byte(fmt.Sprintf(`{"error": "%s"}`, err))) - } - - if cust := readCustomer(bytes.NewReader(bs)); cust != nil { - logger.Logf("got webhook for Customer %s (%s) match=%.2f", cust.ID, cust.SDN.SDNName, cust.Match) - w.WriteHeader(http.StatusOK) - return - } - if company := readCompany(bytes.NewReader(bs)); company != nil { - logger.Logf("got webhook for Company %s (%s) match=%.2f", company.ID, company.SDN.SDNName, company.Match) - w.WriteHeader(http.StatusOK) - } - - logger.Log("malformed webhook request") - w.Header().Set("Content-Type", "application/json; charset=utf-8") - w.WriteHeader(http.StatusBadRequest) - w.Write([]byte(`{"error": "malformed JSON"}`)) - }) -} - -func readCustomer(r io.Reader) *Customer { - var cust Customer - if err := json.NewDecoder(r).Decode(&cust); err != nil || cust.ID == "" { - return nil - } - return &cust -} - -func readCompany(r io.Reader) *Company { - var company Company - if err := json.NewDecoder(r).Decode(&company); err != nil || company.ID == "" { - return nil - } - return &company -} diff --git a/examples/webhook/webhook_test.go b/examples/webhook/webhook_test.go deleted file mode 100644 index dee633f..0000000 --- a/examples/webhook/webhook_test.go +++ /dev/null @@ -1,98 +0,0 @@ -// Copyright 2022 The Moov Authors -// Use of this source code is governed by an Apache License -// license that can be found in the LICENSE file. - -package main - -import ( - "bytes" - "encoding/json" - "net/http" - "net/http/httptest" - "strings" - "testing" - - "github.com/moov-io/base/log" - "github.com/moov-io/watchman/pkg/ofac" - - "github.com/gorilla/mux" -) - -var ( - exampleCustomer = Customer{ - ID: "320", - SDN: &ofac.SDN{ - EntityID: "306", - SDNName: "BANCO NACIONAL DE CUBA", - SDNType: "individual", - Programs: []string{"CUBA"}, - Title: "", - Remarks: "a.k.a. 'BNC'.", - }, - Addresses: []*ofac.Address{ - { - EntityID: "306", - AddressID: "201", - Address: "Dai-Ichi Bldg. 6th Floor, 10-2 Nihombashi, 2-chome, Chuo-ku", - CityStateProvincePostalCode: "Tokyo 103", - Country: "Japan", - }, - }, - Alts: []*ofac.AlternateIdentity{ - { - EntityID: "306", - AlternateID: "220", - AlternateType: "aka", - AlternateName: "NATIONAL BANK OF CUBA", - }, - }, - } -) - -func TestWebhookRoute(t *testing.T) { - w := httptest.NewRecorder() - logger := log.NewNopLogger() - - var body bytes.Buffer - if err := json.NewEncoder(&body).Encode(exampleCustomer); err != nil { - t.Fatal(err) - } - - router := mux.NewRouter() - addWebhookRoute(logger, router) - - req := httptest.NewRequest("POST", "/ofac", &body) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusOK { - t.Errorf("bogus status code: %d", w.Code) - } -} - -func TestWebhookRoute__bad(t *testing.T) { - logger := log.NewNopLogger() - - router := mux.NewRouter() - addWebhookRoute(logger, router) - - // no body - w := httptest.NewRecorder() - req := httptest.NewRequest("POST", "/ofac", nil) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("bogus status code: %d", w.Code) - } - - // malformed body (wrong JSON) - w = httptest.NewRecorder() - req = httptest.NewRequest("POST", "/ofac", strings.NewReader(`{"thing": "other-object"}`)) - router.ServeHTTP(w, req) - w.Flush() - - if w.Code != http.StatusBadRequest { - t.Errorf("bogus status code: %d", w.Code) - } -} diff --git a/go.mod b/go.mod index 42fcd94..1b157c7 100644 --- a/go.mod +++ b/go.mod @@ -1,44 +1,45 @@ module github.com/moov-io/watchman -go 1.19 +go 1.20 require ( github.com/abadojack/whatlanggo v1.0.1 github.com/antihax/optional v1.0.0 github.com/bbalet/stopwords v1.0.0 - github.com/docker/docker v20.10.13+incompatible - github.com/go-kit/kit v0.12.0 - github.com/go-sql-driver/mysql v1.6.0 - github.com/gorilla/mux v1.8.0 + github.com/go-kit/kit v0.13.0 + github.com/go-sql-driver/mysql v1.7.1 + github.com/gorilla/mux v1.8.1 + github.com/jaswdr/faker v1.19.1 + github.com/knieriem/odf v0.1.0 github.com/lopezator/migrator v0.3.1 - github.com/mattn/go-sqlite3 v1.14.15 - github.com/moov-io/base v0.34.1 + github.com/mattn/go-sqlite3 v1.14.18 + github.com/moov-io/base v0.48.2 github.com/pariz/gountries v0.1.6 - github.com/prometheus/client_golang v1.13.0 - github.com/stretchr/testify v1.8.0 + github.com/prometheus/client_golang v1.17.0 + github.com/stretchr/testify v1.8.4 github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 - go4.org v0.0.0-20201209231011-d4a079459e60 - golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094 - golang.org/x/text v0.3.8 + go4.org v0.0.0-20230225012048-214862532bf5 + golang.org/x/oauth2 v0.14.0 + golang.org/x/text v0.14.0 ) require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.1.2 // indirect - github.com/davecgh/go-spew v1.1.1 // indirect + github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/go-kit/log v0.2.1 // indirect - github.com/go-logfmt/logfmt v0.5.1 // indirect - github.com/golang/protobuf v1.5.2 // indirect - github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect - github.com/pmezard/go-difflib v1.0.0 // indirect - github.com/prometheus/client_model v0.2.0 // indirect - github.com/prometheus/common v0.37.0 // indirect - github.com/prometheus/procfs v0.8.0 // indirect - github.com/rickar/cal/v2 v2.1.6 // indirect - golang.org/x/net v0.0.0-20220826154423-83b083e8dc8b // indirect - golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect - google.golang.org/appengine v1.6.7 // indirect - google.golang.org/protobuf v1.28.1 // indirect + github.com/go-logfmt/logfmt v0.6.0 // indirect + github.com/golang/protobuf v1.5.3 // indirect + github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect + github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect + github.com/prometheus/client_model v0.5.0 // indirect + github.com/prometheus/common v0.45.0 // indirect + github.com/prometheus/procfs v0.12.0 // indirect + github.com/rickar/cal/v2 v2.1.13 // indirect + golang.org/x/crypto v0.15.0 // indirect + golang.org/x/sys v0.14.0 // indirect + google.golang.org/appengine v1.6.8 // indirect + google.golang.org/protobuf v1.31.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) diff --git a/go.sum b/go.sum index 28538e0..1722997 100644 --- a/go.sum +++ b/go.sum @@ -7,7 +7,6 @@ cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxK cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= -cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= @@ -32,94 +31,45 @@ cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2Z cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w99A= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= -cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= -cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= -cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= -cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= -cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow= -cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM= -cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= -cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= -cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= -cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= -cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= -cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= -cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= -cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/VividCortex/gohistogram v1.0.0 h1:6+hBz+qvs0JOrrNhhmR7lFxo5sINxBCGXrdtl/UvroE= github.com/abadojack/whatlanggo v1.0.1 h1:19N6YogDnf71CTHm3Mp2qhYfkRdyvbgwWdd2EPxJRG4= github.com/abadojack/whatlanggo v1.0.1/go.mod h1:66WiQbSbJBIlOZMsvbKe5m6pzQovxCH9B/K8tQB2uoc= -github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= -github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= -github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= -github.com/alexflint/go-filemutex v0.0.0-20171022225611-72bdc8eae2ae/go.mod h1:CgnQgUtFrFz9mxFNtED3jI5tLDjKlOM+oUF/sTk6ps0= -github.com/alexflint/go-filemutex v1.1.0/go.mod h1:7P4iRhttt/nUvUOrYIhcpMzv2G6CY9UnI16Z+UJqRyk= github.com/antihax/optional v1.0.0 h1:xK2lYat7ZLaVVcIuj82J8kIro4V6kDe0AUDFboUCwcg= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= github.com/bbalet/stopwords v1.0.0 h1:0TnGycCtY0zZi4ltKoOGRFIlZHv0WqpoIGUsObjztfo= github.com/bbalet/stopwords v1.0.0/go.mod h1:sAWrQoDMfqARGIn4s6dp7OW7ISrshUD8IP2q3KoqPjc= -github.com/benbjohnson/clock v1.0.3/go.mod h1:bGMdMPoPVvcYyt1gHDf4J2KE153Yf9BuiUKYMaxlTDM= -github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= -github.com/beorn7/perks v0.0.0-20160804104726-4c0e84591b9a/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= -github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= -github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.1.2 h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE= -github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= +github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= -github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= -github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/docker/docker v20.10.13+incompatible h1:5s7uxnKZG+b8hYWlPYUi6x1Sjpq2MSt96d15eLZeHyw= -github.com/docker/docker v20.10.13+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= -github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= -github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= -github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= -github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= -github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= -github.com/envoyproxy/go-control-plane v0.10.1/go.mod h1:AY7fTTXNdv/aJ2O5jwpxAPOWUZ7hQAEvzN5Pf27BkQQ= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/go-ini/ini v1.25.4/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8= -github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/kit v0.12.0 h1:e4o3o3IsBfAKQh5Qbbiqyfu97Ku7jrO/JbohvztANh4= -github.com/go-kit/kit v0.12.0/go.mod h1:lHd+EkCZPIwYItmGDDRdhinkzX2A1sj+M9biaEaizzs= -github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= -github.com/go-kit/log v0.2.0/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBjv0= +github.com/go-kit/kit v0.13.0 h1:OoneCcHKHQ03LfBpoQCUfCluwd2Vt3ohz+kvbJneZAU= +github.com/go-kit/kit v0.13.0/go.mod h1:phqEHMMUbyrCFCTgH48JueqrM3md2HcAZ8N3XE4FKDg= github.com/go-kit/log v0.2.1 h1:MRVx0/zhvdseW+Gza6N9rVzU/IVzaeE1SFI4raAhmBU= github.com/go-kit/log v0.2.1/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBjv0= -github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= -github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= -github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= -github.com/go-logfmt/logfmt v0.5.1 h1:otpy5pqBCBZ1ng9RQ0dPu4PN7ba75Y/aA+UpowDyNVA= -github.com/go-logfmt/logfmt v0.5.1/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs= -github.com/go-sql-driver/mysql v1.6.0 h1:BCTh4TKNUYmOmMUcQ3IipzF5prigylS7XXjEkfCHuOE= -github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= -github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= -github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/go-logfmt/logfmt v0.6.0 h1:wGYYu3uicYdqXVgoYbvnkrPVXkuLM1p1ifugDMEdRi4= +github.com/go-logfmt/logfmt v0.6.0/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs= +github.com/go-sql-driver/mysql v1.7.1 h1:lUIinVbN1DY0xBg0eMOzmmtGoHwWBbvnWubQUrtU8EI= +github.com/go-sql-driver/mysql v1.7.1/go.mod h1:OXbVy3sEdcQ2Doequ6Z5BW6fXNQTmx+9S1MCJN5yJMI= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -129,72 +79,34 @@ github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfb github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= -github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= -github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= -github.com/golang/protobuf v1.0.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= -github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= -github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= -github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= -github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= -github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= -github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= -github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= -github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= +github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.8 h1:e6P7q2lk1O+qJJb4BtCQXlK8vWEO8V1ZeuEdJNOqZyg= -github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/gofuzz v1.1.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= -github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= -github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= +github.com/google/uuid v1.4.0 h1:MtMxsa51/r9yyhkyLsVeVt0B+BGQZzpQiTQ4eHZ8bc4= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI= -github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= +github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY= +github.com/gorilla/mux v1.8.1/go.mod h1:AKf9I4AEqPTmMytcMc0KkNouC66V3BtZ4qD5fmWSiMQ= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/golang-lru v0.5.4 h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/jackc/chunkreader/v2 v2.0.1 h1:i+RDz65UE+mmpjTfyz0MoVTnzeYxroil2G82ki7MGG8= github.com/jackc/pgconn v1.11.0 h1:HiHArx4yFbwl91X3qqIHtUFoiIfLNJXCQRsnzkiwwaQ= @@ -204,116 +116,65 @@ github.com/jackc/pgproto3/v2 v2.2.0 h1:r7JypeP2D3onoQTCxWdTpCtJ4D+qpKr0TxvoyMhZ5 github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b h1:C8S2+VttkHFdOOCXJe+YGfa4vHYwlt4Zx+IVXQ97jYg= github.com/jackc/pgtype v1.10.0 h1:ILnBWrRMSXGczYvmkYD6PsYyVFUNLTnIUJHHDLmqk38= github.com/jackc/pgx/v4 v4.15.0 h1:B7dTkXsdILD3MF987WGGCcg+tvLW6bZJdEcqVFeU//w= -github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= -github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= -github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= +github.com/jaswdr/faker v1.19.1 h1:xBoz8/O6r0QAR8eEvKJZMdofxiRH+F0M/7MU9eNKhsM= +github.com/jaswdr/faker v1.19.1/go.mod h1:x7ZlyB1AZqwqKZgyQlnqEG8FDptmHlncA5u2zY/yi6w= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= -github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= -github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/compress v1.9.5/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= -github.com/klauspost/compress v1.11.3/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= -github.com/klauspost/compress v1.11.13/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= -github.com/klauspost/compress v1.13.1/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8eO+e+Dq5Gzg= -github.com/klauspost/compress v1.13.4/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8eO+e+Dq5Gzg= -github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= -github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= -github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= +github.com/knieriem/odf v0.1.0 h1:9nas0pxrk9EfhD7PouL9RawIaPfETwCnxKCqMjwsjHA= +github.com/knieriem/odf v0.1.0/go.mod h1:jRlg9+5Aya1ajQBX2ltU//o50Kn+cApfrsnkLCBjzJA= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= -github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.2.1 h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI= -github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/lopezator/migrator v0.3.1 h1:ZFPT6aC7+nGWkqhleynABZ6ftycSf6hmHHLOaryq1Og= github.com/lopezator/migrator v0.3.1/go.mod h1:X+lHDMZ9Ci3/KdbypJcQYFFwipVrJsX4fRCQ4QLauYk= -github.com/mattn/go-sqlite3 v1.14.15 h1:vfoHhTN1af61xCRSWzFIWzx2YskyMTwHLrExkBOjvxI= -github.com/mattn/go-sqlite3 v1.14.15/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg= -github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI= -github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= -github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= -github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= -github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= -github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= -github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= -github.com/moov-io/base v0.34.1 h1:oOVHb+sFS0wj4aWBAr/LWdbgRIYI1RmP7XiclIWyREA= -github.com/moov-io/base v0.34.1/go.mod h1:SKRDVIgWvK4lEPenNK4saVVg87z/L8wMDqrWnsdnkjg= -github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/mattn/go-sqlite3 v1.14.18 h1:JL0eqdCOq6DJVNPSvArO/bIV9/P7fbGrV00LZHc+5aI= +github.com/mattn/go-sqlite3 v1.14.18/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg= +github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 h1:jWpvCLoY8Z/e3VKvlsiIGKtc+UG6U5vzxaoagmhXfyg= +github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0/go.mod h1:QUyp042oQthUoa9bqDv0ER0wrtXnBruoNd7aNjkbP+k= +github.com/moov-io/base v0.48.2 h1:BPSNgmwokOVaVzAMJg71L48LCrDYelMfVXJEiZb2zOY= +github.com/moov-io/base v0.48.2/go.mod h1:u1/WC3quR6otC9NrM1TtXSwNti1A/m7MR49RIXY1ee4= github.com/pariz/gountries v0.1.6 h1:Cu8sBSvD6HvAtzinKJ7Yw8q4wAF2dD7oXjA5yDJQt1I= github.com/pariz/gountries v0.1.6/go.mod h1:Et5QWMc75++5nUKSYKNtz/uc+2LHl4LKhNd6zwdTu+0= -github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= -github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= -github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= -github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= -github.com/prometheus/client_golang v1.12.1/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= -github.com/prometheus/client_golang v1.13.0 h1:b71QUfeo5M8gq2+evJdTPfZhYMAU0uKPkyPJ7TPsloU= -github.com/prometheus/client_golang v1.13.0/go.mod h1:vTeo+zgvILHsnnj/39Ou/1fPN5nJFOEMgftOUOmlvYQ= -github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prometheus/client_golang v1.17.0 h1:rl2sfwZMtSthVU752MqfjQozy7blglC+1SOtjMAMh+Q= +github.com/prometheus/client_golang v1.17.0/go.mod h1:VeL+gMmOAxkS2IqfCq0ZmHSL+LjWfWDUmp1mBz9JgUY= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.2.0 h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M= -github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= -github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= -github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.37.0 h1:ccBbHCgIiT9uSoFY0vX8H3zsNR5eLt17/RQLUvn8pXE= -github.com/prometheus/common v0.37.0/go.mod h1:phzohg0JFMnBEFGxTDbfu3QyL5GI8gTQJFhYO5B3mfA= -github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= -github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/procfs v0.8.0 h1:ODq8ZFEaYeCaZOJlZZdJA2AbQR98dSHSM1KW/You5mo= -github.com/prometheus/procfs v0.8.0/go.mod h1:z7EfXMXOkbkqb9IINtpCn86r/to3BnA0uaxHdg830/4= -github.com/rickar/cal/v2 v2.1.6 h1:a3U6CmALL25lBT6KBosITXCnekcNzcQGqGnpRgsVldc= -github.com/rickar/cal/v2 v2.1.6/go.mod h1:/fdlMcx7GjPlIBibMzOM9gMvDBsrK+mOtRXdTzUqV/A= +github.com/prometheus/client_model v0.5.0 h1:VQw1hfvPvk3Uv6Qf29VrPF32JB6rtbgI6cYPYQjL0Qw= +github.com/prometheus/client_model v0.5.0/go.mod h1:dTiFglRmd66nLR9Pv9f0mZi7B7fk5Pm3gvsjB5tr+kI= +github.com/prometheus/common v0.45.0 h1:2BGz0eBc2hdMDLnO/8n0jeB3oPrt2D08CekT0lneoxM= +github.com/prometheus/common v0.45.0/go.mod h1:YJmSTw9BoKxJplESWWxlbyttQR4uaEcGyv9MZjVOJsY= +github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= +github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo= +github.com/rickar/cal/v2 v2.1.13 h1:FENBPXxDPyL1OWGf9ZdpWGcEiGoSjt0UZED8VOxvK0c= +github.com/rickar/cal/v2 v2.1.13/go.mod h1:/fdlMcx7GjPlIBibMzOM9gMvDBsrK+mOtRXdTzUqV/A= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= +github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= github.com/rwcarlsen/goexif v0.0.0-20190401172101-9e8deecbddbd/go.mod h1:hPqNNc0+uJM6H+SuU8sEs5K5IQeKccPqeSjfgcKGgPk= -github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= -github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= -github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= -github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= -github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk= -github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= +github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 h1:bAn7/zixMGCfxrRTfdpNzjtPYqr8smhKouy9mxVdGPU= github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673/go.mod h1:N3UwUGtsrSj3ccvlPHLoLsHnpR27oXr4ZE984MbSER8= -github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go4.org v0.0.0-20201209231011-d4a079459e60 h1:iqAGo78tVOJXELHQFRjR6TMwItrvXH4hrGJ32I/NFF8= -go4.org v0.0.0-20201209231011-d4a079459e60/go.mod h1:CIiUVy99QCPfoE13bO4EZaz5GZMZXMSBGhxRdsvzbkg= -golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +go4.org v0.0.0-20230225012048-214862532bf5 h1:nifaUDeh+rPaBCMPMQHZmvJf+QdpLFnuQPwx+LxVmtc= +go4.org v0.0.0-20230225012048-214862532bf5/go.mod h1:F57wTi5Lrj6WLyswp5EYV1ncrEbFGHD4hhz6S1ZYeaU= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20210915214749-c084706c2272 h1:3erb+vDS8lU1sxfDHF4/hhWyaXnhIaO+7RgL4fDZORA= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.15.0 h1:frVn1TEaCEaZcn3Tmd7Y2b5KKPaZ+I32Q2OA3kYp5TA= +golang.org/x/crypto v0.15.0/go.mod h1:4ChreQoLWfG3xLDer1WdlH5NdlQ3+mwnQq1YTKY+72g= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -323,10 +184,7 @@ golang.org/x/exp v0.0.0-20191002040644-a1355ae1e2c3/go.mod h1:NOZ3BPKG0ec/BKJQgn golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= -golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/image v0.0.0-20190910094157-69e4b8554b2a/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= @@ -344,25 +202,15 @@ golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHl golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= -golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= -golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190225153610-fe579d43d832/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -372,40 +220,20 @@ golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= -golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190619014844-b5b0513f8c1b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220826154423-83b083e8dc8b h1:ZmngSVLe/wycRns9MKikG9OWIEjGcGAkacif7oYQaUY= -golang.org/x/net v0.0.0-20220826154423-83b083e8dc8b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094 h1:2o1E+E8TpNLklK9nHiPiK1uzIYrIHt+cQx3ynCwq9V8= -golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.14.0 h1:P0Vrf/2538nmC0H+pEQ3MNFRRnVR7RlqyVw+bvm26z0= +golang.org/x/oauth2 v0.14.0/go.mod h1:lAtNWgaWfL4cm7j2OV8TxGi9Qb7ECORx8DktCY74OwM= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -413,17 +241,11 @@ golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20190412183630-56d357773e84/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190419153524-e8e3143a4f4a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190514135907-3a4b5fb9f71f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -436,52 +258,31 @@ golang.org/x/sys v0.0.0-20190616124812-15dcb6c0061f/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200217220822-9197077df867/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200622214017-ed371f2e16b4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 h1:WIoqL4EROvwiPdUtaip4VcDdpZ4kha7wBWZrbVKCIZg= -golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.14.0 h1:Vz7Qs629MkJkGyHxUlRHizWJRG2j8fbQKjELVSNhy7Q= +golang.org/x/sys v0.14.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.3.8 h1:nAL+RVCQ9uMn3vJZbV+MRnydTJFPf8qqY42YiA6MrqY= golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= +golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= +golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= @@ -506,33 +307,15 @@ golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtn golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= -golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200505023115-26f46d2f7ef8/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200616133436-c1934b75d054/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= @@ -541,44 +324,13 @@ google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsb google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= -google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= -google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= -google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= -google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= -google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= -google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= -google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= -google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= -google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= -google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= -google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= -google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= -google.golang.org/api v0.59.0/go.mod h1:sT2boj7M9YJxZzgeZqXogmhfmRWDtPzT31xkieUbuZU= -google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= -google.golang.org/api v0.62.0/go.mod h1:dKmwPCydfsad4qCH08MSdgWjfHOyfpd4VtDGgRFdavw= -google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo= -google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g= -google.golang.org/api v0.70.0/go.mod h1:Bs4ZM2HGifEvXwd50TtW70ovgJffJYw2oRCOFU/SkfA= -google.golang.org/api v0.71.0/go.mod h1:4PyU6e6JogV1f9eA4voyrTY2batOLdgZ5qZ5HOCc4j8= -google.golang.org/api v0.74.0/go.mod h1:ZpfMZOVRMywNyvJFeqL9HRWBgAuRfSjJFpe9QtRRyDs= -google.golang.org/appengine v1.0.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c= -google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.8 h1:IhEN5q69dyKagZPYMSdIjS2HqprW324FRQZJcGqPAsM= +google.golang.org/appengine v1.6.8/go.mod h1:1jJ3jBArFh5pcgW8gCtRJnepW8FzD1V44FJffLiz/Ds= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= @@ -591,87 +343,26 @@ google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvx google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200423170343-7949de9c1215/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= -google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto v0.0.0-20200527145253-8367513e4ece/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= -google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= -google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= -google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= -google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= -google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= -google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= -google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= -google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.42.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.43.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= -google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= -google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= -google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= -google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= -google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= -google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= -google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= -google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w= -google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= +google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20141024133853-64131543e789/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= -gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= -gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= @@ -679,8 +370,6 @@ honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWh honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= -honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= diff --git a/makefile b/makefile index f69f73a..90a8d12 100644 --- a/makefile +++ b/makefile @@ -1,9 +1,12 @@ PLATFORM=$(shell uname -s | tr '[:upper:]' '[:lower:]') VERSION := $(shell grep -Eo '(v[0-9]+[\.][0-9]+[\.][0-9]+(-[a-zA-Z0-9]*)?)' version.go) -.PHONY: build build-server build-examples docker release check +.PHONY: run build build-server docker release check test -build: build-server build-batchsearch build-watchmantest build-examples +run: + CGO_ENABLED=1 go run github.com/moov-io/watchman/cmd/server + +build: build-server build-batchsearch build-watchmantest ifeq ($(OS),Windows_NT) @echo "Skipping webui build on Windows." else @@ -19,11 +22,6 @@ build-batchsearch: build-watchmantest: CGO_ENABLED=0 go build -o ./bin/watchmantest github.com/moov-io/watchman/cmd/watchmantest -build-examples: build-webhook-example - -build-webhook-example: - CGO_ENABLED=0 go build -o ./bin/webhook-example github.com/moov-io/watchman/examples/webhook - .PHONY: check check: ifeq ($(OS),Windows_NT) @@ -31,7 +29,7 @@ ifeq ($(OS),Windows_NT) else @wget -O lint-project.sh https://raw.githubusercontent.com/moov-io/infra/master/go/lint-project.sh @chmod +x ./lint-project.sh - COVER_THRESHOLD=70.0 DISABLE_GITLEAKS=true ./lint-project.sh + STRICT_GOLANGCI_LINTERS=no GOLANGCI_LINTERS=gocheckcompilerdirectives,mirror,tenv ./lint-project.sh endif .PHONY: admin @@ -70,7 +68,7 @@ else CGO_ENABLED=1 GOOS=$(PLATFORM) go build -o bin/watchman-$(PLATFORM)-amd64 github.com/moov-io/watchman/cmd/server endif -docker: clean docker-hub docker-openshift docker-static docker-watchmantest docker-webhook +docker: clean docker-hub docker-openshift docker-static docker-watchmantest docker-hub: docker build --pull -t moov/watchman:$(VERSION) -f Dockerfile . @@ -87,10 +85,6 @@ docker-watchmantest: docker build --pull -t moov/watchmantest:$(VERSION) -f ./cmd/watchmantest/Dockerfile . docker tag moov/watchmantest:$(VERSION) moov/watchmantest:latest -docker-webhook: - docker build --pull -t moov/watchman-webhook-example:$(VERSION) -f ./examples/webhook/Dockerfile . - docker tag moov/watchman-webhook-example:$(VERSION) moov/watchman-webhook-example:latest - release: docker AUTHORS go vet ./... go test -coverprofile=cover-$(VERSION).out ./... @@ -101,7 +95,6 @@ release-push: docker push moov/watchman:latest docker push moov/watchman:static docker push moov/watchmantest:$(VERSION) - docker push moov/watchman-webhook-example:$(VERSION) quay-push: docker push quay.io/moov/watchman:$(VERSION) @@ -116,10 +109,12 @@ cover-web: clean-integration: docker-compose kill && docker-compose rm -v -f +# TODO: this test is working but due to a default timeout on the admin server we get an empty reply +# for now this shouldn't hold up out CI pipeline test-integration: clean-integration - docker-compose up -d + docker compose up -d sleep 30 - curl -v http://localhost:9094/data/refresh # hangs until download and parsing completes + time curl -v --max-time 30 http://localhost:9094/data/refresh # hangs until download and parsing completes ./bin/batchsearch -local -threshold 0.95 # From https://github.com/genuinetools/img diff --git a/pkg/csl/download.go b/pkg/csl/download.go index 30413c4..f1da515 100644 --- a/pkg/csl/download.go +++ b/pkg/csl/download.go @@ -10,22 +10,19 @@ import ( "os" "github.com/moov-io/base/log" + "github.com/moov-io/base/strx" "github.com/moov-io/watchman/pkg/download" ) var ( - cslDownloadTemplate = func() string { - if w := os.Getenv("CSL_DOWNLOAD_TEMPLATE"); w != "" { - return w - } - return "https://api.trade.gov/static/consolidated_screening_list/%s" - }() + publicUSDownloadURL = "https://api.trade.gov/static/consolidated_screening_list/%s" + usDownloadURL = strx.Or(os.Getenv("CSL_DOWNLOAD_TEMPLATE"), os.Getenv("US_CSL_DOWNLOAD_URL"), publicUSDownloadURL) ) func Download(logger log.Logger, initialDir string) (string, error) { dl := download.New(logger, download.HTTPClient) - cslURL, err := buildDownloadURL(cslDownloadTemplate) + cslURL, err := buildDownloadURL(usDownloadURL) if err != nil { return "", err } diff --git a/pkg/csl/download_eu.go b/pkg/csl/download_eu.go new file mode 100644 index 0000000..463b4c8 --- /dev/null +++ b/pkg/csl/download_eu.go @@ -0,0 +1,36 @@ +// Copyright 2020 The Moov Authors +// Use of this source code is governed by an Apache License +// license that can be found in the LICENSE file. + +package csl + +import ( + "fmt" + "os" + + "github.com/moov-io/base/log" + "github.com/moov-io/base/strx" + "github.com/moov-io/watchman/pkg/download" +) + +var ( + // Token is hardcoded on the EU site, but we offer an override. + // https://data.europa.eu/data/datasets/consolidated-list-of-persons-groups-and-entities-subject-to-eu-financial-sanctions?locale=en + token = strx.Or(os.Getenv("EU_CSL_TOKEN"), "dG9rZW4tMjAxNw") + publicEUDownloadURL = fmt.Sprintf("https://webgate.ec.europa.eu/fsd/fsf/public/files/csvFullSanctionsList_1_1/content?token=%s", token) + + euDownloadURL = strx.Or(os.Getenv("EU_CSL_DOWNLOAD_URL"), publicEUDownloadURL) +) + +func DownloadEU(logger log.Logger, initialDir string) (string, error) { + dl := download.New(logger, download.HTTPClient) + + euCSLNameAndSource := make(map[string]string) + euCSLNameAndSource["eu_csl.csv"] = euDownloadURL + + file, err := dl.GetFiles(initialDir, euCSLNameAndSource) + if len(file) == 0 || err != nil { + return "", fmt.Errorf("eu csl download: %v", err) + } + return file[0], nil +} diff --git a/pkg/csl/download_eu_test.go b/pkg/csl/download_eu_test.go new file mode 100644 index 0000000..0984009 --- /dev/null +++ b/pkg/csl/download_eu_test.go @@ -0,0 +1,73 @@ +// Copyright 2020 The Moov Authors +// Use of this source code is governed by an Apache License +// license that can be found in the LICENSE file. + +package csl + +import ( + "fmt" + "os" + "path/filepath" + "strings" + "testing" + + "github.com/moov-io/base/log" +) + +func TestEUDownload(t *testing.T) { + if testing.Short() { + return + } + + file, err := DownloadEU(log.NewNopLogger(), "") + if err != nil { + t.Fatal(err) + } + fmt.Println("file in test: ", file) + if file == "" { + t.Fatal("no EU CSL file") + } + defer os.RemoveAll(filepath.Dir(file)) + + if !strings.EqualFold("eu_csl.csv", filepath.Base(file)) { + t.Errorf("unknown file %s", file) + } +} + +func TestEUDownload_initialDir(t *testing.T) { + dir, err := os.MkdirTemp("", "iniital-dir") + if err != nil { + t.Fatal(err) + } + defer os.RemoveAll(dir) + + mk := func(t *testing.T, name string, body string) { + path := filepath.Join(dir, name) + if err := os.WriteFile(path, []byte(body), 0600); err != nil { + t.Fatalf("writing %s: %v", path, err) + } + } + + // create each file + mk(t, "eu_csl.csv", "file=eu_csl.csv") + + file, err := DownloadEU(log.NewNopLogger(), dir) + if err != nil { + t.Fatal(err) + } + if file == "" { + t.Fatal("no EU CSL file") + } + + if strings.EqualFold("eu_csl.csv", filepath.Base(file)) { + bs, err := os.ReadFile(file) + if err != nil { + t.Fatal(err) + } + if v := string(bs); v != "file=eu_csl.csv" { + t.Errorf("eu_csl.csv: %v", v) + } + } else { + t.Fatalf("unknown file: %v", file) + } +} diff --git a/pkg/csl/download_uk.go b/pkg/csl/download_uk.go new file mode 100644 index 0000000..cd0d40c --- /dev/null +++ b/pkg/csl/download_uk.go @@ -0,0 +1,50 @@ +// Copyright 2020 The Moov Authors +// Use of this source code is governed by an Apache License +// license that can be found in the LICENSE file. + +package csl + +import ( + "fmt" + "os" + + "github.com/moov-io/base/log" + "github.com/moov-io/base/strx" + "github.com/moov-io/watchman/pkg/download" +) + +var ( + // taken from https://www.gov.uk/government/publications/financial-sanctions-consolidated-list-of-targets/consolidated-list-of-targets#contents + publicUKCSLDownloadURL = "https://ofsistorage.blob.core.windows.net/publishlive/2022format/ConList.csv" + ukCSLDownloadURL = strx.Or(os.Getenv("UK_CSL_DOWNLOAD_URL"), publicUKCSLDownloadURL) + + // https://www.gov.uk/government/publications/the-uk-sanctions-list + publicUKSanctionsListURL = "https://assets.publishing.service.gov.uk/government/uploads/system/uploads/attachment_data/file/1121113/UK_Sanctions_List.ods" + ukSanctionsListURL = strx.Or(os.Getenv("UK_SANCTIONS_LIST_URL"), publicUKSanctionsListURL) +) + +func DownloadUKCSL(logger log.Logger, initialDir string) (string, error) { + dl := download.New(logger, download.HTTPClient) + + ukCSLNameAndSource := make(map[string]string) + ukCSLNameAndSource["ConList.csv"] = ukCSLDownloadURL + + file, err := dl.GetFiles(initialDir, ukCSLNameAndSource) + if len(file) == 0 || err != nil { + return "", fmt.Errorf("uk csl download: %v", err) + } + return file[0], nil +} + +func DownloadUKSanctionsList(logger log.Logger, initialDir string) (string, error) { + dl := download.New(logger, download.HTTPClient) + + ukSanctionsNameAndSource := make(map[string]string) + ukSanctionsNameAndSource["UK_Sanctions_List.ods"] = ukSanctionsListURL + + file, err := dl.GetFiles(initialDir, ukSanctionsNameAndSource) + if len(file) == 0 || err != nil { + return "", fmt.Errorf("uk download: %v", err) + } + return file[0], nil +} diff --git a/pkg/csl/download_uk_test.go b/pkg/csl/download_uk_test.go new file mode 100644 index 0000000..cd0952c --- /dev/null +++ b/pkg/csl/download_uk_test.go @@ -0,0 +1,131 @@ +// Copyright 2020 The Moov Authors +// Use of this source code is governed by an Apache License +// license that can be found in the LICENSE file. + +package csl + +import ( + "fmt" + "os" + "path/filepath" + "strings" + "testing" + + "github.com/moov-io/base/log" +) + +func TestUKCSLDownload(t *testing.T) { + if testing.Short() { + return + } + + file, err := DownloadUKCSL(log.NewNopLogger(), "") + if err != nil { + t.Fatal(err) + } + fmt.Println("file in test: ", file) + if file == "" { + t.Fatal("no UK CSL file") + } + defer os.RemoveAll(filepath.Dir(file)) + + if !strings.EqualFold("ConList.csv", filepath.Base(file)) { + t.Errorf("unknown file %s", file) + } +} + +func TestUKCSLDownload_initialDir(t *testing.T) { + dir, err := os.MkdirTemp("", "iniital-dir") + if err != nil { + t.Fatal(err) + } + defer os.RemoveAll(dir) + + mk := func(t *testing.T, name string, body string) { + path := filepath.Join(dir, name) + if err := os.WriteFile(path, []byte(body), 0600); err != nil { + t.Fatalf("writing %s: %v", path, err) + } + } + + // create each file + mk(t, "ConList.csv", "file=ConList.csv") + + file, err := DownloadUKCSL(log.NewNopLogger(), dir) + if err != nil { + t.Fatal(err) + } + if file == "" { + t.Fatal("no UK CSL file") + } + + if strings.EqualFold("ConList.csv", filepath.Base(file)) { + bs, err := os.ReadFile(file) + if err != nil { + t.Fatal(err) + } + if v := string(bs); v != "file=ConList.csv" { + t.Errorf("ConList.csv: %v", v) + } + } else { + t.Fatalf("unknown file: %v", file) + } +} + +func TestUKSanctionsListDownload(t *testing.T) { + if testing.Short() { + return + } + + file, err := DownloadUKSanctionsList(log.NewNopLogger(), "") + if err != nil { + t.Fatal(err) + } + fmt.Println("file in test: ", file) + if file == "" { + t.Fatal("no UK Sanctions List file") + } + defer os.RemoveAll(filepath.Dir(file)) + + if !strings.EqualFold("UK_Sanctions_List.ods", filepath.Base(file)) { + t.Errorf("unknown file %s", file) + } +} + +func TestUKSanctionsListDownload_initialDir(t *testing.T) { + dir, err := os.MkdirTemp("", "iniital-dir") + if err != nil { + t.Fatal(err) + } + defer os.RemoveAll(dir) + + mk := func(t *testing.T, name string, body string) { + path := filepath.Join(dir, name) + if err := os.WriteFile(path, []byte(body), 0600); err != nil { + t.Fatalf("writing %s: %v", path, err) + } + } + + // create each file + mk(t, "UK_Sanctions_List.ods", "file=UK_Sanctions_List.ods") + + file, err := DownloadUKSanctionsList(log.NewNopLogger(), dir) + if err != nil { + t.Fatal(err) + } + if file == "" { + t.Fatal("no UK Sanctions List file") + } + + if strings.EqualFold("UK_Sanctions_List.ods", filepath.Base(file)) { + _, err := os.ReadFile(file) + if err != nil { + t.Fatal(err) + } + // if v := string(bs); v != "file=UK_Sanctions_List.ods" { + // t.Errorf("UK_Sanctions_List.ods: %v", v) + // } + } else { + t.Fatalf("unknown file: %v", file) + } +} diff --git a/pkg/csl/eu_csl.go b/pkg/csl/eu_csl.go new file mode 100644 index 0000000..b9790dc --- /dev/null +++ b/pkg/csl/eu_csl.go @@ -0,0 +1,161 @@ +package csl + +// CLS - Consolidated List Sanctions from European Union + +// struct to hold the rows from the csv data before merge +type EUCSL map[int]*EUCSLRecord + +type EUCSLRecord struct { + FileGenerationDate string `json:"fileGenerationDate"` + EntityLogicalID int `json:"entityLogicalId"` + EntityRemark string `json:"entityRemark"` + EntitySubjectType string `json:"entitySubjectType"` + EntityPublicationURL string `json:"entityPublicationURL"` + EntityReferenceNumber string `json:"entityReferenceNumber"` + NameAliasWholeNames []string `json:"nameAliasWholeNames"` + NameAliasTitles []string `json:"nameAliasTitles"` + AddressCities []string `json:"addressCities"` + AddressStreets []string `json:"addressStreets"` + AddressPoBoxes []string `json:"addressPoBoxs"` + AddressZipCodes []string `json:"addressZipCodes"` + AddressCountryDescriptions []string `json:"addressCountryDescriptions"` + BirthDates []string `json:"birthDates"` + BirthCities []string `json:"birthCities"` + BirthCountries []string `json:"birthCountries"` + ValidFromTo map[string]string `json:"validFromTo"` +} + +// header indicies +const ( + FileGenerationDateIdx = 0 + EntityLogicalIdx = 1 + ReferenceNumberIdx = 2 + EntityRemarkIdx = 6 + EntitySubjectTypeIdx = 8 + EntityRegulationPublicationURLIdx = 15 + + NameAliasWholeNameIdx = 19 + NameAliasTitleIdx = 22 + + AddressCityIdx = 34 + AddressStreetIdx = 35 + AddressPoBoxIdx = 36 + AddressZipCodeIdx = 37 + AddressCountryDescriptionIdx = 43 + + BirthDateIdx = 54 + BirthDateCityIdx = 65 + BirthDateCountryIdx = 67 + + IdentificationValidFromIdx = 86 + IdentificationValidToIdx = 87 +) + +// below is the original struct used to parse the document +// fields commented out are not parsed +// this was refactored to be a flatter structure but is left in for documentation +// use the EUCSLRecord struct above +type EUCSLRow struct { + FileGenerationDate string `json:"fileGenerationDate"` + Entity *Entity `json:"entity"` + NameAliases []*NameAlias `json:"nameAliases"` + Addresses []*Address `json:"addresses"` + BirthDates []*BirthDate `json:"birthDates"` + Identifications []*Identification `json:"identifications"` +} + +type Entity struct { + LogicalID int `json:"logicalId"` + ReferenceNumber string `json:"referenceNumber"` + // UnitiedNationsID string + // DesignationDate string + // DesignationDetails string + Remark string `json:"remark"` + SubjectType *SubjectType `json:"subjectType"` + Regulation *Regulation `json:"regulation"` +} +type SubjectType struct { + // SingleLetter string + ClassificationCode string `json:"classificationCode"` +} +type Regulation struct { + // Type string + // OrganizationType string + // PublicationDate string + // EntryInfoForceDate string + // NumberTitle string + // Programme string + PublicationURL string `json:"publicationURL"` +} + +type NameAlias struct { // AltNames + // LastName string + // FirstName string + // MiddleName string + WholeName string `json:"wholeName"` + // NameLanguage string + // Gender string + Title string `json:"title"` + // Function string + // LogicalID int64 + // RegulationLanguage string + // Remark string + // Regulation *Regulation +} +type Address struct { // addresses + City string `json:"city"` + Street string `json:"street"` + PoBox string `json:"poBox"` + ZipCode string `json:"zipCode"` + // Region string + // Place string + // AsAtListingTime string + // ContactInfo string + // CountryIso2code string + CountryDescription string `json:"countryDescription"` + // LogicalID int64 + // RegulationLanguage string + // Remark string + // Regulation *Regulation +} +type BirthDate struct { + BirthDate string // keep + // Day int64 + // Month int64 + // Year int64 + // YearRangeFrom string + // YearRangeTo string + // Circa string + // CaldendarType string + // ZipCode string + // Region string + // Place string + City string `json:"city"` + // CountryIso2code string + CountryDescription string `json:"countryDescription"` + // LogicalID int64 + // Regulation *Regulation +} + +type Identification struct { + // Regulation *Regulation + // Number int64 + // KnownExpired bool + // KnownFalse bool + // ReportedLost bool + // RevokedByIssuer bool + // LogicalID int64 + // Diplomatic string + // IssuedBy string + // IssuedDate string + ValidFrom string `json:"validFrom"` + ValidTo string `json:"validTo"` + // NameOnDocument string + // TypeCode string + // TypeDescription string + // Region string + // CountryIso2code string + // CountryDescription string + // RegulationLanguage string + // Remark string +} diff --git a/pkg/csl/reader_eu.go b/pkg/csl/reader_eu.go new file mode 100644 index 0000000..9bad7a0 --- /dev/null +++ b/pkg/csl/reader_eu.go @@ -0,0 +1,163 @@ +package csl + +import ( + "encoding/csv" + "errors" + "fmt" + "io" + "os" + "strconv" +) + +func ReadEUFile(path string) ([]*EUCSLRecord, EUCSL, error) { + fd, err := os.Open(path) + if err != nil { + return nil, nil, err + } + defer fd.Close() + + rows, rowsMap, err := ParseEU(fd) + if err != nil { + return nil, nil, err + } + + return rows, rowsMap, nil +} + +func ParseEU(r io.Reader) ([]*EUCSLRecord, EUCSL, error) { + reader := csv.NewReader(r) + // sets comma delim to ; and ignores " in non quoted field and size of columns + // https://stackoverflow.com/questions/31326659/golang-csv-error-bare-in-non-quoted-field + // https://stackoverflow.com/questions/61336787/how-do-i-fix-the-wrong-number-of-fields-with-the-missing-commas-in-csv-file-in + reader.Comma = ';' + reader.LazyQuotes = true + + report := make(EUCSL) + _, err := reader.Read() + if err != nil { + return nil, report, fmt.Errorf("failed to read csv: %w", err) + } + for { + record, err := reader.Read() + if err != nil { + // reached the last line + if errors.Is(err, io.EOF) { + break + } + // malformed row + if errors.Is(err, csv.ErrFieldCount) || + errors.Is(err, csv.ErrBareQuote) || + errors.Is(err, csv.ErrQuote) { + continue + } + return nil, nil, err + } + + if len(record) <= 1 { + continue // skip empty records + } + + // merge rows at this point + // for each record we need to add that to the map + logicalID, _ := strconv.Atoi(record[EntityLogicalIdx]) + // check if entry does not exist + if val, ok := report[logicalID]; !ok { + // creates the initial record + row := new(EUCSLRecord) + unmarshalRecord(record, row) + + report[logicalID] = row + } else { + // we found an entry in the map and need to append + unmarshalRecord(record, val) + } + + } + var totalReport []*EUCSLRecord + for _, row := range report { + totalReport = append(totalReport, row) + } + return totalReport, report, nil +} + +func unmarshalRecord(csvRecord []string, euCSLRecord *EUCSLRecord) { + euCSLRecord.EntityLogicalID, _ = strconv.Atoi(csvRecord[EntityLogicalIdx]) + + // entity + if csvRecord[FileGenerationDateIdx] != "" { + euCSLRecord.FileGenerationDate = csvRecord[FileGenerationDateIdx] + } + if csvRecord[ReferenceNumberIdx] != "" { + euCSLRecord.EntityReferenceNumber = csvRecord[ReferenceNumberIdx] + } + if csvRecord[EntityRemarkIdx] != "" { + euCSLRecord.EntityRemark = csvRecord[EntityRemarkIdx] + } + if csvRecord[EntitySubjectTypeIdx] != "" { + euCSLRecord.EntitySubjectType = csvRecord[EntitySubjectTypeIdx] + } + if csvRecord[EntityRegulationPublicationURLIdx] != "" { + euCSLRecord.EntityPublicationURL = csvRecord[EntityRegulationPublicationURLIdx] + } + + // name alias + if csvRecord[NameAliasWholeNameIdx] != "" { + if !arrayContains(euCSLRecord.NameAliasWholeNames, csvRecord[NameAliasWholeNameIdx]) { + euCSLRecord.NameAliasWholeNames = append(euCSLRecord.NameAliasWholeNames, csvRecord[NameAliasWholeNameIdx]) + } + } + if csvRecord[NameAliasTitleIdx] != "" { + if !arrayContains(euCSLRecord.NameAliasTitles, csvRecord[NameAliasTitleIdx]) { + euCSLRecord.NameAliasTitles = append(euCSLRecord.NameAliasTitles, csvRecord[NameAliasTitleIdx]) + } + } + // address + if csvRecord[AddressCityIdx] != "" { + if !arrayContains(euCSLRecord.AddressCities, csvRecord[AddressCityIdx]) { + euCSLRecord.AddressCities = append(euCSLRecord.AddressCities, csvRecord[AddressCityIdx]) + } + } + if csvRecord[AddressStreetIdx] != "" { + if !arrayContains(euCSLRecord.AddressStreets, csvRecord[AddressStreetIdx]) { + euCSLRecord.AddressStreets = append(euCSLRecord.AddressStreets, csvRecord[AddressStreetIdx]) + } + } + if csvRecord[AddressPoBoxIdx] != "" { + if !arrayContains(euCSLRecord.AddressPoBoxes, csvRecord[AddressPoBoxIdx]) { + euCSLRecord.AddressPoBoxes = append(euCSLRecord.AddressPoBoxes, csvRecord[AddressPoBoxIdx]) + } + } + if csvRecord[AddressZipCodeIdx] != "" { + if !arrayContains(euCSLRecord.AddressZipCodes, csvRecord[AddressZipCodeIdx]) { + euCSLRecord.AddressZipCodes = append(euCSLRecord.AddressZipCodes, csvRecord[AddressZipCodeIdx]) + } + } + if csvRecord[AddressCountryDescriptionIdx] != "" { + if !arrayContains(euCSLRecord.AddressCountryDescriptions, csvRecord[AddressCountryDescriptionIdx]) { + euCSLRecord.AddressCountryDescriptions = append(euCSLRecord.AddressCountryDescriptions, csvRecord[AddressCountryDescriptionIdx]) + } + } + + // birthdate + if csvRecord[BirthDateIdx] != "" { + if !arrayContains(euCSLRecord.BirthDates, csvRecord[BirthDateIdx]) { + euCSLRecord.BirthDates = append(euCSLRecord.BirthDates, csvRecord[BirthDateIdx]) + } + } + if csvRecord[BirthDateCityIdx] != "" { + if !arrayContains(euCSLRecord.BirthCities, csvRecord[BirthDateCityIdx]) { + euCSLRecord.BirthCities = append(euCSLRecord.BirthCities, csvRecord[BirthDateCityIdx]) + } + } + if csvRecord[BirthDateCountryIdx] != "" { + if !arrayContains(euCSLRecord.BirthCountries, csvRecord[BirthDateCountryIdx]) { + euCSLRecord.BirthCountries = append(euCSLRecord.BirthCountries, csvRecord[BirthDateCountryIdx]) + } + } + + // identifications + if csvRecord[IdentificationValidFromIdx] != "" { + euCSLRecord.ValidFromTo = make(map[string]string) + euCSLRecord.ValidFromTo[csvRecord[IdentificationValidFromIdx]] = csvRecord[IdentificationValidToIdx] + } +} diff --git a/pkg/csl/reader_eu_test.go b/pkg/csl/reader_eu_test.go new file mode 100644 index 0000000..b4cbd5c --- /dev/null +++ b/pkg/csl/reader_eu_test.go @@ -0,0 +1,65 @@ +package csl + +import ( + "path/filepath" + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestReadEU(t *testing.T) { + euCSL, euCSLMap, err := ReadEUFile(filepath.Join("..", "..", "test", "testdata", "eu_csl.csv")) + if err != nil { + t.Fatal(err) + } + if euCSL == nil || euCSLMap == nil { + t.Fatal("failed to parse eu_csl.csv") + } + + if len(euCSL) == 0 { + t.Fatal("failed to convert map to sheet") + } + + testLogicalID := 13 + + if euCSLMap[testLogicalID] == nil { + t.Fatalf("expected a record at %d and got nil", testLogicalID) + } + expectedFileGenerationDate := "28/10/2022" + expectedReferenceNumber := "EU.27.28" + expectedEntityRemark := "(UNSC RESOLUTION 1483)" + expectedClassificationCode := "person" + expectedPublicationURL := "http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF" + + // Name alias + expectedNameAliasWholeName1 := "Saddam Hussein Al-Tikriti" + expectedNameAliasWholeName2 := "Abu Ali" + expectedNameAliasWholeName3 := "Abou Ali" + expectedWholeNames := []string{expectedNameAliasWholeName1, expectedNameAliasWholeName2, expectedNameAliasWholeName3} + + // Address + // No address found for this record + + expectedBirthDate := "1937-04-28" + expectedBirthCity := "al-Awja, near Tikrit" + expectedBirthCountryDescription := "IRAQ" + + assert.Equal(t, euCSLMap[testLogicalID].FileGenerationDate, expectedFileGenerationDate) + + // Entity + assert.Equal(t, expectedReferenceNumber, euCSLMap[testLogicalID].EntityReferenceNumber) + assert.Equal(t, expectedEntityRemark, euCSLMap[testLogicalID].EntityRemark) + assert.Equal(t, expectedClassificationCode, euCSLMap[testLogicalID].EntitySubjectType) + assert.Equal(t, expectedPublicationURL, euCSLMap[testLogicalID].EntityPublicationURL) + + // Name Alias + assert.Equal(t, len(expectedWholeNames), len(euCSLMap[testLogicalID].NameAliasWholeNames)) + assert.Equal(t, expectedNameAliasWholeName1, euCSLMap[testLogicalID].NameAliasWholeNames[0]) + assert.Equal(t, expectedNameAliasWholeName2, euCSLMap[testLogicalID].NameAliasWholeNames[1]) + assert.Equal(t, expectedNameAliasWholeName3, euCSLMap[testLogicalID].NameAliasWholeNames[2]) + + // BirthDate + assert.Equal(t, expectedBirthDate, euCSLMap[testLogicalID].BirthDates[0]) + assert.Equal(t, expectedBirthCity, euCSLMap[testLogicalID].BirthCities[0]) + assert.Equal(t, expectedBirthCountryDescription, euCSLMap[testLogicalID].BirthCountries[0]) +} diff --git a/pkg/csl/reader_test.go b/pkg/csl/reader_test.go index ebaf5ba..d0b5b3e 100644 --- a/pkg/csl/reader_test.go +++ b/pkg/csl/reader_test.go @@ -50,7 +50,7 @@ func TestRead_missingRow(t *testing.T) { require.NoError(t, err) t.Cleanup(func() { os.Remove(fd.Name()) }) - _, err = fd.Write([]byte(` \n invalid \n \n`)) + _, err = fd.WriteString(` \n invalid \n \n`) require.NoError(t, err) resp, err := ReadFile(fd.Name()) diff --git a/pkg/csl/reader_uk.go b/pkg/csl/reader_uk.go new file mode 100644 index 0000000..39f3786 --- /dev/null +++ b/pkg/csl/reader_uk.go @@ -0,0 +1,390 @@ +package csl + +import ( + "bytes" + "encoding/csv" + "errors" + "io" + "os" + "strconv" + "strings" + + "github.com/knieriem/odf/ods" +) + +func ReadUKCSLFile(path string) ([]*UKCSLRecord, UKCSL, error) { + if path == "" { + return nil, nil, errors.New("path was empty for ukcsl file") + } + fd, err := os.Open(path) + if err != nil { + return nil, nil, err + } + defer fd.Close() + + rows, rowsMap, err := ParseUKCSL(fd) + if err != nil { + return nil, nil, err + } + + return rows, rowsMap, nil +} + +func ParseUKCSL(r io.Reader) ([]*UKCSLRecord, UKCSL, error) { + reader := csv.NewReader(r) + reader.FieldsPerRecord = 36 + + report := make(UKCSL) + // read and ignore first two rows + for i := 0; i <= 1; i++ { + reader.Read() + } + + for { + record, err := reader.Read() + if err != nil { + // reached the last line + if errors.Is(err, io.EOF) { + break + } + // malformed row + if errors.Is(err, csv.ErrFieldCount) || + errors.Is(err, csv.ErrBareQuote) || + errors.Is(err, csv.ErrQuote) { + continue + } + return nil, nil, err + } + + if len(record) <= 1 { + continue // skip empty records + } + + // merge rows at this point + // for each record we need to add that to the map + groupID, err := strconv.Atoi(record[GroupdIdx]) + if err != nil { + return nil, nil, err + } + + // check if entry does not exist + if val, ok := report[groupID]; !ok { + // creates the initial record + row := new(UKCSLRecord) + unmarshalUKCSLRecord(record, row) + + report[groupID] = row + } else { + // we found an entry in the map and need to append + unmarshalUKCSLRecord(record, val) + } + + } + var totalReport []*UKCSLRecord + for _, row := range report { + totalReport = append(totalReport, row) + } + return totalReport, report, nil +} + +func unmarshalUKCSLRecord(csvRecord []string, ukCSLRecord *UKCSLRecord) { + var names []string + if csvRecord[UKNameIdx] != "" { + names = append(names, csvRecord[UKNameIdx]) + } + if csvRecord[UKNameTwoIdx] != "" { + names = append(names, csvRecord[UKNameTwoIdx]) + } + if csvRecord[UKNameThreeIdx] != "" { + names = append(names, csvRecord[UKNameThreeIdx]) + } + if csvRecord[UKNameFourIdx] != "" { + names = append(names, csvRecord[UKNameFourIdx]) + } + if csvRecord[UKNameFiveIdx] != "" { + names = append(names, csvRecord[UKNameFiveIdx]) + } + name := strings.Join(names, " ") + if !arrayContains(ukCSLRecord.Names, name) { + ukCSLRecord.Names = append(ukCSLRecord.Names, name) + } + + if csvRecord[UKTitleIdx] != "" { + if !arrayContains(ukCSLRecord.Titles, csvRecord[UKTitleIdx]) { + ukCSLRecord.Titles = append(ukCSLRecord.Titles, csvRecord[UKTitleIdx]) + } + } + if csvRecord[DOBhIdx] != "" { + if !arrayContains(ukCSLRecord.DatesOfBirth, csvRecord[DOBhIdx]) { + ukCSLRecord.DatesOfBirth = append(ukCSLRecord.DatesOfBirth, csvRecord[DOBhIdx]) + } + } + if csvRecord[TownOfBirthIdx] != "" { + if !arrayContains(ukCSLRecord.TownsOfBirth, csvRecord[TownOfBirthIdx]) { + ukCSLRecord.TownsOfBirth = append(ukCSLRecord.TownsOfBirth, csvRecord[TownOfBirthIdx]) + } + } + if csvRecord[CountryOfBirthIdx] != "" { + if !arrayContains(ukCSLRecord.CountriesOfBirth, csvRecord[CountryOfBirthIdx]) { + ukCSLRecord.CountriesOfBirth = append(ukCSLRecord.CountriesOfBirth, csvRecord[CountryOfBirthIdx]) + } + } + if csvRecord[UKNationalitiesIdx] != "" { + if !arrayContains(ukCSLRecord.Nationalities, csvRecord[UKNationalitiesIdx]) { + ukCSLRecord.Nationalities = append(ukCSLRecord.Nationalities, csvRecord[UKNationalitiesIdx]) + } + } + + var addresses []string + if csvRecord[AddressOneIdx] != "" { + addresses = append(addresses, csvRecord[AddressOneIdx]) + } + if csvRecord[AddressTwoIdx] != "" { + addresses = append(addresses, csvRecord[AddressTwoIdx]) + } + if csvRecord[AddressThreeIdx] != "" { + addresses = append(addresses, csvRecord[AddressThreeIdx]) + } + if csvRecord[AddressFourIdx] != "" { + addresses = append(addresses, csvRecord[AddressFourIdx]) + } + if csvRecord[AddressFiveIdx] != "" { + addresses = append(addresses, csvRecord[AddressFiveIdx]) + } + if csvRecord[AddressSixIdx] != "" { + addresses = append(addresses, csvRecord[AddressSixIdx]) + } + address := strings.Join(addresses, ", ") + if !arrayContains(ukCSLRecord.Addresses, address) { + ukCSLRecord.Addresses = append(ukCSLRecord.Addresses, address) + } + + if csvRecord[PostalCodeIdx] != "" { + if !arrayContains(ukCSLRecord.PostalCodes, csvRecord[PostalCodeIdx]) { + ukCSLRecord.PostalCodes = append(ukCSLRecord.PostalCodes, csvRecord[PostalCodeIdx]) + } + } + if csvRecord[CountryIdx] != "" { + if !arrayContains(ukCSLRecord.Countries, csvRecord[CountryIdx]) { + ukCSLRecord.Countries = append(ukCSLRecord.Countries, csvRecord[CountryIdx]) + } + } + if csvRecord[OtherInfoIdx] != "" { + if !arrayContains(ukCSLRecord.OtherInfos, csvRecord[OtherInfoIdx]) { + ukCSLRecord.OtherInfos = append(ukCSLRecord.OtherInfos, csvRecord[OtherInfoIdx]) + } + } + + if csvRecord[GroupTypeIdx] != "" && ukCSLRecord.GroupType == "" { + ukCSLRecord.GroupType = csvRecord[GroupTypeIdx] + } + + if csvRecord[ListedDateIdx] != "" { + if !arrayContains(ukCSLRecord.ListedDates, csvRecord[ListedDateIdx]) { + ukCSLRecord.ListedDates = append(ukCSLRecord.ListedDates, csvRecord[ListedDateIdx]) + } + } + if csvRecord[LastUpdatedIdx] != "" { + if !arrayContains(ukCSLRecord.LastUpdates, csvRecord[LastUpdatedIdx]) { + ukCSLRecord.LastUpdates = append(ukCSLRecord.LastUpdates, csvRecord[LastUpdatedIdx]) + } + } + if csvRecord[UKSancListDateIdx] != "" { + if !arrayContains(ukCSLRecord.SanctionListDates, csvRecord[UKSancListDateIdx]) { + ukCSLRecord.SanctionListDates = append(ukCSLRecord.SanctionListDates, csvRecord[UKSancListDateIdx]) + } + } + if csvRecord[GroupdIdx] != "" { + groupID, _ := strconv.Atoi(csvRecord[GroupdIdx]) + ukCSLRecord.GroupID = groupID + } +} + +func ReadUKSanctionsListFile(path string) ([]*UKSanctionsListRecord, UKSanctionsListMap, error) { + if path == "" { + return nil, nil, errors.New("path was empty for uk sanctions list file") + } + fd, err := ods.Open(path) + if err != nil { + return nil, nil, err + } + defer fd.Close() + + doc := new(ods.Doc) + err = fd.ParseContent(doc) + if err != nil { + return nil, nil, err + } + + rows, rowsMap, err := parseUKSanctionsList(doc) + if err != nil { + return nil, nil, err + } + + return rows, rowsMap, nil +} + +func parseUKSanctionsList(doc *ods.Doc) ([]*UKSanctionsListRecord, UKSanctionsListMap, error) { + // read from the ods document + var totalReport []*UKSanctionsListRecord + report := UKSanctionsListMap{} + + // unmarshal each row into a uk sanctions list record + if len(doc.Table) > 0 { + for i, record := range doc.Table[0].Row { + + // manually skip the header and extra rows + if record.IsEmpty() || i <= 2 { + continue + } + + // need a length of row check since we are using the string representation + uniqueIDCell := record.Cell[UKSL_UniqueIDIdx] + b := new(bytes.Buffer) + uniqueID := uniqueIDCell.PlainText(b) + + if val, ok := report[uniqueID]; !ok { + row := new(UKSanctionsListRecord) + row.UniqueID = uniqueID + unmarshalUKSanctionsListRecord(record.Cell, row) + + report[uniqueID] = row + } else { + unmarshalUKSanctionsListRecord(record.Cell, val) + } + } + } + + for _, row := range report { + totalReport = append(totalReport, row) + } + return totalReport, report, nil +} + +func unmarshalUKSanctionsListRecord(record []ods.Cell, ukSLRecord *UKSanctionsListRecord) { + if len(record) < UKSL_CountryOfBirthIdx { + return + } + + b := new(bytes.Buffer) + if !record[UKSL_LastUpdatedIdx].IsEmpty() && ukSLRecord.LastUpdated == "" { + ukSLRecord.LastUpdated = record[UKSL_LastUpdatedIdx].PlainText(b) + } + + if !record[UKSL_OFSI_GroupIDIdx].IsEmpty() && ukSLRecord.OFSIGroupID == "" { + ukSLRecord.OFSIGroupID = record[UKSL_OFSI_GroupIDIdx].PlainText(b) + } + + if !record[UKSL_UNReferenceNumberIdx].IsEmpty() && ukSLRecord.UNReferenceNumber == "" { + ukSLRecord.UNReferenceNumber = record[UKSL_UNReferenceNumberIdx].PlainText(b) + } + + // consolidate names + var names []string + if !record[UKSL_Name6Idx].IsEmpty() { + names = append(names, record[UKSL_Name6Idx].PlainText(b)) + } + if !record[UKSL_Name1Idx].IsEmpty() { + names = append(names, record[UKSL_Name1Idx].PlainText(b)) + } + if !record[UKSL_Name2Idx].IsEmpty() { + names = append(names, record[UKSL_Name2Idx].PlainText(b)) + } + if !record[UKSL_Name3Idx].IsEmpty() { + names = append(names, record[UKSL_Name3Idx].PlainText(b)) + } + if !record[UKSL_Name4Idx].IsEmpty() { + names = append(names, record[UKSL_Name4Idx].PlainText(b)) + } + if !record[UKSL_Name5Idx].IsEmpty() { + names = append(names, record[UKSL_Name5Idx].PlainText(b)) + } + name := strings.Join(names, " ") + if !strings.EqualFold(strings.TrimSpace(name), "") && !arrayContains(ukSLRecord.Names, name) { + ukSLRecord.Names = append(ukSLRecord.Names, name) + } + + if !record[UKSL_NameTypeIdx].IsEmpty() && ukSLRecord.NameTitle == "" { + ukSLRecord.NameTitle = record[UKSL_NameTypeIdx].PlainText(b) + } + + if !record[UKSL_NonLatinScriptIdx].IsEmpty() && !arrayContains(ukSLRecord.NonLatinScriptNames, record[UKSL_NonLatinScriptIdx].PlainText(b)) { + ukSLRecord.NonLatinScriptNames = append(ukSLRecord.NonLatinScriptNames, record[UKSL_NonLatinScriptIdx].PlainText(b)) + } + + if !record[UKSL_EntityTypeIdx].IsEmpty() && ukSLRecord.EntityType == nil { + cellValue := record[UKSL_EntityTypeIdx].PlainText(b) + entityType := EntityStringMap[cellValue] + ukSLRecord.EntityType = &entityType + } + + // consolidate addresses + var addresses []string + addr1 := record[UKSL_AddressLine1Idx] + addr2 := record[UKSL_AddressLine2Idx] + addr3 := record[UKSL_AddressLine3Idx] + addr4 := record[UKSL_AddressLine4Idx] + addr5 := record[UKSL_AddressLine5Idx] + addr6 := record[UKSL_AddressLine6Idx] + + if !addr1.IsEmpty() { + addresses = append(addresses, addr1.PlainText(b)) + } + if !addr2.IsEmpty() { + addresses = append(addresses, addr2.PlainText(b)) + } + if !addr3.IsEmpty() { + addresses = append(addresses, addr3.PlainText(b)) + } + if !addr4.IsEmpty() { + addresses = append(addresses, addr4.PlainText(b)) + } + if !addr5.IsEmpty() { + addresses = append(addresses, addr5.PlainText(b)) + } + addr6Value := addr6.PlainText(b) + if !addr6.IsEmpty() { + addresses = append(addresses, addr6Value) + if !arrayContains(ukSLRecord.StateLocalities, addr6Value) { + ukSLRecord.StateLocalities = append(ukSLRecord.StateLocalities, addr6Value) + } + } + postalCode := record[UKSL_PostalCodeIdx] + postalCodeValue := record[UKSL_PostalCodeIdx].PlainText(b) + if !postalCode.IsEmpty() { + addresses = append(addresses, postalCodeValue) + } + addrCountries := record[UKSL_AddressCountryIdx] + addrCountriesValue := record[UKSL_AddressCountryIdx].PlainText(b) + if !addrCountries.IsEmpty() { + addresses = append(addresses, addrCountriesValue) + if !arrayContains(ukSLRecord.AddressCountries, addrCountriesValue) { + ukSLRecord.AddressCountries = append(ukSLRecord.AddressCountries, addrCountriesValue) + } + } + + address := strings.Join(addresses, ", ") + if !strings.EqualFold(strings.TrimSpace(address), "") && !arrayContains(ukSLRecord.Addresses, address) { + ukSLRecord.Addresses = append(ukSLRecord.Addresses, address) + } + + cob := record[UKSL_CountryOfBirthIdx] + cobValue := record[UKSL_CountryOfBirthIdx].PlainText(b) + if !cob.IsEmpty() && ukSLRecord.CountryOfBirth != "" { + ukSLRecord.CountryOfBirth = cobValue + } +} + +func arrayContains(checkArray []string, nameToCheck string) bool { + var nameAlreadyExists bool = false + if nameToCheck == "" { + return true + } + for _, name := range checkArray { + if name == nameToCheck { + nameAlreadyExists = true + break + } + } + return nameAlreadyExists +} diff --git a/pkg/csl/reader_uk_test.go b/pkg/csl/reader_uk_test.go new file mode 100644 index 0000000..b0e5c11 --- /dev/null +++ b/pkg/csl/reader_uk_test.go @@ -0,0 +1,99 @@ +package csl + +import ( + "fmt" + "path/filepath" + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestReadUKCSL(t *testing.T) { + ukCSL, ukCSLMap, err := ReadUKCSLFile(filepath.Join("..", "..", "test", "testdata", "ConList.csv")) + if err != nil { + t.Fatal(err) + } + if ukCSLMap == nil || ukCSL == nil { + t.Fatal("failed to parse ConList.csv") + } + + if len(ukCSL) == 0 { + t.Fatal("failed to convert map to sheet") + } + + groupID := 12431 + + // expectations + expectedName := "(GENERAL) ORGANIZATION FOR ENGINEERING INDUSTRIES" + expectedAddressOne := "PO Box 21120" + expectedAddressFive := "Baramkeh" + expectedAddressSix := "Damascus" + expectedFullAddress := fmt.Sprintf("%s, %s, %s", expectedAddressOne, expectedAddressFive, expectedAddressSix) + expectedCountry := "Syria" + expectedOtherInfo := "(UK Sanctions List Ref):SYR0306 (UK Statement of Reasons):Front company for the acquisition of sensitive equipment related to the production of chemical weapons by the Syrian Scientific Studies and Research Center (SSRC) also known as Centre d'études et de recherches syrien (CERS). Owned or controlled by or otherwise associated with the SSRC. (Phone number):(1) +963112121816 (2) +963112121834 (3) +963112212743 (4) +963112214650 (5) +963115110117" + expectedGroupType := "Entity" + expectedListedDate := "02/12/2011" + expectedUKSancListDate := "31/12/2020" + expectedLastUpdatedDate := "13/05/2022" + expectedGroupID := 12431 + + testRow := ukCSLMap[groupID] + + assert.Greater(t, len(testRow.Names), 0) + assert.Nil(t, testRow.Titles) + assert.Nil(t, testRow.DatesOfBirth) + assert.Nil(t, testRow.TownsOfBirth) + assert.Nil(t, testRow.CountriesOfBirth) + assert.Nil(t, testRow.Nationalities) + assert.Greater(t, len(testRow.Addresses), 0) + // assert.Greater(t, len(testRow.AddressesTwo), 0) + // assert.Nil(t, testRow.AddressesThree) + // assert.Nil(t, testRow.AddressesFour) + // assert.Greater(t, len(testRow.AddressesFive), 0) + // assert.Greater(t, len(testRow.AddressesSix), 0) + assert.Nil(t, testRow.PostalCodes) + assert.Greater(t, len(testRow.Countries), 0) + assert.Greater(t, len(testRow.OtherInfos), 0) + + // assertions + assert.Equal(t, expectedName, testRow.Names[0]) + assert.Equal(t, expectedFullAddress, testRow.Addresses[0]) + // assert.Equal(t, expectedAddressFive, testRow.AddressesFive[0]) + // assert.Equal(t, expectedAddressSix, testRow.AddressesSix[0]) + assert.Equal(t, expectedCountry, testRow.Countries[0]) + assert.Equal(t, expectedOtherInfo, testRow.OtherInfos[0]) + assert.Equal(t, expectedGroupType, testRow.GroupType) + assert.Equal(t, expectedListedDate, testRow.ListedDates[0]) + assert.Equal(t, expectedLastUpdatedDate, testRow.LastUpdates[0]) + assert.Equal(t, expectedUKSancListDate, testRow.SanctionListDates[0]) + assert.Equal(t, expectedGroupID, testRow.GroupID) +} + +func TestReadUKSanctionsList(t *testing.T) { + t.Setenv("WITH_UK_SANCTIONS_LIST", "false") + // test we don't err on parsing the content + totalReport, report, err := ReadUKSanctionsListFile("../../test/testdata/UK_Sanctions_List.ods") + assert.NoError(t, err) + + // test that we get something more than an empty sanctions list record + assert.NotEmpty(t, totalReport) + assert.NotEmpty(t, report) + assert.GreaterOrEqual(t, len(totalReport), 3728) + + if record, ok := report["AFG0001"]; ok { + assert.Equal(t, "12/01/2022", record.LastUpdated) + assert.Equal(t, "12703", record.OFSIGroupID) + assert.Equal(t, "TAe.010", record.UNReferenceNumber) + assert.Equal(t, "HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE", record.Names[0]) + assert.Len(t, record.Names, 9) + assert.Equal(t, "Primary Name", record.NameTitle) + assert.NotEmpty(t, record.NonLatinScriptNames) + assert.Equal(t, UKSLEntity, *record.EntityType) + assert.NotEmpty(t, record.Addresses) + assert.NotEmpty(t, record.StateLocalities) + assert.NotEmpty(t, record.AddressCountries) + assert.Empty(t, record.CountryOfBirth) + } else { + t.Fatal("record not found") + } +} diff --git a/pkg/csl/uk_csl.go b/pkg/csl/uk_csl.go new file mode 100644 index 0000000..8056931 --- /dev/null +++ b/pkg/csl/uk_csl.go @@ -0,0 +1,131 @@ +// Copyright 2020 The Moov Authors +// Use of this source code is governed by an Apache License +// license that can be found in the LICENSE file. + +package csl + +type UKCSL map[int]*UKCSLRecord + +// Indices we care about for UK - CSL row data +const ( + UKNameIdx = 0 + UKNameTwoIdx = 1 + UKNameThreeIdx = 2 + UKNameFourIdx = 3 + UKNameFiveIdx = 4 + + UKTitleIdx = 6 + DOBhIdx = 10 + TownOfBirthIdx = 11 + CountryOfBirthIdx = 12 + UKNationalitiesIdx = 13 + + AddressOneIdx = 19 + AddressTwoIdx = 20 + AddressThreeIdx = 21 + AddressFourIdx = 22 + AddressFiveIdx = 23 + AddressSixIdx = 24 + + PostalCodeIdx = 25 + CountryIdx = 26 + OtherInfoIdx = 27 + GroupTypeIdx = 28 + ListedDateIdx = 32 + UKSancListDateIdx = 33 + LastUpdatedIdx = 34 + GroupdIdx = 35 +) + +// UK is the UK Consolidated List of Financial Sanctions Targets +type UKCSLRecord struct { + Names []string `json:"names"` + Titles []string `json:"titles"` + DatesOfBirth []string `json:"datesOfBirth"` + TownsOfBirth []string `json:"townsOfBirth"` + CountriesOfBirth []string `json:"countriesOfBirth"` + Nationalities []string `json:"nationalities"` + Addresses []string `json:"addresses"` + PostalCodes []string `json:"postalCodes"` + Countries []string `json:"countries"` + OtherInfos []string `json:"otherInfo"` + GroupType string `json:"groupType"` + ListedDates []string `json:"listedDate"` + SanctionListDates []string `json:"sanctionListDate"` + LastUpdates []string `json:"lastUpdated"` + GroupID int `json:"groupId"` +} + +type UKSanctionsListMap map[string]*UKSanctionsListRecord + +const ( + UKSL_LastUpdatedIdx = 0 + UKSL_UniqueIDIdx = 1 + UKSL_OFSI_GroupIDIdx = 2 // this is the group ID from the consolidated sanctions list + UKSL_UNReferenceNumberIdx = 3 + // Name info + UKSL_Name6Idx = 4 + UKSL_Name1Idx = 5 + UKSL_Name2Idx = 6 + UKSL_Name3Idx = 7 + UKSL_Name4Idx = 8 + UKSL_Name5Idx = 9 + UKSL_NameTypeIdx = 10 // either Primary Name or Alias + UKSL_AliasStrengthIdx = 11 + UKSL_TitleIdx = 12 + UKSL_NonLatinScriptIdx = 13 + UKSL_NonLatinTypeIdx = 14 + UKSL_NonLatinLanguageIdx = 15 + UKSL_EntityTypeIdx = 17 // individual, entity, ship + UKSL_OtherInfoIdx = 20 + // Address Info + UKSL_AddressLine1Idx = 22 + UKSL_AddressLine2Idx = 23 + UKSL_AddressLine3Idx = 24 + UKSL_AddressLine4Idx = 25 + UKSL_AddressLine5Idx = 26 + UKSL_AddressLine6Idx = 27 + UKSL_PostalCodeIdx = 28 + UKSL_AddressCountryIdx = 29 + UKSL_CountryOfBirthIdx = 43 +) + +type UKSanctionsListRecord struct { + LastUpdated string + UniqueID string + OFSIGroupID string + UNReferenceNumber string + Names []string + NameTitle string + NonLatinScriptNames []string + EntityType *UKSLEntityType + Addresses []string + StateLocalities []string + AddressCountries []string + CountryOfBirth string +} + +type UKSLEntityType string + +var EntityStringMap map[string]UKSLEntityType = map[string]UKSLEntityType{ + "Individual": UKSLIndividual, + "Entity": UKSLEntity, + "Ship": UKSLShip, +} + +var EntityEnumMap map[UKSLEntityType]string = map[UKSLEntityType]string{ + UKSLIndividual: "Individual", + UKSLEntity: "Entity", + UKSLShip: "Ship", +} + +const ( + Undefined UKSLEntityType = "" + UKSLIndividual UKSLEntityType = "Individual" + UKSLEntity UKSLEntityType = "Entity" + UKSLShip UKSLEntityType = "Ship" +) + +func (et UKSLEntityType) String() string { + return string(et) +} diff --git a/pkg/download/client.go b/pkg/download/client.go index 78b6a2c..0fb9e20 100644 --- a/pkg/download/client.go +++ b/pkg/download/client.go @@ -115,7 +115,7 @@ func (dl *Downloader) GetFiles(initialDir string, namesAndSources map[string]str if err != nil { logger.Error().LogErrorf("FAILURE after %v to download: %v", dur, err) } else { - logger.Error().LogErrorf("successful download after %v", dur) + logger.Info().Logf("successful download after %v", dur) } mu.Lock() @@ -143,18 +143,25 @@ func (dl *Downloader) createLogger(filename, downloadURL string) log.Logger { func (dl *Downloader) retryDownload(dir, filename, downloadURL string) error { // Allow a couple retries for various sources (some are flakey) for i := 0; i < 3; i++ { - req, err := http.NewRequest("GET", downloadURL, nil) + req, err := http.NewRequest(http.MethodGet, downloadURL, nil) if err != nil { return dl.Logger.Error().LogErrorf("error building HTTP request: %v", err).Err() } req.Header.Set("User-Agent", fmt.Sprintf("moov-io/watchman:%v", watchman.Version)) + // in order to get passed europes 406 (Not Accepted) + req.Header.Set("accept-language", "en-US,en;q=0.9") resp, err := dl.HTTP.Do(req) if err != nil { + dl.Logger.Error().LogErrorf("err while doing client request: ", err) time.Sleep(100 * time.Millisecond) continue // retry } + if resp.StatusCode < 200 || resp.StatusCode >= 300 { + dl.Logger.Error().LogErrorf("we experienced a problem in the dl: %v", resp.StatusCode) + } + // Copy resp.Body into a file in our temp dir fd, err := os.Create(filepath.Join(dir, filename)) if err != nil { diff --git a/pkg/ofac/reader_test.go b/pkg/ofac/reader_test.go index 5935ca5..6864857 100644 --- a/pkg/ofac/reader_test.go +++ b/pkg/ofac/reader_test.go @@ -97,7 +97,7 @@ func TestSDNComments(t *testing.T) { if err != nil { t.Fatal(err) } - if _, err := fd.Write([]byte(`28264,"hone Number 8613314257947; alt. Phone Number 8618004121000; Identification Number 210302198701102136 (China); a.k.a. "blackjack1987"; a.k.a. "khaleesi"; Linked To: LAZARUS GROUP."`)); err != nil { + if _, err := fd.WriteString(`28264,"hone Number 8613314257947; alt. Phone Number 8618004121000; Identification Number 210302198701102136 (China); a.k.a. "blackjack1987"; a.k.a. "khaleesi"; Linked To: LAZARUS GROUP."`); err != nil { t.Fatal(err) } diff --git a/test/testdata/ConList.csv b/test/testdata/ConList.csv new file mode 100644 index 0000000..531e6ad --- /dev/null +++ b/test/testdata/ConList.csv @@ -0,0 +1,16157 @@ +Last Updated,14/11/2022 +Name 6,Name 1,Name 2,Name 3,Name 4,Name 5,Title,Name Non-Latin Script,Non-Latin Script Type,Non-Latin Script Language,DOB,Town of Birth,Country of Birth,Nationality,Passport Number,Passport Details,National Identification Number,National Identification Details,Position,Address 1,Address 2,Address 3,Address 4,Address 5,Address 6,Post/Zip Code,Country,Other Information,Group Type,Alias Type,Alias Quality,Regime,Listed On,UK Sanctions List Date Designated,Last Updated,Group ID +(GENERAL) ORGANIZATION FOR ENGINEERING INDUSTRIES,,,,,,,,,,,,,,,,,,,PO Box 21120,,,,Baramkeh,Damascus,,Syria,(UK Sanctions List Ref):SYR0306 (UK Statement of Reasons):Front company for the acquisition of sensitive equipment related to the production of chemical weapons by the Syrian Scientific Studies and Research Center (SSRC) also known as Centre d'études et de recherches syrien (CERS). Owned or controlled by or otherwise associated with the SSRC. (Phone number):(1) +963112121816 (2) +963112121834 (3) +963112212743 (4) +963112214650 (5) +963115110117,Entity,AKA,,Syria,02/12/2011,31/12/2020,13/05/2022,12431 +(GENERAL) ORGANIZATION FOR ENGINEERING INDUSTRIES,,,,,,,,,,,,,,,,,,,PO Box 5966,Abou Bakr Al Seddeq St.,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0306 (UK Statement of Reasons):Front company for the acquisition of sensitive equipment related to the production of chemical weapons by the Syrian Scientific Studies and Research Center (SSRC) also known as Centre d'études et de recherches syrien (CERS). Owned or controlled by or otherwise associated with the SSRC. (Phone number):(1) +963112121816 (2) +963112121834 (3) +963112212743 (4) +963112214650 (5) +963115110117,Entity,AKA,,Syria,02/12/2011,31/12/2020,13/05/2022,12431 +(GENERAL) ORGANIZATION FOR ENGINEERING INDUSTRIES,,,,,,,,,,,,,,,,,,,PO Box 2849,Al Moutanabi Street,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0306 (UK Statement of Reasons):Front company for the acquisition of sensitive equipment related to the production of chemical weapons by the Syrian Scientific Studies and Research Center (SSRC) also known as Centre d'études et de recherches syrien (CERS). Owned or controlled by or otherwise associated with the SSRC. (Phone number):(1) +963112121816 (2) +963112121834 (3) +963112212743 (4) +963112214650 (5) +963115110117,Entity,AKA,,Syria,02/12/2011,31/12/2020,13/05/2022,12431 +140 REPAIR PLANT,,,,,,,,,,,,,,,,,,,19 L. Chalovskoy Street,,,,Borisov,,,Belarus,"(UK Sanctions List Ref):BEL0060 (UK Statement of Reasons):The 140 Repair Plant is a key part of the Belarusian State Authority for Military Industry (SAMI), which is responsible for implementing the military-technical policy of the state. The 140 Repair Plant has produced transport and armoured vehicles and equipment which are used to support the internal control activities of the Lukashenko regime. Subsequently, the 140 Repair Plant bears responsibility for providing support, equipment and technology for police and security forces of the Ministry of Internal Affairs, which have contributed to serious human rights violations and the repression of civil society following the August 9 elections. (Phone number):00375(17)7762032. 00375(17)7765479. 00375(29)6480418 (Email address):info@140zavod.org. www.140zavod.by (Type of entity):State-Owned Enterprise",Entity,Primary name,,Belarus,18/12/2020,31/12/2020,31/12/2020,14042 +1-P,,,,,,,,,,00/00/1994,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +1-P,,,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +1-P,,,,,,,,,,00/00/1995,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +1-P,,,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +25 JANUARY COMMITTEE,,,,,,,,,,,,,,,,,,,"Occupies several rooms in the former Ptitsyn-Zalogina estate near the Taganskaya metro station (in Moscow, Russia)",,,,,,,,"(UK Sanctions List Ref):RUS0184 Management: Igor Srelkov Girking (subject to sanctions) (UK Statement of Reasons):The Movement “Novorossiya”/”New Russia” was established in November 2014 in Russia and is headed by Russian officer Igor Girkin a.k.a. Strelkov (identified as a staff member of the Main Intelligence Directorate of the General Staff of the Armed Forces of the Russian Federation (GRU)). Girkin is a defendant in the case of the shooting down of flight MH17 over Eastern Ukraine in 2014 that led to the death of 289 on board, including 196 Dutch nationals. The Dutch prosecutor is demanding life sentences for all defendants. According to its stated objectives, the Movement aims to provide all-round, effective assistance to “Novorossiya”, including by helping militia fighting in Eastern Ukraine, thereby supporting actions undermining the territorial integrity, sovereignty and independence of Ukraine. Associated with a person listed for undermining the territorial integrity of Ukraine. (Website):http://novorossia.pro (Type of entity):Public Movement",Entity,AKA,,Russia,16/02/2015,31/12/2020,16/09/2022,13226 +2ND ACADEMY OF NATURAL SCIENCES,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0189 (UN Ref):KPe.018 The Second Academy of Natural Sciences is a national-level organization responsible for research and development of the DPRK’s advanced weapons systems, including missiles and probably nuclear weapons. The Second Academy of Natural Sciences uses a number of subordinate organizations to obtain technology, equipment, and information from overseas, including Tangun Trading Corporation, for use in the DPRK’s missile and probably nuclear weapons programs. Tangun Trading Corporation was designated by the Committee in July 2009 and is primarily responsible for the procurement of commodities and technologies to support DPRK’s defense research and development programs, including, but not limited to, weapons of mass destruction and delivery system programs and procurement, including materials that are controlled or prohibited under relevant multilateral control regimes. (Subsidiaries):Tangun Trading Corporation",Entity,AKA,,Democratic People's Republic of Korea,23/04/2013,07/03/2013,31/12/2020,12871 +3M MIZAN MACHINERY MANUFACTURING,,,,,,,,,,,,,,,,,,,,,,,P.O. Box 16595-365,Tehran,,Iran,"(UK Sanctions List Ref):INU0163 (UN Ref):IRe.043 Owned or controlled by, or acts on behalf of, SHIG. [Old Reference # E.29.I.11] (Parent company):Shahid Hemmat Industrial Group (SHIG)",Entity,Primary name,,Iran (Nuclear),24/06/2008,09/06/2010,31/12/2020,10657 +3MG,,,,,,,,,,,,,,,,,,,,,,,P.O. Box 16595-365,Tehran,,Iran,"(UK Sanctions List Ref):INU0163 (UN Ref):IRe.043 Owned or controlled by, or acts on behalf of, SHIG. [Old Reference # E.29.I.11] (Parent company):Shahid Hemmat Industrial Group (SHIG)",Entity,AKA,,Iran (Nuclear),24/06/2008,09/06/2010,31/12/2020,10657 +558 ARP,,,,,,,,,,,,,,,,,,,bld.7,50 let VLKSM st.,Baranovichi,,,Brest reg,225415,Belarus,"(UK Sanctions List Ref):RUS0261 (UK Statement of Reasons):JSC 558 Aircraft Repair Plant (“558 ARP”) is a Belarusian defence company based at the Baranovichi airbase which provides maintenance and servicing to military aircraft. Belarus and Russia have deepened military cooperation at Baranovichi airbase in recent years and held extensive joint exercises there in February 2022, immediately before Russia’s invasion of Ukraine. There is evidence that Russian aircraft operated from Baranovichi airbase as part of the invasion. Given 558 ARP’s role in providing maintenance and servicing to aircraft stationed at Baranovichi airbase, there are reasonable grounds to suspect that 558 ARP is providing those services to Russian aircraft involved in the invasion of Ukraine, and therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Phone number):+375-163-41-70-98 (Website):https://www.558arp.by/eng/ (Email address):box@558arp.by (Type of entity):Public Joint Stock Company (PJSC)",Entity,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14201 +7TH BRIGADE,,,,,,,,,,,,,,,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0074 (UK Statement of Reasons):The al-Kaniyat milita is designated on the basis that there are reasonable grounds to suspect that the militia has committed serious human rights abuses and committed violations of international humanitarian law. There are reasonable grounds to suspect that the al-Kaniyat militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tahouna. There are reasonable grounds to suspect that the militia has been involved in activities that threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country.",Entity,AKA,,Libya,13/05/2021,07/05/2021,13/05/2021,14107 +7TH OF TIR,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0131 (UN Ref):IRe.001 Subordinate of Defence Industries Organisation (DIO), widely recognized as being directly involved in the nuclear programme. [Old Reference #E.37.A.7]",Entity,Primary name,,Iran (Nuclear),09/02/2007,23/12/2006,31/12/2020,8990 +9TH BRIGADE,,,,,,,,,,,,,,,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0074 (UK Statement of Reasons):The al-Kaniyat milita is designated on the basis that there are reasonable grounds to suspect that the militia has committed serious human rights abuses and committed violations of international humanitarian law. There are reasonable grounds to suspect that the al-Kaniyat militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tahouna. There are reasonable grounds to suspect that the militia has been involved in activities that threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country.",Entity,AKA,,Libya,13/05/2021,07/05/2021,13/05/2021,14107 +A,Ahmed,,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +A,Ahmed,,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +A,Ahmed,,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +A,Ahmed,,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +A KABIR,,,,,,,,,,00/00/1963,"(1) Baghlan Jadid District, Baghlan Province (2) Pul-e-Khumri",Afghanistan,Afghanistan,,,,,"(1) Second Deputy, Economic Affairs, Council of Ministers under the Taliban regime (2) Governor of Nangarhar Province under the Taliban regime (3) Head of Eastern Zone under the Taliban regime",,,,,,,,,"(UK Sanctions List Ref):AFG0007 (UN Ref):TAi.003 Active in terrorist operations in Eastern Afghanistan. Collects money from drug traffickers. Believed to be in Afghanistan/Pakistan border area. Member of the Taliban Supreme Council as at 2009. Family is originally from Neka District, Paktia Province, Afghanistan. Responsible for attack on Afghan parliamentarians in November 2007 in Baghlan; owns land in central Baghlan Province. Belongs to Zadran tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,11/02/2022,6909 +A.R. ALSBHUA,Azam,,,,,,,,,12/04/1976,Al Baraka,Saudi Arabia,Saudi Arabia,C389664,,1024026187,,,,,,,,,,,(UK Sanctions List Ref):AQD0153 (UN Ref):QDi.330 Has ties to numerous senior Al-Qaida (QDe.004) leaders. Wanted by the Saudi Arabian Government for terrorism. Father's name is Abdullah Razeeq al Mouled al Sbhua. Physical description: eye colour: dark; hair colour: dark; complexion: dark. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13127 +AA,,,,,,,,,,07/02/1966,Doma,Libya,Libya,(1) 223611 (2) C00146605,(1) Libya number (2) British passport number,,,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0089 (UN Ref):QDi.371 Key operative in Al-Qaida (QDe.004). Under the direction of Aiman al-Zawahiri (QDi.006), recruited 200 militants in the eastern part of Libya. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930719",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13312 +AAB,,,,,,,,,,,,,,,,,,,,,,,,,,Lebanon,(UK Sanctions List Ref):AQD0002 (UN Ref):QDe.144 An armed group that has carried out joint attacks with Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13141 +AAB,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0002 (UN Ref):QDe.144 An armed group that has carried out joint attacks with Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13141 +AACHI,Aammar,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +AACHI,Amer,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +AACHI,Amer,Ibrahim,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +AACHI,Amis,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +AACHI,Ammar,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +AAS-T,,,,,,,,,,,,,,,,,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0033 (UN Ref):QDe.143 A Tunisian armed group with links to the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). The leader is Seifallah ben Hassine (QDi.333). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13140 +AAYADH,Abou,,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,,,,,,,,Libya,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +AAYADH,Abou,,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,60 Rue de la Libye Hamman Lif,Ben Arous,,,,,,Tunisia,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +ABAHUSEYIN,Hussein,Mansour,Othman,Aba,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSEYIN,Hussein,Mansour,Othman,Aba,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSEYIN,Mansour,Osman,,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSEYIN,Mansour,Osman,,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSEYIN,Mansour,Othman,M,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSEYIN,Mansour,Othman,M,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSEYIN,Mansur,Othman,M,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSEYIN,Mansur,Othman,M,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSSAIN,Hussein,Mansour,Othman,Aba,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSSAIN,Hussein,Mansour,Othman,Aba,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSSAIN,Mansour,Osman,,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSSAIN,Mansour,Osman,,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSSAIN,Mansour,Othman,M,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSSAIN,Mansour,Othman,M,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSSAIN,Mansur,Othman,M,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSSAIN,Mansur,Othman,M,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSSEIN,Hussein,Mansour,Othman,Aba,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSSEIN,Hussein,Mansour,Othman,Aba,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSSEIN,Mansour,Osman,,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSSEIN,Mansour,Osman,,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSSEIN,Mansour,Othman,M,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSSEIN,Mansour,Othman,M,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSSEIN,Mansur,Othman,M,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAHUSSEIN,Mansur,Othman,M,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABAKAROV,Khizri,Magomedovich,,,,,Хизри Магомедович Абакаров,,,28/06/1960,Yuzhno Sakhalinsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0296 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14241 +ABAS,Yaser,,,,,,,,,22/08/1978,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0350 Linked to10/02/2020 Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group. Leave to remain in the UK. (UK Statement of Reasons):Leading businessperson operating in Syria. Supports and/or benefits from the regime through business dealings, including fuel smuggling. Profits from facilitating oil imports on behalf of the regime and uses his relations with the regime to obtain preferential dealings and treatment. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,31/12/2020,13814 +ABAS,Yasr - Aziz,,,,,,,,,22/08/1978,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0350 Linked to10/02/2020 Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group. Leave to remain in the UK. (UK Statement of Reasons):Leading businessperson operating in Syria. Supports and/or benefits from the regime through business dealings, including fuel smuggling. Profits from facilitating oil imports on behalf of the regime and uses his relations with the regime to obtain preferential dealings and treatment. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,31/12/2020,13814 +ABAS,Yasser,,,,,,,,,22/08/1978,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0350 Linked to10/02/2020 Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group. Leave to remain in the UK. (UK Statement of Reasons):Leading businessperson operating in Syria. Supports and/or benefits from the regime through business dealings, including fuel smuggling. Profits from facilitating oil imports on behalf of the regime and uses his relations with the regime to obtain preferential dealings and treatment. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,31/12/2020,13814 +ABBAS,,,,,,,,,,,,,Syria,,,,,Former Head of Political Security in Banyas,,,,,,,,,"(UK Sanctions List Ref):SYR0076 (UK Statement of Reasons):Former Head of Political Security in Banyas, involved in violence against demonstrators in Baida. (Gender):Male",Individual,AKA,,Syria,10/05/2011,31/12/2020,13/05/2022,11912 +ABBAS,Adam,Del,Toro,,,,,,,06/06/1969,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,AKA,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +ABBAS,Adam,Del,Toro,,,,,,,06/06/1967,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,AKA,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +ABBAS,Faysal,,,,,,,,,00/00/1955,Hama Province,Syria,Syria,,,,,Former Minister for Transport.,,,,,,,,,(UK Sanctions List Ref):SYR0045 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,28/02/2012,31/12/2020,31/12/2020,12510 +ABBAS,Fayssal,,,,,,,,,00/00/1955,Hama Province,Syria,Syria,,,,,Former Minister for Transport.,,,,,,,,,(UK Sanctions List Ref):SYR0045 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,28/02/2012,31/12/2020,31/12/2020,12510 +ABBAS,Ghassan,,,,,,,,,10/03/1960,Homs,,,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,"CERS, Centre d'Etude et de Recherche Scientifique",Centre de Recherche de Kaboun,Barzar Street,PO Box 4470,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0052 (UK Statement of Reasons):Manager of the branch of the designated Syrian Scientific Studies and Research Centre (SSRC/CERS) near Jumraya/Jmraiya. He has been involved in the proliferation of chemical weapons and the organisation of chemical weapons attacks, including in Ghouta in August 2013. He therefore shares responsibility for the violent repression against the Syrian population. As manager of the SSRC/CERS branch near Jumraya/Jmraiya, Ghassan Abbas provides support to the Syrian regime. As a result of his senior position in the SSRC, he is also associated with the designated entity SSRC. (Gender):Male",Individual,Primary name,,Syria,09/03/2015,31/12/2020,18/02/2021,13229 +ABBAS,Sidiki,,,,,,,,,20/07/1962,Bocaranga,Central African Republic,Central African Republic,N°235/MISPAT/DIRCAB/DGPC/DGAEI/SI/SP,(laissez-Passer) issued on 15 Mar. 2019 (issued by the Minister of Interior of the Central African Republic ),,,"President and self-proclaimed “general” of the Retour, Réclamation et Réhabilitation (3R)",,,,,Koui,Ouham-Pendé prefecture,,Central African Republic,"(UK Sanctions List Ref):CAF0015 (UN Ref):CFi.014 Bi Sidi Souleman leads the Central African Republic (CAR)-based militia group Retour, Réclamation, Réhabilitation (3R) which has killed, tortured, raped, and displaced civilians and engaged in arms trafficking, illegal taxation activities, and warfare with other militias since its creation in 2015. Bi Sidi Souleman himself has also participated in torture. On 6 February 2019, 3R signed the Political Agreement for Peace and Reconciliation in the CAR but has engaged in acts violating the Agreement and remains a threat to the peace, stability and security of the CAR. For instance, on 21 May 2019, 3R killed 34 unarmed civilians in three villages, summarily executing adult males. Bi Sidi Souleman openly confirmed to a UN Entity that he had ordered 3R elements to the villages on the date of the attacks, but did not admit to giving the orders for 3R to kill. In December 2020, after having joined a coalition of armed groups established to disrupt the electoral process, Bi Sidi Souleman was reportedly killed during fighting. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Central African Republic,06/08/2020,05/08/2020,25/02/2021,13912 +ABBAS,Yasir,Aziz,,,,,ياسر عزيز عباس,,,22/08/1978,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0350 Linked to10/02/2020 Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group. Leave to remain in the UK. (UK Statement of Reasons):Leading businessperson operating in Syria. Supports and/or benefits from the regime through business dealings, including fuel smuggling. Profits from facilitating oil imports on behalf of the regime and uses his relations with the regime to obtain preferential dealings and treatment. (Gender):Male",Individual,AKA,,Syria,17/02/2020,31/12/2020,31/12/2020,13814 +ABBAS,Yasser,,,,,,,,,22/08/1978,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0350 Linked to10/02/2020 Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group. Leave to remain in the UK. (UK Statement of Reasons):Leading businessperson operating in Syria. Supports and/or benefits from the regime through business dealings, including fuel smuggling. Profits from facilitating oil imports on behalf of the regime and uses his relations with the regime to obtain preferential dealings and treatment. (Gender):Male",Individual,AKA,,Syria,17/02/2020,31/12/2020,31/12/2020,13814 +ABBAS,Yasir,,,,,,,,,22/08/1978,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0350 Linked to10/02/2020 Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group. Leave to remain in the UK. (UK Statement of Reasons):Leading businessperson operating in Syria. Supports and/or benefits from the regime through business dealings, including fuel smuggling. Profits from facilitating oil imports on behalf of the regime and uses his relations with the regime to obtain preferential dealings and treatment. (Gender):Male",Individual,Primary name,,Syria,17/02/2020,31/12/2020,31/12/2020,13814 +ABBAS ZADEH MESHKINI,Mahmoud,,,,,,,,,,Meshginshahr,Iran,Iran,,,,,(1) Adviser to Iran's High Council of Human Rights (2) Former Secretary of the High Council of Human Rights,,,,,,Meshginshahr,,Iran,"(UK Sanctions List Ref):IHR0046 (UK Statement of Reasons):Advisor to Iran's High Council for Human Rights. Former secretary of the High Council for Human Rights. Former governor of Ilam Province. Former Interior Ministry's political director. As Head of the Article 10 Committee of the Law on Activities of Political Parties and Groups he was in charge of authorising demonstrations and other public events and registering political parties. In 2010, he suspended the activities of two reformist political parties linked to Mousavi — the Islamic Iran Participation Front and the Islamic Revolution Mujahedeen Organisation. From 2009 onwards he has consistently and continuously prohibited all non-governmental gatherings, therefore denying a constitutional right to protest and leading to many arrests of peaceful demonstrators in contravention of the right to freedom of assembly. He also denied in 2009 the opposition a permit for a ceremony to mourn people killed in protests over the Presidential elections. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12174 +ABBASI DAVANI,Fereydoon,,,,,,,,,08/09/1958,Abadan,Iran,,,,,,Former Senior Ministry of Defence and Armed Forces Logistics (MODAFL) Scientist,,,,,,,,,"(UK Sanctions List Ref):INU0198 (UN Ref):IRi.001 Has ""links to the Institute of Applied Physics, working closely with Mohsen Fakhrizadeh-Mahabadi"" (designated under IRi.016) [Old Reference # I.47.C.1]. (UK Statement of Reasons):As a former senior scientist at the Ministry of Defence and Armed Forces Logistics (MODAFL), Fereidoun ABBASI-DAVANI is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name variation,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9049 +ABBASI DAVANI,Fereydoon,,,,,,,,,11/07/1958,Abadan,Iran,,,,,,Former Senior Ministry of Defence and Armed Forces Logistics (MODAFL) Scientist,,,,,,,,,"(UK Sanctions List Ref):INU0198 (UN Ref):IRi.001 Has ""links to the Institute of Applied Physics, working closely with Mohsen Fakhrizadeh-Mahabadi"" (designated under IRi.016) [Old Reference # I.47.C.1]. (UK Statement of Reasons):As a former senior scientist at the Ministry of Defence and Armed Forces Logistics (MODAFL), Fereidoun ABBASI-DAVANI is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name variation,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9049 +ABBASI-DAVANI,FEREIDOUN,,,,,,,,,,Abadan,Iran,,,,,,Former Senior Ministry of Defence and Armed Forces Logistics (MODAFL) Scientist,,,,,,,,,"(UK Sanctions List Ref):INU0198 (UN Ref):IRi.001 Has ""links to the Institute of Applied Physics, working closely with Mohsen Fakhrizadeh-Mahabadi"" (designated under IRi.016) [Old Reference # I.47.C.1]. (UK Statement of Reasons):As a former senior scientist at the Ministry of Defence and Armed Forces Logistics (MODAFL), Fereidoun ABBASI-DAVANI is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9049 +ABBASI-DAVANI,FEREIDOUN,,,,,,,,,,Abadan,Iran,,,,,,Former Senior Ministry of Defence and Armed Forces Logistics (MODAFL) Scientist,,,,,,,,,"(UK Sanctions List Ref):INU0198 (UN Ref):IRi.001 Has ""links to the Institute of Applied Physics, working closely with Mohsen Fakhrizadeh-Mahabadi"" (designated under IRi.016) [Old Reference # I.47.C.1]. (UK Statement of Reasons):As a former senior scientist at the Ministry of Defence and Armed Forces Logistics (MODAFL), Fereidoun ABBASI-DAVANI is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9049 +ABBASI-DAVANI,FEREIDOUN,,,,,,,,,08/09/1958,Abadan,Iran,,,,,,Former Senior Ministry of Defence and Armed Forces Logistics (MODAFL) Scientist,,,,,,,,,"(UK Sanctions List Ref):INU0198 (UN Ref):IRi.001 Has ""links to the Institute of Applied Physics, working closely with Mohsen Fakhrizadeh-Mahabadi"" (designated under IRi.016) [Old Reference # I.47.C.1]. (UK Statement of Reasons):As a former senior scientist at the Ministry of Defence and Armed Forces Logistics (MODAFL), Fereidoun ABBASI-DAVANI is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9049 +ABBASI-DAVANI,FEREIDOUN,,,,,,,,,11/07/1958,Abadan,Iran,,,,,,Former Senior Ministry of Defence and Armed Forces Logistics (MODAFL) Scientist,,,,,,,,,"(UK Sanctions List Ref):INU0198 (UN Ref):IRi.001 Has ""links to the Institute of Applied Physics, working closely with Mohsen Fakhrizadeh-Mahabadi"" (designated under IRi.016) [Old Reference # I.47.C.1]. (UK Statement of Reasons):As a former senior scientist at the Ministry of Defence and Armed Forces Logistics (MODAFL), Fereidoun ABBASI-DAVANI is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9049 +ABBASIN,Abdul Aziz,,,,,,عبد العزيز عباسین,,,00/00/1969,"Sheykhan Village, Pirkowti Area, Orgun District, Paktika Province",Afghanistan,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0121 (UN Ref):TAi.155 Key commander in the Haqqani Network (TAe.012) under Sirajuddin Jallaloudine Haqqani (TAi.144). Taliban Shadow Governor for Orgun District, Paktika Province as of early 2010. Operated a training camp for nonAfghan fighters in Paktika Province. Has been involved in the transport of weapons to Afghanistan. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12156 +ABBASZADEH-MESHKINI,Mahmoud,,,,,,,,,,Meshginshahr,Iran,Iran,,,,,(1) Adviser to Iran's High Council of Human Rights (2) Former Secretary of the High Council of Human Rights,,,,,,Meshginshahr,,Iran,"(UK Sanctions List Ref):IHR0046 (UK Statement of Reasons):Advisor to Iran's High Council for Human Rights. Former secretary of the High Council for Human Rights. Former governor of Ilam Province. Former Interior Ministry's political director. As Head of the Article 10 Committee of the Law on Activities of Political Parties and Groups he was in charge of authorising demonstrations and other public events and registering political parties. In 2010, he suspended the activities of two reformist political parties linked to Mousavi — the Islamic Iran Participation Front and the Islamic Revolution Mujahedeen Organisation. From 2009 onwards he has consistently and continuously prohibited all non-governmental gatherings, therefore denying a constitutional right to protest and leading to many arrests of peaceful demonstrators in contravention of the right to freedom of assembly. He also denied in 2009 the opposition a permit for a ceremony to mourn people killed in protests over the Presidential elections. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12174 +ABBATTAY,Mohamed,,,,,,,,,15/07/1975,"Haselünne, Lower Saxony",Germany,(1) Germany. (2) Morocco,(1) 28642163 (2) 954242,"(1) German provisional. Issued by the city of Hamburg (2) Moroccan. Issued on 28 June 1995 in Meknas, Morocco. Expired.",1336597587,"Germany identity document (""Bundespersonalausweis"")",,Bunatwiete 23,,,,,Hamburg,21073,Germany,"(UK Sanctions List Ref):AQD0300 (UN Ref):QDi.080 Deputy head of the media committee of Al-Qaida (QDe.004) as at Apr. 2010. German authorities issued an arrest warrant for him on 21 Sep. 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. Reportedly deceased in September 2013 in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4517705. Primary address Hamburg, formerly resident at.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,12/01/2022,7059 +AB-BILAL,,,,,,,,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +AB-BILAL,,,,,,,,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +'ABD,al-Rahman,Muhammad,Mustafa,Shaykhlari,,,,,,00/00/1959,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +'ABD,al-Rahman,Muhammad,Mustafa,Shaykhlari,,,,,,00/00/1957,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +ABD AL KADER,,,,,,,,,,,,,(1) Lebanon. (2) Syria,,,,,Owner and senior member of numerous political and business organisations.,,,,,,,,,"(UK Sanctions List Ref):SYR0354 Owner of Sabra Maritime Agency, head of the Syrian-Turkish Businessmen Council and founding partner of Phenicia Tourism Company ; president of the Chamber of Maritime Navigation in Syria. Linked to Phoenicia Tourism Company; Sabra Maritime Agency. (UK Statement of Reasons):Leading businessperson operating in Syria with multiple economic interests, especially in the maritime and the tourism sectors. As a major shipping magnate and a close business associate to Rami Makhlouf (regime supporter and cousin of Bashar al-Assad) Adelkader SABRA provides financial and economic support to the Syrian regime, including through offshore companies. Adbulkader SABRA also benefits from his ties to the regime, which allowed him to expand his activities to the real estate sector. He is also involved in money laundering and commercial activities in support to the Syrian regime and its associates. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13819 +ABD AL QADR,,,,,,,,,,,,,(1) Lebanon. (2) Syria,,,,,Owner and senior member of numerous political and business organisations.,,,,,,,,,"(UK Sanctions List Ref):SYR0354 Owner of Sabra Maritime Agency, head of the Syrian-Turkish Businessmen Council and founding partner of Phenicia Tourism Company ; president of the Chamber of Maritime Navigation in Syria. Linked to Phoenicia Tourism Company; Sabra Maritime Agency. (UK Statement of Reasons):Leading businessperson operating in Syria with multiple economic interests, especially in the maritime and the tourism sectors. As a major shipping magnate and a close business associate to Rami Makhlouf (regime supporter and cousin of Bashar al-Assad) Adelkader SABRA provides financial and economic support to the Syrian regime, including through offshore companies. Adbulkader SABRA also benefits from his ties to the regime, which allowed him to expand his activities to the real estate sector. He is also involved in money laundering and commercial activities in support to the Syrian regime and its associates. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13819 +ABD AL-BAQI,Nashwan,Abd Al-Razzaq,,,,,نشوان عبد الرزاق عبد الباقي,,,00/00/1961,Mosul,Iraq,Iraq,,,0094195,Ration card.,,,,,,,,,,"(UK Sanctions List Ref):AQD0271 (UN Ref):QDi.012 Joined Al-Qaida in 1996 and was at that time an important liaison to the Taliban in Afghanistan. Received money from Ansar al-Islam (QDe.098) in order to conduct attacks in Kirkuk and Ninveh in Iraq during spring and summer of 2005. Al-Qaida senior official. In custody of the United States of America, as of Aug. 2014. Father’s name: Abd al-Razzaq Abd al-Baqi. Mother’s name: Nadira Ayoub Asaad. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1475995 (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6923 +ABD AL-GHAFUR,Barzan,Razuki,,,,,,,,00/00/1960,Salah al-Din,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0072 (UN Ref):IQi.011,Individual,AKA,Good quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7620 +ABD AL-GHAFUR,Sundus,,,,,,سندس عبد الغفور,,,00/00/1967,Kirkuk,Iraq,Iraq,,,,,,,,,,,,,Iraq,(UK Sanctions List Ref):IRQ0130 (UN Ref):IQi.069,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8244 +'ABD AL-NASIR,Hajji (formerly listed as),,,,,,,,,00/00/1965,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +'ABD AL-NASIR,Hajji (formerly listed as),,,,,,,,,00/00/1966,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +'ABD AL-NASIR,Hajji (formerly listed as),,,,,,,,,00/00/1967,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +'ABD AL-NASIR,Hajji (formerly listed as),,,,,,,,,00/00/1968,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +'ABD AL-NASIR,Hajji (formerly listed as),,,,,,,,,00/00/1969,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +ABD AL-NASR,Hajji,,,,,,,,,00/00/1965,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +ABD AL-NASR,Hajji,,,,,,,,,00/00/1966,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +ABD AL-NASR,Hajji,,,,,,,,,00/00/1967,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +ABD AL-NASR,Hajji,,,,,,,,,00/00/1968,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +ABD AL-NASR,Hajji,,,,,,,,,00/00/1969,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +ABD AL-SALAM,Ashraf,Muhamma,Yusif,,,,,,,00/00/1984,,Iraq,Jordan,(1) K048787 (2) 486298,(1) Issued in Jordan (2) Issued in Jordan,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0149 (UN Ref):QDi.343 A member of Al-Qaida (QDe.004) as of 2012 and a fighter in the Syrian Arab Republic since early 2014. Provided financial, material, and technological support for Al-Qaida, Al-Nusrah Front for the People of the Levant (QDe.137) and Al-Qaida in Iraq (AQI) (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843240. Address country Syria, located in as at Dec. 2014",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,24/03/2021,13194 +'ABD AL-SALAM,Said Jan,,,,,,سعید جان عبد السلام,,,05/02/1981,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +'ABD AL-SALAM,Said Jan,,,,,,سعید جان عبد السلام,,,01/01/1972,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +ABD EL KADER,,,,,,,,,,,,,(1) Lebanon. (2) Syria,,,,,Owner and senior member of numerous political and business organisations.,,,,,,,,,"(UK Sanctions List Ref):SYR0354 Owner of Sabra Maritime Agency, head of the Syrian-Turkish Businessmen Council and founding partner of Phenicia Tourism Company ; president of the Chamber of Maritime Navigation in Syria. Linked to Phoenicia Tourism Company; Sabra Maritime Agency. (UK Statement of Reasons):Leading businessperson operating in Syria with multiple economic interests, especially in the maritime and the tourism sectors. As a major shipping magnate and a close business associate to Rami Makhlouf (regime supporter and cousin of Bashar al-Assad) Adelkader SABRA provides financial and economic support to the Syrian regime, including through offshore companies. Adbulkader SABRA also benefits from his ties to the regime, which allowed him to expand his activities to the real estate sector. He is also involved in money laundering and commercial activities in support to the Syrian regime and its associates. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13819 +ABD EL LATIF BAHAA,Abd el Wanis,Abd,Gawwad,,,,,,,29/05/1966,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Egypt,Tunisia,L723315,"Issue date: 05/05/1998, expiry date: 04/05/2003",,,,Corso XXII Marzo Number 39,,,,,Milan,,Italy,(UK Sanctions List Ref):AQD0189 (UN Ref):QDi.143 In prison in Italy until 6 Feb. 2026. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7874 +ABD EL LATIF BAHAA,Abd el Wanis,Abd,Gawwad,,,,,,,25/05/1966,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Egypt,Tunisia,L723315,"Issue date: 05/05/1998, expiry date: 04/05/2003",,,,Corso XXII Marzo Number 39,,,,,Milan,,Italy,(UK Sanctions List Ref):AQD0189 (UN Ref):QDi.143 In prison in Italy until 6 Feb. 2026. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7874 +ABD EL LATIF BAHAA,Abd el Wanis,Abd,Gawwad,,,,,,,09/05/1986,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Egypt,Tunisia,L723315,"Issue date: 05/05/1998, expiry date: 04/05/2003",,,,Corso XXII Marzo Number 39,,,,,Milan,,Italy,(UK Sanctions List Ref):AQD0189 (UN Ref):QDi.143 In prison in Italy until 6 Feb. 2026. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7874 +ABD UR-REHMAN,,,,,,,,,,03/10/1965,Mirpur Khas,Pakistan,Pakistan,CV9157521,"Pakistan number, issued on 8 Sep. 2008, expires on 7 Sep. 2013.",44103-5251752-5,Pakistan national identity card number,,,,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0112 (UN Ref):QDi.309 Has provided facilitation and financial services to Al-Qaida (QDe.004). Associated with Harakatul Jihad Islami (QDe.130), Jaish-I-Mohammed (QDe.019), and Al-Akhtar Trust International (QDe.121). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040885",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,31/12/2020,12632 +ABDA,Mohamed,Abu,,,,,,,,05/02/1969,(1) Tripoli (2) Tunis,(1) Libya (2) Tunisia,Tunisia,,,W374031,Issue date: 11/04/2011,,,,,,,,,,(UK Sanctions List Ref):AQD0241 (UN Ref):QDi.062 Professor of Chemistry. Deported from Italy to Tunisia on 27 Aug. 2006. Legally changed family name from Aouani to Lakhal in 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7087 +ABDA,Mohamed,Abu,,,,,,,,05/02/1970,(1) Tripoli (2) Tunis,(1) Libya (2) Tunisia,Tunisia,,,W374031,Issue date: 11/04/2011,,,,,,,,,,(UK Sanctions List Ref):AQD0241 (UN Ref):QDi.062 Professor of Chemistry. Deported from Italy to Tunisia on 27 Aug. 2006. Legally changed family name from Aouani to Lakhal in 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7087 +ABDALARAK,,,,,,,,,,01/01/1968,(1) Kef Rih (2) Guelma,(1) Algeria (2) Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0303 (UN Ref):QDi.152 In detention in Algeria since Oct. 2004. Former member of the GSPC listed as The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. El Para (combat name), Abderrezak Le Para (combat name).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/12/2003,04/12/2003,16/02/2022,7890 +ABDALARAK,,,,,,,,,,24/04/1968,(1) Kef Rih (2) Guelma,(1) Algeria (2) Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0303 (UN Ref):QDi.152 In detention in Algeria since Oct. 2004. Former member of the GSPC listed as The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. El Para (combat name), Abderrezak Le Para (combat name).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/12/2003,04/12/2003,16/02/2022,7890 +ABD-AL-GHAFUR,HUMAM,ABD-AL-KHALIQ,,,,,همام عبد الخالق عبد الغفور,,,00/00/1945,Ar-Ramadi,Iraq,Iraq,0018061/104,Issued on 12 Sept 1993,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0104 (UN Ref):IQi.043,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7574 +ABD-AL-KARIM,Muhammad,,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ABD-AL-KARIM,Muhammad,,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ABD-AL-KARIM,Muhammad,,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ABD-AL-KARIM,Muhammad,,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ABD-AL-KARIM,Muhammad,,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ABD-AL-KARIM,Muhammad,,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ABDALLAH,,,,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ABDALLAH,,,,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ABDALLAH,,,,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ABDALLAH,,,,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ABDALLAH,,,,,,,,,,00/00/1952,,,,,,,,Vice President of the Council of Ministers/Deputy Prime Minister and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0008 (UK Statement of Reasons):Vice President of the Council of Ministers/Deputy Prime Minister and Minister of Defence. Appointed in January 2018. Officer of the rank of General in the Syrian Army, in post after May 2011. Former Chief of General Staff of the Syrian Armed Forces. Person supporting the Syrian regime and responsible for repression of and violence against the civilian population in Syria.",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,13/05/2022,12211 +ABDALLAH,Abu,,,,,,,,,00/00/1961,Mosul,Iraq,Iraq,,,0094195,Ration card.,,,,,,,,,,"(UK Sanctions List Ref):AQD0271 (UN Ref):QDi.012 Joined Al-Qaida in 1996 and was at that time an important liaison to the Taliban in Afghanistan. Received money from Ansar al-Islam (QDe.098) in order to conduct attacks in Kirkuk and Ninveh in Iraq during spring and summer of 2005. Al-Qaida senior official. In custody of the United States of America, as of Aug. 2014. Father’s name: Abd al-Razzaq Abd al-Baqi. Mother’s name: Nadira Ayoub Asaad. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1475995 (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6923 +ABDALLAH,Ali,Thafir,,,,,,,,15/05/1968,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +ABDALLAH,Ali,Thafir,,,,,,,,15/05/1968,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Mosul,,Iraq,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +ABDALLAH,Ali,Thafir,,,,,,,,00/00/1970,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Mosul,,Iraq,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +ABDALLAH,Ali,Thafir,,,,,,,,00/00/1970,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +ABDALLAH,Hajji,,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +ABDALLAH,Hajji,,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +ABDALLAH,Hajji,,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +ABDALLAH,Hajji,,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +ABDALLAH,Hajji,,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +ABDALLAH,Hajji,,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +ABDALLAH,Hajji,,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +ABDALLAH,Hajji,,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +ABDALLAH,Hajji,,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +ABDALLAH,Khalaf,Souleymane,,,,,,,,00/00/1960,Deir ez-Zor,Syria,Syria,,,,,Former Minister for Labour,,,,,,,,,(UK Sanctions List Ref):SYR0120 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,22/10/2014,31/12/2020,31/12/2020,13155 +ABDALLAH,Mohamed,Adam,Brema,,,,,,,00/00/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ABDALLAH,Mohamed,Adam,Brema,,,,,,,00/00/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ABDALLAH,Mohamed,Adam,Brema,,,,,,,00/00/1969,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ABDALLAH,Mohamed,Adam,Brema,,,,,,,00/00/1969,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ABDALLAH,Mohamed,Adam,Brema,,,,,,,00/00/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ABDALLAH,Mohamed,Adam,Brema,,,,,,,00/00/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ABDALLAH,Mohamed,Adam,Brema,,,,,,,01/01/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ABDALLAH,Mohamed,Adam,Brema,,,,,,,01/01/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ABDALLAH,Mohamed,Adam,Brema,,,,,,,01/01/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ABDALLAH,Mohamed,Adam,Brema,,,,,,,01/01/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ABDALLAH,Qazi,,,,,,,,,05/02/1981,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +ABDALLAH,Qazi,,,,,,,,,01/01/1972,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +ABDALLAH,Salwa,,,,,,,,,00/00/1953,Quneitra,Syria,Syria,,,,,Minister of Social Affairs and Labour. Appointed in August 2020,,,,,,,,,"(UK Sanctions List Ref):SYR0216 (UK Statement of Reasons):State Minister. Appointed in July 2016. As Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Female",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13409 +ABDALLAH,Tarwat,Salah,,,,,,,,29/06/1960,,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0327 (UN Ref):QDi.017 Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/12/2001,06/10/2001,31/12/2020,6899 +ABDALLAH,Nabel,,,,,,,,,,,,Syria,,,,,Commander of the National Defence Forces in the city of Suqaylabiyah,,,,,,,,,"(UK Sanctions List Ref):RUS1545 (UK Statement of Reasons):Commander Nabeul AL-ABDULLAH has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, (1) promoting and supporting Russia’s invasion of Ukraine and (2) overseeing the recruitment of Syrian mercenaries to fight alongside Russia in Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/07/2022,26/07/2022,26/07/2022,15473 +ABDALLAH AZZAM BRIGADES (AAB),,,,,,,,,,,,,,,,,,,,,,,,,,Lebanon,(UK Sanctions List Ref):AQD0002 (UN Ref):QDe.144 An armed group that has carried out joint attacks with Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13141 +ABDALLAH AZZAM BRIGADES (AAB),,,,,,,,,,,,,,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0002 (UN Ref):QDe.144 An armed group that has carried out joint attacks with Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13141 +ABD-AL-SALAM,Ashraf,Muhammad,Yusuf,,,,,,,00/00/1984,,Iraq,Jordan,(1) K048787 (2) 486298,(1) Issued in Jordan (2) Issued in Jordan,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0149 (UN Ref):QDi.343 A member of Al-Qaida (QDe.004) as of 2012 and a fighter in the Syrian Arab Republic since early 2014. Provided financial, material, and technological support for Al-Qaida, Al-Nusrah Front for the People of the Levant (QDe.137) and Al-Qaida in Iraq (AQI) (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843240. Address country Syria, located in as at Dec. 2014",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,24/03/2021,13194 +ABD-AL-SALAM,Sa'id Jan,,,,,,,,,05/02/1981,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +ABD-AL-SALAM,Sa'id Jan,,,,,,,,,01/01/1972,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +ABDEL RAHMAN,ABD ALLAH,MOHAMED,RAGAB,,,,عبد الله محمد رجب عبد الرحمن,,,03/11/1957,Kafr Al-Shaykh,Egypt,Egypt,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0090 (UN Ref):QDi.192 Member of Egyptian Islamic Jihad (QDe.003). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4493165,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,12/01/2022,8717 +ABDEL RAHMAN,ABD ALLAH,MOHAMED,RAGAB,,,,عبد الله محمد رجب عبد الرحمن,,,03/11/1957,Kafr Al-Shaykh,Egypt,Egypt,,,,,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0090 (UN Ref):QDi.192 Member of Egyptian Islamic Jihad (QDe.003). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4493165,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,12/01/2022,8717 +ABDELHAMID,Khamis,Ahmad,,,,,,,,,,,Syria,,,,,Chairman of Overseas Petroleum Trading Company (OPT),,,,,,,,,"(UK Sanctions List Ref):SYR0002 (UK Statement of Reasons):Chairman of Overseas Petroleum Trading Company (OPT) which has been listed for benefiting from and supporting the Syrian regime. He coordinated shipments of oil to the Syrian regime with listed Syrian state oil company Sytrol. Therefore, he is benefitting from and providing support to the Syrian regime. In view of his position as the most senior person in the entity he is responsible for its activities and associated with it. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13164 +ABDELJALIL,Abou,,,,,,,,,12/10/1965,Oum el Bouaghi,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0212 (UN Ref):QDi.167 In detention in Algeria as at April 2010. Arrest warrant issued by the German authorities on 9 Oct. 2003 for involvement in kidnapping. Former member of the Katibat Tarek Ibn Ziad of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/05/2004,03/05/2004,31/12/2020,8352 +ABDELKADER,,,,,,,عبد القادر صبرا,,,,,,(1) Lebanon. (2) Syria,,,,,Owner and senior member of numerous political and business organisations.,,,,,,,,,"(UK Sanctions List Ref):SYR0354 Owner of Sabra Maritime Agency, head of the Syrian-Turkish Businessmen Council and founding partner of Phenicia Tourism Company ; president of the Chamber of Maritime Navigation in Syria. Linked to Phoenicia Tourism Company; Sabra Maritime Agency. (UK Statement of Reasons):Leading businessperson operating in Syria with multiple economic interests, especially in the maritime and the tourism sectors. As a major shipping magnate and a close business associate to Rami Makhlouf (regime supporter and cousin of Bashar al-Assad) Adelkader SABRA provides financial and economic support to the Syrian regime, including through offshore companies. Adbulkader SABRA also benefits from his ties to the regime, which allowed him to expand his activities to the real estate sector. He is also involved in money laundering and commercial activities in support to the Syrian regime and its associates. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13819 +ABDELLAH,Abou,,,,,,,,,12/12/1965,"Deb-Deb, Amenas, Wilaya (province) of Illizi",Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0137 (UN Ref):QDi.250 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Located in Northern Mali as of Jun. 2008. Mother’s name is Benarouba Bachira. Father’s name is Mabrouk. He usurped the identity of Abid Hammadou, who allegedly died in Chad in 2004. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529259",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,11/02/2022,10691 +ABDELLAH,Abou,,,,,,,,,00/00/1958,"Deb-Deb, Amenas, Wilaya (province) of Illizi",Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0137 (UN Ref):QDi.250 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Located in Northern Mali as of Jun. 2008. Mother’s name is Benarouba Bachira. Father’s name is Mabrouk. He usurped the identity of Abid Hammadou, who allegedly died in Chad in 2004. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529259",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,11/02/2022,10691 +ABDELNASSER,Hajji,,,,,,,,,00/00/1965,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +ABDELNASSER,Hajji,,,,,,,,,00/00/1966,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +ABDELNASSER,Hajji,,,,,,,,,00/00/1967,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +ABDELNASSER,Hajji,,,,,,,,,00/00/1968,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +ABDELNASSER,Hajji,,,,,,,,,00/00/1969,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +ABDELOUADOUD,Abou,Mossaab,,,,,,,,20/04/1970,"Meftah, Wilaya of Blida",Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0099 (UN Ref):QDi.232 Head of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Sentenced in absentia to life imprisonment in Algeria on 21 March 2007. Father's name is Rabah Droukdel. Mother's name is Z'hour Zdigha. Review pursuant to Security Council resolution 1822 (2008) was concluded on 4 May 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1489020,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/08/2007,27/08/2007,31/12/2020,9157 +ABDELRAHMAN,,,,,,,,,,20/12/1969,Casablanca,Morocco,(1) Germany. (2) Morocco,1005552350,"German. Issued on 27 March 2001 by Municipality of Kiel, Germany. Expired on 26 March 2011.",1007850441,"German federal identity card. Issued on 27 March 2001 by Municipality of Kiel, Germany. Expired on 26 March 2011.",,lltisstrasse 58,,,,,Kiel,24143,Germany,"(UK Sanctions List Ref):AQD0294 (UN Ref):QDi.262 Released from custody in Germany in Apr. 2012. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4474065. Address Kiel, previous address",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/11/2008,12/11/2008,12/01/2022,10753 +ABDELRAHMMAN,,,,,,,,,,04/12/1964,Tabarka,Tunisia,Tunisia,L335915,"issue date: 08/11/1996, expiry date: 07/11/2001, issued in Milan, Italy",,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0256 (UN Ref):QDi.096 Considered a fugitive from justice by the Italian authorities (as of Oct. 2019). Left Sudan to Tunisia in 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,31/12/2020,7798 +ABDELRAZAK,Fitiwi,,,,,,ፍትዊ ዓብዱረዛቕ,,,,Massaua,Eritrea,Eritrea,,,,,Leader of a transnational trafficking network,,,,,,,,,"(UK Sanctions List Ref):LIB0050 (UN Ref):LYi.022 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)",Individual,Primary name,,Libya,08/06/2018,07/06/2018,21/01/2021,13672 +ABDELRAZAK,Fitwi,Esmail,,,,,,,,,Massaua,Eritrea,Eritrea,,,,,Leader of a transnational trafficking network,,,,,,,,,"(UK Sanctions List Ref):LIB0050 (UN Ref):LYi.022 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13672 +ABDELRAZAQ,,,,,,,,,,,Massaua,Eritrea,Eritrea,,,,,Leader of a transnational trafficking network,,,,,,,,,"(UK Sanctions List Ref):LIB0050 (UN Ref):LYi.022 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)",Individual,AKA,Good quality,Libya,08/06/2018,07/06/2018,21/01/2021,13672 +ABDERAHMANE,,,,,,,,,,25/06/1964,Oran,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0299 (UN Ref):QDi.323 A veteran member of the ‘Chechen Network’ (not listed) and other terrorist groups. He was convicted of his role and membership in the ‘Chechen Network’ in France in 2006. Joined Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137) in October 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13089 +ABDERAHMANE,,,,,,,,,,05/12/1965,Oran,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0299 (UN Ref):QDi.323 A veteran member of the ‘Chechen Network’ (not listed) and other terrorist groups. He was convicted of his role and membership in the ‘Chechen Network’ in France in 2006. Joined Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137) in October 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13089 +ABDI,Abbas,,,,,Colonel,عبدی عباس,,Persian,,,,Iran,,,,,"Chief of Iran’s Law Enforcement Forces (LEF) in Divandarreh city, Kurdistan province.",,,,,,,,,"(UK Sanctions List Ref):IHR0097 (UK Statement of Reasons):Colonel Abbas Abdi is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and the right to freedom of expression and peaceful assembly in Iran in his role as the police chief in Divandarreh city, Kurdistan province and in the suppression of protests.  (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15617 +ABDI,Abdifatah,Abubakar,,,,,,,,15/04/1982,,Somalia,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0016 (UN Ref):SOi.017,Individual,Primary name,,Somalia,09/03/2018,08/03/2018,31/12/2020,13619 +ABDI,Abdifatah,Abubakar,,,,,,,,15/04/1982,,Somalia,Somalia,,,,,,,,,,,Mombasa,,Kenya,(UK Sanctions List Ref):SOM0016 (UN Ref):SOi.017,Individual,Primary name,,Somalia,09/03/2018,08/03/2018,31/12/2020,13619 +ABDI,Nuh,Ibrahim,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Kenya,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +ABDI,Nuh,Ibrahim,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +ABDI,Nuh,Ibrahim,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,Badamadow,Lower Juba Region,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +ABDI,Nuh,Ibrahim,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,Badamadow,Lower Juba Region,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +ABDI,Nuh,Ibrahim,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +ABDI,Nuh,Ibrahim,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Kenya,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +ABDIKARIM,Sheikh,Mahad,Omar,,,,,,,00/00/1972,,Somalia,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0014 (UN Ref):SOi.014,Individual,AKA,Good quality,Somalia,23/10/2014,24/09/2014,31/12/2020,13150 +ABDILLAH,Abdul,,,,,,,,,04/11/1963,"Arco, Lamitan, Basilan",Philippines,Philippines,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0175 (UN Ref):QDi.243 Member of the Rajah Solaiman Movement (QDe.128). Father's name is Feliciano Delos Reyes Sr. Mother's name is Aurea Semborio. In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10663 +ABDILLAH,Abubakar,,,,,,,,,04/11/1963,"Arco, Lamitan, Basilan",Philippines,Philippines,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0175 (UN Ref):QDi.243 Member of the Rajah Solaiman Movement (QDe.128). Father's name is Feliciano Delos Reyes Sr. Mother's name is Aurea Semborio. In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10663 +ABDOLLAHI,Hamed,,,,,General,,,,11/08/1960,,Iran,Iran,D9004878,Iranian,,,Senior Quds Officer,,,,,,,,Iran,"(UK Sanctions List Ref):CTI0001 Links to IRGC5: Soleimani, Shahlai, Shakuri and Arbabsiar. (UK Statement of Reasons):Hamed Abdollahi is a senior commander in the Iranian Revolutionary Guards-Qods Force (IRGC-QF). Mr Abdollahi has been accused of overseeing and coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US, in 2011. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),17/10/2011,31/12/2020,15/03/2022,12205 +ABDOULAYE,Hissene,,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Nana-Grebizi,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ABDOULAYE,Hissene,,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,KM5,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ABDOULAYE,Hissene,,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ABDOULAYE,Hissene,,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndjari,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ABDOULAYE,Hissene,,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndjari,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ABDOULAYE,Hissene,,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ABDOULAYE,Hissene,,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,KM5,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ABDOULAYE,Hissene,,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Nana-Grebizi,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ABDOULAYE,Issene,,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Nana-Grebizi,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ABDOULAYE,Issene,,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,KM5,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ABDOULAYE,Issene,,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndjari,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ABDOULAYE,Issene,,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ABDOULAYE,Issene,,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndjari,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ABDOULAYE,Issene,,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ABDOULAYE,Issene,,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,KM5,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ABDOULAYE,Issene,,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Nana-Grebizi,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ABDRAZZAK,,,,,,,,,,,Massaua,Eritrea,Eritrea,,,,,Leader of a transnational trafficking network,,,,,,,,,"(UK Sanctions List Ref):LIB0050 (UN Ref):LYi.022 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)",Individual,AKA,Good quality,Libya,08/06/2018,07/06/2018,21/01/2021,13672 +ABDU,Muhammad,Jamal,,,,,,,,01/01/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +ABDU,Muhammad,Jamal,,,,,,,,01/02/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +ABDU,Muhammad,Jamal,Ahmad,,,,,,,01/01/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +ABDU,Muhammad,Jamal,Ahmad,,,,,,,01/02/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +ABDUH,Muhammad,Jamal,,,,,,,,01/01/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +ABDUH,Muhammad,Jamal,,,,,,,,01/02/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +ABDUKAHLIL,,,,,,,,,,20/03/1978,"Gattaran, Cagayan Province",Philippines,Philippines,,,,,,3111 Ma. Bautista,Punta,Santa Ana,,,Manila,,Philippines,"(UK Sanctions List Ref):AQD0141 (UN Ref):QDi.241 Distinguishing marks include scars on both legs. Member of the Rajah Solaiman Movement (QDe.128), and associated with the Abu Sayyaf Group (QDe.001) and the Jemaah Islamiyah (QDe.092). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10661 +ABDUL,Ismail,,,,,Shaikh,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +ABDUL,Ismail,,,,,Shaikh,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +ABDUL,Ismail,,,,,Shaikh,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +ABDUL,Majeed,,,,,,,,,15/04/1939,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0222 (UN Ref):QDi.054 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1422960,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,6901 +ABDUL,Majeed,,,,,,,,,00/00/1938,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0222 (UN Ref):QDi.054 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1422960,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,6901 +ABDUL,Majeed,Chaudhry,,,,,,,,15/04/1939,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0222 (UN Ref):QDi.054 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1422960,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,6901 +ABDUL,Majeed,Chaudhry,,,,,,,,00/00/1938,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0222 (UN Ref):QDi.054 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1422960,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,6901 +ABDUL,Majid,,,,,,,,,15/04/1939,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0222 (UN Ref):QDi.054 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1422960,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,6901 +ABDUL,Majid,,,,,,,,,00/00/1938,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0222 (UN Ref):QDi.054 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1422960,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,6901 +ABDUL,Rahman,Muhammad,al-Bayati,,,,,,,00/00/1959,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +ABDUL,Rahman,Muhammad,al-Bayati,,,,,,,00/00/1957,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +ABDUL,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Gebang,Kecamatan Masaran,Kabupaten Sragen,,,Jawa Tengah,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ABDUL,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Taman Fajar,Kecamatan Probolinggo,Kabupaten Lampung Timur,,,Lampung,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ABDUL AHAD,Azizirahman,,,,,Mr,عزیز الرحمان عبد الاحد,,,00/00/1972,"Shega District, Kandahar Province",Afghanistan,Afghanistan,,,44323,(Afghan) (tazkira),"Third Secretary, Taliban Embassy, Abu Dhabi, United Arab Emirates",,,,,,,,,(UK Sanctions List Ref):AFG0094 (UN Ref):TAi.121 Belongs to Hotak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7055 +ABDUL AHMAD TURK,Abdul Ghani,Baradar,,,,Mullah,عبدالغنی برادر عبد الاحمد ترک,,,00/00/1968,"Yatimak village, Dehrawood District, Uruzgan Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Defence under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0024 (UN Ref):TAi.024 Arrested in Feb. 2010 and in custody in Pakistan. Extradition request to Afghanistan pending in Lahore High Court, Pakistan as of June 2011. Belongs to Popalzai tribe. Senior Taliban military commander and member of Taliban Quetta Council as of May 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7060 +ABDUL AZIZ,,,,,,,Абул Азиз,,,07/09/1975,"Chegem-1 Village, Chegemskiy District, Republic of Kabardino-Balkaria",Russia,Russia,622641887,Russian foreign travel passport number,8304661431,Russian Federation national passport,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0343 (UN Ref):QDi.367 As at Aug. 2015, one of the leaders of the Army of Emigrants and Supporters (QDe.148). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899831. Syria, located in as at Aug. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13302 +ABDUL AZIZ,,,,,,,Абул Азиз,,,07/09/1975,"Chegem-1 Village, Chegemskiy District, Republic of Kabardino-Balkaria",Russia,Russia,622641887,Russian foreign travel passport number,8304661431,Russian Federation national passport,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0343 (UN Ref):QDi.367 As at Aug. 2015, one of the leaders of the Army of Emigrants and Supporters (QDe.148). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899831. Syria, located in as at Aug. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13302 +ABDUL BASEER,Abdul Qadeer,Basir,,,,(1) General (2) Maulavi,عبدالقدیر بصیر عبد البصير,,,00/00/1964,"(1) Hisarak District, Nangarhar Province. (2) Surkh Rod District, Nangarhar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,D 000974,Afghanistan number,,,"(1) Head of Taliban Peshawar Financial Commission. (2) Military Attache, Taliban Embassy, Islamabad, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0098 (UN Ref):TAi.128 Financial advisor to Taliban Peshawar Military Council and Head of Taliban Peshawar Financial Commission. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6911 +ABDUL BASIR,NAZIR MOHAMMAD,,,,,(1) Maulavi (2) Sar Muallim,نظر محمدعبد البصیر,,,00/00/1954,"Malaghi Village, Kunduz District, Kunduz Province",Afghanistan,Afghanistan,,,,,(1) Mayor of Kunduz City (2) Acting Governor of Kunduz Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0078 (UN Ref):TAi.100 Alternative title: Sar Muallim. Reconciled after the fall of the Taliban regime, and assumed duties under the new Government on district level in Kunduz Province. Confirmed assassinated by Taliban on 9 November 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7298 +ABDUL CHAUDHRY,Majeed,,,,,,,,,15/04/1939,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0222 (UN Ref):QDi.054 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1422960,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,6901 +ABDUL CHAUDHRY,Majeed,,,,,,,,,00/00/1938,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0222 (UN Ref):QDi.054 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1422960,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,6901 +ABDUL GHANI,ABDUL GHAFAR,QURISHI,,,,Maulavi,عبدالغفار قریشی عبد الغنی,,,00/00/1970,"Turshut village, Wursaj District, Takhar Province",Afghanistan,Afghanistan,D 000933,(Afghan) Issued in Kabul on 13 Sep 1998,55130,(Afghan) (tazkira),"Repatriation Attache, Taliban Embassy, Islamabad, Pakistan",Khairkhana Section,Number 3,,,,Kabul,,Afghanistan,(UK Sanctions List Ref):AFG0100 (UN Ref):TAi.130 Involved in drug trafficking. Belongs to Tajik ethnic group. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7405 +ABDUL GHANI,ABDUL GHAFAR,QURISHI,,,,Maulavi,عبدالغفار قریشی عبد الغنی,,,00/00/1967,"Turshut village, Wursaj District, Takhar Province",Afghanistan,Afghanistan,D 000933,(Afghan) Issued in Kabul on 13 Sep 1998,55130,(Afghan) (tazkira),"Repatriation Attache, Taliban Embassy, Islamabad, Pakistan",Khairkhana Section,Number 3,,,,Kabul,,Afghanistan,(UK Sanctions List Ref):AFG0100 (UN Ref):TAi.130 Involved in drug trafficking. Belongs to Tajik ethnic group. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7405 +ABDUL KADER,,,,,,,,,,,,,(1) Lebanon. (2) Syria,,,,,Owner and senior member of numerous political and business organisations.,,,,,,,,,"(UK Sanctions List Ref):SYR0354 Owner of Sabra Maritime Agency, head of the Syrian-Turkish Businessmen Council and founding partner of Phenicia Tourism Company ; president of the Chamber of Maritime Navigation in Syria. Linked to Phoenicia Tourism Company; Sabra Maritime Agency. (UK Statement of Reasons):Leading businessperson operating in Syria with multiple economic interests, especially in the maritime and the tourism sectors. As a major shipping magnate and a close business associate to Rami Makhlouf (regime supporter and cousin of Bashar al-Assad) Adelkader SABRA provides financial and economic support to the Syrian regime, including through offshore companies. Adbulkader SABRA also benefits from his ties to the regime, which allowed him to expand his activities to the real estate sector. He is also involved in money laundering and commercial activities in support to the Syrian regime and its associates. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13819 +ABDUL MANAN,Abdul Satar,,,,,Haji,عبد الستار عبد المنان,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Abdul Satar Food Shop,Ayno Mina 0093,,,,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +ABDUL MANAN,Abdul Satar,,,,,Haji,عبد الستار عبد المنان,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Chaman,,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +ABDUL MANAN,Abdul Satar,,,,,Haji,عبد الستار عبد المنان,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Kachray Road,Pashtunabad,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +ABDUL MANAN,Abdul Satar,,,,,Haji,عبد الستار عبد المنان,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Nasrullah Khan Chowk,Pashtunabad Area,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +ABDUL QADER,Abdul Hai,Hazem,,,,(1) Maulavi (2) Mullah,عبد الحی عظیم عبد القادر,,,00/00/1971,"Pashawal Yargatoo village, Andar District, Ghazni Province",Afghanistan,Afghanistan,D 0001203,Issued in Afghanistan,,,"First Secretary, Taliban Consulate General, Quetta, Pakistan",Puli Charkhi Area,District Number 9,,,Kabul City,Kabul Province,,Afghanistan,(UK Sanctions List Ref):AFG0110 (UN Ref):TAi.142 Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6895 +ABDUL QADIR,Ahmad Taha,Khalid,,,,Maulavi,احمد طه خالد عبد القادر,,,00/00/1963,"(1) Khost Province. (2) Nangarhar Province. (3) Siddiq Khel village, Naka District, Paktia Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Governor of Paktia Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0083 (UN Ref):TAi.105 Taliban member responsible for Nangarhar Province as at 2011. Believed to be in Afghanistan/Pakistan border area. Belongs to Zadran tribe. Close associate of Sirajuddin Jallaloudine Haqqani (TAi.144). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/Howwe-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7481 +ABDUL QADR - SABRA,,,,,,,,,,,,,(1) Lebanon. (2) Syria,,,,,Owner and senior member of numerous political and business organisations.,,,,,,,,,"(UK Sanctions List Ref):SYR0354 Owner of Sabra Maritime Agency, head of the Syrian-Turkish Businessmen Council and founding partner of Phenicia Tourism Company ; president of the Chamber of Maritime Navigation in Syria. Linked to Phoenicia Tourism Company; Sabra Maritime Agency. (UK Statement of Reasons):Leading businessperson operating in Syria with multiple economic interests, especially in the maritime and the tourism sectors. As a major shipping magnate and a close business associate to Rami Makhlouf (regime supporter and cousin of Bashar al-Assad) Adelkader SABRA provides financial and economic support to the Syrian regime, including through offshore companies. Adbulkader SABRA also benefits from his ties to the regime, which allowed him to expand his activities to the real estate sector. He is also involved in money laundering and commercial activities in support to the Syrian regime and its associates. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13819 +ABDUL QUDDUS,Sayed Esmatullah,Asem,,,,Maulavi,سید عصمت الله عاصم عبد القدوس,,,00/00/1967,"Qalayi Shaikh, Chaparhar District, Nangarhar Province",Afghanistan,Afghanistan,,,,,(1) Deputy Minister of Preventing Vice and Propagating Virtue under the Taliban regime. (2) Secretary General of the Afghan Red Crescent Society (ARCS) under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0061 (UN Ref):TAi.080 Member of the Taliban Supreme Council as of May 2007. Believed to be in Afghanistan/ Pakistan border area. Member of the Taliban Peshawar Shura. Responsible for Afghan Taliban activity in Federally Administrated Tribal Areas, Pakistan as at 2008. A leading expert in IED and suicide attacks as of 2012. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7033 +ABDUL RAHMAN,Muhammad,Jabril,,,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDUL RAHMAN,Muhammad,Jabril,,,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDUL RAHMAN,Muhammad,Jabril,,,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDUL RAHMAN,Muhammad,Jabril,,,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDUL RAHMAN,Muhammad,Jabril,,,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDUL RAHMAN,Muhammad,Jabril,,,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDUL RAHMAN,Muhammad,Jabril,,,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDUL RAHMAN,Muhammad,Jabril,,,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDUL RAHMAN,Muhammad,Jibriel,,,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDUL RAHMAN,Muhammad,Jibriel,,,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDUL RAHMAN,Muhammad,Jibriel,,,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDUL RAHMAN,Muhammad,Jibriel,,,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDUL RAHMAN,Muhammad,Jibriel,,,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDUL RAHMAN,Muhammad,Jibriel,,,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDUL RAHMAN,Muhammad,Jibriel,,,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDUL RAHMAN,Muhammad,Jibriel,,,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDUL SALAM,Muhammed,Muammar,Muhammed,,,,,,,00/00/1970,Tripoli,Libya,,03824969,Oman. Issued on 4 May 2014,97183904,Oman,,,,,,,,,Oman,"(UK Sanctions List Ref):LIB0056 (UN Ref):LYi.012 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525875",Individual,AKA,Good quality,Libya,03/03/2011,26/02/2011,30/04/2021,11647 +ABDUL SAYED,ALY,SOLIMAN,MASSOUD,,,,,,,00/00/1969,Tripoli,Libya,Libya,96/184442,Libyan Passport No.,,,,Ghout El Shamal,,,,,Tripoli,,Libya,(UK Sanctions List Ref):AQD0135 (UN Ref):QDi.229 Member of Libyan Islamic Fighting Group (QDe.011). Review pursuant to Security Council resolution 1822 (2008) was concluded on 24 Nov. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1479979,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,15/06/2007,08/06/2007,31/12/2020,8650 +ABDUL ZAHIR,Shams,Ur-Rahman,,,,(1) Mullah (2) Maulavi,شمس الرحمن عبد الظاهر,,,00/00/1969,"Waka Uzbin village, Sarobi District, Kabul Province",Afghanistan,Afghanistan,,,(1) 2132370 (2) 812673,(1) Afghan national identification card (tazkira) number (2) Afghan national identification card (tazkira) number,Deputy Minister of Agriculture under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0012 (UN Ref):TAi.008 Believed to be in Afghanistan/Pakistan border area. Involved in drug trafficking. Belongs to Ghilzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7532 +ABDULASATTAR,,,,,,,,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Abdul Satar Food Shop,Ayno Mina 0093,,,,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +ABDULASATTAR,,,,,,,,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Chaman,,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +ABDULASATTAR,,,,,,,,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Kachray Road,Pashtunabad,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +ABDULASATTAR,,,,,,,,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Nasrullah Khan Chowk,Pashtunabad Area,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +ABDUL-GHANI,,,,,,,,,,24/09/1959,Al-Khitan area,Kuwait,Kuwait,(1) 101423404 (2) 2541451 (3) 002327881,(1) - (2) Kuwait number valid until 16 Feb. 2017 (3) Kuwait number,259092401188,Kuwait,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0210 (UN Ref):QDi.237 Previously listed between 16 Jan. 2008 and 3 Jan. 2014 (amended on 1 Jul. 2008, 23 Jul. 2008, 25 Jan. 2010). Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518755. Address country Kuwait, residence as at March 2009 and at December 2013",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,03/01/2014,31/12/2020,9225 +ABDULHAMID,Khamis,,,,,,,,,,,,Syria,,,,,Chairman of Overseas Petroleum Trading Company (OPT),,,,,,,,,"(UK Sanctions List Ref):SYR0002 (UK Statement of Reasons):Chairman of Overseas Petroleum Trading Company (OPT) which has been listed for benefiting from and supporting the Syrian regime. He coordinated shipments of oil to the Syrian regime with listed Syrian state oil company Sytrol. Therefore, he is benefitting from and providing support to the Syrian regime. In view of his position as the most senior person in the entity he is responsible for its activities and associated with it. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13164 +ABDULHAMID,Khamis,Ahmad,,,,,,,,,,,Syria,,,,,Chairman of Overseas Petroleum Trading Company (OPT),,,,,,,,,"(UK Sanctions List Ref):SYR0002 (UK Statement of Reasons):Chairman of Overseas Petroleum Trading Company (OPT) which has been listed for benefiting from and supporting the Syrian regime. He coordinated shipments of oil to the Syrian regime with listed Syrian state oil company Sytrol. Therefore, he is benefitting from and providing support to the Syrian regime. In view of his position as the most senior person in the entity he is responsible for its activities and associated with it. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13164 +ABDULKARIM,Mohamad,,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ABDULKARIM,Mohamad,,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ABDULKARIM,Mohamad,,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ABDULKARIM,Mohamad,,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ABDULKARIM,Mohamad,,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ABDULKARIM,Mohamad,,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ABDULLAH,,,,,,,,,,,,Pakistan,Pakistan,,,51602-9768615-5,,Former commander of Lashkar-e-Jhangvi,Karachi central prison,,,,,,,Pakistan,"(UK Sanctions List Ref):GHR0082 Affiliated with ISIS-K (UK Statement of Reasons):Furqan Bangalzai was commander of the militant wing of the terror organisation Lashkar-e-Jhangvi. In this capacity, he was involved in an activity which, if carried out by or on behalf of a State within the territory of that State, would amount to a serious violation by that State of an individual’s right to life by his role in facilitating the bombing of the Lal Shahbaz Qalandar shrine in Sehwan, Pakistan, in which at least 70 people were killed. Additional information: In May 2020, Bangalzai was convicted of 70 counts of murder for his involvement in the bombing. (Gender):Male",Individual,AKA,,Global Human Rights,10/12/2021,10/12/2021,10/12/2021,14167 +ABDULLAH,,,,,,,,,,,,Pakistan,Pakistan,,,51602-9768615-5,,Former commander of Lashkar-e-Jhangvi,Saryab Road,,,,,Sindhi Gali Quetta,,Pakistan,"(UK Sanctions List Ref):GHR0082 Affiliated with ISIS-K (UK Statement of Reasons):Furqan Bangalzai was commander of the militant wing of the terror organisation Lashkar-e-Jhangvi. In this capacity, he was involved in an activity which, if carried out by or on behalf of a State within the territory of that State, would amount to a serious violation by that State of an individual’s right to life by his role in facilitating the bombing of the Lal Shahbaz Qalandar shrine in Sehwan, Pakistan, in which at least 70 people were killed. Additional information: In May 2020, Bangalzai was convicted of 70 counts of murder for his involvement in the bombing. (Gender):Male",Individual,AKA,,Global Human Rights,10/12/2021,10/12/2021,10/12/2021,14167 +ABDULLAH,Abdelhamid,Khamis,,,,,,,,,,,Syria,,,,,Chairman of Overseas Petroleum Trading Company (OPT),,,,,,,,,"(UK Sanctions List Ref):SYR0002 (UK Statement of Reasons):Chairman of Overseas Petroleum Trading Company (OPT) which has been listed for benefiting from and supporting the Syrian regime. He coordinated shipments of oil to the Syrian regime with listed Syrian state oil company Sytrol. Therefore, he is benefitting from and providing support to the Syrian regime. In view of his position as the most senior person in the entity he is responsible for its activities and associated with it. (Gender):Male",Individual,Primary name,,Syria,22/10/2014,31/12/2020,13/05/2022,13164 +ABDULLAH,Abdullah,,,,,,,,,00/00/1956,,,Syria,,,,,State Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0063 (UK Statement of Reasons):State Minister. As a Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population. (Gender):Male",Individual,Primary name,,Syria,14/11/2016,31/12/2020,13/05/2022,13408 +ABDULLAH,Ali,Zafir,,,,,,,,17/07/1970,,,Iraq,,,,,,,,,,,Beirut,,Lebanon,(UK Sanctions List Ref):IRQ0146 (UN Ref):IQi.085,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8697 +ABDULLAH,Ali,Zafir,,,,,,,,17/07/1970,,,Iraq,,,,,,Fuad Dawod Farm,,,,Az Zabadani,Damascus,,Syria,(UK Sanctions List Ref):IRQ0146 (UN Ref):IQi.085,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8697 +ABDULLAH,Binalshibh,Ramsi,Mohamed,,,,,,,16/09/1973,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +ABDULLAH,Binalshibh,Ramsi,Mohamed,,,,,,,01/05/1972,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +ABDULLAH,Binalshibh,Ramzi,Mohammed,,,,,,,16/09/1973,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +ABDULLAH,Binalshibh,Ramzi,Mohammed,,,,,,,01/05/1972,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +ABDULLAH,Qazi,,,,,,,,,05/02/1981,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +ABDULLAH,Qazi,,,,,,,,,01/01/1972,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +ABDULLAH,Salwa,,,,,,,,,00/00/1953,Quneitra,Syria,Syria,,,,,Minister of Social Affairs and Labour. Appointed in August 2020,,,,,,,,,"(UK Sanctions List Ref):SYR0216 (UK Statement of Reasons):State Minister. Appointed in July 2016. As Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Female",Individual,Primary name,,Syria,14/11/2016,31/12/2020,31/12/2020,13409 +ABDULLAH,Amir,,,,,,امیر عبد الله,,,00/00/1972,Paktika Province,Afghanistan,Afghanistan,,,,,Former Kandahar Province Deputy Taliban Governor,,,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AFG0113 (UN Ref):TAi.145 Has travelled to Kuwait, Saudi Arabia, the Libyan Arab Jamahiriya and the United Arab Emirates to raise funds for the Taliban. Treasurer to Abdul Ghani Baradar Abdul Ahmad Turk (TAi.024). Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11205 +ABDULLAH,Nabel,,,,,,,,,,,,Syria,,,,,Commander of the National Defence Forces in the city of Suqaylabiyah,,,,,,,,,"(UK Sanctions List Ref):RUS1545 (UK Statement of Reasons):Commander Nabeul AL-ABDULLAH has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, (1) promoting and supporting Russia’s invasion of Ukraine and (2) overseeing the recruitment of Syrian mercenaries to fight alongside Russia in Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/07/2022,26/07/2022,26/07/2022,15473 +ABDULLAH ABDURRAHMAN,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Gebang,Kecamatan Masaran,Kabupaten Sragen,,,Jawa Tengah,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ABDULLAH ABDURRAHMAN,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Taman Fajar,Kecamatan Probolinggo,Kabupaten Lampung Timur,,,Lampung,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ABDULLAH AZZAM BRIGADES,,,,,,,,,,,,,,,,,,,,,,,,,,Lebanon,(UK Sanctions List Ref):AQD0002 (UN Ref):QDe.144 An armed group that has carried out joint attacks with Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13141 +ABDULLAH AZZAM BRIGADES,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0002 (UN Ref):QDe.144 An armed group that has carried out joint attacks with Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13141 +ABDULLATIF,Suhail,Mohammad,,,,,,,,00/00/1961,Lattakia,Syria,Syria,,,,,Minister of Public Works and Housing,,,,,,,,,"(UK Sanctions List Ref):SYR0349 Relatives/business associates or partners/links to listed individuals: Bashar Asad (UK Statement of Reasons):Minister of Public Works and Housing. Appointed in November 2018. As Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,04/03/2019,31/12/2020,31/12/2020,13775 +ABDULQADER,Ahmad,al-Sheik,,,,,,,,,,,,,,,,Former Governor of Quneitra,,,,,,,,,"(UK Sanctions List Ref):SYR0007 (UK Statement of Reasons):Former Governor of Quneitra, associated with and appointed by Bashar al-Assad. Previously Governor of Latakia. Supports and benefits from the regime, including by public support for the Syrian Armed Forces and pro-regime militia. (Gender):Male",Individual,AKA,,Syria,28/10/2016,31/12/2020,31/12/2020,13387 +ABDUL-QADER,Ahmad,Sheikh,,,,,القادر عبد الشيخ أحمد,,,,,,,,,,,Former Governor of Quneitra,,,,,,,,,"(UK Sanctions List Ref):SYR0007 (UK Statement of Reasons):Former Governor of Quneitra, associated with and appointed by Bashar al-Assad. Previously Governor of Latakia. Supports and benefits from the regime, including by public support for the Syrian Armed Forces and pro-regime militia. (Gender):Male",Individual,Primary name,,Syria,28/10/2016,31/12/2020,31/12/2020,13387 +ABDULRAHMAN,Abu,,,,,,,,,01/10/1961,,Kuwait,Kuwait,(1) 101856740 (2) 002955916,"(1) Kuwait number, issued on 12 May 2005 (and expired on 11 May 2007) (2) Kuwait number",261122400761,Kuwait,,,,,,,Al-Salibekhat area,,Kuwait,"(UK Sanctions List Ref):AQD0258 (UN Ref):QDi.238 Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518768. Address country Kuwait, (residence as at March 2009)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,16/01/2008,31/12/2020,9226 +ABDULRAZAK,,,,,,,,,,,Massaua,Eritrea,Eritrea,,,,,Leader of a transnational trafficking network,,,,,,,,,"(UK Sanctions List Ref):LIB0050 (UN Ref):LYi.022 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)",Individual,AKA,Good quality,Libya,08/06/2018,07/06/2018,21/01/2021,13672 +ABDULROHMAN,Oman,,,,,,,,,05/01/1972,Sumedang,Indonesia,Indonesia,,,,,,Pasir Putih Prison,,,,,Nusa Kambangan Island,,Indonesia,"(UK Sanctions List Ref):AQD0280 (UN Ref):QDi.407 De facto leader for all Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), supporters in Indonesia, despite his incarceration in Indonesia since December 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116589",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13518 +ABDUR RAHMAN,,,,,,,,,,03/10/1965,Mirpur Khas,Pakistan,Pakistan,CV9157521,"Pakistan number, issued on 8 Sep. 2008, expires on 7 Sep. 2013.",44103-5251752-5,Pakistan national identity card number,,,,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0112 (UN Ref):QDi.309 Has provided facilitation and financial services to Al-Qaida (QDe.004). Associated with Harakatul Jihad Islami (QDe.130), Jaish-I-Mohammed (QDe.019), and Al-Akhtar Trust International (QDe.121). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040885",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,31/12/2020,12632 +ABDUR REHMAN,,,,,,,عبد الرحمن,,,03/10/1965,Mirpur Khas,Pakistan,Pakistan,CV9157521,"Pakistan number, issued on 8 Sep. 2008, expires on 7 Sep. 2013.",44103-5251752-5,Pakistan national identity card number,,,,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0112 (UN Ref):QDi.309 Has provided facilitation and financial services to Al-Qaida (QDe.004). Associated with Harakatul Jihad Islami (QDe.130), Jaish-I-Mohammed (QDe.019), and Al-Akhtar Trust International (QDe.121). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040885",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,31/12/2020,12632 +ABDURAHMAN,Aman,,,,,,,,,05/01/1972,Sumedang,Indonesia,Indonesia,,,,,,Pasir Putih Prison,,,,,Nusa Kambangan Island,,Indonesia,"(UK Sanctions List Ref):AQD0280 (UN Ref):QDi.407 De facto leader for all Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), supporters in Indonesia, despite his incarceration in Indonesia since December 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116589",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13518 +ABDURAKHMANOV,MAGHOMED,MAGHOMEDZAKIROVICH,,,,,Абдурахманов Магомед Магомедзакирович,,,24/11/1974,"Khadzhalmahi Village, Levashinskiy District, Republic of Dagestan",Russia,Russia,515458008,Russian foreign travel passport number,8200203535,Russian Federation national passport,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0218 (UN Ref):QDi.363 As at Aug. 2015, leader of Jamaat Abu Banat terrorist group, which forms part of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and operates on the outskirts of Syrian Arab Republic cities Aleppo and Idlib, extorting funds from and carrying out kidnappings and public executions of local Syrians. Physical description: eye colour brown, hair colour: dark, build: strong, straight nose, height: 180-185 cm, speaks Russian, English, Arabic. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899816. Address country Turkey (possible location), Syrian Arab Republic (previous confirmed location since September 2012).",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,11/02/2022,13298 +ABDURAKHMANOV,MAGHOMED,MAGHOMEDZAKIROVICH,,,,,Абдурахманов Магомед Магомедзакирович,,,24/11/1974,"Khadzhalmahi Village, Levashinskiy District, Republic of Dagestan",Russia,Russia,515458008,Russian foreign travel passport number,8200203535,Russian Federation national passport,,,,,,,,,Turkey,"(UK Sanctions List Ref):AQD0218 (UN Ref):QDi.363 As at Aug. 2015, leader of Jamaat Abu Banat terrorist group, which forms part of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and operates on the outskirts of Syrian Arab Republic cities Aleppo and Idlib, extorting funds from and carrying out kidnappings and public executions of local Syrians. Physical description: eye colour brown, hair colour: dark, build: strong, straight nose, height: 180-185 cm, speaks Russian, English, Arabic. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899816. Address country Turkey (possible location), Syrian Arab Republic (previous confirmed location since September 2012).",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,11/02/2022,13298 +ABDUREZAK,,,,,,,,,,,Massaua,Eritrea,Eritrea,,,,,Leader of a transnational trafficking network,,,,,,,,,"(UK Sanctions List Ref):LIB0050 (UN Ref):LYi.022 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)",Individual,AKA,Good quality,Libya,08/06/2018,07/06/2018,21/01/2021,13672 +ABDURRACHMAN,Aman,,,,,,,,,05/01/1972,Sumedang,Indonesia,Indonesia,,,,,,Pasir Putih Prison,,,,,Nusa Kambangan Island,,Indonesia,"(UK Sanctions List Ref):AQD0280 (UN Ref):QDi.407 De facto leader for all Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), supporters in Indonesia, despite his incarceration in Indonesia since December 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116589",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13518 +ABDURRAHMAN,Abu,Jibril,,,,,,,,17/08/1958,"(1) Tirpas-Selong Village, East Lombok (2) Korleko-Lombok Timur",(1) Indonesia (2) Indonesia,Indonesia,,,3603251708570001,,,Jalan Nakula,Komplek Witana Harja III Blok C 106-107,,,,Tangerang,,Indonesia,(UK Sanctions List Ref):AQD0235 (UN Ref):QDi.086 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,6894 +ABDURRAHMAN,Abu,Jibril,,,,,,,,17/08/1957,"(1) Tirpas-Selong Village, East Lombok (2) Korleko-Lombok Timur",(1) Indonesia (2) Indonesia,Indonesia,,,3603251708570001,,,Jalan Nakula,Komplek Witana Harja III Blok C 106-107,,,,Tangerang,,Indonesia,(UK Sanctions List Ref):AQD0235 (UN Ref):QDi.086 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,6894 +ABDURRAHMAN,Aman,,,,,,,,,05/01/1972,Sumedang,Indonesia,Indonesia,,,,,,Pasir Putih Prison,,,,,Nusa Kambangan Island,,Indonesia,"(UK Sanctions List Ref):AQD0280 (UN Ref):QDi.407 De facto leader for all Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), supporters in Indonesia, despite his incarceration in Indonesia since December 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116589",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13518 +ABDURRAHMAN,Mohammad,Jibriel,,,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDURRAHMAN,Mohammad,Jibriel,,,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDURRAHMAN,Mohammad,Jibriel,,,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDURRAHMAN,Mohammad,Jibriel,,,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDURRAHMAN,Mohammad,Jibriel,,,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDURRAHMAN,Mohammad,Jibriel,,,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDURRAHMAN,Mohammad,Jibriel,,,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDURRAHMAN,Mohammad,Jibriel,,,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDURRAHMAN,Mohammad,Jibril,,,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDURRAHMAN,Mohammad,Jibril,,,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDURRAHMAN,Mohammad,Jibril,,,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDURRAHMAN,Mohammad,Jibril,,,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDURRAHMAN,Mohammad,Jibril,,,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDURRAHMAN,Mohammad,Jibril,,,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDURRAHMAN,Mohammad,Jibril,,,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDURRAHMAN,Mohammad,Jibril,,,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ABDURRAHMAN,Muslim,Abu,,,,,,,,19/10/1978,Oslo,Norway,Norway,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0140 (UN Ref):QDi.331 Member of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Physical description: eye colour: brown; hair colour: brown; height: 185 cm. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13128 +ABDURRAHMAN,Oman,,,,,,,,,05/01/1972,Sumedang,Indonesia,Indonesia,,,,,,Pasir Putih Prison,,,,,Nusa Kambangan Island,,Indonesia,"(UK Sanctions List Ref):AQD0280 (UN Ref):QDi.407 De facto leader for all Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), supporters in Indonesia, despite his incarceration in Indonesia since December 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116589",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13518 +ABDURRAHMAN,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Gebang,Kecamatan Masaran,Kabupaten Sragen,,,Jawa Tengah,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ABDURRAHMAN,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Taman Fajar,Kecamatan Probolinggo,Kabupaten Lampung Timur,,,Lampung,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ABDURRAHMAN,MOHAMAD,IQBAL,,,,,,,,17/08/1958,"(1) Tirpas-Selong Village, East Lombok (2) Korleko-Lombok Timur",(1) Indonesia (2) Indonesia,Indonesia,,,3603251708570001,,,Jalan Nakula,Komplek Witana Harja III Blok C 106-107,,,,Tangerang,,Indonesia,(UK Sanctions List Ref):AQD0235 (UN Ref):QDi.086 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,6894 +ABDURRAHMAN,MOHAMAD,IQBAL,,,,,,,,17/08/1957,"(1) Tirpas-Selong Village, East Lombok (2) Korleko-Lombok Timur",(1) Indonesia (2) Indonesia,Indonesia,,,3603251708570001,,,Jalan Nakula,Komplek Witana Harja III Blok C 106-107,,,,Tangerang,,Indonesia,(UK Sanctions List Ref):AQD0235 (UN Ref):QDi.086 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,6894 +ABIB,Soussou,,,,,,,,,13/03/1980,,Central African Republic,Central African Republic,,,,,(1) Coordinator of anti-Balaka for Lobaye province (2) Master-corporal of the Central African Armed Forces (FACA),,,,,,Boda,,Central African Republic,"(UK Sanctions List Ref):CAF0006 (UN Ref):CFi.005 Appointed as anti-balaka zone commander (COMZONE) of Boda on 11 April 2014 and on 28 June 2014, for the entire Lobaye Province. Under his command, targeted killings, clashes and attacks against humanitarian organizations and aid workers have continued to take place. Physical description: eye colour: brown; hair colour: black; height: 160cm; weight: 60kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals (Phone number):+236 72198628",Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,31/12/2020,13272 +ABISOV,Sergey,Vadimovich,,,,,Сергей Вадимович АБИСОВ,,,27/11/1967,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Ukraine,,,,,Former “Minister of the Interior of the Republic of Crimea”,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0061 (UK Statement of Reasons):By accepting his appointment as so-called ‘Minister of Interior of the Republic of Crimea’ by the President of Russia (decree No.301) on 5 May 2014 and by his actions as so-called ‘Minister of Interior’ he has undermined the territorial integrity, sovereignty and unity of Ukraine. Dismissed as so-called 'Minister of Interior of the 'Republic of Crimea' in June 2018. Aide to the 'Chairman' of the Council of ministers of the so-called 'Republic of Crimea.' (Gender):Male",Individual,Primary name,,Russia,31/07/2014,31/12/2020,16/09/2022,13071 +ABISOV,Sergey,Vadymovych,,,,,,,,27/11/1967,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Ukraine,,,,,Former “Minister of the Interior of the Republic of Crimea”,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0061 (UK Statement of Reasons):By accepting his appointment as so-called ‘Minister of Interior of the Republic of Crimea’ by the President of Russia (decree No.301) on 5 May 2014 and by his actions as so-called ‘Minister of Interior’ he has undermined the territorial integrity, sovereignty and unity of Ukraine. Dismissed as so-called 'Minister of Interior of the 'Republic of Crimea' in June 2018. Aide to the 'Chairman' of the Council of ministers of the so-called 'Republic of Crimea.' (Gender):Male",Individual,Primary name variation,,Russia,31/07/2014,31/12/2020,16/09/2022,13071 +ABISOV,Sergiy,Vadimovich,,,,,,,,27/11/1967,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Ukraine,,,,,Former “Minister of the Interior of the Republic of Crimea”,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0061 (UK Statement of Reasons):By accepting his appointment as so-called ‘Minister of Interior of the Republic of Crimea’ by the President of Russia (decree No.301) on 5 May 2014 and by his actions as so-called ‘Minister of Interior’ he has undermined the territorial integrity, sovereignty and unity of Ukraine. Dismissed as so-called 'Minister of Interior of the 'Republic of Crimea' in June 2018. Aide to the 'Chairman' of the Council of ministers of the so-called 'Republic of Crimea.' (Gender):Male",Individual,Primary name variation,,Russia,31/07/2014,31/12/2020,16/09/2022,13071 +ABISOV,Sergiy,Vadymovych,,,,,,,,27/11/1967,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Ukraine,,,,,Former “Minister of the Interior of the Republic of Crimea”,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0061 (UK Statement of Reasons):By accepting his appointment as so-called ‘Minister of Interior of the Republic of Crimea’ by the President of Russia (decree No.301) on 5 May 2014 and by his actions as so-called ‘Minister of Interior’ he has undermined the territorial integrity, sovereignty and unity of Ukraine. Dismissed as so-called 'Minister of Interior of the 'Republic of Crimea' in June 2018. Aide to the 'Chairman' of the Council of ministers of the so-called 'Republic of Crimea.' (Gender):Male",Individual,Primary name variation,,Russia,31/07/2014,31/12/2020,16/09/2022,13071 +ABISOV,Serhiy,Vadimovich,,,,,,,,27/11/1967,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Ukraine,,,,,Former “Minister of the Interior of the Republic of Crimea”,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0061 (UK Statement of Reasons):By accepting his appointment as so-called ‘Minister of Interior of the Republic of Crimea’ by the President of Russia (decree No.301) on 5 May 2014 and by his actions as so-called ‘Minister of Interior’ he has undermined the territorial integrity, sovereignty and unity of Ukraine. Dismissed as so-called 'Minister of Interior of the 'Republic of Crimea' in June 2018. Aide to the 'Chairman' of the Council of ministers of the so-called 'Republic of Crimea.' (Gender):Male",Individual,Primary name variation,,Russia,31/07/2014,31/12/2020,16/09/2022,13071 +ABISOV,Serhiy,Vadymovych,,,,,,,,27/11/1967,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Ukraine,,,,,Former “Minister of the Interior of the Republic of Crimea”,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0061 (UK Statement of Reasons):By accepting his appointment as so-called ‘Minister of Interior of the Republic of Crimea’ by the President of Russia (decree No.301) on 5 May 2014 and by his actions as so-called ‘Minister of Interior’ he has undermined the territorial integrity, sovereignty and unity of Ukraine. Dismissed as so-called 'Minister of Interior of the 'Republic of Crimea' in June 2018. Aide to the 'Chairman' of the Council of ministers of the so-called 'Republic of Crimea.' (Gender):Male",Individual,Primary name variation,,Russia,31/07/2014,31/12/2020,16/09/2022,13071 +ABO GHAITH,,,,,,,,,,14/12/1965,,Kuwait,Kuwait,849594,"Kuwaiti number, issued on 27 Nov. 1998, issued in Kuwait and expired on 24 Jun. 2003.",,,,,,,,,,,,(UK Sanctions List Ref):AQD0318 (UN Ref):QDi.154 Left Kuwait for Pakistan in June 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487587,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,19/01/2004,16/01/2004,31/12/2020,7996 +ABOSSLAH,,,,,,,,,,19/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +ABOSSLAH,,,,,,,,,,18/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +ABRAMOV,Alexander,Grigoryevich,,,,,АБРАМОВ Александр Григорьевич,Cyrillic,Russian,20/02/1959,,,Russia,,,,,"Former Non-Executive Chairman and Director, Evraz Plc",,,,,,,,,"(UK Sanctions List Ref):RUS1656 (UK Statement of Reasons):Alexander Grigoryevich ABRAMOV (hereafter ABRAMOV) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 on the basis of the following grounds: 1. ABRAMOV is a former non-executive director of Evraz plc, in this role, ABRAMOV has been involved in obtaining a benefit from or supporting the Government of Russia by working as a Director of an entity carrying on business in sectors of strategic significance to the Government of Russia, namely, the Russian extractives, transport and construction sectors; 2. ABRAMOV is involved in obtaining a benefit from or supporting the Government of Russia by owning or controlling directly or indirectly (within the meaning of reg. 7 (2)) Evraz plc, an entity carrying on business in sectors of strategic significance to the Government of Russia, namely, the Russian extractives, transport and construction sectors. (Gender):Male",Individual,Primary name,,Russia,02/11/2022,02/11/2022,02/11/2022,15610 +ABRAMOV,Ivan,Nikolayevich,,,,,Иван Николаевич АБРАМОВ,,,16/06/1978,Blagoveshchensk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0893 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14844 +ABRAMOVICH,Roman,,,,,,,,,24/10/1966,Saratov,Russia,(1) Russia (2) Israel (3) Portugal,(1) CB982788 (2) 24132276,(1) Portugal (2) Israel,,,Stakeholder in Evraz PLC and Norilsk Nickel,,,,,,,,,"(UK Sanctions List Ref):RUS0270 (UK Statement of Reasons):Roman Arkadyevich ABRAMOVICH (hereafter ABRAMOVICH) is a prominent Russian businessman and pro-Kremlin oligarch. He is an involved person on the basis of the following grounds: (1) ABRAMOVICH is associated with a person who has been, and is, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine, namely President Vladimir PUTIN; (2) ABRAMOVICH is associated with an individual who is, and has been, involved in obtaining a benefit or supporting the Government of Russia, namely Alisher Usmanov; (3) ABRAMOVICH is involved in obtaining a benefit from or supporting the Government of Russia by owning or controlling directly or indirectly: (i) Evraz plc; and (ii) the following subsidiaries of Evraz plc: JSC Evraz NTMK; PJSC Raspadskaya; JSC Evraz ZSMK; JSC Evraz United Coal Company Yuzhkuzbassugol; and JSC Evraz Kachkanar Mining and Processing Plant; (4) ABRAMOVICH is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in sectors of strategic significance to the Government of Russia, namely: extractives, construction, and transport; (5) ABRAMOVICH is a member of, or associated with, a person who is or has been so involved, namely Evraz plc. (Gender):Male",Individual,Primary name variation,,Russia,10/03/2022,10/03/2022,23/08/2022,14212 +ABRAMOVICH,Roman,Arkadyevich,,,,,Роман Аркадьевич АБРАМОВИЧ,,,24/10/1966,Saratov,Russia,(1) Russia (2) Israel (3) Portugal,(1) CB982788 (2) 24132276,(1) Portugal (2) Israel,,,Stakeholder in Evraz PLC and Norilsk Nickel,,,,,,,,,"(UK Sanctions List Ref):RUS0270 (UK Statement of Reasons):Roman Arkadyevich ABRAMOVICH (hereafter ABRAMOVICH) is a prominent Russian businessman and pro-Kremlin oligarch. He is an involved person on the basis of the following grounds: (1) ABRAMOVICH is associated with a person who has been, and is, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine, namely President Vladimir PUTIN; (2) ABRAMOVICH is associated with an individual who is, and has been, involved in obtaining a benefit or supporting the Government of Russia, namely Alisher Usmanov; (3) ABRAMOVICH is involved in obtaining a benefit from or supporting the Government of Russia by owning or controlling directly or indirectly: (i) Evraz plc; and (ii) the following subsidiaries of Evraz plc: JSC Evraz NTMK; PJSC Raspadskaya; JSC Evraz ZSMK; JSC Evraz United Coal Company Yuzhkuzbassugol; and JSC Evraz Kachkanar Mining and Processing Plant; (4) ABRAMOVICH is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in sectors of strategic significance to the Government of Russia, namely: extractives, construction, and transport; (5) ABRAMOVICH is a member of, or associated with, a person who is or has been so involved, namely Evraz plc. (Gender):Male",Individual,Primary name,,Russia,10/03/2022,10/03/2022,23/08/2022,14212 +ABU,Ala,,,,,,,,,00/00/1959,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +ABU,Ala,,,,,,,,,00/00/1957,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +ABU,Al-Khayr,,,,,,,,,03/11/1957,Kafr Al-Shaykh,Egypt,Egypt,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0090 (UN Ref):QDi.192 Member of Egyptian Islamic Jihad (QDe.003). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4493165,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,12/01/2022,8717 +ABU,Al-Khayr,,,,,,,,,03/11/1957,Kafr Al-Shaykh,Egypt,Egypt,,,,,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0090 (UN Ref):QDi.192 Member of Egyptian Islamic Jihad (QDe.003). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4493165,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,12/01/2022,8717 +ABU,Hasan,,,,,,,,,00/00/1959,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +ABU,Hasan,,,,,,,,,00/00/1957,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +ABU,Iman,,,,,,,,,00/00/1959,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +ABU,Iman,,,,,,,,,00/00/1957,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +ABU,Jihad,,,,,,,,,03/11/1957,Kafr Al-Shaykh,Egypt,Egypt,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0090 (UN Ref):QDi.192 Member of Egyptian Islamic Jihad (QDe.003). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4493165,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,12/01/2022,8717 +ABU,Jihad,,,,,,,,,03/11/1957,Kafr Al-Shaykh,Egypt,Egypt,,,,,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0090 (UN Ref):QDi.192 Member of Egyptian Islamic Jihad (QDe.003). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4493165,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,12/01/2022,8717 +ABU,Muhammad,,,,,,,,,00/00/1959,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +ABU,Muhammad,,,,,,,,,00/00/1957,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +ABU,Shaima',Kuwaiti,,,,,,,,06/03/1973,,,Kuwait,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0085 (UN Ref):QDi.335 Provides support to Al-Qaida (QDe.004) and Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115), in Syria and Iraq. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818202",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13132 +ABU,Usamah,al-Kuwaiti,,,,,,,,06/03/1973,,,Kuwait,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0085 (UN Ref):QDi.335 Provides support to Al-Qaida (QDe.004) and Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115), in Syria and Iraq. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818202",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13132 +ABU,Usamah,al-Rahman,,,,,,,,06/03/1973,,,Kuwait,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0085 (UN Ref):QDi.335 Provides support to Al-Qaida (QDe.004) and Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115), in Syria and Iraq. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818202",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13132 +ABU,Zayna,,,,,,,,,00/00/1959,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +ABU,Zayna,,,,,,,,,00/00/1957,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +ABU AHMED GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +ABU AHMED GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +ABU AHMED GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +ABU BAKR,Ibrahim,Ali,Muhammad,,,,,,,02/02/1966,al Aziziyya,Libya,Libya,(1) 203037 (2) 347834(3) 434021161,(1) Libyan. Issued in Tripoli. (2) Libyan. Issued under name Ibrahim Ali Tantoush. Expired on 21 February 2014 (3) South African. Related to alias Abdel Ilah Sabri. Confiscated.,6910275240086,South African. Related to alias Abdel Ilah Sabri. Confiscated.,,,,,,,Tripoli,,Libya,"(UK Sanctions List Ref):AQD0197 (UN Ref):QDi.057 Associated with Afghan Support Committee (ASC) (QDe.069), Revival of Islamic Heritage Society (RIHS)(QDe.070) and the Libyan Islamic Fighting Group (LIFG) (QDe.011). Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446790. Tripoli as at Feb. 2014",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6927 +ABU DU'A,,,,,,,أبو دعاء,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +ABU DU'A,,,,,,,أبو دعاء,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +ABU DUAA,,,,,,,أبو دعاء,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +ABU DUAA,,,,,,,أبو دعاء,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +ABU HAFS THE MAURITANIAN,,,,,,,,,,01/01/1975,,Mauritania,Mauritania,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0219 (UN Ref):QDi.015 Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423438,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6928 +ABU HAIDRA,Abdul,Rasak,Ammane,,,,,,,01/01/1968,(1) Kef Rih (2) Guelma,(1) Algeria (2) Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0303 (UN Ref):QDi.152 In detention in Algeria since Oct. 2004. Former member of the GSPC listed as The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. El Para (combat name), Abderrezak Le Para (combat name).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/12/2003,04/12/2003,16/02/2022,7890 +ABU HAIDRA,Abdul,Rasak,Ammane,,,,,,,24/04/1968,(1) Kef Rih (2) Guelma,(1) Algeria (2) Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0303 (UN Ref):QDi.152 In detention in Algeria since Oct. 2004. Former member of the GSPC listed as The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. El Para (combat name), Abderrezak Le Para (combat name).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/12/2003,04/12/2003,16/02/2022,7890 +ABU HUSEYN,Hussein,Mansour,Othman,Aba,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABU HUSEYN,Hussein,Mansour,Othman,Aba,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABU HUSEYN,Mansour,Osman,,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABU HUSEYN,Mansour,Osman,,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABU HUSEYN,Mansour,Othman,M,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABU HUSEYN,Mansour,Othman,M,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABU HUSEYN,Mansur,Othman,M,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABU HUSEYN,Mansur,Othman,M,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABU HUSSEIN,Hussein,Mansour,Othman,Aba,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABU HUSSEIN,Hussein,Mansour,Othman,Aba,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABU HUSSEIN,Mansour,Osman,,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABU HUSSEIN,Mansour,Osman,,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABU HUSSEIN,Mansour,Othman,M,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABU HUSSEIN,Mansour,Othman,M,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABU HUSSEIN,Mansur,Othman,M,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABU HUSSEIN,Mansur,Othman,M,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABU JABAL,,,,,,,,,,17/12/1984,Buraidah,Saudi Arabia,Saudi Arabia,F800691,,1047503170,,,,,,,,,,,(UK Sanctions List Ref):AQD0202 (UN Ref):QDi.332 Explosives expert and operative for the Abdallah Azzam Brigades (AAB) (QDe.144). Wanted by the Saudi Arabian Government for terrorism. Physical description: eye colour: dark; hair colour: dark; complexion: olive. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,10/10/2014,23/09/2014,31/12/2020,13129 +ABU MARIAM,,,,,,,,,,06/06/1963,Gharbia,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0109 (UN Ref):QDi.019 Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6917 +ABU NIDAL ORGANISATION,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0022 (UK Statement of Reasons):Abu Nidal Organisation's principal aim is the destruction of the state of Israel. It is also hostile to ""reactionary"" Arab regimes and states supporting Israel. It has been involved in the planning and conducting of numerous acts of terrorism since the mid-1970s.",Entity,Primary name,,Counter-Terrorism (International),02/11/2001,31/12/2020,31/12/2020,6933 +ABU SAYYAF GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0003 (UN Ref):QDe.001 Associated with Jemaah Islamiyah (JI) (QDe.092). Current leader is Radulan Sahiron (QDi.208). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278422,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6935 +ABU- SHAYMA,,,,,,,أبو شيماء,,,00/08/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +ABU- SHAYMA,,,,,,,أبو شيماء,,,00/09/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +ABU- SHAYMA,,,,,,,أبو شيماء,,,00/00/1976,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +ABU WALID,Rukan,Abd al-Ghaffur,al-Majid,Al-Tikriti,,,,,,00/00/1956,Tikrit,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0082 (UN Ref):IQi.021,Individual,AKA,Good quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7623 +ABU ZUBEYR,Muktar,Abdirahman,,,,,,,,10/07/1977,Hargeysa,Somalia,Somalia,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0005 (UN Ref):SOi.004,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11091 +ABU-AL-KARKH,Yusuf,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,,Kermanshah,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +ABU-AL-KARKH,Yusuf,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,Military Base,Ilam Province,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +ABUBAKAR,,,,,,,Абубакар,,,22/10/1974,"Kitaevka, Novoselitskiy District, Stavropol Region",Russia,Russia,,,,,,Akharkho Street,11,Katyr-Yurt,,Achkhoy-Martanovskiy District,Republic of Chechnya,,Russia,(UK Sanctions List Ref):AQD0150 (UN Ref):QDi.396 Wanted by the authorities of the Russian Federation for terrorist crimes. Commands a suicide battalion of Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs (RSRSBCM) (QDe.100). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5966084,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/08/2016,03/08/2016,12/01/2022,13376 +ABUBAKAR,Abdul Patta,,,,,,,,,03/03/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Daina,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUBAKAR,Abdul Patta,,,,,,,,,03/03/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Jeddah,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUBAKAR,Abdul Patta,,,,,,,,,01/01/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Jeddah,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUBAKAR,Abdul Patta,,,,,,,,,01/01/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Daina,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUBAKAR,Abdul Patta,,,,,,,,,11/01/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Daina,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUBAKAR,Abdul Patta,,,,,,,,,11/01/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Jeddah,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUBAKAR,Abdul Patta,Escalon,,,,,,,,03/03/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Daina,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUBAKAR,Abdul Patta,Escalon,,,,,,,,03/03/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Jeddah,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUBAKAR,Abdul Patta,Escalon,,,,,,,,01/01/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Jeddah,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUBAKAR,Abdul Patta,Escalon,,,,,,,,01/01/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Daina,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUBAKAR,Abdul Patta,Escalon,,,,,,,,11/01/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Daina,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUBAKAR,Abdul Patta,Escalon,,,,,,,,11/01/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Jeddah,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUBAKAR,ABDULPATTA,ESCALON,,,,,,,,03/03/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Daina,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUBAKAR,ABDULPATTA,ESCALON,,,,,,,,03/03/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Jeddah,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUBAKAR,ABDULPATTA,ESCALON,,,,,,,,01/01/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Jeddah,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUBAKAR,ABDULPATTA,ESCALON,,,,,,,,01/01/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Daina,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUBAKAR,ABDULPATTA,ESCALON,,,,,,,,11/01/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Daina,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUBAKAR,ABDULPATTA,ESCALON,,,,,,,,11/01/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Jeddah,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ABUHUSSAIN,Hussein,Mansour,Othman,Aba,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABUHUSSAIN,Hussein,Mansour,Othman,Aba,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABUHUSSAIN,Mansour,Osman,,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABUHUSSAIN,Mansour,Osman,,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABUHUSSAIN,Mansour,Othman,M,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABUHUSSAIN,Mansour,Othman,M,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABUHUSSAIN,Mansur,Othman,M,,,,,,,10/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABUHUSSAIN,Mansur,Othman,M,,,,,,,11/08/1972,Majmaa,Saudi Arabia,Saudi Arabia,S059033,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0028 (UK Statement of Reasons):Mansour Othman M Abahussain held the position of Major General and worked in the office of the Crown Prince. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13861 +ABU-JABAL,,,,,,,,,,17/12/1984,Buraidah,Saudi Arabia,Saudi Arabia,F800691,,1047503170,,,,,,,,,,,(UK Sanctions List Ref):AQD0202 (UN Ref):QDi.332 Explosives expert and operative for the Abdallah Azzam Brigades (AAB) (QDe.144). Wanted by the Saudi Arabian Government for terrorism. Physical description: eye colour: dark; hair colour: dark; complexion: olive. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,10/10/2014,23/09/2014,31/12/2020,13129 +ABU-JULAYBIB,,,,,,,,,,00/00/1974,,Syria,Jordan,(1) 654781 (2) 286062,"(1) Jordan. Approximately issued in 2009. (2) Jordan. Issued on 5 April 1999 at Zarqa, Jordan. Expired on 4 April 2004.",,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0209 (UN Ref):QDi.400 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) for coastal area of Syrian Arab Republic since March 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6013286. Coastal area of Syrian Arab Republic. Location as of April 2016.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13447 +ABUKAR,Sheikh,,,,,,,,,00/00/1972,,,,,,,,Deputy leader of Al-Shabaab,,,,,,,,,"(UK Sanctions List Ref):SOM0017 (UN Ref):SOi.018 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Abukar Ali Adan is deputy leader of al-Shabaab, and is also associated with Al-Qaida affiliates, Al-Qaida in the Arabian Peninsula (AQAP – Qde.129) and Al-Qaida in the Islamic Maghreb (AQIM – Qde.014).",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14065 +ABUKAR,Sheikh,,,,,,,,,00/00/1971,,,,,,,,Deputy leader of Al-Shabaab,,,,,,,,,"(UK Sanctions List Ref):SOM0017 (UN Ref):SOi.018 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Abukar Ali Adan is deputy leader of al-Shabaab, and is also associated with Al-Qaida affiliates, Al-Qaida in the Arabian Peninsula (AQAP – Qde.129) and Al-Qaida in the Islamic Maghreb (AQIM – Qde.014).",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14065 +ABUKAR,Sheikh,,,,,,,,,00/00/1973,,,,,,,,Deputy leader of Al-Shabaab,,,,,,,,,"(UK Sanctions List Ref):SOM0017 (UN Ref):SOi.018 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Abukar Ali Adan is deputy leader of al-Shabaab, and is also associated with Al-Qaida affiliates, Al-Qaida in the Arabian Peninsula (AQAP – Qde.129) and Al-Qaida in the Islamic Maghreb (AQIM – Qde.014).",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14065 +ABU-KHALIL,,,,,,,,,,12/07/1977,,Qatar,Qatar,01016646,Qatar. Issued in Qatar. Expired on 11 Jan. 2017.,27763401255,Qatar identification number,,,,,,,Al Rayyan,,Qatar,(UK Sanctions List Ref):AQD0200 (UN Ref):QDi.344 Facilitator who provides financial support for and financial services to and in support of Al-Qaida (QDe.004). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843241,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,24/03/2021,13195 +ABUKOV,Sergei,Navilievich,,,,,АБУКОВ Сергей Навильевич,Cyrillic,Russian,17/03/1971,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1224 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15176 +ABUKOV,Sergey,Navilyevich,,,,,,,,17/03/1971,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1224 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15176 +ABU-MARZUQ,Mousa,Mohamed,Abou,,,,,,,09/02/1951,Gaza,Egypt,,92/664,Egypt,,,Senior Hamas Official,,,,,,,,,"(UK Sanctions List Ref):CTI0017 (UK Statement of Reasons):Mr Marzouk is a senior Hamas official and has been the deputy leader of Hamas since 1997. He has publicly represented the proscribed military wing of Hamas. He has been involved in terrorist financing and has defended Hamas’ terrorist activity, including the targeting of civilians. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),24/03/2004,31/12/2020,15/03/2022,7888 +ABU-MARZUQ,Sa'id,,,,,,,,,09/02/1951,Gaza,Egypt,,92/664,Egypt,,,Senior Hamas Official,,,,,,,,,"(UK Sanctions List Ref):CTI0017 (UK Statement of Reasons):Mr Marzouk is a senior Hamas official and has been the deputy leader of Hamas since 1997. He has publicly represented the proscribed military wing of Hamas. He has been involved in terrorist financing and has defended Hamas’ terrorist activity, including the targeting of civilians. (Gender):Male",Individual,AKA,,Counter-Terrorism (International),24/03/2004,31/12/2020,15/03/2022,7888 +ABU-NASER,,,,,,,,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +ABU-NASER,,,,,,,,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +ABU-RAYHANAH,,,,,,,,,,04/01/1973,Jeddah,Saudi Arabia,Yemen,01055336,Yemen,2054275397,"Saudi Arabia alien registration number, issued on 22 Jul. 1998.",,,,,,,,,,"(UK Sanctions List Ref):AQD0257 (UN Ref):QDi.369 Financial and foreign fighter facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Member of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) since at least Jun. 2014. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13294 +ABU-SALAAH,,,,,,,,,,19/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +ABU-SALAAH,,,,,,,,,,18/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +ABU-SHAIMA,,,,,,,أبو شيماء,,,00/08/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +ABU-SHAIMA,,,,,,,أبو شيماء,,,00/09/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +ABU-SHAIMA,,,,,,,أبو شيماء,,,00/00/1976,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +ABU-SHUAYB,,,,,,,,,,00/00/1959,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +ABU-SHUAYB,,,,,,,,,,00/00/1957,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +ABU-SULTAN,Shaykh,,,,,,,,,01/01/1973,Warah,Kuwait,Kuwait,0216155930,,,,,Area 3,Street 327,Building 41,,,Al-Uqaylah,,Kuwait,(UK Sanctions List Ref):AQD0314 (UN Ref):QDi.338 Fundraiser for Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818220,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13135 +ABU-'UMAR,,,,,,,,,,09/02/1951,Gaza,Egypt,,92/664,Egypt,,,Senior Hamas Official,,,,,,,,,"(UK Sanctions List Ref):CTI0017 (UK Statement of Reasons):Mr Marzouk is a senior Hamas official and has been the deputy leader of Hamas since 1997. He has publicly represented the proscribed military wing of Hamas. He has been involved in terrorist financing and has defended Hamas’ terrorist activity, including the targeting of civilians. (Gender):Male",Individual,AKA,,Counter-Terrorism (International),24/03/2004,31/12/2020,15/03/2022,7888 +ABU-YUNUS,,,,,,,,,,00/00/1984,,,Yemen,,,,,Huthi military commander,,,,,,,,,(UK Sanctions List Ref):YEM0001 (UN Ref):YEi.001 INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals (Gender):Male,Individual,AKA,Low quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13191 +ABUZUBAIR,Muktar,Abdulrahim,,,,,,,,10/07/1977,Hargeysa,Somalia,Somalia,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0005 (UN Ref):SOi.004,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11091 +ABWEHR,,,,,,,,,,23/06/1972,"Frontovka village, Vinnytsia region",Ukraine,(1) Russia. (2) Ukraine,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0159 (UK Statement of Reasons):Senior aid to Igor Strelkov / Girkin who is responsible for actions which undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. In taking on and acting in this capacity, Zdriliuk has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Remains active in supporting separatist actions and policies. (Gender):Male",Individual,AKA,,Russia,25/07/2014,31/12/2020,31/12/2020,13066 +ABWEHR,,,,,,,,,,23/07/1972,"Frontovka village, Vinnytsia region",Ukraine,(1) Russia. (2) Ukraine,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0159 (UK Statement of Reasons):Senior aid to Igor Strelkov / Girkin who is responsible for actions which undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. In taking on and acting in this capacity, Zdriliuk has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Remains active in supporting separatist actions and policies. (Gender):Male",Individual,AKA,,Russia,25/07/2014,31/12/2020,31/12/2020,13066 +ABZAR BORESH KAVEH CO. (BK CO.),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0132 (UN Ref):IRe.002 Involved in the production of centrifuge components. [Old Reference # E.03.III.1],Entity,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,31/12/2020,10441 +ACADEMICIAN VP MAKEYEV STATE ROCKET CENTRE OJSC (MAKEYEV SRC),,,,,,,,,,,,,,,,,,,1 Turgoyakskoye Highway,Chelyabinsk region,,,,Miass,456300,Russia,"(UK Sanctions List Ref):RUS1081 (UK Statement of Reasons):MAKEYEV STATE MISSILE CENTER, a subsidiary of Russian State space agency Roscosmos, is an entity obtaining a benefit from or supporting the Government of Russia by carrying on business in the Russian defence sector, a sector of strategic significance to the Government of Russia. (Phone number):+7 (3513) 28-63-33 (Website):makeyev.ru (Email address):src@makeyev.ru (Parent company):Roscosmos",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,14/06/2022,15024 +ACADEMY OF NATIONAL DEFENSE SCIENCE,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0124 (UN Ref):KPe.021 The Academy of National Defense Science is involved in the DPRK's efforts to advance the development of its ballistic missile and nuclear weapons programs.,Entity,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13339 +ACADEMY OF NATURAL SCIENCES,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0189 (UN Ref):KPe.018 The Second Academy of Natural Sciences is a national-level organization responsible for research and development of the DPRK’s advanced weapons systems, including missiles and probably nuclear weapons. The Second Academy of Natural Sciences uses a number of subordinate organizations to obtain technology, equipment, and information from overseas, including Tangun Trading Corporation, for use in the DPRK’s missile and probably nuclear weapons programs. Tangun Trading Corporation was designated by the Committee in July 2009 and is primarily responsible for the procurement of commodities and technologies to support DPRK’s defense research and development programs, including, but not limited to, weapons of mass destruction and delivery system programs and procurement, including materials that are controlled or prohibited under relevant multilateral control regimes. (Subsidiaries):Tangun Trading Corporation",Entity,AKA,,Democratic People's Republic of Korea,23/04/2013,07/03/2013,31/12/2020,12871 +ACB,,,,,,,,,,,,,,,,,,,Building Damascus Tajhez,P.O. Box 4325,,,,,,,"(UK Sanctions List Ref):SYR0277 (UK Statement of Reasons):State-owned bank operating under the supervision of the Syrian Ministry of the Economy, operating on behalf of government agencies. Provides financial support to the regime (Phone number):+963 11-221-3462 (Website):www.agrobank.org (Type of entity):State-owned bank",Entity,AKA,,Syria,24/01/2012,31/12/2020,31/12/2020,12486 +ACHEKZAI,ABDUL,SAMAD,,,,,عبد الصمد اچکزی,,,00/00/1970,,Afghanistan,Afghanistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AFG0126 (UN Ref):TAi.160 Senior Taliban member responsible for the manufacturing of improvised explosive devices (IED). Involved in recruiting and deploying suicide bombers to conduct attacks in Afghanistan. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,Primary name,,Afghanistan,29/03/2012,02/03/2012,01/02/2021,12556 +ACHEKZAI,Adam Khan,,,,,Maulavi,آدم خان اچکزی,,,00/00/1970,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +ACHEKZAI,Adam Khan,,,,,Maulavi,آدم خان اچکزی,,,00/00/1971,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +ACHEKZAI,Adam Khan,,,,,Maulavi,آدم خان اچکزی,,,00/00/1972,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +ACHEKZAI,Adam Khan,,,,,Maulavi,آدم خان اچکزی,,,00/00/1973,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +ACHEKZAI,Adam Khan,,,,,Maulavi,آدم خان اچکزی,,,00/00/1974,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +ACHEKZAI,Adam Khan,,,,,Maulavi,آدم خان اچکزی,,,00/00/1975,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +ACHI,Aammar,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +ACHI,Amer,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +ACHI,Amer,Ibrahim,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +ACHI,Amis,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +ACHI,Ammar,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +ACHILLE,,,,,,,,,,00/00/1966,Kigali,Rwanda,Rwanda,,,,,FDLR-FOCA Chief of Staff. FDLR-FOCA Interim Deputy Commander,,,,,,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0048 (UN Ref):CDi.014 Became acting FDLR-FOCA Deputy Commander in 2014. Captured in Goma, DRC by Congolese security services in early May 2016 and transferred to Kinshasa. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5224709 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,21/01/2021,10679 +ACHILLE,,,,,,,,,,17/03/1962,Kigali,Rwanda,Rwanda,,,,,FDLR-FOCA Chief of Staff. FDLR-FOCA Interim Deputy Commander,,,,,,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0048 (UN Ref):CDi.014 Became acting FDLR-FOCA Deputy Commander in 2014. Captured in Goma, DRC by Congolese security services in early May 2016 and transferred to Kinshasa. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5224709 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,21/01/2021,10679 +ACHMED,Kaua,Omar,,,,,,,,01/07/1971,Arbil,Iraq,Iraq,A 0139243,German travel document (“Reiseausweis”) (revoked as at Sep.2012),,,,Arbil,Qushtuba,house no. SH 11,alley 5380,,,,Iraq,(UK Sanctions List Ref):AQD0170 (UN Ref):QDi.203 Mother’s name: Farida Hussein Khadir. Released from custody in Germany on 10 Dec. 2010 and relocated to Iraq on 6 Dec. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 5 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423935,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8781 +ACHWAN,Mochtar,,,,,,,,,04/05/1948,Tulungagung,Indonesia,Indonesia,,,(1) 3573010405480001 (2) 353010405480001,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Jalan Ir. H. Juanda 8/10,RT/RW 002/001,Jodipan,Blimbing,,Malang,65127,Indonesia,"(UK Sanctions List Ref):AQD0234 (UN Ref):QDi.304 Acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133). Associated with Abu Bakar Ba’asyir (QDi.217), Abdul Rahim Ba’aysir (QDi.293) and Jemaah Islamiyah (QDe.092). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,14/06/2022,12627 +ACHWAN,Mochtar,,,,,,,,,04/05/1946,Tulungagung,Indonesia,Indonesia,,,(1) 3573010405480001 (2) 353010405480001,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Jalan Ir. H. Juanda 8/10,RT/RW 002/001,Jodipan,Blimbing,,Malang,65127,Indonesia,"(UK Sanctions List Ref):AQD0234 (UN Ref):QDi.304 Acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133). Associated with Abu Bakar Ba’asyir (QDi.217), Abdul Rahim Ba’aysir (QDi.293) and Jemaah Islamiyah (QDe.092). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,14/06/2022,12627 +ACHWAN,Muhammad,,,,,,,,,04/05/1948,Tulungagung,Indonesia,Indonesia,,,(1) 3573010405480001 (2) 353010405480001,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Jalan Ir. H. Juanda 8/10,RT/RW 002/001,Jodipan,Blimbing,,Malang,65127,Indonesia,"(UK Sanctions List Ref):AQD0234 (UN Ref):QDi.304 Acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133). Associated with Abu Bakar Ba’asyir (QDi.217), Abdul Rahim Ba’aysir (QDi.293) and Jemaah Islamiyah (QDe.092). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,14/06/2022,12627 +ACHWAN,Muhammad,,,,,,,,,04/05/1946,Tulungagung,Indonesia,Indonesia,,,(1) 3573010405480001 (2) 353010405480001,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Jalan Ir. H. Juanda 8/10,RT/RW 002/001,Jodipan,Blimbing,,Malang,65127,Indonesia,"(UK Sanctions List Ref):AQD0234 (UN Ref):QDi.304 Acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133). Associated with Abu Bakar Ba’asyir (QDi.217), Abdul Rahim Ba’aysir (QDi.293) and Jemaah Islamiyah (QDe.092). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,14/06/2022,12627 +ACHWAN,MOCHAMMAD,,,,,,,,,04/05/1948,Tulungagung,Indonesia,Indonesia,,,(1) 3573010405480001 (2) 353010405480001,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Jalan Ir. H. Juanda 8/10,RT/RW 002/001,Jodipan,Blimbing,,Malang,65127,Indonesia,"(UK Sanctions List Ref):AQD0234 (UN Ref):QDi.304 Acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133). Associated with Abu Bakar Ba’asyir (QDi.217), Abdul Rahim Ba’aysir (QDi.293) and Jemaah Islamiyah (QDe.092). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,14/06/2022,12627 +ACHWAN,MOCHAMMAD,,,,,,,,,04/05/1946,Tulungagung,Indonesia,Indonesia,,,(1) 3573010405480001 (2) 353010405480001,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Jalan Ir. H. Juanda 8/10,RT/RW 002/001,Jodipan,Blimbing,,Malang,65127,Indonesia,"(UK Sanctions List Ref):AQD0234 (UN Ref):QDi.304 Acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133). Associated with Abu Bakar Ba’asyir (QDi.217), Abdul Rahim Ba’aysir (QDi.293) and Jemaah Islamiyah (QDe.092). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,14/06/2022,12627 +ADAM,,,,,,,,,,00/00/1969,Tripoli,Libya,Libya,96/184442,Libyan Passport No.,,,,Ghout El Shamal,,,,,Tripoli,,Libya,(UK Sanctions List Ref):AQD0135 (UN Ref):QDi.229 Member of Libyan Islamic Fighting Group (QDe.011). Review pursuant to Security Council resolution 1822 (2008) was concluded on 24 Nov. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1479979,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,15/06/2007,08/06/2007,31/12/2020,8650 +ADAM,,,,,,Maulavi,,,,00/00/1970,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +ADAM,,,,,,Maulavi,,,,00/00/1971,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +ADAM,,,,,,Maulavi,,,,00/00/1972,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +ADAM,,,,,,Maulavi,,,,00/00/1973,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +ADAM,,,,,,Maulavi,,,,00/00/1974,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +ADAM,,,,,,Maulavi,,,,00/00/1975,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +ADAM,Abu,,,,,,,,,30/07/1981,Bonn,Germany,(1) Germany. (2) Morocco,5208323009,"Germany number, issued on 2 Feb. 2007, issued in Stadt Bonn, Germany (expires on 1 Feb. 2012)",5209530116,"Germany national identification number, issued on 21 Jun. 2006, issued in Stadt Bonn, Germany (expired on 20 Jun. 2011)",,Ungartenstrasse 6,,,,,Bonn,53229,Germany,(UK Sanctions List Ref):AQD0250 (UN Ref):QDi.300 Associated with Islamic Movement of Uzbekistan (QDe.010). Brother of Yassin Chouka (QDi.301) Arrest warrant issued by the investigating judge of the German Federal Court of Justice on 5 Oct. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555858. Germany (previous),Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,08/02/2012,25/01/2012,12/01/2022,12500 +ADAM,Danial,,,,,,,,,01/06/1980,Damascus,Syria,United Kingdom,094629366,British number,,,,,,,,,East London,,United Kingdom,(UK Sanctions List Ref):AQD0245 (UN Ref):QDi.228 Father’s name is Mohamed Ayman Ghabra. Mother’s name is Dalal. Review pursuant to Security Council resolution 1822 (2008) was concluded on 5 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1475981,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/12/2006,12/12/2006,31/12/2020,8983 +ADAM,Hassaan,Hussein,,,,,,,,10/04/1979,Garissa,Kenya,,A1180173,Kenya,23446085,,,,,,,,Nairobi,,Kenya,(UK Sanctions List Ref):SOM0009 (UN Ref):SOi.009 Possibly Ethiopian,Individual,AKA,Good quality,Somalia,27/09/2011,28/07/2011,31/12/2020,12029 +ADAM,Mahamat,Nouradine,,,,,,,,00/00/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Mahamat,Nouradine,,,,,,,,00/00/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Mahamat,Nouradine,,,,,,,,00/00/1969,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Mahamat,Nouradine,,,,,,,,00/00/1969,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Mahamat,Nouradine,,,,,,,,00/00/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Mahamat,Nouradine,,,,,,,,00/00/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Mahamat,Nouradine,,,,,,,,01/01/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Mahamat,Nouradine,,,,,,,,01/01/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Mahamat,Nouradine,,,,,,,,01/01/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Mahamat,Nouradine,,,,,,,,01/01/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreddine,,,,,,,,,00/00/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreddine,,,,,,,,,00/00/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreddine,,,,,,,,,00/00/1969,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreddine,,,,,,,,,00/00/1969,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreddine,,,,,,,,,00/00/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreddine,,,,,,,,,00/00/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreddine,,,,,,,,,01/01/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreddine,,,,,,,,,01/01/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreddine,,,,,,,,,01/01/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreddine,,,,,,,,,01/01/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreldine,,,,,,,,,00/00/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreldine,,,,,,,,,00/00/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreldine,,,,,,,,,00/00/1969,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreldine,,,,,,,,,00/00/1969,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreldine,,,,,,,,,00/00/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreldine,,,,,,,,,00/00/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreldine,,,,,,,,,01/01/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreldine,,,,,,,,,01/01/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreldine,,,,,,,,,01/01/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nourreldine,,,,,,,,,01/01/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nureldine,,,,,,,,,00/00/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nureldine,,,,,,,,,00/00/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nureldine,,,,,,,,,00/00/1969,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nureldine,,,,,,,,,00/00/1969,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nureldine,,,,,,,,,00/00/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nureldine,,,,,,,,,00/00/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nureldine,,,,,,,,,01/01/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nureldine,,,,,,,,,01/01/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nureldine,,,,,,,,,01/01/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,Nureldine,,,,,,,,,01/01/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,NOURREDINE,,,,,,,,,00/00/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,Primary name,,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,NOURREDINE,,,,,,,,,00/00/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,Primary name,,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,NOURREDINE,,,,,,,,,00/00/1969,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,Primary name,,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,NOURREDINE,,,,,,,,,00/00/1969,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,Primary name,,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,NOURREDINE,,,,,,,,,00/00/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,Primary name,,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,NOURREDINE,,,,,,,,,00/00/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,Primary name,,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,NOURREDINE,,,,,,,,,01/01/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,Primary name,,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,NOURREDINE,,,,,,,,,01/01/1970,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,Primary name,,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,NOURREDINE,,,,,,,,,01/01/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,,,Sudan,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,Primary name,,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAM,NOURREDINE,,,,,,,,,01/01/1971,(1) Ndele (2) Algenana,(1) Central African Republic (2) Sudan,(1) Central African Republic. (2) South Sudan,(1) D00001184 (2) P04838205,"(1) Central African Republic number (2) Issued on 10 Jun. 2018. Issued in Bahri, Sudan. Expires on 9 June 2023. Passport issued under the name of Mohamed Adam Brema Abdallah.",20227088368,Sudan,(1) Director General of the Extraordinary Committee for the Defence of Democratic Achievements. (2) Minister for Security,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0004 (UN Ref):CFi.002 Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,Primary name,,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12999 +ADAN,Abukar,Ali,,,,,,,,00/00/1972,,,,,,,,Deputy leader of Al-Shabaab,,,,,,,,,"(UK Sanctions List Ref):SOM0017 (UN Ref):SOi.018 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Abukar Ali Adan is deputy leader of al-Shabaab, and is also associated with Al-Qaida affiliates, Al-Qaida in the Arabian Peninsula (AQAP – Qde.129) and Al-Qaida in the Islamic Maghreb (AQIM – Qde.014).",Individual,Primary name,,Somalia,02/03/2021,26/02/2021,02/03/2021,14065 +ADAN,Abukar,Ali,,,,,,,,00/00/1971,,,,,,,,Deputy leader of Al-Shabaab,,,,,,,,,"(UK Sanctions List Ref):SOM0017 (UN Ref):SOi.018 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Abukar Ali Adan is deputy leader of al-Shabaab, and is also associated with Al-Qaida affiliates, Al-Qaida in the Arabian Peninsula (AQAP – Qde.129) and Al-Qaida in the Islamic Maghreb (AQIM – Qde.014).",Individual,Primary name,,Somalia,02/03/2021,26/02/2021,02/03/2021,14065 +ADAN,Abukar,Ali,,,,,,,,00/00/1973,,,,,,,,Deputy leader of Al-Shabaab,,,,,,,,,"(UK Sanctions List Ref):SOM0017 (UN Ref):SOi.018 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Abukar Ali Adan is deputy leader of al-Shabaab, and is also associated with Al-Qaida affiliates, Al-Qaida in the Arabian Peninsula (AQAP – Qde.129) and Al-Qaida in the Islamic Maghreb (AQIM – Qde.014).",Individual,Primary name,,Somalia,02/03/2021,26/02/2021,02/03/2021,14065 +ADAN,Xassaan,Xuseen,,,,,,,,10/04/1979,Garissa,Kenya,,A1180173,Kenya,23446085,,,,,,,,Nairobi,,Kenya,(UK Sanctions List Ref):SOM0009 (UN Ref):SOi.009 Possibly Ethiopian,Individual,AKA,Good quality,Somalia,27/09/2011,28/07/2011,31/12/2020,12029 +ADANOF,Moneer,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +ADANOF,Monir,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +ADANOF,Mouneer,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +ADANOF,Mounir,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +ADANOF,Muneer,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +ADANOF,Munir,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +ADANOV,Moneer,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +ADANOV,Monir,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +ADANOV,Mouneer,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +ADANOV,Mounir,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +ADANOV,Muneer,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +ADANOV,Munir,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +ADBALLA,Abdelhamid,Khamis,,,,,,,,,,,Syria,,,,,Chairman of Overseas Petroleum Trading Company (OPT),,,,,,,,,"(UK Sanctions List Ref):SYR0002 (UK Statement of Reasons):Chairman of Overseas Petroleum Trading Company (OPT) which has been listed for benefiting from and supporting the Syrian regime. He coordinated shipments of oil to the Syrian regime with listed Syrian state oil company Sytrol. Therefore, he is benefitting from and providing support to the Syrian regime. In view of his position as the most senior person in the entity he is responsible for its activities and associated with it. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13164 +ADDOUNIA TV,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0275 (UK Statement of Reasons):Previously known as Addounia TV. Sama TV is a telecommunications entity which spreads disinformation and incites violence against the civilian population in Syria. (Phone number):(1) +963-11-5667271 (2) +963-11-5667274 (Website):http://www.addounia.tv (Type of entity):Media. State-owned,Entity,AKA,,Syria,26/09/2011,31/12/2020,13/05/2022,12151 +ADEL,,,,,,,,,,12/10/1965,Oum el Bouaghi,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0212 (UN Ref):QDi.167 In detention in Algeria as at April 2010. Arrest warrant issued by the German authorities on 9 Oct. 2003 for involvement in kidnapping. Former member of the Katibat Tarek Ibn Ziad of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/05/2004,03/05/2004,31/12/2020,8352 +ADEL,Youcef,,,,,,,,,12/12/1965,"Deb-Deb, Amenas, Wilaya (province) of Illizi",Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0137 (UN Ref):QDi.250 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Located in Northern Mali as of Jun. 2008. Mother’s name is Benarouba Bachira. Father’s name is Mabrouk. He usurped the identity of Abid Hammadou, who allegedly died in Chad in 2004. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529259",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,11/02/2022,10691 +ADEL,Youcef,,,,,,,,,00/00/1958,"Deb-Deb, Amenas, Wilaya (province) of Illizi",Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0137 (UN Ref):QDi.250 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Located in Northern Mali as of Jun. 2008. Mother’s name is Benarouba Bachira. Father’s name is Mabrouk. He usurped the identity of Abid Hammadou, who allegedly died in Chad in 2004. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529259",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,11/02/2022,10691 +ADEN,Abukar,Ali,,,,,,,,00/00/1972,,,,,,,,Deputy leader of Al-Shabaab,,,,,,,,,"(UK Sanctions List Ref):SOM0017 (UN Ref):SOi.018 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Abukar Ali Adan is deputy leader of al-Shabaab, and is also associated with Al-Qaida affiliates, Al-Qaida in the Arabian Peninsula (AQAP – Qde.129) and Al-Qaida in the Islamic Maghreb (AQIM – Qde.014).",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14065 +ADEN,Abukar,Ali,,,,,,,,00/00/1971,,,,,,,,Deputy leader of Al-Shabaab,,,,,,,,,"(UK Sanctions List Ref):SOM0017 (UN Ref):SOi.018 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Abukar Ali Adan is deputy leader of al-Shabaab, and is also associated with Al-Qaida affiliates, Al-Qaida in the Arabian Peninsula (AQAP – Qde.129) and Al-Qaida in the Islamic Maghreb (AQIM – Qde.014).",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14065 +ADEN,Abukar,Ali,,,,,,,,00/00/1973,,,,,,,,Deputy leader of Al-Shabaab,,,,,,,,,"(UK Sanctions List Ref):SOM0017 (UN Ref):SOi.018 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Abukar Ali Adan is deputy leader of al-Shabaab, and is also associated with Al-Qaida affiliates, Al-Qaida in the Arabian Peninsula (AQAP – Qde.129) and Al-Qaida in the Islamic Maghreb (AQIM – Qde.014).",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14065 +ADF (ALLIED DEMOCRATIC FORCES),,,,,,,,,,,,,,,,,,,,,,,,North Kivu Province,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0015 (UN Ref):CDe.001 ADF founder and leader, Jamil Mukulu (CDi.015), was arrested in Dar es Salaam, Tanzania in April 2015. He was subsequently extradited to Kampala, Uganda in July 2015. As of June 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial. Seka Baluku (CDi.036) succeeded Jamil Mukulu (CDi.015) as the overall leader of the ADF. As highlighted in several reports from the Group of Experts on the DRC (S/2015/19, S/2015/797, S/2016/1102, S/2017/672, S/2018/531, S/2019/469, S/2019/974, S/2020/482), the ADF, including under Seka Baluku’s leadership, continued to commit the repeated targeting, killing and maiming, rape and other sexual violence, abduction of civilians, including children, as well as attacks on villages and health facilities, in particular in Mamove, Beni territory, on 12 and 24 February 2019, and Mantumbi, Beni territory, on 5 December 2019 and 30 January 2020, as well as the continuous recruitment and use of children during attacks and for forced labour in Beni territory in the DRC since at least 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,Democratic Republic of the Congo,09/12/2014,30/06/2014,19/01/2021,13189 +ADF/NALU,,,,,,,,,,,,,,,,,,,,,,,,North Kivu Province,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0015 (UN Ref):CDe.001 ADF founder and leader, Jamil Mukulu (CDi.015), was arrested in Dar es Salaam, Tanzania in April 2015. He was subsequently extradited to Kampala, Uganda in July 2015. As of June 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial. Seka Baluku (CDi.036) succeeded Jamil Mukulu (CDi.015) as the overall leader of the ADF. As highlighted in several reports from the Group of Experts on the DRC (S/2015/19, S/2015/797, S/2016/1102, S/2017/672, S/2018/531, S/2019/469, S/2019/974, S/2020/482), the ADF, including under Seka Baluku’s leadership, continued to commit the repeated targeting, killing and maiming, rape and other sexual violence, abduction of civilians, including children, as well as attacks on villages and health facilities, in particular in Mamove, Beni territory, on 12 and 24 February 2019, and Mantumbi, Beni territory, on 5 December 2019 and 30 January 2020, as well as the continuous recruitment and use of children during attacks and for forced labour in Beni territory in the DRC since at least 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,FKA,,Democratic Republic of the Congo,09/12/2014,30/06/2014,19/01/2021,13189 +ADHAJANI,Azim,,,,,,,,,,,,Iran,(1) 6620505 (2) 9003213,,,,"Member of the IRGC-Qods Force operating under the direction of Qods Force Commander, Major General Qasem Soleimani, who was designated by the UN Security Council in resolution 1747 (2007)",,,,,,,,,"(UK Sanctions List Ref):INU0196 (UN Ref):IRi.003 Facilitated a breach of paragraph 5 of resolution 1747 (2007) prohibiting the export of arms and related materiel from Iran. [Old Reference # I.AC.50.18.04.12.(1)] (UK Statement of Reasons):As a member of the IRGC Qods Force, Azim AGHAJANI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),02/12/2011,18/04/2012,04/03/2022,12274 +ADL,Sayf-Al,,,,,,,,,11/04/1963,Monufia Governate,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0312 (UN Ref):QDi.001 Responsible for Usama bin Laden’s (deceased) security. Hair: Dark. Eyes: Dark. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681065 click here,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7424 +ADL,Sayf-Al,,,,,,,,,11/04/1960,Monufia Governate,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0312 (UN Ref):QDi.001 Responsible for Usama bin Laden’s (deceased) security. Hair: Dark. Eyes: Dark. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681065 click here,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7424 +ADNAN,Hasan,Ahmed,S.,,,,,,,,,,Iraq,,,,,,,,,,,Amman,,Jordan,(UK Sanctions List Ref):IRQ0134 (UN Ref):IQi.073,Individual,AKA,Good quality,Iraq,05/05/2004,26/04/2004,31/12/2020,8287 +ADNUF,Moneer,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +ADNUF,Monir,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +ADNUF,Mouneer,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +ADNUF,Mounir,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +ADNUF,Muneer,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +ADNUF,Munir,,,,,,,,,00/00/1951,Homs,Syria,,0000092405,,,,"Deputy Chief of General Staff, Operations and Training for Syrian Army",,,,,,,,,"(UK Sanctions List Ref):SYR0182 (UK Statement of Reasons):Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011. In his position as Deputy Chief of General Staff he was directly involved in repression and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12050 +AEROSPACE DIVISON OF IRGC,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0081 (UK Statement of Reasons):Operates Iran’s inventory of short and medium range ballistic missiles and is responsible for controlling Iran’s strategic missile force. Controlled by and acts on behalf of the IRGC. (Type of entity):Military (Parent company):Islamic Revolutionary Guard Corps,Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10660 +AEROSPACE FORCE OF THE ARMY OF THE GUARDIANS OF THE ISLAMIC REVOLUTION (AFAGIR),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0081 (UK Statement of Reasons):Operates Iran’s inventory of short and medium range ballistic missiles and is responsible for controlling Iran’s strategic missile force. Controlled by and acts on behalf of the IRGC. (Type of entity):Military (Parent company):Islamic Revolutionary Guard Corps,Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10660 +AEROSPACE INDUSTRIES ORGANISATION,,,,,,,سازمان-صنایع-هوافضا,,,,,,,,,,,,28 Shian 5,Lavizan,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0046 (UK Statement of Reasons):AIO oversees Iran's production of missiles, including Shahid Hemmat Industrial Group, Shahid Bagheri Industrial Group and Fajr Industrial Group, which were all designated under UNSCR 1737 (2006). The head of AIO and two other senior officials were also designated under UNSCR 1737 (2006). (Website):http://www.defanews.ir/sug/%D8%B3%D8%A7%D8%B2%D9%85%D8%A7%D9%86 %D8%B5%D9%86%D8%A7%DB%8C%D8%B9 %D9%87%D9%88%D8%A7%D9%81%D8%B6%D8%A7 (Type of entity):Enterprise (Subsidiaries):Electro Sanam Company. Ettehad Technical Group. Fajr Industrial Group. Indsutrial Factories of Precision (IFP). Joza Industrial Co. M Babaei Indsutries. Machinery. Safety Equipment Procurement (SEP). Sanam Industrial Group. Shahid Bagheri Industrial Group (SBIG). Shahid Hemmat Industrial Group (SHIG). Ya Mahdi Industries Group (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9102 +AEROSPACE INDUSTRIES ORGANISATION,,,,,,,سازمان-صنایع-هوافضا,,,,,,,,,,,,Langare Street,Nobonyad Square,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0046 (UK Statement of Reasons):AIO oversees Iran's production of missiles, including Shahid Hemmat Industrial Group, Shahid Bagheri Industrial Group and Fajr Industrial Group, which were all designated under UNSCR 1737 (2006). The head of AIO and two other senior officials were also designated under UNSCR 1737 (2006). (Website):http://www.defanews.ir/sug/%D8%B3%D8%A7%D8%B2%D9%85%D8%A7%D9%86 %D8%B5%D9%86%D8%A7%DB%8C%D8%B9 %D9%87%D9%88%D8%A7%D9%81%D8%B6%D8%A7 (Type of entity):Enterprise (Subsidiaries):Electro Sanam Company. Ettehad Technical Group. Fajr Industrial Group. Indsutrial Factories of Precision (IFP). Joza Industrial Co. M Babaei Indsutries. Machinery. Safety Equipment Procurement (SEP). Sanam Industrial Group. Shahid Bagheri Industrial Group (SBIG). Shahid Hemmat Industrial Group (SHIG). Ya Mahdi Industries Group (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9102 +AFANASEVSKY,Yuri,Nikolaevich,,,,,,,,12/12/1968,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1172 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15124 +AFANASEVSKY,Yuriy,Nikolaevich,,,,,АФАНАСЕВСКИЙ Юрий Николаевич,Cyrillic,Russian,12/12/1968,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1172 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15124 +AFANASOV,Mikhail,Alexandrovich,,,,,Михаил Александрович АФАНАСОВ,,,15/06/1953,Essentuki,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0891 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14842 +AFANASYEVA,Yelena,Vladimirovna,,,,,Елена Владимировна АФАНАСЬЕВА,,,27/03/1975,Orenburg,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0914 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14865 +AFEEF,Ghassan,,,,,,,,,,,,,,,,,Commander of the 45th Regiment,,,,,,,,,"(UK Sanctions List Ref):SYR0051 (UK Statement of Reasons):Brigadier General, Commander from the 45th Regiment for ‘Banyas and surrounding towns (Markab), Idlib and Homs. Was commander of military operations in Homs, Baniyas and Idlib, directly responsible for violence against civilians, arbitrary arrests and shootings at unarmed residents since 2011. (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12469 +AFGHAN,Ibrahim,,,,,,,,,00/00/1972,,,,,,,,Deputy leader of Al-Shabaab,,,,,,,,,"(UK Sanctions List Ref):SOM0017 (UN Ref):SOi.018 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Abukar Ali Adan is deputy leader of al-Shabaab, and is also associated with Al-Qaida affiliates, Al-Qaida in the Arabian Peninsula (AQAP – Qde.129) and Al-Qaida in the Islamic Maghreb (AQIM – Qde.014).",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14065 +AFGHAN,Ibrahim,,,,,,,,,00/00/1971,,,,,,,,Deputy leader of Al-Shabaab,,,,,,,,,"(UK Sanctions List Ref):SOM0017 (UN Ref):SOi.018 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Abukar Ali Adan is deputy leader of al-Shabaab, and is also associated with Al-Qaida affiliates, Al-Qaida in the Arabian Peninsula (AQAP – Qde.129) and Al-Qaida in the Islamic Maghreb (AQIM – Qde.014).",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14065 +AFGHAN,Ibrahim,,,,,,,,,00/00/1973,,,,,,,,Deputy leader of Al-Shabaab,,,,,,,,,"(UK Sanctions List Ref):SOM0017 (UN Ref):SOi.018 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Abukar Ali Adan is deputy leader of al-Shabaab, and is also associated with Al-Qaida affiliates, Al-Qaida in the Arabian Peninsula (AQAP – Qde.129) and Al-Qaida in the Islamic Maghreb (AQIM – Qde.014).",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14065 +AFGHAN SUPPORT COMMITTEE (ASC),,,,,,,,,,,,,,,,,,,Cheprahar Hadda,Mia Omar Sabaqah School,,,,Jalalabad,,Afghanistan,(UK Sanctions List Ref):AQD0004 (UN Ref):QDe.069 Associated with the Revival of Islamic Heritage Society (QDe.070). Abu Bakr al-Jaziri (QDi.058) served as finance chief of ASC. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235582,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,12/01/2022,6940 +AFGHAN SUPPORT COMMITTEE (ASC),,,,,,,,,,,,,,,,,,,Headquarters – G.T. Road (probably Grand Trunk Road),near Pushtoon Garhi Pabbi,,,,Peshawar,,Pakistan,(UK Sanctions List Ref):AQD0004 (UN Ref):QDe.069 Associated with the Revival of Islamic Heritage Society (QDe.070). Abu Bakr al-Jaziri (QDi.058) served as finance chief of ASC. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235582,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,12/01/2022,6940 +AFIF,Ghassan,,,,,,,,,,,,,,,,,Commander of the 45th Regiment,,,,,,,,,"(UK Sanctions List Ref):SYR0051 (UK Statement of Reasons):Brigadier General, Commander from the 45th Regiment for ‘Banyas and surrounding towns (Markab), Idlib and Homs. Was commander of military operations in Homs, Baniyas and Idlib, directly responsible for violence against civilians, arbitrary arrests and shootings at unarmed residents since 2011. (Gender):Male",Individual,Primary name,,Syria,24/01/2012,31/12/2020,31/12/2020,12469 +AFONIN,Yury,Vyacheslavovich,,,,,Афонин Юрий Вячеславович,,,22/03/1977,Tula,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0306 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14251 +AG ALBACHA,Intahmadou,,,,,,,,,31/12/1963,"Tin-Essako, Kidal region",Mali,Mali,,,1 63 08 4 01 001 005E,,President of the Humanitarian Commission of the Bureau Regional d’Administration et Gestion de Kidal,,,,,Quartier Aliou,Kidal,,Mali,"(UK Sanctions List Ref):MAL0004 (UN Ref):MLi.004 Ahmed Ag Albachar is a prominent businessman and, since early 2018, a special advisor to the Governor of Kidal region. An influential member of the Haut Conseil pour l'unité de l'Azawad (HCUA), belonging to the Ifoghas Tuareg community, Ahmed Ag Albachar also mediates relations between the Coordination des Mouvements de l’Azawad (CMA) and Ansar Dine (QDe.135). Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Mali,20/12/2019,10/07/2019,31/12/2020,13799 +AG ALBACHAR,AHMED,,,,,,,,,31/12/1963,"Tin-Essako, Kidal region",Mali,Mali,,,1 63 08 4 01 001 005E,,President of the Humanitarian Commission of the Bureau Regional d’Administration et Gestion de Kidal,,,,,Quartier Aliou,Kidal,,Mali,"(UK Sanctions List Ref):MAL0004 (UN Ref):MLi.004 Ahmed Ag Albachar is a prominent businessman and, since early 2018, a special advisor to the Governor of Kidal region. An influential member of the Haut Conseil pour l'unité de l'Azawad (HCUA), belonging to the Ifoghas Tuareg community, Ahmed Ag Albachar also mediates relations between the Coordination des Mouvements de l’Azawad (CMA) and Ansar Dine (QDe.135). Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,Mali,20/12/2019,10/07/2019,31/12/2020,13799 +AG GHALI,Iyad,,,,,,اياد اغ غالي,,,00/00/1958,"(1) Abeibara, Kidal Region (2) Bourem Region",(1) Mali (2) Mali,Mali,A1037434,"Mali number, issued on 10 Aug. 2001. Expires on 31 Dec. 2014.",012546,Malian birth certificate,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0208 (UN Ref):QDi.316 Founder and leader of Ansar Eddine (QDe.135). Member of the Tuareg Ifogas tribe. Linked to the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Name of father is Ag Bobacer Arhali, name of mother is Rhiachatou Wallet Sidi. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278332",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,25/02/2013,11/02/2022,12862 +AG GHALI,Iyad,,,,,,اياد اغ غالي,,,01/01/1958,"(1) Abeibara, Kidal Region (2) Bourem Region",(1) Mali (2) Mali,Mali,A1037434,"Mali number, issued on 10 Aug. 2001. Expires on 31 Dec. 2014.",012546,Malian birth certificate,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0208 (UN Ref):QDi.316 Founder and leader of Ansar Eddine (QDe.135). Member of the Tuareg Ifogas tribe. Linked to the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Name of father is Ag Bobacer Arhali, name of mother is Rhiachatou Wallet Sidi. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278332",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,25/02/2013,11/02/2022,12862 +AG MOSSA,,,,,,,,,,28/10/1956,,,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0361 (UN Ref):QDi.424 Founding member of Ansar Eddine (QDe.135), operational leader of Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2019,14/08/2019,31/12/2020,13790 +AG MOSSA,,,,,,,,,,31/12/1952,,,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0361 (UN Ref):QDi.424 Founding member of Ansar Eddine (QDe.135), operational leader of Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2019,14/08/2019,31/12/2020,13790 +AG MOSSA,,,,,,,,,,01/01/1958,,,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0361 (UN Ref):QDi.424 Founding member of Ansar Eddine (QDe.135), operational leader of Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2019,14/08/2019,31/12/2020,13790 +AG MOUSSA,Bah,,,,,,,,,28/10/1956,,,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0361 (UN Ref):QDi.424 Founding member of Ansar Eddine (QDe.135), operational leader of Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,15/08/2019,14/08/2019,31/12/2020,13790 +AG MOUSSA,Bah,,,,,,,,,31/12/1952,,,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0361 (UN Ref):QDi.424 Founding member of Ansar Eddine (QDe.135), operational leader of Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,15/08/2019,14/08/2019,31/12/2020,13790 +AG MOUSSA,Bah,,,,,,,,,01/01/1958,,,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0361 (UN Ref):QDi.424 Founding member of Ansar Eddine (QDe.135), operational leader of Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,15/08/2019,14/08/2019,31/12/2020,13790 +AGA JANI,Said,,,,,,,,,,,Iran,Iran,,,,,Head of the IRGC Aerospace Force UAV command,Ferdowsi Avenue,Sarhang Sakhaei Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):RUS1653 (UK Statement of Reasons):Brigadier General Saeed AGHAJANI is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. Brigadier General AGHAJANI is an Iranian Military Officer, and Head of the Islamic Revolutionary Guards Corps (IRGC) Aerospace Force UAV Command. Iran has supplied Russia with Iranian produced UAVs for use in their illegal invasion of Ukraine, and IRGC specialists are reported to have been present in occupied areas of Ukraine providing training to Russian forces in operating the UAVs. (Gender):Male",Individual,Primary name variation,,Russia,20/10/2022,20/10/2022,20/10/2022,15605 +AGAEV,Bekhan,Vakhaevich,,,,,Агаев Бекхан Вахаевич,,,29/03/1975,Grozny,Russia,Russia,751431944,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0541 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14486 +AGHA,Loi,,,,,,,,,15/10/1963,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +AGHA,Loi,,,,,,,,,14/02/1973,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +AGHA,Loi,,,,,,,,,00/00/1967,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +AGHA,Loi,,,,,,,,,00/00/1957,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +AGHA,ABDUL,MANAN,,,,Haji,عبد المنان آغا,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0104 (UN Ref):QDi.018 Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010.Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019.INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423806,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6897 +AGHA,Abdul Rahman,,,,,Maulavi,عبدالرحمان آغا,,,00/00/1958,"Arghandab District, Kandahar Province",Afghanistan,(1) Afghanistan (2) Pakistan,,,,,Chief Justice of Military Court under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0091 (UN Ref):TAi.114 Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6941 +AGHA,Abdullah,Jan,,,,,,,,00/00/1958,"Tirin Kot City, Uruzgan Province",Afghanistan,Afghanistan,,,,,Governor of Faryab Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0069 (UN Ref):TAi.091 Member of Taliban Supreme Council and advisor to Mullah Mohammed Omar (TAi.004) as at June 2010. Leads a Taliban ""front"" (mahaz) as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7213 +AGHA,Abdullah,Jan,,,,,,,,00/00/1953,"Tirin Kot City, Uruzgan Province",Afghanistan,Afghanistan,,,,,Governor of Faryab Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0069 (UN Ref):TAi.091 Member of Taliban Supreme Council and advisor to Mullah Mohammed Omar (TAi.004) as at June 2010. Leads a Taliban ""front"" (mahaz) as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7213 +AGHA,Ahmad,Zia,,,,Haji,احمد ضیا آغا,,,00/00/1974,"Maiwand District, Kandahar Province",Afghanistan,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0122 (UN Ref):TAi.156 Senior Taliban official with military and financial responsibilities as at 2011. Leader of the Taliban’s Military Council as of 2010. In 2008 and 2009, served as a Taliban finance officer and distributed money to Taliban commanders in Afghanistan/ Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12454 +AGHA,Janan,,,,,Mullah,جانان آغا,,,00/00/1958,"Tirin Kot City, Uruzgan Province",Afghanistan,Afghanistan,,,,,Governor of Faryab Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0069 (UN Ref):TAi.091 Member of Taliban Supreme Council and advisor to Mullah Mohammed Omar (TAi.004) as at June 2010. Leads a Taliban ""front"" (mahaz) as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7213 +AGHA,Janan,,,,,Mullah,جانان آغا,,,00/00/1953,"Tirin Kot City, Uruzgan Province",Afghanistan,Afghanistan,,,,,Governor of Faryab Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0069 (UN Ref):TAi.091 Member of Taliban Supreme Council and advisor to Mullah Mohammed Omar (TAi.004) as at June 2010. Leads a Taliban ""front"" (mahaz) as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7213 +AGHA,Mullah,Gul,,,,,,,,00/00/1972,"Band-e-Temur, Maiwand District, Kandahar Province",Afghanistan,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0115 (UN Ref):TAi.147 Member of a Taliban Council that coordinates the collection of zakat (Islamic tax) from Baluchistan Province, Pakistan. Head of Taliban Financial Commission as at mid-2013. Associated with Mullah Mohammed Omar (TAi.004). Served as Omar's principal finance officer and one of his closest advisors. Belongs to Ishaqzai tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11207 +AGHA,SAYED,MOHAMMAD,AZIM,,,Maulavi,سید محمد عظیم ﺁغا,,,00/00/1966,"Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,Director of the Passport and Visa Department in the Ministry of Interior under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0045 (UN Ref):TAi.057 Directs a Taliban ""front"" (mahaz) and serves as member of the military commission of the Taliban as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6942 +AGHA,SAYED,MOHAMMAD,AZIM,,,Maulavi,سید محمد عظیم ﺁغا,,,00/00/1969,"Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,Director of the Passport and Visa Department in the Ministry of Interior under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0045 (UN Ref):TAi.057 Directs a Taliban ""front"" (mahaz) and serves as member of the military commission of the Taliban as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6942 +AGHA,SAYYED,GHIASSOUDDINE,,,,Maulavi,سيد غیاث الدین آغا,,,00/00/1961,"Kohistan District, Faryab Province",Afghanistan,Afghanistan,,,,,(1) Education Minister under the Taliban regime. (2) Minister of Haj and Religious Affairs under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0056 (UN Ref):TAi.072 Taliban member responsible for Faryab, Jawzjan, Sari Pul and Balkh Provinces, Afghanistan as at June 2010. Involved in drug trafficking. Member of Taliban Supreme Council and Taliban Military Council as at December 2009. Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,31/01/2001,01/02/2021,6943 +AGHA,Torak,,,,,,,,,00/00/1960,"(1) Kandahar Province. (2) Pishin, Baluchistan Province",(1) Afghanistan. (2) Pakistan,,,,5430312277059,Pakistan. Fraudulently obtained and since cancelled by the Government of Pakistan.,,Pashtunabad,,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0140 (UN Ref):TAi.174 Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of November 2018. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,17/11/2015,02/11/2015,01/02/2021,13306 +AGHA,Torak,,,,,,,,,00/00/1962,"(1) Kandahar Province. (2) Pishin, Baluchistan Province",(1) Afghanistan. (2) Pakistan,,,,5430312277059,Pakistan. Fraudulently obtained and since cancelled by the Government of Pakistan.,,Pashtunabad,,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0140 (UN Ref):TAi.174 Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of November 2018. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,17/11/2015,02/11/2015,01/02/2021,13306 +AGHA,Torak,,,,,,,,,00/00/1965,"(1) Kandahar Province. (2) Pishin, Baluchistan Province",(1) Afghanistan. (2) Pakistan,,,,5430312277059,Pakistan. Fraudulently obtained and since cancelled by the Government of Pakistan.,,Pashtunabad,,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0140 (UN Ref):TAi.174 Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of November 2018. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,17/11/2015,02/11/2015,01/02/2021,13306 +AGHA,TOREK,,,,,Haji,تورک آغا,,,00/00/1960,"(1) Kandahar Province. (2) Pishin, Baluchistan Province",(1) Afghanistan. (2) Pakistan,,,,5430312277059,Pakistan. Fraudulently obtained and since cancelled by the Government of Pakistan.,,Pashtunabad,,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0140 (UN Ref):TAi.174 Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of November 2018. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,17/11/2015,02/11/2015,01/02/2021,13306 +AGHA,TOREK,,,,,Haji,تورک آغا,,,00/00/1962,"(1) Kandahar Province. (2) Pishin, Baluchistan Province",(1) Afghanistan. (2) Pakistan,,,,5430312277059,Pakistan. Fraudulently obtained and since cancelled by the Government of Pakistan.,,Pashtunabad,,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0140 (UN Ref):TAi.174 Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of November 2018. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,17/11/2015,02/11/2015,01/02/2021,13306 +AGHA,TOREK,,,,,Haji,تورک آغا,,,00/00/1965,"(1) Kandahar Province. (2) Pishin, Baluchistan Province",(1) Afghanistan. (2) Pakistan,,,,5430312277059,Pakistan. Fraudulently obtained and since cancelled by the Government of Pakistan.,,Pashtunabad,,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0140 (UN Ref):TAi.174 Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of November 2018. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,17/11/2015,02/11/2015,01/02/2021,13306 +AGHA,Toriq,,,,,,,,,00/00/1960,"(1) Kandahar Province. (2) Pishin, Baluchistan Province",(1) Afghanistan. (2) Pakistan,,,,5430312277059,Pakistan. Fraudulently obtained and since cancelled by the Government of Pakistan.,,Pashtunabad,,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0140 (UN Ref):TAi.174 Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of November 2018. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,17/11/2015,02/11/2015,01/02/2021,13306 +AGHA,Toriq,,,,,,,,,00/00/1962,"(1) Kandahar Province. (2) Pishin, Baluchistan Province",(1) Afghanistan. (2) Pakistan,,,,5430312277059,Pakistan. Fraudulently obtained and since cancelled by the Government of Pakistan.,,Pashtunabad,,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0140 (UN Ref):TAi.174 Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of November 2018. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,17/11/2015,02/11/2015,01/02/2021,13306 +AGHA,Toriq,,,,,,,,,00/00/1965,"(1) Kandahar Province. (2) Pishin, Baluchistan Province",(1) Afghanistan. (2) Pakistan,,,,5430312277059,Pakistan. Fraudulently obtained and since cancelled by the Government of Pakistan.,,Pashtunabad,,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0140 (UN Ref):TAi.174 Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of November 2018. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,17/11/2015,02/11/2015,01/02/2021,13306 +AGHA,Zia,,,,,,,,,00/00/1974,"Maiwand District, Kandahar Province",Afghanistan,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0122 (UN Ref):TAi.156 Senior Taliban official with military and financial responsibilities as at 2011. Leader of the Taliban’s Military Council as of 2010. In 2008 and 2009, served as a Taliban finance officer and distributed money to Taliban commanders in Afghanistan/ Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12454 +AGHAEI,Morteza,Mir,,,,,,,,,,Iran,Iran,,,,,"Basij commander, Sanandaj city",,,,,,,,,"(UK Sanctions List Ref):IHR0110 (UK Statement of Reasons):Morteza AGHAEI is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and the right to freedom of expression and peaceful assembly in Iran through his role as Basij commander of Sanandaj city and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15630 +AGHAJANI,Saeed,,,,,Brigadier General,سعید آقاجانی,,Persian,,,Iran,Iran,,,,,Head of the IRGC Aerospace Force UAV command,Ferdowsi Avenue,Sarhang Sakhaei Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):RUS1653 (UK Statement of Reasons):Brigadier General Saeed AGHAJANI is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. Brigadier General AGHAJANI is an Iranian Military Officer, and Head of the Islamic Revolutionary Guards Corps (IRGC) Aerospace Force UAV Command. Iran has supplied Russia with Iranian produced UAVs for use in their illegal invasion of Ukraine, and IRGC specialists are reported to have been present in occupied areas of Ukraine providing training to Russian forces in operating the UAVs. (Gender):Male",Individual,Primary name,,Russia,20/10/2022,20/10/2022,20/10/2022,15605 +AGHA-JANI,Azim,,,,,,,,,,,,Iran,(1) 6620505 (2) 9003213,,,,"Member of the IRGC-Qods Force operating under the direction of Qods Force Commander, Major General Qasem Soleimani, who was designated by the UN Security Council in resolution 1747 (2007)",,,,,,,,,"(UK Sanctions List Ref):INU0196 (UN Ref):IRi.003 Facilitated a breach of paragraph 5 of resolution 1747 (2007) prohibiting the export of arms and related materiel from Iran. [Old Reference # I.AC.50.18.04.12.(1)] (UK Statement of Reasons):As a member of the IRGC Qods Force, Azim AGHAJANI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),02/12/2011,18/04/2012,04/03/2022,12274 +AGHAJANI,AZIM,,,,,,,,,,,,Iran,(1) 6620505 (2) 9003213,,,,"Member of the IRGC-Qods Force operating under the direction of Qods Force Commander, Major General Qasem Soleimani, who was designated by the UN Security Council in resolution 1747 (2007)",,,,,,,,,"(UK Sanctions List Ref):INU0196 (UN Ref):IRi.003 Facilitated a breach of paragraph 5 of resolution 1747 (2007) prohibiting the export of arms and related materiel from Iran. [Old Reference # I.AC.50.18.04.12.(1)] (UK Statement of Reasons):As a member of the IRGC Qods Force, Azim AGHAJANI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),02/12/2011,18/04/2012,04/03/2022,12274 +AGRICULTURAL BANK,,,,,,,,,,,,,,,,,,,Al Jumhouria Street,East Junzour,Al Gheran,,,Tripoli,,Libya,(UK Sanctions List Ref):LIB0006 (UK Statement of Reasons):Libyan subsidiary of the Central Bank of Libya. Owned or controlled directly or indirectly (within the meaning regulation 7) by a person who is or has been so involved. (Phone number):(1) 218 213330927 (2) 218 213331533 (3) 218 213333541 (4) 218 213333542 (5) 218 213333543 (6) 218 213333544 (7) 218 213333545 (8) 218 213338366 (9) 218 214870586 (10) 218 214870714 (11) 218214870745 (12) 218214870747 (13) 218214870767 (14) 218214870777 (Email address):agbank@agribankly.org (Parent company):Libyan subsidiary of the Central Bank of Libya.,Entity,AKA,,Libya,14/04/2011,31/12/2020,10/02/2022,11745 +AGRICULTURAL BANK,,,,,,,,,,,,,,,,,,,El Ghayran Area,Ganzor El Sharqya,PO Box 1100,,,Tripoli,,Libya,(UK Sanctions List Ref):LIB0006 (UK Statement of Reasons):Libyan subsidiary of the Central Bank of Libya. Owned or controlled directly or indirectly (within the meaning regulation 7) by a person who is or has been so involved. (Phone number):(1) 218 213330927 (2) 218 213331533 (3) 218 213333541 (4) 218 213333542 (5) 218 213333543 (6) 218 213333544 (7) 218 213333545 (8) 218 213338366 (9) 218 214870586 (10) 218 214870714 (11) 218214870745 (12) 218214870747 (13) 218214870767 (14) 218214870777 (Email address):agbank@agribankly.org (Parent company):Libyan subsidiary of the Central Bank of Libya.,Entity,AKA,,Libya,14/04/2011,31/12/2020,10/02/2022,11745 +AGRICULTURAL COOPERATIVE BANK,,,,,,,,,,,,,,,,,,,Building Damascus Tajhez,P.O. Box 4325,,,,,,,"(UK Sanctions List Ref):SYR0277 (UK Statement of Reasons):State-owned bank operating under the supervision of the Syrian Ministry of the Economy, operating on behalf of government agencies. Provides financial support to the regime (Phone number):+963 11-221-3462 (Website):www.agrobank.org (Type of entity):State-owned bank",Entity,Primary name,,Syria,24/01/2012,31/12/2020,31/12/2020,12486 +AGUB,Nofal,,,,,,,,,23/02/1964,,Iraq,Iraq,,,71719043,,,,,,,,,,Iraq,"(UK Sanctions List Ref):GAC0027 (UK Statement of Reasons):Nawfal Hammadi Al-Sultan has been involved in serious corruption in Nineveh province, Iraq involving the misappropriation of state property to his benefit and the benefit of others. In his role as governor of Nineveh province, he misappropriated public funds intended for reconstruction efforts and to provide support for civilians and improperly awarded contracts and other state property. Additional information: in February 2021 Al-Sultan was convicted by the Central Anti-Corruption Criminal Court in Iraq in relation to some of his corrupt activities when governor of Nineveh Governorate. He was convicted of two offences of “harming a public body” under Article 340 of Iraq’s Penal Code and sentenced to a total of five years in prison, for: (i) wasting five billion Iraqi Dinars of public funds of Nineveh Governorate through fictitious works and contracts, and (ii) improperly disposing of 50 tons of asphalt delivered to him for paving the streets and for reconstruction in 2017. (Gender):Male",Individual,AKA,,Global Anti-Corruption,22/07/2021,22/07/2021,22/07/2021,14130 +AHMAD,,,,,,,,,,21/01/1967,,,Syria,,,,,Head of Security Office at Institute 1000 of the SSRC,,,,,,,,,"(UK Sanctions List Ref):CHW0001 Important employee at Scientific Studies and Research Centre (listed under the EU's Chemical Weapons and Syria sanctions regime). (UK Statement of Reasons):Colonel Firas Ahmed is the Director of the Security Office of Institute 1000, the division of the Scientific Studies and Research Centre (SSRC) responsible for developing and producing computer and electronic systems for Syria’s chemical weapons programme. He was involved in transferring and concealing chemical weapons related materials following Syria’s accession to the Chemical Weapons Convention. Due to his senior position within Institute 1000 of the SSRC, he is associated with the SSRC. (Gender):Male",Individual,AKA,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13749 +AHMAD,Abu,,,,,,,,,00/00/1942,al-Dur,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0067 (UN Ref):IQi.006,Individual,AKA,Low quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7580 +AHMAD,Abu,,,,,,,,,01/01/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +AHMAD,Abu,,,,,,,,,01/02/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +AHMAD,Abu Bakr,,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMAD,Abu Bakr,,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMAD,Abu Bakr,,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMAD,Abu Bakr,,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMAD,Firas,,,,,,,,,21/01/1967,,,Syria,,,,,Head of Security Office at Institute 1000 of the SSRC,,,,,,,,,"(UK Sanctions List Ref):CHW0001 Important employee at Scientific Studies and Research Centre (listed under the EU's Chemical Weapons and Syria sanctions regime). (UK Statement of Reasons):Colonel Firas Ahmed is the Director of the Security Office of Institute 1000, the division of the Scientific Studies and Research Centre (SSRC) responsible for developing and producing computer and electronic systems for Syria’s chemical weapons programme. He was involved in transferring and concealing chemical weapons related materials following Syria’s accession to the Chemical Weapons Convention. Due to his senior position within Institute 1000 of the SSRC, he is associated with the SSRC. (Gender):Male",Individual,Primary name variation,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13749 +AHMAD,Hasan,,,,,,,,,03/11/1957,Kafr Al-Shaykh,Egypt,Egypt,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0090 (UN Ref):QDi.192 Member of Egyptian Islamic Jihad (QDe.003). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4493165,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,12/01/2022,8717 +AHMAD,Hasan,,,,,,,,,03/11/1957,Kafr Al-Shaykh,Egypt,Egypt,,,,,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0090 (UN Ref):QDi.192 Member of Egyptian Islamic Jihad (QDe.003). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4493165,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,12/01/2022,8717 +AHMAD,Muhammad,Jamal,Abu,,,,,,,01/01/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +AHMAD,Muhammad,Jamal,Abu,,,,,,,01/02/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +AHMAD,Tarek,Anwar,El Sayed,,,,,,,15/03/1963,Alexandria,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0322 (UN Ref):QDi.014 Reportedly deceased in October 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4493067,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,12/01/2022,7011 +AHMAD,Ustadh,,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AHMAD,Ustadh,,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AHMAD,Ustadh,,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AHMAD,Ustadh,,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AHMAD,Ustadh,,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AHMAD,Ustadh,,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AHMAD,Ustadh,,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AHMAD,Ustadh,,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AHMAD,Ustadh,,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AHMAD,FARHAD,KANABI,,,,,فرهاد كنابي أحمد,,,01/07/1971,Arbil,Iraq,Iraq,A 0139243,German travel document (“Reiseausweis”) (revoked as at Sep.2012),,,,Arbil,Qushtuba,house no. SH 11,alley 5380,,,,Iraq,(UK Sanctions List Ref):AQD0170 (UN Ref):QDi.203 Mother’s name: Farida Hussein Khadir. Released from custody in Germany on 10 Dec. 2010 and relocated to Iraq on 6 Dec. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 5 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423935,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8781 +AHMAD,MUHAMMAD,YUNIS,AHMAD,,,,محمد يونس أحمد,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Al-Hasaka,,Syria,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,Primary name,,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AHMAD,MUHAMMAD,YUNIS,AHMAD,,,,محمد يونس أحمد,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Damascus,,Syria,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,Primary name,,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AHMAD,MUHAMMAD,YUNIS,AHMAD,,,,محمد يونس أحمد,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,Primary name,,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AHMAD,MUHAMMAD,YUNIS,AHMAD,,,,محمد يونس أحمد,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Mosul,,Iraq,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,Primary name,,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AHMAD,MUHAMMAD,YUNIS,AHMAD,,,,محمد يونس أحمد,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Wadi Al-Hawi,,Iraq,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,Primary name,,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AHMAD,MUHAMMAD,YUNIS,AHMAD,,,,محمد يونس أحمد,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,Al-Dawar Street,,,,,Bludan,,Syria,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,Primary name,,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AHMAD,NAJMUDDIN,FARAJ,,,,,,,,07/07/1956,"Olaqloo Sharbajer, Al-Sulaymaniyah Governorate",Iraq,Iraq,,,0075258,Ration card number,,Heimdalsgate 36-V,,,,,Oslo,,Norway,(UK Sanctions List Ref):AQD0270 (UN Ref):QDi.226 Mother’s name: Masouma Abd al-Rahman. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1453897,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,08/12/2006,07/12/2006,31/12/2020,8970 +AHMAD,NAJMUDDIN,FARAJ,,,,,,,,17/06/1963,"Olaqloo Sharbajer, Al-Sulaymaniyah Governorate",Iraq,Iraq,,,0075258,Ration card number,,Heimdalsgate 36-V,,,,,Oslo,,Norway,(UK Sanctions List Ref):AQD0270 (UN Ref):QDi.226 Mother’s name: Masouma Abd al-Rahman. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1453897,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,08/12/2006,07/12/2006,31/12/2020,8970 +AHMAD,Noor,,,,,,,,,00/00/1974,"Maiwand District, Kandahar Province",Afghanistan,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0122 (UN Ref):TAi.156 Senior Taliban official with military and financial responsibilities as at 2011. Leader of the Taliban’s Military Council as of 2010. In 2008 and 2009, served as a Taliban finance officer and distributed money to Taliban commanders in Afghanistan/ Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12454 +AHMAD AL-JALAHMAH,Jaber,Abdallah,Jaber,,,,جابر عبد الله جابر أحمد الجلاهمة,,,24/09/1959,Al-Khitan area,Kuwait,Kuwait,(1) 101423404 (2) 2541451 (3) 002327881,(1) - (2) Kuwait number valid until 16 Feb. 2017 (3) Kuwait number,259092401188,Kuwait,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0210 (UN Ref):QDi.237 Previously listed between 16 Jan. 2008 and 3 Jan. 2014 (amended on 1 Jul. 2008, 23 Jul. 2008, 25 Jan. 2010). Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518755. Address country Kuwait, residence as at March 2009 and at December 2013",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/01/2008,03/01/2014,31/12/2020,9225 +AHMAD AL-JALAMAH,Jabir,'Abdallah,Jabir,,,,,,,24/09/1959,Al-Khitan area,Kuwait,Kuwait,(1) 101423404 (2) 2541451 (3) 002327881,(1) - (2) Kuwait number valid until 16 Feb. 2017 (3) Kuwait number,259092401188,Kuwait,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0210 (UN Ref):QDi.237 Previously listed between 16 Jan. 2008 and 3 Jan. 2014 (amended on 1 Jul. 2008, 23 Jul. 2008, 25 Jan. 2010). Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518755. Address country Kuwait, residence as at March 2009 and at December 2013",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,03/01/2014,31/12/2020,9225 +AHMAD JALAHMAH,Jabir,Abdallah,Jabir,,,,,,,24/09/1959,Al-Khitan area,Kuwait,Kuwait,(1) 101423404 (2) 2541451 (3) 002327881,(1) - (2) Kuwait number valid until 16 Feb. 2017 (3) Kuwait number,259092401188,Kuwait,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0210 (UN Ref):QDi.237 Previously listed between 16 Jan. 2008 and 3 Jan. 2014 (amended on 1 Jul. 2008, 23 Jul. 2008, 25 Jan. 2010). Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518755. Address country Kuwait, residence as at March 2009 and at December 2013",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,03/01/2014,31/12/2020,9225 +AHMADI,Mohammad,,,,,(1) Mullah (2) Haji,محمد احمدی,,,00/00/1963,"(1) Daman District Kandahar Province. (2) Pashmul Village, Panjwai District, Kandahar Province",(1) Afghanistan. (2) Afghanistan.,Afghanistan,,,,,(1) President of Central Bank (Da Afghanistan Bank) under the Taliban regime (2) Minister of Finance under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0030 (UN Ref):TAi.031 Believed to be in Afghanistan/Pakistan border area. Belongs to Kakar tribe. He is a member of the Taliban Supreme Council. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6947 +AHMADI,Mohammad,Shafiq,,,,,,,,00/00/1956,"(1) Charmistan village, Tirin Kot District, Uruzgan Province. (2) Marghi village, Nawa District, Ghazni Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Samangan Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0084 (UN Ref):TAi.106 Originally from Ghazni Province, but later lived in Uruzgan. Taliban Shadow Governor for Uruzgan Province as of late 2012. Serves as a member of the Military Commission as of July 2016. Belongs to Hotak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7443 +AHMADI,Mohammad,Shafiq,,,,,,,,00/00/1957,"(1) Charmistan village, Tirin Kot District, Uruzgan Province. (2) Marghi village, Nawa District, Ghazni Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Samangan Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0084 (UN Ref):TAi.106 Originally from Ghazni Province, but later lived in Uruzgan. Taliban Shadow Governor for Uruzgan Province as of late 2012. Serves as a member of the Military Commission as of July 2016. Belongs to Hotak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7443 +AHMADIAN,ALI,AKBAR,,,,,,,,,Kerman,Iran,,,,,,(1) Former Chief of IRGC Joint Staff (2) Vice Admiral (3) Head of the IRGC Strategic Studies Centre,,,,,,,,,"(UK Sanctions List Ref):INU0194 (UN Ref):IRi.004 Position changed. [Old Reference # I.47.D.2] (UK Statement of Reasons):As former Chief of the IRGC Joint Staff, Ali Akbar AHMADIAN is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) EU Exit Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9058 +AHMADIAN,ALI,AKBAR,,,,,,,,00/00/1961,Kerman,Iran,,,,,,(1) Former Chief of IRGC Joint Staff (2) Vice Admiral (3) Head of the IRGC Strategic Studies Centre,,,,,,,,,"(UK Sanctions List Ref):INU0194 (UN Ref):IRi.004 Position changed. [Old Reference # I.47.D.2] (UK Statement of Reasons):As former Chief of the IRGC Joint Staff, Ali Akbar AHMADIAN is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) EU Exit Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9058 +AHMADI-MOGHADAM,Esmail,,,,,,,,,00/00/1961,,,,,,,,(1) Head of Iran's Headquarters in support of the Yemeni People (2) Director of the University and the Higher National Defence Research Institute (3) Adviser to the Chief of Staff of the Armed Forces,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0027 (UK Statement of Reasons):Former Senior Advisor for Security Affairs to the Chief of the Armed Forces General Staff. Chief of Iran's National Police from 2005 until early 2015. Also Head of the Iranian Cyber Police (listed) from January 2011 until early 2015. Forces under his command led brutal attacks on peaceful protests, and a violent night time attack on the dormitories of Tehran University on 15 June 2009. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,28/01/2022,11583 +AHMADI-MOGHADAM,Ismael,,,,,,,,,00/00/1961,,,,,,,,(1) Head of Iran's Headquarters in support of the Yemeni People (2) Director of the University and the Higher National Defence Research Institute (3) Adviser to the Chief of Staff of the Armed Forces,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0027 (UK Statement of Reasons):Former Senior Advisor for Security Affairs to the Chief of the Armed Forces General Staff. Chief of Iran's National Police from 2005 until early 2015. Also Head of the Iranian Cyber Police (listed) from January 2011 until early 2015. Forces under his command led brutal attacks on peaceful protests, and a violent night time attack on the dormitories of Tehran University on 15 June 2009. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,28/01/2022,11583 +AHMADI-MOQADDAM,Esmail,,,,,,اسماعیل احمدی‌مقدم,,,00/00/1961,,,,,,,,(1) Head of Iran's Headquarters in support of the Yemeni People (2) Director of the University and the Higher National Defence Research Institute (3) Adviser to the Chief of Staff of the Armed Forces,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0027 (UK Statement of Reasons):Former Senior Advisor for Security Affairs to the Chief of the Armed Forces General Staff. Chief of Iran's National Police from 2005 until early 2015. Also Head of the Iranian Cyber Police (listed) from January 2011 until early 2015. Forces under his command led brutal attacks on peaceful protests, and a violent night time attack on the dormitories of Tehran University on 15 June 2009. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,28/01/2022,11583 +AHMADI-MOQADDAM,Ismael,,,,,,,,,00/00/1961,,,,,,,,(1) Head of Iran's Headquarters in support of the Yemeni People (2) Director of the University and the Higher National Defence Research Institute (3) Adviser to the Chief of Staff of the Armed Forces,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0027 (UK Statement of Reasons):Former Senior Advisor for Security Affairs to the Chief of the Armed Forces General Staff. Chief of Iran's National Police from 2005 until early 2015. Also Head of the Iranian Cyber Police (listed) from January 2011 until early 2015. Forces under his command led brutal attacks on peaceful protests, and a violent night time attack on the dormitories of Tehran University on 15 June 2009. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,28/01/2022,11583 +AHMED,,,,,,,,,,19/11/1971,Medina,Saudi Arabia,Yemen,541939,"Issue date: 31/07/2000. Issued in Al-Hudaydah, Yemen, in the name of Muhammad Muhammad Abdullah Al-Ahdal",216040,Yemeni identity card number,,Jamal Street,Al-Dahima alley,,,,Al-Hudaydah,,Yemen,(UK Sanctions List Ref):AQD0242 (UN Ref):QDi.020 Responsible for the finances of Al-Qa’ida (QDe.004) in Yemen. Accused of involvement in the attack on the USS Cole in 2000. Arrested in Yemen in Nov. 2003. Sentenced to three years and one month of imprisonment by the specialized criminal court of first instance in Yemen. Released on 25 Dec. 2006 after the completion of his sentence. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6973 +AHMED,Abdoullah,Ould,,,,,,,,00/00/1948,(1) - . (2) Anefif (Kidal),(1) Sudan (2) Mali,,B0515260,"Date of issue: 10 Jan 2012. Place of issue: Bamako, Mali. Date of expiration: 10 Jan 2017.",073/SPICRE,"Mali ID Number. Date of issue: 6 Dec 2011; Place of issue: Essouck, Mali",Director Military Intelligence,,,,,,,,Libya,(UK Sanctions List Ref):LIB0041 (UN Ref):LYi.018 Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525995. Libya (in custody),Individual,AKA,Good quality,Libya,03/03/2011,26/02/2011,01/02/2021,11650 +AHMED,Abdoullah,Ould,,,,,,,,00/00/1949,(1) - . (2) Anefif (Kidal),(1) Sudan (2) Mali,,B0515260,"Date of issue: 10 Jan 2012. Place of issue: Bamako, Mali. Date of expiration: 10 Jan 2017.",073/SPICRE,"Mali ID Number. Date of issue: 6 Dec 2011; Place of issue: Essouck, Mali",Director Military Intelligence,,,,,,,,Libya,(UK Sanctions List Ref):LIB0041 (UN Ref):LYi.018 Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525995. Libya (in custody),Individual,AKA,Good quality,Libya,03/03/2011,26/02/2011,01/02/2021,11650 +AHMED,Abubakar,,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Abubakar,,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Abubakar,,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Abubakar,,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Abubakar,,,,,,,,,00/00/1962,,Kenya,,,,,,,,,,,Majengo area,Mombasa,,Kenya,(UK Sanctions List Ref):SOM0012 (UN Ref):SOi.012,Individual,AKA,Good quality,Somalia,16/10/2012,23/08/2012,16/02/2022,12737 +AHMED,Abubakar,,,,,,,,,00/00/1967,,Kenya,,,,,,,,,,,Majengo area,Mombasa,,Kenya,(UK Sanctions List Ref):SOM0012 (UN Ref):SOi.012,Individual,AKA,Good quality,Somalia,16/10/2012,23/08/2012,16/02/2022,12737 +AHMED,Abubakar,Khalfan,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Abubakar,Khalfan,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Abubakar,Khalfan,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Abubakar,Khalfan,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Abubakar K.,,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Abubakar K.,,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Abubakar K.,,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Abubakar K.,,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Abubakary K.,,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Abubakary K.,,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Abubakary K.,,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Abubakary K.,,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Ahmed,Khalfan,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Ahmed,Khalfan,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Ahmed,Khalfan,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Ahmed,Khalfan,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED,Firas,,,,,,فراس أحمد,,,21/01/1967,,,Syria,,,,,Head of Security Office at Institute 1000 of the SSRC,,,,,,,,,"(UK Sanctions List Ref):CHW0001 Important employee at Scientific Studies and Research Centre (listed under the EU's Chemical Weapons and Syria sanctions regime). (UK Statement of Reasons):Colonel Firas Ahmed is the Director of the Security Office of Institute 1000, the division of the Scientific Studies and Research Centre (SSRC) responsible for developing and producing computer and electronic systems for Syria’s chemical weapons programme. He was involved in transferring and concealing chemical weapons related materials following Syria’s accession to the Chemical Weapons Convention. Due to his senior position within Institute 1000 of the SSRC, he is associated with the SSRC. (Gender):Male",Individual,Primary name,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13749 +AHMED,Kawa,Omar,,,,,,,,01/07/1971,Arbil,Iraq,Iraq,A 0139243,German travel document (“Reiseausweis”) (revoked as at Sep.2012),,,,Arbil,Qushtuba,house no. SH 11,alley 5380,,,,Iraq,(UK Sanctions List Ref):AQD0170 (UN Ref):QDi.203 Mother’s name: Farida Hussein Khadir. Released from custody in Germany on 10 Dec. 2010 and relocated to Iraq on 6 Dec. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 5 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423935,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8781 +AHMED,Mohammad,Jamal,Abdo,,,,,,,01/01/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +AHMED,Mohammad,Jamal,Abdo,,,,,,,01/02/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +AHMED,Muhammad,Yunis,,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Al-Hasaka,,Syria,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AHMED,Muhammad,Yunis,,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Damascus,,Syria,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AHMED,Muhammad,Yunis,,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AHMED,Muhammad,Yunis,,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Mosul,,Iraq,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AHMED,Muhammad,Yunis,,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Wadi Al-Hawi,,Iraq,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AHMED,Muhammad,Yunis,,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,Al-Dawar Street,,,,,Bludan,,Syria,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AHMED,Sheikh,Abubakar,,,,,,,,00/00/1962,,Kenya,,,,,,,,,,,Majengo area,Mombasa,,Kenya,(UK Sanctions List Ref):SOM0012 (UN Ref):SOi.012,Individual,AKA,Good quality,Somalia,16/10/2012,23/08/2012,16/02/2022,12737 +AHMED,Sheikh,Abubakar,,,,,,,,00/00/1967,,Kenya,,,,,,,,,,,Majengo area,Mombasa,,Kenya,(UK Sanctions List Ref):SOM0012 (UN Ref):SOi.012,Individual,AKA,Good quality,Somalia,16/10/2012,23/08/2012,16/02/2022,12737 +AHMED,ABUBAKER,SHARIFF,,,,,,,,00/00/1962,,Kenya,,,,,,,,,,,Majengo area,Mombasa,,Kenya,(UK Sanctions List Ref):SOM0012 (UN Ref):SOi.012,Individual,Primary name,,Somalia,16/10/2012,23/08/2012,16/02/2022,12737 +AHMED,ABUBAKER,SHARIFF,,,,,,,,00/00/1967,,Kenya,,,,,,,,,,,Majengo area,Mombasa,,Kenya,(UK Sanctions List Ref):SOM0012 (UN Ref):SOi.012,Individual,Primary name,,Somalia,16/10/2012,23/08/2012,16/02/2022,12737 +AHMED,ADNAN,S.,HASAN,,,,عدنان س. حسن أحمد,,,,,,Iraq,,,,,,,,,,,Amman,,Jordan,(UK Sanctions List Ref):IRQ0134 (UN Ref):IQi.073,Individual,Primary name,,Iraq,05/05/2004,26/04/2004,31/12/2020,8287 +AHMED,Noor,,,,,,,,,00/00/1974,"Maiwand District, Kandahar Province",Afghanistan,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0122 (UN Ref):TAi.156 Senior Taliban official with military and financial responsibilities as at 2011. Leader of the Taliban’s Military Council as of 2010. In 2008 and 2009, served as a Taliban finance officer and distributed money to Taliban commanders in Afghanistan/ Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12454 +AHMED,TARIQ,ANWAR,EL SAYED,,,,طاريق أنور السيد احمد,,,15/03/1963,Alexandria,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0322 (UN Ref):QDi.014 Reportedly deceased in October 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4493067,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,12/01/2022,7011 +AHMED,ZAKI,EZAT,ZAKI,,,,زكي عزت زكي احمد,,,21/04/1960,(1) Sharqiyah. (2) Zaqaziq,(1) Egypt (2) Egypt,Egypt,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0341 (UN Ref):QDi.193 Father’s name is Ahmed Ezat Zaki. Member of Egyptian Islamic Jihad (QDe.003). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4514888,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,12/01/2022,8716 +AHMED,ZAKI,EZAT,ZAKI,,,,زكي عزت زكي احمد,,,21/04/1960,(1) Sharqiyah. (2) Zaqaziq,(1) Egypt (2) Egypt,Egypt,,,,,,May be on the Pakistani-Afghan border,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0341 (UN Ref):QDi.193 Father’s name is Ahmed Ezat Zaki. Member of Egyptian Islamic Jihad (QDe.003). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4514888,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,12/01/2022,8716 +AHMED THE TANZANIAN,,,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED THE TANZANIAN,,,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED THE TANZANIAN,,,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMED THE TANZANIAN,,,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AHMEDIAN,Ali,Akbar,,,,,,,,,Kerman,Iran,,,,,,(1) Former Chief of IRGC Joint Staff (2) Vice Admiral (3) Head of the IRGC Strategic Studies Centre,,,,,,,,,"(UK Sanctions List Ref):INU0194 (UN Ref):IRi.004 Position changed. [Old Reference # I.47.D.2] (UK Statement of Reasons):As former Chief of the IRGC Joint Staff, Ali Akbar AHMADIAN is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) EU Exit Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9058 +AHMEDIAN,Ali,Akbar,,,,,,,,00/00/1961,Kerman,Iran,,,,,,(1) Former Chief of IRGC Joint Staff (2) Vice Admiral (3) Head of the IRGC Strategic Studies Centre,,,,,,,,,"(UK Sanctions List Ref):INU0194 (UN Ref):IRi.004 Position changed. [Old Reference # I.47.D.2] (UK Statement of Reasons):As former Chief of the IRGC Joint Staff, Ali Akbar AHMADIAN is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) EU Exit Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9058 +AHMEDOV,Farhad,,,,,,,,,15/09/1955,Baku,Azerbaijan,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1311 (UK Statement of Reasons):Farkhad Akhmedov is a member of or associated with a person who is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, the Russian information, communications and digital technologies sector. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,02/08/2022,15263 +AHRAR-UL-HIND,,,,,,,,,,,,,,,,,,,Lalpura,,,,,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AQD0056 (UN Ref):QDe.152 Splinter group of the Tehrik-e Taliban Pakistan (QDe.132). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Formed in Aug. 2014 in Mohmand Agency, Pakistan. Operates from Nangarhar Province, Afghanistan and Pakistan-Afghanistan border region. Banned in Pakistan on 21 Nov. 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6114258",Entity,FKA,,ISIL (Da'esh) and Al-Qaida,07/07/2017,06/07/2017,31/12/2020,13491 +AHRAR-UL-HIND,,,,,,,,,,,,,,,,,,,Mohmand Agency,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0056 (UN Ref):QDe.152 Splinter group of the Tehrik-e Taliban Pakistan (QDe.132). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Formed in Aug. 2014 in Mohmand Agency, Pakistan. Operates from Nangarhar Province, Afghanistan and Pakistan-Afghanistan border region. Banned in Pakistan on 21 Nov. 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6114258",Entity,FKA,,ISIL (Da'esh) and Al-Qaida,07/07/2017,06/07/2017,31/12/2020,13491 +AHYA UL TURAS,,,,,,,,,,,,,,,,,,,Cheprahar Hadda,Mia Omar Sabaqah School,,,,Jalalabad,,Afghanistan,(UK Sanctions List Ref):AQD0004 (UN Ref):QDe.069 Associated with the Revival of Islamic Heritage Society (QDe.070). Abu Bakr al-Jaziri (QDi.058) served as finance chief of ASC. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235582,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,12/01/2022,6940 +AHYA UL TURAS,,,,,,,,,,,,,,,,,,,Headquarters – G.T. Road (probably Grand Trunk Road),near Pushtoon Garhi Pabbi,,,,Peshawar,,Pakistan,(UK Sanctions List Ref):AQD0004 (UN Ref):QDe.069 Associated with the Revival of Islamic Heritage Society (QDe.070). Abu Bakr al-Jaziri (QDi.058) served as finance chief of ASC. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235582,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,12/01/2022,6940 +"AID ORGANIZATION OF THE ULEMA, PAKISTAN",,,,,,,,,,,,,,,,,,,"302b-40, Good Earth Court",Opposite Pia Planitarium,Block 13a,Gulshan-I-Iqbal,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +"AID ORGANIZATION OF THE ULEMA, PAKISTAN",,,,,,,,,,,,,,,,,,,605 Landmark Plaza,11 Chundrigar Road,Opposite Jang Building,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +"AID ORGANIZATION OF THE ULEMA, PAKISTAN",,,,,,,,,,,,,,,,,,,617 Clifton Center,Block 5,6th Floor,Clifton,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +"AID ORGANIZATION OF THE ULEMA, PAKISTAN",,,,,,,,,,,,,,,,,,,Jamia Maajid,Sulalman Park,Melgium Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +"AID ORGANIZATION OF THE ULEMA, PAKISTAN",,,,,,,,,,,,,,,,,,,Jamia Masjid,Sulaiman Park,Begum Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +"AID ORGANIZATION OF THE ULEMA, PAKISTAN",,,,,,,,,,,,,,,,,,,Kitab Ghar,Darul Ifta Wal Irshad,Nazimabad No 4,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +"AID ORGANIZATION OF THE ULEMA, PAKISTAN",,,,,,,,,,,,,,,,,,,Kitas Ghar,Nazimabad 4,Dahgel-Iftah,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +"AID ORGANIZATION OF THE ULEMA, PAKISTAN",,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Opposite Khyber Bank,Abbottabad Road,,,Mansehra,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +"AID ORGANIZATION OF THE ULEMA, PAKISTAN",,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Rm No 3,Moti Plaza,Near Liaquat Bagh,Muree Road,Rawalpindi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +"AID ORGANIZATION OF THE ULEMA, PAKISTAN",,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Top Floor,Dr. Dawa Khan Dental Clinic Surgeon,Main Baxae,Mingora,Swat,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +"AID ORGANIZATION OF THE ULEMA, PAKISTAN",,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin ZR Brothers,Katcherry Road,Chowk Yadgaar,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AIO,,,,,,,,,,,,,,,,,,,28 Shian 5,Lavizan,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0046 (UK Statement of Reasons):AIO oversees Iran's production of missiles, including Shahid Hemmat Industrial Group, Shahid Bagheri Industrial Group and Fajr Industrial Group, which were all designated under UNSCR 1737 (2006). The head of AIO and two other senior officials were also designated under UNSCR 1737 (2006). (Website):http://www.defanews.ir/sug/%D8%B3%D8%A7%D8%B2%D9%85%D8%A7%D9%86 %D8%B5%D9%86%D8%A7%DB%8C%D8%B9 %D9%87%D9%88%D8%A7%D9%81%D8%B6%D8%A7 (Type of entity):Enterprise (Subsidiaries):Electro Sanam Company. Ettehad Technical Group. Fajr Industrial Group. Indsutrial Factories of Precision (IFP). Joza Industrial Co. M Babaei Indsutries. Machinery. Safety Equipment Procurement (SEP). Sanam Industrial Group. Shahid Bagheri Industrial Group (SBIG). Shahid Hemmat Industrial Group (SHIG). Ya Mahdi Industries Group (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9102 +AIO,,,,,,,,,,,,,,,,,,,Langare Street,Nobonyad Square,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0046 (UK Statement of Reasons):AIO oversees Iran's production of missiles, including Shahid Hemmat Industrial Group, Shahid Bagheri Industrial Group and Fajr Industrial Group, which were all designated under UNSCR 1737 (2006). The head of AIO and two other senior officials were also designated under UNSCR 1737 (2006). (Website):http://www.defanews.ir/sug/%D8%B3%D8%A7%D8%B2%D9%85%D8%A7%D9%86 %D8%B5%D9%86%D8%A7%DB%8C%D8%B9 %D9%87%D9%88%D8%A7%D9%81%D8%B6%D8%A7 (Type of entity):Enterprise (Subsidiaries):Electro Sanam Company. Ettehad Technical Group. Fajr Industrial Group. Indsutrial Factories of Precision (IFP). Joza Industrial Co. M Babaei Indsutries. Machinery. Safety Equipment Procurement (SEP). Sanam Industrial Group. Shahid Bagheri Industrial Group (SBIG). Shahid Hemmat Industrial Group (SHIG). Ya Mahdi Industries Group (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9102 +AIR DEFENSE MISSILE INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0111 (UK Statement of Reasons):Entity subordinate to Iran's Aerospace Industries Organisation (AIO) which has developed and produced missiles for Iran's military. (Type of entity):Nuclear,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11219 +AIR FORCE INTELLIGENCE AGENCY,,,,,,,إدارة المخابرات الجوية,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0278 Director/Management name is General Jamil Hassan (UK Statement of Reasons):Syrian government agency directly involved in repression. (Type of entity):Government entity,Entity,Primary name,,Syria,24/08/2011,31/12/2020,31/12/2020,12057 +"AIR FORCE, IRGC",,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0081 (UK Statement of Reasons):Operates Iran’s inventory of short and medium range ballistic missiles and is responsible for controlling Iran’s strategic missile force. Controlled by and acts on behalf of the IRGC. (Type of entity):Military (Parent company):Islamic Revolutionary Guard Corps,Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10660 +AIR SIGMA,,,,,,,,,,,,,,,,,,,Markov Str. 11,,,,,Almaty,,Kazakhstan,"(UK Sanctions List Ref):LIB0068 (UK Statement of Reasons):There are reasonable grounds to suspect that Sigma Airlines is a Kazakhstan based air company that operates cargo aircraft transporting military equipment to Libya in violation of the UN arms embargo established in UNSCR 1970 (2011). By assisting the contravention or circumvention UNSCR 1970 (2011), Sigma Airlines was involved in an activity which threatens the peace, stability and security of Libya, and undermines its transition to a democratic, peaceful and independent country. (Phone number):772793000000 (Website):https://airsigma.pro/ (Type of entity):Airline company",Entity,AKA,,Libya,21/09/2020,31/12/2020,19/01/2021,13915 +AIRAPETYAN,Larisa,Leonidovna,,,,,,,,21/02/1970,,,,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0062 Relatives/business associates or partners/links to listed individuals: Husband – Geran Hayrapetyan aka Ayrapetyan (UK Statement of Reasons):Former so-called “Health Minister’ of the so called ‘Luhansk People's Republic’. Stood as a candidate in the so called ‘elections’ of 2 November 2014 to the post of the ‘Head’ of the so called ‘Luhansk People's Republic’. These ‘elections’ are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, she has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilised Ukraine. (Gender):Female",Individual,Primary name,,Russia,02/12/2014,31/12/2020,16/09/2022,13172 +AIRAPETYAN,Larysa,,,,,,,,,21/02/1970,,,,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0062 Relatives/business associates or partners/links to listed individuals: Husband – Geran Hayrapetyan aka Ayrapetyan (UK Statement of Reasons):Former so-called “Health Minister’ of the so called ‘Luhansk People's Republic’. Stood as a candidate in the so called ‘elections’ of 2 November 2014 to the post of the ‘Head’ of the so called ‘Luhansk People's Republic’. These ‘elections’ are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, she has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilised Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13172 +AISYAH,Abu,,,,,,,,,06/09/1983,(1) Surakarta (2) Pekalongan,(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,Aleppo,,Syria,"(UK Sanctions List Ref):AQD0259 (UN Ref):QDi.404 Syrian-based Indonesian national who has served in a variety of roles supporting the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116575",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13515 +AISYAH,Abu,,,,,,,,,06/09/1983,(1) Surakarta (2) Pekalongan,(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0259 (UN Ref):QDi.404 Syrian-based Indonesian national who has served in a variety of roles supporting the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116575",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13515 +AITKULOVA,Elvira,Rinatovna,,,,,Аиткулова Эльвира Ринатовна,,,19/08/1973,"Novobayramgulovo, Bashkir",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0297 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14242 +AJAMI,Ajaj,,,,,,,,,10/08/1987,,Kuwait,Kuwait,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0185 (UN Ref):QDi.328 A Kuwait-based facilitator in charge of the ‘committee of zakat’ and financier for Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809968,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13087 +AJEEB,Yusuf,,,,,,,,,,,,,,,,,Head of Security Office for the Scientific Studies and Research Centre (SSRC) since 2012,Scientific Studies and Research Centre (SSRC),Barzeh Street,PO Box 4470,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0242 (UK Statement of Reasons):Holds the rank of Brigadier General, a senior officer in the Syrian Armed Forces, in post after May 2011. Since 2012, he has been Head of Security for the Scientific Studies and Research Centre (SSRC) which is involved in the chemical weapons proliferation sector. As a result of his senior position as Head of Security for SSRC, he is associated with the designated entity SSRC (Gender):Male",Individual,Primary name,,Syria,19/03/2018,31/12/2020,13/05/2022,13620 +AJIB,Yusuf,,,,,,,,,,,,,,,,,Head of Security Office for the Scientific Studies and Research Centre (SSRC) since 2012,Scientific Studies and Research Centre (SSRC),Barzeh Street,PO Box 4470,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0242 (UK Statement of Reasons):Holds the rank of Brigadier General, a senior officer in the Syrian Armed Forces, in post after May 2011. Since 2012, he has been Head of Security for the Scientific Studies and Research Centre (SSRC) which is involved in the chemical weapons proliferation sector. As a result of his senior position as Head of Security for SSRC, he is associated with the designated entity SSRC (Gender):Male",Individual,Primary name variation,,Syria,19/03/2018,31/12/2020,13/05/2022,13620 +AJNAD,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0376 (UN Ref):QDe.167 Formed in November 2014. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). (Type of entity):Terrorist organisation",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/01/2022,29/12/2021,12/01/2022,14171 +AK ALROSA PAO,,,,,,,,,,,,,,,,,,,"ul. Lenina, 6",Mirny,,,,Republic of Sakha (Yakutia),678174,Russia,"(UK Sanctions List Ref):RUS1075 (UK Statement of Reasons):As a diamond mining company, part-owned by the Russian State, ALROSA is an entity obtaining a benefit from and supporting the Government of Russia by carrying out business in the Russian extractives sector, a sector of strategic significance to the Government of Russia, and carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 (41136) 90021 (Website):alrosa.ru (Email address):info@alrosa.ru",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,15/07/2022,15018 +AKBARSHAHI,Ali-Reza,,,,,,,,,,,,,,,,,Former Head of the Railway Police,,,,,,,,,"(UK Sanctions List Ref):IHR0018 (UK Statement of Reasons):Former Director-General of Iran's Drug Control Headquarters (aka: Anti-Narcotics Headquarters). Former Commander of Tehran Police. Under his leadership, the police force was responsible for the use of extrajudicial force on suspects during arrest and pre-trial detention. The Tehran police were also implicated in raids on Tehran university dorms in June 2009, when according to an Iranian Majlis commission, more than 100 students were injured by the police and Basiji. Currently head of the railway police. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12175 +AKHARIAN,Hassan,,,,,,,,,,,,,,,,,"Former keeper of Ward 1 of Radjaishahr prison (aka Rajai/Rajaei Shahr prison, aka Gohardasht prison), Karadj until 2010",,,,,,,,,"(UK Sanctions List Ref):IHR0035 (UK Statement of Reasons):Keeper of Ward 1 of Radjaishahr prison, Karadj until July 2010. Several former detainees have denounced the use of torture by him, as well as orders he gave to prevent inmates receiving medical assistance. According to a transcript of one reported detainee in the Radjaishahr prison, wardens all beat him severely, with Akharian’s full knowledge. There is also at least one reported case of ill treatment and the death of a detainee, Mohsen Beikvand, under Akharian’s wardenship. Beikvand died in September 2010. Other prisoners claim credibly that he was killed by the instructions of Hassan Akharian. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,31/12/2020,12176 +AKHARIAN,Hossein,,,,,,,,,,,,,,,,,"Former keeper of Ward 1 of Radjaishahr prison (aka Rajai/Rajaei Shahr prison, aka Gohardasht prison), Karadj until 2010",,,,,,,,,"(UK Sanctions List Ref):IHR0035 (UK Statement of Reasons):Keeper of Ward 1 of Radjaishahr prison, Karadj until July 2010. Several former detainees have denounced the use of torture by him, as well as orders he gave to prevent inmates receiving medical assistance. According to a transcript of one reported detainee in the Radjaishahr prison, wardens all beat him severely, with Akharian’s full knowledge. There is also at least one reported case of ill treatment and the death of a detainee, Mohsen Beikvand, under Akharian’s wardenship. Beikvand died in September 2010. Other prisoners claim credibly that he was killed by the instructions of Hassan Akharian. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,31/12/2020,12176 +AKHLAQ,Abu,Ahmad,,,,,,,,01/01/1969,"(1) Qalamun, Damascus Province (2) Ghutah, Damascus Province (3) Tadamon, Rif Dimashq",(1) Syria (2) Syria (3) Syria,(1) Syria. (2) Palestine,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0155 (UN Ref):QDi.399 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) for southern Syrian Arab Republic since July 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6013284. Syrian Arab Republic (Southern. Location as of July 2016),Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13446 +AKHLAQ,Abu,Ahmad,,,,,,,,00/00/1971,"(1) Qalamun, Damascus Province (2) Ghutah, Damascus Province (3) Tadamon, Rif Dimashq",(1) Syria (2) Syria (3) Syria,(1) Syria. (2) Palestine,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0155 (UN Ref):QDi.399 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) for southern Syrian Arab Republic since July 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6013284. Syrian Arab Republic (Southern. Location as of July 2016),Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13446 +AKHMADOV,Mokhmad,Isaevich,,,,,Мохмад Исаевич АХМАДОВ,,,17/04/1972,"Shali, Chechen-Ingush ASSR",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0941 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14892 +AKHMEDOV,Farkhad,,,,,,Фархад Ахмедов,Cyrillic,Russian,15/09/1955,Baku,Azerbaijan,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1311 (UK Statement of Reasons):Farkhad Akhmedov is a member of or associated with a person who is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, the Russian information, communications and digital technologies sector. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15263 +AKHMEDOV,Farkhad,Teimur,Ogly,,,,,,,15/09/1955,Baku,Azerbaijan,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1311 (UK Statement of Reasons):Farkhad Akhmedov is a member of or associated with a person who is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, the Russian information, communications and digital technologies sector. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,02/08/2022,15263 +AKHMEDOV,Farkhad,Teymur,Ogly,,,,,,,15/09/1955,Baku,Azerbaijan,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1311 (UK Statement of Reasons):Farkhad Akhmedov is a member of or associated with a person who is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, the Russian information, communications and digital technologies sector. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,02/08/2022,15263 +AKHTAR MOHAMMAD,Ahmed Jan,Wazir,,,,,احمد جان وزیر اختر محمد,,,00/00/1963,"Barlach Village, Qareh Bagh District, Ghazni Province",Afghanistan,,,,,,Official of the Ministry of Finance during the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0125 (UN Ref):TAi.159 Key commander of the Haqqani Network (TAe.012), which is based in Afghanistan/Pakistan border area. Acts as deputy, spokesperson and advisor for Haqqani Network senior leader Sirajuddin Jallaloudine Haqqani (TAi.144). Liaises with the Taliban Supreme Council. Has travelled abroad. Liaises with and provides Taliban commanders in Ghazni Province, Afghanistan, with money, weapons, communications equipment and supplies. Reportedly deceased as of 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,Primary name,,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12457 +AKHTAR MUHAMMAD,SALEH,MOHAMMAD,KAKAR,,,,ﺻﺍﻠﺡ ﻤﺣﻤﺩ ﻛﺍﻛﺭ اختر محمد,,,00/00/1962,"Nalghan village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,,Daman District,,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0117 (UN Ref):TAi.149 Has run an organized smuggling network in Kandahar and Helmand provinces, Afghanistan. Previously operated heroin processing laboratories in Band-e Temur, Kandahar Province, Afghanistan. Has owned a car dealership in Mirwais Mena, Dand District in Kandahar Province, Afghanistan. Released from custody in Afghanistan in February 2014. Linked by marriage to Mullah Ubaidullah Akhund Yar Mohammad Akhund (TAi.022). Belongs to Kakar tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,15/11/2010,04/11/2010,01/02/2021,11275 +AKHTAR MUHAMMAD,SALEH,MOHAMMAD,KAKAR,,,,ﺻﺍﻠﺡ ﻤﺣﻤﺩ ﻛﺍﻛﺭ اختر محمد,,,00/00/1961,"Nalghan village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,,Daman District,,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0117 (UN Ref):TAi.149 Has run an organized smuggling network in Kandahar and Helmand provinces, Afghanistan. Previously operated heroin processing laboratories in Band-e Temur, Kandahar Province, Afghanistan. Has owned a car dealership in Mirwais Mena, Dand District in Kandahar Province, Afghanistan. Released from custody in Afghanistan in February 2014. Linked by marriage to Mullah Ubaidullah Akhund Yar Mohammad Akhund (TAi.022). Belongs to Kakar tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,15/11/2010,04/11/2010,01/02/2021,11275 +AKHTARABAD MEDICAL CAMP,,,,,,,,,,,,,,,,,,,Gulistan-e-Jauhar,Block 12,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0010 (UN Ref):QDe.121 Regional offices in Pakistan: Bahawalpur, Bawalnagar, Gilgit, Islamabad, Mirpur Khas, Tando-Jan-Muhammad. Akhtarabad Medical Camp is in Spin Boldak, Afghanistan. Registered by members of Jaish-i-Mohammed (QDe.019). Associated with Harakat ul-Mujahidin/ HUM (QDe.008), Lashkar I Jhanghvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235573",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,19/08/2005,17/08/2005,31/12/2020,8703 +AKHTARABAD MEDICAL CAMP,,,,,,,,,,,,,,,,,,,ST-1/A,Gulsahn-e-Iqbal,Block 2,,,Karachi,25300,Pakistan,"(UK Sanctions List Ref):AQD0010 (UN Ref):QDe.121 Regional offices in Pakistan: Bahawalpur, Bawalnagar, Gilgit, Islamabad, Mirpur Khas, Tando-Jan-Muhammad. Akhtarabad Medical Camp is in Spin Boldak, Afghanistan. Registered by members of Jaish-i-Mohammed (QDe.019). Associated with Harakat ul-Mujahidin/ HUM (QDe.008), Lashkar I Jhanghvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235573",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,19/08/2005,17/08/2005,31/12/2020,8703 +AKHUND,Abdul Jalil,,,,,,,,,00/00/1963,"(1) Kandahar City, Kandahar Province. (2) Khwaja Malik village, Arghandab District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,(1) OR 1961825. (2) TR024417,"(1) Afghanistan. Issued in name of Akhtar Mohmad, son of Noor Mohmad, born in 1965 in Kandahar. Issued 4 Feb 2003 by Afghan Consulate in Quetta, Pakistan. Expired 2 Feb 2006 (2) Issued under the name of Haji Gulab Gul, son of Haji Hazrat Gul, born in 1955 in Logar, Afghanistan. Issued on 20/12/2003 by Central Passport Department in Kabul, Afghanistan. Expired 29 December 2006.",,,Deputy Minister of Foreign Affairs under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0032 (UN Ref):TAi.034 Believed to be in Afghanistan/Pakistan border area. Member of the Taliban Supreme Council as of May 2007. Member of the Financial Commission of the Taliban Council. Responsible for logistics for the Taliban and also active as a businessman in his personal capacity as at mid-2013. Belongs to Alizai tribe. Brother of Atiqullah Wali Mohammad (TAi.070). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6908 +AKHUND,Naim,Barech,,,,Mullah,,,,00/00/1975,"(1) Lakhi village, Hazarjuft area, Garmsir District, Helmand Province (2) Laki village, Garmsir District, Helmand Province (3) Lakari village, Garmsir District, Helmand Province (4) Darvishan, Garmsir District, Helmand Province (5) De Luy Wiyalah village, Garmsir District, Helmand Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan (5) Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation under the Taliban,,,,,,,,,(UK Sanctions List Ref):AFG0015 (UN Ref):TAi.013 Member of the Taliban Military Commission as at mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7354 +AKHUND,Obaid,Ullah,,,,,,,,00/00/1968,"(1) Arghandab District, Kandahar Province. (2) Sangisar village, Panjwai District,Kandahar Province. (3) Zheray District, Kandahar Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Minister of Defence under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0022 (UN Ref):TAi.022 He was one of the deputies of Mullah Mohammed Omar (TAi.004) and a member of the Taliban's Supreme Council, in charge of military operations. Arrested in 2007 and was in custody in Pakistan. Confirmed deceased in March 2010 and buried in Karachi, Pakistan. Linked by marriage to Saleh Mohammad Kakar Akhtar Muhammad (TAi.149). Belonged to Alokozai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6956 +AKHUND,Obaid,Ullah,,,,,,,,00/00/1969,"(1) Arghandab District, Kandahar Province. (2) Sangisar village, Panjwai District,Kandahar Province. (3) Zheray District, Kandahar Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Minister of Defence under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0022 (UN Ref):TAi.022 He was one of the deputies of Mullah Mohammed Omar (TAi.004) and a member of the Taliban's Supreme Council, in charge of military operations. Arrested in 2007 and was in custody in Pakistan. Confirmed deceased in March 2010 and buried in Karachi, Pakistan. Linked by marriage to Saleh Mohammad Kakar Akhtar Muhammad (TAi.149). Belonged to Alokozai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6956 +AKHUND,Obaidullah,,,,,,,,,00/00/1968,"(1) Arghandab District, Kandahar Province. (2) Sangisar village, Panjwai District,Kandahar Province. (3) Zheray District, Kandahar Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Minister of Defence under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0022 (UN Ref):TAi.022 He was one of the deputies of Mullah Mohammed Omar (TAi.004) and a member of the Taliban's Supreme Council, in charge of military operations. Arrested in 2007 and was in custody in Pakistan. Confirmed deceased in March 2010 and buried in Karachi, Pakistan. Linked by marriage to Saleh Mohammad Kakar Akhtar Muhammad (TAi.149). Belonged to Alokozai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6956 +AKHUND,Obaidullah,,,,,,,,,00/00/1969,"(1) Arghandab District, Kandahar Province. (2) Sangisar village, Panjwai District,Kandahar Province. (3) Zheray District, Kandahar Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Minister of Defence under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0022 (UN Ref):TAi.022 He was one of the deputies of Mullah Mohammed Omar (TAi.004) and a member of the Taliban's Supreme Council, in charge of military operations. Arrested in 2007 and was in custody in Pakistan. Confirmed deceased in March 2010 and buried in Karachi, Pakistan. Linked by marriage to Saleh Mohammad Kakar Akhtar Muhammad (TAi.149). Belonged to Alokozai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6956 +AKHUND,,,,,,,,,,00/00/1953,"Kadani village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,(1) Minister of Urban Development under the Taliban regime (2) President of Central Bank (Da Afghanistan Bank) under the Taliban regime (3) Head of Ariana Afghan Airlines under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0021 (UN Ref):TAi.021 One foot lost in landmine explosion. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,6953 +AKHUND,,,,,,,,,,00/00/1960,"Kadani village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,(1) Minister of Urban Development under the Taliban regime (2) President of Central Bank (Da Afghanistan Bank) under the Taliban regime (3) Head of Ariana Afghan Airlines under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0021 (UN Ref):TAi.021 One foot lost in landmine explosion. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,6953 +AKHUND,ABDUL BARI,,,,,(1) Maulavi (2) Mullah,عبد الباری ﺁخوند,,,00/00/1953,"(1) Baghran District, Helmand Province. (2) Now Zad District, Helmand Province",(1) Afghanistan. (2) Afghanistan,Afghanistan,,,,,Governor of Helmand Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0072 (UN Ref):TAi.094 Member of the Taliban Supreme Council as of 2009. Believed to be in Afghanistan/Pakistan border area. Belongs to Alokozai tribe. Member of Taliban leadership in Helmand Province, Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6905 +AKHUND,Ahmed Jan,,,,,,,,,00/00/1953,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +AKHUND,Ahmed Jan,,,,,,,,,00/00/1954,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +AKHUND,Ahmed Jan,,,,,,,,,00/00/1955,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +AKHUND,Ahmed Jan,,,,,,,,,00/00/1956,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +AKHUND,Ahmed Jan,,,,,,,,,00/00/1957,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +AKHUND,Ahmed Jan,,,,,,,,,00/00/1958,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +AKHUND,ATTIQULLAH,,,,,Maulavi,عتیق الله آخوند,,,00/00/1953,"Shah Wali Kot District, Kandahar Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Agriculture under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0013 (UN Ref):TAi.009 Member of Taliban Supreme Military Council as well as Taliban Supreme Council as at June 2010. Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6952 +AKHUND,Baradar,,,,,Mullah,,,,00/00/1968,"Yatimak village, Dehrawood District, Uruzgan Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Defence under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0024 (UN Ref):TAi.024 Arrested in Feb. 2010 and in custody in Pakistan. Extradition request to Afghanistan pending in Lahore High Court, Pakistan as of June 2011. Belongs to Popalzai tribe. Senior Taliban military commander and member of Taliban Quetta Council as of May 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7060 +AKHUND,Hamidullah,,,,,,,,,00/00/1972,"(1) Sarpolad village, Washer District, Helmand Province (2) Arghandab District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Head of Ariana Afghan Airlines under the Taliban regime,,,,,,,,Afghanistan,(UK Sanctions List Ref):AFG0092 (UN Ref):TAi.118 Belongs to Ghilzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7159 +AKHUND,Hamidullah,,,,,,,,,00/00/1973,"(1) Sarpolad village, Washer District, Helmand Province (2) Arghandab District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Head of Ariana Afghan Airlines under the Taliban regime,,,,,,,,Afghanistan,(UK Sanctions List Ref):AFG0092 (UN Ref):TAi.118 Belongs to Ghilzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7159 +AKHUND,Mohammad,Ishaq,,,,,,,,00/00/1963,"Andar District, Ghazni Province",Afghanistan,Afghanistan,,,,,Governor of Laghman Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0079 (UN Ref):TAi.101 Taliban commander for Ghazni Province as at 2008. Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7130 +AKHUND,Mohammad,Ishaq,,,,,,,,00/00/1964,"Andar District, Ghazni Province",Afghanistan,Afghanistan,,,,,Governor of Laghman Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0079 (UN Ref):TAi.101 Taliban commander for Ghazni Province as at 2008. Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7130 +AKHUND,Mohammad,Ishaq,,,,,,,,00/00/1965,"Andar District, Ghazni Province",Afghanistan,Afghanistan,,,,,Governor of Laghman Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0079 (UN Ref):TAi.101 Taliban commander for Ghazni Province as at 2008. Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7130 +AKHUND,Mohammad,Ishaq,,,,,,,,00/00/1966,"Andar District, Ghazni Province",Afghanistan,Afghanistan,,,,,Governor of Laghman Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0079 (UN Ref):TAi.101 Taliban commander for Ghazni Province as at 2008. Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7130 +AKHUND,Mohammad,Ishaq,,,,,,,,00/00/1967,"Andar District, Ghazni Province",Afghanistan,Afghanistan,,,,,Governor of Laghman Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0079 (UN Ref):TAi.101 Taliban commander for Ghazni Province as at 2008. Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7130 +AKHUND,Mohammad,Ishaq,,,,,,,,00/00/1968,"Andar District, Ghazni Province",Afghanistan,Afghanistan,,,,,Governor of Laghman Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0079 (UN Ref):TAi.101 Taliban commander for Ghazni Province as at 2008. Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7130 +AKHUND,MOHAMMAD,ABBAS,,,,Mullah,محمد عباس آخوند,,,00/00/1963,"Khas Uruzgan District, Uruzgan Province",Afghanistan,Afghanistan,,,,,(1) Minister of Public Health under the Taliban regime. (2) Mayor of Kandahar under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0050 (UN Ref):TAi.066 Member of Taliban Supreme Council in charge of the Medical Committee as of Jan. 2011. Directly supervises three medical centers caring for wounded Taliban fighters as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barakzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6954 +AKHUND,MOHAMMAD,AMAN,,,,,محمد امان آخوند,,,00/00/1970,"Bande Tumur Village, Maiwand District, Kandahar Province",Afghanistan,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0124 (UN Ref):TAi.158 Senior Taliban member as at 2011 with financial duties, including raising funds on behalf of the leadership. Has provided logistical support for Taliban operations and channeled proceeds from drug trafficking to arms purchases. Has acted as secretary to Taliban leader Mullah Mohammed Omar (TAi.004) and as his messenger at senior-level meetings of the Taliban. Also associated with Gul Agha Ishakzai (TAi.147). Member of Mullah Mohammed Omar’s (TAi.004) inner circle during the Taliban regime. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12456 +AKHUND,MOHAMMAD,HASSAN,,,,(1) Mullah (2) Haji,محمد حسن آخوند,,,00/00/1958,"Pashmul village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,"(1) First Deputy, Council of Ministers under the Taliban regime. (2) Foreign Minister under the Taliban regime. (3) Governor of Kandahar under the Taliban regime. (4) Political Advisor of Mullah Mohammed Omar",,,,,,,,,(UK Sanctions List Ref):AFG0006 (UN Ref):TAi.002 A close associate of Mullah Mohammed Omar (TAi.004). Member of Taliban Supreme Council as at Dec. 2009. Belongs to Kakar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7172 +AKHUND,MOHAMMAD,HASSAN,,,,(1) Mullah (2) Haji,محمد حسن آخوند,,,00/00/1945,"Pashmul village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,"(1) First Deputy, Council of Ministers under the Taliban regime. (2) Foreign Minister under the Taliban regime. (3) Governor of Kandahar under the Taliban regime. (4) Political Advisor of Mullah Mohammed Omar",,,,,,,,,(UK Sanctions List Ref):AFG0006 (UN Ref):TAi.002 A close associate of Mullah Mohammed Omar (TAi.004). Member of Taliban Supreme Council as at Dec. 2009. Belongs to Kakar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7172 +AKHUND,MOHAMMAD,HASSAN,,,,(1) Mullah (2) Haji,محمد حسن آخوند,,,00/00/1946,"Pashmul village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,"(1) First Deputy, Council of Ministers under the Taliban regime. (2) Foreign Minister under the Taliban regime. (3) Governor of Kandahar under the Taliban regime. (4) Political Advisor of Mullah Mohammed Omar",,,,,,,,,(UK Sanctions List Ref):AFG0006 (UN Ref):TAi.002 A close associate of Mullah Mohammed Omar (TAi.004). Member of Taliban Supreme Council as at Dec. 2009. Belongs to Kakar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7172 +AKHUND,MOHAMMAD,HASSAN,,,,(1) Mullah (2) Haji,محمد حسن آخوند,,,00/00/1947,"Pashmul village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,"(1) First Deputy, Council of Ministers under the Taliban regime. (2) Foreign Minister under the Taliban regime. (3) Governor of Kandahar under the Taliban regime. (4) Political Advisor of Mullah Mohammed Omar",,,,,,,,,(UK Sanctions List Ref):AFG0006 (UN Ref):TAi.002 A close associate of Mullah Mohammed Omar (TAi.004). Member of Taliban Supreme Council as at Dec. 2009. Belongs to Kakar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7172 +AKHUND,MOHAMMAD,HASSAN,,,,(1) Mullah (2) Haji,محمد حسن آخوند,,,00/00/1948,"Pashmul village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,"(1) First Deputy, Council of Ministers under the Taliban regime. (2) Foreign Minister under the Taliban regime. (3) Governor of Kandahar under the Taliban regime. (4) Political Advisor of Mullah Mohammed Omar",,,,,,,,,(UK Sanctions List Ref):AFG0006 (UN Ref):TAi.002 A close associate of Mullah Mohammed Omar (TAi.004). Member of Taliban Supreme Council as at Dec. 2009. Belongs to Kakar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7172 +AKHUND,MOHAMMAD,HASSAN,,,,(1) Mullah (2) Haji,محمد حسن آخوند,,,00/00/1949,"Pashmul village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,"(1) First Deputy, Council of Ministers under the Taliban regime. (2) Foreign Minister under the Taliban regime. (3) Governor of Kandahar under the Taliban regime. (4) Political Advisor of Mullah Mohammed Omar",,,,,,,,,(UK Sanctions List Ref):AFG0006 (UN Ref):TAi.002 A close associate of Mullah Mohammed Omar (TAi.004). Member of Taliban Supreme Council as at Dec. 2009. Belongs to Kakar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7172 +AKHUND,MOHAMMAD,HASSAN,,,,(1) Mullah (2) Haji,محمد حسن آخوند,,,00/00/1950,"Pashmul village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,"(1) First Deputy, Council of Ministers under the Taliban regime. (2) Foreign Minister under the Taliban regime. (3) Governor of Kandahar under the Taliban regime. (4) Political Advisor of Mullah Mohammed Omar",,,,,,,,,(UK Sanctions List Ref):AFG0006 (UN Ref):TAi.002 A close associate of Mullah Mohammed Omar (TAi.004). Member of Taliban Supreme Council as at Dec. 2009. Belongs to Kakar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7172 +AKHUND,MOHAMMAD,HASSAN,,,,(1) Mullah (2) Haji,محمد حسن آخوند,,,00/00/1955,"Pashmul village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,"(1) First Deputy, Council of Ministers under the Taliban regime. (2) Foreign Minister under the Taliban regime. (3) Governor of Kandahar under the Taliban regime. (4) Political Advisor of Mullah Mohammed Omar",,,,,,,,,(UK Sanctions List Ref):AFG0006 (UN Ref):TAi.002 A close associate of Mullah Mohammed Omar (TAi.004). Member of Taliban Supreme Council as at Dec. 2009. Belongs to Kakar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7172 +AKHUND,MOHAMMAD,HASSAN,,,,(1) Mullah (2) Haji,محمد حسن آخوند,,,00/00/1956,"Pashmul village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,"(1) First Deputy, Council of Ministers under the Taliban regime. (2) Foreign Minister under the Taliban regime. (3) Governor of Kandahar under the Taliban regime. (4) Political Advisor of Mullah Mohammed Omar",,,,,,,,,(UK Sanctions List Ref):AFG0006 (UN Ref):TAi.002 A close associate of Mullah Mohammed Omar (TAi.004). Member of Taliban Supreme Council as at Dec. 2009. Belongs to Kakar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7172 +AKHUND,MOHAMMAD,HASSAN,,,,(1) Mullah (2) Haji,محمد حسن آخوند,,,00/00/1957,"Pashmul village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,"(1) First Deputy, Council of Ministers under the Taliban regime. (2) Foreign Minister under the Taliban regime. (3) Governor of Kandahar under the Taliban regime. (4) Political Advisor of Mullah Mohammed Omar",,,,,,,,,(UK Sanctions List Ref):AFG0006 (UN Ref):TAi.002 A close associate of Mullah Mohammed Omar (TAi.004). Member of Taliban Supreme Council as at Dec. 2009. Belongs to Kakar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7172 +AKHUND,MOHAMMAD ESSA,,,,,(1) Mullah (2) Alhaj,محمد عیسی آخوند,,,00/00/1958,"Mial area, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,"Minister of Water, Sanitation and Electricity under the Taliban regime",,,,,,,,,(UK Sanctions List Ref):AFG0047 (UN Ref):TAi.060 Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6955 +AKHUND,Mullah,Gul,Agha,,,,,,,00/00/1972,"Band-e-Temur, Maiwand District, Kandahar Province",Afghanistan,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0115 (UN Ref):TAi.147 Member of a Taliban Council that coordinates the collection of zakat (Islamic tax) from Baluchistan Province, Pakistan. Head of Taliban Financial Commission as at mid-2013. Associated with Mullah Mohammed Omar (TAi.004). Served as Omar's principal finance officer and one of his closest advisors. Belongs to Ishaqzai tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11207 +AKHUNDZADA,AHMAD JAN,AKHUNDZADA,SHUKOOR,,,(1) Mullah (2) Maulavi,احمد جان آخوند زاده شكور آخوند زاده,,,00/00/1966,"(1) Lablan village, Dehrawood District, Uruzgan Province. (2) Zurmat District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Zabol and Uruzgan Provinces under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0087 (UN Ref):TAi.109 Taliban member responsible for Uruzgan Province, Afghanistan, as at early 2007. Brother-in-law of Mullah Mohammed Omar (TAi.004). Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6946 +AKHUNDZADA,AHMAD JAN,AKHUNDZADA,SHUKOOR,,,(1) Mullah (2) Maulavi,احمد جان آخوند زاده شكور آخوند زاده,,,00/00/1967,"(1) Lablan village, Dehrawood District, Uruzgan Province. (2) Zurmat District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Zabol and Uruzgan Provinces under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0087 (UN Ref):TAi.109 Taliban member responsible for Uruzgan Province, Afghanistan, as at early 2007. Brother-in-law of Mullah Mohammed Omar (TAi.004). Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6946 +AKHUNDZADA,EHSANULLAH,SARFIDA,HESAMUDDIN,,,Maulavi,احسان الله سرفدا حسام الدین آخوندزاده,,,00/00/1963,"Khatak village, Gelan District, Ghazni Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Security (Intelligence) under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0063 (UN Ref):TAi.083 As of mid-2007, he provided support to the Taliban in the form of weapons and money. Believed to be in the Gulf region. Belongs to Taraki tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7123 +AKHUNDZADA,EHSANULLAH,SARFIDA,HESAMUDDIN,,,Maulavi,احسان الله سرفدا حسام الدین آخوندزاده,,,00/00/1962,"Khatak village, Gelan District, Ghazni Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Security (Intelligence) under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0063 (UN Ref):TAi.083 As of mid-2007, he provided support to the Taliban in the form of weapons and money. Believed to be in the Gulf region. Belongs to Taraki tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7123 +AKHUNZADA,Ahmad Jan,,,,,,,,,00/00/1966,"(1) Lablan village, Dehrawood District, Uruzgan Province. (2) Zurmat District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Zabol and Uruzgan Provinces under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0087 (UN Ref):TAi.109 Taliban member responsible for Uruzgan Province, Afghanistan, as at early 2007. Brother-in-law of Mullah Mohammed Omar (TAi.004). Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6946 +AKHUNZADA,Ahmad Jan,,,,,,,,,00/00/1967,"(1) Lablan village, Dehrawood District, Uruzgan Province. (2) Zurmat District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Zabol and Uruzgan Provinces under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0087 (UN Ref):TAi.109 Taliban member responsible for Uruzgan Province, Afghanistan, as at early 2007. Brother-in-law of Mullah Mohammed Omar (TAi.004). Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6946 +AKHUNZADA,Mohammad,Eshaq,,,,Maulavi,محمد اسحاق آخوند زاده,,,00/00/1963,"Andar District, Ghazni Province",Afghanistan,Afghanistan,,,,,Governor of Laghman Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0079 (UN Ref):TAi.101 Taliban commander for Ghazni Province as at 2008. Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7130 +AKHUNZADA,Mohammad,Eshaq,,,,Maulavi,محمد اسحاق آخوند زاده,,,00/00/1964,"Andar District, Ghazni Province",Afghanistan,Afghanistan,,,,,Governor of Laghman Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0079 (UN Ref):TAi.101 Taliban commander for Ghazni Province as at 2008. Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7130 +AKHUNZADA,Mohammad,Eshaq,,,,Maulavi,محمد اسحاق آخوند زاده,,,00/00/1965,"Andar District, Ghazni Province",Afghanistan,Afghanistan,,,,,Governor of Laghman Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0079 (UN Ref):TAi.101 Taliban commander for Ghazni Province as at 2008. Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7130 +AKHUNZADA,Mohammad,Eshaq,,,,Maulavi,محمد اسحاق آخوند زاده,,,00/00/1966,"Andar District, Ghazni Province",Afghanistan,Afghanistan,,,,,Governor of Laghman Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0079 (UN Ref):TAi.101 Taliban commander for Ghazni Province as at 2008. Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7130 +AKHUNZADA,Mohammad,Eshaq,,,,Maulavi,محمد اسحاق آخوند زاده,,,00/00/1967,"Andar District, Ghazni Province",Afghanistan,Afghanistan,,,,,Governor of Laghman Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0079 (UN Ref):TAi.101 Taliban commander for Ghazni Province as at 2008. Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7130 +AKHUNZADA,Mohammad,Eshaq,,,,Maulavi,محمد اسحاق آخوند زاده,,,00/00/1968,"Andar District, Ghazni Province",Afghanistan,Afghanistan,,,,,Governor of Laghman Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0079 (UN Ref):TAi.101 Taliban commander for Ghazni Province as at 2008. Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7130 +AKHWAN,Mochtar,,,,,,,,,04/05/1948,Tulungagung,Indonesia,Indonesia,,,(1) 3573010405480001 (2) 353010405480001,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Jalan Ir. H. Juanda 8/10,RT/RW 002/001,Jodipan,Blimbing,,Malang,65127,Indonesia,"(UK Sanctions List Ref):AQD0234 (UN Ref):QDi.304 Acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133). Associated with Abu Bakar Ba’asyir (QDi.217), Abdul Rahim Ba’aysir (QDi.293) and Jemaah Islamiyah (QDe.092). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,14/06/2022,12627 +AKHWAN,Mochtar,,,,,,,,,04/05/1946,Tulungagung,Indonesia,Indonesia,,,(1) 3573010405480001 (2) 353010405480001,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Jalan Ir. H. Juanda 8/10,RT/RW 002/001,Jodipan,Blimbing,,Malang,65127,Indonesia,"(UK Sanctions List Ref):AQD0234 (UN Ref):QDi.304 Acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133). Associated with Abu Bakar Ba’asyir (QDi.217), Abdul Rahim Ba’aysir (QDi.293) and Jemaah Islamiyah (QDe.092). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,14/06/2022,12627 +AKHWAN,Muhammad,,,,,,,,,04/05/1948,Tulungagung,Indonesia,Indonesia,,,(1) 3573010405480001 (2) 353010405480001,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Jalan Ir. H. Juanda 8/10,RT/RW 002/001,Jodipan,Blimbing,,Malang,65127,Indonesia,"(UK Sanctions List Ref):AQD0234 (UN Ref):QDi.304 Acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133). Associated with Abu Bakar Ba’asyir (QDi.217), Abdul Rahim Ba’aysir (QDi.293) and Jemaah Islamiyah (QDe.092). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,14/06/2022,12627 +AKHWAN,Muhammad,,,,,,,,,04/05/1946,Tulungagung,Indonesia,Indonesia,,,(1) 3573010405480001 (2) 353010405480001,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Jalan Ir. H. Juanda 8/10,RT/RW 002/001,Jodipan,Blimbing,,Malang,65127,Indonesia,"(UK Sanctions List Ref):AQD0234 (UN Ref):QDi.304 Acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133). Associated with Abu Bakar Ba’asyir (QDi.217), Abdul Rahim Ba’aysir (QDi.293) and Jemaah Islamiyah (QDe.092). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,14/06/2022,12627 +AKI,,,,,,,,,,12/03/1966,"Sangandaan, Caloocan City",Philippines,Philippines,AA780554,,,,,"50, Purdue Street",,,,Cubao,Quezon City,,Philippines,(UK Sanctions List Ref):AQD0195 (UN Ref):QDi.244 Founder and leader of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1523805,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10664 +AKIMOV,Oleg,Konstantinovich,,,,,,,,15/09/1981,Luhansk,Ukraine,Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0063 (UK Statement of Reasons):Deputy of the Luhansk Economic Unition in the 'National Council' of the 'Luhansk People's Republic.' Stood as a candidate in the so-called 'elections' of 2 November 2014 to the post of so-called 'Head' of the 'Luhansk People's Republic.' These 'elections' were in breach of Ukrainian law and therefore illegal. Since 2014 he is the 'Head' of the so-called 'Federation of Trade Unions' and a member of the so-called 'People's Council' of the 'Luhansk People's Republic.' In taking on and acting in this capacity, and in participating formally as a candidate in the illegal 'elections' he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Supports actively actions or policies undermining the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,02/12/2014,31/12/2020,31/12/2020,13171 +AKIMOV,Aleksandr,Konstantinovich,,,,,Александр Константинович АКИМОВ,,,10/11/1954,Suntarsky District,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0955 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14906 +AKIMOV,Andrei,Igorevich,,,,,,,,22/09/1953,Leningrad (St Petersburg),Russia,Russia,,,,,(1) Chairman of the Management Board and Board member for Gazprombank (2) Member of the Board of Directors of Gazprom (3) Member of the Board of Directors of Novatek,,,,,,,,,"(UK Sanctions List Ref):RUS1122 (UK Statement of Reasons):Andrey Igorevich AKIMOV (hereafter AKIMOV) is a Russian businessman who holds senior positions in several Russian companies. AKIMOV is Chairman of the Management Board and Deputy Chairman of the Board of Directors at Gazprombank. Gazprombank is an entity carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian financial services sector. AKIMOV is a member of the Board of Directors for Novatek. Novatek is an entity carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian energy sector. AKIMOV is a member of the Gazprom Board of Directors. Gazprom is an entity that is controlled directly by the Government of Russia and therefore a Government of Russia-affiliated entity. AKIMOV is or has been involved in obtaining a benefit from or supporting the Government of Russia through working as a director of entities that are carrying on business in a sector of strategic significance to the Government of Russia, and working as a director of a Government of Russia-affiliated entity. (Gender):Male",Individual,Primary name variation,,Russia,06/04/2022,06/04/2022,06/04/2022,15071 +AKIMOV,Andrey,Igorevich,,,,,Андрей Игоревич Акимов,,,22/09/1953,Leningrad (St Petersburg),Russia,Russia,,,,,(1) Chairman of the Management Board and Board member for Gazprombank (2) Member of the Board of Directors of Gazprom (3) Member of the Board of Directors of Novatek,,,,,,,,,"(UK Sanctions List Ref):RUS1122 (UK Statement of Reasons):Andrey Igorevich AKIMOV (hereafter AKIMOV) is a Russian businessman who holds senior positions in several Russian companies. AKIMOV is Chairman of the Management Board and Deputy Chairman of the Board of Directors at Gazprombank. Gazprombank is an entity carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian financial services sector. AKIMOV is a member of the Board of Directors for Novatek. Novatek is an entity carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian energy sector. AKIMOV is a member of the Gazprom Board of Directors. Gazprom is an entity that is controlled directly by the Government of Russia and therefore a Government of Russia-affiliated entity. AKIMOV is or has been involved in obtaining a benefit from or supporting the Government of Russia through working as a director of entities that are carrying on business in a sector of strategic significance to the Government of Russia, and working as a director of a Government of Russia-affiliated entity. (Gender):Male",Individual,Primary name,,Russia,06/04/2022,06/04/2022,06/04/2022,15071 +AKIMOV,Oleh,,,,,,,,,15/09/1981,Luhansk,Ukraine,Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0063 (UK Statement of Reasons):Deputy of the Luhansk Economic Unition in the 'National Council' of the 'Luhansk People's Republic.' Stood as a candidate in the so-called 'elections' of 2 November 2014 to the post of so-called 'Head' of the 'Luhansk People's Republic.' These 'elections' were in breach of Ukrainian law and therefore illegal. Since 2014 he is the 'Head' of the so-called 'Federation of Trade Unions' and a member of the so-called 'People's Council' of the 'Luhansk People's Republic.' In taking on and acting in this capacity, and in participating formally as a candidate in the illegal 'elections' he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Supports actively actions or policies undermining the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,AKA,,Russia,02/12/2014,31/12/2020,31/12/2020,13171 +AKKACHA,DJAMEL,,,,,,جمال عكاشة,,,09/05/1978,"Rouiba, Algiers",Algeria,Algeria,,,,,,,,,,,,,Mali,(UK Sanctions List Ref):AQD0162 (UN Ref):QDi.313 Father’s name is Slimane. Mother’s name is Akrouf Khadidja. Coordinator of groups associated with The Organisation of Al-Qaida in the Islamic Maghreb (QDe.014) in northern Mali. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5224629,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,13/02/2013,05/02/2013,31/12/2020,12842 +AKKAD,Hashem,Anwar,,,,,,,,00/00/1961,Mohagirine,Syria,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0079 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in multiple sectors of Syria's economy. He holds interests in and/or has significant influence in Anwar Akkad Sons Group (AASG) and its subsidiary United Oil. AASG is a conglomerate with interests in sectors such as oil, gas, chemicals, insurance, industrial machinery, real estate, tourism, exhibitions, contracting, insurance, and medical equipment. Hashim Anwar al-Aqqad also worked as a member of the Syrian Parliament as recently as 2012. Al-Aqqad could not have remained successful without assistance from the regime. Given the extent of his business and political ties to the regime he provides support to and benefits from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,31/12/2020,13023 +AKKAD,Hashim,Anwar,,,,,,,,00/00/1961,Mohagirine,Syria,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0079 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in multiple sectors of Syria's economy. He holds interests in and/or has significant influence in Anwar Akkad Sons Group (AASG) and its subsidiary United Oil. AASG is a conglomerate with interests in sectors such as oil, gas, chemicals, insurance, industrial machinery, real estate, tourism, exhibitions, contracting, insurance, and medical equipment. Hashim Anwar al-Aqqad also worked as a member of the Syrian Parliament as recently as 2012. Al-Aqqad could not have remained successful without assistance from the regime. Given the extent of his business and political ties to the regime he provides support to and benefits from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,31/12/2020,13023 +AKMAD,,,,,,,,,,19/07/1981,Cebu City,Philippines,Philippines,,,,,,,,,,Atimonana,Quezon Province,,Philippines,(UK Sanctions List Ref):AQD0161 (UN Ref):QDi.242 Member of the Rajah Solaiman Movement (QDe.128). Father's name is Amorsolo Jarabata Pareja. Mother's name is Leonila Cambaya Rosalejos. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10662 +AKMAN,Saeed,,,,,,,,,11/04/1968,,Kuwait,Pakistan,(1) 665334 (2) 917739,(1) Pakistani. Issued in Kuwait (2) Pakistani. Issued in Pakistan on 8 August 1991. Expired on 7 August 1996.,,,,,,,,,,,,(UK Sanctions List Ref):AQD0102 (UN Ref):QDi.120 Mother's name is Aminah Ahmad Sher al-Baloushi. In custody of the United States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/09/2003,09/09/2003,31/12/2020,7843 +AKOUB,Nawfel,,,,,,,,,23/02/1964,,Iraq,Iraq,,,71719043,,,,,,,,,,Iraq,"(UK Sanctions List Ref):GAC0027 (UK Statement of Reasons):Nawfal Hammadi Al-Sultan has been involved in serious corruption in Nineveh province, Iraq involving the misappropriation of state property to his benefit and the benefit of others. In his role as governor of Nineveh province, he misappropriated public funds intended for reconstruction efforts and to provide support for civilians and improperly awarded contracts and other state property. Additional information: in February 2021 Al-Sultan was convicted by the Central Anti-Corruption Criminal Court in Iraq in relation to some of his corrupt activities when governor of Nineveh Governorate. He was convicted of two offences of “harming a public body” under Article 340 of Iraq’s Penal Code and sentenced to a total of five years in prison, for: (i) wasting five billion Iraqi Dinars of public funds of Nineveh Governorate through fictitious works and contracts, and (ii) improperly disposing of 50 tons of asphalt delivered to him for paving the streets and for reconstruction in 2017. (Gender):Male",Individual,AKA,,Global Anti-Corruption,22/07/2021,22/07/2021,22/07/2021,14130 +AKRAM,Abu,,,,,,,,,01/03/1961,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +AKRAM,Abu,,,,,,,,,16/06/1960,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +AKRAM,Abu,,,,,,,,,00/00/1974,,,,,,0075258,Ration card no.,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +AKRAM,Abu,,,,,,,,,00/00/1974,,,,,,0075258,Ration card no.,,,,,,,Deir ez-Zor Governorate,,Syria,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +AKRAM,Abu,,,,,,,,,00/00/1975,,,,,,0075258,Ration card no.,,,,,,,Deir ez-Zor Governorate,,Syria,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +AKRAM,Abu,,,,,,,,,00/00/1975,,,,,,0075258,Ration card no.,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +AKRAM,Abu,,,,,,,,,00/00/1979,,,,,,0075258,Ration card no.,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +AKRAM,Abu,,,,,,,,,00/00/1979,,,,,,0075258,Ration card no.,,,,,,,Deir ez-Zor Governorate,,Syria,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +AKRIN,Akrin,Saleh,,,,,أقرين صالح أقرين,,,,,,,,,,,Libyan Ambassador to Chad,,,,,,,,,"(UK Sanctions List Ref):LIB0076 (UN Ref):LYi.004 (UK Statement of Reasons):Quren Salih Quren Al Qadhafi was the former Libyan ambassador to Chad under the regime of Muammar Qadhafi and there are reasonable grounds to suspect that he has been involved in activities carried out on behalf of the former regime of Muammar Qadhafi implementing or connected to the repressive policies of that regime through his involvement in the procurement and coordination of foreign armed mercenary personnel on behalf of that regime. There are reasonable grounds to suspect this involvement was in violation of the arms embargo imposed under paragraph 9 of United Nations Security Council Resolution 1970. In addition/in the alternative, there are reasonable grounds to suspect that Quren Salih Quren Al Qadhafi’s alleged attempts to spread disinformation in Libya and opposition to the UN and UN-led political process in Libya threatens the peace, stability and security of Libya or which undermines its transition to a democratic, peaceful and independent country. In addition/in the alternative, there are reasonable grounds to suspect that Quren Salih Quren Al Qadhafi is associated with Saif-al Islam Qadhafi and Saadi Qadhafi who are or have been involved in activities carried out on behalf of the former regime of Muammar Qadhafi implementing or connected to the repressive policies of that regime or any other activity which threatens the peace, stability and security of Libya or undermines its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,AKA,Good quality,Libya,19/01/2022,18/01/2022,16/02/2022,14172 +AKSAKOV,Anatoly,Gennadievich,,,,,Аксаков Анатолий Геннадьевич,,,28/11/1957,Ermolaevo,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0606 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14551 +AKSENOV,Sergei,Valerievich,,,,,Сергей Валерьевич АКСЁНОВ,,,26/11/1972,Beltsy (Balti),Moldovian SSR (now Republic of Moldovia),Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0064 (UK Statement of Reasons):Aksyonov was elected ""Prime Minister of Crimea"" in the Crimean Verkhovna Rada on 27 February 2014 in the presence of pro-Russian gunmen. His ""election"" was decreed unconstitutional by Oleksandr Turchynov on 1 March. He actively lobbied for the ""referendum"" of Russian Federation"" of 16 March 2014, and was one of the co-signatories of the ""treaty on Crimean's accession to the Russian Federation"" of 18 March 2014. On 9 April 2014, he was appointed acting ""Head"" of the ""Head"" of the so-called ""Republic of Crimea"" by President Putin. On 9 October 2014, he was formally ""elected"" ""Head"" of the so-called ""Republic of Crimea."" Aksyonov subsequently decreed that the offices of ""Head"" and ""Prime Minister"" be combined. Member of the Russia State Council. Since January 2017, member of the High Council of United Russia Party. For his involvement in the annexation process, he has been arwarded with Russian State Order ""For Merit to the Fatherland"" - first degree. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12922 +AKSENOV,Sergey,Valeryevich,,,,,,,,26/11/1972,Beltsy (Balti),Moldovian SSR (now Republic of Moldovia),Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0064 (UK Statement of Reasons):Aksyonov was elected ""Prime Minister of Crimea"" in the Crimean Verkhovna Rada on 27 February 2014 in the presence of pro-Russian gunmen. His ""election"" was decreed unconstitutional by Oleksandr Turchynov on 1 March. He actively lobbied for the ""referendum"" of Russian Federation"" of 16 March 2014, and was one of the co-signatories of the ""treaty on Crimean's accession to the Russian Federation"" of 18 March 2014. On 9 April 2014, he was appointed acting ""Head"" of the ""Head"" of the so-called ""Republic of Crimea"" by President Putin. On 9 October 2014, he was formally ""elected"" ""Head"" of the so-called ""Republic of Crimea."" Aksyonov subsequently decreed that the offices of ""Head"" and ""Prime Minister"" be combined. Member of the Russia State Council. Since January 2017, member of the High Council of United Russia Party. For his involvement in the annexation process, he has been arwarded with Russian State Order ""For Merit to the Fatherland"" - first degree. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12922 +AKSENOV,Serhiy,Valeriyovych,,,,,,,,26/11/1972,Beltsy (Balti),Moldovian SSR (now Republic of Moldovia),Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0064 (UK Statement of Reasons):Aksyonov was elected ""Prime Minister of Crimea"" in the Crimean Verkhovna Rada on 27 February 2014 in the presence of pro-Russian gunmen. His ""election"" was decreed unconstitutional by Oleksandr Turchynov on 1 March. He actively lobbied for the ""referendum"" of Russian Federation"" of 16 March 2014, and was one of the co-signatories of the ""treaty on Crimean's accession to the Russian Federation"" of 18 March 2014. On 9 April 2014, he was appointed acting ""Head"" of the ""Head"" of the so-called ""Republic of Crimea"" by President Putin. On 9 October 2014, he was formally ""elected"" ""Head"" of the so-called ""Republic of Crimea."" Aksyonov subsequently decreed that the offices of ""Head"" and ""Prime Minister"" be combined. Member of the Russia State Council. Since January 2017, member of the High Council of United Russia Party. For his involvement in the annexation process, he has been arwarded with Russian State Order ""For Merit to the Fatherland"" - first degree. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12922 +AKSONOV,Sergiy,Valeriyovich,,,,,,,,26/11/1972,Beltsy (Balti),Moldovian SSR (now Republic of Moldovia),Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0064 (UK Statement of Reasons):Aksyonov was elected ""Prime Minister of Crimea"" in the Crimean Verkhovna Rada on 27 February 2014 in the presence of pro-Russian gunmen. His ""election"" was decreed unconstitutional by Oleksandr Turchynov on 1 March. He actively lobbied for the ""referendum"" of Russian Federation"" of 16 March 2014, and was one of the co-signatories of the ""treaty on Crimean's accession to the Russian Federation"" of 18 March 2014. On 9 April 2014, he was appointed acting ""Head"" of the ""Head"" of the so-called ""Republic of Crimea"" by President Putin. On 9 October 2014, he was formally ""elected"" ""Head"" of the so-called ""Republic of Crimea."" Aksyonov subsequently decreed that the offices of ""Head"" and ""Prime Minister"" be combined. Member of the Russia State Council. Since January 2017, member of the High Council of United Russia Party. For his involvement in the annexation process, he has been arwarded with Russian State Order ""For Merit to the Fatherland"" - first degree. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12922 +AKSONOV,Sergiy,Valeriyovich,,,,,Cергій Валерійович АКСЬОНОВ,,,26/11/1972,Beltsy (Balti),Moldovian SSR (now Republic of Moldovia),Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0064 (UK Statement of Reasons):Aksyonov was elected ""Prime Minister of Crimea"" in the Crimean Verkhovna Rada on 27 February 2014 in the presence of pro-Russian gunmen. His ""election"" was decreed unconstitutional by Oleksandr Turchynov on 1 March. He actively lobbied for the ""referendum"" of Russian Federation"" of 16 March 2014, and was one of the co-signatories of the ""treaty on Crimean's accession to the Russian Federation"" of 18 March 2014. On 9 April 2014, he was appointed acting ""Head"" of the ""Head"" of the so-called ""Republic of Crimea"" by President Putin. On 9 October 2014, he was formally ""elected"" ""Head"" of the so-called ""Republic of Crimea."" Aksyonov subsequently decreed that the offices of ""Head"" and ""Prime Minister"" be combined. Member of the Russia State Council. Since January 2017, member of the High Council of United Russia Party. For his involvement in the annexation process, he has been arwarded with Russian State Order ""For Merit to the Fatherland"" - first degree. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12922 +AKSYONENKO,Alexander,Sergeevich,,,,,Аксёненко Александр Сергеевич,,,08/03/1986,Novosibirsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0298 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14243 +AKSYONOV,Sergei,Valerievich,,,,,,,,26/11/1972,Beltsy (Balti),Moldovian SSR (now Republic of Moldovia),Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0064 (UK Statement of Reasons):Aksyonov was elected ""Prime Minister of Crimea"" in the Crimean Verkhovna Rada on 27 February 2014 in the presence of pro-Russian gunmen. His ""election"" was decreed unconstitutional by Oleksandr Turchynov on 1 March. He actively lobbied for the ""referendum"" of Russian Federation"" of 16 March 2014, and was one of the co-signatories of the ""treaty on Crimean's accession to the Russian Federation"" of 18 March 2014. On 9 April 2014, he was appointed acting ""Head"" of the ""Head"" of the so-called ""Republic of Crimea"" by President Putin. On 9 October 2014, he was formally ""elected"" ""Head"" of the so-called ""Republic of Crimea."" Aksyonov subsequently decreed that the offices of ""Head"" and ""Prime Minister"" be combined. Member of the Russia State Council. Since January 2017, member of the High Council of United Russia Party. For his involvement in the annexation process, he has been arwarded with Russian State Order ""For Merit to the Fatherland"" - first degree. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12922 +AKSYONOV,Sergey,Valeryevich,,,,,,,,26/11/1972,Beltsy (Balti),Moldovian SSR (now Republic of Moldovia),Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0064 (UK Statement of Reasons):Aksyonov was elected ""Prime Minister of Crimea"" in the Crimean Verkhovna Rada on 27 February 2014 in the presence of pro-Russian gunmen. His ""election"" was decreed unconstitutional by Oleksandr Turchynov on 1 March. He actively lobbied for the ""referendum"" of Russian Federation"" of 16 March 2014, and was one of the co-signatories of the ""treaty on Crimean's accession to the Russian Federation"" of 18 March 2014. On 9 April 2014, he was appointed acting ""Head"" of the ""Head"" of the so-called ""Republic of Crimea"" by President Putin. On 9 October 2014, he was formally ""elected"" ""Head"" of the so-called ""Republic of Crimea."" Aksyonov subsequently decreed that the offices of ""Head"" and ""Prime Minister"" be combined. Member of the Russia State Council. Since January 2017, member of the High Council of United Russia Party. For his involvement in the annexation process, he has been arwarded with Russian State Order ""For Merit to the Fatherland"" - first degree. (Gender):Male",Individual,Primary name,,Russia,18/03/2014,31/12/2020,16/09/2022,12922 +AKSYONOV,Serhiy,Valeriyovych,,,,,,,,26/11/1972,Beltsy (Balti),Moldovian SSR (now Republic of Moldovia),Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0064 (UK Statement of Reasons):Aksyonov was elected ""Prime Minister of Crimea"" in the Crimean Verkhovna Rada on 27 February 2014 in the presence of pro-Russian gunmen. His ""election"" was decreed unconstitutional by Oleksandr Turchynov on 1 March. He actively lobbied for the ""referendum"" of Russian Federation"" of 16 March 2014, and was one of the co-signatories of the ""treaty on Crimean's accession to the Russian Federation"" of 18 March 2014. On 9 April 2014, he was appointed acting ""Head"" of the ""Head"" of the so-called ""Republic of Crimea"" by President Putin. On 9 October 2014, he was formally ""elected"" ""Head"" of the so-called ""Republic of Crimea."" Aksyonov subsequently decreed that the offices of ""Head"" and ""Prime Minister"" be combined. Member of the Russia State Council. Since January 2017, member of the High Council of United Russia Party. For his involvement in the annexation process, he has been arwarded with Russian State Order ""For Merit to the Fatherland"" - first degree. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12922 +AKSYONOV,Sergey,Valeryevich,,,,,,,,26/11/1972,Beltsy (Balti),Moldovian SSR (now Republic of Moldovia),Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0064 (UK Statement of Reasons):Aksyonov was elected ""Prime Minister of Crimea"" in the Crimean Verkhovna Rada on 27 February 2014 in the presence of pro-Russian gunmen. His ""election"" was decreed unconstitutional by Oleksandr Turchynov on 1 March. He actively lobbied for the ""referendum"" of Russian Federation"" of 16 March 2014, and was one of the co-signatories of the ""treaty on Crimean's accession to the Russian Federation"" of 18 March 2014. On 9 April 2014, he was appointed acting ""Head"" of the ""Head"" of the so-called ""Republic of Crimea"" by President Putin. On 9 October 2014, he was formally ""elected"" ""Head"" of the so-called ""Republic of Crimea."" Aksyonov subsequently decreed that the offices of ""Head"" and ""Prime Minister"" be combined. Member of the Russia State Council. Since January 2017, member of the High Council of United Russia Party. For his involvement in the annexation process, he has been arwarded with Russian State Order ""For Merit to the Fatherland"" - first degree. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12922 +AKSYUTIN,Oleg,Yevgenyevich,,,,,,,,05/05/1967,,,,,,,,"Deputy Chairman of the Management Board, Gazprom PJSC",,,,,,,,,"(UK Sanctions List Ref):RUS1066 (UK Statement of Reasons):Oleg Yevgenyevich AKSYUTIN (hereafter AKSYUTIN) is the Deputy Chairman of the Management Board of Gazprom PJSC , a Russian energy corporation . In this role AKSYUTIN is or has been involved in obtaining a benefit from or supporting the Government of Russia by working as a director or equivalent in an entity carrying on business in the Russian energy sector, a sector of strategic significance to the Government of Russia.",Individual,Primary name,,Russia,24/03/2022,24/03/2022,24/05/2022,15009 +AKTIVA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0100 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK merchant vessel M/V SAM JONG 2 was involved in ship-to-ship transfer operations of oil in late January 2018. Listed as asset of Korea Samjong Shipping (OFSI ID: 13635, UN Reference Number: UN Ref KPe.064) (IMO number):7408873 (Current owners):Korea Samjong Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Oil tanker (Tonnage of ship):1676 (Length of ship):80 (Year built):1975",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13651 +AKTSIONERNAYA KOMPANIYA ALROSA PAO,,,,,,,,,,,,,,,,,,,"ul. Lenina, 6",Mirny,,,,Republic of Sakha (Yakutia),678174,Russia,"(UK Sanctions List Ref):RUS1075 (UK Statement of Reasons):As a diamond mining company, part-owned by the Russian State, ALROSA is an entity obtaining a benefit from and supporting the Government of Russia by carrying out business in the Russian extractives sector, a sector of strategic significance to the Government of Russia, and carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 (41136) 90021 (Website):alrosa.ru (Email address):info@alrosa.ru",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,15/07/2022,15018 +AKTSIONERNOE OBSHCHESTVO GENBANK,,,,,,,,,,,,,,,,,,,Sevastopolskaya Street,13,Simferopol,Crimea,,,295011,Ukraine,"(UK Sanctions List Ref):RUS0234 Phone number: (1) +7 (495) 777 55 45 (2) 8 (800) 333 55 45 (3) +7 (365) 255 02 55 (4) +7 365 225 50 25 ext 5 (5) +7 (915) 210 21 56 (6) +7 (978) 712 77 01 (7) +7 (978) 708 79 80 (8) +7 (978) 740 75 94 (9) +7 (495) 701 19 42 (10) +7 (495) 701 15 41 (11) +7 (365) 254 86 20 (12) +7 (978) 755 00 51 (UK Statement of Reasons):Joint Stock Company (JSC) Genbank is a Russian financial institution that operates extensively in the occupied territory of Crimea. By providing banking and other financial services in the annexed territory of Crimea it contributes to undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Website):www.genbank.ru (Type of entity):Bank (Business Reg No):1137711000074 (Russia)",Entity,Primary name variation,,Russia,22/02/2022,22/02/2022,24/02/2022,14179 +AKTSIONERNOE OBSHCHESTVO GENBANK,,,,,,,,,,,,,,,,,,,Ozerkovskaya Naberezhnaya,12,Moscow,,,,115184,Russia,"(UK Sanctions List Ref):RUS0234 Phone number: (1) +7 (495) 777 55 45 (2) 8 (800) 333 55 45 (3) +7 (365) 255 02 55 (4) +7 365 225 50 25 ext 5 (5) +7 (915) 210 21 56 (6) +7 (978) 712 77 01 (7) +7 (978) 708 79 80 (8) +7 (978) 740 75 94 (9) +7 (495) 701 19 42 (10) +7 (495) 701 15 41 (11) +7 (365) 254 86 20 (12) +7 (978) 755 00 51 (UK Statement of Reasons):Joint Stock Company (JSC) Genbank is a Russian financial institution that operates extensively in the occupied territory of Crimea. By providing banking and other financial services in the annexed territory of Crimea it contributes to undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Website):www.genbank.ru (Type of entity):Bank (Business Reg No):1137711000074 (Russia)",Entity,Primary name variation,,Russia,22/02/2022,22/02/2022,24/02/2022,14179 +AKTSIONERNOE OBSHCHESTVO NAUCHNOISLEDOVATELSKIY INSTITUT MOLEKULYARNOY ELEKTRONIKI,,,,,,,,,,,,,,,,,,,1st Zapadny Proezd 12/1,,,,,Zelenograd,124460,Russia,"(UK Sanctions List Ref):RUS1405 Organization Established Date 03 Sep 1964. Government Gazette Number 92611467 (Russia) (UK Statement of Reasons):The Molecular Electronics Research Institute is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the electronics sector. (Website):https://www.niime.ru (Business Reg No):1117746568829 (Russia). Tax ID No. 7735579027 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15325 +AKTSIONERNOE OBSHCHESTVO NAUCHNOISLEDOVATELSKIY INSTITUT MOLEKULYARNOY ELEKTRONIKI,,,,,,,,,,,,,,,,,,,d. 6 str. 1,ul. Akademika Valieva,,,Zelenograd,Moscow,124460,Russia,"(UK Sanctions List Ref):RUS1405 Organization Established Date 03 Sep 1964. Government Gazette Number 92611467 (Russia) (UK Statement of Reasons):The Molecular Electronics Research Institute is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the electronics sector. (Website):https://www.niime.ru (Business Reg No):1117746568829 (Russia). Tax ID No. 7735579027 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15325 +AKWAN,Mochtar,,,,,,,,,04/05/1948,Tulungagung,Indonesia,Indonesia,,,(1) 3573010405480001 (2) 353010405480001,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Jalan Ir. H. Juanda 8/10,RT/RW 002/001,Jodipan,Blimbing,,Malang,65127,Indonesia,"(UK Sanctions List Ref):AQD0234 (UN Ref):QDi.304 Acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133). Associated with Abu Bakar Ba’asyir (QDi.217), Abdul Rahim Ba’aysir (QDi.293) and Jemaah Islamiyah (QDe.092). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,14/06/2022,12627 +AKWAN,Mochtar,,,,,,,,,04/05/1946,Tulungagung,Indonesia,Indonesia,,,(1) 3573010405480001 (2) 353010405480001,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Jalan Ir. H. Juanda 8/10,RT/RW 002/001,Jodipan,Blimbing,,Malang,65127,Indonesia,"(UK Sanctions List Ref):AQD0234 (UN Ref):QDi.304 Acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133). Associated with Abu Bakar Ba’asyir (QDi.217), Abdul Rahim Ba’aysir (QDi.293) and Jemaah Islamiyah (QDe.092). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,14/06/2022,12627 +AL ABBAS,Suleiman,,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,"(UK Sanctions List Ref):SYR0225 (UK Statement of Reasons):Former Oil and Mineral Resources Minister in power after May 2011. As a former Government Minister, shares responsibility for the violent repression of the Syrian people. (Gender):Male",Individual,Primary name,,Syria,24/06/2014,31/12/2020,31/12/2020,12987 +AL ABDALLAH,Subhi,Ahmad,,,,,,,,01/01/1951,,,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0221 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population,Individual,Primary name,,Syria,16/10/2012,31/12/2020,31/12/2020,12770 +AL ABDULLAH,Saleh,,,,,Brigadier General,,,,00/00/1967,Tartous,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0390 (UK Statement of Reasons):Saleh Al-Abdullah is and has been involved in repressing the civilian population in Syria as a member of the Syrian Armed Forces of the rank of Brigadier General and as leader of the Sixteenth Brigade militia. (Gender):Male,Individual,Primary name,,Syria,26/07/2022,26/07/2022,26/07/2022,15456 +AL ABSI,Abu,al Athir,Amr,,,,,,,00/00/1979,,Saudi Arabia,,,,,,,,,,,,Homs,,Syria,"(UK Sanctions List Ref):AQD0138 (UN Ref):QDi.361 Shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) and in charge of ISIL’s media arm. ISIL’s provincial leader for Homs, Syrian Arab Republic as of mid-2014. Dubbed as the ISIL’s “kidnapper-in-chief”. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896778. Address location Homs, Syria, location as at Sep. 2015",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13292 +AL ABSI,Amr,,,,,,,,,00/00/1979,,Saudi Arabia,,,,,,,,,,,,Homs,,Syria,"(UK Sanctions List Ref):AQD0138 (UN Ref):QDi.361 Shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) and in charge of ISIL’s media arm. ISIL’s provincial leader for Homs, Syrian Arab Republic as of mid-2014. Dubbed as the ISIL’s “kidnapper-in-chief”. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896778. Address location Homs, Syria, location as at Sep. 2015",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13292 +AL ADEL,Seif,,,,,,,,,11/04/1963,Monufia Governate,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0312 (UN Ref):QDi.001 Responsible for Usama bin Laden’s (deceased) security. Hair: Dark. Eyes: Dark. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681065 click here,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7424 +AL ADEL,Seif,,,,,,,,,11/04/1960,Monufia Governate,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0312 (UN Ref):QDi.001 Responsible for Usama bin Laden’s (deceased) security. Hair: Dark. Eyes: Dark. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681065 click here,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7424 +AL ADNANI,ABOU,MOHAMED,,,,,,,,00/00/1977,Binnish,Syria,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0113 (UN Ref):QDi.325 Official spokesman of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and emir of ISIL in Syria, closely associated with Abu Mohammed al-Jawlani (QDi.317) and Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809950",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13086 +AL AHMAD,Najm,Hamad,,,,,,,,,,,,,,,,Former Minister of Justice,,,,,,,,,"(UK Sanctions List Ref):SYR0186 (UK Statement of Reasons):Former Minister of Justice in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,16/10/2012,31/12/2020,31/12/2020,12782 +AL AHMAD,Nejm,Hamad,,,,,,,,,,,,,,,,Former Minister of Justice,,,,,,,,,"(UK Sanctions List Ref):SYR0186 (UK Statement of Reasons):Former Minister of Justice in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12782 +AL AHMED,Jumah,,,,,,,,,,,,,,,,,Commander Special Forces.,,,,,,,,,(UK Sanctions List Ref):SYR0117 (UK Statement of Reasons):Commander Special Forces. Responsible for the use of violence against protestors across Syria. (Gender):Male,Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,31/12/2020,12209 +AL AJMI,Hajjaj,Bin,Fahd,,,,,,,10/08/1987,,Kuwait,Kuwait,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0185 (UN Ref):QDi.328 A Kuwait-based facilitator in charge of the ‘committee of zakat’ and financier for Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809968,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13087 +AL AKHRAS,Asma,,,,,,,,,11/08/1975,London,United Kingdom,(1) Syria. (2) United Kingdom,707512830,Expires 22 Sept 2020,,,Wife of President Bashar Al Asad,,,,,,,,,"(UK Sanctions List Ref):SYR0022 Maiden name: Al Akhras (UK Statement of Reasons):Member of the Assad family and closely connected to key regime figures; wife of President Bashar Al-Assad. Given the close personal relationship and intrinsic financial relationship to the Syrian President, Bashar Al-Assad, she benefits from and is associated with the Syrian regime. (Gender):Female",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,01/02/2021,12634 +AL AKHRAS,Asma,Fawaz,,,,,,,,11/08/1975,London,United Kingdom,(1) Syria. (2) United Kingdom,707512830,Expires 22 Sept 2020,,,Wife of President Bashar Al Asad,,,,,,,,,"(UK Sanctions List Ref):SYR0022 Maiden name: Al Akhras (UK Statement of Reasons):Member of the Assad family and closely connected to key regime figures; wife of President Bashar Al-Assad. Given the close personal relationship and intrinsic financial relationship to the Syrian President, Bashar Al-Assad, she benefits from and is associated with the Syrian regime. (Gender):Female",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,01/02/2021,12634 +AL AKHTAR TRUST,,,,,,,,,,,,,,,,,,,Gulistan-e-Jauhar,Block 12,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0010 (UN Ref):QDe.121 Regional offices in Pakistan: Bahawalpur, Bawalnagar, Gilgit, Islamabad, Mirpur Khas, Tando-Jan-Muhammad. Akhtarabad Medical Camp is in Spin Boldak, Afghanistan. Registered by members of Jaish-i-Mohammed (QDe.019). Associated with Harakat ul-Mujahidin/ HUM (QDe.008), Lashkar I Jhanghvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235573",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,19/08/2005,17/08/2005,31/12/2020,8703 +AL AKHTAR TRUST,,,,,,,,,,,,,,,,,,,ST-1/A,Gulsahn-e-Iqbal,Block 2,,,Karachi,25300,Pakistan,"(UK Sanctions List Ref):AQD0010 (UN Ref):QDe.121 Regional offices in Pakistan: Bahawalpur, Bawalnagar, Gilgit, Islamabad, Mirpur Khas, Tando-Jan-Muhammad. Akhtarabad Medical Camp is in Spin Boldak, Afghanistan. Registered by members of Jaish-i-Mohammed (QDe.019). Associated with Harakat ul-Mujahidin/ HUM (QDe.008), Lashkar I Jhanghvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235573",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,19/08/2005,17/08/2005,31/12/2020,8703 +AL ALMANI,Abu,Luqmaan,,,,,,,,18/02/1989,Bonn,Germany,(1) Germany (2) Algeria,,,5802098444,"Germany national identity card number, issued in Bonn, Germany on 15 Apr. 2010, expired on 14 Apr. 2016",,,,,,,,,,"(UK Sanctions List Ref):AQD0169 (UN Ref):QDi.403 German foreign terrorist fighter for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: eye colour: brown; hair colour: black; height: 178cm; weight: 80kg. European arrest warrant issued by the investigating judge of the German Federal Supreme Court on 13 Aug. 2014. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6104049 (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,19/06/2017,16/06/2017,31/12/2020,13490 +AL AMEEN TRUST,,,,,,,,,,,,,,,,,,,"302b-40, Good Earth Court",Opposite Pia Planitarium,Block 13a,Gulshan-I-Iqbal,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMEEN TRUST,,,,,,,,,,,,,,,,,,,605 Landmark Plaza,11 Chundrigar Road,Opposite Jang Building,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMEEN TRUST,,,,,,,,,,,,,,,,,,,617 Clifton Center,Block 5,6th Floor,Clifton,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMEEN TRUST,,,,,,,,,,,,,,,,,,,Jamia Maajid,Sulalman Park,Melgium Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMEEN TRUST,,,,,,,,,,,,,,,,,,,Jamia Masjid,Sulaiman Park,Begum Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMEEN TRUST,,,,,,,,,,,,,,,,,,,Kitab Ghar,Darul Ifta Wal Irshad,Nazimabad No 4,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMEEN TRUST,,,,,,,,,,,,,,,,,,,Kitas Ghar,Nazimabad 4,Dahgel-Iftah,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMEEN TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Opposite Khyber Bank,Abbottabad Road,,,Mansehra,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMEEN TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Rm No 3,Moti Plaza,Near Liaquat Bagh,Muree Road,Rawalpindi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMEEN TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Top Floor,Dr. Dawa Khan Dental Clinic Surgeon,Main Baxae,Mingora,Swat,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMEEN TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin ZR Brothers,Katcherry Road,Chowk Yadgaar,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN TRUST,,,,,,,,,,,,,,,,,,,"302b-40, Good Earth Court",Opposite Pia Planitarium,Block 13a,Gulshan-I-Iqbal,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN TRUST,,,,,,,,,,,,,,,,,,,605 Landmark Plaza,11 Chundrigar Road,Opposite Jang Building,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN TRUST,,,,,,,,,,,,,,,,,,,617 Clifton Center,Block 5,6th Floor,Clifton,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN TRUST,,,,,,,,,,,,,,,,,,,Jamia Maajid,Sulalman Park,Melgium Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN TRUST,,,,,,,,,,,,,,,,,,,Jamia Masjid,Sulaiman Park,Begum Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN TRUST,,,,,,,,,,,,,,,,,,,Kitab Ghar,Darul Ifta Wal Irshad,Nazimabad No 4,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN TRUST,,,,,,,,,,,,,,,,,,,Kitas Ghar,Nazimabad 4,Dahgel-Iftah,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Opposite Khyber Bank,Abbottabad Road,,,Mansehra,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Rm No 3,Moti Plaza,Near Liaquat Bagh,Muree Road,Rawalpindi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Top Floor,Dr. Dawa Khan Dental Clinic Surgeon,Main Baxae,Mingora,Swat,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin ZR Brothers,Katcherry Road,Chowk Yadgaar,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN WELFARE TRUST,,,,,,,,,,,,,,,,,,,"302b-40, Good Earth Court",Opposite Pia Planitarium,Block 13a,Gulshan-I-Iqbal,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN WELFARE TRUST,,,,,,,,,,,,,,,,,,,605 Landmark Plaza,11 Chundrigar Road,Opposite Jang Building,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN WELFARE TRUST,,,,,,,,,,,,,,,,,,,617 Clifton Center,Block 5,6th Floor,Clifton,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN WELFARE TRUST,,,,,,,,,,,,,,,,,,,Jamia Maajid,Sulalman Park,Melgium Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN WELFARE TRUST,,,,,,,,,,,,,,,,,,,Jamia Masjid,Sulaiman Park,Begum Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN WELFARE TRUST,,,,,,,,,,,,,,,,,,,Kitab Ghar,Darul Ifta Wal Irshad,Nazimabad No 4,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN WELFARE TRUST,,,,,,,,,,,,,,,,,,,Kitas Ghar,Nazimabad 4,Dahgel-Iftah,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN WELFARE TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Opposite Khyber Bank,Abbottabad Road,,,Mansehra,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN WELFARE TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Rm No 3,Moti Plaza,Near Liaquat Bagh,Muree Road,Rawalpindi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN WELFARE TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Top Floor,Dr. Dawa Khan Dental Clinic Surgeon,Main Baxae,Mingora,Swat,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMIN WELFARE TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin ZR Brothers,Katcherry Road,Chowk Yadgaar,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL AMMU,,,,,,,,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,,,,,,Dbabsha-Sabratah,,,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +AL AMMU,,,,,,,,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,,,,,,Zawiya,,Libya,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +AL AMMU,,,,,,,,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,Garabulli,,,,,Garabulli,,Libya,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +AL ASAD,Asma,,,,,,,,,11/08/1975,London,United Kingdom,(1) Syria. (2) United Kingdom,707512830,Expires 22 Sept 2020,,,Wife of President Bashar Al Asad,,,,,,,,,"(UK Sanctions List Ref):SYR0022 Maiden name: Al Akhras (UK Statement of Reasons):Member of the Assad family and closely connected to key regime figures; wife of President Bashar Al-Assad. Given the close personal relationship and intrinsic financial relationship to the Syrian President, Bashar Al-Assad, she benefits from and is associated with the Syrian regime. (Gender):Female",Individual,Primary name,,Syria,26/03/2012,31/12/2020,01/02/2021,12634 +AL ASAD,Asma,Fawaz,,,,,,,,11/08/1975,London,United Kingdom,(1) Syria. (2) United Kingdom,707512830,Expires 22 Sept 2020,,,Wife of President Bashar Al Asad,,,,,,,,,"(UK Sanctions List Ref):SYR0022 Maiden name: Al Akhras (UK Statement of Reasons):Member of the Assad family and closely connected to key regime figures; wife of President Bashar Al-Assad. Given the close personal relationship and intrinsic financial relationship to the Syrian President, Bashar Al-Assad, she benefits from and is associated with the Syrian regime. (Gender):Female",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,01/02/2021,12634 +AL ASAD,Bashar,,,,,,بشار حافظ الأسد,,,11/09/1965,Damascus,Syria,Syria,D1903,Diplomatic,,,President of the Arab Republic of Syria,Presidential Palace,,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0026 (UK Statement of Reasons):President of the Republic; person authorising and supervising the crackdown on demonstrators. (Gender):Male,Individual,Primary name,,Syria,24/05/2011,31/12/2020,01/02/2021,11928 +AL ASAD,Bassar,Hafiz,,,,,Baššār Ḥāfiẓ Al Asad,,,11/09/1965,Damascus,Syria,Syria,D1903,Diplomatic,,,President of the Arab Republic of Syria,Presidential Palace,,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0026 (UK Statement of Reasons):President of the Republic; person authorising and supervising the crackdown on demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11928 +AL ASAD,Bouchra,,,,,,,,,24/10/1960,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0035 Sister to Bashar Al Assad (UK Statement of Reasons):Member of the Assad family; sister of Bashar Al-Assad. Given the close personal relationship and intrinsic financial relationship to the Syrian President Bashar Al-Assad, she benefits from and is associated with the Syrian regime. (Gender):Female",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,31/12/2020,12550 +AL ASAD,Bushra,,,,,,,,,24/10/1960,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0035 Sister to Bashar Al Assad (UK Statement of Reasons):Member of the Assad family; sister of Bashar Al-Assad. Given the close personal relationship and intrinsic financial relationship to the Syrian President Bashar Al-Assad, she benefits from and is associated with the Syrian regime. (Gender):Female",Individual,Primary name,,Syria,26/03/2012,31/12/2020,31/12/2020,12550 +AL ASAD,Monzer,Jamil,,,,,,,,01/03/1961,,,Syria,(1) 86449 (2) 842781,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0183 Cousin of President Bashar al Asad (UK Statement of Reasons):Involved in violence against the civilian population as part of the Shabiha militia. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11905 +AL ASAD,Mundhir,Jamil,,,,,,,,01/03/1961,,,Syria,(1) 86449 (2) 842781,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0183 Cousin of President Bashar al Asad (UK Statement of Reasons):Involved in violence against the civilian population as part of the Shabiha militia. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11905 +AL ASAD,Munzir,Jamil,,,,,منذر الأسد,,,01/03/1961,,,Syria,(1) 86449 (2) 842781,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0183 Cousin of President Bashar al Asad (UK Statement of Reasons):Involved in violence against the civilian population as part of the Shabiha militia. (Gender):Male,Individual,Primary name,,Syria,10/05/2011,31/12/2020,31/12/2020,11905 +AL ASHI,Aammar,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +AL ASHI,Amer,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +AL ASHI,Amer,Ibrahim,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +AL ASHI,Amis,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +AL ASHI,Ammar,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +AL ASIRI,Ibrahim,Hassan,,,,,,,,19/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +AL ASIRI,Ibrahim,Hassan,,,,,,,,18/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +AL ASIRI,Ahmad,Hassan,Mohammed,,,,,,,12/02/1952,"Mahayel, Asir Province (unconfirmed)",Saudi Arabia,Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0043 (UK Statement of Reasons):Ahmad Hassan Mohammed Al Asiri held the position of Deputy Head of the Saudi Intelligence services (General Intelligence Presidency, GIP) in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi. He was a senior official involved in commissioning the 15 man team sent to Turkey to kill Jamal Khashoggi. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13894 +AL ASSAD,Bashar,,,,,,,,,11/09/1965,Damascus,Syria,Syria,D1903,Diplomatic,,,President of the Arab Republic of Syria,Presidential Palace,,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0026 (UK Statement of Reasons):President of the Republic; person authorising and supervising the crackdown on demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11928 +AL ASSAD,Bassar,Hafiz,,,,,Baššār Ḥāfiẓ Al Assad,,,11/09/1965,Damascus,Syria,Syria,D1903,Diplomatic,,,President of the Arab Republic of Syria,Presidential Palace,,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0026 (UK Statement of Reasons):President of the Republic; person authorising and supervising the crackdown on demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11928 +AL ASSAD,Bouchra,,,,,,,,,24/10/1960,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0035 Sister to Bashar Al Assad (UK Statement of Reasons):Member of the Assad family; sister of Bashar Al-Assad. Given the close personal relationship and intrinsic financial relationship to the Syrian President Bashar Al-Assad, she benefits from and is associated with the Syrian regime. (Gender):Female",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,31/12/2020,12550 +AL ASSAD,Bushra,,,,,,,,,24/10/1960,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0035 Sister to Bashar Al Assad (UK Statement of Reasons):Member of the Assad family; sister of Bashar Al-Assad. Given the close personal relationship and intrinsic financial relationship to the Syrian President Bashar Al-Assad, she benefits from and is associated with the Syrian regime. (Gender):Female",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,31/12/2020,12550 +AL ASSAF,Safwan,,,,,,,,,00/00/1959,,,,,,,,Former Minister of Housing and Social Development,,,,,,,,,(UK Sanctions List Ref):SYR0209 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name,,Syria,16/10/2012,31/12/2020,31/12/2020,12775 +AL ATTO,Fawaz,,,,,,,,,,,,,,,,,A lab technician at the Syrian Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0043 Not currently designated by the US Treasury Linked with SSRC (UK Statement of Reasons):Fawwaz El-Atou is a lab technician at the Syrian Scientific Studies and Research Centre, involved in chemical weapons proliferation and delivery. Fawwaz El-Atou has been involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is associated with the Syrian Scientific Studies and Research Centre, a listed entity. Therefore, he has been involved in carrying on prohibited activities related to chemical weapons in Syria. He is or has been involved in repressing the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,13/05/2022,13506 +AL ATTO,Fawwaz,,,,,,,,,,,,,,,,,A lab technician at the Syrian Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0043 Not currently designated by the US Treasury Linked with SSRC (UK Statement of Reasons):Fawwaz El-Atou is a lab technician at the Syrian Scientific Studies and Research Centre, involved in chemical weapons proliferation and delivery. Fawwaz El-Atou has been involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is associated with the Syrian Scientific Studies and Research Centre, a listed entity. Therefore, he has been involved in carrying on prohibited activities related to chemical weapons in Syria. He is or has been involved in repressing the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,13/05/2022,13506 +AL BALAWI,Fahad,Shabib,A.,,,,,,,24/01/1985,Arar,Saudi Arabia,Saudi Arabia,N163990,,,,Member of the Royal Guard,,,,,,,,,"(UK Sanctions List Ref):GHR0026 (UK Statement of Reasons):Fahad Shabib A. Albalawi was a Royal Guard in Saudi Arabia. He was directly involved in carrying out the unlawful killing of Jamal Khashoggi at the Saudi Consulate in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13855 +AL BANAT,Abu,,,,,,Абу аль Банат,,,24/11/1974,"Khadzhalmahi Village, Levashinskiy District, Republic of Dagestan",Russia,Russia,515458008,Russian foreign travel passport number,8200203535,Russian Federation national passport,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0218 (UN Ref):QDi.363 As at Aug. 2015, leader of Jamaat Abu Banat terrorist group, which forms part of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and operates on the outskirts of Syrian Arab Republic cities Aleppo and Idlib, extorting funds from and carrying out kidnappings and public executions of local Syrians. Physical description: eye colour brown, hair colour: dark, build: strong, straight nose, height: 180-185 cm, speaks Russian, English, Arabic. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899816. Address country Turkey (possible location), Syrian Arab Republic (previous confirmed location since September 2012).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,11/02/2022,13298 +AL BANAT,Abu,,,,,,Абу аль Банат,,,24/11/1974,"Khadzhalmahi Village, Levashinskiy District, Republic of Dagestan",Russia,Russia,515458008,Russian foreign travel passport number,8200203535,Russian Federation national passport,,,,,,,,,Turkey,"(UK Sanctions List Ref):AQD0218 (UN Ref):QDi.363 As at Aug. 2015, leader of Jamaat Abu Banat terrorist group, which forms part of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and operates on the outskirts of Syrian Arab Republic cities Aleppo and Idlib, extorting funds from and carrying out kidnappings and public executions of local Syrians. Physical description: eye colour brown, hair colour: dark, build: strong, straight nose, height: 180-185 cm, speaks Russian, English, Arabic. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899816. Address country Turkey (possible location), Syrian Arab Republic (previous confirmed location since September 2012).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,11/02/2022,13298 +AL BINCHI,Tah,,,,,,,,,00/00/1977,Binnish,Syria,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0113 (UN Ref):QDi.325 Official spokesman of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and emir of ISIL in Syria, closely associated with Abu Mohammed al-Jawlani (QDi.317) and Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809950",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13086 +AL BIR AL DAWALIA,,,,,,,,,,,,,,,,,,,,,,,,,,Bangladesh,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +AL BIR AL DAWALIA,,,,,,,,,,,,,,,,,,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +AL BIR AL DAWALIA,,,,,,,,,,,,,,,,,,,,,,,,Gaza Strip,,,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +AL BIR AL DAWALIA,,,,,,,,,,,,,,,,,,,20-24 Branford Place,Suite 705,,,Newark,New Jersey,67102,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +AL BIR AL DAWALIA,,,,,,,,,,,,,,,,,,,8820 Mobile Avenue,IA,Oak Lawn,,,Illinois,60453,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +AL BIR AL DAWALIA,,,,,,,,,,,,,,,,,,,9838 S. Roberts Road,Suite 1W,,,Palos Hills,Illinois,60465,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +AL BIR AL DAWALIA,,,,,,,,,,,,,,,,,,,PO Box 1937,,,,,Khartoum,,Sudan,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +AL BIR AL DAWALIA,,,,,,,,,,,,,,,,,,,PO Box 548,,,,Worth,Illinois,60482,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +AL BOSTANI,Meshal,Saad,,,,,,,,27/03/1987,,,Saudi Arabia,R339037,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0036 (UK Statement of Reasons):Meshal Saad Al Bostani was First Lieutenant in the Saudi Air Force. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi General Consul’s residence following the killing. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13885 +AL BRITANI,Abu-Sa'id,,,,,,,,,21/03/1987,,United Kingdom,United Kingdom,205939411,(British). Issued 21.07.2004. Expired 21.04.2015.,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0281 (UN Ref):QDi.359 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Physical description: eye colour: brown; hair colour: brown/black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897337. Address country Syria, as at Jan. 2014.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13287 +AL BRITANI,Abu-Sa'id,,,,,,,,,21/03/1987,,United Kingdom,United Kingdom,205939411,(British). Issued 21.07.2004. Expired 21.04.2015.,,,,,,,,,,,United Kingdom,"(UK Sanctions List Ref):AQD0281 (UN Ref):QDi.359 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Physical description: eye colour: brown; hair colour: brown/black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897337. Address country Syria, as at Jan. 2014.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13287 +AL CHAR',Farouk,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +AL CHAR',Farouq,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +AL CHAR',Faruq,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +AL CHAREKH,ABDUL MOHSEN,ABDALLAH,IBRAHIM,,,,,,,13/07/1985,Saqra,Saudi Arabia,Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0105 (UN Ref):QDi.324 A long time facilitator and financier for Al-Qaida (QDe.004), appointed as a regional leader of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809944",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13085 +AL CHEBEL,Luna,,,,,,,,,01/09/1975,Suweida,Syria,Syria,,,,,Media Adviser to President Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0377 (UK Statement of Reasons):Adviser to President Assad and a prominent member of his inner circle. As Media Adviser to the President she supports the Syrian regime, which relies on disinformation and a lack of media freedom to repress the civilian population. She is also associated with the Syrian regime through her role as an adviser. (Gender):Female",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,14/02/2022,14070 +AL CHEBIL,Luna,,,,,,,,,01/09/1975,Suweida,Syria,Syria,,,,,Media Adviser to President Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0377 (UK Statement of Reasons):Adviser to President Assad and a prominent member of his inner circle. As Media Adviser to the President she supports the Syrian regime, which relies on disinformation and a lack of media freedom to repress the civilian population. She is also associated with the Syrian regime through her role as an adviser. (Gender):Female",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,14/02/2022,14070 +AL DABBASHI,,,,,,,,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,,,,,,Dbabsha-Sabratah,,,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +AL DABBASHI,,,,,,,,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,,,,,,Zawiya,,Libya,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +AL DABBASHI,,,,,,,,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,Garabulli,,,,,Garabulli,,Libya,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +AL DARI,Muthana,Harith,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL DARI,Muthana,Harith,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Amman,,Jordan,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL DARI,Muthana,Harith,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Khan Dari,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL DARI,Muthana,Harith,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,Asas Village,Abu Ghurayb,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL DARI,Muthanna,,,,,Doctor,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL DARI,Muthanna,,,,,Doctor,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Amman,,Jordan,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL DARI,Muthanna,,,,,Doctor,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Khan Dari,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL DARI,Muthanna,,,,,Doctor,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,Asas Village,Abu Ghurayb,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL DJAZAIRI,Abou,Bakr,,,,,,,,13/02/1970,"Rouiba, Algiers",Algeria,(1) Algeria. (2) Palestine,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0158 (UN Ref):QDi.058 Finance chief of the Afghan Support Committee (ASC) (QDe.069). Al-Qaida (QDe.004) facilitator and communication expert. Believed to be in Algeria as at Apr. 2010. Son of Mohamed and Fatma Aribi. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6104674 (Gender):Male,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6998 +AL DJOUNDOUBI,Abou,Ismail,,,,,,,,23/11/1965,Ghardimaou,Tunisia,Tunisia,E590976,"issue date: 19/06/1987, expiry date: 18/06/1992",,,,Rue Leon Theodore No 107/1,1090 Jette,,,,Brussels,,Belgium,"(UK Sanctions List Ref):AQD0321 (UN Ref):QDi.074 Belgian nationality withdrawn on 26 Jan. 2009. In detention in Nivelles, Belgium, as of Oct. 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2002,03/09/2002,31/12/2020,7255 +AL DOCTOR,Abdul Qader,Abdul Aziz,Abdul Moez,,,,,,,19/06/1951,Giza,Egypt,Egypt,(1) 1084010 (2) 19820215,(1) Egyptian (2) - .,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0126 (UN Ref):QDi.006 Leader of Al-Qaida (QDe.004). Former operational and military leader of Egyptian Islamic Jihad (QDe.003), was a close associate of Usama Bin Laden (deceased). Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487197",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7016 +AL DOUNIA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0275 (UK Statement of Reasons):Previously known as Addounia TV. Sama TV is a telecommunications entity which spreads disinformation and incites violence against the civilian population in Syria. (Phone number):(1) +963-11-5667271 (2) +963-11-5667274 (Website):http://www.addounia.tv (Type of entity):Media. State-owned,Entity,AKA,,Syria,26/09/2011,31/12/2020,13/05/2022,12151 +AL FADHLI,Muhsin,Fadhil,'Ayyid,,,,,,,24/04/1981,,Kuwait,Kuwait,(1) 106261543 (2) 1420529,(1) Kuwaiti (2) Kuwaiti. Issued in Kuwait. Expired on 31 March 2006.,,,,Block 4,Street 13,House No 179,,Al-Riqqa area,Kuwait City,,Kuwait,(UK Sanctions List Ref):AQD0265 (UN Ref):QDi.184 Wanted by the Kuwaiti Security Authorities. Wanted by the Saudi security forces. Fugitive as of Jul. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4484905,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/02/2005,17/02/2005,31/12/2020,8523 +AL FAHDL,Abd al-Aziz,Udai,Samin,,,,,,,27/08/1981,,Kuwait,,,,281082701081,,,,,,,,,,,"(UK Sanctions List Ref):AQD0088 (UN Ref):QDi.379 Kuwait-based facilitator who provides financial services to, or in support of, Al-Nusrah Front for the People of the Levant (QDe.137) and Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896797 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,31/12/2020,13277 +AL FARANSI,Abou,Abdallah,,,,,,,,17/03/1992,"Saint Aubin les Elbeuf, Normandy",France,France,,,101127200129,"French national identity card. Issued by the Sous-Prefecture of Bernay, France. Expires 04/11/2020.",,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0227 (UN Ref):QDi.378 French foreign terrorist fighter for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). French arrest warrant issued on 20 Jan. 2015 by a magistrate of the anti-terrorism division of the Prosecutor’s Office in Paris for murder in connection with a terrorist entity and participation in a terrorist criminal association. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897332. Syria, as at Sep. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,12/01/2022,13291 +AL FATIH,,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1975,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL FATIH,,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1976,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL FATIH,,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1977,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL FATIH,,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1978,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL FATIH,,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1979,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL FATIH,,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1980,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL FAWAZ,Khalid,Abdulrahman,H.,,,,,,,24/08/1962,,Kuwait,Saudi Arabia,456682,"Saudi Arabia, issue date: 06/11/1990, expiry date: 13/09/1995",,,,,,,,,,,United States,(UK Sanctions List Ref):AQD0214 (UN Ref):QDi.059 Extradited from the United Kingdom to the United States of America on 5 Oct. 2012. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,24/04/2002,31/12/2020,6962 +AL FAWWAZ,Khaled,,,,,,,,,24/08/1962,,Kuwait,Saudi Arabia,456682,"Saudi Arabia, issue date: 06/11/1990, expiry date: 13/09/1995",,,,,,,,,,,United States,(UK Sanctions List Ref):AQD0214 (UN Ref):QDi.059 Extradited from the United Kingdom to the United States of America on 5 Oct. 2012. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,24/04/2002,31/12/2020,6962 +AL FAWWAZ,Khalik,,,,,,,,,24/08/1962,,Kuwait,Saudi Arabia,456682,"Saudi Arabia, issue date: 06/11/1990, expiry date: 13/09/1995",,,,,,,,,,,United States,(UK Sanctions List Ref):AQD0214 (UN Ref):QDi.059 Extradited from the United Kingdom to the United States of America on 5 Oct. 2012. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,24/04/2002,31/12/2020,6962 +AL FILIPINI,Abu,Abdul,Rahman,,,,,,,03/03/1990,"Zamboanga City, Zamboanga del Sur",Philippines,Philippines,(1) XX3966391 (2) EC3524065,(1) Philippines. Issued on 25 February 2015 by the Department of Foreign Affairs of Philippines. Expiration date 24 February 2020 (2) Philippines,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0263 (UN Ref):QDi.418 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: height: 156cm; weight: 60 kg (as at Sep. 2016); eye colour: black; hair colour: black; build: medium; high cheekbones. Speaks Tagalog, English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244385. Philippines (previous address)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13710 +AL FILIPINI,Abu,Abdul,Rahman,,,,,,,03/03/1990,"Zamboanga City, Zamboanga del Sur",Philippines,Philippines,(1) XX3966391 (2) EC3524065,(1) Philippines. Issued on 25 February 2015 by the Department of Foreign Affairs of Philippines. Expiration date 24 February 2020 (2) Philippines,,,,96 IlangIlang,,Sarmiento Subdivision,Panabo,Davao City,Eastern Mindanao,,Philippines,"(UK Sanctions List Ref):AQD0263 (UN Ref):QDi.418 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: height: 156cm; weight: 60 kg (as at Sep. 2016); eye colour: black; hair colour: black; build: medium; high cheekbones. Speaks Tagalog, English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244385. Philippines (previous address)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13710 +AL FILIPINI,Abu,Abdul,Rahman,,,,,,,03/03/1990,"Zamboanga City, Zamboanga del Sur",Philippines,Philippines,(1) XX3966391 (2) EC3524065,(1) Philippines. Issued on 25 February 2015 by the Department of Foreign Affairs of Philippines. Expiration date 24 February 2020 (2) Philippines,,,,Brgy Recodo,,,,Zamboanga City,Western Mindanao,,Philippines,"(UK Sanctions List Ref):AQD0263 (UN Ref):QDi.418 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: height: 156cm; weight: 60 kg (as at Sep. 2016); eye colour: black; hair colour: black; build: medium; high cheekbones. Speaks Tagalog, English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244385. Philippines (previous address)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13710 +AL FURAT PETROLEUM COMPANY,,,,,,,,,,,,,,,,,,,"P.O. Box 7660, Dummar",New Sham,Western Dummer 1st. Island,Property 2299,AFPC Building,Damascus,,Syria,(UK Sanctions List Ref):SYR0281 Oil and Gas Industry (UK Statement of Reasons):Joint venture 50 % owned by GPC. Provides financial support to the regime. (Phone number):+963-11- 6183333. +9631131913333 (Email address):afpc@afpc.net.sy (Type of entity):State-owned (Parent company):General Petroleum Company. GPC,Entity,Primary name,,Syria,02/12/2011,31/12/2020,14/02/2022,12434 +AL FURQAN,,,,,,,,,,,,,,,,,,,30a Put Mladih Muslimana (ex Pavla Lukaca Street),,,,,Sarajevo,71 000,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +AL FURQAN,,,,,,,,,,,,,,,,,,,42 Muhameda Hadzijahica,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +AL FURQAN,,,,,,,,,,,,,,,,,,,70 and 53 Strosmajerova Street,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +AL FURQAN,,,,,,,,,,,,,,,,,,,72 ul. Strossmajerova,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +AL FURQAN,,,,,,,,,,,,,,,,,,,Zlatnih Ljiljana Street,,,,,Zavidovici,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +AL GHABRA,Mohammed,,,,,,,,,01/06/1980,Damascus,Syria,United Kingdom,094629366,British number,,,,,,,,,East London,,United Kingdom,(UK Sanctions List Ref):AQD0245 (UN Ref):QDi.228 Father’s name is Mohamed Ayman Ghabra. Mother’s name is Dalal. Review pursuant to Security Council resolution 1822 (2008) was concluded on 5 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1475981,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/12/2006,12/12/2006,31/12/2020,8983 +AL GHWEIL,Khalifa,,,,,,,,,01/01/1956,Misurata,Libya,Libya,(1) A005465 (2) J690P666,(1) Issued 12/04/2015. Expired 11/04/2017. (2) Libya. Issued 12 June 2016. Expires 11 June 2024.,,,,Qasr Ahmed Street,Misurata,,,,,,Libya,"(UK Sanctions List Ref):LIB0032 (UK Statement of Reasons):In his capacity as the so-called 'Prime Minister and Defence Minister' off the internationally unrecognised General National Congress ('GNC')(also known as the 'National Salvation Government'), and therefore responsible for their activities. Ghwell has engaged in activity threatening the peace, security and stability of Libya and undermining its political transition. (Gender):Male",Individual,AKA,,Libya,01/04/2016,31/12/2020,16/06/2022,13347 +AL HABBO,Mohammad,Ali,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL HABBO,Mohammad,Ali,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL HABBO,Mohammad,Ali,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL HABBO,Mohammad,Ali,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL HABBO,Mohammad,Ali,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL HABBO,Mohammad,Ali,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL HAKIM,Abu,Ali,,,,,,,,00/00/1985,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +AL HAKIM,Abu,Ali,,,,,,,,00/00/1984,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +AL HAKIM,Abu,Ali,,,,,,,,00/00/1986,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +AL HAKIM,ABDULLAH,YAHYA,,,,,عبد الله يحيى الحاكم,,,00/00/1985,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,Primary name,,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +AL HAKIM,ABDULLAH,YAHYA,,,,,عبد الله يحيى الحاكم,,,00/00/1984,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,Primary name,,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +AL HAKIM,ABDULLAH,YAHYA,,,,,عبد الله يحيى الحاكم,,,00/00/1986,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,Primary name,,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +AL HARAKAT AL ISLAMIYYA,,,,,,,,,,,,,,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0003 (UN Ref):QDe.001 Associated with Jemaah Islamiyah (JI) (QDe.092). Current leader is Radulan Sahiron (QDi.208). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278422,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6935 +AL HARAMAIN AL MASJED AL AQSA,,,,,,,,,,,,,,,,,,,,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,AKA,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL HARAMAIN AL MASJED AL AQSA,,,,,,,,,,,,,,,,,,,14 Bihacka Street,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,AKA,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL HARAMAIN AL MASJED AL AQSA,,,,,,,,,,,,,,,,,,,2A Hasiba Brankovica,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,AKA,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL HARAMAIN AL MASJED AL AQSA,,,,,,,,,,,,,,,,,,,64 Potur Mahala Street,,,,,Travnik,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,AKA,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL HARAMAYN AL MASJID AL AQSA,,,,,,,,,,,,,,,,,,,,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,AKA,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL HARAMAYN AL MASJID AL AQSA,,,,,,,,,,,,,,,,,,,14 Bihacka Street,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,AKA,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL HARAMAYN AL MASJID AL AQSA,,,,,,,,,,,,,,,,,,,2A Hasiba Brankovica,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,AKA,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL HARAMAYN AL MASJID AL AQSA,,,,,,,,,,,,,,,,,,,64 Potur Mahala Street,,,,,Travnik,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,AKA,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL HARAMMEIN AL MASJED AL-AQSA CHARITY FOUNDATION,,,,,,,,,,,,,,,,,,,,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,AKA,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL HARAMMEIN AL MASJED AL-AQSA CHARITY FOUNDATION,,,,,,,,,,,,,,,,,,,14 Bihacka Street,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,AKA,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL HARAMMEIN AL MASJED AL-AQSA CHARITY FOUNDATION,,,,,,,,,,,,,,,,,,,2A Hasiba Brankovica,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,AKA,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL HARAMMEIN AL MASJED AL-AQSA CHARITY FOUNDATION,,,,,,,,,,,,,,,,,,,64 Potur Mahala Street,,,,,Travnik,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,AKA,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL HASAN,Bassam,,,,,,,,,00/00/1961,"Sheen, Homs",Syria,Syria,,,,,(1) Former Commander in the Republican Guards and regime representative in the SSRC (2) Advisor to President Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0027 Links Syrian Regime with the Scientific Studies and Research Centre (an entity listed by the EU 1 December 2011). Advisor to Syrian President Bashar al Asad (listed by the EU 23 May 2011). Works with IRGC Major General Qasem Soleimani (listed by the EU 23 June 2011). (UK Statement of Reasons):Former Major General in the Syrian Arab Army and Commander of the National Defense Forces, advisor to the President on strategic affairs; involved in violence against the civilian population. (Gender):Male",Individual,AKA,,Syria,24/05/2011,31/12/2020,13/05/2022,11935 +AL HASAWANI,George,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +AL HASAWANI,Georges,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +AL HASAWANI,Jurj,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +AL HASSAN,Bassam,,,,,,بسام الحسن,,,00/00/1961,"Sheen, Homs",Syria,Syria,,,,,(1) Former Commander in the Republican Guards and regime representative in the SSRC (2) Advisor to President Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0027 Links Syrian Regime with the Scientific Studies and Research Centre (an entity listed by the EU 1 December 2011). Advisor to Syrian President Bashar al Asad (listed by the EU 23 May 2011). Works with IRGC Major General Qasem Soleimani (listed by the EU 23 June 2011). (UK Statement of Reasons):Former Major General in the Syrian Arab Army and Commander of the National Defense Forces, advisor to the President on strategic affairs; involved in violence against the civilian population. (Gender):Male",Individual,Primary name,,Syria,24/05/2011,31/12/2020,13/05/2022,11935 +AL HAWSAWI,Abdulaziz,Mohammed,,,,,,,,20/07/1987,Riyadh,Saudi Arabia,Saudi Arabia,P051811,,1044087474,,,,,,,,,,,"(UK Sanctions List Ref):GHR0030 (UK Statement of Reasons):Abdulaziz Mohammed Al Hawsawi was a security official for the Crown Prince of Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13866 +AL HBLIAN,Barahim,Suliman,H.,,,,,,,17/12/1984,Buraidah,Saudi Arabia,Saudi Arabia,F800691,,1047503170,,,,,,,,,,,(UK Sanctions List Ref):AQD0202 (UN Ref):QDi.332 Explosives expert and operative for the Abdallah Azzam Brigades (AAB) (QDe.144). Wanted by the Saudi Arabian Government for terrorism. Physical description: eye colour: dark; hair colour: dark; complexion: olive. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2014,23/09/2014,31/12/2020,13129 +AL HUTHI,Abd-al-Khaliq,Badr-al-Din,,,,,,,,00/00/1984,,,Yemen,,,,,Huthi military commander,,,,,,,,,(UK Sanctions List Ref):YEM0001 (UN Ref):YEi.001 INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13191 +AL INDUNISI,Abu,Walid,,,,,,,,11/10/1978,,Indonesia,Indonesia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0248 (UN Ref):QDi.416 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: hair colour: black; build: slight. Speaks Indonesian, Arabic and Mindanao dialect. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244333. Syria, location since 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13708 +AL JADAAN,Manal,,,,,,,,,02/02/1970,Damascus,,Syria,0000000914,Syria,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0135 Spouse of Maher Al-Assad (UK Statement of Reasons):Spouse of Maher Al-Assad, and as such benefiting from and closely associated with the regime. (Gender):Female",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,31/12/2020,12635 +AL JADAWI,Saqar,,,,,,,,,00/00/1965,(1) Al-Mukalla (2) AI-Mukala,(1) Yemen (2) Yemen,Yemen,00385937,Yemen,,,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0306 (UN Ref):QDi.003 Driver and private bodyguard to Usama bin Laden (deceased) from 1996 until 2001. Transferred from United States custody to Yemen in Nov. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Yemen (previous address),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,11/02/2022,6997 +AL JADAWI,Saqar,,,,,,,,,00/00/1965,(1) Al-Mukalla (2) AI-Mukala,(1) Yemen (2) Yemen,Yemen,00385937,Yemen,,,,Shari Tunis,,,,,Sana'a,,Yemen,(UK Sanctions List Ref):AQD0306 (UN Ref):QDi.003 Driver and private bodyguard to Usama bin Laden (deceased) from 1996 until 2001. Transferred from United States custody to Yemen in Nov. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Yemen (previous address),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,11/02/2022,6997 +AL JADHRAN,Ibrahim,Saeed,Salem,Awad,Aissa Hamed Dawoud,,,,,29/10/1982,,,Libya,S/263963,Issued on 8 Nov 2012,(1) 119820043341 (2) 137803,(1) - (2) Personal ID,Leader of armed militias,,,,,,,,,"(UK Sanctions List Ref):LIB0052 (UN Ref):LYi.027 Name of mother Salma Abdula Younis. Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Good quality,Libya,12/09/2018,11/09/2018,10/02/2022,13711 +AL JAHANI,ABDELRAHMAN,MOUHAMAD ZAFIR,AL DABIDI,,,,,,,04/12/1971,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL JAHANI,ABDELRAHMAN,MOUHAMAD ZAFIR,AL DABIDI,,,,,,,00/00/1977,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL JAMA'A AL-ISLAMIYA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0030 (UK Statement of Reasons):Al-Gama'a al-Islamiyya (GI) is an Egyptian Sunni terrorist organisation who were responsible for a number of terrorist attacks in the 1980s and 1990s,Entity,AKA,,Counter-Terrorism (International),02/11/2001,31/12/2020,21/01/2021,6988 +AL JAMM'AH AL-ISLAMIAH AL- MUSALLAH,,,,,,,,,,,,,,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0036 (UN Ref):QDe.006 Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281693,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6963 +AL JAZIREH,,,,,,,,,,,,,,,,,,,,Shaheen Building,2nd Floor,Sami el Solh,,Beirut,,Lebanon,"(UK Sanctions List Ref):SYR0297 (UK Statement of Reasons):Owned or controlled by the designated person Ayman Jabir. (Type of entity):Private, Transport, Oil and Petroleum",Entity,AKA,,Syria,23/07/2014,31/12/2020,31/12/2020,13034 +AL KANI,Abdul,Rahim,,,,,,,,22/02/1981,Tarhuna,Libya,Libya,H4FG6H2J,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0073 (UK Statement of Reasons):Abdurahem al-Kani is designated on the basis that there are reasonable grounds to suspect that he was one of the leaders of the Al-Kaniyat militia and involved in the activities of the militia in Tarhuna, including in the commission of serious human rights abuses, or violations of international humanitarian law. There are reasonable grounds to suspect that, under the leadership of Abdurahem al-Kani, the militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tarhouna. There are reasonable grounds to suspect that he is involved in the activities of the militia and that those activities threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,Primary name variation,,Libya,13/05/2021,07/05/2021,13/05/2021,14106 +AL KANI,Abdurahem,,,,,,,,,22/02/1981,Tarhuna,Libya,Libya,H4FG6H2J,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0073 (UK Statement of Reasons):Abdurahem al-Kani is designated on the basis that there are reasonable grounds to suspect that he was one of the leaders of the Al-Kaniyat militia and involved in the activities of the militia in Tarhuna, including in the commission of serious human rights abuses, or violations of international humanitarian law. There are reasonable grounds to suspect that, under the leadership of Abdurahem al-Kani, the militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tarhouna. There are reasonable grounds to suspect that he is involved in the activities of the militia and that those activities threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,Primary name,,Libya,13/05/2021,07/05/2021,13/05/2021,14106 +AL KANI,Abdurrahim,,,,,,,,,22/02/1981,Tarhuna,Libya,Libya,H4FG6H2J,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0073 (UK Statement of Reasons):Abdurahem al-Kani is designated on the basis that there are reasonable grounds to suspect that he was one of the leaders of the Al-Kaniyat militia and involved in the activities of the militia in Tarhuna, including in the commission of serious human rights abuses, or violations of international humanitarian law. There are reasonable grounds to suspect that, under the leadership of Abdurahem al-Kani, the militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tarhouna. There are reasonable grounds to suspect that he is involved in the activities of the militia and that those activities threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,Primary name variation,,Libya,13/05/2021,07/05/2021,13/05/2021,14106 +AL KANI,Mohamed,,,,,,,,,01/05/1979,,Libya,Libya,F86JKFFJF,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0072 (UK Statement of Reasons):Mohamed al-Kani is designated on the basis that there are reasonable grounds to suspect that he was head of the Al-Kaniyat militia and involved in the activities of the militia in Tarhuna, including in serious human rights abuses, and violations of international humanitarian law. Under the leadership of Mohamed al-Kani, there are reasonable grounds to suspect that the al-Kaniyat militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tarhouna. There are reasonable grounds to suspect that he is involved in the activities of the militia and that those activities threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,Primary name,,Libya,13/05/2021,07/05/2021,13/05/2021,14105 +AL KANI,Omar,,,,,,,,,01/05/1979,,Libya,Libya,F86JKFFJF,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0072 (UK Statement of Reasons):Mohamed al-Kani is designated on the basis that there are reasonable grounds to suspect that he was head of the Al-Kaniyat militia and involved in the activities of the militia in Tarhuna, including in serious human rights abuses, and violations of international humanitarian law. Under the leadership of Mohamed al-Kani, there are reasonable grounds to suspect that the al-Kaniyat militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tarhouna. There are reasonable grounds to suspect that he is involved in the activities of the militia and that those activities threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,Primary name variation,,Libya,13/05/2021,07/05/2021,13/05/2021,14105 +AL KASHEF,Muhammad,Jamal,Abdo,,,,,,,01/01/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +AL KASHEF,Muhammad,Jamal,Abdo,,,,,,,01/02/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +AL KAWTHAR CO.,,,,,,,,,,,,,,,,,,,,,,,Al-Qaim,Al Ambar Province,,Iraq,"(UK Sanctions List Ref):AQD0025 (UN Ref):QDe.157 Money exchange business and owned by Umar Mahmud Irhayyim al-Kubaysi (QDi.412) as of mid-2016. Facilitated financial transactions on behalf of companies associated with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Established in 2000 under License number 202, issued on 17 May 2000, and since withdrawn. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6202735",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13617 +AL KAWTHAR COMPANY,,,,,,,,,,,,,,,,,,,,,,,Al-Qaim,Al Ambar Province,,Iraq,"(UK Sanctions List Ref):AQD0025 (UN Ref):QDe.157 Money exchange business and owned by Umar Mahmud Irhayyim al-Kubaysi (QDi.412) as of mid-2016. Facilitated financial transactions on behalf of companies associated with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Established in 2000 under License number 202, issued on 17 May 2000, and since withdrawn. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6202735",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13617 +AL KHUWAYT,Taha,Ibrahim,Abdallah Bakr,,,,طھ إبراھیم عبد لله بكر ال خویت,,,00/00/1965,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +AL KHUWAYT,Taha,Ibrahim,Abdallah Bakr,,,,طھ إبراھیم عبد لله بكر ال خویت,,,00/00/1966,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +AL KHUWAYT,Taha,Ibrahim,Abdallah Bakr,,,,طھ إبراھیم عبد لله بكر ال خویت,,,00/00/1967,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +AL KHUWAYT,Taha,Ibrahim,Abdallah Bakr,,,,طھ إبراھیم عبد لله بكر ال خویت,,,00/00/1968,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +AL KHUWAYT,Taha,Ibrahim,Abdallah Bakr,,,,طھ إبراھیم عبد لله بكر ال خویت,,,00/00/1969,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +AL KIFAH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0067 (UN Ref):QDe.012 Absorbed into Al-Qaida (QDe.004). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282030,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7263 +AL KUNI,Osama,,,,,,,,,04/04/1976,Tripoli,Libya,Libya,,,,,Manager of Al Nasr Detention Centre in Zawiyah,,,,,,Zawiyah,,Libya,"(UK Sanctions List Ref):LIB0075 (UN Ref):LYi.029 As de factor manager of the Al Nasr detention centre the person concerned has directly, and/or through subordinates engaged in or provided support to acts that violate applicable international human rights law, or acts that consistute human rights abuses in Libya. The person concerned has acted for or on behalf of or at the direction of two listed individuals intrinsically linked to the human trafficking activities of the Zawiyah network, namely Mohamed Kashlaf (LYi.025) and Abdulrahman al Milad (LYi.026). For years, the Al Nasr detention centre in Zawiyah has been singled out in public and in confidential reports describing the plight of migrants and asylum seekers in Libya, including torture, sexual and gender-based violence and human trafficking. Humanitarian organisations and victims of trafficking have consistently identified the person concerned as the de facto manager of the detention centre. Three individuals who had been working in the Al Nasr detention centre were served prison sentences for torturing migrants in the detention centre. (Gender):Male",Individual,AKA,Good quality,Libya,26/10/2021,25/10/2021,26/10/2021,14142 +AL KUNI,Osama,,,,,,,,,04/04/1976,Tripoli,Libya,Libya,,,,,Manager of Al Nasr Detention Centre in Zawiyah,,,,,,Zawiyah,,Libya,"(UK Sanctions List Ref):LIB0075 (UN Ref):LYi.029 As de factor manager of the Al Nasr detention centre the person concerned has directly, and/or through subordinates engaged in or provided support to acts that violate applicable international human rights law, or acts that consistute human rights abuses in Libya. The person concerned has acted for or on behalf of or at the direction of two listed individuals intrinsically linked to the human trafficking activities of the Zawiyah network, namely Mohamed Kashlaf (LYi.025) and Abdulrahman al Milad (LYi.026). For years, the Al Nasr detention centre in Zawiyah has been singled out in public and in confidential reports describing the plight of migrants and asylum seekers in Libya, including torture, sexual and gender-based violence and human trafficking. Humanitarian organisations and victims of trafficking have consistently identified the person concerned as the de facto manager of the detention centre. Three individuals who had been working in the Al Nasr detention centre were served prison sentences for torturing migrants in the detention centre. (Gender):Male",Individual,AKA,Good quality,Libya,26/10/2021,25/10/2021,26/10/2021,14142 +AL KUNI,Amid,Hussain,,,,,,,,,,,,,,,,"(1) Former Ambassador to Niger. (2) Former Governor of Ghat, South Libya",,,,,,,,Libya,"(UK Sanctions List Ref):LIB0028 (UN Ref):LYi.005 Formerly Ambassador to Niger for 17 years. Also listed by the UN pursuant to paragraph 15 of resolution 1970 (Travel Ban). (UK Statement of Reasons):As a former Governor of Ghat (South Libya) and Ambassador to Niger, Al Kuni was associated with the Qadhafi regime. Al Kuni was also involved in activities which threaten the peace, security, stability of Libya or undermines its transition to a democratic, peaceful and independent country, mercenaries to fight for the Qadhafi regime in order to implement the repressive policies of that regime.",Individual,Primary name,,Libya,14/04/2011,31/12/2020,10/02/2022,11773 +AL KURDI,Abdelhamid,,,,,,,,,01/11/1975,Poshok,Iraq,Iraq,,,,,,,,,,,Sulaymaniya,,Iraq,(UK Sanctions List Ref):AQD0243 (UN Ref):QDi.144 Mother's name: Attia Mohiuddin Taha. A deportation order was issued by the Italian authorities on 18 Oct. 2004. Considered a fugitive from justice by the Italian authorities as of Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424109,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7867 +AL LIBI,Abou,Fares,,,,,,,,26/06/1959,Derna,Libya,Libya,,,,,,,,,,,,,Libya,(UK Sanctions List Ref):AQD0317 (UN Ref):QDi.355 Leader of Ansar al Charia Derna (QDe.145). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5893103,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/09/2015,03/09/2015,31/12/2020,13275 +AL MADANI,Mustafa,Mohammed,,,,,,,,08/12/1961,(1) Mecca. (2) Riyadh,(1) Saudi Arabia (2) Saudi Arabia,Saudi Arabia,P797794,,1011123229,,"Brigadier General, Intelligence Officer employed at the Royal Palace",,,,,,Jazan,,Saudi Arabia,"(UK Sanctions List Ref):GHR0031 (UK Statement of Reasons):Mustafa Mohammed Al Madani held the position of Brigadier General and Intelligence Officer in Saudi Arabia. He was present during the unlawful killing of Jamal Khashoggi in the Saudi Consulate in Istanbul on 2 October 2018, and played an active part of the 15 man team sent to Turkey by Saudi authorities, including through the concealment of evidence relating to the killing. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13869 +AL MADINA TRUST,,,,,,,,,,,,,,,,,,,"302b-40, Good Earth Court",Opposite Pia Planitarium,Block 13a,Gulshan-I-Iqbal,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL MADINA TRUST,,,,,,,,,,,,,,,,,,,605 Landmark Plaza,11 Chundrigar Road,Opposite Jang Building,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL MADINA TRUST,,,,,,,,,,,,,,,,,,,617 Clifton Center,Block 5,6th Floor,Clifton,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL MADINA TRUST,,,,,,,,,,,,,,,,,,,Jamia Maajid,Sulalman Park,Melgium Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL MADINA TRUST,,,,,,,,,,,,,,,,,,,Jamia Masjid,Sulaiman Park,Begum Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL MADINA TRUST,,,,,,,,,,,,,,,,,,,Kitab Ghar,Darul Ifta Wal Irshad,Nazimabad No 4,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL MADINA TRUST,,,,,,,,,,,,,,,,,,,Kitas Ghar,Nazimabad 4,Dahgel-Iftah,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL MADINA TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Opposite Khyber Bank,Abbottabad Road,,,Mansehra,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL MADINA TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Rm No 3,Moti Plaza,Near Liaquat Bagh,Muree Road,Rawalpindi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL MADINA TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Top Floor,Dr. Dawa Khan Dental Clinic Surgeon,Main Baxae,Mingora,Swat,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL MADINA TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin ZR Brothers,Katcherry Road,Chowk Yadgaar,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL MAGHREBI,Abderahmane,,,,,,,,,25/05/1983,,,Morocco,V06359364,Morocco number,AB704306,Morocco identity card,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0359 (UN Ref):QDi.423 Member of Al Qaida in the Islamic Maghreb (AQIM) (QDe.014), Ansar Eddine (QDe.135), and Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159). Physical description: height: 185 cm; weight: 80 kg INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2019,14/08/2019,31/12/2020,13789 +AL MAGHRIBI,Abderrahmane,,,,,,,,,15/07/1975,"Haselünne, Lower Saxony",Germany,(1) Germany. (2) Morocco,(1) 28642163 (2) 954242,"(1) German provisional. Issued by the city of Hamburg (2) Moroccan. Issued on 28 June 1995 in Meknas, Morocco. Expired.",1336597587,"Germany identity document (""Bundespersonalausweis"")",,Bunatwiete 23,,,,,Hamburg,21073,Germany,"(UK Sanctions List Ref):AQD0300 (UN Ref):QDi.080 Deputy head of the media committee of Al-Qaida (QDe.004) as at Apr. 2010. German authorities issued an arrest warrant for him on 21 Sep. 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. Reportedly deceased in September 2013 in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4517705. Primary address Hamburg, formerly resident at.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,12/01/2022,7059 +AL MAGHRIBI,Zouheir,,,,,,,,,15/07/1975,"Haselünne, Lower Saxony",Germany,(1) Germany. (2) Morocco,(1) 28642163 (2) 954242,"(1) German provisional. Issued by the city of Hamburg (2) Moroccan. Issued on 28 June 1995 in Meknas, Morocco. Expired.",1336597587,"Germany identity document (""Bundespersonalausweis"")",,Bunatwiete 23,,,,,Hamburg,21073,Germany,"(UK Sanctions List Ref):AQD0300 (UN Ref):QDi.080 Deputy head of the media committee of Al-Qaida (QDe.004) as at Apr. 2010. German authorities issued an arrest warrant for him on 21 Sep. 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. Reportedly deceased in September 2013 in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4517705. Primary address Hamburg, formerly resident at.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,12/01/2022,7059 +AL MALAYZIE,Abu,Una,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +AL MALAYZIE,Abu,Una,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,96-06-06 Flat Sri Kota,Bandar Tun Razak,,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,56100,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +AL MALAYZIE,Abu,Una,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,B-3B-19 Glenview Villa,Jalan 49 Off Jalan Kuari,Taman Pinggiran Cheras,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +AL MALIZI,Abu,Awn,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +AL MALIZI,Abu,Awn,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,96-06-06 Flat Sri Kota,Bandar Tun Razak,,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,56100,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +AL MALIZI,Abu,Awn,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,B-3B-19 Glenview Villa,Jalan 49 Off Jalan Kuari,Taman Pinggiran Cheras,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +AL MANSOOREEN,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +AL MANSOORIAN,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +AL MARRANI,Motlaq,Amer,,,,,مطلق عامر المراني,Arabic,Arabic,01/01/1984,Al-Jawf,Yemen,Yemen,,,,,Former Deputy Head of the Houthi National Security Bureau (NSB) (Intelligence Agency),,,,,,,,,"(UK Sanctions List Ref):YEM0011 (UN Ref):YEi.011 (UK Statement of Reasons):Former Deputy Head of the Houthi National Security Bureau (NSB), oversaw detainees of the NSB who were subjected to torture and other mistreatment while detained, planned and directed illegal arrests and detention of humanitarian workers and the unlawful diversion of humanitarian assistance in violation of international humanitarian law.  (Gender):Male",Individual,Primary name,,Yemen,28/09/2022,28/09/2022,28/09/2022,15591 +AL MASHREQ INVESTMENT FUND,,,,,,,,,,,,,,,,,,,,,,,P.O. Box 108,Damascus,,Syria,(UK Sanctions List Ref):SYR0279 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime. Al Mashreq Investment Fund benefits from and supports the Assad regime. (Phone number):(1) +963 112110043 (2) +963 112110059 (Type of entity):Private,Entity,Primary name,,Syria,24/06/2011,31/12/2020,13/05/2022,12018 +AL MASRAF,,,,,,,,,,,,,,,,,,,Building Damascus Tajhez,P.O. Box 4325,,,,,,,"(UK Sanctions List Ref):SYR0277 (UK Statement of Reasons):State-owned bank operating under the supervision of the Syrian Ministry of the Economy, operating on behalf of government agencies. Provides financial support to the regime (Phone number):+963 11-221-3462 (Website):www.agrobank.org (Type of entity):State-owned bank",Entity,AKA,,Syria,24/01/2012,31/12/2020,31/12/2020,12486 +AL MASRAF AL ZIRAE,,,,,,,,,,,,,,,,,,,Al Jumhouria Street,East Junzour,Al Gheran,,,Tripoli,,Libya,(UK Sanctions List Ref):LIB0006 (UK Statement of Reasons):Libyan subsidiary of the Central Bank of Libya. Owned or controlled directly or indirectly (within the meaning regulation 7) by a person who is or has been so involved. (Phone number):(1) 218 213330927 (2) 218 213331533 (3) 218 213333541 (4) 218 213333542 (5) 218 213333543 (6) 218 213333544 (7) 218 213333545 (8) 218 213338366 (9) 218 214870586 (10) 218 214870714 (11) 218214870745 (12) 218214870747 (13) 218214870767 (14) 218214870777 (Email address):agbank@agribankly.org (Parent company):Libyan subsidiary of the Central Bank of Libya.,Entity,AKA,,Libya,14/04/2011,31/12/2020,10/02/2022,11745 +AL MASRAF AL ZIRAE,,,,,,,,,,,,,,,,,,,El Ghayran Area,Ganzor El Sharqya,PO Box 1100,,,Tripoli,,Libya,(UK Sanctions List Ref):LIB0006 (UK Statement of Reasons):Libyan subsidiary of the Central Bank of Libya. Owned or controlled directly or indirectly (within the meaning regulation 7) by a person who is or has been so involved. (Phone number):(1) 218 213330927 (2) 218 213331533 (3) 218 213333541 (4) 218 213333542 (5) 218 213333543 (6) 218 213333544 (7) 218 213333545 (8) 218 213338366 (9) 218 214870586 (10) 218 214870714 (11) 218214870745 (12) 218214870747 (13) 218214870767 (14) 218214870777 (Email address):agbank@agribankly.org (Parent company):Libyan subsidiary of the Central Bank of Libya.,Entity,AKA,,Libya,14/04/2011,31/12/2020,10/02/2022,11745 +AL MASRAF AL ZIRAE AGRICULTURAL BANK,,,,,,,,,,,,,,,,,,,Al Jumhouria Street,East Junzour,Al Gheran,,,Tripoli,,Libya,(UK Sanctions List Ref):LIB0006 (UK Statement of Reasons):Libyan subsidiary of the Central Bank of Libya. Owned or controlled directly or indirectly (within the meaning regulation 7) by a person who is or has been so involved. (Phone number):(1) 218 213330927 (2) 218 213331533 (3) 218 213333541 (4) 218 213333542 (5) 218 213333543 (6) 218 213333544 (7) 218 213333545 (8) 218 213338366 (9) 218 214870586 (10) 218 214870714 (11) 218214870745 (12) 218214870747 (13) 218214870767 (14) 218214870777 (Email address):agbank@agribankly.org (Parent company):Libyan subsidiary of the Central Bank of Libya.,Entity,AKA,,Libya,14/04/2011,31/12/2020,10/02/2022,11745 +AL MASRAF AL ZIRAE AGRICULTURAL BANK,,,,,,,,,,,,,,,,,,,El Ghayran Area,Ganzor El Sharqya,PO Box 1100,,,Tripoli,,Libya,(UK Sanctions List Ref):LIB0006 (UK Statement of Reasons):Libyan subsidiary of the Central Bank of Libya. Owned or controlled directly or indirectly (within the meaning regulation 7) by a person who is or has been so involved. (Phone number):(1) 218 213330927 (2) 218 213331533 (3) 218 213333541 (4) 218 213333542 (5) 218 213333543 (6) 218 213333544 (7) 218 213333545 (8) 218 213338366 (9) 218 214870586 (10) 218 214870714 (11) 218214870745 (12) 218214870747 (13) 218214870767 (14) 218214870777 (Email address):agbank@agribankly.org (Parent company):Libyan subsidiary of the Central Bank of Libya.,Entity,AKA,,Libya,14/04/2011,31/12/2020,10/02/2022,11745 +AL- MASRI,Abdallah,,,,,,,,,00/00/1963,Tripoli,Libya,Libya,(1) 1990/345751. (2) 345741,(1) Libyan (2) Libyan,220334,Libya,,Bab Ben Ghasheer,,,,,Tripoli,,Libya,(UK Sanctions List Ref):AQD0305 (UN Ref):QDi.231 Mother's name is Kalthoum Abdul Salam al-Shaftari. Senior member of Libyan Islamic Fighting Group (QDe.011) and member of Al-Qaida (QDe.004). Review pursuant to Security Council resolution 1822 (2008) was concluded on 24 Nov. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1480002,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,15/06/2007,08/06/2007,31/12/2020,8645 +AL MOUAKAOUNE BIDDAM,,,,,,,الموقعون بالدم,,,,,,,,,,,,,,,,,,,Mali,(UK Sanctions List Ref):AQD0006 (UN Ref):QDe.139 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and led by Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,16/06/2014,02/06/2014,31/12/2020,12983 +AL MOUKATEL,Abou,,,,,,,,,01/08/1983,Paris,France,(1) France. (2) Tunisia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0157 (UN Ref):QDi.375 French-Tunisian foreign terrorist fighter for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897328.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,12/01/2022,13289 +AL MOULATHAMOUN,,,,,,,الملثمون,,,,,,,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0007 (UN Ref):QDe.140 Founded in 2012 as a splinter group of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). On 20 Aug. 2013, Al Moulathamoun merged with the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134) and established Al Mourabitoun (QDe.141). Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and led by Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,16/06/2014,02/06/2014,31/12/2020,12984 +AL MOULATHAMOUN,,,,,,,الملثمون,,,,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0007 (UN Ref):QDe.140 Founded in 2012 as a splinter group of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). On 20 Aug. 2013, Al Moulathamoun merged with the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134) and established Al Mourabitoun (QDe.141). Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and led by Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,16/06/2014,02/06/2014,31/12/2020,12984 +AL MOULATHAMOUN,,,,,,,الملثمون,,,,,,,,,,,,,,,,,,,Niger,"(UK Sanctions List Ref):AQD0007 (UN Ref):QDe.140 Founded in 2012 as a splinter group of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). On 20 Aug. 2013, Al Moulathamoun merged with the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134) and established Al Mourabitoun (QDe.141). Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and led by Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,16/06/2014,02/06/2014,31/12/2020,12984 +AL MOULED ALSBHUA,Azam,Abdallah,Razeeq,,,,,,,12/04/1976,Al Baraka,Saudi Arabia,Saudi Arabia,C389664,,1024026187,,,,,,,,,,,(UK Sanctions List Ref):AQD0153 (UN Ref):QDi.330 Has ties to numerous senior Al-Qaida (QDe.004) leaders. Wanted by the Saudi Arabian Government for terrorism. Father's name is Abdullah Razeeq al Mouled al Sbhua. Physical description: eye colour: dark; hair colour: dark; complexion: dark. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13127 +AL MOURABITOUN,,,,,,,المرابطون,,,,,,,,,,,,,,,,,,,Mali,(UK Sanctions List Ref):AQD0008 (UN Ref):QDe.141 Founded on 20 Aug. 2013 as result of a merger between Al Moulathamoun (QDe.140) and the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and led by Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,16/06/2014,02/06/2014,31/12/2020,12985 +AL MUHAJIR,Sanaullah,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,Primary name variation,,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +AL MUHAJIR,Sanaullah,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,Kunduz,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,Primary name variation,,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +AL MUHAJIR,Shahab,,,,,Doctor,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +AL MUHAJIR,Shahab,,,,,Doctor,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,Kunduz,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +AL MUHAJIR,Shihab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +AL MUHAJIR,Shihab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,Kunduz,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +AL MUSLEH,Mufleh,,,,,,,,,12/02/1952,,,Saudi Arabia,,,,,Consulate staff,,,,,,,,,"(UK Sanctions List Ref):GHR0045 (UK Statement of Reasons):Mufleh Al Musleh was a member of staff in the Saudi Consulate in Istanbul. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, in that he provided support to the 15 man team sent to Turkey by Saudi authorities. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,18/02/2021,13896 +AL MUSLEH,Muflih,Shaya,,,,,,,,12/02/1952,,,Saudi Arabia,,,,,Consulate staff,,,,,,,,,"(UK Sanctions List Ref):GHR0045 (UK Statement of Reasons):Mufleh Al Musleh was a member of staff in the Saudi Consulate in Istanbul. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, in that he provided support to the 15 man team sent to Turkey by Saudi authorities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,18/02/2021,13896 +AL MUZAINI,Ahmed,Abdullah,,,,,,,,,,,Saudi Arabia,,,,,Military Attaché,,,,,,,,,(UK Sanctions List Ref):GHR0039 (UK Statement of Reasons):Ahmad Abdullah Al Muzaini held the position of Military Attaché at the Saudi Consulate in Istanbul. He was a senior official who facilitated the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018. (Gender):Male,Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13890 +AL NAIMEH,Abdelrahman,Imer,al Jaber,,,,,,,00/00/1954,Doha,Qatar,Qatar,(1) 01461558 (2) 00868774,(1) Qatar. Expiring 20 Jan. 2024. (2) Qatar. Expired on 27 Apr. 2014.,(1) 25463400086 (2) 25463401784,(1) Qatar identification number. (2) Qatar identification number. Expires on 6 Dec. 2019.,,,,,,,Al-Waab,,Qatar,(UK Sanctions List Ref):AQD0001 (UN Ref):QDi.334 Financier and facilitator for Al-Qaida (QDe.004) and Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817985,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,24/03/2021,13131 +AL NASEEM,,,,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +AL NASEEM,,,,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +AL NASEEM,,,,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +AL NASEEM,,,,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +AL NASIM,,,,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +AL NASIM,,,,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +AL NASIM,,,,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +AL NASIM,,,,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +AL NASR,Sanafi,,,,,,,,,13/07/1985,Saqra,Saudi Arabia,Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0105 (UN Ref):QDi.324 A long time facilitator and financier for Al-Qaida (QDe.004), appointed as a regional leader of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809944",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13085 +AL NASSEEM,,,,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +AL NASSEEM,,,,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +AL NASSEEM,,,,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +AL NASSEEM,,,,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +AL NASSER,Hala,Mohamed,,,,,,,,00/00/1964,Raqqa,Syria,Syria,,,,,Former Minister for Tourism,,,,,,,,,(UK Sanctions List Ref):SYR0061 (UK Statement of Reasons):Former Minister of Tourism. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Female,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12767 +AL NASSER,Hala,Mohammad,,,,,,,,00/00/1964,Raqqa,Syria,Syria,,,,,Former Minister for Tourism,,,,,,,,,(UK Sanctions List Ref):SYR0061 (UK Statement of Reasons):Former Minister of Tourism. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Female,Individual,Primary name,,Syria,16/10/2012,31/12/2020,31/12/2020,12767 +AL NASSER,Hala,Mohammed,,,,,,,,00/00/1964,Raqqa,Syria,Syria,,,,,Former Minister for Tourism,,,,,,,,,(UK Sanctions List Ref):SYR0061 (UK Statement of Reasons):Former Minister of Tourism. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Female,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12767 +AL NASSER,Hala,Muhammad,,,,,,,,00/00/1964,Raqqa,Syria,Syria,,,,,Former Minister for Tourism,,,,,,,,,(UK Sanctions List Ref):SYR0061 (UK Statement of Reasons):Former Minister of Tourism. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Female,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12767 +AL NAYEF,Abdul-Salam,,,,,,عبد السلام النايف,,,00/00/1959,,Syria,Syria,,,,,Former Minister for Health,,,,,,,,,"(UK Sanctions List Ref):SYR0003 (UK Statement of Reasons):Former Minister for Health in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,16/10/2012,31/12/2020,31/12/2020,12783 +AL NEAIMI,Abdulrahman,Omair,,,,,,,,00/00/1954,Doha,Qatar,Qatar,(1) 01461558 (2) 00868774,(1) Qatar. Expiring 20 Jan. 2024. (2) Qatar. Expired on 27 Apr. 2014.,(1) 25463400086 (2) 25463401784,(1) Qatar identification number. (2) Qatar identification number. Expires on 6 Dec. 2019.,,,,,,,Al-Waab,,Qatar,(UK Sanctions List Ref):AQD0001 (UN Ref):QDi.334 Financier and facilitator for Al-Qaida (QDe.004) and Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817985,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,24/03/2021,13131 +AL OMAIRAH,Othman,Ahmed,Othman,,,,,,,27/05/1979,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +AL OMAIRAH,Othman,Ahmed,Othman,,,,,,,00/00/1973,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +AL OTAIBI,Badr,Lafi,M,,,,,,,06/07/1973,Riyadh,Saudi Arabia,Saudi Arabia,P667604,,,,"Major, External Intelligence",,,,,,,,,(UK Sanctions List Ref):GHR0040 (UK Statement of Reasons):Badr Lafi M Al Otaibi held the rank of Major and was involved in External Intelligence in Saudi Arabia. He was part of the 15 man team sent to Turkey by Saudi authorities and was present during the unlawful killing of Jamal Khashoggi at the Saudi Consulate in Istanbul on 2 October 2018. (Gender):Male,Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13891 +AL OTAIBI,Khaled,Aedh,G.,,,,,,,28/06/1988,Afif,Saudi Arabia,Saudi Arabia,P139681,,1053629885,,Royal Guard,,,,,,,,,"(UK Sanctions List Ref):GHR0035 (UK Statement of Reasons):Khalid Aedh G Alotaibi was a Royal Guard in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi General Consul’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13882 +AL OTAIBI,Khalid,Aedh,G.,,,,,,,28/06/1988,Afif,Saudi Arabia,Saudi Arabia,P139681,,1053629885,,Royal Guard,,,,,,,,,"(UK Sanctions List Ref):GHR0035 (UK Statement of Reasons):Khalid Aedh G Alotaibi was a Royal Guard in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi General Consul’s residence following the killing. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13882 +AL OTAIBI,Mohammad,,,,,,,,,06/11/1964,Riyadh,Saudi Arabia,Saudi Arabia,,,,,"Consul General in the Saudi Arabia Consulate, Istanbul",,,,,,,,,"(UK Sanctions List Ref):GHR0037 (UK Statement of Reasons):Mohammad Al-Otaibi was the Saudi Consul General in Istanbul. He was involved in the unlawful killing of Jamal Khashoggi, in particular in facilitating the killing and in the concealment of evidence. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13888 +AL QADHAFI,Qu’ren,Salih,Qu’ren,,,,,,,,,,,,,,,Libyan Ambassador to Chad,,,,,,,,,"(UK Sanctions List Ref):LIB0076 (UN Ref):LYi.004 (UK Statement of Reasons):Quren Salih Quren Al Qadhafi was the former Libyan ambassador to Chad under the regime of Muammar Qadhafi and there are reasonable grounds to suspect that he has been involved in activities carried out on behalf of the former regime of Muammar Qadhafi implementing or connected to the repressive policies of that regime through his involvement in the procurement and coordination of foreign armed mercenary personnel on behalf of that regime. There are reasonable grounds to suspect this involvement was in violation of the arms embargo imposed under paragraph 9 of United Nations Security Council Resolution 1970. In addition/in the alternative, there are reasonable grounds to suspect that Quren Salih Quren Al Qadhafi’s alleged attempts to spread disinformation in Libya and opposition to the UN and UN-led political process in Libya threatens the peace, stability and security of Libya or which undermines its transition to a democratic, peaceful and independent country. In addition/in the alternative, there are reasonable grounds to suspect that Quren Salih Quren Al Qadhafi is associated with Saif-al Islam Qadhafi and Saadi Qadhafi who are or have been involved in activities carried out on behalf of the former regime of Muammar Qadhafi implementing or connected to the repressive policies of that regime or any other activity which threatens the peace, stability and security of Libya or undermines its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,AKA,,Libya,19/01/2022,18/01/2022,16/02/2022,14172 +AL QADHAFI,Qurayn,Salih,Qurayn,,,,,,,,,,,,,,,Libyan Ambassador to Chad,,,,,,,,,"(UK Sanctions List Ref):LIB0076 (UN Ref):LYi.004 (UK Statement of Reasons):Quren Salih Quren Al Qadhafi was the former Libyan ambassador to Chad under the regime of Muammar Qadhafi and there are reasonable grounds to suspect that he has been involved in activities carried out on behalf of the former regime of Muammar Qadhafi implementing or connected to the repressive policies of that regime through his involvement in the procurement and coordination of foreign armed mercenary personnel on behalf of that regime. There are reasonable grounds to suspect this involvement was in violation of the arms embargo imposed under paragraph 9 of United Nations Security Council Resolution 1970. In addition/in the alternative, there are reasonable grounds to suspect that Quren Salih Quren Al Qadhafi’s alleged attempts to spread disinformation in Libya and opposition to the UN and UN-led political process in Libya threatens the peace, stability and security of Libya or which undermines its transition to a democratic, peaceful and independent country. In addition/in the alternative, there are reasonable grounds to suspect that Quren Salih Quren Al Qadhafi is associated with Saif-al Islam Qadhafi and Saadi Qadhafi who are or have been involved in activities carried out on behalf of the former regime of Muammar Qadhafi implementing or connected to the repressive policies of that regime or any other activity which threatens the peace, stability and security of Libya or undermines its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,AKA,,Libya,19/01/2022,18/01/2022,16/02/2022,14172 +AL QADHAFI,QUREN,SALIH,QUREN,,,,,,,,,,,,,,,Libyan Ambassador to Chad,,,,,,,,,"(UK Sanctions List Ref):LIB0076 (UN Ref):LYi.004 (UK Statement of Reasons):Quren Salih Quren Al Qadhafi was the former Libyan ambassador to Chad under the regime of Muammar Qadhafi and there are reasonable grounds to suspect that he has been involved in activities carried out on behalf of the former regime of Muammar Qadhafi implementing or connected to the repressive policies of that regime through his involvement in the procurement and coordination of foreign armed mercenary personnel on behalf of that regime. There are reasonable grounds to suspect this involvement was in violation of the arms embargo imposed under paragraph 9 of United Nations Security Council Resolution 1970. In addition/in the alternative, there are reasonable grounds to suspect that Quren Salih Quren Al Qadhafi’s alleged attempts to spread disinformation in Libya and opposition to the UN and UN-led political process in Libya threatens the peace, stability and security of Libya or which undermines its transition to a democratic, peaceful and independent country. In addition/in the alternative, there are reasonable grounds to suspect that Quren Salih Quren Al Qadhafi is associated with Saif-al Islam Qadhafi and Saadi Qadhafi who are or have been involved in activities carried out on behalf of the former regime of Muammar Qadhafi implementing or connected to the repressive policies of that regime or any other activity which threatens the peace, stability and security of Libya or undermines its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,Primary name,,Libya,19/01/2022,18/01/2022,16/02/2022,14172 +AL QAEDA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0027 (UN Ref):QDe.004 Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278330,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,23/02/2001,06/10/2001,31/12/2020,6965 +AL QAHTANI,Saif,Saad,Q.,,,,,,,00/00/1973,,,Saudi Arabia,,,,,"Training Officer, Saudi Air Force",,,,,,,,,"(UK Sanctions List Ref):GHR0038 (UK Statement of Reasons):Saif Saad Q. Alqahtani was a training officer in the Saudi Air Force who worked in the Office of the Crown Prince in Saudi Arabia. He was in the Consulate during the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, and played an active part of the 15 man team sent to Turkey by Saudi authorities, including through the concealment of evidence relating to the killing. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13889 +AL QAHTANI,Saud,Abdullah,,,,,,,,07/07/1978,Riyadh,Saudi Arabia,Saudi Arabia,D079021,,,,,,,,,,Riyadh,,Saudi Arabia,(UK Sanctions List Ref):GHR0044 (UK Statement of Reasons):Saud Al Qahtani held the position of advisor to the Crown Prince in the royal court. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018. He was a senior official who planned and directed the killing using a 15 man team. (Gender):Male,Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13895 +AL QA'IDA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0027 (UN Ref):QDe.004 Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278330,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,23/02/2001,06/10/2001,31/12/2020,6965 +AL QAIDA AU MAGHREB ISLAMIQUE AQMI,,,,,,,Al Qaïda au Maghreb islamique AQMI,,,,,,,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +AL QAIDA AU MAGHREB ISLAMIQUE AQMI,,,,,,,Al Qaïda au Maghreb islamique AQMI,,,,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +AL QAIDA AU MAGHREB ISLAMIQUE AQMI,,,,,,,Al Qaïda au Maghreb islamique AQMI,,,,,,,,,,,,,,,,,,,Mauritania,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +AL QAIDA AU MAGHREB ISLAMIQUE AQMI,,,,,,,Al Qaïda au Maghreb islamique AQMI,,,,,,,,,,,,,,,,,,,Morocco,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +AL QAIDA AU MAGHREB ISLAMIQUE AQMI,,,,,,,Al Qaïda au Maghreb islamique AQMI,,,,,,,,,,,,,,,,,,,Niger,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +AL QAIDA AU MAGHREB ISLAMIQUE AQMI,,,,,,,Al Qaïda au Maghreb islamique AQMI,,,,,,,,,,,,,,,,,,,Tunisia,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +AL QATARJI COMPANY,,,,,,,مجموعة,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0359 Hussam AL-QATIRJI, CEO (EU-designated) Ultimate beneficial owner(s): Hussam AL-QATIRJI, Muhammad Baraa QATERJI (EU-designated) Relatives/business associates/entities or partners/links: Arvada/Arfada Petroleum Company JSC Registered address or each jurisdiction): Mazzah, Damascus, Syria (UK Statement of Reasons):Prominent and influential company operating across multiple sectors of the Syrian economy. By facilitating fuel, arms and ammunition trade towards between the regime and various actors including ISIS (Daesh) under the pretext of importing and exporting food items, supporting militias fighting alongside the regime and taking advantage of its ties with the regime to expand its commercial activity, Al Qatarji Company – whose board is headed by designated person Hossam Qatarji, a member of the Syrian People’s Assembly – supports and benefits from the Syrian regime. (Type of entity):Export. Import. Supplying oil and commodities. Trucking company (Subsidiaries):Arvada/Arfada Petroleum Company JSC",Entity,Primary name,,Syria,17/02/2020,31/12/2020,13/05/2022,13822 +AL QODS,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,13/05/2022,11241 +AL QODS,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,AKA,,Syria,24/08/2011,31/12/2020,13/05/2022,11241 +AL QUBAYSI,Munir,,,,,,منير القبيسي,,,00/00/1966,Heet,Iraq,Iraq,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):IRQ0135 (UN Ref):IQi.074,Individual,Primary name,,Iraq,05/05/2004,26/04/2004,31/12/2020,8278 +AL RASHEED TRUST,,,,,,,,,,,,,,,,,,,"302b-40, Good Earth Court",Opposite Pia Planitarium,Block 13a,Gulshan-I-Iqbal,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHEED TRUST,,,,,,,,,,,,,,,,,,,605 Landmark Plaza,11 Chundrigar Road,Opposite Jang Building,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHEED TRUST,,,,,,,,,,,,,,,,,,,617 Clifton Center,Block 5,6th Floor,Clifton,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHEED TRUST,,,,,,,,,,,,,,,,,,,Jamia Maajid,Sulalman Park,Melgium Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHEED TRUST,,,,,,,,,,,,,,,,,,,Jamia Masjid,Sulaiman Park,Begum Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHEED TRUST,,,,,,,,,,,,,,,,,,,Kitab Ghar,Darul Ifta Wal Irshad,Nazimabad No 4,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHEED TRUST,,,,,,,,,,,,,,,,,,,Kitas Ghar,Nazimabad 4,Dahgel-Iftah,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHEED TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Opposite Khyber Bank,Abbottabad Road,,,Mansehra,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHEED TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Rm No 3,Moti Plaza,Near Liaquat Bagh,Muree Road,Rawalpindi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHEED TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Top Floor,Dr. Dawa Khan Dental Clinic Surgeon,Main Baxae,Mingora,Swat,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHEED TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin ZR Brothers,Katcherry Road,Chowk Yadgaar,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHID TRUST,,,,,,,,,,,,,,,,,,,"302b-40, Good Earth Court",Opposite Pia Planitarium,Block 13a,Gulshan-I-Iqbal,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHID TRUST,,,,,,,,,,,,,,,,,,,605 Landmark Plaza,11 Chundrigar Road,Opposite Jang Building,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHID TRUST,,,,,,,,,,,,,,,,,,,617 Clifton Center,Block 5,6th Floor,Clifton,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHID TRUST,,,,,,,,,,,,,,,,,,,Jamia Maajid,Sulalman Park,Melgium Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHID TRUST,,,,,,,,,,,,,,,,,,,Jamia Masjid,Sulaiman Park,Begum Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHID TRUST,,,,,,,,,,,,,,,,,,,Kitab Ghar,Darul Ifta Wal Irshad,Nazimabad No 4,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHID TRUST,,,,,,,,,,,,,,,,,,,Kitas Ghar,Nazimabad 4,Dahgel-Iftah,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHID TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Opposite Khyber Bank,Abbottabad Road,,,Mansehra,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHID TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Rm No 3,Moti Plaza,Near Liaquat Bagh,Muree Road,Rawalpindi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHID TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Top Floor,Dr. Dawa Khan Dental Clinic Surgeon,Main Baxae,Mingora,Swat,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL RASHID TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin ZR Brothers,Katcherry Road,Chowk Yadgaar,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL REMI,Qasim,Mohammed,Mahdi,,,,,,,05/06/1978,"Raymah village, Sanaa Governorate",Yemen,Yemen,00344994,"Yemeni. Issue date: 03/07/1999, issued in Sanaa.",973406,Yemeni national identification number. Issued on 3 Jul. 1996,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0288 (UN Ref):QDi.282 Mother’s name: Fatima Muthanna Yahya. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Al-Qaida in the Arabian Peninsula (QDe.129) since Jun. 2015, pledged loyalty to Aiman al-Zawahiri (QDi.006). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4470245",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/05/2010,11/05/2010,31/12/2020,11123 +AL RIMI,Qassim,Mohammad,Mahdi,,,,,,,05/06/1978,"Raymah village, Sanaa Governorate",Yemen,Yemen,00344994,"Yemeni. Issue date: 03/07/1999, issued in Sanaa.",973406,Yemeni national identification number. Issued on 3 Jul. 1996,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0288 (UN Ref):QDi.282 Mother’s name: Fatima Muthanna Yahya. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Al-Qaida in the Arabian Peninsula (QDe.129) since Jun. 2015, pledged loyalty to Aiman al-Zawahiri (QDi.006). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4470245",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/05/2010,11/05/2010,31/12/2020,11123 +AL SABUNI,Emad,Abdul-Ghani,,,,,,,,00/00/1964,,,Syria,,,,,Former Minister of Communications and Technology,,,,,,,,,"(UK Sanctions List Ref):SYR0037 (UK Statement of Reasons):Former minister of Telecommunications and Technology. As former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,28/02/2012,31/12/2020,31/12/2020,12506 +AL SABUNI,Imad,Abdul Ghani,,,,,,,,00/00/1964,,,Syria,,,,,Former Minister of Communications and Technology,,,,,,,,,"(UK Sanctions List Ref):SYR0037 (UK Statement of Reasons):Former minister of Telecommunications and Technology. As former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,28/02/2012,31/12/2020,31/12/2020,12506 +AL SAHRAWI,Abu,Walid,,,,,,,,16/02/1973,Laayoune,,,,,,,,,,,,Ménaka,Gao Region,,Mali,"(UK Sanctions List Ref):AQD0121 (UN Ref):QDi.415 Former spokesperson of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Emir of the Al-Mourabitoun (QDe.141) group in Mali. Pledged allegiance to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115) in May 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6241501",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/08/2018,09/08/2018,31/12/2020,13706 +AL SAOUDI,Abou,Wafa,,,,,,,,04/12/1971,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL SAOUDI,Abou,Wafa,,,,,,,,00/00/1977,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL SAYED,Mohammad,Abdul-Sattar,,,,,,,,00/00/1958,Tartus,,Syria,,,,,Minister of Religious Endowments,,,,,,,,,"(UK Sanctions List Ref):SYR0160 (UK Statement of Reasons):State Minister, appointed in July 2016. Minister for Religious Endowments. As a Government Minister he shares the regimes violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,16/10/2012,31/12/2020,19/01/2021,12765 +AL SAYED,Mohammed,Abdul,,,,,,,,00/00/1958,Tartus,,Syria,,,,,Minister of Religious Endowments,,,,,,,,,"(UK Sanctions List Ref):SYR0160 (UK Statement of Reasons):State Minister, appointed in July 2016. Minister for Religious Endowments. As a Government Minister he shares the regimes violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,19/01/2021,12765 +AL SAYED,Mohammed,Abdul,Sattar,,,,,,,00/00/1958,Tartus,,Syria,,,,,Minister of Religious Endowments,,,,,,,,,"(UK Sanctions List Ref):SYR0160 (UK Statement of Reasons):State Minister, appointed in July 2016. Minister for Religious Endowments. As a Government Minister he shares the regimes violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,19/01/2021,12765 +AL SEHRI,Musherref,,,,,,,,,00/00/1982,,,Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0034 (UK Statement of Reasons):Turki Muserref M. Alsehri was an Intelligence Officer in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi on the 2 October 2018 as part of the 15 man team sent to Istanbul, Turkey, by Saudi authorities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13879 +AL SEHRI,Turki,,,,,,,,,00/00/1982,,,Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0034 (UK Statement of Reasons):Turki Muserref M. Alsehri was an Intelligence Officer in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi on the 2 October 2018 as part of the 15 man team sent to Istanbul, Turkey, by Saudi authorities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13879 +AL SEHRI,Turki,Muserref,M.,,,,,,,00/00/1982,,,Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0034 (UK Statement of Reasons):Turki Muserref M. Alsehri was an Intelligence Officer in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi on the 2 October 2018 as part of the 15 man team sent to Istanbul, Turkey, by Saudi authorities. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13879 +AL SEHRI,Waleed,Abdullah,M.,,,,,,,05/11/1980,Riyadh,Saudi Arabia,Saudi Arabia,R120404,,,,"Royal Guard, Major",,,,,,,,,"(UK Sanctions List Ref):GHR0032 (UK Statement of Reasons):Waleed Abdullah M. Alsehri held the positions of Royal Guard and Major in Saudi Arabia. He was directly involved in the unlawful killing of Jamal Khashoggi in the Saudi Consulate in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13871 +AL SEHRI,Walid,,,,,,,,,05/11/1980,Riyadh,Saudi Arabia,Saudi Arabia,R120404,,,,"Royal Guard, Major",,,,,,,,,"(UK Sanctions List Ref):GHR0032 (UK Statement of Reasons):Waleed Abdullah M. Alsehri held the positions of Royal Guard and Major in Saudi Arabia. He was directly involved in the unlawful killing of Jamal Khashoggi in the Saudi Consulate in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13871 +AL SHAE,Saleh,,,,,,,,,,"Al Safrah, Sa’dah Governorate",Yemen,Yemen,(1) 05274639 (2) 00481779,"(1) Yemen, issued on 7 Oct. 2013. Expiration date: 7 Oct 2019 (2) Yemen, issued on 9 Dec. 2000. Expiration date: 9 Dec 2006.",(1) 1388114 (2) 10010057512,(1) Yemen (2) Yemen,(1) Major General (2) ‘Judicial Custodian’ of properties and funds owned by Houthis’ opponents,,,,,,,,Yemen,"(UK Sanctions List Ref):YEM0009 (UN Ref):YEi.007 With reference to the UN Panel of Experts’ Statement of Case of 28 August 2019, Saleh Mesfer Saleh Al Shaer has engaged in acts that threaten the peace, security, and stability of Yemen thereby meeting the criteria for designation as laid out in Paragraph 17 of Resolution 2140 (2014). Serving as the Houthis’ Assistant Minister of Defence for Logistics, Saleh Mesfer Saleh Al Shaer assisted the Houthis in acquiring smuggled arms and weapons. He is also listed in connection with his direct involvement since early 2018 in the widespread and unlawful appropriation of assets and entities owned by private individuals under arrest by the Houthis or forced to take refuge outside of Yemen, in his capacity as ‘Judicial Custodian’ and in violation of international humanitarian law. Al Shaer has used his authority and a Sana'a based network comprising members of his family, a special criminal court, the national security bureau, the central bank, the registrar services of the Yemeni Ministry of Trade and Industry, and some private banks in order to arbitrarily dispossess selected private individuals and entities of their wealth without any due judicial process or a possibility of redress. (Gender):Male",Individual,Primary name variation,Low quality,Yemen,10/11/2021,09/11/2021,09/12/2021,14141 +AL SHAER,Saleh,Mesfer,,,,,,,,,"Al Safrah, Sa’dah Governorate",Yemen,Yemen,(1) 05274639 (2) 00481779,"(1) Yemen, issued on 7 Oct. 2013. Expiration date: 7 Oct 2019 (2) Yemen, issued on 9 Dec. 2000. Expiration date: 9 Dec 2006.",(1) 1388114 (2) 10010057512,(1) Yemen (2) Yemen,(1) Major General (2) ‘Judicial Custodian’ of properties and funds owned by Houthis’ opponents,,,,,,,,Yemen,"(UK Sanctions List Ref):YEM0009 (UN Ref):YEi.007 With reference to the UN Panel of Experts’ Statement of Case of 28 August 2019, Saleh Mesfer Saleh Al Shaer has engaged in acts that threaten the peace, security, and stability of Yemen thereby meeting the criteria for designation as laid out in Paragraph 17 of Resolution 2140 (2014). Serving as the Houthis’ Assistant Minister of Defence for Logistics, Saleh Mesfer Saleh Al Shaer assisted the Houthis in acquiring smuggled arms and weapons. He is also listed in connection with his direct involvement since early 2018 in the widespread and unlawful appropriation of assets and entities owned by private individuals under arrest by the Houthis or forced to take refuge outside of Yemen, in his capacity as ‘Judicial Custodian’ and in violation of international humanitarian law. Al Shaer has used his authority and a Sana'a based network comprising members of his family, a special criminal court, the national security bureau, the central bank, the registrar services of the Yemeni Ministry of Trade and Industry, and some private banks in order to arbitrarily dispossess selected private individuals and entities of their wealth without any due judicial process or a possibility of redress. (Gender):Male",Individual,Primary name variation,Low quality,Yemen,10/11/2021,09/11/2021,09/12/2021,14141 +AL SHAER,Saleh,Mosfer,Saleh,,,,,,,,"Al Safrah, Sa’dah Governorate",Yemen,Yemen,(1) 05274639 (2) 00481779,"(1) Yemen, issued on 7 Oct. 2013. Expiration date: 7 Oct 2019 (2) Yemen, issued on 9 Dec. 2000. Expiration date: 9 Dec 2006.",(1) 1388114 (2) 10010057512,(1) Yemen (2) Yemen,(1) Major General (2) ‘Judicial Custodian’ of properties and funds owned by Houthis’ opponents,,,,,,,,Yemen,"(UK Sanctions List Ref):YEM0009 (UN Ref):YEi.007 With reference to the UN Panel of Experts’ Statement of Case of 28 August 2019, Saleh Mesfer Saleh Al Shaer has engaged in acts that threaten the peace, security, and stability of Yemen thereby meeting the criteria for designation as laid out in Paragraph 17 of Resolution 2140 (2014). Serving as the Houthis’ Assistant Minister of Defence for Logistics, Saleh Mesfer Saleh Al Shaer assisted the Houthis in acquiring smuggled arms and weapons. He is also listed in connection with his direct involvement since early 2018 in the widespread and unlawful appropriation of assets and entities owned by private individuals under arrest by the Houthis or forced to take refuge outside of Yemen, in his capacity as ‘Judicial Custodian’ and in violation of international humanitarian law. Al Shaer has used his authority and a Sana'a based network comprising members of his family, a special criminal court, the national security bureau, the central bank, the registrar services of the Yemeni Ministry of Trade and Industry, and some private banks in order to arbitrarily dispossess selected private individuals and entities of their wealth without any due judicial process or a possibility of redress. (Gender):Male",Individual,Primary name variation,Low quality,Yemen,10/11/2021,09/11/2021,09/12/2021,14141 +AL SHAER,Saleh,Musfer,Saleh,,,,,,,,"Al Safrah, Sa’dah Governorate",Yemen,Yemen,(1) 05274639 (2) 00481779,"(1) Yemen, issued on 7 Oct. 2013. Expiration date: 7 Oct 2019 (2) Yemen, issued on 9 Dec. 2000. Expiration date: 9 Dec 2006.",(1) 1388114 (2) 10010057512,(1) Yemen (2) Yemen,(1) Major General (2) ‘Judicial Custodian’ of properties and funds owned by Houthis’ opponents,,,,,,,,Yemen,"(UK Sanctions List Ref):YEM0009 (UN Ref):YEi.007 With reference to the UN Panel of Experts’ Statement of Case of 28 August 2019, Saleh Mesfer Saleh Al Shaer has engaged in acts that threaten the peace, security, and stability of Yemen thereby meeting the criteria for designation as laid out in Paragraph 17 of Resolution 2140 (2014). Serving as the Houthis’ Assistant Minister of Defence for Logistics, Saleh Mesfer Saleh Al Shaer assisted the Houthis in acquiring smuggled arms and weapons. He is also listed in connection with his direct involvement since early 2018 in the widespread and unlawful appropriation of assets and entities owned by private individuals under arrest by the Houthis or forced to take refuge outside of Yemen, in his capacity as ‘Judicial Custodian’ and in violation of international humanitarian law. Al Shaer has used his authority and a Sana'a based network comprising members of his family, a special criminal court, the national security bureau, the central bank, the registrar services of the Yemeni Ministry of Trade and Industry, and some private banks in order to arbitrarily dispossess selected private individuals and entities of their wealth without any due judicial process or a possibility of redress. (Gender):Male",Individual,Primary name variation,Low quality,Yemen,10/11/2021,09/11/2021,09/12/2021,14141 +AL SHAER,Saleh,Mesfer,Saleh,,,,صالح مسفر صالح الشاعر,,,,"Al Safrah, Sa’dah Governorate",Yemen,Yemen,(1) 05274639 (2) 00481779,"(1) Yemen, issued on 7 Oct. 2013. Expiration date: 7 Oct 2019 (2) Yemen, issued on 9 Dec. 2000. Expiration date: 9 Dec 2006.",(1) 1388114 (2) 10010057512,(1) Yemen (2) Yemen,(1) Major General (2) ‘Judicial Custodian’ of properties and funds owned by Houthis’ opponents,,,,,,,,Yemen,"(UK Sanctions List Ref):YEM0009 (UN Ref):YEi.007 With reference to the UN Panel of Experts’ Statement of Case of 28 August 2019, Saleh Mesfer Saleh Al Shaer has engaged in acts that threaten the peace, security, and stability of Yemen thereby meeting the criteria for designation as laid out in Paragraph 17 of Resolution 2140 (2014). Serving as the Houthis’ Assistant Minister of Defence for Logistics, Saleh Mesfer Saleh Al Shaer assisted the Houthis in acquiring smuggled arms and weapons. He is also listed in connection with his direct involvement since early 2018 in the widespread and unlawful appropriation of assets and entities owned by private individuals under arrest by the Houthis or forced to take refuge outside of Yemen, in his capacity as ‘Judicial Custodian’ and in violation of international humanitarian law. Al Shaer has used his authority and a Sana'a based network comprising members of his family, a special criminal court, the national security bureau, the central bank, the registrar services of the Yemeni Ministry of Trade and Industry, and some private banks in order to arbitrarily dispossess selected private individuals and entities of their wealth without any due judicial process or a possibility of redress. (Gender):Male",Individual,Primary name,,Yemen,10/11/2021,09/11/2021,09/12/2021,14141 +AL SHA'IR,Saleh,,,,,,,,,,"Al Safrah, Sa’dah Governorate",Yemen,Yemen,(1) 05274639 (2) 00481779,"(1) Yemen, issued on 7 Oct. 2013. Expiration date: 7 Oct 2019 (2) Yemen, issued on 9 Dec. 2000. Expiration date: 9 Dec 2006.",(1) 1388114 (2) 10010057512,(1) Yemen (2) Yemen,(1) Major General (2) ‘Judicial Custodian’ of properties and funds owned by Houthis’ opponents,,,,,,,,Yemen,"(UK Sanctions List Ref):YEM0009 (UN Ref):YEi.007 With reference to the UN Panel of Experts’ Statement of Case of 28 August 2019, Saleh Mesfer Saleh Al Shaer has engaged in acts that threaten the peace, security, and stability of Yemen thereby meeting the criteria for designation as laid out in Paragraph 17 of Resolution 2140 (2014). Serving as the Houthis’ Assistant Minister of Defence for Logistics, Saleh Mesfer Saleh Al Shaer assisted the Houthis in acquiring smuggled arms and weapons. He is also listed in connection with his direct involvement since early 2018 in the widespread and unlawful appropriation of assets and entities owned by private individuals under arrest by the Houthis or forced to take refuge outside of Yemen, in his capacity as ‘Judicial Custodian’ and in violation of international humanitarian law. Al Shaer has used his authority and a Sana'a based network comprising members of his family, a special criminal court, the national security bureau, the central bank, the registrar services of the Yemeni Ministry of Trade and Industry, and some private banks in order to arbitrarily dispossess selected private individuals and entities of their wealth without any due judicial process or a possibility of redress. (Gender):Male",Individual,Primary name variation,Low quality,Yemen,10/11/2021,09/11/2021,09/12/2021,14141 +AL SHAM COMPANY,,,,,,,,,,,,,,,,,,,P.O. Box 9525,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,,,Syria,"(UK Sanctions List Ref):SYR0311 Transport (UK Statement of Reasons):Economic entity financing the regime. Associated with Cham Holding and Rami Makhlouf. A subsidiary company of Cham Holding, which is controlled by Rami Makhlouf; largest holding company in Syria, benefiting from and supporting the regime. (Phone number):+963 11 99 62 (Type of entity):Private (Subsidiaries):Cham Holding (parent), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525 (Parent company):Parent and branches",Entity,AKA,,Syria,05/09/2011,31/12/2020,14/02/2022,12062 +AL SHAM COMPANY,,,,,,,,,,,,,,,,,,,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,P.O. Box 9525,,,,"(UK Sanctions List Ref):SYR0288 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime (Phone number):+963 11 9962 (Type of entity):Investment. Private (Subsidiaries):Cham Holding (parent), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525 (Parent company):Cham Holding",Entity,AKA,,Syria,05/09/2011,31/12/2020,31/12/2020,12063 +AL SHAM COMPANY,,,,,,,,,,,,,,,,,,,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,P.O. Box 9525,,,,"(UK Sanctions List Ref):SYR0287 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime (Phone number):+963 11 668 14000. +963 11 673 1044. +963 11 9962 (Website):www.chamholding.sy (Email address):info@chamholding.sy (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525",Entity,AKA,,Syria,26/09/2011,31/12/2020,31/12/2020,12152 +AL SHAMI,Abu,Amr,,,,,,,,00/00/1979,,Saudi Arabia,,,,,,,,,,,,Homs,,Syria,"(UK Sanctions List Ref):AQD0138 (UN Ref):QDi.361 Shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) and in charge of ISIL’s media arm. ISIL’s provincial leader for Homs, Syrian Arab Republic as of mid-2014. Dubbed as the ISIL’s “kidnapper-in-chief”. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896778. Address location Homs, Syria, location as at Sep. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13292 +AL SHAQAQI,Abdul,Rahim,,,,,,,,22/02/1981,Tarhuna,Libya,Libya,H4FG6H2J,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0073 (UK Statement of Reasons):Abdurahem al-Kani is designated on the basis that there are reasonable grounds to suspect that he was one of the leaders of the Al-Kaniyat militia and involved in the activities of the militia in Tarhuna, including in the commission of serious human rights abuses, or violations of international humanitarian law. There are reasonable grounds to suspect that, under the leadership of Abdurahem al-Kani, the militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tarhouna. There are reasonable grounds to suspect that he is involved in the activities of the militia and that those activities threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,Primary name variation,,Libya,13/05/2021,07/05/2021,13/05/2021,14106 +AL SHAQAQI,Abdurahem,,,,,,,,,22/02/1981,Tarhuna,Libya,Libya,H4FG6H2J,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0073 (UK Statement of Reasons):Abdurahem al-Kani is designated on the basis that there are reasonable grounds to suspect that he was one of the leaders of the Al-Kaniyat militia and involved in the activities of the militia in Tarhuna, including in the commission of serious human rights abuses, or violations of international humanitarian law. There are reasonable grounds to suspect that, under the leadership of Abdurahem al-Kani, the militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tarhouna. There are reasonable grounds to suspect that he is involved in the activities of the militia and that those activities threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,Primary name variation,,Libya,13/05/2021,07/05/2021,13/05/2021,14106 +AL SHAQAQI,Abdurrahim,,,,,,,,,22/02/1981,Tarhuna,Libya,Libya,H4FG6H2J,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0073 (UK Statement of Reasons):Abdurahem al-Kani is designated on the basis that there are reasonable grounds to suspect that he was one of the leaders of the Al-Kaniyat militia and involved in the activities of the militia in Tarhuna, including in the commission of serious human rights abuses, or violations of international humanitarian law. There are reasonable grounds to suspect that, under the leadership of Abdurahem al-Kani, the militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tarhouna. There are reasonable grounds to suspect that he is involved in the activities of the militia and that those activities threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,Primary name variation,,Libya,13/05/2021,07/05/2021,13/05/2021,14106 +AL SHAR,Farouk,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +AL SHAR,Farouq,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +AL SHAR,Faruq,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +AL SHAR',Farouk,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +AL SHAR',Farouq,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +AL SHAR',Faruq,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +AL SHARA,Farouk,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +AL SHARA,Farouq,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +AL SHARA,Faruq,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +AL SHARA',Farouk,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +AL SHARA',Farouq,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +AL SHARA',Faruq,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +AL SHAREEF,Amar,,,,,,,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +AL SHAREEF,Ammar,,,,,,,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +AL SHAREEF,Ammar,Medhat,,,,,,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +AL SHEBEL,Luna,,,,,,,,,01/09/1975,Suweida,Syria,Syria,,,,,Media Adviser to President Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0377 (UK Statement of Reasons):Adviser to President Assad and a prominent member of his inner circle. As Media Adviser to the President she supports the Syrian regime, which relies on disinformation and a lack of media freedom to repress the civilian population. She is also associated with the Syrian regime through her role as an adviser. (Gender):Female",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,14/02/2022,14070 +AL SHEBIL,Luna,,,,,,,,,01/09/1975,Suweida,Syria,Syria,,,,,Media Adviser to President Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0377 (UK Statement of Reasons):Adviser to President Assad and a prominent member of his inner circle. As Media Adviser to the President she supports the Syrian regime, which relies on disinformation and a lack of media freedom to repress the civilian population. She is also associated with the Syrian regime through her role as an adviser. (Gender):Female",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,14/02/2022,14070 +AL SHIBIL,Luna,,,,,,,,,01/09/1975,Suweida,Syria,Syria,,,,,Media Adviser to President Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0377 (UK Statement of Reasons):Adviser to President Assad and a prominent member of his inner circle. As Media Adviser to the President she supports the Syrian regime, which relies on disinformation and a lack of media freedom to repress the civilian population. She is also associated with the Syrian regime through her role as an adviser. (Gender):Female",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,14/02/2022,14070 +AL SHIBL,Luna,,,,,,,,,01/09/1975,Suweida,Syria,Syria,,,,,Media Adviser to President Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0377 (UK Statement of Reasons):Adviser to President Assad and a prominent member of his inner circle. As Media Adviser to the President she supports the Syrian regime, which relies on disinformation and a lack of media freedom to repress the civilian population. She is also associated with the Syrian regime through her role as an adviser. (Gender):Female",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,14/02/2022,14070 +AL SIBAEI,Yaser,,,,,,,,,,,,,,,,,Former Minsiter of Public Works,,,,,,,,,(UK Sanctions List Ref):SYR0239 (UK Statement of Reasons):Former Minister of Public Works. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12776 +AL SIBAEI,Yasser,,,,,,,,,,,,,,,,,Former Minsiter of Public Works,,,,,,,,,(UK Sanctions List Ref):SYR0239 (UK Statement of Reasons):Former Minister of Public Works. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12776 +AL SIBA'I,Hani,al-Sayyid,,,,,,,,01/03/1961,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +AL SIBA'I,Hani,al-Sayyid,,,,,,,,16/06/1960,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +AL SIBA'II,Yasser,,,,,,,,,,,,,,,,,Former Minsiter of Public Works,,,,,,,,,(UK Sanctions List Ref):SYR0239 (UK Statement of Reasons):Former Minister of Public Works. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,16/10/2012,31/12/2020,31/12/2020,12776 +AL SIKHNY,Adnan,Abdo,,,,,,,,00/00/1961,Aleppo,,,,,,,Former Minister of Industry,,,,,,,,,(UK Sanctions List Ref):SYR0068 (UK Statement of Reasons):Former Minister of Industry. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,19/01/2021,12781 +AL SIKHNY,Adnan,Abdou,,,,,,,,00/00/1961,Aleppo,,,,,,,Former Minister of Industry,,,,,,,,,(UK Sanctions List Ref):SYR0068 (UK Statement of Reasons):Former Minister of Industry. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,19/01/2021,12781 +AL SILSILAH AL DHAHABA,,,,,,,,,,,,,,,,,,,Al-Abbas Street,Karbala,,,,,,Iraq,"(UK Sanctions List Ref):AQD0076 (UN Ref):QDe.154 Money exchange business facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), as of Apr. 2016. Conducted over one hundred financial transfers into ISIL-controlled territory. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116598",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13512 +AL SILSILAH AL DHAHABA,,,,,,,,,,,,,,,,,,,Al-Kadhumi Complex,Al-Harthia,,,,Baghdad,,Iraq,"(UK Sanctions List Ref):AQD0076 (UN Ref):QDe.154 Money exchange business facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), as of Apr. 2016. Conducted over one hundred financial transfers into ISIL-controlled territory. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116598",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13512 +"AL TAIBAH, INTL.",,,,,,,,,,,,,,,,,,,26 Tabhanska Street,,,,,Visoko,,Bosnia and Herzegovina,"(UK Sanctions List Ref):AQD0078 (UN Ref):QDe.108 In 2002-2004, Taibah International – Bosnia offices used premises of the Culture Home in Hadzici, Sarajevo, Bosnia and Herzegovina. The organization was officially registered in Bosnia and Herzegovina as a branch of Taibah International Aid Association under registry number 7. Taibah International – Bosnia offices ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-70/03). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235580",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,31/12/2020,8362 +"AL TAIBAH, INTL.",,,,,,,,,,,,,,,,,,,3 Velika Cilna Ulica,,,,,Visoko,,Bosnia and Herzegovina,"(UK Sanctions List Ref):AQD0078 (UN Ref):QDe.108 In 2002-2004, Taibah International – Bosnia offices used premises of the Culture Home in Hadzici, Sarajevo, Bosnia and Herzegovina. The organization was officially registered in Bosnia and Herzegovina as a branch of Taibah International Aid Association under registry number 7. Taibah International – Bosnia offices ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-70/03). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235580",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,31/12/2020,8362 +"AL TAIBAH, INTL.",,,,,,,,,,,,,,,,,,,6 Avde Smajlovica Street,,,,,Novo Sarajevo,,Bosnia and Herzegovina,"(UK Sanctions List Ref):AQD0078 (UN Ref):QDe.108 In 2002-2004, Taibah International – Bosnia offices used premises of the Culture Home in Hadzici, Sarajevo, Bosnia and Herzegovina. The organization was officially registered in Bosnia and Herzegovina as a branch of Taibah International Aid Association under registry number 7. Taibah International – Bosnia offices ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-70/03). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235580",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,31/12/2020,8362 +AL- TALLI,Abu-Malik,,,,,,,,,17/08/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,Arsal,Bekaa,,Lebanon,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +AL- TALLI,Abu-Malik,,,,,,,,,17/08/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +AL- TALLI,Abu-Malik,,,,,,,,,01/01/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +AL- TALLI,Abu-Malik,,,,,,,,,01/01/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,Arsal,Bekaa,,Lebanon,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +AL TANZANI,Ahmad,,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AL TANZANI,Ahmad,,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AL TANZANI,Ahmad,,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AL TANZANI,Ahmad,,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AL TAWENI,,,,,,,,,,,,,,,,,,,Building Damascus Tajhez,P.O. Box 4325,,,,,,,"(UK Sanctions List Ref):SYR0277 (UK Statement of Reasons):State-owned bank operating under the supervision of the Syrian Ministry of the Economy, operating on behalf of government agencies. Provides financial support to the regime (Phone number):+963 11-221-3462 (Website):www.agrobank.org (Type of entity):State-owned bank",Entity,AKA,,Syria,24/01/2012,31/12/2020,31/12/2020,12486 +AL TOKHI,Qari,Saifullah,,,,,,,,00/00/1964,"Daraz Village, Jaldak wa Tarnak District, Zabul Province",Afghanistan,Afghanistan,,,,,,Chalo Bawari area,,Quetta City,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0134 (UN Ref):TAi.168 Believed to be in Afghanistan/Pakistan border area. Taliban Shadow Deputy Governor and operational commander in Zabul Province, Afghanistan, responsible for the laying of improvised explosive devices and the organisation of suicide attacks. Physical description: height: 180 cm; weight: approximately 90 kg; build: athletic build; eye colour: brown; hair colour: red; complexion: medium brown. Distinguishing physical marks: large round face, full beard, and walks with a limp due to plastic prosthesis in place of his left lower leg. Ethnic background: Pashtun; Belongs to Tokhi tribe, Barkozai sub-tribe (alternative tribe spelling: Torchi). Barkozai (alternative tribe spelling: Bakorzai, باکورزی (sub-tribe, Kishta Barkorzai (lower Barkorzai) clan. Marital Status: married. Father’s name: Agha Mohammad. Brother’s name: Humdullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,19/03/2014,19/03/2014,01/02/2021,13142 +AL TOUNISI,Abou,Omar,,,,,,,,03/05/1982,Tunis,Tunisia,Tunisia,Z050399,Tunisian. Issued on 9.12.2003. Expired on 8.12.2008.,04711809,Tunisian National Identity Card number. Issued on 13.11.2003.,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0320 (UN Ref):QDi.354 Physical description: eye colour: brown; height: 172cm. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Previous occupation: worker. A dangerous and active member of Al Qaida in Iraq (QDe.115) in 2004, also active in facilitating and hosting members of Ansar al-Shari’a in Tunisia (QDe.143) in Syria. Sentenced, in absentia, on 30 October 2007, to 24 years imprisonment for terrorist activities by the Appeals Court of Tunis. Father’s name is Taher Ouni Harzi, mother’s name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5860633. Address country Syria (as at March 2015), Iraq (possibly as at March 2015), (previous location)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/04/2015,10/04/2015,12/01/2022,13248 +AL TOUNISI,Abou,Omar,,,,,,,,03/05/1982,Tunis,Tunisia,Tunisia,Z050399,Tunisian. Issued on 9.12.2003. Expired on 8.12.2008.,04711809,Tunisian National Identity Card number. Issued on 13.11.2003.,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0320 (UN Ref):QDi.354 Physical description: eye colour: brown; height: 172cm. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Previous occupation: worker. A dangerous and active member of Al Qaida in Iraq (QDe.115) in 2004, also active in facilitating and hosting members of Ansar al-Shari’a in Tunisia (QDe.143) in Syria. Sentenced, in absentia, on 30 October 2007, to 24 years imprisonment for terrorist activities by the Appeals Court of Tunis. Father’s name is Taher Ouni Harzi, mother’s name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5860633. Address country Syria (as at March 2015), Iraq (possibly as at March 2015), (previous location)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/04/2015,10/04/2015,12/01/2022,13248 +AL TOUNISI,Abou,Omar,,,,,,,,03/05/1982,Tunis,Tunisia,Tunisia,Z050399,Tunisian. Issued on 9.12.2003. Expired on 8.12.2008.,04711809,Tunisian National Identity Card number. Issued on 13.11.2003.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0320 (UN Ref):QDi.354 Physical description: eye colour: brown; height: 172cm. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Previous occupation: worker. A dangerous and active member of Al Qaida in Iraq (QDe.115) in 2004, also active in facilitating and hosting members of Ansar al-Shari’a in Tunisia (QDe.143) in Syria. Sentenced, in absentia, on 30 October 2007, to 24 years imprisonment for terrorist activities by the Appeals Court of Tunis. Father’s name is Taher Ouni Harzi, mother’s name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5860633. Address country Syria (as at March 2015), Iraq (possibly as at March 2015), (previous location)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/04/2015,10/04/2015,12/01/2022,13248 +AL TOUNISI,Abou,Omar,,,,,,,,03/05/1982,Tunis,Tunisia,Tunisia,Z050399,Tunisian. Issued on 9.12.2003. Expired on 8.12.2008.,04711809,Tunisian National Identity Card number. Issued on 13.11.2003.,,18 Mediterranean Street,Ariana,,,,,,Tunisia,"(UK Sanctions List Ref):AQD0320 (UN Ref):QDi.354 Physical description: eye colour: brown; height: 172cm. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Previous occupation: worker. A dangerous and active member of Al Qaida in Iraq (QDe.115) in 2004, also active in facilitating and hosting members of Ansar al-Shari’a in Tunisia (QDe.143) in Syria. Sentenced, in absentia, on 30 October 2007, to 24 years imprisonment for terrorist activities by the Appeals Court of Tunis. Father’s name is Taher Ouni Harzi, mother’s name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5860633. Address country Syria (as at March 2015), Iraq (possibly as at March 2015), (previous location)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/04/2015,10/04/2015,12/01/2022,13248 +AL WAFA,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0084 (UN Ref):QDe.015 Headquarters was in Kandahar, Afghanistan as at 2001. Wafa was a component of Al-Qaida (QDe.004) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6972 +AL WAFA,,,,,,,,,,,,,,,,,,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0084 (UN Ref):QDe.015 Headquarters was in Kandahar, Afghanistan as at 2001. Wafa was a component of Al-Qaida (QDe.004) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6972 +AL WAFA,,,,,,,,,,,,,,,,,,,,,,,,,,United Arab Emirates,"(UK Sanctions List Ref):AQD0084 (UN Ref):QDe.015 Headquarters was in Kandahar, Afghanistan as at 2001. Wafa was a component of Al-Qaida (QDe.004) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6972 +AL WAFA,,,,,,,,,,,,,,,,,,,Jordan House No. 125,Street 54,Phase II Hayatabad,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0084 (UN Ref):QDe.015 Headquarters was in Kandahar, Afghanistan as at 2001. Wafa was a component of Al-Qaida (QDe.004) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6972 +AL WAFA ORGANIZATION,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0084 (UN Ref):QDe.015 Headquarters was in Kandahar, Afghanistan as at 2001. Wafa was a component of Al-Qaida (QDe.004) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6972 +AL WAFA ORGANIZATION,,,,,,,,,,,,,,,,,,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0084 (UN Ref):QDe.015 Headquarters was in Kandahar, Afghanistan as at 2001. Wafa was a component of Al-Qaida (QDe.004) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6972 +AL WAFA ORGANIZATION,,,,,,,,,,,,,,,,,,,,,,,,,,United Arab Emirates,"(UK Sanctions List Ref):AQD0084 (UN Ref):QDe.015 Headquarters was in Kandahar, Afghanistan as at 2001. Wafa was a component of Al-Qaida (QDe.004) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6972 +AL WAFA ORGANIZATION,,,,,,,,,,,,,,,,,,,Jordan House No. 125,Street 54,Phase II Hayatabad,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0084 (UN Ref):QDe.015 Headquarters was in Kandahar, Afghanistan as at 2001. Wafa was a component of Al-Qaida (QDe.004) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6972 +AL WAKEEL,Simon,,,,,,,,,,,,Syria,,,,,Commander of the National Defence Forces in the city of Maharda (Hama),,,,,,,,,"(UK Sanctions List Ref):RUS1544 (UK Statement of Reasons):Commander Simon AL WAKIL has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, (1) promoting and supporting Russia’s invasion of Ukraine and (2) overseeing the recruitment of Syrian mercenaries to fight alongside Russia in Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/07/2022,26/07/2022,26/07/2022,15471 +AL WAKIL,Simon,,,,,,,,,,,,Syria,,,,,Commander of the National Defence Forces in the city of Maharda (Hama),,,,,,,,,"(UK Sanctions List Ref):RUS1544 (UK Statement of Reasons):Commander Simon AL WAKIL has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, (1) promoting and supporting Russia’s invasion of Ukraine and (2) overseeing the recruitment of Syrian mercenaries to fight alongside Russia in Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15471 +AL WAQIL,Simon,,,,,,,,,,,,Syria,,,,,Commander of the National Defence Forces in the city of Maharda (Hama),,,,,,,,,"(UK Sanctions List Ref):RUS1544 (UK Statement of Reasons):Commander Simon AL WAKIL has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, (1) promoting and supporting Russia’s invasion of Ukraine and (2) overseeing the recruitment of Syrian mercenaries to fight alongside Russia in Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/07/2022,26/07/2022,26/07/2022,15471 +AL WASEL AND BABEL GENERAL TRADING LLC,,,,,,,,,,,,,,,,,,,,,,,Villa in the Harasiyah area,Baghdad,,Iraq,(UK Sanctions List Ref):IRQ0051 (UN Ref):IQe.197,Entity,Primary name,,Iraq,05/05/2004,26/04/2004,31/12/2020,8276 +AL WASEL AND BABEL GENERAL TRADING LLC,,,,,,,,,,,,,,,,,,,Ibrahim Saeed Lootah Building,Al Ramool Street,PO Box 10631 and 638,,Rashidiya,Dubai,,United Arab Emirates,(UK Sanctions List Ref):IRQ0051 (UN Ref):IQe.197,Entity,Primary name,,Iraq,05/05/2004,26/04/2004,31/12/2020,8276 +AL WASEL AND BABEL GENERAL TRADING LLC,,,,,,,,,,,,,,,,,,,Lootah Building,Airport Road,near Aviation Club,,Rashidya,Dubai,,United Arab Emirates,(UK Sanctions List Ref):IRQ0051 (UN Ref):IQe.197,Entity,Primary name,,Iraq,05/05/2004,26/04/2004,31/12/2020,8276 +AL WATAN,,,,,,,الوطن,,,,,,,,,,,,Al Iqtissadiya,,,,,,,,(UK Sanctions List Ref):SYR0280 Owner is Rami Mahklouf who was listed 9 May 2011. Fax is +963 11 2139928 (UK Statement of Reasons):The entity is a daily newspaper which participates in campaigns to spread disinformation and incite violence against demonstrators (Phone number):+963 11 2137400 (Website):www.alwatan.sy (Type of entity):Private,Entity,Primary name,,Syria,02/12/2011,31/12/2020,18/02/2021,12425 +AL WATAN,,,,,,,الوطن,,,,,,,,,,,,Al Watan Newspaper,Duty Free Zone,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0280 Owner is Rami Mahklouf who was listed 9 May 2011. Fax is +963 11 2139928 (UK Statement of Reasons):The entity is a daily newspaper which participates in campaigns to spread disinformation and incite violence against demonstrators (Phone number):+963 11 2137400 (Website):www.alwatan.sy (Type of entity):Private,Entity,Primary name,,Syria,02/12/2011,31/12/2020,18/02/2021,12425 +AL WATAN,,,,,,,الوطن,,,,,,,,,,,,Syrian Arab Publishing and Distributing Company,,,,,,,,(UK Sanctions List Ref):SYR0280 Owner is Rami Mahklouf who was listed 9 May 2011. Fax is +963 11 2139928 (UK Statement of Reasons):The entity is a daily newspaper which participates in campaigns to spread disinformation and incite violence against demonstrators (Phone number):+963 11 2137400 (Website):www.alwatan.sy (Type of entity):Private,Entity,Primary name,,Syria,02/12/2011,31/12/2020,18/02/2021,12425 +AL WATAN NEWSPAPER,,,,,,,,,,,,,,,,,,,Al Iqtissadiya,,,,,,,,(UK Sanctions List Ref):SYR0280 Owner is Rami Mahklouf who was listed 9 May 2011. Fax is +963 11 2139928 (UK Statement of Reasons):The entity is a daily newspaper which participates in campaigns to spread disinformation and incite violence against demonstrators (Phone number):+963 11 2137400 (Website):www.alwatan.sy (Type of entity):Private,Entity,AKA,,Syria,02/12/2011,31/12/2020,18/02/2021,12425 +AL WATAN NEWSPAPER,,,,,,,,,,,,,,,,,,,Al Watan Newspaper,Duty Free Zone,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0280 Owner is Rami Mahklouf who was listed 9 May 2011. Fax is +963 11 2139928 (UK Statement of Reasons):The entity is a daily newspaper which participates in campaigns to spread disinformation and incite violence against demonstrators (Phone number):+963 11 2137400 (Website):www.alwatan.sy (Type of entity):Private,Entity,AKA,,Syria,02/12/2011,31/12/2020,18/02/2021,12425 +AL WATAN NEWSPAPER,,,,,,,,,,,,,,,,,,,Syrian Arab Publishing and Distributing Company,,,,,,,,(UK Sanctions List Ref):SYR0280 Owner is Rami Mahklouf who was listed 9 May 2011. Fax is +963 11 2139928 (UK Statement of Reasons):The entity is a daily newspaper which participates in campaigns to spread disinformation and incite violence against demonstrators (Phone number):+963 11 2137400 (Website):www.alwatan.sy (Type of entity):Private,Entity,AKA,,Syria,02/12/2011,31/12/2020,18/02/2021,12425 +AL WEZ,Hazwan,,,,,,,,,00/00/1962,Damascus,Syria,Syria,,,,,Former Minister of Education,,,,,,,,,"(UK Sanctions List Ref):SYR0086 Links to Bashar Asad (UK Statement of Reasons):Former Minister of Education, appointed in July 2016.  As a former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,16/10/2012,31/12/2020,13/05/2022,12772 +AL YASIN,Javad,,,,,,,,,,,,,,,,,Former Head of the Research centre for Explosion and Impact (CREST/METFAZ),,,,,,,,,(UK Sanctions List Ref):INU0023 (UK Statement of Reasons):Former Head of the Research Centre for Explosion and Impact (CREST/METFAZ) (Gender):Male,Individual,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12247 +AL ZACKY,Al Abu,Syekh,,,,,,,,20/07/1966,Central Java,Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0331 (UN Ref):QDi.294 Senior member of Jemaah Islamiyah (QDe.092) involved in planning and funding multiple terrorist attacks in the Philippines and Indonesia. Provided training to Abu Sayyaf Group (QDe.001). Convicted for his role in the 2002 Bali bombings and sentenced to 20 years in prison in Jun. 2012. Remains in custody in Indonesia as at May 2015. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173385,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,12/01/2022,12021 +AL ZAFIR,Ali,,,,,,,,,00/00/1962,Tartus,,Syria,,,,,Former Minister of Communications and Technology,,,,,,,,,"(UK Sanctions List Ref):SYR0010 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Communications and Technology. As a Former Government Minister, shares responsibility for the violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13398 +AL ZAHRANI,Mohammad,Saad,H.,,,,,,,08/03/1988,Riyadh,Saudi Arabia,Saudi Arabia,T233763,,1060613203,,Intelligence Officer,,,,,,,,,"(UK Sanctions List Ref):GHR0041 (UK Statement of Reasons):Mohammad Saad H. Alzahrani held the position of Intelligence Officer in Saudi Arabia. He was present during the unlawful killing of Jamal Khashoggi in the Saudi Consulate in Istanbul on 2 October 2018, and played an active part of the 15 man team sent to Turkey by Saudi authorities, including through the concealment of evidence relating to the killing. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,16/02/2022,13892 +AL ZAMIL,Ghassan,,,,,,,,,00/00/1963,Damascus,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0371 (UK Statement of Reasons):Minister of Electricity. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,06/11/2020,31/12/2020,31/12/2020,14001 +AL ZAWAHARI,Ayman,,,,,,,,,19/06/1951,Giza,Egypt,Egypt,(1) 1084010 (2) 19820215,(1) Egyptian (2) - .,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0126 (UN Ref):QDi.006 Leader of Al-Qaida (QDe.004). Former operational and military leader of Egyptian Islamic Jihad (QDe.003), was a close associate of Usama Bin Laden (deceased). Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487197",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7016 +AL ZAYDI,Ghalib,,,,,,,,,00/00/1975,"Raqqah Region, Marib Governorate",Yemen,Yemen,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0177 (UN Ref):QDi.401 A leader of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) in Marib Governorate, Yemen since 2015. Provided AQAP with weapons, funding and recruits. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13448 +AL ZAYDI,Ghalib,,,,,,,,,00/00/1970,"Raqqah Region, Marib Governorate",Yemen,Yemen,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0177 (UN Ref):QDi.401 A leader of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) in Marib Governorate, Yemen since 2015. Provided AQAP with weapons, funding and recruits. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13448 +AL ZERAEI,,,,,,,,,,,,,,,,,,,Building Damascus Tajhez,P.O. Box 4325,,,,,,,"(UK Sanctions List Ref):SYR0277 (UK Statement of Reasons):State-owned bank operating under the supervision of the Syrian Ministry of the Economy, operating on behalf of government agencies. Provides financial support to the regime (Phone number):+963 11-221-3462 (Website):www.agrobank.org (Type of entity):State-owned bank",Entity,AKA,,Syria,24/01/2012,31/12/2020,31/12/2020,12486 +ALA,Abou,,,,,,,,,01/01/1967,"M’Hamid, Wilaya (province) of Sidi Bel Abbes",Algeria,Algeria,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0333 (UN Ref):QDi.249 Belongs to the leadership of the Organization of Al-Qaida in the Islamic Maghreb (listed under permanent reference number QDe.014). Located in Northern Mali as of Jun. 2008. Mother’s name is Zohra Fares. Father’s name is Mohamed. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1274977,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,12/01/2022,10690 +AL-ABBAS,Amjad,,,,,,أمجدعباس,,,,,,Syria,,,,,Former Head of Political Security in Banyas,,,,,,,,,"(UK Sanctions List Ref):SYR0076 (UK Statement of Reasons):Former Head of Political Security in Banyas, involved in violence against demonstrators in Baida. (Gender):Male",Individual,Primary name,,Syria,10/05/2011,31/12/2020,13/05/2022,11912 +AL-ABDALLAH,,,,,,,,,,,,,,,,,,Head of the Latakia Branch of the Syrian Air Force Intelligence Service,,,,,,,,,(UK Sanctions List Ref):SYR0223 (UK Statement of Reasons):Head of Latakia branch of the Air Force Intelligence Service. Responsible for the torture of opponents in custody. (Gender):Male,Individual,AKA,,Syria,24/07/2012,31/12/2020,31/12/2020,12714 +AL-ABDALLAH,Saheil,,,,,,,,,,,,,,,,,Head of the Latakia Branch of the Syrian Air Force Intelligence Service,,,,,,,,,(UK Sanctions List Ref):SYR0223 (UK Statement of Reasons):Head of Latakia branch of the Air Force Intelligence Service. Responsible for the torture of opponents in custody. (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12714 +AL-ABDALLAH,Subhi,Ahmad,,,,,,,,01/01/1951,,,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0221 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12770 +AL-ABDALLAH,Suhail,,,,,,,,,,,,,,,,,Head of the Latakia Branch of the Syrian Air Force Intelligence Service,,,,,,,,,(UK Sanctions List Ref):SYR0223 (UK Statement of Reasons):Head of Latakia branch of the Air Force Intelligence Service. Responsible for the torture of opponents in custody. (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12714 +AL-ABDALLAH,Nabel,,,,,,,,,,,,Syria,,,,,Commander of the National Defence Forces in the city of Suqaylabiyah,,,,,,,,,"(UK Sanctions List Ref):RUS1545 (UK Statement of Reasons):Commander Nabeul AL-ABDULLAH has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, (1) promoting and supporting Russia’s invasion of Ukraine and (2) overseeing the recruitment of Syrian mercenaries to fight alongside Russia in Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/07/2022,26/07/2022,26/07/2022,15473 +AL-ABDULLA,Khalaf,Sleiman,,,,,,,,00/00/1960,Deir ez-Zor,Syria,Syria,,,,,Former Minister for Labour,,,,,,,,,(UK Sanctions List Ref):SYR0120 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,31/12/2020,13155 +AL-ABDULLAH,Khalaf,Sleiman,,,,,,,,00/00/1960,Deir ez-Zor,Syria,Syria,,,,,Former Minister for Labour,,,,,,,,,(UK Sanctions List Ref):SYR0120 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,31/12/2020,13155 +AL-ABDULLAH,Saheil,,,,,,,,,,,,,,,,,Head of the Latakia Branch of the Syrian Air Force Intelligence Service,,,,,,,,,(UK Sanctions List Ref):SYR0223 (UK Statement of Reasons):Head of Latakia branch of the Air Force Intelligence Service. Responsible for the torture of opponents in custody. (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12714 +AL-ABDULLAH,Subhi,Ahmad,,,,,,,,01/01/1951,,,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0221 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12770 +AL-ABDULLAH,Suhail,,,,,,,,,,,,,,,,,Head of the Latakia Branch of the Syrian Air Force Intelligence Service,,,,,,,,,(UK Sanctions List Ref):SYR0223 (UK Statement of Reasons):Head of Latakia branch of the Air Force Intelligence Service. Responsible for the torture of opponents in custody. (Gender):Male,Individual,Primary name,,Syria,24/07/2012,31/12/2020,31/12/2020,12714 +AL-ABDULLAH,Nabel,,,,,,,,,,,,Syria,,,,,Commander of the National Defence Forces in the city of Suqaylabiyah,,,,,,,,,"(UK Sanctions List Ref):RUS1545 (UK Statement of Reasons):Commander Nabeul AL-ABDULLAH has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, (1) promoting and supporting Russia’s invasion of Ukraine and (2) overseeing the recruitment of Syrian mercenaries to fight alongside Russia in Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/07/2022,26/07/2022,26/07/2022,15473 +AL-ABDULLAH,Nabeul,,,,,,,,,,,,Syria,,,,,Commander of the National Defence Forces in the city of Suqaylabiyah,,,,,,,,,"(UK Sanctions List Ref):RUS1545 (UK Statement of Reasons):Commander Nabeul AL-ABDULLAH has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, (1) promoting and supporting Russia’s invasion of Ukraine and (2) overseeing the recruitment of Syrian mercenaries to fight alongside Russia in Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15473 +AL-ABSI,Abu-Umar,,,,,,,,,00/00/1979,,Saudi Arabia,,,,,,,,,,,,Homs,,Syria,"(UK Sanctions List Ref):AQD0138 (UN Ref):QDi.361 Shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) and in charge of ISIL’s media arm. ISIL’s provincial leader for Homs, Syrian Arab Republic as of mid-2014. Dubbed as the ISIL’s “kidnapper-in-chief”. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896778. Address location Homs, Syria, location as at Sep. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13292 +AL-ABSI,AMRU,,,,,,,,,00/00/1979,,Saudi Arabia,,,,,,,,,,,,Homs,,Syria,"(UK Sanctions List Ref):AQD0138 (UN Ref):QDi.361 Shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) and in charge of ISIL’s media arm. ISIL’s provincial leader for Homs, Syrian Arab Republic as of mid-2014. Dubbed as the ISIL’s “kidnapper-in-chief”. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896778. Address location Homs, Syria, location as at Sep. 2015",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13292 +AL-ACHI,Aammar,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +AL-ACHI,Amer,,,,,,عامر إبراهيم العشي,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +AL-ACHI,Amer,Ibrahim,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +AL-ACHI,Amis,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +AL-ACHI,Ammar,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +AL-ACMI,Hicac,Fehid,Hicac,Muhammed,Sebib,,,,,10/08/1987,,Kuwait,Kuwait,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0185 (UN Ref):QDi.328 A Kuwait-based facilitator in charge of the ‘committee of zakat’ and financier for Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809968,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13087 +AL-'ADIL,Saif,,,,,,,,,11/04/1963,Monufia Governate,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0312 (UN Ref):QDi.001 Responsible for Usama bin Laden’s (deceased) security. Hair: Dark. Eyes: Dark. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681065 click here,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7424 +AL-'ADIL,Saif,,,,,,,,,11/04/1960,Monufia Governate,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0312 (UN Ref):QDi.001 Responsible for Usama bin Laden’s (deceased) security. Hair: Dark. Eyes: Dark. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681065 click here,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7424 +AL-ADNANI,Abu,Mohamed,,,,,,,,00/00/1977,Binnish,Syria,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0113 (UN Ref):QDi.325 Official spokesman of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and emir of ISIL in Syria, closely associated with Abu Mohammed al-Jawlani (QDi.317) and Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809950",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13086 +AL-ADNANI,Abu,Mohammed,,,,,,,,00/00/1977,Binnish,Syria,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0113 (UN Ref):QDi.325 Official spokesman of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and emir of ISIL in Syria, closely associated with Abu Mohammed al-Jawlani (QDi.317) and Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809950",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13086 +AL-AFARI,Hajji,Abdullah,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-AFARI,Hajji,Abdullah,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-AFARI,Hajji,Abdullah,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-AFARI,Hajji,Abdullah,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-AFARI,Hajji,Abdullah,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-AFARI,Hajji,Abdullah,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-AFARI,Hajji,Abdullah,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-AFARI,Hajji,Abdullah,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-AFARI,Hajji,Abdullah,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-AFGHANI,Umar,,,,,,,,,15/02/1972,,,Qatar,00966737,Qatar number. Expired 16 Feb. 2016.,27263401275,Qatar number,,,,,,,Umm Salal,,Qatar,"(UK Sanctions List Ref):AQD0298 (UN Ref):QDi.382 Qatar-based facilitator who provides financial services to, or in support of, Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896810",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,24/03/2021,13280 +AL-AHAMAD,Jawdat,,,,,,,,,,,,,,,,,Head of the Homs Branch of the Syrian Air Force Intelligence Service,,,,,,,,,(UK Sanctions List Ref):SYR0112 (UK Statement of Reasons):Head of the Homs Branch of the air force's intelligence service. Responsible for the torture of opponents in custody. (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12712 +AL-AHDAL,Mohamed,Mohamed,Abdullah,,,,,,,19/11/1971,Medina,Saudi Arabia,Yemen,541939,"Issue date: 31/07/2000. Issued in Al-Hudaydah, Yemen, in the name of Muhammad Muhammad Abdullah Al-Ahdal",216040,Yemeni identity card number,,Jamal Street,Al-Dahima alley,,,,Al-Hudaydah,,Yemen,(UK Sanctions List Ref):AQD0242 (UN Ref):QDi.020 Responsible for the finances of Al-Qa’ida (QDe.004) in Yemen. Accused of involvement in the attack on the USS Cole in 2000. Arrested in Yemen in Nov. 2003. Sentenced to three years and one month of imprisonment by the specialized criminal court of first instance in Yemen. Released on 25 Dec. 2006 after the completion of his sentence. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6973 +AL-AHDAL,Muhammad,Muhammad,Abdullah,,,,,,,19/11/1971,Medina,Saudi Arabia,Yemen,541939,"Issue date: 31/07/2000. Issued in Al-Hudaydah, Yemen, in the name of Muhammad Muhammad Abdullah Al-Ahdal",216040,Yemeni identity card number,,Jamal Street,Al-Dahima alley,,,,Al-Hudaydah,,Yemen,(UK Sanctions List Ref):AQD0242 (UN Ref):QDi.020 Responsible for the finances of Al-Qa’ida (QDe.004) in Yemen. Accused of involvement in the attack on the USS Cole in 2000. Arrested in Yemen in Nov. 2003. Sentenced to three years and one month of imprisonment by the specialized criminal court of first instance in Yemen. Released on 25 Dec. 2006 after the completion of his sentence. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6973 +AL-AHMAD,Mohamed,,,,,,,,,00/00/1961,Lattakia,Syria,Syria,,,,,Culture Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0151 (UK Statement of Reasons):Minister of Culture from 2016 to 2020. As a former Government Minister, he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,13/05/2022,13401 +AL-AHMAD,Mohammad,,,,,,,,,00/00/1961,Lattakia,Syria,Syria,,,,,Culture Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0151 (UK Statement of Reasons):Minister of Culture from 2016 to 2020. As a former Government Minister, he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,13/05/2022,13401 +AL-AHMAD,Mohammed,,,,,,,,,00/00/1961,Lattakia,Syria,Syria,,,,,Culture Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0151 (UK Statement of Reasons):Minister of Culture from 2016 to 2020. As a former Government Minister, he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,13/05/2022,13401 +AL-AHMAD,Muhammad,,,,,,,,,00/00/1961,Lattakia,Syria,Syria,,,,,Culture Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0151 (UK Statement of Reasons):Minister of Culture from 2016 to 2020. As a former Government Minister, he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,13/05/2022,13401 +AL-AHMAD,Yousef,Suleiman,,,,,,,,00/00/1956,Hasaka,,,,,,,Former Minister of State,,,,,,,,,(UK Sanctions List Ref):SYR0241 (UK Statement of Reasons):Former Minister of State. Associated with the regime and its violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,26/03/2012,31/12/2020,31/12/2020,12641 +AL-AHMAD,Jumah,,,,,,,,,,,,,,,,,Commander Special Forces.,,,,,,,,,(UK Sanctions List Ref):SYR0117 (UK Statement of Reasons):Commander Special Forces. Responsible for the use of violence against protestors across Syria. (Gender):Male,Individual,Primary name,,Syria,15/11/2011,31/12/2020,31/12/2020,12209 +AL-AHMAR,Ahmed,Ali,Abdullah,,,,,,,25/07/1972,,,Yemen,(1) 17979 (2) 02117777 (3) 06070777,(1) Yemeni. Issued under name Ahmed Ali Abdullah Saleh (2) Yemeni. Issued on 8.11.2005 under name Ahmed Ali Abdullah Al-Ahmar (3) Yemeni. Issued on 3.12.2014 under name Ahmed Ali Abdullah Al-Ahmar.,,,,,,,,,,,United Arab Emirates,"(UK Sanctions List Ref):YEM0005 (UN Ref):YEi.005 Has played a key role in facilitating the Houthi military expansion. Has engaged in acts that threaten the peace, security, or stability of Yemen. Ahmed Saleh is the son of the former President of the Republic of Yemen, Ali Abdullah Saleh (YEi.003). Ahmed Ali Abdullah Saleh comes from an area known as Bayt Al-Ahmar, which lies some 20 kilometres southeast of the capital, Sana'a. Diplomatic identity card no.:31/2013/20/003140, issued on 07-07-2013 by the United Arab Emirates’ Ministry of Foreign Affairs under name Ahmed Ali Abdullah Saleh; current status: cancelled. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here (Gender):Male",Individual,AKA,Good quality,Yemen,09/06/2015,14/04/2015,01/02/2021,13254 +AL-AHMED,Mohamed,,,,,,,,,00/00/1961,Lattakia,Syria,Syria,,,,,Culture Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0151 (UK Statement of Reasons):Minister of Culture from 2016 to 2020. As a former Government Minister, he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,13/05/2022,13401 +AL-AHMED,Mohammad,,,,,,,,,00/00/1961,Lattakia,Syria,Syria,,,,,Culture Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0151 (UK Statement of Reasons):Minister of Culture from 2016 to 2020. As a former Government Minister, he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,13/05/2022,13401 +AL-AHMED,Mohammed,,,,,,,,,00/00/1961,Lattakia,Syria,Syria,,,,,Culture Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0151 (UK Statement of Reasons):Minister of Culture from 2016 to 2020. As a former Government Minister, he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name,,Syria,14/11/2016,31/12/2020,13/05/2022,13401 +AL-AHMED,Muhammad,,,,,,,,,00/00/1961,Lattakia,Syria,Syria,,,,,Culture Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0151 (UK Statement of Reasons):Minister of Culture from 2016 to 2020. As a former Government Minister, he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,13/05/2022,13401 +AL-AHMED,Jawdat,,,,,,,,,,,,,,,,,Head of the Homs Branch of the Syrian Air Force Intelligence Service,,,,,,,,,(UK Sanctions List Ref):SYR0112 (UK Statement of Reasons):Head of the Homs Branch of the air force's intelligence service. Responsible for the torture of opponents in custody. (Gender):Male,Individual,Primary name,,Syria,24/07/2012,31/12/2020,31/12/2020,12712 +AL-AHMED,Muhammad,Yunis,,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Al-Hasaka,,Syria,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-AHMED,Muhammad,Yunis,,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Damascus,,Syria,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-AHMED,Muhammad,Yunis,,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-AHMED,Muhammad,Yunis,,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Mosul,,Iraq,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-AHMED,Muhammad,Yunis,,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Wadi Al-Hawi,,Iraq,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-AHMED,Muhammad,Yunis,,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,Al-Dawar Street,,,,,Bludan,,Syria,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-AHMED,Najm,Hamad,,,,,,,,,,,,,,,,Former Minister of Justice,,,,,,,,,"(UK Sanctions List Ref):SYR0186 (UK Statement of Reasons):Former Minister of Justice in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12782 +AL-AHMED,Nejm,Hamad,,,,,,,,,,,,,,,,Former Minister of Justice,,,,,,,,,"(UK Sanctions List Ref):SYR0186 (UK Statement of Reasons):Former Minister of Justice in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12782 +AL-AHMED,Yousef,Suleiman,,,,,,,,00/00/1956,Hasaka,,,,,,,Former Minister of State,,,,,,,,,(UK Sanctions List Ref):SYR0241 (UK Statement of Reasons):Former Minister of State. Associated with the regime and its violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,31/12/2020,12641 +AL-AHWAL,,,,,,,,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,,,,,,Dbabsha-Sabratah,,,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +AL-AHWAL,,,,,,,,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,,,,,,Zawiya,,Libya,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +AL-AHWAL,,,,,,,,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,Garabulli,,,,,Garabulli,,Libya,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +AL-AJAMI,Sheikh,Hajaj,,,,,,,,10/08/1987,,Kuwait,Kuwait,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0185 (UN Ref):QDi.328 A Kuwait-based facilitator in charge of the ‘committee of zakat’ and financier for Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809968,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13087 +AL-AJMI,Hajjaj,bin-Fahad,,,,,,,,10/08/1987,,Kuwait,Kuwait,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0185 (UN Ref):QDi.328 A Kuwait-based facilitator in charge of the ‘committee of zakat’ and financier for Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809968,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13087 +AL-AJMI,Hijaj,Fahid,Hijaj,Muhammad,Sahib,,,,,10/08/1987,,Kuwait,Kuwait,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0185 (UN Ref):QDi.328 A Kuwait-based facilitator in charge of the ‘committee of zakat’ and financier for Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809968,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13087 +AL-AJMI,Shafi,,,,,,,,,01/01/1973,Warah,Kuwait,Kuwait,0216155930,,,,,Area 3,Street 327,Building 41,,,Al-Uqaylah,,Kuwait,(UK Sanctions List Ref):AQD0314 (UN Ref):QDi.338 Fundraiser for Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818220,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13135 +AL-AJMI,Sheikh,Shafi,,,,,,,,01/01/1973,Warah,Kuwait,Kuwait,0216155930,,,,,Area 3,Street 327,Building 41,,,Al-Uqaylah,,Kuwait,(UK Sanctions List Ref):AQD0314 (UN Ref):QDi.338 Fundraiser for Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818220,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13135 +AL-AJMI,SHAFI,SULTAN,MOHAMMED,,,Doctor,,,,01/01/1973,Warah,Kuwait,Kuwait,0216155930,,,,,Area 3,Street 327,Building 41,,,Al-Uqaylah,,Kuwait,(UK Sanctions List Ref):AQD0314 (UN Ref):QDi.338 Fundraiser for Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818220,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13135 +AL-AKHTAR MEDICAL CENTRE,,,,,,,,,,,,,,,,,,,Gulistan-e-Jauhar,Block 12,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0010 (UN Ref):QDe.121 Regional offices in Pakistan: Bahawalpur, Bawalnagar, Gilgit, Islamabad, Mirpur Khas, Tando-Jan-Muhammad. Akhtarabad Medical Camp is in Spin Boldak, Afghanistan. Registered by members of Jaish-i-Mohammed (QDe.019). Associated with Harakat ul-Mujahidin/ HUM (QDe.008), Lashkar I Jhanghvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235573",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,19/08/2005,17/08/2005,31/12/2020,8703 +AL-AKHTAR MEDICAL CENTRE,,,,,,,,,,,,,,,,,,,ST-1/A,Gulsahn-e-Iqbal,Block 2,,,Karachi,25300,Pakistan,"(UK Sanctions List Ref):AQD0010 (UN Ref):QDe.121 Regional offices in Pakistan: Bahawalpur, Bawalnagar, Gilgit, Islamabad, Mirpur Khas, Tando-Jan-Muhammad. Akhtarabad Medical Camp is in Spin Boldak, Afghanistan. Registered by members of Jaish-i-Mohammed (QDe.019). Associated with Harakat ul-Mujahidin/ HUM (QDe.008), Lashkar I Jhanghvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235573",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,19/08/2005,17/08/2005,31/12/2020,8703 +AL-AKHTAR TRUST INTERNATIONAL,,,,,,,,,,,,,,,,,,,Gulistan-e-Jauhar,Block 12,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0010 (UN Ref):QDe.121 Regional offices in Pakistan: Bahawalpur, Bawalnagar, Gilgit, Islamabad, Mirpur Khas, Tando-Jan-Muhammad. Akhtarabad Medical Camp is in Spin Boldak, Afghanistan. Registered by members of Jaish-i-Mohammed (QDe.019). Associated with Harakat ul-Mujahidin/ HUM (QDe.008), Lashkar I Jhanghvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235573",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,19/08/2005,17/08/2005,31/12/2020,8703 +AL-AKHTAR TRUST INTERNATIONAL,,,,,,,,,,,,,,,,,,,ST-1/A,Gulsahn-e-Iqbal,Block 2,,,Karachi,25300,Pakistan,"(UK Sanctions List Ref):AQD0010 (UN Ref):QDe.121 Regional offices in Pakistan: Bahawalpur, Bawalnagar, Gilgit, Islamabad, Mirpur Khas, Tando-Jan-Muhammad. Akhtarabad Medical Camp is in Spin Boldak, Afghanistan. Registered by members of Jaish-i-Mohammed (QDe.019). Associated with Harakat ul-Mujahidin/ HUM (QDe.008), Lashkar I Jhanghvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235573",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,19/08/2005,17/08/2005,31/12/2020,8703 +AL-AKKAD,Hashem,Anwar,,,,,,,,00/00/1961,Mohagirine,Syria,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0079 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in multiple sectors of Syria's economy. He holds interests in and/or has significant influence in Anwar Akkad Sons Group (AASG) and its subsidiary United Oil. AASG is a conglomerate with interests in sectors such as oil, gas, chemicals, insurance, industrial machinery, real estate, tourism, exhibitions, contracting, insurance, and medical equipment. Hashim Anwar al-Aqqad also worked as a member of the Syrian Parliament as recently as 2012. Al-Aqqad could not have remained successful without assistance from the regime. Given the extent of his business and political ties to the regime he provides support to and benefits from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,31/12/2020,13023 +AL-AKKAD,Hashim,Anwar,,,,,,,,00/00/1961,Mohagirine,Syria,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0079 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in multiple sectors of Syria's economy. He holds interests in and/or has significant influence in Anwar Akkad Sons Group (AASG) and its subsidiary United Oil. AASG is a conglomerate with interests in sectors such as oil, gas, chemicals, insurance, industrial machinery, real estate, tourism, exhibitions, contracting, insurance, and medical equipment. Hashim Anwar al-Aqqad also worked as a member of the Syrian Parliament as recently as 2012. Al-Aqqad could not have remained successful without assistance from the regime. Given the extent of his business and political ties to the regime he provides support to and benefits from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,31/12/2020,13023 +AL-AKOUB,Nawfel,,,,,,,,,23/02/1964,,Iraq,Iraq,,,71719043,,,,,,,,,,Iraq,"(UK Sanctions List Ref):GAC0027 (UK Statement of Reasons):Nawfal Hammadi Al-Sultan has been involved in serious corruption in Nineveh province, Iraq involving the misappropriation of state property to his benefit and the benefit of others. In his role as governor of Nineveh province, he misappropriated public funds intended for reconstruction efforts and to provide support for civilians and improperly awarded contracts and other state property. Additional information: in February 2021 Al-Sultan was convicted by the Central Anti-Corruption Criminal Court in Iraq in relation to some of his corrupt activities when governor of Nineveh Governorate. He was convicted of two offences of “harming a public body” under Article 340 of Iraq’s Penal Code and sentenced to a total of five years in prison, for: (i) wasting five billion Iraqi Dinars of public funds of Nineveh Governorate through fictitious works and contracts, and (ii) improperly disposing of 50 tons of asphalt delivered to him for paving the streets and for reconstruction in 2017. (Gender):Male",Individual,AKA,,Global Anti-Corruption,22/07/2021,22/07/2021,22/07/2021,14130 +AL-ALI,Hamed,Abdullah,,,,Doctor,,,,20/01/1960,,Kuwait,Kuwait,1739010,"Kuwait number, issued on 26 May 2003, issued in Kuwait (and expired on 25 May 2008)",,,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0190 (UN Ref):QDi.236 Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518790. Address country Kuwait, residence as at Mar. 2009.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,16/01/2008,31/12/2020,9224 +AL-ALI,Hamid,Abdallah,Ahmed,,,,,,,20/01/1960,,Kuwait,Kuwait,1739010,"Kuwait number, issued on 26 May 2003, issued in Kuwait (and expired on 25 May 2008)",,,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0190 (UN Ref):QDi.236 Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518790. Address country Kuwait, residence as at Mar. 2009.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,16/01/2008,31/12/2020,9224 +AL-ALI,Hamid,bin,Abdallah,Ahmed,,,,,,20/01/1960,,Kuwait,Kuwait,1739010,"Kuwait number, issued on 26 May 2003, issued in Kuwait (and expired on 25 May 2008)",,,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0190 (UN Ref):QDi.236 Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518790. Address country Kuwait, residence as at Mar. 2009.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,16/01/2008,31/12/2020,9224 +AL-ALI,Loai,,,,,,,,,,"Jablah, Latakia Province",Syria,,,,,,"Head of Syrian Military Intelligence, Dara’a Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0130 (UK Statement of Reasons):Head of Syrian Military Intelligence, Dara'a Branch, Branch 245. Responsible for the violence against protesters in Dara'a and directly participating in, ordering and/or overseeing the torture of detainees by officers of the Syrian security and intelligence services under his command. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,13/05/2022,12210 +AL-ALI,Louay,,,,,,,,,,"Jablah, Latakia Province",Syria,,,,,,"Head of Syrian Military Intelligence, Dara’a Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0130 (UK Statement of Reasons):Head of Syrian Military Intelligence, Dara'a Branch, Branch 245. Responsible for the violence against protesters in Dara'a and directly participating in, ordering and/or overseeing the torture of detainees by officers of the Syrian security and intelligence services under his command. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,13/05/2022,12210 +AL-ALI,Lu'ai,,,,,,,,,,"Jablah, Latakia Province",Syria,,,,,,"Head of Syrian Military Intelligence, Dara’a Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0130 (UK Statement of Reasons):Head of Syrian Military Intelligence, Dara'a Branch, Branch 245. Responsible for the violence against protesters in Dara'a and directly participating in, ordering and/or overseeing the torture of detainees by officers of the Syrian security and intelligence services under his command. (Gender):Male",Individual,Primary name,,Syria,15/11/2011,31/12/2020,13/05/2022,12210 +AL-ALI,Naser,,,,,,,,,,,,,,,,,(1) Head of the Political Security Directorate (2) Former Head of Deraa Regional Branch,,,,,,,,,(UK Sanctions List Ref):SYR0188 (UK Statement of Reasons):Head of the Political Security Directorate from July 2019. Previously Head of the Deraa Regional Branch and Head of the Homs Branch of the Political Security Directorate. Responsible for the detention and torture of detainees. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12481 +AL-ALI,Nasr,,,,,,,,,,,,,,,,,(1) Head of the Political Security Directorate (2) Former Head of Deraa Regional Branch,,,,,,,,,(UK Sanctions List Ref):SYR0188 (UK Statement of Reasons):Head of the Political Security Directorate from July 2019. Previously Head of the Deraa Regional Branch and Head of the Homs Branch of the Political Security Directorate. Responsible for the detention and torture of detainees. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12481 +AL-ALI,Nasser,,,,,,,,,,,,,,,,,(1) Head of the Political Security Directorate (2) Former Head of Deraa Regional Branch,,,,,,,,,(UK Sanctions List Ref):SYR0188 (UK Statement of Reasons):Head of the Political Security Directorate from July 2019. Previously Head of the Deraa Regional Branch and Head of the Homs Branch of the Political Security Directorate. Responsible for the detention and torture of detainees. (Gender):Male,Individual,Primary name,,Syria,24/01/2012,31/12/2020,13/05/2022,12481 +AL-'ALI,Hamed,,,,,,,,,20/01/1960,,Kuwait,Kuwait,1739010,"Kuwait number, issued on 26 May 2003, issued in Kuwait (and expired on 25 May 2008)",,,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0190 (UN Ref):QDi.236 Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518790. Address country Kuwait, residence as at Mar. 2009.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,16/01/2008,31/12/2020,9224 +AL-'ALI,Hamed,bin,'Abdallah,,,,,,,20/01/1960,,Kuwait,Kuwait,1739010,"Kuwait number, issued on 26 May 2003, issued in Kuwait (and expired on 25 May 2008)",,,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0190 (UN Ref):QDi.236 Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518790. Address country Kuwait, residence as at Mar. 2009.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,16/01/2008,31/12/2020,9224 +AL-'ALI,Hamid,'Abdallah,,,,,,,,20/01/1960,,Kuwait,Kuwait,1739010,"Kuwait number, issued on 26 May 2003, issued in Kuwait (and expired on 25 May 2008)",,,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0190 (UN Ref):QDi.236 Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518790. Address country Kuwait, residence as at Mar. 2009.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,16/01/2008,31/12/2020,9224 +AL-'ALI,Hamid,'Abdallah,Ahmad,,,,,,,20/01/1960,,Kuwait,Kuwait,1739010,"Kuwait number, issued on 26 May 2003, issued in Kuwait (and expired on 25 May 2008)",,,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0190 (UN Ref):QDi.236 Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518790. Address country Kuwait, residence as at Mar. 2009.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,16/01/2008,31/12/2020,9224 +AL-ALI,HAMID,ABDALLAH,AHMAD,,,,حامد عبد الله أحمد العلي,,,20/01/1960,,Kuwait,Kuwait,1739010,"Kuwait number, issued on 26 May 2003, issued in Kuwait (and expired on 25 May 2008)",,,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0190 (UN Ref):QDi.236 Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518790. Address country Kuwait, residence as at Mar. 2009.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/01/2008,16/01/2008,31/12/2020,9224 +AL-'ALI,HAMID,HAMAD,HAMID,,,,,,,17/11/1960,,Kuwait,Kuwait,(1) 001714467 (2) 101505554,(1) Kuwait. (2) Kuwait.,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0191 (UN Ref):QDi.326 A Kuwait-based financier, recruiter and facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), and Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137). Associated with Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) and Abu Mohammed al-Jawlani (QDi.317). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809955",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13088 +AL-ALUSI,Umar,Ahmad,Ali,,,,,,,00/00/1970,Baghdad,Iraq,Iraq,2863795S,Expires 23 Aug. 2005 (Iraq),,,,,,,,,Damascus,,Syria,(UK Sanctions List Ref):IRQ0143 (UN Ref):IQi.082,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,19/04/2022,8694 +AL-ALUSI,Umar,Ahmad,Ali,,,,,,,00/00/1970,Baghdad,Iraq,Iraq,2863795S,Expires 23 Aug. 2005 (Iraq),,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0143 (UN Ref):IQi.082,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,19/04/2022,8694 +AL-ALUSI,Umar,Ahmad,Ali,,,,,,,00/00/1970,Baghdad,Iraq,Iraq,2863795S,Expires 23 Aug. 2005 (Iraq),,,,,,,,,,,Yemen,(UK Sanctions List Ref):IRQ0143 (UN Ref):IQi.082,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,19/04/2022,8694 +ALAM,Shams,ur-Rahman,Sher,,,,,,,00/00/1969,"Waka Uzbin village, Sarobi District, Kabul Province",Afghanistan,Afghanistan,,,(1) 2132370 (2) 812673,(1) Afghan national identification card (tazkira) number (2) Afghan national identification card (tazkira) number,Deputy Minister of Agriculture under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0012 (UN Ref):TAi.008 Believed to be in Afghanistan/Pakistan border area. Involved in drug trafficking. Belongs to Ghilzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7532 +AL-AMDOUNI,MEHREZ,BEN MAHMOUD,BEN SASSI,,,,محرز بن محمود بن ساسي العمدوني,,,18/12/1969,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +AL-AMDOUNI,MEHREZ,BEN MAHMOUD,BEN SASSI,,,,محرز بن محمود بن ساسي العمدوني,,,25/05/1968,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +AL-AMDOUNI,MEHREZ,BEN MAHMOUD,BEN SASSI,,,,محرز بن محمود بن ساسي العمدوني,,,18/12/1968,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +AL-AMDOUNI,MEHREZ,BEN MAHMOUD,BEN SASSI,,,,محرز بن محمود بن ساسي العمدوني,,,14/07/1969,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +AL-AMEEN TRUST,,,,,,,,,,,,,,,,,,,"302b-40, Good Earth Court",Opposite Pia Planitarium,Block 13a,Gulshan-I-Iqbal,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-AMEEN TRUST,,,,,,,,,,,,,,,,,,,605 Landmark Plaza,11 Chundrigar Road,Opposite Jang Building,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-AMEEN TRUST,,,,,,,,,,,,,,,,,,,617 Clifton Center,Block 5,6th Floor,Clifton,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-AMEEN TRUST,,,,,,,,,,,,,,,,,,,Jamia Maajid,Sulalman Park,Melgium Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-AMEEN TRUST,,,,,,,,,,,,,,,,,,,Jamia Masjid,Sulaiman Park,Begum Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-AMEEN TRUST,,,,,,,,,,,,,,,,,,,Kitab Ghar,Darul Ifta Wal Irshad,Nazimabad No 4,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-AMEEN TRUST,,,,,,,,,,,,,,,,,,,Kitas Ghar,Nazimabad 4,Dahgel-Iftah,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-AMEEN TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Opposite Khyber Bank,Abbottabad Road,,,Mansehra,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-AMEEN TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Rm No 3,Moti Plaza,Near Liaquat Bagh,Muree Road,Rawalpindi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-AMEEN TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Top Floor,Dr. Dawa Khan Dental Clinic Surgeon,Main Baxae,Mingora,Swat,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-AMEEN TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin ZR Brothers,Katcherry Road,Chowk Yadgaar,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-AMRIKI,Abu,Maansuur,,,,,,,,06/05/1986,Alabama,United States,(1) United States (2) Syria,403062567,United States,423-31-3021,Social Security Number (United States),,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0010 (UN Ref):SOi.010 Married to a Somali woman. Lived in Egypt in 2005 and moved to Somalia in 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,Somalia,27/09/2011,28/07/2011,16/02/2022,12030 +AL-AMRIKI,Abu,Mansour,,,,,,,,06/05/1986,Alabama,United States,(1) United States (2) Syria,403062567,United States,423-31-3021,Social Security Number (United States),,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0010 (UN Ref):SOi.010 Married to a Somali woman. Lived in Egypt in 2005 and moved to Somalia in 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,Somalia,27/09/2011,28/07/2011,16/02/2022,12030 +AL-AMRIKI,Abu,Mansur,,,,,,,,06/05/1986,Alabama,United States,(1) United States (2) Syria,403062567,United States,423-31-3021,Social Security Number (United States),,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0010 (UN Ref):SOi.010 Married to a Somali woman. Lived in Egypt in 2005 and moved to Somalia in 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,Somalia,27/09/2011,28/07/2011,16/02/2022,12030 +AL-AMRIKI,Abu,Mansuur,,,,,,,,06/05/1986,Alabama,United States,(1) United States (2) Syria,403062567,United States,423-31-3021,Social Security Number (United States),,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0010 (UN Ref):SOi.010 Married to a Somali woman. Lived in Egypt in 2005 and moved to Somalia in 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,Somalia,27/09/2011,28/07/2011,16/02/2022,12030 +AL-AMRIKI,Abu-Ahmad,,,,,,,,,30/12/1968,California,United States,(1) Jordan. (2) United States,,,(1) 548-91-5411 (2) 9681029476,(1) US social security (2) Jordanian,,,,,,,,,,"(UK Sanctions List Ref):AQD0291 (UN Ref):QDi.029 In custody in Jordan since 26 Feb. 2015 for recruitment and support to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Father’s name is Mohammad Hijazi. Mother’s name is Sakina. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1419275",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6974 +AL-ANABI,ABU UBAYDAH,YUSUF,,,,,,,,07/02/1969,Annaba,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0117 (UN Ref):QDi.389 A leader of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930738,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13322 +AL-ANI,ADIB,SHABAN,,,,,أديب شعبـان العانــي,,,00/00/1952,,,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0137 (UN Ref):IQi.076,Individual,Primary name,,Iraq,07/06/2004,02/06/2004,31/12/2020,8383 +AL-ANIZI,'Abd,al-Rahman,Khalaf,,,,,,,06/03/1973,,,Kuwait,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0085 (UN Ref):QDi.335 Provides support to Al-Qaida (QDe.004) and Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115), in Syria and Iraq. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818202",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13132 +AL-'ANIZI,ABD,AL-RAHMAN,KHALAF,UBAYD JUDAY',,,,,,06/03/1973,,,Kuwait,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0085 (UN Ref):QDi.335 Provides support to Al-Qaida (QDe.004) and Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115), in Syria and Iraq. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818202",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13132 +AL-ANNABI,Abou,Obeida,Youssef,,,,,,,07/02/1969,Annaba,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0117 (UN Ref):QDi.389 A leader of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930738,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13322 +AL-ANSARI,Abd,al-Hadi,,,,,,,,00/00/1961,Mosul,Iraq,Iraq,,,0094195,Ration card.,,,,,,,,,,"(UK Sanctions List Ref):AQD0271 (UN Ref):QDi.012 Joined Al-Qaida in 1996 and was at that time an important liaison to the Taliban in Afghanistan. Received money from Ansar al-Islam (QDe.098) in order to conduct attacks in Kirkuk and Ninveh in Iraq during spring and summer of 2005. Al-Qaida senior official. In custody of the United States of America, as of Aug. 2014. Father’s name: Abd al-Razzaq Abd al-Baqi. Mother’s name: Nadira Ayoub Asaad. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1475995 (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6923 +AL-ANSARI,abu-Malik,,,,,,,,,17/08/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,Arsal,Bekaa,,Lebanon,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +AL-ANSARI,abu-Malik,,,,,,,,,17/08/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +AL-ANSARI,abu-Malik,,,,,,,,,01/01/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +AL-ANSARI,abu-Malik,,,,,,,,,01/01/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,Arsal,Bekaa,,Lebanon,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +AL-'ANZI,'Abd,al-Rahman,Khalaf,,,,,,,06/03/1973,,,Kuwait,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0085 (UN Ref):QDi.335 Provides support to Al-Qaida (QDe.004) and Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115), in Syria and Iraq. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818202",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13132 +AL-AOUADI,MOHAMED,BEN BELGACEM,BEN ABDALLAH,,,,محمد بن بلقاسم بن عبد الله العوادي,,,11/12/1974,Tunis,Tunisia,Tunisia,L 191609,"Tunisian passport number issued on 28 Feb. 1996, expired on 27 Feb. 2001",(1) 04643632 (2) DAOMMD74T11Z352Z,(1) Issued on 18 Jun. 1999 (2) Italian Fiscal Code,,50th Street,No 23,Zehrouni,,,Tunis,,Tunisia,(UK Sanctions List Ref):AQD0239 (UN Ref):QDi.060 Head of security wing of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Mother's name is Ourida Bint Mohamed. Deported from Italy to Tunisia on 1 Dec. 2004. Arrested in Tunisia in Aug. 2013. Imprisoned in the civilian prison of Burj al-‘Amiri on 13 Sep. 2013. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7024 +AL-AQQAD,Hashem,Anwar,,,,,,,,00/00/1961,Mohagirine,Syria,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0079 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in multiple sectors of Syria's economy. He holds interests in and/or has significant influence in Anwar Akkad Sons Group (AASG) and its subsidiary United Oil. AASG is a conglomerate with interests in sectors such as oil, gas, chemicals, insurance, industrial machinery, real estate, tourism, exhibitions, contracting, insurance, and medical equipment. Hashim Anwar al-Aqqad also worked as a member of the Syrian Parliament as recently as 2012. Al-Aqqad could not have remained successful without assistance from the regime. Given the extent of his business and political ties to the regime he provides support to and benefits from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,31/12/2020,13023 +AL-AQQAD,Hashim,Anwar,,,,,,,,00/00/1961,Mohagirine,Syria,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0079 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in multiple sectors of Syria's economy. He holds interests in and/or has significant influence in Anwar Akkad Sons Group (AASG) and its subsidiary United Oil. AASG is a conglomerate with interests in sectors such as oil, gas, chemicals, insurance, industrial machinery, real estate, tourism, exhibitions, contracting, insurance, and medical equipment. Hashim Anwar al-Aqqad also worked as a member of the Syrian Parliament as recently as 2012. Al-Aqqad could not have remained successful without assistance from the regime. Given the extent of his business and political ties to the regime he provides support to and benefits from the Syrian regime. (Gender):Male",Individual,Primary name,,Syria,23/07/2014,31/12/2020,31/12/2020,13023 +AL-AQSA E.V.,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0023 (UK Statement of Reasons):Al-Aqsa EV is a fundraising organisation which has provided funds to Hamas Izz al-Din al-Qassem Brigades. The Hamas Izz al-Din al-Qassem Brigades haves been involved in terrorism and are a proscribed terrorist organisation in the UK. The Izz al-Din al-Qassem Brigades are also listed under the EU’s CP931 Regime. Accordingly, Al-Aqsa EV is or has been involved in terrorism and or has been associated with Hamas Izz al-Din al-Qassem Brigades.",Entity,Primary name,,Counter-Terrorism (International),23/03/2005,31/12/2020,11/03/2022,8531 +AL-AQSA MARTYRS' BRIGADE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0024 (UK Statement of Reasons):The Al-Aqsa Martyrs' Brigade (AAMB) is a network of West Bank militias who have been responsible for a number of terrorist attacks.,Entity,Primary name,,Counter-Terrorism (International),18/07/2002,31/12/2020,11/03/2022,6975 +AL-ARABI TRADING COMPANY,,,,,,,,,,,,,,,,,,,Hai Al-Wahda,Lane 15,Area 902,Office 10,,Baghdad,,Iraq,(UK Sanctions List Ref):IRQ0056 (UN Ref):IQe.203,Entity,Primary name,,Iraq,05/05/2004,26/04/2004,31/12/2020,8281 +AL-ARABI TRADING COMPANY,,,,,,,,,,,,,,,,,,,Hai Babil,Lane 11,District 929,,,Baghdad,,Iraq,(UK Sanctions List Ref):IRQ0056 (UN Ref):IQe.203,Entity,Primary name,,Iraq,05/05/2004,26/04/2004,31/12/2020,8281 +AL-ARABI TRADING COMPANY,,,,,,,,,,,,,,,,,,,PO Box 2337,,,,Alwiyah,Baghdad,,Iraq,(UK Sanctions List Ref):IRQ0056 (UN Ref):IQe.203,Entity,Primary name,,Iraq,05/05/2004,26/04/2004,31/12/2020,8281 +ALARIFI,Naif,Hassan,S.,,,,,,,28/02/1986,Riyadh,Saudi Arabia,Saudi Arabia,M644150,,,,"First Lieutenant, External Intelligence, worked in the Office of the Crown Prince.",,,,,,,,,"(UK Sanctions List Ref):GHR0029 (UK Statement of Reasons):Naif Hassan S Alarifi held the position of First Lieutenant, External Intelligence, and worked in the Office of the Crown Prince in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. In particular, he was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13863 +ALARIFI,Nayif,Hasan,Saad,,,,,,,28/02/1986,Riyadh,Saudi Arabia,Saudi Arabia,M644150,,,,"First Lieutenant, External Intelligence, worked in the Office of the Crown Prince.",,,,,,,,,"(UK Sanctions List Ref):GHR0029 (UK Statement of Reasons):Naif Hassan S Alarifi held the position of First Lieutenant, External Intelligence, and worked in the Office of the Crown Prince in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. In particular, he was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13863 +AL-ARIFI,Naif,Hassan,S.,,,,,,,28/02/1986,Riyadh,Saudi Arabia,Saudi Arabia,M644150,,,,"First Lieutenant, External Intelligence, worked in the Office of the Crown Prince.",,,,,,,,,"(UK Sanctions List Ref):GHR0029 (UK Statement of Reasons):Naif Hassan S Alarifi held the position of First Lieutenant, External Intelligence, and worked in the Office of the Crown Prince in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. In particular, he was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13863 +AL-ARIFI,Nayif,Hasan,Saad,,,,,,,28/02/1986,Riyadh,Saudi Arabia,Saudi Arabia,M644150,,,,"First Lieutenant, External Intelligence, worked in the Office of the Crown Prince.",,,,,,,,,"(UK Sanctions List Ref):GHR0029 (UK Statement of Reasons):Naif Hassan S Alarifi held the position of First Lieutenant, External Intelligence, and worked in the Office of the Crown Prince in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. In particular, he was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13863 +AL-ARKHABILIY,Abu,Sulaiman,Aman,Abdurrahman,,,,,,05/01/1972,Sumedang,Indonesia,Indonesia,,,,,,Pasir Putih Prison,,,,,Nusa Kambangan Island,,Indonesia,"(UK Sanctions List Ref):AQD0280 (UN Ref):QDi.407 De facto leader for all Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), supporters in Indonesia, despite his incarceration in Indonesia since December 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116589",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13518 +AL-ARMANAZI,Amer,Najib,,,,,,,,07/02/1944,,,Syria,,,,,Former Director General of the Syrian Scientific Studies and Research Center (SSRC),,,,,,,,,"(UK Sanctions List Ref):SYR0020 (UK Statement of Reasons):Former Director-General of the Syrian Scientific Studies and Research Centre (SSRC), responsible for providing support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Also responsible for the development and production of non-conventional weapons, including chemical weapons, and the missiles to deliver them. Responsible for the violent repression of the civilian population; supports the regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,13/05/2022,13024 +AL-ARMANAZI,Amr,,,,,,,,,07/02/1944,,,Syria,,,,,Former Director General of the Syrian Scientific Studies and Research Center (SSRC),,,,,,,,,"(UK Sanctions List Ref):SYR0020 (UK Statement of Reasons):Former Director-General of the Syrian Scientific Studies and Research Centre (SSRC), responsible for providing support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Also responsible for the development and production of non-conventional weapons, including chemical weapons, and the missiles to deliver them. Responsible for the violent repression of the civilian population; supports the regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,13/05/2022,13024 +AL-ARMANAZI,Amr,Muhammad,,,,,,,,07/02/1944,,,Syria,,,,,Former Director General of the Syrian Scientific Studies and Research Center (SSRC),,,,,,,,,"(UK Sanctions List Ref):SYR0020 (UK Statement of Reasons):Former Director-General of the Syrian Scientific Studies and Research Centre (SSRC), responsible for providing support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Also responsible for the development and production of non-conventional weapons, including chemical weapons, and the missiles to deliver them. Responsible for the violent repression of the civilian population; supports the regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,13/05/2022,13024 +AL-ARMANAZI,Amrou,,,,,,,,,07/02/1944,,,Syria,,,,,Former Director General of the Syrian Scientific Studies and Research Center (SSRC),,,,,,,,,"(UK Sanctions List Ref):SYR0020 (UK Statement of Reasons):Former Director-General of the Syrian Scientific Studies and Research Centre (SSRC), responsible for providing support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Also responsible for the development and production of non-conventional weapons, including chemical weapons, and the missiles to deliver them. Responsible for the violent repression of the civilian population; supports the regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,13/05/2022,13024 +AL-ARMANAZY,Amer,Najib,,,,,,,,07/02/1944,,,Syria,,,,,Former Director General of the Syrian Scientific Studies and Research Center (SSRC),,,,,,,,,"(UK Sanctions List Ref):SYR0020 (UK Statement of Reasons):Former Director-General of the Syrian Scientific Studies and Research Centre (SSRC), responsible for providing support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Also responsible for the development and production of non-conventional weapons, including chemical weapons, and the missiles to deliver them. Responsible for the violent repression of the civilian population; supports the regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,13/05/2022,13024 +AL-ARMANAZY,Amr,,,,,,,,,07/02/1944,,,Syria,,,,,Former Director General of the Syrian Scientific Studies and Research Center (SSRC),,,,,,,,,"(UK Sanctions List Ref):SYR0020 (UK Statement of Reasons):Former Director-General of the Syrian Scientific Studies and Research Centre (SSRC), responsible for providing support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Also responsible for the development and production of non-conventional weapons, including chemical weapons, and the missiles to deliver them. Responsible for the violent repression of the civilian population; supports the regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,13/05/2022,13024 +AL-ARMANAZY,Amr,Muhammad,,,,,,,,07/02/1944,,,Syria,,,,,Former Director General of the Syrian Scientific Studies and Research Center (SSRC),,,,,,,,,"(UK Sanctions List Ref):SYR0020 (UK Statement of Reasons):Former Director-General of the Syrian Scientific Studies and Research Centre (SSRC), responsible for providing support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Also responsible for the development and production of non-conventional weapons, including chemical weapons, and the missiles to deliver them. Responsible for the violent repression of the civilian population; supports the regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,13/05/2022,13024 +AL-ARMANAZY,Amrou,,,,,,,,,07/02/1944,,,Syria,,,,,Former Director General of the Syrian Scientific Studies and Research Center (SSRC),,,,,,,,,"(UK Sanctions List Ref):SYR0020 (UK Statement of Reasons):Former Director-General of the Syrian Scientific Studies and Research Centre (SSRC), responsible for providing support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Also responsible for the development and production of non-conventional weapons, including chemical weapons, and the missiles to deliver them. Responsible for the violent repression of the civilian population; supports the regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,13/05/2022,13024 +AL-'ASAD,Bashar,,,,,,,,,11/09/1965,Damascus,Syria,Syria,D1903,Diplomatic,,,President of the Arab Republic of Syria,Presidential Palace,,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0026 (UK Statement of Reasons):President of the Republic; person authorising and supervising the crackdown on demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11928 +AL-'ASAD,Bassar,Hafiz,,,,,Baššār Ḥāfiẓ al-ʾAsad,,,11/09/1965,Damascus,Syria,Syria,D1903,Diplomatic,,,President of the Arab Republic of Syria,Presidential Palace,,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0026 (UK Statement of Reasons):President of the Republic; person authorising and supervising the crackdown on demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11928 +AL-ASAD,Hayel,,,,,,هائل,,,,,,,,,,,Assistant to Maher al Asad and responsible for the Military Police,,,,,,,,,"(UK Sanctions List Ref):SYR0085 Serves in same military division as Maher al Asad (UK Statement of Reasons):Assistant to Maher Al-Assad, Head of the military police unit of the army's 4th Division, involved in repression (Gender):Male",Individual,Primary name,,Syria,24/08/2011,31/12/2020,31/12/2020,12039 +AL-ASI,Fayez,,,,,,,,,,,,,,,,,A lab technician at the Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0044 Not currently designated by the US Treasury Linked with SSRC (UK Statement of Reasons):Fayez Asi is a lab technician at the Syrian Scientific Studies and Research Centre, involved in chemical weapons proliferation and delivery. Fayez Asi has been involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13507 +AL-ASIR,Abu,,,,,,,,,00/00/1979,,Saudi Arabia,,,,,,,,,,,,Homs,,Syria,"(UK Sanctions List Ref):AQD0138 (UN Ref):QDi.361 Shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) and in charge of ISIL’s media arm. ISIL’s provincial leader for Homs, Syrian Arab Republic as of mid-2014. Dubbed as the ISIL’s “kidnapper-in-chief”. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896778. Address location Homs, Syria, location as at Sep. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13292 +AL-ASIRI,Ibrahim,Hassan,,,,,,,,19/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +AL-ASIRI,Ibrahim,Hassan,,,,,,,,18/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +AL-'ASIRI,Ibrahim,,,,,,,,,19/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +AL-'ASIRI,Ibrahim,,,,,,,,,18/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +AL-'ASIRI,Ibrahim,Hasan,Tali,,,,,,,19/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +AL-'ASIRI,Ibrahim,Hasan,Tali,,,,,,,18/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +AL-ASIRI,IBRAHIM,HASSAN,TALI,,,,إبراهيم حسن طالع العسيري,,,19/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +AL-ASIRI,IBRAHIM,HASSAN,TALI,,,,إبراهيم حسن طالع العسيري,,,18/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +AL-ASSAD,Asma,,,,,,,,,11/08/1975,London,United Kingdom,(1) Syria. (2) United Kingdom,707512830,Expires 22 Sept 2020,,,Wife of President Bashar Al Asad,,,,,,,,,"(UK Sanctions List Ref):SYR0022 Maiden name: Al Akhras (UK Statement of Reasons):Member of the Assad family and closely connected to key regime figures; wife of President Bashar Al-Assad. Given the close personal relationship and intrinsic financial relationship to the Syrian President, Bashar Al-Assad, she benefits from and is associated with the Syrian regime. (Gender):Female",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,01/02/2021,12634 +AL-ASSAD,Asma,Fawaz,,,,,,,,11/08/1975,London,United Kingdom,(1) Syria. (2) United Kingdom,707512830,Expires 22 Sept 2020,,,Wife of President Bashar Al Asad,,,,,,,,,"(UK Sanctions List Ref):SYR0022 Maiden name: Al Akhras (UK Statement of Reasons):Member of the Assad family and closely connected to key regime figures; wife of President Bashar Al-Assad. Given the close personal relationship and intrinsic financial relationship to the Syrian President, Bashar Al-Assad, she benefits from and is associated with the Syrian regime. (Gender):Female",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,01/02/2021,12634 +AL-ASSAD,Bashar,,,,,,,,,11/09/1965,Damascus,Syria,Syria,D1903,Diplomatic,,,President of the Arab Republic of Syria,Presidential Palace,,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0026 (UK Statement of Reasons):President of the Republic; person authorising and supervising the crackdown on demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11928 +AL-ASSAD,Bassar,Hafiz,,,,,Baššār Ḥāfiẓ Al-Assad,,,11/09/1965,Damascus,Syria,Syria,D1903,Diplomatic,,,President of the Arab Republic of Syria,Presidential Palace,,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0026 (UK Statement of Reasons):President of the Republic; person authorising and supervising the crackdown on demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11928 +AL-ASSAD,Bouchra,,,,,,,,,24/10/1960,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0035 Sister to Bashar Al Assad (UK Statement of Reasons):Member of the Assad family; sister of Bashar Al-Assad. Given the close personal relationship and intrinsic financial relationship to the Syrian President Bashar Al-Assad, she benefits from and is associated with the Syrian regime. (Gender):Female",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,31/12/2020,12550 +AL-ASSAD,Bushra,,,,,,,,,24/10/1960,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0035 Sister to Bashar Al Assad (UK Statement of Reasons):Member of the Assad family; sister of Bashar Al-Assad. Given the close personal relationship and intrinsic financial relationship to the Syrian President Bashar Al-Assad, she benefits from and is associated with the Syrian regime. (Gender):Female",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,31/12/2020,12550 +AL-ASSAD,Hayel,,,,,,,,,,,,,,,,,Assistant to Maher al Asad and responsible for the Military Police,,,,,,,,,"(UK Sanctions List Ref):SYR0085 Serves in same military division as Maher al Asad (UK Statement of Reasons):Assistant to Maher Al-Assad, Head of the military police unit of the army's 4th Division, involved in repression (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12039 +AL-ASSAD,Maher,,,,,,,,,08/12/1967,Damascus,Syria,Syria,4138,Diplomatic,,,Major General of the 42nd Brigade,,,,,,,,,"(UK Sanctions List Ref):SYR0134 Brother of Basher Al Assad and first cousin of Rami Makhlouf. (UK Statement of Reasons):Member of the Syrian Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011. There are reasonable grounds to suspect that Maher Al-Assad is or has been involved in the repression of the civilian population, including overseeing operations to that end as Brigadier General and Commander of the Army’s 4th Armoured Division and Republican Guards and presently Major General of the 42nd Brigade in the Syrian Armed Forces. In particular, he was responsible for ordering and overseeing the violent suppression and unlawful killing of demonstrators in Dera’a in March 2011 and a chemical weapons attack in August 2012 in the Damascus suburb of Ghoutta. Further, he is associated with other members of the regime, including his brother of President Bashar Al-Assad, as well as the Alawite shahiba militia suspected to have been involved in crimes against humanity in Syria. (Gender):Male",Individual,Primary name,,Syria,10/05/2011,31/12/2020,13/05/2022,11909 +AL-ASSAD,Mahir,,,,,,,,,08/12/1967,Damascus,Syria,Syria,4138,Diplomatic,,,Major General of the 42nd Brigade,,,,,,,,,"(UK Sanctions List Ref):SYR0134 Brother of Basher Al Assad and first cousin of Rami Makhlouf. (UK Statement of Reasons):Member of the Syrian Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011. There are reasonable grounds to suspect that Maher Al-Assad is or has been involved in the repression of the civilian population, including overseeing operations to that end as Brigadier General and Commander of the Army’s 4th Armoured Division and Republican Guards and presently Major General of the 42nd Brigade in the Syrian Armed Forces. In particular, he was responsible for ordering and overseeing the violent suppression and unlawful killing of demonstrators in Dera’a in March 2011 and a chemical weapons attack in August 2012 in the Damascus suburb of Ghoutta. Further, he is associated with other members of the regime, including his brother of President Bashar Al-Assad, as well as the Alawite shahiba militia suspected to have been involved in crimes against humanity in Syria. (Gender):Male",Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,13/05/2022,11909 +AL-ASSAD,Manal,,,,,,,,,02/02/1970,Damascus,,Syria,0000000914,Syria,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0135 Spouse of Maher Al-Assad (UK Statement of Reasons):Spouse of Maher Al-Assad, and as such benefiting from and closely associated with the regime. (Gender):Female",Individual,Primary name,,Syria,26/03/2012,31/12/2020,31/12/2020,12635 +AL-ASSAD,Monzer,Jamil,,,,,,,,01/03/1961,,,Syria,(1) 86449 (2) 842781,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0183 Cousin of President Bashar al Asad (UK Statement of Reasons):Involved in violence against the civilian population as part of the Shabiha militia. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11905 +AL-ASSAD,Mundhir,Jamil,,,,,,,,01/03/1961,,,Syria,(1) 86449 (2) 842781,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0183 Cousin of President Bashar al Asad (UK Statement of Reasons):Involved in violence against the civilian population as part of the Shabiha militia. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11905 +AL-ASSAD,Munzir,Jamil,,,,,,,,01/03/1961,,,Syria,(1) 86449 (2) 842781,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0183 Cousin of President Bashar al Asad (UK Statement of Reasons):Involved in violence against the civilian population as part of the Shabiha militia. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11905 +ALASSIRI,Ramzi,Mohamed,Abdellah,Omar,Hassan,,,,,16/09/1973,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +ALASSIRI,Ramzi,Mohamed,Abdellah,Omar,Hassan,,,,,01/05/1972,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +AL-ATHIR,Abu,,,,,,,,,00/00/1979,,Saudi Arabia,,,,,,,,,,,,Homs,,Syria,"(UK Sanctions List Ref):AQD0138 (UN Ref):QDi.361 Shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) and in charge of ISIL’s media arm. ISIL’s provincial leader for Homs, Syrian Arab Republic as of mid-2014. Dubbed as the ISIL’s “kidnapper-in-chief”. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896778. Address location Homs, Syria, location as at Sep. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13292 +ALAUDINOV,Apri,Aaronovitch,,,,,,,,05/10/1973,Stavropol,Russia,Russia,,,,,Deputy Minister of Internal Affairs of the Chechen Republic and Major General of the Police,,,,,,,,,"(UK Sanctions List Ref):GHR0062 (UK Statement of Reasons):Apti Alaudinov is the Deputy Minister of Internal Affairs of the Chechen Republic and Major General of the Police. In this position Alaudinov has presided over several waves of persecution against the LGBT community in Chechnya from 2017 to 2019. As a leading, senior official, Alaudinov is responsible for the actions of police and security forces under his command who have engaged in cruel, inhuman or degrading treatment or torture. In addition, by upholding the impunity of security forces and actively encouraging violence against LGBT persons, Alaudinov has facilitated, incited, promoted, and provided support for, the torture and murder of LGBT persons. Alaudinov is also responsible for the mistreatment of human rights defender Ruslan Kutaev. (Gender):Male",Individual,Primary name variation,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14015 +ALAUDINOV,Apti,,,,,,,,,05/10/1973,Stavropol,Russia,Russia,,,,,Deputy Minister of Internal Affairs of the Chechen Republic and Major General of the Police,,,,,,,,,"(UK Sanctions List Ref):GHR0062 (UK Statement of Reasons):Apti Alaudinov is the Deputy Minister of Internal Affairs of the Chechen Republic and Major General of the Police. In this position Alaudinov has presided over several waves of persecution against the LGBT community in Chechnya from 2017 to 2019. As a leading, senior official, Alaudinov is responsible for the actions of police and security forces under his command who have engaged in cruel, inhuman or degrading treatment or torture. In addition, by upholding the impunity of security forces and actively encouraging violence against LGBT persons, Alaudinov has facilitated, incited, promoted, and provided support for, the torture and murder of LGBT persons. Alaudinov is also responsible for the mistreatment of human rights defender Ruslan Kutaev. (Gender):Male",Individual,Primary name,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14015 +ALAUDINOV,Apti,Kharanovich,,,,,,,,05/10/1973,Stavropol,Russia,Russia,,,,,Deputy Minister of Internal Affairs of the Chechen Republic and Major General of the Police,,,,,,,,,"(UK Sanctions List Ref):GHR0062 (UK Statement of Reasons):Apti Alaudinov is the Deputy Minister of Internal Affairs of the Chechen Republic and Major General of the Police. In this position Alaudinov has presided over several waves of persecution against the LGBT community in Chechnya from 2017 to 2019. As a leading, senior official, Alaudinov is responsible for the actions of police and security forces under his command who have engaged in cruel, inhuman or degrading treatment or torture. In addition, by upholding the impunity of security forces and actively encouraging violence against LGBT persons, Alaudinov has facilitated, incited, promoted, and provided support for, the torture and murder of LGBT persons. Alaudinov is also responsible for the mistreatment of human rights defender Ruslan Kutaev. (Gender):Male",Individual,Primary name variation,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14015 +ALAUDINOV,Apty,,,,,,,,,05/10/1973,Stavropol,Russia,Russia,,,,,Deputy Minister of Internal Affairs of the Chechen Republic and Major General of the Police,,,,,,,,,"(UK Sanctions List Ref):GHR0062 (UK Statement of Reasons):Apti Alaudinov is the Deputy Minister of Internal Affairs of the Chechen Republic and Major General of the Police. In this position Alaudinov has presided over several waves of persecution against the LGBT community in Chechnya from 2017 to 2019. As a leading, senior official, Alaudinov is responsible for the actions of police and security forces under his command who have engaged in cruel, inhuman or degrading treatment or torture. In addition, by upholding the impunity of security forces and actively encouraging violence against LGBT persons, Alaudinov has facilitated, incited, promoted, and provided support for, the torture and murder of LGBT persons. Alaudinov is also responsible for the mistreatment of human rights defender Ruslan Kutaev. (Gender):Male",Individual,Primary name variation,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14015 +AL-AUJAYD,Abdullah,Shuwar,,,,,,,,00/00/1973,"Sahl Village, Raqqa Province",Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0132 (UN Ref):QDi.384 A leader of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). As of Jun, 2015, al-Shawakh was the ISIL governor of Aleppo. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13317 +AL-AULAQI,Anwar,,,,,,,,,21/04/1971,"Las Cruces, New Mexico",United States,(1) United States. (2) Yemen,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0144 (UN Ref):QDi.283 Confirmed to have died on 30 Sep. 2011 in Yemen. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621291,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/07/2010,20/07/2010,12/01/2022,11208 +AL-AULAQI,Anwar,,,,,,,,,22/04/1971,"Las Cruces, New Mexico",United States,(1) United States. (2) Yemen,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0144 (UN Ref):QDi.283 Confirmed to have died on 30 Sep. 2011 in Yemen. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621291,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/07/2010,20/07/2010,12/01/2022,11208 +AL-AULAQI,ANWAR,NASSER,ABDULLA,,,,انور ناصر عبدالله العولقي,,,21/04/1971,"Las Cruces, New Mexico",United States,(1) United States. (2) Yemen,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0144 (UN Ref):QDi.283 Confirmed to have died on 30 Sep. 2011 in Yemen. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621291,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,30/07/2010,20/07/2010,12/01/2022,11208 +AL-AULAQI,ANWAR,NASSER,ABDULLA,,,,انور ناصر عبدالله العولقي,,,22/04/1971,"Las Cruces, New Mexico",United States,(1) United States. (2) Yemen,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0144 (UN Ref):QDi.283 Confirmed to have died on 30 Sep. 2011 in Yemen. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621291,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,30/07/2010,20/07/2010,12/01/2022,11208 +AL-AWLAKI,Anwar,,,,,,,,,21/04/1971,"Las Cruces, New Mexico",United States,(1) United States. (2) Yemen,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0144 (UN Ref):QDi.283 Confirmed to have died on 30 Sep. 2011 in Yemen. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621291,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/07/2010,20/07/2010,12/01/2022,11208 +AL-AWLAKI,Anwar,,,,,,,,,22/04/1971,"Las Cruces, New Mexico",United States,(1) United States. (2) Yemen,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0144 (UN Ref):QDi.283 Confirmed to have died on 30 Sep. 2011 in Yemen. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621291,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/07/2010,20/07/2010,12/01/2022,11208 +AL-AWLAQI,Anwar,,,,,,,,,21/04/1971,"Las Cruces, New Mexico",United States,(1) United States. (2) Yemen,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0144 (UN Ref):QDi.283 Confirmed to have died on 30 Sep. 2011 in Yemen. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621291,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/07/2010,20/07/2010,12/01/2022,11208 +AL-AWLAQI,Anwar,,,,,,,,,22/04/1971,"Las Cruces, New Mexico",United States,(1) United States. (2) Yemen,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0144 (UN Ref):QDi.283 Confirmed to have died on 30 Sep. 2011 in Yemen. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621291,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/07/2010,20/07/2010,12/01/2022,11208 +AL-AZAB,Imad,Muwaffaq,,,,,,,,00/00/1970,Damascus Countryside,Syria,Syria,,,,,Former Minister of Education,,,,,,,,,"(UK Sanctions List Ref):SYR0344 Relatives/business associates or partners/links to listed individuals: Bashar Asad (UK Statement of Reasons):Former Minister of Education. As a former Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population.",Individual,Primary name,,Syria,04/03/2019,31/12/2020,31/12/2020,13773 +AL-AZADI,Abu,Maryam,,,,,,,,15/09/1978,Dammam,Saudi Arabia,Saudi Arabia,E126785,"Saudi Arabia number, issued on 27 May 2002. Expired on 3 Apr. 2007.",,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0123 (UN Ref):QDi.329 Senior member of Al-Qaida (QDe.004). Wanted by the Saudi Arabian Government for terrorism. Father's name is Abdullah Saleh al Zahrani. Physical description: eye colour: dark; hair colour: dark; complexion: olive. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13126 +ALAZAI,Agha,Jan,,,,,,,,15/10/1963,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +ALAZAI,Agha,Jan,,,,,,,,14/02/1973,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +ALAZAI,Agha,Jan,,,,,,,,00/00/1967,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +ALAZAI,Agha,Jan,,,,,,,,00/00/1957,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +AL-'AZIZ,Abu,Abd,,,,,,,,00/00/1943,,India,Saudi Arabia,,,4-6032-0048-1,Saudi Arabian NI,,,,,,,,,,(UK Sanctions List Ref):AQD0221 (UN Ref):QDi.266 Financier of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Has served as the leader of Lashkar-e-Tayyiba in Saudi Arabia. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543496,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9218 +AL-'AZIZ,Abu,Abd,,,,,,,,00/00/1944,,India,Saudi Arabia,,,4-6032-0048-1,Saudi Arabian NI,,,,,,,,,,(UK Sanctions List Ref):AQD0221 (UN Ref):QDi.266 Financier of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Has served as the leader of Lashkar-e-Tayyiba in Saudi Arabia. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543496,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9218 +AL-'AZIZ,Abu,Abd,,,,,,,,17/08/1943,,India,Saudi Arabia,,,4-6032-0048-1,Saudi Arabian NI,,,,,,,,,,(UK Sanctions List Ref):AQD0221 (UN Ref):QDi.266 Financier of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Has served as the leader of Lashkar-e-Tayyiba in Saudi Arabia. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543496,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9218 +AL-AZZAWI,HIKMAT,MIZBAN,IBRAHIM,,,,حكمت مزبان إبراهيم العزاوي,,,00/00/1934,Diyala,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0089 (UN Ref):IQi.028,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7578 +AL-BADHALI,Mubarak,Mishkhis,Sanad,,,,,,,01/10/1961,,Kuwait,Kuwait,(1) 101856740 (2) 002955916,"(1) Kuwait number, issued on 12 May 2005 (and expired on 11 May 2007) (2) Kuwait number",261122400761,Kuwait,,,,,,,Al-Salibekhat area,,Kuwait,"(UK Sanctions List Ref):AQD0258 (UN Ref):QDi.238 Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518768. Address country Kuwait, (residence as at March 2009)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,16/01/2008,31/12/2020,9226 +AL-BADRANI,Muhammed,Yunis,Ahmad,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Al-Hasaka,,Syria,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-BADRANI,Muhammed,Yunis,Ahmad,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Damascus,,Syria,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-BADRANI,Muhammed,Yunis,Ahmad,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-BADRANI,Muhammed,Yunis,Ahmad,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Mosul,,Iraq,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-BADRANI,Muhammed,Yunis,Ahmad,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Wadi Al-Hawi,,Iraq,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-BADRANI,Muhammed,Yunis,Ahmad,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,Al-Dawar Street,,,,,Bludan,,Syria,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-BAGHDADI,Abu,Bakr,,,,,أبو بكر البغدادي الحسيني القريشي,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +AL-BAGHDADI,Abu,Bakr,,,,,أبو بكر البغدادي الحسيني القريشي,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +AL-BAKAR,Ibrahim,'Issa,,,,,,,,12/07/1977,,Qatar,Qatar,01016646,Qatar. Issued in Qatar. Expired on 11 Jan. 2017.,27763401255,Qatar identification number,,,,,,,Al Rayyan,,Qatar,(UK Sanctions List Ref):AQD0200 (UN Ref):QDi.344 Facilitator who provides financial support for and financial services to and in support of Al-Qaida (QDe.004). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843241,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,24/03/2021,13195 +AL-BAKAR,Ibrahim,'Issa Haji,Muhammad,,,,,,,12/07/1977,,Qatar,Qatar,01016646,Qatar. Issued in Qatar. Expired on 11 Jan. 2017.,27763401255,Qatar identification number,,,,,,,Al Rayyan,,Qatar,(UK Sanctions List Ref):AQD0200 (UN Ref):QDi.344 Facilitator who provides financial support for and financial services to and in support of Al-Qaida (QDe.004). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843241,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,24/03/2021,13195 +AL-BAKER,Ibrahim,Issa Hijji,Muhammad,,,,,,,12/07/1977,,Qatar,Qatar,01016646,Qatar. Issued in Qatar. Expired on 11 Jan. 2017.,27763401255,Qatar identification number,,,,,,,Al Rayyan,,Qatar,(UK Sanctions List Ref):AQD0200 (UN Ref):QDi.344 Facilitator who provides financial support for and financial services to and in support of Al-Qaida (QDe.004). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843241,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,24/03/2021,13195 +ALBAKER,Ibrahim,Issa Hijji,Mohd,,,,,,,12/07/1977,,Qatar,Qatar,01016646,Qatar. Issued in Qatar. Expired on 11 Jan. 2017.,27763401255,Qatar identification number,,,,,,,Al Rayyan,,Qatar,(UK Sanctions List Ref):AQD0200 (UN Ref):QDi.344 Facilitator who provides financial support for and financial services to and in support of Al-Qaida (QDe.004). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843241,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,24/03/2021,13195 +AL-BAKR,Ibrahim,,,,,,,,,12/07/1977,,Qatar,Qatar,01016646,Qatar. Issued in Qatar. Expired on 11 Jan. 2017.,27763401255,Qatar identification number,,,,,,,Al Rayyan,,Qatar,(UK Sanctions List Ref):AQD0200 (UN Ref):QDi.344 Facilitator who provides financial support for and financial services to and in support of Al-Qaida (QDe.004). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843241,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,24/03/2021,13195 +AL-BAKR,Ibrahim,'Isa Haji,,,,,,,,12/07/1977,,Qatar,Qatar,01016646,Qatar. Issued in Qatar. Expired on 11 Jan. 2017.,27763401255,Qatar identification number,,,,,,,Al Rayyan,,Qatar,(UK Sanctions List Ref):AQD0200 (UN Ref):QDi.344 Facilitator who provides financial support for and financial services to and in support of Al-Qaida (QDe.004). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843241,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,24/03/2021,13195 +AL-BAKR,IBRAHIM,'ISA HAJJI,MUHAMMAD,,,,ابراهیم عیسی حاجي محمد البکر,,,12/07/1977,,Qatar,Qatar,01016646,Qatar. Issued in Qatar. Expired on 11 Jan. 2017.,27763401255,Qatar identification number,,,,,,,Al Rayyan,,Qatar,(UK Sanctions List Ref):AQD0200 (UN Ref):QDi.344 Facilitator who provides financial support for and financial services to and in support of Al-Qaida (QDe.004). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843241,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,24/03/2021,13195 +AL-BANSHI,Taha,,,,,,,,,00/00/1977,Binnish,Syria,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0113 (UN Ref):QDi.325 Official spokesman of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and emir of ISIL in Syria, closely associated with Abu Mohammed al-Jawlani (QDi.317) and Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809950",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13086 +AL-BARASHA,Mohamad,,,,,,,,,00/00/1955,Damascus,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0372 (UK Statement of Reasons):Minister of State. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,AKA,,Syria,06/11/2020,31/12/2020,14/02/2022,14002 +AL-BARASHA,Mohamad,Fayez,,,,,,,,00/00/1955,Damascus,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0372 (UK Statement of Reasons):Minister of State. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,06/11/2020,31/12/2020,14/02/2022,14002 +AL-BARASHA,Mohammad,,,,,,,,,00/00/1955,Damascus,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0372 (UK Statement of Reasons):Minister of State. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,06/11/2020,31/12/2020,14/02/2022,14002 +AL-BARASSI,SAFIA,FARKASH,,,,,,,,01/01/1953,Al Bayda,Libya,Oman,03825239,"Oman passport no. date of issue 4 May 2014, expiry 3 May 2024.",98606491,Oman,,,,,,,,,Oman,"(UK Sanctions List Ref):LIB0062 (UN Ref):LYi.019 Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5526015. Believed Location - Egypt",Individual,Primary name,,Libya,03/03/2011,24/06/2011,10/02/2022,11642 +AL-BARASSI,SAFIA,FARKASH,,,,,,,,01/01/1953,Al Bayda,Libya,Oman,03825239,"Oman passport no. date of issue 4 May 2014, expiry 3 May 2024.",98606491,Oman,,,,,,,,,Egypt,"(UK Sanctions List Ref):LIB0062 (UN Ref):LYi.019 Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5526015. Believed Location - Egypt",Individual,Primary name,,Libya,03/03/2011,24/06/2011,10/02/2022,11642 +AL-BARASSI,SAFIA,FARKASH,,,,,,,,00/00/1952,Al Bayda,Libya,Oman,03825239,"Oman passport no. date of issue 4 May 2014, expiry 3 May 2024.",98606491,Oman,,,,,,,,,Egypt,"(UK Sanctions List Ref):LIB0062 (UN Ref):LYi.019 Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5526015. Believed Location - Egypt",Individual,Primary name,,Libya,03/03/2011,24/06/2011,10/02/2022,11642 +AL-BARASSI,SAFIA,FARKASH,,,,,,,,00/00/1952,Al Bayda,Libya,Oman,03825239,"Oman passport no. date of issue 4 May 2014, expiry 3 May 2024.",98606491,Oman,,,,,,,,,Oman,"(UK Sanctions List Ref):LIB0062 (UN Ref):LYi.019 Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5526015. Believed Location - Egypt",Individual,Primary name,,Libya,03/03/2011,24/06/2011,10/02/2022,11642 +AL-BARAZI,Talal,,,,,,,,,00/00/1963,Hama City,Syria,,,,,,Former Minister of Internal Trade and Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0360 (UK Statement of Reasons):Former Minister of Internal Trade and Consumer Protection. Appointed in May 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population. (Gender):Male",Individual,Primary name,,Syria,16/10/2020,31/12/2020,13/05/2022,13976 +AL-BARSHA,Mohamad,,,,,,,,,00/00/1955,Damascus,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0372 (UK Statement of Reasons):Minister of State. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,AKA,,Syria,06/11/2020,31/12/2020,14/02/2022,14002 +AL-BARSHA,Mohamad,Fayez,,,,,,,,00/00/1955,Damascus,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0372 (UK Statement of Reasons):Minister of State. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,06/11/2020,31/12/2020,14/02/2022,14002 +AL-BARSHA,Mohammad,,,,,,,,,00/00/1955,Damascus,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0372 (UK Statement of Reasons):Minister of State. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,06/11/2020,31/12/2020,14/02/2022,14002 +"AL-BASHAAIR TRADING COMPANY, L TD",,,,,,,,,,,,,,,,,,,Sadoon Street,Al-Ani Building,First Floor,,,Baghdad,,Iraq,(UK Sanctions List Ref):IRQ0057 (UN Ref):IQe.204,Entity,AKA,,Iraq,05/05/2004,26/04/2004,31/12/2020,8277 +"AL-BASHAER TRADING COMPANY, LTD",,,,,,,,,,,,,,,,,,,Sadoon Street,Al-Ani Building,First Floor,,,Baghdad,,Iraq,(UK Sanctions List Ref):IRQ0057 (UN Ref):IQe.204,Entity,AKA,,Iraq,05/05/2004,26/04/2004,31/12/2020,8277 +"AL-BASHAIR TRADING COMPANY, LTD",,,,,,,,,,,,,,,,,,,Sadoon Street,Al-Ani Building,First Floor,,,Baghdad,,Iraq,(UK Sanctions List Ref):IRQ0057 (UN Ref):IQe.204,Entity,Primary name,,Iraq,05/05/2004,26/04/2004,31/12/2020,8277 +"AL-BASHA'IR TRADING COMPANY, LTD",,,,,,,,,,,,,,,,,,,Sadoon Street,Al-Ani Building,First Floor,,,Baghdad,,Iraq,(UK Sanctions List Ref):IRQ0057 (UN Ref):IQe.204,Entity,AKA,,Iraq,05/05/2004,26/04/2004,31/12/2020,8277 +"AL-BASHIR TRADING COMPANY, LTD",,,,,,,,,,,,,,,,,,,Sadoon Street,Al-Ani Building,First Floor,,,Baghdad,,Iraq,(UK Sanctions List Ref):IRQ0057 (UN Ref):IQe.204,Entity,AKA,,Iraq,05/05/2004,26/04/2004,31/12/2020,8277 +AL-BASIR,'Abd,,,,,Haji,,,,00/00/1965,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +AL-BASIR,'Abd,,,,,Haji,,,,00/00/1960,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +AL-BASIR,'Abd,,,,,Haji,,,,00/00/1963,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +AL-BATHALI,Mubarak,,,,,,,,,01/10/1961,,Kuwait,Kuwait,(1) 101856740 (2) 002955916,"(1) Kuwait number, issued on 12 May 2005 (and expired on 11 May 2007) (2) Kuwait number",261122400761,Kuwait,,,,,,,Al-Salibekhat area,,Kuwait,"(UK Sanctions List Ref):AQD0258 (UN Ref):QDi.238 Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518768. Address country Kuwait, (residence as at March 2009)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,16/01/2008,31/12/2020,9226 +AL-BATHALI,Mubarak,Mishkhas,Sanad,,,,,,,01/10/1961,,Kuwait,Kuwait,(1) 101856740 (2) 002955916,"(1) Kuwait number, issued on 12 May 2005 (and expired on 11 May 2007) (2) Kuwait number",261122400761,Kuwait,,,,,,,Al-Salibekhat area,,Kuwait,"(UK Sanctions List Ref):AQD0258 (UN Ref):QDi.238 Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518768. Address country Kuwait, (residence as at March 2009)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,16/01/2008,31/12/2020,9226 +AL-BATHALI,Mubarak,Mishkhis,Sanad,,,,,,,01/10/1961,,Kuwait,Kuwait,(1) 101856740 (2) 002955916,"(1) Kuwait number, issued on 12 May 2005 (and expired on 11 May 2007) (2) Kuwait number",261122400761,Kuwait,,,,,,,Al-Salibekhat area,,Kuwait,"(UK Sanctions List Ref):AQD0258 (UN Ref):QDi.238 Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518768. Address country Kuwait, (residence as at March 2009)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,16/01/2008,31/12/2020,9226 +AL-BAYJAT,Bashar,Sabawi,Ibrahim,Hasan,,,,,,17/07/1970,,,Iraq,,,,,,,,,,,Beirut,,Lebanon,(UK Sanctions List Ref):IRQ0146 (UN Ref):IQi.085,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8697 +AL-BAYJAT,Bashar,Sabawi,Ibrahim,Hasan,,,,,,17/07/1970,,,Iraq,,,,,,Fuad Dawod Farm,,,,Az Zabadani,Damascus,,Syria,(UK Sanctions List Ref):IRQ0146 (UN Ref):IQi.085,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8697 +AL-BAZALI,Mubarak,Mishkhas,Sanad,,,,,,,01/10/1961,,Kuwait,Kuwait,(1) 101856740 (2) 002955916,"(1) Kuwait number, issued on 12 May 2005 (and expired on 11 May 2007) (2) Kuwait number",261122400761,Kuwait,,,,,,,Al-Salibekhat area,,Kuwait,"(UK Sanctions List Ref):AQD0258 (UN Ref):QDi.238 Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518768. Address country Kuwait, (residence as at March 2009)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,16/01/2008,31/12/2020,9226 +AL-BIJA,,,,,,,,,,27/07/1986,Tripoli,Libya,Libya,G52FYPRL,"Libya, issued on 8 May 2014 (Date of expiration: 7 May 2022)",,,Commander of the Coast Guard in Zawiya,Zawiya,,,,,,,Libya,"(UK Sanctions List Ref):LIB0039 (UN Ref):LYi.026 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,30/04/2021,13676 +AL-BITAR,Bayan,,,,,Doctor,,,,08/03/1947,,,,,,,,Managing Director of the Organisation for Technological Industries (OTI) and the Syrian Company for Information Technology (SCIT),PO Box 11037,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0030 (UK Statement of Reasons):Managing Director of the Organisation for Technological Industries (OTI), and the Syrian Company for Information Technology (SCIT), which are both subsidiaries of the Syrian Ministry of Defence, which has been designated by the Council. OTI assists in the production of chemical weapons for the Syrian regime. As Managing Director of OTI and the SCIT Bayan Bitar provides support to the Syrian regime. Due to his role in the production of chemical weapons, he also shares responsibility for the violent repression against the Syrian population. In view of his senior position in these entities, he is also associated with the designated entities OTI and SCIT. (Gender):Male",Individual,AKA,,Syria,09/03/2015,31/12/2020,17/02/2022,13228 +ALBOHAMAD,Nawful,Humadi,Sultan,Yousif,,,,,,23/02/1964,,Iraq,Iraq,,,71719043,,,,,,,,,,Iraq,"(UK Sanctions List Ref):GAC0027 (UK Statement of Reasons):Nawfal Hammadi Al-Sultan has been involved in serious corruption in Nineveh province, Iraq involving the misappropriation of state property to his benefit and the benefit of others. In his role as governor of Nineveh province, he misappropriated public funds intended for reconstruction efforts and to provide support for civilians and improperly awarded contracts and other state property. Additional information: in February 2021 Al-Sultan was convicted by the Central Anti-Corruption Criminal Court in Iraq in relation to some of his corrupt activities when governor of Nineveh Governorate. He was convicted of two offences of “harming a public body” under Article 340 of Iraq’s Penal Code and sentenced to a total of five years in prison, for: (i) wasting five billion Iraqi Dinars of public funds of Nineveh Governorate through fictitious works and contracts, and (ii) improperly disposing of 50 tons of asphalt delivered to him for paving the streets and for reconstruction in 2017. (Gender):Male",Individual,AKA,,Global Anti-Corruption,22/07/2021,22/07/2021,22/07/2021,14130 +ALBOST,Meshal,Saad,,,,,,,,27/03/1987,,,Saudi Arabia,R339037,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0036 (UK Statement of Reasons):Meshal Saad Al Bostani was First Lieutenant in the Saudi Air Force. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi General Consul’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13885 +ALBOSTANI,Meshal,Saad,,,,,,,,27/03/1987,,,Saudi Arabia,R339037,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0036 (UK Statement of Reasons):Meshal Saad Al Bostani was First Lieutenant in the Saudi Air Force. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi General Consul’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13885 +AL-BOSTANI,Meshal,Saad,,,,,,,,27/03/1987,,,Saudi Arabia,R339037,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0036 (UK Statement of Reasons):Meshal Saad Al Bostani was First Lieutenant in the Saudi Air Force. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi General Consul’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13885 +AL-BRITANI,Umm,Hussain,,,,,,,,17/11/1968,"Greenwich, Greater London",United Kingdom,United Kingdom,519408086,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0310 (UN Ref):QDi.360 Recruiter for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Sex: female. Husband’s name is: Junaid Hussain. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897339. Syria, as at 2013 (Gender):Female",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13288 +AL-BRITANI,Umm,Hussain,,,,,,,,17/11/1968,"Greenwich, Greater London",United Kingdom,United Kingdom,519408086,,,,,,,,,,,,United Kingdom,"(UK Sanctions List Ref):AQD0310 (UN Ref):QDi.360 Recruiter for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Sex: female. Husband’s name is: Junaid Hussain. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897339. Syria, as at 2013 (Gender):Female",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13288 +AL-BTHALY,Mobarak,Meshkhas,Sanad,,,,,,,01/10/1961,,Kuwait,Kuwait,(1) 101856740 (2) 002955916,"(1) Kuwait number, issued on 12 May 2005 (and expired on 11 May 2007) (2) Kuwait number",261122400761,Kuwait,,,,,,,Al-Salibekhat area,,Kuwait,"(UK Sanctions List Ref):AQD0258 (UN Ref):QDi.238 Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518768. Address country Kuwait, (residence as at March 2009)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,16/01/2008,31/12/2020,9226 +AL-BUGHANIMI,Faysal,,,,,,,,,28/10/1966,Tunis,Tunisia,Tunisia,,,,,,Number 5/B viale Cambonino,,,,,Cremona,,Italy,(UK Sanctions List Ref):AQD0171 (UN Ref):QDi.188 Italian Fiscal code: BGHFCL66R28Z352G. Sentenced to 7 years imprisonment in Italy on 29 Jun. 2007 by the Brescia Second Appeals Court. In detention in Italy as at Jun. 2009. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423839,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2005,29/07/2005,31/12/2020,8683 +"AL-BUSHAIR TRADING COMPANY, LTD",,,,,,,,,,,,,,,,,,,Sadoon Street,Al-Ani Building,First Floor,,,Baghdad,,Iraq,(UK Sanctions List Ref):IRQ0057 (UN Ref):IQe.204,Entity,AKA,,Iraq,05/05/2004,26/04/2004,31/12/2020,8277 +AL-CARDINAL,,,,,,,,,,00/01/1957,,,(1) Sudan (2) South Sudan (3) United Arab Emirates,B00018325,,,,Businessman,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0015 (UK Statement of Reasons):Ashraf Seed Ahmed Hussein Ali, widely known as AL-CARDINAL, has been involved in serious corruption in South Sudan involving the misappropriation of state property to his benefit and the benefit of others. He has been the beneficiary of commitments from the State which constituted the improper diversion of significant amounts of government revenues and funds. His actions facilitated or provided support for serious corruption that has caused damage to South Sudan’s public finances and contributed to ongoing instability and conflict. (Gender):Male",Individual,AKA,,Global Anti-Corruption,26/04/2021,26/04/2021,08/02/2022,14097 +AL-CARDINAL,,,,,,,,,,01/04/1957,,,(1) Sudan (2) South Sudan (3) United Arab Emirates,B00018325,,,,Businessman,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0015 (UK Statement of Reasons):Ashraf Seed Ahmed Hussein Ali, widely known as AL-CARDINAL, has been involved in serious corruption in South Sudan involving the misappropriation of state property to his benefit and the benefit of others. He has been the beneficiary of commitments from the State which constituted the improper diversion of significant amounts of government revenues and funds. His actions facilitated or provided support for serious corruption that has caused damage to South Sudan’s public finances and contributed to ongoing instability and conflict. (Gender):Male",Individual,AKA,,Global Anti-Corruption,26/04/2021,26/04/2021,08/02/2022,14097 +AL-CHA’AR,Mohamed,,,,,,,,,,,,Syria,,,,,Military Official,,,,,,,,,(UK Sanctions List Ref):SYR0381 (UK Statement of Reasons):Political Security Division. Military Official involved in the violence in Homs.,Individual,Primary name variation,,Syria,13/05/2022,13/05/2022,13/05/2022,15382 +AL-CHA’AR,Mohammad,,,,,,,,,,,,Syria,,,,,Military Official,,,,,,,,,(UK Sanctions List Ref):SYR0381 (UK Statement of Reasons):Political Security Division. Military Official involved in the violence in Homs.,Individual,Primary name variation,,Syria,13/05/2022,13/05/2022,13/05/2022,15382 +AL-CHA’AR,Mohammed,,,,,,,,,,,,Syria,,,,,Military Official,,,,,,,,,(UK Sanctions List Ref):SYR0381 (UK Statement of Reasons):Political Security Division. Military Official involved in the violence in Homs.,Individual,Primary name variation,,Syria,13/05/2022,13/05/2022,13/05/2022,15382 +AL-CHAAR,Mohamed,,,,,,,,,,,,Syria,,,,,Military Official,,,,,,,,,(UK Sanctions List Ref):SYR0381 (UK Statement of Reasons):Political Security Division. Military Official involved in the violence in Homs.,Individual,Primary name variation,,Syria,13/05/2022,13/05/2022,13/05/2022,15382 +AL-CHAAR,Mohammad,,,,,,,,,,,,Syria,,,,,Military Official,,,,,,,,,(UK Sanctions List Ref):SYR0381 (UK Statement of Reasons):Political Security Division. Military Official involved in the violence in Homs.,Individual,Primary name variation,,Syria,13/05/2022,13/05/2022,13/05/2022,15382 +AL-CHAAR,Mohammed,,,,,,,,,,,,Syria,,,,,Military Official,,,,,,,,,(UK Sanctions List Ref):SYR0381 (UK Statement of Reasons):Political Security Division. Military Official involved in the violence in Homs.,Individual,Primary name variation,,Syria,13/05/2022,13/05/2022,13/05/2022,15382 +AL-CHAAR,Muhammad,,,,,,,,,,,,Syria,,,,,Military Official,,,,,,,,,(UK Sanctions List Ref):SYR0381 (UK Statement of Reasons):Political Security Division. Military Official involved in the violence in Homs.,Individual,Primary name variation,,Syria,13/05/2022,13/05/2022,13/05/2022,15382 +AL-CHA'AR,Muhammad,,,,,,,,,,,,Syria,,,,,Military Official,,,,,,,,,(UK Sanctions List Ref):SYR0381 (UK Statement of Reasons):Political Security Division. Military Official involved in the violence in Homs.,Individual,Primary name variation,,Syria,13/05/2022,13/05/2022,13/05/2022,15382 +AL-CHAAR,Mohamed,Ibrahim,,,,,,,,00/00/1950,Latakia Province,Syria,Syria,,,,,(1) Major General (2) Minister for the Interior,,,,,,,,,(UK Sanctions List Ref):SYR0164 (UK Statement of Reasons):There are reasonable grounds to suspect that Mohammed Al-Shaar has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Interior between at least 2011 and 2019. (Gender):Male,Individual,Primary name variation,,Syria,01/12/2011,31/12/2020,13/05/2022,11910 +AL-CHAAR,Mohammad,Ibrahim,,,,,,,,00/00/1950,Latakia Province,Syria,Syria,,,,,(1) Major General (2) Minister for the Interior,,,,,,,,,(UK Sanctions List Ref):SYR0164 (UK Statement of Reasons):There are reasonable grounds to suspect that Mohammed Al-Shaar has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Interior between at least 2011 and 2019. (Gender):Male,Individual,Primary name variation,,Syria,01/12/2011,31/12/2020,13/05/2022,11910 +AL-CHAAR,Mohammed,Ibrahim,,,,,,,,00/00/1950,Latakia Province,Syria,Syria,,,,,(1) Major General (2) Minister for the Interior,,,,,,,,,(UK Sanctions List Ref):SYR0164 (UK Statement of Reasons):There are reasonable grounds to suspect that Mohammed Al-Shaar has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Interior between at least 2011 and 2019. (Gender):Male,Individual,Primary name variation,,Syria,01/12/2011,31/12/2020,13/05/2022,11910 +AL-CHAAR,Muhammad,Ibrahim,,,,,,,,00/00/1950,Latakia Province,Syria,Syria,,,,,(1) Major General (2) Minister for the Interior,,,,,,,,,(UK Sanctions List Ref):SYR0164 (UK Statement of Reasons):There are reasonable grounds to suspect that Mohammed Al-Shaar has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Interior between at least 2011 and 2019. (Gender):Male,Individual,Primary name variation,,Syria,01/12/2011,31/12/2020,13/05/2022,11910 +AL-CHA'AR,Mohamed,Ibrahim,,,,,,,,00/00/1950,Latakia Province,Syria,Syria,,,,,(1) Major General (2) Minister for the Interior,,,,,,,,,(UK Sanctions List Ref):SYR0164 (UK Statement of Reasons):There are reasonable grounds to suspect that Mohammed Al-Shaar has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Interior between at least 2011 and 2019. (Gender):Male,Individual,Primary name variation,,Syria,01/12/2011,31/12/2020,13/05/2022,11910 +AL-CHA'AR,Mohammad,Ibrahim,,,,,,,,00/00/1950,Latakia Province,Syria,Syria,,,,,(1) Major General (2) Minister for the Interior,,,,,,,,,(UK Sanctions List Ref):SYR0164 (UK Statement of Reasons):There are reasonable grounds to suspect that Mohammed Al-Shaar has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Interior between at least 2011 and 2019. (Gender):Male,Individual,Primary name variation,,Syria,01/12/2011,31/12/2020,13/05/2022,11910 +AL-CHA'AR,Mohammed,Ibrahim,,,,,,,,00/00/1950,Latakia Province,Syria,Syria,,,,,(1) Major General (2) Minister for the Interior,,,,,,,,,(UK Sanctions List Ref):SYR0164 (UK Statement of Reasons):There are reasonable grounds to suspect that Mohammed Al-Shaar has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Interior between at least 2011 and 2019. (Gender):Male,Individual,Primary name variation,,Syria,01/12/2011,31/12/2020,13/05/2022,11910 +AL-CHA'AR,Muhammad,Ibrahim,,,,,,,,00/00/1950,Latakia Province,Syria,Syria,,,,,(1) Major General (2) Minister for the Interior,,,,,,,,,(UK Sanctions List Ref):SYR0164 (UK Statement of Reasons):There are reasonable grounds to suspect that Mohammed Al-Shaar has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Interior between at least 2011 and 2019. (Gender):Male,Individual,Primary name variation,,Syria,01/12/2011,31/12/2020,13/05/2022,11910 +AL-CHARIF,Amar,,,,,,,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +AL-CHARIF,Ammar,,,,,,,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +AL-CHARIF,Ammar,Medhat,,,,,,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +AL-CHARIF,Ibrahim,Zarroug,,,,,,,,,,,,,,,,Minister of Social Affairs in Colonel Qadhafi’s Government,,,,,,,,,"(UK Sanctions List Ref):LIB0023 (UK Statement of Reasons):As Minister for Social Affairs in Colonel Qadhafi's Government, is associated Muammar Qadhafi. Al Charif has made public statements which are supportive of the repressive policies off the Qadhafi regime.",Individual,Primary name,,Libya,22/03/2011,31/12/2020,31/12/2020,11704 +AL-CHIBABI,Fares,,,,,,,,,07/05/1972,,,Syria,,,,,(1) President of Aleppo Chamber of Industry (2) Vice-chairman of Cham Holding (3) Chairman of the Federation of Chambers of Industry. Appointed in 16 December 2018,,,,,,,,,"(UK Sanctions List Ref):SYR0041 Son of Ahmad Chehabi (UK Statement of Reasons):President of Aleppo Chamber of Industry, Chairman of the Federation of Chambers of Industry since 16.12.2018. Vice-chairman of Cham Holding. Provides economic support to the Syrian regime. Former Member of the Syrian Parliament (2016-2020). (Gender):Male",Individual,Primary name variation,,Syria,05/09/2011,31/12/2020,16/06/2022,12058 +AL-CHIBABI,Fares,,,,,,,,,07/09/1972,,,Syria,,,,,(1) President of Aleppo Chamber of Industry (2) Vice-chairman of Cham Holding (3) Chairman of the Federation of Chambers of Industry. Appointed in 16 December 2018,,,,,,,,,"(UK Sanctions List Ref):SYR0041 Son of Ahmad Chehabi (UK Statement of Reasons):President of Aleppo Chamber of Industry, Chairman of the Federation of Chambers of Industry since 16.12.2018. Vice-chairman of Cham Holding. Provides economic support to the Syrian regime. Former Member of the Syrian Parliament (2016-2020). (Gender):Male",Individual,Primary name variation,,Syria,05/09/2011,31/12/2020,16/06/2022,12058 +ALCHIMIST MARATHON,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0097 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK tanker M/V AN SAN 1 was involved in ship-to-ship transfer operations, likely for oil, in late January 2018. Listed as asset of Korea Ansan Shipping Company (OFSI ID: 13633, UN Reference Number: UN Ref KPe.062) (IMO number):7303803 (Current owners):Korean Ansan Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Chemical Carrier (Tonnage of ship):1757 (Length of ship):86 (Year built):1973",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13648 +ALCHIMIST ROTTERDAM,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0097 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK tanker M/V AN SAN 1 was involved in ship-to-ship transfer operations, likely for oil, in late January 2018. Listed as asset of Korea Ansan Shipping Company (OFSI ID: 13633, UN Reference Number: UN Ref KPe.062) (IMO number):7303803 (Current owners):Korean Ansan Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Chemical Carrier (Tonnage of ship):1757 (Length of ship):86 (Year built):1973",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13648 +AL-DABACHI,,,,,,,,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,,,,,,Dbabsha-Sabratah,,,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +AL-DABACHI,,,,,,,,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,,,,,,Zawiya,,Libya,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +AL-DABACHI,,,,,,,,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,Garabulli,,,,,Garabulli,,Libya,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +AL-DABSKI,SALEM,NOR ELDIN,AMOHAMED,,,,سالم نور الدين امحمد الدبيسكي,,,00/00/1963,Tripoli,Libya,Libya,(1) 1990/345751. (2) 345741,(1) Libyan (2) Libyan,220334,Libya,,Bab Ben Ghasheer,,,,,Tripoli,,Libya,(UK Sanctions List Ref):AQD0305 (UN Ref):QDi.231 Mother's name is Kalthoum Abdul Salam al-Shaftari. Senior member of Libyan Islamic Fighting Group (QDe.011) and member of Al-Qaida (QDe.004). Review pursuant to Security Council resolution 1822 (2008) was concluded on 24 Nov. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1480002,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,15/06/2007,08/06/2007,31/12/2020,8645 +AL-DAFEER,Ali,,,,,,,,,00/00/1962,Tartus,,Syria,,,,,Former Minister of Communications and Technology,,,,,,,,,"(UK Sanctions List Ref):SYR0010 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Communications and Technology. As a Former Government Minister, shares responsibility for the violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13398 +AL-DARDA',Abu,,,,,,,,,00/00/1974,,Syria,Jordan,(1) 654781 (2) 286062,"(1) Jordan. Approximately issued in 2009. (2) Jordan. Issued on 5 April 1999 at Zarqa, Jordan. Expired on 4 April 2004.",,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0209 (UN Ref):QDi.400 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) for coastal area of Syrian Arab Republic since March 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6013286. Coastal area of Syrian Arab Republic. Location as of April 2016.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13447 +AL-DARI,Muthana,Haris,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,Muthana,Haris,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Amman,,Jordan,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,Muthana,Haris,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Khan Dari,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,Muthana,Haris,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,Asas Village,Abu Ghurayb,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,Muthanna,,,,,Doctor,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,Muthanna,,,,,Doctor,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Amman,,Jordan,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,Muthanna,,,,,Doctor,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Khan Dari,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,Muthanna,,,,,Doctor,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,Asas Village,Abu Ghurayb,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,Muthanna,Hareth,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,Muthanna,Hareth,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Amman,,Jordan,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,Muthanna,Hareth,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Khan Dari,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,Muthanna,Hareth,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,Asas Village,Abu Ghurayb,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,Muthanna,Harith,Sulayman,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,Muthanna,Harith,Sulayman,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Amman,,Jordan,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,Muthanna,Harith,Sulayman,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Khan Dari,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,Muthanna,Harith,Sulayman,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,Asas Village,Abu Ghurayb,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,MUTHANNA,HARITH,,,,,مثنى حارث الضاري,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,MUTHANNA,HARITH,,,,,مثنى حارث الضاري,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Amman,,Jordan,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,MUTHANNA,HARITH,,,,,مثنى حارث الضاري,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Khan Dari,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARI,MUTHANNA,HARITH,,,,,مثنى حارث الضاري,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,Asas Village,Abu Ghurayb,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DARNAVI,Hamza,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,,,,,,Reportedly located in Waziristan,,,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +AL-DARNAVI,Hamza,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,"Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan",,,,,,,Pakistan,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +AL-DARNAWI,Abu-Hamzah,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,,,,,,Reportedly located in Waziristan,,,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +AL-DARNAWI,Abu-Hamzah,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,"Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan",,,,,,,Pakistan,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +AL-DARNAWI,Hamza,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,,,,,,Reportedly located in Waziristan,,,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +AL-DARNAWI,Hamza,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,"Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan",,,,,,,Pakistan,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +AL-DARNAWI,Hamzah,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,,,,,,Reportedly located in Waziristan,,,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +AL-DARNAWI,Hamzah,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,"Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan",,,,,,,Pakistan,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +AL-DHARI,Muthana,Haris,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DHARI,Muthana,Haris,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Amman,,Jordan,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DHARI,Muthana,Haris,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Khan Dari,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DHARI,Muthana,Haris,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,Asas Village,Abu Ghurayb,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DHARI,Muthanna,Hareth,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DHARI,Muthanna,Hareth,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Amman,,Jordan,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DHARI,Muthanna,Hareth,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Khan Dari,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DHARI,Muthanna,Hareth,,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,Asas Village,Abu Ghurayb,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DHARI,Muthanna,Harith,Sulayman,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DHARI,Muthanna,Harith,Sulayman,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Amman,,Jordan,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DHARI,Muthanna,Harith,Sulayman,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Khan Dari,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DHARI,Muthanna,Harith,Sulayman,,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,Asas Village,Abu Ghurayb,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-DIN,Hasan,Izz,,,,,,,,00/00/1963,,Lebanon,Lebanon,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0009 (UK Statement of Reasons):Hasan Izz Al-Din is a member of Lebanese Hizballah. He is wanted by the FBI for his involvement in the hijacking of a commercial airliner on 14 June 1985 during which various passengers and crewmembers were assaulted and one US citizen murdered. (Gender):Male,Individual,Primary name,,Counter-Terrorism (International),12/10/2001,31/12/2020,11/03/2022,7146 +AL-DIN,Hassan,Izz,,,,,,,,00/00/1963,,Lebanon,Lebanon,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0009 (UK Statement of Reasons):Hasan Izz Al-Din is a member of Lebanese Hizballah. He is wanted by the FBI for his involvement in the hijacking of a commercial airliner on 14 June 1985 during which various passengers and crewmembers were assaulted and one US citizen murdered. (Gender):Male,Individual,Primary name variation,,Counter-Terrorism (International),12/10/2001,31/12/2020,11/03/2022,7146 +AL-DJIHAD AL-ISLAMI,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0051 (UN Ref):QDe.119 Founded and led by Najmiddin Kamolitdinovich Jalolov (deceased) and Suhayl Fatilloevich Buranov (deceased). Associated with the Islamic Movement of Uzbekistan (QDe.010) and Emarat Kavkaz (QDe.131). Active in the Afghanistan/Pakistan border area, Central Asia, South Asia region and some European States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278465",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,06/06/2005,01/06/2005,31/12/2020,8652 +AL-DONYA TELEVISION CHANNEL,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0275 (UK Statement of Reasons):Previously known as Addounia TV. Sama TV is a telecommunications entity which spreads disinformation and incites violence against the civilian population in Syria. (Phone number):(1) +963-11-5667271 (2) +963-11-5667274 (Website):http://www.addounia.tv (Type of entity):Media. State-owned,Entity,AKA,,Syria,26/09/2011,31/12/2020,13/05/2022,12151 +AL-DRISSI,NOUREDDINE,BEN ALI,BEN BELKASSEM,,,,نور الدين بن علي بن بلقاسم الدريسي,,,30/04/1964,Tunis,Tunisia,Tunisia,L851940,"issue date: 09/09/1998, expiry date: 08/09/2003",,,,Via Plebiscito 3,,,,,Cremona,,Italy,(UK Sanctions List Ref):AQD0277 (UN Ref):QDi.149 Sentenced to six years of imprisonment for international terrorism in 2008. Deported from Italy to Tunisia on 10 Feb. 2013. Inadmissible to the Schengen area. Mother’s name is Khadijah al-Drissi. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,01/04/2021,7879 +AL-DUNYA TV,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0275 (UK Statement of Reasons):Previously known as Addounia TV. Sama TV is a telecommunications entity which spreads disinformation and incites violence against the civilian population in Syria. (Phone number):(1) +963-11-5667271 (2) +963-11-5667274 (Website):http://www.addounia.tv (Type of entity):Media. State-owned,Entity,AKA,,Syria,26/09/2011,31/12/2020,13/05/2022,12151 +AL-DURI,IZZAT,IBRAHIM,,,,,عزت ابراهيم الدوري,,,00/00/1942,al-Dur,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0067 (UN Ref):IQi.006,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7580 +AL-DURI,JAWHAR,MAJID,,,,,جوهر مجيد الدوري,,,00/00/1942,Al-Dur,Iraq,Iraq,,,,,,,,,,,,,Iraq,(UK Sanctions List Ref):IRQ0129 (UN Ref):IQi.068,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8245 +ALEKHIN,Andrey,Anatolievich,,,,,Алехин Андрей Анатольевич,,,09/02/1959,Novosibirsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0608 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14553 +ALEKPEROV,Vagit,Yusufovich,,,,,,,,09/01/1950,Baku,Azerbaijan,Russia,,,,,(1) PJSC LUKOIL President and CEO (2) Executive Member of PJSC LUKOIL Board of Directors (3) Chairman of PJSC LUKOIL Management Committee,,,,,,,,,"(UK Sanctions List Ref):RUS1334 (UK Statement of Reasons):Vagit Yusufovich ALEKPEROV is President and CEO and an executive member of the Board of Directors of Lukoil, Russia’s second largest oil producer. Through his directorship of Lukoil, ALEKPEROV continues to obtain a benefit from and/or continues to support the Government of Russia by working as a director (whether executive or non-executive), trustee, or equivalent, of entities carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian energy sector. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,13/04/2022,15271 +ALEKSANDROV SCIENTIFIC RESEARCH TECHNOLOGICAL INSTITUTE NITI,,,,,,,Научно-ис Научно-исследовательский технологический институт имени А. П. Александрова,Cyrillic,Russian,,,,,,,,,,72 Koporskoye shosse,Sosnovy Bor,Leningrad region,,,,188540,Russia,"(UK Sanctions List Ref):RUS1349 (UK Statement of Reasons):Aleksandrov Scientific Research Technological Institute NITI is involved in designing, testing, and supporting nuclear power and naval propulsion reactors as well as their systems and parts. Aleksandrov Scientific Research Technological Institute NITI is an involved person under regulation 6(2)(a)(ii) and 6(4)(c) of Russia (Sanctions) (EU Exit) Regulation 2019 because it is carrying on business in a sector of strategic significance to the Government of Russia, the energy sector. (Phone number):+7 81369 22667 (Website):https://www.niti.ru (Email address):foton@niti.ru (Type of entity):Federal State Unitary Enterprise (Business Reg No):1024701759565",Entity,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15301 +ALEKSANDROVICH,Viktar,,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13919 +ALEKSANDROVICH,Viktar,,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,13/04/2022,13919 +ALEKSANDROVICH,Viktor,,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,13/04/2022,13919 +ALEKSANDROVICH,Viktor,,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13919 +ALEKSEENKO,Nikolai,Nikolaevich,,,,,Алексеенко Николай Николаевич,,,29/11/1971,"Izyum, Kharkiv,",Ukraine,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0607 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14552 +ALEKSEEV,Oleg,Aleksandrovich,,,,,,,,21/12/1967,Kurilovka,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0991 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,26/04/2022,14942 +ALEKSEYEV,Oleg,Aleksandrovich,,,,,Олег Александрович АЛЕКСЕЕВ,,,21/12/1967,Kurilovka,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0991 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14942 +ALEM,Ermias,,,,,,ኤርሚኣስ ግርማይ,,,00/00/1980,,Eritrea,Eritrea,,,,,Leader of a transnational trafficking network,Tarig sure no. 51,,,,,Tripoli,,Libya,"(UK Sanctions List Ref):LIB0049 (UN Ref):LYi.021 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)",Individual,Primary name,,Libya,08/06/2018,07/06/2018,21/01/2021,13671 +ALESHKEVICH,Alexander,Mikhailovich,,,,,,,,,,,,,,,,"(1) Former First Deputy Head of the District Department of Internal Affairs in Moskovski District, Minsk (2) Head of Criminal Police (3) Currently Head of the Leninsky District Internal Affairs Directorate of Misk",,,,,,,,,"(UK Sanctions List Ref):BEL0016 (UK Statement of Reasons):In Aliashkevich’s position as First Deputy Head of the District Department of Internal Affairs in Moskovski/Moscow District of the city of Minsk and Head of Criminal Police, he was responsible for the repression and intimidation campaign in that district against peaceful protesters in the wake of the 2020 presidential election, in particular arbitrary arrests, excessive use of force and ill‐treatment, including torture. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13938 +ALESHKEVICH,Aliaksandr,Mikhailavich,,,,,,,,,,,,,,,,"(1) Former First Deputy Head of the District Department of Internal Affairs in Moskovski District, Minsk (2) Head of Criminal Police (3) Currently Head of the Leninsky District Internal Affairs Directorate of Misk",,,,,,,,,"(UK Sanctions List Ref):BEL0016 (UK Statement of Reasons):In Aliashkevich’s position as First Deputy Head of the District Department of Internal Affairs in Moskovski/Moscow District of the city of Minsk and Head of Criminal Police, he was responsible for the repression and intimidation campaign in that district against peaceful protesters in the wake of the 2020 presidential election, in particular arbitrary arrests, excessive use of force and ill‐treatment, including torture. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13938 +ALEXANDROV,Alexey,,,,,,,,,16/06/1981,,,,,,,,FSB Operative attached to Criminalistics Institute,,,,,,,,,"(UK Sanctions List Ref):CHW0018 (UK Statement of Reasons):Alexey Alexandrov is an FSB operative in the Criminalistics Institute - Military Unit 34435. Evidence including phone and travel records suggest that Alexey Alexandrov was one of the operatives involved in the use of a chemical weapon in the attempted assassination of Russian opposition leader Alexey Navalny during his August 2020 visit to Siberia. A chemical weapon - a toxic nerve agent of the Novichok group - was used. Alexandrov was an operative of the Criminalistics Unit present in Tomsk where Navalny was poisoned. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny is a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. There are reasonable grounds to suspect that Alexey Alexandrov in his capacity as an operative in the Federal Security Service of the Russian Federation, was present in Tomsk at the time of the poisoning and was one of the key operatives responsible for the preparation and use of a toxic nerve agent of the Novichok group in the attempted assassination of Alexey Navalny.",Individual,Primary name,,Chemical Weapons,20/08/2021,20/08/2021,20/08/2021,14132 +ALEXANDROV,Vladimir,Gheorghievici,,,,,,,,19/02/1951,Novosibirsk,Russia,Russia,,,,,Deputy Director General of the State-owned enterprise 'United Engine Corporation',,,,,,Transnistria,,,"(UK Sanctions List Ref):RUS0066 (UK Statement of Reasons):Former ‘Ministry of State Security’ in the separatist region of Transnistria. Since 9 July 2014, he has been the Former first vice-prime minister of Donetsk People's Republic, responsible for security and law enforcement. In his capacity, he is responsible for the separatist ‘governmental’ activities of the so called ‘government of the Donetsk People's Republic’. Board member of the State-owned enterprise 'United Engine Corporation', board member of the State owned JSC Research and Production Enterprise 'Temp' named after F. Korotkov. Remains active in supporting separatist actions and policies. (Gender):Male",Individual,AKA,,Russia,25/07/2014,31/12/2020,14/02/2022,13067 +ALEXSEYEV,Vladimir,Stepanovich,,,,,,,,,,,,,,,,First Deputy Head of the GRU,,,,,,,,,"(UK Sanctions List Ref):CHW0007 Relatives/business associates or partners/links to listed individuals: Anatoliy Vladimirovich Chepiga; Igor Olegovich Kostyukov; Alexander Yevgeniyevich Mishkin. (UK Statement of Reasons):Vladimir Stepanovich Alexseyev is the First Deputy Head of the GRU (a.k.a. GU). Given his senior leadership role in the GRU, Alexseyev is responsible for the possession, transport and use in Salisbury during the weekend of 4 March 2018 of the toxic nerve agent “Novichok” by officers from the GRU. (Gender):Male",Individual,Primary name,,Chemical Weapons,21/01/2019,31/12/2020,16/06/2022,13747 +ALFA COMPANY LIMITED FOR INTERNATIONAL TRADING AND MARKETING,,,,,,,,,,,,,,,,,,,PO Box 910606,,,,,Amman,11191,Jordan,(UK Sanctions List Ref):IRQ0059 (UN Ref):IQe.206,Entity,Primary name,,Iraq,07/06/2004,02/06/2004,31/12/2020,8379 +ALFA INVESTMENT AND INTERNATIONAL TRADING,,,,,,,,,,,,,,,,,,,PO Box 910606,,,,,Amman,11191,Jordan,(UK Sanctions List Ref):IRQ0059 (UN Ref):IQe.206,Entity,AKA,,Iraq,07/06/2004,02/06/2004,31/12/2020,8379 +ALFA TRADING COMPANY,,,,,,,,,,,,,,,,,,,PO Box 910606,,,,,Amman,11191,Jordan,(UK Sanctions List Ref):IRQ0059 (UN Ref):IQe.206,Entity,AKA,,Iraq,07/06/2004,02/06/2004,31/12/2020,8379 +ALFA-BANK JSC,,,,,,,Альфа-Банка,Cyrillic,Russian,,,,,,,,,,27 Kalanchevskaya str.,,,,,Moscow,107078,Russia,"(UK Sanctions List Ref):RUS1074 (UK Statement of Reasons):Alfa-Bank JSC is a Russian bank. There are reasonable grounds to suspect that Alfa-Bank JSC is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):7 495 755-58-58. 7 495 78-888-78 (Website):https://alfabank.ru/ (Type of entity):Bank, Financial Services Company, JSC",Entity,Primary name,,Russia,24/03/2022,24/03/2022,24/05/2022,15017 +ALFA-BANK RUSSIA,,,,,,,,,,,,,,,,,,,27 Kalanchevskaya str.,,,,,Moscow,107078,Russia,"(UK Sanctions List Ref):RUS1074 (UK Statement of Reasons):Alfa-Bank JSC is a Russian bank. There are reasonable grounds to suspect that Alfa-Bank JSC is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):7 495 755-58-58. 7 495 78-888-78 (Website):https://alfabank.ru/ (Type of entity):Bank, Financial Services Company, JSC",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,24/05/2022,15017 +AL-FADHALI,Abdalaziz,Ad'ai,Samin,Fadhli,,,,,,27/08/1981,,Kuwait,,,,281082701081,,,,,,,,,,,"(UK Sanctions List Ref):AQD0088 (UN Ref):QDi.379 Kuwait-based facilitator who provides financial services to, or in support of, Al-Nusrah Front for the People of the Levant (QDe.137) and Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896797 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,31/12/2020,13277 +AL-FADHIL,ABD AL-AZIZ,ADAY,ZIMIN,,,,,,,27/08/1981,,Kuwait,,,,281082701081,,,,,,,,,,,"(UK Sanctions List Ref):AQD0088 (UN Ref):QDi.379 Kuwait-based facilitator who provides financial services to, or in support of, Al-Nusrah Front for the People of the Levant (QDe.137) and Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896797 (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,31/12/2020,13277 +AL-FADHLI,Abd al-Aziz,Adhay,Zimin,,,,,,,27/08/1981,,Kuwait,,,,281082701081,,,,,,,,,,,"(UK Sanctions List Ref):AQD0088 (UN Ref):QDi.379 Kuwait-based facilitator who provides financial services to, or in support of, Al-Nusrah Front for the People of the Levant (QDe.137) and Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896797 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,31/12/2020,13277 +AL-FADHLI,Abd al-Aziz,Udai,Samin,,,,عبدالعزیز عدي زمین الفضیل,,,27/08/1981,,Kuwait,,,,281082701081,,,,,,,,,,,"(UK Sanctions List Ref):AQD0088 (UN Ref):QDi.379 Kuwait-based facilitator who provides financial services to, or in support of, Al-Nusrah Front for the People of the Levant (QDe.137) and Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896797 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,31/12/2020,13277 +AL-FARAN,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0046 (UN Ref):QDe.008 Associated with Jaish-i-Mohammed (QDe.019), Lashkar i Jhangvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Active in Pakistan and Afghanistan. Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282053",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6987 +AL-FATIH,Shaykh,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1975,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-FATIH,Shaykh,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1976,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-FATIH,Shaykh,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1977,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-FATIH,Shaykh,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1978,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-FATIH,Shaykh,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1979,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-FATIH,Shaykh,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1980,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-FAUWAZ,Khaled,,,,,,,,,24/08/1962,,Kuwait,Saudi Arabia,456682,"Saudi Arabia, issue date: 06/11/1990, expiry date: 13/09/1995",,,,,,,,,,,United States,(UK Sanctions List Ref):AQD0214 (UN Ref):QDi.059 Extradited from the United Kingdom to the United States of America on 5 Oct. 2012. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,24/04/2002,31/12/2020,6962 +AL-FAUWAZ,Khaled,A.,,,,,,,,24/08/1962,,Kuwait,Saudi Arabia,456682,"Saudi Arabia, issue date: 06/11/1990, expiry date: 13/09/1995",,,,,,,,,,,United States,(UK Sanctions List Ref):AQD0214 (UN Ref):QDi.059 Extradited from the United Kingdom to the United States of America on 5 Oct. 2012. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,24/04/2002,31/12/2020,6962 +AL-FAWAZ,KHALID,ABD AL-RAHMAN,HAMD,,,,خالد عبد الرحمن حمد الفواز,,,24/08/1962,,Kuwait,Saudi Arabia,456682,"Saudi Arabia, issue date: 06/11/1990, expiry date: 13/09/1995",,,,,,,,,,,United States,(UK Sanctions List Ref):AQD0214 (UN Ref):QDi.059 Extradited from the United Kingdom to the United States of America on 5 Oct. 2012. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,24/04/2002,31/12/2020,6962 +AL-FAWWAZ,Khaled,,,,,,,,,24/08/1962,,Kuwait,Saudi Arabia,456682,"Saudi Arabia, issue date: 06/11/1990, expiry date: 13/09/1995",,,,,,,,,,,United States,(UK Sanctions List Ref):AQD0214 (UN Ref):QDi.059 Extradited from the United Kingdom to the United States of America on 5 Oct. 2012. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,24/04/2002,31/12/2020,6962 +AL-FAWWAZ,Khalid,,,,,,,,,24/08/1962,,Kuwait,Saudi Arabia,456682,"Saudi Arabia, issue date: 06/11/1990, expiry date: 13/09/1995",,,,,,,,,,,United States,(UK Sanctions List Ref):AQD0214 (UN Ref):QDi.059 Extradited from the United Kingdom to the United States of America on 5 Oct. 2012. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,24/04/2002,31/12/2020,6962 +AL-FAYYADH,Omar,Mahmood,Irhayyim,,,,,,,16/06/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +AL-FAYYADH,Omar,Mahmood,Irhayyim,,,,,,,01/01/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +AL-FILISTINI,Abu,Qatada,,,,,,,,30/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +AL-FILISTINI,Abu,Qatada,,,,,,,,13/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +AL-FITOURI,Ahmad,Oumar,Imhamad,,,,احمد عمر امحمد الفيتوري,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,,,,,,Dbabsha-Sabratah,,,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,Primary name,,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +AL-FITOURI,Ahmad,Oumar,Imhamad,,,,احمد عمر امحمد الفيتوري,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,,,,,,Zawiya,,Libya,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,Primary name,,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +AL-FITOURI,Ahmad,Oumar,Imhamad,,,,احمد عمر امحمد الفيتوري,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,Garabulli,,,,,Garabulli,,Libya,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,Primary name,,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +AL-FREJJ,Fahd,Jasem,,,,,,,,01/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FREJJ,Fahd,Jasem,,,,,,,,17/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FREJJ,Fahd,Jasim,,,,,,,,01/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FREJJ,Fahd,Jasim,,,,,,,,17/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FREJJ,Fahd,Jassem,,,,,,,,01/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FREJJ,Fahd,Jassem,,,,,,,,17/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FREJJ,Fahd,Jassim,,,,,,,,01/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FREJJ,Fahd,Jassim,,,,,,,,17/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FREJJ,Fahed,Jasem,,,,,,,,01/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FREJJ,Fahed,Jasem,,,,,,,,17/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FREJJ,Fahed,Jasim,,,,,,,,01/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FREJJ,Fahed,Jasim,,,,,,,,17/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FREJJ,Fahed,Jassem,,,,,,,,01/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FREJJ,Fahed,Jassem,,,,,,,,17/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FREJJ,Fahed,Jassim,,,,,,,,01/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FREJJ,Fahed,Jassim,,,,,,,,17/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FURAT PETROLEUM COMPANY,,,,,,,,,,,,,,,,,,,"P.O. Box 7660, Dummar",New Sham,Western Dummer 1st. Island,Property 2299,AFPC Building,Damascus,,Syria,(UK Sanctions List Ref):SYR0281 Oil and Gas Industry (UK Statement of Reasons):Joint venture 50 % owned by GPC. Provides financial support to the regime. (Phone number):+963-11- 6183333. +9631131913333 (Email address):afpc@afpc.net.sy (Type of entity):State-owned (Parent company):General Petroleum Company. GPC,Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12434 +AL-FURAYJ,Fahd,Jasem,,,,,,,,01/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FURAYJ,Fahd,Jasem,,,,,,,,17/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FURAYJ,Fahd,Jasim,,,,,,,,01/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FURAYJ,Fahd,Jasim,,,,,,,,17/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FURAYJ,Fahd,Jassem,,,,,,,,01/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FURAYJ,Fahd,Jassem,,,,,,,,17/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FURAYJ,Fahd,Jassim,,,,,,,,01/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FURAYJ,Fahd,Jassim,,,,,,,,17/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FURAYJ,Fahed,Jasem,,,,,,,,01/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FURAYJ,Fahed,Jasem,,,,,,,,17/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FURAYJ,Fahed,Jasim,,,,,,,,01/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FURAYJ,Fahed,Jasim,,,,,,,,17/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FURAYJ,Fahed,Jassem,,,,,,,,01/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FURAYJ,Fahed,Jassem,,,,,,,,17/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FURAYJ,Fahed,Jassim,,,,,,,,01/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FURAYJ,Fahed,Jassim,,,,,,,,17/01/1950,Hama,Syria,Syria,,,,,Former DPM and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0040 (UK Statement of Reasons):Former Minister of Defence and former Deputy Prime Minister. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,14/02/2022,12212 +AL-FURQAN FOUNDATION WELFARE TRUST,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0074 (UN Ref):QDe.070 NOTE: Only the Pakistan and Afghanistan offices of this entity are designated. Associated with Abu Bakr al-Jaziri (QDi.058) and Afghan Support Committee (ASC) (QDe.069). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281996,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,7210 +AL-FURQAN FOUNDATION WELFARE TRUST,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0074 (UN Ref):QDe.070 NOTE: Only the Pakistan and Afghanistan offices of this entity are designated. Associated with Abu Bakr al-Jaziri (QDi.058) and Afghan Support Committee (ASC) (QDe.069). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281996,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,7210 +AL-FURQAN WELFARE FOUNDATION,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0074 (UN Ref):QDe.070 NOTE: Only the Pakistan and Afghanistan offices of this entity are designated. Associated with Abu Bakr al-Jaziri (QDi.058) and Afghan Support Committee (ASC) (QDe.069). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281996,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,7210 +AL-FURQAN WELFARE FOUNDATION,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0074 (UN Ref):QDe.070 NOTE: Only the Pakistan and Afghanistan offices of this entity are designated. Associated with Abu Bakr al-Jaziri (QDi.058) and Afghan Support Committee (ASC) (QDe.069). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281996,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,7210 +AL-GAMA'A AL-ISLAMIYYA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0030 (UK Statement of Reasons):Al-Gama'a al-Islamiyya (GI) is an Egyptian Sunni terrorist organisation who were responsible for a number of terrorist attacks in the 1980s and 1990s,Entity,Primary name,,Counter-Terrorism (International),02/11/2001,31/12/2020,21/01/2021,6988 +AL-GAOUD,Abdelmajid,,,,,,,,,00/00/1943,,,,,,,,"Minister for Agriculture, Animal and Maritime Resources in Colonel Qadhafi’s Government",,,,,,,,,"(UK Sanctions List Ref):LIB0022 (UK Statement of Reasons):Minister for Agriculture in Colonel Qadhafi's Government, Prime Minister and General Secretary of the General People's Congress. Associated with Muammar Qadhafi, an involved person. (Gender):Male",Individual,Primary name,,Libya,22/03/2011,31/12/2020,31/12/2020,11703 +AL-GHABBASH,Hassan,,,,,,,,,00/00/1971,Damascus,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0368 (UK Statement of Reasons):Minister of Health. Appointed in August 2020. As a Government Minister shares resposnbility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,06/11/2020,31/12/2020,14/02/2022,13998 +AL-GHAMARI,Mohammad,,,,,,,,,00/00/1979,"Izla Dhaen, Wahha District, Hajjar Governorate",Yemen,Yemen,,,,,(1) Major General (2) Houthi Chief of General Staff,,,,,,,,Yemen,"(UK Sanctions List Ref):YEM0007 (UN Ref):YEi.008 Houthi Military Chief of General Staff, plays the leading role in orchestrating the Houthis’ military efforts that are directly threatening the peace, security and stability of Yemen, including in Marib, as well as cross-border attacks against Saudi Arabia. (Gender):Male",Individual,Primary name variation,Low quality,Yemen,10/11/2021,09/11/2021,09/12/2021,14143 +AL-GHAMARI,Mohammad,,,,,,,,,00/00/1984,"Izla Dhaen, Wahha District, Hajjar Governorate",Yemen,Yemen,,,,,(1) Major General (2) Houthi Chief of General Staff,,,,,,,,Yemen,"(UK Sanctions List Ref):YEM0007 (UN Ref):YEi.008 Houthi Military Chief of General Staff, plays the leading role in orchestrating the Houthis’ military efforts that are directly threatening the peace, security and stability of Yemen, including in Marib, as well as cross-border attacks against Saudi Arabia. (Gender):Male",Individual,Primary name variation,Low quality,Yemen,10/11/2021,09/11/2021,09/12/2021,14143 +AL-GHAMARI,Muhammad,Abd Al-Karim,,,,,محمد عبدالكريم الغماري,,,00/00/1979,"Izla Dhaen, Wahha District, Hajjar Governorate",Yemen,Yemen,,,,,(1) Major General (2) Houthi Chief of General Staff,,,,,,,,Yemen,"(UK Sanctions List Ref):YEM0007 (UN Ref):YEi.008 Houthi Military Chief of General Staff, plays the leading role in orchestrating the Houthis’ military efforts that are directly threatening the peace, security and stability of Yemen, including in Marib, as well as cross-border attacks against Saudi Arabia. (Gender):Male",Individual,Primary name,,Yemen,10/11/2021,09/11/2021,09/12/2021,14143 +AL-GHAMARI,Muhammad,Abd Al-Karim,,,,,محمد عبدالكريم الغماري,,,00/00/1984,"Izla Dhaen, Wahha District, Hajjar Governorate",Yemen,Yemen,,,,,(1) Major General (2) Houthi Chief of General Staff,,,,,,,,Yemen,"(UK Sanctions List Ref):YEM0007 (UN Ref):YEi.008 Houthi Military Chief of General Staff, plays the leading role in orchestrating the Houthis’ military efforts that are directly threatening the peace, security and stability of Yemen, including in Marib, as well as cross-border attacks against Saudi Arabia. (Gender):Male",Individual,Primary name,,Yemen,10/11/2021,09/11/2021,09/12/2021,14143 +AL-GHAMDI,Al Umairah,,,,,,,,,27/05/1979,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +AL-GHAMDI,Al Umairah,,,,,,,,,00/00/1973,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +AL-GHAMDI,Othman,,,,,,,,,27/05/1979,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +AL-GHAMDI,Othman,,,,,,,,,00/00/1973,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +AL-GHAMDI,Uthman,,,,,,,,,27/05/1979,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +AL-GHAMDI,Uthman,,,,,,,,,00/00/1973,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +AL-GHAMDI,Uthman,Ahmad,Uthman,,,,,,,27/05/1979,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +AL-GHAMDI,Uthman,Ahmad,Uthman,,,,,,,00/00/1973,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +ALGHAMDI,Othman,bin,Ahmed,bin,Othman,,,,,27/05/1979,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +ALGHAMDI,Othman,bin,Ahmed,bin,Othman,,,,,00/00/1973,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +AL-GHAMDI,OTHMAN,AHMED,OTHMAN,,,,عثمان أحمد عثمان الغامدي,,,27/05/1979,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +AL-GHAMDI,OTHMAN,AHMED,OTHMAN,,,,عثمان أحمد عثمان الغامدي,,,00/00/1973,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +AL-GHAMIDI,Uthman,,,,,,,,,27/05/1979,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +AL-GHAMIDI,Uthman,,,,,,,,,00/00/1973,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +AL-GHARBI,Abdullah,,,,,,,,,00/00/1962,Damascus,Syria,Syria,,,,,Former Minister of Internal Trade and Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0064 Links to Bashar Asad (UK Statement of Reasons):Former Minister of Internal Trade and Consumer Protection. Appointed in July 2016. As a former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,14/11/2016,31/12/2020,13/05/2022,13407 +AL-GHAWAIL,Khalifa,,,,,,,,,01/01/1956,Misurata,Libya,Libya,(1) A005465 (2) J690P666,(1) Issued 12/04/2015. Expired 11/04/2017. (2) Libya. Issued 12 June 2016. Expires 11 June 2024.,,,,Qasr Ahmed Street,Misurata,,,,,,Libya,"(UK Sanctions List Ref):LIB0032 (UK Statement of Reasons):In his capacity as the so-called 'Prime Minister and Defence Minister' off the internationally unrecognised General National Congress ('GNC')(also known as the 'National Salvation Government'), and therefore responsible for their activities. Ghwell has engaged in activity threatening the peace, security and stability of Libya and undermining its political transition. (Gender):Male",Individual,AKA,,Libya,01/04/2016,31/12/2020,16/06/2022,13347 +AL-GIZANI,Ashraf,,,,,,,,,05/10/1991,"El Gouazine, Dahmani, Governorate of Le Kef",Tunisia,Tunisia,,,13601334,Tunisia,,,,,,,,,,"(UK Sanctions List Ref):AQD0375 (UN Ref):QDi.432 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115).  Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/01/2022,29/12/2021,14/04/2022,14170 +AL-GOLANI,Abu,Muhammad,,,,,,,,00/00/1975,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-GOLANI,Abu,Muhammad,,,,,,,,00/00/1976,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-GOLANI,Abu,Muhammad,,,,,,,,00/00/1977,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-GOLANI,Abu,Muhammad,,,,,,,,00/00/1978,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-GOLANI,Abu,Muhammad,,,,,,,,00/00/1979,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-GOLANI,Abu,Muhammad,,,,,,,,00/00/1980,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-GOLANI,Abu,Mohammed,,,,,,,,00/00/1975,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-GOLANI,Abu,Mohammed,,,,,,,,00/00/1976,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-GOLANI,Abu,Mohammed,,,,,,,,00/00/1977,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-GOLANI,Abu,Mohammed,,,,,,,,00/00/1978,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-GOLANI,Abu,Mohammed,,,,,,,,00/00/1979,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-GOLANI,Abu,Mohammed,,,,,,,,00/00/1980,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-GREIN,,,,,,,,,,19/01/1983,Sabratha,Libya,Libya,(1) 782633 (2) 540794,(1) Issued on 31 May 2005 (2) Issued on 12 Jan. 2008,,,Leader of a transnational trafficking network,,,,,,,,,"(UK Sanctions List Ref):LIB0058 (UN Ref):LYi.024 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13674 +AL-HABLAIN,IBRAHIM,SULEIMAN,HAMAD,,,,,,,17/12/1984,Buraidah,Saudi Arabia,Saudi Arabia,F800691,,1047503170,,,,,,,,,,,(UK Sanctions List Ref):AQD0202 (UN Ref):QDi.332 Explosives expert and operative for the Abdallah Azzam Brigades (AAB) (QDe.144). Wanted by the Saudi Arabian Government for terrorism. Physical description: eye colour: dark; hair colour: dark; complexion: olive. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2014,23/09/2014,31/12/2020,13129 +AL-HABU,,,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL-HABU,,,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL-HABU,,,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL-HABU,,,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL-HABU,,,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL-HABU,,,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL-HADAD,Safia,Farkash,Mohammed,,,,,,,01/01/1953,Al Bayda,Libya,Oman,03825239,"Oman passport no. date of issue 4 May 2014, expiry 3 May 2024.",98606491,Oman,,,,,,,,,Egypt,"(UK Sanctions List Ref):LIB0062 (UN Ref):LYi.019 Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5526015. Believed Location - Egypt",Individual,AKA,Good quality,Libya,03/03/2011,24/06/2011,10/02/2022,11642 +AL-HADAD,Safia,Farkash,Mohammed,,,,,,,01/01/1953,Al Bayda,Libya,Oman,03825239,"Oman passport no. date of issue 4 May 2014, expiry 3 May 2024.",98606491,Oman,,,,,,,,,Oman,"(UK Sanctions List Ref):LIB0062 (UN Ref):LYi.019 Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5526015. Believed Location - Egypt",Individual,AKA,Good quality,Libya,03/03/2011,24/06/2011,10/02/2022,11642 +AL-HADAD,Safia,Farkash,Mohammed,,,,,,,00/00/1952,Al Bayda,Libya,Oman,03825239,"Oman passport no. date of issue 4 May 2014, expiry 3 May 2024.",98606491,Oman,,,,,,,,,Egypt,"(UK Sanctions List Ref):LIB0062 (UN Ref):LYi.019 Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5526015. Believed Location - Egypt",Individual,AKA,Good quality,Libya,03/03/2011,24/06/2011,10/02/2022,11642 +AL-HADAD,Safia,Farkash,Mohammed,,,,,,,00/00/1952,Al Bayda,Libya,Oman,03825239,"Oman passport no. date of issue 4 May 2014, expiry 3 May 2024.",98606491,Oman,,,,,,,,,Oman,"(UK Sanctions List Ref):LIB0062 (UN Ref):LYi.019 Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5526015. Believed Location - Egypt",Individual,AKA,Good quality,Libya,03/03/2011,24/06/2011,10/02/2022,11642 +AL-HADI,Abd,,,,,,,,,06/07/1977,"Cianjur, West Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0180 (UN Ref):QDi.218 Brother of Nurjaman Riduan Isamuddin (QDi.087). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8832 +AL-HADID,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0046 (UN Ref):QDe.008 Associated with Jaish-i-Mohammed (QDe.019), Lashkar i Jhangvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Active in Pakistan and Afghanistan. Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282053",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6987 +AL-HADITH,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0046 (UN Ref):QDe.008 Associated with Jaish-i-Mohammed (QDe.019), Lashkar i Jhangvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Active in Pakistan and Afghanistan. Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282053",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6987 +AL-HAKIM,Abdallah,,,,,,,,,00/00/1985,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +AL-HAKIM,Abdallah,,,,,,,,,00/00/1984,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +AL-HAKIM,Abdallah,,,,,,,,,00/00/1986,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +AL-HAKIM,Abu-Ali,,,,,,,,,00/00/1985,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +AL-HAKIM,Abu-Ali,,,,,,,,,00/00/1984,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +AL-HAKIM,Abu-Ali,,,,,,,,,00/00/1986,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +ALHAKIM,Abu,Ali,,,,,,,,00/00/1985,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +ALHAKIM,Abu,Ali,,,,,,,,00/00/1984,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +ALHAKIM,Abu,Ali,,,,,,,,00/00/1986,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +AL-HALKI,Wael,Nader,,,,,,,,00/00/1964,Dara'a Province,Syria,Syria,,,,,Chair of the Board of Trustees of the Qa-syoun Private University,,,,,,,,,"(UK Sanctions List Ref):SYR0233 (UK Statement of Reasons):Former Prime Minister, in office until 3 July 2016, and former Minister of Health. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,28/02/2012,31/12/2020,31/12/2020,12504 +AL-HALQI,Wael,Nader,,,,,,,,00/00/1964,Dara'a Province,Syria,Syria,,,,,Chair of the Board of Trustees of the Qa-syoun Private University,,,,,,,,,"(UK Sanctions List Ref):SYR0233 (UK Statement of Reasons):Former Prime Minister, in office until 3 July 2016, and former Minister of Health. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,28/02/2012,31/12/2020,31/12/2020,12504 +AL-HAMATI,Muhammad,,,,,,,,,19/11/1971,Medina,Saudi Arabia,Yemen,541939,"Issue date: 31/07/2000. Issued in Al-Hudaydah, Yemen, in the name of Muhammad Muhammad Abdullah Al-Ahdal",216040,Yemeni identity card number,,Jamal Street,Al-Dahima alley,,,,Al-Hudaydah,,Yemen,(UK Sanctions List Ref):AQD0242 (UN Ref):QDi.020 Responsible for the finances of Al-Qa’ida (QDe.004) in Yemen. Accused of involvement in the attack on the USS Cole in 2000. Arrested in Yemen in Nov. 2003. Sentenced to three years and one month of imprisonment by the specialized criminal court of first instance in Yemen. Released on 25 Dec. 2006 after the completion of his sentence. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6973 +AL-HAMED,Firas,,,,,,,,,,,,Syria,,,,,Head of Branch 318 (Homs) of the General Intelligence Directorate.,,,,,,,,,(UK Sanctions List Ref):SYR0046 (UK Statement of Reasons):Head of branch 318 (Homs) of the General Intelligence Directorate. Responsible for the torture of opponents in custody. (Gender):Male,Individual,Primary name,,Syria,24/07/2012,31/12/2020,31/12/2020,12717 +AL-HAMID,Firas,,,,,,,,,,,,Syria,,,,,Head of Branch 318 (Homs) of the General Intelligence Directorate.,,,,,,,,,(UK Sanctions List Ref):SYR0046 (UK Statement of Reasons):Head of branch 318 (Homs) of the General Intelligence Directorate. Responsible for the torture of opponents in custody. (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12717 +AL-HAMMAD,,,,,,,,,,00/00/1972,"Darweshan village, Hazar Juft area, Garmser District, Helmand Province",Afghanistan,Afghanistan,D000857,(Afghan). Issued on 20 Nov 1997,300786,(Afghan) (tazkira),"Consul General, Taliban Consulate General, Quetta, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0109 (UN Ref):TAi.141 Believed to be in Afghanistan/Pakistan border area. Belongs to Baloch ethnic group. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,11/02/2022,7329 +AL-HAMO,Ahmad,,,,,,,,,00/00/1947,,,,,,,,Former Minister for Industry,,,,,,,,,(UK Sanctions List Ref):SYR0069 (UK Statement of Reasons):Former Minister of Industry. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13406 +AL-HAMRAOUI,KAMAL,BEN MAOELDI,BEN HASSAN,,,,كمال بن المولدي بن حسن الحمراوي,,,21/10/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Bertesi Number 27,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +AL-HAMRAOUI,KAMAL,BEN MAOELDI,BEN HASSAN,,,,كمال بن المولدي بن حسن الحمراوي,,,21/10/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Plebiscito Number 3,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +AL-HAMRAOUI,KAMAL,BEN MAOELDI,BEN HASSAN,,,,كمال بن المولدي بن حسن الحمراوي,,,21/11/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Bertesi Number 27,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +AL-HAMRAOUI,KAMAL,BEN MAOELDI,BEN HASSAN,,,,كمال بن المولدي بن حسن الحمراوي,,,21/11/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Plebiscito Number 3,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +AL-HAMU,Ahmad,,,,,,,,,00/00/1947,,,,,,,,Former Minister for Industry,,,,,,,,,(UK Sanctions List Ref):SYR0069 (UK Statement of Reasons):Former Minister of Industry. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,14/11/2016,31/12/2020,31/12/2020,13406 +AL-HAMUD,Ali,,,,,,,,,00/00/1973,"Sahl Village, Raqqa Province",Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0132 (UN Ref):QDi.384 A leader of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). As of Jun, 2015, al-Shawakh was the ISIL governor of Aleppo. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13317 +AL-HAMZI,Ahmed,Ali,,,,,,,,00/00/1985,Sana'a,Yemen,Yemen,,,,,"Major General, Commander of the Houthi Air Force and Air Defense Forces",,,,,,,,Yemen,"(UK Sanctions List Ref):YEM0012 (UN Ref):YEi.012 Ahmad al-Hamzi, the commander of the Houthi Air Force and Air Defense Forces, as well as its UAV program, plays a leading role in Houthi military efforts that directly threaten the peace, security, and stability of Yemen. Physical Description: Eye Color: Brown; Hair: Brown. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individual. (Gender):Male",Individual,AKA,Low quality,Yemen,05/10/2022,05/10/2022,05/10/2022,15595 +AL-HAMZI,Ahmad,,,,,,أحمد الحمزي,Arabic,Arabic,00/00/1985,Sana'a,Yemen,Yemen,,,,,"Major General, Commander of the Houthi Air Force and Air Defense Forces",,,,,,,,Yemen,"(UK Sanctions List Ref):YEM0012 (UN Ref):YEi.012 Ahmad al-Hamzi, the commander of the Houthi Air Force and Air Defense Forces, as well as its UAV program, plays a leading role in Houthi military efforts that directly threaten the peace, security, and stability of Yemen. Physical Description: Eye Color: Brown; Hair: Brown. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individual. (Gender):Male",Individual,Primary name,,Yemen,05/10/2022,05/10/2022,05/10/2022,15595 +AL-HAMZI,Ahmad'Ali,,,,,,,,,00/00/1985,Sana'a,Yemen,Yemen,,,,,"Major General, Commander of the Houthi Air Force and Air Defense Forces",,,,,,,,Yemen,"(UK Sanctions List Ref):YEM0012 (UN Ref):YEi.012 Ahmad al-Hamzi, the commander of the Houthi Air Force and Air Defense Forces, as well as its UAV program, plays a leading role in Houthi military efforts that directly threaten the peace, security, and stability of Yemen. Physical Description: Eye Color: Brown; Hair: Brown. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individual. (Gender):Male",Individual,AKA,Low quality,Yemen,05/10/2022,05/10/2022,05/10/2022,15595 +AL-HAMZI,Ahmad'Ali,Ahsan,,,,,,,,00/00/1985,Sana'a,Yemen,Yemen,,,,,"Major General, Commander of the Houthi Air Force and Air Defense Forces",,,,,,,,Yemen,"(UK Sanctions List Ref):YEM0012 (UN Ref):YEi.012 Ahmad al-Hamzi, the commander of the Houthi Air Force and Air Defense Forces, as well as its UAV program, plays a leading role in Houthi military efforts that directly threaten the peace, security, and stability of Yemen. Physical Description: Eye Color: Brown; Hair: Brown. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individual. (Gender):Male",Individual,AKA,Low quality,Yemen,05/10/2022,05/10/2022,05/10/2022,15595 +AL-HAMZI,Muti,,,,,,,,,00/00/1985,Sana'a,Yemen,Yemen,,,,,"Major General, Commander of the Houthi Air Force and Air Defense Forces",,,,,,,,Yemen,"(UK Sanctions List Ref):YEM0012 (UN Ref):YEi.012 Ahmad al-Hamzi, the commander of the Houthi Air Force and Air Defense Forces, as well as its UAV program, plays a leading role in Houthi military efforts that directly threaten the peace, security, and stability of Yemen. Physical Description: Eye Color: Brown; Hair: Brown. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individual. (Gender):Male",Individual,AKA,Low quality,Yemen,05/10/2022,05/10/2022,05/10/2022,15595 +AL-HAQ,'Abd,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +AL-HAQ,'Abd,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +AL-HAQ,Amin,,,,,,,,,00/00/1960,Nangarhar Province,Afghanistan,Afghanistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0136 (UN Ref):QDi.002 Security coordinator for Usama bin Laden (deceased). Repatriated to Afghanistan in February 2006. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,6944 +AL-HARAMAIN & AL MASJED AL-AQSA CHARITY FOUNDATION,,,,,,,,,,,,,,,,,,,,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL-HARAMAIN & AL MASJED AL-AQSA CHARITY FOUNDATION,,,,,,,,,,,,,,,,,,,14 Bihacka Street,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL-HARAMAIN & AL MASJED AL-AQSA CHARITY FOUNDATION,,,,,,,,,,,,,,,,,,,2A Hasiba Brankovica,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL-HARAMAIN & AL MASJED AL-AQSA CHARITY FOUNDATION,,,,,,,,,,,,,,,,,,,64 Potur Mahala Street,,,,,Travnik,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL-HARAMAIN (AFGHANISTAN BRANCH),,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0017 (UN Ref):QDe.110 Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5566815. Afghanistan (at time of listing),Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,12/07/2004,06/07/2004,31/12/2020,8428 +AL-HARAMAIN (ALBANIA BRANCH),,,,,,,,,,,,,,,,,,,Irfan Tomini Street,No 58,,,,Tirana,,Albania,(UK Sanctions List Ref):AQD0018 (UN Ref):QDe.111 Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5566835. Albania (at time of listing),Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,12/07/2004,06/07/2004,31/12/2020,8429 +AL-HARAMAIN (BANGLADESH),,,,,,,,,,,,,,,,,,,House 1,Road 1,S-6,Uttara,,Dhaka,,Bangladesh,(UK Sanctions List Ref):AQD0019 (UN Ref):QDe.112 Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235594. Bangladesh (at time of listing),Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,12/07/2004,06/07/2004,31/12/2020,8431 +AL-HARAMAIN (ETHIOPIA BRANCH),,,,,,,,,,,,,,,,,,,Woreda District 24 Kebele Section 13,,,,,Addis Ababa,,Ethiopia,(UK Sanctions List Ref):AQD0020 (UN Ref):QDe.113 Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235587. Ethiopia (at time of listing),Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,12/07/2004,06/07/2004,31/12/2020,8430 +AL-HARAMAIN (THE NETHERLANDS BRANCH),,,,,,,,,,,,,,,,,,,Jan Hanzenstraat 114,,,,,Amsterdam,1053SV,Netherlands,(UK Sanctions List Ref):AQD0021 (UN Ref):QDe.114 Review pursuant to Security Council resolution 1822 (2008) was concluded on 28 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235591. Netherlands (at time of listing),Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,12/07/2004,06/07/2004,31/12/2020,8424 +AL-HARAMAIN FOUNDATION (PAKISTAN),,,,,,,,,,,,,,,,,,,House #279,Nazimuddin Road,F-10/1,,,Islamabad,,Pakistan,"(UK Sanctions List Ref):AQD0013 (UN Ref):QDe.104 Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5566695. Islamabad, Pakistan (at time of listing)",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,29/01/2004,26/01/2004,31/12/2020,7999 +AL-HARAMAIN FOUNDATION (UNION OF THE COMOROS),,,,,,,,,,,,,,,,,,,B/P 1652 Moroni,,,,,,,Comoros,(UK Sanctions List Ref):AQD0014 (UN Ref):QDe.116 Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5566795,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,29/09/2004,28/09/2004,31/12/2020,8438 +AL-HARAMAYN AND AL MASJID AL AQSA CHARITABLE FOUNDATION,,,,,,,,,,,,,,,,,,,,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,AKA,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL-HARAMAYN AND AL MASJID AL AQSA CHARITABLE FOUNDATION,,,,,,,,,,,,,,,,,,,14 Bihacka Street,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,AKA,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL-HARAMAYN AND AL MASJID AL AQSA CHARITABLE FOUNDATION,,,,,,,,,,,,,,,,,,,2A Hasiba Brankovica,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,AKA,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL-HARAMAYN AND AL MASJID AL AQSA CHARITABLE FOUNDATION,,,,,,,,,,,,,,,,,,,64 Potur Mahala Street,,,,,Travnik,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0011 (UN Ref):QDe.109 Used to be officially registered in Bosnia and Herzegovina under registry number 24. Al-Haramain & Al Masjed Al-Aqsa Charity Foundation ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-203/04). It was no longer in existence as at Dec. 2008. Its premises and humanitarian activities were transferred under Government supervision to a new entity called Sretna Buducnost. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5864240. Bosnia and Herzegovina (Branch),Entity,AKA,,ISIL (Da'esh) and Al-Qaida,30/06/2004,28/06/2004,31/12/2020,8361 +AL-HARAMAYN FOUNDATION (KENYA),,,,,,,,,,,,,,,,,,,,,,,,Dadaab,,Kenya,"(UK Sanctions List Ref):AQD0022 (UN Ref):QDe.105 Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5566735. Nairobi, Kenya (at time of listing) Garissa, Kenya (at time of listing) Dadaab, Kenya (at time of listing)",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,29/01/2004,26/01/2004,31/12/2020,8000 +AL-HARAMAYN FOUNDATION (KENYA),,,,,,,,,,,,,,,,,,,,,,,,Garissa,,Kenya,"(UK Sanctions List Ref):AQD0022 (UN Ref):QDe.105 Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5566735. Nairobi, Kenya (at time of listing) Garissa, Kenya (at time of listing) Dadaab, Kenya (at time of listing)",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,29/01/2004,26/01/2004,31/12/2020,8000 +AL-HARAMAYN FOUNDATION (KENYA),,,,,,,,,,,,,,,,,,,,,,,,Nairobi,,Kenya,"(UK Sanctions List Ref):AQD0022 (UN Ref):QDe.105 Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5566735. Nairobi, Kenya (at time of listing) Garissa, Kenya (at time of listing) Dadaab, Kenya (at time of listing)",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,29/01/2004,26/01/2004,31/12/2020,8000 +AL-HARAMAYN FOUNDATION (TANZANIA),,,,,,,,,,,,,,,,,,,,,,,,Singida (at time of listing),,Tanzania,(UK Sanctions List Ref):AQD0023 (UN Ref):QDe.106 Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5566755. Dar es Salaam Tanzania (at time of listing),Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,29/01/2004,26/01/2004,31/12/2020,8001 +AL-HARAMAYN FOUNDATION (TANZANIA),,,,,,,,,,,,,,,,,,,,,,,,Tanga (at time of listing),,Tanzania,(UK Sanctions List Ref):AQD0023 (UN Ref):QDe.106 Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5566755. Dar es Salaam Tanzania (at time of listing),Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,29/01/2004,26/01/2004,31/12/2020,8001 +AL-HARAMAYN FOUNDATION (TANZANIA),,,,,,,,,,,,,,,,,,,PO Box 3616,,,,,Dar es Salaam,,Tanzania,(UK Sanctions List Ref):AQD0023 (UN Ref):QDe.106 Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5566755. Dar es Salaam Tanzania (at time of listing),Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,29/01/2004,26/01/2004,31/12/2020,8001 +AL-HARBI,Abu,Abdalla,,,,,,,,12/04/1976,Al Baraka,Saudi Arabia,Saudi Arabia,C389664,,1024026187,,,,,,,,,,,(UK Sanctions List Ref):AQD0153 (UN Ref):QDi.330 Has ties to numerous senior Al-Qaida (QDe.004) leaders. Wanted by the Saudi Arabian Government for terrorism. Father's name is Abdullah Razeeq al Mouled al Sbhua. Physical description: eye colour: dark; hair colour: dark; complexion: dark. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13127 +AL-HARBI,Abu,Suliman,,,,,,,,12/04/1976,Al Baraka,Saudi Arabia,Saudi Arabia,C389664,,1024026187,,,,,,,,,,,(UK Sanctions List Ref):AQD0153 (UN Ref):QDi.330 Has ties to numerous senior Al-Qaida (QDe.004) leaders. Wanted by the Saudi Arabian Government for terrorism. Father's name is Abdullah Razeeq al Mouled al Sbhua. Physical description: eye colour: dark; hair colour: dark; complexion: dark. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13127 +AL-HARBI,Mansur,,,,,,,,,12/04/1976,Al Baraka,Saudi Arabia,Saudi Arabia,C389664,,1024026187,,,,,,,,,,,(UK Sanctions List Ref):AQD0153 (UN Ref):QDi.330 Has ties to numerous senior Al-Qaida (QDe.004) leaders. Wanted by the Saudi Arabian Government for terrorism. Father's name is Abdullah Razeeq al Mouled al Sbhua. Physical description: eye colour: dark; hair colour: dark; complexion: dark. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13127 +ALHARBI,Thaar,Ghaleb,T.,,,,,,,01/08/1979,Riyadh,Saudi Arabia,Saudi Arabia,P723557,,,,Lieutenant,,,,,,,,,"(UK Sanctions List Ref):GHR0027 (UK Statement of Reasons):Thaar Ghaleb T. Alharbi held the rank of Lieutenant, though it is not clear in which part of the Saudi forces this was and his official role is not clear. He was present during the unlawful killing of Jamal Khashoggi in the Saudi Consulate in Istanbul on 2 October 2018, and played an active part in the 15 man team sent to Turkey by Saudi authorities. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13857 +ALHARETH,Abo,,,,,,,,,06/06/1969,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,AKA,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +ALHARETH,Abo,,,,,,,,,06/06/1967,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,AKA,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +AL-HASAN,Nabil,,,,,,حسن نبيل,,,00/00/1963,Aleppo,Syria,,,,,,Former Minister of Water Resources,,,,,,,,,"(UK Sanctions List Ref):SYR0184 Links to Bashar Asad (UK Statement of Reasons):Former Minister of Water Resources. Appointed in July 2016. As a Former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,14/11/2016,31/12/2020,31/12/2020,13405 +AL-HASAN,Sohail,,,,,,,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +AL-HASAN,Suhail,,,,,,,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +AL-HASAN,Suhayl,,,,,,,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +AL-HASAN,Suheil,,,,,,,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +AL-HASAN,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0094 (UK Statement of Reasons):Deputy Chief of Staff. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,31/12/2020,12415 +AL-HASRI,BASSAM,AHMAD,,,,,بسام أحمد الحصري,,,01/01/1969,"(1) Qalamun, Damascus Province (2) Ghutah, Damascus Province (3) Tadamon, Rif Dimashq",(1) Syria (2) Syria (3) Syria,(1) Syria. (2) Palestine,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0155 (UN Ref):QDi.399 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) for southern Syrian Arab Republic since July 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6013284. Syrian Arab Republic (Southern. Location as of July 2016),Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13446 +AL-HASRI,BASSAM,AHMAD,,,,,بسام أحمد الحصري,,,00/00/1971,"(1) Qalamun, Damascus Province (2) Ghutah, Damascus Province (3) Tadamon, Rif Dimashq",(1) Syria (2) Syria (3) Syria,(1) Syria. (2) Palestine,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0155 (UN Ref):QDi.399 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) for southern Syrian Arab Republic since July 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6013284. Syrian Arab Republic (Southern. Location as of July 2016),Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13446 +AL-HASSAN,,,,,,,,,,00/00/1963,Aleppo,Syria,,,,,,Former Minister of Water Resources,,,,,,,,,"(UK Sanctions List Ref):SYR0184 Links to Bashar Asad (UK Statement of Reasons):Former Minister of Water Resources. Appointed in July 2016. As a Former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,AKA,,Syria,14/11/2016,31/12/2020,31/12/2020,13405 +AL-HASSAN,Sohail,,,,,,,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +AL-HASSAN,Suhail,,,,,,,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +AL-HASSAN,Suhayl,,,,,,,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +AL-HASSAN,Suheil,,,,,,,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +AL-HASSAN,Ibrahim,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0094 (UK Statement of Reasons):Deputy Chief of Staff. Military official involved in the violence in Homs.,Individual,Primary name,,Syria,02/12/2011,31/12/2020,31/12/2020,12415 +AL-HASSAN,Jameel,,,,,,,,,07/07/1953,Qusayr Homs,Syria,,,,,,Head of Syrian Air Force Intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0111 (UK Statement of Reasons):Officer of the rank of Major-General in the Syrian Air Force in post after May 2011. Head of Syrian Air Force Intelligence in post after May 2011. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11906 +AL-HASSAN,Jamieel,,,,,,,,,07/07/1953,Qusayr Homs,Syria,,,,,,Head of Syrian Air Force Intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0111 (UK Statement of Reasons):Officer of the rank of Major-General in the Syrian Air Force in post after May 2011. Head of Syrian Air Force Intelligence in post after May 2011. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11906 +AL-HASSAN,Jamil,,,,,,,,,07/07/1953,Qusayr Homs,Syria,,,,,,Head of Syrian Air Force Intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0111 (UK Statement of Reasons):Officer of the rank of Major-General in the Syrian Air Force in post after May 2011. Head of Syrian Air Force Intelligence in post after May 2011. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11906 +AL-HASSAN,Sameer,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0217 Business interests: Cham Holdings, Byblos Bank Syria, Syrian Kuwaiti Insurance Company, Amir Group (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in multiple sectors of Syria's economy. He holds interests in and/or has significant influence in the Amir Group and Cham Holdings, two conglomerates with interests in the real estate, tourism, transport and finance sectors. From March 2014 until September 2018, he held the position of Chairman for Russia of the Bilateral Business Councils following his appointment by Minister of Economy, Khodr Orfali. Samir Hassan supports the regime's war effort with cash donations. He has substantial political and economic ties with the regime, and has close business links with key regime figures such as Rami Makhlouf and Issam Anbouba. Hassan's listing therefore falls under the relevant listing criteria as a person 'benefiting from or supporting the regime' and associated with 'persons or entities responsible for the violent repression against the civilian population in Syria'. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,19/05/2022,12053 +AL-HASSAN,Samir,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0217 Business interests: Cham Holdings, Byblos Bank Syria, Syrian Kuwaiti Insurance Company, Amir Group (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in multiple sectors of Syria's economy. He holds interests in and/or has significant influence in the Amir Group and Cham Holdings, two conglomerates with interests in the real estate, tourism, transport and finance sectors. From March 2014 until September 2018, he held the position of Chairman for Russia of the Bilateral Business Councils following his appointment by Minister of Economy, Khodr Orfali. Samir Hassan supports the regime's war effort with cash donations. He has substantial political and economic ties with the regime, and has close business links with key regime figures such as Rami Makhlouf and Issam Anbouba. Hassan's listing therefore falls under the relevant listing criteria as a person 'benefiting from or supporting the regime' and associated with 'persons or entities responsible for the violent repression against the civilian population in Syria'. (Gender):Male",Individual,AKA,,Syria,24/08/2011,31/12/2020,19/05/2022,12053 +AL-HAWEN,Abu-Ahmad,,,,,,,,,30/12/1968,California,United States,(1) Jordan. (2) United States,,,(1) 548-91-5411 (2) 9681029476,(1) US social security (2) Jordanian,,,,,,,,,,"(UK Sanctions List Ref):AQD0291 (UN Ref):QDi.029 In custody in Jordan since 26 Feb. 2015 for recruitment and support to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Father’s name is Mohammad Hijazi. Mother’s name is Sakina. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1419275",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6974 +ALHAWSAWI,Abdulaziz,Mohammed,,,,,,,,20/07/1987,Riyadh,Saudi Arabia,Saudi Arabia,P051811,,1044087474,,,,,,,,,,,"(UK Sanctions List Ref):GHR0030 (UK Statement of Reasons):Abdulaziz Mohammed Al Hawsawi was a security official for the Crown Prince of Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi Consul General’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13866 +AL-HEBO,,,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL-HEBO,,,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL-HEBO,,,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL-HEBO,,,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL-HEBO,,,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL-HEBO,,,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +AL-HISHAN,Akram,Turki,,,,,,,,00/00/1974,,,,,,0075258,Ration card no.,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +AL-HISHAN,Akram,Turki,,,,,,,,00/00/1974,,,,,,0075258,Ration card no.,,,,,,,Deir ez-Zor Governorate,,Syria,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +AL-HISHAN,Akram,Turki,,,,,,,,00/00/1975,,,,,,0075258,Ration card no.,,,,,,,Deir ez-Zor Governorate,,Syria,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +AL-HISHAN,Akram,Turki,,,,,,,,00/00/1975,,,,,,0075258,Ration card no.,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +AL-HISHAN,Akram,Turki,,,,,,,,00/00/1979,,,,,,0075258,Ration card no.,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +AL-HISHAN,Akram,Turki,,,,,,,,00/00/1979,,,,,,0075258,Ration card no.,,,,,,,Deir ez-Zor Governorate,,Syria,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +ALHOBO,,,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ALHOBO,,,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ALHOBO,,,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ALHOBO,,,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ALHOBO,,,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ALHOBO,,,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +ALHOUSSEINI,HOUKA,HOUKA,AG,,,,,,,01/01/1962,"Ariaw, Tombouctou region",Mali,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):MAL0005 (UN Ref):MLi.005 Houka Houka Ag Alhousseini was appointed by Iyad Ag Ghaly (QDi.316) as the Cadi of Timbuktu in April 2012 after the establishment of the jihadist caliphate in northern Mali. Houka Houka used to work closely with the Hesbah, the Islamic police headed by Ahmad Al Faqi Al Mahdi, jailed at the Detention Centre of the International Criminal Court in The Hague since September 2016. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,Mali,20/12/2019,10/07/2019,31/12/2020,13800 +ALHOUSSEINI,HOUKA,HOUKA,AG,,,,,,,01/01/1963,"Ariaw, Tombouctou region",Mali,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):MAL0005 (UN Ref):MLi.005 Houka Houka Ag Alhousseini was appointed by Iyad Ag Ghaly (QDi.316) as the Cadi of Timbuktu in April 2012 after the establishment of the jihadist caliphate in northern Mali. Houka Houka used to work closely with the Hesbah, the Islamic police headed by Ahmad Al Faqi Al Mahdi, jailed at the Detention Centre of the International Criminal Court in The Hague since September 2016. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,Mali,20/12/2019,10/07/2019,31/12/2020,13800 +ALHOUSSEINI,HOUKA,HOUKA,AG,,,,,,,01/01/1964,"Ariaw, Tombouctou region",Mali,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):MAL0005 (UN Ref):MLi.005 Houka Houka Ag Alhousseini was appointed by Iyad Ag Ghaly (QDi.316) as the Cadi of Timbuktu in April 2012 after the establishment of the jihadist caliphate in northern Mali. Houka Houka used to work closely with the Hesbah, the Islamic police headed by Ahmad Al Faqi Al Mahdi, jailed at the Detention Centre of the International Criminal Court in The Hague since September 2016. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,Mali,20/12/2019,10/07/2019,31/12/2020,13800 +AL-HOUTHI,ABD,AL-KHALIQ,,,,,عبدالخالق الحوثي,,,00/00/1984,,,Yemen,,,,,Huthi military commander,,,,,,,,,(UK Sanctions List Ref):YEM0001 (UN Ref):YEi.001 INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals (Gender):Male,Individual,Primary name,,Yemen,19/12/2014,07/11/2014,01/02/2021,13191 +AL-HOUTHI,ABDULMALIK,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):YEM0004 (UN Ref):YEi.004 Leader of Yemen's Houthi Movement. Has engaged in acts that threaten the peace, security, or stability of Yemen. (Gender):Male",Individual,Primary name,,Yemen,09/06/2015,14/04/2015,01/02/2021,13253 +AL-HUSAYN,Nawfal,,,,,,,,,,,,,,,,,Former Idlib Syrian Military Intelligence (SMI) Branch Chief,,,,,,,,,(UK Sanctions List Ref):SYR0189 (UK Statement of Reasons):Former Idlib Syrian Military Intelligence (SMI) Branch Chief when he was directly involved in repression and violence against the civilian population in Idlib province. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12047 +AL-HUSAYN,Nawfel,,,,,,,,,,,,,,,,,Former Idlib Syrian Military Intelligence (SMI) Branch Chief,,,,,,,,,(UK Sanctions List Ref):SYR0189 (UK Statement of Reasons):Former Idlib Syrian Military Intelligence (SMI) Branch Chief when he was directly involved in repression and violence against the civilian population in Idlib province. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12047 +AL-HUSAYN,Nawful,,,,,,,,,,,,,,,,,Former Idlib Syrian Military Intelligence (SMI) Branch Chief,,,,,,,,,(UK Sanctions List Ref):SYR0189 (UK Statement of Reasons):Former Idlib Syrian Military Intelligence (SMI) Branch Chief when he was directly involved in repression and violence against the civilian population in Idlib province. (Gender):Male,Individual,Primary name,,Syria,24/08/2011,31/12/2020,13/05/2022,12047 +AL-HUSAYN,Nofal,,,,,,,,,,,,,,,,,Former Idlib Syrian Military Intelligence (SMI) Branch Chief,,,,,,,,,(UK Sanctions List Ref):SYR0189 (UK Statement of Reasons):Former Idlib Syrian Military Intelligence (SMI) Branch Chief when he was directly involved in repression and violence against the civilian population in Idlib province. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12047 +AL-HUSSAIN,Nawfal,,,,,,,,,,,,,,,,,Former Idlib Syrian Military Intelligence (SMI) Branch Chief,,,,,,,,,(UK Sanctions List Ref):SYR0189 (UK Statement of Reasons):Former Idlib Syrian Military Intelligence (SMI) Branch Chief when he was directly involved in repression and violence against the civilian population in Idlib province. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12047 +AL-HUSSAIN,Nawfel,,,,,,,,,,,,,,,,,Former Idlib Syrian Military Intelligence (SMI) Branch Chief,,,,,,,,,(UK Sanctions List Ref):SYR0189 (UK Statement of Reasons):Former Idlib Syrian Military Intelligence (SMI) Branch Chief when he was directly involved in repression and violence against the civilian population in Idlib province. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12047 +AL-HUSSAIN,Nawful,,,,,,,,,,,,,,,,,Former Idlib Syrian Military Intelligence (SMI) Branch Chief,,,,,,,,,(UK Sanctions List Ref):SYR0189 (UK Statement of Reasons):Former Idlib Syrian Military Intelligence (SMI) Branch Chief when he was directly involved in repression and violence against the civilian population in Idlib province. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12047 +AL-HUSSAIN,Nofal,,,,,,,,,,,,,,,,,Former Idlib Syrian Military Intelligence (SMI) Branch Chief,,,,,,,,,(UK Sanctions List Ref):SYR0189 (UK Statement of Reasons):Former Idlib Syrian Military Intelligence (SMI) Branch Chief when he was directly involved in repression and violence against the civilian population in Idlib province. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12047 +AL-HUSSEIN,Malloul,,,,,,,,,00/00/1950,Al-Hasakah Governorate,Syria,Syria,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0373 (UK Statement of Reasons):Former Minister of State. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,06/11/2020,31/12/2020,13/05/2022,14003 +AL-HUSSEIN,Maloul,,,,,,,,,00/00/1950,Al-Hasakah Governorate,Syria,Syria,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0373 (UK Statement of Reasons):Former Minister of State. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,06/11/2020,31/12/2020,13/05/2022,14003 +AL-HUSSEIN,Nawfal,,,,,,,,,,,,,,,,,Former Idlib Syrian Military Intelligence (SMI) Branch Chief,,,,,,,,,(UK Sanctions List Ref):SYR0189 (UK Statement of Reasons):Former Idlib Syrian Military Intelligence (SMI) Branch Chief when he was directly involved in repression and violence against the civilian population in Idlib province. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12047 +AL-HUSSEIN,Nawfel,,,,,,,,,,,,,,,,,Former Idlib Syrian Military Intelligence (SMI) Branch Chief,,,,,,,,,(UK Sanctions List Ref):SYR0189 (UK Statement of Reasons):Former Idlib Syrian Military Intelligence (SMI) Branch Chief when he was directly involved in repression and violence against the civilian population in Idlib province. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12047 +AL-HUSSEIN,Nawful,,,,,,,,,,,,,,,,,Former Idlib Syrian Military Intelligence (SMI) Branch Chief,,,,,,,,,(UK Sanctions List Ref):SYR0189 (UK Statement of Reasons):Former Idlib Syrian Military Intelligence (SMI) Branch Chief when he was directly involved in repression and violence against the civilian population in Idlib province. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12047 +AL-HUSSEIN,Nofal,,,,,,,,,,,,,,,,,Former Idlib Syrian Military Intelligence (SMI) Branch Chief,,,,,,,,,(UK Sanctions List Ref):SYR0189 (UK Statement of Reasons):Former Idlib Syrian Military Intelligence (SMI) Branch Chief when he was directly involved in repression and violence against the civilian population in Idlib province. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12047 +AL-HUTHI,Abd,al-Khaliq,,,,,,,,00/00/1984,,,Yemen,,,,,Huthi military commander,,,,,,,,,(UK Sanctions List Ref):YEM0001 (UN Ref):YEi.001 INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13191 +AL-HUTHI,'Abd,al-Khaliq,Badr,al-Din,,,,,,00/00/1984,,,Yemen,,,,,Huthi military commander,,,,,,,,,(UK Sanctions List Ref):YEM0001 (UN Ref):YEi.001 INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13191 +AL-HUTHI,Abd-al-Khaliq,,,,,,,,,00/00/1984,,,Yemen,,,,,Huthi military commander,,,,,,,,,(UK Sanctions List Ref):YEM0001 (UN Ref):YEi.001 INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13191 +AL-HUTHI,Abdulmalik,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):YEM0004 (UN Ref):YEi.004 Leader of Yemen's Houthi Movement. Has engaged in acts that threaten the peace, security, or stability of Yemen. (Gender):Male",Individual,AKA,Good quality,Yemen,09/06/2015,14/04/2015,01/02/2021,13253 +ALI,Abdiaziz,Dubow,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Kenya,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +ALI,Abdiaziz,Dubow,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +ALI,Abdiaziz,Dubow,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,Badamadow,Lower Juba Region,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +ALI,Abdiaziz,Dubow,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,Badamadow,Lower Juba Region,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +ALI,Abdiaziz,Dubow,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +ALI,Abdiaziz,Dubow,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Kenya,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +ALI,Abdul,Hadi,Arif,,,,,,,00/00/1961,Mosul,Iraq,Iraq,,,0094195,Ration card.,,,,,,,,,,"(UK Sanctions List Ref):AQD0271 (UN Ref):QDi.012 Joined Al-Qaida in 1996 and was at that time an important liaison to the Taliban in Afghanistan. Received money from Ansar al-Islam (QDe.098) in order to conduct attacks in Kirkuk and Ninveh in Iraq during spring and summer of 2005. Al-Qaida senior official. In custody of the United States of America, as of Aug. 2014. Father’s name: Abd al-Razzaq Abd al-Baqi. Mother’s name: Nadira Ayoub Asaad. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1475995 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6923 +ALI,Abou,,,,,,,,,30/04/1964,Tunis,Tunisia,Tunisia,L851940,"issue date: 09/09/1998, expiry date: 08/09/2003",,,,Via Plebiscito 3,,,,,Cremona,,Italy,(UK Sanctions List Ref):AQD0277 (UN Ref):QDi.149 Sentenced to six years of imprisonment for international terrorism in 2008. Deported from Italy to Tunisia on 10 Feb. 2013. Inadmissible to the Schengen area. Mother’s name is Khadijah al-Drissi. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,01/04/2021,7879 +ALI,Abu,,,,,,,,,28/04/1937,"al-Awja, near Tikrit",Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0062 (UN Ref):IQi.001,Individual,AKA,Low quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7612 +ALI,Ahmad,Iman,,,,,,,,00/00/1973,,Kenya,Kenya,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0015 (UN Ref):SOi.016,Individual,Primary name,,Somalia,09/03/2018,08/03/2018,31/12/2020,13618 +ALI,Ahmad,Iman,,,,,,,,00/00/1974,,Kenya,Kenya,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0015 (UN Ref):SOi.016,Individual,Primary name,,Somalia,09/03/2018,08/03/2018,31/12/2020,13618 +ALI,Ahmed,Iman,,,,,,,,00/00/1973,,Kenya,Kenya,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0015 (UN Ref):SOi.016,Individual,AKA,Good quality,Somalia,09/03/2018,08/03/2018,31/12/2020,13618 +ALI,Ahmed,Iman,,,,,,,,00/00/1974,,Kenya,Kenya,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0015 (UN Ref):SOi.016,Individual,AKA,Good quality,Somalia,09/03/2018,08/03/2018,31/12/2020,13618 +ALI,Ahmed,Khalfan,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +ALI,Ahmed,Khalfan,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +ALI,Ahmed,Khalfan,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +ALI,Ahmed,Khalfan,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +ALI,Emraan,,,,,,,,,04/07/1967,Rio Claro,Trinidad and Tobago,(1) Trinidad and Tobago. (2) United States,(1) TB162181. (2) 420985453,"(1) Trinidad and Tobago. Issued on 27 January 2015, expired 26 January 2020. (2) United States of America. Expired 6 February 2017.",19670704052,Trinidad and Tobago,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0373 (UN Ref):QDi.430 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts. Physical description: height 176 cm, weight 73 kg, medium built, colour of eyes- brown, colour of hair- black/bald, complexion- brown. Speaks English. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals a) United States of America (in detention, Federal Detention Centre - Miami, Register Number: 10423-509) b)12 Rio Claro Mayaro Road, Rio Claro, Trinidad and Tobago (previous location 2008 - March 2015) c) Guayaguayare Road, Rio Claro, Trinidad and Tobago (previous location circa 2003) d) United States of America (previous location- January 1991 - 2008) (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,25/11/2021,23/11/2021,04/04/2022,14153 +ALI,Emraan,,,,,,,,,04/07/1967,Rio Claro,Trinidad and Tobago,(1) Trinidad and Tobago. (2) United States,(1) TB162181. (2) 420985453,"(1) Trinidad and Tobago. Issued on 27 January 2015, expired 26 January 2020. (2) United States of America. Expired 6 February 2017.",19670704052,Trinidad and Tobago,,12 Rio Claro Mayaro Road,,,,,Rio Claro,,Trinidad and Tobago,"(UK Sanctions List Ref):AQD0373 (UN Ref):QDi.430 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts. Physical description: height 176 cm, weight 73 kg, medium built, colour of eyes- brown, colour of hair- black/bald, complexion- brown. Speaks English. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals a) United States of America (in detention, Federal Detention Centre - Miami, Register Number: 10423-509) b)12 Rio Claro Mayaro Road, Rio Claro, Trinidad and Tobago (previous location 2008 - March 2015) c) Guayaguayare Road, Rio Claro, Trinidad and Tobago (previous location circa 2003) d) United States of America (previous location- January 1991 - 2008) (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,25/11/2021,23/11/2021,04/04/2022,14153 +ALI,Emraan,,,,,,,,,04/07/1967,Rio Claro,Trinidad and Tobago,(1) Trinidad and Tobago. (2) United States,(1) TB162181. (2) 420985453,"(1) Trinidad and Tobago. Issued on 27 January 2015, expired 26 January 2020. (2) United States of America. Expired 6 February 2017.",19670704052,Trinidad and Tobago,,Federal Detention Centre - Miami,,,,,,,United States,"(UK Sanctions List Ref):AQD0373 (UN Ref):QDi.430 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts. Physical description: height 176 cm, weight 73 kg, medium built, colour of eyes- brown, colour of hair- black/bald, complexion- brown. Speaks English. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals a) United States of America (in detention, Federal Detention Centre - Miami, Register Number: 10423-509) b)12 Rio Claro Mayaro Road, Rio Claro, Trinidad and Tobago (previous location 2008 - March 2015) c) Guayaguayare Road, Rio Claro, Trinidad and Tobago (previous location circa 2003) d) United States of America (previous location- January 1991 - 2008) (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,25/11/2021,23/11/2021,04/04/2022,14153 +ALI,Emraan,,,,,,,,,04/07/1967,Rio Claro,Trinidad and Tobago,(1) Trinidad and Tobago. (2) United States,(1) TB162181. (2) 420985453,"(1) Trinidad and Tobago. Issued on 27 January 2015, expired 26 January 2020. (2) United States of America. Expired 6 February 2017.",19670704052,Trinidad and Tobago,,Guayaguayare Road,,,,,Rio Claro,,Trinidad and Tobago,"(UK Sanctions List Ref):AQD0373 (UN Ref):QDi.430 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts. Physical description: height 176 cm, weight 73 kg, medium built, colour of eyes- brown, colour of hair- black/bald, complexion- brown. Speaks English. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals a) United States of America (in detention, Federal Detention Centre - Miami, Register Number: 10423-509) b)12 Rio Claro Mayaro Road, Rio Claro, Trinidad and Tobago (previous location 2008 - March 2015) c) Guayaguayare Road, Rio Claro, Trinidad and Tobago (previous location circa 2003) d) United States of America (previous location- January 1991 - 2008) (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,25/11/2021,23/11/2021,04/04/2022,14153 +ALI,Maalim,Salman,,,,,,,,00/00/1979,Nairobi,Kenya,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0013 (UN Ref):SOi.013,Individual,AKA,Good quality,Somalia,23/10/2014,23/09/2014,31/12/2020,13147 +ALI,Maalim,Selman,,,,,,,,00/00/1979,Nairobi,Kenya,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0013 (UN Ref):SOi.013,Individual,AKA,Good quality,Somalia,23/10/2014,23/09/2014,31/12/2020,13147 +ALI,Malek,,,,,,,,,00/00/1956,Tartous,,,,,,,Former Higher Education Minister,,,,,,,,,(UK Sanctions List Ref):SYR0140 (UK Statement of Reasons):There are reasonable grounds to suspect that Dr Malek Ali is or has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Higher Education in Syrian Government from at least 2013 to 2014. (Gender):Male,Individual,Primary name,,Syria,24/06/2014,31/12/2020,13/05/2022,12995 +ALI,Malek,Muhammad,,,,,,,,00/00/1956,Tartous,,,,,,,Former Higher Education Minister,,,,,,,,,(UK Sanctions List Ref):SYR0140 (UK Statement of Reasons):There are reasonable grounds to suspect that Dr Malek Ali is or has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Higher Education in Syrian Government from at least 2013 to 2014. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12995 +ALI,Malik,,,,,,,,,00/00/1956,Tartous,,,,,,,Former Higher Education Minister,,,,,,,,,(UK Sanctions List Ref):SYR0140 (UK Statement of Reasons):There are reasonable grounds to suspect that Dr Malek Ali is or has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Higher Education in Syrian Government from at least 2013 to 2014. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12995 +ALI,Malik,Muhammad,,,,,,,,00/00/1956,Tartous,,,,,,,Former Higher Education Minister,,,,,,,,,(UK Sanctions List Ref):SYR0140 (UK Statement of Reasons):There are reasonable grounds to suspect that Dr Malek Ali is or has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Higher Education in Syrian Government from at least 2013 to 2014. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12995 +ALI,Mohamed,Ould,Ahmed,Ould,,,,,,00/00/1972,"Faidh El Batma, Djelfa",Algeria,Algeria,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0326 (UN Ref):QDi.280 Convicted in absentia by Algerian tribunal on 28 Mar. 1996. Algerian international arrest warrant number 04/09 of 6 Jun. 2009 issued by the Tribunal of Sidi Mhamed, Algiers, Algeria. Algerian extradition request number 2307/09 of 3 Sep. 2009, presented to Malian authorities. Father’s name was Benazouz Nail. Mother’s name is Belkheiri Oum El Kheir. Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/05/2010,22/04/2010,31/12/2020,11097 +ALI,Mohamed,Ould,Ahmed,Ould,,,,,,00/00/1976,"Faidh El Batma, Djelfa",Algeria,Algeria,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0326 (UN Ref):QDi.280 Convicted in absentia by Algerian tribunal on 28 Mar. 1996. Algerian international arrest warrant number 04/09 of 6 Jun. 2009 issued by the Tribunal of Sidi Mhamed, Algiers, Algeria. Algerian extradition request number 2307/09 of 3 Sep. 2009, presented to Malian authorities. Father’s name was Benazouz Nail. Mother’s name is Belkheiri Oum El Kheir. Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/05/2010,22/04/2010,31/12/2020,11097 +ALI,Shaykh,Ahmad,Iman,,,,,,,00/00/1973,,Kenya,Kenya,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0015 (UN Ref):SOi.016,Individual,AKA,Good quality,Somalia,09/03/2018,08/03/2018,31/12/2020,13618 +ALI,Shaykh,Ahmad,Iman,,,,,,,00/00/1974,,Kenya,Kenya,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0015 (UN Ref):SOi.016,Individual,AKA,Good quality,Somalia,09/03/2018,08/03/2018,31/12/2020,13618 +ALI,Sheikh,Ahmed,Iman,,,,,,,00/00/1973,,Kenya,Kenya,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0015 (UN Ref):SOi.016,Individual,AKA,Good quality,Somalia,09/03/2018,08/03/2018,31/12/2020,13618 +ALI,Sheikh,Ahmed,Iman,,,,,,,00/00/1974,,Kenya,Kenya,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0015 (UN Ref):SOi.016,Individual,AKA,Good quality,Somalia,09/03/2018,08/03/2018,31/12/2020,13618 +ALI,Sheikh,Hassan,Dahir,Aweys,,Colonel,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +ALI,Sheikh,Hassan,Dahir,Aweys,,Colonel,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +ALI,Sheikh,Hassan,Dahir,Aweys,,Colonel,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +ALI,Sheikh,Hassan,Dahir,Aweys,,Colonel,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +ALI,Tharwat,Salah,Shihata,,,,,,,29/06/1960,,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0327 (UN Ref):QDi.017 Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/12/2001,06/10/2001,31/12/2020,6899 +ALI,Asharaf,Seed,Ahmed,,,,,,,00/01/1957,,,(1) Sudan (2) South Sudan (3) United Arab Emirates,B00018325,,,,Businessman,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0015 (UK Statement of Reasons):Ashraf Seed Ahmed Hussein Ali, widely known as AL-CARDINAL, has been involved in serious corruption in South Sudan involving the misappropriation of state property to his benefit and the benefit of others. He has been the beneficiary of commitments from the State which constituted the improper diversion of significant amounts of government revenues and funds. His actions facilitated or provided support for serious corruption that has caused damage to South Sudan’s public finances and contributed to ongoing instability and conflict. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,08/02/2022,14097 +ALI,Asharaf,Seed,Ahmed,,,,,,,01/04/1957,,,(1) Sudan (2) South Sudan (3) United Arab Emirates,B00018325,,,,Businessman,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0015 (UK Statement of Reasons):Ashraf Seed Ahmed Hussein Ali, widely known as AL-CARDINAL, has been involved in serious corruption in South Sudan involving the misappropriation of state property to his benefit and the benefit of others. He has been the beneficiary of commitments from the State which constituted the improper diversion of significant amounts of government revenues and funds. His actions facilitated or provided support for serious corruption that has caused damage to South Sudan’s public finances and contributed to ongoing instability and conflict. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,08/02/2022,14097 +ALI,Ashiraf,Seed,Ahmed,,,,,,,00/01/1957,,,(1) Sudan (2) South Sudan (3) United Arab Emirates,B00018325,,,,Businessman,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0015 (UK Statement of Reasons):Ashraf Seed Ahmed Hussein Ali, widely known as AL-CARDINAL, has been involved in serious corruption in South Sudan involving the misappropriation of state property to his benefit and the benefit of others. He has been the beneficiary of commitments from the State which constituted the improper diversion of significant amounts of government revenues and funds. His actions facilitated or provided support for serious corruption that has caused damage to South Sudan’s public finances and contributed to ongoing instability and conflict. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,08/02/2022,14097 +ALI,Ashiraf,Seed,Ahmed,,,,,,,01/04/1957,,,(1) Sudan (2) South Sudan (3) United Arab Emirates,B00018325,,,,Businessman,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0015 (UK Statement of Reasons):Ashraf Seed Ahmed Hussein Ali, widely known as AL-CARDINAL, has been involved in serious corruption in South Sudan involving the misappropriation of state property to his benefit and the benefit of others. He has been the beneficiary of commitments from the State which constituted the improper diversion of significant amounts of government revenues and funds. His actions facilitated or provided support for serious corruption that has caused damage to South Sudan’s public finances and contributed to ongoing instability and conflict. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,08/02/2022,14097 +ALI,Ashraf,Hussein,,,,,,,,00/01/1957,,,(1) Sudan (2) South Sudan (3) United Arab Emirates,B00018325,,,,Businessman,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0015 (UK Statement of Reasons):Ashraf Seed Ahmed Hussein Ali, widely known as AL-CARDINAL, has been involved in serious corruption in South Sudan involving the misappropriation of state property to his benefit and the benefit of others. He has been the beneficiary of commitments from the State which constituted the improper diversion of significant amounts of government revenues and funds. His actions facilitated or provided support for serious corruption that has caused damage to South Sudan’s public finances and contributed to ongoing instability and conflict. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,08/02/2022,14097 +ALI,Ashraf,Hussein,,,,,,,,01/04/1957,,,(1) Sudan (2) South Sudan (3) United Arab Emirates,B00018325,,,,Businessman,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0015 (UK Statement of Reasons):Ashraf Seed Ahmed Hussein Ali, widely known as AL-CARDINAL, has been involved in serious corruption in South Sudan involving the misappropriation of state property to his benefit and the benefit of others. He has been the beneficiary of commitments from the State which constituted the improper diversion of significant amounts of government revenues and funds. His actions facilitated or provided support for serious corruption that has caused damage to South Sudan’s public finances and contributed to ongoing instability and conflict. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,08/02/2022,14097 +ALI,Ashraf,Said,Ahmed,Hussein,,,,,,00/01/1957,,,(1) Sudan (2) South Sudan (3) United Arab Emirates,B00018325,,,,Businessman,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0015 (UK Statement of Reasons):Ashraf Seed Ahmed Hussein Ali, widely known as AL-CARDINAL, has been involved in serious corruption in South Sudan involving the misappropriation of state property to his benefit and the benefit of others. He has been the beneficiary of commitments from the State which constituted the improper diversion of significant amounts of government revenues and funds. His actions facilitated or provided support for serious corruption that has caused damage to South Sudan’s public finances and contributed to ongoing instability and conflict. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,08/02/2022,14097 +ALI,Ashraf,Said,Ahmed,Hussein,,,,,,01/04/1957,,,(1) Sudan (2) South Sudan (3) United Arab Emirates,B00018325,,,,Businessman,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0015 (UK Statement of Reasons):Ashraf Seed Ahmed Hussein Ali, widely known as AL-CARDINAL, has been involved in serious corruption in South Sudan involving the misappropriation of state property to his benefit and the benefit of others. He has been the beneficiary of commitments from the State which constituted the improper diversion of significant amounts of government revenues and funds. His actions facilitated or provided support for serious corruption that has caused damage to South Sudan’s public finances and contributed to ongoing instability and conflict. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,08/02/2022,14097 +ALI,Ashraf,Sayed,,,,,,,,00/01/1957,,,(1) Sudan (2) South Sudan (3) United Arab Emirates,B00018325,,,,Businessman,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0015 (UK Statement of Reasons):Ashraf Seed Ahmed Hussein Ali, widely known as AL-CARDINAL, has been involved in serious corruption in South Sudan involving the misappropriation of state property to his benefit and the benefit of others. He has been the beneficiary of commitments from the State which constituted the improper diversion of significant amounts of government revenues and funds. His actions facilitated or provided support for serious corruption that has caused damage to South Sudan’s public finances and contributed to ongoing instability and conflict. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,08/02/2022,14097 +ALI,Ashraf,Sayed,,,,,,,,01/04/1957,,,(1) Sudan (2) South Sudan (3) United Arab Emirates,B00018325,,,,Businessman,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0015 (UK Statement of Reasons):Ashraf Seed Ahmed Hussein Ali, widely known as AL-CARDINAL, has been involved in serious corruption in South Sudan involving the misappropriation of state property to his benefit and the benefit of others. He has been the beneficiary of commitments from the State which constituted the improper diversion of significant amounts of government revenues and funds. His actions facilitated or provided support for serious corruption that has caused damage to South Sudan’s public finances and contributed to ongoing instability and conflict. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,08/02/2022,14097 +ALI,Ashraf,Seed,Ahmed,Hussein,,,,,,00/01/1957,,,(1) Sudan (2) South Sudan (3) United Arab Emirates,B00018325,,,,Businessman,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0015 (UK Statement of Reasons):Ashraf Seed Ahmed Hussein Ali, widely known as AL-CARDINAL, has been involved in serious corruption in South Sudan involving the misappropriation of state property to his benefit and the benefit of others. He has been the beneficiary of commitments from the State which constituted the improper diversion of significant amounts of government revenues and funds. His actions facilitated or provided support for serious corruption that has caused damage to South Sudan’s public finances and contributed to ongoing instability and conflict. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,08/02/2022,14097 +ALI,Ashraf,Seed,Ahmed,Hussein,,,,,,01/04/1957,,,(1) Sudan (2) South Sudan (3) United Arab Emirates,B00018325,,,,Businessman,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0015 (UK Statement of Reasons):Ashraf Seed Ahmed Hussein Ali, widely known as AL-CARDINAL, has been involved in serious corruption in South Sudan involving the misappropriation of state property to his benefit and the benefit of others. He has been the beneficiary of commitments from the State which constituted the improper diversion of significant amounts of government revenues and funds. His actions facilitated or provided support for serious corruption that has caused damage to South Sudan’s public finances and contributed to ongoing instability and conflict. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,08/02/2022,14097 +ALI,Ashraff,Seed,Ahmed,,,,,,,00/01/1957,,,(1) Sudan (2) South Sudan (3) United Arab Emirates,B00018325,,,,Businessman,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0015 (UK Statement of Reasons):Ashraf Seed Ahmed Hussein Ali, widely known as AL-CARDINAL, has been involved in serious corruption in South Sudan involving the misappropriation of state property to his benefit and the benefit of others. He has been the beneficiary of commitments from the State which constituted the improper diversion of significant amounts of government revenues and funds. His actions facilitated or provided support for serious corruption that has caused damage to South Sudan’s public finances and contributed to ongoing instability and conflict. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,08/02/2022,14097 +ALI,Ashraff,Seed,Ahmed,,,,,,,01/04/1957,,,(1) Sudan (2) South Sudan (3) United Arab Emirates,B00018325,,,,Businessman,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0015 (UK Statement of Reasons):Ashraf Seed Ahmed Hussein Ali, widely known as AL-CARDINAL, has been involved in serious corruption in South Sudan involving the misappropriation of state property to his benefit and the benefit of others. He has been the beneficiary of commitments from the State which constituted the improper diversion of significant amounts of government revenues and funds. His actions facilitated or provided support for serious corruption that has caused damage to South Sudan’s public finances and contributed to ongoing instability and conflict. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,08/02/2022,14097 +ALI,Sheikh,Hassan,Dahir,Aweys,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +ALI,Sheikh,Hassan,Dahir,Aweys,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +ALI,Sheikh,Hassan,Dahir,Aweys,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +ALI,Sheikh,Hassan,Dahir,Aweys,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +ALI,Yasin,Baynah,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,,Mogadishu,Somalia,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +ALI,Yasin,Baynah,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,Rinkeby,Stockholm,Sweden,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +ALI,Yassin,Mohamed,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,,Mogadishu,Somalia,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +ALI,Yassin,Mohamed,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,Rinkeby,Stockholm,Sweden,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +ALI ABO GHAITH,Sulaiman,Jassem,Sulaiman,,,,سليمان جاسم سليمان علي أبوغيث,,,14/12/1965,,Kuwait,Kuwait,849594,"Kuwaiti number, issued on 27 Nov. 1998, issued in Kuwait and expired on 24 Jun. 2003.",,,,,,,,,,,,(UK Sanctions List Ref):AQD0318 (UN Ref):QDi.154 Left Kuwait for Pakistan in June 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487587,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,19/01/2004,16/01/2004,31/12/2020,7996 +ALI AL-BADRI AL-SAMARRAI,Ibrahim,Awwad,Ibrahim,,,Doctor,إبراهيم عواد إبراهيم علي البدري السامرائي,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +ALI AL-BADRI AL-SAMARRAI,Ibrahim,Awwad,Ibrahim,,,Doctor,إبراهيم عواد إبراهيم علي البدري السامرائي,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +ALI ALZAHRANI,Faisal,Ahmed,,,,,,,,19/01/1986,,,Saudi Arabia,(1) G579315 (2) K142736,"(1) Saudi Arabia (2) Saudi Arabia. issued on 14 Jul. 2011 in Al-Khafji, Saudi Arabia",,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0172 (UN Ref):QDi.392 Was the lead oil and gas division official of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), for Al Barakah Governorate, Syrian Arab Republic, as of May 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5943051",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,11/02/2022,13351 +ALI MUHAMMAD,Mati Ur-Rehman,,,,,,,,,00/00/1977,"Chak number 36/DNB, Rajkan, Madina Colony, Bahawalpur District, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0224 (UN Ref):QDi.296 Physical description: 5 feet 2 inches; 157,4 cm. Name of father: Ali Muhammad. Mati ur-Rehman is the chief operational commander of Lashkar i Jhangvi (LJ) (QDe.096). Associated with Harakat-ul Jihad Islami (QDe.130). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4674457",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,02/09/2011,22/08/2011,31/12/2020,12038 +ALIA,Malek,,,,,,,,,,Tatrous,Syria,Syria,,,,,Commander of the Republican Guard,,,,,,,,,"(UK Sanctions List Ref):SYR0378 (UK Statement of Reasons):Major General and Commander of the Republican Guard as of January 2021, and former Commander of the Republican Guard’s 30th Division. Responsible for the violent repression of the civilian population by troops under his command, particularly during the increased violence of the offensives on north-west Syria of 2019-2020. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14071 +ALIA,Malik,,,,,,مالك علياء,,,,Tatrous,Syria,Syria,,,,,Commander of the Republican Guard,,,,,,,,,"(UK Sanctions List Ref):SYR0378 (UK Statement of Reasons):Major General and Commander of the Republican Guard as of January 2021, and former Commander of the Republican Guard’s 30th Division. Responsible for the violent repression of the civilian population by troops under his command, particularly during the increased violence of the offensives on north-west Syria of 2019-2020. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14071 +ALIAA,Malek,,,,,,,,,,Tatrous,Syria,Syria,,,,,Commander of the Republican Guard,,,,,,,,,"(UK Sanctions List Ref):SYR0378 (UK Statement of Reasons):Major General and Commander of the Republican Guard as of January 2021, and former Commander of the Republican Guard’s 30th Division. Responsible for the violent repression of the civilian population by troops under his command, particularly during the increased violence of the offensives on north-west Syria of 2019-2020. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14071 +ALIAA,Malik,,,,,,مالك عليا,,,,Tatrous,Syria,Syria,,,,,Commander of the Republican Guard,,,,,,,,,"(UK Sanctions List Ref):SYR0378 (UK Statement of Reasons):Major General and Commander of the Republican Guard as of January 2021, and former Commander of the Republican Guard’s 30th Division. Responsible for the violent repression of the civilian population by troops under his command, particularly during the increased violence of the offensives on north-west Syria of 2019-2020. (Gender):Male",Individual,Primary name,,Syria,15/03/2021,15/03/2021,15/03/2021,14071 +ALIASHKEVICH,Alexander,Mikhailovich,,,,,"АЛЯШКЕВIЧ, Аляксандр Мiхайлавiч",,,,,,,,,,,"(1) Former First Deputy Head of the District Department of Internal Affairs in Moskovski District, Minsk (2) Head of Criminal Police (3) Currently Head of the Leninsky District Internal Affairs Directorate of Misk",,,,,,,,,"(UK Sanctions List Ref):BEL0016 (UK Statement of Reasons):In Aliashkevich’s position as First Deputy Head of the District Department of Internal Affairs in Moskovski/Moscow District of the city of Minsk and Head of Criminal Police, he was responsible for the repression and intimidation campaign in that district against peaceful protesters in the wake of the 2020 presidential election, in particular arbitrary arrests, excessive use of force and ill‐treatment, including torture. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13938 +ALIASHKEVICH,Aliaksandr,Mikhailavich,,,,,"АЛЕШКЕВИЧ, Александр Михайлович",,,,,,,,,,,"(1) Former First Deputy Head of the District Department of Internal Affairs in Moskovski District, Minsk (2) Head of Criminal Police (3) Currently Head of the Leninsky District Internal Affairs Directorate of Misk",,,,,,,,,"(UK Sanctions List Ref):BEL0016 (UK Statement of Reasons):In Aliashkevich’s position as First Deputy Head of the District Department of Internal Affairs in Moskovski/Moscow District of the city of Minsk and Head of Criminal Police, he was responsible for the repression and intimidation campaign in that district against peaceful protesters in the wake of the 2020 presidential election, in particular arbitrary arrests, excessive use of force and ill‐treatment, including torture. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13938 +ALIAZRA,Ra'ad,Ahmad,,,,,,,,00/00/1959,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +ALIAZRA,Ra'ad,Ahmad,,,,,,,,00/00/1957,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +ALIEV,Shamil,Magomedovich,,,,,Шамиль Магомедович Алиев,,,29/10/1980,Astrakhan,Russia,Russia,514448632,Russian foreign travel passport number,1200075689,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0315 (UN Ref):QDi.368 As at Aug. 2015, leader of Jamaat Abu Hanifa, a terrorist group that is part of the Al-Nusrah Front for the People of the Levant (QDe.137). Physical description: eye colour: brown, hair colour: black, build: slim, height 175-180 cm. Distinguishing marks: long face, speech defect. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899833. Address country Syria, located in as at Aug. 2015, Iraq , possible alternative location as at August 2015.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13303 +ALIEV,Shamil,Magomedovich,,,,,Шамиль Магомедович Алиев,,,29/10/1980,Astrakhan,Russia,Russia,514448632,Russian foreign travel passport number,1200075689,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0315 (UN Ref):QDi.368 As at Aug. 2015, leader of Jamaat Abu Hanifa, a terrorist group that is part of the Al-Nusrah Front for the People of the Levant (QDe.137). Physical description: eye colour: brown, hair colour: black, build: slim, height 175-180 cm. Distinguishing marks: long face, speech defect. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899833. Address country Syria, located in as at Aug. 2015, Iraq , possible alternative location as at August 2015.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13303 +AL-IFRI,Saleem,,,,,,,,,20/02/1962,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,Tel Afar – Al-Saad,,,,,Mosul,,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +AL-IFRI,Saleem,,,,,,,,,20/02/1962,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,17 Tamoz,,,,,"Mosul, previous address",,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +AL-IFRI,Saleem,,,,,,,,,00/00/1959,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,17 Tamoz,,,,,"Mosul, previous address",,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +AL-IFRI,Saleem,,,,,,,,,00/00/1959,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,Tel Afar – Al-Saad,,,,,Mosul,,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +AL-IFRI,Salim,Mustafa,Muhammad,Mansur,,,,,,20/02/1962,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,Tel Afar – Al-Saad,,,,,Mosul,,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +AL-IFRI,Salim,Mustafa,Muhammad,Mansur,,,,,,20/02/1962,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,17 Tamoz,,,,,"Mosul, previous address",,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +AL-IFRI,Salim,Mustafa,Muhammad,Mansur,,,,,,00/00/1959,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,17 Tamoz,,,,,"Mosul, previous address",,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +AL-IFRI,Salim,Mustafa,Muhammad,Mansur,,,,,,00/00/1959,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,Tel Afar – Al-Saad,,,,,Mosul,,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +AL-IMAN,Mahir,BurhanEddine,,,,,ماهر برهان الدين الإمام,,,,,,Syria,,,,,General Manager of Telsa Group / Tesla Telecom.,,,,,,,,,"(UK Sanctions List Ref):SYR0351 Linked to Tesla Group/Telecom; Tazamon Contracting LLC; Castro LLC (UK Statement of Reasons):Leading businessperson operating in Syria with business interests in tourism, telecommunications and real estate. As General Manager of the regime-backed Telsa Communication Group as well as Castro LLC, and through his other business interests, Mahir BurhanEddine AL-IMAM benefits from the regime and supports its financing and lobbying policy of the regime as well as its construction policy. (Gender):Male",Individual,Primary name,,Syria,17/02/2020,31/12/2020,31/12/2020,13815 +ALIMOVA,Olga,Nikolaevna,,,,,Алимова Ольга Николаевна,,,10/04/1953,Saratov,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0299 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14244 +AL-INABI,Abu-Ubaydah,Yusuf,,,,,,,,07/02/1969,Annaba,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0117 (UN Ref):QDi.389 A leader of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930738,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13322 +AL-INGUSHI,Saifuddin,,,,,,,,,14/03/1992,"Ordzhonikidzevskaya village, Sunzhenskiy district, Ingushetia",Russia,Russia,,,,,,,,,,,Mosul,,Iraq,"(UK Sanctions List Ref):AQD0223 (UN Ref):QDi.405 Joined the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115) in September 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116563",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13516 +AL-INMA HOLDING CO. FOR CONSTRUCTION AND REAL ESTATE DEVELOPMENTS,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):LIB0010 (UK Statement of Reasons):Libyan subsidiary of the Economic & Social Development Fund, which is itself a subsidiary of the Libyan Investment Authority.",Entity,Primary name,,Libya,14/04/2011,31/12/2020,31/12/2020,11751 +AL-INMA HOLDING CO. FOR INDUSTRIAL INVESTMENTS,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):LIB0008 (UK Statement of Reasons):Libyan subsidiary of the Economic and Social Development Fund, which is itself a subsidiary of the Libyan Investment Authority.",Entity,Primary name,,Libya,14/04/2011,31/12/2020,31/12/2020,11748 +AL-INMA HOLDING CO. FOR SERVICES INVESTMENTS,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):LIB0007 (UK Statement of Reasons):Libyan subsidiary of the Economic & Social Development Fund, which is itself a subsidiary of the Libyan Investment Authority. (Parent company):Libyan Investment Authority, designated in UNSCR 1970.",Entity,Primary name,,Libya,14/04/2011,31/12/2020,31/12/2020,11747 +AL-INMA HOLDING COMPANY FOR TOURISM INVESTMENT,,,,,,,,,,,,,,,,,,,Hasan al-Mashay Street (off al-Zawiyah Street),,,,,,,,"(UK Sanctions List Ref):LIB0009 (UK Statement of Reasons):Libyan subsidiary of the Economic & Social Development Fund, which is itself a subsidiary of the Libyan Investment Authority. (Phone number):+218 213345187. +218 213345188 (Email address):info@ethic.ly",Entity,Primary name,,Libya,14/04/2011,31/12/2020,31/12/2020,11749 +ALIRABAKI,Steven,,,,,,,,,00/00/1965,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +ALIRABAKI,Steven,,,,,,,,,01/01/1964,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +AL-IRAQI,Abd,Al-Hadi,,,,,,,,00/00/1961,Mosul,Iraq,Iraq,,,0094195,Ration card.,,,,,,,,,,"(UK Sanctions List Ref):AQD0271 (UN Ref):QDi.012 Joined Al-Qaida in 1996 and was at that time an important liaison to the Taliban in Afghanistan. Received money from Ansar al-Islam (QDe.098) in order to conduct attacks in Kirkuk and Ninveh in Iraq during spring and summer of 2005. Al-Qaida senior official. In custody of the United States of America, as of Aug. 2014. Father’s name: Abd al-Razzaq Abd al-Baqi. Mother’s name: Nadira Ayoub Asaad. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1475995 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6923 +AL-IRAQI,Abdal,Al-Hadi,,,,,,,,00/00/1961,Mosul,Iraq,Iraq,,,0094195,Ration card.,,,,,,,,,,"(UK Sanctions List Ref):AQD0271 (UN Ref):QDi.012 Joined Al-Qaida in 1996 and was at that time an important liaison to the Taliban in Afghanistan. Received money from Ansar al-Islam (QDe.098) in order to conduct attacks in Kirkuk and Ninveh in Iraq during spring and summer of 2005. Al-Qaida senior official. In custody of the United States of America, as of Aug. 2014. Father’s name: Abd al-Razzaq Abd al-Baqi. Mother’s name: Nadira Ayoub Asaad. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1475995 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6923 +AL-ITIHAAD AL-ISLAMIYA (AIAI),,,,,,,الاتحاد الاسلامي,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0024 (UN Ref):QDe.002 Reported to have operated in Somalia and Ethiopia and to have merged with Harakat Al-Shabaab Al-Mujaahidiin (Al-Shabaab), which was accepted as an affiliate of Al-Qaida (QDe.004) by Aiman Muhammed Rabi al-Zawahiri (QDi.006) in Feb. 2012, and is also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Leadership included Hassan Dahir Aweys (QDi.042). AIAI has received funds through the Al-Haramain Islamic Foundation (Somalia) (QDe.072). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6996 +ALIZA,Abdul Rauf,,,,,Mullah,,,,00/00/1958,"(1) Azan village, Kajaki District, Helmand Province. (2) Spin Boldak District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Commander of Central Corp under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0025 (UN Ref):TAi.025 Member of the Taliban Quetta Shura as at 2009. Taliban member responsible for Uruzgan Province, Afghanistan, as at 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6912 +ALIZA,Abdul Rauf,,,,,Mullah,,,,00/00/1959,"(1) Azan village, Kajaki District, Helmand Province. (2) Spin Boldak District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Commander of Central Corp under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0025 (UN Ref):TAi.025 Member of the Taliban Quetta Shura as at 2009. Taliban member responsible for Uruzgan Province, Afghanistan, as at 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6912 +ALIZA,Abdul Rauf,,,,,Mullah,,,,00/00/1960,"(1) Azan village, Kajaki District, Helmand Province. (2) Spin Boldak District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Commander of Central Corp under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0025 (UN Ref):TAi.025 Member of the Taliban Quetta Shura as at 2009. Taliban member responsible for Uruzgan Province, Afghanistan, as at 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6912 +ALIZA,Abdul Rauf,,,,,Mullah,,,,00/00/1961,"(1) Azan village, Kajaki District, Helmand Province. (2) Spin Boldak District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Commander of Central Corp under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0025 (UN Ref):TAi.025 Member of the Taliban Quetta Shura as at 2009. Taliban member responsible for Uruzgan Province, Afghanistan, as at 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6912 +ALIZA,Abdul Rauf,,,,,Mullah,,,,00/00/1962,"(1) Azan village, Kajaki District, Helmand Province. (2) Spin Boldak District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Commander of Central Corp under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0025 (UN Ref):TAi.025 Member of the Taliban Quetta Shura as at 2009. Taliban member responsible for Uruzgan Province, Afghanistan, as at 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6912 +ALIZA,Abdul Rauf,,,,,Mullah,,,,00/00/1963,"(1) Azan village, Kajaki District, Helmand Province. (2) Spin Boldak District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Commander of Central Corp under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0025 (UN Ref):TAi.025 Member of the Taliban Quetta Shura as at 2009. Taliban member responsible for Uruzgan Province, Afghanistan, as at 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6912 +ALIZA,Abdul Rauf,,,,,Mullah,,,,00/00/1970,"(1) Azan village, Kajaki District, Helmand Province. (2) Spin Boldak District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Commander of Central Corp under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0025 (UN Ref):TAi.025 Member of the Taliban Quetta Shura as at 2009. Taliban member responsible for Uruzgan Province, Afghanistan, as at 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6912 +ALIZAI,Agha,Jan,,,,,اغا جان عالیزی,,,15/10/1963,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +ALIZAI,Agha,Jan,,,,,اغا جان عالیزی,,,14/02/1973,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +ALIZAI,Agha,Jan,,,,,اغا جان عالیزی,,,00/00/1967,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +ALIZAI,Agha,Jan,,,,,اغا جان عالیزی,,,00/00/1957,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +ALIZAI,Agha,Jan,,,,Haji,,,,15/10/1963,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +ALIZAI,Agha,Jan,,,,Haji,,,,14/02/1973,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +ALIZAI,Agha,Jan,,,,Haji,,,,00/00/1967,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +ALIZAI,Agha,Jan,,,,Haji,,,,00/00/1957,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +ALIZAI,ABDUL,HABIB,,,,(1) Haji (2) Hadji,عبد الحبیب عالیزی,,,15/10/1963,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +ALIZAI,ABDUL,HABIB,,,,(1) Haji (2) Hadji,عبد الحبیب عالیزی,,,14/02/1973,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +ALIZAI,ABDUL,HABIB,,,,(1) Haji (2) Hadji,عبد الحبیب عالیزی,,,00/00/1967,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +ALIZAI,ABDUL,HABIB,,,,(1) Haji (2) Hadji,عبد الحبیب عالیزی,,,00/00/1957,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +AL-JADDAWI,Saqr,,,,,,صقر الجداوي,,,00/00/1965,(1) Al-Mukalla (2) AI-Mukala,(1) Yemen (2) Yemen,Yemen,00385937,Yemen,,,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0306 (UN Ref):QDi.003 Driver and private bodyguard to Usama bin Laden (deceased) from 1996 until 2001. Transferred from United States custody to Yemen in Nov. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Yemen (previous address),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,11/02/2022,6997 +AL-JADDAWI,Saqr,,,,,,صقر الجداوي,,,00/00/1965,(1) Al-Mukalla (2) AI-Mukala,(1) Yemen (2) Yemen,Yemen,00385937,Yemen,,,,Shari Tunis,,,,,Sana'a,,Yemen,(UK Sanctions List Ref):AQD0306 (UN Ref):QDi.003 Driver and private bodyguard to Usama bin Laden (deceased) from 1996 until 2001. Transferred from United States custody to Yemen in Nov. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Yemen (previous address),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,11/02/2022,6997 +AL-JAHANI,Abd al-Rahman,Muhammad Zafir,al-Dabisi,,,,,,,04/12/1971,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-JAHANI,Abd al-Rahman,Muhammad Zafir,al-Dabisi,,,,,,,00/00/1977,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-JAHANI,Abd Al-Rahman,Muhammad Zafir,al-Dubaysi,,,,,,,04/12/1971,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-JAHANI,Abd Al-Rahman,Muhammad Zafir,al-Dubaysi,,,,,,,00/00/1977,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +ALJAHANI,Abdulrhman,Mohammed,D.,,,,,,,04/12/1971,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +ALJAHANI,Abdulrhman,Mohammed,D.,,,,,,,00/00/1977,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-JAHNI,Abd al-Rahman,Muhammad Thafir,,,,,,,,04/12/1971,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-JAHNI,Abd al-Rahman,Muhammad Thafir,,,,,,,,00/00/1977,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-JAHNI,Abd Al-Rahman,Muhammad Zafir,al-Dubaysi,,,,,,,04/12/1971,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-JAHNI,Abd Al-Rahman,Muhammad Zafir,al-Dubaysi,,,,,,,00/00/1977,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-JALAHMAH,Abu,Muhammad,,,,,,,,24/09/1959,Al-Khitan area,Kuwait,Kuwait,(1) 101423404 (2) 2541451 (3) 002327881,(1) - (2) Kuwait number valid until 16 Feb. 2017 (3) Kuwait number,259092401188,Kuwait,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0210 (UN Ref):QDi.237 Previously listed between 16 Jan. 2008 and 3 Jan. 2014 (amended on 1 Jul. 2008, 23 Jul. 2008, 25 Jan. 2010). Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518755. Address country Kuwait, residence as at March 2009 and at December 2013",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,03/01/2014,31/12/2020,9225 +AL-JALALI,Mohamad,Ghazi,,,,,,,,,,,,,,,,Former Minister of Communications and Technology,,,,,,,,,"(UK Sanctions List Ref):SYR0155 (UK Statement of Reasons):Having been Communications and Technology Minister in the Asad government, Mohamad Ghazi Al-Jalali shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,22/10/2014,31/12/2020,31/12/2020,13151 +AL-JALALI,Mohammad,Ghazi,,,,,,,,,,,,,,,,Former Minister of Communications and Technology,,,,,,,,,"(UK Sanctions List Ref):SYR0155 (UK Statement of Reasons):Having been Communications and Technology Minister in the Asad government, Mohamad Ghazi Al-Jalali shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,31/12/2020,13151 +AL-JALAMAH,Jaber,,,,,,,,,24/09/1959,Al-Khitan area,Kuwait,Kuwait,(1) 101423404 (2) 2541451 (3) 002327881,(1) - (2) Kuwait number valid until 16 Feb. 2017 (3) Kuwait number,259092401188,Kuwait,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0210 (UN Ref):QDi.237 Previously listed between 16 Jan. 2008 and 3 Jan. 2014 (amended on 1 Jul. 2008, 23 Jul. 2008, 25 Jan. 2010). Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518755. Address country Kuwait, residence as at March 2009 and at December 2013",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,03/01/2014,31/12/2020,9225 +AL-JALHAMI,Jabir,,,,,,,,,24/09/1959,Al-Khitan area,Kuwait,Kuwait,(1) 101423404 (2) 2541451 (3) 002327881,(1) - (2) Kuwait number valid until 16 Feb. 2017 (3) Kuwait number,259092401188,Kuwait,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0210 (UN Ref):QDi.237 Previously listed between 16 Jan. 2008 and 3 Jan. 2014 (amended on 1 Jul. 2008, 23 Jul. 2008, 25 Jan. 2010). Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518755. Address country Kuwait, residence as at March 2009 and at December 2013",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,03/01/2014,31/12/2020,9225 +AL-JAMA'AH AL-ISLAMIYAH,,,,,,,Al-jamāʻah al-islāmīyah,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0030 (UK Statement of Reasons):Al-Gama'a al-Islamiyya (GI) is an Egyptian Sunni terrorist organisation who were responsible for a number of terrorist attacks in the 1980s and 1990s,Entity,AKA,,Counter-Terrorism (International),02/11/2001,31/12/2020,21/01/2021,6988 +ALJARBA,Tarad,Mohammad,Alnori Alfares,,,,,,,20/11/1979,,Iraq,Saudi Arabia,E704088,Saudi Arabian. Issued on 26.8.2003. Expired on 2.7.2008.,1121628414,,,,,,,,,,,"(UK Sanctions List Ref):AQD0319 (UN Ref):QDi.370 Border emir of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115) as of Apr. 2015, and ISIL’s leader for operations outside of the Syrian Arab Republic and Iraq as of mid-2014. Facilitated the travel from Turkey to the Syrian Arab Republic of prospective ISIL fighters from Australia, Europe, and the Middle East. Managed ISIL’s guesthouse in Azaz, Syrian Arabic Republic as of 2014. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13295 +AL-JARROUCHEH,Ahmad,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +AL-JARROUCHEH,Ahmed,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +AL-JARROUCHI,Ahmad,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +AL-JARROUCHI,Ahmed,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +ALJAWADI,Saqar,,,,,,,,,00/00/1965,(1) Al-Mukalla (2) AI-Mukala,(1) Yemen (2) Yemen,Yemen,00385937,Yemen,,,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0306 (UN Ref):QDi.003 Driver and private bodyguard to Usama bin Laden (deceased) from 1996 until 2001. Transferred from United States custody to Yemen in Nov. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Yemen (previous address),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,11/02/2022,6997 +ALJAWADI,Saqar,,,,,,,,,00/00/1965,(1) Al-Mukalla (2) AI-Mukala,(1) Yemen (2) Yemen,Yemen,00385937,Yemen,,,,Shari Tunis,,,,,Sana'a,,Yemen,(UK Sanctions List Ref):AQD0306 (UN Ref):QDi.003 Driver and private bodyguard to Usama bin Laden (deceased) from 1996 until 2001. Transferred from United States custody to Yemen in Nov. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Yemen (previous address),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,11/02/2022,6997 +AL-JAWI,Abu,Seif,,,,,,,,14/07/1975,"Rembang, Jawa Tengah",Indonesia,Indonesia,A2823222,"Indonesia. Issued on 28 May 2012. Expires 28 May 2017. Issued under name Wiji Joko Santoso, born 14 July 1975 in Rembang, Jawa Tengah, Indonesia",,,,,,,,,,,,(UK Sanctions List Ref):AQD0332 (UN Ref):QDi.350 Head of the foreign affairs division and key outreach player of Jemaah Islamiyah (QDe.092). Associated with Hilal Ahmar Society Indonesia (HASI) (QDe.147). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5854971,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/03/2015,13/03/2015,31/12/2020,13244 +AL-JAWLANI,Abu,Mohamed,,,,,,,,00/00/1975,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,Abu,Mohamed,,,,,,,,00/00/1976,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,Abu,Mohamed,,,,,,,,00/00/1977,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,Abu,Mohamed,,,,,,,,00/00/1978,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,Abu,Mohamed,,,,,,,,00/00/1979,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,Abu,Mohamed,,,,,,,,00/00/1980,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,Abu,Muhammad,,,,,,,,00/00/1975,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,Abu,Muhammad,,,,,,,,00/00/1976,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,Abu,Muhammad,,,,,,,,00/00/1977,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,Abu,Muhammad,,,,,,,,00/00/1978,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,Abu,Muhammad,,,,,,,,00/00/1979,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,Abu,Muhammad,,,,,,,,00/00/1980,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,Muhammad,,,,,,,,,00/00/1975,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,Muhammad,,,,,,,,,00/00/1976,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,Muhammad,,,,,,,,,00/00/1977,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,Muhammad,,,,,,,,,00/00/1978,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,Muhammad,,,,,,,,,00/00/1979,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,Muhammad,,,,,,,,,00/00/1980,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ALJAWLANI,Abu,Muhammad,,,,,,,,00/00/1975,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ALJAWLANI,Abu,Muhammad,,,,,,,,00/00/1976,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ALJAWLANI,Abu,Muhammad,,,,,,,,00/00/1977,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ALJAWLANI,Abu,Muhammad,,,,,,,,00/00/1978,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ALJAWLANI,Abu,Muhammad,,,,,,,,00/00/1979,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ALJAWLANI,Abu,Muhammad,,,,,,,,00/00/1980,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,ABU MOHAMMED,,,,,,أبو محمد الجولاني,,,00/00/1975,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,ABU MOHAMMED,,,,,,أبو محمد الجولاني,,,00/00/1976,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,ABU MOHAMMED,,,,,,أبو محمد الجولاني,,,00/00/1977,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,ABU MOHAMMED,,,,,,أبو محمد الجولاني,,,00/00/1978,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,ABU MOHAMMED,,,,,,أبو محمد الجولاني,,,00/00/1979,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAWLANI,ABU MOHAMMED,,,,,,أبو محمد الجولاني,,,00/00/1980,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JAZAERI,Hammam,,,,,,,,,00/00/1977,,,,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,"(UK Sanctions List Ref):SYR0090 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade in power after May 2011. As a former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13148 +AL-JAZAERI,Houmam,,,,,,,,,00/00/1977,,,,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,"(UK Sanctions List Ref):SYR0090 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade in power after May 2011. As a former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13148 +AL-JAZAERI,Humam,,,,,,,,,00/00/1977,,,,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,"(UK Sanctions List Ref):SYR0090 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade in power after May 2011. As a former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13148 +AL-JAZAIRI,Abdallah,,,,,,,,,25/06/1964,Oran,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0299 (UN Ref):QDi.323 A veteran member of the ‘Chechen Network’ (not listed) and other terrorist groups. He was convicted of his role and membership in the ‘Chechen Network’ in France in 2006. Joined Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137) in October 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13089 +AL-JAZAIRI,Abdallah,,,,,,,,,05/12/1965,Oran,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0299 (UN Ref):QDi.323 A veteran member of the ‘Chechen Network’ (not listed) and other terrorist groups. He was convicted of his role and membership in the ‘Chechen Network’ in France in 2006. Joined Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137) in October 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13089 +AL-JAZAIRI,Hammam,,,,,,,,,00/00/1977,,,,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,"(UK Sanctions List Ref):SYR0090 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade in power after May 2011. As a former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13148 +AL-JAZAIRI,Houmam,,,,,,,,,00/00/1977,,,,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,"(UK Sanctions List Ref):SYR0090 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade in power after May 2011. As a former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13148 +AL-JAZAIRI,Humam,,,,,,,,,00/00/1977,,,,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,"(UK Sanctions List Ref):SYR0090 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade in power after May 2011. As a former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13148 +AL-JAZARI,Yasir,,,,,,,,,13/02/1970,"Rouiba, Algiers",Algeria,(1) Algeria. (2) Palestine,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0158 (UN Ref):QDi.058 Finance chief of the Afghan Support Committee (ASC) (QDe.069). Al-Qaida (QDe.004) facilitator and communication expert. Believed to be in Algeria as at Apr. 2010. Son of Mohamed and Fatma Aribi. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6104674 (Gender):Male,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6998 +"AL-JAZEERAH GENERAL TRANSPORT COMPANY, PETROLEUM DERIVATIVES AND OIL SERVICES",,,,,,,,,,,,,,,,,,,,Shaheen Building,2nd Floor,Sami el Solh,,Beirut,,Lebanon,"(UK Sanctions List Ref):SYR0297 (UK Statement of Reasons):Owned or controlled by the designated person Ayman Jabir. (Type of entity):Private, Transport, Oil and Petroleum",Entity,AKA,,Syria,23/07/2014,31/12/2020,31/12/2020,13034 +AL-JAZIRI,Abu,Bakr,,,,,,,,13/02/1970,"Rouiba, Algiers",Algeria,(1) Algeria. (2) Palestine,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0158 (UN Ref):QDi.058 Finance chief of the Afghan Support Committee (ASC) (QDe.069). Al-Qaida (QDe.004) facilitator and communication expert. Believed to be in Algeria as at Apr. 2010. Son of Mohamed and Fatma Aribi. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6104674 (Gender):Male,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6998 +AL-JAZIRI,Abou,Yasser,,,,,,,,13/02/1970,"Rouiba, Algiers",Algeria,(1) Algeria. (2) Palestine,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0158 (UN Ref):QDi.058 Finance chief of the Afghan Support Committee (ASC) (QDe.069). Al-Qaida (QDe.004) facilitator and communication expert. Believed to be in Algeria as at Apr. 2010. Son of Mohamed and Fatma Aribi. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6104674 (Gender):Male,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6998 +AL-JEDDAWI,Abu-Rayhanah,al-'Ansari,,,,,,,,04/01/1973,Jeddah,Saudi Arabia,Yemen,01055336,Yemen,2054275397,"Saudi Arabia alien registration number, issued on 22 Jul. 1998.",,,,,,,,,,"(UK Sanctions List Ref):AQD0257 (UN Ref):QDi.369 Financial and foreign fighter facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Member of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) since at least Jun. 2014. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13294 +ALJEITHNI,Hussein,Mohammed,Hussein,,,,,,,03/05/1977,"Nuseirat Refugee Camp, Gaza Strip",Palestinian Territories,Palestinian,0363464,Issued by Palestinian Authority.,,,,,,,,,Gaza Strip,,Palestinian Territories,"(UK Sanctions List Ref):AQD0196 (UN Ref):QDi.394 Link between Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), leader Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299), and armed groups in Gaza. Was using money to build an ISIL presence in Gaza. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5943053",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,12/01/2022,13353 +AL-JIBURI,Muyassir,,,,,,,,,01/06/1976,"(1) Al-Shura, Mosul (2) Harara, Ninawa",(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0228 (UN Ref):QDi.337 Sharia amir of Al-Nusrah Front for the People of the Levant (QDe.137) as of early 2014. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13134 +AL-JIHAD,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0041 (UN Ref):QDe.003 Co-founded by Aiman Muhammed Rabi al-Zawahiri (QDi.006), who was also its military leader. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282058",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7000 +AL-JILILATI,Mohamed,,,,,,,,,00/00/1945,Damascus,Syria,Syria,,,,,Former Minister for Finance,,,,,,,,,"(UK Sanctions List Ref):SYR0162 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011; participated in, benefited from, or otherwise supported the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,02/12/2011,31/12/2020,31/12/2020,12412 +AL-JILILATI,Mohammad,,,,,,,,,00/00/1945,Damascus,Syria,Syria,,,,,Former Minister for Finance,,,,,,,,,"(UK Sanctions List Ref):SYR0162 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011; participated in, benefited from, or otherwise supported the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,02/12/2011,31/12/2020,31/12/2020,12412 +AL-JILILATI,Mohammed,,,,,,,,,00/00/1945,Damascus,Syria,Syria,,,,,Former Minister for Finance,,,,,,,,,"(UK Sanctions List Ref):SYR0162 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011; participated in, benefited from, or otherwise supported the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,02/12/2011,31/12/2020,31/12/2020,12412 +AL-JILILATI,Muhammad,,,,,,,,,00/00/1945,Damascus,Syria,Syria,,,,,Former Minister for Finance,,,,,,,,,"(UK Sanctions List Ref):SYR0162 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011; participated in, benefited from, or otherwise supported the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,02/12/2011,31/12/2020,31/12/2020,12412 +AL-JIZRAWI,TAHA,YASSIN,RAMADAN,,,,طه ياسين رمضان الجزراوي,,,00/00/1938,Mosul,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0081 (UN Ref):IQi.020,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7582 +AL-JLEILATI,Mohamed,,,,,,,,,00/00/1945,Damascus,Syria,Syria,,,,,Former Minister for Finance,,,,,,,,,"(UK Sanctions List Ref):SYR0162 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011; participated in, benefited from, or otherwise supported the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,02/12/2011,31/12/2020,31/12/2020,12412 +AL-JLEILATI,Mohammad,,,,,,,,,00/00/1945,Damascus,Syria,Syria,,,,,Former Minister for Finance,,,,,,,,,"(UK Sanctions List Ref):SYR0162 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011; participated in, benefited from, or otherwise supported the Syrian regime. (Gender):Male",Individual,Primary name,,Syria,02/12/2011,31/12/2020,31/12/2020,12412 +AL-JLEILATI,Mohammed,,,,,,,,,00/00/1945,Damascus,Syria,Syria,,,,,Former Minister for Finance,,,,,,,,,"(UK Sanctions List Ref):SYR0162 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011; participated in, benefited from, or otherwise supported the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,02/12/2011,31/12/2020,31/12/2020,12412 +AL-JLEILATI,Muhammad,,,,,,,,,00/00/1945,Damascus,Syria,Syria,,,,,Former Minister for Finance,,,,,,,,,"(UK Sanctions List Ref):SYR0162 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011; participated in, benefited from, or otherwise supported the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,02/12/2011,31/12/2020,31/12/2020,12412 +AL-JUAITNI,Abu,Muath,,,,,,,,03/05/1977,"Nuseirat Refugee Camp, Gaza Strip",Palestinian Territories,Palestinian,0363464,Issued by Palestinian Authority.,,,,,,,,,Gaza Strip,,Palestinian Territories,"(UK Sanctions List Ref):AQD0196 (UN Ref):QDi.394 Link between Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), leader Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299), and armed groups in Gaza. Was using money to build an ISIL presence in Gaza. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5943053",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,12/01/2022,13353 +AL-JUAYTHINI,Husayn,Muhamad,Husayn,,,,,,,03/05/1977,"Nuseirat Refugee Camp, Gaza Strip",Palestinian Territories,Palestinian,0363464,Issued by Palestinian Authority.,,,,,,,,,Gaza Strip,,Palestinian Territories,"(UK Sanctions List Ref):AQD0196 (UN Ref):QDi.394 Link between Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), leader Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299), and armed groups in Gaza. Was using money to build an ISIL presence in Gaza. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5943053",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,12/01/2022,13353 +AL-JUAYTHINI,Husayn,Muhammad,,,,,,,,03/05/1977,"Nuseirat Refugee Camp, Gaza Strip",Palestinian Territories,Palestinian,0363464,Issued by Palestinian Authority.,,,,,,,,,Gaza Strip,,Palestinian Territories,"(UK Sanctions List Ref):AQD0196 (UN Ref):QDi.394 Link between Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), leader Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299), and armed groups in Gaza. Was using money to build an ISIL presence in Gaza. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5943053",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,12/01/2022,13353 +AL-JUAYTHINI,Husayn,Muhammad,Husayn,,,,,,,03/05/1977,"Nuseirat Refugee Camp, Gaza Strip",Palestinian Territories,Palestinian,0363464,Issued by Palestinian Authority.,,,,,,,,,Gaza Strip,,Palestinian Territories,"(UK Sanctions List Ref):AQD0196 (UN Ref):QDi.394 Link between Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), leader Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299), and armed groups in Gaza. Was using money to build an ISIL presence in Gaza. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5943053",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,12/01/2022,13353 +AL-JUBURI,MAYSAR ALI,MUSA,ABDALLAH,,,Amir,,,,01/06/1976,"(1) Al-Shura, Mosul (2) Harara, Ninawa",(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0228 (UN Ref):QDi.337 Sharia amir of Al-Nusrah Front for the People of the Levant (QDe.137) as of early 2014. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13134 +AL-JUHANI,Abd al-Rahman,Muhammad,,,,,,,,04/12/1971,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-JUHANI,Abd al-Rahman,Muhammad,,,,,,,,00/00/1977,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-JUHANI,Abd Al-Rahman,Muhammad Zafir,al-Dubaysi,,,,,,,04/12/1971,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-JUHANI,Abd Al-Rahman,Muhammad Zafir,al-Dubaysi,,,,,,,00/00/1977,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-JUHNI,Abd Al-Rahman,Muhammad Zafir,Al-Dubaysi,,,,,,,04/12/1971,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-JUHNI,Abd Al-Rahman,Muhammad Zafir,Al-Dubaysi,,,,,,,00/00/1977,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-JULANI,Abu,Mohammed,,,,,,,,00/00/1975,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JULANI,Abu,Mohammed,,,,,,,,00/00/1976,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JULANI,Abu,Mohammed,,,,,,,,00/00/1977,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JULANI,Abu,Mohammed,,,,,,,,00/00/1978,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JULANI,Abu,Mohammed,,,,,,,,00/00/1979,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-JULANI,Abu,Mohammed,,,,,,,,00/00/1980,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-KA'BI,Sa'd,al-Sharyan,,,,,,,,15/02/1972,,,Qatar,00966737,Qatar number. Expired 16 Feb. 2016.,27263401275,Qatar number,,,,,,,Umm Salal,,Qatar,"(UK Sanctions List Ref):AQD0298 (UN Ref):QDi.382 Qatar-based facilitator who provides financial services to, or in support of, Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896810",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,24/03/2021,13280 +AL-KA'BI,Sa'd,bin Sa'd,Muhammad Shiryan,,,,,,,15/02/1972,,,Qatar,00966737,Qatar number. Expired 16 Feb. 2016.,27263401275,Qatar number,,,,,,,Umm Salal,,Qatar,"(UK Sanctions List Ref):AQD0298 (UN Ref):QDi.382 Qatar-based facilitator who provides financial services to, or in support of, Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896810",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,24/03/2021,13280 +AL-KA'BI,Sa'd,Sa'd,Muhammad Shiryan,,,,,,,15/02/1972,,,Qatar,00966737,Qatar number. Expired 16 Feb. 2016.,27263401275,Qatar number,,,,,,,Umm Salal,,Qatar,"(UK Sanctions List Ref):AQD0298 (UN Ref):QDi.382 Qatar-based facilitator who provides financial services to, or in support of, Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896810",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,24/03/2021,13280 +AL-KA'BI,SA'D,BIN SA'D,MUHAMMAD SHARIYAN,,,,سعد بن سعد محمد شریان الكعبي,,,15/02/1972,,,Qatar,00966737,Qatar number. Expired 16 Feb. 2016.,27263401275,Qatar number,,,,,,,Umm Salal,,Qatar,"(UK Sanctions List Ref):AQD0298 (UN Ref):QDi.382 Qatar-based facilitator who provides financial services to, or in support of, Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896810",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,24/03/2021,13280 +AL-KADARI,Abu,Muhammad,,,,,Абу Мухаммад Аль-Кадари,,,09/03/1981,"Iki-Burul Village, Iki-Burulskiy District, Republic of Kalmykia",Russia,Russia,8208 No. 555627,"(Russian). Issued by Leninskiy Office, Directorate of the Federal Migration Service of the Russian Federation for the Republic of Dagestan.",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0297 (UN Ref):QDi.398 Led a group of over 160 terrorist fighters, which operates in the Republics of Dagestan, Chechnya and Ingushetia, Russian Federation. Killed on 3 December 2016 in Makhachkala, the Republic of Dagestan, Russian Federation. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5993047 (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,16/12/2016,12/12/2016,12/01/2022,13440 +AL-KADIRI,Rima,,,,,,,,,00/00/1963,Damascus,Syria,Syria,,,,,Former Minister of Social Affairs and Labour,,,,,,,,,"(UK Sanctions List Ref):SYR0207 (UK Statement of Reasons):Former Minister for Social Affairs (August 2015-August 2021). As Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Female",Individual,AKA,,Syria,14/11/2016,31/12/2020,13/05/2022,13412 +AL-KAFI,Abu,'Ubaydah,,,,,,,,05/10/1991,"El Gouazine, Dahmani, Governorate of Le Kef",Tunisia,Tunisia,,,13601334,Tunisia,,,,,,,,,,"(UK Sanctions List Ref):AQD0375 (UN Ref):QDi.432 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115).  Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/01/2022,29/12/2021,14/04/2022,14170 +AL-KANI MILITIA,,,,,,,,,,,,,,,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0074 (UK Statement of Reasons):The al-Kaniyat milita is designated on the basis that there are reasonable grounds to suspect that the militia has committed serious human rights abuses and committed violations of international humanitarian law. There are reasonable grounds to suspect that the al-Kaniyat militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tahouna. There are reasonable grounds to suspect that the militia has been involved in activities that threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country.",Entity,AKA,,Libya,13/05/2021,07/05/2021,13/05/2021,14107 +AL-KANIYAT,,,,,,,,,,,,,,,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0074 (UK Statement of Reasons):The al-Kaniyat milita is designated on the basis that there are reasonable grounds to suspect that the militia has committed serious human rights abuses and committed violations of international humanitarian law. There are reasonable grounds to suspect that the al-Kaniyat militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tahouna. There are reasonable grounds to suspect that the militia has been involved in activities that threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country.",Entity,Primary name,,Libya,13/05/2021,07/05/2021,13/05/2021,14107 +AL-KASHIF,Muhammad,Jamal,Abd-Al Rahim,,,,,,,01/01/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +AL-KASHIF,Muhammad,Jamal,Abd-Al Rahim,,,,,,,01/02/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +AL-KASHIF,Muhammad,Jamal,Abdo,,,,,,,01/01/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +AL-KASHIF,Muhammad,Jamal,Abdo,,,,,,,01/02/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +AL-KASHIF,MUHAMMAD,JAMAL,Abd-Al Rahim Ahmad,,,,محمد جمال عبدالرحيم أحمد الكاشف,,,01/01/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +AL-KASHIF,MUHAMMAD,JAMAL,Abd-Al Rahim Ahmad,,,,محمد جمال عبدالرحيم أحمد الكاشف,,,01/02/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +AL-KATAN,Anouar,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-KATAN,Waseem,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-KATAN,Wasim,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-KATAN,Wasseem,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-KATAN,Wassim,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-KATERJI,Hossam,Ahmed,,,,,,,,00/00/1982,Raqqa,Syria,Syria,,,,,CEO of Katerji Group (a.k.a. al-Qatirji Company/Qatirji Company/Khatirji Group/Katerji International Group),,,,,,,,,"(UK Sanctions List Ref):SYR0262 (UK Statement of Reasons):Leading businessperson operating in Syria, who is also a Member of Parliament for Aleppo. Al-Qatirji supports and benefits from the regime through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13758 +AL-KATERJI,Hossam,Mohammed,,,,,,,,00/00/1982,Raqqa,Syria,Syria,,,,,CEO of Katerji Group (a.k.a. al-Qatirji Company/Qatirji Company/Khatirji Group/Katerji International Group),,,,,,,,,"(UK Sanctions List Ref):SYR0262 (UK Statement of Reasons):Leading businessperson operating in Syria, who is also a Member of Parliament for Aleppo. Al-Qatirji supports and benefits from the regime through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13758 +AL-KATERJI,Hossam,Muhammad,,,,,,,,00/00/1982,Raqqa,Syria,Syria,,,,,CEO of Katerji Group (a.k.a. al-Qatirji Company/Qatirji Company/Khatirji Group/Katerji International Group),,,,,,,,,"(UK Sanctions List Ref):SYR0262 (UK Statement of Reasons):Leading businessperson operating in Syria, who is also a Member of Parliament for Aleppo. Al-Qatirji supports and benefits from the regime through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13758 +AL-KATERJI,Hussam,,,,,,,,,00/00/1982,Raqqa,Syria,Syria,,,,,CEO of Katerji Group (a.k.a. al-Qatirji Company/Qatirji Company/Khatirji Group/Katerji International Group),,,,,,,,,"(UK Sanctions List Ref):SYR0262 (UK Statement of Reasons):Leading businessperson operating in Syria, who is also a Member of Parliament for Aleppo. Al-Qatirji supports and benefits from the regime through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13758 +AL-KATERJI,Hussam,Ahmed,,,,,,,,00/00/1982,Raqqa,Syria,Syria,,,,,CEO of Katerji Group (a.k.a. al-Qatirji Company/Qatirji Company/Khatirji Group/Katerji International Group),,,,,,,,,"(UK Sanctions List Ref):SYR0262 (UK Statement of Reasons):Leading businessperson operating in Syria, who is also a Member of Parliament for Aleppo. Al-Qatirji supports and benefits from the regime through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13758 +AL-KATERJI,Hussam,Mohammed,,,,,,,,00/00/1982,Raqqa,Syria,Syria,,,,,CEO of Katerji Group (a.k.a. al-Qatirji Company/Qatirji Company/Khatirji Group/Katerji International Group),,,,,,,,,"(UK Sanctions List Ref):SYR0262 (UK Statement of Reasons):Leading businessperson operating in Syria, who is also a Member of Parliament for Aleppo. Al-Qatirji supports and benefits from the regime through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13758 +AL-KATERJI,Hussam,Muhammad,,,,,,,,00/00/1982,Raqqa,Syria,Syria,,,,,CEO of Katerji Group (a.k.a. al-Qatirji Company/Qatirji Company/Khatirji Group/Katerji International Group),,,,,,,,,"(UK Sanctions List Ref):SYR0262 (UK Statement of Reasons):Leading businessperson operating in Syria, who is also a Member of Parliament for Aleppo. Al-Qatirji supports and benefits from the regime through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13758 +AL-KATTAN,Anouar,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-KATTAN,Waseem,,,,,,وسيم أنوار القطان,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-KATTAN,Wasim,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-KATTAN,Wasseem,,,,,,وسيم قطان,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-KATTAN,Wassim,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-KAWARI,Abd-al-Latif,Abdallah,,,,,,,,28/09/1973,,,Qatar,(1) 01020802 (2) 00754833 (3) 00490327 (4) 01538029,(1) Qatar. (2) Qatar. Issued on 20 May 2007. (3) Qatar. Issued on 28 July 2001. (4) Qatar. Expires 14 March 2025,27363400684,Qatar,,,,,,,Al Kharaitiyat,,Qatar,"(UK Sanctions List Ref):AQD0091 (UN Ref):QDi.380 Qatar-based facilitator who provides financial services to, or in support of, Al-Qaida (QDe.004). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896805",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,24/03/2021,13278 +AL-KAWARI,Abd-al-Latif,Abdallah,Salih,,,,,,,28/09/1973,,,Qatar,(1) 01020802 (2) 00754833 (3) 00490327 (4) 01538029,(1) Qatar. (2) Qatar. Issued on 20 May 2007. (3) Qatar. Issued on 28 July 2001. (4) Qatar. Expires 14 March 2025,27363400684,Qatar,,,,,,,Al Kharaitiyat,,Qatar,"(UK Sanctions List Ref):AQD0091 (UN Ref):QDi.380 Qatar-based facilitator who provides financial services to, or in support of, Al-Qaida (QDe.004). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896805",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,24/03/2021,13278 +AL-KAWARI,Abu,Ali,,,,,,,,28/09/1973,,,Qatar,(1) 01020802 (2) 00754833 (3) 00490327 (4) 01538029,(1) Qatar. (2) Qatar. Issued on 20 May 2007. (3) Qatar. Issued on 28 July 2001. (4) Qatar. Expires 14 March 2025,27363400684,Qatar,,,,,,,Al Kharaitiyat,,Qatar,"(UK Sanctions List Ref):AQD0091 (UN Ref):QDi.380 Qatar-based facilitator who provides financial services to, or in support of, Al-Qaida (QDe.004). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896805",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,24/03/2021,13278 +AL-KAWARI,ABD AL-LATIF,BIN ABDALLAH,SALIH MUHAMMAD,,,,عبداللطیف بن عبدلله صالح محمد الكواري,,,28/09/1973,,,Qatar,(1) 01020802 (2) 00754833 (3) 00490327 (4) 01538029,(1) Qatar. (2) Qatar. Issued on 20 May 2007. (3) Qatar. Issued on 28 July 2001. (4) Qatar. Expires 14 March 2025,27363400684,Qatar,,,,,,,Al Kharaitiyat,,Qatar,"(UK Sanctions List Ref):AQD0091 (UN Ref):QDi.380 Qatar-based facilitator who provides financial services to, or in support of, Al-Qaida (QDe.004). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896805",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,24/03/2021,13278 +AL-KAWTHAR HAWALA,,,,,,,,,,,,,,,,,,,,,,,Al-Qaim,Al Ambar Province,,Iraq,"(UK Sanctions List Ref):AQD0025 (UN Ref):QDe.157 Money exchange business and owned by Umar Mahmud Irhayyim al-Kubaysi (QDi.412) as of mid-2016. Facilitated financial transactions on behalf of companies associated with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Established in 2000 under License number 202, issued on 17 May 2000, and since withdrawn. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6202735",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13617 +AL-KAWTHAR MONEY EXCHANGE,,,,,,,شركة الكوثر للتوسط ببيع وشراء العملات الأجنبية,,,,,,,,,,,,,,,,Al-Qaim,Al Ambar Province,,Iraq,"(UK Sanctions List Ref):AQD0025 (UN Ref):QDe.157 Money exchange business and owned by Umar Mahmud Irhayyim al-Kubaysi (QDi.412) as of mid-2016. Facilitated financial transactions on behalf of companies associated with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Established in 2000 under License number 202, issued on 17 May 2000, and since withdrawn. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6202735",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13617 +AL-KAWWARI,Abd-al-Latif,Abdallah,,,,,,,,28/09/1973,,,Qatar,(1) 01020802 (2) 00754833 (3) 00490327 (4) 01538029,(1) Qatar. (2) Qatar. Issued on 20 May 2007. (3) Qatar. Issued on 28 July 2001. (4) Qatar. Expires 14 March 2025,27363400684,Qatar,,,,,,,Al Kharaitiyat,,Qatar,"(UK Sanctions List Ref):AQD0091 (UN Ref):QDi.380 Qatar-based facilitator who provides financial services to, or in support of, Al-Qaida (QDe.004). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896805",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,24/03/2021,13278 +AL-KHAFAJI,MUHSIN,KHADR,,,,,محسن خضر الخفاجي,,,,,,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0109 (UN Ref):IQi.048,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7583 +AL-KHALIL,Samer,Abdelrahman,,,,,,,,,,,Syria,,,,,Economy and Foreign Trade Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0148 (UK Statement of Reasons):Minister of Economy and Foreign Trade appointed in March 2017, and formerly Assistant Minister from 2015 and Director General of the General Establishment for Exhibitions and International Markets. As such, there are reasonable grounds to suspect that Samer Abdelrahman al-Khalil is or has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name,,Syria,07/06/2017,31/12/2020,13/05/2022,13469 +AL-KHATAB,Abu,Baker,,,,,,,,00/00/1977,Binnish,Syria,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0113 (UN Ref):QDi.325 Official spokesman of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and emir of ISIL in Syria, closely associated with Abu Mohammed al-Jawlani (QDi.317) and Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809950",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13086 +AL-KHATIB,Iyad,Mohammad,,,,,,,,00/00/1974,Damascus,Syria,Syria,,,,,Minister of Communications and Technology,,,,,,,,,"(UK Sanctions List Ref):SYR0345 Relatives/business associates or partners/links to listed individuals: Bashar Asad (UK Statement of Reasons):Minister of Communications and Technology. Appointed in November 2018. As Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,04/03/2019,31/12/2020,31/12/2020,13776 +AL-KHATTAB,Ibn,,,,,,,,,00/00/1984,,Iraq,Jordan,(1) K048787 (2) 486298,(1) Issued in Jordan (2) Issued in Jordan,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0149 (UN Ref):QDi.343 A member of Al-Qaida (QDe.004) as of 2012 and a fighter in the Syrian Arab Republic since early 2014. Provided financial, material, and technological support for Al-Qaida, Al-Nusrah Front for the People of the Levant (QDe.137) and Al-Qaida in Iraq (AQI) (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843240. Address country Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,24/03/2021,13194 +AL-KHAYAT,Samir,Ahmed,,,,,,,,07/04/1986,Damascus,Syria,Syria,00351762055,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0139 (UN Ref):QDi.336 Administrative amir of Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818211,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13133 +AL-KHOZMRI,Ahmed,Abdullah,Saleh,al-Zahrani,,,,,,15/09/1978,Dammam,Saudi Arabia,Saudi Arabia,E126785,"Saudi Arabia number, issued on 27 May 2002. Expired on 3 Apr. 2007.",,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0123 (UN Ref):QDi.329 Senior member of Al-Qaida (QDe.004). Wanted by the Saudi Arabian Government for terrorism. Father's name is Abdullah Saleh al Zahrani. Physical description: eye colour: dark; hair colour: dark; complexion: olive. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13126 +AL-KHUWAYT,Taha,,,,,,,,,00/00/1965,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +AL-KHUWAYT,Taha,,,,,,,,,00/00/1966,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +AL-KHUWAYT,Taha,,,,,,,,,00/00/1967,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +AL-KHUWAYT,Taha,,,,,,,,,00/00/1968,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +AL-KHUWAYT,Taha,,,,,,,,,00/00/1969,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +AL-KIMAWI,,,,,,,,,,00/00/1943,"al-Awja, near Tikrit",Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0066 (UN Ref):IQi.005,Individual,AKA,Low quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7584 +AL-KINI,Haythem,,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AL-KINI,Haythem,,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AL-KINI,Haythem,,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AL-KINI,Haythem,,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +AL-KOBAISI,Omar,Mahmood,Irhayyim,Al-Fayyadh,,,,,,16/06/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +AL-KOBAISI,Omar,Mahmood,Irhayyim,Al-Fayyadh,,,,,,01/01/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +AL-KOUATLY,Raeef,,,,,,,,,03/02/1967,Damascus,Syria,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0202 (UK Statement of Reasons):Business associate of Maher Al-Asad and responsible for managing some of his business interests; provides funding to the regime. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,14/02/2022,12016 +AL-KOUATLY,Raif,,,,,,,,,03/02/1967,Damascus,Syria,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0202 (UK Statement of Reasons):Business associate of Maher Al-Asad and responsible for managing some of his business interests; provides funding to the regime. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,14/02/2022,12016 +AL-KOUATLY,Ra'if,,,,,,,,,03/02/1967,Damascus,Syria,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0202 (UK Statement of Reasons):Business associate of Maher Al-Asad and responsible for managing some of his business interests; provides funding to the regime. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,14/02/2022,12016 +AL-KOUATLY,Ri'af,,,,,,,,,03/02/1967,Damascus,Syria,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0202 (UK Statement of Reasons):Business associate of Maher Al-Asad and responsible for managing some of his business interests; provides funding to the regime. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,14/02/2022,12016 +AL-KUBAISI,Muneer,,,,,,,,,00/00/1966,Heet,Iraq,Iraq,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):IRQ0135 (UN Ref):IQi.074,Individual,AKA,Good quality,Iraq,05/05/2004,26/04/2004,31/12/2020,8278 +AL-KUBAYSI,Umar,,,,,,,,,16/06/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +AL-KUBAYSI,Umar,,,,,,,,,01/01/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +AL-KUBAYSI,Umar,Mahmud,Rahim,,,,,,,16/06/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +AL-KUBAYSI,Umar,Mahmud,Rahim,,,,,,,01/01/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +AL-KUBAYSI,Munir,,,,,,,,,00/00/1966,Heet,Iraq,Iraq,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):IRQ0135 (UN Ref):IQi.074,Individual,AKA,Good quality,Iraq,05/05/2004,26/04/2004,31/12/2020,8278 +AL-KUBAYSI,UMAR,MAHMUD,IRHAYYIM,,,,عمر محمود إرحيم الفياض الكبيسي,,,16/06/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +AL-KUBAYSI,UMAR,MAHMUD,IRHAYYIM,,,,عمر محمود إرحيم الفياض الكبيسي,,,01/01/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +AL-KUWAITI,Abu,Uqlah,,,,,,,,31/01/1984,,,Kuwait,155454275,,284013101406,,,,,,,,,,,"(UK Sanctions List Ref):AQD0187 (UN Ref):QDi.381 Kuwait-based facilitator who provides financial services to, or in support of, Al-Qaida (QDe.004) and Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896809",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,31/12/2020,13279 +AL-KUWARI,Abd-al-Latif,Abdallah,Salih,,,,,,,28/09/1973,,,Qatar,(1) 01020802 (2) 00754833 (3) 00490327 (4) 01538029,(1) Qatar. (2) Qatar. Issued on 20 May 2007. (3) Qatar. Issued on 28 July 2001. (4) Qatar. Expires 14 March 2025,27363400684,Qatar,,,,,,,Al Kharaitiyat,,Qatar,"(UK Sanctions List Ref):AQD0091 (UN Ref):QDi.380 Qatar-based facilitator who provides financial services to, or in support of, Al-Qaida (QDe.004). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896805",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,24/03/2021,13278 +ALLAH,Abd,,,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ALLAH,Abd,,,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ALLAH,Abd,,,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ALLAH,Abd,,,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ALLAH KARAM,Hossein,,,,,,,,,00/00/1945,Najafabad,Iran,,,,,,Head of Ansar-e Hezbollah Coordination Council.,,,,,,,,,"(UK Sanctions List Ref):IHR0039 (UK Statement of Reasons):Ansar-e Hezbollah Chief and Colonel in the IRGC. He co-founded Ansar-e Hezbollah. This paramilitary force was responsible for extreme violence during crackdown against students and universities in 1999, 2002 and 2009. He maintains his senior role in an organisation which is ready to commit human rights violations against the public, including promoting aggression against women for their choice of clothing. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11778 +ALLAH KARAM,Hussein,,,,,,,,,00/00/1945,Najafabad,Iran,,,,,,Head of Ansar-e Hezbollah Coordination Council.,,,,,,,,,"(UK Sanctions List Ref):IHR0039 (UK Statement of Reasons):Ansar-e Hezbollah Chief and Colonel in the IRGC. He co-founded Ansar-e Hezbollah. This paramilitary force was responsible for extreme violence during crackdown against students and universities in 1999, 2002 and 2009. He maintains his senior role in an organisation which is ready to commit human rights violations against the public, including promoting aggression against women for their choice of clothing. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11778 +ALLAH NOOR,Hamdullah,,,,,Maulavi,حمد الله الله نور,,,00/00/1973,"District Number 6, Kandahar City, Kandahar Province",Afghanistan,Afghanistan,,,4414,(Afghan) (tazkira),"Repatriation Attache, Taliban Consulate General, Quetta, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0111 (UN Ref):TAi.143 Believed to be in Afghanistan/Pakistan border area. Belongs to Baloch ethnic group. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. Additional title: Hafiz. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7157 +ALLAHDAD,,,,,,,,,,00/00/1953,"Kadani village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,(1) Minister of Urban Development under the Taliban regime (2) President of Central Bank (Da Afghanistan Bank) under the Taliban regime (3) Head of Ariana Afghan Airlines under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0021 (UN Ref):TAi.021 One foot lost in landmine explosion. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,6953 +ALLAHDAD,,,,,,,,,,00/00/1960,"Kadani village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,(1) Minister of Urban Development under the Taliban regime (2) President of Central Bank (Da Afghanistan Bank) under the Taliban regime (3) Head of Ariana Afghan Airlines under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0021 (UN Ref):TAi.021 One foot lost in landmine explosion. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,6953 +ALLAHKARAM,Hossein,,,,,,,,,00/00/1945,Najafabad,Iran,,,,,,Head of Ansar-e Hezbollah Coordination Council.,,,,,,,,,"(UK Sanctions List Ref):IHR0039 (UK Statement of Reasons):Ansar-e Hezbollah Chief and Colonel in the IRGC. He co-founded Ansar-e Hezbollah. This paramilitary force was responsible for extreme violence during crackdown against students and universities in 1999, 2002 and 2009. He maintains his senior role in an organisation which is ready to commit human rights violations against the public, including promoting aggression against women for their choice of clothing. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11778 +ALLAHKARAM,Hussein,,,,,,,,,00/00/1945,Najafabad,Iran,,,,,,Head of Ansar-e Hezbollah Coordination Council.,,,,,,,,,"(UK Sanctions List Ref):IHR0039 (UK Statement of Reasons):Ansar-e Hezbollah Chief and Colonel in the IRGC. He co-founded Ansar-e Hezbollah. This paramilitary force was responsible for extreme violence during crackdown against students and universities in 1999, 2002 and 2009. He maintains his senior role in an organisation which is ready to commit human rights violations against the public, including promoting aggression against women for their choice of clothing. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11778 +ALLAW,Sufian,,,,,,,,,00/00/1944,(1) al-Bukamal (2) Dier Ezzor,(1) Syria (2) Syria,Syria,,,,,Former Minister for Oil and Mineral Resources.,,,,,,,,,(UK Sanctions List Ref):SYR0222 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name,,Syria,28/02/2012,31/12/2020,14/02/2022,12507 +AL-LIBI,Abu,Habib,,,,,,,,00/00/1975,Derna,Libya,Libya,542858,,55252,,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0193 (UN Ref):QDi.385 Facilitator for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930734",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13318 +AL-LIBI,,,,,,,,,,02/02/1966,al Aziziyya,Libya,Libya,(1) 203037 (2) 347834(3) 434021161,(1) Libyan. Issued in Tripoli. (2) Libyan. Issued under name Ibrahim Ali Tantoush. Expired on 21 February 2014 (3) South African. Related to alias Abdel Ilah Sabri. Confiscated.,6910275240086,South African. Related to alias Abdel Ilah Sabri. Confiscated.,,,,,,,Tripoli,,Libya,"(UK Sanctions List Ref):AQD0197 (UN Ref):QDi.057 Associated with Afghan Support Committee (ASC) (QDe.069), Revival of Islamic Heritage Society (RIHS)(QDe.070) and the Libyan Islamic Fighting Group (LIFG) (QDe.011). Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446790. Tripoli as at Feb. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6927 +ALLIED DEMOCRATIC FORCES,,,,,,,,,,,,,,,,,,,,,,,,North Kivu Province,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0015 (UN Ref):CDe.001 ADF founder and leader, Jamil Mukulu (CDi.015), was arrested in Dar es Salaam, Tanzania in April 2015. He was subsequently extradited to Kampala, Uganda in July 2015. As of June 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial. Seka Baluku (CDi.036) succeeded Jamil Mukulu (CDi.015) as the overall leader of the ADF. As highlighted in several reports from the Group of Experts on the DRC (S/2015/19, S/2015/797, S/2016/1102, S/2017/672, S/2018/531, S/2019/469, S/2019/974, S/2020/482), the ADF, including under Seka Baluku’s leadership, continued to commit the repeated targeting, killing and maiming, rape and other sexual violence, abduction of civilians, including children, as well as attacks on villages and health facilities, in particular in Mamove, Beni territory, on 12 and 24 February 2019, and Mantumbi, Beni territory, on 5 December 2019 and 30 January 2020, as well as the continuous recruitment and use of children during attacks and for forced labour in Beni territory in the DRC since at least 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,Democratic Republic of the Congo,09/12/2014,30/06/2014,19/01/2021,13189 +AL-LOUBIRI,HABIB,BEN,AHMED,,,,حبيب بن احمد اللوبيري,,,17/11/1961,"Manzal Tmim, Nabul",Tunisia,Tunisia,M788439,Tunisian. Issued on 20 October 2001. Expired on 19 October 2006,(1) LBR HBB 61S17 Z352F (2) 01817002,(1) Italian fiscal code (2) -,,Salam Marnaq,Ben Arous district,Sidi Mesoud,,,,,Tunisia,(UK Sanctions List Ref):AQD0181 (UN Ref):QDi.177 In detention in Tunisia as at Dec. 2009. Mother’s name is Fatima al-Galasi. Review pursuant to Security Council resolution 1822 (2008) was concluded on 9 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,28/06/2004,23/06/2004,31/12/2020,8421 +ALL-RUSSIA STATE TELEVISION AND RADIO BROADCASTING COMPANY (VGTRK),,,,,,,Всероссийская государственная телевизионная и радиовещательная компания (ВГТРК),,,,,,,,,,,,5-Ya Yamskogo Polya Ulitsa,19-21,,,,Moscow,125124,Russia,"(UK Sanctions List Ref):RUS1418 (UK Statement of Reasons):The All-Russian State Television and Radio Broadcasting Company (VGTRK) is a Russian unitary state enterprise and broadcaster of federal and regional television and radio. As a wholly state-owned entity, VGTRK is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business as a Government of Russia-affiliated entity.",Entity,Primary name,,Russia,04/05/2022,04/05/2022,04/05/2022,15341 +ALL-RUSSIAN INSTITUTE OF AVIATION MATERIALS,,,,,,,,,,,,,,,,,,,17 Radio Street,,,,,Moscow,105005,Russia,(UK Sanctions List Ref):RUS1089 (UK Statement of Reasons):VSEROSSISKIY INSTITUT AVIATSIONNYKH MATERIALOV (VIAM) is the ‘All-Russian Scientific Research Institute of Aviation Materials’. VIAM is a federal state unitary enterprise and is directly owned by the Government of Russia. VIAM therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business as a Government of Russia-affiliated entity. (Phone number):+7(499)261-86-77 (Website):https://viam.ru/ (Email address):admin@viam.ru (Type of entity):Federal state unitary enterprise,Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,14/06/2022,15032 +ALL-RUSSIAN PUBLIC ORGANIZATION SOCIETY FOR THE PROMOTION OF RUSSIAN HISTORICAL DEVELOPMENT TSARGRAD,,,,,,,ОБЩЕРОССИЙСКАЯ ОБЩЕСТВЕННАЯ ОРГАНИЗАЦИЯ ОБЩЕСТВО СОДЕЙСТВИЯ РУССКОМУ ИСТОРИЧЕСКОМУ РАЗВИТИЮ ЦАРЬГРАД,Cyrillic,Russian,,,,,,,,,,1s3 Partynniy pereulok,,,,,Moscow,115093,Russia,"(UK Sanctions List Ref):RUS1408 Established Date 01 Nov 2015 (UK Statement of Reasons):The ALL-RUSSIAN PUBLIC ORGANIZATION SOCIETY FOR THE PROMOTION OF RUSSIAN HISTORICAL DEVELOPMENT TSARGRAD is a political organisation controlled by Konstantin MALOFEEV. MALOFEEV (RUS0022) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. The ALL-RUSSIAN PUBLIC ORGANIZATION SOCIETY FOR THE PROMOTION OF RUSSIAN HISTORICAL DEVELOPMENT TSARGRAD is an involved person as it is owned or controlled directly or indirectly (within the meaning of regulation 7) by a person who is or has been so involved, namely Konstantin MALOFEEV. (Business Reg No):1167700052618 (Russia). Tax ID No. 7743141413 (Russia)",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15328 +AL-LUBIRI,Al-Habib,ben,Ahmad,ben,al-Tayib,,,,,17/11/1961,"Manzal Tmim, Nabul",Tunisia,Tunisia,M788439,Tunisian. Issued on 20 October 2001. Expired on 19 October 2006,(1) LBR HBB 61S17 Z352F (2) 01817002,(1) Italian fiscal code (2) -,,Salam Marnaq,Ben Arous district,Sidi Mesoud,,,,,Tunisia,(UK Sanctions List Ref):AQD0181 (UN Ref):QDi.177 In detention in Tunisia as at Dec. 2009. Mother’s name is Fatima al-Galasi. Review pursuant to Security Council resolution 1822 (2008) was concluded on 9 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,28/06/2004,23/06/2004,31/12/2020,8421 +AL-MAAROUFI,TAREK,BEN HABIB,BEN AL-TOUMI,,,,طارق بن الحبيب بن التومي المعروفي,,,23/11/1965,Ghardimaou,Tunisia,Tunisia,E590976,"issue date: 19/06/1987, expiry date: 18/06/1992",,,,Rue Leon Theodore No 107/1,1090 Jette,,,,Brussels,,Belgium,"(UK Sanctions List Ref):AQD0321 (UN Ref):QDi.074 Belgian nationality withdrawn on 26 Jan. 2009. In detention in Nivelles, Belgium, as of Oct. 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/09/2002,03/09/2002,31/12/2020,7255 +AL-MADANI,Ibrahim,,,,,,,,,11/04/1963,Monufia Governate,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0312 (UN Ref):QDi.001 Responsible for Usama bin Laden’s (deceased) security. Hair: Dark. Eyes: Dark. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681065 click here,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7424 +AL-MADANI,Ibrahim,,,,,,,,,11/04/1960,Monufia Governate,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0312 (UN Ref):QDi.001 Responsible for Usama bin Laden’s (deceased) security. Hair: Dark. Eyes: Dark. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681065 click here,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7424 +AL-MADANI,Mustafa,Mohammed,,,,,,,,08/12/1961,(1) Mecca. (2) Riyadh,(1) Saudi Arabia (2) Saudi Arabia,Saudi Arabia,P797794,,1011123229,,"Brigadier General, Intelligence Officer employed at the Royal Palace",,,,,,Jazan,,Saudi Arabia,"(UK Sanctions List Ref):GHR0031 (UK Statement of Reasons):Mustafa Mohammed Al Madani held the position of Brigadier General and Intelligence Officer in Saudi Arabia. He was present during the unlawful killing of Jamal Khashoggi in the Saudi Consulate in Istanbul on 2 October 2018, and played an active part of the 15 man team sent to Turkey by Saudi authorities, including through the concealment of evidence relating to the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13869 +AL-MADANI,Yusuf,,,,,,يوسف المداني,,,00/00/1977,"Muhatta Directorate, Hajjah Province",Yemen,Yemen,,,,,(1) Major General (2) Commander of the Houthi’s Fifth Military Region,,,,,,,,Yemen,"(UK Sanctions List Ref):YEM0008 (UN Ref):YEi.009 Al-Madani is listed for his involvement in and leadership of Houthi military campaigns that threaten the peace, security, and stability of Yemen thereby meeting the criteria for designation as laid out in Paragraph 17 of Resolution 2140 (2014). Al-Madani is a prominent leader of Houthi forces and is the commander of forces in Hudaydah, Hajjah, Al Mahwit, and Raymah, Yemen. As of 2021, Al-Madani was assigned to the offensive targeting Marib. Persistent Houthi repositioning and other violations of the ceasefire provisions of the Hudaydah Agreement have destabilized a city that serves as a critical thoroughfare for humanitarian and essential commercial commodities. Additionally, there are regular reports of Houthi attacks impacting civilians and civilian infrastructure in and around Hudaydah, further exacerbating the situation for Yemenis facing some of the highest levels of humanitarian need in the country. (Gender):Male",Individual,Primary name,,Yemen,10/11/2021,09/11/2021,09/12/2021,14144 +AL-MADINA TRUST,,,,,,,,,,,,,,,,,,,"302b-40, Good Earth Court",Opposite Pia Planitarium,Block 13a,Gulshan-I-Iqbal,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-MADINA TRUST,,,,,,,,,,,,,,,,,,,605 Landmark Plaza,11 Chundrigar Road,Opposite Jang Building,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-MADINA TRUST,,,,,,,,,,,,,,,,,,,617 Clifton Center,Block 5,6th Floor,Clifton,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-MADINA TRUST,,,,,,,,,,,,,,,,,,,Jamia Maajid,Sulalman Park,Melgium Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-MADINA TRUST,,,,,,,,,,,,,,,,,,,Jamia Masjid,Sulaiman Park,Begum Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-MADINA TRUST,,,,,,,,,,,,,,,,,,,Kitab Ghar,Darul Ifta Wal Irshad,Nazimabad No 4,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-MADINA TRUST,,,,,,,,,,,,,,,,,,,Kitas Ghar,Nazimabad 4,Dahgel-Iftah,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-MADINA TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Opposite Khyber Bank,Abbottabad Road,,,Mansehra,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-MADINA TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Rm No 3,Moti Plaza,Near Liaquat Bagh,Muree Road,Rawalpindi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-MADINA TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Top Floor,Dr. Dawa Khan Dental Clinic Surgeon,Main Baxae,Mingora,Swat,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-MADINA TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin ZR Brothers,Katcherry Road,Chowk Yadgaar,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-MAGHRIBI,Abu,Ismail,,,,,,,,26/02/1993,,Morocco,Morocco,UZ6430184,,CD595054,,,,,,,,,,Turkey,"(UK Sanctions List Ref):AQD0251 (UN Ref):QDi.383 Facilitator for travel of foreign terrorist fighters to join Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), in Syrian Arab Republic. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930723",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13316 +AL-MAGHRIBI,Rashid,,,,,,,,,30/12/1968,California,United States,(1) Jordan. (2) United States,,,(1) 548-91-5411 (2) 9681029476,(1) US social security (2) Jordanian,,,,,,,,,,"(UK Sanctions List Ref):AQD0291 (UN Ref):QDi.029 In custody in Jordan since 26 Feb. 2015 for recruitment and support to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Father’s name is Mohammad Hijazi. Mother’s name is Sakina. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1419275",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6974 +AL-MAHMOUDI,Baghdadi,,,,,,,,,00/00/1945,Zaouia,Libya,Libya,,,,,Former Prime Minister in Colonel Qadhafi’s Government,,,,,,,,,(UK Sanctions List Ref):LIB0019 (UK Statement of Reasons):Prime Minister of Colonel Qadhafi’s Government. Associated with the former regime of Muammar Qadhafi. (Gender):Male,Individual,Primary name,,Libya,22/03/2011,31/12/2020,31/12/2020,11699 +AL-MAJID,Rukan,Abdal-Ghaffur,Sulayman,,,,,,,00/00/1956,Tikrit,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0082 (UN Ref):IQi.021,Individual,AKA,Good quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7623 +AL-MAJID,Rukan,Razuqi,Abd al-Ghafur,,,,,,,00/00/1956,Tikrit,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0082 (UN Ref):IQi.021,Individual,AKA,Good quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7623 +AL-MAKKI,Abu,Asim,,,,,,,,19/11/1971,Medina,Saudi Arabia,Yemen,541939,"Issue date: 31/07/2000. Issued in Al-Hudaydah, Yemen, in the name of Muhammad Muhammad Abdullah Al-Ahdal",216040,Yemeni identity card number,,Jamal Street,Al-Dahima alley,,,,Al-Hudaydah,,Yemen,(UK Sanctions List Ref):AQD0242 (UN Ref):QDi.020 Responsible for the finances of Al-Qa’ida (QDe.004) in Yemen. Accused of involvement in the attack on the USS Cole in 2000. Arrested in Yemen in Nov. 2003. Sentenced to three years and one month of imprisonment by the specialized criminal court of first instance in Yemen. Released on 25 Dec. 2006 after the completion of his sentence. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6973 +AL-MAKY,Abu,Muslem,,,,,,,,12/04/1976,Al Baraka,Saudi Arabia,Saudi Arabia,C389664,,1024026187,,,,,,,,,,,(UK Sanctions List Ref):AQD0153 (UN Ref):QDi.330 Has ties to numerous senior Al-Qaida (QDe.004) leaders. Wanted by the Saudi Arabian Government for terrorism. Father's name is Abdullah Razeeq al Mouled al Sbhua. Physical description: eye colour: dark; hair colour: dark; complexion: dark. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13127 +AL-MAN,Saiyid,Abd,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0104 (UN Ref):QDi.018 Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010.Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019.INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423806,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6897 +AL-MANSUR,SALIM,MUSTAFA,MUHAMMAD,,,,سالم مصطفى محمد ال منصور,,,20/02/1962,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,17 Tamoz,,,,,"Mosul, previous address",,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +AL-MANSUR,SALIM,MUSTAFA,MUHAMMAD,,,,سالم مصطفى محمد ال منصور,,,20/02/1962,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,Tel Afar – Al-Saad,,,,,Mosul,,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +AL-MANSUR,SALIM,MUSTAFA,MUHAMMAD,,,,سالم مصطفى محمد ال منصور,,,00/00/1959,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,Tel Afar – Al-Saad,,,,,Mosul,,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +AL-MANSUR,SALIM,MUSTAFA,MUHAMMAD,,,,سالم مصطفى محمد ال منصور,,,00/00/1959,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,17 Tamoz,,,,,"Mosul, previous address",,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +AL-MARDINI,Mohamad,Amer,,,,,,,,00/00/1959,Damascus,Syria,Syria,,,,,Former Minister for Higher Education,,,,,,,,,(UK Sanctions List Ref):SYR0156 (UK Statement of Reasons):Mohamad Amer Mardini is a former government minister within the Assad regime appointed after May 2011. He shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,31/12/2020,13149 +AL-MARDINI,Mohamed,Amer,,,,,,,,00/00/1959,Damascus,Syria,Syria,,,,,Former Minister for Higher Education,,,,,,,,,(UK Sanctions List Ref):SYR0156 (UK Statement of Reasons):Mohamad Amer Mardini is a former government minister within the Assad regime appointed after May 2011. He shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,31/12/2020,13149 +AL-MARDINI,Mohammad,Amer,,,,,,,,00/00/1959,Damascus,Syria,Syria,,,,,Former Minister for Higher Education,,,,,,,,,(UK Sanctions List Ref):SYR0156 (UK Statement of Reasons):Mohamad Amer Mardini is a former government minister within the Assad regime appointed after May 2011. He shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,31/12/2020,13149 +AL-MASHHADANI,SAIF-AL-DIN,,,,,,سيف الدين المشهداني,,,00/00/1956,Baghdad,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0107 (UN Ref):IQi.046,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7585 +AL-MASLI,Abd-al-Hamid,Muhammad,Abd-al-Hamid,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,,,,,,Reportedly located in Waziristan,,,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +AL-MASLI,Abd-al-Hamid,Muhammad,Abd-al-Hamid,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,"Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan",,,,,,,Pakistan,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +AL-MASLI,ABD-AL-HAMID,,,,,,عبدالحميد المصلي,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,,,,,,Reportedly located in Waziristan,,,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +AL-MASLI,ABD-AL-HAMID,,,,,,عبدالحميد المصلي,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,"Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan",,,,,,,Pakistan,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +AL-MASRI,Abd,Al-Aziz,,,,,,,,18/04/1966,Beni-Suef,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0133 (UN Ref):QDi.196 Member of the Shura Council of Al-Qaida (QDe.004) and Egyptian Islamic Jihad (QDe.003). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8719 +AL-MASRI,Abu,Hamza,,,,,,,,15/04/1958,Alexandria,Egypt,United Kingdom,,,,,,,,,,,,,United States,(UK Sanctions List Ref):AQD0252 (UN Ref):QDi.067 Extradited from the United Kingdom to the United States of America on 5 Oct. 2012. Convicted on terrorism charges by a court in the United States of America in May 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,19/04/2002,24/04/2002,31/12/2020,6930 +AL-MASRI,Abu Mohamed,,,,,,,,,06/06/1963,Gharbia,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0109 (UN Ref):QDi.019 Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6917 +AL-MAULID AL-SUBHI,AZZAM,ABDULLAH,ZUREIK,,,,,,,12/04/1976,Al Baraka,Saudi Arabia,Saudi Arabia,C389664,,1024026187,,,,,,,,,,,(UK Sanctions List Ref):AQD0153 (UN Ref):QDi.330 Has ties to numerous senior Al-Qaida (QDe.004) leaders. Wanted by the Saudi Arabian Government for terrorism. Father's name is Abdullah Razeeq al Mouled al Sbhua. Physical description: eye colour: dark; hair colour: dark; complexion: dark. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13127 +AL-MAURITANI,,Younis,,,,,شيخ يونس الموريتاني,,,00/00/1981,,Saudi Arabia,Mauritania,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0093 (UN Ref):QDi.298 Pakistan-based senior Al-Qaida (QDe.004) leader also associated with The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Wanted by Mauritanian authorities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555823,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,28/09/2011,15/09/2011,31/12/2020,12148 +AL-MAURITANI,,Yunis,,,,,شيخ يونس الموريتاني,,,00/00/1981,,Saudi Arabia,Mauritania,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0093 (UN Ref):QDi.298 Pakistan-based senior Al-Qaida (QDe.004) leader also associated with The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Wanted by Mauritanian authorities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555823,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,28/09/2011,15/09/2011,31/12/2020,12148 +AL-MAURITANI,,Sheikh,Yunis,,,,شيخ يونس الموريتاني,,,00/00/1981,,Saudi Arabia,Mauritania,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0093 (UN Ref):QDi.298 Pakistan-based senior Al-Qaida (QDe.004) leader also associated with The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Wanted by Mauritanian authorities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555823,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,28/09/2011,15/09/2011,31/12/2020,12148 +AL-MAWLA,Muhammad,Sa'id,Abd-al-Rahman,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MAWLA,Muhammad,Sa'id,Abd-al-Rahman,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MAWLA,Muhammad,Sa'id,Abd-al-Rahman,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MAWLA,Muhammad,Sa'id,Abd-al-Rahman,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MAWLA,Muhammad,Sa'id,Abd-al-Rahman,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MAWLA,Muhammad,Sa'id,Abd-al-Rahman,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MAWLA,Muhammad,Sa'id,Abd-al-Rahman,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MAWLA,Muhammad,Sa'id,Abd-al-Rahman,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MAWLA,Muhammad,Sa'id,Abd-al-Rahman,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MAWLA,Amir,Muhammad,Sa'id,Abdal-Rahman (previously listed as),,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MAWLA,Amir,Muhammad,Sa'id,Abdal-Rahman (previously listed as),,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MAWLA,Amir,Muhammad,Sa'id,Abdal-Rahman (previously listed as),,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MAWLA,Amir,Muhammad,Sa'id,Abdal-Rahman (previously listed as),,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MAWLA,Amir,Muhammad,Sa'id,Abdal-Rahman (previously listed as),,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MAWLA,Amir,Muhammad,Sa'id,Abdal-Rahman (previously listed as),,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MAWLA,Amir,Muhammad,Sa'id,Abdal-Rahman (previously listed as),,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MAWLA,Amir,Muhammad,Sa'id,Abdal-Rahman (previously listed as),,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MAWLA,Amir,Muhammad,Sa'id,Abdal-Rahman (previously listed as),,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +ALMAZ-ANTEY AIR AND SPACE DEFENSE CORPORATION,,,,,,,Концерн ВКО ‘Алмаз — Антей’ Almaz-Antey OAO,,,,,,,,,,,,,,,,41 ul. Vereiskaya,Moscow,121471,Russia,"(UK Sanctions List Ref):RUS0178 (UK Statement of Reasons):Almaz-Antey is a Russian state-owned company. It manufactures anti-aircraft weaponry including surface-to-air missiles which it supplies to the Russian army. This weaponry is deployed in Crimea. Almaz-Antey has carried out business in Crimea. The Russian authorities have been providing heavy weaponry to separatists in Eastern Ukraine, contributing to the destabilization of Ukraine. These weapons are used by the separatists, including for shooting down airplanes (this has included MH17) . As a state-owned company making available resources which contribute to the undermining of the territorial integrity, sovereignty and independence of Ukraine, Almaz-Antey contributes to the destabilization of Ukraine. (Phone number):(1) (+495) 276 29 75 (2) (+495) 2762980 (Website):http://almaz-antey.ru/about/27/ (Email address):antey@almaz-antey.ru (Type of entity):Manufacturing and supplying anti-aircraft weapons (Parent company):Strela",Entity,Primary name,,Russia,31/07/2014,31/12/2020,16/09/2022,13076 +ALMAZ-ANTEY CORP,,,,,,,,,,,,,,,,,,,,,,,41 ul. Vereiskaya,Moscow,121471,Russia,"(UK Sanctions List Ref):RUS0178 (UK Statement of Reasons):Almaz-Antey is a Russian state-owned company. It manufactures anti-aircraft weaponry including surface-to-air missiles which it supplies to the Russian army. This weaponry is deployed in Crimea. Almaz-Antey has carried out business in Crimea. The Russian authorities have been providing heavy weaponry to separatists in Eastern Ukraine, contributing to the destabilization of Ukraine. These weapons are used by the separatists, including for shooting down airplanes (this has included MH17) . As a state-owned company making available resources which contribute to the undermining of the territorial integrity, sovereignty and independence of Ukraine, Almaz-Antey contributes to the destabilization of Ukraine. (Phone number):(1) (+495) 276 29 75 (2) (+495) 2762980 (Website):http://almaz-antey.ru/about/27/ (Email address):antey@almaz-antey.ru (Type of entity):Manufacturing and supplying anti-aircraft weapons (Parent company):Strela",Entity,AKA,,Russia,31/07/2014,31/12/2020,16/09/2022,13076 +ALMAZ-ANTEY DEFENSE CORPORATION,,,,,,,,,,,,,,,,,,,,,,,41 ul. Vereiskaya,Moscow,121471,Russia,"(UK Sanctions List Ref):RUS0178 (UK Statement of Reasons):Almaz-Antey is a Russian state-owned company. It manufactures anti-aircraft weaponry including surface-to-air missiles which it supplies to the Russian army. This weaponry is deployed in Crimea. Almaz-Antey has carried out business in Crimea. The Russian authorities have been providing heavy weaponry to separatists in Eastern Ukraine, contributing to the destabilization of Ukraine. These weapons are used by the separatists, including for shooting down airplanes (this has included MH17) . As a state-owned company making available resources which contribute to the undermining of the territorial integrity, sovereignty and independence of Ukraine, Almaz-Antey contributes to the destabilization of Ukraine. (Phone number):(1) (+495) 276 29 75 (2) (+495) 2762980 (Website):http://almaz-antey.ru/about/27/ (Email address):antey@almaz-antey.ru (Type of entity):Manufacturing and supplying anti-aircraft weapons (Parent company):Strela",Entity,AKA,,Russia,31/07/2014,31/12/2020,16/09/2022,13076 +ALMAZ-ANTEY JSC,,,,,,,,,,,,,,,,,,,,,,,41 ul. Vereiskaya,Moscow,121471,Russia,"(UK Sanctions List Ref):RUS0178 (UK Statement of Reasons):Almaz-Antey is a Russian state-owned company. It manufactures anti-aircraft weaponry including surface-to-air missiles which it supplies to the Russian army. This weaponry is deployed in Crimea. Almaz-Antey has carried out business in Crimea. The Russian authorities have been providing heavy weaponry to separatists in Eastern Ukraine, contributing to the destabilization of Ukraine. These weapons are used by the separatists, including for shooting down airplanes (this has included MH17) . As a state-owned company making available resources which contribute to the undermining of the territorial integrity, sovereignty and independence of Ukraine, Almaz-Antey contributes to the destabilization of Ukraine. (Phone number):(1) (+495) 276 29 75 (2) (+495) 2762980 (Website):http://almaz-antey.ru/about/27/ (Email address):antey@almaz-antey.ru (Type of entity):Manufacturing and supplying anti-aircraft weapons (Parent company):Strela",Entity,AKA,,Russia,31/07/2014,31/12/2020,16/09/2022,13076 +AL-MAZIDIH,AKRAM,TURKI,HISHAN,,,,أكرم تركي هاشم المزيده,,,00/00/1974,,,,,,0075258,Ration card no.,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +AL-MAZIDIH,AKRAM,TURKI,HISHAN,,,,أكرم تركي هاشم المزيده,,,00/00/1974,,,,,,0075258,Ration card no.,,,,,,,Deir ez-Zor Governorate,,Syria,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +AL-MAZIDIH,AKRAM,TURKI,HISHAN,,,,أكرم تركي هاشم المزيده,,,00/00/1975,,,,,,0075258,Ration card no.,,,,,,,Deir ez-Zor Governorate,,Syria,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +AL-MAZIDIH,AKRAM,TURKI,HISHAN,,,,أكرم تركي هاشم المزيده,,,00/00/1975,,,,,,0075258,Ration card no.,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +AL-MAZIDIH,AKRAM,TURKI,HISHAN,,,,أكرم تركي هاشم المزيده,,,00/00/1979,,,,,,0075258,Ration card no.,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +AL-MAZIDIH,AKRAM,TURKI,HISHAN,,,,أكرم تركي هاشم المزيده,,,00/00/1979,,,,,,0075258,Ration card no.,,,,,,,Deir ez-Zor Governorate,,Syria,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +AL-MAZIDIH,GHAZY,FEZZA,HISHAN,,,,غازي فيزا هاشم المزيده,,,00/00/1974,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +AL-MAZIDIH,GHAZY,FEZZA,HISHAN,,,,غازي فيزا هاشم المزيده,,,00/00/1974,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +AL-MAZIDIH,GHAZY,FEZZA,HISHAN,,,,غازي فيزا هاشم المزيده,,,00/00/1975,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +AL-MAZIDIH,GHAZY,FEZZA,HISHAN,,,,غازي فيزا هاشم المزيده,,,00/00/1975,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +AL-MEGUID AL-ZANDANI,Sheikh Abd,,,,,,,,,00/00/1950,,Yemen,Yemen,A005487,(Yemen). Issued on 13 August 1995,,,,P.O. Box 8096,,,,,Sana'a,,Yemen,(UK Sanctions List Ref):AQD0096 (UN Ref):QDi.156 Review pursuant to Security Council resolution 1822 (2008) was concluded on 2 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423688,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/02/2004,27/02/2004,31/12/2020,8008 +AL-MEKDAD,Faisal,,,,,,,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +AL-MEKDAD,Faycal,,,,,,Fayçal,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +AL-MEKDAD,Fayssal,,,,,,,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +AL-MEQDAD,Faisal,,,,,,,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +AL-MEQDAD,Faycal,,,,,,Fayçal,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +AL-MEQDAD,Fayssal,,,,,,,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +AL-MILAD,Abd,Al-Rahman,,,,,,,,27/07/1986,Tripoli,Libya,Libya,G52FYPRL,"Libya, issued on 8 May 2014 (Date of expiration: 7 May 2022)",,,Commander of the Coast Guard in Zawiya,Zawiya,,,,,,,Libya,"(UK Sanctions List Ref):LIB0039 (UN Ref):LYi.026 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,Primary name,,Libya,08/06/2018,07/06/2018,30/04/2021,13676 +AL-MILAD,Osama,,,,,,,,,04/04/1976,Tripoli,Libya,Libya,,,,,Manager of Al Nasr Detention Centre in Zawiyah,,,,,,Zawiyah,,Libya,"(UK Sanctions List Ref):LIB0075 (UN Ref):LYi.029 As de factor manager of the Al Nasr detention centre the person concerned has directly, and/or through subordinates engaged in or provided support to acts that violate applicable international human rights law, or acts that consistute human rights abuses in Libya. The person concerned has acted for or on behalf of or at the direction of two listed individuals intrinsically linked to the human trafficking activities of the Zawiyah network, namely Mohamed Kashlaf (LYi.025) and Abdulrahman al Milad (LYi.026). For years, the Al Nasr detention centre in Zawiyah has been singled out in public and in confidential reports describing the plight of migrants and asylum seekers in Libya, including torture, sexual and gender-based violence and human trafficking. Humanitarian organisations and victims of trafficking have consistently identified the person concerned as the de facto manager of the detention centre. Three individuals who had been working in the Al Nasr detention centre were served prison sentences for torturing migrants in the detention centre. (Gender):Male",Individual,AKA,Good quality,Libya,26/10/2021,25/10/2021,26/10/2021,14142 +AL-MILAD,Osama,,,,,,,,,04/04/1976,Tripoli,Libya,Libya,,,,,Manager of Al Nasr Detention Centre in Zawiyah,,,,,,Zawiyah,,Libya,"(UK Sanctions List Ref):LIB0075 (UN Ref):LYi.029 As de factor manager of the Al Nasr detention centre the person concerned has directly, and/or through subordinates engaged in or provided support to acts that violate applicable international human rights law, or acts that consistute human rights abuses in Libya. The person concerned has acted for or on behalf of or at the direction of two listed individuals intrinsically linked to the human trafficking activities of the Zawiyah network, namely Mohamed Kashlaf (LYi.025) and Abdulrahman al Milad (LYi.026). For years, the Al Nasr detention centre in Zawiyah has been singled out in public and in confidential reports describing the plight of migrants and asylum seekers in Libya, including torture, sexual and gender-based violence and human trafficking. Humanitarian organisations and victims of trafficking have consistently identified the person concerned as the de facto manager of the detention centre. Three individuals who had been working in the Al Nasr detention centre were served prison sentences for torturing migrants in the detention centre. (Gender):Male",Individual,AKA,Good quality,Libya,26/10/2021,25/10/2021,26/10/2021,14142 +AL-MIQDAD,Faisal,,,,,,فيصل المقداد,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +AL-MIQDAD,Faycal,,,,,,Fayçal,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +AL-MIQDAD,Fayssal,,,,,,,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +AL-MISRI,Abu,Hamza,,,,,,,,15/04/1958,Alexandria,Egypt,United Kingdom,,,,,,,,,,,,,United States,(UK Sanctions List Ref):AQD0252 (UN Ref):QDi.067 Extradited from the United Kingdom to the United States of America on 5 Oct. 2012. Convicted on terrorism charges by a court in the United States of America in May 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,19/04/2002,24/04/2002,31/12/2020,6930 +AL-MISRI,Bassam,,,,,,,,,,,,,,,,,Police officer at Idlib central prison,,,,,,,,,(UK Sanctions List Ref):SYR0028 Worked with listed individuals: Ahmad Kafan and Bassel Bilal (UK Statement of Reasons):Police officer at Idlib central prison; has taken part directly in acts of torture of opponents held in Idlib central prison.,Individual,Primary name,,Syria,24/07/2012,31/12/2020,31/12/2020,12723 +AL-MOALI,Muhammad,Yunis,Ahmed,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Al-Hasaka,,Syria,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-MOALI,Muhammad,Yunis,Ahmed,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Damascus,,Syria,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-MOALI,Muhammad,Yunis,Ahmed,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-MOALI,Muhammad,Yunis,Ahmed,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Mosul,,Iraq,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-MOALI,Muhammad,Yunis,Ahmed,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,,,,,,Wadi Al-Hawi,,Iraq,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-MOALI,Muhammad,Yunis,Ahmed,,,,,,,00/00/1949,"Al-Mowall, Mosul",Iraq,Iraq,,,,,,Al-Dawar Street,,,,,Bludan,,Syria,(UK Sanctions List Ref):IRQ0141 (UN Ref):IQi.080,Individual,AKA,Good quality,Iraq,24/06/2005,22/06/2004,31/12/2020,8681 +AL-MOUSA,Jaez,Sawada,al-Hammoud,,,,,,,00/00/1954,Hama,Syria,,,,,,"Governor of Hasaka, appointed by Bashar al-Assad",,,,,,,,,"(UK Sanctions List Ref):SYR0114 (UK Statement of Reasons):Governor of Hasaka, appointed by Bashar al-Assad; he is associated with Bashar al-Assad. Holds the rank of Major General, a senior officer and former Chief of Staff of the Syrian Air Force. As a senior officer of the Syrian Air Force, he is responsible for the violent repression against the civilian population in Syria, including the use of chemical weapons attacks by the Syrian regime during his tenure as Chief of Staff of the Syrian Air Force, as identified in the report of the Joint Investigative Mechanism established by the United Nations. (Gender):Male",Individual,AKA,,Syria,18/07/2017,31/12/2020,31/12/2020,13498 +AL-MOUSA,Jayez,al-Hammoud,,,,,,,,00/00/1954,Hama,Syria,,,,,,"Governor of Hasaka, appointed by Bashar al-Assad",,,,,,,,,"(UK Sanctions List Ref):SYR0114 (UK Statement of Reasons):Governor of Hasaka, appointed by Bashar al-Assad; he is associated with Bashar al-Assad. Holds the rank of Major General, a senior officer and former Chief of Staff of the Syrian Air Force. As a senior officer of the Syrian Air Force, he is responsible for the violent repression against the civilian population in Syria, including the use of chemical weapons attacks by the Syrian regime during his tenure as Chief of Staff of the Syrian Air Force, as identified in the report of the Joint Investigative Mechanism established by the United Nations. (Gender):Male",Individual,AKA,,Syria,18/07/2017,31/12/2020,31/12/2020,13498 +AL-MU'AYYAD,Abdallah,,,,,,,,,00/00/1985,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +AL-MU'AYYAD,Abdallah,,,,,,,,,00/00/1984,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +AL-MU'AYYAD,Abdallah,,,,,,,,,00/00/1986,(1) Dahyan (2) Sa’dah Governorate,(1) Yemen (2) Yemen,Yemen,,,,,Huthi group second-in-command,,,,,Dahyan,Sa’dah Governorate,,Yemen,(UK Sanctions List Ref):YEM0002 (UN Ref):YEi.002 Gender [Male]. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13190 +AL-MUHAMMAD,KHAMIS,SIRHAN,,,,,خميس سرحان المحمد,,,,,,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0115 (UN Ref):IQi.054,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7586 +AL-MUHAYMAN,Abd,,,,,,,,,00/00/1961,Mosul,Iraq,Iraq,,,0094195,Ration card.,,,,,,,,,,"(UK Sanctions List Ref):AQD0271 (UN Ref):QDi.012 Joined Al-Qaida in 1996 and was at that time an important liaison to the Taliban in Afghanistan. Received money from Ansar al-Islam (QDe.098) in order to conduct attacks in Kirkuk and Ninveh in Iraq during spring and summer of 2005. Al-Qaida senior official. In custody of the United States of America, as of Aug. 2014. Father’s name: Abd al-Razzaq Abd al-Baqi. Mother’s name: Nadira Ayoub Asaad. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1475995 (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6923 +AL-MUHSI,'Abd,,,,,,,,,02/02/1966,al Aziziyya,Libya,Libya,(1) 203037 (2) 347834(3) 434021161,(1) Libyan. Issued in Tripoli. (2) Libyan. Issued under name Ibrahim Ali Tantoush. Expired on 21 February 2014 (3) South African. Related to alias Abdel Ilah Sabri. Confiscated.,6910275240086,South African. Related to alias Abdel Ilah Sabri. Confiscated.,,,,,,,Tripoli,,Libya,"(UK Sanctions List Ref):AQD0197 (UN Ref):QDi.057 Associated with Afghan Support Committee (ASC) (QDe.069), Revival of Islamic Heritage Society (RIHS)(QDe.070) and the Libyan Islamic Fighting Group (LIFG) (QDe.011). Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446790. Tripoli as at Feb. 2014",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6927 +AL-MUHSIN,Abd,,,,,,,,,02/02/1966,al Aziziyya,Libya,Libya,(1) 203037 (2) 347834(3) 434021161,(1) Libyan. Issued in Tripoli. (2) Libyan. Issued under name Ibrahim Ali Tantoush. Expired on 21 February 2014 (3) South African. Related to alias Abdel Ilah Sabri. Confiscated.,6910275240086,South African. Related to alias Abdel Ilah Sabri. Confiscated.,,,,,,,Tripoli,,Libya,"(UK Sanctions List Ref):AQD0197 (UN Ref):QDi.057 Associated with Afghan Support Committee (ASC) (QDe.069), Revival of Islamic Heritage Society (RIHS)(QDe.070) and the Libyan Islamic Fighting Group (LIFG) (QDe.011). Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446790. Tripoli as at Feb. 2014",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6927 +AL-MULA,Amir,Muhammad,Sa'id ',Abd-al-Rahman,Muhammad,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MULA,Amir,Muhammad,Sa'id ',Abd-al-Rahman,Muhammad,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MULA,Amir,Muhammad,Sa'id ',Abd-al-Rahman,Muhammad,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MULA,Amir,Muhammad,Sa'id ',Abd-al-Rahman,Muhammad,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MULA,Amir,Muhammad,Sa'id ',Abd-al-Rahman,Muhammad,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MULA,Amir,Muhammad,Sa'id ',Abd-al-Rahman,Muhammad,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MULA,Amir,Muhammad,Sa'id ',Abd-al-Rahman,Muhammad,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MULA,Amir,Muhammad,Sa'id ',Abd-al-Rahman,Muhammad,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MULA,Amir,Muhammad,Sa'id ',Abd-al-Rahman,Muhammad,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-MUSA,Jayyiz,Rayyan,,,,,جايز الحمود الموسى,,,00/00/1954,Hama,Syria,,,,,,"Governor of Hasaka, appointed by Bashar al-Assad",,,,,,,,,"(UK Sanctions List Ref):SYR0114 (UK Statement of Reasons):Governor of Hasaka, appointed by Bashar al-Assad; he is associated with Bashar al-Assad. Holds the rank of Major General, a senior officer and former Chief of Staff of the Syrian Air Force. As a senior officer of the Syrian Air Force, he is responsible for the violent repression against the civilian population in Syria, including the use of chemical weapons attacks by the Syrian regime during his tenure as Chief of Staff of the Syrian Air Force, as identified in the report of the Joint Investigative Mechanism established by the United Nations. (Gender):Male",Individual,Primary name,,Syria,18/07/2017,31/12/2020,31/12/2020,13498 +ALMUSLIH,Mufleh,,,,,,,,,12/02/1952,,,Saudi Arabia,,,,,Consulate staff,,,,,,,,,"(UK Sanctions List Ref):GHR0045 (UK Statement of Reasons):Mufleh Al Musleh was a member of staff in the Saudi Consulate in Istanbul. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, in that he provided support to the 15 man team sent to Turkey by Saudi authorities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,18/02/2021,13896 +ALMUSLIH,Muflih,Shaya,,,,,,,,12/02/1952,,,Saudi Arabia,,,,,Consulate staff,,,,,,,,,"(UK Sanctions List Ref):GHR0045 (UK Statement of Reasons):Mufleh Al Musleh was a member of staff in the Saudi Consulate in Istanbul. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, in that he provided support to the 15 man team sent to Turkey by Saudi authorities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,18/02/2021,13896 +ALMUZAINI,Ahmed,Abdullah,,,,,,,,,,,Saudi Arabia,,,,,Military Attaché,,,,,,,,,(UK Sanctions List Ref):GHR0039 (UK Statement of Reasons):Ahmad Abdullah Al Muzaini held the position of Military Attaché at the Saudi Consulate in Istanbul. He was a senior official who facilitated the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018. (Gender):Male,Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13890 +AL-NADDAF,Aatef,,,,,,,,,00/00/1956,Damascus,Syria,Syria,,,,,Former Minister of Trade and Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0077 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Internal Trade and Consumer Protection. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13396 +AL-NADDAF,Atef,,,,,,,,,00/00/1956,Damascus,Syria,Syria,,,,,Former Minister of Trade and Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0077 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Internal Trade and Consumer Protection. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13396 +AL-NADDAF,Atif,,,,,,,,,00/00/1956,Damascus,Syria,Syria,,,,,Former Minister of Trade and Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0077 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Internal Trade and Consumer Protection. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13396 +AL-NAIMI,A. Rahman,,,,,,,,,00/00/1954,Doha,Qatar,Qatar,(1) 01461558 (2) 00868774,(1) Qatar. Expiring 20 Jan. 2024. (2) Qatar. Expired on 27 Apr. 2014.,(1) 25463400086 (2) 25463401784,(1) Qatar identification number. (2) Qatar identification number. Expires on 6 Dec. 2019.,,,,,,,Al-Waab,,Qatar,(UK Sanctions List Ref):AQD0001 (UN Ref):QDi.334 Financier and facilitator for Al-Qaida (QDe.004) and Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817985,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,24/03/2021,13131 +AL-NAIMI,Amjad,Muzaffar,Hussein,Ali,,,,,,00/00/1975,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-NAIMI,Amjad,Muzaffar,Hussein,Ali,,,,,,00/00/1976,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-NAIMI,Amjad,Muzaffar,Hussein,Ali,,,,,,00/00/1977,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-NAIMI,Amjad,Muzaffar,Hussein,Ali,,,,,,00/00/1978,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-NAIMI,Amjad,Muzaffar,Hussein,Ali,,,,,,00/00/1979,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-NAIMI,Amjad,Muzaffar,Hussein,Ali,,,,,,00/00/1980,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +AL-NA'IMI,Abd al-Rahman,bin 'Amir,,,,,,,,00/00/1954,Doha,Qatar,Qatar,(1) 01461558 (2) 00868774,(1) Qatar. Expiring 20 Jan. 2024. (2) Qatar. Expired on 27 Apr. 2014.,(1) 25463400086 (2) 25463401784,(1) Qatar identification number. (2) Qatar identification number. Expires on 6 Dec. 2019.,,,,,,,Al-Waab,,Qatar,(UK Sanctions List Ref):AQD0001 (UN Ref):QDi.334 Financier and facilitator for Al-Qaida (QDe.004) and Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817985,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,24/03/2021,13131 +ALNAIMI,A. Rahman,Omair,J,,,,,,,00/00/1954,Doha,Qatar,Qatar,(1) 01461558 (2) 00868774,(1) Qatar. Expiring 20 Jan. 2024. (2) Qatar. Expired on 27 Apr. 2014.,(1) 25463400086 (2) 25463401784,(1) Qatar identification number. (2) Qatar identification number. Expires on 6 Dec. 2019.,,,,,,,Al-Waab,,Qatar,(UK Sanctions List Ref):AQD0001 (UN Ref):QDi.334 Financier and facilitator for Al-Qaida (QDe.004) and Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817985,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,24/03/2021,13131 +AL-NAJDI,MUHANNAD,,,,,,,,,19/05/1984,al-Duwadmi,Saudi Arabia,Saudi Arabia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0264 (UN Ref):QDi.377 Syria-based Al-Qaida (QDe.004) facilitator. Involved in the development of improvised explosive devices for use in Afghanistan and Syrian Arab Republic since at least 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930722,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13315 +ALNASEEM,,,,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ALNASEEM,,,,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ALNASEEM,,,,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ALNASEEM,,,,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ALNASIM,,,,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ALNASIM,,,,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ALNASIM,,,,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ALNASIM,,,,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +AL-NASIRI,Walid,Hamid,Tawfiq,,,,,,,00/00/1954,Tikrit,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0087 (UN Ref):IQi.026,Individual,AKA,Good quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7625 +ALNASSEEM,,,,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ALNASSEEM,,,,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ALNASSEEM,,,,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ALNASSEEM,,,,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +AL-NASSER,Abdelkarim,Hussein,Mohamed,,,Alleged leader of Saudi Hizballah,,,,,Al Ihsa,Saudi Arabia,Saudi Arabia,,,,,Alleged Leader of Saudi Hizballah,,,,,,,,Iran,(UK Sanctions List Ref):CTI0003 (UK Statement of Reasons):Abdelkarim Hussein Mohammed (Mohamed) Al-Nasser is the alleged leader of Saudi Hizballah. He is wanted by the FBI for his involvement in the Khobar Towers attack of 25 June 1996. (Gender):Male,Individual,Primary name,,Counter-Terrorism (International),12/10/2001,31/12/2020,11/03/2022,7008 +AL-NASSER,Abdelkarim,Hussein,Mohammed,,,,,,,,Al Ihsa,Saudi Arabia,Saudi Arabia,,,,,Alleged Leader of Saudi Hizballah,,,,,,,,Iran,(UK Sanctions List Ref):CTI0003 (UK Statement of Reasons):Abdelkarim Hussein Mohammed (Mohamed) Al-Nasser is the alleged leader of Saudi Hizballah. He is wanted by the FBI for his involvement in the Khobar Towers attack of 25 June 1996. (Gender):Male,Individual,Primary name variation,,Counter-Terrorism (International),12/10/2001,31/12/2020,11/03/2022,7008 +AL-NASSER,Mohamed,,,,,,,,,,Al Ihsa,Saudi Arabia,Saudi Arabia,,,,,Alleged Leader of Saudi Hizballah,,,,,,,,Iran,(UK Sanctions List Ref):CTI0003 (UK Statement of Reasons):Abdelkarim Hussein Mohammed (Mohamed) Al-Nasser is the alleged leader of Saudi Hizballah. He is wanted by the FBI for his involvement in the Khobar Towers attack of 25 June 1996. (Gender):Male,Individual,Primary name variation,,Counter-Terrorism (International),12/10/2001,31/12/2020,11/03/2022,7008 +AL-NIMR,,,,,,,سهيل,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,AKA,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +AL-NOUR,Hassan,,,,,,,,,09/02/1960,Damascus,,Syria,,,,,Former Minister of Administrative Development,,,,,,,,,"(UK Sanctions List Ref):SYR0081 (UK Statement of Reasons):Former Minister of Administrative Development in power after May 2011 (appointed 27.8.2014). As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13153 +ALNSIEM,MUSA,HILAL,ABDALLA,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,Primary name,,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ALNSIEM,MUSA,HILAL,ABDALLA,,,,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,Primary name,,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ALNSIEM,MUSA,HILAL,ABDALLA,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,Primary name,,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +ALNSIEM,MUSA,HILAL,ABDALLA,,,,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,Primary name,,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +AL-NU'AIMI,'Abd al-Rahman,,,,,,,,,00/00/1954,Doha,Qatar,Qatar,(1) 01461558 (2) 00868774,(1) Qatar. Expiring 20 Jan. 2024. (2) Qatar. Expired on 27 Apr. 2014.,(1) 25463400086 (2) 25463401784,(1) Qatar identification number. (2) Qatar identification number. Expires on 6 Dec. 2019.,,,,,,,Al-Waab,,Qatar,(UK Sanctions List Ref):AQD0001 (UN Ref):QDi.334 Financier and facilitator for Al-Qaida (QDe.004) and Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817985,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,24/03/2021,13131 +AL-NUA'YMI,'Abd al-Rahman,,,,,,,,,00/00/1954,Doha,Qatar,Qatar,(1) 01461558 (2) 00868774,(1) Qatar. Expiring 20 Jan. 2024. (2) Qatar. Expired on 27 Apr. 2014.,(1) 25463400086 (2) 25463401784,(1) Qatar identification number. (2) Qatar identification number. Expires on 6 Dec. 2019.,,,,,,,Al-Waab,,Qatar,(UK Sanctions List Ref):AQD0001 (UN Ref):QDi.334 Financier and facilitator for Al-Qaida (QDe.004) and Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817985,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,24/03/2021,13131 +AL-NU'AYMI,'Abd al-Rahman,bin 'Amir,,,,,,,,00/00/1954,Doha,Qatar,Qatar,(1) 01461558 (2) 00868774,(1) Qatar. Expiring 20 Jan. 2024. (2) Qatar. Expired on 27 Apr. 2014.,(1) 25463400086 (2) 25463401784,(1) Qatar identification number. (2) Qatar identification number. Expires on 6 Dec. 2019.,,,,,,,Al-Waab,,Qatar,(UK Sanctions List Ref):AQD0001 (UN Ref):QDi.334 Financier and facilitator for Al-Qaida (QDe.004) and Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817985,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,24/03/2021,13131 +AL-NU'AYMI,'Abdallah,Muhammad,,,,,,,,00/00/1954,Doha,Qatar,Qatar,(1) 01461558 (2) 00868774,(1) Qatar. Expiring 20 Jan. 2024. (2) Qatar. Expired on 27 Apr. 2014.,(1) 25463400086 (2) 25463401784,(1) Qatar identification number. (2) Qatar identification number. Expires on 6 Dec. 2019.,,,,,,,Al-Waab,,Qatar,(UK Sanctions List Ref):AQD0001 (UN Ref):QDi.334 Financier and facilitator for Al-Qaida (QDe.004) and Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817985,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,24/03/2021,13131 +AL-NU'AYMI,ABD AL-RAHMAN,BIN UMAYR,,,,,,,,00/00/1954,Doha,Qatar,Qatar,(1) 01461558 (2) 00868774,(1) Qatar. Expiring 20 Jan. 2024. (2) Qatar. Expired on 27 Apr. 2014.,(1) 25463400086 (2) 25463401784,(1) Qatar identification number. (2) Qatar identification number. Expires on 6 Dec. 2019.,,,,,,,Al-Waab,,Qatar,(UK Sanctions List Ref):AQD0001 (UN Ref):QDi.334 Financier and facilitator for Al-Qaida (QDe.004) and Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817985,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,24/03/2021,13131 +AL-NU'IMI,'Abd al-Rahman,bin 'Amir,,,,,,,,00/00/1954,Doha,Qatar,Qatar,(1) 01461558 (2) 00868774,(1) Qatar. Expiring 20 Jan. 2024. (2) Qatar. Expired on 27 Apr. 2014.,(1) 25463400086 (2) 25463401784,(1) Qatar identification number. (2) Qatar identification number. Expires on 6 Dec. 2019.,,,,,,,Al-Waab,,Qatar,(UK Sanctions List Ref):AQD0001 (UN Ref):QDi.334 Financier and facilitator for Al-Qaida (QDe.004) and Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817985,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,24/03/2021,13131 +AL-NUSRA FRONT,,,,,,,جبهة النصرة,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +AL-NUSRA FRONT,,,,,,,جبهة النصرة,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +AL-NUSRAH FRONT,,,,,,,جبهة النصرة,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +AL-NUSRAH FRONT,,,,,,,جبهة النصرة,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +AL-NUSRAH FRONT FOR THE PEOPLE OF THE LEVANT,,,,,,,جبهة النصرة لأهل الشام,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +AL-NUSRAH FRONT FOR THE PEOPLE OF THE LEVANT,,,,,,,جبهة النصرة لأهل الشام,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +AL-OLABI,Adil,Anwar,,,,,,,,00/00/1976,,,Syria,,,,,(1) Governor of Damascus (2) Chairman of Damascus Cham Holding Company,,,,,,,,,"(UK Sanctions List Ref):SYR0356 Chairman of Damascus Cham Holding Company (DCHC) (UK Statement of Reasons):Leading businessperson benefiting from and supporting the regime. Vice Chairman of Damascus Cham Holding Company (DCHC), the investment arm of the Governorate of Damascus managing the properties of the Governorate of Damascus and implementing the Marota City Project. Adel Anwar Al-Olabi is also the Governor of Damascus, appointed by Bashar Al-Assad in November 2018. As Governor of Damascus and Vice Chair of DCHC, he is responsible for efforts to implement regime policies of developing expropriated land in Damascus (including Decree No.66 and Law No.10), most notably through the Marota City Project. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13821 +AL-OLABI,Adel,Anouar,,,,,,,,00/00/1976,,,Syria,,,,,(1) Governor of Damascus (2) Chairman of Damascus Cham Holding Company,,,,,,,,,"(UK Sanctions List Ref):SYR0356 Chairman of Damascus Cham Holding Company (DCHC) (UK Statement of Reasons):Leading businessperson benefiting from and supporting the regime. Vice Chairman of Damascus Cham Holding Company (DCHC), the investment arm of the Governorate of Damascus managing the properties of the Governorate of Damascus and implementing the Marota City Project. Adel Anwar Al-Olabi is also the Governor of Damascus, appointed by Bashar Al-Assad in November 2018. As Governor of Damascus and Vice Chair of DCHC, he is responsible for efforts to implement regime policies of developing expropriated land in Damascus (including Decree No.66 and Law No.10), most notably through the Marota City Project. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13821 +AL-OLABI,Adel,Anwar,,,,,عادل أنور العلبي,,,00/00/1976,,,Syria,,,,,(1) Governor of Damascus (2) Chairman of Damascus Cham Holding Company,,,,,,,,,"(UK Sanctions List Ref):SYR0356 Chairman of Damascus Cham Holding Company (DCHC) (UK Statement of Reasons):Leading businessperson benefiting from and supporting the regime. Vice Chairman of Damascus Cham Holding Company (DCHC), the investment arm of the Governorate of Damascus managing the properties of the Governorate of Damascus and implementing the Marota City Project. Adel Anwar Al-Olabi is also the Governor of Damascus, appointed by Bashar Al-Assad in November 2018. As Governor of Damascus and Vice Chair of DCHC, he is responsible for efforts to implement regime policies of developing expropriated land in Damascus (including Decree No.66 and Law No.10), most notably through the Marota City Project. (Gender):Male",Individual,Primary name,,Syria,17/02/2020,31/12/2020,14/02/2022,13821 +AL-OMIRAH,Othman,Ahmed,Othman,,,,,,,27/05/1979,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +AL-OMIRAH,Othman,Ahmed,Othman,,,,,,,00/00/1973,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +ALOTAIBI,Badr,Lafi,M,,,,,,,06/07/1973,Riyadh,Saudi Arabia,Saudi Arabia,P667604,,,,"Major, External Intelligence",,,,,,,,,(UK Sanctions List Ref):GHR0040 (UK Statement of Reasons):Badr Lafi M Al Otaibi held the rank of Major and was involved in External Intelligence in Saudi Arabia. He was part of the 15 man team sent to Turkey by Saudi authorities and was present during the unlawful killing of Jamal Khashoggi at the Saudi Consulate in Istanbul on 2 October 2018. (Gender):Male,Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13891 +ALOTAIBI,Mohammad,,,,,,,,,06/11/1964,Riyadh,Saudi Arabia,Saudi Arabia,,,,,"Consul General in the Saudi Arabia Consulate, Istanbul",,,,,,,,,"(UK Sanctions List Ref):GHR0037 (UK Statement of Reasons):Mohammad Al-Otaibi was the Saudi Consul General in Istanbul. He was involved in the unlawful killing of Jamal Khashoggi, in particular in facilitating the killing and in the concealment of evidence. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13888 +AL-OTAIBI,Badr,Lafi,M,,,,,,,06/07/1973,Riyadh,Saudi Arabia,Saudi Arabia,P667604,,,,"Major, External Intelligence",,,,,,,,,(UK Sanctions List Ref):GHR0040 (UK Statement of Reasons):Badr Lafi M Al Otaibi held the rank of Major and was involved in External Intelligence in Saudi Arabia. He was part of the 15 man team sent to Turkey by Saudi authorities and was present during the unlawful killing of Jamal Khashoggi at the Saudi Consulate in Istanbul on 2 October 2018. (Gender):Male,Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13891 +ALOUCHE,ISAM,ALI,MOHAMED,,,,عصام علي محمد علوش,,,21/03/1974,Baghdad,Iraq,Jordan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0205 (UN Ref):QDi.076 Was deported from Germany to Jordan in Feb. 2005. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/09/2002,03/09/2002,31/12/2020,7489 +ALOUCHE,ISAM,ALI,MOHAMED,,,,عصام علي محمد علوش,,,00/00/1972,Baghdad,Iraq,Jordan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0205 (UN Ref):QDi.076 Was deported from Germany to Jordan in Feb. 2005. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/09/2002,03/09/2002,31/12/2020,7489 +AL-PESHAWARI,FAZEEL-A-TUL,SHAYKH ABU MOHAMMED,AMEEN,,,,,,,00/00/1961,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AL-PESHAWARI,FAZEEL-A-TUL,SHAYKH ABU MOHAMMED,AMEEN,,,,,,,00/00/1967,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AL-PESHAWARI,FAZEEL-A-TUL,SHAYKH ABU MOHAMMED,AMEEN,,,,,,,00/00/1973,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AL-QADIRI,Rima,,,,,,,,,00/00/1963,Damascus,Syria,Syria,,,,,Former Minister of Social Affairs and Labour,,,,,,,,,"(UK Sanctions List Ref):SYR0207 (UK Statement of Reasons):Former Minister for Social Affairs (August 2015-August 2021). As Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Female",Individual,Primary name,,Syria,14/11/2016,31/12/2020,13/05/2022,13412 +AL-QADULI,ABD AL-RAHMAN,MUHAMMAD,MUSTAFA,AL-QADULI,,,,,,00/00/1959,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +AL-QADULI,ABD AL-RAHMAN,MUHAMMAD,MUSTAFA,AL-QADULI,,,,,,00/00/1957,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +AL-QAHTANI,Mus'ab,,,,,,,,,01/06/1976,"(1) Al-Shura, Mosul (2) Harara, Ninawa",(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0228 (UN Ref):QDi.337 Sharia amir of Al-Nusrah Front for the People of the Levant (QDe.137) as of early 2014. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13134 +ALQAHTANI,Saif,Saad,Q.,,,,,,,00/00/1973,,,Saudi Arabia,,,,,"Training Officer, Saudi Air Force",,,,,,,,,"(UK Sanctions List Ref):GHR0038 (UK Statement of Reasons):Saif Saad Q. Alqahtani was a training officer in the Saudi Air Force who worked in the Office of the Crown Prince in Saudi Arabia. He was in the Consulate during the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, and played an active part of the 15 man team sent to Turkey by Saudi authorities, including through the concealment of evidence relating to the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13889 +AL-QAHTANI,Saif,Saad,Q.,,,,,,,00/00/1973,,,Saudi Arabia,,,,,"Training Officer, Saudi Air Force",,,,,,,,,"(UK Sanctions List Ref):GHR0038 (UK Statement of Reasons):Saif Saad Q. Alqahtani was a training officer in the Saudi Air Force who worked in the Office of the Crown Prince in Saudi Arabia. He was in the Consulate during the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, and played an active part of the 15 man team sent to Turkey by Saudi authorities, including through the concealment of evidence relating to the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13889 +AL-QAIDA,,,,,,,القاعدة,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0027 (UN Ref):QDe.004 Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278330,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,23/02/2001,06/10/2001,31/12/2020,6965 +AL-QAIDA IN EGYPT AQE,,,,,,,,,,,,,,,,,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +AL-QAIDA IN EGYPT AQE,,,,,,,,,,,,,,,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +AL-QAIDA IN EGYPT AQE,,,,,,,,,,,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +AL-QAIDA IN IRAQ,,,,,,,القاعده في العراق,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +AL-QAIDA IN THE ARABIAN PENINSULA,,,,,,,القاعدة في جزيرة العرب,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0029 (UN Ref):QDe.129 AQAP is a regional affiliate of Al-Qaida (QDe.004) and an armed group operating primarily in Arabian Peninsula. Location: Yemen. Alternative location: Saudi Arabia (2004 – 2006). Formed in Jan. 2009 when Al-Qaida in Yemen combined with Saudi Arabian Al-Qaida operatives. Leader of AQAP is Qasim Mohamed Mahdi Al-Rimi (QDi.282). Ansar al-Shari’a was formed in early 2011 by AQAP and has taken responsibility for multiple attacks in Yemen against both government and civilian targets. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282104,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,20/01/2010,19/01/2010,12/01/2022,11044 +AL-QAIDA IN THE SOUTH ARABIAN PENINSULA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0029 (UN Ref):QDe.129 AQAP is a regional affiliate of Al-Qaida (QDe.004) and an armed group operating primarily in Arabian Peninsula. Location: Yemen. Alternative location: Saudi Arabia (2004 – 2006). Formed in Jan. 2009 when Al-Qaida in Yemen combined with Saudi Arabian Al-Qaida operatives. Leader of AQAP is Qasim Mohamed Mahdi Al-Rimi (QDi.282). Ansar al-Shari’a was formed in early 2011 by AQAP and has taken responsibility for multiple attacks in Yemen against both government and civilian targets. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282104,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,20/01/2010,19/01/2010,12/01/2022,11044 +AL-QAIDA IN YEMEN (AQY),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0029 (UN Ref):QDe.129 AQAP is a regional affiliate of Al-Qaida (QDe.004) and an armed group operating primarily in Arabian Peninsula. Location: Yemen. Alternative location: Saudi Arabia (2004 – 2006). Formed in Jan. 2009 when Al-Qaida in Yemen combined with Saudi Arabian Al-Qaida operatives. Leader of AQAP is Qasim Mohamed Mahdi Al-Rimi (QDi.282). Ansar al-Shari’a was formed in early 2011 by AQAP and has taken responsibility for multiple attacks in Yemen against both government and civilian targets. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282104,Entity,FKA,,ISIL (Da'esh) and Al-Qaida,20/01/2010,19/01/2010,12/01/2022,11044 +AL-QAIDA OF JIHAD IN THE LAND OF THE TWO RIVERS,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +AL-QAIDA OF JIHAD ORGANIZATION IN THE ARABIAN PENINSULA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0029 (UN Ref):QDe.129 AQAP is a regional affiliate of Al-Qaida (QDe.004) and an armed group operating primarily in Arabian Peninsula. Location: Yemen. Alternative location: Saudi Arabia (2004 – 2006). Formed in Jan. 2009 when Al-Qaida in Yemen combined with Saudi Arabian Al-Qaida operatives. Leader of AQAP is Qasim Mohamed Mahdi Al-Rimi (QDi.282). Ansar al-Shari’a was formed in early 2011 by AQAP and has taken responsibility for multiple attacks in Yemen against both government and civilian targets. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282104,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,20/01/2010,19/01/2010,12/01/2022,11044 +AL-QAIDA ORGANIZATION IN THE ARABIAN PENINSULA AQAP,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0029 (UN Ref):QDe.129 AQAP is a regional affiliate of Al-Qaida (QDe.004) and an armed group operating primarily in Arabian Peninsula. Location: Yemen. Alternative location: Saudi Arabia (2004 – 2006). Formed in Jan. 2009 when Al-Qaida in Yemen combined with Saudi Arabian Al-Qaida operatives. Leader of AQAP is Qasim Mohamed Mahdi Al-Rimi (QDi.282). Ansar al-Shari’a was formed in early 2011 by AQAP and has taken responsibility for multiple attacks in Yemen against both government and civilian targets. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282104,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,20/01/2010,19/01/2010,12/01/2022,11044 +AL-QASAB,,,,,,,,,,02/12/1985,Zawiya,Libya,Libya,C17HLRL3,Issued in Zawiya on 30 Dec 2015,,,(1) Commander of the Shuhada al-Nasr brigade (2) Head of the Petrol Refinery Guard of Zawiya’s refinery,,,,,,Zawiya,,Libya,"(UK Sanctions List Ref):LIB0055 (UN Ref):LYi.025 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13675 +AL-QATAN,Anouar,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-QATAN,Waseem,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-QATAN,Wasim,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-QATAN,Wasseem,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-QATAN,Wassim,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-QATANI,Abu,Maria,,,,,,,,01/06/1976,"(1) Al-Shura, Mosul (2) Harara, Ninawa",(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0228 (UN Ref):QDi.337 Sharia amir of Al-Nusrah Front for the People of the Levant (QDe.137) as of early 2014. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13134 +AL-QATARJI,Abu,al-Bara,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +AL-QATARJI,Bara,,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +AL-QATARJI,Bara,Ahmad,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +AL-QATARJI,Muhammad,,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +AL-QATARJI,Muhammad,Bara,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +AL-QATARJI,Muhammad,Bara,Ahmad,Rushdi,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +AL-QATARJI,Muhammad,Nur,al-Din,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +AL-QATIRJI,Hossam,Ahmed,,,,,,,,00/00/1982,Raqqa,Syria,Syria,,,,,CEO of Katerji Group (a.k.a. al-Qatirji Company/Qatirji Company/Khatirji Group/Katerji International Group),,,,,,,,,"(UK Sanctions List Ref):SYR0262 (UK Statement of Reasons):Leading businessperson operating in Syria, who is also a Member of Parliament for Aleppo. Al-Qatirji supports and benefits from the regime through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13758 +AL-QATIRJI,Hossam,Mohammed,,,,,,,,00/00/1982,Raqqa,Syria,Syria,,,,,CEO of Katerji Group (a.k.a. al-Qatirji Company/Qatirji Company/Khatirji Group/Katerji International Group),,,,,,,,,"(UK Sanctions List Ref):SYR0262 (UK Statement of Reasons):Leading businessperson operating in Syria, who is also a Member of Parliament for Aleppo. Al-Qatirji supports and benefits from the regime through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13758 +AL-QATIRJI,Hossam,Muhammad,,,,,,,,00/00/1982,Raqqa,Syria,Syria,,,,,CEO of Katerji Group (a.k.a. al-Qatirji Company/Qatirji Company/Khatirji Group/Katerji International Group),,,,,,,,,"(UK Sanctions List Ref):SYR0262 (UK Statement of Reasons):Leading businessperson operating in Syria, who is also a Member of Parliament for Aleppo. Al-Qatirji supports and benefits from the regime through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13758 +AL-QATIRJI,Hussam,,,,,,حسام القاطرجي,,,00/00/1982,Raqqa,Syria,Syria,,,,,CEO of Katerji Group (a.k.a. al-Qatirji Company/Qatirji Company/Khatirji Group/Katerji International Group),,,,,,,,,"(UK Sanctions List Ref):SYR0262 (UK Statement of Reasons):Leading businessperson operating in Syria, who is also a Member of Parliament for Aleppo. Al-Qatirji supports and benefits from the regime through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name,,Syria,22/01/2019,31/12/2020,31/12/2020,13758 +AL-QATIRJI,Hussam,Ahmed,,,,,,,,00/00/1982,Raqqa,Syria,Syria,,,,,CEO of Katerji Group (a.k.a. al-Qatirji Company/Qatirji Company/Khatirji Group/Katerji International Group),,,,,,,,,"(UK Sanctions List Ref):SYR0262 (UK Statement of Reasons):Leading businessperson operating in Syria, who is also a Member of Parliament for Aleppo. Al-Qatirji supports and benefits from the regime through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13758 +AL-QATIRJI,Hussam,Mohammed,,,,,,,,00/00/1982,Raqqa,Syria,Syria,,,,,CEO of Katerji Group (a.k.a. al-Qatirji Company/Qatirji Company/Khatirji Group/Katerji International Group),,,,,,,,,"(UK Sanctions List Ref):SYR0262 (UK Statement of Reasons):Leading businessperson operating in Syria, who is also a Member of Parliament for Aleppo. Al-Qatirji supports and benefits from the regime through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13758 +AL-QATIRJI,Hussam,Muhammad,,,,,,,,00/00/1982,Raqqa,Syria,Syria,,,,,CEO of Katerji Group (a.k.a. al-Qatirji Company/Qatirji Company/Khatirji Group/Katerji International Group),,,,,,,,,"(UK Sanctions List Ref):SYR0262 (UK Statement of Reasons):Leading businessperson operating in Syria, who is also a Member of Parliament for Aleppo. Al-Qatirji supports and benefits from the regime through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13758 +AL-QATIRJI,Abu,al-Bara,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +AL-QATIRJI,Bara,,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +AL-QATIRJI,Bara,Ahmad,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +AL-QATIRJI,Muhammad,,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +AL-QATIRJI,Muhammad,Bara,,,,,محمد براء قاطرجي,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +AL-QATIRJI,Muhammad,Bara,Ahmad,Rushdi,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +AL-QATIRJI,Muhammad,Nur,al-Din,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +AL-QATTAN,Anouar,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-QATTAN,Waseem,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-QATTAN,Wasim,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-QATTAN,Wasseem,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-QATTAN,Wassim,,,,,,,,,04/03/1976,,,Syria,,,,,President of Damascus Countryside (Rural) Province Chamber of Commerce.,,,,,,,,,"(UK Sanctions List Ref):SYR0352 Linked to Larosa Furniture/furnishing ; Jasmine Fields Company Ltd. ; Muruj Cham (Murooj al-Cham) Investment and Tourism Group ; Adam and Investment LLC ; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce. (UK Statement of Reasons):Leading businessperson operating in Syria benefitting from and supporting the regime Owner of mulitiple businesses and holding companies with interests and activities in various econcomic sectors such as real estate, luxury hotel industry, commercial centres. Wasseem AL-KATTAN rose rapidly as a leading businessman by imposing taxes on goods smuggled into Eastern Ghouta under siege, and is now involved in aggressive forms of clientelism to the benefit of the regime. Wasseem AL-KATTAN benefits financially from favoured access to public tenders as well as licenses and contracts awarded by government agencies as a result of his close ties to the regime. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/01/2021,13824 +AL-QAYRAWAN MEDIA FOUNDATION,,,,,,,,,,,,,,,,,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0033 (UN Ref):QDe.143 A Tunisian armed group with links to the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). The leader is Seifallah ben Hassine (QDi.333). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13140 +AL-QIRBI,Abdullah,,,,,,,,,00/00/1962,Damascus,Syria,Syria,,,,,Former Minister of Internal Trade and Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0064 Links to Bashar Asad (UK Statement of Reasons):Former Minister of Internal Trade and Consumer Protection. Appointed in July 2016. As a former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,13/05/2022,13407 +AL-QIZANI,Ashraf,,,,,,أشرف القيزاني,,,05/10/1991,"El Gouazine, Dahmani, Governorate of Le Kef",Tunisia,Tunisia,,,13601334,Tunisia,,,,,,,,,,"(UK Sanctions List Ref):AQD0375 (UN Ref):QDi.432 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115).  Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/01/2022,29/12/2021,14/04/2022,14170 +AL-QUBAYSI,Umar,Mahmud,Rahim,,,,,,,16/06/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +AL-QUBAYSI,Umar,Mahmud,Rahim,,,,,,,01/01/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +AL-QURAISHI,Abu,Bakr,al-Baghdadi,al-Husayni,,,أبو بكر البغدادي الحسيني القريشي,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +AL-QURAISHI,Abu,Bakr,al-Baghdadi,al-Husayni,,,أبو بكر البغدادي الحسيني القريشي,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +AL-QURASHI,Abu,Ibrahim,al-Hashimi,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-QURASHI,Abu,Ibrahim,al-Hashimi,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-QURASHI,Abu,Ibrahim,al-Hashimi,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-QURASHI,Abu,Ibrahim,al-Hashimi,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-QURASHI,Abu,Ibrahim,al-Hashimi,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-QURASHI,Abu,Ibrahim,al-Hashimi,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-QURASHI,Abu,Ibrahim,al-Hashimi,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-QURASHI,Abu,Ibrahim,al-Hashimi,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-QURASHI,Abu,Ibrahim,al-Hashimi,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-QUWATLI,Raeef,,,,,,,,,03/02/1967,Damascus,Syria,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0202 (UK Statement of Reasons):Business associate of Maher Al-Asad and responsible for managing some of his business interests; provides funding to the regime. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,14/02/2022,12016 +AL-QUWATLI,Raif,,,,,,,,,03/02/1967,Damascus,Syria,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0202 (UK Statement of Reasons):Business associate of Maher Al-Asad and responsible for managing some of his business interests; provides funding to the regime. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,14/02/2022,12016 +AL-QUWATLI,Ra'if,,,,,,,,,03/02/1967,Damascus,Syria,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0202 (UK Statement of Reasons):Business associate of Maher Al-Asad and responsible for managing some of his business interests; provides funding to the regime. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,14/02/2022,12016 +AL-QUWATLI,Ri'af,,,,,,,,,03/02/1967,Damascus,Syria,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0202 (UK Statement of Reasons):Business associate of Maher Al-Asad and responsible for managing some of his business interests; provides funding to the regime. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,14/02/2022,12016 +AL-QUWATLY,Raeef,,,,,,,,,03/02/1967,Damascus,Syria,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0202 (UK Statement of Reasons):Business associate of Maher Al-Asad and responsible for managing some of his business interests; provides funding to the regime. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,14/02/2022,12016 +AL-QUWATLY,Raif,,,,,,رئيف القوتلي,,,03/02/1967,Damascus,Syria,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0202 (UK Statement of Reasons):Business associate of Maher Al-Asad and responsible for managing some of his business interests; provides funding to the regime. (Gender):Male,Individual,Primary name,,Syria,24/06/2011,31/12/2020,14/02/2022,12016 +AL-QUWATLY,Ri'af,,,,,,,,,03/02/1967,Damascus,Syria,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0202 (UK Statement of Reasons):Business associate of Maher Al-Asad and responsible for managing some of his business interests; provides funding to the regime. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,14/02/2022,12016 +AL-QUWATLY,Ra'if,,,,,,,,,03/02/1967,Damascus,Syria,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0202 (UK Statement of Reasons):Business associate of Maher Al-Asad and responsible for managing some of his business interests; provides funding to the regime. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,14/02/2022,12016 +AL-RABI'I,NIDAL,,,,,,نضال الربيعي,,,00/00/1965,Al-Dur,Iraq,Iraq,,,,,,,,,,,,,Iraq,(UK Sanctions List Ref):IRQ0131 (UN Ref):IQi.070,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8246 +AL-RAHMAN,'Abd,,,,,,,,,02/02/1966,al Aziziyya,Libya,Libya,(1) 203037 (2) 347834(3) 434021161,(1) Libyan. Issued in Tripoli. (2) Libyan. Issued under name Ibrahim Ali Tantoush. Expired on 21 February 2014 (3) South African. Related to alias Abdel Ilah Sabri. Confiscated.,6910275240086,South African. Related to alias Abdel Ilah Sabri. Confiscated.,,,,,,,Tripoli,,Libya,"(UK Sanctions List Ref):AQD0197 (UN Ref):QDi.057 Associated with Afghan Support Committee (ASC) (QDe.069), Revival of Islamic Heritage Society (RIHS)(QDe.070) and the Libyan Islamic Fighting Group (LIFG) (QDe.011). Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446790. Tripoli as at Feb. 2014",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6927 +AL-RAHMAN,Humam,Abd,al-Khaliq,Abd,,,,,,00/00/1945,Ar-Ramadi,Iraq,Iraq,0018061/104,Issued on 12 Sept 1993,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0104 (UN Ref):IQi.043,Individual,AKA,Good quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7574 +AL-RAHMOUN,Mohammad,Khaled,,,,,,,,01/04/1957,Idleb,Syria,Syria,,,,,Minister of Interior,,,,,,,,,"(UK Sanctions List Ref):SYR0346 Relatives/business associates or partners/links to listed individuals: Bashar Asad (UK Statement of Reasons):Minister of Interior. Appointed in November 2018. As Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,04/03/2019,31/12/2020,14/02/2022,13771 +AL-RAMADAN,Ramadan,,,,,,,,,,,,,,,,,Commander 9th Armoured Division,,,,,,,,,(UK Sanctions List Ref):SYR0203 (UK Statement of Reasons):Ordered troops to shoot protestors in Baniyas and Deraa. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12463 +AL-RAMI,Qasim,,,,,,,,,05/06/1978,"Raymah village, Sanaa Governorate",Yemen,Yemen,00344994,"Yemeni. Issue date: 03/07/1999, issued in Sanaa.",973406,Yemeni national identification number. Issued on 3 Jul. 1996,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0288 (UN Ref):QDi.282 Mother’s name: Fatima Muthanna Yahya. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Al-Qaida in the Arabian Peninsula (QDe.129) since Jun. 2015, pledged loyalty to Aiman al-Zawahiri (QDi.006). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4470245",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/05/2010,11/05/2010,31/12/2020,11123 +AL-RASHED,Saleh,,,,,,,,,01/08/1964,Aleppo Province,Syria,Syria,,,,,Former Minister for Education,,,,,,,,,(UK Sanctions List Ref):SYR0215 (UK Statement of Reasons):Former Minister of Education. Associated with the regime and its violent repression against the civilian population (Gender):Male,Individual,Primary name,,Syria,28/02/2012,31/12/2020,31/12/2020,12509 +AL-RASHEED TRUST,,,,,,,,,,,,,,,,,,,"302b-40, Good Earth Court",Opposite Pia Planitarium,Block 13a,Gulshan-I-Iqbal,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHEED TRUST,,,,,,,,,,,,,,,,,,,605 Landmark Plaza,11 Chundrigar Road,Opposite Jang Building,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHEED TRUST,,,,,,,,,,,,,,,,,,,617 Clifton Center,Block 5,6th Floor,Clifton,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHEED TRUST,,,,,,,,,,,,,,,,,,,Jamia Maajid,Sulalman Park,Melgium Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHEED TRUST,,,,,,,,,,,,,,,,,,,Jamia Masjid,Sulaiman Park,Begum Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHEED TRUST,,,,,,,,,,,,,,,,,,,Kitab Ghar,Darul Ifta Wal Irshad,Nazimabad No 4,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHEED TRUST,,,,,,,,,,,,,,,,,,,Kitas Ghar,Nazimabad 4,Dahgel-Iftah,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHEED TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Opposite Khyber Bank,Abbottabad Road,,,Mansehra,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHEED TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Rm No 3,Moti Plaza,Near Liaquat Bagh,Muree Road,Rawalpindi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHEED TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Top Floor,Dr. Dawa Khan Dental Clinic Surgeon,Main Baxae,Mingora,Swat,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHEED TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin ZR Brothers,Katcherry Road,Chowk Yadgaar,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHID TRUST,,,,,,,,,,,,,,,,,,,"302b-40, Good Earth Court",Opposite Pia Planitarium,Block 13a,Gulshan-I-Iqbal,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHID TRUST,,,,,,,,,,,,,,,,,,,605 Landmark Plaza,11 Chundrigar Road,Opposite Jang Building,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHID TRUST,,,,,,,,,,,,,,,,,,,617 Clifton Center,Block 5,6th Floor,Clifton,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHID TRUST,,,,,,,,,,,,,,,,,,,Jamia Maajid,Sulalman Park,Melgium Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHID TRUST,,,,,,,,,,,,,,,,,,,Jamia Masjid,Sulaiman Park,Begum Pura,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHID TRUST,,,,,,,,,,,,,,,,,,,Kitab Ghar,Darul Ifta Wal Irshad,Nazimabad No 4,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHID TRUST,,,,,,,,,,,,,,,,,,,Kitas Ghar,Nazimabad 4,Dahgel-Iftah,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHID TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Opposite Khyber Bank,Abbottabad Road,,,Mansehra,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHID TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Rm No 3,Moti Plaza,Near Liaquat Bagh,Muree Road,Rawalpindi,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHID TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin,Top Floor,Dr. Dawa Khan Dental Clinic Surgeon,Main Baxae,Mingora,Swat,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RASHID TRUST,,,,,,,,,,,,,,,,,,,Office Dha'rbi-M'unin ZR Brothers,Katcherry Road,Chowk Yadgaar,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0009 (UN Ref):QDe.005 Headquarters are in Pakistan. Operations in Afghanistan: Herat Jalalabad, Kabul, Kandahar, Mazar Sherif. Also operations in Kosovo, Chechnya. Involved in the financing of Al-Qaida and the Taliban. Until 21 Oct. 2008, this entity appeared also as ""Aid Organization of the Ulema, Pakistan"" (QDe.073), listed on 24 Apr. 2002 and amended on 25 Jul. 2006. The two entries Al Rashid Trust (QDe.005) and Aid Organization of the Ulema, Pakistan (QDe.073) were consolidated into this entity on 21 Oct. 2008. Founded by Mufti Rashid Ahmad Ledahyanoy (deceased). Associated with Jaish-i-Mohammed (QDe.019). Banned in Pakistan since Oct. 2001. Despite the closure of its offices in Pakistan in February 2007 it has continued its activities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):0300-8209199. 042-6812081. 2623818-19. 4979263. 587-2545. 6623814. 6683301",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6968 +AL-RAWI,Abu,Sadek,,,,,,,,00/00/1977,Binnish,Syria,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0113 (UN Ref):QDi.325 Official spokesman of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and emir of ISIL in Syria, closely associated with Abu Mohammed al-Jawlani (QDi.317) and Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809950",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13086 +AL-RAWI,Yasser,Khalaf,Hussein,Nazal,,,,,,00/00/1977,Binnish,Syria,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0113 (UN Ref):QDi.325 Official spokesman of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and emir of ISIL in Syria, closely associated with Abu Mohammed al-Jawlani (QDi.317) and Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809950",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13086 +ALRAWI,Abou,Sadeq,,,,,,,,00/00/1977,Binnish,Syria,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0113 (UN Ref):QDi.325 Official spokesman of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and emir of ISIL in Syria, closely associated with Abu Mohammed al-Jawlani (QDi.317) and Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809950",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13086 +ALRAWI,Yaser,Khalaf,Nazzal,,,,,,,00/00/1977,Binnish,Syria,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0113 (UN Ref):QDi.325 Official spokesman of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and emir of ISIL in Syria, closely associated with Abu Mohammed al-Jawlani (QDi.317) and Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809950",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13086 +AL-RAWI,Ayad,Futayyih,,,,,,,,00/00/1953,Ramadi,Iraq,,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0075 (UN Ref):IQi.014,Individual,AKA,Good quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7591 +AL-RAWI,AYAD,FUTAYYIH,KHALIFA,,,,عياد فتيح خليفة الراوي,,,00/00/1942,Rawah,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0091 (UN Ref):IQi.030,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7590 +AL-RAWI,SAIF-AL-DIN,FULAYYIH,HASSAN TAHA,,,,سيف الدين فليح حسن طه الراوي,,,00/00/1953,Ramadi,Iraq,,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0075 (UN Ref):IQi.014,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7591 +AL-RAYMI,Qasim,,,,,,,,,05/06/1978,"Raymah village, Sanaa Governorate",Yemen,Yemen,00344994,"Yemeni. Issue date: 03/07/1999, issued in Sanaa.",973406,Yemeni national identification number. Issued on 3 Jul. 1996,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0288 (UN Ref):QDi.282 Mother’s name: Fatima Muthanna Yahya. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Al-Qaida in the Arabian Peninsula (QDe.129) since Jun. 2015, pledged loyalty to Aiman al-Zawahiri (QDi.006). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4470245",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/05/2010,11/05/2010,31/12/2020,11123 +AL-RAYMI,Qassim,,,,,,,,,05/06/1978,"Raymah village, Sanaa Governorate",Yemen,Yemen,00344994,"Yemeni. Issue date: 03/07/1999, issued in Sanaa.",973406,Yemeni national identification number. Issued on 3 Jul. 1996,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0288 (UN Ref):QDi.282 Mother’s name: Fatima Muthanna Yahya. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Al-Qaida in the Arabian Peninsula (QDe.129) since Jun. 2015, pledged loyalty to Aiman al-Zawahiri (QDi.006). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4470245",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/05/2010,11/05/2010,31/12/2020,11123 +AL-REHMAN,Matti,,,,,,,,,00/00/1977,"Chak number 36/DNB, Rajkan, Madina Colony, Bahawalpur District, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0224 (UN Ref):QDi.296 Physical description: 5 feet 2 inches; 157,4 cm. Name of father: Ali Muhammad. Mati ur-Rehman is the chief operational commander of Lashkar i Jhangvi (LJ) (QDe.096). Associated with Harakat-ul Jihad Islami (QDe.130). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4674457",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,02/09/2011,22/08/2011,31/12/2020,12038 +AL-RIMI,Qasim,Yahya,Mahdi,'Abd,,,,,,05/06/1978,"Raymah village, Sanaa Governorate",Yemen,Yemen,00344994,"Yemeni. Issue date: 03/07/1999, issued in Sanaa.",973406,Yemeni national identification number. Issued on 3 Jul. 1996,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0288 (UN Ref):QDi.282 Mother’s name: Fatima Muthanna Yahya. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Al-Qaida in the Arabian Peninsula (QDe.129) since Jun. 2015, pledged loyalty to Aiman al-Zawahiri (QDi.006). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4470245",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,26/05/2010,11/05/2010,31/12/2020,11123 +AL-RIMI,Qasim,,,,,,,,,05/06/1978,"Raymah village, Sanaa Governorate",Yemen,Yemen,00344994,"Yemeni. Issue date: 03/07/1999, issued in Sanaa.",973406,Yemeni national identification number. Issued on 3 Jul. 1996,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0288 (UN Ref):QDi.282 Mother’s name: Fatima Muthanna Yahya. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Al-Qaida in the Arabian Peninsula (QDe.129) since Jun. 2015, pledged loyalty to Aiman al-Zawahiri (QDi.006). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4470245",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/05/2010,11/05/2010,31/12/2020,11123 +AL-RIMI,QASIM,MOHAMED,MAHDI,,,,قاسم محمد مهدي الريمي,,,05/06/1978,"Raymah village, Sanaa Governorate",Yemen,Yemen,00344994,"Yemeni. Issue date: 03/07/1999, issued in Sanaa.",973406,Yemeni national identification number. Issued on 3 Jul. 1996,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0288 (UN Ref):QDi.282 Mother’s name: Fatima Muthanna Yahya. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Al-Qaida in the Arabian Peninsula (QDe.129) since Jun. 2015, pledged loyalty to Aiman al-Zawahiri (QDi.006). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4470245",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,26/05/2010,11/05/2010,31/12/2020,11123 +ALROSA,,,,,,,Алроса,Cyrillic,,,,,,,,,,,"ul. Lenina, 6",Mirny,,,,Republic of Sakha (Yakutia),678174,Russia,"(UK Sanctions List Ref):RUS1075 (UK Statement of Reasons):As a diamond mining company, part-owned by the Russian State, ALROSA is an entity obtaining a benefit from and supporting the Government of Russia by carrying out business in the Russian extractives sector, a sector of strategic significance to the Government of Russia, and carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 (41136) 90021 (Website):alrosa.ru (Email address):info@alrosa.ru",Entity,Primary name,,Russia,24/03/2022,24/03/2022,15/07/2022,15018 +ALROSA COMPANY PJSC,,,,,,,,,,,,,,,,,,,"ul. Lenina, 6",Mirny,,,,Republic of Sakha (Yakutia),678174,Russia,"(UK Sanctions List Ref):RUS1075 (UK Statement of Reasons):As a diamond mining company, part-owned by the Russian State, ALROSA is an entity obtaining a benefit from and supporting the Government of Russia by carrying out business in the Russian extractives sector, a sector of strategic significance to the Government of Russia, and carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 (41136) 90021 (Website):alrosa.ru (Email address):info@alrosa.ru",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,15/07/2022,15018 +AL-ROSTOM,Saqer,,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +AL-ROSTOM,Saqer,Asaad,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +AL-ROSTOM,Saqer,Asad,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +AL-ROSTOM,Saqer,As'ad,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +AL-ROSTOM,Saqr,,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +AL-ROSTOM,Saqr,Asaad,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +AL-ROSTOM,Saqr,Asad,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +AL-ROSTOM,Saqr,As'ad,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +AL-RUMAYSH,MU'TASSIM,YAHYA,'ALI,,,,,,,04/01/1973,Jeddah,Saudi Arabia,Yemen,01055336,Yemen,2054275397,"Saudi Arabia alien registration number, issued on 22 Jul. 1998.",,,,,,,,,,"(UK Sanctions List Ref):AQD0257 (UN Ref):QDi.369 Financial and foreign fighter facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Member of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) since at least Jun. 2014. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13294 +ALRUSTOM,Saqer,,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +ALRUSTOM,Saqr,,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +AL-RUSTOM,Saqer,Asaad,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +AL-RUSTOM,Saqer,Asad,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +AL-RUSTOM,Saqer,As'ad,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +AL-RUSTOM,Saqr,Asaad,,,,,صقر أسعد الرستم,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +AL-RUSTOM,Saqr,Asad,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +AL-RUSTOM,Saqr,As'ad,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +AL-SA'ADI,Mansur,Ahmad,,,,,منصور السعادي,Arabic,Arabic,00/00/1988,,Yemen,Yemen,,,,,Houthi Naval Forces Chief of Staff,,,,,,,,,"(UK Sanctions List Ref):YEM0013 (UN Ref):YEi.010 (UK Statement of Reasons):Houthi Naval Forces Chief of Staff, who has masterminded lethal attacks against international shipping in the Red Sea, plays a leading role in Houthi naval efforts that directly threaten the peace, security, and stability of Yemen. (Gender):Male",Individual,Primary name,,Yemen,28/09/2022,28/09/2022,28/09/2022,15592 +AL-SABAI,Hani,al-Sayyid,,,,,,,,01/03/1961,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +AL-SABAI,Hani,al-Sayyid,,,,,,,,16/06/1960,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +AL-SABBAN,Bishr,,,,,,بشر الصبان,,,00/00/1966,Damascus,Syria,Syria,,,,,Former Governor of Damascus,,,,,,,,,"(UK Sanctions List Ref):SYR0031 Links to Bashar Asad (UK Statement of Reasons):As former Governor of Damascus, who was appointed by Bashar al-Assad, he has been involved in supporting the regime an has been responsible for the violent repression against the civilian population in Syria, including engaging in discriminatory practices against Sunni communities within the capital. (Gender):Male",Individual,Primary name,,Syria,28/10/2016,31/12/2020,13/05/2022,13386 +AL-SABBAN,Bishr,Mazin,,,,,,,,00/00/1966,Damascus,Syria,Syria,,,,,Former Governor of Damascus,,,,,,,,,"(UK Sanctions List Ref):SYR0031 Links to Bashar Asad (UK Statement of Reasons):As former Governor of Damascus, who was appointed by Bashar al-Assad, he has been involved in supporting the regime an has been responsible for the violent repression against the civilian population in Syria, including engaging in discriminatory practices against Sunni communities within the capital. (Gender):Male",Individual,AKA,,Syria,28/10/2016,31/12/2020,13/05/2022,13386 +AL-SABBAN,Mohammed,Bishr,,,,,,,,00/00/1966,Damascus,Syria,Syria,,,,,Former Governor of Damascus,,,,,,,,,"(UK Sanctions List Ref):SYR0031 Links to Bashar Asad (UK Statement of Reasons):As former Governor of Damascus, who was appointed by Bashar al-Assad, he has been involved in supporting the regime an has been responsible for the violent repression against the civilian population in Syria, including engaging in discriminatory practices against Sunni communities within the capital. (Gender):Male",Individual,AKA,,Syria,28/10/2016,31/12/2020,13/05/2022,13386 +AL-SA'DI,AMIR,HAMUDI,HASSAN,,,,عامر حمودي حسن السعدي,,,05/04/1938,Baghdad,Iraq,Iraq,(1) NO33301/862. (2) M0003264580 (3) H0100009.,(1) Issued 17 Oct 1997. Expires 1 Oct 2005 (2) - (3) Issued May 2001,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0093 (UN Ref):IQi.032,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7592 +AL-SAFFAF,Salam,Mohammad,,,,,,,,00/00/1979,,,Syria,,,,,Administrative Development Minister. Appointed in March 2017,,,,,,,,,(UK Sanctions List Ref):SYR0213 (UK Statement of Reasons):Administrative Development Minister. Appointed March 2017. (Gender):Female,Individual,Primary name,,Syria,07/06/2017,31/12/2020,31/12/2020,13470 +AL-SAHL,Abu,Luqman,,,,,,,,00/00/1973,"Sahl Village, Raqqa Province",Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0132 (UN Ref):QDi.384 A leader of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). As of Jun, 2015, al-Shawakh was the ISIL governor of Aleppo. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13317 +AL-SAHRAOUI,Adnan,Abu,Walid,,,,,,,16/02/1973,Laayoune,,,,,,,,,,,,Ménaka,Gao Region,,Mali,"(UK Sanctions List Ref):AQD0121 (UN Ref):QDi.415 Former spokesperson of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Emir of the Al-Mourabitoun (QDe.141) group in Mali. Pledged allegiance to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115) in May 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6241501",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/08/2018,09/08/2018,31/12/2020,13706 +AL-SAHRAOUI,ADNAN,ABOU WALID,,,,,عدنان أبو وليد الصحراوي,,,16/02/1973,Laayoune,,,,,,,,,,,,Ménaka,Gao Region,,Mali,"(UK Sanctions List Ref):AQD0121 (UN Ref):QDi.415 Former spokesperson of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Emir of the Al-Mourabitoun (QDe.141) group in Mali. Pledged allegiance to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115) in May 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6241501",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,10/08/2018,09/08/2018,31/12/2020,13706 +AL-SAHRAWI,Adnan,Abu,Waleed,,,,,,,16/02/1973,Laayoune,,,,,,,,,,,,Ménaka,Gao Region,,Mali,"(UK Sanctions List Ref):AQD0121 (UN Ref):QDi.415 Former spokesperson of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Emir of the Al-Mourabitoun (QDe.141) group in Mali. Pledged allegiance to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115) in May 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6241501",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/08/2018,09/08/2018,31/12/2020,13706 +AL-SAHRAWI,Adnan,Abu,Walid,,,,,,,16/02/1973,Laayoune,,,,,,,,,,,,Ménaka,Gao Region,,Mali,"(UK Sanctions List Ref):AQD0121 (UN Ref):QDi.415 Former spokesperson of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Emir of the Al-Mourabitoun (QDe.141) group in Mali. Pledged allegiance to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115) in May 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6241501",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/08/2018,09/08/2018,31/12/2020,13706 +AL-SAHRAWI,Nasim,,,,,,,,,03/08/1973,Bizerta,Tunisia,Tunisia,,,,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0276 (UN Ref):QDi.222 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years detention on 20 Nov. 2008. Sentenced in Tunisia to 4 years imprisonment for terrorist activity and in detention in Tunisia as at Jun. 2009. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440724,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8918 +AL-SALBI,Amir,Muhammad Sa'id,Abdal-Rahman,,,,أمیر محمد سعید عبد الرحمن المولى السلبي,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-SALBI,Amir,Muhammad Sa'id,Abdal-Rahman,,,,أمیر محمد سعید عبد الرحمن المولى السلبي,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-SALBI,Amir,Muhammad Sa'id,Abdal-Rahman,,,,أمیر محمد سعید عبد الرحمن المولى السلبي,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-SALBI,Amir,Muhammad Sa'id,Abdal-Rahman,,,,أمیر محمد سعید عبد الرحمن المولى السلبي,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-SALBI,Amir,Muhammad Sa'id,Abdal-Rahman,,,,أمیر محمد سعید عبد الرحمن المولى السلبي,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-SALBI,Amir,Muhammad Sa'id,Abdal-Rahman,,,,أمیر محمد سعید عبد الرحمن المولى السلبي,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-SALBI,Amir,Muhammad Sa'id,Abdal-Rahman,,,,أمیر محمد سعید عبد الرحمن المولى السلبي,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-SALBI,Amir,Muhammad Sa'id,Abdal-Rahman,,,,أمیر محمد سعید عبد الرحمن المولى السلبي,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-SALBI,Amir,Muhammad Sa'id,Abdal-Rahman,,,,أمیر محمد سعید عبد الرحمن المولى السلبي,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-SALEEM,Ali,,,,,,,,,,,,,,,,,Director of the supplies office of the Syrian Ministry of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0009 (UK Statement of Reasons):Director of the supplies office of the Syrian Ministry of Defence, entry point for all arms acquisitions by the Syrian army. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12040 +AL-SALEEM,Ayoub,,,,,,,,,,,,,,,,,Director of the supplies office of the Syrian Ministry of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0009 (UK Statement of Reasons):Director of the supplies office of the Syrian Ministry of Defence, entry point for all arms acquisitions by the Syrian army. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12040 +AL-SALIM,Ali,,,,,,,,,,,,,,,,,Director of the supplies office of the Syrian Ministry of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0009 (UK Statement of Reasons):Director of the supplies office of the Syrian Ministry of Defence, entry point for all arms acquisitions by the Syrian army. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12040 +AL-SALIM,Ayoub,,,,,,,,,,,,,,,,,Director of the supplies office of the Syrian Ministry of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0009 (UK Statement of Reasons):Director of the supplies office of the Syrian Ministry of Defence, entry point for all arms acquisitions by the Syrian army. (Gender):Male",Individual,Primary name,,Syria,24/08/2011,31/12/2020,31/12/2020,12040 +AL-SALTI,Akram,Muhammad,,,,,,,,00/00/1945,Safad,Palestine,,,,,,Commander-in-Chief and Chief of Staff of the Palestine Liberation Army,,,,,,,,,"(UK Sanctions List Ref):RUS1548 (UK Statement of Reasons):Muhammed AL-SALTI is the Commander-in-Chief of the Palestine Liberation Army. Muhammed AL-SALTI is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because AL-SALTI has been recruiting Palestinians refugees to fight alongside Russian forces in Ukraine. Therefore, AL SALTI is engaging in and providing support for actions or policies that have which destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/07/2022,26/07/2022,26/07/2022,15476 +AL-SALTI,Muhamad,,,,,,,,,00/00/1945,Safad,Palestine,,,,,,Commander-in-Chief and Chief of Staff of the Palestine Liberation Army,,,,,,,,,"(UK Sanctions List Ref):RUS1548 (UK Statement of Reasons):Muhammed AL-SALTI is the Commander-in-Chief of the Palestine Liberation Army. Muhammed AL-SALTI is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because AL-SALTI has been recruiting Palestinians refugees to fight alongside Russian forces in Ukraine. Therefore, AL SALTI is engaging in and providing support for actions or policies that have which destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/07/2022,26/07/2022,26/07/2022,15476 +AL-SALTI,Muhammad,,,,,Major General,,,,00/00/1945,Safad,Palestine,,,,,,Commander-in-Chief and Chief of Staff of the Palestine Liberation Army,,,,,,,,,"(UK Sanctions List Ref):RUS1548 (UK Statement of Reasons):Muhammed AL-SALTI is the Commander-in-Chief of the Palestine Liberation Army. Muhammed AL-SALTI is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because AL-SALTI has been recruiting Palestinians refugees to fight alongside Russian forces in Ukraine. Therefore, AL SALTI is engaging in and providing support for actions or policies that have which destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15476 +AL-SAMARRA’I,Ibrahim,‘Awad,Ibrahim,,,,,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +AL-SAMARRA’I,Ibrahim,‘Awad,Ibrahim,,,,,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +AL-SAMARRAI,Ibrahim,'Awad Ibrahim,al-Badri,,,,,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +AL-SAMARRAI,Ibrahim,'Awad Ibrahim,al-Badri,,,,,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +AL-SAMARRAI',Ibrahim,'Awwad Ibrahim,'Ali al-Badri,,,Doctor,,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +AL-SAMARRAI',Ibrahim,'Awwad Ibrahim,'Ali al-Badri,,,Doctor,,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +AL-SAMARRA'I,Ibrahim,Awwad Ibrahim,,,,Doctor,,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +AL-SAMARRA'I,Ibrahim,Awwad Ibrahim,,,,Doctor,,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +AL-SANA'AI,Abu,Hurayah,,,,,,,,05/06/1978,"Raymah village, Sanaa Governorate",Yemen,Yemen,00344994,"Yemeni. Issue date: 03/07/1999, issued in Sanaa.",973406,Yemeni national identification number. Issued on 3 Jul. 1996,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0288 (UN Ref):QDi.282 Mother’s name: Fatima Muthanna Yahya. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Al-Qaida in the Arabian Peninsula (QDe.129) since Jun. 2015, pledged loyalty to Aiman al-Zawahiri (QDi.006). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4470245",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,26/05/2010,11/05/2010,31/12/2020,11123 +AL-SARI,Hassan,,,,,,,,,00/00/1953,Hama,Syria,Syria,,,,,Former Minister of State,,,,,,,,,(UK Sanctions List Ref):SYR0080 (UK Statement of Reasons):Former Minister of State. Associated with the regime and its violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,26/03/2012,31/12/2020,31/12/2020,12642 +AL-SAUDI,Abu,Maryam,,,,,,,,15/09/1978,Dammam,Saudi Arabia,Saudi Arabia,E126785,"Saudi Arabia number, issued on 27 May 2002. Expired on 3 Apr. 2007.",,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0123 (UN Ref):QDi.329 Senior member of Al-Qaida (QDe.004). Wanted by the Saudi Arabian Government for terrorism. Father's name is Abdullah Saleh al Zahrani. Physical description: eye colour: dark; hair colour: dark; complexion: olive. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13126 +AL-SAUDI,Abu,Sarah,,,,,,,,19/01/1986,,,Saudi Arabia,(1) G579315 (2) K142736,"(1) Saudi Arabia (2) Saudi Arabia. issued on 14 Jul. 2011 in Al-Khafji, Saudi Arabia",,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0172 (UN Ref):QDi.392 Was the lead oil and gas division official of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), for Al Barakah Governorate, Syrian Arab Republic, as of May 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5943051",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,11/02/2022,13351 +AL-SAUDI,Abu,Wafa,,,,,,,,04/12/1971,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-SAUDI,Abu,Wafa,,,,,,,,00/00/1977,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-SAYED,Ahmad,,,,,,,,,00/00/1965,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0363 (UK Statement of Reasons):Minister of Justice. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2020,31/12/2020,31/12/2020,13979 +AL-SAYYAD COMPANY FOR GUARDING AND PROTECTION SERVICES LTD,,,,,,,,,,,,,,,,,,,,,,,,Al Suqaylabiya (region of Hama),,Syria,"(UK Sanctions List Ref):RUS1550 (UK Statement of Reasons):AL-SAYYAD COMPANY FOR GUARDING AND PROTECTION SERVICES LTD is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because they are engaging in and providing support for actions or policies that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty or independence of Ukraine by recruiting fighters and mercenaries in Syria to fight alongside Russian forces in Ukraine. (Type of entity):Security company",Entity,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15477 +AL-SAYYED,Ahmad,,,,,,,,,00/00/1965,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0363 (UK Statement of Reasons):Minister of Justice. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2020,31/12/2020,31/12/2020,13979 +AL-SAYYED,Khayr,al-Din,,,,,،السيد الدين خير,,,,,,,,,,,Former Governor of Idlib,,,,,,,,,"(UK Sanctions List Ref):SYR0124 Brother of Dr. Mohammad Abdul-Sattar al-Sayyed, Minister of Awqaf (UK Statement of Reasons):Former Governor of Idlib, associated with and appointed by Bashar al-Assad. Benefits from and supports the regime, including by providing support for Syrian Armed Forces and pro-regime militia. Associated with the regime's Minister of Awqaf, Dr Mohammad Abdul-Sattar al-Sayyed, who is his brother. (Gender):Male",Individual,Primary name,,Syria,28/10/2016,31/12/2020,13/05/2022,13389 +AL-SAYYED,Mohammad,Abdul-Sattar,,,,,,,,00/00/1958,Tartus,,Syria,,,,,Minister of Religious Endowments,,,,,,,,,"(UK Sanctions List Ref):SYR0160 (UK Statement of Reasons):State Minister, appointed in July 2016. Minister for Religious Endowments. As a Government Minister he shares the regimes violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,19/01/2021,12765 +AL-SAYYED,Mohammed,Abdul,,,,,,,,00/00/1958,Tartus,,Syria,,,,,Minister of Religious Endowments,,,,,,,,,"(UK Sanctions List Ref):SYR0160 (UK Statement of Reasons):State Minister, appointed in July 2016. Minister for Religious Endowments. As a Government Minister he shares the regimes violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,19/01/2021,12765 +AL-SAYYED,Mohammed,Abdul,Sattar,,,,,,,00/00/1958,Tartus,,Syria,,,,,Minister of Religious Endowments,,,,,,,,,"(UK Sanctions List Ref):SYR0160 (UK Statement of Reasons):State Minister, appointed in July 2016. Minister for Religious Endowments. As a Government Minister he shares the regimes violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,19/01/2021,12765 +AL-SEBAI,Hani,Yousef,,,,,,,,01/03/1961,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +AL-SEBAI,Hani,Yousef,,,,,,,,16/06/1960,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +AL-SEHRI,Musherref,,,,,,,,,00/00/1982,,,Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0034 (UK Statement of Reasons):Turki Muserref M. Alsehri was an Intelligence Officer in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi on the 2 October 2018 as part of the 15 man team sent to Istanbul, Turkey, by Saudi authorities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13879 +AL-SEHRI,Turki,,,,,,,,,00/00/1982,,,Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0034 (UK Statement of Reasons):Turki Muserref M. Alsehri was an Intelligence Officer in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi on the 2 October 2018 as part of the 15 man team sent to Istanbul, Turkey, by Saudi authorities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13879 +AL-SEHRI,Turki,Muserref,,,,,,,,00/00/1982,,,Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0034 (UK Statement of Reasons):Turki Muserref M. Alsehri was an Intelligence Officer in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi on the 2 October 2018 as part of the 15 man team sent to Istanbul, Turkey, by Saudi authorities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13879 +AL-SEKHNI,Adnan,Abdo,,,,,,,,00/00/1961,Aleppo,,,,,,,Former Minister of Industry,,,,,,,,,(UK Sanctions List Ref):SYR0068 (UK Statement of Reasons):Former Minister of Industry. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,19/01/2021,12781 +AL-SEKHNI,Adnan,Abdou,,,,,,,,00/00/1961,Aleppo,,,,,,,Former Minister of Industry,,,,,,,,,(UK Sanctions List Ref):SYR0068 (UK Statement of Reasons):Former Minister of Industry. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,19/01/2021,12781 +AL-SEKHNY,Adnan,Abdo,,,,,,,,00/00/1961,Aleppo,,,,,,,Former Minister of Industry,,,,,,,,,(UK Sanctions List Ref):SYR0068 (UK Statement of Reasons):Former Minister of Industry. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,19/01/2021,12781 +AL-SEKHNY,Adnan,Abdou,,,,,,,,00/00/1961,Aleppo,,,,,,,Former Minister of Industry,,,,,,,,,(UK Sanctions List Ref):SYR0068 (UK Statement of Reasons):Former Minister of Industry. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,19/01/2021,12781 +AL-SENUSSI,ABDULLAH,,,,,,,,,00/00/1948,(1) - . (2) Anefif (Kidal),(1) Sudan (2) Mali,,B0515260,"Date of issue: 10 Jan 2012. Place of issue: Bamako, Mali. Date of expiration: 10 Jan 2017.",073/SPICRE,"Mali ID Number. Date of issue: 6 Dec 2011; Place of issue: Essouck, Mali",Director Military Intelligence,,,,,,,,Libya,(UK Sanctions List Ref):LIB0041 (UN Ref):LYi.018 Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525995. Libya (in custody),Individual,Primary name,,Libya,03/03/2011,26/02/2011,01/02/2021,11650 +AL-SENUSSI,ABDULLAH,,,,,,,,,00/00/1949,(1) - . (2) Anefif (Kidal),(1) Sudan (2) Mali,,B0515260,"Date of issue: 10 Jan 2012. Place of issue: Bamako, Mali. Date of expiration: 10 Jan 2017.",073/SPICRE,"Mali ID Number. Date of issue: 6 Dec 2011; Place of issue: Essouck, Mali",Director Military Intelligence,,,,,,,,Libya,(UK Sanctions List Ref):LIB0041 (UN Ref):LYi.018 Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525995. Libya (in custody),Individual,Primary name,,Libya,03/03/2011,26/02/2011,01/02/2021,11650 +AL-SHA’AR,Mohammad,,,,,,,,,,,,Syria,,,,,Military Official,,,,,,,,,(UK Sanctions List Ref):SYR0381 (UK Statement of Reasons):Political Security Division. Military Official involved in the violence in Homs.,Individual,Primary name variation,,Syria,13/05/2022,13/05/2022,13/05/2022,15382 +AL-SHA’AR,Mohammed,,,,,,,,,,,,Syria,,,,,Military Official,,,,,,,,,(UK Sanctions List Ref):SYR0381 (UK Statement of Reasons):Political Security Division. Military Official involved in the violence in Homs.,Individual,Primary name variation,,Syria,13/05/2022,13/05/2022,13/05/2022,15382 +AL-SHA’AR,Muhammad,,,,,,,,,,,,Syria,,,,,Military Official,,,,,,,,,(UK Sanctions List Ref):SYR0381 (UK Statement of Reasons):Political Security Division. Military Official involved in the violence in Homs.,Individual,Primary name variation,,Syria,13/05/2022,13/05/2022,13/05/2022,15382 +AL-SHAAR,Mohamed,,,,,,,,,,,,Syria,,,,,Military Official,,,,,,,,,(UK Sanctions List Ref):SYR0381 (UK Statement of Reasons):Political Security Division. Military Official involved in the violence in Homs.,Individual,Primary name variation,,Syria,13/05/2022,13/05/2022,13/05/2022,15382 +AL-SHAAR,Mohammad,,,,,,,,,,,,Syria,,,,,Military Official,,,,,,,,,(UK Sanctions List Ref):SYR0381 (UK Statement of Reasons):Political Security Division. Military Official involved in the violence in Homs.,Individual,Primary name variation,,Syria,13/05/2022,13/05/2022,13/05/2022,15382 +AL-SHAAR,Mohammed,,,,,,,,,,,,Syria,,,,,Military Official,,,,,,,,,(UK Sanctions List Ref):SYR0381 (UK Statement of Reasons):Political Security Division. Military Official involved in the violence in Homs.,Individual,Primary name,,Syria,13/05/2022,13/05/2022,13/05/2022,15382 +AL-SHAAR,Muhammad,,,,,,,,,,,,Syria,,,,,Military Official,,,,,,,,,(UK Sanctions List Ref):SYR0381 (UK Statement of Reasons):Political Security Division. Military Official involved in the violence in Homs.,Individual,Primary name variation,,Syria,13/05/2022,13/05/2022,13/05/2022,15382 +AL-SHA'AR,Mohamed,,,,,,,,,,,,Syria,,,,,Military Official,,,,,,,,,(UK Sanctions List Ref):SYR0381 (UK Statement of Reasons):Political Security Division. Military Official involved in the violence in Homs.,Individual,Primary name variation,,Syria,13/05/2022,13/05/2022,13/05/2022,15382 +AL-SHAAR,Mohamed,Ibrahim,,,,,,,,00/00/1950,Latakia Province,Syria,Syria,,,,,(1) Major General (2) Minister for the Interior,,,,,,,,,(UK Sanctions List Ref):SYR0164 (UK Statement of Reasons):There are reasonable grounds to suspect that Mohammed Al-Shaar has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Interior between at least 2011 and 2019. (Gender):Male,Individual,Primary name variation,,Syria,01/12/2011,31/12/2020,13/05/2022,11910 +AL-SHAAR,Mohammad,Ibrahim,,,,,,,,00/00/1950,Latakia Province,Syria,Syria,,,,,(1) Major General (2) Minister for the Interior,,,,,,,,,(UK Sanctions List Ref):SYR0164 (UK Statement of Reasons):There are reasonable grounds to suspect that Mohammed Al-Shaar has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Interior between at least 2011 and 2019. (Gender):Male,Individual,Primary name,,Syria,01/12/2011,31/12/2020,13/05/2022,11910 +AL-SHAAR,Mohammed,Ibrahim,,,,,,,,00/00/1950,Latakia Province,Syria,Syria,,,,,(1) Major General (2) Minister for the Interior,,,,,,,,,(UK Sanctions List Ref):SYR0164 (UK Statement of Reasons):There are reasonable grounds to suspect that Mohammed Al-Shaar has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Interior between at least 2011 and 2019. (Gender):Male,Individual,Primary name variation,,Syria,01/12/2011,31/12/2020,13/05/2022,11910 +AL-SHAAR,Muhammad,Ibrahim,,,,,,,,00/00/1950,Latakia Province,Syria,Syria,,,,,(1) Major General (2) Minister for the Interior,,,,,,,,,(UK Sanctions List Ref):SYR0164 (UK Statement of Reasons):There are reasonable grounds to suspect that Mohammed Al-Shaar has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Interior between at least 2011 and 2019. (Gender):Male,Individual,Primary name variation,,Syria,01/12/2011,31/12/2020,13/05/2022,11910 +AL-SHA'AR,Hisham,Mohammad,Mamdouth,,,,,,,00/00/1958,Damascus,Syria,Syria,,,,,Former Justice Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0088 (UK Statement of Reasons):Former Justice Minister. As a former Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population. (Gender):Male",Individual,Primary name,,Syria,07/06/2017,31/12/2020,31/12/2020,13468 +AL-SHA'AR,Mohamed,Ibrahim,,,,,,,,00/00/1950,Latakia Province,Syria,Syria,,,,,(1) Major General (2) Minister for the Interior,,,,,,,,,(UK Sanctions List Ref):SYR0164 (UK Statement of Reasons):There are reasonable grounds to suspect that Mohammed Al-Shaar has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Interior between at least 2011 and 2019. (Gender):Male,Individual,Primary name variation,,Syria,01/12/2011,31/12/2020,13/05/2022,11910 +AL-SHA'AR,Mohammad,Ibrahim,,,,,,,,00/00/1950,Latakia Province,Syria,Syria,,,,,(1) Major General (2) Minister for the Interior,,,,,,,,,(UK Sanctions List Ref):SYR0164 (UK Statement of Reasons):There are reasonable grounds to suspect that Mohammed Al-Shaar has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Interior between at least 2011 and 2019. (Gender):Male,Individual,Primary name variation,,Syria,01/12/2011,31/12/2020,13/05/2022,11910 +AL-SHA'AR,Mohammed,Ibrahim,,,,,,,,00/00/1950,Latakia Province,Syria,Syria,,,,,(1) Major General (2) Minister for the Interior,,,,,,,,,(UK Sanctions List Ref):SYR0164 (UK Statement of Reasons):There are reasonable grounds to suspect that Mohammed Al-Shaar has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Interior between at least 2011 and 2019. (Gender):Male,Individual,Primary name variation,,Syria,01/12/2011,31/12/2020,13/05/2022,11910 +AL-SHA'AR,Muhammad,Ibrahim,,,,,,,,00/00/1950,Latakia Province,Syria,Syria,,,,,(1) Major General (2) Minister for the Interior,,,,,,,,,(UK Sanctions List Ref):SYR0164 (UK Statement of Reasons):There are reasonable grounds to suspect that Mohammed Al-Shaar has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime in that he served as Minister of Interior between at least 2011 and 2019. (Gender):Male,Individual,Primary name variation,,Syria,01/12/2011,31/12/2020,13/05/2022,11910 +AL-SHA'ARI,HASAN,AL-SALAHAYN,SALIH,,,,,,,00/00/1975,Derna,Libya,Libya,542858,,55252,,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0193 (UN Ref):QDi.385 Facilitator for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930734",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13318 +AL-SHABAAB,,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,Primary name,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +AL-SHABAAB AL-ISLAAM,,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +AL-SHABAAB AL-ISLAMIYA,,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +AL-SHABAAB AL-JIHAAD,,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +AL-SHAHID,Abu-Ahmad,,,,,,,,,30/12/1968,California,United States,(1) Jordan. (2) United States,,,(1) 548-91-5411 (2) 9681029476,(1) US social security (2) Jordanian,,,,,,,,,,"(UK Sanctions List Ref):AQD0291 (UN Ref):QDi.029 In custody in Jordan since 26 Feb. 2015 for recruitment and support to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Father’s name is Mohammad Hijazi. Mother’s name is Sakina. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1419275",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6974 +AL-SHA'IRI,Husayn,al-Salihin,Salih,,,,,,,00/00/1975,Derna,Libya,Libya,542858,,55252,,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0193 (UN Ref):QDi.385 Facilitator for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930734",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13318 +AL-SHAKLAR,Hajji,Salim,,,,,,,,20/02/1962,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,17 Tamoz,,,,,"Mosul, previous address",,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +AL-SHAKLAR,Hajji,Salim,,,,,,,,20/02/1962,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,Tel Afar – Al-Saad,,,,,Mosul,,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +AL-SHAKLAR,Hajji,Salim,,,,,,,,00/00/1959,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,Tel Afar – Al-Saad,,,,,Mosul,,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +AL-SHAKLAR,Hajji,Salim,,,,,,,,00/00/1959,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,17 Tamoz,,,,,"Mosul, previous address",,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +AL-SHAM AND AL-DARWISH COMPANY,,,,,,,شركة قاطرخي,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0359 Hussam AL-QATIRJI, CEO (EU-designated) Ultimate beneficial owner(s): Hussam AL-QATIRJI, Muhammad Baraa QATERJI (EU-designated) Relatives/business associates/entities or partners/links: Arvada/Arfada Petroleum Company JSC Registered address or each jurisdiction): Mazzah, Damascus, Syria (UK Statement of Reasons):Prominent and influential company operating across multiple sectors of the Syrian economy. By facilitating fuel, arms and ammunition trade towards between the regime and various actors including ISIS (Daesh) under the pretext of importing and exporting food items, supporting militias fighting alongside the regime and taking advantage of its ties with the regime to expand its commercial activity, Al Qatarji Company – whose board is headed by designated person Hossam Qatarji, a member of the Syrian People’s Assembly – supports and benefits from the Syrian regime. (Type of entity):Export. Import. Supplying oil and commodities. Trucking company (Subsidiaries):Arvada/Arfada Petroleum Company JSC",Entity,AKA,,Syria,17/02/2020,31/12/2020,13/05/2022,13822 +AL-SHAM COMPANY,,,,,,,,,,,,,,,,,,,P.O. Box 9525,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,,,Syria,"(UK Sanctions List Ref):SYR0311 Transport (UK Statement of Reasons):Economic entity financing the regime. Associated with Cham Holding and Rami Makhlouf. A subsidiary company of Cham Holding, which is controlled by Rami Makhlouf; largest holding company in Syria, benefiting from and supporting the regime. (Phone number):+963 11 99 62 (Type of entity):Private (Subsidiaries):Cham Holding (parent), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525 (Parent company):Parent and branches",Entity,AKA,,Syria,05/09/2011,31/12/2020,14/02/2022,12062 +AL-SHAM COMPANY,,,,,,,,,,,,,,,,,,,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,P.O. Box 9525,,,,"(UK Sanctions List Ref):SYR0288 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime (Phone number):+963 11 9962 (Type of entity):Investment. Private (Subsidiaries):Cham Holding (parent), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525 (Parent company):Cham Holding",Entity,AKA,,Syria,05/09/2011,31/12/2020,31/12/2020,12063 +AL-SHAM COMPANY,,,,,,,,,,,,,,,,,,,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,P.O. Box 9525,,,,"(UK Sanctions List Ref):SYR0287 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime (Phone number):+963 11 668 14000. +963 11 673 1044. +963 11 9962 (Website):www.chamholding.sy (Email address):info@chamholding.sy (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525",Entity,AKA,,Syria,26/09/2011,31/12/2020,31/12/2020,12152 +AL-SHAMI,Abu,Ahmad,,,,,,,,01/01/1969,"(1) Qalamun, Damascus Province (2) Ghutah, Damascus Province (3) Tadamon, Rif Dimashq",(1) Syria (2) Syria (3) Syria,(1) Syria. (2) Palestine,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0155 (UN Ref):QDi.399 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) for southern Syrian Arab Republic since July 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6013284. Syrian Arab Republic (Southern. Location as of July 2016),Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13446 +AL-SHAMI,Abu,Ahmad,,,,,,,,00/00/1971,"(1) Qalamun, Damascus Province (2) Ghutah, Damascus Province (3) Tadamon, Rif Dimashq",(1) Syria (2) Syria (3) Syria,(1) Syria. (2) Palestine,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0155 (UN Ref):QDi.399 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) for southern Syrian Arab Republic since July 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6013284. Syrian Arab Republic (Southern. Location as of July 2016),Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13446 +AL-SHAMI,Abu,al-Athir,,,,,,,,00/00/1979,,Saudi Arabia,,,,,,,,,,,,Homs,,Syria,"(UK Sanctions List Ref):AQD0138 (UN Ref):QDi.361 Shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) and in charge of ISIL’s media arm. ISIL’s provincial leader for Homs, Syrian Arab Republic as of mid-2014. Dubbed as the ISIL’s “kidnapper-in-chief”. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896778. Address location Homs, Syria, location as at Sep. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13292 +AL-SHAMI,Abu-Malik,,,,,,,,,17/08/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +AL-SHAMI,Abu-Malik,,,,,,,,,17/08/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,Arsal,Bekaa,,Lebanon,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +AL-SHAMI,Abu-Malik,,,,,,,,,01/01/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,Arsal,Bekaa,,Lebanon,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +AL-SHAMI,Abu-Malik,,,,,,,,,01/01/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +AL-SHAMI,Abu-Mohammad,al-Adnani,,,,,,,,00/00/1977,Binnish,Syria,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0113 (UN Ref):QDi.325 Official spokesman of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and emir of ISIL in Syria, closely associated with Abu Mohammed al-Jawlani (QDi.317) and Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809950",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13086 +AL-SHAMMARI,Muyassir,,,,,,,,,01/06/1976,"(1) Al-Shura, Mosul (2) Harara, Ninawa",(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0228 (UN Ref):QDi.337 Sharia amir of Al-Nusrah Front for the People of the Levant (QDe.137) as of early 2014. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13134 +AL-SHAMMARI,,,,,,,,,,01/06/1976,"(1) Al-Shura, Mosul (2) Harara, Ninawa",(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0228 (UN Ref):QDi.337 Sharia amir of Al-Nusrah Front for the People of the Levant (QDe.137) as of early 2014. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13134 +AL-SHAMMARI,HAMAD,AWAD,DAHI SARHAN,,,,حمد عوض ضاحي سرحان الشمري,,,31/01/1984,,,Kuwait,155454275,,284013101406,,,,,,,,,,,"(UK Sanctions List Ref):AQD0187 (UN Ref):QDi.381 Kuwait-based facilitator who provides financial services to, or in support of, Al-Qaida (QDe.004) and Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896809",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,31/12/2020,13279 +AL-SHAMMAT,Kinda,,,,,,,,,00/00/1973,,,Syria,,,,,Former Minister for Social Affairs,,,,,,,,,"(UK Sanctions List Ref):SYR0128 (UK Statement of Reasons):Former Social Affairs Minister in power after May 2011. Former Minister of Social Affairs from at least 2013 to 2015. As a former Government Minister, there are reasonable grounds to suspect that she has been involved in the repression of the civilian population and/or supported or benefitted from the Syrian regime. (Gender):Female",Individual,Primary name,,Syria,24/06/2014,31/12/2020,13/05/2022,12989 +AL-SHANQITI,Khalid,,,,,,,,,01/01/1975,,Mauritania,Mauritania,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0219 (UN Ref):QDi.015 Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423438,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6928 +AL-SHARAA,Farouk,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +AL-SHARAA,Farouq,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +AL-SHARAA,Faruq,,,,,,,,,10/12/1938,Daraa Governorate,Syria,,,,,,Former Vice President of Syria,,,,,,,,,(UK Sanctions List Ref):SYR0042 (UK Statement of Reasons):Former Vice-President of Syria; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,01/02/2021,11931 +ALSHARGAWI,Bashir,Saleh,Bashir,,,,,,,00/00/1946,Traghen,,,,,,,Former Head of Cabinet to Qadhafi,,,,,,,,South Africa,(UK Sanctions List Ref):LIB0017 (UK Statement of Reasons):Head of Cabinet of Muammar Qadhafi and banker acting for Muammar Qadhafi. Associated with Muammar Qadhafi and other involved persons. (Gender):Male,Individual,Primary name,,Libya,03/03/2011,31/12/2020,31/12/2020,11643 +AL-SHARIF,Amar,,,,,,,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +AL-SHARIF,Ammar,,,,,,يف الشر عمار,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +AL-SHARIF,Ammar,Medhat,,,,,,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +AL-SHARIKH,Abdul Mohsen,Abdullah,Ibrahim,,,,,,,13/07/1985,Saqra,Saudi Arabia,Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0105 (UN Ref):QDi.324 A long time facilitator and financier for Al-Qaida (QDe.004), appointed as a regional leader of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809944",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13085 +AL-SHAWAGH,Ali Musa,,,,,,,,,00/00/1973,"Sahl Village, Raqqa Province",Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0132 (UN Ref):QDi.384 A leader of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). As of Jun, 2015, al-Shawakh was the ISIL governor of Aleppo. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13317 +AL-SHAWAKH,Ali,al-Hamoud,,,,,,,,00/00/1973,"Sahl Village, Raqqa Province",Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0132 (UN Ref):QDi.384 A leader of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). As of Jun, 2015, al-Shawakh was the ISIL governor of Aleppo. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13317 +AL-SHAWAKH,Muhammad,Ali,,,,,,,,00/00/1973,"Sahl Village, Raqqa Province",Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0132 (UN Ref):QDi.384 A leader of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). As of Jun, 2015, al-Shawakh was the ISIL governor of Aleppo. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13317 +AL-SHAWAKH,ALI MUSA,,,,,,,,,00/00/1973,"Sahl Village, Raqqa Province",Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0132 (UN Ref):QDi.384 A leader of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). As of Jun, 2015, al-Shawakh was the ISIL governor of Aleppo. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13317 +AL-SHAWWAKH,Ibrahim,,,,,,,,,00/00/1973,"Sahl Village, Raqqa Province",Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0132 (UN Ref):QDi.384 A leader of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). As of Jun, 2015, al-Shawakh was the ISIL governor of Aleppo. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13317 +ALSHEBEL,Luna,,,,,,,,,01/09/1975,Suweida,Syria,Syria,,,,,Media Adviser to President Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0377 (UK Statement of Reasons):Adviser to President Assad and a prominent member of his inner circle. As Media Adviser to the President she supports the Syrian regime, which relies on disinformation and a lack of media freedom to repress the civilian population. She is also associated with the Syrian regime through her role as an adviser. (Gender):Female",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,14/02/2022,14070 +ALSHEHRI,Musherref,,,,,,,,,00/00/1982,,,Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0034 (UK Statement of Reasons):Turki Muserref M. Alsehri was an Intelligence Officer in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi on the 2 October 2018 as part of the 15 man team sent to Istanbul, Turkey, by Saudi authorities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13879 +ALSHEHRI,Turki,,,,,,,,,00/00/1982,,,Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0034 (UK Statement of Reasons):Turki Muserref M. Alsehri was an Intelligence Officer in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi on the 2 October 2018 as part of the 15 man team sent to Istanbul, Turkey, by Saudi authorities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13879 +ALSHEHRI,Turki,Muserref,,,,,,,,00/00/1982,,,Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0034 (UK Statement of Reasons):Turki Muserref M. Alsehri was an Intelligence Officer in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi on the 2 October 2018 as part of the 15 man team sent to Istanbul, Turkey, by Saudi authorities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13879 +ALSHEHRI,Waleed,Abdullah,M.,,,,,,,05/11/1980,Riyadh,Saudi Arabia,Saudi Arabia,R120404,,,,"Royal Guard, Major",,,,,,,,,"(UK Sanctions List Ref):GHR0032 (UK Statement of Reasons):Waleed Abdullah M. Alsehri held the positions of Royal Guard and Major in Saudi Arabia. He was directly involved in the unlawful killing of Jamal Khashoggi in the Saudi Consulate in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13871 +ALSHEHRI,Walid,,,,,,,,,05/11/1980,Riyadh,Saudi Arabia,Saudi Arabia,R120404,,,,"Royal Guard, Major",,,,,,,,,"(UK Sanctions List Ref):GHR0032 (UK Statement of Reasons):Waleed Abdullah M. Alsehri held the positions of Royal Guard and Major in Saudi Arabia. He was directly involved in the unlawful killing of Jamal Khashoggi in the Saudi Consulate in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13871 +AL-SHEIKHA,Kamal,,,,,,,,,00/00/1961,Damascus,,,,,,,Former Minster of Water Resources.,,,,,,,,,"(UK Sanctions List Ref):SYR0118 (UK Statement of Reasons):Former Minister of Water Resources in power after May 2011 (appointed 27.8.2014 under decree 273 - 2014). As a former Government Minister, shares responsibility for the Syrian regime’s violent repression of the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,08/01/2021,13152 +ALSHEVSKY,Andrey,Gennadievich,,,,,Альшевских Андрей Геннадьевич,,,14/05/1972,Sverdlovsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0609 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14554 +AL-SHIBL,Luna,,,,,,لونا الشبل,,,01/09/1975,Suweida,Syria,Syria,,,,,Media Adviser to President Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0377 (UK Statement of Reasons):Adviser to President Assad and a prominent member of his inner circle. As Media Adviser to the President she supports the Syrian regime, which relies on disinformation and a lack of media freedom to repress the civilian population. She is also associated with the Syrian regime through her role as an adviser. (Gender):Female",Individual,Primary name,,Syria,15/03/2021,15/03/2021,14/02/2022,14070 +AL-SHIHABI,Fares,,,,,,,,,07/05/1972,,,Syria,,,,,(1) President of Aleppo Chamber of Industry (2) Vice-chairman of Cham Holding (3) Chairman of the Federation of Chambers of Industry. Appointed in 16 December 2018,,,,,,,,,"(UK Sanctions List Ref):SYR0041 Son of Ahmad Chehabi (UK Statement of Reasons):President of Aleppo Chamber of Industry, Chairman of the Federation of Chambers of Industry since 16.12.2018. Vice-chairman of Cham Holding. Provides economic support to the Syrian regime. Former Member of the Syrian Parliament (2016-2020). (Gender):Male",Individual,Primary name variation,,Syria,05/09/2011,31/12/2020,16/06/2022,12058 +AL-SHIHABI,Fares,,,,,,,,,07/09/1972,,,Syria,,,,,(1) President of Aleppo Chamber of Industry (2) Vice-chairman of Cham Holding (3) Chairman of the Federation of Chambers of Industry. Appointed in 16 December 2018,,,,,,,,,"(UK Sanctions List Ref):SYR0041 Son of Ahmad Chehabi (UK Statement of Reasons):President of Aleppo Chamber of Industry, Chairman of the Federation of Chambers of Industry since 16.12.2018. Vice-chairman of Cham Holding. Provides economic support to the Syrian regime. Former Member of the Syrian Parliament (2016-2020). (Gender):Male",Individual,Primary name variation,,Syria,05/09/2011,31/12/2020,16/06/2022,12058 +AL-SHISHANI,Abu,Umar,,,,,,,,11/01/1986,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +AL-SHISHANI,Abu,Umar,,,,,,,,00/00/1982,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +AL-SHISHANI,Omar,,,,,,,,,11/01/1986,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +AL-SHISHANI,Omar,,,,,,,,,00/00/1982,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +AL-SHISHANI,Abu-Muslim,,,,,,,,,15/01/1970,"Grozny, Chechen Republic",Russia,(1) Russia. (2) Georgia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0266 (UN Ref):QDi.406 Associated with Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116583",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13517 +AL-SIBAI,Yaser,,,,,,,,,,,,,,,,,Former Minsiter of Public Works,,,,,,,,,(UK Sanctions List Ref):SYR0239 (UK Statement of Reasons):Former Minister of Public Works. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12776 +AL-SIBAI,Yasser,,,,,,,,,,,,,,,,,Former Minsiter of Public Works,,,,,,,,,(UK Sanctions List Ref):SYR0239 (UK Statement of Reasons):Former Minister of Public Works. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12776 +AL-SIBA'I,Yaser,,,,,,,,,,,,,,,,,Former Minsiter of Public Works,,,,,,,,,(UK Sanctions List Ref):SYR0239 (UK Statement of Reasons):Former Minister of Public Works. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12776 +AL-SIBA'I,Yasser,,,,,,,,,,,,,,,,,Former Minsiter of Public Works,,,,,,,,,(UK Sanctions List Ref):SYR0239 (UK Statement of Reasons):Former Minister of Public Works. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12776 +AL-SIKHNI,Adnan,Abdo,,,,,,,,00/00/1961,Aleppo,,,,,,,Former Minister of Industry,,,,,,,,,(UK Sanctions List Ref):SYR0068 (UK Statement of Reasons):Former Minister of Industry. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,19/01/2021,12781 +AL-SIKHNI,Adnan,Abdou,,,,,,,,00/00/1961,Aleppo,,,,,,,Former Minister of Industry,,,,,,,,,(UK Sanctions List Ref):SYR0068 (UK Statement of Reasons):Former Minister of Industry. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,19/01/2021,12781 +AL-SINDHI,Abdul Rehman,,,,,,عبد الرحمن السيندي,,,03/10/1965,Mirpur Khas,Pakistan,Pakistan,CV9157521,"Pakistan number, issued on 8 Sep. 2008, expires on 7 Sep. 2013.",44103-5251752-5,Pakistan national identity card number,,,,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0112 (UN Ref):QDi.309 Has provided facilitation and financial services to Al-Qaida (QDe.004). Associated with Harakatul Jihad Islami (QDe.130), Jaish-I-Mohammed (QDe.019), and Al-Akhtar Trust International (QDe.121). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040885",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,31/12/2020,12632 +AL-SINDHI,Abdur Rahman,,,,,,عبد الرحمن السيندي,,,03/10/1965,Mirpur Khas,Pakistan,Pakistan,CV9157521,"Pakistan number, issued on 8 Sep. 2008, expires on 7 Sep. 2013.",44103-5251752-5,Pakistan national identity card number,,,,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0112 (UN Ref):QDi.309 Has provided facilitation and financial services to Al-Qaida (QDe.004). Associated with Harakatul Jihad Islami (QDe.130), Jaish-I-Mohammed (QDe.019), and Al-Akhtar Trust International (QDe.121). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040885",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,31/12/2020,12632 +AL-SUBHI,Azzam,,,,,,,,,12/04/1976,Al Baraka,Saudi Arabia,Saudi Arabia,C389664,,1024026187,,,,,,,,,,,(UK Sanctions List Ref):AQD0153 (UN Ref):QDi.330 Has ties to numerous senior Al-Qaida (QDe.004) leaders. Wanted by the Saudi Arabian Government for terrorism. Father's name is Abdullah Razeeq al Mouled al Sbhua. Physical description: eye colour: dark; hair colour: dark; complexion: dark. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13127 +AL-SUKHNI,Adnan,Abdo,,,,,,,,00/00/1955,Damascus,Syria,,,,,,Former Minister for Industry,,,,,,,,,"(UK Sanctions List Ref):SYR0146 (UK Statement of Reasons):Former Minister of Industry within the Assad regime appointed in 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,28/02/2012,31/12/2020,16/06/2022,12508 +AL-SUKHNY,Adnan,Abdo,,,,,,,,00/00/1961,Aleppo,,,,,,,Former Minister of Industry,,,,,,,,,(UK Sanctions List Ref):SYR0068 (UK Statement of Reasons):Former Minister of Industry. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,16/10/2012,31/12/2020,19/01/2021,12781 +AL-SUKHNY,Adnan,Abdou,,,,,,,,00/00/1961,Aleppo,,,,,,,Former Minister of Industry,,,,,,,,,(UK Sanctions List Ref):SYR0068 (UK Statement of Reasons):Former Minister of Industry. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,19/01/2021,12781 +AL-SULTAN,Nofal,Hammadi,,,,,,,,23/02/1964,,Iraq,Iraq,,,71719043,,,,,,,,,,Iraq,"(UK Sanctions List Ref):GAC0027 (UK Statement of Reasons):Nawfal Hammadi Al-Sultan has been involved in serious corruption in Nineveh province, Iraq involving the misappropriation of state property to his benefit and the benefit of others. In his role as governor of Nineveh province, he misappropriated public funds intended for reconstruction efforts and to provide support for civilians and improperly awarded contracts and other state property. Additional information: in February 2021 Al-Sultan was convicted by the Central Anti-Corruption Criminal Court in Iraq in relation to some of his corrupt activities when governor of Nineveh Governorate. He was convicted of two offences of “harming a public body” under Article 340 of Iraq’s Penal Code and sentenced to a total of five years in prison, for: (i) wasting five billion Iraqi Dinars of public funds of Nineveh Governorate through fictitious works and contracts, and (ii) improperly disposing of 50 tons of asphalt delivered to him for paving the streets and for reconstruction in 2017. (Gender):Male",Individual,AKA,,Global Anti-Corruption,22/07/2021,22/07/2021,22/07/2021,14130 +AL-SULTAN,Nawfal,Hammadi,,,,,,,,23/02/1964,,Iraq,Iraq,,,71719043,,,,,,,,,,Iraq,"(UK Sanctions List Ref):GAC0027 (UK Statement of Reasons):Nawfal Hammadi Al-Sultan has been involved in serious corruption in Nineveh province, Iraq involving the misappropriation of state property to his benefit and the benefit of others. In his role as governor of Nineveh province, he misappropriated public funds intended for reconstruction efforts and to provide support for civilians and improperly awarded contracts and other state property. Additional information: in February 2021 Al-Sultan was convicted by the Central Anti-Corruption Criminal Court in Iraq in relation to some of his corrupt activities when governor of Nineveh Governorate. He was convicted of two offences of “harming a public body” under Article 340 of Iraq’s Penal Code and sentenced to a total of five years in prison, for: (i) wasting five billion Iraqi Dinars of public funds of Nineveh Governorate through fictitious works and contracts, and (ii) improperly disposing of 50 tons of asphalt delivered to him for paving the streets and for reconstruction in 2017. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,22/07/2021,22/07/2021,22/07/2021,14130 +AL-SURI,Abu,Luqman,,,,,,,,00/00/1973,"Sahl Village, Raqqa Province",Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0132 (UN Ref):QDi.384 A leader of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). As of Jun, 2015, al-Shawakh was the ISIL governor of Aleppo. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13317 +ALSYED,Ahmad,,,,,,,,,00/00/1965,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0363 (UK Statement of Reasons):Minister of Justice. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2020,31/12/2020,31/12/2020,13979 +ALTABAEVA,Ekaterina,,,,,,,,,27/05/1956,Uglich,Russia (USSR),Russia,,,,,Member of the Federation Council,,,,,,,,,"(UK Sanctions List Ref):RUS0217 (UK Statement of Reasons):Member of the Federation Council of the Russian Federation from the illegally annexed City of Sevastopol, undermining Ukrainian sovereignty over the City. Formerly Chair of the “Legislative Assembly” of Sevastopol, she participated in the illegal Russian-backed local elections in Sevastopol. In this role she publicly avowed Russian sovereignty over Crimea and Sevastopol. (Gender):Female",Individual,Primary name variation,,Russia,28/01/2020,31/12/2020,31/12/2020,13808 +ALTABAEVA,Kateryna,,,,,,,,,27/05/1956,Uglich,Russia (USSR),Russia,,,,,Member of the Federation Council,,,,,,,,,"(UK Sanctions List Ref):RUS0217 (UK Statement of Reasons):Member of the Federation Council of the Russian Federation from the illegally annexed City of Sevastopol, undermining Ukrainian sovereignty over the City. Formerly Chair of the “Legislative Assembly” of Sevastopol, she participated in the illegal Russian-backed local elections in Sevastopol. In this role she publicly avowed Russian sovereignty over Crimea and Sevastopol. (Gender):Female",Individual,Primary name variation,,Russia,28/01/2020,31/12/2020,31/12/2020,13808 +ALTABAEVA,Yekaterina,Borisovna,,,,,Екатерина Борисовна АЛТАБАЕВА,,,27/05/1956,Uglich,Russia (USSR),Russia,,,,,Member of the Federation Council,,,,,,,,,"(UK Sanctions List Ref):RUS0217 (UK Statement of Reasons):Member of the Federation Council of the Russian Federation from the illegally annexed City of Sevastopol, undermining Ukrainian sovereignty over the City. Formerly Chair of the “Legislative Assembly” of Sevastopol, she participated in the illegal Russian-backed local elections in Sevastopol. In this role she publicly avowed Russian sovereignty over Crimea and Sevastopol. (Gender):Female",Individual,Primary name,,Russia,28/01/2020,31/12/2020,31/12/2020,13808 +AL-TA'I,SULTAN,HASHIM,AHMAD,,,,سلطان هاشم أحمد الطائي,,,00/00/1944,Mosul,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0088 (UN Ref):IQi.027,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7596 +ALTAIBI,Khaled,Aedh,G.,,,,,,,28/06/1988,Afif,Saudi Arabia,Saudi Arabia,P139681,,1053629885,,Royal Guard,,,,,,,,,"(UK Sanctions List Ref):GHR0035 (UK Statement of Reasons):Khalid Aedh G Alotaibi was a Royal Guard in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi General Consul’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13882 +ALTAIBI,Khalid,Aedh,G.,,,,,,,28/06/1988,Afif,Saudi Arabia,Saudi Arabia,P139681,,1053629885,,Royal Guard,,,,,,,,,"(UK Sanctions List Ref):GHR0035 (UK Statement of Reasons):Khalid Aedh G Alotaibi was a Royal Guard in Saudi Arabia. He was involved in the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. He was involved in the concealment of evidence at the Saudi General Consul’s residence following the killing. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13882 +AL-TAJIKI,Ghassan,,,,,,,,,19/05/1984,al-Duwadmi,Saudi Arabia,Saudi Arabia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0264 (UN Ref):QDi.377 Syria-based Al-Qaida (QDe.004) facilitator. Involved in the development of improvised explosive devices for use in Afghanistan and Syrian Arab Republic since at least 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930722,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13315 +AL-TARAZI,Mazen,,,,,,,,,00/09/1962,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0259 (UK Statement of Reasons):Leading businessperson operating in Syria, with significant investments in the construction and aviation sectors. Through his investments and activities, Mazin Al-Tarazi benefits from and/or supports the Syrian regime. In particular, Al-Tarazi has concluded a deal with Damascus Cham Holdings for a USD 320 million investment in the construction of Marota City, a regime-backed luxury residential and commercial development, he has also been granted a licence for a private airline in Syria. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13754 +AL-TARAZI,Mazin,,,,,,مازن الترزي,,,00/09/1962,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0259 (UK Statement of Reasons):Leading businessperson operating in Syria, with significant investments in the construction and aviation sectors. Through his investments and activities, Mazin Al-Tarazi benefits from and/or supports the Syrian regime. In particular, Al-Tarazi has concluded a deal with Damascus Cham Holdings for a USD 320 million investment in the construction of Marota City, a regime-backed luxury residential and commercial development, he has also been granted a licence for a private airline in Syria. (Gender):Male",Individual,Primary name,,Syria,22/01/2019,31/12/2020,31/12/2020,13754 +AL-TAWEEL,Abdul,Hadi,,,,,,,,00/00/1961,Mosul,Iraq,Iraq,,,0094195,Ration card.,,,,,,,,,,"(UK Sanctions List Ref):AQD0271 (UN Ref):QDi.012 Joined Al-Qaida in 1996 and was at that time an important liaison to the Taliban in Afghanistan. Received money from Ansar al-Islam (QDe.098) in order to conduct attacks in Kirkuk and Ninveh in Iraq during spring and summer of 2005. Al-Qaida senior official. In custody of the United States of America, as of Aug. 2014. Father’s name: Abd al-Razzaq Abd al-Baqi. Mother’s name: Nadira Ayoub Asaad. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1475995 (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6923 +AL-TAWEEL,Khalid,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0123 (UK Statement of Reasons):Political Security Division. Military official involved in the violence in Homs.,Individual,Primary name,,Syria,02/12/2011,31/12/2020,31/12/2020,12422 +AL-TAWHID,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +AL-TAWIL,Khaled,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0123 (UK Statement of Reasons):Political Security Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,31/12/2020,12422 +AL-TIKRITI,Aiman,Sabawi,Ibrahim,Hasan,,,,,,21/10/1971,(1) Al-Owja. (2) Baghdad,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Bludan,,Syria,(UK Sanctions List Ref):IRQ0144 (UN Ref):IQi.083,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8695 +AL-TIKRITI,Aiman,Sabawi,Ibrahim,Hasan,,,,,,21/10/1971,(1) Al-Owja. (2) Baghdad,(1) Iraq (2) Iraq,Iraq,,,,,,,,,Mutanabi Area,Al Monsur,Baghdad,,Iraq,(UK Sanctions List Ref):IRQ0144 (UN Ref):IQi.083,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8695 +AL-TIKRITI,Ayman,Sabawi,Ibrahim,Hassan,,,,,,21/10/1971,(1) Al-Owja. (2) Baghdad,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Bludan,,Syria,(UK Sanctions List Ref):IRQ0144 (UN Ref):IQi.083,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8695 +AL-TIKRITI,Ayman,Sabawi,Ibrahim,Hassan,,,,,,21/10/1971,(1) Al-Owja. (2) Baghdad,(1) Iraq (2) Iraq,Iraq,,,,,,,,,Mutanabi Area,Al Monsur,Baghdad,,Iraq,(UK Sanctions List Ref):IRQ0144 (UN Ref):IQi.083,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8695 +AL-TIKRITI,Ayman,Sab'awi,Ibrahim,Hasan,,,,,,21/10/1971,(1) Al-Owja. (2) Baghdad,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Bludan,,Syria,(UK Sanctions List Ref):IRQ0144 (UN Ref):IQi.083,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8695 +AL-TIKRITI,Ayman,Sab'awi,Ibrahim,Hasan,,,,,,21/10/1971,(1) Al-Owja. (2) Baghdad,(1) Iraq (2) Iraq,Iraq,,,,,,,,,Mutanabi Area,Al Monsur,Baghdad,,Iraq,(UK Sanctions List Ref):IRQ0144 (UN Ref):IQi.083,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8695 +AL-TIKRITI,Bashar,Sab'awi,Ibrahim,Hasan,,,,,,17/07/1970,,,Iraq,,,,,,,,,,,Beirut,,Lebanon,(UK Sanctions List Ref):IRQ0146 (UN Ref):IQi.085,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8697 +AL-TIKRITI,Bashar,Sab'awi,Ibrahim,Hasan,,,,,,17/07/1970,,,Iraq,,,,,,Fuad Dawod Farm,,,,Az Zabadani,Damascus,,Syria,(UK Sanctions List Ref):IRQ0146 (UN Ref):IQi.085,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8697 +AL-TIKRITI,Bashir,Sabawi,Ibrahim,Al-Hassan,,,,,,17/07/1970,,,Iraq,,,,,,,,,,,Beirut,,Lebanon,(UK Sanctions List Ref):IRQ0146 (UN Ref):IQi.085,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8697 +AL-TIKRITI,Bashir,Sabawi,Ibrahim,Al-Hassan,,,,,,17/07/1970,,,Iraq,,,,,,Fuad Dawod Farm,,,,Az Zabadani,Damascus,,Syria,(UK Sanctions List Ref):IRQ0146 (UN Ref):IQi.085,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8697 +AL-TIKRITI,Bashir,Sab'awi,Ibrahim,Al-Hasan,,,,,,17/07/1970,,,Iraq,,,,,,,,,,,Beirut,,Lebanon,(UK Sanctions List Ref):IRQ0146 (UN Ref):IQi.085,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8697 +AL-TIKRITI,Bashir,Sab'awi,Ibrahim,Al-Hasan,,,,,,17/07/1970,,,Iraq,,,,,,Fuad Dawod Farm,,,,Az Zabadani,Damascus,,Syria,(UK Sanctions List Ref):IRQ0146 (UN Ref):IQi.085,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8697 +AL-TIKRITI,Hamid,Raja-Shalah,Hassum,,,,,,,00/00/1950,"Bayji, Salah al-Din Governorate",Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0078 (UN Ref):IQi.017,Individual,AKA,Good quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7622 +AL-TIKRITI,Hassan,,,,,,,,,00/00/1950,"Bayji, Salah al-Din Governorate",Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0078 (UN Ref):IQi.017,Individual,AKA,Good quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7622 +AL-TIKRITI,Ibrahim,Sabawi,Ibrahim,Al-Hassan,,,,,,25/10/1983,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +AL-TIKRITI,Ibrahim,Sabawi,Ibrahim,Hassan,,,,,,25/10/1983,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +AL-TIKRITI,Ibrahim,Sabawi,Ibrahim,Al-Hassan,,,,,,25/10/1983,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Fuad Dawod Farm,,,,Az Zabadani,Damascus,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +AL-TIKRITI,Ibrahim,Sabawi,Ibrahim,Hassan,,,,,,25/10/1983,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Fuad Dawod Farm,,,,Az Zabadani,Damascus,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +AL-TIKRITI,Ibrahim,Sabawi,Ibrahim,Hassan,,,,,,00/00/1977,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Fuad Dawod Farm,,,,Az Zabadani,Damascus,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +AL-TIKRITI,Ibrahim,Sabawi,Ibrahim,Al-Hassan,,,,,,00/00/1977,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Fuad Dawod Farm,,,,Az Zabadani,Damascus,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +AL-TIKRITI,Ibrahim,Sabawi,Ibrahim,Hassan,,,,,,00/00/1977,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +AL-TIKRITI,Ibrahim,Sabawi,Ibrahim,Al-Hassan,,,,,,00/00/1977,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +AL-TIKRITI,Ibrahim,Sab'awi,Ibrahim,Hasan,,,,,,25/10/1983,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +AL-TIKRITI,Ibrahim,Sab'awi,Ibrahim,Hasan,,,,,,25/10/1983,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Fuad Dawod Farm,,,,Az Zabadani,Damascus,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +AL-TIKRITI,Ibrahim,Sab'awi,Ibrahim,Hasan,,,,,,00/00/1977,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Fuad Dawod Farm,,,,Az Zabadani,Damascus,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +AL-TIKRITI,Ibrahim,Sab'awi,Ibrahim,Hasan,,,,,,00/00/1977,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +AL-TIKRITI,Omar,Sab’awi,Ibrahim,Hasan,,,,,,00/00/1970,Baghdad,Iraq,Iraq,2863795S,Expires 23 Aug. 2005 (Iraq),,,,,,,,,Damascus,,Syria,(UK Sanctions List Ref):IRQ0143 (UN Ref):IQi.082,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,19/04/2022,8694 +AL-TIKRITI,Omar,Sab’awi,Ibrahim,Hasan,,,,,,00/00/1970,Baghdad,Iraq,Iraq,2863795S,Expires 23 Aug. 2005 (Iraq),,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0143 (UN Ref):IQi.082,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,19/04/2022,8694 +AL-TIKRITI,Omar,Sab’awi,Ibrahim,Hasan,,,,,,00/00/1970,Baghdad,Iraq,Iraq,2863795S,Expires 23 Aug. 2005 (Iraq),,,,,,,,,,,Yemen,(UK Sanctions List Ref):IRQ0143 (UN Ref):IQi.082,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,19/04/2022,8694 +AL-TIKRITI,Omar,Sabawi,Ibrahim,Hassan,,,,,,00/00/1970,Baghdad,Iraq,Iraq,2863795S,Expires 23 Aug. 2005 (Iraq),,,,,,,,,Damascus,,Syria,(UK Sanctions List Ref):IRQ0143 (UN Ref):IQi.082,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,19/04/2022,8694 +AL-TIKRITI,Omar,Sabawi,Ibrahim,Hassan,,,,,,00/00/1970,Baghdad,Iraq,Iraq,2863795S,Expires 23 Aug. 2005 (Iraq),,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0143 (UN Ref):IQi.082,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,19/04/2022,8694 +AL-TIKRITI,Omar,Sabawi,Ibrahim,Hassan,,,,,,00/00/1970,Baghdad,Iraq,Iraq,2863795S,Expires 23 Aug. 2005 (Iraq),,,,,,,,,,,Yemen,(UK Sanctions List Ref):IRQ0143 (UN Ref):IQi.082,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,19/04/2022,8694 +AL-TIKRITI,Sa'ad,Sabawi,Ibrahim,Hasan,,,,,,19/09/1988,,,Iraq,,,,,,,,,,,,,Yemen,(UK Sanctions List Ref):IRQ0147 (UN Ref):IQi.086,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8698 +AL-TIKRITI,Sa'ad,Sabawi,Ibrahim,Hasan,,,,,,19/09/1988,,,Iraq,,,,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0147 (UN Ref):IQi.086,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8698 +AL-TIKRITI,Sa'd,Sab'awi,Hasan,,,,,,,19/09/1988,,,Iraq,,,,,,,,,,,,,Yemen,(UK Sanctions List Ref):IRQ0147 (UN Ref):IQi.086,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8698 +AL-TIKRITI,Sa'd,Sab'awi,Hasan,,,,,,,19/09/1988,,,Iraq,,,,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0147 (UN Ref):IQi.086,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8698 +AL-TIKRITI,Umar,Sabawi,Ibrahim,Hasan,,,,,,00/00/1970,Baghdad,Iraq,Iraq,2863795S,Expires 23 Aug. 2005 (Iraq),,,,,,,,,Damascus,,Syria,(UK Sanctions List Ref):IRQ0143 (UN Ref):IQi.082,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,19/04/2022,8694 +AL-TIKRITI,Umar,Sabawi,Ibrahim,Hasan,,,,,,00/00/1970,Baghdad,Iraq,Iraq,2863795S,Expires 23 Aug. 2005 (Iraq),,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0143 (UN Ref):IQi.082,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,19/04/2022,8694 +AL-TIKRITI,Umar,Sabawi,Ibrahim,Hasan,,,,,,00/00/1970,Baghdad,Iraq,Iraq,2863795S,Expires 23 Aug. 2005 (Iraq),,,,,,,,,,,Yemen,(UK Sanctions List Ref):IRQ0143 (UN Ref):IQi.082,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,19/04/2022,8694 +AL-TIKRITI,Yasir,Sabawi,Ibrahim,Hassan,,,,,,15/05/1968,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,Yasir,Sabawi,Ibrahim,Hassan,,,,,,15/05/1968,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Mosul,,Iraq,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,Yasir,Sabawi,Ibrahim,Hassan,,,,,,00/00/1970,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Mosul,,Iraq,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,Yasir,Sabawi,Ibrahim,Hassan,,,,,,00/00/1970,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,Yasir,Sab'awi,Ibrahim,Hasan,,,,,,15/05/1968,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,Yasir,Sab'awi,Ibrahim,Hasan,,,,,,15/05/1968,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Mosul,,Iraq,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,Yasir,Sab'awi,Ibrahim,Hasan,,,,,,00/00/1970,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Mosul,,Iraq,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,Yasir,Sab'awi,Ibrahim,Hasan,,,,,,00/00/1970,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,Yasser,Sabawi,Ibrahim,Hasan,,,,,,15/05/1968,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,Yasser,Sabawi,Ibrahim,Hasan,,,,,,15/05/1968,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Mosul,,Iraq,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,Yasser,Sabawi,Ibrahim,Hasan,,,,,,00/00/1970,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Mosul,,Iraq,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,Yasser,Sabawi,Ibrahim,Hasan,,,,,,00/00/1970,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,Yassir,Sabawi,Ibrahim,Hasan,,,,,,15/05/1968,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,Yassir,Sabawi,Ibrahim,Hasan,,,,,,15/05/1968,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Mosul,,Iraq,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,Yassir,Sabawi,Ibrahim,Hasan,,,,,,00/00/1970,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Mosul,,Iraq,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,Yassir,Sabawi,Ibrahim,Hasan,,,,,,00/00/1970,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,ABID,HAMID,MAHMUD,,,,عابد حامد محمود التكريتي,,,00/00/1957,"al-Awja, near Tikrit",Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0065 (UN Ref):IQi.004,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7619 +AL-TIKRITI,ALI,HASSAN,AL-MAJID,,,,علي حسن المجيد التكريتي,,,00/00/1943,"al-Awja, near Tikrit",Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0066 (UN Ref):IQi.005,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7584 +AL-TIKRITI,ALI,SADDAM,HUSSEIN,,,,علي صدام حسين التكريتي,,,00/00/1980,,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0122 (UN Ref):IQi.061,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8247 +AL-TIKRITI,ALI,SADDAM,HUSSEIN,,,,علي صدام حسين التكريتي,,,00/00/1983,,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0122 (UN Ref):IQi.061,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8247 +AL-TIKRITI,AYMAN,SABAWI,IBRAHIM,HASAN,,,أيمن سبعاوي إبراهيم حسن التكريتي,,,21/10/1971,(1) Al-Owja. (2) Baghdad,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Bludan,,Syria,(UK Sanctions List Ref):IRQ0144 (UN Ref):IQi.083,Individual,Primary name,,Iraq,29/07/2005,27/07/2005,31/12/2020,8695 +AL-TIKRITI,AYMAN,SABAWI,IBRAHIM,HASAN,,,أيمن سبعاوي إبراهيم حسن التكريتي,,,21/10/1971,(1) Al-Owja. (2) Baghdad,(1) Iraq (2) Iraq,Iraq,,,,,,,,,Mutanabi Area,Al Monsur,Baghdad,,Iraq,(UK Sanctions List Ref):IRQ0144 (UN Ref):IQi.083,Individual,Primary name,,Iraq,29/07/2005,27/07/2005,31/12/2020,8695 +AL-TIKRITI,BARZAN,ABD AL-GHAFUR,SULAIMAN MAJID,,,,برزان عبد الغفور سليمان مجيد التكريتي,,,00/00/1960,Salah al-Din,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0072 (UN Ref):IQi.011,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7620 +AL-TIKRITI,BARZAN,IBRAHIM,HASSAN,,,,برزان إبراهيم حسن التكريتي,,,00/00/1951,Tikrit,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0099 (UN Ref):IQi.038,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7608 +AL-TIKRITI,BASHAR,SABAWI,IBRAHIM,HASAN,,,بشار سبعاوي إبراهيم حسن التكريتي,,,17/07/1970,,,Iraq,,,,,,,,,,,Beirut,,Lebanon,(UK Sanctions List Ref):IRQ0146 (UN Ref):IQi.085,Individual,Primary name,,Iraq,29/07/2005,27/07/2005,31/12/2020,8697 +AL-TIKRITI,BASHAR,SABAWI,IBRAHIM,HASAN,,,بشار سبعاوي إبراهيم حسن التكريتي,,,17/07/1970,,,Iraq,,,,,,Fuad Dawod Farm,,,,Az Zabadani,Damascus,,Syria,(UK Sanctions List Ref):IRQ0146 (UN Ref):IQi.085,Individual,Primary name,,Iraq,29/07/2005,27/07/2005,31/12/2020,8697 +AL-TIKRITI,HALA,SADDAM,HUSSEIN,,,,حلا صدام حسين التكريتي,,,00/00/1972,,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0120 (UN Ref):IQi.059,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8249 +AL-TIKRITI,HAMID,RAJA,SHALAH,,,,حامد رجا صلاح التكريتي,,,00/00/1950,"Bayji, Salah al-Din Governorate",Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0078 (UN Ref):IQi.017,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7622 +AL-TIKRITI,HANI,ABD-AL-LATIF,TILFAH,,,,هاني عبد اللطيف طلفاح التكريتي,,,00/00/1962,"al-Awja, near Tikrit",Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0068 (UN Ref):IQi.007,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7626 +AL-TIKRITI,IBRAHIM,AHMAD ABD AL-SATTAR,MUHAMMED,,,,إبراهيم أحمد عبد الستار محمد التكريتي,,,00/00/1950,Mosul,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0074 (UN Ref):IQi.013,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7621 +AL-TIKRITI,IBRAHIM,SABAWI,IBRAHIM,HASAN,,,إبراهيم سبعاوي إبراهيم حسن التكريتي,,,25/10/1983,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,Primary name,,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +AL-TIKRITI,IBRAHIM,SABAWI,IBRAHIM,HASAN,,,إبراهيم سبعاوي إبراهيم حسن التكريتي,,,25/10/1983,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Fuad Dawod Farm,,,,Az Zabadani,Damascus,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,Primary name,,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +AL-TIKRITI,IBRAHIM,SABAWI,IBRAHIM,HASAN,,,إبراهيم سبعاوي إبراهيم حسن التكريتي,,,00/00/1977,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Fuad Dawod Farm,,,,Az Zabadani,Damascus,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,Primary name,,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +AL-TIKRITI,IBRAHIM,SABAWI,IBRAHIM,HASAN,,,إبراهيم سبعاوي إبراهيم حسن التكريتي,,,00/00/1977,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,Primary name,,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +AL-TIKRITI,JAMAL,MUSTAFA,ABDALLAH,SULTAN,,,جمال مصطفى عبد الله سلطان التكريتي,,,04/05/1955,"al-Samnah, near Tikrit",Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0083 (UN Ref):IQi.022,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7624 +AL-TIKRITI,MUZAHIM,SA'B,HASSAN,,,,مزاحم صعب حسن التكريتي,,,00/00/1946,Salah al-Din or al-Awja near Tikrit,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0073 (UN Ref):IQi.012,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7609 +AL-TIKRITI,MUZAHIM,SA'B,HASSAN,,,,مزاحم صعب حسن التكريتي,,,00/00/1949,Salah al-Din or al-Awja near Tikrit,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0073 (UN Ref):IQi.012,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7609 +AL-TIKRITI,MUZAHIM,SA'B,HASSAN,,,,مزاحم صعب حسن التكريتي,,,00/00/1960,Salah al-Din or al-Awja near Tikrit,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0073 (UN Ref):IQi.012,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7609 +AL-TIKRITI,OMAR,SABAWI,IBRAHIM,HASAN,,,عمر سبعاوي إبراهيم حسن التكريتي,,,00/00/1970,Baghdad,Iraq,Iraq,2863795S,Expires 23 Aug. 2005 (Iraq),,,,,,,,,Damascus,,Syria,(UK Sanctions List Ref):IRQ0143 (UN Ref):IQi.082,Individual,Primary name,,Iraq,29/07/2005,27/07/2005,19/04/2022,8694 +AL-TIKRITI,OMAR,SABAWI,IBRAHIM,HASAN,,,عمر سبعاوي إبراهيم حسن التكريتي,,,00/00/1970,Baghdad,Iraq,Iraq,2863795S,Expires 23 Aug. 2005 (Iraq),,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0143 (UN Ref):IQi.082,Individual,Primary name,,Iraq,29/07/2005,27/07/2005,19/04/2022,8694 +AL-TIKRITI,OMAR,SABAWI,IBRAHIM,HASAN,,,عمر سبعاوي إبراهيم حسن التكريتي,,,00/00/1970,Baghdad,Iraq,Iraq,2863795S,Expires 23 Aug. 2005 (Iraq),,,,,,,,,,,Yemen,(UK Sanctions List Ref):IRQ0143 (UN Ref):IQi.082,Individual,Primary name,,Iraq,29/07/2005,27/07/2005,19/04/2022,8694 +AL-TIKRITI,QUSAY,SADDAM,HUSSEIN,,,,قصي صدام حسين التكريتي,,,00/00/1965,Baghdad,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0063 (UN Ref):IQi.002,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7613 +AL-TIKRITI,QUSAY,SADDAM,HUSSEIN,,,,قصي صدام حسين التكريتي,,,00/00/1966,Baghdad,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0063 (UN Ref):IQi.002,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7613 +AL-TIKRITI,RAFI,ABD-AL-LATIF,TILFAH,,,,رافي عبد اللطيف طلفاح التكريتي,,,00/00/1954,Tikrit,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0076 (UN Ref):IQi.015,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7627 +AL-TIKRITI,RAGHAD,SADDAM,HUSSEIN,,,,رغد صدام حسين التكريتي,,,00/00/1967,,Iraq,Iraq,,,,,,,,,,,Amman,,Jordan,(UK Sanctions List Ref):IRQ0118 (UN Ref):IQi.057,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8253 +AL-TIKRITI,RANA,SADDAM,HUSSEIN,,,,رنا صدام حسين التكريتي,,,00/00/1969,,Iraq,Iraq,,,,,,,,,,,Amman,,Jordan,(UK Sanctions List Ref):IRQ0119 (UN Ref):IQi.058,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8254 +AL-TIKRITI,RUKAN,RAZUKI,ABD-AL-GHAFUR SULAIMAN,,,,روكان رزوقي عبد الغفار سليمان التكريتي,,,00/00/1956,Tikrit,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0082 (UN Ref):IQi.021,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7623 +AL-TIKRITI,SAB'AWI,IBRAHIM,HASSAN,,,,سبعاوي إبراهيم حسن التكريتي,,,00/00/1947,Tikrit,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0097 (UN Ref):IQi.036 N/A (UK Statement of Reasons):N/A,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7610 +AL-TIKRITI,SA'D,ABD-AL-MAJID,AL-FAISAL,,,,سعد عبد المجيد الفيصل التكريتي,,,00/00/1944,Tikrit,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0116 (UN Ref):IQi.055,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7581 +AL-TIKRITI,SA'D,SABAWI,IBRAHIM,HASAN,,,سعد سبعاوي إبراهيم حسن التكريتي,,,19/09/1988,,,Iraq,,,,,,,,,,,,,Yemen,(UK Sanctions List Ref):IRQ0147 (UN Ref):IQi.086,Individual,Primary name,,Iraq,29/07/2005,27/07/2005,31/12/2020,8698 +AL-TIKRITI,SA'D,SABAWI,IBRAHIM,HASAN,,,سعد سبعاوي إبراهيم حسن التكريتي,,,19/09/1988,,,Iraq,,,,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0147 (UN Ref):IQi.086,Individual,Primary name,,Iraq,29/07/2005,27/07/2005,31/12/2020,8698 +AL-TIKRITI,SADDAM,HUSSEIN,,,,,صدام حسين التكريتي,,,28/04/1937,"al-Awja, near Tikrit",Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0062 (UN Ref):IQi.001,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7612 +AL-TIKRITI,TAHIR,JALIL,HABBUSH,,,,طاهر جليل حبوش التكريتي,,,00/00/1950,Tikrit,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0077 (UN Ref):IQi.016,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7606 +AL-TIKRITI,UDAY,SADDAM,HUSSEIN,,,,عدي صدام حسين التكريتي,,,00/00/1964,Baghdad,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0064 (UN Ref):IQi.003,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7614 +AL-TIKRITI,UDAY,SADDAM,HUSSEIN,,,,عدي صدام حسين التكريتي,,,00/00/1967,Baghdad,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0064 (UN Ref):IQi.003,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7614 +AL-TIKRITI,WALID,HAMID,TAWFIQ,,,,وليد حامد توفيق التكريتي,,,00/00/1954,Tikrit,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0087 (UN Ref):IQi.026,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7625 +AL-TIKRITI,WATBAN,IBRAHIM,HASSAN,,,,وطبان إبراهيم حسن التكريتي,,,00/00/1952,Tikrit,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0098 (UN Ref):IQi.037,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7611 +AL-TIKRITI,YASIR,SABAWI,IBRAHIM,HASAN,,,ياسر سبعاوي إبراهيم حسن التكريتي,,,15/05/1968,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,Primary name,,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,YASIR,SABAWI,IBRAHIM,HASAN,,,ياسر سبعاوي إبراهيم حسن التكريتي,,,15/05/1968,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Mosul,,Iraq,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,Primary name,,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,YASIR,SABAWI,IBRAHIM,HASAN,,,ياسر سبعاوي إبراهيم حسن التكريتي,,,00/00/1970,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Mosul,,Iraq,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,Primary name,,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TIKRITI,YASIR,SABAWI,IBRAHIM,HASAN,,,ياسر سبعاوي إبراهيم حسن التكريتي,,,00/00/1970,(1) Al-Owja (2) Baghdad,(1) Iraq (2) Iraq,Iraq,284158,Expires 21 Aug 2005 (Iraq),,,,,,,,,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0142 (UN Ref):IQi.081,Individual,Primary name,,Iraq,29/07/2005,27/07/2005,31/12/2020,8693 +AL-TOUBASI,Iyad,,,,,,,,,00/00/1974,,Syria,Jordan,(1) 654781 (2) 286062,"(1) Jordan. Approximately issued in 2009. (2) Jordan. Issued on 5 April 1999 at Zarqa, Jordan. Expired on 4 April 2004.",,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0209 (UN Ref):QDi.400 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) for coastal area of Syrian Arab Republic since March 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6013286. Coastal area of Syrian Arab Republic. Location as of April 2016.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13447 +AL-TUBAIQY,Salah,,,,,,,,,20/08/1971,Jazan,Saudi Arabia,,,,,,Head of Forensics- Ministry of Interior.,,,,,,,,,(UK Sanctions List Ref):GHR0033 (UK Statement of Reasons):Dr Salah Muhammed Tubaigy held the position of Forensic doctor with the Ministry of Interior in Saudi Arabia and Professor in the Department of Criminal Evidence at Naif Arab University. He was involved in the unlawful killing of Jamal Khashoggi in the Saudi Consulate in Istanbul on 2 October 2018 as part of the 15 man team sent to Turkey by Saudi authorities. Dr Tubaigy was present at the time of Jamal Khashoggi’s death and held a direct role in Jamal Khashoggi’s killing and in the concealment of evidence relating to his death. (Gender):Male,Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13874 +AL-TUBAIQY,Salah,Muhammed,,,,,,,,20/08/1971,Jazan,Saudi Arabia,,,,,,Head of Forensics- Ministry of Interior.,,,,,,,,,(UK Sanctions List Ref):GHR0033 (UK Statement of Reasons):Dr Salah Muhammed Tubaigy held the position of Forensic doctor with the Ministry of Interior in Saudi Arabia and Professor in the Department of Criminal Evidence at Naif Arab University. He was involved in the unlawful killing of Jamal Khashoggi in the Saudi Consulate in Istanbul on 2 October 2018 as part of the 15 man team sent to Turkey by Saudi authorities. Dr Tubaigy was present at the time of Jamal Khashoggi’s death and held a direct role in Jamal Khashoggi’s killing and in the concealment of evidence relating to his death. (Gender):Male,Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13874 +AL-TUBASI,Iyad,,,,,,,,,00/00/1974,,Syria,Jordan,(1) 654781 (2) 286062,"(1) Jordan. Approximately issued in 2009. (2) Jordan. Issued on 5 April 1999 at Zarqa, Jordan. Expired on 4 April 2004.",,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0209 (UN Ref):QDi.400 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) for coastal area of Syrian Arab Republic since March 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6013286. Coastal area of Syrian Arab Republic. Location as of April 2016.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13447 +ALTUKHOV,Sergey,Viktorovich,,,,,Алтухов Сергей Викторович,,,23/02/1982,Krasnodar,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0300 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14245 +AL-TUNISI,Abu,Ayyad,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,,,,,,,,Libya,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +AL-TUNISI,Abu,Ayyad,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,60 Rue de la Libye Hamman Lif,Ben Arous,,,,,,Tunisia,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +AL-TUNISI,Abu,Iyyadh,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,,,,,,,,Libya,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +AL-TUNISI,Abu,Iyyadh,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,60 Rue de la Libye Hamman Lif,Ben Arous,,,,,,Tunisia,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +AL-TUNISI,Abu,Maryam,,,,,,,,10/05/1983,Ben Guerdane,Tunisia,Tunisia,,,08619445,,,Amria Ben Guerdane,,,,,Medenine,,Tunisia,"(UK Sanctions List Ref):AQD0253 (UN Ref):QDi.386 Foreign terrorist fighter facilitator experienced in establishing and securing travel routes. Deeply involved in providing material support to the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) in North Africa. Assisted foreign terrorist fighters’ travel throughout North Africa and to Syrian Arab Republic to join Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Profession: farm worker. Mother's name: Mbarka Helali. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,14/06/2022,13319 +AL-TUNISI,Abu-Muqatil,,,,,,,,,01/08/1983,Paris,France,(1) France. (2) Tunisia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0157 (UN Ref):QDi.375 French-Tunisian foreign terrorist fighter for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897328.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,12/01/2022,13289 +AL-TURKI,Hassan,,,,,,,,,00/00/1944,Region V (the Ogaden Region in Eastern Ethiopia),Ethiopia,Somalia,,,,,Colonel. Sheikh,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0004 (UN Ref):SOi.003,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,8425 +AL-TURKI,HASSAN,ABDULLAH,HERSI,,,,,,,00/00/1944,Region V (the Ogaden Region in Eastern Ethiopia),Ethiopia,Somalia,,,,,Colonel. Sheikh,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0004 (UN Ref):SOi.003,Individual,Primary name,,Somalia,28/04/2010,12/04/2010,31/12/2020,8425 +AL-TURKMANI,Abu,'Umar,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-TURKMANI,Abu,'Umar,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-TURKMANI,Abu,'Umar,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-TURKMANI,Abu,'Umar,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-TURKMANI,Abu,'Umar,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-TURKMANI,Abu,'Umar,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-TURKMANI,Abu,'Umar,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-TURKMANI,Abu,'Umar,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-TURKMANI,Abu,'Umar,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-UBAIDI,GHAZI,HAMMUD,,,,,غازي حمود العبيدي,,,00/00/1944,Baghdad,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0112 (UN Ref):IQi.051,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7598 +AL-UBAIDI,YAHIA,ABDALLAH,,,,,يحيى عبد الله العبيدي,,,,,,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0105 (UN Ref):IQi.044,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7599 +AL-UBAYDI,INTISSAR,,,,,,انتصار العبيدي,,,00/00/1974,,,Iraq,,,,,,,,,,,,,Iraq,(UK Sanctions List Ref):IRQ0132 (UN Ref):IQi.071,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8257 +ALUMINAT,,,,,,,,,,,,,,,,,,,Parcham St,13th Km of Qom Rd,,,,Arak,38135,Iran,"(UK Sanctions List Ref):INU0047 (UK Statement of Reasons):On behalf of a UN designated entity, Aluminat has procured goods which have potential application in Iran's proliferation sensitive nuclear activities. (Phone number):+98 212049216. +98 22045237. +98 22049928 (Website):www.aluminat.com (Type of entity):Aluminium Supplier",Entity,Primary name,,Iran (Nuclear),24/12/2012,31/12/2020,31/12/2020,12820 +ALUMINAT,,,,,,,,,,,,,,,,,,,Unit 38,5th Fl,Bldg No 60,Golfam St,Jordan,Tehran,19395-5716,Iran,"(UK Sanctions List Ref):INU0047 (UK Statement of Reasons):On behalf of a UN designated entity, Aluminat has procured goods which have potential application in Iran's proliferation sensitive nuclear activities. (Phone number):+98 212049216. +98 22045237. +98 22049928 (Website):www.aluminat.com (Type of entity):Aluminium Supplier",Entity,Primary name,,Iran (Nuclear),24/12/2012,31/12/2020,31/12/2020,12820 +ALUMINAT PRODUCTIONS AND INDUSTRIAL COMPANY,,,,,,,,,,,,,,,,,,,Parcham St,13th Km of Qom Rd,,,,Arak,38135,Iran,"(UK Sanctions List Ref):INU0047 (UK Statement of Reasons):On behalf of a UN designated entity, Aluminat has procured goods which have potential application in Iran's proliferation sensitive nuclear activities. (Phone number):+98 212049216. +98 22045237. +98 22049928 (Website):www.aluminat.com (Type of entity):Aluminium Supplier",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,31/12/2020,12820 +ALUMINAT PRODUCTIONS AND INDUSTRIAL COMPANY,,,,,,,,,,,,,,,,,,,Unit 38,5th Fl,Bldg No 60,Golfam St,Jordan,Tehran,19395-5716,Iran,"(UK Sanctions List Ref):INU0047 (UK Statement of Reasons):On behalf of a UN designated entity, Aluminat has procured goods which have potential application in Iran's proliferation sensitive nuclear activities. (Phone number):+98 212049216. +98 22045237. +98 22049928 (Website):www.aluminat.com (Type of entity):Aluminium Supplier",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,31/12/2020,12820 +AL-URDUNI,Abu-Julaybib,,,,,,,,,00/00/1974,,Syria,Jordan,(1) 654781 (2) 286062,"(1) Jordan. Approximately issued in 2009. (2) Jordan. Issued on 5 April 1999 at Zarqa, Jordan. Expired on 4 April 2004.",,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0209 (UN Ref):QDi.400 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) for coastal area of Syrian Arab Republic since March 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6013286. Coastal area of Syrian Arab Republic. Location as of April 2016.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13447 +AL-USTADH,,,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-USTADH,,,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-USTADH,,,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-USTADH,,,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-USTADH,,,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-USTADH,,,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-USTADH,,,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-USTADH,,,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-USTADH,,,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +AL-'UTAYBI,Ali Manahi,Ali,al-Mahaydali,,,,,,,19/05/1984,al-Duwadmi,Saudi Arabia,Saudi Arabia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0264 (UN Ref):QDi.377 Syria-based Al-Qaida (QDe.004) facilitator. Involved in the development of improvised explosive devices for use in Afghanistan and Syrian Arab Republic since at least 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930722,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13315 +ALVARADO,Arnulfo,,,,,,,,,15/05/1972,"Punta, Santa Ana, Manila",Philippines,Philippines,,,,,,Ma. Bautista,,,Punta,Santa Ana,Manila,3111,Philippines,(UK Sanctions List Ref):AQD0293 (UN Ref):QDi.246 Member of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). Father's name is Fernando Rafael Dellosa. Mother's name is Editha Parado Cain. In detention in the Philippines as of Jan. 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10666 +ALVI,MOHAMMED,MASOOD,AZHAR,,,,محمد مسعود اظہر علوی,,,10/07/1968,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0358 (UN Ref):QDi.422 Founder of Jaish-i-Mohammed (QDe.019). Former leader of Harakat ul-Mujahidin / HUM (QDe.008). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/xxxx.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,02/05/2019,01/05/2019,31/12/2020,13787 +ALVI,MOHAMMED,MASOOD,AZHAR,,,,محمد مسعود اظہر علوی,,,10/06/1968,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0358 (UN Ref):QDi.422 Founder of Jaish-i-Mohammed (QDe.019). Former leader of Harakat ul-Mujahidin / HUM (QDe.008). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/xxxx.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,02/05/2019,01/05/2019,31/12/2020,13787 +AL-WAFA,Abu,,,,,,,,,04/12/1971,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-WAFA,Abu,,,,,,,,,00/00/1977,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-WAFA',Abu,,,,,,,,,04/12/1971,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-WAFA',Abu,,,,,,,,,00/00/1977,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +AL-WALID,Mafouz,Walad,,,,,,,,01/01/1975,,Mauritania,Mauritania,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0219 (UN Ref):QDi.015 Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423438,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6928 +AL-WALID,MAHFOUZ,OULD,,,,,محفوظ ولد الوليد,,,01/01/1975,,Mauritania,Mauritania,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0219 (UN Ref):QDi.015 Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423438,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6928 +AL-WARD,Abu,,,,,,,,,00/00/1963,Tripoli,Libya,Libya,(1) 1990/345751. (2) 345741,(1) Libyan (2) Libyan,220334,Libya,,Bab Ben Ghasheer,,,,,Tripoli,,Libya,(UK Sanctions List Ref):AQD0305 (UN Ref):QDi.231 Mother's name is Kalthoum Abdul Salam al-Shaftari. Senior member of Libyan Islamic Fighting Group (QDe.011) and member of Al-Qaida (QDe.004). Review pursuant to Security Council resolution 1822 (2008) was concluded on 24 Nov. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1480002,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/06/2007,08/06/2007,31/12/2020,8645 +AL-WARFALLI,Mahmud,,,,,,,,,00/00/1978,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):LIB0066 (UK Statement of Reasons):There are reasonable grounds to believe that in his capacity as commander of the al-Saiqa Brigade, al-Werfalli is responsible for executions in and around Benghazi since 2016. These executions are a violation of the right to life and constitute serious human rights violations. (Gender):Male",Individual,AKA,,Libya,21/09/2020,31/12/2020,31/12/2020,13913 +AL-WAZZ,Hazwan,,,,,,,,,00/00/1962,Damascus,Syria,Syria,,,,,Former Minister of Education,,,,,,,,,"(UK Sanctions List Ref):SYR0086 Links to Bashar Asad (UK Statement of Reasons):Former Minister of Education, appointed in July 2016.  As a former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12772 +AL-WERFALLI,Mahmoud,Mustafa,Busayf,,,,,,,00/00/1978,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):LIB0066 (UK Statement of Reasons):There are reasonable grounds to believe that in his capacity as commander of the al-Saiqa Brigade, al-Werfalli is responsible for executions in and around Benghazi since 2016. These executions are a violation of the right to life and constitute serious human rights violations. (Gender):Male",Individual,Primary name,,Libya,21/09/2020,31/12/2020,31/12/2020,13913 +AL-WEZ,Hazwan,,,,,,,,,00/00/1962,Damascus,Syria,Syria,,,,,Former Minister of Education,,,,,,,,,"(UK Sanctions List Ref):SYR0086 Links to Bashar Asad (UK Statement of Reasons):Former Minister of Education, appointed in July 2016.  As a former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12772 +ALYABAYEVA,Ekaterina,,,,,,,,,27/05/1956,Uglich,Russia (USSR),Russia,,,,,Member of the Federation Council,,,,,,,,,"(UK Sanctions List Ref):RUS0217 (UK Statement of Reasons):Member of the Federation Council of the Russian Federation from the illegally annexed City of Sevastopol, undermining Ukrainian sovereignty over the City. Formerly Chair of the “Legislative Assembly” of Sevastopol, she participated in the illegal Russian-backed local elections in Sevastopol. In this role she publicly avowed Russian sovereignty over Crimea and Sevastopol. (Gender):Female",Individual,Primary name variation,,Russia,28/01/2020,31/12/2020,31/12/2020,13808 +ALYABAYEVA,Kateryna,,,,,,,,,27/05/1956,Uglich,Russia (USSR),Russia,,,,,Member of the Federation Council,,,,,,,,,"(UK Sanctions List Ref):RUS0217 (UK Statement of Reasons):Member of the Federation Council of the Russian Federation from the illegally annexed City of Sevastopol, undermining Ukrainian sovereignty over the City. Formerly Chair of the “Legislative Assembly” of Sevastopol, she participated in the illegal Russian-backed local elections in Sevastopol. In this role she publicly avowed Russian sovereignty over Crimea and Sevastopol. (Gender):Female",Individual,Primary name variation,,Russia,28/01/2020,31/12/2020,31/12/2020,13808 +ALYABAYEVA,Yekaterina,Borisovna,,,,,,,,27/05/1956,Uglich,Russia (USSR),Russia,,,,,Member of the Federation Council,,,,,,,,,"(UK Sanctions List Ref):RUS0217 (UK Statement of Reasons):Member of the Federation Council of the Russian Federation from the illegally annexed City of Sevastopol, undermining Ukrainian sovereignty over the City. Formerly Chair of the “Legislative Assembly” of Sevastopol, she participated in the illegal Russian-backed local elections in Sevastopol. In this role she publicly avowed Russian sovereignty over Crimea and Sevastopol. (Gender):Female",Individual,Primary name variation,,Russia,28/01/2020,31/12/2020,31/12/2020,13808 +AL-YACOUB,Ibrahim,Salih,Mohammed,,,,,,,16/10/1966,Tarut,Saudi Arabia,Saudi Arabia,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0002 (UK Statement of Reasons):Ibrahim Salih Mohammed Al-Yacoub is a member of Saudi Hizballah. He is wanted by the FBI for his involvement in the Khobar Towers attack of 25 June 1996. (Gender):Male,Individual,Primary name,,Counter-Terrorism (International),12/10/2001,31/12/2020,16/06/2022,7015 +AL-YAZIGI,,,,,,,,,,00/00/1961,,,,,,,,Former Minister of Health,,,,,,,,,"(UK Sanctions List Ref):SYR0194 (UK Statement of Reasons):Former Minister of Health. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,AKA,,Syria,22/10/2014,31/12/2020,31/12/2020,13156 +AL-ZAFIR,Ali,,,,,,,,,00/00/1962,Tartus,,Syria,,,,,Former Minister of Communications and Technology,,,,,,,,,"(UK Sanctions List Ref):SYR0010 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Communications and Technology. As a Former Government Minister, shares responsibility for the violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,14/11/2016,31/12/2020,31/12/2020,13398 +AL-ZAHRANI,Abu,Maryam,,,,,,,,15/09/1978,Dammam,Saudi Arabia,Saudi Arabia,E126785,"Saudi Arabia number, issued on 27 May 2002. Expired on 3 Apr. 2007.",,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0123 (UN Ref):QDi.329 Senior member of Al-Qaida (QDe.004). Wanted by the Saudi Arabian Government for terrorism. Father's name is Abdullah Saleh al Zahrani. Physical description: eye colour: dark; hair colour: dark; complexion: olive. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13126 +AL-ZAHRANI,Ahmad,Abdullah,Salih,,,,,,,15/09/1978,Dammam,Saudi Arabia,Saudi Arabia,E126785,"Saudi Arabia number, issued on 27 May 2002. Expired on 3 Apr. 2007.",,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0123 (UN Ref):QDi.329 Senior member of Al-Qaida (QDe.004). Wanted by the Saudi Arabian Government for terrorism. Father's name is Abdullah Saleh al Zahrani. Physical description: eye colour: dark; hair colour: dark; complexion: olive. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13126 +AL-ZAHRANI,Ahmed,Abdullah S,,,,,,,,15/09/1978,Dammam,Saudi Arabia,Saudi Arabia,E126785,"Saudi Arabia number, issued on 27 May 2002. Expired on 3 Apr. 2007.",,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0123 (UN Ref):QDi.329 Senior member of Al-Qaida (QDe.004). Wanted by the Saudi Arabian Government for terrorism. Father's name is Abdullah Saleh al Zahrani. Physical description: eye colour: dark; hair colour: dark; complexion: olive. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13126 +AL-ZAHRANI,Ahmed bin,Abdullah,Saleh bin,,,,,,,15/09/1978,Dammam,Saudi Arabia,Saudi Arabia,E126785,"Saudi Arabia number, issued on 27 May 2002. Expired on 3 Apr. 2007.",,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0123 (UN Ref):QDi.329 Senior member of Al-Qaida (QDe.004). Wanted by the Saudi Arabian Government for terrorism. Father's name is Abdullah Saleh al Zahrani. Physical description: eye colour: dark; hair colour: dark; complexion: olive. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13126 +AL-ZAHRANI,AHMED,ABDULLAH,SALEH AL-KHAZMARI,,,,,,,15/09/1978,Dammam,Saudi Arabia,Saudi Arabia,E126785,"Saudi Arabia number, issued on 27 May 2002. Expired on 3 Apr. 2007.",,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0123 (UN Ref):QDi.329 Senior member of Al-Qaida (QDe.004). Wanted by the Saudi Arabian Government for terrorism. Father's name is Abdullah Saleh al Zahrani. Physical description: eye colour: dark; hair colour: dark; complexion: olive. Speaks Arabic. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13126 +AL-ZAHRANI,FAYSAL,AHMAD,BIN ALI,,,,فيصل احمد بن علي الزهراني,,,19/01/1986,,,Saudi Arabia,(1) G579315 (2) K142736,"(1) Saudi Arabia (2) Saudi Arabia. issued on 14 Jul. 2011 in Al-Khafji, Saudi Arabia",,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0172 (UN Ref):QDi.392 Was the lead oil and gas division official of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), for Al Barakah Governorate, Syrian Arab Republic, as of May 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5943051",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,11/02/2022,13351 +AL-ZAIDI,GHALIB,ABDULLAH,,,,,غالب عبدالله الزيدي,,,00/00/1975,"Raqqah Region, Marib Governorate",Yemen,Yemen,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0177 (UN Ref):QDi.401 A leader of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) in Marib Governorate, Yemen since 2015. Provided AQAP with weapons, funding and recruits. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13448 +AL-ZAIDI,GHALIB,ABDULLAH,,,,,غالب عبدالله الزيدي,,,00/00/1970,"Raqqah Region, Marib Governorate",Yemen,Yemen,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0177 (UN Ref):QDi.401 A leader of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) in Marib Governorate, Yemen since 2015. Provided AQAP with weapons, funding and recruits. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13448 +AL-ZAMEL,Ghassan,,,,,,,,,00/00/1963,Damascus,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0371 (UK Statement of Reasons):Minister of Electricity. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,06/11/2020,31/12/2020,31/12/2020,14001 +AL-ZARKAOUI,Imad,ben al-Mekki,ben al-Akhdar,,,,,,,15/01/1973,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +AL-ZARKAOUI,Imad,ben al-Mekki,ben al-Akhdar,,,,,,,15/01/1974,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +AL-ZARKAOUI,Imad,ben al-Mekki,ben al-Akhdar,,,,,,,31/03/1975,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +AL-ZARQAWI NETWORK,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +AL-ZARQAWI NETWORK,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +AL-ZAWAHARI,Ayman,,,,,,,,,19/06/1951,Giza,Egypt,Egypt,(1) 1084010 (2) 19820215,(1) Egyptian (2) - .,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0126 (UN Ref):QDi.006 Leader of Al-Qaida (QDe.004). Former operational and military leader of Egyptian Islamic Jihad (QDe.003), was a close associate of Usama Bin Laden (deceased). Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487197",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7016 +AL-ZAWAHIRI,AIMAN,MUHAMMED,RABI,,,Doctor,أيمن محمد ربيع الظواهري,,,19/06/1951,Giza,Egypt,Egypt,(1) 1084010 (2) 19820215,(1) Egyptian (2) - .,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0126 (UN Ref):QDi.006 Leader of Al-Qaida (QDe.004). Former operational and military leader of Egyptian Islamic Jihad (QDe.003), was a close associate of Usama Bin Laden (deceased). Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487197",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7016 +AL-ZAWBA',Muthanna,Harith,Sulayman,Al Dari,,Doctor,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-ZAWBA',Muthanna,Harith,Sulayman,Al Dari,,Doctor,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Amman,,Jordan,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-ZAWBA',Muthanna,Harith,Sulayman,Al Dari,,Doctor,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Khan Dari,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-ZAWBA',Muthanna,Harith,Sulayman,Al Dari,,Doctor,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,Asas Village,Abu Ghurayb,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-ZAWBA'I,Muthanna,Harith,Sulayman,Al-Dari,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-ZAWBA'I,Muthanna,Harith,Sulayman,Al-Dari,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Amman,,Jordan,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-ZAWBA'I,Muthanna,Harith,Sulayman,Al-Dari,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Khan Dari,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-ZAWBA'I,Muthanna,Harith,Sulayman,Al-Dari,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,Asas Village,Abu Ghurayb,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-ZAYDI,Ghalib,Abdallah,,,,,,,,00/00/1975,"Raqqah Region, Marib Governorate",Yemen,Yemen,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0177 (UN Ref):QDi.401 A leader of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) in Marib Governorate, Yemen since 2015. Provided AQAP with weapons, funding and recruits. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13448 +AL-ZAYDI,Ghalib,Abdallah,,,,,,,,00/00/1970,"Raqqah Region, Marib Governorate",Yemen,Yemen,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0177 (UN Ref):QDi.401 A leader of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) in Marib Governorate, Yemen since 2015. Provided AQAP with weapons, funding and recruits. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13448 +AL-ZAYDI,Ghalib,Abdallah,Ali,,,,,,,00/00/1975,"Raqqah Region, Marib Governorate",Yemen,Yemen,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0177 (UN Ref):QDi.401 A leader of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) in Marib Governorate, Yemen since 2015. Provided AQAP with weapons, funding and recruits. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13448 +AL-ZAYDI,Ghalib,Abdallah,Ali,,,,,,,00/00/1970,"Raqqah Region, Marib Governorate",Yemen,Yemen,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0177 (UN Ref):QDi.401 A leader of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) in Marib Governorate, Yemen since 2015. Provided AQAP with weapons, funding and recruits. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13448 +AL-ZINDANI,Abdelmajid,,,,,,,,,00/00/1950,,Yemen,Yemen,A005487,(Yemen). Issued on 13 August 1995,,,,P.O. Box 8096,,,,,Sana'a,,Yemen,(UK Sanctions List Ref):AQD0096 (UN Ref):QDi.156 Review pursuant to Security Council resolution 1822 (2008) was concluded on 2 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423688,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/02/2004,27/02/2004,31/12/2020,8008 +AL-ZINDANI,Shaykh 'Abd,Al-Majid,,,,,,,,00/00/1950,,Yemen,Yemen,A005487,(Yemen). Issued on 13 August 1995,,,,P.O. Box 8096,,,,,Sana'a,,Yemen,(UK Sanctions List Ref):AQD0096 (UN Ref):QDi.156 Review pursuant to Security Council resolution 1822 (2008) was concluded on 2 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423688,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/02/2004,27/02/2004,31/12/2020,8008 +AL-ZINDANI,ABD-AL-MAJID,AZIZ,,,,Sheikh,عبدالحميد المصلي,,,00/00/1950,,Yemen,Yemen,A005487,(Yemen). Issued on 13 August 1995,,,,P.O. Box 8096,,,,,Sana'a,,Yemen,(UK Sanctions List Ref):AQD0096 (UN Ref):QDi.156 Review pursuant to Security Council resolution 1822 (2008) was concluded on 2 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423688,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,27/02/2004,27/02/2004,31/12/2020,8008 +AL-ZOBAI,Muthanna,Harith,Sulayman,Al-Dari,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-ZOBAI,Muthanna,Harith,Sulayman,Al-Dari,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Amman,,Jordan,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-ZOBAI,Muthanna,Harith,Sulayman,Al-Dari,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Khan Dari,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-ZOBAI,Muthanna,Harith,Sulayman,Al-Dari,,,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,Asas Village,Abu Ghurayb,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-ZOUBI,Khaldoon,,,,,,,,,00/00/1979,,,(1) Lebanon. (2) Syria,,,,,Syrian businessman. Vice-President of Aman Holding (A.k.a. Aman Group),,,,,,,,,"(UK Sanctions List Ref):SYR0261 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy; including his roles as Vice President of Aman Holding and majority shareholder of Fly Aman airline. In this capacity, he is linked to Samer Foz. Aman Holding is represented on the board of, and holds a majority stake in, ‘Aman Damascus’, a joint venture in the construction of Marota City, a regime-backed luxury residential and commercial development. Al-Zoubi benefits from and/or supports the regime through his position as Vice President of Aman Holding. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13757 +AL-ZOUBI,Khaldoun,,,,,,,,,00/00/1979,,,(1) Lebanon. (2) Syria,,,,,Syrian businessman. Vice-President of Aman Holding (A.k.a. Aman Group),,,,,,,,,"(UK Sanctions List Ref):SYR0261 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy; including his roles as Vice President of Aman Holding and majority shareholder of Fly Aman airline. In this capacity, he is linked to Samer Foz. Aman Holding is represented on the board of, and holds a majority stake in, ‘Aman Damascus’, a joint venture in the construction of Marota City, a regime-backed luxury residential and commercial development. Al-Zoubi benefits from and/or supports the regime through his position as Vice President of Aman Holding. (Gender):Male",Individual,Primary name,,Syria,22/01/2019,31/12/2020,31/12/2020,13757 +AL-ZOWBAI,Muthanna,Harith,al-Dari,,,Doctor,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-ZOWBAI,Muthanna,Harith,al-Dari,,,Doctor,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Amman,,Jordan,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-ZOWBAI,Muthanna,Harith,al-Dari,,,Doctor,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,,Khan Dari,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-ZOWBAI,Muthanna,Harith,al-Dari,,,Doctor,,,,16/06/1969,,Iraq,Iraq,,,1729765,Ration card number,,,,,,Asas Village,Abu Ghurayb,,Iraq,"(UK Sanctions List Ref):AQD0268 (UN Ref):QDi.278 Mother’s name: Heba Khamis Dari. Provided operational guidance financial support and other services to or in support of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Involved in oil smuggling. Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/04/2010,25/03/2010,31/12/2020,11052 +AL-ZUBAIDI,Khaled,,,,,,خالد الزبيدي,,,,,,Syria,,,,,"Co-owner of Zubaidi and Qalei LLC, Director of Agar Investment Company, General Manager of Al Zubaidi company and Al Zubaidi & Al Taweet Contracting Company, Director and Owner of Zubaidi Development Company, and co-owner of Enjaz Investment Company.",,,,,,,,,"(UK Sanctions List Ref):SYR0264 (UK Statement of Reasons):Leading businessperson operating in Syria, with significant investments in the construction industry, including a 50 % stake in Zubaidi and Qalei LLC, which is constructing the luxury tourist city Grand Town and to which the regime has granted a 45-year agreement in return for 19-21 % of its revenue. In this capacity he is linked to Nader Qalei. Khaled al-Zubaidi benefits from and/or supports the regime through his business activities, in particular through this stake in the Grand Town development. (Gender):Male",Individual,Primary name,,Syria,22/01/2019,31/12/2020,31/12/2020,13760 +AL-ZUBAIDI,Mohammed,Khaled,Bassam,,,,,,,,,,Syria,,,,,"Co-owner of Zubaidi and Qalei LLC, Director of Agar Investment Company, General Manager of Al Zubaidi company and Al Zubaidi & Al Taweet Contracting Company, Director and Owner of Zubaidi Development Company, and co-owner of Enjaz Investment Company.",,,,,,,,,"(UK Sanctions List Ref):SYR0264 (UK Statement of Reasons):Leading businessperson operating in Syria, with significant investments in the construction industry, including a 50 % stake in Zubaidi and Qalei LLC, which is constructing the luxury tourist city Grand Town and to which the regime has granted a 45-year agreement in return for 19-21 % of its revenue. In this capacity he is linked to Nader Qalei. Khaled al-Zubaidi benefits from and/or supports the regime through his business activities, in particular through this stake in the Grand Town development. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13760 +AL-ZUBAIDI,Mohammed,Khalid,Bassam,,,,,,,,,,Syria,,,,,"Co-owner of Zubaidi and Qalei LLC, Director of Agar Investment Company, General Manager of Al Zubaidi company and Al Zubaidi & Al Taweet Contracting Company, Director and Owner of Zubaidi Development Company, and co-owner of Enjaz Investment Company.",,,,,,,,,"(UK Sanctions List Ref):SYR0264 (UK Statement of Reasons):Leading businessperson operating in Syria, with significant investments in the construction industry, including a 50 % stake in Zubaidi and Qalei LLC, which is constructing the luxury tourist city Grand Town and to which the regime has granted a 45-year agreement in return for 19-21 % of its revenue. In this capacity he is linked to Nader Qalei. Khaled al-Zubaidi benefits from and/or supports the regime through his business activities, in particular through this stake in the Grand Town development. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13760 +AL-ZUBAISI,UGLA,ABID,SAKR,,,,عكلة عبد صكر القبيسي,,,00/00/1944,"Kubaisi, al-Anbar",Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0111 (UN Ref):IQi.050,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7601 +AL-ZUBEDI,Khaled,,,,,,,,,,,,Syria,,,,,"Co-owner of Zubaidi and Qalei LLC, Director of Agar Investment Company, General Manager of Al Zubaidi company and Al Zubaidi & Al Taweet Contracting Company, Director and Owner of Zubaidi Development Company, and co-owner of Enjaz Investment Company.",,,,,,,,,"(UK Sanctions List Ref):SYR0264 (UK Statement of Reasons):Leading businessperson operating in Syria, with significant investments in the construction industry, including a 50 % stake in Zubaidi and Qalei LLC, which is constructing the luxury tourist city Grand Town and to which the regime has granted a 45-year agreement in return for 19-21 % of its revenue. In this capacity he is linked to Nader Qalei. Khaled al-Zubaidi benefits from and/or supports the regime through his business activities, in particular through this stake in the Grand Town development. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13760 +AL-ZUBEDI,Mohammed,Khaled,Bassam,,,,,,,,,,Syria,,,,,"Co-owner of Zubaidi and Qalei LLC, Director of Agar Investment Company, General Manager of Al Zubaidi company and Al Zubaidi & Al Taweet Contracting Company, Director and Owner of Zubaidi Development Company, and co-owner of Enjaz Investment Company.",,,,,,,,,"(UK Sanctions List Ref):SYR0264 (UK Statement of Reasons):Leading businessperson operating in Syria, with significant investments in the construction industry, including a 50 % stake in Zubaidi and Qalei LLC, which is constructing the luxury tourist city Grand Town and to which the regime has granted a 45-year agreement in return for 19-21 % of its revenue. In this capacity he is linked to Nader Qalei. Khaled al-Zubaidi benefits from and/or supports the regime through his business activities, in particular through this stake in the Grand Town development. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13760 +AL-ZUBEDI,Mohammed,Khalid,Bassam,,,,,,,,,,Syria,,,,,"Co-owner of Zubaidi and Qalei LLC, Director of Agar Investment Company, General Manager of Al Zubaidi company and Al Zubaidi & Al Taweet Contracting Company, Director and Owner of Zubaidi Development Company, and co-owner of Enjaz Investment Company.",,,,,,,,,"(UK Sanctions List Ref):SYR0264 (UK Statement of Reasons):Leading businessperson operating in Syria, with significant investments in the construction industry, including a 50 % stake in Zubaidi and Qalei LLC, which is constructing the luxury tourist city Grand Town and to which the regime has granted a 45-year agreement in return for 19-21 % of its revenue. In this capacity he is linked to Nader Qalei. Khaled al-Zubaidi benefits from and/or supports the regime through his business activities, in particular through this stake in the Grand Town development. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13760 +AL-ZU'BI,Khaldoon,,,,,,,,,00/00/1979,,,(1) Lebanon. (2) Syria,,,,,Syrian businessman. Vice-President of Aman Holding (A.k.a. Aman Group),,,,,,,,,"(UK Sanctions List Ref):SYR0261 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy; including his roles as Vice President of Aman Holding and majority shareholder of Fly Aman airline. In this capacity, he is linked to Samer Foz. Aman Holding is represented on the board of, and holds a majority stake in, ‘Aman Damascus’, a joint venture in the construction of Marota City, a regime-backed luxury residential and commercial development. Al-Zoubi benefits from and/or supports the regime through his position as Vice President of Aman Holding. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13757 +AL-ZU'BI,Khaldoun,,,,,,,,,00/00/1979,,,(1) Lebanon. (2) Syria,,,,,Syrian businessman. Vice-President of Aman Holding (A.k.a. Aman Group),,,,,,,,,"(UK Sanctions List Ref):SYR0261 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy; including his roles as Vice President of Aman Holding and majority shareholder of Fly Aman airline. In this capacity, he is linked to Samer Foz. Aman Holding is represented on the board of, and holds a majority stake in, ‘Aman Damascus’, a joint venture in the construction of Marota City, a regime-backed luxury residential and commercial development. Al-Zoubi benefits from and/or supports the regime through his position as Vice President of Aman Holding. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13757 +AMAN,Mohammed,,,,,,,,,00/00/1970,"Bande Tumur Village, Maiwand District, Kandahar Province",Afghanistan,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0124 (UN Ref):TAi.158 Senior Taliban member as at 2011 with financial duties, including raising funds on behalf of the leadership. Has provided logistical support for Taliban operations and channeled proceeds from drug trafficking to arms purchases. Has acted as secretary to Taliban leader Mullah Mohammed Omar (TAi.004) and as his messenger at senior-level meetings of the Taliban. Also associated with Gul Agha Ishakzai (TAi.147). Member of Mullah Mohammed Omar’s (TAi.004) inner circle during the Taliban regime. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12456 +AMAN DAMASCUS JOINT STOCK COMPANY,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0271 (UK Statement of Reasons):Aman Damascus Joint Stock Company is a USD$18.9 million joint venture between Damascus Cham Holdings and Aman Group. Through its participation in the regime-backed luxury development Marota City, Aman Damascus supports and / or benefits from the Syrian regime. (Type of entity):Joint Venture. Private Joint Stock Company",Entity,Primary name,,Syria,22/01/2019,31/12/2020,31/12/2020,13765 +AMAN DAMASCUS JSC,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0271 (UK Statement of Reasons):Aman Damascus Joint Stock Company is a USD$18.9 million joint venture between Damascus Cham Holdings and Aman Group. Through its participation in the regime-backed luxury development Marota City, Aman Damascus supports and / or benefits from the Syrian regime. (Type of entity):Joint Venture. Private Joint Stock Company",Entity,AKA,,Syria,22/01/2019,31/12/2020,31/12/2020,13765 +AMANOLLAHI,Manouchehr,,,,,,,,,00/00/1965,Korramabad,Iran,Iran,,,,,Law Enforcement Force Commander in Charhmahal and Bakhtiari,,,,,,,,,"(UK Sanctions List Ref):IHR0095 (UK Statement of Reasons):Manouchehr AMANOLLAHI is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and the right to freedom of expression and peaceful assembly in Iran in his role as the commander of the Law Enforcement Force (LEF) in Charhmahal and Bakhtiari and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15615 +AMANOLLAHI,Manouchehr,,,,,,,,,00/00/1966,Korramabad,Iran,Iran,,,,,Law Enforcement Force Commander in Charhmahal and Bakhtiari,,,,,,,,,"(UK Sanctions List Ref):IHR0095 (UK Statement of Reasons):Manouchehr AMANOLLAHI is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and the right to freedom of expression and peaceful assembly in Iran in his role as the commander of the Law Enforcement Force (LEF) in Charhmahal and Bakhtiari and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15615 +AMAR,'Umar,Muhammad,'Abdallah Ba',,,,,,,16/09/1973,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +AMAR,'Umar,Muhammad,'Abdallah Ba',,,,,,,01/05/1972,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +AMEEN AL-PESHAWARI,Shaykh,Abu,Mohammed,,,,,,,00/00/1961,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMEEN AL-PESHAWARI,Shaykh,Abu,Mohammed,,,,,,,00/00/1967,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMEEN AL-PESHAWARI,Shaykh,Abu,Mohammed,,,,,,,00/00/1973,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMELCHENKOVA,Olga,Nikolaevna,,,,,Амельченкова Ольга Николаевна,,,05/09/1990,Borisoglebsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0301 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14246 +AMIF,,,,,,,,,,,,,,,,,,,,,,,P.O. Box 108,Damascus,,Syria,(UK Sanctions List Ref):SYR0279 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime. Al Mashreq Investment Fund benefits from and supports the Assad regime. (Phone number):(1) +963 112110043 (2) +963 112110059 (Type of entity):Private,Entity,AKA,,Syria,24/06/2011,31/12/2020,13/05/2022,12018 +AMIN,,,,,,Doctor,,,,00/00/1960,Nangarhar Province,Afghanistan,Afghanistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0136 (UN Ref):QDi.002 Security coordinator for Usama bin Laden (deceased). Repatriated to Afghanistan in February 2006. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,6944 +AMIN,Muhammad,,,,,,,,,00/00/1960,Nangarhar Province,Afghanistan,Afghanistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0136 (UN Ref):QDi.002 Security coordinator for Usama bin Laden (deceased). Repatriated to Afghanistan in February 2006. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,6944 +AMIN,Samir,Izzat,Qadi,,,,,,,00/00/1966,,,Syria,,,,,Former Minister for Internal (Domestic) Trade and Consumer Protection,,,,,,,,,(UK Sanctions List Ref):SYR0218 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population.,Individual,Primary name,,Syria,24/06/2014,31/12/2020,02/12/2021,12993 +AMIN,Aminullah,,,,,,,,,00/00/1973,"Loy Karez village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,Governor of Saripul Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0085 (UN Ref):TAi.107 Member of Taliban Supreme Council as at 2011. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7017 +AMIN BISHAWRI,Abu,Mohammad,,,,,,,,00/00/1961,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMIN BISHAWRI,Abu,Mohammad,,,,,,,,00/00/1967,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMIN BISHAWRI,Abu,Mohammad,,,,,,,,00/00/1973,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMIN INDUSTRIAL COMPANY,,,,,,,,,,,,,,,,,,,,,,,P.O.Box 91735-549,Mashad,,Iran,"(UK Sanctions List Ref):INU0133 (UN Ref):IRe.003 Sought temperature controllers which may be used in nuclear research and operational/production facilities. Amin Industrial Complex is owned or controlled by, or acts on behalf of, DIO, which was designated in resolution 1737 (2006). [Old Reference # E.29.I.1]",Entity,AKA,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11125 +AMIN INDUSTRIAL COMPANY,,,,,,,,,,,,,,,,,,,,,Amin Industrial Estate,Khalage Rd.,Seyedi District,Mashad,,Iran,"(UK Sanctions List Ref):INU0133 (UN Ref):IRe.003 Sought temperature controllers which may be used in nuclear research and operational/production facilities. Amin Industrial Complex is owned or controlled by, or acts on behalf of, DIO, which was designated in resolution 1737 (2006). [Old Reference # E.29.I.1]",Entity,AKA,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11125 +AMIN INDUSTRIAL COMPANY,,,,,,,,,,,,,,,,,,,,,Kaveh Complex,Khalaj Rd.,Seyedi St.,Mashad,,Iran,"(UK Sanctions List Ref):INU0133 (UN Ref):IRe.003 Sought temperature controllers which may be used in nuclear research and operational/production facilities. Amin Industrial Complex is owned or controlled by, or acts on behalf of, DIO, which was designated in resolution 1737 (2006). [Old Reference # E.29.I.1]",Entity,AKA,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11125 +AMIN INDUSTRIAL COMPLEX,,,,,,,,,,,,,,,,,,,,,,,P.O.Box 91735-549,Mashad,,Iran,"(UK Sanctions List Ref):INU0133 (UN Ref):IRe.003 Sought temperature controllers which may be used in nuclear research and operational/production facilities. Amin Industrial Complex is owned or controlled by, or acts on behalf of, DIO, which was designated in resolution 1737 (2006). [Old Reference # E.29.I.1]",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11125 +AMIN INDUSTRIAL COMPLEX,,,,,,,,,,,,,,,,,,,,,Amin Industrial Estate,Khalage Rd.,Seyedi District,Mashad,,Iran,"(UK Sanctions List Ref):INU0133 (UN Ref):IRe.003 Sought temperature controllers which may be used in nuclear research and operational/production facilities. Amin Industrial Complex is owned or controlled by, or acts on behalf of, DIO, which was designated in resolution 1737 (2006). [Old Reference # E.29.I.1]",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11125 +AMIN INDUSTRIAL COMPLEX,,,,,,,,,,,,,,,,,,,,,Kaveh Complex,Khalaj Rd.,Seyedi St.,Mashad,,Iran,"(UK Sanctions List Ref):INU0133 (UN Ref):IRe.003 Sought temperature controllers which may be used in nuclear research and operational/production facilities. Amin Industrial Complex is owned or controlled by, or acts on behalf of, DIO, which was designated in resolution 1737 (2006). [Old Reference # E.29.I.1]",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11125 +AMIN INDUSTRIAL COMPOUND,,,,,,,,,,,,,,,,,,,,,,,P.O.Box 91735-549,Mashad,,Iran,"(UK Sanctions List Ref):INU0133 (UN Ref):IRe.003 Sought temperature controllers which may be used in nuclear research and operational/production facilities. Amin Industrial Complex is owned or controlled by, or acts on behalf of, DIO, which was designated in resolution 1737 (2006). [Old Reference # E.29.I.1]",Entity,AKA,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11125 +AMIN INDUSTRIAL COMPOUND,,,,,,,,,,,,,,,,,,,,,Amin Industrial Estate,Khalage Rd.,Seyedi District,Mashad,,Iran,"(UK Sanctions List Ref):INU0133 (UN Ref):IRe.003 Sought temperature controllers which may be used in nuclear research and operational/production facilities. Amin Industrial Complex is owned or controlled by, or acts on behalf of, DIO, which was designated in resolution 1737 (2006). [Old Reference # E.29.I.1]",Entity,AKA,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11125 +AMIN INDUSTRIAL COMPOUND,,,,,,,,,,,,,,,,,,,,,Kaveh Complex,Khalaj Rd.,Seyedi St.,Mashad,,Iran,"(UK Sanctions List Ref):INU0133 (UN Ref):IRe.003 Sought temperature controllers which may be used in nuclear research and operational/production facilities. Amin Industrial Complex is owned or controlled by, or acts on behalf of, DIO, which was designated in resolution 1737 (2006). [Old Reference # E.29.I.1]",Entity,AKA,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11125 +AMINULLAH,,,,,,Haji,,,,00/00/1957,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +AMINULLAH,,,,,,Haji,,,,00/00/1957,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +AMINULLAH,,,,,,Haji,,,,00/00/1960,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +AMINULLAH,,,,,,Haji,,,,00/00/1960,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +AMINULLAH,,,,,,Haji,,,,01/01/1963,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +AMINULLAH,,,,,,Haji,,,,01/01/1963,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +AMINULLAH,Shaykh,,,,,,,,,00/00/1961,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMINULLAH,Shaykh,,,,,,,,,00/00/1967,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMINULLAH,Shaykh,,,,,,,,,00/00/1973,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMINULLAH,Sheik,,,,,,,,,00/00/1961,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMINULLAH,Sheik,,,,,,,,,00/00/1967,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMINULLAH,Sheik,,,,,,,,,00/00/1973,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMINULLAH AL-BISHAURI,Abu,Mohammad,Shaykh,,,,,,,00/00/1961,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMINULLAH AL-BISHAURI,Abu,Mohammad,Shaykh,,,,,,,00/00/1967,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMINULLAH AL-BISHAURI,Abu,Mohammad,Shaykh,,,,,,,00/00/1973,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMINULLAH AL-PESHAWARI,Shaykh,,,,,,,,,00/00/1961,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMINULLAH AL-PESHAWARI,Shaykh,,,,,,,,,00/00/1967,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMINULLAH AL-PESHAWARI,Shaykh,,,,,,,,,00/00/1973,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMINULLAH PESHAWARI,Abu,Mohammad,,,,,,,,00/00/1961,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMINULLAH PESHAWARI,Abu,Mohammad,,,,,,,,00/00/1967,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMINULLAH PESHAWARI,Abu,Mohammad,,,,,,,,00/00/1973,"Shunkrai village, Sarkani District, Konar Province",Afghanistan,Afghanistan,,,,,,,,,,Ganj District,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0174 (UN Ref):QDi.273 Associated with Al-Qaida (QDe.004). Head of Ganj madrasa, a.k.a. Madrasa Jamia Taleemul Quran wal Hadith, a.k.a. Madrasa Taleemul Quran wal Sunnah, located at the Ganj Gate, Phandu Road, Peshawar, Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578086",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10908 +AMIR MOHAMMAD,Mohammad Sadiq,,,,,(1) Alhaj (2) Maulavi,محمد صادق امیر محمد,,,00/00/1934,(1) Ghazni Province. (2) Logar Province,(1) Afghanistan (2) Afghanistan,Afghanistan,SE 011252,Afghanistan number,,,"Head of Afghan Trade Agency, Peshawar, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0104 (UN Ref):TAi.136 Reportedly deceased. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7421 +AMMAR,Yahia,Abou,,,,,,,,01/01/1967,"M’Hamid, Wilaya (province) of Sidi Bel Abbes",Algeria,Algeria,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0333 (UN Ref):QDi.249 Belongs to the leadership of the Organization of Al-Qaida in the Islamic Maghreb (listed under permanent reference number QDe.014). Located in Northern Mali as of Jun. 2008. Mother’s name is Zohra Fares. Father’s name is Mohamed. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1274977,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,12/01/2022,10690 +'AMMAR,Abu,,,,,,,,,05/06/1978,"Raymah village, Sanaa Governorate",Yemen,Yemen,00344994,"Yemeni. Issue date: 03/07/1999, issued in Sanaa.",973406,Yemeni national identification number. Issued on 3 Jul. 1996,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0288 (UN Ref):QDi.282 Mother’s name: Fatima Muthanna Yahya. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Al-Qaida in the Arabian Peninsula (QDe.129) since Jun. 2015, pledged loyalty to Aiman al-Zawahiri (QDi.006). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4470245",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,26/05/2010,11/05/2010,31/12/2020,11123 +AMMARI,Saifi,,,,,,سيفي عماري,,,01/01/1968,(1) Kef Rih (2) Guelma,(1) Algeria (2) Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0303 (UN Ref):QDi.152 In detention in Algeria since Oct. 2004. Former member of the GSPC listed as The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. El Para (combat name), Abderrezak Le Para (combat name).",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/12/2003,04/12/2003,16/02/2022,7890 +AMMARI,Saifi,,,,,,سيفي عماري,,,24/04/1968,(1) Kef Rih (2) Guelma,(1) Algeria (2) Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0303 (UN Ref):QDi.152 In detention in Algeria since Oct. 2004. Former member of the GSPC listed as The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. El Para (combat name), Abderrezak Le Para (combat name).",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/12/2003,04/12/2003,16/02/2022,7890 +AMMASH,HUDA,SALIH,MAHDI,,,,هدى صالح مهدي عماش,,,00/00/1953,Baghdad,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0100 (UN Ref):IQi.039,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7602 +AMMOSOV,Petr,Revoldovich,,,,,Аммосов Петр Револьдович,,,22/09/1966,Yakutsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0610 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14555 +AMMUNITION AND METALLURGY INDUSTRIES GROUP (AMIG),,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0134 (UN Ref):IRe.004 Controls 7th of Tir, which is designated under resolution 1737 (2006) for its role in Iran's centrifuge programme. AMIG is in turn owned and controlled by DIO, which is designated under resolution 1737 (2006). [Old Reference # E.47.A.1] (Subsidiaries):7TH OF TIR",Entity,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,31/12/2020,9034 +AMMUNITION INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0134 (UN Ref):IRe.004 Controls 7th of Tir, which is designated under resolution 1737 (2006) for its role in Iran's centrifuge programme. AMIG is in turn owned and controlled by DIO, which is designated under resolution 1737 (2006). [Old Reference # E.47.A.1] (Subsidiaries):7TH OF TIR",Entity,AKA,,Iran (Nuclear),24/03/2007,24/03/2007,31/12/2020,9034 +AMNOKKANG DEVELOPMENT BANK,,,,,,,,,,,,,,,,,,,,,,,Tongan-dong,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0125 (UN Ref):KPe.009 Amroggang, which was established in 2006, is a Tanchon Commercial Bank-related company managed by Tanchon officials. Tanchon plays a role in financing KOMID’s sales of ballistic missiles and has also been involved in ballistic missile transactions from KOMID to Iran’s Shahid Hemmat Industrial Group (SHIG). Tanchon Commercial Bank was designated by the Committee in April 2009 and is the main DPRK financial entity for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons. KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. The Security Council designated SHIG in resolution 1737 (2006) as an entity involved in Iran’s ballistic missile programme.",Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/05/2012,31/12/2020,12450 +AMOROSO,Elvis,Eduardo,,,,,,,,04/08/1963,Caracas,Venezuela,Venezuela,,,V-7659695,,(1) Comptroller General and President of Venezuela’s Moral Council (2) Former Vice President of the National Constituent Assembly,,,,,,,,Venezuela,"(UK Sanctions List Ref):VEN0029 (UK Statement of Reasons):Amoroso has repeatedly undermined democracy in Venezuela, undermined the rule of law and violated the right to freedom of speech. By taking up his appointment as Comptroller General in contravention of a ruling by the legitimate National Assembly, and his role in setting up the non-recognised National Constituent Assembly (ANC), Amoroso has seriously undermined the democratic process, constitution, and democratic institutions in Venezuela. Additionally, while Second Vice President of the ANC, he contributed to the political persecution of opposition politicians Freddy Guevara and Juan Pablo Guanipa, further undermining democracy. (Gender):Male",Individual,Primary name,,Venezuela,30/06/2020,31/12/2020,02/08/2022,13844 +AMROGGANG DEVELOPMENT BANK,,,,,,,,,,,,,,,,,,,,,,,Tongan-dong,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0125 (UN Ref):KPe.009 Amroggang, which was established in 2006, is a Tanchon Commercial Bank-related company managed by Tanchon officials. Tanchon plays a role in financing KOMID’s sales of ballistic missiles and has also been involved in ballistic missile transactions from KOMID to Iran’s Shahid Hemmat Industrial Group (SHIG). Tanchon Commercial Bank was designated by the Committee in April 2009 and is the main DPRK financial entity for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons. KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. The Security Council designated SHIG in resolution 1737 (2006) as an entity involved in Iran’s ballistic missile programme.",Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/05/2012,31/12/2020,12450 +AMROGGANG DEVELOPMENT BANKING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Tongan-dong,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0125 (UN Ref):KPe.009 Amroggang, which was established in 2006, is a Tanchon Commercial Bank-related company managed by Tanchon officials. Tanchon plays a role in financing KOMID’s sales of ballistic missiles and has also been involved in ballistic missile transactions from KOMID to Iran’s Shahid Hemmat Industrial Group (SHIG). Tanchon Commercial Bank was designated by the Committee in April 2009 and is the main DPRK financial entity for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons. KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. The Security Council designated SHIG in resolution 1737 (2006) as an entity involved in Iran’s ballistic missile programme.",Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,02/05/2012,31/12/2020,12450 +AN,Jong,Hyok,,,,,,,,14/03/1970,,,North Korea,563410155,,,,Diplomat DPRK Embassy Egypt,,,,,,,,Egypt,"(UK Sanctions List Ref):DPR0001 Associations with Green Pine Corporation and DPRK Embassy Egypt (UK Statement of Reasons):Representative of Saeng Pil Trading Corporation, an alias of Green Pine Associated Corporation, and DPRK diplomat in Egypt. Green Pine has been designated by the UN for activities including breach of the UN arms embargo. An Jong Hyuk was authorised to conduct all types of business on behalf of Saeng Pil, including signing and implementing contracts and banking business. The company specialises in the construction of naval vessels and the design, fabrication and installation of electronic communication and marine navigation equipment. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13590 +AN,Jong,Hyuk,,,,Diplomat,,,,14/03/1970,,,North Korea,563410155,,,,Diplomat DPRK Embassy Egypt,,,,,,,,Egypt,"(UK Sanctions List Ref):DPR0001 Associations with Green Pine Corporation and DPRK Embassy Egypt (UK Statement of Reasons):Representative of Saeng Pil Trading Corporation, an alias of Green Pine Associated Corporation, and DPRK diplomat in Egypt. Green Pine has been designated by the UN for activities including breach of the UN arms embargo. An Jong Hyuk was authorised to conduct all types of business on behalf of Saeng Pil, including signing and implementing contracts and banking business. The company specialises in the construction of naval vessels and the design, fabrication and installation of electronic communication and marine navigation equipment. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13590 +AN SAN 1,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0097 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK tanker M/V AN SAN 1 was involved in ship-to-ship transfer operations, likely for oil, in late January 2018. Listed as asset of Korea Ansan Shipping Company (OFSI ID: 13633, UN Reference Number: UN Ref KPe.062) (IMO number):7303803 (Current owners):Korean Ansan Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Chemical Carrier (Tonnage of ship):1757 (Length of ship):86 (Year built):1973",Ship,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13648 +ANALITICHESKII TSENTR KATEKHON OOO,,,,,,,Центр Катехон,Cyrillic,Russian,,,,,,,,,,ul. Gorbunova d. 2,str. 3,e 9 pom II of 89,,,Moscow,121596,Russia,"(UK Sanctions List Ref):RUS1407 Organization Established Date 11 Feb 2016 (UK Statement of Reasons):ANALITICHESKI TSENTR KATEKHON OOO (a.k.a. KATEHON) is a think tank and website involved in the spread of propaganda and disinformation. Through articles on its website it is regularly engaged in providing support for and promoting policies and action which destabilise Ukraine and undermine and threaten its territorial integrity, sovereignty and independence. (Website):https://katehon.com/ (Email address):editor@katehon.com (Type of entity):Limited liability company (Business Reg No):1167746154432 (Russia). Tax ID No. 9710007769 (Russia)",Entity,Primary name,,Russia,04/05/2022,04/05/2022,24/06/2022,15327 +ANANCHENKO,Alexander,Evgenievich,,,,,,,,02/02/1966,,,Ukraine,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1132 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15084 +ANANCHENKO,Alexander,Yevgenevych,,,,,АНАНЧЕНКО Александр Евгеньевич,Cyrillic,Russian,02/02/1966,,,Ukraine,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1132 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15084 +ANANSKIKH,Igor,Alexandrovich,,,,,Ананских Игорь Александрович,,,09/06/1966,Vladikavkaz (previously known as Ordzhonikidze and Dzaudzhikau),Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0672 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14623 +ANAS,Abu,,,,,,,,,02/02/1966,al Aziziyya,Libya,Libya,(1) 203037 (2) 347834(3) 434021161,(1) Libyan. Issued in Tripoli. (2) Libyan. Issued under name Ibrahim Ali Tantoush. Expired on 21 February 2014 (3) South African. Related to alias Abdel Ilah Sabri. Confiscated.,6910275240086,South African. Related to alias Abdel Ilah Sabri. Confiscated.,,,,,,,Tripoli,,Libya,"(UK Sanctions List Ref):AQD0197 (UN Ref):QDi.057 Associated with Afghan Support Committee (ASC) (QDe.069), Revival of Islamic Heritage Society (RIHS)(QDe.070) and the Libyan Islamic Fighting Group (LIFG) (QDe.011). Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446790. Tripoli as at Feb. 2014",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6927 +ANAS,Abu,,,,,,,,,04/12/1971,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +ANAS,Abu,,,,,,,,,00/00/1977,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +ANBOUBA,Issam,,,,,,,,,00/00/1952,Homs,Syria,,,,,,President of Anbouba for Agricultural Industries Co,,,,,,,,,"(UK Sanctions List Ref):SYR0103 (UK Statement of Reasons):Providing financial support for the repressive apparatus and the paramilitary groups exerting violence against the civil population in Syria. Providing property (premises, warehouses) for improvised detention centres and use by Syrian armed forces and pro-regime gunmen. Financial relations with high Syrian officials. President of Anbouba for Agricultural Industries. (Gender):Male",Individual,Primary name,,Syria,05/09/2011,31/12/2020,13/05/2022,12061 +ANDRESOV,Yuri,,,,,,,,,00/00/1969,Bashkortostan,Russia,Russia,,,,,Member of VTB Bank Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS0845 (UK Statement of Reasons):Yuri ANDRESOV is a member of VTB Bank’s Management Board. VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, ANDRESOV obtains a financial benefit from VTB Bank, therefore ANDRESOV is an involved person on the basis of his membership of and association with VTB Bank. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14796 +ANDRESOV,Yuriy,Nikolaevich,,,,,АНДРЕСОВ Юрий Николаевич,,,00/00/1969,Bashkortostan,Russia,Russia,,,,,Member of VTB Bank Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS0845 (UK Statement of Reasons):Yuri ANDRESOV is a member of VTB Bank’s Management Board. VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, ANDRESOV obtains a financial benefit from VTB Bank, therefore ANDRESOV is an involved person on the basis of his membership of and association with VTB Bank. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14796 +ANDRIENKO,Vladimir,Nikolaevich,,,,,АНДРИЕНКО Владимир Николаевич,Cyrillic,Russian,27/04/1957,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1225 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15177 +ANDRIYENKO,Vladimir,Nikolayevich,,,,,,,,27/04/1957,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1225 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15177 +ANDRUKH,Irina,Ivanovna,,,,,"АНДРУХ, Ирина Ивановна",Cyrillic,Russian,21/09/1959,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1262 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15214 +ANEI,PAUL,MALONG,AWAN,,,General,,,,00/00/1962,(1) Kotido (2) Malualkon,(1) Uganda (2) South Sudan,(1) South Sudan (2) Uganda,(1) S00004370 (2) D00001369 (3) 003606 (4) 00606 (5) B002606 (6) DA025963,(1) South Sudan (2) South Sudan (3) Sudan (4) Sudan (5) Sudan (6) Uganda,,,"(1) Former Governor, Northern Bahr el-Ghazal State (2) Former Chief of Staff of the Sudan People’s Liberation Army (SPLA)",,,,,,,,,"(UK Sanctions List Ref):SSU0006 (UN Ref):SSi.008 As Chief of General Staff of the SPLA, Malong expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement and breaches of the 2015 Agreement on the Resolution of the Conflict in South Sudan (ARCSS). He reportedly directed efforts to kill opposition leader Riek Machar. He ordered SPLA units to prevent the transport of humanitarian supplies. Under Malong’s leadership, the SPLA attacked civilians, schools and hospitals; forced the displacement of civilians; carried out enforced disappearances; arbitrarily detained civilians; and conducted acts of torture, and rape. He mobilized the Mathiang Anyoor Dinka tribal militia, which uses child soldiers. Under his leadership, the SPLA restricted UNMISS, the Joint Monitoring and Evaluation Commission (JMEC), and CTSAMM access to sites to investigate and document abuses.",Individual,Primary name,,South Sudan,18/07/2018,13/07/2018,12/01/2022,13699 +ANEI,PAUL,MALONG,AWAN,,,General,,,,04/12/1960,(1) Kotido (2) Malualkon,(1) Uganda (2) South Sudan,(1) South Sudan (2) Uganda,(1) S00004370 (2) D00001369 (3) 003606 (4) 00606 (5) B002606 (6) DA025963,(1) South Sudan (2) South Sudan (3) Sudan (4) Sudan (5) Sudan (6) Uganda,,,"(1) Former Governor, Northern Bahr el-Ghazal State (2) Former Chief of Staff of the Sudan People’s Liberation Army (SPLA)",,,,,,,,,"(UK Sanctions List Ref):SSU0006 (UN Ref):SSi.008 As Chief of General Staff of the SPLA, Malong expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement and breaches of the 2015 Agreement on the Resolution of the Conflict in South Sudan (ARCSS). He reportedly directed efforts to kill opposition leader Riek Machar. He ordered SPLA units to prevent the transport of humanitarian supplies. Under Malong’s leadership, the SPLA attacked civilians, schools and hospitals; forced the displacement of civilians; carried out enforced disappearances; arbitrarily detained civilians; and conducted acts of torture, and rape. He mobilized the Mathiang Anyoor Dinka tribal militia, which uses child soldiers. Under his leadership, the SPLA restricted UNMISS, the Joint Monitoring and Evaluation Commission (JMEC), and CTSAMM access to sites to investigate and document abuses.",Individual,Primary name,,South Sudan,18/07/2018,13/07/2018,12/01/2022,13699 +ANEI,PAUL,MALONG,AWAN,,,General,,,,12/04/1960,(1) Kotido (2) Malualkon,(1) Uganda (2) South Sudan,(1) South Sudan (2) Uganda,(1) S00004370 (2) D00001369 (3) 003606 (4) 00606 (5) B002606 (6) DA025963,(1) South Sudan (2) South Sudan (3) Sudan (4) Sudan (5) Sudan (6) Uganda,,,"(1) Former Governor, Northern Bahr el-Ghazal State (2) Former Chief of Staff of the Sudan People’s Liberation Army (SPLA)",,,,,,,,,"(UK Sanctions List Ref):SSU0006 (UN Ref):SSi.008 As Chief of General Staff of the SPLA, Malong expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement and breaches of the 2015 Agreement on the Resolution of the Conflict in South Sudan (ARCSS). He reportedly directed efforts to kill opposition leader Riek Machar. He ordered SPLA units to prevent the transport of humanitarian supplies. Under Malong’s leadership, the SPLA attacked civilians, schools and hospitals; forced the displacement of civilians; carried out enforced disappearances; arbitrarily detained civilians; and conducted acts of torture, and rape. He mobilized the Mathiang Anyoor Dinka tribal militia, which uses child soldiers. Under his leadership, the SPLA restricted UNMISS, the Joint Monitoring and Evaluation Commission (JMEC), and CTSAMM access to sites to investigate and document abuses.",Individual,Primary name,,South Sudan,18/07/2018,13/07/2018,12/01/2022,13699 +ANEI,PAUL,MALONG,AWAN,,,General,,,,01/01/1962,(1) Kotido (2) Malualkon,(1) Uganda (2) South Sudan,(1) South Sudan (2) Uganda,(1) S00004370 (2) D00001369 (3) 003606 (4) 00606 (5) B002606 (6) DA025963,(1) South Sudan (2) South Sudan (3) Sudan (4) Sudan (5) Sudan (6) Uganda,,,"(1) Former Governor, Northern Bahr el-Ghazal State (2) Former Chief of Staff of the Sudan People’s Liberation Army (SPLA)",,,,,,,,,"(UK Sanctions List Ref):SSU0006 (UN Ref):SSi.008 As Chief of General Staff of the SPLA, Malong expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement and breaches of the 2015 Agreement on the Resolution of the Conflict in South Sudan (ARCSS). He reportedly directed efforts to kill opposition leader Riek Machar. He ordered SPLA units to prevent the transport of humanitarian supplies. Under Malong’s leadership, the SPLA attacked civilians, schools and hospitals; forced the displacement of civilians; carried out enforced disappearances; arbitrarily detained civilians; and conducted acts of torture, and rape. He mobilized the Mathiang Anyoor Dinka tribal militia, which uses child soldiers. Under his leadership, the SPLA restricted UNMISS, the Joint Monitoring and Evaluation Commission (JMEC), and CTSAMM access to sites to investigate and document abuses.",Individual,Primary name,,South Sudan,18/07/2018,13/07/2018,12/01/2022,13699 +ANICHIN,Aleksey,Vasilyevich,,,,,,,,01/12/1949,Sevastopol,Ukraine,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0002 (UK Statement of Reasons):Aleksey Vasilyevich Anichin, as a deputy Minister in the Russian Interior Ministry and the head of the Investigative Committee, was involved in the mistreatment of Sergei Magnitsky whilst in detention, which contributed significantly to his death on 16 November 2009. Anichin oversaw a ‘team’ of investigators who failed to investigate complaints made by Magnitsky about his mistreatment and concealed evidence of Magnitsky’s deteriorating medical condition. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,18/02/2021,13853 +ANICHIN,Alexei,Vasilyevich,,,,,,,,01/12/1949,Sevastopol,Ukraine,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0002 (UK Statement of Reasons):Aleksey Vasilyevich Anichin, as a deputy Minister in the Russian Interior Ministry and the head of the Investigative Committee, was involved in the mistreatment of Sergei Magnitsky whilst in detention, which contributed significantly to his death on 16 November 2009. Anichin oversaw a ‘team’ of investigators who failed to investigate complaints made by Magnitsky about his mistreatment and concealed evidence of Magnitsky’s deteriorating medical condition. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,18/02/2021,13853 +ANIKA,Yaroslav,Gennadievich,,,,,АНИКА Ярослав Геннадьевич,Cyrillic,Russian,26/06/1990,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1175 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15127 +ANIKA,Yaroslav,Gennadiyevich,,,,,,,,26/06/1990,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1175 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15127 +ANIKEEV,Andrey,Anatolievich,,,,,Аникеев Андрей Анатольевич,,,16/12/1961,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0611 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14556 +ANIKEEV,Grigory,Viktorovich,,,,,Аникеев Григорий Викторович,,,28/02/1972,"Dutovo, Komi Republic",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0612 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14557 +ANIS,,,,,,,,,,20/03/1978,"Gattaran, Cagayan Province",Philippines,Philippines,,,,,,3111 Ma. Bautista,Punta,Santa Ana,,,Manila,,Philippines,"(UK Sanctions List Ref):AQD0141 (UN Ref):QDi.241 Distinguishing marks include scars on both legs. Member of the Rajah Solaiman Movement (QDe.128), and associated with the Abu Sayyaf Group (QDe.001) and the Jemaah Islamiyah (QDe.092). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10661 +ANIS,Ibrahim,Shaikh,Mohd,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +ANIS,Ibrahim,Shaikh,Mohd,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +ANIS,Ibrahim,Shaikh,Mohd,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +ANISIMOV,Anton,Sergeevich,,,,,антон сергеевич асимов,,,,,,,,,,,Editor-in-Chief,,,,,,,,,"(UK Sanctions List Ref):RUS1114 (UK Statement of Reasons):Anton ANISIMOV (hereafter ANISIMOV) is Editor-in-Chief of Sputnik. Sputnik’s parent company is Rossiya Segodnya, which is a Russian state-funded international news agency. Sputnik supports and promotes Russia’s policies and actions in relation to Ukraine. As Editor-In-Chief, ANISIMOV will clear all content that is published by Sputnik. He has also been quoted promoting the Russian narrative on the war. He therefore engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Phone number):+7 (495) 645 6601 (Email address):feedback@sputniknews.com (Gender):Male",Individual,Primary name,,Russia,31/03/2022,31/03/2022,31/03/2022,15061 +ANO,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0022 (UK Statement of Reasons):Abu Nidal Organisation's principal aim is the destruction of the state of Israel. It is also hostile to ""reactionary"" Arab regimes and states supporting Israel. It has been involved in the planning and conducting of numerous acts of terrorism since the mid-1970s.",Entity,AKA,,Counter-Terrorism (International),02/11/2001,31/12/2020,31/12/2020,6933 +ANSAE INSTITUTE,,,,,,,,,,,,,,,,,,,Building No. 539,North Pasdaran Avenue,,,,Tehran,19575 497,Iran,"(UK Sanctions List Ref):INU0048 (UK Statement of Reasons):Bonyad Taavon Sepah created Ansar Bank to provide financial and credit services to IRGC personnel. Initially, Ansar Bank operated as a credit union and transitioned into a fully fledged bank in mid 2009, upon receiving a license from Iran's Central Bank. Ansar Bank, formerly known as Ansar al Mojahedin, provides financial services to the IRGC. IRGC members received their salaries through Ansar Bank. In addition, Ansar Bank provides special benefits to IRGC personnel, including reduced rates for home furnishings, free or reduced-cost healthcare. (Phone number):+98 2122815280 5. +982122810046 (fax) (Website):www.ansarbank.com (Email address):info@ansarbank.com. info@ansarbank.net (Type of entity):Banking (Subsidiaries):Established by Bonyad Taavon Sepah (aka IRGC Cooperative Foundation)",Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11581 +ANSAN-1,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0097 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK tanker M/V AN SAN 1 was involved in ship-to-ship transfer operations, likely for oil, in late January 2018. Listed as asset of Korea Ansan Shipping Company (OFSI ID: 13633, UN Reference Number: UN Ref KPe.062) (IMO number):7303803 (Current owners):Korean Ansan Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Chemical Carrier (Tonnage of ship):1757 (Length of ship):86 (Year built):1973",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13648 +ANSAR AL CHARIA,,,,,,,نصار الشريعة,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0030 (UN Ref):QDe.146,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13188 +ANSAR AL CHARIA,,,,,,,أنصار الشريعة,,,,,,,,,,,,,,,,,,,Tunisia,"(UK Sanctions List Ref):AQD0031 (UN Ref):QDE.145 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDE.014), Ansar al-Shari’a in Tunisia (AAS-T) (QDE.143) and Ansar al Charia Benghazi (QDE.146). Runs training camps for foreign terrorist fighters travelling to Syria and Iraq. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13169 +ANSAR AL CHARIA,,,,,,,أنصار الشريعة,,,,,,,,,,,,"Operates in Derna and Jebel Akhdar, Libya",,,,,,,Libya,"(UK Sanctions List Ref):AQD0031 (UN Ref):QDE.145 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDE.014), Ansar al-Shari’a in Tunisia (AAS-T) (QDE.143) and Ansar al Charia Benghazi (QDE.146). Runs training camps for foreign terrorist fighters travelling to Syria and Iraq. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13169 +ANSAR AL CHARIA BENGHAZI,,,,,,,أنصار الشريعة - بنغازي,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0030 (UN Ref):QDe.146,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13188 +ANSAR AL CHARIA DERNA,,,,,,,أنصار الشريعة – درنة,,,,,,,,,,,,,,,,,,,Tunisia,"(UK Sanctions List Ref):AQD0031 (UN Ref):QDE.145 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDE.014), Ansar al-Shari’a in Tunisia (AAS-T) (QDE.143) and Ansar al Charia Benghazi (QDE.146). Runs training camps for foreign terrorist fighters travelling to Syria and Iraq. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13169 +ANSAR AL CHARIA DERNA,,,,,,,أنصار الشريعة – درنة,,,,,,,,,,,,"Operates in Derna and Jebel Akhdar, Libya",,,,,,,Libya,"(UK Sanctions List Ref):AQD0031 (UN Ref):QDE.145 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDE.014), Ansar al-Shari’a in Tunisia (AAS-T) (QDE.143) and Ansar al Charia Benghazi (QDE.146). Runs training camps for foreign terrorist fighters travelling to Syria and Iraq. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13169 +ANSAR AL CHARIA IN LIBYA ASL,,,,,,,أنصار الشريعة بليبيا,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0030 (UN Ref):QDe.146,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13188 +ANSAR AL MOJAHEDIN,,,,,,,,,,,,,,,,,,,Building No. 539,North Pasdaran Avenue,,,,Tehran,19575 497,Iran,"(UK Sanctions List Ref):INU0048 (UK Statement of Reasons):Bonyad Taavon Sepah created Ansar Bank to provide financial and credit services to IRGC personnel. Initially, Ansar Bank operated as a credit union and transitioned into a fully fledged bank in mid 2009, upon receiving a license from Iran's Central Bank. Ansar Bank, formerly known as Ansar al Mojahedin, provides financial services to the IRGC. IRGC members received their salaries through Ansar Bank. In addition, Ansar Bank provides special benefits to IRGC personnel, including reduced rates for home furnishings, free or reduced-cost healthcare. (Phone number):+98 2122815280 5. +982122810046 (fax) (Website):www.ansarbank.com (Email address):info@ansarbank.com. info@ansarbank.net (Type of entity):Banking (Subsidiaries):Established by Bonyad Taavon Sepah (aka IRGC Cooperative Foundation)",Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11581 +ANSAR AL SHARIA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0030 (UN Ref):QDe.146,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13188 +ANSAR AL SHARIA,,,,,,,,,,,,,,,,,,,,,,,,,,Tunisia,"(UK Sanctions List Ref):AQD0031 (UN Ref):QDE.145 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDE.014), Ansar al-Shari’a in Tunisia (AAS-T) (QDE.143) and Ansar al Charia Benghazi (QDE.146). Runs training camps for foreign terrorist fighters travelling to Syria and Iraq. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13169 +ANSAR AL SHARIA,,,,,,,,,,,,,,,,,,,"Operates in Derna and Jebel Akhdar, Libya",,,,,,,Libya,"(UK Sanctions List Ref):AQD0031 (UN Ref):QDE.145 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDE.014), Ansar al-Shari’a in Tunisia (AAS-T) (QDE.143) and Ansar al Charia Benghazi (QDE.146). Runs training camps for foreign terrorist fighters travelling to Syria and Iraq. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13169 +ANSAR AL-CHARIA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0030 (UN Ref):QDe.146,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13188 +ANSAR AL-CHARIA BENGHAZI,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0030 (UN Ref):QDe.146,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13188 +ANSAR AL-CHARIA DERNA,,,,,,,,,,,,,,,,,,,,,,,,,,Tunisia,"(UK Sanctions List Ref):AQD0031 (UN Ref):QDE.145 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDE.014), Ansar al-Shari’a in Tunisia (AAS-T) (QDE.143) and Ansar al Charia Benghazi (QDE.146). Runs training camps for foreign terrorist fighters travelling to Syria and Iraq. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13169 +ANSAR AL-CHARIA DERNA,,,,,,,,,,,,,,,,,,,"Operates in Derna and Jebel Akhdar, Libya",,,,,,,Libya,"(UK Sanctions List Ref):AQD0031 (UN Ref):QDE.145 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDE.014), Ansar al-Shari’a in Tunisia (AAS-T) (QDE.143) and Ansar al Charia Benghazi (QDE.146). Runs training camps for foreign terrorist fighters travelling to Syria and Iraq. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13169 +ANSAR AL-ISLAM,,,,,,,أنصار الاسلام,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0032 (UN Ref):QDe.098 The founder is Najmuddin Faraj Ahmad (QDi.226). Associated with Al-Qaida in Iraq (QDe.115). Located and primarily active in northern Iraq but maintains a presence in western and central Iraq. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282119,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,24/02/2003,24/02/2003,31/12/2020,7021 +ANSAR AL-MOJAHEDIN NO-INTEREST LOAN INSTITUTE,,,,,,,,,,,,,,,,,,,Building No. 539,North Pasdaran Avenue,,,,Tehran,19575 497,Iran,"(UK Sanctions List Ref):INU0048 (UK Statement of Reasons):Bonyad Taavon Sepah created Ansar Bank to provide financial and credit services to IRGC personnel. Initially, Ansar Bank operated as a credit union and transitioned into a fully fledged bank in mid 2009, upon receiving a license from Iran's Central Bank. Ansar Bank, formerly known as Ansar al Mojahedin, provides financial services to the IRGC. IRGC members received their salaries through Ansar Bank. In addition, Ansar Bank provides special benefits to IRGC personnel, including reduced rates for home furnishings, free or reduced-cost healthcare. (Phone number):+98 2122815280 5. +982122810046 (fax) (Website):www.ansarbank.com (Email address):info@ansarbank.com. info@ansarbank.net (Type of entity):Banking (Subsidiaries):Established by Bonyad Taavon Sepah (aka IRGC Cooperative Foundation)",Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11581 +ANSAR AL-MUJAHIDEEN NETWORK - SUB-UNIT NAME,,,,,,,شبكة أنصار المجاهدين,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +ANSAR AL-MUJAHIDEEN NETWORK - SUB-UNIT NAME,,,,,,,شبكة أنصار المجاهدين,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +ANSAR AL-SHARIA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0030 (UN Ref):QDe.146,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13188 +ANSAR AL-SHARIA,,,,,,,,,,,,,,,,,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0033 (UN Ref):QDe.143 A Tunisian armed group with links to the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). The leader is Seifallah ben Hassine (QDi.333). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13140 +ANSAR AL-SHARI'A AAS,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0029 (UN Ref):QDe.129 AQAP is a regional affiliate of Al-Qaida (QDe.004) and an armed group operating primarily in Arabian Peninsula. Location: Yemen. Alternative location: Saudi Arabia (2004 – 2006). Formed in Jan. 2009 when Al-Qaida in Yemen combined with Saudi Arabian Al-Qaida operatives. Leader of AQAP is Qasim Mohamed Mahdi Al-Rimi (QDi.282). Ansar al-Shari’a was formed in early 2011 by AQAP and has taken responsibility for multiple attacks in Yemen against both government and civilian targets. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282104,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,20/01/2010,19/01/2010,12/01/2022,11044 +ANSAR AL-SHARIA BENGHAZI,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0030 (UN Ref):QDe.146,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13188 +ANSAR AL-SHARIA DERNA,,,,,,,,,,,,,,,,,,,,,,,,,,Tunisia,"(UK Sanctions List Ref):AQD0031 (UN Ref):QDE.145 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDE.014), Ansar al-Shari’a in Tunisia (AAS-T) (QDE.143) and Ansar al Charia Benghazi (QDE.146). Runs training camps for foreign terrorist fighters travelling to Syria and Iraq. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13169 +ANSAR AL-SHARIA DERNA,,,,,,,,,,,,,,,,,,,"Operates in Derna and Jebel Akhdar, Libya",,,,,,,Libya,"(UK Sanctions List Ref):AQD0031 (UN Ref):QDE.145 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDE.014), Ansar al-Shari’a in Tunisia (AAS-T) (QDE.143) and Ansar al Charia Benghazi (QDE.146). Runs training camps for foreign terrorist fighters travelling to Syria and Iraq. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13169 +ANSAR AL-SHARIA IN TUNISIA,,,,,,,,,,,,,,,,,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0033 (UN Ref):QDe.143 A Tunisian armed group with links to the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). The leader is Seifallah ben Hassine (QDi.333). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13140 +ANSAR AL-SHARI'A IN TUNISIA,,,,,,,,,,,,,,,,,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0033 (UN Ref):QDe.143 A Tunisian armed group with links to the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). The leader is Seifallah ben Hassine (QDi.333). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13140 +ANSAR AL-SHARI'AH IN TUNISIA,,,,,,,,,,,,,,,,,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0033 (UN Ref):QDe.143 A Tunisian armed group with links to the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). The leader is Seifallah ben Hassine (QDi.333). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13140 +ANSAR AL-SUNNA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0032 (UN Ref):QDe.098 The founder is Najmuddin Faraj Ahmad (QDi.226). Associated with Al-Qaida in Iraq (QDe.115). Located and primarily active in northern Iraq but maintains a presence in western and central Iraq. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282119,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2003,24/02/2003,31/12/2020,7021 +ANSAR AL-SUNNA ARMY,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0032 (UN Ref):QDe.098 The founder is Najmuddin Faraj Ahmad (QDi.226). Associated with Al-Qaida in Iraq (QDe.115). Located and primarily active in northern Iraq but maintains a presence in western and central Iraq. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282119,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2003,24/02/2003,31/12/2020,7021 +ANSAR BANK,,,,,,,,,,,,,,,,,,,Building No. 539,North Pasdaran Avenue,,,,Tehran,19575 497,Iran,"(UK Sanctions List Ref):INU0048 (UK Statement of Reasons):Bonyad Taavon Sepah created Ansar Bank to provide financial and credit services to IRGC personnel. Initially, Ansar Bank operated as a credit union and transitioned into a fully fledged bank in mid 2009, upon receiving a license from Iran's Central Bank. Ansar Bank, formerly known as Ansar al Mojahedin, provides financial services to the IRGC. IRGC members received their salaries through Ansar Bank. In addition, Ansar Bank provides special benefits to IRGC personnel, including reduced rates for home furnishings, free or reduced-cost healthcare. (Phone number):+98 2122815280 5. +982122810046 (fax) (Website):www.ansarbank.com (Email address):info@ansarbank.com. info@ansarbank.net (Type of entity):Banking (Subsidiaries):Established by Bonyad Taavon Sepah (aka IRGC Cooperative Foundation)",Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11581 +ANSAR EDDINE,,,,,,,انصار الدين,,,,,,,,,,,,,,,,,,,Mali,(UK Sanctions List Ref):AQD0034 (UN Ref):QDe.135 Was founded in December 2011 by Iyad ag Ghali (QDi.316). Linked to the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Associated with Abdelmalek Droukdel (QDi.232). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5566155,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,27/03/2013,20/03/2013,31/12/2020,12866 +ANSAR FINANCE AND CREDIT FUND,,,,,,,,,,,,,,,,,,,Building No. 539,North Pasdaran Avenue,,,,Tehran,19575 497,Iran,"(UK Sanctions List Ref):INU0048 (UK Statement of Reasons):Bonyad Taavon Sepah created Ansar Bank to provide financial and credit services to IRGC personnel. Initially, Ansar Bank operated as a credit union and transitioned into a fully fledged bank in mid 2009, upon receiving a license from Iran's Central Bank. Ansar Bank, formerly known as Ansar al Mojahedin, provides financial services to the IRGC. IRGC members received their salaries through Ansar Bank. In addition, Ansar Bank provides special benefits to IRGC personnel, including reduced rates for home furnishings, free or reduced-cost healthcare. (Phone number):+98 2122815280 5. +982122810046 (fax) (Website):www.ansarbank.com (Email address):info@ansarbank.com. info@ansarbank.net (Type of entity):Banking (Subsidiaries):Established by Bonyad Taavon Sepah (aka IRGC Cooperative Foundation)",Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11581 +ANSAR FINANCIAL AND CREDIT INSTITUTE,,,,,,,,,,,,,,,,,,,Building No. 539,North Pasdaran Avenue,,,,Tehran,19575 497,Iran,"(UK Sanctions List Ref):INU0048 (UK Statement of Reasons):Bonyad Taavon Sepah created Ansar Bank to provide financial and credit services to IRGC personnel. Initially, Ansar Bank operated as a credit union and transitioned into a fully fledged bank in mid 2009, upon receiving a license from Iran's Central Bank. Ansar Bank, formerly known as Ansar al Mojahedin, provides financial services to the IRGC. IRGC members received their salaries through Ansar Bank. In addition, Ansar Bank provides special benefits to IRGC personnel, including reduced rates for home furnishings, free or reduced-cost healthcare. (Phone number):+98 2122815280 5. +982122810046 (fax) (Website):www.ansarbank.com (Email address):info@ansarbank.com. info@ansarbank.net (Type of entity):Banking (Subsidiaries):Established by Bonyad Taavon Sepah (aka IRGC Cooperative Foundation)",Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11581 +ANSAR SAVING AND INTEREST FREE-LOANS FUND,,,,,,,,,,,,,,,,,,,Building No. 539,North Pasdaran Avenue,,,,Tehran,19575 497,Iran,"(UK Sanctions List Ref):INU0048 (UK Statement of Reasons):Bonyad Taavon Sepah created Ansar Bank to provide financial and credit services to IRGC personnel. Initially, Ansar Bank operated as a credit union and transitioned into a fully fledged bank in mid 2009, upon receiving a license from Iran's Central Bank. Ansar Bank, formerly known as Ansar al Mojahedin, provides financial services to the IRGC. IRGC members received their salaries through Ansar Bank. In addition, Ansar Bank provides special benefits to IRGC personnel, including reduced rates for home furnishings, free or reduced-cost healthcare. (Phone number):+98 2122815280 5. +982122810046 (fax) (Website):www.ansarbank.com (Email address):info@ansarbank.com. info@ansarbank.net (Type of entity):Banking (Subsidiaries):Established by Bonyad Taavon Sepah (aka IRGC Cooperative Foundation)",Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11581 +ANSARU,,,,,,,,,,,,,,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0035 (UN Ref):QDe.142 Terrorist and paramilitary group established in 2012 and operating in Nigeria. Associated with the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014), Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138) and Abubakar Mohammed Shekau (QDi322). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,08/07/2014,26/06/2014,16/02/2022,13007 +ANSARUL MUSLIMINA FI BILADIS SUDAN,,,,,,,أنصار المسلمین في بلاد السودان,,,,,,,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0035 (UN Ref):QDe.142 Terrorist and paramilitary group established in 2012 and operating in Nigeria. Associated with the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014), Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138) and Abubakar Mohammed Shekau (QDi322). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,08/07/2014,26/06/2014,16/02/2022,13007 +ANSHORI,ABDULLAH,,,,,,,,,00/00/1958,"Pacitan, East Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0110 (UN Ref):QDi.216 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429180,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8834 +ANTIPOV,Igor,Yurievich,,,,,АНТИПОВ Игорь Юрьевич,Cyrillic,Russian,26/05/1961,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1134 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15086 +ANTIUFEEV,Vladimir,,,,,,,,,19/02/1951,Novosibirsk,Russia,Russia,,,,,Deputy Director General of the State-owned enterprise 'United Engine Corporation',,,,,,Transnistria,,,"(UK Sanctions List Ref):RUS0066 (UK Statement of Reasons):Former ‘Ministry of State Security’ in the separatist region of Transnistria. Since 9 July 2014, he has been the Former first vice-prime minister of Donetsk People's Republic, responsible for security and law enforcement. In his capacity, he is responsible for the separatist ‘governmental’ activities of the so called ‘government of the Donetsk People's Republic’. Board member of the State-owned enterprise 'United Engine Corporation', board member of the State owned JSC Research and Production Enterprise 'Temp' named after F. Korotkov. Remains active in supporting separatist actions and policies. (Gender):Male",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,14/02/2022,13067 +ANTIUFEEV,Vladimir,Lurievici,,,,,,,,19/02/1951,Novosibirsk,Russia,Russia,,,,,Deputy Director General of the State-owned enterprise 'United Engine Corporation',,,,,,Transnistria,,,"(UK Sanctions List Ref):RUS0066 (UK Statement of Reasons):Former ‘Ministry of State Security’ in the separatist region of Transnistria. Since 9 July 2014, he has been the Former first vice-prime minister of Donetsk People's Republic, responsible for security and law enforcement. In his capacity, he is responsible for the separatist ‘governmental’ activities of the so called ‘government of the Donetsk People's Republic’. Board member of the State-owned enterprise 'United Engine Corporation', board member of the State owned JSC Research and Production Enterprise 'Temp' named after F. Korotkov. Remains active in supporting separatist actions and policies. (Gender):Male",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,14/02/2022,13067 +ANTIUFEEV,Vladimir,Iurievici,,,,,,,,19/02/1951,Novosibirsk,Russia,Russia,,,,,Deputy Director General of the State-owned enterprise 'United Engine Corporation',,,,,,Transnistria,,,"(UK Sanctions List Ref):RUS0066 (UK Statement of Reasons):Former ‘Ministry of State Security’ in the separatist region of Transnistria. Since 9 July 2014, he has been the Former first vice-prime minister of Donetsk People's Republic, responsible for security and law enforcement. In his capacity, he is responsible for the separatist ‘governmental’ activities of the so called ‘government of the Donetsk People's Republic’. Board member of the State-owned enterprise 'United Engine Corporation', board member of the State owned JSC Research and Production Enterprise 'Temp' named after F. Korotkov. Remains active in supporting separatist actions and policies. (Gender):Male",Individual,AKA,,Russia,25/07/2014,31/12/2020,14/02/2022,13067 +ANTOINE,Celestin,,,,,,,,,04/10/1960,Kananga,Congo (Democratic Republic),Congo (Democratic Republic),OB0637580,Valid from 20.5.2014 to 19.5.2019,,,(1) Former Kinshasa Police Commissioner (PNC) (2) now General of Schools and Training (PNC),Av Uvika 56,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0004 Schengen visa No 011518403, issued on 2.7.2016 (UK Statement of Reasons):There are reasonable grounds to conclude that KANYAMA was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Kinshasa Police Commissioner and therefore bore responsibility for the human rights violations committed by the PNC. As Kinshasa Police Commissioner (PNC), Celestin KANYAMA was responsible for the disproportionate use of force and violent repression in Kinshasa. In this capacity, Celestin KANYAMA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13435 +ANTOINE,Cishiku,Bilolo,,,,,,,,04/10/1960,Kananga,Congo (Democratic Republic),Congo (Democratic Republic),OB0637580,Valid from 20.5.2014 to 19.5.2019,,,(1) Former Kinshasa Police Commissioner (PNC) (2) now General of Schools and Training (PNC),Av Uvika 56,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0004 Schengen visa No 011518403, issued on 2.7.2016 (UK Statement of Reasons):There are reasonable grounds to conclude that KANYAMA was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Kinshasa Police Commissioner and therefore bore responsibility for the human rights violations committed by the PNC. As Kinshasa Police Commissioner (PNC), Celestin KANYAMA was responsible for the disproportionate use of force and violent repression in Kinshasa. In this capacity, Celestin KANYAMA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13435 +ANTOINE,Kanyama,Celestin,Cishiku,,,,,,,04/10/1960,Kananga,Congo (Democratic Republic),Congo (Democratic Republic),OB0637580,Valid from 20.5.2014 to 19.5.2019,,,(1) Former Kinshasa Police Commissioner (PNC) (2) now General of Schools and Training (PNC),Av Uvika 56,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0004 Schengen visa No 011518403, issued on 2.7.2016 (UK Statement of Reasons):There are reasonable grounds to conclude that KANYAMA was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Kinshasa Police Commissioner and therefore bore responsibility for the human rights violations committed by the PNC. As Kinshasa Police Commissioner (PNC), Celestin KANYAMA was responsible for the disproportionate use of force and violent repression in Kinshasa. In this capacity, Celestin KANYAMA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13435 +ANTOINE,Kanyama,Tshisiku,,,,,,,,04/10/1960,Kananga,Congo (Democratic Republic),Congo (Democratic Republic),OB0637580,Valid from 20.5.2014 to 19.5.2019,,,(1) Former Kinshasa Police Commissioner (PNC) (2) now General of Schools and Training (PNC),Av Uvika 56,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0004 Schengen visa No 011518403, issued on 2.7.2016 (UK Statement of Reasons):There are reasonable grounds to conclude that KANYAMA was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Kinshasa Police Commissioner and therefore bore responsibility for the human rights violations committed by the PNC. As Kinshasa Police Commissioner (PNC), Celestin KANYAMA was responsible for the disproportionate use of force and violent repression in Kinshasa. In this capacity, Celestin KANYAMA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13435 +ANTONIO,Di,Karlo,,,,,,,,29/01/1971,Roubaix,France,France,,,,,,,,,,,,,France,(UK Sanctions List Ref):AQD0217 (UN Ref):QDi.095 In custody in France as of May 2004. Sentenced to 25 years imprisonment in France in 2007. His sentence is due to end on 13 Jul. 2023 and his unconditional detention to end on 13 Aug. 2020. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4531664,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,11/02/2022,7797 +ANTONOV,Anatoly,Ivanovich,,,,,,,,15/05/1955,Omsk,Russia,Russia,,,,,Former Deputy Minister of Defence of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS0065 (UK Statement of Reasons):Former Deputy Minister of Defence, and in that capacity, involved in supporting the deployment of Russian troops in Ukraine. According to the present Russian Ministry of Defence structure, in that capacity, he participates in shaping and implementing the policy of the Russian Government. These policies threaten the territorial integrity, sovereignty and independence of Ukraine. As of 28 December 2016, Former Deputy Minister of Foreign Affairs. Holds a position of Ambassador in the diplomatic corps of the Russian Federation. (Gender):Male",Individual,Primary name,,Russia,16/02/2015,31/12/2020,31/12/2020,13213 +ANTONOV,Anatoli,Andreevich,,,,,АНТОНОВ Анатолий Андреевич,Cyrillic,Russian,06/11/1966,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1158 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15110 +ANTONOV,Anatoly,Andreevich,,,,,,,,06/11/1966,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1158 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15110 +ANTONOV,Vladimir,Nikolaevich,,,,,АНТОНОВ Владимир Николаевич,Cyrillic,Russian,24/12/1979,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1136 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15088 +ANTROPENKO,Igor,Alexandrovich,,,,,Антропенко Игорь Александрович,,,10/12/1969,Omsk,Russia,,734088604. 735958824. 753302567. 728277240,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0658 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14603 +ANTYUFEYEV,Vladimir,,,,,,,,,19/02/1951,Novosibirsk,Russia,Russia,,,,,Deputy Director General of the State-owned enterprise 'United Engine Corporation',,,,,,Transnistria,,,"(UK Sanctions List Ref):RUS0066 (UK Statement of Reasons):Former ‘Ministry of State Security’ in the separatist region of Transnistria. Since 9 July 2014, he has been the Former first vice-prime minister of Donetsk People's Republic, responsible for security and law enforcement. In his capacity, he is responsible for the separatist ‘governmental’ activities of the so called ‘government of the Donetsk People's Republic’. Board member of the State-owned enterprise 'United Engine Corporation', board member of the State owned JSC Research and Production Enterprise 'Temp' named after F. Korotkov. Remains active in supporting separatist actions and policies. (Gender):Male",Individual,Primary name,,Russia,25/07/2014,31/12/2020,14/02/2022,13067 +ANTYUFEYEV,Vladimir,Lurievici,,,,,,,,19/02/1951,Novosibirsk,Russia,Russia,,,,,Deputy Director General of the State-owned enterprise 'United Engine Corporation',,,,,,Transnistria,,,"(UK Sanctions List Ref):RUS0066 (UK Statement of Reasons):Former ‘Ministry of State Security’ in the separatist region of Transnistria. Since 9 July 2014, he has been the Former first vice-prime minister of Donetsk People's Republic, responsible for security and law enforcement. In his capacity, he is responsible for the separatist ‘governmental’ activities of the so called ‘government of the Donetsk People's Republic’. Board member of the State-owned enterprise 'United Engine Corporation', board member of the State owned JSC Research and Production Enterprise 'Temp' named after F. Korotkov. Remains active in supporting separatist actions and policies. (Gender):Male",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,14/02/2022,13067 +ANUFRIEVA,Olga,Nikolaevna,,,,,Ануфриева Ольга Николаевна,,,18/08/1974,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0302 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14247 +ANUKOVIC,Viktor,Fedorovic,,,,,Vìktor Fedorovič Ânukovič,,,09/07/1950,Yenakiyeve Donetsk,Former USSR Currently Ukraine,Ukraine,,,,,Former President of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0228 (UK Statement of Reasons):Viktor Yanukovych was the President of Ukraine from November 2010 to February 2014 and was responsible for requesting President Putin to send Russian troops into Ukraine, therefore undermining Ukrainian independence and threatening Ukraine’s territorial integrity. Russian troops annexed Crimea shortly after this invitation was issued. Yanukovych was personally responsible for the appointment of at least one key official who continues to run the territory of Crimea and Sevastopol under the Russian annexation. Yanukovych is also suspected of supporting a policy, which reduced the defence capability of Ukraine’s Armed Forces stationed in Crimea prior to the 2014 Russian invasion. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/02/2022,12891 +ANWARI,Mohammad,Taher,,,,,,,,00/00/1961,"Zurmat District, Paktia Province",Afghanistan,Afghanistan,,,,,(1) Director of Administrative Affairs under the Taliban regime. (2) Minister of Finance under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0009 (UN Ref):TAi.005 Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7022 +ANWARI,Mohammad,Tahre,,,,,,,,00/00/1961,"Zurmat District, Paktia Province",Afghanistan,Afghanistan,,,,,(1) Director of Administrative Affairs under the Taliban regime. (2) Minister of Finance under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0009 (UN Ref):TAi.005 Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7022 +ANWARI,Muhammad,Taher,,,,Mullah,محمد طاهر أنوري,,,00/00/1961,"Zurmat District, Paktia Province",Afghanistan,Afghanistan,,,,,(1) Director of Administrative Affairs under the Taliban regime. (2) Minister of Finance under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0009 (UN Ref):TAi.005 Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7022 +ANWARI,Muhammad,Tahir,,,,,,,,00/00/1961,"Zurmat District, Paktia Province",Afghanistan,Afghanistan,,,,,(1) Director of Administrative Affairs under the Taliban regime. (2) Minister of Finance under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0009 (UN Ref):TAi.005 Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7022 +AO 'INSTITUTE GIPROSTROYMOST - SAINT-PETERSBURG',,,,,,,,,,,,,,,,,,,,,,,,Perm,,Russia,"(UK Sanctions List Ref):RUS0165 (UK Statement of Reasons):AO 'Insititute Gipprostroymost - Saint-Petersburg' participated in the construction of the Kerch Bridge through its design of the Bridge, connecting Russia to the illegally annexed Crimean peninsula. Therefore it is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity sovereignty and independence of Ukraine (Phone number):+7 (812) 600-77-85 (205). +7 (812) 703 79-57 (Website):http://gpsm.ru/ (Email address):office@gpsm.ru (Parent company):Gidrostroimos-Riga",Entity,Primary name,,Russia,31/07/2018,31/12/2020,31/12/2020,13700 +AO 'INSTITUTE GIPROSTROYMOST - SAINT-PETERSBURG',,,,,,,,,,,,,,,,,,,,,,,,St Petersburg,,Russia,"(UK Sanctions List Ref):RUS0165 (UK Statement of Reasons):AO 'Insititute Gipprostroymost - Saint-Petersburg' participated in the construction of the Kerch Bridge through its design of the Bridge, connecting Russia to the illegally annexed Crimean peninsula. Therefore it is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity sovereignty and independence of Ukraine (Phone number):+7 (812) 600-77-85 (205). +7 (812) 703 79-57 (Website):http://gpsm.ru/ (Email address):office@gpsm.ru (Parent company):Gidrostroimos-Riga",Entity,Primary name,,Russia,31/07/2018,31/12/2020,31/12/2020,13700 +AO 'INSTITUTE GIPROSTROYMOST - SAINT-PETERSBURG',,,,,,,,,,,,,,,,,,,,,,,,Vladivostok,,Russia,"(UK Sanctions List Ref):RUS0165 (UK Statement of Reasons):AO 'Insititute Gipprostroymost - Saint-Petersburg' participated in the construction of the Kerch Bridge through its design of the Bridge, connecting Russia to the illegally annexed Crimean peninsula. Therefore it is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity sovereignty and independence of Ukraine (Phone number):+7 (812) 600-77-85 (205). +7 (812) 703 79-57 (Website):http://gpsm.ru/ (Email address):office@gpsm.ru (Parent company):Gidrostroimos-Riga",Entity,Primary name,,Russia,31/07/2018,31/12/2020,31/12/2020,13700 +AO 'INSTITUTE GIPROSTROYMOST - SAINT-PETERSBURG',,,,,,,,,,,,,,,,,,,,,,,Filial,Moscow,,Russia,"(UK Sanctions List Ref):RUS0165 (UK Statement of Reasons):AO 'Insititute Gipprostroymost - Saint-Petersburg' participated in the construction of the Kerch Bridge through its design of the Bridge, connecting Russia to the illegally annexed Crimean peninsula. Therefore it is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity sovereignty and independence of Ukraine (Phone number):+7 (812) 600-77-85 (205). +7 (812) 703 79-57 (Website):http://gpsm.ru/ (Email address):office@gpsm.ru (Parent company):Gidrostroimos-Riga",Entity,Primary name,,Russia,31/07/2018,31/12/2020,31/12/2020,13700 +AO 'INSTITUTE GIPROSTROYMOST - SAINT-PETERSBURG',,,,,,,,,,,,,,,,,,,7,Yablochkova Street,,,,St Petersburg,197198,Russia,"(UK Sanctions List Ref):RUS0165 (UK Statement of Reasons):AO 'Insititute Gipprostroymost - Saint-Petersburg' participated in the construction of the Kerch Bridge through its design of the Bridge, connecting Russia to the illegally annexed Crimean peninsula. Therefore it is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity sovereignty and independence of Ukraine (Phone number):+7 (812) 600-77-85 (205). +7 (812) 703 79-57 (Website):http://gpsm.ru/ (Email address):office@gpsm.ru (Parent company):Gidrostroimos-Riga",Entity,Primary name,,Russia,31/07/2018,31/12/2020,31/12/2020,13700 +AO NII VEKTOR,,,,,,,АО НИИ Вектор,Cyrillic,Russian,,,,,,,,,,ul. Akademika Pavlova d. 14-A,,,,,Saint Petersburg,197376,Russia,"(UK Sanctions List Ref):RUS1402 Organization Established Date 1908, Trade License No. 1117847020400 (Russia) (UK Statement of Reasons):AO NII VEKTOR has obtained a benefit from supporting the Government of Russia by carrying on business as a Government of Russia-affiliated entity which is owned or controlled directly or indirectly by the Government of Russia. (Phone number):7 (812) 4387597 (Website):nii-vektor.ru (Email address):nii@nii-vektor.ru (Business Reg No):Tax ID No. 7813491943 (Russia)",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15322 +AO NII VEKTOR,,,,,,,АО НИИ Вектор,Cyrillic,Russian,,,,,,,,,,14 St. Academician Pavlova,,,,,Saint Petersburg,197022,Russia,"(UK Sanctions List Ref):RUS1402 Organization Established Date 1908, Trade License No. 1117847020400 (Russia) (UK Statement of Reasons):AO NII VEKTOR has obtained a benefit from supporting the Government of Russia by carrying on business as a Government of Russia-affiliated entity which is owned or controlled directly or indirectly by the Government of Russia. (Phone number):7 (812) 4387597 (Website):nii-vektor.ru (Email address):nii@nii-vektor.ru (Business Reg No):Tax ID No. 7813491943 (Russia)",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15322 +AO RAKETNO-KOSMICHESKII TSENTR PROGRESS,,,,,,,,,,,,,,,,,,,18 Pskovskaya Street,,,,,Samara,443009,Russia,"(UK Sanctions List Ref):RUS1352 (UK Statement of Reasons):Rocket and Space Centre Progress JSC is a developer of space-related vehicles, complexes and systems. Rockets and satellites that have been developed by this entity are used by Russian military forces in their invasion of Ukraine and by the Russian state to show support for their invasion. They have therefore contributed to the destabilising of Ukraine and have undermined or threatened the territorial integrity, sovereignty or independence of Ukraine. (Phone number):+7 (846) 955-1361 (Website):www.samspace.ru (Email address):mail@samspace.ru (Parent company):Roscosmos",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15307 +AO RRT PROGRESS,,,,,,,,,,,,,,,,,,,18 Pskovskaya Street,,,,,Samara,443009,Russia,"(UK Sanctions List Ref):RUS1352 (UK Statement of Reasons):Rocket and Space Centre Progress JSC is a developer of space-related vehicles, complexes and systems. Rockets and satellites that have been developed by this entity are used by Russian military forces in their invasion of Ukraine and by the Russian state to show support for their invasion. They have therefore contributed to the destabilising of Ukraine and have undermined or threatened the territorial integrity, sovereignty or independence of Ukraine. (Phone number):+7 (846) 955-1361 (Website):www.samspace.ru (Email address):mail@samspace.ru (Parent company):Roscosmos",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15307 +AO T-PLATFORMS,,,,,,,,,,,,,,,,,,,Ul. Krupskoi D.4,Korp.2,,,,Moscow,119311,Russia,"(UK Sanctions List Ref):RUS1403 Trade License No. 5087746658984 (UK Statement of Reasons):T-Platforms is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance to the Government of Russia, namely the information, communications and digital technologies sector. (Phone number):(1) 7(495) 9565414 (2) 7(499) 6500150 (3) 7(495) 9565415 (Website):t-platforms.ru (Business Reg No):Tax ID No. 7736588433 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15323 +AO TSNIIMASH,,,,,,,,,,,,,,,,,,,4 Ulitsa Pionerskaya,,,,,Korolev,141070,Russia,"(UK Sanctions List Ref):RUS1351 (UK Statement of Reasons):Central Research Institute of Machine Building JSC (TsNIIMash) is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because: it obtains a benefit from or supports the Government of Russia by carrying on business as a Government of Russia-affiliated entity. Central Research Institute of Machine Building JSC (TsNIIMash) is owned or controlled directly or indirectly by the Government of Russia, namely via the State Corporation Roscosmos. The Russian State, or Roscosmos, is currently the sole shareholder of The Central Research Institute of Machine Building JSC (TsNIIMash). (Phone number):(495) 513-59-51 (Website):https://www.tsniimash.ru/ (Email address):corp@tsniimash.ru (Parent company):Roscosmos",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15304 +AO TSSD,,,,,,,ЦСД AO,Cyrillic,Russian,,,,,,,,,,"Dalzavodskaya Str., 2",,,,,Vladivostok,690001,Russia,"(UK Sanctions List Ref):RUS1437 KPP 253601001; OGRN 1082536014120 (UK Statement of Reasons):The Dalzavod Ship Repair Centre JSC is an involved person under the Russia (EU) (Sanctions) Regulations 2019 as it is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian defence sector. (Phone number):(1) 8 (423) 2-224-010 (2) 8 (423) 2-220-210 (Website):(1) https://csdalzavod.ru (2) https://dalzavod.vl.ru (Email address):(1) dalzavod@dcss.ru (2) ok@csdalzavod.ru (Type of entity):Non Public Joint Stock Company (Business Reg No):Tax Identification Number: INN 2536210349",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15368 +AOUADI,Mohamed,Ben Belkacem,,,,,,,,11/12/1974,Tunis,Tunisia,Tunisia,L 191609,"Tunisian passport number issued on 28 Feb. 1996, expired on 27 Feb. 2001",(1) 04643632 (2) DAOMMD74T11Z352Z,(1) Issued on 18 Jun. 1999 (2) Italian Fiscal Code,,50th Street,No 23,Zehrouni,,,Tunis,,Tunisia,(UK Sanctions List Ref):AQD0239 (UN Ref):QDi.060 Head of security wing of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Mother's name is Ourida Bint Mohamed. Deported from Italy to Tunisia on 1 Dec. 2004. Arrested in Tunisia in Aug. 2013. Imprisoned in the civilian prison of Burj al-‘Amiri on 13 Sep. 2013. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7024 +AOUANI,Mohamed,,,,,,,,,05/02/1969,(1) Tripoli (2) Tunis,(1) Libya (2) Tunisia,Tunisia,,,W374031,Issue date: 11/04/2011,,,,,,,,,,(UK Sanctions List Ref):AQD0241 (UN Ref):QDi.062 Professor of Chemistry. Deported from Italy to Tunisia on 27 Aug. 2006. Legally changed family name from Aouani to Lakhal in 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7087 +AOUANI,Mohamed,,,,,,,,,05/02/1970,(1) Tripoli (2) Tunis,(1) Libya (2) Tunisia,Tunisia,,,W374031,Issue date: 11/04/2011,,,,,,,,,,(UK Sanctions List Ref):AQD0241 (UN Ref):QDi.062 Professor of Chemistry. Deported from Italy to Tunisia on 27 Aug. 2006. Legally changed family name from Aouani to Lakhal in 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7087 +APPLIED PHYSICS INSTITUTE,,,,,,,,,,,,,,,,,,,P.O. Box 15875 5878,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0069 (UK Statement of Reasons):Has procured dual use items with applications in the Iranian nuclear programme. (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11949 +APPLIED PHYSICS INSTITUTE,,,,,,,,,,,,,,,,,,,P.O. Box 16845 163,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0069 (UK Statement of Reasons):Has procured dual use items with applications in the Iranian nuclear programme. (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11949 +APT10,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CYB0003 (UK Statement of Reasons):Huaying Haitai, known in cyber security circles as APT10 (Advanced Persistent Threat 10), Red Apollo, CVNX, Stone Panda, MenuPass and Potassium, was involved in relevant cyber activity Operation Cloud Hopper, one of the most significant and widespread cyber instructions to date. They conducted data interference through the theft of intellectual property and sensitive commercial data over many years. Huaying Haitai targeted companies across six continents and sectors banking and finance, government, aviation, space, and satellite technology, manufacturing technology, medical, oil and gas, mining, communications technology, computer processing technology, and defence technology. This activity undermined the prosperity of the United Kingdom and countries other than the United Kingdom (Website):huayinghaitai.com (Type of entity):Company",Entity,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13909 +APT28 (ADVANCED PERSISTENT THREAT),,,,,,,,,,,,,,,,,,,Komsomol'skiy Prospekt,,,,,20 Moscow,119146,Russia,"(UK Sanctions List Ref):CYB0012 (UK Statement of Reasons):The 85th Main Centre for Special Technologies (GTsSS) of the Russian General Staff of the Armed Forces of the Russian Federation (GRU) - also known by its field post number ‘26165’ and industry nicknames: APT28, Fancy Bear, Sofacy Group, Pawn Storm, Strontium - was involved in illegally accessing the information systems of the German Federal Parliament (Deutscher Bundestag) without permission in April and May 2015. The military intelligence officers of the 85th controlled, directed and took part in this activity, accessing the email accounts of MPs and stealing their data. Their activity interfered with the parliament’s information systems affecting its operation for several days, undermining the exercise of parliamentary functions in Germany. (Type of entity):Department within Government (Parent company):Russian Ministry of Defence",Entity,AKA,,Cyber,23/10/2020,31/12/2020,31/12/2020,13984 +AQALA,Saqr,al-Kabisi,Abd,,,,,,,00/00/1944,"Kubaisi, al-Anbar",Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0111 (UN Ref):IQi.050,Individual,AKA,Good quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7601 +AQAP,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0029 (UN Ref):QDe.129 AQAP is a regional affiliate of Al-Qaida (QDe.004) and an armed group operating primarily in Arabian Peninsula. Location: Yemen. Alternative location: Saudi Arabia (2004 – 2006). Formed in Jan. 2009 when Al-Qaida in Yemen combined with Saudi Arabian Al-Qaida operatives. Leader of AQAP is Qasim Mohamed Mahdi Al-Rimi (QDi.282). Ansar al-Shari’a was formed in early 2011 by AQAP and has taken responsibility for multiple attacks in Yemen against both government and civilian targets. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282104,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,20/01/2010,19/01/2010,12/01/2022,11044 +AQEL,Bader,,,,,,,,,,,,Syria,,,,,(1) Special Forces Commander (2) Chief of Staff of the Central Region,,,,,,,,,(UK Sanctions List Ref):SYR0024 (UK Statement of Reasons):Special Forces Commander. Gave the soldiers orders to pick up the bodies and hand them over to the Mukhabarat and responsible for the violence in Bukamal. (Gender):Male,Individual,Primary name,,Syria,24/01/2012,31/12/2020,31/12/2020,12468 +AQI,,,,,,,,,,12/03/1966,"Sangandaan, Caloocan City",Philippines,Philippines,AA780554,,,,,"50, Purdue Street",,,,Cubao,Quezon City,,Philippines,(UK Sanctions List Ref):AQD0195 (UN Ref):QDi.244 Founder and leader of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1523805,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10664 +AQI,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +AQIM,,,,,,,,,,,,,,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +AQIM,,,,,,,,,,,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +AQIM,,,,,,,,,,,,,,,,,,,,,,,,,,Mauritania,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +AQIM,,,,,,,,,,,,,,,,,,,,,,,,,,Morocco,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +AQIM,,,,,,,,,,,,,,,,,,,,,,,,,,Niger,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +AQIM,,,,,,,,,,,,,,,,,,,,,,,,,,Tunisia,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +AQQAD,Hashem,Anwar,,,,,,,,00/00/1961,Mohagirine,Syria,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0079 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in multiple sectors of Syria's economy. He holds interests in and/or has significant influence in Anwar Akkad Sons Group (AASG) and its subsidiary United Oil. AASG is a conglomerate with interests in sectors such as oil, gas, chemicals, insurance, industrial machinery, real estate, tourism, exhibitions, contracting, insurance, and medical equipment. Hashim Anwar al-Aqqad also worked as a member of the Syrian Parliament as recently as 2012. Al-Aqqad could not have remained successful without assistance from the regime. Given the extent of his business and political ties to the regime he provides support to and benefits from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,31/12/2020,13023 +AQQAD,Hashim,Anwar,,,,,,,,00/00/1961,Mohagirine,Syria,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0079 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in multiple sectors of Syria's economy. He holds interests in and/or has significant influence in Anwar Akkad Sons Group (AASG) and its subsidiary United Oil. AASG is a conglomerate with interests in sectors such as oil, gas, chemicals, insurance, industrial machinery, real estate, tourism, exhibitions, contracting, insurance, and medical equipment. Hashim Anwar al-Aqqad also worked as a member of the Syrian Parliament as recently as 2012. Al-Aqqad could not have remained successful without assistance from the regime. Given the extent of his business and political ties to the regime he provides support to and benefits from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,31/12/2020,13023 +ARA JANI,Saeed,,,,,,,,,,,Iran,Iran,,,,,Head of the IRGC Aerospace Force UAV command,Ferdowsi Avenue,Sarhang Sakhaei Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):RUS1653 (UK Statement of Reasons):Brigadier General Saeed AGHAJANI is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. Brigadier General AGHAJANI is an Iranian Military Officer, and Head of the Islamic Revolutionary Guards Corps (IRGC) Aerospace Force UAV Command. Iran has supplied Russia with Iranian produced UAVs for use in their illegal invasion of Ukraine, and IRGC specialists are reported to have been present in occupied areas of Ukraine providing training to Russian forces in operating the UAVs. (Gender):Male",Individual,Primary name variation,,Russia,20/10/2022,20/10/2022,20/10/2022,15605 +ARA JANI,Said,,,,,,,,,,,Iran,Iran,,,,,Head of the IRGC Aerospace Force UAV command,Ferdowsi Avenue,Sarhang Sakhaei Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):RUS1653 (UK Statement of Reasons):Brigadier General Saeed AGHAJANI is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. Brigadier General AGHAJANI is an Iranian Military Officer, and Head of the Islamic Revolutionary Guards Corps (IRGC) Aerospace Force UAV Command. Iran has supplied Russia with Iranian produced UAVs for use in their illegal invasion of Ukraine, and IRGC specialists are reported to have been present in occupied areas of Ukraine providing training to Russian forces in operating the UAVs. (Gender):Male",Individual,Primary name variation,,Russia,20/10/2022,20/10/2022,20/10/2022,15605 +ARAGHI,Abdollah,,,,,Brigadier General,عبدالله عراقی,,,00/00/1945,,,Iran,,,,,Former Deputy Head of IRGC's Ground Forces,,,,,,,,,(UK Sanctions List Ref):IHR0005 (UK Statement of Reasons):Former Deputy Head of IRGC's Ground Forces. He had a direct and personal responsibility in the crackdown of protests all through the summer of 2009. (Gender):Male,Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11779 +ARAGHI,Abdullah,,,,,,,,,00/00/1945,,,Iran,,,,,Former Deputy Head of IRGC's Ground Forces,,,,,,,,,(UK Sanctions List Ref):IHR0005 (UK Statement of Reasons):Former Deputy Head of IRGC's Ground Forces. He had a direct and personal responsibility in the crackdown of protests all through the summer of 2009. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11779 +ARAPOV,Georgy,Konstantinovich,,,,,Арапов Георгий Константинович,,,11/09/1999,,,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0303 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14248 +ARAQI,Abdollah,,,,,,,,,00/00/1945,,,Iran,,,,,Former Deputy Head of IRGC's Ground Forces,,,,,,,,,(UK Sanctions List Ref):IHR0005 (UK Statement of Reasons):Former Deputy Head of IRGC's Ground Forces. He had a direct and personal responsibility in the crackdown of protests all through the summer of 2009. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11779 +ARAQI,Abdullah,,,,,,,,,00/00/1945,,,Iran,,,,,Former Deputy Head of IRGC's Ground Forces,,,,,,,,,(UK Sanctions List Ref):IHR0005 (UK Statement of Reasons):Former Deputy Head of IRGC's Ground Forces. He had a direct and personal responsibility in the crackdown of protests all through the summer of 2009. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11779 +ARAS FARAYANDE,,,,,,,,,,,,,,,,,,,Unit 12,No 35 Kooshesh Street,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0050 (UK Statement of Reasons):Involved in the procurement of specialist materials that have direct application in the Iranian nuclear programme. (Phone number):(1) +98 21 88 74 14 45 (2) +98 21 88 75 24 23 (Website):www.afscoltd.com (Email address):info@afscoltd.com,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11537 +ARAS FARAYANDE SADRA,,,,,,,,,,,,,,,,,,,Unit 12,No 35 Kooshesh Street,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0050 (UK Statement of Reasons):Involved in the procurement of specialist materials that have direct application in the Iranian nuclear programme. (Phone number):(1) +98 21 88 74 14 45 (2) +98 21 88 75 24 23 (Website):www.afscoltd.com (Email address):info@afscoltd.com,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11537 +ARBABSIAR,Mansour,,,,,,,,,15/03/1955,,Iran,(1) Iran. (2) United States,C2002515,Iranian,07442833,"USA driving licence, expiry date 15 March 2016",,5403 Everhardt Road,Corpus Christi,,,,TX,78411,United States,"(UK Sanctions List Ref):CTI0004 Links to IRGC5: Soleimani, Shahlai, Abdollahi and Shakuri (UK Statement of Reasons):Manssor Arbabsiar is a US/Iranian national who pleaded guilty to participating in a plot to murder Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,11/03/2022,12206 +ARBABSIAR,Mansour,,,,,,,,,15/03/1955,,Iran,(1) Iran. (2) United States,C2002515,Iranian,07442833,"USA driving licence, expiry date 15 March 2016",,805 Cisco Valley CV,Round Rock,,,,TX,78664,United States,"(UK Sanctions List Ref):CTI0004 Links to IRGC5: Soleimani, Shahlai, Abdollahi and Shakuri (UK Statement of Reasons):Manssor Arbabsiar is a US/Iranian national who pleaded guilty to participating in a plot to murder Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,11/03/2022,12206 +ARBABSIAR,Mansour,,,,,,,,,06/03/1955,,Iran,(1) Iran. (2) United States,C2002515,Iranian,07442833,"USA driving licence, expiry date 15 March 2016",,5403 Everhardt Road,Corpus Christi,,,,TX,78411,United States,"(UK Sanctions List Ref):CTI0004 Links to IRGC5: Soleimani, Shahlai, Abdollahi and Shakuri (UK Statement of Reasons):Manssor Arbabsiar is a US/Iranian national who pleaded guilty to participating in a plot to murder Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,11/03/2022,12206 +ARBABSIAR,Mansour,,,,,,,,,06/03/1955,,Iran,(1) Iran. (2) United States,C2002515,Iranian,07442833,"USA driving licence, expiry date 15 March 2016",,805 Cisco Valley CV,Round Rock,,,,TX,78664,United States,"(UK Sanctions List Ref):CTI0004 Links to IRGC5: Soleimani, Shahlai, Abdollahi and Shakuri (UK Statement of Reasons):Manssor Arbabsiar is a US/Iranian national who pleaded guilty to participating in a plot to murder Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,11/03/2022,12206 +ARBABSIAR,Manssor,,,,,,,,,15/03/1955,,Iran,(1) Iran. (2) United States,C2002515,Iranian,07442833,"USA driving licence, expiry date 15 March 2016",,805 Cisco Valley CV,Round Rock,,,,TX,78664,United States,"(UK Sanctions List Ref):CTI0004 Links to IRGC5: Soleimani, Shahlai, Abdollahi and Shakuri (UK Statement of Reasons):Manssor Arbabsiar is a US/Iranian national who pleaded guilty to participating in a plot to murder Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),17/10/2011,31/12/2020,11/03/2022,12206 +ARBABSIAR,Manssor,,,,,,,,,15/03/1955,,Iran,(1) Iran. (2) United States,C2002515,Iranian,07442833,"USA driving licence, expiry date 15 March 2016",,5403 Everhardt Road,Corpus Christi,,,,TX,78411,United States,"(UK Sanctions List Ref):CTI0004 Links to IRGC5: Soleimani, Shahlai, Abdollahi and Shakuri (UK Statement of Reasons):Manssor Arbabsiar is a US/Iranian national who pleaded guilty to participating in a plot to murder Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),17/10/2011,31/12/2020,11/03/2022,12206 +ARBABSIAR,Manssor,,,,,,,,,06/03/1955,,Iran,(1) Iran. (2) United States,C2002515,Iranian,07442833,"USA driving licence, expiry date 15 March 2016",,5403 Everhardt Road,Corpus Christi,,,,TX,78411,United States,"(UK Sanctions List Ref):CTI0004 Links to IRGC5: Soleimani, Shahlai, Abdollahi and Shakuri (UK Statement of Reasons):Manssor Arbabsiar is a US/Iranian national who pleaded guilty to participating in a plot to murder Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),17/10/2011,31/12/2020,11/03/2022,12206 +ARBABSIAR,Manssor,,,,,,,,,06/03/1955,,Iran,(1) Iran. (2) United States,C2002515,Iranian,07442833,"USA driving licence, expiry date 15 March 2016",,805 Cisco Valley CV,Round Rock,,,,TX,78664,United States,"(UK Sanctions List Ref):CTI0004 Links to IRGC5: Soleimani, Shahlai, Abdollahi and Shakuri (UK Statement of Reasons):Manssor Arbabsiar is a US/Iranian national who pleaded guilty to participating in a plot to murder Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),17/10/2011,31/12/2020,11/03/2022,12206 +ARDHAN,Muhamad,Ricky,,,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ARDHAN,Muhamad,Ricky,,,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ARDHAN,Muhamad,Ricky,,,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ARDHAN,Muhamad,Ricky,,,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ARDHAN,Muhamad,Ricky,,,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ARDHAN,Muhamad,Ricky,,,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ARDHAN,Muhamad,Ricky,,,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +ARDHAN,Muhamad,Ricky,,,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +AREF,Arefullah,,,,,,,,,00/00/1958,"Lawang (Lawand) village, Gelan District, Ghazni Province",Afghanistan,Afghanistan,,,,,(1) Deputy Minister of Finance under the Taliban regime. (2) Governor of Ghazni Province under the Taliban regime. (3) Governor of Paktia Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0029 (UN Ref):TAi.030 Directs Taliban ""front"" in Gelan District, Ghazni Province, Afghanistan as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7025 +AREFIEV,Nikolay,Vasilievich,,,,,Арефьев Николай Васильевич,,,11/03/1949,"Chagan, Astrakhan",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0613 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14558 +ARENIN,Sergei,Petrovich,,,,,Сергей Петрович АРЕНИН,,,29/08/1958,"Saransk, Mordovian Autonomous Soviet Socialist Republic",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0921 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14872 +ARESHEV,Andrej,,,,,,,,,21/07/1974,Tbilisi,Georgia,Russia,,,,,"Deputy general director, Strategic Culture Foundation",,,,,,,,,"(UK Sanctions List Ref):RUS1105 (UK Statement of Reasons):Andrey Grigoryevich ARESHEV (hereafter ARESHEV) is deputy general director of the Strategic Culture Foundation (SCF), an organisation affiliated with the Government of Russia which spreads disinformation. In his role as deputy general director and as a contributor to SCF, ARESHEV has provided support for and promoted actions and policies which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.  (Email address):pravo5@zmail.ru",Individual,Primary name variation,,Russia,31/03/2022,31/03/2022,09/05/2022,15052 +ARESHEV,Andrey,Grigoryevich,,,,,АРЕШЕВ Андрей Григорьевич,Cyrillic,Russian,21/07/1974,Tbilisi,Georgia,Russia,,,,,"Deputy general director, Strategic Culture Foundation",,,,,,,,,"(UK Sanctions List Ref):RUS1105 (UK Statement of Reasons):Andrey Grigoryevich ARESHEV (hereafter ARESHEV) is deputy general director of the Strategic Culture Foundation (SCF), an organisation affiliated with the Government of Russia which spreads disinformation. In his role as deputy general director and as a contributor to SCF, ARESHEV has provided support for and promoted actions and policies which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.  (Email address):pravo5@zmail.ru",Individual,Primary name,,Russia,31/03/2022,31/03/2022,09/05/2022,15052 +ARFA PAINT COMPANY,,,,,,,,,,,,,,,,,,,,,,,West Lavasani,Tehran,9821,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +ARFA PAINT COMPANY,,,,,,,,,,,,,,,,,,,Sa'adat Abaad,Shahrdari Sq. Sarv Building,9th Floor,Unit 5,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +ARFA PAINT COMPANY,,,,,,,,,,,,,,,,,,,No.17,Balooch Alley,Vaezi St,Shariati Ave.,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +ARFAJ,Imam,Ben,Yussuf,,,,,,,29/01/1971,Roubaix,France,France,,,,,,,,,,,,,France,(UK Sanctions List Ref):AQD0217 (UN Ref):QDi.095 In custody in France as of May 2004. Sentenced to 25 years imprisonment in France in 2007. His sentence is due to end on 13 Jul. 2023 and his unconditional detention to end on 13 Aug. 2020. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4531664,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,11/02/2022,7797 +ARFEH COMPANY,,,,,,,,,,,,,,,,,,,,,,,West Lavasani,Tehran,9821,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +ARFEH COMPANY,,,,,,,,,,,,,,,,,,,Sa'adat Abaad,Shahrdari Sq. Sarv Building,9th Floor,Unit 5,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +ARFEH COMPANY,,,,,,,,,,,,,,,,,,,No.17,Balooch Alley,Vaezi St,Shariati Ave.,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +ARHALI,Sidi,Mohamed,,,,,,,,00/00/1958,"(1) Abeibara, Kidal Region (2) Bourem Region",(1) Mali (2) Mali,Mali,A1037434,"Mali number, issued on 10 Aug. 2001. Expires on 31 Dec. 2014.",012546,Malian birth certificate,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0208 (UN Ref):QDi.316 Founder and leader of Ansar Eddine (QDe.135). Member of the Tuareg Ifogas tribe. Linked to the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Name of father is Ag Bobacer Arhali, name of mother is Rhiachatou Wallet Sidi. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278332",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,25/02/2013,11/02/2022,12862 +ARHALI,Sidi,Mohamed,,,,,,,,01/01/1958,"(1) Abeibara, Kidal Region (2) Bourem Region",(1) Mali (2) Mali,Mali,A1037434,"Mali number, issued on 10 Aug. 2001. Expires on 31 Dec. 2014.",012546,Malian birth certificate,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0208 (UN Ref):QDi.316 Founder and leader of Ansar Eddine (QDe.135). Member of the Tuareg Ifogas tribe. Linked to the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Name of father is Ag Bobacer Arhali, name of mother is Rhiachatou Wallet Sidi. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278332",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,25/02/2013,11/02/2022,12862 +ARHAYM,Umar,Mahmud,,,,,,,,16/06/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +ARHAYM,Umar,Mahmud,,,,,,,,01/01/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +ARHAYM,Umar,Mahmud,Al-Kubaysi,,,,,,,16/06/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +ARHAYM,Umar,Mahmud,Al-Kubaysi,,,,,,,01/01/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +ARIA NIKAN,,,,,,,,,,,,,,,,,,,Suite 1,59 Azadi Ali North Sohrevardi Avenue,,,,Tehran,1576935561,Iran,(UK Sanctions List Ref):INU0053 (UK Statement of Reasons):Known to procure for designated Iran Centrifuge Technology Company (TESA). They have made efforts to procure designated materials which have applications in the Iranian nuclear programme. (Phone number):(1) +9821 8875 1749 (2) +9827 8850 34 36,Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12249 +ARIA NIKAN MARINE INDUSTRY,,,,,,,,,,,,,,,,,,,Suite 1,59 Azadi Ali North Sohrevardi Avenue,,,,Tehran,1576935561,Iran,(UK Sanctions List Ref):INU0053 (UK Statement of Reasons):Known to procure for designated Iran Centrifuge Technology Company (TESA). They have made efforts to procure designated materials which have applications in the Iranian nuclear programme. (Phone number):(1) +9821 8875 1749 (2) +9827 8850 34 36,Entity,Primary name variation,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12249 +ARIF,Said,Mohamed,,,,,,,,25/06/1964,Oran,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0299 (UN Ref):QDi.323 A veteran member of the ‘Chechen Network’ (not listed) and other terrorist groups. He was convicted of his role and membership in the ‘Chechen Network’ in France in 2006. Joined Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137) in October 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13089 +ARIF,Said,Mohamed,,,,,,,,05/12/1965,Oran,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0299 (UN Ref):QDi.323 A veteran member of the ‘Chechen Network’ (not listed) and other terrorist groups. He was convicted of his role and membership in the ‘Chechen Network’ in France in 2006. Joined Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137) in October 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13089 +ARIF,SAID,,,,,,,,,25/06/1964,Oran,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0299 (UN Ref):QDi.323 A veteran member of the ‘Chechen Network’ (not listed) and other terrorist groups. He was convicted of his role and membership in the ‘Chechen Network’ in France in 2006. Joined Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137) in October 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13089 +ARIF,SAID,,,,,,,,,05/12/1965,Oran,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0299 (UN Ref):QDi.323 A veteran member of the ‘Chechen Network’ (not listed) and other terrorist groups. He was convicted of his role and membership in the ‘Chechen Network’ in France in 2006. Joined Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137) in October 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13089 +ARKHAROV,Yuri,Viktorovich,,,,,Юрий Викторович АРХАРОВ,,,13/06/1977,Blagoveshchensk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0989 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14940 +ARMAMENT INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O.Box 19585/777,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0135 (UN Ref):IRe.005 Manufacturers and services a variety of small arms and light weapons, including large- and medium-calibre guns and related technology. AIG conducts the majority of its procurement activity through Hadid Industries Complex. [Old Reference # E.29.I.2]",Entity,AKA,,Iran (Nuclear),24/04/2007,09/06/2010,31/12/2020,9103 +ARMAMENT INDUSTRIES,,,,,,,,,,,,,,,,,,,Pasdaran Ave.,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0135 (UN Ref):IRe.005 Manufacturers and services a variety of small arms and light weapons, including large- and medium-calibre guns and related technology. AIG conducts the majority of its procurement activity through Hadid Industries Complex. [Old Reference # E.29.I.2]",Entity,AKA,,Iran (Nuclear),24/04/2007,09/06/2010,31/12/2020,9103 +ARMAMENT INDUSTRIES,,,,,,,,,,,,,,,,,,,Sepah Islam Road,Karaj Special Road Km 10,,,,,,Iran,"(UK Sanctions List Ref):INU0135 (UN Ref):IRe.005 Manufacturers and services a variety of small arms and light weapons, including large- and medium-calibre guns and related technology. AIG conducts the majority of its procurement activity through Hadid Industries Complex. [Old Reference # E.29.I.2]",Entity,AKA,,Iran (Nuclear),24/04/2007,09/06/2010,31/12/2020,9103 +ARMAMENT INDUSTRIES GROUP (AIG),,,,,,,,,,,,,,,,,,,P.O.Box 19585/777,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0135 (UN Ref):IRe.005 Manufacturers and services a variety of small arms and light weapons, including large- and medium-calibre guns and related technology. AIG conducts the majority of its procurement activity through Hadid Industries Complex. [Old Reference # E.29.I.2]",Entity,Primary name,,Iran (Nuclear),24/04/2007,09/06/2010,31/12/2020,9103 +ARMAMENT INDUSTRIES GROUP (AIG),,,,,,,,,,,,,,,,,,,Pasdaran Ave.,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0135 (UN Ref):IRe.005 Manufacturers and services a variety of small arms and light weapons, including large- and medium-calibre guns and related technology. AIG conducts the majority of its procurement activity through Hadid Industries Complex. [Old Reference # E.29.I.2]",Entity,Primary name,,Iran (Nuclear),24/04/2007,09/06/2010,31/12/2020,9103 +ARMAMENT INDUSTRIES GROUP (AIG),,,,,,,,,,,,,,,,,,,Sepah Islam Road,Karaj Special Road Km 10,,,,,,Iran,"(UK Sanctions List Ref):INU0135 (UN Ref):IRe.005 Manufacturers and services a variety of small arms and light weapons, including large- and medium-calibre guns and related technology. AIG conducts the majority of its procurement activity through Hadid Industries Complex. [Old Reference # E.29.I.2]",Entity,Primary name,,Iran (Nuclear),24/04/2007,09/06/2010,31/12/2020,9103 +ARMANAZI,Amer,Najib,,,,,,,,07/02/1944,,,Syria,,,,,Former Director General of the Syrian Scientific Studies and Research Center (SSRC),,,,,,,,,"(UK Sanctions List Ref):SYR0020 (UK Statement of Reasons):Former Director-General of the Syrian Scientific Studies and Research Centre (SSRC), responsible for providing support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Also responsible for the development and production of non-conventional weapons, including chemical weapons, and the missiles to deliver them. Responsible for the violent repression of the civilian population; supports the regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,13/05/2022,13024 +ARMANAZI,Amr,,,,,,,,,07/02/1944,,,Syria,,,,,Former Director General of the Syrian Scientific Studies and Research Center (SSRC),,,,,,,,,"(UK Sanctions List Ref):SYR0020 (UK Statement of Reasons):Former Director-General of the Syrian Scientific Studies and Research Centre (SSRC), responsible for providing support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Also responsible for the development and production of non-conventional weapons, including chemical weapons, and the missiles to deliver them. Responsible for the violent repression of the civilian population; supports the regime. (Gender):Male",Individual,Primary name,,Syria,23/07/2014,31/12/2020,13/05/2022,13024 +ARMANAZI,Amr,Muhammad,Najib,,,,,,,07/02/1944,,,Syria,,,,,Former Director General of the Syrian Scientific Studies and Research Center (SSRC),,,,,,,,,"(UK Sanctions List Ref):SYR0020 (UK Statement of Reasons):Former Director-General of the Syrian Scientific Studies and Research Centre (SSRC), responsible for providing support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Also responsible for the development and production of non-conventional weapons, including chemical weapons, and the missiles to deliver them. Responsible for the violent repression of the civilian population; supports the regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,13/05/2022,13024 +ARMANAZI,Amrou,,,,,,,,,07/02/1944,,,Syria,,,,,Former Director General of the Syrian Scientific Studies and Research Center (SSRC),,,,,,,,,"(UK Sanctions List Ref):SYR0020 (UK Statement of Reasons):Former Director-General of the Syrian Scientific Studies and Research Centre (SSRC), responsible for providing support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Also responsible for the development and production of non-conventional weapons, including chemical weapons, and the missiles to deliver them. Responsible for the violent repression of the civilian population; supports the regime. (Gender):Male",Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,13/05/2022,13024 +ARMED FORCES AVIATION INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,107 Sepahbod Gharani Avenue,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +ARMED FORCES AVIATION INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,3th km Karaj Special Road,Aviation Industries Boulevard,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +ARMED FORCES AVIATION INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,Ave. Sepahbod Gharani PO Box 15815/1775,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +ARMED FORCES AVIATION INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,Karaj Special Road,Mehrabad Airport,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +ARMED FORCES AVIATION INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,Sepahbod Gharani 36,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +ARMED FORCES GEOGRAPHICAL ORGANISATION,,,,,,,سازمان جغرافیایی,,,,,,,,,,,,Ferdowsi Avenue,,,,,Sarhang,,Iran,(UK Sanctions List Ref):INU0054 (UK Statement of Reasons):A subsidiary of MODAFL assessed to provide geospatial data for the ballistic missile programme (Type of entity):Public (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL),Entity,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,31/12/2020,10648 +ARMED FORCES GEOGRAPHICAL ORGANISATION,,,,,,,سازمان جغرافیایی,,,,,,,,,,,,Sakhei Avenue,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0054 (UK Statement of Reasons):A subsidiary of MODAFL assessed to provide geospatial data for the ballistic missile programme (Type of entity):Public (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL),Entity,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,31/12/2020,10648 +ARMED ISLAMIC GROUP,,,,,,,الجماعة الاسلامية المسلحة,,,,,,,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0036 (UN Ref):QDe.006 Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281693,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6963 +ARMY OF EMIGRANTS AND SUPPORTERS ORGANIZATION,,,,,,,,,,,,,,,,,,,Jabal Turkuman area,,,,,Lattakia Governorate,,Syria,"(UK Sanctions List Ref):AQD0080 (UN Ref):QDe.148 Established by foreign terrorist fighters in 2013. Location: Syrian Arab Republic. Affiliated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115) and AI-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5887669",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/08/2015,06/08/2015,31/12/2020,13270 +ARMY OF MOHAMMED,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0053 (UN Ref):QDe.019,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,7029 +ARMY OF THE PURE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +ARMY OF THE PURE AND RIGHTEOUS,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +ARMY OF THE RIGHTEOUS,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +ARMY OF THE SOUTHEAST,,,,,,,,,,,,,,,,,,,Sergei Aleksandrovich,,,,Severdonetsk Ulista (street) Vihisova 1,,,,"(UK Sanctions List Ref):RUS0166 Names of Director(s)/ Management: BOLOTOV, 1: VALERIY 2: DMITRIEVICH (one of the former leaders of the group). (UK Statement of Reasons):Illegal armed separatist group which is considered to be one of the most important in Eastern Ukraine. Responsible for occupying the building of the Security Service in the Lugansk region. Associated with Mr. Vasyl NIKITIN, responsible for the separatist ‘governmental’ activities of the so called ‘government of the People' s Republic of Luhansk’. The Army of the South-East has been absorbed into the army or militia of the so-called “People’s Republic of Lugansk”. (Type of entity):Enterprise",Entity,Primary name,,Russia,25/07/2014,31/12/2020,31/12/2020,13056 +ARMY OF THE SOUTHEAST,,,,,,,,,,,,,,,,,,,The combat training centre,Lugansk Krasnodonskaya Street 6,,,,Severdonetsk,,,"(UK Sanctions List Ref):RUS0166 Names of Director(s)/ Management: BOLOTOV, 1: VALERIY 2: DMITRIEVICH (one of the former leaders of the group). (UK Statement of Reasons):Illegal armed separatist group which is considered to be one of the most important in Eastern Ukraine. Responsible for occupying the building of the Security Service in the Lugansk region. Associated with Mr. Vasyl NIKITIN, responsible for the separatist ‘governmental’ activities of the so called ‘government of the People' s Republic of Luhansk’. The Army of the South-East has been absorbed into the army or militia of the so-called “People’s Republic of Lugansk”. (Type of entity):Enterprise",Entity,Primary name,,Russia,25/07/2014,31/12/2020,31/12/2020,13056 +ARMY OF THE SOUTH-EAST,,,,,,,,,,,,,,,,,,,Sergei Aleksandrovich,,,,Severdonetsk Ulista (street) Vihisova 1,,,,"(UK Sanctions List Ref):RUS0166 Names of Director(s)/ Management: BOLOTOV, 1: VALERIY 2: DMITRIEVICH (one of the former leaders of the group). (UK Statement of Reasons):Illegal armed separatist group which is considered to be one of the most important in Eastern Ukraine. Responsible for occupying the building of the Security Service in the Lugansk region. Associated with Mr. Vasyl NIKITIN, responsible for the separatist ‘governmental’ activities of the so called ‘government of the People' s Republic of Luhansk’. The Army of the South-East has been absorbed into the army or militia of the so-called “People’s Republic of Lugansk”. (Type of entity):Enterprise",Entity,AKA,,Russia,25/07/2014,31/12/2020,31/12/2020,13056 +ARMY OF THE SOUTH-EAST,,,,,,,,,,,,,,,,,,,The combat training centre,Lugansk Krasnodonskaya Street 6,,,,Severdonetsk,,,"(UK Sanctions List Ref):RUS0166 Names of Director(s)/ Management: BOLOTOV, 1: VALERIY 2: DMITRIEVICH (one of the former leaders of the group). (UK Statement of Reasons):Illegal armed separatist group which is considered to be one of the most important in Eastern Ukraine. Responsible for occupying the building of the Security Service in the Lugansk region. Associated with Mr. Vasyl NIKITIN, responsible for the separatist ‘governmental’ activities of the so called ‘government of the People' s Republic of Luhansk’. The Army of the South-East has been absorbed into the army or militia of the so-called “People’s Republic of Lugansk”. (Type of entity):Enterprise",Entity,AKA,,Russia,25/07/2014,31/12/2020,31/12/2020,13056 +ARMY SUPPLY BUREAU,,,,,,,,,,,,,,,,,,,,,,,PO Box 3361,Damascus,,Syria,"(UK Sanctions List Ref):SYR0282 Director or Management's name is Ali Al-Salim (UK Statement of Reasons):Involved in the procurement of military equipment in support of the regime, and therefore responsible for the violent repression of the civilian population in Syria. Branch of Syrian Ministry of Defence (Type of entity):State-owned (Subsidiaries):Subsidiary organisation of the Ministry of Defence (Parent company):Subsidiary organisation of the Ministry of Defence",Entity,Primary name,,Syria,23/07/2014,31/12/2020,01/02/2021,13030 +ARNOUS,Hussein,,,,,,,,,00/00/1953,Idleb,Syria,Syria,,,,,Prime Minister. Appointed in August 2020.,,,,,,,,,"(UK Sanctions List Ref):SYR0093 Linked to Bashar Asad (UK Statement of Reasons):Prime Minister. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population. (Gender):Male",Individual,Primary name,,Syria,24/06/2014,31/12/2020,31/12/2020,12996 +ARNUS,Hussein,,,,,,,,,00/00/1953,Idleb,Syria,Syria,,,,,Prime Minister. Appointed in August 2020.,,,,,,,,,"(UK Sanctions List Ref):SYR0093 Linked to Bashar Asad (UK Statement of Reasons):Prime Minister. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,31/12/2020,12996 +ARSALAN,Mike,,,,,,,,,20/07/1966,Central Java,Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0331 (UN Ref):QDi.294 Senior member of Jemaah Islamiyah (QDe.092) involved in planning and funding multiple terrorist attacks in the Philippines and Indonesia. Provided training to Abu Sayyaf Group (QDe.001). Convicted for his role in the 2002 Bali bombings and sentenced to 20 years in prison in Jun. 2012. Remains in custody in Indonesia as at May 2015. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173385,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,12/01/2022,12021 +ARSHAD,Abu Waheed,Irshad,Ahmad,,,,,,,30/12/1960,Okara,Pakistan,Pakistan,,,61101-9618232-1,,,Barahkoh,P.O. DO,,,,Tehsil and District Islamabad,,Pakistan,(UK Sanctions List Ref):AQD0342 (UN Ref):QDi.264 Chief of operations of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543499. Pakistan (location as at May 2008),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9216 +ARSHAD,Abu Waheed,Irshad,Ahmad,,,,,,,30/12/1960,Okara,Pakistan,Pakistan,,,61101-9618232-1,,,Chak No. 18/IL,Rinala Khurd,Tehsil Rinala Khurd,,,District Okara,,Pakistan,(UK Sanctions List Ref):AQD0342 (UN Ref):QDi.264 Chief of operations of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543499. Pakistan (location as at May 2008),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9216 +ARSHBA,Otari,Ionovich,,,,,Аршба Отари Ионович,,,12/04/1955,Sukhumi,Georgia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0305 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14250 +ARSHINOVA,Alena,Igorevna,,,,,Аршинова Алёна Игоревна,,,03/03/1985,Dresden,Germany,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0614 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14559 +ART,Tito,,,,,,,,,19/12/1969,"Bagac, Bagamanok, Catanduanes",Philippines,Philippines,,,,,,Concepcion,,,,Zaragosa,Nueva Ecija,,Philippines,"(UK Sanctions List Ref):AQD0287 (UN Ref):QDi.245 Member of the Rajah Solaiman Movement (QDe.128), Abu Sayyaf Group (QDe.001) and Jemaah Islamiyah (QDe.092). Father's name is Honorio Devera. Mother's name is Fausta Abogne. In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10665 +ARTAMONOV,Anatoly,Dmitrievich,,,,,Анатолий Дмитриевич АРТАМОНОВ,,,05/05/1952,Krasnoe,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0900 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14851 +ARTAMONOV,Igor,Georgievich,,,,,Игорь Георгиевич Артамонов,,,14/03/1967,,,Russia,,,,,Governor of Lipetsk Region,,,,,,,,,"(UK Sanctions List Ref):RUS1533 (UK Statement of Reasons):Igor Georgievich ARTAMONOV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because ARTAMONOV is a regional governor. Specifically, ARTAMONOV is Governor of Lipetsk Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15486 +ARTAMONOVA,Valentina,Nikolaevna,,,,,Артамонова Валентина Николаевна,,,13/12/1960,Nesterovo,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0304 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14249 +ARTEAGA,Alexander,Enrique,,,,Major,,,,25/03/1981,,Venezuela,Venezuela,,,14970215,,Director of the DAE (Special Affairs Division) of the Director General of Military Counter-Intelligence,,,,,,,,,"(UK Sanctions List Ref):VEN0024 (UK Statement of Reasons):Head (Director) of the Special Affairs Division (DAE) of the Directorate-General of Military Counterintelligence (Dirección General de Contrainteligencia Militar (DGCIM)). Promoted to Colonel in July 2020. There are reasonable grounds to suspect that he is responsible for serious human rights violations, including torture, excessive use of force causing death and injury and the ill-treatment of detainees in DGCIM facilities committed by himself and officials under his command. There are also, reasonable grounds to suspect he is involved in the repression of civil society by members of DGCIM under his command, as well as directly involved in such repression. In particular, he is l Linked to the death of Captain Acosta. (Gender):Male",Individual,Primary name variation,,Venezuela,27/09/2019,31/12/2020,28/01/2022,13796 +ARTHUR,,,,,,,,,,15/01/1970,"Grozny, Chechen Republic",Russia,(1) Russia. (2) Georgia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0266 (UN Ref):QDi.406 Associated with Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116583",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13517 +ARTYUKHOV,Dmitry,Andreevich,,,,,Дмитрий Андреевич Артюхов,,,07/02/1988,,,Russia,,,,,Governor of the Yamalo-Nenets Autonomous Area,,,,,,,,,"(UK Sanctions List Ref):RUS1532 (UK Statement of Reasons):Dmitry Andreevich ARTYUKHOV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because ARTYUKHOV is a regional governor. Specifically, ARTYUKHOV is Governor of the Yamalo-Nenets Autonomous Area. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15485 +ARYA MEHR UNIVERSITY OF TECHNOLOGY,,,,,,,,,,,,,,,,,,,Azadi Ave,11365 8639,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +ARYA MEHR UNIVERSITY OF TECHNOLOGY,,,,,,,,,,,,,,,,,,,Azadi Ave/Street,PO Box 11365 11155,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +ARYA MEHR UNIVERSITY OF TECHNOLOGY,,,,,,,,,,,,,,,,,,,P.O. Box 11155 9466,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +ARYA MEHR UNIVERSITY OF TECHNOLOGY,,,,,,,,,,,,,,,,,,,P.O. Box 11365 9161,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +ARYA MEHR UNIVERSITY OF TECHNOLOGY,,,,,,,,,,,,,,,,,,,P.O. Box 11365 9466,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +ARYA MEHR UNIVERSITY OF TECHNOLOGY,,,,,,,,,,,,,,,,,,,PO Box 11365 8639,Azadi St,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +ASAD,,,,,,,,,,22/02/1986,Mount Hope,Trinidad and Tobago,Trinidad and Tobago,(1) TA959547 (2) T1071839,(1) Trinidad and Tobago number. Issued on 19 Nov. 2013. Issued by Immigration Division of Trinidad and Tobago. Expiration date 18 Nov. 2018. (2) Trinidad and Tobago number. Issued on 8 Nov. 2004. Issued by Immigration Division of Trinidad and Tobago. Expiration date 7 Nov. 2014,(1) 19860222007 (2) B394445 (3) 892124B,(1) Trinidad and Tobago National Identification Card. Issued on 16 Jun. 2011. Expiration date 16 Jun. 2016. (2) Trinidad and Tobago Birth Certificate. Issued on 23 Jan. 2007 (3) Trinidad and Tobago Driver's Permit. Issued on 30 Aug. 2007. Expiration date 30 Aug. 2010,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0316 (UN Ref):QDi.410 English language propagandist for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115). Wanted in Trinidad and Tobago for possession of ammunition and firearms and receiving stolen goods. Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6123498. Syria (as at May 2014) (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/08/2017,18/08/2017,31/12/2020,13539 +ASAD,,,,,,,,,,22/02/1986,Mount Hope,Trinidad and Tobago,Trinidad and Tobago,(1) TA959547 (2) T1071839,(1) Trinidad and Tobago number. Issued on 19 Nov. 2013. Issued by Immigration Division of Trinidad and Tobago. Expiration date 18 Nov. 2018. (2) Trinidad and Tobago number. Issued on 8 Nov. 2004. Issued by Immigration Division of Trinidad and Tobago. Expiration date 7 Nov. 2014,(1) 19860222007 (2) B394445 (3) 892124B,(1) Trinidad and Tobago National Identification Card. Issued on 16 Jun. 2011. Expiration date 16 Jun. 2016. (2) Trinidad and Tobago Birth Certificate. Issued on 23 Jan. 2007 (3) Trinidad and Tobago Driver's Permit. Issued on 30 Aug. 2007. Expiration date 30 Aug. 2010,,349 Dass Branch Trace,Dass Trace,Enterprise Chaguanas,,,,,Trinidad and Tobago,"(UK Sanctions List Ref):AQD0316 (UN Ref):QDi.410 English language propagandist for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115). Wanted in Trinidad and Tobago for possession of ammunition and firearms and receiving stolen goods. Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6123498. Syria (as at May 2014) (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/08/2017,18/08/2017,31/12/2020,13539 +ASAD,,,,,,,,,,22/02/1986,Mount Hope,Trinidad and Tobago,Trinidad and Tobago,(1) TA959547 (2) T1071839,(1) Trinidad and Tobago number. Issued on 19 Nov. 2013. Issued by Immigration Division of Trinidad and Tobago. Expiration date 18 Nov. 2018. (2) Trinidad and Tobago number. Issued on 8 Nov. 2004. Issued by Immigration Division of Trinidad and Tobago. Expiration date 7 Nov. 2014,(1) 19860222007 (2) B394445 (3) 892124B,(1) Trinidad and Tobago National Identification Card. Issued on 16 Jun. 2011. Expiration date 16 Jun. 2016. (2) Trinidad and Tobago Birth Certificate. Issued on 23 Jan. 2007 (3) Trinidad and Tobago Driver's Permit. Issued on 30 Aug. 2007. Expiration date 30 Aug. 2010,,LP41 Ballisier Road,Smith Field Lands,Wallerfield,County of St. George East,,,,Trinidad and Tobago,"(UK Sanctions List Ref):AQD0316 (UN Ref):QDi.410 English language propagandist for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115). Wanted in Trinidad and Tobago for possession of ammunition and firearms and receiving stolen goods. Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6123498. Syria (as at May 2014) (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/08/2017,18/08/2017,31/12/2020,13539 +ASAD,,,,,,,,,,22/02/1986,Mount Hope,Trinidad and Tobago,Trinidad and Tobago,(1) TA959547 (2) T1071839,(1) Trinidad and Tobago number. Issued on 19 Nov. 2013. Issued by Immigration Division of Trinidad and Tobago. Expiration date 18 Nov. 2018. (2) Trinidad and Tobago number. Issued on 8 Nov. 2004. Issued by Immigration Division of Trinidad and Tobago. Expiration date 7 Nov. 2014,(1) 19860222007 (2) B394445 (3) 892124B,(1) Trinidad and Tobago National Identification Card. Issued on 16 Jun. 2011. Expiration date 16 Jun. 2016. (2) Trinidad and Tobago Birth Certificate. Issued on 23 Jan. 2007 (3) Trinidad and Tobago Driver's Permit. Issued on 30 Aug. 2007. Expiration date 30 Aug. 2010,,Reyhanli,Hatay,,,,,,Turkey,"(UK Sanctions List Ref):AQD0316 (UN Ref):QDi.410 English language propagandist for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115). Wanted in Trinidad and Tobago for possession of ammunition and firearms and receiving stolen goods. Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6123498. Syria (as at May 2014) (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/08/2017,18/08/2017,31/12/2020,13539 +ASADI,Assadollah,,,,,,,,,22/12/1971,Tehran,Iran,Iran,D9016657,Iranian diplomatic passport,,,"Third Secretary, Iranian Embassy Vienna",,,,,,,,Belgium,(UK Sanctions List Ref):CTI0005 Links to Saied Hashemi Moghadam (UK Statement of Reasons):Assadollah Asadi was involved in the planning and preparation of a foiled terrorist attack against a meeting of Iranian exiles in Villepinte in June 2018. (Gender):Male,Individual,Primary name,,Counter-Terrorism (International),09/01/2019,31/12/2020,11/03/2022,13740 +ASADULLAH,,,,,,,,,,22/02/1986,Mount Hope,Trinidad and Tobago,Trinidad and Tobago,(1) TA959547 (2) T1071839,(1) Trinidad and Tobago number. Issued on 19 Nov. 2013. Issued by Immigration Division of Trinidad and Tobago. Expiration date 18 Nov. 2018. (2) Trinidad and Tobago number. Issued on 8 Nov. 2004. Issued by Immigration Division of Trinidad and Tobago. Expiration date 7 Nov. 2014,(1) 19860222007 (2) B394445 (3) 892124B,(1) Trinidad and Tobago National Identification Card. Issued on 16 Jun. 2011. Expiration date 16 Jun. 2016. (2) Trinidad and Tobago Birth Certificate. Issued on 23 Jan. 2007 (3) Trinidad and Tobago Driver's Permit. Issued on 30 Aug. 2007. Expiration date 30 Aug. 2010,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0316 (UN Ref):QDi.410 English language propagandist for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115). Wanted in Trinidad and Tobago for possession of ammunition and firearms and receiving stolen goods. Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6123498. Syria (as at May 2014) (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/08/2017,18/08/2017,31/12/2020,13539 +ASADULLAH,,,,,,,,,,22/02/1986,Mount Hope,Trinidad and Tobago,Trinidad and Tobago,(1) TA959547 (2) T1071839,(1) Trinidad and Tobago number. Issued on 19 Nov. 2013. Issued by Immigration Division of Trinidad and Tobago. Expiration date 18 Nov. 2018. (2) Trinidad and Tobago number. Issued on 8 Nov. 2004. Issued by Immigration Division of Trinidad and Tobago. Expiration date 7 Nov. 2014,(1) 19860222007 (2) B394445 (3) 892124B,(1) Trinidad and Tobago National Identification Card. Issued on 16 Jun. 2011. Expiration date 16 Jun. 2016. (2) Trinidad and Tobago Birth Certificate. Issued on 23 Jan. 2007 (3) Trinidad and Tobago Driver's Permit. Issued on 30 Aug. 2007. Expiration date 30 Aug. 2010,,349 Dass Branch Trace,Dass Trace,Enterprise Chaguanas,,,,,Trinidad and Tobago,"(UK Sanctions List Ref):AQD0316 (UN Ref):QDi.410 English language propagandist for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115). Wanted in Trinidad and Tobago for possession of ammunition and firearms and receiving stolen goods. Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6123498. Syria (as at May 2014) (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/08/2017,18/08/2017,31/12/2020,13539 +ASADULLAH,,,,,,,,,,22/02/1986,Mount Hope,Trinidad and Tobago,Trinidad and Tobago,(1) TA959547 (2) T1071839,(1) Trinidad and Tobago number. Issued on 19 Nov. 2013. Issued by Immigration Division of Trinidad and Tobago. Expiration date 18 Nov. 2018. (2) Trinidad and Tobago number. Issued on 8 Nov. 2004. Issued by Immigration Division of Trinidad and Tobago. Expiration date 7 Nov. 2014,(1) 19860222007 (2) B394445 (3) 892124B,(1) Trinidad and Tobago National Identification Card. Issued on 16 Jun. 2011. Expiration date 16 Jun. 2016. (2) Trinidad and Tobago Birth Certificate. Issued on 23 Jan. 2007 (3) Trinidad and Tobago Driver's Permit. Issued on 30 Aug. 2007. Expiration date 30 Aug. 2010,,LP41 Ballisier Road,Smith Field Lands,Wallerfield,County of St. George East,,,,Trinidad and Tobago,"(UK Sanctions List Ref):AQD0316 (UN Ref):QDi.410 English language propagandist for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115). Wanted in Trinidad and Tobago for possession of ammunition and firearms and receiving stolen goods. Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6123498. Syria (as at May 2014) (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/08/2017,18/08/2017,31/12/2020,13539 +ASADULLAH,,,,,,,,,,22/02/1986,Mount Hope,Trinidad and Tobago,Trinidad and Tobago,(1) TA959547 (2) T1071839,(1) Trinidad and Tobago number. Issued on 19 Nov. 2013. Issued by Immigration Division of Trinidad and Tobago. Expiration date 18 Nov. 2018. (2) Trinidad and Tobago number. Issued on 8 Nov. 2004. Issued by Immigration Division of Trinidad and Tobago. Expiration date 7 Nov. 2014,(1) 19860222007 (2) B394445 (3) 892124B,(1) Trinidad and Tobago National Identification Card. Issued on 16 Jun. 2011. Expiration date 16 Jun. 2016. (2) Trinidad and Tobago Birth Certificate. Issued on 23 Jan. 2007 (3) Trinidad and Tobago Driver's Permit. Issued on 30 Aug. 2007. Expiration date 30 Aug. 2010,,Reyhanli,Hatay,,,,,,Turkey,"(UK Sanctions List Ref):AQD0316 (UN Ref):QDi.410 English language propagandist for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115). Wanted in Trinidad and Tobago for possession of ammunition and firearms and receiving stolen goods. Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6123498. Syria (as at May 2014) (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/08/2017,18/08/2017,31/12/2020,13539 +ASBAT AL-ANSAR,,,,,,,عصبة الأنصار,,,,,,,,,,,,Ein el-Hilweh camp,,,,,,,Lebanon,(UK Sanctions List Ref):AQD0037 (UN Ref):QDe.007 Active in northern Iraq. Associated with Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278387,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7031 +ASEERI,Ibrahim,Hasan,Talea,,,,,,,19/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +ASEERI,Ibrahim,Hasan,Talea,,,,,,,18/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +ASELDEROV,RUSTAM,MAGOMEDOVICH,,,,,Рустам Магомедович Асельдеров,,,09/03/1981,"Iki-Burul Village, Iki-Burulskiy District, Republic of Kalmykia",Russia,Russia,8208 No. 555627,"(Russian). Issued by Leninskiy Office, Directorate of the Federal Migration Service of the Russian Federation for the Republic of Dagestan.",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0297 (UN Ref):QDi.398 Led a group of over 160 terrorist fighters, which operates in the Republics of Dagestan, Chechnya and Ingushetia, Russian Federation. Killed on 3 December 2016 in Makhachkala, the Republic of Dagestan, Russian Federation. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5993047 (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,16/12/2016,12/12/2016,12/01/2022,13440 +ASEM,Asmatullah,,,,,,,,,00/00/1967,"Qalayi Shaikh, Chaparhar District, Nangarhar Province",Afghanistan,Afghanistan,,,,,(1) Deputy Minister of Preventing Vice and Propagating Virtue under the Taliban regime. (2) Secretary General of the Afghan Red Crescent Society (ARCS) under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0061 (UN Ref):TAi.080 Member of the Taliban Supreme Council as of May 2007. Believed to be in Afghanistan/ Pakistan border area. Member of the Taliban Peshawar Shura. Responsible for Afghan Taliban activity in Federally Administrated Tribal Areas, Pakistan as at 2008. A leading expert in IED and suicide attacks as of 2012. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7033 +ASEM,Esmatullah,,,,,,,,,00/00/1967,"Qalayi Shaikh, Chaparhar District, Nangarhar Province",Afghanistan,Afghanistan,,,,,(1) Deputy Minister of Preventing Vice and Propagating Virtue under the Taliban regime. (2) Secretary General of the Afghan Red Crescent Society (ARCS) under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0061 (UN Ref):TAi.080 Member of the Taliban Supreme Council as of May 2007. Believed to be in Afghanistan/ Pakistan border area. Member of the Taliban Peshawar Shura. Responsible for Afghan Taliban activity in Federally Administrated Tribal Areas, Pakistan as at 2008. A leading expert in IED and suicide attacks as of 2012. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7033 +ASEM,Sayed Esmatullah,,,,,,,,,00/00/1967,"Qalayi Shaikh, Chaparhar District, Nangarhar Province",Afghanistan,Afghanistan,,,,,(1) Deputy Minister of Preventing Vice and Propagating Virtue under the Taliban regime. (2) Secretary General of the Afghan Red Crescent Society (ARCS) under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0061 (UN Ref):TAi.080 Member of the Taliban Supreme Council as of May 2007. Believed to be in Afghanistan/ Pakistan border area. Member of the Taliban Peshawar Shura. Responsible for Afghan Taliban activity in Federally Administrated Tribal Areas, Pakistan as at 2008. A leading expert in IED and suicide attacks as of 2012. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7033 +ASHI,Aammar,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +ASHI,Amer,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +ASHI,Amer,Ibrahim,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +ASHI,Amis,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +ASHI,Ammar,,,,,,,,,00/00/1954,Hama,,Syria,,,,,(1) Former Governor of Suweida (2) Former Commander in Air Force Intelligence,,,,,,Suweida,,,"(UK Sanctions List Ref):SYR0018 Former commander in the Air Force Intelligence Agency (UK Statement of Reasons):Graduate of the military school of Aleppo, close to Daoud Rajah, former Syrian Minister for Defence. Former Head of intelligence branch of Air Force Intelligence Agency 2012-2016. Former Governor of Suweida since 2016. Through his role in the Air Force Intelligence Agency, Amer al-Achi is implicated in the repression of the Syrian opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12727 +ASHOUR AL-FADHLI,Mushin,Fadhil,Ayed,,,,محسن فاضل عايد عاشور الفضلي,,,24/04/1981,,Kuwait,Kuwait,(1) 106261543 (2) 1420529,(1) Kuwaiti (2) Kuwaiti. Issued in Kuwait. Expired on 31 March 2006.,,,,Block 4,Street 13,House No 179,,Al-Riqqa area,Kuwait City,,Kuwait,(UK Sanctions List Ref):AQD0265 (UN Ref):QDi.184 Wanted by the Kuwaiti Security Authorities. Wanted by the Saudi security forces. Fugitive as of Jul. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4484905,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/02/2005,17/02/2005,31/12/2020,8523 +ASHRAF,Abu,,,,,,,,,00/00/1975,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ASHRAF,Abu,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1975,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ASHRAF,Abu,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1976,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ASHRAF,Abu,,,,,,,,,00/00/1976,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ASHRAF,Abu,,,,,,,,,00/00/1977,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ASHRAF,Abu,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1977,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ASHRAF,Abu,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1978,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ASHRAF,Abu,,,,,,,,,00/00/1978,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ASHRAF,Abu,,,,,,,,,00/00/1979,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ASHRAF,Abu,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1979,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ASHRAF,Abu,,,,,,شيخ الفاتح ، الفاتح,,,00/00/1980,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ASHRAF,Abu,,,,,,,,,00/00/1980,,Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0115 (UN Ref):QDi.317 Description: Dark complexion. Height: 1.70 m. Since Jan. 2012, he is the Leader of Al-Nusrah Front for the People of the Levant (QDe.137), a Syria-based group listed in May 2014, and previously listed as an alias of Al-Qaida in Iraq (AQI) (QDe.115) between 30 May 2013 and 13 May 2014. Associated with Aiman Muhammed Rabi al-Zawahiri (QDi.006). Wanted by the Iraqi security forces. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5513535. Address country Syria (active as at June 2013)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/08/2013,24/07/2013,31/12/2020,12883 +ASHRAF,Haji,M.,,,,,,,,01/03/1965,Faisalabad,Pakistan,Pakistan,(1) AT0712501 (2) A-374184,(1) Pakistan issued on 12 Mar. 2008 (expired 11 Mar 2013) (2) Pakistan,(1) 6110125312507 (2) 24492025390,(1) Pakistan (2) Pakistan,,,,,,,,,,(UK Sanctions List Ref):AQD0184 (UN Ref):QDi.265 Chief of finance of Lashkar-e-Tayyiba (QDe.118). His father’s name is Noor Muhammad. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543491,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,11/02/2022,9217 +ASHRAF,Haji,M.,,,,,,,,00/00/1955,Faisalabad,Pakistan,Pakistan,(1) AT0712501 (2) A-374184,(1) Pakistan issued on 12 Mar. 2008 (expired 11 Mar 2013) (2) Pakistan,(1) 6110125312507 (2) 24492025390,(1) Pakistan (2) Pakistan,,,,,,,,,,(UK Sanctions List Ref):AQD0184 (UN Ref):QDi.265 Chief of finance of Lashkar-e-Tayyiba (QDe.118). His father’s name is Noor Muhammad. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543491,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,11/02/2022,9217 +ASHRAF,HAJI,MUHAMMAD,,,,,,,,01/03/1965,Faisalabad,Pakistan,Pakistan,(1) AT0712501 (2) A-374184,(1) Pakistan issued on 12 Mar. 2008 (expired 11 Mar 2013) (2) Pakistan,(1) 6110125312507 (2) 24492025390,(1) Pakistan (2) Pakistan,,,,,,,,,,(UK Sanctions List Ref):AQD0184 (UN Ref):QDi.265 Chief of finance of Lashkar-e-Tayyiba (QDe.118). His father’s name is Noor Muhammad. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543491,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,11/02/2022,9217 +ASHRAF,HAJI,MUHAMMAD,,,,,,,,00/00/1955,Faisalabad,Pakistan,Pakistan,(1) AT0712501 (2) A-374184,(1) Pakistan issued on 12 Mar. 2008 (expired 11 Mar 2013) (2) Pakistan,(1) 6110125312507 (2) 24492025390,(1) Pakistan (2) Pakistan,,,,,,,,,,(UK Sanctions List Ref):AQD0184 (UN Ref):QDi.265 Chief of finance of Lashkar-e-Tayyiba (QDe.118). His father’s name is Noor Muhammad. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543491,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,11/02/2022,9217 +ASHTARI,Hossein,,,,,Brigadier General,,,,00/00/1959,Isfahan,Iran,Iran,,,,,Commander in Chief of Iran’s Police Forces,,,,,,,,,"(UK Sanctions List Ref):IHR0089 (UK Statement of Reasons):Hossein ASHTARI is or has been involved in the commission of a serious human rights violation or abuse in Iran as Commander-in-Chief of Iran’s Police Forces, involved in the violent repression of protests in Iran in November 2019. (Gender):Male",Individual,Primary name,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15602 +ASHTIAN TABLEAU,,,,,,,,,,,,,,,,,,,No. 3,Azadegan Blvd.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0055 (UK Statement of Reasons):Involved in the production and supply of specialist electrical equipment and materials that have a direct application in the Iranian nuclear sector. (Phone number):(1) + 98 21 88331378 81. (2) +98 2188331378 (Website):www.ashtiantablo.com (Email address):m.ashtiani@ashtiantablo.com (Type of entity):(1) Construction (2) Engineering,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11548 +ASHTIAN TABLEAU,,,,,,,,,,,,,,,,,,,No. 6,2nd Floor,5th Alley,Gandi Ave.,,Tehran,15176,Iran,(UK Sanctions List Ref):INU0055 (UK Statement of Reasons):Involved in the production and supply of specialist electrical equipment and materials that have a direct application in the Iranian nuclear sector. (Phone number):(1) + 98 21 88331378 81. (2) +98 2188331378 (Website):www.ashtiantablo.com (Email address):m.ashtiani@ashtiantablo.com (Type of entity):(1) Construction (2) Engineering,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11548 +ASHTIAN TABLEAU,,,,,,,,,,,,,,,,,,,No. 67,Ghods Mirheydari St.,Jahan Ara St,Yoosef Abad,,Tehran,1238895381,Iran,(UK Sanctions List Ref):INU0055 (UK Statement of Reasons):Involved in the production and supply of specialist electrical equipment and materials that have a direct application in the Iranian nuclear sector. (Phone number):(1) + 98 21 88331378 81. (2) +98 2188331378 (Website):www.ashtiantablo.com (Email address):m.ashtiani@ashtiantablo.com (Type of entity):(1) Construction (2) Engineering,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11548 +ASHTIAN TABLO,,,,,,,,,,,,,,,,,,,No. 3,Azadegan Blvd.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0055 (UK Statement of Reasons):Involved in the production and supply of specialist electrical equipment and materials that have a direct application in the Iranian nuclear sector. (Phone number):(1) + 98 21 88331378 81. (2) +98 2188331378 (Website):www.ashtiantablo.com (Email address):m.ashtiani@ashtiantablo.com (Type of entity):(1) Construction (2) Engineering,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11548 +ASHTIAN TABLO,,,,,,,,,,,,,,,,,,,No. 6,2nd Floor,5th Alley,Gandi Ave.,,Tehran,15176,Iran,(UK Sanctions List Ref):INU0055 (UK Statement of Reasons):Involved in the production and supply of specialist electrical equipment and materials that have a direct application in the Iranian nuclear sector. (Phone number):(1) + 98 21 88331378 81. (2) +98 2188331378 (Website):www.ashtiantablo.com (Email address):m.ashtiani@ashtiantablo.com (Type of entity):(1) Construction (2) Engineering,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11548 +ASHTIAN TABLO,,,,,,,,,,,,,,,,,,,No. 67,Ghods Mirheydari St.,Jahan Ara St,Yoosef Abad,,Tehran,1238895381,Iran,(UK Sanctions List Ref):INU0055 (UK Statement of Reasons):Involved in the production and supply of specialist electrical equipment and materials that have a direct application in the Iranian nuclear sector. (Phone number):(1) + 98 21 88331378 81. (2) +98 2188331378 (Website):www.ashtiantablo.com (Email address):m.ashtiani@ashtiantablo.com (Type of entity):(1) Construction (2) Engineering,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11548 +ASHTIAN TABLO (P.J.S),,,,,,,,,,,,,,,,,,,No. 3,Azadegan Blvd.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0055 (UK Statement of Reasons):Involved in the production and supply of specialist electrical equipment and materials that have a direct application in the Iranian nuclear sector. (Phone number):(1) + 98 21 88331378 81. (2) +98 2188331378 (Website):www.ashtiantablo.com (Email address):m.ashtiani@ashtiantablo.com (Type of entity):(1) Construction (2) Engineering,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11548 +ASHTIAN TABLO (P.J.S),,,,,,,,,,,,,,,,,,,No. 6,2nd Floor,5th Alley,Gandi Ave.,,Tehran,15176,Iran,(UK Sanctions List Ref):INU0055 (UK Statement of Reasons):Involved in the production and supply of specialist electrical equipment and materials that have a direct application in the Iranian nuclear sector. (Phone number):(1) + 98 21 88331378 81. (2) +98 2188331378 (Website):www.ashtiantablo.com (Email address):m.ashtiani@ashtiantablo.com (Type of entity):(1) Construction (2) Engineering,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11548 +ASHTIAN TABLO (P.J.S),,,,,,,,,,,,,,,,,,,No. 67,Ghods Mirheydari St.,Jahan Ara St,Yoosef Abad,,Tehran,1238895381,Iran,(UK Sanctions List Ref):INU0055 (UK Statement of Reasons):Involved in the production and supply of specialist electrical equipment and materials that have a direct application in the Iranian nuclear sector. (Phone number):(1) + 98 21 88331378 81. (2) +98 2188331378 (Website):www.ashtiantablo.com (Email address):m.ashtiani@ashtiantablo.com (Type of entity):(1) Construction (2) Engineering,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11548 +ASHTIAN TABLO CO.,,,,,,,,,,,,,,,,,,,No. 3,Azadegan Blvd.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0055 (UK Statement of Reasons):Involved in the production and supply of specialist electrical equipment and materials that have a direct application in the Iranian nuclear sector. (Phone number):(1) + 98 21 88331378 81. (2) +98 2188331378 (Website):www.ashtiantablo.com (Email address):m.ashtiani@ashtiantablo.com (Type of entity):(1) Construction (2) Engineering,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11548 +ASHTIAN TABLO CO.,,,,,,,,,,,,,,,,,,,No. 6,2nd Floor,5th Alley,Gandi Ave.,,Tehran,15176,Iran,(UK Sanctions List Ref):INU0055 (UK Statement of Reasons):Involved in the production and supply of specialist electrical equipment and materials that have a direct application in the Iranian nuclear sector. (Phone number):(1) + 98 21 88331378 81. (2) +98 2188331378 (Website):www.ashtiantablo.com (Email address):m.ashtiani@ashtiantablo.com (Type of entity):(1) Construction (2) Engineering,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11548 +ASHTIAN TABLO CO.,,,,,,,,,,,,,,,,,,,No. 67,Ghods Mirheydari St.,Jahan Ara St,Yoosef Abad,,Tehran,1238895381,Iran,(UK Sanctions List Ref):INU0055 (UK Statement of Reasons):Involved in the production and supply of specialist electrical equipment and materials that have a direct application in the Iranian nuclear sector. (Phone number):(1) + 98 21 88331378 81. (2) +98 2188331378 (Website):www.ashtiantablo.com (Email address):m.ashtiani@ashtiantablo.com (Type of entity):(1) Construction (2) Engineering,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11548 +ASHTON GLOBAL INVESTMENTS LIMITED,,,,,,,,,,,,,,,,,,,Woodbourne Hall,PO Box 3162,Road Town,,Tortola,British Virgin Islands,,,"(UK Sanctions List Ref):LIB0013 Based on British Virgin Islands (UK Statement of Reasons):Subsidiary of the Libyan Arab Foreign Investment Company, which is itself a subsidiary of the Libyan Investment Authority. (Business Reg No):1510484",Entity,Primary name,,Libya,14/04/2011,31/12/2020,31/12/2020,11767 +ASHUR AL FADHLI,Muhsin,Fadil,Ayid,,,,,,,24/04/1981,,Kuwait,Kuwait,(1) 106261543 (2) 1420529,(1) Kuwaiti (2) Kuwaiti. Issued in Kuwait. Expired on 31 March 2006.,,,,Block 4,Street 13,House No 179,,Al-Riqqa area,Kuwait City,,Kuwait,(UK Sanctions List Ref):AQD0265 (UN Ref):QDi.184 Wanted by the Kuwaiti Security Authorities. Wanted by the Saudi security forces. Fugitive as of Jul. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4484905,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/02/2005,17/02/2005,31/12/2020,8523 +ASI,Fayez,,,,,,,,,,,,,,,,,A lab technician at the Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0044 Not currently designated by the US Treasury Linked with SSRC (UK Statement of Reasons):Fayez Asi is a lab technician at the Syrian Scientific Studies and Research Centre, involved in chemical weapons proliferation and delivery. Fayez Asi has been involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name,,Syria,18/07/2017,31/12/2020,31/12/2020,13507 +ASIAN HOPE,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0109 Pursuant to paragraphs 8(d) of Security Council resolution 1718 (2006) and 12 of Security Council resolution 2270 (2016) as economic resources of designated entities. DPRK cargo vessel M/V JI SONG 8 is owned by Phyongchon Shipping & Marine and is believed to have been involved in illicit transfers of prohibited DPRK goods. Listed as asset of Phyongchon Shipping & Marine, (OFSI ID: 13641, UN Reference Number: UN Ref KPe.070) (IMO number):8503228 (Current owners):Phyongchon Shipping & Marine (Flag of ship):North Korea (Previous flags):Hong Kong (Type of ship):General Cargo / Multi Purpose (Tonnage of ship):3953 (Length of ship):105 (Year built):1985",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13660 +ASIM,Abu,,,,,,Абу Ясим,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +ASIM,Abu,,,,,,Абу Ясим,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +ASIM,Abu,Mansoor,,,,,,,,26/06/1978,Gurguray,Pakistan,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0362 (UN Ref):QDi.427 Leader of Tehrik-e Taliban Pakistan (TTP) (QDe.132). INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/07/2020,16/07/2020,31/12/2020,13901 +ASIR,Abu,,,,,,,,,00/00/1979,,Saudi Arabia,,,,,,,,,,,,Homs,,Syria,"(UK Sanctions List Ref):AQD0138 (UN Ref):QDi.361 Shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) and in charge of ISIL’s media arm. ISIL’s provincial leader for Homs, Syrian Arab Republic as of mid-2014. Dubbed as the ISIL’s “kidnapper-in-chief”. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896778. Address location Homs, Syria, location as at Sep. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13292 +ASIRI,Ibrahim,Hasan,Tali,,,,,,,19/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +ASIRI,Ibrahim,Hasan,Tali,,,,,,,18/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +ASIRI,Ibrahim,Hassan,Tali,,,,إبراهيم حسن طالع عسيري,,,19/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +ASIRI,Ibrahim,Hassan,Tali,,,,إبراهيم حسن طالع عسيري,,,18/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +'ASIRI,Ibrahim,Hasan,Tali'A,,,,,,,19/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +'ASIRI,Ibrahim,Hasan,Tali'A,,,,,,,18/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +ASKER-ZADE,Nailya,Vagif,Gizi,,,,Наиля Аскер-заде,,,13/12/1987,Baku,Azerbaijan,(1) Russia (2) Azerbaijan,,,,,,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1376 (UK Statement of Reasons):Nailya ASKER-ZADE is a television journalist and interviewer at the All-Russia State Television and Radio Broadcasting Company (VGTRK) and widely understood to be in a long-term relationship with Andrei Kostin, Chairman of VTB Bank. As such, she is associated with two entities (VGTRK and Kostin), both of which is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business as a Government of Russia-affiliated entity. (Gender):Female",Individual,Primary name,,Russia,04/05/2022,04/05/2022,04/05/2022,15333 +ASL,Sardar,Gholamhossein,Mohammadi,,,,سردار غلامحسین محمدی اصل,,Persian,,,,Iran,,,,,IRGC Commander Ardabil Province,,,,,,,,,"(UK Sanctions List Ref):IHR0111 (UK Statement of Reasons):Sardar Gholamhossein Mohammadi ASL is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and the right to freedom of expression and peaceful assembly in Iran through his role as senior commander of the Islamic Revolutionary Guards Corps (IRGC) in Ardabil Province and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15631 +ASLAN,Aous,,,,,,,,,00/00/1958,,,,,,,,Head of Battalion in Republican Army and key advisor to President Assad,,,,,,,,,(UK Sanctions List Ref):SYR0021 (UK Statement of Reasons):Head of Battalion in the Republican Guard. Close to Maher al-Assad and President al-Assad. Involved in the crackdown on the civilian population across Syria. (Gender):Male,Individual,Primary name,,Syria,15/11/2011,31/12/2020,31/12/2020,12213 +ASSAD,Asma,,,,,,,,,11/08/1975,London,United Kingdom,(1) Syria. (2) United Kingdom,707512830,Expires 22 Sept 2020,,,Wife of President Bashar Al Asad,,,,,,,,,"(UK Sanctions List Ref):SYR0022 Maiden name: Al Akhras (UK Statement of Reasons):Member of the Assad family and closely connected to key regime figures; wife of President Bashar Al-Assad. Given the close personal relationship and intrinsic financial relationship to the Syrian President, Bashar Al-Assad, she benefits from and is associated with the Syrian regime. (Gender):Female",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,01/02/2021,12634 +ASSAD,Asma,Fawaz,,,,,,,,11/08/1975,London,United Kingdom,(1) Syria. (2) United Kingdom,707512830,Expires 22 Sept 2020,,,Wife of President Bashar Al Asad,,,,,,,,,"(UK Sanctions List Ref):SYR0022 Maiden name: Al Akhras (UK Statement of Reasons):Member of the Assad family and closely connected to key regime figures; wife of President Bashar Al-Assad. Given the close personal relationship and intrinsic financial relationship to the Syrian President, Bashar Al-Assad, she benefits from and is associated with the Syrian regime. (Gender):Female",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,01/02/2021,12634 +AS-SAHNI,Adnan,,,,,,,,,00/00/1955,Damascus,Syria,,,,,,Former Minister for Industry,,,,,,,,,"(UK Sanctions List Ref):SYR0146 (UK Statement of Reasons):Former Minister of Industry within the Assad regime appointed in 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,28/02/2012,31/12/2020,16/06/2022,12508 +AS-SAHNI,Adnan,Abu,,,,,,,,00/00/1955,Damascus,Syria,,,,,,Former Minister for Industry,,,,,,,,,"(UK Sanctions List Ref):SYR0146 (UK Statement of Reasons):Former Minister of Industry within the Assad regime appointed in 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,28/02/2012,31/12/2020,16/06/2022,12508 +ASSAN,Jameel,,,,,,,,,07/07/1953,Qusayr Homs,Syria,,,,,,Head of Syrian Air Force Intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0111 (UK Statement of Reasons):Officer of the rank of Major-General in the Syrian Air Force in post after May 2011. Head of Syrian Air Force Intelligence in post after May 2011. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11906 +ASSAN,Jamieel,,,,,,,,,07/07/1953,Qusayr Homs,Syria,,,,,,Head of Syrian Air Force Intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0111 (UK Statement of Reasons):Officer of the rank of Major-General in the Syrian Air Force in post after May 2011. Head of Syrian Air Force Intelligence in post after May 2011. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11906 +ASSAN,Jamil,,,,,,,,,07/07/1953,Qusayr Homs,Syria,,,,,,Head of Syrian Air Force Intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0111 (UK Statement of Reasons):Officer of the rank of Major-General in the Syrian Air Force in post after May 2011. Head of Syrian Air Force Intelligence in post after May 2011. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11906 +ASSEMBLY FOR THE LIBERATION OF SYRIA,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +ASSEMBLY FOR THE LIBERATION OF SYRIA,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +ASSEMBLY FOR THE LIBERATION OF THE LEVANT,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +ASSEMBLY FOR THE LIBERATION OF THE LEVANT,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +ASSI,Bashar,Mohammad,,,,,,,,00/00/1977,,,Syria,,,,,Chairman of the Board of Directors of ‘Aman Damascus’. Founding partner of Fly Aman Limited Liability airline.,,,,,,,,,"(UK Sanctions List Ref):SYR0263 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including his roles as founding partner of Fly Aman airline and Chairman of the Board of Directors of ‘Aman Damascus’; a joint venture involved in the development of Marota City, a regime-backed luxury residential and commercial development. Assi benefits from and/or supports the regime through his position as Chairman of the Board of Directors of ‘Aman Damascus’. (Gender):Male",Individual,Primary name,,Syria,22/01/2019,31/12/2020,31/12/2020,13759 +ASSIRI,Ibrahim,Hassan,Tali,,,,,,,19/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +ASSIRI,Ibrahim,Hassan,Tali,,,,,,,18/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +ASSOCIATION FOR CITIZENS RIGHTS AND RESISTANCE TO LIES,,,,,,,,,,,,,,,,,,,30a Put Mladih Muslimana (ex Pavla Lukaca Street),,,,,Sarajevo,71 000,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION FOR CITIZENS RIGHTS AND RESISTANCE TO LIES,,,,,,,,,,,,,,,,,,,42 Muhameda Hadzijahica,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION FOR CITIZENS RIGHTS AND RESISTANCE TO LIES,,,,,,,,,,,,,,,,,,,70 and 53 Strosmajerova Street,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION FOR CITIZENS RIGHTS AND RESISTANCE TO LIES,,,,,,,,,,,,,,,,,,,72 ul. Strossmajerova,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION FOR CITIZENS RIGHTS AND RESISTANCE TO LIES,,,,,,,,,,,,,,,,,,,Zlatnih Ljiljana Street,,,,,Zavidovici,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION FOR EDUCATION CULTURAL AND TO CREATE SOCIETY -SIRAT,,,,,,,,,,,,,,,,,,,30a Put Mladih Muslimana (ex Pavla Lukaca Street),,,,,Sarajevo,71 000,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION FOR EDUCATION CULTURAL AND TO CREATE SOCIETY -SIRAT,,,,,,,,,,,,,,,,,,,42 Muhameda Hadzijahica,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION FOR EDUCATION CULTURAL AND TO CREATE SOCIETY -SIRAT,,,,,,,,,,,,,,,,,,,70 and 53 Strosmajerova Street,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION FOR EDUCATION CULTURAL AND TO CREATE SOCIETY -SIRAT,,,,,,,,,,,,,,,,,,,72 ul. Strossmajerova,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION FOR EDUCATION CULTURAL AND TO CREATE SOCIETY -SIRAT,,,,,,,,,,,,,,,,,,,Zlatnih Ljiljana Street,,,,,Zavidovici,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION FOR EDUCATION CULTURE AND BUILDING SOCIETY-SIRAT,,,,,,,,,,,,,,,,,,,30a Put Mladih Muslimana (ex Pavla Lukaca Street),,,,,Sarajevo,71 000,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION FOR EDUCATION CULTURE AND BUILDING SOCIETY-SIRAT,,,,,,,,,,,,,,,,,,,42 Muhameda Hadzijahica,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION FOR EDUCATION CULTURE AND BUILDING SOCIETY-SIRAT,,,,,,,,,,,,,,,,,,,70 and 53 Strosmajerova Street,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION FOR EDUCATION CULTURE AND BUILDING SOCIETY-SIRAT,,,,,,,,,,,,,,,,,,,72 ul. Strossmajerova,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION FOR EDUCATION CULTURE AND BUILDING SOCIETY-SIRAT,,,,,,,,,,,,,,,,,,,Zlatnih Ljiljana Street,,,,,Zavidovici,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION OF CITIZENS FOR THE SUPPORT OF TRUTH AND SUPRESSION OF LIES,,,,,,,,,,,,,,,,,,,30a Put Mladih Muslimana (ex Pavla Lukaca Street),,,,,Sarajevo,71 000,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION OF CITIZENS FOR THE SUPPORT OF TRUTH AND SUPRESSION OF LIES,,,,,,,,,,,,,,,,,,,42 Muhameda Hadzijahica,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION OF CITIZENS FOR THE SUPPORT OF TRUTH AND SUPRESSION OF LIES,,,,,,,,,,,,,,,,,,,70 and 53 Strosmajerova Street,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION OF CITIZENS FOR THE SUPPORT OF TRUTH AND SUPRESSION OF LIES,,,,,,,,,,,,,,,,,,,72 ul. Strossmajerova,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASSOCIATION OF CITIZENS FOR THE SUPPORT OF TRUTH AND SUPRESSION OF LIES,,,,,,,,,,,,,,,,,,,Zlatnih Ljiljana Street,,,,,Zavidovici,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ASTREIKA,Alexander,Viacheslavovich,,,,,"АСТРЭЙКА , Аляксандр Вячаслававіч",,,22/12/1971,Kapyl,Former USSR Currently Belarus,Belarus,,,,,(1) Former Head of the Department of Internal Affairs of Brest Oblast Executive Committee (2) Head of the Internal Affairs Directorate of the Minsk Oblast Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0021 (UK Statement of Reasons):Aliaksandr Astreika was the former Head of the Department of Internal Affairs of Brest Oblast Executive Committee and Major General of Police. In his former role as Department Head, Astreika was responsible for the actions of police officers in Brest, including those of the Criminal Police and Public Security Police (which includes the OMON riot police unit). Astreika is therefore responsible for the serious human rights violations carried out by police officers in Brest following the election of 9 August 2020, in particular arbitrary arrests and ill‐treatment of peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13943 +ASTREIKA,Aliaksandr,Viachaslavavich,,,,,"АСТРЕЙКО, Александр Вячеславович",,,22/12/1971,Kapyl,Former USSR Currently Belarus,Belarus,,,,,(1) Former Head of the Department of Internal Affairs of Brest Oblast Executive Committee (2) Head of the Internal Affairs Directorate of the Minsk Oblast Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0021 (UK Statement of Reasons):Aliaksandr Astreika was the former Head of the Department of Internal Affairs of Brest Oblast Executive Committee and Major General of Police. In his former role as Department Head, Astreika was responsible for the actions of police officers in Brest, including those of the Criminal Police and Public Security Police (which includes the OMON riot police unit). Astreika is therefore responsible for the serious human rights violations carried out by police officers in Brest following the election of 9 August 2020, in particular arbitrary arrests and ill‐treatment of peaceful demonstrators. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13943 +ASTREIKO,Alexander,Viacheslavovich,,,,,,,,22/12/1971,Kapyl,Former USSR Currently Belarus,Belarus,,,,,(1) Former Head of the Department of Internal Affairs of Brest Oblast Executive Committee (2) Head of the Internal Affairs Directorate of the Minsk Oblast Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0021 (UK Statement of Reasons):Aliaksandr Astreika was the former Head of the Department of Internal Affairs of Brest Oblast Executive Committee and Major General of Police. In his former role as Department Head, Astreika was responsible for the actions of police officers in Brest, including those of the Criminal Police and Public Security Police (which includes the OMON riot police unit). Astreika is therefore responsible for the serious human rights violations carried out by police officers in Brest following the election of 9 August 2020, in particular arbitrary arrests and ill‐treatment of peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13943 +ASTREIKO,Aliaksandr,Viachaslavavich,,,,,,,,22/12/1971,Kapyl,Former USSR Currently Belarus,Belarus,,,,,(1) Former Head of the Department of Internal Affairs of Brest Oblast Executive Committee (2) Head of the Internal Affairs Directorate of the Minsk Oblast Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0021 (UK Statement of Reasons):Aliaksandr Astreika was the former Head of the Department of Internal Affairs of Brest Oblast Executive Committee and Major General of Police. In his former role as Department Head, Astreika was responsible for the actions of police officers in Brest, including those of the Criminal Police and Public Security Police (which includes the OMON riot police unit). Astreika is therefore responsible for the serious human rights violations carried out by police officers in Brest following the election of 9 August 2020, in particular arbitrary arrests and ill‐treatment of peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13943 +ATABEKAU,Khazalbek,Bakhtibekavich,,,,,,,,18/03/1967,,,Belarus,,,,,Deputy Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0010 and GHR0053 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Colonel Khazalbek Atabekov is one of four Deputy Commanders of the Internal Troops of the Ministry of Internal Affairs of Belarus. In his role as Deputy Commander, he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13921 +ATABEKAU,Khazalbek,Bakhtibekavich,,,,,,,,18/03/1967,,,Belarus,,,,,Deputy Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0010 and GHR0053 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Colonel Khazalbek Atabekov is one of four Deputy Commanders of the Internal Troops of the Ministry of Internal Affairs of Belarus. In his role as Deputy Commander, he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13921 +ATABEKAU,Khazalbek,Bakhtibekovich,,,,,,,,18/03/1967,,,Belarus,,,,,Deputy Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0010 and GHR0053 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Colonel Khazalbek Atabekov is one of four Deputy Commanders of the Internal Troops of the Ministry of Internal Affairs of Belarus. In his role as Deputy Commander, he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13921 +ATABEKAU,Khazalbek,Bakhtibekovich,,,,,,,,18/03/1967,,,Belarus,,,,,Deputy Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0010 and GHR0053 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Colonel Khazalbek Atabekov is one of four Deputy Commanders of the Internal Troops of the Ministry of Internal Affairs of Belarus. In his role as Deputy Commander, he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13921 +ATABEKAU,Khazalbek,Baktibekavich,,,,,,,,18/03/1967,,,Belarus,,,,,Deputy Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0010 and GHR0053 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Colonel Khazalbek Atabekov is one of four Deputy Commanders of the Internal Troops of the Ministry of Internal Affairs of Belarus. In his role as Deputy Commander, he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13921 +ATABEKAU,Khazalbek,Baktibekavich,,,,,,,,18/03/1967,,,Belarus,,,,,Deputy Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0010 and GHR0053 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Colonel Khazalbek Atabekov is one of four Deputy Commanders of the Internal Troops of the Ministry of Internal Affairs of Belarus. In his role as Deputy Commander, he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13921 +ATABEKOV,Khazalbek,BAKHTIBEKOVICH,,,,,"АТАБЕКОВ, Хазалбек Бахтибекович",,,18/03/1967,,,Belarus,,,,,Deputy Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0010 and GHR0053 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Colonel Khazalbek Atabekov is one of four Deputy Commanders of the Internal Troops of the Ministry of Internal Affairs of Belarus. In his role as Deputy Commander, he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13921 +ATABEKOV,Khazalbek,BAKHTIBEKOVICH,,,,,"АТАБЕКОВ, Хазалбек Бахтибекович",,,18/03/1967,,,Belarus,,,,,Deputy Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0010 and GHR0053 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Colonel Khazalbek Atabekov is one of four Deputy Commanders of the Internal Troops of the Ministry of Internal Affairs of Belarus. In his role as Deputy Commander, he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13921 +ATABEKOV,Khazalbek,Bakhtibekavich,,,,,,,,18/03/1967,,,Belarus,,,,,Deputy Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0010 and GHR0053 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Colonel Khazalbek Atabekov is one of four Deputy Commanders of the Internal Troops of the Ministry of Internal Affairs of Belarus. In his role as Deputy Commander, he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13921 +ATABEKOV,Khazalbek,Bakhtibekavich,,,,,,,,18/03/1967,,,Belarus,,,,,Deputy Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0010 and GHR0053 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Colonel Khazalbek Atabekov is one of four Deputy Commanders of the Internal Troops of the Ministry of Internal Affairs of Belarus. In his role as Deputy Commander, he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13921 +ATABEKOV,Khazalbek,Baktibekavich,,,,,,,,18/03/1967,,,Belarus,,,,,Deputy Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0010 and GHR0053 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Colonel Khazalbek Atabekov is one of four Deputy Commanders of the Internal Troops of the Ministry of Internal Affairs of Belarus. In his role as Deputy Commander, he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13921 +ATABEKOV,Khazalbek,Baktibekavich,,,,,,,,18/03/1967,,,Belarus,,,,,Deputy Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0010 and GHR0053 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Colonel Khazalbek Atabekov is one of four Deputy Commanders of the Internal Troops of the Ministry of Internal Affairs of Belarus. In his role as Deputy Commander, he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13921 +ATABIEV,ISLAM,SEIT-UMAROVICH,,,,,Ислам Сеит-Умарович Атабиев,,,29/09/1983,"Ust-Dzheguta, Republic of Karachayevo- Cherkessia",Russia,Russia,620169661,Russian foreign travel passport number,9103314932,Issued on 15 Aug. 2003 (issued by Department of the Federal Migration Service of the Russian Federation for the Republic Karachayevo-Cherkessia),,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0206 (UN Ref):QDi.364 As at Aug. 2015, emir of Russian-speaking militants of the Islamic State of Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Controls the Syrian Arab Republic cities of Al Dana and Idlib as an ISIL chief. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899821",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,11/02/2022,13299 +ATABIEV,ISLAM,SEIT-UMAROVICH,,,,,Ислам Сеит-Умарович Атабиев,,,29/09/1983,"Ust-Dzheguta, Republic of Karachayevo- Cherkessia",Russia,Russia,620169661,Russian foreign travel passport number,9103314932,Issued on 15 Aug. 2003 (issued by Department of the Federal Migration Service of the Russian Federation for the Republic Karachayevo-Cherkessia),,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0206 (UN Ref):QDi.364 As at Aug. 2015, emir of Russian-speaking militants of the Islamic State of Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Controls the Syrian Arab Republic cities of Al Dana and Idlib as an ISIL chief. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899821",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,11/02/2022,13299 +ATABIEV,ISLAM,SEIT-UMAROVICH,,,,,Ислам Сеит-Умарович Атабиев,,,29/09/1983,"Ust-Dzheguta, Republic of Karachayevo- Cherkessia",Russia,Russia,620169661,Russian foreign travel passport number,9103314932,Issued on 15 Aug. 2003 (issued by Department of the Federal Migration Service of the Russian Federation for the Republic Karachayevo-Cherkessia),,Moscovskiy Microrayon 6,App. 96,Ust- Dzheguta,Republic of Karachayevo-Cherkessia,,,,Russia,"(UK Sanctions List Ref):AQD0206 (UN Ref):QDi.364 As at Aug. 2015, emir of Russian-speaking militants of the Islamic State of Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Controls the Syrian Arab Republic cities of Al Dana and Idlib as an ISIL chief. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899821",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,11/02/2022,13299 +ATIQULLAH,,,,,,,,,,00/00/1962,"(1) Tirin Kot District, Uruzgan Province (2) Khwaja Malik village, Arghandab District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,"(1) Director of Foreign Relations, Kandahar Province under the Taliban regime (2) Director of Public Works, Kandahar Province under the Taliban regime (3) First Deputy Minister of Agriculture (4) Deputy Minister of Public Works under the Taliban regime",,,,,,,,,"(UK Sanctions List Ref):AFG0054 (UN Ref):TAi.070 Originally from Uruzgan, settled and lived later in Kandahar. Was a member of Taliban Supreme Council Political Commission in 2010. No specific role in the Taliban movement, active as a businessman in his personal capacity as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Alizai tribe. Brother of Abdul Jalil Haqqani Wali Mohammad (TAi.034). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7036 +AT-TRINIDADI,Abu,Sa'd,,,,,,,,22/02/1986,Mount Hope,Trinidad and Tobago,Trinidad and Tobago,(1) TA959547 (2) T1071839,(1) Trinidad and Tobago number. Issued on 19 Nov. 2013. Issued by Immigration Division of Trinidad and Tobago. Expiration date 18 Nov. 2018. (2) Trinidad and Tobago number. Issued on 8 Nov. 2004. Issued by Immigration Division of Trinidad and Tobago. Expiration date 7 Nov. 2014,(1) 19860222007 (2) B394445 (3) 892124B,(1) Trinidad and Tobago National Identification Card. Issued on 16 Jun. 2011. Expiration date 16 Jun. 2016. (2) Trinidad and Tobago Birth Certificate. Issued on 23 Jan. 2007 (3) Trinidad and Tobago Driver's Permit. Issued on 30 Aug. 2007. Expiration date 30 Aug. 2010,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0316 (UN Ref):QDi.410 English language propagandist for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115). Wanted in Trinidad and Tobago for possession of ammunition and firearms and receiving stolen goods. Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6123498. Syria (as at May 2014) (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/08/2017,18/08/2017,31/12/2020,13539 +AT-TRINIDADI,Abu,Sa'd,,,,,,,,22/02/1986,Mount Hope,Trinidad and Tobago,Trinidad and Tobago,(1) TA959547 (2) T1071839,(1) Trinidad and Tobago number. Issued on 19 Nov. 2013. Issued by Immigration Division of Trinidad and Tobago. Expiration date 18 Nov. 2018. (2) Trinidad and Tobago number. Issued on 8 Nov. 2004. Issued by Immigration Division of Trinidad and Tobago. Expiration date 7 Nov. 2014,(1) 19860222007 (2) B394445 (3) 892124B,(1) Trinidad and Tobago National Identification Card. Issued on 16 Jun. 2011. Expiration date 16 Jun. 2016. (2) Trinidad and Tobago Birth Certificate. Issued on 23 Jan. 2007 (3) Trinidad and Tobago Driver's Permit. Issued on 30 Aug. 2007. Expiration date 30 Aug. 2010,,349 Dass Branch Trace,Dass Trace,Enterprise Chaguanas,,,,,Trinidad and Tobago,"(UK Sanctions List Ref):AQD0316 (UN Ref):QDi.410 English language propagandist for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115). Wanted in Trinidad and Tobago for possession of ammunition and firearms and receiving stolen goods. Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6123498. Syria (as at May 2014) (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/08/2017,18/08/2017,31/12/2020,13539 +AT-TRINIDADI,Abu,Sa'd,,,,,,,,22/02/1986,Mount Hope,Trinidad and Tobago,Trinidad and Tobago,(1) TA959547 (2) T1071839,(1) Trinidad and Tobago number. Issued on 19 Nov. 2013. Issued by Immigration Division of Trinidad and Tobago. Expiration date 18 Nov. 2018. (2) Trinidad and Tobago number. Issued on 8 Nov. 2004. Issued by Immigration Division of Trinidad and Tobago. Expiration date 7 Nov. 2014,(1) 19860222007 (2) B394445 (3) 892124B,(1) Trinidad and Tobago National Identification Card. Issued on 16 Jun. 2011. Expiration date 16 Jun. 2016. (2) Trinidad and Tobago Birth Certificate. Issued on 23 Jan. 2007 (3) Trinidad and Tobago Driver's Permit. Issued on 30 Aug. 2007. Expiration date 30 Aug. 2010,,LP41 Ballisier Road,Smith Field Lands,Wallerfield,County of St. George East,,,,Trinidad and Tobago,"(UK Sanctions List Ref):AQD0316 (UN Ref):QDi.410 English language propagandist for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115). Wanted in Trinidad and Tobago for possession of ammunition and firearms and receiving stolen goods. Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6123498. Syria (as at May 2014) (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/08/2017,18/08/2017,31/12/2020,13539 +AT-TRINIDADI,Abu,Sa'd,,,,,,,,22/02/1986,Mount Hope,Trinidad and Tobago,Trinidad and Tobago,(1) TA959547 (2) T1071839,(1) Trinidad and Tobago number. Issued on 19 Nov. 2013. Issued by Immigration Division of Trinidad and Tobago. Expiration date 18 Nov. 2018. (2) Trinidad and Tobago number. Issued on 8 Nov. 2004. Issued by Immigration Division of Trinidad and Tobago. Expiration date 7 Nov. 2014,(1) 19860222007 (2) B394445 (3) 892124B,(1) Trinidad and Tobago National Identification Card. Issued on 16 Jun. 2011. Expiration date 16 Jun. 2016. (2) Trinidad and Tobago Birth Certificate. Issued on 23 Jan. 2007 (3) Trinidad and Tobago Driver's Permit. Issued on 30 Aug. 2007. Expiration date 30 Aug. 2010,,Reyhanli,Hatay,,,,,,Turkey,"(UK Sanctions List Ref):AQD0316 (UN Ref):QDi.410 English language propagandist for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115). Wanted in Trinidad and Tobago for possession of ammunition and firearms and receiving stolen goods. Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6123498. Syria (as at May 2014) (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/08/2017,18/08/2017,31/12/2020,13539 +AULAQI,Anwar,Nasser,,,,,,,,21/04/1971,"Las Cruces, New Mexico",United States,(1) United States. (2) Yemen,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0144 (UN Ref):QDi.283 Confirmed to have died on 30 Sep. 2011 in Yemen. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621291,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/07/2010,20/07/2010,12/01/2022,11208 +AULAQI,Anwar,Nasser,,,,,,,,22/04/1971,"Las Cruces, New Mexico",United States,(1) United States. (2) Yemen,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0144 (UN Ref):QDi.283 Confirmed to have died on 30 Sep. 2011 in Yemen. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621291,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/07/2010,20/07/2010,12/01/2022,11208 +AULAQI,Anwar,Nasser,Abdulla,,,,,,,21/04/1971,"Las Cruces, New Mexico",United States,(1) United States. (2) Yemen,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0144 (UN Ref):QDi.283 Confirmed to have died on 30 Sep. 2011 in Yemen. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621291,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/07/2010,20/07/2010,12/01/2022,11208 +AULAQI,Anwar,Nasser,Abdulla,,,,,,,22/04/1971,"Las Cruces, New Mexico",United States,(1) United States. (2) Yemen,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0144 (UN Ref):QDi.283 Confirmed to have died on 30 Sep. 2011 in Yemen. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621291,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/07/2010,20/07/2010,12/01/2022,11208 +AULAQI,Anwar,Nasser,Abdullah,,,,,,,21/04/1971,"Las Cruces, New Mexico",United States,(1) United States. (2) Yemen,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0144 (UN Ref):QDi.283 Confirmed to have died on 30 Sep. 2011 in Yemen. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621291,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/07/2010,20/07/2010,12/01/2022,11208 +AULAQI,Anwar,Nasser,Abdullah,,,,,,,22/04/1971,"Las Cruces, New Mexico",United States,(1) United States. (2) Yemen,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0144 (UN Ref):QDi.283 Confirmed to have died on 30 Sep. 2011 in Yemen. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621291,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/07/2010,20/07/2010,12/01/2022,11208 +AUNG,Aung,,,,,Brigadier General,,,,,,,Myanmar,,,BC 23750,military identification,Commander of the 33rd Light Infantry Division of the Myanmar Armed Forces (Tatmadaw),,,,,,Mandalay,,,"(UK Sanctions List Ref):MYA0006 (UK Statement of Reasons):Brigadier General Aung Aung, as Commander of the 33rd Light Infantry Division of the Myanmar Army is responsible for serious human rights violations committed against the Rohingya population in Rakhine state. These include unlawful killings and systematic burning of Rohingya houses and buildings. (Gender):Male",Individual,Primary name,,Myanmar,26/06/2018,29/04/2021,11/11/2022,13686 +AURAMENKA,Aleksey,Nikolaevich,,,,,Аляксей Мікалаевіч Аўраменка,,,11/05/1977,Minsk,Belarus,Belarus,,,,,Minister for Transport and Communication,,,,,,,,,"(UK Sanctions List Ref):BEL0100 (UK Statement of Reasons):In his position as Minister for Transport and Communication of the Republic of Belarus, Aliaksei Auramenka is responsible for the state management of civil aviation and supervision of air traffic control. He is therefore responsible for the forced redirection and landing of Ryanair passenger flight FR4978 at Minsk airport, without proper justification, on 23 May 2021. In so doing, Auramenka acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian Ministry of Defence. These politically motivated decisions were aimed at detaining and arresting the opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega and are a form of repression against civil society and democratic opposition in Belarus. Therefore, Aliaksei Auramenka is responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14118 +AURAMENKA,Alexey,Nikolaevich,,,,,,,,11/05/1977,Minsk,Belarus,Belarus,,,,,Minister for Transport and Communication,,,,,,,,,"(UK Sanctions List Ref):BEL0100 (UK Statement of Reasons):In his position as Minister for Transport and Communication of the Republic of Belarus, Aliaksei Auramenka is responsible for the state management of civil aviation and supervision of air traffic control. He is therefore responsible for the forced redirection and landing of Ryanair passenger flight FR4978 at Minsk airport, without proper justification, on 23 May 2021. In so doing, Auramenka acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian Ministry of Defence. These politically motivated decisions were aimed at detaining and arresting the opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega and are a form of repression against civil society and democratic opposition in Belarus. Therefore, Aliaksei Auramenka is responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14118 +AURAMENKA,Aliaksei,Mikalaevich,,,,,Авраменко Алексей Никалаевич,,,11/05/1977,Minsk,Belarus,Belarus,,,,,Minister for Transport and Communication,,,,,,,,,"(UK Sanctions List Ref):BEL0100 (UK Statement of Reasons):In his position as Minister for Transport and Communication of the Republic of Belarus, Aliaksei Auramenka is responsible for the state management of civil aviation and supervision of air traffic control. He is therefore responsible for the forced redirection and landing of Ryanair passenger flight FR4978 at Minsk airport, without proper justification, on 23 May 2021. In so doing, Auramenka acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian Ministry of Defence. These politically motivated decisions were aimed at detaining and arresting the opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega and are a form of repression against civil society and democratic opposition in Belarus. Therefore, Aliaksei Auramenka is responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name,,Belarus,21/06/2021,21/06/2021,21/06/2021,14118 +AUTOMASION RAAD KHAVAR MIANEH,,,,,,,,,,,,,,,,,,,Unit 1,No 35,Bouali Sina Sharghi,Chehel Sotoun Street,Fatemi Square,Tehran,,Iran,"(UK Sanctions List Ref):INU0103 (UK Statement of Reasons):A company involved in procurement of inverters for Iran's uranium enrichment programme. (Phone number):+98 21 88957781 (Website):www.raadiran.com, www.raadiran.ir (Email address):info@raadiran.ir. tehran.raad@yahoo.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11544 +AUTOMATION RAAD KHAVAR MIANEH,,,,,,,,,,,,,,,,,,,Unit 1,No 35,Bouali Sina Sharghi,Chehel Sotoun Street,Fatemi Square,Tehran,,Iran,"(UK Sanctions List Ref):INU0103 (UK Statement of Reasons):A company involved in procurement of inverters for Iran's uranium enrichment programme. (Phone number):+98 21 88957781 (Website):www.raadiran.com, www.raadiran.ir (Email address):info@raadiran.ir. tehran.raad@yahoo.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11544 +AVAEE,Alireza,,,,,,,,,20/05/1956,Dezful,Iran,,,,,,Former Justice Minister (Aug 2017 – Aug 2021),,,,,,,,,"(UK Sanctions List Ref):IHR0019 (UK Statement of Reasons):Former Minister of Justice. Former Director of the special investigations office. Until July 2016 deputy Minister of Interior and head of the Public register. Advisor to the Disciplinary Court for Judges since April 2014. Former President of the Tehran Judiciary. As President of the Tehran Judiciary he has been responsible for human rights violations, arbitrary arrests, denials of prisoners' rights and a high number of executions. (Gender):Male",Individual,AKA,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12177 +AVAEE,Ali-Reza,Seyyed,,,,,سید علیرضا آوایی‎,,,20/05/1956,Dezful,Iran,,,,,,Former Justice Minister (Aug 2017 – Aug 2021),,,,,,,,,"(UK Sanctions List Ref):IHR0019 (UK Statement of Reasons):Former Minister of Justice. Former Director of the special investigations office. Until July 2016 deputy Minister of Interior and head of the Public register. Advisor to the Disciplinary Court for Judges since April 2014. Former President of the Tehran Judiciary. As President of the Tehran Judiciary he has been responsible for human rights violations, arbitrary arrests, denials of prisoners' rights and a high number of executions. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12177 +AVAEE,Seyyed,Alireza,,,,,,,,20/05/1956,Dezful,Iran,,,,,,Former Justice Minister (Aug 2017 – Aug 2021),,,,,,,,,"(UK Sanctions List Ref):IHR0019 (UK Statement of Reasons):Former Minister of Justice. Former Director of the special investigations office. Until July 2016 deputy Minister of Interior and head of the Public register. Advisor to the Disciplinary Court for Judges since April 2014. Former President of the Tehran Judiciary. As President of the Tehran Judiciary he has been responsible for human rights violations, arbitrary arrests, denials of prisoners' rights and a high number of executions. (Gender):Male",Individual,AKA,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12177 +AVAEE,Seyyed,Ali-Reza,,,,,,,,20/05/1956,Dezful,Iran,,,,,,Former Justice Minister (Aug 2017 – Aug 2021),,,,,,,,,"(UK Sanctions List Ref):IHR0019 (UK Statement of Reasons):Former Minister of Justice. Former Director of the special investigations office. Until July 2016 deputy Minister of Interior and head of the Public register. Advisor to the Disciplinary Court for Judges since April 2014. Former President of the Tehran Judiciary. As President of the Tehran Judiciary he has been responsible for human rights violations, arbitrary arrests, denials of prisoners' rights and a high number of executions. (Gender):Male",Individual,AKA,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12177 +AVAEI,Alireza,,,,,,,,,20/05/1956,Dezful,Iran,,,,,,Former Justice Minister (Aug 2017 – Aug 2021),,,,,,,,,"(UK Sanctions List Ref):IHR0019 (UK Statement of Reasons):Former Minister of Justice. Former Director of the special investigations office. Until July 2016 deputy Minister of Interior and head of the Public register. Advisor to the Disciplinary Court for Judges since April 2014. Former President of the Tehran Judiciary. As President of the Tehran Judiciary he has been responsible for human rights violations, arbitrary arrests, denials of prisoners' rights and a high number of executions. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12177 +AVAEI,Ali-Reza,Seyyed,,,,,,,,20/05/1956,Dezful,Iran,,,,,,Former Justice Minister (Aug 2017 – Aug 2021),,,,,,,,,"(UK Sanctions List Ref):IHR0019 (UK Statement of Reasons):Former Minister of Justice. Former Director of the special investigations office. Until July 2016 deputy Minister of Interior and head of the Public register. Advisor to the Disciplinary Court for Judges since April 2014. Former President of the Tehran Judiciary. As President of the Tehran Judiciary he has been responsible for human rights violations, arbitrary arrests, denials of prisoners' rights and a high number of executions. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12177 +AVAEI,Seyyed,Alireza,,,,,,,,20/05/1956,Dezful,Iran,,,,,,Former Justice Minister (Aug 2017 – Aug 2021),,,,,,,,,"(UK Sanctions List Ref):IHR0019 (UK Statement of Reasons):Former Minister of Justice. Former Director of the special investigations office. Until July 2016 deputy Minister of Interior and head of the Public register. Advisor to the Disciplinary Court for Judges since April 2014. Former President of the Tehran Judiciary. As President of the Tehran Judiciary he has been responsible for human rights violations, arbitrary arrests, denials of prisoners' rights and a high number of executions. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12177 +AVAEI,Seyyed,Ali-Reza,,,,,,,,20/05/1956,Dezful,Iran,,,,,,Former Justice Minister (Aug 2017 – Aug 2021),,,,,,,,,"(UK Sanctions List Ref):IHR0019 (UK Statement of Reasons):Former Minister of Justice. Former Director of the special investigations office. Until July 2016 deputy Minister of Interior and head of the Public register. Advisor to the Disciplinary Court for Judges since April 2014. Former President of the Tehran Judiciary. As President of the Tehran Judiciary he has been responsible for human rights violations, arbitrary arrests, denials of prisoners' rights and a high number of executions. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12177 +AVANGARD JSC,,,,,,,ОАО Авангард,Cyrillic,Russian,,,,,,,,,,"Premises 48H, Liter A",72 Propekt Kondrat'evskii,,,,Saint Petersburg,195271,Russia,"(UK Sanctions List Ref):RUS1430 OGRN: 1027802483070 (UK Statement of Reasons):Avangard JSC is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because it obtains a benefit from or supports the Government of Russia by carrying on business as a Government of Russia-affiliated entity. Avangard JSC is a Government of Russia-affiliated entity as it is majority-owned by the Government of Russia. (Website):http://www.avangard-plastik.ru/en/ (Email address):info@avangard-plastik.ru (Type of entity):Joint Stock Company (Parent company):JSC Military Industrial Corporation NPO Mashinostroyenia (Business Reg No):Tax Identification Number: INN: 7804001110",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15375 +AVANGARD JSC,,,,,,,ОАО Авангард,Cyrillic,Russian,,,,,,,,,,"78, Oktyabrskaya st",Safonovo,,,,Smolyensk,215500,Russia,"(UK Sanctions List Ref):RUS1430 OGRN: 1027802483070 (UK Statement of Reasons):Avangard JSC is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because it obtains a benefit from or supports the Government of Russia by carrying on business as a Government of Russia-affiliated entity. Avangard JSC is a Government of Russia-affiliated entity as it is majority-owned by the Government of Russia. (Website):http://www.avangard-plastik.ru/en/ (Email address):info@avangard-plastik.ru (Type of entity):Joint Stock Company (Parent company):JSC Military Industrial Corporation NPO Mashinostroyenia (Business Reg No):Tax Identification Number: INN: 7804001110",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15375 +AVAYI,Alireza,,,,,,,,,20/05/1956,Dezful,Iran,,,,,,Former Justice Minister (Aug 2017 – Aug 2021),,,,,,,,,"(UK Sanctions List Ref):IHR0019 (UK Statement of Reasons):Former Minister of Justice. Former Director of the special investigations office. Until July 2016 deputy Minister of Interior and head of the Public register. Advisor to the Disciplinary Court for Judges since April 2014. Former President of the Tehran Judiciary. As President of the Tehran Judiciary he has been responsible for human rights violations, arbitrary arrests, denials of prisoners' rights and a high number of executions. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12177 +AVAYI,Ali-Reza,Seyyed,,,,,,,,20/05/1956,Dezful,Iran,,,,,,Former Justice Minister (Aug 2017 – Aug 2021),,,,,,,,,"(UK Sanctions List Ref):IHR0019 (UK Statement of Reasons):Former Minister of Justice. Former Director of the special investigations office. Until July 2016 deputy Minister of Interior and head of the Public register. Advisor to the Disciplinary Court for Judges since April 2014. Former President of the Tehran Judiciary. As President of the Tehran Judiciary he has been responsible for human rights violations, arbitrary arrests, denials of prisoners' rights and a high number of executions. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12177 +AVAYI,Seyyed,Alireza,,,,,,,,20/05/1956,Dezful,Iran,,,,,,Former Justice Minister (Aug 2017 – Aug 2021),,,,,,,,,"(UK Sanctions List Ref):IHR0019 (UK Statement of Reasons):Former Minister of Justice. Former Director of the special investigations office. Until July 2016 deputy Minister of Interior and head of the Public register. Advisor to the Disciplinary Court for Judges since April 2014. Former President of the Tehran Judiciary. As President of the Tehran Judiciary he has been responsible for human rights violations, arbitrary arrests, denials of prisoners' rights and a high number of executions. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12177 +AVAYI,Seyyed,Ali-Reza,,,,,,,,20/05/1956,Dezful,Iran,,,,,,Former Justice Minister (Aug 2017 – Aug 2021),,,,,,,,,"(UK Sanctions List Ref):IHR0019 (UK Statement of Reasons):Former Minister of Justice. Former Director of the special investigations office. Until July 2016 deputy Minister of Interior and head of the Public register. Advisor to the Disciplinary Court for Judges since April 2014. Former President of the Tehran Judiciary. As President of the Tehran Judiciary he has been responsible for human rights violations, arbitrary arrests, denials of prisoners' rights and a high number of executions. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12177 +AVDEEV,Alexander,Alexandrovich,,,,,Александр Александрович Авдеев,,,08/12/1975,,,Russia,,,,,Acting Governor of Vladimir Region,,,,,,,,,"(UK Sanctions List Ref):RUS1520 (UK Statement of Reasons):Alexander Alexandrovich AVDEEV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because AVDEEV is a regional governor or equivalent. Specifically, AVDEEV is Acting Governor of Vladimir Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15461 +AVDEEV,Alexander,Vasilievich,,,,,АВДЕЕВ Александр Васильевич,Cyrillic,Russian,07/12/1958,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1226 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15178 +AVDEEV,Alexey,Yurevich,,,,Lieutenant General,АВДЕЕВ Алексей Юрьевич,,,17/05/1967,Tashkent,Uzbekistan,Russia,,,,,Deputy Commander Southern Military District,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0767 (UK Statement of Reasons):Lieutenant General Alexey Yurevich AVDEEV is a member of the Armed Forces of the Russian Federation, he currently holds the position of Deputy Commander Southern Military District. He is considered to have been either in direct command of and/or to have substantial influence regarding the deployment of Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14718 +AVDEEV,Mikhail,Yurievich,,,,,Авдеев Михаил Юрьевич,,,06/03/1977,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0603 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14548 +AVDEEVA,Yelena,Osipovna,,,,,Елена Осиповна Авдеева,,,19/07/1968,"Cherepovets, Vologda Region",Russia,Russia,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,,103426,Russia,"(UK Sanctions List Ref):RUS1366 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,04/05/2022,04/05/2022,04/05/2022,15343 +AVDEYEV,Alexander,Vasilyevich,,,,,,,,07/12/1958,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1226 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15178 +AVELLAN MEDAL,Ramon,Antonio,,,,,,,,11/11/1954,Jinotepe,Nicaragua,Nicaragua,A0008696,"(Nicaragua) issued 17 October 2011, expires 17 October 2021",,,Deputy Director General of the Nicaraguan National Police (NNP).,,,,,,,,Nicaragua,"(UK Sanctions List Ref):NIC0003 (UK Statement of Reasons):Ramon Antonio Avellan Medal is currently Deputy General of the Nicaraguan National Police (NNP). He was present in Masaya during the 2018 riots, and acted as the highest-ranking member of the National Police in Masaya during the police response. In this role, he has been involved in serious human rights violations in Masaya by coordinating the violent repression of protesters in 2018. These include serious violations of the right to life and the right to freedom of assembly. (Gender):Male",Individual,Primary name,,Nicaragua,05/05/2020,31/12/2020,31/12/2020,13834 +AVEN,Pyotr,,,,,,,,,16/03/1955,Moscow,Russia,(1) Latvia (2) Russia,,,,,(1) Chairman of the Supervisory Board of Alfa Group Consortium (2) Head of Alfa Bank,Moscow,,,,,,,Russia,"(UK Sanctions List Ref):RUS0665 (UK Statement of Reasons):PETR OLEGOVICH AVEN is a prominent Russian businessman and pro-Kremlin oligarch. AVEN is or has been involved in supporting the Government of Russia as a Director of Alfa-Bank (Russia), the fourth largest bank in Russia, and its holding company ABH Holding, which are entities carrying on business in the financial sector, which is a sector of strategic significance to the Government of Russia. AVEN is also associated with the Putin who is or has been involved in destabilising or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, by engaging in, providing support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,18/03/2022,14616 +AVEN,Pyotr,,,,,,,,,16/03/1955,Moscow,Russia,(1) Latvia (2) Russia,,,,,(1) Chairman of the Supervisory Board of Alfa Group Consortium (2) Head of Alfa Bank,Surrey,,,,,,,UK,"(UK Sanctions List Ref):RUS0665 (UK Statement of Reasons):PETR OLEGOVICH AVEN is a prominent Russian businessman and pro-Kremlin oligarch. AVEN is or has been involved in supporting the Government of Russia as a Director of Alfa-Bank (Russia), the fourth largest bank in Russia, and its holding company ABH Holding, which are entities carrying on business in the financial sector, which is a sector of strategic significance to the Government of Russia. AVEN is also associated with the Putin who is or has been involved in destabilising or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, by engaging in, providing support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,18/03/2022,14616 +AVEN,Petr,Olegovich,,,,,Пëтр Олегович АВЕН,,,16/03/1955,Moscow,Russia,(1) Latvia (2) Russia,,,,,(1) Chairman of the Supervisory Board of Alfa Group Consortium (2) Head of Alfa Bank,Moscow,,,,,,,Russia,"(UK Sanctions List Ref):RUS0665 (UK Statement of Reasons):PETR OLEGOVICH AVEN is a prominent Russian businessman and pro-Kremlin oligarch. AVEN is or has been involved in supporting the Government of Russia as a Director of Alfa-Bank (Russia), the fourth largest bank in Russia, and its holding company ABH Holding, which are entities carrying on business in the financial sector, which is a sector of strategic significance to the Government of Russia. AVEN is also associated with the Putin who is or has been involved in destabilising or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, by engaging in, providing support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,18/03/2022,14616 +AVEN,Petr,Olegovich,,,,,Пëтр Олегович АВЕН,,,16/03/1955,Moscow,Russia,(1) Latvia (2) Russia,,,,,(1) Chairman of the Supervisory Board of Alfa Group Consortium (2) Head of Alfa Bank,Surrey,,,,,,,UK,"(UK Sanctions List Ref):RUS0665 (UK Statement of Reasons):PETR OLEGOVICH AVEN is a prominent Russian businessman and pro-Kremlin oligarch. AVEN is or has been involved in supporting the Government of Russia as a Director of Alfa-Bank (Russia), the fourth largest bank in Russia, and its holding company ABH Holding, which are entities carrying on business in the financial sector, which is a sector of strategic significance to the Government of Russia. AVEN is also associated with the Putin who is or has been involved in destabilising or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, by engaging in, providing support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,18/03/2022,14616 +AVIATRANS ANSTALT,,,,,,,,,,,,,,,,,,,,,,,,Ruggell,,Liechtenstein,(UK Sanctions List Ref):IRQ0052 (UN Ref):IQe.199,Entity,Primary name,,Iraq,05/05/2004,26/04/2004,31/12/2020,8282 +AVIATRANS ESTABLISHMENT,,,,,,,,,,,,,,,,,,,,,,,,Ruggell,,Liechtenstein,(UK Sanctions List Ref):IRQ0052 (UN Ref):IQe.199,Entity,AKA,,Iraq,05/05/2004,26/04/2004,31/12/2020,8282 +AVKSENTIEVA,Sardana,Vladimirovna,,,,,Сардаана Владимировна Авксентьева,,,02/07/1970,"Churapcha, Yakutia",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0604 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14549 +AVRAMENKO,Aleksey,Nikolaevich,,,,,,,,11/05/1977,Minsk,Belarus,Belarus,,,,,Minister for Transport and Communication,,,,,,,,,"(UK Sanctions List Ref):BEL0100 (UK Statement of Reasons):In his position as Minister for Transport and Communication of the Republic of Belarus, Aliaksei Auramenka is responsible for the state management of civil aviation and supervision of air traffic control. He is therefore responsible for the forced redirection and landing of Ryanair passenger flight FR4978 at Minsk airport, without proper justification, on 23 May 2021. In so doing, Auramenka acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian Ministry of Defence. These politically motivated decisions were aimed at detaining and arresting the opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega and are a form of repression against civil society and democratic opposition in Belarus. Therefore, Aliaksei Auramenka is responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14118 +AVRAMENKO,Alexey,Nikolaevich,,,,,,,,11/05/1977,Minsk,Belarus,Belarus,,,,,Minister for Transport and Communication,,,,,,,,,"(UK Sanctions List Ref):BEL0100 (UK Statement of Reasons):In his position as Minister for Transport and Communication of the Republic of Belarus, Aliaksei Auramenka is responsible for the state management of civil aviation and supervision of air traffic control. He is therefore responsible for the forced redirection and landing of Ryanair passenger flight FR4978 at Minsk airport, without proper justification, on 23 May 2021. In so doing, Auramenka acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian Ministry of Defence. These politically motivated decisions were aimed at detaining and arresting the opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega and are a form of repression against civil society and democratic opposition in Belarus. Therefore, Aliaksei Auramenka is responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14118 +AVRAMENKO,Aliaksei,Mikalaevich,,,,,,,,11/05/1977,Minsk,Belarus,Belarus,,,,,Minister for Transport and Communication,,,,,,,,,"(UK Sanctions List Ref):BEL0100 (UK Statement of Reasons):In his position as Minister for Transport and Communication of the Republic of Belarus, Aliaksei Auramenka is responsible for the state management of civil aviation and supervision of air traffic control. He is therefore responsible for the forced redirection and landing of Ryanair passenger flight FR4978 at Minsk airport, without proper justification, on 23 May 2021. In so doing, Auramenka acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian Ministry of Defence. These politically motivated decisions were aimed at detaining and arresting the opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega and are a form of repression against civil society and democratic opposition in Belarus. Therefore, Aliaksei Auramenka is responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14118 +AVRASYA SHIPPING,,,,,,,,,,,,,,,,,,,Liman Mh. Gezi Cd. No:22/3,Ilkadim,Ilkadim,,,Samsun,,Turkey,"(UK Sanctions List Ref):LIB0069 (UK Statement of Reasons):There are reasonable grounds to suspect that Avrasya Shipping is a maritime company that has operated a vessel transporting military equipment to Libya in violation of the UN arms embargo established in UNSCR 1970 (2011). By assisting the contravention or circumvention UNSCR 1970 (2011), Avrasya Shipping was involved in an activity which threatens the peace, stability and security of Libya, and undermines its transition to a democratic, peaceful and independent country. (Phone number):90 5497201748 (Website):http://www.avrasyashipping.com/iletisim (Email address):info@avrasyashipping.com (Type of entity):Shipping company",Entity,Primary name,,Libya,21/09/2020,31/12/2020,31/12/2020,13916 +AVTUKHOV,Mikhail,Olegovich,,,,,Михаил Олегович Автухов,Cyrillic,Russian,13/10/1974,,,Russia,,,,,Member of SOVCOMBANK’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1585 (UK Statement of Reasons):Mikhail Olegovich Avtukhov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SOVCOMBANK which is carrying on business in the financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely SOVCOMBANK which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15529 +AW MOHAMMED,Ahmed,Abdi,,,,,,,,10/07/1977,Hargeysa,Somalia,Somalia,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0005 (UN Ref):SOi.004,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11091 +AWAD,Munir,,,,,,,,,00/00/1966,Heet,Iraq,Iraq,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):IRQ0135 (UN Ref):IQi.074,Individual,AKA,Good quality,Iraq,05/05/2004,26/04/2004,31/12/2020,8278 +AWAD,Munir,A,Mamduh.,,,,,,,00/00/1966,Heet,Iraq,Iraq,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):IRQ0135 (UN Ref):IQi.074,Individual,AKA,Good quality,Iraq,05/05/2004,26/04/2004,31/12/2020,8278 +AWAL SHAH,Abdul Baqi,Basir,,,,(1) Maulavi (2) Mullah,عبد الباقي بصير أول شاه,,,00/00/1962,"(1) Jalalabad City, Nangarhar Province. (2) Shinwar District, Nangarhar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,"(1) Consular Department, Ministry of Foreign Affairs under the Taliban regime. (2) Governor of Khost and Paktika provinces under the Taliban regime. (3) Vice-Minister of Information and Culture under the Taliban regime",,,,,,,,,(UK Sanctions List Ref):AFG0034 (UN Ref):TAi.038 Believed to be in Afghanistan/Pakistan border area. Taliban member responsible for Nangarhar Province as at 2008. Until 7 Sep. 2007 he was also listed under number TAi.048. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6904 +AWAL SHAH,Abdul Baqi,Basir,,,,(1) Maulavi (2) Mullah,عبد الباقي بصير أول شاه,,,00/00/1961,"(1) Jalalabad City, Nangarhar Province. (2) Shinwar District, Nangarhar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,"(1) Consular Department, Ministry of Foreign Affairs under the Taliban regime. (2) Governor of Khost and Paktika provinces under the Taliban regime. (3) Vice-Minister of Information and Culture under the Taliban regime",,,,,,,,,(UK Sanctions List Ref):AFG0034 (UN Ref):TAi.038 Believed to be in Afghanistan/Pakistan border area. Taliban member responsible for Nangarhar Province as at 2008. Until 7 Sep. 2007 he was also listed under number TAi.048. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6904 +AWAL SHAH,Abdul Baqi,Basir,,,,(1) Maulavi (2) Mullah,عبد الباقي بصير أول شاه,,,00/00/1960,"(1) Jalalabad City, Nangarhar Province. (2) Shinwar District, Nangarhar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,"(1) Consular Department, Ministry of Foreign Affairs under the Taliban regime. (2) Governor of Khost and Paktika provinces under the Taliban regime. (3) Vice-Minister of Information and Culture under the Taliban regime",,,,,,,,,(UK Sanctions List Ref):AFG0034 (UN Ref):TAi.038 Believed to be in Afghanistan/Pakistan border area. Taliban member responsible for Nangarhar Province as at 2008. Until 7 Sep. 2007 he was also listed under number TAi.048. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6904 +AWANI,Mohamed,Ben Belgacem,,,,,,,,05/02/1969,(1) Tripoli (2) Tunis,(1) Libya (2) Tunisia,Tunisia,,,W374031,Issue date: 11/04/2011,,,,,,,,,,(UK Sanctions List Ref):AQD0241 (UN Ref):QDi.062 Professor of Chemistry. Deported from Italy to Tunisia on 27 Aug. 2006. Legally changed family name from Aouani to Lakhal in 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7087 +AWANI,Mohamed,Ben Belgacem,,,,,,,,05/02/1970,(1) Tripoli (2) Tunis,(1) Libya (2) Tunisia,Tunisia,,,W374031,Issue date: 11/04/2011,,,,,,,,,,(UK Sanctions List Ref):AQD0241 (UN Ref):QDi.062 Professor of Chemistry. Deported from Italy to Tunisia on 27 Aug. 2006. Legally changed family name from Aouani to Lakhal in 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7087 +AWAS,Ali,,,,,,,,,00/00/1973,"Sahl Village, Raqqa Province",Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0132 (UN Ref):QDi.384 A leader of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). As of Jun, 2015, al-Shawakh was the ISIL governor of Aleppo. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13317 +AWES,Hassan,Dahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWES,Hassan,Dahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWES,Hassan,Dahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWES,Hassan,Dahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWES,Shaykh,Hassan,Dahir,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWES,Shaykh,Hassan,Dahir,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWES,Shaykh,Hassan,Dahir,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWES,Shaykh,Hassan,Dahir,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWEYES,Hassen,Dahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWEYES,Hassen,Dahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWEYES,Hassen,Dahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWEYES,Hassen,Dahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWEYS,Ahmed,Dahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWEYS,Ahmed,Dahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWEYS,Ahmed,Dahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWEYS,Ahmed,Dahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWEYS,Hassan,Dahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWEYS,Hassan,Dahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWEYS,Hassan,Dahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWEYS,Hassan,Dahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWEYS,Sheikh,,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWEYS,Sheikh,,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWEYS,Sheikh,,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWEYS,Sheikh,,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWEYS,Sheikh,Hassan,Dahir,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWEYS,Sheikh,Hassan,Dahir,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWEYS,Sheikh,Hassan,Dahir,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWEYS,Sheikh,Hassan,Dahir,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWEYS,Hassan,Dahir,,,,Sheikh,حسن ظاهرعويس,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWEYS,Hassan,Dahir,,,,Sheikh,حسن ظاهرعويس,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWEYS,Hassan,Dahir,,,,Sheikh,حسن ظاهرعويس,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWEYS,Hassan,Dahir,,,,Sheikh,حسن ظاهرعويس,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWEYS,Sheikh,,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWEYS,Sheikh,,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWEYS,Sheikh,,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWEYS,Sheikh,,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWEYS,Sheikh,Hassan,Dahir,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWEYS,Sheikh,Hassan,Dahir,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AWEYS,Sheikh,Hassan,Dahir,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +AWEYS,Sheikh,Hassan,Dahir,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +AW-MOHAMED,AHMED,ABDI,,,,,,,,10/07/1977,Hargeysa,Somalia,Somalia,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0005 (UN Ref):SOi.004,Individual,Primary name,,Somalia,28/04/2010,12/04/2010,31/12/2020,11091 +AW-MOHAMUD,Ahmed,Abdi,,,,,,,,10/07/1977,Hargeysa,Somalia,Somalia,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0005 (UN Ref):SOi.004,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11091 +AWWAD,Tayseer,,,,,,,,,00/00/1943,Damascus,Syria,,,,,,Former Minister of Justice,,,,,,,,,(UK Sanctions List Ref):SYR0232 (UK Statement of Reasons):Former Minister of Justice. Associated with the Syrian regime and its violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,26/09/2011,31/12/2020,31/12/2020,12149 +AWWAD,Tayseer,Qala,,,,,,,,00/00/1943,Damascus,Syria,,,,,,Former Minister of Justice,,,,,,,,,(UK Sanctions List Ref):SYR0232 (UK Statement of Reasons):Former Minister of Justice. Associated with the Syrian regime and its violent repression against the civilian population. (Gender):Male,Individual,AKA,,Syria,26/09/2011,31/12/2020,31/12/2020,12149 +AXIMU,Memetiming,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +AXIMU,Memetiming,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +AYERAS,Abdul,Kareem,,,,,,,,15/09/1973,"24 Paraiso Street, Barangay Poblacion, Mandaluyong City",Philippines,Philippines,,,,,,Barangay Mangayao,,,,Tagkawayan,Quezon,,Philippines,(UK Sanctions List Ref):AQD0295 (UN Ref):QDi.248 Member of the Rajah Solaiman Movement (QDe.128). Arrested by the Philippines authorities on 14 Mar. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10668 +AYERAS,Abdul,Kareem,,,,,,,,15/09/1973,"24 Paraiso Street, Barangay Poblacion, Mandaluyong City",Philippines,Philippines,,,,,,Barangay Tigib,,,,Ayungon,Negros Oriental,,Philippines,(UK Sanctions List Ref):AQD0295 (UN Ref):QDi.248 Member of the Rajah Solaiman Movement (QDe.128). Arrested by the Philippines authorities on 14 Mar. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10668 +AYERAS,Abdul,Karim,,,,,,,,15/09/1973,"24 Paraiso Street, Barangay Poblacion, Mandaluyong City",Philippines,Philippines,,,,,,Barangay Mangayao,,,,Tagkawayan,Quezon,,Philippines,(UK Sanctions List Ref):AQD0295 (UN Ref):QDi.248 Member of the Rajah Solaiman Movement (QDe.128). Arrested by the Philippines authorities on 14 Mar. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10668 +AYERAS,Abdul,Karim,,,,,,,,15/09/1973,"24 Paraiso Street, Barangay Poblacion, Mandaluyong City",Philippines,Philippines,,,,,,Barangay Tigib,,,,Ayungon,Negros Oriental,,Philippines,(UK Sanctions List Ref):AQD0295 (UN Ref):QDi.248 Member of the Rajah Solaiman Movement (QDe.128). Arrested by the Philippines authorities on 14 Mar. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10668 +AYERAS,Ricky,,,,,,,,,15/09/1973,"24 Paraiso Street, Barangay Poblacion, Mandaluyong City",Philippines,Philippines,,,,,,Barangay Mangayao,,,,Tagkawayan,Quezon,,Philippines,(UK Sanctions List Ref):AQD0295 (UN Ref):QDi.248 Member of the Rajah Solaiman Movement (QDe.128). Arrested by the Philippines authorities on 14 Mar. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10668 +AYERAS,Ricky,,,,,,,,,15/09/1973,"24 Paraiso Street, Barangay Poblacion, Mandaluyong City",Philippines,Philippines,,,,,,Barangay Tigib,,,,Ayungon,Negros Oriental,,Philippines,(UK Sanctions List Ref):AQD0295 (UN Ref):QDi.248 Member of the Rajah Solaiman Movement (QDe.128). Arrested by the Philippines authorities on 14 Mar. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10668 +AYERAS,RICARDO,PEREZ,,,,,,,,15/09/1973,"24 Paraiso Street, Barangay Poblacion, Mandaluyong City",Philippines,Philippines,,,,,,Barangay Mangayao,,,,Tagkawayan,Quezon,,Philippines,(UK Sanctions List Ref):AQD0295 (UN Ref):QDi.248 Member of the Rajah Solaiman Movement (QDe.128). Arrested by the Philippines authorities on 14 Mar. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10668 +AYERAS,RICARDO,PEREZ,,,,,,,,15/09/1973,"24 Paraiso Street, Barangay Poblacion, Mandaluyong City",Philippines,Philippines,,,,,,Barangay Tigib,,,,Ayungon,Negros Oriental,,Philippines,(UK Sanctions List Ref):AQD0295 (UN Ref):QDi.248 Member of the Rajah Solaiman Movement (QDe.128). Arrested by the Philippines authorities on 14 Mar. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10668 +AYMAN,Al Zawahiri,,,,,,,,,19/06/1951,Giza,Egypt,Egypt,(1) 1084010 (2) 19820215,(1) Egyptian (2) - .,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0126 (UN Ref):QDi.006 Leader of Al-Qaida (QDe.004). Former operational and military leader of Egyptian Islamic Jihad (QDe.003), was a close associate of Usama Bin Laden (deceased). Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487197",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7016 +AYMAN,Dhawahri,,,,,,,,,19/06/1951,Giza,Egypt,Egypt,(1) 1084010 (2) 19820215,(1) Egyptian (2) - .,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0126 (UN Ref):QDi.006 Leader of Al-Qaida (QDe.004). Former operational and military leader of Egyptian Islamic Jihad (QDe.003), was a close associate of Usama Bin Laden (deceased). Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487197",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7016 +AYMAN,Eddaouahiri,,,,,,,,,19/06/1951,Giza,Egypt,Egypt,(1) 1084010 (2) 19820215,(1) Egyptian (2) - .,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0126 (UN Ref):QDi.006 Leader of Al-Qaida (QDe.004). Former operational and military leader of Egyptian Islamic Jihad (QDe.003), was a close associate of Usama Bin Laden (deceased). Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487197",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7016 +AYMAN,Maalim,,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Kenya,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,Primary name,,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYMAN,Maalim,,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,Primary name,,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYMAN,Maalim,,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,Badamadow,Lower Juba Region,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,Primary name,,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYMAN,Maalim,,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,Badamadow,Lower Juba Region,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,Primary name,,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYMAN,Maalim,,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,Primary name,,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYMAN,Maalim,,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Kenya,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,Primary name,,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYMAN,Ma'alim,,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,Badamadow,Lower Juba Region,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYMAN,Ma'alim,,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Kenya,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYMAN,Ma'alim,,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYMAN,Ma'alim,,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYMAN,Ma'alim,,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Kenya,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYMAN,Ma'alim,,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,Badamadow,Lower Juba Region,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYMAN,Mo'alim,,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,Badamadow,Lower Juba Region,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYMAN,Mo'alim,,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYMAN,Mo'alim,,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Kenya,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYMAN,Mo'alim,,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Kenya,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYMAN,Mo'alim,,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYMAN,Mo'alim,,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,Badamadow,Lower Juba Region,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +AYOB,Ali,Abdullah,,,,,,,,00/00/1952,,,,,,,,Vice President of the Council of Ministers/Deputy Prime Minister and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0008 (UK Statement of Reasons):Vice President of the Council of Ministers/Deputy Prime Minister and Minister of Defence. Appointed in January 2018. Officer of the rank of General in the Syrian Army, in post after May 2011. Former Chief of General Staff of the Syrian Armed Forces. Person supporting the Syrian regime and responsible for repression of and violence against the civilian population in Syria.",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,13/05/2022,12211 +AYOUB,Ali,Abdullah,,,,,,,,00/00/1952,,,,,,,,Vice President of the Council of Ministers/Deputy Prime Minister and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0008 (UK Statement of Reasons):Vice President of the Council of Ministers/Deputy Prime Minister and Minister of Defence. Appointed in January 2018. Officer of the rank of General in the Syrian Army, in post after May 2011. Former Chief of General Staff of the Syrian Armed Forces. Person supporting the Syrian regime and responsible for repression of and violence against the civilian population in Syria.",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,13/05/2022,12211 +AYRAPETYAN,Larisa,,,,,,,,,21/02/1970,,,,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0062 Relatives/business associates or partners/links to listed individuals: Husband – Geran Hayrapetyan aka Ayrapetyan (UK Statement of Reasons):Former so-called “Health Minister’ of the so called ‘Luhansk People's Republic’. Stood as a candidate in the so called ‘elections’ of 2 November 2014 to the post of the ‘Head’ of the so called ‘Luhansk People's Republic’. These ‘elections’ are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, she has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilised Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13172 +AYRAPETYAN,Larisa,Leonidovna,,,,,,,,21/02/1970,,,,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0062 Relatives/business associates or partners/links to listed individuals: Husband – Geran Hayrapetyan aka Ayrapetyan (UK Statement of Reasons):Former so-called “Health Minister’ of the so called ‘Luhansk People's Republic’. Stood as a candidate in the so called ‘elections’ of 2 November 2014 to the post of the ‘Head’ of the so called ‘Luhansk People's Republic’. These ‘elections’ are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, she has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilised Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13172 +AYRAPETYAN,Larysa,,,,,,,,,21/02/1970,,,,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0062 Relatives/business associates or partners/links to listed individuals: Husband – Geran Hayrapetyan aka Ayrapetyan (UK Statement of Reasons):Former so-called “Health Minister’ of the so called ‘Luhansk People's Republic’. Stood as a candidate in the so called ‘elections’ of 2 November 2014 to the post of the ‘Head’ of the so called ‘Luhansk People's Republic’. These ‘elections’ are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, she has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilised Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13172 +AYUB,Abu,,,,,,,,,00/00/1961,Mosul,Iraq,Iraq,,,0094195,Ration card.,,,,,,,,,,"(UK Sanctions List Ref):AQD0271 (UN Ref):QDi.012 Joined Al-Qaida in 1996 and was at that time an important liaison to the Taliban in Afghanistan. Received money from Ansar al-Islam (QDe.098) in order to conduct attacks in Kirkuk and Ninveh in Iraq during spring and summer of 2005. Al-Qaida senior official. In custody of the United States of America, as of Aug. 2014. Father’s name: Abd al-Razzaq Abd al-Baqi. Mother’s name: Nadira Ayoub Asaad. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1475995 (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6923 +AYUB,Ali,Abdullah,,,,,,,,00/00/1952,,,,,,,,Vice President of the Council of Ministers/Deputy Prime Minister and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0008 (UK Statement of Reasons):Vice President of the Council of Ministers/Deputy Prime Minister and Minister of Defence. Appointed in January 2018. Officer of the rank of General in the Syrian Army, in post after May 2011. Former Chief of General Staff of the Syrian Armed Forces. Person supporting the Syrian regime and responsible for repression of and violence against the civilian population in Syria.",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,13/05/2022,12211 +AYUB,Qari,Muhammad,,,,,,,,00/00/1966,,,(1) Uzbekistan. (2) Afghanistan,,,,,,Mir Ali,,,,North Waziristan Agency,Federal Administered Tribal Areas,,Pakistan,"(UK Sanctions List Ref):AQD0152 (UN Ref):QDi.311 Member of leadership council as of early 2010 and head of finance for the Islamic Movement of Uzbekistan (QDe.010). Coordinated financial and logistical support for the Islamic Movement of Uzbekistan in Afghanistan and Pakistan between 2009-2012. Transferred and delivered funds to Fazal Rahim (QDi.303). Reportedly deceased in an airstrike in Chordar, Kunduz Province of Afghanistan in Dec. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741655",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/10/2012,18/10/2012,16/02/2022,12808 +AYUB,Qari,Muhammad,,,,,,,,00/00/1964,,,(1) Uzbekistan. (2) Afghanistan,,,,,,Mir Ali,,,,North Waziristan Agency,Federal Administered Tribal Areas,,Pakistan,"(UK Sanctions List Ref):AQD0152 (UN Ref):QDi.311 Member of leadership council as of early 2010 and head of finance for the Islamic Movement of Uzbekistan (QDe.010). Coordinated financial and logistical support for the Islamic Movement of Uzbekistan in Afghanistan and Pakistan between 2009-2012. Transferred and delivered funds to Fazal Rahim (QDi.303). Reportedly deceased in an airstrike in Chordar, Kunduz Province of Afghanistan in Dec. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741655",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/10/2012,18/10/2012,16/02/2022,12808 +AYUB,Qari,Muhammad,,,,,,,,00/00/1969,,,(1) Uzbekistan. (2) Afghanistan,,,,,,Mir Ali,,,,North Waziristan Agency,Federal Administered Tribal Areas,,Pakistan,"(UK Sanctions List Ref):AQD0152 (UN Ref):QDi.311 Member of leadership council as of early 2010 and head of finance for the Islamic Movement of Uzbekistan (QDe.010). Coordinated financial and logistical support for the Islamic Movement of Uzbekistan in Afghanistan and Pakistan between 2009-2012. Transferred and delivered funds to Fazal Rahim (QDi.303). Reportedly deceased in an airstrike in Chordar, Kunduz Province of Afghanistan in Dec. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741655",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/10/2012,18/10/2012,16/02/2022,12808 +AYUB,Qari,Muhammad,,,,,,,,00/00/1971,,,(1) Uzbekistan. (2) Afghanistan,,,,,,Mir Ali,,,,North Waziristan Agency,Federal Administered Tribal Areas,,Pakistan,"(UK Sanctions List Ref):AQD0152 (UN Ref):QDi.311 Member of leadership council as of early 2010 and head of finance for the Islamic Movement of Uzbekistan (QDe.010). Coordinated financial and logistical support for the Islamic Movement of Uzbekistan in Afghanistan and Pakistan between 2009-2012. Transferred and delivered funds to Fazal Rahim (QDi.303). Reportedly deceased in an airstrike in Chordar, Kunduz Province of Afghanistan in Dec. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741655",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/10/2012,18/10/2012,16/02/2022,12808 +AYUPOV,Rinat,Zaydulaevich,,,,,Аюпов Ринат Зайдулаевич,,,13/08/1974,Astrakhan,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0307 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14252 +AYYOUB,Ali,Abdullah,,,,,,,,00/00/1952,,,,,,,,Vice President of the Council of Ministers/Deputy Prime Minister and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0008 (UK Statement of Reasons):Vice President of the Council of Ministers/Deputy Prime Minister and Minister of Defence. Appointed in January 2018. Officer of the rank of General in the Syrian Army, in post after May 2011. Former Chief of General Staff of the Syrian Armed Forces. Person supporting the Syrian regime and responsible for repression of and violence against the civilian population in Syria.",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,13/05/2022,12211 +AYYUB,Abu,,,,,,,,,00/00/1973,"Sahl Village, Raqqa Province",Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0132 (UN Ref):QDi.384 A leader of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). As of Jun, 2015, al-Shawakh was the ISIL governor of Aleppo. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13317 +AYYUB,Ali,Abdullah,,,,,,,,00/00/1952,,,,,,,,Vice President of the Council of Ministers/Deputy Prime Minister and Minister of Defence,,,,,,,,,"(UK Sanctions List Ref):SYR0008 (UK Statement of Reasons):Vice President of the Council of Ministers/Deputy Prime Minister and Minister of Defence. Appointed in January 2018. Officer of the rank of General in the Syrian Army, in post after May 2011. Former Chief of General Staff of the Syrian Armed Forces. Person supporting the Syrian regime and responsible for repression of and violence against the civilian population in Syria.",Individual,Primary name,,Syria,15/11/2011,31/12/2020,13/05/2022,12211 +AYYUB,MOHAMMAD,RASUL,,,,Maulavi,محمد رسول ایوب,,,00/00/1958,"Robat village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,Governor of Nimroz Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0082 (UN Ref):TAi.104 Member of the Taliban Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7412 +AYYUB,MOHAMMAD,RASUL,,,,Maulavi,محمد رسول ایوب,,,00/00/1959,"Robat village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,Governor of Nimroz Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0082 (UN Ref):TAi.104 Member of the Taliban Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7412 +AYYUB,MOHAMMAD,RASUL,,,,Maulavi,محمد رسول ایوب,,,00/00/1960,"Robat village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,Governor of Nimroz Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0082 (UN Ref):TAi.104 Member of the Taliban Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7412 +AYYUB,MOHAMMAD,RASUL,,,,Maulavi,محمد رسول ایوب,,,00/00/1961,"Robat village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,Governor of Nimroz Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0082 (UN Ref):TAi.104 Member of the Taliban Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7412 +AYYUB,MOHAMMAD,RASUL,,,,Maulavi,محمد رسول ایوب,,,00/00/1962,"Robat village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,Governor of Nimroz Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0082 (UN Ref):TAi.104 Member of the Taliban Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7412 +AYYUB,MOHAMMAD,RASUL,,,,Maulavi,محمد رسول ایوب,,,00/00/1963,"Robat village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,Governor of Nimroz Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0082 (UN Ref):TAi.104 Member of the Taliban Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7412 +AZADI,Ali,,,,,Brigadier-General,,,,,,Iran,Iran,,,,,Law Enforcement Force Kurdistan provincial chief,,,,,,,,,"(UK Sanctions List Ref):IHR0099 (UK Statement of Reasons):Ali AZADI is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and the right to freedom of expression and peaceful assembly in Iran in his role as the provincial chief of Kurdistan Governor and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15619 +AZAM,,,,,,,,,,,,Pakistan,Pakistan,,,51602-9768615-5,,Former commander of Lashkar-e-Jhangvi,Karachi central prison,,,,,,,Pakistan,"(UK Sanctions List Ref):GHR0082 Affiliated with ISIS-K (UK Statement of Reasons):Furqan Bangalzai was commander of the militant wing of the terror organisation Lashkar-e-Jhangvi. In this capacity, he was involved in an activity which, if carried out by or on behalf of a State within the territory of that State, would amount to a serious violation by that State of an individual’s right to life by his role in facilitating the bombing of the Lal Shahbaz Qalandar shrine in Sehwan, Pakistan, in which at least 70 people were killed. Additional information: In May 2020, Bangalzai was convicted of 70 counts of murder for his involvement in the bombing. (Gender):Male",Individual,AKA,,Global Human Rights,10/12/2021,10/12/2021,10/12/2021,14167 +AZAM,,,,,,,,,,,,Pakistan,Pakistan,,,51602-9768615-5,,Former commander of Lashkar-e-Jhangvi,Saryab Road,,,,,Sindhi Gali Quetta,,Pakistan,"(UK Sanctions List Ref):GHR0082 Affiliated with ISIS-K (UK Statement of Reasons):Furqan Bangalzai was commander of the militant wing of the terror organisation Lashkar-e-Jhangvi. In this capacity, he was involved in an activity which, if carried out by or on behalf of a State within the territory of that State, would amount to a serious violation by that State of an individual’s right to life by his role in facilitating the bombing of the Lal Shahbaz Qalandar shrine in Sehwan, Pakistan, in which at least 70 people were killed. Additional information: In May 2020, Bangalzai was convicted of 70 counts of murder for his involvement in the bombing. (Gender):Male",Individual,AKA,,Global Human Rights,10/12/2021,10/12/2021,10/12/2021,14167 +AZAM,Mansour,Fadl,Allah,,,,,,,00/00/1960,Sweida Province,Syria,Syria,,,,,Minister for Presidential Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0137 (UK Statement of Reasons):Minister of Presidential Affairs. There are reasonable grounds to suspect that he is or has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime while serving as a Government minister within the Assad regime and is associated with other involved persons. (Gender):Male,Individual,Primary name variation,,Syria,28/02/2012,31/12/2020,13/05/2022,12505 +AZAM,Mansour,Fadlallah,,,,,,,,00/00/1960,Sweida Province,Syria,Syria,,,,,Minister for Presidential Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0137 (UK Statement of Reasons):Minister of Presidential Affairs. There are reasonable grounds to suspect that he is or has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime while serving as a Government minister within the Assad regime and is associated with other involved persons. (Gender):Male,Individual,Primary name variation,,Syria,28/02/2012,31/12/2020,13/05/2022,12505 +AZAM,Mansur,Fadl,Allah,,,,,,,00/00/1960,Sweida Province,Syria,Syria,,,,,Minister for Presidential Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0137 (UK Statement of Reasons):Minister of Presidential Affairs. There are reasonable grounds to suspect that he is or has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime while serving as a Government minister within the Assad regime and is associated with other involved persons. (Gender):Male,Individual,Primary name variation,,Syria,28/02/2012,31/12/2020,13/05/2022,12505 +AZAM,Mansur,Fadlallah,,,,,,,,00/00/1960,Sweida Province,Syria,Syria,,,,,Minister for Presidential Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0137 (UK Statement of Reasons):Minister of Presidential Affairs. There are reasonable grounds to suspect that he is or has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime while serving as a Government minister within the Assad regime and is associated with other involved persons. (Gender):Male,Individual,Primary name variation,,Syria,28/02/2012,31/12/2020,13/05/2022,12505 +AZAMI,Muhammad,,,,,,,,,00/00/1968,"Sayd Karam District, Paktia Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Mines and Industries under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0048 (UN Ref):TAi.063 Reportedly deceased in 2005. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7127 +AZARENOK,Grigoriy,Yurievich,,,,,Григорий Юрьевич  АЗАРЕНОК,,,18/10/1995,,,,,,,,"Journalist, Capital TV (CTV)",Capital TV,6 Kommunisticheskaya St,,,,Minsk,220029,Belarus,"(UK Sanctions List Ref):BEL0119 (UK Statement of Reasons):As a journalist reporting on the state-owned TV channel CTV, Grigoriy Yurievich AZARENOK, hereafter AZARENOK has willingly provided the Belarusian public with false information about the democratic opposition and protests, thus lending support to the regime. AZARENOK has vocally supported and attempted to justify the repression of the democratic opposition and of civil society who seek to demonstrate evidence of serious human rights violations committed by the regime. His journalism is specifically endorsed by the Lukashenko regime as it is the subject of several state sponsored awards. AZARENOK therefore is or has been involved in undermining democracy and the rule of law in Belarus, and repressing civil society and the democratic opposition. (Gender):Male",Individual,Primary name,,Belarus,02/12/2021,02/12/2021,13/04/2022,14162 +AZARENOK,Grigory,Yurievich,,,,,Григорий Юрьевич  АЗАРЁНОК,,,18/10/1995,,,,,,,,"Journalist, Capital TV (CTV)",Capital TV,6 Kommunisticheskaya St,,,,Minsk,220029,Belarus,"(UK Sanctions List Ref):BEL0119 (UK Statement of Reasons):As a journalist reporting on the state-owned TV channel CTV, Grigoriy Yurievich AZARENOK, hereafter AZARENOK has willingly provided the Belarusian public with false information about the democratic opposition and protests, thus lending support to the regime. AZARENOK has vocally supported and attempted to justify the repression of the democratic opposition and of civil society who seek to demonstrate evidence of serious human rights violations committed by the regime. His journalism is specifically endorsed by the Lukashenko regime as it is the subject of several state sponsored awards. AZARENOK therefore is or has been involved in undermining democracy and the rule of law in Belarus, and repressing civil society and the democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,13/04/2022,14162 +AZARONAK,Rhyor,Yurievich,,,,,,,,18/10/1995,,,,,,,,"Journalist, Capital TV (CTV)",Capital TV,6 Kommunisticheskaya St,,,,Minsk,220029,Belarus,"(UK Sanctions List Ref):BEL0119 (UK Statement of Reasons):As a journalist reporting on the state-owned TV channel CTV, Grigoriy Yurievich AZARENOK, hereafter AZARENOK has willingly provided the Belarusian public with false information about the democratic opposition and protests, thus lending support to the regime. AZARENOK has vocally supported and attempted to justify the repression of the democratic opposition and of civil society who seek to demonstrate evidence of serious human rights violations committed by the regime. His journalism is specifically endorsed by the Lukashenko regime as it is the subject of several state sponsored awards. AZARENOK therefore is or has been involved in undermining democracy and the rule of law in Belarus, and repressing civil society and the democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,13/04/2022,14162 +AZARONAK,Ryhor,Yuryevich,,,,,Рыгор Юр'евіч АЗАРОНАК,,,18/10/1995,,,,,,,,"Journalist, Capital TV (CTV)",Capital TV,6 Kommunisticheskaya St,,,,Minsk,220029,Belarus,"(UK Sanctions List Ref):BEL0119 (UK Statement of Reasons):As a journalist reporting on the state-owned TV channel CTV, Grigoriy Yurievich AZARENOK, hereafter AZARENOK has willingly provided the Belarusian public with false information about the democratic opposition and protests, thus lending support to the regime. AZARENOK has vocally supported and attempted to justify the repression of the democratic opposition and of civil society who seek to demonstrate evidence of serious human rights violations committed by the regime. His journalism is specifically endorsed by the Lukashenko regime as it is the subject of several state sponsored awards. AZARENOK therefore is or has been involved in undermining democracy and the rule of law in Belarus, and repressing civil society and the democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,13/04/2022,14162 +AZARONAK,Yurievich,,,,,,,,,18/10/1995,,,,,,,,"Journalist, Capital TV (CTV)",Capital TV,6 Kommunisticheskaya St,,,,Minsk,220029,Belarus,"(UK Sanctions List Ref):BEL0119 (UK Statement of Reasons):As a journalist reporting on the state-owned TV channel CTV, Grigoriy Yurievich AZARENOK, hereafter AZARENOK has willingly provided the Belarusian public with false information about the democratic opposition and protests, thus lending support to the regime. AZARENOK has vocally supported and attempted to justify the repression of the democratic opposition and of civil society who seek to demonstrate evidence of serious human rights violations committed by the regime. His journalism is specifically endorsed by the Lukashenko regime as it is the subject of several state sponsored awards. AZARENOK therefore is or has been involved in undermining democracy and the rule of law in Belarus, and repressing civil society and the democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,13/04/2022,14162 +AZAROV,Dmitry,Igorevich,,,,,Дмитрий Игоревич Азаров,,,09/08/1970,,,Russia,,,,,Governor of Samara Region,,,,,,,,,"(UK Sanctions List Ref):RUS1514 (UK Statement of Reasons):Dmitry Igorevich AZAROV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because AZAROV is a regional governor. Specifically, AZAROV is Governor of Samara Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15452 +AZEMSHA,Sergei,Yakovlevich,,,,,"АЗЕМША, Сергей Яковлевич",,,17/07/1974,"Rechitsa, Gomel Oblast",Former USSR Currently Belarus,Belarus,,,,,Deputy Chairman of the Investigative Committee of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0053 (UK Statement of Reasons):Siarhei Azemsha is Deputy Chairman of the Investigative Committee of the Republic of Belarus. Azemsha is responsible for the actions of the Investigative Committee, including pursuing criminal investigations against protestors and opposition leaders, and therefore undermining democracy in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13989 +AZEMSHA,Siarhei,Yakaulevich,,,,,"АЗЕМША, Сяргей Якаўлевіч",,,17/07/1974,"Rechitsa, Gomel Oblast",Former USSR Currently Belarus,Belarus,,,,,Deputy Chairman of the Investigative Committee of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0053 (UK Statement of Reasons):Siarhei Azemsha is Deputy Chairman of the Investigative Committee of the Republic of Belarus. Azemsha is responsible for the actions of the Investigative Committee, including pursuing criminal investigations against protestors and opposition leaders, and therefore undermining democracy in Belarus. (Gender):Male",Individual,Primary name,,Belarus,06/11/2020,31/12/2020,31/12/2020,13989 +AZHAR,Masud,,,,,,,,,10/07/1968,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0358 (UN Ref):QDi.422 Founder of Jaish-i-Mohammed (QDe.019). Former leader of Harakat ul-Mujahidin / HUM (QDe.008). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/xxxx.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,02/05/2019,01/05/2019,31/12/2020,13787 +AZHAR,Masud,,,,,,,,,10/06/1968,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0358 (UN Ref):QDi.422 Founder of Jaish-i-Mohammed (QDe.019). Former leader of Harakat ul-Mujahidin / HUM (QDe.008). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/xxxx.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,02/05/2019,01/05/2019,31/12/2020,13787 +AZIMOV,Rakhim,Azizboevich,,,,,Азимов Рахим Азизбоевич,,,16/08/1964,Shurab,Tajikistan,Russia,530393349,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0605 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14550 +AZIZ,,,,,,,Азиз,,,07/09/1975,"Chegem-1 Village, Chegemskiy District, Republic of Kabardino-Balkaria",Russia,Russia,622641887,Russian foreign travel passport number,8304661431,Russian Federation national passport,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0343 (UN Ref):QDi.367 As at Aug. 2015, one of the leaders of the Army of Emigrants and Supporters (QDe.148). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899831. Syria, located in as at Aug. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13302 +AZIZ,,,,,,,Азиз,,,07/09/1975,"Chegem-1 Village, Chegemskiy District, Republic of Kabardino-Balkaria",Russia,Russia,622641887,Russian foreign travel passport number,8304661431,Russian Federation national passport,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0343 (UN Ref):QDi.367 As at Aug. 2015, one of the leaders of the Army of Emigrants and Supporters (QDe.148). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899831. Syria, located in as at Aug. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13302 +AZIZ,Abdul,Hamid,Abdul,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +AZIZ,Abdul,Hamid,Abdul,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +AZIZ,Abdul,Hamid,Abdul,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +AZIZ,Abu,Abdul,,,,,,,,00/00/1943,,India,Saudi Arabia,,,4-6032-0048-1,Saudi Arabian NI,,,,,,,,,,(UK Sanctions List Ref):AQD0221 (UN Ref):QDi.266 Financier of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Has served as the leader of Lashkar-e-Tayyiba in Saudi Arabia. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543496,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9218 +AZIZ,Abu,Abdul,,,,,,,,00/00/1944,,India,Saudi Arabia,,,4-6032-0048-1,Saudi Arabian NI,,,,,,,,,,(UK Sanctions List Ref):AQD0221 (UN Ref):QDi.266 Financier of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Has served as the leader of Lashkar-e-Tayyiba in Saudi Arabia. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543496,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9218 +AZIZ,Abu,Abdul,,,,,,,,17/08/1943,,India,Saudi Arabia,,,4-6032-0048-1,Saudi Arabian NI,,,,,,,,,,(UK Sanctions List Ref):AQD0221 (UN Ref):QDi.266 Financier of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Has served as the leader of Lashkar-e-Tayyiba in Saudi Arabia. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543496,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9218 +AZIZ,Mohammad,Yahya,,,,,,,,12/03/1961,"Lahore, Punjab Province",Pakistan,Pakistan,,,35404-1577309-9,,,,,,,,,,,(UK Sanctions List Ref):AQD0247 (UN Ref):QDi.272 Associated with Lashkar-e-Tayyiba (QDe.118). In detention as at June 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578066,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10907 +AZIZ,Tariq,Mikhail,,,,,,,,01/07/1936,Mosul,Iraq,Iraq,No34409/129,July 1997,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0086 (UN Ref):IQi.025,Individual,AKA,Good quality,Iraq,02/07/2003,27/06/2003,16/02/2022,7603 +AZIZ,TARIQ,,,,,,طارق عزيز,,,01/07/1936,Mosul,Iraq,Iraq,No34409/129,July 1997,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0086 (UN Ref):IQi.025,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,16/02/2022,7603 +'AZIZ - ABBAS,Yaser,,,,,,,,,22/08/1978,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0350 Linked to10/02/2020 Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group. Leave to remain in the UK. (UK Statement of Reasons):Leading businessperson operating in Syria. Supports and/or benefits from the regime through business dealings, including fuel smuggling. Profits from facilitating oil imports on behalf of the regime and uses his relations with the regime to obtain preferential dealings and treatment. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,31/12/2020,13814 +'AZIZ - ABBAS,Yasr - Aziz,,,,,,,,,22/08/1978,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0350 Linked to10/02/2020 Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group. Leave to remain in the UK. (UK Statement of Reasons):Leading businessperson operating in Syria. Supports and/or benefits from the regime through business dealings, including fuel smuggling. Profits from facilitating oil imports on behalf of the regime and uses his relations with the regime to obtain preferential dealings and treatment. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,31/12/2020,13814 +'AZIZ - ABBAS,Yasser,,,,,,,,,22/08/1978,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0350 Linked to10/02/2020 Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group. Leave to remain in the UK. (UK Statement of Reasons):Leading businessperson operating in Syria. Supports and/or benefits from the regime through business dealings, including fuel smuggling. Profits from facilitating oil imports on behalf of the regime and uses his relations with the regime to obtain preferential dealings and treatment. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,31/12/2020,13814 +AZMAT PAKISTAN TRUST,,,,,,,,,,,,,,,,,,,Gulistan-e-Jauhar,Block 12,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0010 (UN Ref):QDe.121 Regional offices in Pakistan: Bahawalpur, Bawalnagar, Gilgit, Islamabad, Mirpur Khas, Tando-Jan-Muhammad. Akhtarabad Medical Camp is in Spin Boldak, Afghanistan. Registered by members of Jaish-i-Mohammed (QDe.019). Associated with Harakat ul-Mujahidin/ HUM (QDe.008), Lashkar I Jhanghvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235573",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,19/08/2005,17/08/2005,31/12/2020,8703 +AZMAT PAKISTAN TRUST,,,,,,,,,,,,,,,,,,,ST-1/A,Gulsahn-e-Iqbal,Block 2,,,Karachi,25300,Pakistan,"(UK Sanctions List Ref):AQD0010 (UN Ref):QDe.121 Regional offices in Pakistan: Bahawalpur, Bawalnagar, Gilgit, Islamabad, Mirpur Khas, Tando-Jan-Muhammad. Akhtarabad Medical Camp is in Spin Boldak, Afghanistan. Registered by members of Jaish-i-Mohammed (QDe.019). Associated with Harakat ul-Mujahidin/ HUM (QDe.008), Lashkar I Jhanghvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235573",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,19/08/2005,17/08/2005,31/12/2020,8703 +AZMAT-E-PAKISTAN TRUST,,,,,,,,,,,,,,,,,,,Gulistan-e-Jauhar,Block 12,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0010 (UN Ref):QDe.121 Regional offices in Pakistan: Bahawalpur, Bawalnagar, Gilgit, Islamabad, Mirpur Khas, Tando-Jan-Muhammad. Akhtarabad Medical Camp is in Spin Boldak, Afghanistan. Registered by members of Jaish-i-Mohammed (QDe.019). Associated with Harakat ul-Mujahidin/ HUM (QDe.008), Lashkar I Jhanghvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235573",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,19/08/2005,17/08/2005,31/12/2020,8703 +AZMAT-E-PAKISTAN TRUST,,,,,,,,,,,,,,,,,,,ST-1/A,Gulsahn-e-Iqbal,Block 2,,,Karachi,25300,Pakistan,"(UK Sanctions List Ref):AQD0010 (UN Ref):QDe.121 Regional offices in Pakistan: Bahawalpur, Bawalnagar, Gilgit, Islamabad, Mirpur Khas, Tando-Jan-Muhammad. Akhtarabad Medical Camp is in Spin Boldak, Afghanistan. Registered by members of Jaish-i-Mohammed (QDe.019). Associated with Harakat ul-Mujahidin/ HUM (QDe.008), Lashkar I Jhanghvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235573",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,19/08/2005,17/08/2005,31/12/2020,8703 +AZOUZ,Abdelbassed,,,,,,,,,07/02/1966,Doma,Libya,Libya,(1) 223611 (2) C00146605,(1) Libya number (2) British passport number,,,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0089 (UN Ref):QDi.371 Key operative in Al-Qaida (QDe.004). Under the direction of Aiman al-Zawahiri (QDi.006), recruited 200 militants in the eastern part of Libya. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930719",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13312 +AZOUZ,Abdul Baset,,,,,,,,,07/02/1966,Doma,Libya,Libya,(1) 223611 (2) C00146605,(1) Libya number (2) British passport number,,,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0089 (UN Ref):QDi.371 Key operative in Al-Qaida (QDe.004). Under the direction of Aiman al-Zawahiri (QDi.006), recruited 200 militants in the eastern part of Libya. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930719",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13312 +AZOVSKY LIKEROVODOCHNY ZAVOD',,,,,,,,,,,,,,,,,,,,,,40 Zeleznodorozhnaya Str.,96178 Town of Azov,Jankoysky District,,,"(UK Sanctions List Ref):RUS0169 Business Sector: distillery (UK Statement of Reasons):The ownership of the entity was transferred contrary to the Ukrainian law. On 9 April the 'Presidium of the Parliament of Crimea' adopted a decision No 1991-6/14 'On the amendments to the Resolution of the State Council of the Republic of Crimea' of 26 March 2014 No. 1836-6/14 'On nationalisation of the property of enterprises, institutions and organisations of agro industrial complex, located in the territory of the Republic of Crimea' declaring the appropriation of assets belonging to the 'Azovsky likerovodochny Zavod' on behalf of the 'Republic of Crimea'. The enterprise is thus effectively confiscated by the Crimean 'authorities'. Ongoing bankruptcy proceedings. (Type of entity):State-Owned Enterprise (Business Reg No):1271681",Entity,AKA,,Russia,25/07/2014,31/12/2020,31/12/2020,13059 +AZZAM,Mansour,Fadl,Allah,,,,,,,00/00/1960,Sweida Province,Syria,Syria,,,,,Minister for Presidential Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0137 (UK Statement of Reasons):Minister of Presidential Affairs. There are reasonable grounds to suspect that he is or has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime while serving as a Government minister within the Assad regime and is associated with other involved persons. (Gender):Male,Individual,Primary name variation,,Syria,28/02/2012,31/12/2020,13/05/2022,12505 +AZZAM,Mansour,Fadlallah,,,,,منصور فضل الله زام,,,00/00/1960,Sweida Province,Syria,Syria,,,,,Minister for Presidential Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0137 (UK Statement of Reasons):Minister of Presidential Affairs. There are reasonable grounds to suspect that he is or has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime while serving as a Government minister within the Assad regime and is associated with other involved persons. (Gender):Male,Individual,Primary name,,Syria,28/02/2012,31/12/2020,13/05/2022,12505 +AZZAM,Mansur,Fadl,Allah,,,,,,,00/00/1960,Sweida Province,Syria,Syria,,,,,Minister for Presidential Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0137 (UK Statement of Reasons):Minister of Presidential Affairs. There are reasonable grounds to suspect that he is or has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime while serving as a Government minister within the Assad regime and is associated with other involved persons. (Gender):Male,Individual,Primary name variation,,Syria,28/02/2012,31/12/2020,13/05/2022,12505 +AZZAM,Mansur,Fadlallah,,,,,,,,00/00/1960,Sweida Province,Syria,Syria,,,,,Minister for Presidential Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0137 (UK Statement of Reasons):Minister of Presidential Affairs. There are reasonable grounds to suspect that he is or has been involved in the repression of the civilian population and/or supporting or benefitting from the Syrian regime while serving as a Government minister within the Assad regime and is associated with other involved persons. (Gender):Male,Individual,Primary name variation,,Syria,28/02/2012,31/12/2020,13/05/2022,12505 +AZZOUZ,ABD AL-BASET,,,,,,,,,07/02/1966,Doma,Libya,Libya,(1) 223611 (2) C00146605,(1) Libya number (2) British passport number,,,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0089 (UN Ref):QDi.371 Key operative in Al-Qaida (QDe.004). Under the direction of Aiman al-Zawahiri (QDi.006), recruited 200 militants in the eastern part of Libya. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930719",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13312 +BAASYIR,Abu,Bakar,,,,,,,,17/08/1938,"Jombang, East Java",Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,"(UK Sanctions List Ref):AQD0114 (UN Ref):QDi.217 Formed Jemmah Anshorut Tauhid (JAT) (QDe.133) in 2008. In 2010, arrested for incitement to commit terrorism and fundraising with respect to a training camp in Aceh, Indonesia and sentenced to 15 years in 2011. Ba'asyir was released from prison on 8 January 2021 after serving his sentence in accordance with Indonesian laws and regulations. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 24 November 2020. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1428633",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,07/04/2021,8831 +BA'ASYIR,Abd Al-Rahim,,,,,,,,,16/11/1977,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BA'ASYIR,Abd Al-Rahim,,,,,,,,,16/11/1974,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BA'ASYIR,Abdul Rachim,,,,,,,,,16/11/1977,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BA'ASYIR,Abdul Rachim,,,,,,,,,16/11/1974,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BA'ASYIR,Abdul Rochim,,,,,,,,,16/11/1977,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BA'ASYIR,Abdul Rochim,,,,,,,,,16/11/1974,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BA'ASYIR,Abdurochim,,,,,,,,,16/11/1977,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BA'ASYIR,Abdurochim,,,,,,,,,16/11/1974,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BA'ASYIR,Abdurrahim,,,,,,,,,16/11/1977,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BA'ASYIR,Abdurrahim,,,,,,,,,16/11/1974,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BA'ASYIR,Abdurrahman,,,,,,,,,16/11/1977,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BA'ASYIR,Abdurrahman,,,,,,,,,16/11/1974,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BA'ASYIR,Abdurrochim,,,,,,,,,16/11/1977,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BA'ASYIR,Abdurrochim,,,,,,,,,16/11/1974,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BA'ASYIR,ABDUL,ROSYID,RIDHO,,,,,,,31/01/1974,Sukoharjo,Indonesia,Indonesia,,,1127083101740003,Indonesian National Identity Card number under name Abdul Rosyid Ridho Ba’asyir,,Podok Pesantren,Al Wayain Ngrandu,Sumber Agung Magetan,,,East Java,,Indonesia,(UK Sanctions List Ref):AQD0108 (UN Ref):QDi.305 Father's name is Abu Bakar Ba'asyir (QDi.217). Brother of Abdul Rahim Ba’aysir (QDi.293). Belongs to the leadership of and is involved in recruitment and fundraising for Jemmah Anshorut Tauhid (JAT) (QDe.133) Associated with Jemaah Islamiyah (QDe.092). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4682206,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,12/01/2022,12628 +BA'ASYIR,ABU BAKAR,,,,,,,,,17/08/1938,"Jombang, East Java",Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,"(UK Sanctions List Ref):AQD0114 (UN Ref):QDi.217 Formed Jemmah Anshorut Tauhid (JAT) (QDe.133) in 2008. In 2010, arrested for incitement to commit terrorism and fundraising with respect to a training camp in Aceh, Indonesia and sentenced to 15 years in 2011. Ba'asyir was released from prison on 8 January 2021 after serving his sentence in accordance with Indonesian laws and regulations. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 24 November 2020. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1428633",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,07/04/2021,8831 +BA'AYSIR,Rashid,Rida,,,,,,,,31/01/1974,Sukoharjo,Indonesia,Indonesia,,,1127083101740003,Indonesian National Identity Card number under name Abdul Rosyid Ridho Ba’asyir,,Podok Pesantren,Al Wayain Ngrandu,Sumber Agung Magetan,,,East Java,,Indonesia,(UK Sanctions List Ref):AQD0108 (UN Ref):QDi.305 Father's name is Abu Bakar Ba'asyir (QDi.217). Brother of Abdul Rahim Ba’aysir (QDi.293). Belongs to the leadership of and is involved in recruitment and fundraising for Jemmah Anshorut Tauhid (JAT) (QDe.133) Associated with Jemaah Islamiyah (QDe.092). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4682206,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,12/01/2022,12628 +BA'AYSIR,ABDUL RAHIM,,,,,,,,,16/11/1977,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BA'AYSIR,ABDUL RAHIM,,,,,,,,,16/11/1974,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BABA,Memon,,,,,,,,,00/00/1944,,Pakistan,Pakistan,,,,,,House No 136,KDA Scheme No 1,Tipu Sultan Road,,,Karachi,,Pakistan,(UK Sanctions List Ref):AQD0146 (UN Ref):QDi.271 Associated with Lashkar-e-Tayyiba (QDe.118) and Al-Qaida (QDe.004). In detention as at June 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578017,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10906 +BABA,Qasmani,,,,,,,,,00/00/1944,,Pakistan,Pakistan,,,,,,House No 136,KDA Scheme No 1,Tipu Sultan Road,,,Karachi,,Pakistan,(UK Sanctions List Ref):AQD0146 (UN Ref):QDi.271 Associated with Lashkar-e-Tayyiba (QDe.118) and Al-Qaida (QDe.004). In detention as at June 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578017,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10906 +BABAEI,Davoud,,,,,,,,,,,,,,,,,Former Head of Security for SPND,,,,,,,,,(UK Sanctions List Ref):INU0024 (UK Statement of Reasons):Former head of security for the Ministry of Defence and Armed Forces Logistics' research institute the Organisation of Defensive Innovation and Research (SPND).,Individual,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12228 +BABA'I,Davud,,,,,,,,,,,,,,,,,Former Head of Security for SPND,,,,,,,,,(UK Sanctions List Ref):INU0024 (UK Statement of Reasons):Former head of security for the Ministry of Defence and Armed Forces Logistics' research institute the Organisation of Defensive Innovation and Research (SPND).,Individual,Primary name variation,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12228 +BABAII,Davoud,,,,,,,,,,,,,,,,,Former Head of Security for SPND,,,,,,,,,(UK Sanctions List Ref):INU0024 (UK Statement of Reasons):Former head of security for the Ministry of Defence and Armed Forces Logistics' research institute the Organisation of Defensive Innovation and Research (SPND).,Individual,Primary name variation,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12228 +BABAKOV,Alexander,Mikhailovich,,,,,,,,08/02/1963,Chisinau,Moldovan SSR (now Republic of Moldova),,,,,,Former Member of the State Duma of the Russian Federation,,,,,,,,Russia,(UK Sanctions List Ref):RUS0067 Currently Deputy Chairman of the Commiitte on Foreign Affairs (UK Statement of Reasons):Former member of the State Duma. Chair of the State Duma Commission on Legislative Provisions for Development of the Military-Industrial Complex of the Russian Federation. He is a prominent member of ‘United Russia’ and a businessman with major investments in Ukraine and in Crimea. On the 20 March 2014 he voted in favour of the draft Federal Constitutional Law ‘on the acceptance into the Russian Federation of the Republic of Crimea and the formation within the Russian Federation of new federal subjects — the Republic of Crimea and the city of federal status of Sevastopol’. Currently member of the Federation Council of the Russian Federation. Deputy Chairman of the Committee on Foreign Affairs. (Gender):Male,Individual,Primary name,,Russia,12/09/2014,31/12/2020,31/12/2020,13124 +BABAKOV,Mikhail,Alexandrovich,,,,,Михаил Aлександрович БАБАКОВ,Cyrillic,Russian,07/02/1994,,,,,,,,,78 Avenue Raymond Poincare,,,,,Paris,75116,France,"(UK Sanctions List Ref):RUS1314 (UK Statement of Reasons):Mikhail Alexandrovich BABAKOV is the son of Aleksander Babakov. Aleksander Babakov is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019. Therefore, Mikhail Alexandrovich BABAKOV is an involved person because he is associated with an involved person. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15267 +BABAKOV,Mikhail,Alexandrovich,,,,,Михаил Aлександрович БАБАКОВ,Cyrillic,Russian,07/02/1994,,,,,,,,,11 Rue Jean Nicot,,,,,Paris,,France,"(UK Sanctions List Ref):RUS1314 (UK Statement of Reasons):Mikhail Alexandrovich BABAKOV is the son of Aleksander Babakov. Aleksander Babakov is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019. Therefore, Mikhail Alexandrovich BABAKOV is an involved person because he is associated with an involved person. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15267 +BABASHOV,Leonid,Ivanovich,,,,,Бабашов Леонид Иванович,,,31/01/1966,"Petrovka, Crimea",Ukraine,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0308 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14253 +BABAYAN,Roman,Georgievich,,,,,БАБАЯН Роман Георгиевич,Cyrillic,Russian,07/12/1967,Baku,Azerbaijan,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0762 (UK Statement of Reasons):Roman Babayan is a prominent Russian media figure. In numerous broadcasts he has provided support for and promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Email address):r.g.babayan@gmail.com",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14713 +BABBAR KHALSA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0025 (UK Statement of Reasons):Babbar Khalsa has claimed responsibility for a number of terrorist attacks in India since its foundation in 1978, including armed attacks, assassinations and bombings.",Entity,Primary name,,Counter-Terrorism (International),02/11/2001,31/12/2020,31/12/2020,7058 +BABENKO,Oksana,Alexandrovna,,,,,БАБЕНКО Оксана Александровна,Cyrillic,Russian,03/06/1987,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1227 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15179 +BABICH,Ivan,Nikolaevich,,,,,Бабич Иван Николаевич,,,02/09/1982,,,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0309 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14254 +BACH,,,,,,,Бэч,,,07/09/1975,"Chegem-1 Village, Chegemskiy District, Republic of Kabardino-Balkaria",Russia,Russia,622641887,Russian foreign travel passport number,8304661431,Russian Federation national passport,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0343 (UN Ref):QDi.367 As at Aug. 2015, one of the leaders of the Army of Emigrants and Supporters (QDe.148). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899831. Syria, located in as at Aug. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13302 +BACH,,,,,,,Бэч,,,07/09/1975,"Chegem-1 Village, Chegemskiy District, Republic of Kabardino-Balkaria",Russia,Russia,622641887,Russian foreign travel passport number,8304661431,Russian Federation national passport,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0343 (UN Ref):QDi.367 As at Aug. 2015, one of the leaders of the Army of Emigrants and Supporters (QDe.148). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899831. Syria, located in as at Aug. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13302 +BADEGE,ERIC,,,,,,,,,00/00/1971,,,Congo (Democratic Republic),,,,,,,,,,,,,Rwanda,(UK Sanctions List Ref):DRC0028 (UN Ref):CDi.001 He fled to Rwanda in March 2013 and is still living there as of early 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272441 (Gender):Male,Individual,Primary name,,Democratic Republic of the Congo,23/01/2013,31/12/2012,20/01/2021,12838 +BADGIE,Yankouba,,,,,,,,,24/02/1973,"New Jeshwang, Kanifang Municipality",The Gambia,The Gambia,,,,,Former Director General of the Gambian National Intelligence Agency (NIA) (2013 – 2017),,,,,,Banjul,,The Gambia,"(UK Sanctions List Ref):GHR0058 (UK Statement of Reasons):Yankuba Badjie was the Deputy Director General and then Director General of the Gambia’s National Intelligence Agency (NIA) from 2013 to early 2017. In this capacity, he had responsibility for, and direct oversight of, operations that were carried out by The Gambia’s NIA. During Badjie’s tenure, the NIA were responsible for extra judicial killings, torture and other cruel inhuman and degrading treatment. (Gender):Male",Individual,Primary name variation,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14005 +BADGIE,Yankouba,,,,,,,,,25/02/1973,"New Jeshwang, Kanifang Municipality",The Gambia,The Gambia,,,,,Former Director General of the Gambian National Intelligence Agency (NIA) (2013 – 2017),,,,,,Banjul,,The Gambia,"(UK Sanctions List Ref):GHR0058 (UK Statement of Reasons):Yankuba Badjie was the Deputy Director General and then Director General of the Gambia’s National Intelligence Agency (NIA) from 2013 to early 2017. In this capacity, he had responsibility for, and direct oversight of, operations that were carried out by The Gambia’s NIA. During Badjie’s tenure, the NIA were responsible for extra judicial killings, torture and other cruel inhuman and degrading treatment. (Gender):Male",Individual,Primary name variation,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14005 +BADGIE,Yankuba,,,,,,,,,24/02/1973,"New Jeshwang, Kanifang Municipality",The Gambia,The Gambia,,,,,Former Director General of the Gambian National Intelligence Agency (NIA) (2013 – 2017),,,,,,Banjul,,The Gambia,"(UK Sanctions List Ref):GHR0058 (UK Statement of Reasons):Yankuba Badjie was the Deputy Director General and then Director General of the Gambia’s National Intelligence Agency (NIA) from 2013 to early 2017. In this capacity, he had responsibility for, and direct oversight of, operations that were carried out by The Gambia’s NIA. During Badjie’s tenure, the NIA were responsible for extra judicial killings, torture and other cruel inhuman and degrading treatment. (Gender):Male",Individual,Primary name variation,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14005 +BADGIE,Yankuba,,,,,,,,,25/02/1973,"New Jeshwang, Kanifang Municipality",The Gambia,The Gambia,,,,,Former Director General of the Gambian National Intelligence Agency (NIA) (2013 – 2017),,,,,,Banjul,,The Gambia,"(UK Sanctions List Ref):GHR0058 (UK Statement of Reasons):Yankuba Badjie was the Deputy Director General and then Director General of the Gambia’s National Intelligence Agency (NIA) from 2013 to early 2017. In this capacity, he had responsibility for, and direct oversight of, operations that were carried out by The Gambia’s NIA. During Badjie’s tenure, the NIA were responsible for extra judicial killings, torture and other cruel inhuman and degrading treatment. (Gender):Male",Individual,Primary name variation,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14005 +BADI,Salah,,,,,,,,,,,,,,,,,"Senior commander of the armed anti-GNA Al-Somood front, also known as Fakhr or ‘Pride of Libya’. Senior commander of the Misratan Al Marsa Central Shield brigade",,,,,,,,,"(UK Sanctions List Ref):LIB0065 (UN Ref):LYi.028 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).",Individual,Primary name,,Libya,19/11/2018,16/11/2018,31/12/2020,13719 +BADIN,Dmitry,Sergeyevich,,,,,,,,15/11/1990,Kursk,,Russia,,,,,Military Intelligence Officer,,,,,,,,,"(UK Sanctions List Ref):CYB0010 (UK Statement of Reasons):Dmitry Sergevey Badin took part in a cyber attack against the German Federal Parliament (Deutscher Bundestag) with significant effect. As a military intelligence officer of the 85th Main Centre for Special Technologies (GTsSS) of the Russian General Staff of the Armed Forces of the Russian Federation (GRU), Dmitry Badin was part of a team of Russian Military intelligence officers which conducted a cyber attack against the German federal parliament (Deutscher Bundestag) in April and May 2015. This cyber attack targeted the parliament’s information system and affected its operation for several days. A significant amount of data was stolen and the email accounts of several MPs, as well as Chancellor Angela Merkel, were affected. (Gender):Male",Individual,Primary name,,Cyber,23/10/2020,31/12/2020,31/12/2020,13983 +BADJI,Yankouba,,,,,,,,,24/02/1973,"New Jeshwang, Kanifang Municipality",The Gambia,The Gambia,,,,,Former Director General of the Gambian National Intelligence Agency (NIA) (2013 – 2017),,,,,,Banjul,,The Gambia,"(UK Sanctions List Ref):GHR0058 (UK Statement of Reasons):Yankuba Badjie was the Deputy Director General and then Director General of the Gambia’s National Intelligence Agency (NIA) from 2013 to early 2017. In this capacity, he had responsibility for, and direct oversight of, operations that were carried out by The Gambia’s NIA. During Badjie’s tenure, the NIA were responsible for extra judicial killings, torture and other cruel inhuman and degrading treatment. (Gender):Male",Individual,Primary name variation,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14005 +BADJI,Yankouba,,,,,,,,,25/02/1973,"New Jeshwang, Kanifang Municipality",The Gambia,The Gambia,,,,,Former Director General of the Gambian National Intelligence Agency (NIA) (2013 – 2017),,,,,,Banjul,,The Gambia,"(UK Sanctions List Ref):GHR0058 (UK Statement of Reasons):Yankuba Badjie was the Deputy Director General and then Director General of the Gambia’s National Intelligence Agency (NIA) from 2013 to early 2017. In this capacity, he had responsibility for, and direct oversight of, operations that were carried out by The Gambia’s NIA. During Badjie’s tenure, the NIA were responsible for extra judicial killings, torture and other cruel inhuman and degrading treatment. (Gender):Male",Individual,Primary name variation,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14005 +BADJI,Yankuba,,,,,,,,,24/02/1973,"New Jeshwang, Kanifang Municipality",The Gambia,The Gambia,,,,,Former Director General of the Gambian National Intelligence Agency (NIA) (2013 – 2017),,,,,,Banjul,,The Gambia,"(UK Sanctions List Ref):GHR0058 (UK Statement of Reasons):Yankuba Badjie was the Deputy Director General and then Director General of the Gambia’s National Intelligence Agency (NIA) from 2013 to early 2017. In this capacity, he had responsibility for, and direct oversight of, operations that were carried out by The Gambia’s NIA. During Badjie’s tenure, the NIA were responsible for extra judicial killings, torture and other cruel inhuman and degrading treatment. (Gender):Male",Individual,Primary name variation,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14005 +BADJI,Yankuba,,,,,,,,,25/02/1973,"New Jeshwang, Kanifang Municipality",The Gambia,The Gambia,,,,,Former Director General of the Gambian National Intelligence Agency (NIA) (2013 – 2017),,,,,,Banjul,,The Gambia,"(UK Sanctions List Ref):GHR0058 (UK Statement of Reasons):Yankuba Badjie was the Deputy Director General and then Director General of the Gambia’s National Intelligence Agency (NIA) from 2013 to early 2017. In this capacity, he had responsibility for, and direct oversight of, operations that were carried out by The Gambia’s NIA. During Badjie’s tenure, the NIA were responsible for extra judicial killings, torture and other cruel inhuman and degrading treatment. (Gender):Male",Individual,Primary name variation,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14005 +BADJIE,Yankouba,,,,,,,,,24/02/1973,"New Jeshwang, Kanifang Municipality",The Gambia,The Gambia,,,,,Former Director General of the Gambian National Intelligence Agency (NIA) (2013 – 2017),,,,,,Banjul,,The Gambia,"(UK Sanctions List Ref):GHR0058 (UK Statement of Reasons):Yankuba Badjie was the Deputy Director General and then Director General of the Gambia’s National Intelligence Agency (NIA) from 2013 to early 2017. In this capacity, he had responsibility for, and direct oversight of, operations that were carried out by The Gambia’s NIA. During Badjie’s tenure, the NIA were responsible for extra judicial killings, torture and other cruel inhuman and degrading treatment. (Gender):Male",Individual,Primary name variation,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14005 +BADJIE,Yankouba,,,,,,,,,25/02/1973,"New Jeshwang, Kanifang Municipality",The Gambia,The Gambia,,,,,Former Director General of the Gambian National Intelligence Agency (NIA) (2013 – 2017),,,,,,Banjul,,The Gambia,"(UK Sanctions List Ref):GHR0058 (UK Statement of Reasons):Yankuba Badjie was the Deputy Director General and then Director General of the Gambia’s National Intelligence Agency (NIA) from 2013 to early 2017. In this capacity, he had responsibility for, and direct oversight of, operations that were carried out by The Gambia’s NIA. During Badjie’s tenure, the NIA were responsible for extra judicial killings, torture and other cruel inhuman and degrading treatment. (Gender):Male",Individual,Primary name variation,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14005 +BADJIE,Yankuba,,,,,,,,,24/02/1973,"New Jeshwang, Kanifang Municipality",The Gambia,The Gambia,,,,,Former Director General of the Gambian National Intelligence Agency (NIA) (2013 – 2017),,,,,,Banjul,,The Gambia,"(UK Sanctions List Ref):GHR0058 (UK Statement of Reasons):Yankuba Badjie was the Deputy Director General and then Director General of the Gambia’s National Intelligence Agency (NIA) from 2013 to early 2017. In this capacity, he had responsibility for, and direct oversight of, operations that were carried out by The Gambia’s NIA. During Badjie’s tenure, the NIA were responsible for extra judicial killings, torture and other cruel inhuman and degrading treatment. (Gender):Male",Individual,Primary name,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14005 +BADJIE,Yankuba,,,,,,,,,25/02/1973,"New Jeshwang, Kanifang Municipality",The Gambia,The Gambia,,,,,Former Director General of the Gambian National Intelligence Agency (NIA) (2013 – 2017),,,,,,Banjul,,The Gambia,"(UK Sanctions List Ref):GHR0058 (UK Statement of Reasons):Yankuba Badjie was the Deputy Director General and then Director General of the Gambia’s National Intelligence Agency (NIA) from 2013 to early 2017. In this capacity, he had responsibility for, and direct oversight of, operations that were carried out by The Gambia’s NIA. During Badjie’s tenure, the NIA were responsible for extra judicial killings, torture and other cruel inhuman and degrading treatment. (Gender):Male",Individual,Primary name,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14005 +BADRI,Gabril,Abdul Kareem,,,,,,,,01/01/1967,"Nile District, El-Fasher, North Darfur",,Sudan,,,(1) 192-3238459-9. (2) 302581.,(1) - (2) Certificate of nationality acquired through birth.,National Movement for Reform and Development (NMRD) Field Commander,,,,,,"Tine, Resides in Tine, on the Sudanese side of the border with Chad",,Sudan,(UK Sanctions List Ref):SUD0004 (UN Ref):SDi.004,Individual,AKA,Good quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8837 +BAEVSKY,Andrey,Vasilievich,,,,,БАЕВСКИЙ Андрей Васильевич,Cyrillic,Russian,19/08/1972,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1228 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15180 +BAGHERI,Mohammad-Bagher,,,,,,,,,,,,,,,,,"Vice-chairman of the judiciary administration of South Khorasan province, in charge of crime prevention.",,,,,,,,,"(UK Sanctions List Ref):IHR0063 Vice-chairman of the judiciary administration of South Khorasan province, in charge of crime prevention. In addition to his acknowledging, in June 2011, 140 executions for capital offences between March 2010 and March 2011, about 100 other executions are reported to have taken place in the same period and in the same province of South Khorasan without either the families or the lawyers being notified. He was, therefore, complicit in a grave violation of the right to due process, contributing to a high number of death sentences. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,31/12/2020,12199 +BAGHERI,Mohammad,,,,,Major General,محمد باقری,,Persian,00/06/1960,Tehran,Iran,Iran,,,,,Chairman of the Armed Forces General Staff,Ferdowsi Avenue,Sarhang Sakhaei Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):RUS1652 (UK Statement of Reasons): Major General Mohammad BAGHERI is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. Major General Mohammad BAGHERI is an Iranian Military Officer, and chairman of the Armed Forces General Staff (AFGS), the country’s top military body. He has been identified as a key figure overseeing army branches and individuals involved in a deal that supplied Russia with Iranian produced UAVs for use in their illegal invasion of Ukraine. (Gender):Male",Individual,Primary name,,Russia,20/10/2022,20/10/2022,20/10/2022,15604 +BAHAJI,Said,,,,,,سعيد باهاجى,,,15/07/1975,"Haselünne, Lower Saxony",Germany,(1) Germany. (2) Morocco,(1) 28642163 (2) 954242,"(1) German provisional. Issued by the city of Hamburg (2) Moroccan. Issued on 28 June 1995 in Meknas, Morocco. Expired.",1336597587,"Germany identity document (""Bundespersonalausweis"")",,Bunatwiete 23,,,,,Hamburg,21073,Germany,"(UK Sanctions List Ref):AQD0300 (UN Ref):QDi.080 Deputy head of the media committee of Al-Qaida (QDe.004) as at Apr. 2010. German authorities issued an arrest warrant for him on 21 Sep. 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. Reportedly deceased in September 2013 in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4517705. Primary address Hamburg, formerly resident at.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,12/01/2022,7059 +BAHAR,Bakht,Gul,,,,,,,,00/00/1980,"Aki Village, Zadran District, Paktiya Province",Afghanistan,Afghanistan,,,,,,Miram Shah,North Waziristan,,,,Federally Administered Tribal Areas,,Pakistan,"(UK Sanctions List Ref):AFG0127 (UN Ref):TAi.161 Communications assistant to Badruddin Haqqani (deceased). Also coordinates movement of Haqqani insurgents, foreign fighters and weapons in the Afghanistan/Pakistan border area. Belongs to Zadran tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,17/07/2012,27/06/2012,01/02/2021,12700 +BAHAZIQ,MAHMOUD,MOHAMMAD,AHMED,,,,,,,00/00/1943,,India,Saudi Arabia,,,4-6032-0048-1,Saudi Arabian NI,,,,,,,,,,(UK Sanctions List Ref):AQD0221 (UN Ref):QDi.266 Financier of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Has served as the leader of Lashkar-e-Tayyiba in Saudi Arabia. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543496,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9218 +BAHAZIQ,MAHMOUD,MOHAMMAD,AHMED,,,,,,,00/00/1944,,India,Saudi Arabia,,,4-6032-0048-1,Saudi Arabian NI,,,,,,,,,,(UK Sanctions List Ref):AQD0221 (UN Ref):QDi.266 Financier of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Has served as the leader of Lashkar-e-Tayyiba in Saudi Arabia. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543496,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9218 +BAHAZIQ,MAHMOUD,MOHAMMAD,AHMED,,,,,,,17/08/1943,,India,Saudi Arabia,,,4-6032-0048-1,Saudi Arabian NI,,,,,,,,,,(UK Sanctions List Ref):AQD0221 (UN Ref):QDi.266 Financier of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Has served as the leader of Lashkar-e-Tayyiba in Saudi Arabia. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543496,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9218 +BAHMANYAR,BAHMANYAR MORTEZA,,,,,,,,,31/12/1952,,,Iran,(1) I0005159 (2) 10005159,(1) Issued in Iran (2) Issued in Iran,,,Head of Finance and Budget Department of the Aerospace Industries Organization (AIO).,,,,,,,,,"(UK Sanctions List Ref):INU0197 (UN Ref):IRi.009 [Old Reference # I.37.D.4] (UK Statement of Reasons):As Head of Finance and Budget Department of the Aerospace Industries Organization (AIO), Bahmanyar Morteza BAHMANYAR is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),09/02/2007,23/12/2006,31/12/2020,9005 +BAHMANYAR,BAHMANYAR MORTEZA,,,,,,,,,31/12/1952,,,Iran,(1) I0005159 (2) 10005159,(1) Issued in Iran (2) Issued in Iran,,,Head of Finance and Budget Department of the Aerospace Industries Organization (AIO).,,,,,,,,,"(UK Sanctions List Ref):INU0197 (UN Ref):IRi.009 [Old Reference # I.37.D.4] (UK Statement of Reasons):As Head of Finance and Budget Department of the Aerospace Industries Organization (AIO), Bahmanyar Morteza BAHMANYAR is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),09/02/2007,23/12/2006,31/12/2020,9005 +BAHRAMI,Mohammad-Kazem,,,,,,,,,,,,,,,,,Former Head of the Administrative Justice Court,,,,,,,,,(UK Sanctions List Ref):IHR0064 (UK Statement of Reasons):Former head of the administrative justice court. He was complicit in the repression of peaceful demonstrators in 2009 as head of the judiciary branch of the armed forces. (Gender):Male,Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12197 +BAIGUSKAROV,Zarif,Zakirovich,,,,,Байгускаров Зариф Закирович,,,30/06/1967,"Kadyrovo, Bashkortostan",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0688 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14639 +BAIKAL ELECTRONICS JSC,,,,,,,AO Байкал Электроникс,Cyrillic,Russian,,,,,,,,,,"RigaLand Business Center, Block B, 2nd floor",26th km. M9 Baltiya highway,Krasnogorsk,,,Moscow,143421,Russia,"(UK Sanctions List Ref):RUS1434 (UK Statement of Reasons):Baikal Electronics JSC is one of the largest Russian chip manufacturers. Baikal therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the electronics sector. (Phone number):7 (495)2213947 (Email address):info@baikalelectronics.ru",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15371 +BAISAROV,Ruslan,Sulimovich,,,,,,,,09/08/1968,Prigorodnoye,Russia,Russia,,,,,"Chairman of the Board of Directors, BTS-MOST JSC",,,,,,,,Russia,"(UK Sanctions List Ref):RUS1484 (UK Statement of Reasons):Ruslan Sulimovich BAYSAROV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because: (1) he owns or controls the Bamtonnelstroy-Most Group of Companies, one of Russia’s largest construction enterprises specialising in transport infrastructure; and (2) he serves as Chair of the Board of Directors of the Bamtonnelstroy-Most Joint Stock Company. Therefore, BAYSAROV is involved in obtaining a benefit from or supporting the Government of Russia by owning or controlling directly or indirectly, or working as a director (whether executive or non-executive) or equivalent, of a company carrying on business in sectors of strategic significance, namely the Russian construction and transport sectors. (Gender):Male",Individual,Primary name variation,,Russia,29/06/2022,29/06/2022,29/06/2022,15423 +BAISHIRUDDIN,Mekmud,Sultan,,,,,,,,00/00/1937,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BAISHIRUDDIN,Mekmud,Sultan,,,,,,,,00/00/1938,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BAISHIRUDDIN,Mekmud,Sultan,,,,,,,,00/00/1939,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BAISHIRUDDIN,Mekmud,Sultan,,,,,,,,00/00/1940,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BAISHIRUDDIN,Mekmud,Sultan,,,,,,,,00/00/1941,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BAISHIRUDDIN,Mekmud,Sultan,,,,,,,,00/00/1942,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BAISHIRUDDIN,Mekmud,Sultan,,,,,,,,00/00/1943,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BAISHIRUDDIN,Mekmud,Sultan,,,,,,,,00/00/1944,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BAISHIRUDDIN,Mekmud,Sultan,,,,,,,,00/00/1945,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BAKARAT,Ali,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0249 (UK Statement of Reasons):103rd Brigade of the Republican Guard Division. Military official involved in the violence in Homs.,Individual,Primary name variation,,Syria,02/12/2011,31/12/2020,13/05/2022,12417 +BAKHAREV,Konstantin,Mikhailovich,,,,,КОНСТАНТИН БАХАРЕВ,,,20/10/1972,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0068 (UK Statement of Reasons):Member of the State Duma, elected from the illegally annexed Autonomous Republic of Crimea. Member of the Duma Committee on Control and Regulation. In March 2014 was appointed Deputy Chairperson of the State Council of the so-called “Republic of Crimea”, and in August 2014 as First Deputy Chairperson of that body. He has admitted to personal involvement in the events of 2014 that led to the illegal annexation of Crimea and Sevastopol which he publicly supported, including an interview published on gazetakrimea.ru website on 22 March 2016 and c-pravda.ru website on 23 August 2016. He was awarded with the order “to loyalty to duty” by the “authorities” of “Republic of Crimea”. (Gender):Male",Individual,Primary name,,Russia,09/11/2016,31/12/2020,31/12/2020,13391 +BAKHIN,Arkady,Viktorovich,,,,,,,,08/05/1956,Kaunas,Lithuania,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0069 (UK Statement of Reasons):Former First Deputy Minister of Defence (until 17 November 2015), and was, in that capacity, involved in supporting the deployment of Russian troops in Ukraine. According to the present Russian Ministry of Defence structure, in that capacity, he participates in shaping and implementing the policy of the Russian Government. These policies threaten the territorial integrity, sovereignty and independence of Ukraine. Currently employed by Rosatom. (Gender):Male",Individual,Primary name,,Russia,16/02/2015,31/12/2020,31/12/2020,13214 +BAKHMETIEV,Vitaly,Viktorovich,,,,,Бахметьев Виталий Викторович,,,12/08/1961,"Magnitogorsk, Chelyabinsk",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0615 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14560 +BAKHTIARI,Seyyed,Morteza,,,,,,,,00/00/1952,Mashhad,Iran,,,,,,(1) Deputy Custodian of Astan Quds Razavi (2) Head of the Imam Khomeini Relief Foundation,,,,,,,,,"(UK Sanctions List Ref):IHR0080 (UK Statement of Reasons):Deputy custodian of Imam Reza shrine. Former Official of the Special Clerical Tribunal. Former Minister of Justice from 2009 to 2013. During his time as Minister of Justice, prison conditions within Iran fell well below accepted international standards, and there was widespread mistreatment of prisoners. In addition, he played a key role in threatening and harassing the Iranian diaspora by announcing the establishment of a special court to deal specifically with Iranians who live outside the country. He also oversaw a sharp increase in the number of executions in Iran, including secret executions not announced by the government, and executions for drug-related offences. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12200 +BAKHTIBEKAVICH,Khazalbek,,,,,,,,,18/03/1967,,,Belarus,,,,,Deputy Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0010 and GHR0053 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Colonel Khazalbek Atabekov is one of four Deputy Commanders of the Internal Troops of the Ministry of Internal Affairs of Belarus. In his role as Deputy Commander, he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13921 +BAKHTIBEKAVICH,Khazalbek,,,,,,,,,18/03/1967,,,Belarus,,,,,Deputy Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0010 and GHR0053 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Colonel Khazalbek Atabekov is one of four Deputy Commanders of the Internal Troops of the Ministry of Internal Affairs of Belarus. In his role as Deputy Commander, he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13921 +BAKR,Abu,,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +BAKR,Abu,,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +BAKR,Abu,,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +BAKR,Abu,,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +BAKTIBEKAVICH,Khazalbek,,,,,,,,,18/03/1967,,,Belarus,,,,,Deputy Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0010 and GHR0053 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Colonel Khazalbek Atabekov is one of four Deputy Commanders of the Internal Troops of the Ministry of Internal Affairs of Belarus. In his role as Deputy Commander, he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13921 +BAKTIBEKAVICH,Khazalbek,,,,,,,,,18/03/1967,,,Belarus,,,,,Deputy Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0010 and GHR0053 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Colonel Khazalbek Atabekov is one of four Deputy Commanders of the Internal Troops of the Ministry of Internal Affairs of Belarus. In his role as Deputy Commander, he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13921 +BAL,,,,,,,,,,,,,,,,,,,,,,,,Butembo,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0016 (UN Ref):CDe.002 Privately-owned airline, operates out of Butembo. Since December 2008, BAL no longer holds an aircraft operating license in the DRC. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278478",Entity,AKA,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9068 +BALABA,Dmitry,Vladimirovich,,,,,"БАЛАБА, Дзмiтрый Уладзiмiравiч",,,01/06/1972,"Molodenchensky district, Gorodilovo, Minsk region",Belarus,Belarus,,,,,Commander of the Special Purpose Police Unit of Minsk (OMON),,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0013 and GHR0054 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Dmitry Balaba is Commander of the Special Purpose Police Unit of Minsk (OMON). In his role as Commander, Balaba is responsible for the actions of OMON in Minsk. Balaba is therefore responsible for the serious violations of the right not to be subject to CIDT or torture of detained protestors, carried out by OMON following the election of 9 August. In his role as Commander, Balaba is responsible for the actions of OMON officers in Minsk. Balaba bears responsibility for the serious human rights violations that were carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13922 +BALABA,Dmitry,Vladimirovich,,,,,"БАЛАБА, Дзмiтрый Уладзiмiравiч",,,01/06/1972,"Molodenchensky district, Gorodilovo, Minsk region",Belarus,Belarus,,,,,Commander of the Special Purpose Police Unit of Minsk (OMON),,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0013 and GHR0054 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Dmitry Balaba is Commander of the Special Purpose Police Unit of Minsk (OMON). In his role as Commander, Balaba is responsible for the actions of OMON in Minsk. Balaba is therefore responsible for the serious violations of the right not to be subject to CIDT or torture of detained protestors, carried out by OMON following the election of 9 August. In his role as Commander, Balaba is responsible for the actions of OMON officers in Minsk. Balaba bears responsibility for the serious human rights violations that were carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13922 +BALABA,Dmitry,Vladmirovich,,,,,"БАЛАБА, Дмитрий Владимирович",,,01/06/1972,"Molodenchensky district, Gorodilovo, Minsk region",Belarus,Belarus,,,,,Commander of the Special Purpose Police Unit of Minsk (OMON),,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0013 and GHR0054 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Dmitry Balaba is Commander of the Special Purpose Police Unit of Minsk (OMON). In his role as Commander, Balaba is responsible for the actions of OMON in Minsk. Balaba is therefore responsible for the serious violations of the right not to be subject to CIDT or torture of detained protestors, carried out by OMON following the election of 9 August. In his role as Commander, Balaba is responsible for the actions of OMON officers in Minsk. Balaba bears responsibility for the serious human rights violations that were carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13922 +BALABA,Dmitry,Vladmirovich,,,,,"БАЛАБА, Дмитрий Владимирович",,,01/06/1972,"Molodenchensky district, Gorodilovo, Minsk region",Belarus,Belarus,,,,,Commander of the Special Purpose Police Unit of Minsk (OMON),,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0013 and GHR0054 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Dmitry Balaba is Commander of the Special Purpose Police Unit of Minsk (OMON). In his role as Commander, Balaba is responsible for the actions of OMON in Minsk. Balaba is therefore responsible for the serious violations of the right not to be subject to CIDT or torture of detained protestors, carried out by OMON following the election of 9 August. In his role as Commander, Balaba is responsible for the actions of OMON officers in Minsk. Balaba bears responsibility for the serious human rights violations that were carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13922 +BALABA,Dzmitry,Uladzimiravich,,,,,,,,01/06/1972,"Molodenchensky district, Gorodilovo, Minsk region",Belarus,Belarus,,,,,Commander of the Special Purpose Police Unit of Minsk (OMON),,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0013 and GHR0054 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Dmitry Balaba is Commander of the Special Purpose Police Unit of Minsk (OMON). In his role as Commander, Balaba is responsible for the actions of OMON in Minsk. Balaba is therefore responsible for the serious violations of the right not to be subject to CIDT or torture of detained protestors, carried out by OMON following the election of 9 August. In his role as Commander, Balaba is responsible for the actions of OMON officers in Minsk. Balaba bears responsibility for the serious human rights violations that were carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13922 +BALABA,Dzmitry,Uladzimiravich,,,,,,,,01/06/1972,"Molodenchensky district, Gorodilovo, Minsk region",Belarus,Belarus,,,,,Commander of the Special Purpose Police Unit of Minsk (OMON),,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0013 and GHR0054 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Dmitry Balaba is Commander of the Special Purpose Police Unit of Minsk (OMON). In his role as Commander, Balaba is responsible for the actions of OMON in Minsk. Balaba is therefore responsible for the serious violations of the right not to be subject to CIDT or torture of detained protestors, carried out by OMON following the election of 9 August. In his role as Commander, Balaba is responsible for the actions of OMON officers in Minsk. Balaba bears responsibility for the serious human rights violations that were carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13922 +BALABA,Dzmitry,Vladzimiravich,,,,,,,,01/06/1972,"Molodenchensky district, Gorodilovo, Minsk region",Belarus,Belarus,,,,,Commander of the Special Purpose Police Unit of Minsk (OMON),,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0013 and GHR0054 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Dmitry Balaba is Commander of the Special Purpose Police Unit of Minsk (OMON). In his role as Commander, Balaba is responsible for the actions of OMON in Minsk. Balaba is therefore responsible for the serious violations of the right not to be subject to CIDT or torture of detained protestors, carried out by OMON following the election of 9 August. In his role as Commander, Balaba is responsible for the actions of OMON officers in Minsk. Balaba bears responsibility for the serious human rights violations that were carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13922 +BALABA,Dzmitry,Vladzimiravich,,,,,,,,01/06/1972,"Molodenchensky district, Gorodilovo, Minsk region",Belarus,Belarus,,,,,Commander of the Special Purpose Police Unit of Minsk (OMON),,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0013 and GHR0054 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Dmitry Balaba is Commander of the Special Purpose Police Unit of Minsk (OMON). In his role as Commander, Balaba is responsible for the actions of OMON in Minsk. Balaba is therefore responsible for the serious violations of the right not to be subject to CIDT or torture of detained protestors, carried out by OMON following the election of 9 August. In his role as Commander, Balaba is responsible for the actions of OMON officers in Minsk. Balaba bears responsibility for the serious human rights violations that were carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13922 +BALBEK,Ruslan,Ismailovich,,,,,Pуслан Исмаилович БАЛЬБЕК,,,28/08/1977,Bekabad,Uzbekistan SSR (now Uzbekistan),(1) Russia. (2) Uzbekistan,,,,,"Member of the State Duma, elected from the illegally annexed Autonomous Republic of Crimea.",,,,,,,,Russia,"(UK Sanctions List Ref):RUS0070 (UK Statement of Reasons):Member of the State Duma, elected from the illegally annexed Autonomous Republic of Crimea. Deputy Chairperson of the Duma Committee on ethnic affairs. In 2014 Balbek was appointed as a Deputy Chairperson of the Council of Ministers of the so-called ""Republic of Crimea"" and worked in this capacity for the intergration of the illegally annexed Crimean peninsula into the Russian Federation for which he has been awarded with a medal ""For the Defence of Crimea"". He has supported the annexation of Crimea in public statements, including on his profile on the United Russia (Crimean branch) website and a press article published on NTV website on 3 July 2016. (Gender):Male",Individual,Primary name,,Russia,09/11/2016,31/12/2020,16/09/2022,13390 +BALITSKI,Yevhen,VITALIIOVYCH,,,,,,,,10/12/1969,,,Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1622 (UK Statement of Reasons):Yevhen BALYTSKYI is head of the administration installed by Russia in temporarily controlled territory of Zaphorizhzhia region, southern Ukraine. In that role, BALYTSKYI supports and promotes actions and policies that destabilise and undermine or threaten the territorial integrity, sovereignty, or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15566 +BALITSKY,Yevgen,VITALIIOVYCH,,,,,,,,10/12/1969,,,Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1622 (UK Statement of Reasons):Yevhen BALYTSKYI is head of the administration installed by Russia in temporarily controlled territory of Zaphorizhzhia region, southern Ukraine. In that role, BALYTSKYI supports and promotes actions and policies that destabilise and undermine or threaten the territorial integrity, sovereignty, or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15566 +BALITSKY,Yevgeni,VITALIIOVYCH,,,,,,,,10/12/1969,,,Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1622 (UK Statement of Reasons):Yevhen BALYTSKYI is head of the administration installed by Russia in temporarily controlled territory of Zaphorizhzhia region, southern Ukraine. In that role, BALYTSKYI supports and promotes actions and policies that destabilise and undermine or threaten the territorial integrity, sovereignty, or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15566 +BALITSKY,Yevgeny,VITALIIOVYCH,,,,,,,,10/12/1969,,,Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1622 (UK Statement of Reasons):Yevhen BALYTSKYI is head of the administration installed by Russia in temporarily controlled territory of Zaphorizhzhia region, southern Ukraine. In that role, BALYTSKYI supports and promotes actions and policies that destabilise and undermine or threaten the territorial integrity, sovereignty, or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15566 +BALITSKY,Yevhen,VITALIIOVYCH,,,,,,,,10/12/1969,,,Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1622 (UK Statement of Reasons):Yevhen BALYTSKYI is head of the administration installed by Russia in temporarily controlled territory of Zaphorizhzhia region, southern Ukraine. In that role, BALYTSKYI supports and promotes actions and policies that destabilise and undermine or threaten the territorial integrity, sovereignty, or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15566 +BALITSKY,Yevhen,VITALIIOVYCH,,,,,Євген Віталійович Балицький,Cyrillic,Ukrainian,10/12/1969,,,Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1622 (UK Statement of Reasons):Yevhen BALYTSKYI is head of the administration installed by Russia in temporarily controlled territory of Zaphorizhzhia region, southern Ukraine. In that role, BALYTSKYI supports and promotes actions and policies that destabilise and undermine or threaten the territorial integrity, sovereignty, or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15566 +BALITSKY,Yevhen,Vitalyovich,,,,,,,,10/12/1969,,,Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1622 (UK Statement of Reasons):Yevhen BALYTSKYI is head of the administration installed by Russia in temporarily controlled territory of Zaphorizhzhia region, southern Ukraine. In that role, BALYTSKYI supports and promotes actions and policies that destabilise and undermine or threaten the territorial integrity, sovereignty, or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15566 +BALLUL,Ahmad,,,,,,,,,10/10/1954,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0070 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and Commander of the Syrian Arab Air and Air Defence Forces, in post after May 2011. Operates in the chemical weapons proliferation sector and, as a senior ranking officer of the Syrian Arab Air Force, is responsible for the violent repression against the civilian population, including the use of chemical weapons attacks by the Syrian regime identified in the report of the Joint Investigative Mechanism.",Individual,Primary name,,Syria,21/03/2017,31/12/2020,31/12/2020,13450 +BALLUL,Ahmad,Muhammad,,,,,,,,10/10/1954,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0070 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and Commander of the Syrian Arab Air and Air Defence Forces, in post after May 2011. Operates in the chemical weapons proliferation sector and, as a senior ranking officer of the Syrian Arab Air Force, is responsible for the violent repression against the civilian population, including the use of chemical weapons attacks by the Syrian regime identified in the report of the Joint Investigative Mechanism.",Individual,Primary name variation,,Syria,21/03/2017,31/12/2020,31/12/2020,13450 +BALLUL,Ahmed,,,,,,,,,10/10/1954,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0070 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and Commander of the Syrian Arab Air and Air Defence Forces, in post after May 2011. Operates in the chemical weapons proliferation sector and, as a senior ranking officer of the Syrian Arab Air Force, is responsible for the violent repression against the civilian population, including the use of chemical weapons attacks by the Syrian regime identified in the report of the Joint Investigative Mechanism.",Individual,Primary name variation,,Syria,21/03/2017,31/12/2020,31/12/2020,13450 +BALLUL,Ahmed,Muhammad,,,,,,,,10/10/1954,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0070 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and Commander of the Syrian Arab Air and Air Defence Forces, in post after May 2011. Operates in the chemical weapons proliferation sector and, as a senior ranking officer of the Syrian Arab Air Force, is responsible for the violent repression against the civilian population, including the use of chemical weapons attacks by the Syrian regime identified in the report of the Joint Investigative Mechanism.",Individual,Primary name variation,,Syria,21/03/2017,31/12/2020,31/12/2020,13450 +BALOL,Ahmad,,,,,,,,,10/10/1954,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0070 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and Commander of the Syrian Arab Air and Air Defence Forces, in post after May 2011. Operates in the chemical weapons proliferation sector and, as a senior ranking officer of the Syrian Arab Air Force, is responsible for the violent repression against the civilian population, including the use of chemical weapons attacks by the Syrian regime identified in the report of the Joint Investigative Mechanism.",Individual,Primary name variation,,Syria,21/03/2017,31/12/2020,31/12/2020,13450 +BALOL,Ahmad,Muhammad,,,,,,,,10/10/1954,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0070 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and Commander of the Syrian Arab Air and Air Defence Forces, in post after May 2011. Operates in the chemical weapons proliferation sector and, as a senior ranking officer of the Syrian Arab Air Force, is responsible for the violent repression against the civilian population, including the use of chemical weapons attacks by the Syrian regime identified in the report of the Joint Investigative Mechanism.",Individual,Primary name variation,,Syria,21/03/2017,31/12/2020,31/12/2020,13450 +BALOL,Ahmed,,,,,,,,,10/10/1954,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0070 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and Commander of the Syrian Arab Air and Air Defence Forces, in post after May 2011. Operates in the chemical weapons proliferation sector and, as a senior ranking officer of the Syrian Arab Air Force, is responsible for the violent repression against the civilian population, including the use of chemical weapons attacks by the Syrian regime identified in the report of the Joint Investigative Mechanism.",Individual,Primary name variation,,Syria,21/03/2017,31/12/2020,31/12/2020,13450 +BALOL,Ahmed,Muhammad,,,,,,,,10/10/1954,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0070 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and Commander of the Syrian Arab Air and Air Defence Forces, in post after May 2011. Operates in the chemical weapons proliferation sector and, as a senior ranking officer of the Syrian Arab Air Force, is responsible for the violent repression against the civilian population, including the use of chemical weapons attacks by the Syrian regime identified in the report of the Joint Investigative Mechanism.",Individual,Primary name variation,,Syria,21/03/2017,31/12/2020,31/12/2020,13450 +BALS ALMAN,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0056 (UK Statement of Reasons):A manufacturer of electrical equipment involved in the construction of the Forfow (Qom) facility built without being declared to IAEA.,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11549 +BALUCHISTAN,Faris,,,,,,,,,22/09/1988,Alexandria,Egypt,Egypt,,,,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0244 (UN Ref):QDi.387 Member of Al-Qaida (QDe.004). Involved in recruiting suicide bombers to go to Syrian Arab Republic and planning terrorist activities against targets in Europe. Arrested in Cairo, Egypt in 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930736",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13320 +BALUCHISTAN,Faris,,,,,,,,,22/09/1989,Alexandria,Egypt,Egypt,,,,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0244 (UN Ref):QDi.387 Member of Al-Qaida (QDe.004). Involved in recruiting suicide bombers to go to Syrian Arab Republic and planning terrorist activities against targets in Europe. Arrested in Cairo, Egypt in 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930736",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13320 +BALUKU,SEKA,,,,,,,,,00/00/1977,,,Uganda,,,,,Overall leader of the Allied Democratic Forces (ADF) (CDe.001),,,,Kajuju camp of Medina II,Beni territory,North Kivu,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0059 (UN Ref):CDi.036 Longtime member of the ADF (CDe.001), Baluku used to be the second in command to ADF founder Jamil Mukulu (CDi.015) until he took over after FARDC military operation Sukola I in 2014.",Individual,Primary name,,Democratic Republic of the Congo,07/02/2020,06/02/2020,31/12/2020,13813 +BALYAKAU,Aleg,,,,,,,,,,,,Belarus,,,,,(1) Deputy Head of the Penal Correction Department of the Ministry of Internal Affairs (2) Deputy Head of the Department for the Execution of Punishments of the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0106 (UK Statement of Reasons):Oleg Nikolaevich Beliakov is the Deputy Head of the Department for the Execution of Punishments of the Ministry of Internal Affairs. In this position, he is responsible for his Department’s management of correction and detention facilities, and therefore he is responsible for the serious human rights violations and acts relating to the repression of civil society and democratic opposition which are carried out in such facilities. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,18/03/2022,14123 +BALYAKAU,Aleg,Nikolaevich,,,,,,,,,,,Belarus,,,,,(1) Deputy Head of the Penal Correction Department of the Ministry of Internal Affairs (2) Deputy Head of the Department for the Execution of Punishments of the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0106 (UK Statement of Reasons):Oleg Nikolaevich Beliakov is the Deputy Head of the Department for the Execution of Punishments of the Ministry of Internal Affairs. In this position, he is responsible for his Department’s management of correction and detention facilities, and therefore he is responsible for the serious human rights violations and acts relating to the repression of civil society and democratic opposition which are carried out in such facilities. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,18/03/2022,14123 +BALYAKAU,Oleg,Nikolaevich,,,,,,,,,,,Belarus,,,,,(1) Deputy Head of the Penal Correction Department of the Ministry of Internal Affairs (2) Deputy Head of the Department for the Execution of Punishments of the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0106 (UK Statement of Reasons):Oleg Nikolaevich Beliakov is the Deputy Head of the Department for the Execution of Punishments of the Ministry of Internal Affairs. In this position, he is responsible for his Department’s management of correction and detention facilities, and therefore he is responsible for the serious human rights violations and acts relating to the repression of civil society and democratic opposition which are carried out in such facilities. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,18/03/2022,14123 +BANAKH,Alexander,Sergeevich,,,,,БАНАХ Александр Сергеевич,Cyrillic,Russian,23/07/1985,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1229 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15181 +BANAKH,Alexander,Sergeyevich,,,,,,,,23/07/1985,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1229 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15181 +BANAT,Abu,,,,,,Абу Банат,,,24/11/1974,"Khadzhalmahi Village, Levashinskiy District, Republic of Dagestan",Russia,Russia,515458008,Russian foreign travel passport number,8200203535,Russian Federation national passport,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0218 (UN Ref):QDi.363 As at Aug. 2015, leader of Jamaat Abu Banat terrorist group, which forms part of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and operates on the outskirts of Syrian Arab Republic cities Aleppo and Idlib, extorting funds from and carrying out kidnappings and public executions of local Syrians. Physical description: eye colour brown, hair colour: dark, build: strong, straight nose, height: 180-185 cm, speaks Russian, English, Arabic. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899816. Address country Turkey (possible location), Syrian Arab Republic (previous confirmed location since September 2012).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,11/02/2022,13298 +BANAT,Abu,,,,,,Абу Банат,,,24/11/1974,"Khadzhalmahi Village, Levashinskiy District, Republic of Dagestan",Russia,Russia,515458008,Russian foreign travel passport number,8200203535,Russian Federation national passport,,,,,,,,,Turkey,"(UK Sanctions List Ref):AQD0218 (UN Ref):QDi.363 As at Aug. 2015, leader of Jamaat Abu Banat terrorist group, which forms part of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and operates on the outskirts of Syrian Arab Republic cities Aleppo and Idlib, extorting funds from and carrying out kidnappings and public executions of local Syrians. Physical description: eye colour brown, hair colour: dark, build: strong, straight nose, height: 180-185 cm, speaks Russian, English, Arabic. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899816. Address country Turkey (possible location), Syrian Arab Republic (previous confirmed location since September 2012).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,11/02/2022,13298 +BANCA INDUSTRIALA,,,,,,,,,,,,,,,,,,,Dar Al Muhanisen Building,7th Floor,Maysaloun Street,,P.O. Box 7572,Damascus,,Syria,(UK Sanctions List Ref):SYR0308 Banking (UK Statement of Reasons):State-owned bank. Provides financial support to the regime. (Phone number):+963 11-222-7910. +963 11-222-8200. +963 11-222-8412 (Fax) (Website):www.industrialbank.gov.sy,Entity,AKA,,Syria,24/01/2012,31/12/2020,31/12/2020,12483 +BANESHI,Jaber,,,,,,جابر بانشی,,,,,,,,,,,Head of Branch 22 of the Appeals Court of Shiraz since November 2011,,,,,,,,,"(UK Sanctions List Ref):IHR0044 (UK Statement of Reasons):Head of Branch 22 of the Appeals Court of Shiraz from November 2011. Former Prosecutor of Shiraz until October 2011. Prosecutor during the Shiraz bombing case in 2008, which was used by the regime to sentence to death other unconnected persons. He has pursued capital charges and other severe penalties against minorities, such as to constitute, inter alia, a violation of their human rights to fair trial and freedom from arbitrary detention. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,31/12/2020,12178 +BANGALZAI,Farooq,,,,,,,,,,,Pakistan,Pakistan,,,51602-9768615-5,,Former commander of Lashkar-e-Jhangvi,Karachi central prison,,,,,,,Pakistan,"(UK Sanctions List Ref):GHR0082 Affiliated with ISIS-K (UK Statement of Reasons):Furqan Bangalzai was commander of the militant wing of the terror organisation Lashkar-e-Jhangvi. In this capacity, he was involved in an activity which, if carried out by or on behalf of a State within the territory of that State, would amount to a serious violation by that State of an individual’s right to life by his role in facilitating the bombing of the Lal Shahbaz Qalandar shrine in Sehwan, Pakistan, in which at least 70 people were killed. Additional information: In May 2020, Bangalzai was convicted of 70 counts of murder for his involvement in the bombing. (Gender):Male",Individual,AKA,,Global Human Rights,10/12/2021,10/12/2021,10/12/2021,14167 +BANGALZAI,Farooq,,,,,,,,,,,Pakistan,Pakistan,,,51602-9768615-5,,Former commander of Lashkar-e-Jhangvi,Saryab Road,,,,,Sindhi Gali Quetta,,Pakistan,"(UK Sanctions List Ref):GHR0082 Affiliated with ISIS-K (UK Statement of Reasons):Furqan Bangalzai was commander of the militant wing of the terror organisation Lashkar-e-Jhangvi. In this capacity, he was involved in an activity which, if carried out by or on behalf of a State within the territory of that State, would amount to a serious violation by that State of an individual’s right to life by his role in facilitating the bombing of the Lal Shahbaz Qalandar shrine in Sehwan, Pakistan, in which at least 70 people were killed. Additional information: In May 2020, Bangalzai was convicted of 70 counts of murder for his involvement in the bombing. (Gender):Male",Individual,AKA,,Global Human Rights,10/12/2021,10/12/2021,10/12/2021,14167 +BANGALZAI,Furqan,,,,,,,,,,,Pakistan,Pakistan,,,51602-9768615-5,,Former commander of Lashkar-e-Jhangvi,Karachi central prison,,,,,,,Pakistan,"(UK Sanctions List Ref):GHR0082 Affiliated with ISIS-K (UK Statement of Reasons):Furqan Bangalzai was commander of the militant wing of the terror organisation Lashkar-e-Jhangvi. In this capacity, he was involved in an activity which, if carried out by or on behalf of a State within the territory of that State, would amount to a serious violation by that State of an individual’s right to life by his role in facilitating the bombing of the Lal Shahbaz Qalandar shrine in Sehwan, Pakistan, in which at least 70 people were killed. Additional information: In May 2020, Bangalzai was convicted of 70 counts of murder for his involvement in the bombing. (Gender):Male",Individual,Primary name,,Global Human Rights,10/12/2021,10/12/2021,10/12/2021,14167 +BANGALZAI,Furqan,,,,,,,,,,,Pakistan,Pakistan,,,51602-9768615-5,,Former commander of Lashkar-e-Jhangvi,Saryab Road,,,,,Sindhi Gali Quetta,,Pakistan,"(UK Sanctions List Ref):GHR0082 Affiliated with ISIS-K (UK Statement of Reasons):Furqan Bangalzai was commander of the militant wing of the terror organisation Lashkar-e-Jhangvi. In this capacity, he was involved in an activity which, if carried out by or on behalf of a State within the territory of that State, would amount to a serious violation by that State of an individual’s right to life by his role in facilitating the bombing of the Lal Shahbaz Qalandar shrine in Sehwan, Pakistan, in which at least 70 people were killed. Additional information: In May 2020, Bangalzai was convicted of 70 counts of murder for his involvement in the bombing. (Gender):Male",Individual,Primary name,,Global Human Rights,10/12/2021,10/12/2021,10/12/2021,14167 +BANIAS,,,,,,,,,,,,,,,,,,,26 Latkia Main Road,,,,PO Box 26,Tartous,,Syria,"(UK Sanctions List Ref):SYR0338 Oil and Gas sector. (UK Statement of Reasons):Entity is subsidiary of General Corporation of Petroleum Products, a section of the Ministry of Petroleum and Mineral Resources. And as such provides financial support to Syrian regime. (Phone number):+963 43711100 (Email address):brc3@tarassul.sy (Type of entity):Subsidiary of General Corporation for Refining and Distribution of Pretroleum Products, a section of the Ministry of Petroleum and Minerals",Entity,AKA,,Syria,23/07/2014,31/12/2020,31/12/2020,13028 +BANIAS,,,,,,,,,,,,,,,,,,,"352, Tripoli Street",,,,PO Box 352,Homs,,,"(UK Sanctions List Ref):SYR0338 Oil and Gas sector. (UK Statement of Reasons):Entity is subsidiary of General Corporation of Petroleum Products, a section of the Ministry of Petroleum and Mineral Resources. And as such provides financial support to Syrian regime. (Phone number):+963 43711100 (Email address):brc3@tarassul.sy (Type of entity):Subsidiary of General Corporation for Refining and Distribution of Pretroleum Products, a section of the Ministry of Petroleum and Minerals",Entity,AKA,,Syria,23/07/2014,31/12/2020,31/12/2020,13028 +BANK ANSAR,,,,,,,,,,,,,,,,,,,Building No. 539,North Pasdaran Avenue,,,,Tehran,19575 497,Iran,"(UK Sanctions List Ref):INU0048 (UK Statement of Reasons):Bonyad Taavon Sepah created Ansar Bank to provide financial and credit services to IRGC personnel. Initially, Ansar Bank operated as a credit union and transitioned into a fully fledged bank in mid 2009, upon receiving a license from Iran's Central Bank. Ansar Bank, formerly known as Ansar al Mojahedin, provides financial services to the IRGC. IRGC members received their salaries through Ansar Bank. In addition, Ansar Bank provides special benefits to IRGC personnel, including reduced rates for home furnishings, free or reduced-cost healthcare. (Phone number):+98 2122815280 5. +982122810046 (fax) (Website):www.ansarbank.com (Email address):info@ansarbank.com. info@ansarbank.net (Type of entity):Banking (Subsidiaries):Established by Bonyad Taavon Sepah (aka IRGC Cooperative Foundation)",Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11581 +BANK DABRABYT JOINT STOCK COMPANY,,,,,,,Банк Дабрабыт,Russian,Cyrillic,,,,,,,,,,premises 1,Kommunisticheskaya Str. 49,,,,Minsk,,Belarus,(UK Sanctions List Ref):BEL0120 (UK Statement of Reasons):Bank Dabrabyt JSC is an involved person under The Republic of Belarus (Sanctions) (EU Exit) 2019 because it is or has been obtaining a benefit from or supporting the Government of Belarus through carrying on business in a sector of strategic significance to the Government of Belarus.,Entity,Primary name,,Belarus,24/03/2022,24/03/2022,12/07/2022,14979 +BANK OF EAST LAND,,,,,,,,,,,,,,,,,,,PO Box 32,BEL Building,Jonseung-Dung,,Moranbong District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0126 (UN Ref):KPe.013 DPRK financial institution Bank of East Land facilitates weapons-related transactions for, and other support to, arms manufacturer and exporter Green Pine Associated Corporation (Green Pine). Bank of East Land has actively worked with Green Pine to transfer funds in a manner that circumvents sanctions. In 2007 and 2008, Bank of East Land facilitated transactions involving Green Pine and Iranian financial institutions, including Bank Melli and Bank Sepah. The Security Council designated Bank Sepah in resolution 1747 (2007) for providing support to Iran’s ballistic missile program. Green Pine was designated by the Committee in April 2012.",Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12451 +BANK OF RUSSIA,,,,,,,,,,,,,,,,,,,Rastrelli Square,2A,Saint-Petersburg,,,,191124,,"(UK Sanctions List Ref):RUS0232 (UK Statement of Reasons):Bank “Rossiya” is a Russian bank privately owned by elite Russian billionaires with direct links to Putin. Bank “Rossiya” also has important stakes in the National Media Group, which controls television stations which actively support the Russian Government's policies of destabilisation in Ukraine.  Since the annexation of Crimea, Bank “Rossiya” has opened branches across Crimea and Sevastopol, and provided travel cards for the public to travel across the peninsula thereby supporting the integration of Crimea and Sevastopol into the Russian Federation through the financial system.  Bank “Rossiya” has also contributed to the provision of insurance and investment throughout Crimea and Sevastopol and services to support military capability and major transport links.  Bank “Rossiya” therefore is or has been involved in providing financial services, or making available funds, economic resources, goods or technology and  engaging in, providing support for, or promoting any policy or action  that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Website):https://abr.ru/ (Type of entity):Public Joint Stock Company (PJSC) (Business Reg No):License number: 328 INN: 7831000122 OGRN: 1027800000084",Entity,AKA,,Russia,22/02/2022,22/02/2022,22/02/2022,14177 +BANK OTKRITIE FINANCIAL CORPORATION PJSC,,,,,,,ПАО Банк Финансовая Корпорация Открытие,,,,,,,,,,,,Street Letnikovskaya Stroenie 4,Building 2,,,,Moscow,115114,Russia,"(UK Sanctions List Ref):RUS0254 (UK Statement of Reasons):Bank Otkritie Financial Corporation PJSC (hereafter 'Otkritie') is the only bank of systematic importance that is owned by the Central Bank of Russia (CBR). Otkritie is the 8th largest bank in Russia with assets of approximately 3.2 trillion Rubles (3% of the total assets in the financial sector). It is supporting and obtaining a benefit from the Government of Russia. Otkritie is owned by the Central Bank of Russia, part of the Government of Russia. It is also carrying on business of economic significance to the Government of Russia. Furthermore, Otkritie is carrying on business in the Russian financial services sector which is a sector of strategic importance to the Government of Russia. (Phone number):+7 (495) 737-73-55 (Website):www.open.ru/en/ (Email address):otkritie@otkritie.ru (Type of entity):Public Joint-Stock Company",Entity,Primary name,,Russia,28/02/2022,28/02/2022,28/02/2022,14199 +BANK ROSSIYA,,,,,,,"Акционерное общество ""Акционерный Банк 'РОССИЯ'""",,,,,,,,,,,,Rastrelli Square,2A,Saint-Petersburg,,,,191124,,"(UK Sanctions List Ref):RUS0232 (UK Statement of Reasons):Bank “Rossiya” is a Russian bank privately owned by elite Russian billionaires with direct links to Putin. Bank “Rossiya” also has important stakes in the National Media Group, which controls television stations which actively support the Russian Government's policies of destabilisation in Ukraine.  Since the annexation of Crimea, Bank “Rossiya” has opened branches across Crimea and Sevastopol, and provided travel cards for the public to travel across the peninsula thereby supporting the integration of Crimea and Sevastopol into the Russian Federation through the financial system.  Bank “Rossiya” has also contributed to the provision of insurance and investment throughout Crimea and Sevastopol and services to support military capability and major transport links.  Bank “Rossiya” therefore is or has been involved in providing financial services, or making available funds, economic resources, goods or technology and  engaging in, providing support for, or promoting any policy or action  that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Website):https://abr.ru/ (Type of entity):Public Joint Stock Company (PJSC) (Business Reg No):License number: 328 INN: 7831000122 OGRN: 1027800000084",Entity,Primary name,,Russia,22/02/2022,22/02/2022,22/02/2022,14177 +BANNA PROPERTIES,,,,,,,,,,,,,,,,,,,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,P.O. Box 9525,,,Syria,"(UK Sanctions List Ref):SYR0283 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime. He is an influential member of the Makhlouf family and closely connected to the Asad family; cousin of President Bashar al-Asad. (Type of entity):Private. Real Estate (Subsidiaries):Cham Holdings (parent), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525 (Parent company):Cham Holdings",Entity,AKA,,Syria,24/06/2011,31/12/2020,31/12/2020,12017 +BANYAS,,,,,,,,,,,,,,,,,,,26 Latkia Main Road,,,,PO Box 26,Tartous,,Syria,"(UK Sanctions List Ref):SYR0338 Oil and Gas sector. (UK Statement of Reasons):Entity is subsidiary of General Corporation of Petroleum Products, a section of the Ministry of Petroleum and Mineral Resources. And as such provides financial support to Syrian regime. (Phone number):+963 43711100 (Email address):brc3@tarassul.sy (Type of entity):Subsidiary of General Corporation for Refining and Distribution of Pretroleum Products, a section of the Ministry of Petroleum and Minerals",Entity,AKA,,Syria,23/07/2014,31/12/2020,31/12/2020,13028 +BANYAS,,,,,,,,,,,,,,,,,,,"352, Tripoli Street",,,,PO Box 352,Homs,,,"(UK Sanctions List Ref):SYR0338 Oil and Gas sector. (UK Statement of Reasons):Entity is subsidiary of General Corporation of Petroleum Products, a section of the Ministry of Petroleum and Mineral Resources. And as such provides financial support to Syrian regime. (Phone number):+963 43711100 (Email address):brc3@tarassul.sy (Type of entity):Subsidiary of General Corporation for Refining and Distribution of Pretroleum Products, a section of the Ministry of Petroleum and Minerals",Entity,AKA,,Syria,23/07/2014,31/12/2020,31/12/2020,13028 +BAOBEILONG,,,,,,,,,,10/09/1981,,,China,,,,,,,,,,,,,,"(UK Sanctions List Ref):CYB0002 (UK Statement of Reasons):Zhang Shilong was involved in relevant cyber activity through his employment with Huaying Haitai, and therefore being responsible for, engaging in, providing support for, or promoting the commission, planning or preparation of relevant cyber activity. (Gender):Male",Individual,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13904 +BAQI,Abdul,,,,,,,,,00/00/1962,"(1) Jalalabad City, Nangarhar Province. (2) Shinwar District, Nangarhar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,"(1) Consular Department, Ministry of Foreign Affairs under the Taliban regime. (2) Governor of Khost and Paktika provinces under the Taliban regime. (3) Vice-Minister of Information and Culture under the Taliban regime",,,,,,,,,(UK Sanctions List Ref):AFG0034 (UN Ref):TAi.038 Believed to be in Afghanistan/Pakistan border area. Taliban member responsible for Nangarhar Province as at 2008. Until 7 Sep. 2007 he was also listed under number TAi.048. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6904 +BAQI,Abdul,,,,,,,,,00/00/1961,"(1) Jalalabad City, Nangarhar Province. (2) Shinwar District, Nangarhar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,"(1) Consular Department, Ministry of Foreign Affairs under the Taliban regime. (2) Governor of Khost and Paktika provinces under the Taliban regime. (3) Vice-Minister of Information and Culture under the Taliban regime",,,,,,,,,(UK Sanctions List Ref):AFG0034 (UN Ref):TAi.038 Believed to be in Afghanistan/Pakistan border area. Taliban member responsible for Nangarhar Province as at 2008. Until 7 Sep. 2007 he was also listed under number TAi.048. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6904 +BAQI,Abdul,,,,,,,,,00/00/1960,"(1) Jalalabad City, Nangarhar Province. (2) Shinwar District, Nangarhar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,"(1) Consular Department, Ministry of Foreign Affairs under the Taliban regime. (2) Governor of Khost and Paktika provinces under the Taliban regime. (3) Vice-Minister of Information and Culture under the Taliban regime",,,,,,,,,(UK Sanctions List Ref):AFG0034 (UN Ref):TAi.038 Believed to be in Afghanistan/Pakistan border area. Taliban member responsible for Nangarhar Province as at 2008. Until 7 Sep. 2007 he was also listed under number TAi.048. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6904 +BARA,Abu,,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,AKA,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +BARADAR,Abdul Ghani,,,,,,,,,00/00/1968,"Yatimak village, Dehrawood District, Uruzgan Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Defence under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0024 (UN Ref):TAi.024 Arrested in Feb. 2010 and in custody in Pakistan. Extradition request to Afghanistan pending in Lahore High Court, Pakistan as of June 2011. Belongs to Popalzai tribe. Senior Taliban military commander and member of Taliban Quetta Council as of May 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7060 +BARAICH,Naeem,Mullah,,,,,,,,00/00/1975,"(1) Lakhi village, Hazarjuft area, Garmsir District, Helmand Province (2) Laki village, Garmsir District, Helmand Province (3) Lakari village, Garmsir District, Helmand Province (4) Darvishan, Garmsir District, Helmand Province (5) De Luy Wiyalah village, Garmsir District, Helmand Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan (5) Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation under the Taliban,,,,,,,,,(UK Sanctions List Ref):AFG0015 (UN Ref):TAi.013 Member of the Taliban Military Commission as at mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7354 +BARAKAT,Ali,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0249 (UK Statement of Reasons):103rd Brigade of the Republican Guard Division. Military official involved in the violence in Homs.,Individual,Primary name,,Syria,02/12/2011,31/12/2020,13/05/2022,12417 +BARAKHOEV,Bekhan,Abdulkhamidovich,,,,,Барахоев Бекхан Абдулхамидович,,,01/08/1973,Nazran,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0311 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14256 +BARAKHOYEV,Mukharbek,Oybertovich,,,,,Мухарбек Ойбертович Барахоев,,,04/01/1971,Alkun,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0873 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14824 +BARAKZAI,Abdul Satar,,,,,,,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Abdul Satar Food Shop,Ayno Mina 0093,,,,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +BARAKZAI,Abdul Satar,,,,,,,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Chaman,,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +BARAKZAI,Abdul Satar,,,,,,,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Kachray Road,Pashtunabad,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +BARAKZAI,Abdul Satar,,,,,,,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Nasrullah Khan Chowk,Pashtunabad Area,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +BARAKZAI,Satar,,,,,,,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Abdul Satar Food Shop,Ayno Mina 0093,,,,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +BARAKZAI,Satar,,,,,,,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Chaman,,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +BARAKZAI,Satar,,,,,,,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Kachray Road,Pashtunabad,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +BARAKZAI,Satar,,,,,,,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Nasrullah Khan Chowk,Pashtunabad Area,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +BARAZI,Talal,,,,,,,,,00/00/1963,Hama City,Syria,,,,,,Former Minister of Internal Trade and Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0360 (UK Statement of Reasons):Former Minister of Internal Trade and Consumer Protection. Appointed in May 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population. (Gender):Male",Individual,AKA,,Syria,16/10/2020,31/12/2020,13/05/2022,13976 +BARAZZI,Talal,,,,,,,,,00/00/1963,Hama City,Syria,,,,,,Former Minister of Internal Trade and Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0360 (UK Statement of Reasons):Former Minister of Internal Trade and Consumer Protection. Appointed in May 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population. (Gender):Male",Individual,AKA,,Syria,16/10/2020,31/12/2020,13/05/2022,13976 +BARBER,Essam,,,,,,,,,,,,,,,,,Air Force Chief of Staff since 2010,,,,,,,,,(UK Sanctions List Ref):SYR0104 (UK Statement of Reasons):Air Force Chief of Staff holding the rank of Major General since 2010. Responsible for commanding air operations against opponents and other activities by the Syrian Air Force involving the repression of the civilian population. (Gender):Male,Individual,AKA,,Syria,24/07/2012,31/12/2020,13/05/2022,12729 +BARBER,Issam,,,,,,,,,,,,,,,,,Air Force Chief of Staff since 2010,,,,,,,,,(UK Sanctions List Ref):SYR0104 (UK Statement of Reasons):Air Force Chief of Staff holding the rank of Major General since 2010. Responsible for commanding air operations against opponents and other activities by the Syrian Air Force involving the repression of the civilian population. (Gender):Male,Individual,AKA,,Syria,24/07/2012,31/12/2020,13/05/2022,12729 +BARCHA,Mohamad,Fayez,,,,,,,,00/00/1955,Damascus,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0372 (UK Statement of Reasons):Minister of State. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,06/11/2020,31/12/2020,14/02/2022,14002 +BARCHA,Mohammad,,,,,,,,,00/00/1955,Damascus,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0372 (UK Statement of Reasons):Minister of State. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,06/11/2020,31/12/2020,14/02/2022,14002 +BARCHA,Mohammad,Fayez,,,,,,,,00/00/1955,Damascus,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0372 (UK Statement of Reasons):Minister of State. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,06/11/2020,31/12/2020,14/02/2022,14002 +BARCHUGOV,Pavel,,,,,,,,,,,,,,,,,Senior Managing Director at Sberbank,,,,,,,,,"(UK Sanctions List Ref):RUS1601 (UK Statement of Reasons):Pavel Barchugov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK). (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15545 +BARECH,Naeem,Mullah,,,,,,,,00/00/1975,"(1) Lakhi village, Hazarjuft area, Garmsir District, Helmand Province (2) Laki village, Garmsir District, Helmand Province (3) Lakari village, Garmsir District, Helmand Province (4) Darvishan, Garmsir District, Helmand Province (5) De Luy Wiyalah village, Garmsir District, Helmand Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan (5) Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation under the Taliban,,,,,,,,,(UK Sanctions List Ref):AFG0015 (UN Ref):TAi.013 Member of the Taliban Military Commission as at mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7354 +BARECH,Naim,,,,,Mullah,,,,00/00/1975,"(1) Lakhi village, Hazarjuft area, Garmsir District, Helmand Province (2) Laki village, Garmsir District, Helmand Province (3) Lakari village, Garmsir District, Helmand Province (4) Darvishan, Garmsir District, Helmand Province (5) De Luy Wiyalah village, Garmsir District, Helmand Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan (5) Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation under the Taliban,,,,,,,,,(UK Sanctions List Ref):AFG0015 (UN Ref):TAi.013 Member of the Taliban Military Commission as at mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7354 +BAREH,Naim,,,,,Mullah,,,,00/00/1975,"(1) Lakhi village, Hazarjuft area, Garmsir District, Helmand Province (2) Laki village, Garmsir District, Helmand Province (3) Lakari village, Garmsir District, Helmand Province (4) Darvishan, Garmsir District, Helmand Province (5) De Luy Wiyalah village, Garmsir District, Helmand Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan (5) Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation under the Taliban,,,,,,,,,(UK Sanctions List Ref):AFG0015 (UN Ref):TAi.013 Member of the Taliban Military Commission as at mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7354 +BAREY,Gibril,Abdul,Kareem,,,General,,,,01/01/1967,"Nile District, El-Fasher, North Darfur",,Sudan,,,(1) 192-3238459-9. (2) 302581.,(1) - (2) Certificate of nationality acquired through birth.,National Movement for Reform and Development (NMRD) Field Commander,,,,,,"Tine, Resides in Tine, on the Sudanese side of the border with Chad",,Sudan,(UK Sanctions List Ref):SUD0004 (UN Ref):SDi.004,Individual,AKA,Good quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8837 +BARGH AZARAKSH,,,,,,,,,,,,,,,,,,,No 599,Stage 3,Ata Al Malek Blvd,Emam Khomeini Street,,Esfahan,,Iran,"(UK Sanctions List Ref):INU0057 (UK Statement of Reasons):Company that has been contracted to work at the uranium enrichment sites at Natanz and Qom/Fordow on the electricity and piping works. It was in charge of designing, procuring and installing electrical control equipment at Natanz in 2010. (Type of entity):Enterprise",Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12250 +BARGHE AZERAKHSH SAKHT,,,,,,,,,,,,,,,,,,,No 599,Stage 3,Ata Al Malek Blvd,Emam Khomeini Street,,Esfahan,,Iran,"(UK Sanctions List Ref):INU0057 (UK Statement of Reasons):Company that has been contracted to work at the uranium enrichment sites at Natanz and Qom/Fordow on the electricity and piping works. It was in charge of designing, procuring and installing electrical control equipment at Natanz in 2010. (Type of entity):Enterprise",Entity,Primary name variation,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12250 +BARIC,Naeem,,,,,Mullah,,,,00/00/1975,"(1) Lakhi village, Hazarjuft area, Garmsir District, Helmand Province (2) Laki village, Garmsir District, Helmand Province (3) Lakari village, Garmsir District, Helmand Province (4) Darvishan, Garmsir District, Helmand Province (5) De Luy Wiyalah village, Garmsir District, Helmand Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan (5) Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation under the Taliban,,,,,,,,,(UK Sanctions List Ref):AFG0015 (UN Ref):TAi.013 Member of the Taliban Military Commission as at mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7354 +BARICH,Gul,Mohammed,Naim,,,Haji,,,,00/00/1975,"(1) Lakhi village, Hazarjuft area, Garmsir District, Helmand Province (2) Laki village, Garmsir District, Helmand Province (3) Lakari village, Garmsir District, Helmand Province (4) Darvishan, Garmsir District, Helmand Province (5) De Luy Wiyalah village, Garmsir District, Helmand Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan (5) Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation under the Taliban,,,,,,,,,(UK Sanctions List Ref):AFG0015 (UN Ref):TAi.013 Member of the Taliban Military Commission as at mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7354 +BARICH,Naim,,,,,Mullah,,,,00/00/1975,"(1) Lakhi village, Hazarjuft area, Garmsir District, Helmand Province (2) Laki village, Garmsir District, Helmand Province (3) Lakari village, Garmsir District, Helmand Province (4) Darvishan, Garmsir District, Helmand Province (5) De Luy Wiyalah village, Garmsir District, Helmand Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan (5) Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation under the Taliban,,,,,,,,,(UK Sanctions List Ref):AFG0015 (UN Ref):TAi.013 Member of the Taliban Military Commission as at mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7354 +BARKANI,Ali,,,,,,,,,22/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +BARKANI,Ali,,,,,,,,,26/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +BARKANI,Ali,,,,,,,,,,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +BARKANI,Ali,,,,,,,,,26/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +BARKANI,Ali,,,,,,,,,28/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +BARKANI,Ali,,,,,,,,,31/12/1979,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +BARKANI,Ali,,,,,,,,,10/06/1982,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +BARKHANOEV,Malik,Ruslanovich,,,,,,,,14/03/1992,"Ordzhonikidzevskaya village, Sunzhenskiy district, Ingushetia",Russia,Russia,,,,,,,,,,,Mosul,,Iraq,"(UK Sanctions List Ref):AQD0223 (UN Ref):QDi.405 Joined the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115) in September 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116563",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13516 +BAROQUE INVESTMENTS LIMITED,,,,,,,,,,,,,,,,,,,c/o ILS Fiduciaries (IOM) Ltd,First Floor,Millennium House,Victoria Road,Douglas,Isle of Man,,,(UK Sanctions List Ref):LIB0015 Based on Isle of Man (UK Statement of Reasons):Subsidiary of the Libyan Investment Authority owned or controlled directly or indirectly by a person involved with the former Qadhafi regime. (Business Reg No):59058C IOM,Entity,Primary name,,Libya,14/04/2011,31/12/2020,31/12/2020,11770 +BARRY,Amadou,,,,,,,,,00/00/1958,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0364 (UN Ref):QDi.425 Founder of the Katiba Macina of Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159), executive of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Eye colour: brown. Hair colour: dark. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/02/2020,04/02/2020,31/12/2020,13812 +BARSUKOU,Alexander,Petrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13924 +BARSUKOU,Alexander,Petrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13924 +BARSUKOU,Alexsandr,Petrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13924 +BARSUKOU,Alexsandr,Petrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13924 +BARSUKOU,Aliaksandr,Piatrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13924 +BARSUKOU,Aliaksandr,Piatrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13924 +BARSUKOU,Alyaksandr,Petrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13924 +BARSUKOU,Alyaksandr,Petrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13924 +BARSUKOU,Alyaksandr,Piatrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13924 +BARSUKOU,Alyaksandr,Piatrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13924 +BARSUKOV,Alexander,Petrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,31/12/2020,13924 +BARSUKOV,Alexander,Petrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13924 +BARSUKOV,Alexander,Petrovich,,,,,"БАРСУКОВ, Александр Петрович",,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,31/12/2020,13924 +BARSUKOV,Alexander,Petrovich,,,,,"БАРСУКОВ, Александр Петрович",,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13924 +BARSUKOV,Alexsandr,Petrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13924 +BARSUKOV,Alexsandr,Petrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13924 +BARSUKOV,Aliaksandr,Piatrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13924 +BARSUKOV,Aliaksandr,Piatrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13924 +BARSUKOV,Alyaksandr,Petrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13924 +BARSUKOV,Alyaksandr,Petrovich,,,,,,,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13924 +BARSUKOV,Alyaksandr,Piatrovich,,,,,"БАРСУКОЎ, Аляксандр Пятровіч",,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13924 +BARSUKOV,Alyaksandr,Piatrovich,,,,,"БАРСУКОЎ, Аляксандр Пятровіч",,,29/04/1965,"Vetkovsky/Vetkovski district, Gomel region",Former USSR Currently Belarus,Belarus,,,,,"(1) Chief of Public Security Police. Deputy Minister of Internal Affairs of the Republic of Belarus (2) Deputy Minister of Internal Affairs of the Republic of Belarus, Chief of Public Security Police",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0007 and GHR0056 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Alexander Petrovich Barsukov is the Deputy Minister of Internal Affairs and Chief of the Public Security Police. In his role as Deputy Internal Minister and Chief of the Public Security Police, he is responsible for the actions of the Public Security Police and therefore responsible for the serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13924 +BARYALAI,,,,,,,,,,00/00/1968,"(1) Pashtoon Zarghoon District, Herat Province. (2) Sardar village, Kohsan District, Herat Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,(1) Governor of Kabul Province under the Taliban regime (2) Governor of Balk Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0075 (UN Ref):TAi.097 Taliban member responsible for Herat, Farah and Nimroz provinces as at mid-2013. Member of the Taliban Supreme Council and Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe. Involved in transporting suicide bombers to Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,02/04/2001,25/01/2001,01/02/2021,7380 +BARYALY,,,,,,,,,,00/00/1968,"(1) Pashtoon Zarghoon District, Herat Province. (2) Sardar village, Kohsan District, Herat Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,(1) Governor of Kabul Province under the Taliban regime (2) Governor of Balk Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0075 (UN Ref):TAi.097 Taliban member responsible for Herat, Farah and Nimroz provinces as at mid-2013. Member of the Taliban Supreme Council and Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe. Involved in transporting suicide bombers to Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,02/04/2001,25/01/2001,01/02/2021,7380 +BARZAGANI TEJARAT TAVANMAD SACCAL COMPANIES,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0136 (UN Ref):IRe.008 A subsidiary of Saccal System companies, this company tried to purchase sensitive goods for an entity listed in resolution 1737 (2006). [Old Reference # E.03.III.2] (Parent company):Saccal System companies",Entity,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,31/12/2020,10442 +BARZEGAR-GANJI,Mostafa,,,,,,,,,,,,,,,,,(1) Head of the Directorate General for prisons (2) Director General of Supervision of Courts and Officers of the Attorney General’s Office (3) Assistant Prosecutor in Supreme Court,,,,,,,,,"(UK Sanctions List Ref):IHR0068 (UK Statement of Reasons):Prosecutor-General of Qom (2008-2017), now head of the directorate general for prisons. He was responsible for the arbitrary detention and maltreatment of dozens of offenders in Qom. He was complicit in a grave violation of the right to due process, contributing to the excessive and increasing use of the death penalty and a sharp increase in executions in 2009/2010. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12180 +BAS,Alexander,Ivanovich,,,,Colonel,БАС Александр Иванович,Cyrillic,Russian,17/08/1971,Khotomel,Belarus,Belarus,,,,,Deputy Commander of the Western Operational Command,,,,,,,,,"(UK Sanctions List Ref):RUS0739 (UK Statement of Reasons):Colonel Alexander Ivanovich BAS is the Deputy Commander of the Western Operational Command of the Belarus armed forces. There are reasonable grounds to suspect that he participated in joint-exercises with the Russian military ahead of Russia’s invasion of Ukraine. Therefore, he has been involved in engaging or providing support for policies and actions that destablises Ukraine or undermines or threatens the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14690 +BASANSKY,Anton,Alexandrovich,,,,,Басанский Антон Александрович,,,09/07/1987,Palatka,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0312 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14257 +BASEER,Abdul,,,,,,,,,00/00/1965,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +BASEER,Abdul,,,,,,,,,00/00/1960,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +BASEER,Abdul,,,,,,,,,00/00/1963,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +BASHANKAEV,Badma,Nikolaevich,,,,,Башанкаев Бадма Николаевич,,,16/06/1978,Pyatigorsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0314 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14259 +BASHAR,Qari,Ayub,,,,Alhaj,,,,00/00/1966,,,(1) Uzbekistan. (2) Afghanistan,,,,,,Mir Ali,,,,North Waziristan Agency,Federal Administered Tribal Areas,,Pakistan,"(UK Sanctions List Ref):AQD0152 (UN Ref):QDi.311 Member of leadership council as of early 2010 and head of finance for the Islamic Movement of Uzbekistan (QDe.010). Coordinated financial and logistical support for the Islamic Movement of Uzbekistan in Afghanistan and Pakistan between 2009-2012. Transferred and delivered funds to Fazal Rahim (QDi.303). Reportedly deceased in an airstrike in Chordar, Kunduz Province of Afghanistan in Dec. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741655",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/10/2012,18/10/2012,16/02/2022,12808 +BASHAR,Qari,Ayub,,,,Alhaj,,,,00/00/1964,,,(1) Uzbekistan. (2) Afghanistan,,,,,,Mir Ali,,,,North Waziristan Agency,Federal Administered Tribal Areas,,Pakistan,"(UK Sanctions List Ref):AQD0152 (UN Ref):QDi.311 Member of leadership council as of early 2010 and head of finance for the Islamic Movement of Uzbekistan (QDe.010). Coordinated financial and logistical support for the Islamic Movement of Uzbekistan in Afghanistan and Pakistan between 2009-2012. Transferred and delivered funds to Fazal Rahim (QDi.303). Reportedly deceased in an airstrike in Chordar, Kunduz Province of Afghanistan in Dec. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741655",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/10/2012,18/10/2012,16/02/2022,12808 +BASHAR,Qari,Ayub,,,,Alhaj,,,,00/00/1969,,,(1) Uzbekistan. (2) Afghanistan,,,,,,Mir Ali,,,,North Waziristan Agency,Federal Administered Tribal Areas,,Pakistan,"(UK Sanctions List Ref):AQD0152 (UN Ref):QDi.311 Member of leadership council as of early 2010 and head of finance for the Islamic Movement of Uzbekistan (QDe.010). Coordinated financial and logistical support for the Islamic Movement of Uzbekistan in Afghanistan and Pakistan between 2009-2012. Transferred and delivered funds to Fazal Rahim (QDi.303). Reportedly deceased in an airstrike in Chordar, Kunduz Province of Afghanistan in Dec. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741655",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/10/2012,18/10/2012,16/02/2022,12808 +BASHAR,Qari,Ayub,,,,Alhaj,,,,00/00/1971,,,(1) Uzbekistan. (2) Afghanistan,,,,,,Mir Ali,,,,North Waziristan Agency,Federal Administered Tribal Areas,,Pakistan,"(UK Sanctions List Ref):AQD0152 (UN Ref):QDi.311 Member of leadership council as of early 2010 and head of finance for the Islamic Movement of Uzbekistan (QDe.010). Coordinated financial and logistical support for the Islamic Movement of Uzbekistan in Afghanistan and Pakistan between 2009-2012. Transferred and delivered funds to Fazal Rahim (QDi.303). Reportedly deceased in an airstrike in Chordar, Kunduz Province of Afghanistan in Dec. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741655",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/10/2012,18/10/2012,16/02/2022,12808 +BASHIR,,,,,,,,,,00/00/1994,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +BASHIR,,,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +BASHIR,,,,,,,,,,00/00/1995,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +BASHIR,,,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +BASHIR,Abd Al-Rahim,,,,,,,,,16/11/1977,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BASHIR,Abd Al-Rahim,,,,,,,,,16/11/1974,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BASHIR,Abdul,Rosyid,Ridho,,,,,,,31/01/1974,Sukoharjo,Indonesia,Indonesia,,,1127083101740003,Indonesian National Identity Card number under name Abdul Rosyid Ridho Ba’asyir,,Podok Pesantren,Al Wayain Ngrandu,Sumber Agung Magetan,,,East Java,,Indonesia,(UK Sanctions List Ref):AQD0108 (UN Ref):QDi.305 Father's name is Abu Bakar Ba'asyir (QDi.217). Brother of Abdul Rahim Ba’aysir (QDi.293). Belongs to the leadership of and is involved in recruitment and fundraising for Jemmah Anshorut Tauhid (JAT) (QDe.133) Associated with Jemaah Islamiyah (QDe.092). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4682206,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,12/01/2022,12628 +BASHIR,Abdul Rachim,,,,,,,,,16/11/1977,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BASHIR,Abdul Rachim,,,,,,,,,16/11/1974,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BASHIR,Abdul Rahim,,,,,,,,,16/11/1977,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BASHIR,Abdul Rahim,,,,,,,,,16/11/1974,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BASHIR,Abdul Rochim,,,,,,,,,16/11/1977,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BASHIR,Abdul Rochim,,,,,,,,,16/11/1974,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BASHIR,Abdurochim,,,,,,,,,16/11/1977,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BASHIR,Abdurochim,,,,,,,,,16/11/1974,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BASHIR,Abdurrahim,,,,,,,,,16/11/1977,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BASHIR,Abdurrahim,,,,,,,,,16/11/1974,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BASHIR,Abdurrahman,,,,,,,,,16/11/1977,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BASHIR,Abdurrahman,,,,,,,,,16/11/1974,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BASHIR,Abdurrochim,,,,,,,,,16/11/1977,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BASHIR,Abdurrochim,,,,,,,,,16/11/1974,"(1) Solo (2) Sukoharjo, Central Java",(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0106 (UN Ref):QDi.293 Senior Jemaah Islamiyah (QDe.092.) leader. Father's name is Abu Bakar Ba'asyir (QDi.217). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173405,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,31/12/2020,12020 +BASHIR,Abu,Bakar,,,,,,,,17/08/1938,"Jombang, East Java",Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,"(UK Sanctions List Ref):AQD0114 (UN Ref):QDi.217 Formed Jemmah Anshorut Tauhid (JAT) (QDe.133) in 2008. In 2010, arrested for incitement to commit terrorism and fundraising with respect to a training camp in Aceh, Indonesia and sentenced to 15 years in 2011. Ba'asyir was released from prison on 8 January 2021 after serving his sentence in accordance with Indonesian laws and regulations. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 24 November 2020. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1428633",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,07/04/2021,8831 +BASHIR,Ali,Lalobo,,,,,,,,00/00/1994,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +BASHIR,Ali,Lalobo,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +BASHIR,Ali,Lalobo,,,,,,,,00/00/1995,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +BASHIR,Ali,Lalobo,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +BASHIR,Rashid,Rida,,,,,,,,31/01/1974,Sukoharjo,Indonesia,Indonesia,,,1127083101740003,Indonesian National Identity Card number under name Abdul Rosyid Ridho Ba’asyir,,Podok Pesantren,Al Wayain Ngrandu,Sumber Agung Magetan,,,East Java,,Indonesia,(UK Sanctions List Ref):AQD0108 (UN Ref):QDi.305 Father's name is Abu Bakar Ba'asyir (QDi.217). Brother of Abdul Rahim Ba’aysir (QDi.293). Belongs to the leadership of and is involved in recruitment and fundraising for Jemmah Anshorut Tauhid (JAT) (QDe.133) Associated with Jemaah Islamiyah (QDe.092). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4682206,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,12/01/2022,12628 +BASHIR,AYYUB,,,,,(1) Qari (2) Alhaj,ایوب بشیر,,,00/00/1966,,,(1) Uzbekistan. (2) Afghanistan,,,,,,Mir Ali,,,,North Waziristan Agency,Federal Administered Tribal Areas,,Pakistan,"(UK Sanctions List Ref):AQD0152 (UN Ref):QDi.311 Member of leadership council as of early 2010 and head of finance for the Islamic Movement of Uzbekistan (QDe.010). Coordinated financial and logistical support for the Islamic Movement of Uzbekistan in Afghanistan and Pakistan between 2009-2012. Transferred and delivered funds to Fazal Rahim (QDi.303). Reportedly deceased in an airstrike in Chordar, Kunduz Province of Afghanistan in Dec. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741655",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,30/10/2012,18/10/2012,16/02/2022,12808 +BASHIR,AYYUB,,,,,(1) Qari (2) Alhaj,ایوب بشیر,,,00/00/1964,,,(1) Uzbekistan. (2) Afghanistan,,,,,,Mir Ali,,,,North Waziristan Agency,Federal Administered Tribal Areas,,Pakistan,"(UK Sanctions List Ref):AQD0152 (UN Ref):QDi.311 Member of leadership council as of early 2010 and head of finance for the Islamic Movement of Uzbekistan (QDe.010). Coordinated financial and logistical support for the Islamic Movement of Uzbekistan in Afghanistan and Pakistan between 2009-2012. Transferred and delivered funds to Fazal Rahim (QDi.303). Reportedly deceased in an airstrike in Chordar, Kunduz Province of Afghanistan in Dec. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741655",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,30/10/2012,18/10/2012,16/02/2022,12808 +BASHIR,AYYUB,,,,,(1) Qari (2) Alhaj,ایوب بشیر,,,00/00/1969,,,(1) Uzbekistan. (2) Afghanistan,,,,,,Mir Ali,,,,North Waziristan Agency,Federal Administered Tribal Areas,,Pakistan,"(UK Sanctions List Ref):AQD0152 (UN Ref):QDi.311 Member of leadership council as of early 2010 and head of finance for the Islamic Movement of Uzbekistan (QDe.010). Coordinated financial and logistical support for the Islamic Movement of Uzbekistan in Afghanistan and Pakistan between 2009-2012. Transferred and delivered funds to Fazal Rahim (QDi.303). Reportedly deceased in an airstrike in Chordar, Kunduz Province of Afghanistan in Dec. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741655",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,30/10/2012,18/10/2012,16/02/2022,12808 +BASHIR,AYYUB,,,,,(1) Qari (2) Alhaj,ایوب بشیر,,,00/00/1971,,,(1) Uzbekistan. (2) Afghanistan,,,,,,Mir Ali,,,,North Waziristan Agency,Federal Administered Tribal Areas,,Pakistan,"(UK Sanctions List Ref):AQD0152 (UN Ref):QDi.311 Member of leadership council as of early 2010 and head of finance for the Islamic Movement of Uzbekistan (QDe.010). Coordinated financial and logistical support for the Islamic Movement of Uzbekistan in Afghanistan and Pakistan between 2009-2012. Transferred and delivered funds to Fazal Rahim (QDi.303). Reportedly deceased in an airstrike in Chordar, Kunduz Province of Afghanistan in Dec. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741655",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,30/10/2012,18/10/2012,16/02/2022,12808 +BASHIROV,Marat,Faatovich,,,,,Марат Фаатович БАШИРОВ,,,20/01/1964,Izhevsk,Russia,Russia,,,,,"Former so-called ""Prime Minister of the Council of Ministers of the Lugansk People's Republic.",,,,,,,,,"(UK Sanctions List Ref):RUS0071 (UK Statement of Reasons):Former so called ""Prime Minister of the Council of Ministers of the People's Republic of Luhansk, confirmed on 8 July 2014. Responsible for the separatist ""governmental"" activities of the so called ""government of the People's Republic of Luhansk."" Continues activities of supporting LNR separatist structures. (Gender):Male",Individual,Primary name,,Russia,12/07/2014,31/12/2020,16/09/2022,13013 +BASHIRUDDIN,Mahmood,Sultan,,,,,,,,00/00/1937,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHIRUDDIN,Mahmood,Sultan,,,,,,,,00/00/1938,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHIRUDDIN,Mahmood,Sultan,,,,,,,,00/00/1939,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHIRUDDIN,Mahmood,Sultan,,,,,,,,00/00/1940,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHIRUDDIN,Mahmood,Sultan,,,,,,,,00/00/1941,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHIRUDDIN,Mahmood,Sultan,,,,,,,,00/00/1942,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHIRUDDIN,Mahmood,Sultan,,,,,,,,00/00/1943,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHIRUDDIN,Mahmood,Sultan,,,,,,,,00/00/1944,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHIRUDDIN,Mahmood,Sultan,,,,,,,,00/00/1945,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHIR-UD-DIN,MAHMOOD,SULTAN,,,,,,,,00/00/1937,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHIR-UD-DIN,MAHMOOD,SULTAN,,,,,,,,00/00/1938,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHIR-UD-DIN,MAHMOOD,SULTAN,,,,,,,,00/00/1939,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHIR-UD-DIN,MAHMOOD,SULTAN,,,,,,,,00/00/1940,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHIR-UD-DIN,MAHMOOD,SULTAN,,,,,,,,00/00/1941,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHIR-UD-DIN,MAHMOOD,SULTAN,,,,,,,,00/00/1942,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHIR-UD-DIN,MAHMOOD,SULTAN,,,,,,,,00/00/1943,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHIR-UD-DIN,MAHMOOD,SULTAN,,,,,,,,00/00/1944,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHIR-UD-DIN,MAHMOOD,SULTAN,,,,,,,,00/00/1945,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +BASHKIN,Aleksandr,Davidovich,,,,,Александр Давыдович БАШКИН,,,10/06/1962,Astrakhan,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0894 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14845 +BASIR,Abdul,,,,,,,,,00/00/1965,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +BASIR,Abdul,,,,,,,,,00/00/1960,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +BASIR,Abdul,,,,,,,,,00/00/1963,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +BASIR,Abdul,,,,,Haji,,,,00/00/1965,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +BASIR,Abdul,,,,,Haji,,,,00/00/1960,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +BASIR,Abdul,,,,,Haji,,,,00/00/1963,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +BASIR,Abdul Qadir,,,,,,,,,00/00/1964,"(1) Hisarak District, Nangarhar Province. (2) Surkh Rod District, Nangarhar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,D 000974,Afghanistan number,,,"(1) Head of Taliban Peshawar Financial Commission. (2) Military Attache, Taliban Embassy, Islamabad, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0098 (UN Ref):TAi.128 Financial advisor to Taliban Peshawar Military Council and Head of Taliban Peshawar Financial Commission. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6911 +BASOVA,Lidia,Aleksandrovna,,,,,"Басова, Лидия Александровна",,,00/00/1975,,,Russia,,,,,Vice-Chair Sevastopol City Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0220 (UK Statement of Reasons):As the former Vice-Chair of the Sevastopol City Electoral Commission, Basova organised local elections under Russian law and in violation of the Constitution and law of Ukraine, Basova undermined Ukrainian sovereignty and territorial integrity, helping facilitate the integration of Sevastopol into Russia. (Gender):Female",Individual,Primary name,,Russia,28/01/2020,31/12/2020,16/09/2022,13806 +BASQUE HOMELAND AND LIBERTY,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0043 (UK Statement of Reasons):Euskadi Ta Askatasuna (ETA) seeks the creation of an independent state comprising the Basque regions of both Spain and France. It is responsible for the killings of over 800 individuals in numerous terrorist attacks since 1968, including but not limited to, the bombing of Hipercor in Barcelona (June 1987). Its most recent attack, resulting in two deaths, took place in 2009.",Entity,AKA,,Counter-Terrorism (International),02/11/2001,31/12/2020,11/03/2022,7083 +BASTAN TEJERAT MABNA,,,,,,,,,,,,,,,,,,,No 15,Eighth Street,Pakistan Avenue,Shahid Beheshti Avenue,,Tehran,,Iran,(UK Sanctions List Ref):INU0099 (UK Statement of Reasons):Has been involved in procurement of materials that are controlled and have direct applications in the manufacture of centrifuges for Iran's uranium enrichment programme. (Phone number):+98 21 88 73 77 53 (Website):www.pooyawave.com (Email address):info@pooyawave.com (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11541 +BASTARDO MENDOZA,Rafael,Enrique,,,,,,,,22/09/1978,"Coche, Libertador, Capital District",Venezuela,Venezuela,,,14.335.819,,Previous Commander of FAES (Special Action Forces) until 2019,,,,,,,,,"(UK Sanctions List Ref):GHR0068 (UK Statement of Reasons):Rafael Bastardo was Commander of FAES, the Special Action Force of the Venezuelan National Police between 2017 and 2019. There is reliable evidence that FAES committed serious human rights violations during Bastardo’s period in command. The recent UN Independent International Fact Finding Mission (IIFFM) report shows reasonable grounds to suspect that FAES was involved in multiple cases of extrajudicial executions. As FAES Commander, Bastardo is responsible for the human rights violations committed by FAES forces under his command. (Gender):Male",Individual,Primary name,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14008 +BASTRYKIN,Alexander,Ivanovich,,,,,,,,27/08/1953,,Russia,Russia,,,,,Head of the Investigative Committee of Russia,,,,,,,,,(UK Sanctions List Ref):GHR0011 Went to university with Vladimir Putin (UK Statement of Reasons):Alexander Ivanovich Bastrykin was appointed First Deputy Prosecutor General and Head of the Investigative Committee under the Prosecutor’s Office on 22 June 2007; he continued as Chairman of the Investigative Committee after it became an independent body in January 2011. In this role Bastrykin was responsible for the investigation of the mistreatment and death of Sergei Magnitsky in detention and intentionally or recklessly failed to fulfil that responsibility. (Gender):Male,Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13867 +BASURIN,Eduard,Aleksandrovich,,,,,Эдуард Александрович БАСУРИН,,,27/06/1966,Donetsk,,,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0072 (UK Statement of Reasons):Spokesperson and Deputy Head of the ‘People’s Militia’ of the so-called ‘Donetsk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name,,Russia,16/02/2015,31/12/2020,16/09/2022,13203 +BASURIN,Eduard,Oleksandrovych,,,,,Едуард Олександрович БАСУРIН,,,27/06/1966,Donetsk,,,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0072 (UK Statement of Reasons):Spokesperson and Deputy Head of the ‘People’s Militia’ of the so-called ‘Donetsk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13203 +BATALOVA,Rima,Akberdinovna,,,,,Баталова Рима Акбердиновна,,,01/01/1964,"Sharansky District, Bashkortostan",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0313 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14258 +BATIRASHVILI,Tarkhan,,,,,,,,,11/01/1986,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +BATIRASHVILI,Tarkhan,,,,,,,,,00/00/1982,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +BATIRASHVILI,TARKHAN,TAYUMURAZOVICH,,,,,,,,11/01/1986,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +BATIRASHVILI,TARKHAN,TAYUMURAZOVICH,,,,,,,,00/00/1982,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +BATTALION GVARDEYSKY,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0197 Names of Director(s)/Management: Arseny Pavlov aka Motorola (deceased) (UK Statement of Reasons):Armed separatist group which has actively supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. Part of the so-called Armed Forces of “Donetsk People’s Republic”. (Website):Social Media: http://vk.com/kazak_nac_guard (Type of entity):Armed Separatist Group",Entity,AKA,,Russia,16/02/2015,31/12/2020,31/12/2020,13219 +BATTALION OF EMIGRANTS AND ANSAR,,,,,,,,,,,,,,,,,,,Jabal Turkuman area,,,,,Lattakia Governorate,,Syria,"(UK Sanctions List Ref):AQD0080 (UN Ref):QDe.148 Established by foreign terrorist fighters in 2013. Location: Syrian Arab Republic. Affiliated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115) and AI-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5887669",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/08/2015,06/08/2015,31/12/2020,13270 +BATTALION OF EMIGRANTS AND SUPPORTERS,,,,,,,,,,,,,,,,,,,Jabal Turkuman area,,,,,Lattakia Governorate,,Syria,"(UK Sanctions List Ref):AQD0080 (UN Ref):QDe.148 Established by foreign terrorist fighters in 2013. Location: Syrian Arab Republic. Affiliated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115) and AI-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5887669",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/08/2015,06/08/2015,31/12/2020,13270 +BATWARE,Laurent,Nkunda,,,,,,,,06/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +BATWARE,Laurent,Nkunda,,,,,,,,02/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +BATWARE,Laurent,Nkunda,Mahoro,,,,,,,06/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +BATWARE,Laurent,Nkunda,Mahoro,,,,,,,02/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +BATYRASHVILI,Tarkhan,Tayumurazovich,,,,,,,,11/01/1986,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +BATYRASHVILI,Tarkhan,Tayumurazovich,,,,,,,,00/00/1982,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +BAWAZIR,Mohamed,Ali,Abdullah,,,,,,,16/09/1973,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +BAWAZIR,Mohamed,Ali,Abdullah,,,,,,,01/05/1972,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +BAYEVSKY,Andrey,Vasilyevich,,,,,,,,19/08/1972,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1228 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15180 +BAYNAH,Yasin,Ali,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,,Mogadishu,Somalia,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,Primary name,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BAYNAH,Yasin,Ali,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,Rinkeby,Stockholm,Sweden,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,Primary name,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BAYNAH,Yasin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,,Mogadishu,Somalia,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BAYNAH,Yasin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,Rinkeby,Stockholm,Sweden,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BAYNAH,Yassin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,,Mogadishu,Somalia,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BAYNAH,Yassin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,Rinkeby,Stockholm,Sweden,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BAYNAX,Yasiin,Cali,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,,Mogadishu,Somalia,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BAYNAX,Yasiin,Cali,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,Rinkeby,Stockholm,Sweden,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BAYSAROV,Ruslan,Sulimovich,,,,,Руслан Сулимович Байса́ров,,,09/08/1968,Prigorodnoye,Russia,Russia,,,,,"Chairman of the Board of Directors, BTS-MOST JSC",,,,,,,,Russia,"(UK Sanctions List Ref):RUS1484 (UK Statement of Reasons):Ruslan Sulimovich BAYSAROV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because: (1) he owns or controls the Bamtonnelstroy-Most Group of Companies, one of Russia’s largest construction enterprises specialising in transport infrastructure; and (2) he serves as Chair of the Board of Directors of the Bamtonnelstroy-Most Joint Stock Company. Therefore, BAYSAROV is involved in obtaining a benefit from or supporting the Government of Russia by owning or controlling directly or indirectly, or working as a director (whether executive or non-executive) or equivalent, of a company carrying on business in sectors of strategic significance, namely the Russian construction and transport sectors. (Gender):Male",Individual,Primary name,,Russia,29/06/2022,29/06/2022,29/06/2022,15423 +BAZHAEV,Musa,Yusupovich,,,,,Муса Юсупович БАЖАЕВ,Cyrillic,Russian,11/05/1966,Achkoy Martan,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1320 (UK Statement of Reasons):Musa Yusupovich BAZHAEV (hereafter BAZHAEV) is President and Chairman of the Board of Directors of Russian Platinum LLC a palladium and platinum mining company. BAZHAEV   is obtaining a benefit from or supporting the Government of Russia by working as a Director of an entity in a sector of strategic significance to the Government of Russia, namely the Russian extractives sector.  (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15277 +BAZHAYEV,Musa,Yusupovich,,,,,,,,11/05/1966,Achkoy Martan,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1320 (UK Statement of Reasons):Musa Yusupovich BAZHAEV (hereafter BAZHAEV) is President and Chairman of the Board of Directors of Russian Platinum LLC a palladium and platinum mining company. BAZHAEV   is obtaining a benefit from or supporting the Government of Russia by working as a Director of an entity in a sector of strategic significance to the Government of Russia, namely the Russian extractives sector.  (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,02/08/2022,15277 +BAZHENOV,Timofey,Timofeevich,,,,,Баженов Тимофей Тимофеевич,,,25/01/1976,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0310 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14255 +BAZILEVSKY,Andrey,Alexandrovich,,,,,Андрей Александрович БАЗИЛЕВСКИЙ,,,24/02/1967,"Chegdomyn, Verkhnebureinsky district, Khabarovsk Territory",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0887 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14838 +BECHIR,,,,,,,,,,04/12/1964,Tabarka,Tunisia,Tunisia,L335915,"issue date: 08/11/1996, expiry date: 07/11/2001, issued in Milan, Italy",,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0256 (UN Ref):QDi.096 Considered a fugitive from justice by the Italian authorities (as of Oct. 2019). Left Sudan to Tunisia in 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,31/12/2020,7798 +BEENAH,Yasin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,,Mogadishu,Somalia,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BEENAH,Yasin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,Rinkeby,Stockholm,Sweden,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BEENAH,Yassin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,,Mogadishu,Somalia,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BEENAH,Yassin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,Rinkeby,Stockholm,Sweden,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BEENAX,Yasin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,,Mogadishu,Somalia,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BEENAX,Yasin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,Rinkeby,Stockholm,Sweden,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BEENAX,Yassin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,,Mogadishu,Somalia,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BEENAX,Yassin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,Rinkeby,Stockholm,Sweden,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BEGLOV,Alexander,Dmitryevich,,,,,БЕГЛОВ Александр Дмитриевич,Cyrillic,Russian,19/05/1956,Baku,Azerbaijan,Russia,,,,,Governor of St Petersburg,,,,,,,,,"(UK Sanctions List Ref):RUS0822 (UK Statement of Reasons):Alexander Dmitryevich BEGLOV is the Governor of Saint Petersburg. Through his public platform as Governor of Saint Petersburg, he has promoted and justified the invasion of Ukraine. There are therefore reasonable grounds to suspect that BEGLOV has provided support for, and/or promoted a policy or action which has destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14773 +BEHDIS TEJARAT,,,,,,,,,,,,,,,,,,,No 15,Eighth Street,Pakistan Avenue,Shahid Beheshti Avenue,,Tehran,,Iran,(UK Sanctions List Ref):INU0099 (UK Statement of Reasons):Has been involved in procurement of materials that are controlled and have direct applications in the manufacture of centrifuges for Iran's uranium enrichment programme. (Phone number):+98 21 88 73 77 53 (Website):www.pooyawave.com (Email address):info@pooyawave.com (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11541 +BEHDIS TEJARAT GENERAL TRADING COMPANY,,,,,,,,,,,,,,,,,,,No 15,Eighth Street,Pakistan Avenue,Shahid Beheshti Avenue,,Tehran,,Iran,(UK Sanctions List Ref):INU0099 (UK Statement of Reasons):Has been involved in procurement of materials that are controlled and have direct applications in the manufacture of centrifuges for Iran's uranium enrichment programme. (Phone number):+98 21 88 73 77 53 (Website):www.pooyawave.com (Email address):info@pooyawave.com (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11541 +BEHESHTI UNIVERSITY,,,,,,,,,,,,,,,,,,,P.O. Box 19395/4716,,,,,Tehran,19834,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +BEHESHTI UNIVERSITY,,,,,,,,,,,,,,,,,,,Shahid Beheshti University,,,,Evin,Tehran,1983963113,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +BEHINEH TRADING CO.,,,,,,,,,,,,,,,,,,,,,Tavakoli Building,Opposite of 15th Alley,Emam-Jomeh Street,Tehran,,Iran,"(UK Sanctions List Ref):INU0137 (UN Ref):IRe.009 An Iranian company that played a key role in Iran's illicit transfer of arms to West Africa and acted on behalf of the IRGC Qods Force, commanded by Major General Qasem Soleimani, designated by the UN Security Council in resolution 1747 (2007), as the shipper of the weapons consignment. [Old Reference # E.AC.50.18.04.12] (Phone number):98-919-538-2305 (Website):www.behinehco.ir",Entity,Primary name,,Iran (Nuclear),02/12/2011,18/04/2012,31/12/2020,12251 +BEHNAM SAHRIYARI TRADING COMPANY,,,,,,,,,,,,,,,,,,,Ziba Building,10th Floor,Northern Sohrevardi Street,,,Tehran,,Iran,(UK Sanctions List Ref):INU0058 (UK Statement of Reasons):Involved in the shipment of arms on behalf of the IRGC (Type of entity):Foundation,Entity,Primary name,,Iran (Nuclear),24/01/2012,31/12/2020,31/12/2020,12499 +BEHNAM SHAHRIARI TRADING COMPANY,,,,,,,,,,,,,,,,,,,Ziba Building,10th Floor,Northern Sohrevardi Street,,,Tehran,,Iran,(UK Sanctions List Ref):INU0058 (UK Statement of Reasons):Involved in the shipment of arms on behalf of the IRGC (Type of entity):Foundation,Entity,AKA,,Iran (Nuclear),24/01/2012,31/12/2020,31/12/2020,12499 +BEHNAM SHAHRYARI TRADING COMPANY,,,,,,,,,,,,,,,,,,,Ziba Building,10th Floor,Northern Sohrevardi Street,,,Tehran,,Iran,(UK Sanctions List Ref):INU0058 (UK Statement of Reasons):Involved in the shipment of arms on behalf of the IRGC (Type of entity):Foundation,Entity,AKA,,Iran (Nuclear),24/01/2012,31/12/2020,31/12/2020,12499 +BEK,Ghazqan,Khayrbik,,,,,,,,00/00/1961,Latakia,,Syria,,,,,Former Minister of Transport,,,,,,,,,"(UK Sanctions List Ref):SYR0058 (UK Statement of Reasons):Former Minister of transport in power after May 2011 (appointed 27.8.2014). As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,31/12/2020,13160 +BEK,Ghazqan,Kheir,,,,,,,,00/00/1961,Latakia,,Syria,,,,,Former Minister of Transport,,,,,,,,,"(UK Sanctions List Ref):SYR0058 (UK Statement of Reasons):Former Minister of transport in power after May 2011 (appointed 27.8.2014). As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,31/12/2020,13160 +BEK,Ghazwan,Khayrbik,,,,,,,,00/00/1961,Latakia,,Syria,,,,,Former Minister of Transport,,,,,,,,,"(UK Sanctions List Ref):SYR0058 (UK Statement of Reasons):Former Minister of transport in power after May 2011 (appointed 27.8.2014). As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,31/12/2020,13160 +BEK,Ghazwan,Kheir,,,,,,,,00/00/1961,Latakia,,Syria,,,,,Former Minister of Transport,,,,,,,,,"(UK Sanctions List Ref):SYR0058 (UK Statement of Reasons):Former Minister of transport in power after May 2011 (appointed 27.8.2014). As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,22/10/2014,31/12/2020,31/12/2020,13160 +BEKETOV,Vladimir,Andreyevich,,,,,Владимир Андреевич БЕКЕТОВ,,,29/03/1949,Derzhavnyi,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0958 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14909 +BEKHEITAN,Said,,,,,,,,,,,,Syria,,,,,Assistant Regional Secretary of Baath Arab Socialist Party,,,,,,,,,(UK Sanctions List Ref):SYR0179 (UK Statement of Reasons):Assistant Regional Secretary of Ba'ath Arab Socialist Party since 2005; 2000-2005 Director for the national security of the regional Ba'ath party. Former Governor of Hama (1998-2000). Close associate of President Bashar Al-Assad and Maher Al-Assad. Senior decision-maker in the regime on repression of civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12045 +BEKREN,Dmitry,Leontievich,,,,Colonel,БЕКРЕН Дмитрий Леонтьевич,Cyrillic,,16/07/1979,Slonim,Belarus,Belarus,,,,,Deputy Commander of the Army for Ideology,,,,,,,,,"(UK Sanctions List Ref):RUS0740 (UK Statement of Reasons):Colonel Dmitry Leontievich BEKREN has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being involved in the command of Belarusian forces who were involved in a joint exercise with the Russian military ahead of Russia’s invasion of Ukraine which: (1) threatened Ukraine; and (2) provided cover for Russian military preparations to invade Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14691 +BELAERONAVIGATSIA REPUBLICAN UNITARY AIR NAVIGATION SERVICES ENTERPRISE,,,,,,,,,,,,,,,,,,,19 Korotkevic Street,,,,,Minsk,220039,Belarus,"(UK Sanctions List Ref):BEL0108 (UK Statement of Reasons):Belaeronavigatsia Republican Unitary Air Navigation Services Enterprise is responsible for Belarusian air traffic control. It therefore bears responsibility for the order to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In doing so, it acted on the direction of Alexander Lukashenko and in conjunction with the Belarusian defence forces. This resulted in the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega. This politically-motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression of civil society and democratic opposition in Belarus. (Phone number):(Fax): +375 (17) 213-41-63 (Tel): +375 (17) 215-40-51 (Website):office@ban.by (Type of entity):State-Owned Enterprise (Subsidiaries):(1) Brest branch (2) Gomel branch (3) Grodno branch (4) Mogilev branch (5) Vitsebsk branch",Entity,Primary name,,Belarus,21/06/2021,21/06/2021,12/07/2021,14082 +BELAERONAVIGATSIA STATE-OWNED ENTERPRISE,,,,,,,,,,,,,,,,,,,19 Korotkevic Street,,,,,Minsk,220039,Belarus,"(UK Sanctions List Ref):BEL0108 (UK Statement of Reasons):Belaeronavigatsia Republican Unitary Air Navigation Services Enterprise is responsible for Belarusian air traffic control. It therefore bears responsibility for the order to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In doing so, it acted on the direction of Alexander Lukashenko and in conjunction with the Belarusian defence forces. This resulted in the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega. This politically-motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression of civil society and democratic opposition in Belarus. (Phone number):(Fax): +375 (17) 213-41-63 (Tel): +375 (17) 215-40-51 (Website):office@ban.by (Type of entity):State-Owned Enterprise (Subsidiaries):(1) Brest branch (2) Gomel branch (3) Grodno branch (4) Mogilev branch (5) Vitsebsk branch",Entity,AKA,,Belarus,21/06/2021,21/06/2021,12/07/2021,14082 +BELAL,Ghassan,,,,,,غسان بلال,,,,,,Syria,,,,,Head of Military Police,,,,,,,,,"(UK Sanctions List Ref):SYR0054 Linked to Maher Al-Asad (sanctioned in 2011, Major General of the 42nd Brigade and brother of President Bashar Al-Asad) (UK Statement of Reasons):General in command of the 4th Division reserve bureau. Adviser to Maher al-Assad and coordinator of security operations. Responsible for the crackdown on the civilian population across Syria and involved in several breaches of cessation of hostilities in the Ghouta. (Gender):Male",Individual,Primary name,,Syria,15/11/2011,31/12/2020,31/12/2020,12214 +BELAOUA,,,,,,,,,,01/06/1972,Ghardaia,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0249 (UN Ref):QDi.136 Father's name is Mohamed. Mother's name is Zohra Chemkha. Member of the Council of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) (AQIM). Head of Al Mouakaoune Biddam (QDe.139), Al Moulathamoun (QDe.140) and Al Mourabitoun (QDe.141). Review pursuant to Security Council resolution 1822 (2008) was concluded on 30 Jul. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4488665",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,11/11/2003,14/04/2022,7881 +BELAOUR,,,,,,,,,,01/06/1972,Ghardaia,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0249 (UN Ref):QDi.136 Father's name is Mohamed. Mother's name is Zohra Chemkha. Member of the Council of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) (AQIM). Head of Al Mouakaoune Biddam (QDe.139), Al Moulathamoun (QDe.140) and Al Mourabitoun (QDe.141). Review pursuant to Security Council resolution 1822 (2008) was concluded on 30 Jul. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4488665",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,11/11/2003,14/04/2022,7881 +BELAVENTSEV,Oleg,Yevgenyvich,,,,,Олег Белавенцев,,,15/09/1949,Moscow,Russia,Russia,,,,,(1) Former Plenipotentiary Representative of the President of Russian Federation into the so-called “Crimean Federal District” (2) Non- permanent member of the Russian Security Council,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0073 (UK Statement of Reasons):Former Plenipotentiary Representative of the President of the Russian Federation into the so called ""Crimean Federal District"". Former non-permanent member of the Russian Security Council. Responsible for the implementation of the constitutional prerogatives of the Russian Head of State on the territory of the annexed Autonomous Republic of Crimea. Currently Plenipotentiary Representative of the President of the Russian Federation into the North Caucasus Federal District (until June 2018). Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name,,Russia,29/04/2014,31/12/2020,16/09/2022,12951 +BELETSKY,Aleksei,Yuryevich,,,,,БЕЛЕЦКИЙ Алексей Юрьевич,Cyrillic,Russian,23/07/1988,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1263 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15215 +BELETSKY,Alexey,Yurievich,,,,,,,,23/07/1988,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1263 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15215 +BELIAKOV,Aleg,Nikolaevich,,,,,"Белякоў, Алег Мікалаевіч",,,,,,Belarus,,,,,(1) Deputy Head of the Penal Correction Department of the Ministry of Internal Affairs (2) Deputy Head of the Department for the Execution of Punishments of the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0106 (UK Statement of Reasons):Oleg Nikolaevich Beliakov is the Deputy Head of the Department for the Execution of Punishments of the Ministry of Internal Affairs. In this position, he is responsible for his Department’s management of correction and detention facilities, and therefore he is responsible for the serious human rights violations and acts relating to the repression of civil society and democratic opposition which are carried out in such facilities. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,18/03/2022,14123 +BELIAKOV,Oleg,Nikolaevich,,,,,"Беляков, Олег Николаевич",,,,,,Belarus,,,,,(1) Deputy Head of the Penal Correction Department of the Ministry of Internal Affairs (2) Deputy Head of the Department for the Execution of Punishments of the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0106 (UK Statement of Reasons):Oleg Nikolaevich Beliakov is the Deputy Head of the Department for the Execution of Punishments of the Ministry of Internal Affairs. In this position, he is responsible for his Department’s management of correction and detention facilities, and therefore he is responsible for the serious human rights violations and acts relating to the repression of civil society and democratic opposition which are carried out in such facilities. (Gender):Male",Individual,Primary name,,Belarus,21/06/2021,21/06/2021,18/03/2022,14123 +BELIK,Dmitry,Anatolievich,,,,,Дмитрий Анатольевич БЕЛИК,,,17/10/1969,Kular Ust-Yansky District,Yakut Autonomous SSR (now Russian Federation),,,,,,"(1) Member of the State Duma, elected from the illegally annexed city of Sevastopol (2) Member of the Duma Committee on Control and Regulation",,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0074 (UK Statement of Reasons):Member of the State Duma, elected from the illegally annexed city of Sevastopol. Member of the Duma Committee on Control and Regulation. As a member of the Sevastopol municipal administration in February-March 2014 he supported the activities of the so-called 'People's Mayor' Alexei Chaliy. He has publicly admitted his involvement in the events of 2014 that led to the illegal annexation of Crimea and Sevastopol, which he publicly defended, including on his personal website and in an interview published on 21 February 2016 on nation-new.ru website. For his involvement in the annexation process he has been awarded with Russian State order 'For Merit to the Fatherland' - second degree. (Gender):Male",Individual,Primary name,,Russia,09/11/2016,31/12/2020,16/09/2022,13392 +BELKALEM,MOHAMED,,,,,,محمد أمين مصطفى,,,19/12/1969,"Hussein Dey, Algiers",Algeria,Algeria,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0238 (UN Ref):QDi.279 Convicted in absentia by Algerian tribunal on 28 Mar. 1996. Algerian international arrest warrant number 03/09 of 6 Jun. 2009 issued by the Tribunal of Sidi Mhamed, Algiers, Algeria. Algerian extradition request number 2307/09 of 3 Sep. 2009, presented to Malian authorities. Father’s name is Ali Belkalem. Mother’s name is Fatma Saadoudi. Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/05/2010,22/04/2010,31/12/2020,11096 +BELKASAM,Kalad,,,,,,,,,22/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +BELKASAM,Kalad,,,,,,,,,26/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +BELKASAM,Kalad,,,,,,,,,,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +BELKASAM,Kalad,,,,,,,,,26/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +BELKASAM,Kalad,,,,,,,,,28/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +BELKASAM,Kalad,,,,,,,,,31/12/1979,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +BELKASAM,Kalad,,,,,,,,,10/06/1982,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +BELMOKHTAR,MOKHTAR,,,,,,مختار بلمختار,,,01/06/1972,Ghardaia,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0249 (UN Ref):QDi.136 Father's name is Mohamed. Mother's name is Zohra Chemkha. Member of the Council of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) (AQIM). Head of Al Mouakaoune Biddam (QDe.139), Al Moulathamoun (QDe.140) and Al Mourabitoun (QDe.141). Review pursuant to Security Council resolution 1822 (2008) was concluded on 30 Jul. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4488665",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/11/2003,11/11/2003,14/04/2022,7881 +BELMUKHTAR,Mukhtar,,,,,,,,,01/06/1972,Ghardaia,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0249 (UN Ref):QDi.136 Father's name is Mohamed. Mother's name is Zohra Chemkha. Member of the Council of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) (AQIM). Head of Al Mouakaoune Biddam (QDe.139), Al Moulathamoun (QDe.140) and Al Mourabitoun (QDe.141). Review pursuant to Security Council resolution 1822 (2008) was concluded on 30 Jul. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4488665",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,11/11/2003,14/04/2022,7881 +BELOUS,Aleksei,,,,,,,,,00/00/1969,,,Russia,,,,,(1) Member of Gazprombank’s Management Board (2) Deputy Chairman of Gazprombank’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1605 (UK Statement of Reasons):Alexey Petrovich Belous is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15549 +BELOUS,Alexey,Petrovich,,,,,Алексей Петрович Белоус,Cyrillic,Russian,00/00/1969,,,Russia,,,,,(1) Member of Gazprombank’s Management Board (2) Deputy Chairman of Gazprombank’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1605 (UK Statement of Reasons):Alexey Petrovich Belous is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15549 +BELOUS,German,Valentinovich,,,,,БЕЛОУС Герман Валентинович,Cyrillic,Russian,00/00/1977,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0846 (UK Statement of Reasons):German Valentinovich BELOUS is Deputy Chairman of the Management Board at Novikombank. Novikombank made available funds to Russian Helicopters holding company. Russian Helicopters holding company is involved in providing helicopters to the Russian military which could contribute to destabilising Ukraine. There are therefore reasonable grounds to suspect that German Valentinovich BELOUS has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,12/07/2022,14797 +BELOUSOV,Mikhail,Vladimirovich,,,,,Михаил Владимирович БЕЛОУСОВ,,,10/11/1953,,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS1009 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14960 +BELOUSOV,Vadim,Vladimirovich,,,,,,,,02/10/1960,Chelyabinsk,Russia,Russia,712895726. 753173718. 737047558,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0589 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14534 +BELOZEROV,Oleg,Valentinovich,,,,,Олег Валентинович Белозёров,,,26/09/1969,Ventspils,Latvia,(1) Russia (2) Latvia,,,,,Chief Executive Officer of Russian Railways,Red Gates Square,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1360 (UK Statement of Reasons):Oleg Valentinovich Belozyorov is the Chief Executive of Russian Railways [RDZ] and Chairman of the Management Board. He has served in this role since 2015. As the CEO of a 100% state owned entity in control of Russia’s vast railway network, Belozyorov is therefore involved in directly controlling, through an executive role, a Government of Russia-affiliated entity within a strategic sector (transport). RDZ has been designated as a person involved in obtaining a benefit from the Government of Russia. As the Chief Executive and Chairman of the Management Board, Belozyorov is associated with a person involved in obtaining a benefit from the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,21/04/2022,21/04/2022,21/04/2022,15311 +BELOZYOROV,Oleg,Valentinovich,,,,,Олег Валентинович Белозёров,,,26/09/1969,Ventspils,Latvia,(1) Russia (2) Latvia,,,,,Chief Executive Officer of Russian Railways,Red Gates Square,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1360 (UK Statement of Reasons):Oleg Valentinovich Belozyorov is the Chief Executive of Russian Railways [RDZ] and Chairman of the Management Board. He has served in this role since 2015. As the CEO of a 100% state owned entity in control of Russia’s vast railway network, Belozyorov is therefore involved in directly controlling, through an executive role, a Government of Russia-affiliated entity within a strategic sector (transport). RDZ has been designated as a person involved in obtaining a benefit from the Government of Russia. As the Chief Executive and Chairman of the Management Board, Belozyorov is associated with a person involved in obtaining a benefit from the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,21/04/2022,21/04/2022,21/04/2022,15311 +BELSPETSVNESHTECHNIKA,,,,,,,БЕЛСПЕЦВНЕШТЕХНИКА,Cyrillic,Russian,,,,,,,,,,8 St. Kalinovskogo,,,,,Minsk,220103,Belarus,"(UK Sanctions List Ref):RUS1092 (UK Statement of Reasons):As a Belarusian producer of armaments and military equipment, BELSPETSVNESHTECHNIKA has made available goods or technology to persons, including the Russian armed forces, that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Phone number):+375 17 269 63 33 (Website):bsvt.by (Email address):mail@bsvt.by",Entity,Primary name,,Russia,24/03/2022,24/03/2022,24/06/2022,15035 +BELTECHEXPORT,,,,,,,,,,,,,,,,,,,86-B Nezavisimosti ave,,,,,Minsk,220012,Belarus,"(UK Sanctions List Ref):BEL0062 (UK Statement of Reasons):Beltechexport is a key revenue stream for the military-industrial complex of Belarus with close ties to the Lukashenko regime. The ongoing financial and economic support of Beltechexport to the Belarusian state is helping to sustain the Lukashenko regime. Beltechexport therefore bears responsibility for supporting the Lukashenko regime and the human rights violations, undermining of democracy and repression of civil society carried out following the August 9 elections. (Phone number):00375 17 358-83-83. 00375 17 373-80-12 (Email address):mail@bte.by",Entity,Primary name,,Belarus,18/12/2020,31/12/2020,31/12/2020,14034 +BELYAKOV,Aleg,Nikolaevich,,,,,,,,,,,Belarus,,,,,(1) Deputy Head of the Penal Correction Department of the Ministry of Internal Affairs (2) Deputy Head of the Department for the Execution of Punishments of the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0106 (UK Statement of Reasons):Oleg Nikolaevich Beliakov is the Deputy Head of the Department for the Execution of Punishments of the Ministry of Internal Affairs. In this position, he is responsible for his Department’s management of correction and detention facilities, and therefore he is responsible for the serious human rights violations and acts relating to the repression of civil society and democratic opposition which are carried out in such facilities. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,18/03/2022,14123 +BELYAKOV,Oleg,,,,,,,,,,,,Belarus,,,,,(1) Deputy Head of the Penal Correction Department of the Ministry of Internal Affairs (2) Deputy Head of the Department for the Execution of Punishments of the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0106 (UK Statement of Reasons):Oleg Nikolaevich Beliakov is the Deputy Head of the Department for the Execution of Punishments of the Ministry of Internal Affairs. In this position, he is responsible for his Department’s management of correction and detention facilities, and therefore he is responsible for the serious human rights violations and acts relating to the repression of civil society and democratic opposition which are carried out in such facilities. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,18/03/2022,14123 +BELYAKOV,Oleg,Nikolaevich,,,,,,,,,,,Belarus,,,,,(1) Deputy Head of the Penal Correction Department of the Ministry of Internal Affairs (2) Deputy Head of the Department for the Execution of Punishments of the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0106 (UK Statement of Reasons):Oleg Nikolaevich Beliakov is the Deputy Head of the Department for the Execution of Punishments of the Ministry of Internal Affairs. In this position, he is responsible for his Department’s management of correction and detention facilities, and therefore he is responsible for the serious human rights violations and acts relating to the repression of civil society and democratic opposition which are carried out in such facilities. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,18/03/2022,14123 +BELYANINA,Anastasia,Eduardovna,,,,,,,,,,,,,,,,(1) Head of Investor Relations at Sberbank (2) Managing Director at Sberbank,,,,,,,,,"(UK Sanctions List Ref):RUS1604 (UK Statement of Reasons):Anastasia Eduardovna Belyanina is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK). (Gender):Female",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15548 +BELYKH,Irina,Viktorovna,,,,,Белых Ирина Викторовна,,,16/08/1964,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0315 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14260 +BEN AL-HAKIM,BOUBAKER,BEN HABIB,,,,,,,,01/08/1983,Paris,France,(1) France. (2) Tunisia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0157 (UN Ref):QDi.375 French-Tunisian foreign terrorist fighter for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897328.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,12/01/2022,13289 +BEN AMDOUNI,Meherez,ben Ahdoud,,,,,,,,18/12/1969,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +BEN AMDOUNI,Meherez,ben Ahdoud,,,,,,,,25/05/1968,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +BEN AMDOUNI,Meherez,ben Ahdoud,,,,,,,,18/12/1968,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +BEN AMDOUNI,Meherez,ben Ahdoud,,,,,,,,14/07/1969,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +BEN DAHA,MAHRI,SIDI,AMAR,,,,,,,01/01/1978,Djebock,Mali,Mali,,,11262/1547,Mali,Deputy chief of staff of the regional coordination of the Mécanisme opérationnel de coordination (MOC) in Gao,Golf Rue 708 Door 345,,,,,Gao,,Mali,"(UK Sanctions List Ref):MAL0006 (UN Ref):MLi.006 Mahri Sidi Amar Ben Daha is a leader of the Lehmar Arab community of Gao and military chief of staff of the pro-governmental wing of the Mouvement Arabe de l’Azawad (MAA), associated to the Plateforme des mouvements du 14 juin 2014 d’Alger (Plateforme) coalition. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Reportedly deceased in February 2020. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,Mali,20/12/2019,10/07/2019,10/10/2022,13801 +BEN GOUMO,Sofiane,,,,,,,,,26/06/1959,Derna,Libya,Libya,,,,,,,,,,,,,Libya,(UK Sanctions List Ref):AQD0317 (UN Ref):QDi.355 Leader of Ansar al Charia Derna (QDe.145). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5893103,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,17/09/2015,03/09/2015,31/12/2020,13275 +BEN HANI,Al-As'ad,,,,,,,,,05/02/1969,(1) Tripoli (2) Tunis,(1) Libya (2) Tunisia,Tunisia,,,W374031,Issue date: 11/04/2011,,,,,,,,,,(UK Sanctions List Ref):AQD0241 (UN Ref):QDi.062 Professor of Chemistry. Deported from Italy to Tunisia on 27 Aug. 2006. Legally changed family name from Aouani to Lakhal in 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7087 +BEN HANI,Al-As'ad,,,,,,,,,05/02/1970,(1) Tripoli (2) Tunis,(1) Libya (2) Tunisia,Tunisia,,,W374031,Issue date: 11/04/2011,,,,,,,,,,(UK Sanctions List Ref):AQD0241 (UN Ref):QDi.062 Professor of Chemistry. Deported from Italy to Tunisia on 27 Aug. 2006. Legally changed family name from Aouani to Lakhal in 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7087 +BEN HASSINE,Saifallah,,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,,,,,,,,Libya,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +BEN HASSINE,Saifallah,,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,60 Rue de la Libye Hamman Lif,Ben Arous,,,,,,Tunisia,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +BEN HASSINE,Seifallah,ben Amor,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,,,,,,,,Libya,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +BEN HASSINE,Seifallah,ben Amor,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,60 Rue de la Libye Hamman Lif,Ben Arous,,,,,,Tunisia,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +BEN HASSINE,Seifallah,Ben Omar,Ben Mohamed,,,,سيف الله بن عمر بن محمد بنحسين,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,,,,,,,,Libya,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +BEN HASSINE,Seifallah,Ben Omar,Ben Mohamed,,,,سيف الله بن عمر بن محمد بنحسين,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,60 Rue de la Libye Hamman Lif,Ben Arous,,,,,,Tunisia,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +BEN HELAL,Mounir,Ben Dhaou,Ben Brahim,,,,,,,10/05/1983,Ben Guerdane,Tunisia,Tunisia,,,08619445,,,Amria Ben Guerdane,,,,,Medenine,,Tunisia,"(UK Sanctions List Ref):AQD0253 (UN Ref):QDi.386 Foreign terrorist fighter facilitator experienced in establishing and securing travel routes. Deeply involved in providing material support to the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) in North Africa. Assisted foreign terrorist fighters’ travel throughout North Africa and to Syrian Arab Republic to join Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Profession: farm worker. Mother's name: Mbarka Helali. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,14/06/2022,13319 +BEN HENI,Lased,,,,,,,,,05/02/1969,(1) Tripoli (2) Tunis,(1) Libya (2) Tunisia,Tunisia,,,W374031,Issue date: 11/04/2011,,,,,,,,,,(UK Sanctions List Ref):AQD0241 (UN Ref):QDi.062 Professor of Chemistry. Deported from Italy to Tunisia on 27 Aug. 2006. Legally changed family name from Aouani to Lakhal in 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7087 +BEN HENI,Lased,,,,,,,,,05/02/1970,(1) Tripoli (2) Tunis,(1) Libya (2) Tunisia,Tunisia,,,W374031,Issue date: 11/04/2011,,,,,,,,,,(UK Sanctions List Ref):AQD0241 (UN Ref):QDi.062 Professor of Chemistry. Deported from Italy to Tunisia on 27 Aug. 2006. Legally changed family name from Aouani to Lakhal in 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7087 +BEN HOCINE,Seif,Allah,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,,,,,,,,Libya,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +BEN HOCINE,Seif,Allah,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,60 Rue de la Libye Hamman Lif,Ben Arous,,,,,,Tunisia,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +BEN SOLTANE,Adel,ben al- Azhar,ben Youssef,,,,,,,14/07/1970,Tunis,Tunisia,Tunisia,M408665,Tunisian. Issued on 4 October 2000. Expired on 3 October 2005,(1) BNSDLA70L14Z352B (2) W334061,(1) Italian fiscal code (2) Tunisian national identity number. Issued on 9 March 2011,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0119 (UN Ref):QDi.068 Deported from Italy to Tunisia on 28 February 2004. Serving a 12-year prison sentence in Tunisia for membership in a terrorist organization abroad as at Jan. 2010. Arrested in Tunisia in 2013. Legally changed family name from Ben Soltane to Hamdi in 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2002,03/09/2002,31/12/2020,7092 +BEN TAH,Amdouni,Mehrez,,,,,,,,18/12/1969,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +BEN TAH,Amdouni,Mehrez,,,,,,,,25/05/1968,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +BEN TAH,Amdouni,Mehrez,,,,,,,,18/12/1968,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +BEN TAH,Amdouni,Mehrez,,,,,,,,14/07/1969,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +BENA,,,,,,,,,,,,,,,,,,,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,P.O. Box 9525,,,Syria,"(UK Sanctions List Ref):SYR0283 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime. He is an influential member of the Makhlouf family and closely connected to the Asad family; cousin of President Bashar al-Asad. (Type of entity):Private. Real Estate (Subsidiaries):Cham Holdings (parent), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525 (Parent company):Cham Holdings",Entity,AKA,,Syria,24/06/2011,31/12/2020,31/12/2020,12017 +BENA PROPERTIES,,,,,,,,,,,,,,,,,,,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,P.O. Box 9525,,,Syria,"(UK Sanctions List Ref):SYR0283 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime. He is an influential member of the Makhlouf family and closely connected to the Asad family; cousin of President Bashar al-Asad. (Type of entity):Private. Real Estate (Subsidiaries):Cham Holdings (parent), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525 (Parent company):Cham Holdings",Entity,Primary name,,Syria,24/06/2011,31/12/2020,31/12/2020,12017 +BENAH,Yasin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,,Mogadishu,Somalia,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BENAH,Yasin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,Rinkeby,Stockholm,Sweden,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BENAH,Yassin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,,Mogadishu,Somalia,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BENAH,Yassin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,Rinkeby,Stockholm,Sweden,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BENAVIDES TORRES,Antonio,Jose,,,,Chief,Antonio José Benavides Torres,,,13/06/1961,,,Venezuela,,,,,(1) National Assembly (NA) Deputy for the Capital District (since January 2021) and member of NA’s Permanent Commission on Administration and Services (2) Former Chief of the Capital District (Districto Capital) until January 2018 (3) Former General Commander of the Bolivarian National Guard (GNB) until June 2017.,,,,,,Caracas,,Venezuela,"(UK Sanctions List Ref):VEN0003 Former General Commander of the Bolivarian National Guard (GNB) until 21 June 2017 (UK Statement of Reasons):National Assembly (NA) (2021) Deputy for the Capital District and member of the NA’s Permanent Commission on Administration and Service. Chief of the Capital District (Distrito Capital) until January 2018. General Commander of the Bolivarian National Guard until 21 June 2017. There are reasonable grounds to suspect he has been involved in repression of civil society and democratic opposition in Venezuela and involved in the commission of serious human rights violations committed by the Bolivarian National Guard under his command. Further, there are reasonable grounds to suspect that his actions and policies as General Commander of the Bolivarian National Guard, including the Bolivarian National Guard taking the lead in the policing of civilian demonstrations and publicly advocating that military courts should have jurisdiction over civilians, have undermined the rule of law in Venezuela. (Gender):Male",Individual,Primary name,,Venezuela,22/01/2018,31/12/2020,28/01/2022,13583 +BENAX,Yassin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,,Mogadishu,Somalia,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BENAX,Yassin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,Rinkeby,Stockholm,Sweden,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BENEVOLENCE INTERNATIONAL FOUNDATION,,,,,,,,,,,,,,,,,,,,,,,,,,Bangladesh,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BENEVOLENCE INTERNATIONAL FOUNDATION,,,,,,,,,,,,,,,,,,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BENEVOLENCE INTERNATIONAL FOUNDATION,,,,,,,,,,,,,,,,,,,,,,,,Gaza Strip,,,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BENEVOLENCE INTERNATIONAL FOUNDATION,,,,,,,,,,,,,,,,,,,20-24 Branford Place,Suite 705,,,Newark,New Jersey,67102,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BENEVOLENCE INTERNATIONAL FOUNDATION,,,,,,,,,,,,,,,,,,,8820 Mobile Avenue,IA,Oak Lawn,,,Illinois,60453,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BENEVOLENCE INTERNATIONAL FOUNDATION,,,,,,,,,,,,,,,,,,,9838 S. Roberts Road,Suite 1W,,,Palos Hills,Illinois,60465,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BENEVOLENCE INTERNATIONAL FOUNDATION,,,,,,,,,,,,,,,,,,,PO Box 1937,,,,,Khartoum,,Sudan,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BENEVOLENCE INTERNATIONAL FOUNDATION,,,,,,,,,,,,,,,,,,,PO Box 548,,,,Worth,Illinois,60482,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BENGHALEM,SALIM,,,,,,,,,06/07/1980,Bourg la Reine,France,France,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0307 (UN Ref):QDi.388 Syria-based French violent extremist and member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Subject to a European Arrest Warrant. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930707. Syria, as at Sep. 2015",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13321 +BERDICHEVSKY,Vladislav,Leonidovich,,,,,БЕРДИЧЕВСКИЙ Владислав Леонидович,Cyrillic,Russian,10/09/1967,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1179 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15131 +BEREGOVOY,Igor,Nikoalevich,,,,,,,,30/12/1965,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Russia,,,,,,,,,,,,,,(UK Sanctions List Ref):RUS0080 (UK Statement of Reasons):One of the former leaders of self-proclaimed militia of Horlivka. He took control of the Security Service of Ukraine's Office in Donetsk region building and afterwards seized the Ministry of Internal Affairs' district station in the town of Horlivka. He has links to Igor Strelkov/Girkin under whose command he was involved in the murder of Peoples' Deputy of the Horlivka's Municipal Council Volodymyr Rybak. Remains active in supporting separatist actions or policies. (Gender):Male,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12971 +BEREGOVOY,Igor,Nikolaevich,,,,,Игорь Николаевич БЕРЕГОВОЙ,,Russian,30/12/1965,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Russia,,,,,,,,,,,,,,(UK Sanctions List Ref):RUS0080 (UK Statement of Reasons):One of the former leaders of self-proclaimed militia of Horlivka. He took control of the Security Service of Ukraine's Office in Donetsk region building and afterwards seized the Ministry of Internal Affairs' district station in the town of Horlivka. He has links to Igor Strelkov/Girkin under whose command he was involved in the murder of Peoples' Deputy of the Horlivka's Municipal Council Volodymyr Rybak. Remains active in supporting separatist actions or policies. (Gender):Male,Individual,AKA,,Russia,12/05/2014,31/12/2020,16/09/2022,12971 +BEREZA,Oleg,Vladimirovich,,,,,,,,28/02/1977,,,Ukraine,,,,,Former Internal Affairs Minister of Donetsk People's Republic,,,,,,,,,"(UK Sanctions List Ref):RUS0075 (UK Statement of Reasons):Former so-called ""Internal affairs minister"" of the ""Donetsk People's Republic"". Associated with Vladimir Antyufeyev, who was responsible for the separatist ""government"" activities of the so called ""Government of the Donetsk People's Republic"". He has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,31/12/2020,13096 +BEREZIN,Fedor,Dmitrievich,,,,,,,,07/02/1960,Donetsk,Ukraine,(1) Russia. (2) Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0076 (UK Statement of Reasons):Former so-called ‘deputy defence minister’ of the so-called ‘Donetsk People's Republic’. He is associated with Igor Strelkov/Girkin, who is responsible for actions which undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. In taking on and acting in this capacity Berezin has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Remains active in supporting separatist actions and policies. Current Chairman of the Board of DNR Writers' Union. (Gender):Male",Individual,Primary name,,Russia,25/07/2014,31/12/2020,31/12/2020,13064 +BEREZIN,Fedir,Dmytrovych,,,,,,,,07/02/1960,Donetsk,Ukraine,(1) Russia. (2) Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0076 (UK Statement of Reasons):Former so-called ‘deputy defence minister’ of the so-called ‘Donetsk People's Republic’. He is associated with Igor Strelkov/Girkin, who is responsible for actions which undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. In taking on and acting in this capacity Berezin has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Remains active in supporting separatist actions and policies. Current Chairman of the Board of DNR Writers' Union. (Gender):Male",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,31/12/2020,13064 +BEREZKIN,Grigory,Vikotorovitsj,,,,,Григорий Викторович БЕРЁЗКИН,Cyrillic,Russian,09/08/1966,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1321 (UK Statement of Reasons):Grigory Vikotorovitsj BEREZKIN is or has been involved in obtaining a benefit from or supporting the Government of Russia by directly owning and controlling an entity carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian energy sector. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15279 +BEREZOCSKIY,Denis,Valentinovich,,,,,,,,15/07/1974,Kharkiv,Ukrainian SSR now Ukraine,(1) Ukraine (2) Russia,,,,,(1) Former Commander of the Ukrainian Navy (2) Deputy Commander of the Black Sea Fleet of the Russian Federation,,,,,,Crimea,,,"(UK Sanctions List Ref):RUS0077 (UK Statement of Reasons):Berezovskiy was appointed commander of the Ukrainian Navy on 1 March 2014 and swore an oath to the Crimean armed forces, thereby breaking his oath to the Ukrainian Navy. He was then appointed Deputy Commander of the Black Sea Fleet of the Russian Federation until 2015. Currently Deputy Commander of the Pacific Fleet of the Russian Federation and Vice Admiral. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12925 +BEREZOCSKIY,Denys,Valentynovych,,,,,,,,15/07/1974,Kharkiv,Ukrainian SSR now Ukraine,(1) Ukraine (2) Russia,,,,,(1) Former Commander of the Ukrainian Navy (2) Deputy Commander of the Black Sea Fleet of the Russian Federation,,,,,,Crimea,,,"(UK Sanctions List Ref):RUS0077 (UK Statement of Reasons):Berezovskiy was appointed commander of the Ukrainian Navy on 1 March 2014 and swore an oath to the Crimean armed forces, thereby breaking his oath to the Ukrainian Navy. He was then appointed Deputy Commander of the Black Sea Fleet of the Russian Federation until 2015. Currently Deputy Commander of the Pacific Fleet of the Russian Federation and Vice Admiral. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12925 +BEREZOVSKIY,Denis,Valentinovich,,,,Rear Admiral,Денис Валентинович БЕРЕЗОВСКИЙ,,,15/07/1974,Kharkiv,Ukrainian SSR now Ukraine,(1) Ukraine (2) Russia,,,,,(1) Former Commander of the Ukrainian Navy (2) Deputy Commander of the Black Sea Fleet of the Russian Federation,,,,,,Crimea,,,"(UK Sanctions List Ref):RUS0077 (UK Statement of Reasons):Berezovskiy was appointed commander of the Ukrainian Navy on 1 March 2014 and swore an oath to the Crimean armed forces, thereby breaking his oath to the Ukrainian Navy. He was then appointed Deputy Commander of the Black Sea Fleet of the Russian Federation until 2015. Currently Deputy Commander of the Pacific Fleet of the Russian Federation and Vice Admiral. (Gender):Male",Individual,Primary name,,Russia,18/03/2014,31/12/2020,16/09/2022,12925 +BEREZOVSKIY,Denys,Valentynovych,,,,,,,,15/07/1974,Kharkiv,Ukrainian SSR now Ukraine,(1) Ukraine (2) Russia,,,,,(1) Former Commander of the Ukrainian Navy (2) Deputy Commander of the Black Sea Fleet of the Russian Federation,,,,,,Crimea,,,"(UK Sanctions List Ref):RUS0077 (UK Statement of Reasons):Berezovskiy was appointed commander of the Ukrainian Navy on 1 March 2014 and swore an oath to the Crimean armed forces, thereby breaking his oath to the Ukrainian Navy. He was then appointed Deputy Commander of the Black Sea Fleet of the Russian Federation until 2015. Currently Deputy Commander of the Pacific Fleet of the Russian Federation and Vice Admiral. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12925 +BEREZOVSKY,Denis,Valentinovich,,,,,,,,15/07/1974,Kharkiv,Ukrainian SSR now Ukraine,(1) Ukraine (2) Russia,,,,,(1) Former Commander of the Ukrainian Navy (2) Deputy Commander of the Black Sea Fleet of the Russian Federation,,,,,,Crimea,,,"(UK Sanctions List Ref):RUS0077 (UK Statement of Reasons):Berezovskiy was appointed commander of the Ukrainian Navy on 1 March 2014 and swore an oath to the Crimean armed forces, thereby breaking his oath to the Ukrainian Navy. He was then appointed Deputy Commander of the Black Sea Fleet of the Russian Federation until 2015. Currently Deputy Commander of the Pacific Fleet of the Russian Federation and Vice Admiral. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12925 +BEREZOVSKY,Denys,Valentynovych,,,,,,,,15/07/1974,Kharkiv,Ukrainian SSR now Ukraine,(1) Ukraine (2) Russia,,,,,(1) Former Commander of the Ukrainian Navy (2) Deputy Commander of the Black Sea Fleet of the Russian Federation,,,,,,Crimea,,,"(UK Sanctions List Ref):RUS0077 (UK Statement of Reasons):Berezovskiy was appointed commander of the Ukrainian Navy on 1 March 2014 and swore an oath to the Crimean armed forces, thereby breaking his oath to the Ukrainian Navy. He was then appointed Deputy Commander of the Black Sea Fleet of the Russian Federation until 2015. Currently Deputy Commander of the Pacific Fleet of the Russian Federation and Vice Admiral. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12925 +BERICH,Naim,,,,,,,,,00/00/1975,"(1) Lakhi village, Hazarjuft area, Garmsir District, Helmand Province (2) Laki village, Garmsir District, Helmand Province (3) Lakari village, Garmsir District, Helmand Province (4) Darvishan, Garmsir District, Helmand Province (5) De Luy Wiyalah village, Garmsir District, Helmand Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan (5) Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation under the Taliban,,,,,,,,,(UK Sanctions List Ref):AFG0015 (UN Ref):TAi.013 Member of the Taliban Military Commission as at mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7354 +BERNAL ROSALES,Freddy,Alirio,,,,,,,,16/06/1962,"San Cristobal, Tachira State",Venezuela,Venezuela,,,,,Commissioner General of SEBIN. Head of the National Command and Control Centre for Local Committees of Supply and Production (CLAP). Minister of Urban Agriculture,,,,,,,,,"(UK Sanctions List Ref):VEN0013 Minister of Urban Agriculture. Hd of the National Command and Control Centre for Local Committees of Supply and Production (CLAP) and Commissioner General of SEBIN (UK Statement of Reasons):Head of the National Control Centre of the Committee for Local Supply and Production (CLAP) and Protector of Táchira State. Also a Commissioner General of SEBIN and place of birth - San Cristobal, Tachira State, Venezuela (Gender):Male",Individual,Primary name,,Venezuela,26/06/2018,31/12/2020,31/12/2020,13691 +BERNARD,Mupenzi,,,,,,,,,00/00/1954,"Cellule Ferege, Gatumba, sector Kibilira commune, Gisenyi Prefecture",Rwanda,Rwanda,,,,,FDLR-FOCA Commander and FDLR-FOCA Lieutenant General,,,,,,North Kivu Province,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0057 (UN Ref):CDi.012 The International Criminal Court issued an arrest warrant for Mudacumura on 12 July 2012 for nine counts of war crimes, including attacking civilians, murder, mutilation, cruel treatment, rape, torture, destruction of property, pillaging and outrages against personal dignity, allegedly committed between 2009 and 2010 in the DRC. (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8714 +BERULAVA,Mikhail,Nikolaevich,,,,,Берулава Михаил Николаевич,,,03/08/1950,Sukhumi,Georgia (former USSR),Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0316 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,15/03/2022,14261 +BERUSA,Brandon,,,,,,,,,15/05/1972,"Punta, Santa Ana, Manila",Philippines,Philippines,,,,,,Ma. Bautista,,,Punta,Santa Ana,Manila,3111,Philippines,(UK Sanctions List Ref):AQD0293 (UN Ref):QDi.246 Member of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). Father's name is Fernando Rafael Dellosa. Mother's name is Editha Parado Cain. In detention in the Philippines as of Jan. 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10666 +BERYOZKIN,Sergey,Vladimirovich,,,,,Сергей Владимирович БЕРЁЗКИН,,,23/06/1955,Yaroslavl,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0930 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14881 +BESEDA,Sergei,Orestovoch,,,,,Сергей Орестович БЕСЕДА,,,17/05/1954,,,Russia,,,,,"Commander of the Fifth Service of the FSB, Federal Security Service of the Russian Federation",,,,,,,,Russia,"(UK Sanctions List Ref):RUS0078 (UK Statement of Reasons):Commander of the Fifth Service of the FSB, Federal Security Service of the Russian Federation. As a senior FSB officer, he heads a service responsible which oversees intelligence operations and international activity (Gender):Male",Individual,Primary name,,Russia,25/07/2014,31/12/2020,16/09/2022,13040 +BESEDA,Sergey,,,,,,,,,17/05/1954,,,Russia,,,,,"Commander of the Fifth Service of the FSB, Federal Security Service of the Russian Federation",,,,,,,,Russia,"(UK Sanctions List Ref):RUS0078 (UK Statement of Reasons):Commander of the Fifth Service of the FSB, Federal Security Service of the Russian Federation. As a senior FSB officer, he heads a service responsible which oversees intelligence operations and international activity (Gender):Male",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,16/09/2022,13040 +BESEDINA,Olga,Igoreva,,,,,Ольга Ігорівна БЕСЕДІНА,,Ukrainian,10/12/1976,Luhansk,,Ukraine,,,,,(1) Former so-called 'Minister of Economic Development and Trade' of the so-called 'Luhansk People's Republic' (2) Former head of the foreign economy department at the Office of the head of the ‘Luhansk Administration’,,,,,,Lugansk,,,"(UK Sanctions List Ref):RUS0079 (UK Statement of Reasons):Former so called ‘Minister of Economic Development and Trade’ of the so called ‘Luhansk People's Republic’. In taking on and acting in this capacity, she has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and further destabilised Ukraine. Former head of the foreign economy department at the Office of the head of the ‘Luhansk Administration’. (Gender):Female",Individual,Primary name,,Russia,16/02/2015,31/12/2020,16/09/2022,13211 +BESEDINA,Olga,Igoreva,,,,,Ольга Игоревна БЕСЕДИНА,,Russian,10/12/1976,Luhansk,,Ukraine,,,,,(1) Former so-called 'Minister of Economic Development and Trade' of the so-called 'Luhansk People's Republic' (2) Former head of the foreign economy department at the Office of the head of the ‘Luhansk Administration’,,,,,,Lugansk,,,"(UK Sanctions List Ref):RUS0079 (UK Statement of Reasons):Former so called ‘Minister of Economic Development and Trade’ of the so called ‘Luhansk People's Republic’. In taking on and acting in this capacity, she has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and further destabilised Ukraine. Former head of the foreign economy department at the Office of the head of the ‘Luhansk Administration’. (Gender):Female",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13211 +BESEDINA,Olha,Ihorivna,,,,,,,,10/12/1976,Luhansk,,Ukraine,,,,,(1) Former so-called 'Minister of Economic Development and Trade' of the so-called 'Luhansk People's Republic' (2) Former head of the foreign economy department at the Office of the head of the ‘Luhansk Administration’,,,,,,Lugansk,,,"(UK Sanctions List Ref):RUS0079 (UK Statement of Reasons):Former so called ‘Minister of Economic Development and Trade’ of the so called ‘Luhansk People's Republic’. In taking on and acting in this capacity, she has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and further destabilised Ukraine. Former head of the foreign economy department at the Office of the head of the ‘Luhansk Administration’. (Gender):Female",Individual,AKA,,Russia,16/02/2015,31/12/2020,16/09/2022,13211 +BESPALOV,Anton,Sergeyevich,,,,,беспалов антон сергеевич,Cyrillic,Russian,02/02/1981,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1107 (UK Statement of Reasons):Anton Sergeyevich BESPALOV has provided support for and promoted actions or policies which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine, though his support for the Strategic Culture Foundation (RUS1381).",Individual,Primary name,,Russia,31/03/2022,31/03/2022,14/06/2022,15054 +BESPALOV,Vladimir,,,,,,Владимир Беспалов,Cyrillic,Russian,,,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1572 (UK Statement of Reasons):Vladimir BESPALOV is the so-called Deputy Head for Domestic Policy of the administration installed by Russia in temporarily controlled territory of Kherson region, southern Ukraine. In that role, BESPALOV supports and promotes actions and policies that destabilise and undermine or threaten the territorial integrity, sovereignty, or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15516 +BESSARAB,Svetlana,Viktorovna,,,,,Бессараб Светлана Викторовна,,,07/12/1970,Krasnodar,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0317 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14262 +BESSARABOV,Daniil,Vladimirovich,,,,,Бессарабов Даниил Владимирович,,,09/07/1976,Novokuznetsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0318 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14263 +BESSONOV,Evgeny,Ivanovich,,,,,Бессонов Евгений Иванович,,,26/11/1978,Rostov-on-Don,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0319 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14264 +BESTE S,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0097 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK tanker M/V AN SAN 1 was involved in ship-to-ship transfer operations, likely for oil, in late January 2018. Listed as asset of Korea Ansan Shipping Company (OFSI ID: 13633, UN Reference Number: UN Ref KPe.062) (IMO number):7303803 (Current owners):Korean Ansan Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Chemical Carrier (Tonnage of ship):1757 (Length of ship):86 (Year built):1973",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13648 +BEYNAH,Yasin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,,Mogadishu,Somalia,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BEYNAH,Yasin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,Rinkeby,Stockholm,Sweden,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BEZARGANIS BEHDIS TEJARAT ALBORZ COMPANY,,,,,,,,,,,,,,,,,,,No 15,Eighth Street,Pakistan Avenue,Shahid Beheshti Avenue,,Tehran,,Iran,(UK Sanctions List Ref):INU0099 (UK Statement of Reasons):Has been involved in procurement of materials that are controlled and have direct applications in the manufacture of centrifuges for Iran's uranium enrichment programme. (Phone number):+98 21 88 73 77 53 (Website):www.pooyawave.com (Email address):info@pooyawave.com (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11541 +BEZDENEZHNYKH,Sergey,Vyacheslavovich,,,,,Сергей Вячеславович БЕЗДЕНЕЖНЫХ,,,25/08/1979,Amursk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0957 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14908 +BEZLER,Igor,Nikolaevich,,,,,Игорь Николаевич БЕЗЛЕР,,Russian,30/12/1965,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Russia,,,,,,,,,,,,,,(UK Sanctions List Ref):RUS0080 (UK Statement of Reasons):One of the former leaders of self-proclaimed militia of Horlivka. He took control of the Security Service of Ukraine's Office in Donetsk region building and afterwards seized the Ministry of Internal Affairs' district station in the town of Horlivka. He has links to Igor Strelkov/Girkin under whose command he was involved in the murder of Peoples' Deputy of the Horlivka's Municipal Council Volodymyr Rybak. Remains active in supporting separatist actions or policies. (Gender):Male,Individual,Primary name,,Russia,12/05/2014,31/12/2020,16/09/2022,12971 +BEZLER,Ihor,Mykolayovych,,,,,Ігор Миколайович БЕЗЛЕР,,Ukrainian,30/12/1965,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Russia,,,,,,,,,,,,,,(UK Sanctions List Ref):RUS0080 (UK Statement of Reasons):One of the former leaders of self-proclaimed militia of Horlivka. He took control of the Security Service of Ukraine's Office in Donetsk region building and afterwards seized the Ministry of Internal Affairs' district station in the town of Horlivka. He has links to Igor Strelkov/Girkin under whose command he was involved in the murder of Peoples' Deputy of the Horlivka's Municipal Council Volodymyr Rybak. Remains active in supporting separatist actions or policies. (Gender):Male,Individual,AKA,,Russia,12/05/2014,31/12/2020,16/09/2022,12971 +BEZRUCHENCO,Natalia,Ivanova,,,,,,,,22/08/1979,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,,,,,,Secretary of the Election Commission of the Crimea Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0081 Ukraine imposed sanctions on 15/05/2017 (UK Statement of Reasons):Secretary of the Crimea Electoral Commission. In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13667 +BEZRUCHENCO,Nataliia,,,,,,,,,22/08/1979,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,,,,,,Secretary of the Election Commission of the Crimea Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0081 Ukraine imposed sanctions on 15/05/2017 (UK Statement of Reasons):Secretary of the Crimea Electoral Commission. In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13667 +BEZRUCHENCO,Nataliya,,,,,,,,,22/08/1979,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,,,,,,Secretary of the Election Commission of the Crimea Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0081 Ukraine imposed sanctions on 15/05/2017 (UK Statement of Reasons):Secretary of the Crimea Electoral Commission. In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13667 +BEZRUCHENCO,Natalya,,,,,,,,,22/08/1979,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,,,,,,Secretary of the Election Commission of the Crimea Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0081 Ukraine imposed sanctions on 15/05/2017 (UK Statement of Reasons):Secretary of the Crimea Electoral Commission. In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13667 +BEZRUCHENKO,Natalia,Ivanova,,,,,,,,22/08/1979,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,,,,,,Secretary of the Election Commission of the Crimea Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0081 Ukraine imposed sanctions on 15/05/2017 (UK Statement of Reasons):Secretary of the Crimea Electoral Commission. In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13667 +BEZRUCHENKO,Natalia,Ivanovna,,,,,Наталья Ивановна БЕЗРУЧЕНКО,,Russian,22/08/1979,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,,,,,,Secretary of the Election Commission of the Crimea Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0081 Ukraine imposed sanctions on 15/05/2017 (UK Statement of Reasons):Secretary of the Crimea Electoral Commission. In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,14/05/2018,31/12/2020,16/09/2022,13667 +BEZRUCHENKO,Nataliia,,,,,,,,,22/08/1979,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,,,,,,Secretary of the Election Commission of the Crimea Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0081 Ukraine imposed sanctions on 15/05/2017 (UK Statement of Reasons):Secretary of the Crimea Electoral Commission. In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13667 +BEZRUCHENKO,Nataliya,,,,,,,,,22/08/1979,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,,,,,,Secretary of the Election Commission of the Crimea Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0081 Ukraine imposed sanctions on 15/05/2017 (UK Statement of Reasons):Secretary of the Crimea Electoral Commission. In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13667 +BEZRUCHENKO,Natalia,Ivanovna,,,,,Наталія Іванівна БЕЗРУЧЕНКО,,Ukrainian,22/08/1979,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,,,,,,Secretary of the Election Commission of the Crimea Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0081 Ukraine imposed sanctions on 15/05/2017 (UK Statement of Reasons):Secretary of the Crimea Electoral Commission. In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13667 +BHAI,Bada,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +BHAI,Bada,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +BHAI,Bada,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +BHAI,Dawood,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +BHAI,Dawood,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +BHAI,Dawood,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +BHAI,Iqbal,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +BHAI,Iqbal,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +BHAI,Iqbal,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +BHATTVI,Hafiz,Abdul,Salam,,,Mullah,,,,00/00/1940,"Gujranwala, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0182 (UN Ref):QDi.307 Founding member of Lashkar-e-Tayyiba (QDe.118) and deputy to Lashkar-e-Tayyiba leader Hafiz Muhammad Saeed (QDi.263). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4815206,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12630 +BHATTVI,Molvi,Abdursalam,,,,,,,,00/00/1940,"Gujranwala, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0182 (UN Ref):QDi.307 Founding member of Lashkar-e-Tayyiba (QDe.118) and deputy to Lashkar-e-Tayyiba leader Hafiz Muhammad Saeed (QDi.263). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4815206,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12630 +BHATTVI,Mullah,Abdul,Salaam,,,,,,,00/00/1940,"Gujranwala, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0182 (UN Ref):QDi.307 Founding member of Lashkar-e-Tayyiba (QDe.118) and deputy to Lashkar-e-Tayyiba leader Hafiz Muhammad Saeed (QDi.263). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4815206,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12630 +BHATTWI,Abdul,Salam,,,,,,,,00/00/1940,"Gujranwala, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0182 (UN Ref):QDi.307 Founding member of Lashkar-e-Tayyiba (QDe.118) and deputy to Lashkar-e-Tayyiba leader Hafiz Muhammad Saeed (QDi.263). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4815206,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12630 +BHUTTAVI,HAFIZ,ABDUL,SALAM,,,Maulavi,,,,00/00/1940,"Gujranwala, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0182 (UN Ref):QDi.307 Founding member of Lashkar-e-Tayyiba (QDe.118) and deputy to Lashkar-e-Tayyiba leader Hafiz Muhammad Saeed (QDi.263). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4815206,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12630 +BHUTVI,Abdul,Salam,,,,,,,,00/00/1940,"Gujranwala, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0182 (UN Ref):QDi.307 Founding member of Lashkar-e-Tayyiba (QDe.118) and deputy to Lashkar-e-Tayyiba leader Hafiz Muhammad Saeed (QDi.263). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4815206,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12630 +BHUTVI,Hafiz,Abdussalaam,,,,,,,,00/00/1940,"Gujranwala, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0182 (UN Ref):QDi.307 Founding member of Lashkar-e-Tayyiba (QDe.118) and deputy to Lashkar-e-Tayyiba leader Hafiz Muhammad Saeed (QDi.263). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4815206,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12630 +BIBIKOVA,Yelena,Vasilyevna,,,,,Елена Васильевна БИБИКОВА,,,23/09/1956,Staroderevyankovskaya,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0916 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14867 +BICHAEV,Artem,Alexandrovich,,,,,Бичаев Артем Александрович,,,04/04/1990,Roslavl,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0320 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14265 +BIDEVKA,Vladimir,Anatolievitch,,,,,,,,07/03/1981,(1) Makeevka (2) Donestsk oblast,,Ukraine,,,,,Chairperson of the so-called Donetsk People's Council,,,,,,,,,"(UK Sanctions List Ref):RUS0082 (UK Statement of Reasons):Chairperson' of the so-called 'People's Council' of the so-called 'Donetsk People's Republic'. In taking on and acting in this capacity, he actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name,,Russia,10/12/2018,31/12/2020,16/09/2022,13724 +BIDONKO,Sergey,Yurievich,,,,,Бидонько Сергей Юрьевич,,,18/08/1975,Karpinsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0680 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14631 +BIDYOVKA,Vladimir,Anatolievich,,,,,Владимир Анатольевич БИДЁВКА,,Russian,07/03/1981,(1) Makeevka (2) Donestsk oblast,,Ukraine,,,,,Chairperson of the so-called Donetsk People's Council,,,,,,,,,"(UK Sanctions List Ref):RUS0082 (UK Statement of Reasons):Chairperson' of the so-called 'People's Council' of the so-called 'Donetsk People's Republic'. In taking on and acting in this capacity, he actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,10/12/2018,31/12/2020,16/09/2022,13724 +BIDYOVKA,Volodymyr,Anatolyevich,,,,,Володимир Анатолійович БІДЬОВКА,,Ukrainian,07/03/1981,(1) Makeevka (2) Donestsk oblast,,Ukraine,,,,,Chairperson of the so-called Donetsk People's Council,,,,,,,,,"(UK Sanctions List Ref):RUS0082 (UK Statement of Reasons):Chairperson' of the so-called 'People's Council' of the so-called 'Donetsk People's Republic'. In taking on and acting in this capacity, he actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,10/12/2018,31/12/2020,16/09/2022,13724 +BIF,,,,,,,,,,,,,,,,,,,,,,,,,,Bangladesh,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BIF,,,,,,,,,,,,,,,,,,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BIF,,,,,,,,,,,,,,,,,,,,,,,,Gaza Strip,,,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BIF,,,,,,,,,,,,,,,,,,,20-24 Branford Place,Suite 705,,,Newark,New Jersey,67102,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BIF,,,,,,,,,,,,,,,,,,,8820 Mobile Avenue,IA,Oak Lawn,,,Illinois,60453,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BIF,,,,,,,,,,,,,,,,,,,9838 S. Roberts Road,Suite 1W,,,Palos Hills,Illinois,60465,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BIF,,,,,,,,,,,,,,,,,,,PO Box 1937,,,,,Khartoum,,Sudan,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BIF,,,,,,,,,,,,,,,,,,,PO Box 548,,,,Worth,Illinois,60482,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BIFOV,Anatoly,Zhamalovich,,,,,Бифов Анатолий Жамалович,,,07/01/1963,Baskan,Russia,Russia,640552929,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0542 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14487 +BIF-USA,,,,,,,,,,,,,,,,,,,,,,,,,,Bangladesh,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BIF-USA,,,,,,,,,,,,,,,,,,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BIF-USA,,,,,,,,,,,,,,,,,,,,,,,,Gaza Strip,,,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BIF-USA,,,,,,,,,,,,,,,,,,,20-24 Branford Place,Suite 705,,,Newark,New Jersey,67102,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BIF-USA,,,,,,,,,,,,,,,,,,,8820 Mobile Avenue,IA,Oak Lawn,,,Illinois,60453,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BIF-USA,,,,,,,,,,,,,,,,,,,9838 S. Roberts Road,Suite 1W,,,Palos Hills,Illinois,60465,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BIF-USA,,,,,,,,,,,,,,,,,,,PO Box 1937,,,,,Khartoum,,Sudan,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BIF-USA,,,,,,,,,,,,,,,,,,,PO Box 548,,,,Worth,Illinois,60482,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +BIGARUKA,,,,,,,,,,01/01/1966,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,AKA,Low quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +BIGARUKA,,,,,,,,,,00/00/1967,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,AKA,Low quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +BIGARUKA,,,,,,,,,,28/08/1966,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,AKA,Low quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +BIGURURA,,,,,,,,,,01/01/1966,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,AKA,Low quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +BIGURURA,,,,,,,,,,00/00/1967,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,AKA,Low quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +BIGURURA,,,,,,,,,,28/08/1966,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,AKA,Low quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +BILAL,,,,,,,,,,29/01/1971,Roubaix,France,France,,,,,,,,,,,,,France,(UK Sanctions List Ref):AQD0217 (UN Ref):QDi.095 In custody in France as of May 2004. Sentenced to 25 years imprisonment in France in 2007. His sentence is due to end on 13 Jul. 2023 and his unconditional detention to end on 13 Aug. 2020. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4531664,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,11/02/2022,7797 +BILAL,,,,,,,,,,12/10/1965,Oum el Bouaghi,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0212 (UN Ref):QDi.167 In detention in Algeria as at April 2010. Arrest warrant issued by the German authorities on 9 Oct. 2003 for involvement in kidnapping. Former member of the Katibat Tarek Ibn Ziad of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/05/2004,03/05/2004,31/12/2020,8352 +BILAL,Abu,,,,,,Абу-Билал,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +BILAL,Abu,,,,,,Абу-Билал,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +BILAL,Basel,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0029 worked with listed individuals: Bassam al-Misri and Ahmad Kafan. (UK Statement of Reasons):Police officer at Idlib central prison; has taken part directly in acts of torture of opponents held in Idlib central prison.,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12721 +BILAL,Bassel,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0029 worked with listed individuals: Bassam al-Misri and Ahmad Kafan. (UK Statement of Reasons):Police officer at Idlib central prison; has taken part directly in acts of torture of opponents held in Idlib central prison.,Individual,Primary name,,Syria,24/07/2012,31/12/2020,31/12/2020,12721 +BILAL,Ghassan,,,,,,,,,,,,Syria,,,,,Head of Military Police,,,,,,,,,"(UK Sanctions List Ref):SYR0054 Linked to Maher Al-Asad (sanctioned in 2011, Major General of the 42nd Brigade and brother of President Bashar Al-Asad) (UK Statement of Reasons):General in command of the 4th Division reserve bureau. Adviser to Maher al-Assad and coordinator of security operations. Responsible for the crackdown on the civilian population across Syria and involved in several breaches of cessation of hostilities in the Ghouta. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,31/12/2020,12214 +BILAL,Mohammed,,,,,,محمد نافي بلال,,,25/05/1971,,,Syria,,,,,Senior communications officer in Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0176 (UK Statement of Reasons):As a senior officer in the Air Force Intelligence Service of Syria, he supports the Syrian regime and he is responsible for the violent repression against the civilian population. He is also associated with the listed Scientific Studies Research Centre (SSRC). Head of Tartus Police since December 2018. (Gender):Male",Individual,Primary name,,Syria,22/10/2014,31/12/2020,14/02/2022,13162 +BILAL,Muhammad,,,,,,,,,25/05/1971,,,Syria,,,,,Senior communications officer in Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0176 (UK Statement of Reasons):As a senior officer in the Air Force Intelligence Service of Syria, he supports the Syrian regime and he is responsible for the violent repression against the civilian population. He is also associated with the listed Scientific Studies Research Centre (SSRC). Head of Tartus Police since December 2018. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,14/02/2022,13162 +BILYALOV,Rinat,Alievich,,,,,БИЛЯЛОВ Ринат Алиевич,Cyrillic,Russian,20/10/1969,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1230 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial Integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15182 +BILYALOV,Rinat,Aliyevich,,,,,БИЛЯЛОВ Ринат Алиевич,Cyrillic,Russian,20/10/1969,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1230 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial Integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15182 +BIMA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0100 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK merchant vessel M/V SAM JONG 2 was involved in ship-to-ship transfer operations of oil in late January 2018. Listed as asset of Korea Samjong Shipping (OFSI ID: 13635, UN Reference Number: UN Ref KPe.064) (IMO number):7408873 (Current owners):Korea Samjong Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Oil tanker (Tonnage of ship):1676 (Length of ship):80 (Year built):1975",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13651 +BIN AL SHIBH,Ramzi,,,,,,,,,16/09/1973,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +BIN AL SHIBH,Ramzi,,,,,,,,,01/05/1972,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +BIN HASSAYN,Sayf,Allah,'Umar,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,,,,,,,,Libya,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +BIN HASSAYN,Sayf,Allah,'Umar,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,60 Rue de la Libye Hamman Lif,Ben Arous,,,,,,Tunisia,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +BIN HUSSAYN,Sayf,Allah,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,,,,,,,,Libya,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +BIN HUSSAYN,Sayf,Allah,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,60 Rue de la Libye Hamman Lif,Ben Arous,,,,,,Tunisia,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +BIN LADEN,Hamza,Usama,Muhammad,,,,حمزة أسامة محمد بن لادن,,,09/05/1989,Jeddah,Saudi Arabia,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0356 (UN Ref):QDi.421 Son of Usama bin Laden (deceased). Announced by Aiman Muhammed Rabi al-Zawahiri (QDi.006) as an official member of Al-Qaida (QDe.004). Has called for followers of Al-Qaida to commit terror attacks. Is seen as the most probable successor of al-Zawahiri. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6297888,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,01/03/2019,28/02/2019,31/12/2020,13770 +BIN MARWAN,BILAL,,,,,,بلال بن مروان,,,00/00/1947,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0156 (UN Ref):QDi.009 Senior lieutenant of UBL. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423806,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7099 +BIN NURDIN,Muhammad,Ratin,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +BIN NURDIN,Muhammad,Ratin,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,96-06-06 Flat Sri Kota,Bandar Tun Razak,,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,56100,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +BIN NURDIN,Muhammad,Ratin,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,B-3B-19 Glenview Villa,Jalan 49 Off Jalan Kuari,Taman Pinggiran Cheras,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +BIN QUMU,Sufyan,,,,,,,,,26/06/1959,Derna,Libya,Libya,,,,,,,,,,,,,Libya,(UK Sanctions List Ref):AQD0317 (UN Ref):QDi.355 Leader of Ansar al Charia Derna (QDe.145). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5893103,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/09/2015,03/09/2015,31/12/2020,13275 +BIN UDIN,Mhammad,Rahim,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +BIN UDIN,Mhammad,Rahim,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,96-06-06 Flat Sri Kota,Bandar Tun Razak,,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,56100,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +BIN UDIN,Mhammad,Rahim,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,B-3B-19 Glenview Villa,Jalan 49 Off Jalan Kuari,Taman Pinggiran Cheras,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +BIN UDIN,Mohd,Radi,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +BIN UDIN,Mohd,Radi,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,96-06-06 Flat Sri Kota,Bandar Tun Razak,,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,56100,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +BIN UDIN,Mohd,Radi,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,B-3B-19 Glenview Villa,Jalan 49 Off Jalan Kuari,Taman Pinggiran Cheras,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +BIN UDIN,Mohamad,Rafi,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +BIN UDIN,Mohamad,Rafi,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,96-06-06 Flat Sri Kota,Bandar Tun Razak,,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,56100,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +BIN UDIN,Mohamad,Rafi,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,B-3B-19 Glenview Villa,Jalan 49 Off Jalan Kuari,Taman Pinggiran Cheras,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +BINAH,Yassin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,,Mogadishu,Somalia,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BINAH,Yassin,,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,Rinkeby,Stockholm,Sweden,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +BINALSHEIDAH,Ramzi,Mohamed,Abdullah,,,,,,,16/09/1973,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +BINALSHEIDAH,Ramzi,Mohamed,Abdullah,,,,,,,01/05/1972,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +BINALSHIB,Ramzi,,,,,,,,,16/09/1973,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +BINALSHIB,Ramzi,,,,,,,,,01/05/1972,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +BINALSHIBH,RAMZI,MOHAMED,ABDULLAH,,,,رمزي محمد عبد الله بن الشيبة,,,16/09/1973,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +BINALSHIBH,RAMZI,MOHAMED,ABDULLAH,,,,رمزي محمد عبد الله بن الشيبة,,,01/05/1972,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +BITAR,Bayan,,,,,,,,,08/03/1947,,,,,,,,Managing Director of the Organisation for Technological Industries (OTI) and the Syrian Company for Information Technology (SCIT),PO Box 11037,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0030 (UK Statement of Reasons):Managing Director of the Organisation for Technological Industries (OTI), and the Syrian Company for Information Technology (SCIT), which are both subsidiaries of the Syrian Ministry of Defence, which has been designated by the Council. OTI assists in the production of chemical weapons for the Syrian regime. As Managing Director of OTI and the SCIT Bayan Bitar provides support to the Syrian regime. Due to his role in the production of chemical weapons, he also shares responsibility for the violent repression against the Syrian population. In view of his senior position in these entities, he is also associated with the designated entities OTI and SCIT. (Gender):Male",Individual,Primary name,,Syria,09/03/2015,31/12/2020,17/02/2022,13228 +BLACK SEA BANK DEVELOPMENT AND RECONSTRUCTION,,,,,,,,,,,,,,,,,,,Bil’shovyts’ka Street,24,Simferopol,Crimea,,,,Ukraine,"(UK Sanctions List Ref):RUS0233 Other suspected locations: 22 regional offices in Crimea (UK Statement of Reasons):JOINT STOCK COMPANY “BLACK SEA BANK FOR DEVELOPMENT AND RECONSTRUCTION” hereafter,  JSC “BLACK SEA BANK FOR DEVELOPMENT AND RECONSTRUCTION” is a Crimean bank that was created immediately after the illegal annexation of Crimea in 2014. It has capitalised on the sector’s fear of Western sanctions and the lack of banks in Crimea. By operating in Crimea, JSC “BLACK SEA BANK FOR DEVELOPMENT AND RECONSTRUCTION” has consolidated Crimea into the Russian Federation through the financial system. (Phone number):(1) +7 (365) 254-89-05 (2) +7 (978) 982-52-09 (3) +7(365) 260-58-05 (4) +7 (365) 254-89-18 (5) +7 (978) 750-36-94 (6) +7 (978) 835-27-83 (7) +7 (978) 095-11-18 (8) +7 (978) 825-59-40 (9) +7 (365) 255-02-48 (Website):https://www.chbrr.crimea.com/ (Email address):(1) magnolia.byx@yandex.ua (2) sicomplit@i.ua (3) t_c82@inbox.ru (4) zakupkj@chbrr.crimea.com (Type of entity):Public Joint Stock Company (PJSC)",Entity,AKA,,Russia,22/02/2022,22/02/2022,22/02/2022,14178 +BLACK SEA BANK FOR DEVELOPMENT AND RECONSTRUCTION,,,,,,,Акционерное Общество Черноморский Банк Развития и Реконструкции,,,,,,,,,,,,Bil’shovyts’ka Street,24,Simferopol,Crimea,,,,Ukraine,"(UK Sanctions List Ref):RUS0233 Other suspected locations: 22 regional offices in Crimea (UK Statement of Reasons):JOINT STOCK COMPANY “BLACK SEA BANK FOR DEVELOPMENT AND RECONSTRUCTION” hereafter,  JSC “BLACK SEA BANK FOR DEVELOPMENT AND RECONSTRUCTION” is a Crimean bank that was created immediately after the illegal annexation of Crimea in 2014. It has capitalised on the sector’s fear of Western sanctions and the lack of banks in Crimea. By operating in Crimea, JSC “BLACK SEA BANK FOR DEVELOPMENT AND RECONSTRUCTION” has consolidated Crimea into the Russian Federation through the financial system. (Phone number):(1) +7 (365) 254-89-05 (2) +7 (978) 982-52-09 (3) +7(365) 260-58-05 (4) +7 (365) 254-89-18 (5) +7 (978) 750-36-94 (6) +7 (978) 835-27-83 (7) +7 (978) 095-11-18 (8) +7 (978) 825-59-40 (9) +7 (365) 255-02-48 (Website):https://www.chbrr.crimea.com/ (Email address):(1) magnolia.byx@yandex.ua (2) sicomplit@i.ua (3) t_c82@inbox.ru (4) zakupkj@chbrr.crimea.com (Type of entity):Public Joint Stock Company (PJSC)",Entity,Primary name,,Russia,22/02/2022,22/02/2022,22/02/2022,14178 +BLACK SEA BANK OF DEVELOPMENT AND RECONSTRUCTION,,,,,,,,,,,,,,,,,,,Bil’shovyts’ka Street,24,Simferopol,Crimea,,,,Ukraine,"(UK Sanctions List Ref):RUS0233 Other suspected locations: 22 regional offices in Crimea (UK Statement of Reasons):JOINT STOCK COMPANY “BLACK SEA BANK FOR DEVELOPMENT AND RECONSTRUCTION” hereafter,  JSC “BLACK SEA BANK FOR DEVELOPMENT AND RECONSTRUCTION” is a Crimean bank that was created immediately after the illegal annexation of Crimea in 2014. It has capitalised on the sector’s fear of Western sanctions and the lack of banks in Crimea. By operating in Crimea, JSC “BLACK SEA BANK FOR DEVELOPMENT AND RECONSTRUCTION” has consolidated Crimea into the Russian Federation through the financial system. (Phone number):(1) +7 (365) 254-89-05 (2) +7 (978) 982-52-09 (3) +7(365) 260-58-05 (4) +7 (365) 254-89-18 (5) +7 (978) 750-36-94 (6) +7 (978) 835-27-83 (7) +7 (978) 095-11-18 (8) +7 (978) 825-59-40 (9) +7 (365) 255-02-48 (Website):https://www.chbrr.crimea.com/ (Email address):(1) magnolia.byx@yandex.ua (2) sicomplit@i.ua (3) t_c82@inbox.ru (4) zakupkj@chbrr.crimea.com (Type of entity):Public Joint Stock Company (PJSC)",Entity,AKA,,Russia,22/02/2022,22/02/2022,22/02/2022,14178 +BLACKENERGY GROUP,,,,,,,,,,,,,,,,,,,22 Kirova Street,,,,,Moscow,,Russia,"(UK Sanctions List Ref):CYB0009 (UK Statement of Reasons):The Main Centre for Special Technologies (GTsST) of the Russian General Staff Main Intelligence Directorate (GRU), also known by its field post number ‘74455’ and “Sandworm” by industry, was responsible for cyber attacks which disrupted critical national infrastructure in Ukraine, cutting off the electricity grid. The perpetrators were directly responsible for relevant cyber activity by carrying out information system interference intended to undermine integrity, prosperity and security of the Ukraine. These cyber attacks originated in Russia and were unauthorised (Type of entity):Department within Government/Military Unit (Parent company):Russian Ministry of Defence",Entity,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13911 +BLANC,Aigle,,,,,,,,,,,,Congo (Democratic Republic),,,,,FARDC General,,,,,,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0031 (UN Ref):CDi.002 Left the CNDP in January 2008. As of June 2011, resides in Kinshasa. Since 2010, Kakolele has been involved in activities apparently on behalf of the DRC government’s Programme de Stabilisation et Reconstruction des Zones Sortant des Conflits Armés (STAREC), including participation in a STAREC mission to Goma and Beni in March 2011. DRC authorities arrested him in December 2013 in Beni, North Kivu Province, for allegedly blocking the DDR process. He left the DRC and lived in Kenya for some time, before being called back by the DRC Government to assist them with the situation in the Territory of Beni. He was arrested in October 2015 in the area of Mambasa for allegedly supporting a Mai Mai group, but no charges were brought and as of June 2016, he lived in Kinshasa. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776078 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8732 +BLANCO HURTADO,Nestor,Neptali,,,,,,,,26/09/1982,,Venezuela,Venezuela,,,V-15222057,,Major in the Bolivarian National Guard (GNB) – works alongside DGCIM,,,,,,,,,"(UK Sanctions List Ref):VEN0019 (UK Statement of Reasons):Major in the Bolivarian National Guard (GNB), operated alongside officials in the Directorate-General of Military Counter- Intelligence (Dirección General de Contrainteligencia Militar (DGCIM)) since at least December 2017. Responsible for serious human rights violations, including torture, the use of excessive force and the mistreatment of detainees in DGCIM facilities. (Gender):Male",Individual,Primary name,,Venezuela,27/09/2019,31/12/2020,31/12/2020,13791 +BLANCO MARRERO,Rafael,Ramon,,,,,,,,28/02/1968,,Venezuela,Venezuela,,,6250588,,Deputy Director Dirección General de Contrainteligencia Militar (General Directorate of Military Counter-Intelligence) (DGCIM) and newly appointed Division General in the National Bolivarian Armed Forces,,,,,,,,,"(UK Sanctions List Ref):VEN0020 (UK Statement of Reasons):Deputy Director of the Directorate-General of Military Counter-Intelligence (Dirección General de Contrainteligencia Militar (DGCIM)) since at least December 2018 and Division General of the Venezuelan Bolivarian National Army since 5 July 2019. Responsible for serious human rights violations, including torture, the use of excessive force and the mistreatment of detainees in DGCIM facilities that were committed by DGCIM officials under his command. Linked to the death of Captain Acosta. (Gender):Male",Individual,Primary name,,Venezuela,27/09/2019,31/12/2020,31/12/2020,13792 +BLOTSKY,Vladimir,Nikolaevich,,,,,Блоцкий Владимир Николаевич,,,10/11/1977,Moscow,Russia,Russia,512872403,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0543 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14488 +BNK (UK),,,,,,,,,,,,,,,,,,,26-28 Hammersmith Grove,MWB Business Exchange Centre,,,,,W6 7BA,United Kingdom,"(UK Sanctions List Ref):BEL0107 (UK Statement of Reasons):BNK (UK) Ltd Company is controlled directly or indirectly by the President of Belarus, Alexander Lukashenko, who has been responsible for serious violations of human rights in Belarus. BNK (UK) Ltd is controlled by CJSC Belarusian Oil Company, the state exporter of oil products, of which Belarusneft Production Association, a State owned entity in Belarus is the major controlling party. (Website):http://www.belnaft.co.uk/ (Parent company):Belneftekhim. Belorusneft. CJSC Belarusian Oil Company (Business Reg No):UK Company no. 06527449",Entity,AKA,,Belarus,21/06/2021,21/06/2021,18/03/2022,14124 +BNK (UK),,,,,,,,,,,,,,,,,,,Salatin House,19 Cedar Road,,,Sutton,Surrey,SM2 5DA,United Kingdom,"(UK Sanctions List Ref):BEL0107 (UK Statement of Reasons):BNK (UK) Ltd Company is controlled directly or indirectly by the President of Belarus, Alexander Lukashenko, who has been responsible for serious violations of human rights in Belarus. BNK (UK) Ltd is controlled by CJSC Belarusian Oil Company, the state exporter of oil products, of which Belarusneft Production Association, a State owned entity in Belarus is the major controlling party. (Website):http://www.belnaft.co.uk/ (Parent company):Belneftekhim. Belorusneft. CJSC Belarusian Oil Company (Business Reg No):UK Company no. 06527449",Entity,AKA,,Belarus,21/06/2021,21/06/2021,18/03/2022,14124 +BNK (UK) LIMITED,,,,,,,,,,,,,,,,,,,26-28 Hammersmith Grove,MWB Business Exchange Centre,,,,,W6 7BA,United Kingdom,"(UK Sanctions List Ref):BEL0107 (UK Statement of Reasons):BNK (UK) Ltd Company is controlled directly or indirectly by the President of Belarus, Alexander Lukashenko, who has been responsible for serious violations of human rights in Belarus. BNK (UK) Ltd is controlled by CJSC Belarusian Oil Company, the state exporter of oil products, of which Belarusneft Production Association, a State owned entity in Belarus is the major controlling party. (Website):http://www.belnaft.co.uk/ (Parent company):Belneftekhim. Belorusneft. CJSC Belarusian Oil Company (Business Reg No):UK Company no. 06527449",Entity,AKA,,Belarus,21/06/2021,21/06/2021,18/03/2022,14124 +BNK (UK) LIMITED,,,,,,,,,,,,,,,,,,,Salatin House,19 Cedar Road,,,Sutton,Surrey,SM2 5DA,United Kingdom,"(UK Sanctions List Ref):BEL0107 (UK Statement of Reasons):BNK (UK) Ltd Company is controlled directly or indirectly by the President of Belarus, Alexander Lukashenko, who has been responsible for serious violations of human rights in Belarus. BNK (UK) Ltd is controlled by CJSC Belarusian Oil Company, the state exporter of oil products, of which Belarusneft Production Association, a State owned entity in Belarus is the major controlling party. (Website):http://www.belnaft.co.uk/ (Parent company):Belneftekhim. Belorusneft. CJSC Belarusian Oil Company (Business Reg No):UK Company no. 06527449",Entity,AKA,,Belarus,21/06/2021,21/06/2021,18/03/2022,14124 +BNK (UK) LTD,,,,,,,,,,,,,,,,,,,26-28 Hammersmith Grove,MWB Business Exchange Centre,,,,,W6 7BA,United Kingdom,"(UK Sanctions List Ref):BEL0107 (UK Statement of Reasons):BNK (UK) Ltd Company is controlled directly or indirectly by the President of Belarus, Alexander Lukashenko, who has been responsible for serious violations of human rights in Belarus. BNK (UK) Ltd is controlled by CJSC Belarusian Oil Company, the state exporter of oil products, of which Belarusneft Production Association, a State owned entity in Belarus is the major controlling party. (Website):http://www.belnaft.co.uk/ (Parent company):Belneftekhim. Belorusneft. CJSC Belarusian Oil Company (Business Reg No):UK Company no. 06527449",Entity,Primary name,,Belarus,21/06/2021,21/06/2021,18/03/2022,14124 +BNK (UK) LTD,,,,,,,,,,,,,,,,,,,Salatin House,19 Cedar Road,,,Sutton,Surrey,SM2 5DA,United Kingdom,"(UK Sanctions List Ref):BEL0107 (UK Statement of Reasons):BNK (UK) Ltd Company is controlled directly or indirectly by the President of Belarus, Alexander Lukashenko, who has been responsible for serious violations of human rights in Belarus. BNK (UK) Ltd is controlled by CJSC Belarusian Oil Company, the state exporter of oil products, of which Belarusneft Production Association, a State owned entity in Belarus is the major controlling party. (Website):http://www.belnaft.co.uk/ (Parent company):Belneftekhim. Belorusneft. CJSC Belarusian Oil Company (Business Reg No):UK Company no. 06527449",Entity,Primary name,,Belarus,21/06/2021,21/06/2021,18/03/2022,14124 +BNK UK,,,,,,,,,,,,,,,,,,,26-28 Hammersmith Grove,MWB Business Exchange Centre,,,,,W6 7BA,United Kingdom,"(UK Sanctions List Ref):BEL0107 (UK Statement of Reasons):BNK (UK) Ltd Company is controlled directly or indirectly by the President of Belarus, Alexander Lukashenko, who has been responsible for serious violations of human rights in Belarus. BNK (UK) Ltd is controlled by CJSC Belarusian Oil Company, the state exporter of oil products, of which Belarusneft Production Association, a State owned entity in Belarus is the major controlling party. (Website):http://www.belnaft.co.uk/ (Parent company):Belneftekhim. Belorusneft. CJSC Belarusian Oil Company (Business Reg No):UK Company no. 06527449",Entity,AKA,,Belarus,21/06/2021,21/06/2021,18/03/2022,14124 +BNK UK,,,,,,,,,,,,,,,,,,,Salatin House,19 Cedar Road,,,Sutton,Surrey,SM2 5DA,United Kingdom,"(UK Sanctions List Ref):BEL0107 (UK Statement of Reasons):BNK (UK) Ltd Company is controlled directly or indirectly by the President of Belarus, Alexander Lukashenko, who has been responsible for serious violations of human rights in Belarus. BNK (UK) Ltd is controlled by CJSC Belarusian Oil Company, the state exporter of oil products, of which Belarusneft Production Association, a State owned entity in Belarus is the major controlling party. (Website):http://www.belnaft.co.uk/ (Parent company):Belneftekhim. Belorusneft. CJSC Belarusian Oil Company (Business Reg No):UK Company no. 06527449",Entity,AKA,,Belarus,21/06/2021,21/06/2021,18/03/2022,14124 +BNK UK LIMITED,,,,,,,,,,,,,,,,,,,26-28 Hammersmith Grove,MWB Business Exchange Centre,,,,,W6 7BA,United Kingdom,"(UK Sanctions List Ref):BEL0107 (UK Statement of Reasons):BNK (UK) Ltd Company is controlled directly or indirectly by the President of Belarus, Alexander Lukashenko, who has been responsible for serious violations of human rights in Belarus. BNK (UK) Ltd is controlled by CJSC Belarusian Oil Company, the state exporter of oil products, of which Belarusneft Production Association, a State owned entity in Belarus is the major controlling party. (Website):http://www.belnaft.co.uk/ (Parent company):Belneftekhim. Belorusneft. CJSC Belarusian Oil Company (Business Reg No):UK Company no. 06527449",Entity,AKA,,Belarus,21/06/2021,21/06/2021,18/03/2022,14124 +BNK UK LIMITED,,,,,,,,,,,,,,,,,,,Salatin House,19 Cedar Road,,,Sutton,Surrey,SM2 5DA,United Kingdom,"(UK Sanctions List Ref):BEL0107 (UK Statement of Reasons):BNK (UK) Ltd Company is controlled directly or indirectly by the President of Belarus, Alexander Lukashenko, who has been responsible for serious violations of human rights in Belarus. BNK (UK) Ltd is controlled by CJSC Belarusian Oil Company, the state exporter of oil products, of which Belarusneft Production Association, a State owned entity in Belarus is the major controlling party. (Website):http://www.belnaft.co.uk/ (Parent company):Belneftekhim. Belorusneft. CJSC Belarusian Oil Company (Business Reg No):UK Company no. 06527449",Entity,AKA,,Belarus,21/06/2021,21/06/2021,18/03/2022,14124 +BNK UK LTD,,,,,,,,,,,,,,,,,,,26-28 Hammersmith Grove,MWB Business Exchange Centre,,,,,W6 7BA,United Kingdom,"(UK Sanctions List Ref):BEL0107 (UK Statement of Reasons):BNK (UK) Ltd Company is controlled directly or indirectly by the President of Belarus, Alexander Lukashenko, who has been responsible for serious violations of human rights in Belarus. BNK (UK) Ltd is controlled by CJSC Belarusian Oil Company, the state exporter of oil products, of which Belarusneft Production Association, a State owned entity in Belarus is the major controlling party. (Website):http://www.belnaft.co.uk/ (Parent company):Belneftekhim. Belorusneft. CJSC Belarusian Oil Company (Business Reg No):UK Company no. 06527449",Entity,AKA,,Belarus,21/06/2021,21/06/2021,18/03/2022,14124 +BNK UK LTD,,,,,,,,,,,,,,,,,,,Salatin House,19 Cedar Road,,,Sutton,Surrey,SM2 5DA,United Kingdom,"(UK Sanctions List Ref):BEL0107 (UK Statement of Reasons):BNK (UK) Ltd Company is controlled directly or indirectly by the President of Belarus, Alexander Lukashenko, who has been responsible for serious violations of human rights in Belarus. BNK (UK) Ltd is controlled by CJSC Belarusian Oil Company, the state exporter of oil products, of which Belarusneft Production Association, a State owned entity in Belarus is the major controlling party. (Website):http://www.belnaft.co.uk/ (Parent company):Belneftekhim. Belorusneft. CJSC Belarusian Oil Company (Business Reg No):UK Company no. 06527449",Entity,AKA,,Belarus,21/06/2021,21/06/2021,18/03/2022,14124 +BOCHAROV,Andrei,Ivanovich,,,,,Андрей Иванович Бочаров,,,14/10/1969,,,Russia,,,,,Governor of Volgograd Region,,,,,,,,,"(UK Sanctions List Ref):RUS1522 (UK Statement of Reasons):Andrei Ivanovich BOCHAROV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because BOCHAROV is a regional governor. Specifically, BOCHAROV is Governor of Volgograd Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15464 +BOGATOV,Andrei,Mikhailovich,,,,Commander,"Богатов, Андрей Михайлович",,,14/06/1964,"Stary Oskol, Belgorod Region",Russia,Russia,,,,,Was Head of the 4th Reconnaissance and Attack Company of the Wagner Group,,,,,,,,,"(UK Sanctions List Ref):SYR0383 (UK Statement of Reasons):Andrei Mikhailovich Bogatov was the Head of the 4th Reconnaissance and Attack Company of the Wagner Group. As such he was a member of a militia which supported the Syrian regime and repressed the civilian population in Syria.   (Gender):Male",Individual,Primary name,,Syria,29/06/2022,29/06/2022,29/06/2022,15431 +BOGATOV,Andrei,Mychailovych,,,,,,,,14/06/1964,"Stary Oskol, Belgorod Region",Russia,Russia,,,,,Was Head of the 4th Reconnaissance and Attack Company of the Wagner Group,,,,,,,,,"(UK Sanctions List Ref):SYR0383 (UK Statement of Reasons):Andrei Mikhailovich Bogatov was the Head of the 4th Reconnaissance and Attack Company of the Wagner Group. As such he was a member of a militia which supported the Syrian regime and repressed the civilian population in Syria.   (Gender):Male",Individual,Primary name variation,,Syria,29/06/2022,29/06/2022,29/06/2022,15431 +BOGATOVA,Maria,Viktorovna,,,,,БОГАТОВА Мария Викторовна,Cyrillic,Russian,21/04/1997,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1231 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15183 +BOGDAN,Genadz,Andreevich,,,,,Генадзь Андрэевіч БОГДАН,,,08/01/1977,,,Belarus,,,,,(1) Deputy Chief Executive Officer of the President of Belarus (2) Deputy Head of the Belarus President Property Management Directorate,,,,,,,,,"(UK Sanctions List Ref):BEL0078 (UK Statement of Reasons):As Deputy Chief Executive Officer of the President of Belarus and Deputy Head of the Belarus President Property Management Directorate, Genadz Bogdan is actively supporting the Lukashenka regime and bears a responsibility for the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14036 +BOGDAN,Gennady,Andreievich,,,,,Геннадий Андреевич БОГДАН,,,08/01/1977,,,Belarus,,,,,(1) Deputy Chief Executive Officer of the President of Belarus (2) Deputy Head of the Belarus President Property Management Directorate,,,,,,,,,"(UK Sanctions List Ref):BEL0078 (UK Statement of Reasons):As Deputy Chief Executive Officer of the President of Belarus and Deputy Head of the Belarus President Property Management Directorate, Genadz Bogdan is actively supporting the Lukashenka regime and bears a responsibility for the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14036 +BOGDANOV,Vladimir,Mikhailovich,,,,Major General,,,,,,,,,,,,former Director of Criminalistics Institute. Head of FSB Special Technology Centre (parent entity of Criminalistics Institute),,,,,,,,,"(UK Sanctions List Ref):CHW0021 (UK Statement of Reasons):Vladimir Bogdanov is the head of the FSB's 'Special Technology Centre' (the parent entity of the FSB's Criminalistics Institute - Military Unit 34435). There are reasonable grounds to suspect that the Federal Security Service of the Russian Federation was involved in the attempted assassination of Alexey Navalny using a toxic nerve agent and as head of the FSB's 'Special Technology Centre' Bogdanov has responsibility for, provided support for, or promoted the actions of the operatives who carried out the operation. Alternatively, he is associated with those who carried out the operation. Evidence suggests that Vladimir Bogdanov was in close contact with Stanislav Makshakov, the commander of the team of operatives involved in the use of a chemical weapon in the attempted assassination of Alexey Navalny. This designation is part of a further package of designations targeting the FSB operatives directly involved in carrying out the operation. Russian opposition leader Alexey Navalny was the victim of an attempted assassination during his August 2020 visit to Siberia, in which a chemical weapon - a toxic nerve agent of the Novichok group - was used. The activities and movements of Alexey Navalny during his journey to Siberia, from where he intended to return to Moscow on 20th August 2020, were closely monitored by the Federal Security Service of the Russian Federation. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny is a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. (Gender):Male",Individual,Primary name,,Chemical Weapons,20/08/2021,20/08/2021,16/06/2022,14135 +BOGDANOV,Vladimir,Leonidovich,,,,,Владимир Леонидович БОГДАНОВ,Cyrillic,Russian,28/05/1951,,,Russia,,,,,Chief Executive Officer of Surgutneftegas/Surgutneftegaz,,,,,,,,,"(UK Sanctions List Ref):RUS1326 (UK Statement of Reasons):Vladimir BOGDANOV is the Chief Executive and Deputy Chairman of the Board of Directors of Surgutneftegaz, Russia’s fourth-largest oil producer.  In his capacity as the CEO of Surgutneftegaz, BOGDANOV is or has been involved in obtaining a benefit from or supporting the Government of Russia by working as a director or other manager of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian energy sector.  (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15285 +BOGDANOVSKY,Nikolay,Vaselyevich,,,,Colonel General,Николай Васильевич Богдановский,,,17/01/1957,Predgorny,Russia,Russia,,,,,First Deputy Chief of the General Staff of the Armed Forces of Russia,,,,,,,,,"(UK Sanctions List Ref):RUS1365 (UK Statement of Reasons):Colonel General Nikolay BOGDANOVSKY is a member of the Armed Forces of the Russian Federation, and currently holds the position of First Deputy Chief of the General Staff. BOGDANOVSKY is considered to have been either in direct command of and/or in a position to influence the deployment of troops involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that BOGDANOVSKY is an involved person in that he is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,21/04/2022,21/04/2022,21/04/2022,15316 +BOGOMAZ,Alexander,Vasilievich,,,,,Александр Васильевич Богомаз,,,23/02/1961,,,Russia,,,,,Governor of Bryansk Region,,,,,,,,,"(UK Sanctions List Ref):RUS1509 (UK Statement of Reasons):Alexander Vasilievich BOGOMAZ is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because BOGOMAZ is a regional governor. Specifically, BOGOMAZ is Governor of Bryansk Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15447 +BOGUSLAVSKY,Ivan,Josephovich,,,,Major General,БОГУСЛАВСКИЙ Иван Иосифович,Cyrillic,,04/08/1968,,,Belarus,,,,,Commander of the Chief Military Inspectorate,,,,,,,,,"(UK Sanctions List Ref):RUS0734 (UK Statement of Reasons):Major General Ivan Josephovich BOGUSLAVSKY has been involved in engaging in and providing support for, actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine, namely holding a senior position in the Belarusian Armed forces who were involved in a joint-exercise with the Russian military ahead of Russia’s invasion of Ukraine which: (1) threatened Ukraine; and (2) provided cover for Russian military preparations to invade Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14685 +BOGUSLAVSKY,Irek,Borisovich,,,,,Богуславский Ирек Борисович,,,09/09/1967,Kazan,Russia,Russia,766045998. 652758341,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0590 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14535 +BOKAREV,Andrei,Removich,,,,,,,,23/10/1966,Moscow,Russia,Russia,,,,,President of Transmashholding,,,,,,,,,"(UK Sanctions List Ref):RUS1335 (UK Statement of Reasons):Andrey Removich BOKAREV (hereafter BOKAREV) is a prominent Russian business figure. He is the President of Transmashholding, Russia’s largest producer of railway rolling stock and is also Chairman of the board of Kuzbassrazrezugol, a leading Russian coal and metal ore mining company. His senior positions in both of these companies mean that BOKAREV continues to obtain a benefit from and/or continues to support the Government of Russia by working as a director (whether executive or non-executive), trustee, or equivalent, of entities carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian transport sector and the Russian extractives sector. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,13/04/2022,15273 +BOKAREV,Andrey,Removich,,,,,АНДРЕЙ РЭМОВИЧ БОКАРЕВ,,,23/10/1966,Moscow,Russia,Russia,,,,,President of Transmashholding,,,,,,,,,"(UK Sanctions List Ref):RUS1335 (UK Statement of Reasons):Andrey Removich BOKAREV (hereafter BOKAREV) is a prominent Russian business figure. He is the President of Transmashholding, Russia’s largest producer of railway rolling stock and is also Chairman of the board of Kuzbassrazrezugol, a leading Russian coal and metal ore mining company. His senior positions in both of these companies mean that BOKAREV continues to obtain a benefit from and/or continues to support the Government of Russia by working as a director (whether executive or non-executive), trustee, or equivalent, of entities carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian transport sector and the Russian extractives sector. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,13/04/2022,15273 +BOKO HARAM,,,,,,,,,,,,,,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0055 (UN Ref):QDe.138 Affiliate of Al-Qaida (QDe.004), and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Associated with Jama'atu Ansarul Muslimina Fi Biladis-Sudan (Ansaru). The leader is Abubakar Shekau. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,22/05/2014,31/12/2020,12982 +BOKWANG NO.5,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0098 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). In late November 2017 the YU PHYONG 5 conducted a ship-to-ship transfer of 1,721 metric tons of fuel oil. Listed as asset of Korea Myongdok Shipping Co - OFSI ID: 13634. UN Reference Number: UN Ref KPe.063 (IMO number):8605026 (Current owners):Korea Myongdok Shipping Co (Flag of ship):North Korea (Previous flags):South Korea (Type of ship):Oil tanker (Tonnage of ship):795 (Length of ship):75 (Year built):1986",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13649 +BOKWANG NO.5BL,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0098 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). In late November 2017 the YU PHYONG 5 conducted a ship-to-ship transfer of 1,721 metric tons of fuel oil. Listed as asset of Korea Myongdok Shipping Co - OFSI ID: 13634. UN Reference Number: UN Ref KPe.063 (IMO number):8605026 (Current owners):Korea Myongdok Shipping Co (Flag of ship):North Korea (Previous flags):South Korea (Type of ship):Oil tanker (Tonnage of ship):795 (Length of ship):75 (Year built):1986",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13649 +BOKWANG_NO5,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0098 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). In late November 2017 the YU PHYONG 5 conducted a ship-to-ship transfer of 1,721 metric tons of fuel oil. Listed as asset of Korea Myongdok Shipping Co - OFSI ID: 13634. UN Reference Number: UN Ref KPe.063 (IMO number):8605026 (Current owners):Korea Myongdok Shipping Co (Flag of ship):North Korea (Previous flags):South Korea (Type of ship):Oil tanker (Tonnage of ship):795 (Length of ship):75 (Year built):1986",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13649 +BOLOTOVA,Maiya,,,,,,,,,18/01/1975,Karaganda,Kazakhstan,,,,,,,"Brusova Str., 19, 5",,,,,Moscow,125009,Russia,"(UK Sanctions List Ref):RUS0814 (UK Statement of Reasons):Maiya Nikolaevna BOLOTOVA is the daughter of Nikolai Petrovich TOKAREV (RUS0271). There are reasonable grounds to suspect that Maiya Nikolaevna BOLOTOVA is associated with Nikolai Petrovich TOKAREV and has obtained a financial benefit or other material benefit from TOKAREV, who has been designated by the UK since 10/03/2022. Nikolai Petrovich TOKAREV is a prominent Russian businessman with significant interests in the extractives and energy industries, as well as a longstanding associate of Vladimir Putin. He is currently President of Transneft – a state enterprise that provides services for oil and oil products transportation within Russia and beyond. Transneft is a Government of Russia-affiliated entity which carries on business in sectors of strategic significance to the Government of Russia. TOKAREV is working as a director (whether executive or non-executive), trustee, or equivalent of Transneft, and is therefore a person who is or has been involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Female",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,13/05/2022,14765 +BOLOTOVA,Maiya,Nikolaevna,,,,,БОЛОТОВА Майя Николаевна,Cyrillic,Russian,18/01/1975,Karaganda,Kazakhstan,,,,,,,"Brusova Str., 19, 5",,,,,Moscow,125009,Russia,"(UK Sanctions List Ref):RUS0814 (UK Statement of Reasons):Maiya Nikolaevna BOLOTOVA is the daughter of Nikolai Petrovich TOKAREV (RUS0271). There are reasonable grounds to suspect that Maiya Nikolaevna BOLOTOVA is associated with Nikolai Petrovich TOKAREV and has obtained a financial benefit or other material benefit from TOKAREV, who has been designated by the UK since 10/03/2022. Nikolai Petrovich TOKAREV is a prominent Russian businessman with significant interests in the extractives and energy industries, as well as a longstanding associate of Vladimir Putin. He is currently President of Transneft – a state enterprise that provides services for oil and oil products transportation within Russia and beyond. Transneft is a Government of Russia-affiliated entity which carries on business in sectors of strategic significance to the Government of Russia. TOKAREV is working as a director (whether executive or non-executive), trustee, or equivalent of Transneft, and is therefore a person who is or has been involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,13/05/2022,14765 +BOLOTOVA,Mayya,,,,,,,,,18/01/1975,Karaganda,Kazakhstan,,,,,,,"Brusova Str., 19, 5",,,,,Moscow,125009,Russia,"(UK Sanctions List Ref):RUS0814 (UK Statement of Reasons):Maiya Nikolaevna BOLOTOVA is the daughter of Nikolai Petrovich TOKAREV (RUS0271). There are reasonable grounds to suspect that Maiya Nikolaevna BOLOTOVA is associated with Nikolai Petrovich TOKAREV and has obtained a financial benefit or other material benefit from TOKAREV, who has been designated by the UK since 10/03/2022. Nikolai Petrovich TOKAREV is a prominent Russian businessman with significant interests in the extractives and energy industries, as well as a longstanding associate of Vladimir Putin. He is currently President of Transneft – a state enterprise that provides services for oil and oil products transportation within Russia and beyond. Transneft is a Government of Russia-affiliated entity which carries on business in sectors of strategic significance to the Government of Russia. TOKAREV is working as a director (whether executive or non-executive), trustee, or equivalent of Transneft, and is therefore a person who is or has been involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Female",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,13/05/2022,14765 +BOM SU,JANG,,,,,,,,,22/02/1958,,,,836110034,"diplomatic passport number 836110034, which expires on 1 January 2020.",,,Tanchon Commercial Bank Representative in Syria,,,,,,,,,"(UK Sanctions List Ref):DPR0214 (UN Ref):KPi.016 Pursuant to Resolution 2371(2017) the Security Council added the following information: New AKA: Jang Hyon U with date of birth 22 February 1958 and diplomatic passport number 836110034, which expires on 1 January 2020.",Individual,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13327 +BOM SU,JANG,,,,,,,,,15/04/1957,,,,836110034,"diplomatic passport number 836110034, which expires on 1 January 2020.",,,Tanchon Commercial Bank Representative in Syria,,,,,,,,,"(UK Sanctions List Ref):DPR0214 (UN Ref):KPi.016 Pursuant to Resolution 2371(2017) the Security Council added the following information: New AKA: Jang Hyon U with date of birth 22 February 1958 and diplomatic passport number 836110034, which expires on 1 January 2020.",Individual,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13327 +BONDARCHUK,Anatoly,Vladimirovich,,,,,БОНДАРЧУК Анатолий Владимирович,Cyrillic,Russian,01/06/1948,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1232 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15184 +BONDARENKO,Alexander,Alexandrovich,,,,,БОНДАРЕНКО Александр Александрович,Cyrillic,Russian,02/09/1983,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1233 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15185 +BONDARENKO,Elena,Veniaminovna,,,,,Бондаренко Елена Вениаминовна,,,10/06/1968,Svetlograd,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0616 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14561 +BONDAREV,Viktor,Nikolayevich,,,,,Виктор Николаевич БОНДАРЕВ,,,07/12/1959,Petropavlovsky District,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0902 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14853 +BONDAROVICH,Sergey,Nikolaevich,,,,,Сергей Николаевич Бондарович,Cyrillic,Russian,20/02/1968,Zhodino,Russia,Russia,437899482,,,,Deputy Chairman of SOVCOMBANK,,,,,,,,,"(UK Sanctions List Ref):RUS1588 (UK Statement of Reasons):Sergey Nikolaevich Bondarovich is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SOVCOMBANK which carries on business in the financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely SOVCOMBANK. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15532 +BONG NAM,PAK,,,,,,,,,06/05/1969,,,North Korea,,,,,Pak Bong Nam is an overseas Ilsim International Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0252 (UN Ref):KPi.073 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13568 +BONYAD TAAVON,,,,,,,,,,,,,,,,,,,Niayes Highway,Seoul Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0059 (UK Statement of Reasons):Bonyad Taavon Sepah, also known as the IRGC Cooperative Foundation, was formed by the commanders of the IRGC to structure the IRGC's investments. It is controlled by the IRGC. Bonyad Taavon Sepah's Board of Trustees is composed of nine members, of whom eight are IRGC members. These officers include the IRGC's Commander in Chief, who is the Chairman of the Board of Trustees, the Supreme Leader's representative to the IRGC , the Basij Commander, the IRGC Ground Forces Commander, the IRGC Air Force Commander, the IRGC Navy Commander, the head of the IRGC Information Security Organisation, a senior IRGC officer from the Armed Forces general staff and a senior IRGC officer from MODAFL. (Type of entity):Foundation (Subsidiaries):Ansar Bank. Mehr Bank",Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11580 +BONYAD TAAVON SEPAH,,,,,,,بنیاد تعاون سپاه پاسداران انقلاب اسلامی‎,,,,,,,,,,,,Niayes Highway,Seoul Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0059 (UK Statement of Reasons):Bonyad Taavon Sepah, also known as the IRGC Cooperative Foundation, was formed by the commanders of the IRGC to structure the IRGC's investments. It is controlled by the IRGC. Bonyad Taavon Sepah's Board of Trustees is composed of nine members, of whom eight are IRGC members. These officers include the IRGC's Commander in Chief, who is the Chairman of the Board of Trustees, the Supreme Leader's representative to the IRGC , the Basij Commander, the IRGC Ground Forces Commander, the IRGC Air Force Commander, the IRGC Navy Commander, the head of the IRGC Information Security Organisation, a senior IRGC officer from the Armed Forces general staff and a senior IRGC officer from MODAFL. (Type of entity):Foundation (Subsidiaries):Ansar Bank. Mehr Bank",Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11580 +BONYAD-E TA'AVON-E SEPAH,,,,,,,,,,,,,,,,,,,Niayes Highway,Seoul Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0059 (UK Statement of Reasons):Bonyad Taavon Sepah, also known as the IRGC Cooperative Foundation, was formed by the commanders of the IRGC to structure the IRGC's investments. It is controlled by the IRGC. Bonyad Taavon Sepah's Board of Trustees is composed of nine members, of whom eight are IRGC members. These officers include the IRGC's Commander in Chief, who is the Chairman of the Board of Trustees, the Supreme Leader's representative to the IRGC , the Basij Commander, the IRGC Ground Forces Commander, the IRGC Air Force Commander, the IRGC Navy Commander, the head of the IRGC Information Security Organisation, a senior IRGC officer from the Armed Forces general staff and a senior IRGC officer from MODAFL. (Type of entity):Foundation (Subsidiaries):Ansar Bank. Mehr Bank",Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11580 +BONYAD-E TA'AVON-SEPAH,,,,,,,,,,,,,,,,,,,Niayes Highway,Seoul Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0059 (UK Statement of Reasons):Bonyad Taavon Sepah, also known as the IRGC Cooperative Foundation, was formed by the commanders of the IRGC to structure the IRGC's investments. It is controlled by the IRGC. Bonyad Taavon Sepah's Board of Trustees is composed of nine members, of whom eight are IRGC members. These officers include the IRGC's Commander in Chief, who is the Chairman of the Board of Trustees, the Supreme Leader's representative to the IRGC , the Basij Commander, the IRGC Ground Forces Commander, the IRGC Air Force Commander, the IRGC Navy Commander, the head of the IRGC Information Security Organisation, a senior IRGC officer from the Armed Forces general staff and a senior IRGC officer from MODAFL. (Type of entity):Foundation (Subsidiaries):Ansar Bank. Mehr Bank",Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11580 +BORBORUDI,Sayed,Shamsuddin,,,,,,,,21/09/1969,,,,,,,,(1) Commander of IRGC Khatam al-Anbiya subsidary Qorb-e Qa-em (2) former Deputy Head of AEOI,,,,,,,,,(UK Sanctions List Ref):INU0025 (UK Statement of Reasons):Former Deputy Head of the Atomic Energy Organisation of Iran.,Individual,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12230 +BORIS,Albert,Alexandrovich,,,,,Альберт Александрович Борис,Cyrillic,Russian,06/06/1985,Oleksandriya,Russia,Russia,753943218,Russia,,,Member of SOVCOMBANK’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1587 (UK Statement of Reasons):Albert Alexandrovich Boris is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SOVCOMBANK which is carrying on business in the financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely SOVCOMBANK which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15531 +BORISENKO,Elena,Adolfovna,,,,,Елена Адольфовна Борисенко,Cyrillic,Russian,21/04/1978,Leningrad,Russia,Russia,,,,,Member of Gazprombank’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1606 (UK Statement of Reasons):Elena Adolfovna Borisenko is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Female",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15550 +BORISENKO,Elena,Adolifovna,,,,,,,,21/04/1978,Leningrad,Russia,Russia,,,,,Member of Gazprombank’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1606 (UK Statement of Reasons):Elena Adolfovna Borisenko is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Female",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15550 +BORISENKO,Yelena,Adolfovna,,,,,,,,21/04/1978,Leningrad,Russia,Russia,,,,,Member of Gazprombank’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1606 (UK Statement of Reasons):Elena Adolfovna Borisenko is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Female",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15550 +BORISOV,Ruslan,,,,,,,,,05/04/1979,"(1) Nikolaevka, Amur Oblast (2) Dushanbe",(1) Russia (2) Tajikistan,Russia,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):CHW0008 (UK Statement of Reasons):GRU Officer Anatoliy Chepiga (a.k.a. Ruslan Boshirov) possessed, transported and then, during the weekend of 4 March 2018, in Salisbury, used a toxic nerve agent (“Novichok”). On 5 September 2018, the UK Crown Prosecution Service charged Ruslan Boshirov for conspiracy to murder Sergei Skripal; for the attempted murder of Sergei Skripal, Yulia Skripal and Nick Bailey; for the use and possession of Novichok; and for causing grievous bodily harm with intent to Yulia Skripal and Nick Bailey. (Gender):Male",Individual,AKA,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13751 +BORISOV,Ruslan,,,,,,,,,12/04/1978,"(1) Nikolaevka, Amur Oblast (2) Dushanbe",(1) Russia (2) Tajikistan,Russia,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):CHW0008 (UK Statement of Reasons):GRU Officer Anatoliy Chepiga (a.k.a. Ruslan Boshirov) possessed, transported and then, during the weekend of 4 March 2018, in Salisbury, used a toxic nerve agent (“Novichok”). On 5 September 2018, the UK Crown Prosecution Service charged Ruslan Boshirov for conspiracy to murder Sergei Skripal; for the attempted murder of Sergei Skripal, Yulia Skripal and Nick Bailey; for the use and possession of Novichok; and for causing grievous bodily harm with intent to Yulia Skripal and Nick Bailey. (Gender):Male",Individual,AKA,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13751 +BORISOV,Yegor,Fanasyevich,,,,,Егор Афанасьевич БОРИСОВ,,,15/08/1954,Churapcha,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0884 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14835 +BORISOV,Alexander,Alexandrovich,,,,,Борисов Александр Александрович,,,17/08/1974,Kunya,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0321 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14266 +BORODAI,Aleksandr,Yurevich,,,,,Александр Юрьевич БОРОДАЙ,,,25/07/1972,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0083 (UK Statement of Reasons):Former so-called ""Prime Minister of the Donetsk People's Republic "", as such responsible for the separatist ""governmental"" activities of the so called ""government of the Donetsk People's Republic"" (eg on 8 July stated ""our military is conducting a special operation against the Ukrainian ""fascists), signatory of the Memorandum of Understanding on ""Novorossiya union"". Remains active in supporting separatist actions or policies; heads the “Union of Donbas volunteers”. Involved actively in recruitment and training of “volunteers” sent to fight in Donbas.",Individual,Primary name,,Russia,12/07/2014,31/12/2020,16/09/2022,13009 +BORODAY,Aleksandr,Yurevich,,,,,,,,25/07/1972,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0083 (UK Statement of Reasons):Former so-called ""Prime Minister of the Donetsk People's Republic "", as such responsible for the separatist ""governmental"" activities of the so called ""government of the Donetsk People's Republic"" (eg on 8 July stated ""our military is conducting a special operation against the Ukrainian ""fascists), signatory of the Memorandum of Understanding on ""Novorossiya union"". Remains active in supporting separatist actions or policies; heads the “Union of Donbas volunteers”. Involved actively in recruitment and training of “volunteers” sent to fight in Donbas.",Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,16/09/2022,13009 +BORODIN,Sergey,Alekseevich,,,,,БОРОДИН Сергей Алексеевич,Cyrillic,Russian,15/01/1968,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1165 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15117 +BORTNIKOV,Aleksandr,Vasilievich,,,,,Александр Васильевич БОРТНИКОВ,,,15/11/1951,Perm,Russia,Russia,,,,,(1) Permanent Member and Secretary of the Security Council of the Russian Federation (2) Director of the Federal Security Service (FSB),,,,,,,,Russia,"(UK Sanctions List Ref):RUS0084 Director of the FSB from 12/05/2008 (UK Statement of Reasons):Permanent member of the Security Council of the Russian Federation; Director of the Federal Security Service (FSB). As a member of the Security Council, which provides advice on and coordinates national security affairs, he was involved in shaping the policy of the Russian Government threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,25/07/2014,31/12/2020,16/09/2022,13037 +BORTNIKOV,Aleksandr,Vasilievich,,,,,,,,15/11/1951,Perm,Russia,Russia,,,,,Director of the Federal Security Service of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):CHW0014 (UK Statement of Reasons):Alexander Bortnikov is the director of the Federal Security Service of the Russian Federation and, therefore, responsible for the activities conducted by the Federal Security Service of the Russian Federation. Russian opposition leader Alexey Navalny was the victim of an attempted assassination during his August 2020 visit to Siberia, in which a chemical weapon—a toxic nerve agent of the Novichok group—was used. The activities and movements of Alexey Navalny during his journey to Siberia, from where he intended to return to Moscow on 20th August 2020, were closely monitored by the Federal Security Service of the Russian Federation. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny was a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. Given the role of the FSB, and the extent of surveillance, there are therefore reasonable grounds to suspect that the Federal Security Service of the Russian Federation was involved in the attempted assassination of Alexey Navalny using a toxic nerve agent. As director of the Federal Security Service, Alexander Bortnikov bears responsibility for the preparation and use of chemical weapons in the attempted assassination of Alexey Navalny. (Gender):Male",Individual,Primary name,,Chemical Weapons,15/10/2020,04/01/2021,08/01/2021,13972 +BORTNIKOV,Alexander,,,,,,,,,15/11/1951,Perm,Russia,Russia,,,,,Director of the Federal Security Service of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):CHW0014 (UK Statement of Reasons):Alexander Bortnikov is the director of the Federal Security Service of the Russian Federation and, therefore, responsible for the activities conducted by the Federal Security Service of the Russian Federation. Russian opposition leader Alexey Navalny was the victim of an attempted assassination during his August 2020 visit to Siberia, in which a chemical weapon—a toxic nerve agent of the Novichok group—was used. The activities and movements of Alexey Navalny during his journey to Siberia, from where he intended to return to Moscow on 20th August 2020, were closely monitored by the Federal Security Service of the Russian Federation. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny was a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. Given the role of the FSB, and the extent of surveillance, there are therefore reasonable grounds to suspect that the Federal Security Service of the Russian Federation was involved in the attempted assassination of Alexey Navalny using a toxic nerve agent. As director of the Federal Security Service, Alexander Bortnikov bears responsibility for the preparation and use of chemical weapons in the attempted assassination of Alexey Navalny. (Gender):Male",Individual,Primary name variation,,Chemical Weapons,15/10/2020,04/01/2021,08/01/2021,13972 +BORTNIKOV,Denis,Alexandrovich,,,,,Денис Александрович БОРТНИКОВ,,,19/11/1974,Leningrad region,Russia,Russia,,,,,"Deputy President and Chairman of the Management Board, VTB Bank",,,,,,,,,"(UK Sanctions List Ref):RUS0243 (UK Statement of Reasons):Denis Alexandrovich Bortnikov (hereafter referred to as Bortnikov) is Deputy President and Chairman of the Management Board at VTB Bank, and has close family ties to the Kremlin. VTB Bank is a government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia and has obtained a financial benefit or other material benefit from the Government of Russia. Therefore, as a result of his position as Deputy President and Chairman of the Management Board at VTB Bank, Bortnikov is working as a director or equivalent at a Government of Russia-affiliated entity, and is therefore obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,24/02/2022,24/02/2022,24/02/2022,14190 +BORTNIKOV,Aleksandr,Vasilyevich,,,,,,,,15/11/1951,Perm,Russia,Russia,,,,,(1) Permanent Member and Secretary of the Security Council of the Russian Federation (2) Director of the Federal Security Service (FSB),,,,,,,,Russia,"(UK Sanctions List Ref):RUS0084 Director of the FSB from 12/05/2008 (UK Statement of Reasons):Permanent member of the Security Council of the Russian Federation; Director of the Federal Security Service (FSB). As a member of the Security Council, which provides advice on and coordinates national security affairs, he was involved in shaping the policy of the Russian Government threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,16/09/2022,13037 +BORTNIKOV,Alexander,Vasilievich,,,,,,,,15/11/1951,Perm,Russia,Russia,,,,,(1) Permanent Member and Secretary of the Security Council of the Russian Federation (2) Director of the Federal Security Service (FSB),,,,,,,,Russia,"(UK Sanctions List Ref):RUS0084 Director of the FSB from 12/05/2008 (UK Statement of Reasons):Permanent member of the Security Council of the Russian Federation; Director of the Federal Security Service (FSB). As a member of the Security Council, which provides advice on and coordinates national security affairs, he was involved in shaping the policy of the Russian Government threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,16/09/2022,13037 +BORTSOV,Nikolay,Ivanovich,,,,,Борцов Николай Иванович,,,08/05/1945,Lebedyan,Russia,Russia,719435197,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0544 (Has British Nato passport) (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14489 +BOSHAB,Evarist,,,,,,,,,12/01/1956,(1) Kasai Occidentale Province (2) Teke-Kalamba,(1) Congo (Democratic Republic) (2) Congo (Democratic Republic),Congo (Democratic Republic),DP 0000003,"(Congo, Democratic Republic of the) issued 21.12.2015 expiry 20.12.2020.",,,(1) Deputy Prime Minister (2) Minister of Interior and Security (individual) [DRCONGO] (3) Vice Prime Minister (4) A senator in Kasai,Avenue du Rail 5,,,,Ngaliema,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0008 Schengen visa expired on 5.1.2017 (UK Statement of Reasons):In his capacity as Vice Prime Minister and Minister of Interior and Security from December 2014 to December 2016, Evariste BOSHAB was officially responsible for the police and security services and coordinating the work of provincial governors. In this capacity, he was responsible for arrests of activists and opposition members, as well as disproportionate use of force, including between September 2016 and December 2016 in response to demonstrations in Kinshasa, which resulted in a large number of civilians being killed or injured by security services. There are reasonable grounds to conclude that BOSHAB was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Minister of Interior and Security and therefore bore responsibility for the human rights violations committed by the security forces and police he commanded and influenced. It can therefore be inferred that Evariste BOSHAB was involved in planning, directing, or committing acts that constitute serious human rights violations in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13459 +BOSHAB,Evariste,,,,,Deputy Prime Minister,,,,12/01/1956,(1) Kasai Occidentale Province (2) Teke-Kalamba,(1) Congo (Democratic Republic) (2) Congo (Democratic Republic),Congo (Democratic Republic),DP 0000003,"(Congo, Democratic Republic of the) issued 21.12.2015 expiry 20.12.2020.",,,(1) Deputy Prime Minister (2) Minister of Interior and Security (individual) [DRCONGO] (3) Vice Prime Minister (4) A senator in Kasai,Avenue du Rail 5,,,,Ngaliema,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0008 Schengen visa expired on 5.1.2017 (UK Statement of Reasons):In his capacity as Vice Prime Minister and Minister of Interior and Security from December 2014 to December 2016, Evariste BOSHAB was officially responsible for the police and security services and coordinating the work of provincial governors. In this capacity, he was responsible for arrests of activists and opposition members, as well as disproportionate use of force, including between September 2016 and December 2016 in response to demonstrations in Kinshasa, which resulted in a large number of civilians being killed or injured by security services. There are reasonable grounds to conclude that BOSHAB was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Minister of Interior and Security and therefore bore responsibility for the human rights violations committed by the security forces and police he commanded and influenced. It can therefore be inferred that Evariste BOSHAB was involved in planning, directing, or committing acts that constitute serious human rights violations in DRC.  (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13459 +BOSHAB MABUDJ,Evarist,,,,,,,,,12/01/1956,(1) Kasai Occidentale Province (2) Teke-Kalamba,(1) Congo (Democratic Republic) (2) Congo (Democratic Republic),Congo (Democratic Republic),DP 0000003,"(Congo, Democratic Republic of the) issued 21.12.2015 expiry 20.12.2020.",,,(1) Deputy Prime Minister (2) Minister of Interior and Security (individual) [DRCONGO] (3) Vice Prime Minister (4) A senator in Kasai,Avenue du Rail 5,,,,Ngaliema,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0008 Schengen visa expired on 5.1.2017 (UK Statement of Reasons):In his capacity as Vice Prime Minister and Minister of Interior and Security from December 2014 to December 2016, Evariste BOSHAB was officially responsible for the police and security services and coordinating the work of provincial governors. In this capacity, he was responsible for arrests of activists and opposition members, as well as disproportionate use of force, including between September 2016 and December 2016 in response to demonstrations in Kinshasa, which resulted in a large number of civilians being killed or injured by security services. There are reasonable grounds to conclude that BOSHAB was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Minister of Interior and Security and therefore bore responsibility for the human rights violations committed by the security forces and police he commanded and influenced. It can therefore be inferred that Evariste BOSHAB was involved in planning, directing, or committing acts that constitute serious human rights violations in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13459 +BOSHAB MABUDJ,Evariste,,,,,,,,,12/01/1956,(1) Kasai Occidentale Province (2) Teke-Kalamba,(1) Congo (Democratic Republic) (2) Congo (Democratic Republic),Congo (Democratic Republic),DP 0000003,"(Congo, Democratic Republic of the) issued 21.12.2015 expiry 20.12.2020.",,,(1) Deputy Prime Minister (2) Minister of Interior and Security (individual) [DRCONGO] (3) Vice Prime Minister (4) A senator in Kasai,Avenue du Rail 5,,,,Ngaliema,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0008 Schengen visa expired on 5.1.2017 (UK Statement of Reasons):In his capacity as Vice Prime Minister and Minister of Interior and Security from December 2014 to December 2016, Evariste BOSHAB was officially responsible for the police and security services and coordinating the work of provincial governors. In this capacity, he was responsible for arrests of activists and opposition members, as well as disproportionate use of force, including between September 2016 and December 2016 in response to demonstrations in Kinshasa, which resulted in a large number of civilians being killed or injured by security services. There are reasonable grounds to conclude that BOSHAB was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Minister of Interior and Security and therefore bore responsibility for the human rights violations committed by the security forces and police he commanded and influenced. It can therefore be inferred that Evariste BOSHAB was involved in planning, directing, or committing acts that constitute serious human rights violations in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13459 +BOSHAB MABUDJ MABILENGE,Evarist,,,,,,,,,12/01/1956,(1) Kasai Occidentale Province (2) Teke-Kalamba,(1) Congo (Democratic Republic) (2) Congo (Democratic Republic),Congo (Democratic Republic),DP 0000003,"(Congo, Democratic Republic of the) issued 21.12.2015 expiry 20.12.2020.",,,(1) Deputy Prime Minister (2) Minister of Interior and Security (individual) [DRCONGO] (3) Vice Prime Minister (4) A senator in Kasai,Avenue du Rail 5,,,,Ngaliema,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0008 Schengen visa expired on 5.1.2017 (UK Statement of Reasons):In his capacity as Vice Prime Minister and Minister of Interior and Security from December 2014 to December 2016, Evariste BOSHAB was officially responsible for the police and security services and coordinating the work of provincial governors. In this capacity, he was responsible for arrests of activists and opposition members, as well as disproportionate use of force, including between September 2016 and December 2016 in response to demonstrations in Kinshasa, which resulted in a large number of civilians being killed or injured by security services. There are reasonable grounds to conclude that BOSHAB was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Minister of Interior and Security and therefore bore responsibility for the human rights violations committed by the security forces and police he commanded and influenced. It can therefore be inferred that Evariste BOSHAB was involved in planning, directing, or committing acts that constitute serious human rights violations in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13459 +BOSHAB MABUDJ MABILENGE,Evariste,,,,,,,,,12/01/1956,(1) Kasai Occidentale Province (2) Teke-Kalamba,(1) Congo (Democratic Republic) (2) Congo (Democratic Republic),Congo (Democratic Republic),DP 0000003,"(Congo, Democratic Republic of the) issued 21.12.2015 expiry 20.12.2020.",,,(1) Deputy Prime Minister (2) Minister of Interior and Security (individual) [DRCONGO] (3) Vice Prime Minister (4) A senator in Kasai,Avenue du Rail 5,,,,Ngaliema,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0008 Schengen visa expired on 5.1.2017 (UK Statement of Reasons):In his capacity as Vice Prime Minister and Minister of Interior and Security from December 2014 to December 2016, Evariste BOSHAB was officially responsible for the police and security services and coordinating the work of provincial governors. In this capacity, he was responsible for arrests of activists and opposition members, as well as disproportionate use of force, including between September 2016 and December 2016 in response to demonstrations in Kinshasa, which resulted in a large number of civilians being killed or injured by security services. There are reasonable grounds to conclude that BOSHAB was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Minister of Interior and Security and therefore bore responsibility for the human rights violations committed by the security forces and police he commanded and influenced. It can therefore be inferred that Evariste BOSHAB was involved in planning, directing, or committing acts that constitute serious human rights violations in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13459 +BOSHAB MABUDJ-MA-BILENGE,Evariste,,,,,,,,,12/01/1956,(1) Kasai Occidentale Province (2) Teke-Kalamba,(1) Congo (Democratic Republic) (2) Congo (Democratic Republic),Congo (Democratic Republic),DP 0000003,"(Congo, Democratic Republic of the) issued 21.12.2015 expiry 20.12.2020.",,,(1) Deputy Prime Minister (2) Minister of Interior and Security (individual) [DRCONGO] (3) Vice Prime Minister (4) A senator in Kasai,Avenue du Rail 5,,,,Ngaliema,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0008 Schengen visa expired on 5.1.2017 (UK Statement of Reasons):In his capacity as Vice Prime Minister and Minister of Interior and Security from December 2014 to December 2016, Evariste BOSHAB was officially responsible for the police and security services and coordinating the work of provincial governors. In this capacity, he was responsible for arrests of activists and opposition members, as well as disproportionate use of force, including between September 2016 and December 2016 in response to demonstrations in Kinshasa, which resulted in a large number of civilians being killed or injured by security services. There are reasonable grounds to conclude that BOSHAB was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Minister of Interior and Security and therefore bore responsibility for the human rights violations committed by the security forces and police he commanded and influenced. It can therefore be inferred that Evariste BOSHAB was involved in planning, directing, or committing acts that constitute serious human rights violations in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13459 +BOSHAB MABUTSH,Evariste,,,,,,,,,12/01/1956,(1) Kasai Occidentale Province (2) Teke-Kalamba,(1) Congo (Democratic Republic) (2) Congo (Democratic Republic),Congo (Democratic Republic),DP 0000003,"(Congo, Democratic Republic of the) issued 21.12.2015 expiry 20.12.2020.",,,(1) Deputy Prime Minister (2) Minister of Interior and Security (individual) [DRCONGO] (3) Vice Prime Minister (4) A senator in Kasai,Avenue du Rail 5,,,,Ngaliema,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0008 Schengen visa expired on 5.1.2017 (UK Statement of Reasons):In his capacity as Vice Prime Minister and Minister of Interior and Security from December 2014 to December 2016, Evariste BOSHAB was officially responsible for the police and security services and coordinating the work of provincial governors. In this capacity, he was responsible for arrests of activists and opposition members, as well as disproportionate use of force, including between September 2016 and December 2016 in response to demonstrations in Kinshasa, which resulted in a large number of civilians being killed or injured by security services. There are reasonable grounds to conclude that BOSHAB was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Minister of Interior and Security and therefore bore responsibility for the human rights violations committed by the security forces and police he commanded and influenced. It can therefore be inferred that Evariste BOSHAB was involved in planning, directing, or committing acts that constitute serious human rights violations in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13459 +BOUBAKEUR,El Hakim,,,,,,,,,01/08/1983,Paris,France,(1) France. (2) Tunisia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0157 (UN Ref):QDi.375 French-Tunisian foreign terrorist fighter for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897328.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,12/01/2022,13289 +BOUGETOF,Hocine,,,,,,,,,01/07/1959,Tebessa,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0015 (UK Statement of Reasons):Mr Bouguetof travelled to Syria to join Daesh in 2015, and has publicly acknowledged having a senior role in the organisation. Bouguetof has supported the actvities of Daesh through his work in Daesh's marriage bureau. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),16/10/2018,31/12/2020,16/06/2022,13715 +BOUGHANEMI,FAYCAL,,,,,,فيصل بوغانمي,,,28/10/1966,Tunis,Tunisia,Tunisia,,,,,,Number 5/B viale Cambonino,,,,,Cremona,,Italy,(UK Sanctions List Ref):AQD0171 (UN Ref):QDi.188 Italian Fiscal code: BGHFCL66R28Z352G. Sentenced to 7 years imprisonment in Italy on 29 Jun. 2007 by the Brescia Second Appeals Court. In detention in Italy as at Jun. 2009. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423839,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,01/08/2005,29/07/2005,31/12/2020,8683 +BOUGHANMI,Faical,,,,,,,,,28/10/1966,Tunis,Tunisia,Tunisia,,,,,,Number 5/B viale Cambonino,,,,,Cremona,,Italy,(UK Sanctions List Ref):AQD0171 (UN Ref):QDi.188 Italian Fiscal code: BGHFCL66R28Z352G. Sentenced to 7 years imprisonment in Italy on 29 Jun. 2007 by the Brescia Second Appeals Court. In detention in Italy as at Jun. 2009. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423839,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2005,29/07/2005,31/12/2020,8683 +BOUGUETOF,Hocine,,,,,,,,,01/07/1959,Tebessa,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0015 (UK Statement of Reasons):Mr Bouguetof travelled to Syria to join Daesh in 2015, and has publicly acknowledged having a senior role in the organisation. Bouguetof has supported the actvities of Daesh through his work in Daesh's marriage bureau. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),16/10/2018,31/12/2020,16/06/2022,13715 +BOUKRIN,ABU-AL QASSIM,OMAR,Musab,,,,,,,19/01/1983,Sabratha,Libya,Libya,(1) 782633 (2) 540794,(1) Issued on 31 May 2005 (2) Issued on 12 Jan. 2008,,,Leader of a transnational trafficking network,,,,,,,,,"(UK Sanctions List Ref):LIB0058 (UN Ref):LYi.024 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13674 +BOULGHIT,Boubakeur,,,,,,,,,13/02/1970,"Rouiba, Algiers",Algeria,(1) Algeria. (2) Palestine,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0158 (UN Ref):QDi.058 Finance chief of the Afghan Support Committee (ASC) (QDe.069). Al-Qaida (QDe.004) facilitator and communication expert. Believed to be in Algeria as at Apr. 2010. Son of Mohamed and Fatma Aribi. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6104674 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6998 +BOULGHITI,BOUBEKEUR,,,,,,,,,13/02/1970,"Rouiba, Algiers",Algeria,(1) Algeria. (2) Palestine,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0158 (UN Ref):QDi.058 Finance chief of the Afghan Support Committee (ASC) (QDe.069). Al-Qaida (QDe.004) facilitator and communication expert. Believed to be in Algeria as at Apr. 2010. Son of Mohamed and Fatma Aribi. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6104674 (Gender):Male,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6998 +BOUNOUADHER,,,,,,,,,,13/04/1971,"Zeribet El Oued, Wilaya (province) of Biskra",Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0304 (UN Ref):QDi.251 Belongs to the leadership and is in charge of information committee of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Mother’s name is Yamina Soltane. Father’s name is Abdelaziz. Associated with Abdelmalek Droukdel (QDi.232). Arrested in Algeria on 16 Dec. 2012. Incarcerated at the El-Harrach prison in Algiers, as of August 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529206",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,31/12/2020,10692 +BOUYEHIA,HAMADI,BEN ABDUL AZIZ,BEN ALI,,,,حمادي بن عبد العزيز بن علي بويحي,,,29/05/1966,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Egypt,Tunisia,L723315,"Issue date: 05/05/1998, expiry date: 04/05/2003",,,,Corso XXII Marzo Number 39,,,,,Milan,,Italy,(UK Sanctions List Ref):AQD0189 (UN Ref):QDi.143 In prison in Italy until 6 Feb. 2026. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7874 +BOUYEHIA,HAMADI,BEN ABDUL AZIZ,BEN ALI,,,,حمادي بن عبد العزيز بن علي بويحي,,,25/05/1966,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Egypt,Tunisia,L723315,"Issue date: 05/05/1998, expiry date: 04/05/2003",,,,Corso XXII Marzo Number 39,,,,,Milan,,Italy,(UK Sanctions List Ref):AQD0189 (UN Ref):QDi.143 In prison in Italy until 6 Feb. 2026. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7874 +BOUYEHIA,HAMADI,BEN ABDUL AZIZ,BEN ALI,,,,حمادي بن عبد العزيز بن علي بويحي,,,09/05/1986,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Egypt,Tunisia,L723315,"Issue date: 05/05/1998, expiry date: 04/05/2003",,,,Corso XXII Marzo Number 39,,,,,Milan,,Italy,(UK Sanctions List Ref):AQD0189 (UN Ref):QDi.143 In prison in Italy until 6 Feb. 2026. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7874 +BOUYERI,Mohammed,,,,,,,,,08/03/1978,Amsterdam,Netherlands,Netherlands,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0006 (UK Statement of Reasons):Mohammed Bouyeri was a member of the (now disbanded) Islamist terrorist Hofstad Group. Bouyeri murdered the film director Theo van Gogh in the Netherlands 2004. In 2005 he was found guilty of murder and of membership of a terrorist organisation. (Gender):Male,Individual,Primary name,,Counter-Terrorism (International),05/02/2007,31/12/2020,11/03/2022,9018 +BOYARSKY,Sergei,Mikhailovich,,,,,Боярский Сергей Михайлович,,,24/01/1980,Leningrad,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0322 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14267 +BOZIZE,FRANCOIS,YANGOUVONDA,,,,Professor,FRANÇOIS YANGOUVONDA BOZIZÉ,,,14/10/1946,(1) Mouila (2) Izo,(1) Gabon (2) South Sudan,(1) Central African Republic. (2) South Sudan,D00002264,"Issued on 11 Jun. 2013. Issued by the Minister of Foreign Affairs, in Juba, South Sudan. Expires on 11 Jun. 2017. Diplomatic passport issued under name Samuel Peter Mudde.",M4800002143743,Personal number on passport,,,,,,,Bangui,,Central African Republic,(UK Sanctions List Ref):CAF0003 (UN Ref):CFi.001 Mother’s name is Martine Kofio. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Central African Republic (since his return from Uganda in December 2019),Individual,Primary name,,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12998 +BOZIZE,FRANCOIS,YANGOUVONDA,,,,Professor,FRANÇOIS YANGOUVONDA BOZIZÉ,,,16/12/1948,(1) Mouila (2) Izo,(1) Gabon (2) South Sudan,(1) Central African Republic. (2) South Sudan,D00002264,"Issued on 11 Jun. 2013. Issued by the Minister of Foreign Affairs, in Juba, South Sudan. Expires on 11 Jun. 2017. Diplomatic passport issued under name Samuel Peter Mudde.",M4800002143743,Personal number on passport,,,,,,,Bangui,,Central African Republic,(UK Sanctions List Ref):CAF0003 (UN Ref):CFi.001 Mother’s name is Martine Kofio. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Central African Republic (since his return from Uganda in December 2019),Individual,Primary name,,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12998 +BOZORGNIA,Mostafa,,,,,,,,,,,,,,,,,Head of Ward 350 of Evin Prison until at least 2010,,,,,,,,,(UK Sanctions List Ref):IHR0069 (UK Statement of Reasons):Head of ward 350 of Evin Prison. He unleashed on a number of occasions disproportionate violence upon prisoners. (Gender):Male,Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,16/06/2022,11805 +BRAVERMAN,Anatoliy,Alexandrovich,,,,,,,,05/08/1985,Moscow,Russia,,530152537,Russia,,,Member of the Supervisory Board Sovcombank,,,,,,,,,"(UK Sanctions List Ref):RUS1579 (UK Statement of Reasons):Anatoly Alexandrovich Braverman is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SOVCOMBANK which is carrying on business in the financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely SOVCOMBANK which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15523 +BRAVERMAN,Anatoly,Alexandrovich,,,,,Анатолий Александрович Браверман,Cyrillic,Russian,05/08/1985,Moscow,Russia,,530152537,Russia,,,Member of the Supervisory Board Sovcombank,,,,,,,,,"(UK Sanctions List Ref):RUS1579 (UK Statement of Reasons):Anatoly Alexandrovich Braverman is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SOVCOMBANK which is carrying on business in the financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely SOVCOMBANK which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15523 +BRAYS,Abu,,,,,,,,,00/00/1942,al-Dur,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0067 (UN Ref):IQi.006,Individual,AKA,Low quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7580 +BRILEV,Sergey,Borisovich,,,,,Сергей Борисович Брилёв,,,24/07/1972,Moscow,Russia,Russia,524695376,,,,"Anchor and Deputy Director, Rossiya Television and Radio",,,,,,,,,"(UK Sanctions List Ref):RUS1113 (UK Statement of Reasons):Sergey Borisovich BRILEV is a prominent news anchor and senior executive at the Russian state-owned Rossiya Television and Radio network. BRILEV has actively engaged in propagating the Kremlin’s disinformation about Russia’s invasion of Ukraine, and has supported and promoted Russian military actions that destabilise Ukraine and undermine or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,31/03/2022,31/03/2022,31/03/2022,15060 +BRODSKI,Ilya,Borisovich,,,,,,,,01/07/1972,Moscow,Russia,(1) Cyprus (2) Russia,K00227238,Cyprus,,,Member of the Supervisory Board Sovcombank,APARTMENT 217,37 RATHBONE PLACE,,,,London,W1T 1JN,United Kingdom,"(UK Sanctions List Ref):RUS1580 (UK Statement of Reasons):Ilya Borisovich Brodskiy is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SOVCOMBANK which is carrying on business in the financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely SOVCOMBANK which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15524 +BRODSKIY,Ilya,Borisovich,,,,,Илья Борисович Бродский,Cyrillic,Russian,01/07/1972,Moscow,Russia,(1) Cyprus (2) Russia,K00227238,Cyprus,,,Member of the Supervisory Board Sovcombank,APARTMENT 217,37 RATHBONE PLACE,,,,London,W1T 1JN,United Kingdom,"(UK Sanctions List Ref):RUS1580 (UK Statement of Reasons):Ilya Borisovich Brodskiy is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SOVCOMBANK which is carrying on business in the financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely SOVCOMBANK which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15524 +BRODSKY,Ilya,Borisovich,,,,,,,,01/07/1972,Moscow,Russia,(1) Cyprus (2) Russia,K00227238,Cyprus,,,Member of the Supervisory Board Sovcombank,APARTMENT 217,37 RATHBONE PLACE,,,,London,W1T 1JN,United Kingdom,"(UK Sanctions List Ref):RUS1580 (UK Statement of Reasons):Ilya Borisovich Brodskiy is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SOVCOMBANK which is carrying on business in the financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely SOVCOMBANK which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15524 +BROHI,Farhan,,,,,,,,,,,Pakistan,Pakistan,,,51602-9768615-5,,Former commander of Lashkar-e-Jhangvi,Karachi central prison,,,,,,,Pakistan,"(UK Sanctions List Ref):GHR0082 Affiliated with ISIS-K (UK Statement of Reasons):Furqan Bangalzai was commander of the militant wing of the terror organisation Lashkar-e-Jhangvi. In this capacity, he was involved in an activity which, if carried out by or on behalf of a State within the territory of that State, would amount to a serious violation by that State of an individual’s right to life by his role in facilitating the bombing of the Lal Shahbaz Qalandar shrine in Sehwan, Pakistan, in which at least 70 people were killed. Additional information: In May 2020, Bangalzai was convicted of 70 counts of murder for his involvement in the bombing. (Gender):Male",Individual,AKA,,Global Human Rights,10/12/2021,10/12/2021,10/12/2021,14167 +BROHI,Farhan,,,,,,,,,,,Pakistan,Pakistan,,,51602-9768615-5,,Former commander of Lashkar-e-Jhangvi,Saryab Road,,,,,Sindhi Gali Quetta,,Pakistan,"(UK Sanctions List Ref):GHR0082 Affiliated with ISIS-K (UK Statement of Reasons):Furqan Bangalzai was commander of the militant wing of the terror organisation Lashkar-e-Jhangvi. In this capacity, he was involved in an activity which, if carried out by or on behalf of a State within the territory of that State, would amount to a serious violation by that State of an individual’s right to life by his role in facilitating the bombing of the Lal Shahbaz Qalandar shrine in Sehwan, Pakistan, in which at least 70 people were killed. Additional information: In May 2020, Bangalzai was convicted of 70 counts of murder for his involvement in the bombing. (Gender):Male",Individual,AKA,,Global Human Rights,10/12/2021,10/12/2021,10/12/2021,14167 +BROUGERE,Jacques,,,,,,,,,29/01/1971,Roubaix,France,France,,,,,,,,,,,,,France,(UK Sanctions List Ref):AQD0217 (UN Ref):QDi.095 In custody in France as of May 2004. Sentenced to 25 years imprisonment in France in 2007. His sentence is due to end on 13 Jul. 2023 and his unconditional detention to end on 13 Aug. 2020. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4531664,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,11/02/2022,7797 +BROWNING,Natalia,,,,,,,,,11/11/1978,St Petersburg,Russia,Russia,,,,,,27 Barkston Gardens,,,,,London,SW5 0ER,United Kingdom,"(UK Sanctions List Ref):RUS1018 (UK Statement of Reasons):Natalya BROWNING is closely associated with Gennadiy Nikolayevich TIMCHENKO, a Russian billionaire. Gennadiy Nikolayevich TIMCHENKO is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,04/05/2022,04/05/2022,29/06/2022,15349 +BROWNING,Natalya,,,,,,,,,11/11/1978,St Petersburg,Russia,Russia,,,,,,27 Barkston Gardens,,,,,London,SW5 0ER,United Kingdom,"(UK Sanctions List Ref):RUS1018 (UK Statement of Reasons):Natalya BROWNING is closely associated with Gennadiy Nikolayevich TIMCHENKO, a Russian billionaire. Gennadiy Nikolayevich TIMCHENKO is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name,,Russia,04/05/2022,04/05/2022,29/06/2022,15349 +BRUEV,Vladislav,Leonidovich,,,,Colonel,,,,00/00/1977,Kharkiv,Ukraine,Belarus,,,,,Colonel,,,,,,,,,"(UK Sanctions List Ref):RUS0707 (UK Statement of Reasons):By virtue of his senior position in the State Border Committee of the Republic of Belarus, Vladislav Leonidovich BRUEV has been, and is, involved in engaging or providing support for action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine, namely, having allowed, and allowing, Russian forces to cross the border as part of the invasion of Ukraine (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14658 +BRUGERE,,,,,,,,,,29/01/1971,Roubaix,France,France,,,,,,,,,,,,,France,(UK Sanctions List Ref):AQD0217 (UN Ref):QDi.095 In custody in France as of May 2004. Sentenced to 25 years imprisonment in France in 2007. His sentence is due to end on 13 Jul. 2023 and his unconditional detention to end on 13 Aug. 2020. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4531664,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,11/02/2022,7797 +BRYKIN,Nikolai,Gavrilovich,,,,,Брыкин Николай Гаврилович,,,25/11/1959,Soldatskoye,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0323 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14268 +BRYKSIN,Aleksandr,Yuryevich,,,,,Александр Юрьевич БРЫКСИН,,,20/01/1967,Kemerovo,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0977 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14928 +BTB GENERAL TRADING LLC,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0086 (UK Statement of Reasons):Jelvesazan Company assisted designated entities to violate the provisions of UN and EU sanctions on Iran and directly supported Iran's proliferation sensitive nuclear activities. As of early 2012 Jelvesazan intended to supply controlled vacuum pumps to Iran Centrifuge Technology Company (TESA). (Phone number):+98 03112658311 15,Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,08/03/2022,12817 +BUBNOV,Ilya,,,,,,Илья Бубнов,Cyrillic,Russian,24/03/1993,Omsk,Russia,,,,,,"Deputy Minister of Youth, Sports and Tourism of the so-called Donetsk People's Republic",,,,,,,,,"(UK Sanctions List Ref):RUS1570 (UK Statement of Reasons):BUBNOV is the Deputy Minister of Youth, Sports and Tourism of the so-called Donetsk People's Republic. BUBNOV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he engages in and provides support for policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15514 +BUBNOVA,Irina,Sergeyevna,,,,,Ірина Сергеевна БУБНОВА,Cyrillic,Russian,01/04/1983,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1106 (UK Statement of Reasons):Irina Sergeyevna BUBNOVA is an involved person on the basis that: (1) she has been, and is, a member of, or associated with, the Strategic Culture Foundation (“SCF”), which is itself an involved person on the basis that the SCF has been, and is, providing support for and promoting actions or policies which destabilise Ukraine or undermine or threaten its territorial integrity, sovereignty or independence; and (2) through her work for the SCF, she has provided support for and promoted actions or policies which destabilise Ukraine or undermine or threaten its territorial integrity, sovereignty or independence. (Gender):Female",Individual,Primary name,,Russia,31/03/2022,31/03/2022,20/07/2022,15053 +BUDUEV,Nikolai,Robertovich,,,,,Будуев Николай Робертович,,,24/03/1974,Ulan-Ude,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0324 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14269 +BUDVI,Abdul,Salam,,,,,,,,00/00/1940,"Gujranwala, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0182 (UN Ref):QDi.307 Founding member of Lashkar-e-Tayyiba (QDe.118) and deputy to Lashkar-e-Tayyiba leader Hafiz Muhammad Saeed (QDi.263). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4815206,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12630 +BUDVI,Hafiz,Abdusalam,,,,,,,,00/00/1940,"Gujranwala, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0182 (UN Ref):QDi.307 Founding member of Lashkar-e-Tayyiba (QDe.118) and deputy to Lashkar-e-Tayyiba leader Hafiz Muhammad Saeed (QDi.263). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4815206,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12630 +BUGROV,Oleg,Evgenevich,,,,,Олег Евгеньевич БУГРОВ,,Russian,00/00/1973,"Sverdlovsk, Luhansk",,Ukraine,,,,,,,,,,,St. Petersburg,,Russia,"(UK Sanctions List Ref):RUS0085 (UK Statement of Reasons):Former 'Defence Minister' of the so called Luhansk People's Republic. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. (Gender):Male",Individual,Primary name,,Russia,02/12/2014,31/12/2020,16/09/2022,13177 +BUGROV,Oleg,Evgenevich,,,,,Олег Евгеньевич БУГРОВ,,Russian,29/08/1969,"Sverdlovsk, Luhansk",,Ukraine,,,,,,,,,,,St. Petersburg,,Russia,"(UK Sanctions List Ref):RUS0085 (UK Statement of Reasons):Former 'Defence Minister' of the so called Luhansk People's Republic. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. (Gender):Male",Individual,Primary name,,Russia,02/12/2014,31/12/2020,16/09/2022,13177 +BUGROV,Oleg,Evgenevich,,,,,Олег Євгенович БУГРОВ,,Ukrainian,00/00/1973,"Sverdlovsk, Luhansk",,Ukraine,,,,,,,,,,,St. Petersburg,,Russia,"(UK Sanctions List Ref):RUS0085 (UK Statement of Reasons):Former 'Defence Minister' of the so called Luhansk People's Republic. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13177 +BUGROV,Oleg,Evgenevich,,,,,Олег Євгенович БУГРОВ,,Ukrainian,29/08/1969,"Sverdlovsk, Luhansk",,Ukraine,,,,,,,,,,,St. Petersburg,,Russia,"(UK Sanctions List Ref):RUS0085 (UK Statement of Reasons):Former 'Defence Minister' of the so called Luhansk People's Republic. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13177 +BUGROV,Oleg,Evenievich,,,,,,,,00/00/1973,"Sverdlovsk, Luhansk",,Ukraine,,,,,,,,,,,St. Petersburg,,Russia,"(UK Sanctions List Ref):RUS0085 (UK Statement of Reasons):Former 'Defence Minister' of the so called Luhansk People's Republic. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13177 +BUGROV,Oleg,Evenievich,,,,,,,,29/08/1969,"Sverdlovsk, Luhansk",,Ukraine,,,,,,,,,,,St. Petersburg,,Russia,"(UK Sanctions List Ref):RUS0085 (UK Statement of Reasons):Former 'Defence Minister' of the so called Luhansk People's Republic. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13177 +BUGUK,Natalia,Mikhailovna,,,,,Наталля Мiхайлаўна БУГУК,,,19/12/1989,Minsk,Belarus,Belarus,,,,,Judge at the Frunzensky district court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0112 (UK Statement of Reasons):In her position as a judge at the Frunzensky District Court in Minsk, NATALIA BUGUK has been responsible for numerous politically motivated rulings against journalists, opposition activists and protesters. Violations of the right to a fair trial have been reported during trials that she has conducted. BUGUK therefore is or has been involved in undermining democracy and the rule of law in Belarus, repressing civil society and the democratic opposition in Belarus, and for serious human rights violations in Belarus. (Gender):Female",Individual,Primary name,,Belarus,02/12/2021,02/12/2021,18/03/2022,14155 +BUGUK,Natallia,Mikhailauna,,,,,,,,19/12/1989,Minsk,Belarus,Belarus,,,,,Judge at the Frunzensky district court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0112 (UK Statement of Reasons):In her position as a judge at the Frunzensky District Court in Minsk, NATALIA BUGUK has been responsible for numerous politically motivated rulings against journalists, opposition activists and protesters. Violations of the right to a fair trial have been reported during trials that she has conducted. BUGUK therefore is or has been involved in undermining democracy and the rule of law in Belarus, repressing civil society and the democratic opposition in Belarus, and for serious human rights violations in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14155 +BUHROV,Oleh,Yevhenovych,,,,,,,,00/00/1973,"Sverdlovsk, Luhansk",,Ukraine,,,,,,,,,,,St. Petersburg,,Russia,"(UK Sanctions List Ref):RUS0085 (UK Statement of Reasons):Former 'Defence Minister' of the so called Luhansk People's Republic. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13177 +BUHROV,Oleh,Yevhenovych,,,,,,,,29/08/1969,"Sverdlovsk, Luhansk",,Ukraine,,,,,,,,,,,St. Petersburg,,Russia,"(UK Sanctions List Ref):RUS0085 (UK Statement of Reasons):Former 'Defence Minister' of the so called Luhansk People's Republic. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13177 +BUHUK,Natalia,Mikhailauna,,,,,,,,19/12/1989,Minsk,Belarus,Belarus,,,,,Judge at the Frunzensky district court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0112 (UK Statement of Reasons):In her position as a judge at the Frunzensky District Court in Minsk, NATALIA BUGUK has been responsible for numerous politically motivated rulings against journalists, opposition activists and protesters. Violations of the right to a fair trial have been reported during trials that she has conducted. BUGUK therefore is or has been involved in undermining democracy and the rule of law in Belarus, repressing civil society and the democratic opposition in Belarus, and for serious human rights violations in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14155 +BUHUK,Natalia,Mikhailovna,,,,,Наталья Михайловна БУГУК,,,19/12/1989,Minsk,Belarus,Belarus,,,,,Judge at the Frunzensky district court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0112 (UK Statement of Reasons):In her position as a judge at the Frunzensky District Court in Minsk, NATALIA BUGUK has been responsible for numerous politically motivated rulings against journalists, opposition activists and protesters. Violations of the right to a fair trial have been reported during trials that she has conducted. BUGUK therefore is or has been involved in undermining democracy and the rule of law in Belarus, repressing civil society and the democratic opposition in Belarus, and for serious human rights violations in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14155 +BUHUK,Natallia,Mikhailauna,,,,,,,,19/12/1989,Minsk,Belarus,Belarus,,,,,Judge at the Frunzensky district court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0112 (UK Statement of Reasons):In her position as a judge at the Frunzensky District Court in Minsk, NATALIA BUGUK has been responsible for numerous politically motivated rulings against journalists, opposition activists and protesters. Violations of the right to a fair trial have been reported during trials that she has conducted. BUGUK therefore is or has been involved in undermining democracy and the rule of law in Belarus, repressing civil society and the democratic opposition in Belarus, and for serious human rights violations in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14155 +BUKHAYTAN,Mohammad,Saeed,,,,,,,,,,,Syria,,,,,Assistant Regional Secretary of Baath Arab Socialist Party,,,,,,,,,(UK Sanctions List Ref):SYR0179 (UK Statement of Reasons):Assistant Regional Secretary of Ba'ath Arab Socialist Party since 2005; 2000-2005 Director for the national security of the regional Ba'ath party. Former Governor of Hama (1998-2000). Close associate of President Bashar Al-Assad and Maher Al-Assad. Senior decision-maker in the regime on repression of civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12045 +BUKHAYTAN,Mohammad,Sa'eed,,,,,,,,,,,Syria,,,,,Assistant Regional Secretary of Baath Arab Socialist Party,,,,,,,,,(UK Sanctions List Ref):SYR0179 (UK Statement of Reasons):Assistant Regional Secretary of Ba'ath Arab Socialist Party since 2005; 2000-2005 Director for the national security of the regional Ba'ath party. Former Governor of Hama (1998-2000). Close associate of President Bashar Al-Assad and Maher Al-Assad. Senior decision-maker in the regime on repression of civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12045 +BUKHAYTAN,Mohammad,Said,,,,,,,,,,,Syria,,,,,Assistant Regional Secretary of Baath Arab Socialist Party,,,,,,,,,(UK Sanctions List Ref):SYR0179 (UK Statement of Reasons):Assistant Regional Secretary of Ba'ath Arab Socialist Party since 2005; 2000-2005 Director for the national security of the regional Ba'ath party. Former Governor of Hama (1998-2000). Close associate of President Bashar Al-Assad and Maher Al-Assad. Senior decision-maker in the regime on repression of civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12045 +BUKHAYTAN,Mohammad,Sa'id,,,,,,,,,,,Syria,,,,,Assistant Regional Secretary of Baath Arab Socialist Party,,,,,,,,,(UK Sanctions List Ref):SYR0179 (UK Statement of Reasons):Assistant Regional Secretary of Ba'ath Arab Socialist Party since 2005; 2000-2005 Director for the national security of the regional Ba'ath party. Former Governor of Hama (1998-2000). Close associate of President Bashar Al-Assad and Maher Al-Assad. Senior decision-maker in the regime on repression of civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12045 +BUKHAYTAN,Mohammed,Saeed,,,,,,,,,,,Syria,,,,,Assistant Regional Secretary of Baath Arab Socialist Party,,,,,,,,,(UK Sanctions List Ref):SYR0179 (UK Statement of Reasons):Assistant Regional Secretary of Ba'ath Arab Socialist Party since 2005; 2000-2005 Director for the national security of the regional Ba'ath party. Former Governor of Hama (1998-2000). Close associate of President Bashar Al-Assad and Maher Al-Assad. Senior decision-maker in the regime on repression of civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12045 +BUKHAYTAN,Mohammed,Sa'eed,,,,,,,,,,,Syria,,,,,Assistant Regional Secretary of Baath Arab Socialist Party,,,,,,,,,(UK Sanctions List Ref):SYR0179 (UK Statement of Reasons):Assistant Regional Secretary of Ba'ath Arab Socialist Party since 2005; 2000-2005 Director for the national security of the regional Ba'ath party. Former Governor of Hama (1998-2000). Close associate of President Bashar Al-Assad and Maher Al-Assad. Senior decision-maker in the regime on repression of civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12045 +BUKHAYTAN,Mohammed,Said,,,,,,,,,,,Syria,,,,,Assistant Regional Secretary of Baath Arab Socialist Party,,,,,,,,,(UK Sanctions List Ref):SYR0179 (UK Statement of Reasons):Assistant Regional Secretary of Ba'ath Arab Socialist Party since 2005; 2000-2005 Director for the national security of the regional Ba'ath party. Former Governor of Hama (1998-2000). Close associate of President Bashar Al-Assad and Maher Al-Assad. Senior decision-maker in the regime on repression of civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12045 +BUKHAYTAN,Mohammed,Sa'id,,,,,,,,,,,Syria,,,,,Assistant Regional Secretary of Baath Arab Socialist Party,,,,,,,,,(UK Sanctions List Ref):SYR0179 (UK Statement of Reasons):Assistant Regional Secretary of Ba'ath Arab Socialist Party since 2005; 2000-2005 Director for the national security of the regional Ba'ath party. Former Governor of Hama (1998-2000). Close associate of President Bashar Al-Assad and Maher Al-Assad. Senior decision-maker in the regime on repression of civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12045 +BUKHAYTAN,Muhammad,Saeed,,,,,,,,,,,Syria,,,,,Assistant Regional Secretary of Baath Arab Socialist Party,,,,,,,,,(UK Sanctions List Ref):SYR0179 (UK Statement of Reasons):Assistant Regional Secretary of Ba'ath Arab Socialist Party since 2005; 2000-2005 Director for the national security of the regional Ba'ath party. Former Governor of Hama (1998-2000). Close associate of President Bashar Al-Assad and Maher Al-Assad. Senior decision-maker in the regime on repression of civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12045 +BUKHAYTAN,Muhammad,Sa'eed,,,,,,,,,,,Syria,,,,,Assistant Regional Secretary of Baath Arab Socialist Party,,,,,,,,,(UK Sanctions List Ref):SYR0179 (UK Statement of Reasons):Assistant Regional Secretary of Ba'ath Arab Socialist Party since 2005; 2000-2005 Director for the national security of the regional Ba'ath party. Former Governor of Hama (1998-2000). Close associate of President Bashar Al-Assad and Maher Al-Assad. Senior decision-maker in the regime on repression of civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12045 +BUKHAYTAN,Muhammad,Said,,,,,,,,,,,Syria,,,,,Assistant Regional Secretary of Baath Arab Socialist Party,,,,,,,,,(UK Sanctions List Ref):SYR0179 (UK Statement of Reasons):Assistant Regional Secretary of Ba'ath Arab Socialist Party since 2005; 2000-2005 Director for the national security of the regional Ba'ath party. Former Governor of Hama (1998-2000). Close associate of President Bashar Al-Assad and Maher Al-Assad. Senior decision-maker in the regime on repression of civilian population. (Gender):Male,Individual,Primary name,,Syria,24/08/2011,31/12/2020,13/05/2022,12045 +BUKHAYTAN,Muhammad,Sa'id,,,,,,,,,,,Syria,,,,,Assistant Regional Secretary of Baath Arab Socialist Party,,,,,,,,,(UK Sanctions List Ref):SYR0179 (UK Statement of Reasons):Assistant Regional Secretary of Ba'ath Arab Socialist Party since 2005; 2000-2005 Director for the national security of the regional Ba'ath party. Former Governor of Hama (1998-2000). Close associate of President Bashar Al-Assad and Maher Al-Assad. Senior decision-maker in the regime on repression of civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12045 +BUKHORI,,,,,,,,,,06/07/1977,"Cianjur, West Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0180 (UN Ref):QDi.218 Brother of Nurjaman Riduan Isamuddin (QDi.087). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8832 +BUKHORY,,,,,,,,,,06/07/1977,"Cianjur, West Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0180 (UN Ref):QDi.218 Brother of Nurjaman Riduan Isamuddin (QDi.087). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8832 +BULAEV,Nikolai,Ivanovich,,,,,Николай Иванович Булаев,Cyrillic,Russian,09/01/1949,"Shatsky district, Ryazan Oblast",Russia,,,,,,Deputy Chairman of the Central Election Committee,,,,,,,,,"(UK Sanctions List Ref):RUS1555 (UK Statement of Reasons):Nikolai BULAEV is an involved person within the meaning of the Russia (Sanctions) (EU Exit) Regulations 2019 as BULAEV is 1. The Deputy Chairman of the Central Election Commission (CEC) of the Russian Federation, and therefore a head or deputy head of a public body or agency of the Government of the Russian Federation; and 2. Through his role with the CEC, has repeatedly supported policies and engaged in actions which have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15499 +BULAVIN,Vladimir,Ivanovich,,,,,Влади́мир Ива́нович Булавин,Cyrillic,Russian,11/02/1953,Lipetsk,Russia,Russia,,,,,Member of the Russian Security Council and Head of the Federal Customs Service,,,,,,,,,"(UK Sanctions List Ref):RUS0825 (UK Statement of Reasons):Vladimir Ivanovich BULAVIN is a member of Russia’s Security Council (RSC) and Head of the Russian Federal Customs Service. The RSC has been involved actively in decision-making about Russian policy towards Ukraine. On 21 February 2022, the RSC supported a proposal to recognise Donetsk and Luhansk as independent republics. Through his role as an RSC member, BULAVIN has therefore been responsible for, provided support to, or promoted a policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,27/05/2022,14776 +BULAVINOV,Vadim,Evgenievich,,,,,Булавинов Вадим Евгеньевич,,,20/03/1963,Gorky,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0325 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14270 +BULAVKO,Anatoliy,Anatolievich,,,,Colonel,БУЛАВКО Анатолий Анатольевич,Cyrillic,Russian,01/05/1969,Kalinkovichi,Belarus,Belarus,,,,,Deputy Commander of the Air Force and Air Defence Forces,,,,,,,,,"(UK Sanctions List Ref):RUS0736 (UK Statement of Reasons):Colonel Anatoliy Anatolievich BULAVKO has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely being involved in the command of the Air Force and Air Defence Forces which have hosted Russian air assets and allowed its facilities to be used by Russia in launching attacks on Ukraine (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14687 +BULAYEV,Nikolay,,,,,,,,,09/01/1949,"Shatsky district, Ryazan Oblast",Russia,,,,,,Deputy Chairman of the Central Election Committee,,,,,,,,,"(UK Sanctions List Ref):RUS1555 (UK Statement of Reasons):Nikolai BULAEV is an involved person within the meaning of the Russia (Sanctions) (EU Exit) Regulations 2019 as BULAEV is 1. The Deputy Chairman of the Central Election Commission (CEC) of the Russian Federation, and therefore a head or deputy head of a public body or agency of the Government of the Russian Federation; and 2. Through his role with the CEC, has repeatedly supported policies and engaged in actions which have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15499 +BULGAKOV,Dmitry,Vitalyevich,,,,Colonel General,БУЛГАКОВ Дмитрий Витальевич,Cyrillic,Russian,20/10/1954,Upper Gurovo,Russia,Russia,,,,,(1) Deputy Minister of Defence of the Russian Federation (2) Chief of the Russian Armed Forces Logistics Services,,,,,,,,,"(UK Sanctions List Ref):RUS1049 (UK Statement of Reasons):Dmitry BULGAKOV (hereafter BULGAKOV) is the current Deputy Minister of Defence of the Russian Federation. BULGAKOV is deemed to have been either in direct command of or in a position to hold considerable situational awareness of troops involved in the Russian invasion of Ukraine. He has also been involved in the oversight of infrastructure construction projects to connect Crimea with Russia. BULGAKOV therefore is or has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,24/03/2022,24/03/2022,09/05/2022,14992 +BULGARSKIY,Salman,,,,,,Салман Булгарский,,,27/03/1977,"Naberezhnye Chelny, Republic of Tatarstan",Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0151 (UN Ref):QDi.397 May use a fake passport of a Syrian or Iraqi citizen. Member of the Al-Nusrah Front for the People of the Levant (ANF) (QDe.137), “Bulgar Group”, leads a group of 100 fighters. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5966088",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/08/2016,03/08/2016,12/01/2022,13377 +BULWARK,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0187 Name of Director Aleksandr Zakharchenko (now deceased) and Mikhail Verin (nom de guerre ‘The Fifth’) (UK Statement of Reasons):Armed separatist group which has taken part in combat activity and has actively supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. These actions include occupation of City Hall in Donetsk; an assault assault on the army positions at Krasnohorivka, which took the lives of three Ukrainian soldiers; repulsion of Kiev troops in Donetsk and being reportedly part of the so-called ""1st Army Corps"" of the ""Donetsk People's Republic"". (Website):http://vk.com/oplot_info",Entity,AKA,,Russia,16/02/2015,31/12/2020,31/12/2020,13223 +BUNEEV,Gennadiy,Mikhaylovich,,,,,БУНЕЕВ Геннадий Михайлович,Cyrillic,Russian,11/02/1958,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1264 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15216 +BUNEEV,Gennady,Mikhailovich,,,,,,,,11/02/1958,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1264 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15216 +BUNYAN DAMASCUS PRIVATE JOINT STOCK COMPANY,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0272 (UK Statement of Reasons):Bunyan Damascus Private Joint Stock Company is a USD$34.8 million joint venture between Damascus Cham Holdings and Apex Development and Projects LLC and Tamayoz LLC. Through its participation in the regime-backed luxury development Marota City, Bunyan Damascus Private Joint Stock Company supports and / or benefits from the Syrian regime. (Type of entity):Construction. Joint Venture. Private Joint Stock Company",Entity,Primary name,,Syria,22/01/2019,31/12/2020,31/12/2020,13766 +BUNYAN DAMASCUS PRIVATE JSC,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0272 (UK Statement of Reasons):Bunyan Damascus Private Joint Stock Company is a USD$34.8 million joint venture between Damascus Cham Holdings and Apex Development and Projects LLC and Tamayoz LLC. Through its participation in the regime-backed luxury development Marota City, Bunyan Damascus Private Joint Stock Company supports and / or benefits from the Syrian regime. (Type of entity):Construction. Joint Venture. Private Joint Stock Company",Entity,AKA,,Syria,22/01/2019,31/12/2020,31/12/2020,13766 +BURDYKA,Andrej,,,,,,Андрэй Бурдыка,,,09/06/1973,"Pleshchenitsy, Minsk Region",Belarus,Belarus,,,,,(1) Deputy Minister of Defence for Logistics (2) Chief of Logistics,Ministry of Defence of the Republic of Belarus,1 Kommunisticheskaya St.,,,,Minsk,220034,Belarus,"(UK Sanctions List Ref):RUS0257 (UK Statement of Reasons):As Deputy Minister of Defence for Logistics and Chief of Logistics of the Belarusian Armed Forces, Major General Andrei Burdyko is an active and senior military leader in Belarus and, as part of the top-level chain of command, is responsible for directing the actions of the Belarusian armed forces, which have supported and enabled Russia’s invasion of Ukraine. The Belarusian armed forces have conducted joint military exercises with Russian armed forces, and also consented to the deployment of Russian troops along the border of Belarus with Ukraine, which has directly contributed to Russia’s ability to both threaten and attack Ukraine, including from positions in Belarus. Burdyko therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine.  (Gender):Male",Individual,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14203 +BURDYKO,Andrei,,,,,Major General,Андрей Бурдыко,,,09/06/1973,"Pleshchenitsy, Minsk Region",Belarus,Belarus,,,,,(1) Deputy Minister of Defence for Logistics (2) Chief of Logistics,Ministry of Defence of the Republic of Belarus,1 Kommunisticheskaya St.,,,,Minsk,220034,Belarus,"(UK Sanctions List Ref):RUS0257 (UK Statement of Reasons):As Deputy Minister of Defence for Logistics and Chief of Logistics of the Belarusian Armed Forces, Major General Andrei Burdyko is an active and senior military leader in Belarus and, as part of the top-level chain of command, is responsible for directing the actions of the Belarusian armed forces, which have supported and enabled Russia’s invasion of Ukraine. The Belarusian armed forces have conducted joint military exercises with Russian armed forces, and also consented to the deployment of Russian troops along the border of Belarus with Ukraine, which has directly contributed to Russia’s ability to both threaten and attack Ukraine, including from positions in Belarus. Burdyko therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine.  (Gender):Male",Individual,Primary name,,Russia,01/03/2022,01/03/2022,01/03/2022,14203 +BUREAU 39,,,,,,,,,,,,,,,,,,,,Changwang Street,,,,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +BUREAU 39,,,,,,,,,,,,,,,,,,,"Second KWP Government Building (Korean – Ch’o’ngsa, Urban Town (Korean-Dong)",,,,Chung Ward,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +BUREAU 39,,,,,,,,,,,,,,,,,,,Chung-Guyok (Central District),Sosong Street,,,Kyongrim-Dong,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +BURLAKOV,Sergei,Vladimirovich,,,,,Бурлаков Сергей Владимирович,,,26/05/1971,Taganrog,Russia,Russia,733763271,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0545 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14490 +BURLYAEV,Nikolai,Petrovich,,,,,Бурляев Николай Петрович,,,03/08/1946,Moscow,Russia,Russia,715958656,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0546 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14491 +BURMATOV,Vladimir,Vladimirovich,,,,,Бурматов Владимир Владимирович,,,18/08/1981,Zlatoust,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0326 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14271 +BURMISTRAU,Igor,Pavlovich,,,,,,,,30/09/1968,,,,,,,,Chief of Staff and First Deputy Commander of the Internal Troops of the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0069 (UK Statement of Reasons):Igor Burmistrov is the Chief of Staff and First Deputy Commander of the Internal Troops of the Ministry of Internal Affairs. In this position he bears responsibility for the inhumane and degrading treatment of detainees, amounting to serious human rights violations and the repression of civil society, including torture, carried out in the detention facilities following the elections of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14038 +BURMISTRAU,Ihar,Paulavich,,,,,,,,30/09/1968,,,,,,,,Chief of Staff and First Deputy Commander of the Internal Troops of the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0069 (UK Statement of Reasons):Igor Burmistrov is the Chief of Staff and First Deputy Commander of the Internal Troops of the Ministry of Internal Affairs. In this position he bears responsibility for the inhumane and degrading treatment of detainees, amounting to serious human rights violations and the repression of civil society, including torture, carried out in the detention facilities following the elections of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14038 +BURMISTROV,Igor,Pavlovich,,,,,Iгар Паўлавiч БУРМIСТРАЎ,,,30/09/1968,,,,,,,,Chief of Staff and First Deputy Commander of the Internal Troops of the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0069 (UK Statement of Reasons):Igor Burmistrov is the Chief of Staff and First Deputy Commander of the Internal Troops of the Ministry of Internal Affairs. In this position he bears responsibility for the inhumane and degrading treatment of detainees, amounting to serious human rights violations and the repression of civil society, including torture, carried out in the detention facilities following the elections of 9 August. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14038 +BURMISTROV,Ihar,Paulavich,,,,,Игорь Павлович БУРМИСТРОВ,,,30/09/1968,,,,,,,,Chief of Staff and First Deputy Commander of the Internal Troops of the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0069 (UK Statement of Reasons):Igor Burmistrov is the Chief of Staff and First Deputy Commander of the Internal Troops of the Ministry of Internal Affairs. In this position he bears responsibility for the inhumane and degrading treatment of detainees, amounting to serious human rights violations and the repression of civil society, including torture, carried out in the detention facilities following the elections of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14038 +BUSARGIN,Roman,Viktorovich,,,,,Роман Викторович Бусаргин,,,29/07/1981,,,Russia,,,,,Acting Governor of Saratov Region,,,,,,,,,"(UK Sanctions List Ref):RUS1519 (UK Statement of Reasons):Roman Viktorovich BUSARGIN is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because BUSARGIN is a regional Governor or equivalent. Specifically, BUSARGIN is Acting Governor of Saratov Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15459 +BUSINESS LAB,,,,,,,,,,,,,,,,,,,Maysat Square Al,Rasafi Street Bldg 9,,,PO Box 7155,Damascus,,Syria,"(UK Sanctions List Ref):SYR0284 (UK Statement of Reasons):Affiliated to and a subsidiary of the designated entity Scientific Studies and Research Centre (SSRC), also known as Centre D’etudes et de Recherches Syrien (CERS). SSRC operates in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):963000000000 (Type of entity):Manufacturing/Proliferation",Entity,Primary name,,Syria,02/12/2011,31/12/2020,31/12/2020,12427 +BUSTAMANTE PUERTA,Dinorah,Yoselin,,,,,,,,14/01/1975,,Venezuela,Venezuela,,,V-10002096,,Prosecutor,,,,,,,,Venezuela,"(UK Sanctions List Ref):VEN0033 (UK Statement of Reasons):There are reasonable grounds to suspect that Venezuelan Prosecutor Dinorah Yoselin Bustamante Puerta has undermined the rule of law in Venezuela through her involvement as prosecutor in the prosecution of Requesens, Alban, and Marrero, all of whom had parliamentary immunity. The prosecution of Marrero included the planting of evidence in his home. (Gender):Female",Individual,Primary name,,Venezuela,30/06/2020,31/12/2020,31/12/2020,13848 +BUTAEV,Lom-ali,,,,,,,,,12/05/1964,"Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika",Russia,Russia,96 03 464086,"Russian Federation number, issued on 1 Jun. 2003",,,,,,,,,,,Russian Federation (as at November 2010),"(UK Sanctions List Ref):AQD0165 (UN Ref):QDi.290 Physical description: 180 cm tall, dark hair, 7-9 cm. long scar on the face, part of the tongue is missing, has a speech defect. Resides in the Russian Federation as at Nov. 2010. International arrest warrant issued in the year 2000. INTERPOL Special Notice contains biometric information. Reportedly deceased as of April 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4065325",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/03/2011,10/03/2011,12/01/2022,11688 +BUTAEV,Lom-ali,,,,,,,,,13/04/1964,"Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika",Russia,Russia,96 03 464086,"Russian Federation number, issued on 1 Jun. 2003",,,,,,,,,,,Russian Federation (as at November 2010),"(UK Sanctions List Ref):AQD0165 (UN Ref):QDi.290 Physical description: 180 cm tall, dark hair, 7-9 cm. long scar on the face, part of the tongue is missing, has a speech defect. Resides in the Russian Federation as at Nov. 2010. International arrest warrant issued in the year 2000. INTERPOL Special Notice contains biometric information. Reportedly deceased as of April 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4065325",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/03/2011,10/03/2011,12/01/2022,11688 +BUTAEV,Lom-ali,,,,,,,,,13/04/1965,"Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika",Russia,Russia,96 03 464086,"Russian Federation number, issued on 1 Jun. 2003",,,,,,,,,,,Russian Federation (as at November 2010),"(UK Sanctions List Ref):AQD0165 (UN Ref):QDi.290 Physical description: 180 cm tall, dark hair, 7-9 cm. long scar on the face, part of the tongue is missing, has a speech defect. Resides in the Russian Federation as at Nov. 2010. International arrest warrant issued in the year 2000. INTERPOL Special Notice contains biometric information. Reportedly deceased as of April 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4065325",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/03/2011,10/03/2011,12/01/2022,11688 +BUTAEV,Lom-ali,,,,,,,,,00/00/1955,"Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika",Russia,Russia,96 03 464086,"Russian Federation number, issued on 1 Jun. 2003",,,,,,,,,,,Russian Federation (as at November 2010),"(UK Sanctions List Ref):AQD0165 (UN Ref):QDi.290 Physical description: 180 cm tall, dark hair, 7-9 cm. long scar on the face, part of the tongue is missing, has a speech defect. Resides in the Russian Federation as at Nov. 2010. International arrest warrant issued in the year 2000. INTERPOL Special Notice contains biometric information. Reportedly deceased as of April 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4065325",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/03/2011,10/03/2011,12/01/2022,11688 +BUTAYEV,Lom-ali,,,,,,,,,12/05/1964,"Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika",Russia,Russia,96 03 464086,"Russian Federation number, issued on 1 Jun. 2003",,,,,,,,,,,Russian Federation (as at November 2010),"(UK Sanctions List Ref):AQD0165 (UN Ref):QDi.290 Physical description: 180 cm tall, dark hair, 7-9 cm. long scar on the face, part of the tongue is missing, has a speech defect. Resides in the Russian Federation as at Nov. 2010. International arrest warrant issued in the year 2000. INTERPOL Special Notice contains biometric information. Reportedly deceased as of April 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4065325",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/03/2011,10/03/2011,12/01/2022,11688 +BUTAYEV,Lom-ali,,,,,,,,,13/04/1964,"Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika",Russia,Russia,96 03 464086,"Russian Federation number, issued on 1 Jun. 2003",,,,,,,,,,,Russian Federation (as at November 2010),"(UK Sanctions List Ref):AQD0165 (UN Ref):QDi.290 Physical description: 180 cm tall, dark hair, 7-9 cm. long scar on the face, part of the tongue is missing, has a speech defect. Resides in the Russian Federation as at Nov. 2010. International arrest warrant issued in the year 2000. INTERPOL Special Notice contains biometric information. Reportedly deceased as of April 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4065325",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/03/2011,10/03/2011,12/01/2022,11688 +BUTAYEV,Lom-ali,,,,,,,,,13/04/1965,"Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika",Russia,Russia,96 03 464086,"Russian Federation number, issued on 1 Jun. 2003",,,,,,,,,,,Russian Federation (as at November 2010),"(UK Sanctions List Ref):AQD0165 (UN Ref):QDi.290 Physical description: 180 cm tall, dark hair, 7-9 cm. long scar on the face, part of the tongue is missing, has a speech defect. Resides in the Russian Federation as at Nov. 2010. International arrest warrant issued in the year 2000. INTERPOL Special Notice contains biometric information. Reportedly deceased as of April 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4065325",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/03/2011,10/03/2011,12/01/2022,11688 +BUTAYEV,Lom-ali,,,,,,,,,00/00/1955,"Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika",Russia,Russia,96 03 464086,"Russian Federation number, issued on 1 Jun. 2003",,,,,,,,,,,Russian Federation (as at November 2010),"(UK Sanctions List Ref):AQD0165 (UN Ref):QDi.290 Physical description: 180 cm tall, dark hair, 7-9 cm. long scar on the face, part of the tongue is missing, has a speech defect. Resides in the Russian Federation as at Nov. 2010. International arrest warrant issued in the year 2000. INTERPOL Special Notice contains biometric information. Reportedly deceased as of April 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4065325",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/03/2011,10/03/2011,12/01/2022,11688 +BUTEMBO AIRLINES,,,,,,,,,,,,,,,,,,,,,,,,Butembo,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0016 (UN Ref):CDe.002 Privately-owned airline, operates out of Butembo. Since December 2008, BAL no longer holds an aircraft operating license in the DRC. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278478",Entity,Primary name,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9068 +BUTINA,Maria,Valerievna,,,,,Бутина Мария Валерьевна,,,10/11/1988,Barnaul,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0327 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14272 +BUTSKAYA,Tatyana,Viktorovna,,,,,Буцкая Татьяна Викторовна,,,08/05/1975,Moscow,Russia,Russia,736327769,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0547 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14492 +BUZOUSKI,Igor,Ivanovich,,,,,Игорь Иванович БУЗОВСКИЙ,,,10/07/1972,"village of Koshelevo, Grodno/Hrodna region",Former USSR Currently Belarus,Belarus,,,,,Deputy Minister of Information,,,,,,,,,"(UK Sanctions List Ref):BEL0050 (UK Statement of Reasons):In his leadership position as Deputy Minister of Information, Ihar Buzouski is responsible for the repression of civil society, notably with Ministry of Information involvement in cutting off access to independent websites and limiting internet access in Belarus in the wake of the 2020 presidential election, as a tool of repression of civil society, peaceful demonstrators and journalists. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13992 +BUZOUSKI,Ihar,Ivanavich,,,,,Iгар Iванавiч БУЗОЎСКI,,,10/07/1972,"village of Koshelevo, Grodno/Hrodna region",Former USSR Currently Belarus,Belarus,,,,,Deputy Minister of Information,,,,,,,,,"(UK Sanctions List Ref):BEL0050 (UK Statement of Reasons):In his leadership position as Deputy Minister of Information, Ihar Buzouski is responsible for the repression of civil society, notably with Ministry of Information involvement in cutting off access to independent websites and limiting internet access in Belarus in the wake of the 2020 presidential election, as a tool of repression of civil society, peaceful demonstrators and journalists. (Gender):Male",Individual,Primary name,,Belarus,06/11/2020,31/12/2020,31/12/2020,13992 +BUZOVSKI,Igor,Ivanovich,,,,,,,,10/07/1972,"village of Koshelevo, Grodno/Hrodna region",Former USSR Currently Belarus,Belarus,,,,,Deputy Minister of Information,,,,,,,,,"(UK Sanctions List Ref):BEL0050 (UK Statement of Reasons):In his leadership position as Deputy Minister of Information, Ihar Buzouski is responsible for the repression of civil society, notably with Ministry of Information involvement in cutting off access to independent websites and limiting internet access in Belarus in the wake of the 2020 presidential election, as a tool of repression of civil society, peaceful demonstrators and journalists. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13992 +BUZOVSKI,Ihar,Ivanavich,,,,,,,,10/07/1972,"village of Koshelevo, Grodno/Hrodna region",Former USSR Currently Belarus,Belarus,,,,,Deputy Minister of Information,,,,,,,,,"(UK Sanctions List Ref):BEL0050 (UK Statement of Reasons):In his leadership position as Deputy Minister of Information, Ihar Buzouski is responsible for the repression of civil society, notably with Ministry of Information involvement in cutting off access to independent websites and limiting internet access in Belarus in the wake of the 2020 presidential election, as a tool of repression of civil society, peaceful demonstrators and journalists. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13992 +BWAMBALE,Frank,Kakolele,,,,,,,,,,,Congo (Democratic Republic),,,,,FARDC General,,,,,,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0031 (UN Ref):CDi.002 Left the CNDP in January 2008. As of June 2011, resides in Kinshasa. Since 2010, Kakolele has been involved in activities apparently on behalf of the DRC government’s Programme de Stabilisation et Reconstruction des Zones Sortant des Conflits Armés (STAREC), including participation in a STAREC mission to Goma and Beni in March 2011. DRC authorities arrested him in December 2013 in Beni, North Kivu Province, for allegedly blocking the DDR process. He left the DRC and lived in Kenya for some time, before being called back by the DRC Government to assist them with the situation in the Territory of Beni. He was arrested in October 2015 in the area of Mambasa for allegedly supporting a Mai Mai group, but no charges were brought and as of June 2016, he lived in Kinshasa. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776078 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8732 +BWAMBALE,Kakorere,Frank,,,,,,,,,,,Congo (Democratic Republic),,,,,FARDC General,,,,,,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0031 (UN Ref):CDi.002 Left the CNDP in January 2008. As of June 2011, resides in Kinshasa. Since 2010, Kakolele has been involved in activities apparently on behalf of the DRC government’s Programme de Stabilisation et Reconstruction des Zones Sortant des Conflits Armés (STAREC), including participation in a STAREC mission to Goma and Beni in March 2011. DRC authorities arrested him in December 2013 in Beni, North Kivu Province, for allegedly blocking the DDR process. He left the DRC and lived in Kenya for some time, before being called back by the DRC Government to assist them with the situation in the Territory of Beni. He was arrested in October 2015 in the area of Mambasa for allegedly supporting a Mai Mai group, but no charges were brought and as of June 2016, he lived in Kinshasa. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776078 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8732 +BWATARE,Laurent,Nkunda,,,,,,,,06/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +BWATARE,Laurent,Nkunda,,,,,,,,02/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +BYIRINGIRO,Michel,,,,,,,,,00/00/1948,"(1) Musanze District, Northern Province (2) Ruhengeri",(1) Rwanda (2) Rwanda,Rwanda,,,,,1st Vice-President. FDLR Interim President. Major General of the FDLR-FOCA,,,,,,North Kivu Province,,Congo (Democratic Republic),(UK Sanctions List Ref):DRC0032 (UN Ref):CDi.003 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272456 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,03/12/2010,01/12/2010,21/01/2021,11276 +BYKADOROV,Alexander,Viktorovich,,,,,БЫКАДОРОВ Александр Викторович,Cyrillic,Russian,28/09/1985,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1234 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15186 +BYKAU,Alexander,Valerievich,,,,,"БЫКАЎ, Аляксандр",,,,,,,,,,,Commander of the Special Rapid Response Unit (SOBR),,,,,,,,,"(UK Sanctions List Ref):BEL0011 (UK Statement of Reasons):Aliaksandr Bykau is Commander of the Special Rapid Response Unit (SOBR) of the Ministry of Internal Affairs of Belarus. In his role as Commander, he is responsible for the actions of the SOBR and therefore responsible for the serious human rights violations and abuses against protestors, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13934 +BYKAU,ALIAKSANDR,VALERIEVICH,,,,,"БЫКОВ, Александр",,,,,,,,,,,Commander of the Special Rapid Response Unit (SOBR),,,,,,,,,"(UK Sanctions List Ref):BEL0011 (UK Statement of Reasons):Aliaksandr Bykau is Commander of the Special Rapid Response Unit (SOBR) of the Ministry of Internal Affairs of Belarus. In his role as Commander, he is responsible for the actions of the SOBR and therefore responsible for the serious human rights violations and abuses against protestors, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13934 +BYKAU,Alyaksandr,,,,,,,,,,,,,,,,,Commander of the Special Rapid Response Unit (SOBR),,,,,,,,,"(UK Sanctions List Ref):BEL0011 (UK Statement of Reasons):Aliaksandr Bykau is Commander of the Special Rapid Response Unit (SOBR) of the Ministry of Internal Affairs of Belarus. In his role as Commander, he is responsible for the actions of the SOBR and therefore responsible for the serious human rights violations and abuses against protestors, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13934 +BYKOV,Alexander,Valerievich,,,,,,,,,,,,,,,,Commander of the Special Rapid Response Unit (SOBR),,,,,,,,,"(UK Sanctions List Ref):BEL0011 (UK Statement of Reasons):Aliaksandr Bykau is Commander of the Special Rapid Response Unit (SOBR) of the Ministry of Internal Affairs of Belarus. In his role as Commander, he is responsible for the actions of the SOBR and therefore responsible for the serious human rights violations and abuses against protestors, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13934 +BYKOV,ALIAKSANDR,VALERIEVICH,,,,,,,,,,,,,,,,Commander of the Special Rapid Response Unit (SOBR),,,,,,,,,"(UK Sanctions List Ref):BEL0011 (UK Statement of Reasons):Aliaksandr Bykau is Commander of the Special Rapid Response Unit (SOBR) of the Ministry of Internal Affairs of Belarus. In his role as Commander, he is responsible for the actions of the SOBR and therefore responsible for the serious human rights violations and abuses against protestors, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13934 +BYKOV,Alexander,,,,,,,,,,,,,,,,,Commander of the Special Rapid Response Unit (SOBR),,,,,,,,,"(UK Sanctions List Ref):BEL0011 (UK Statement of Reasons):Aliaksandr Bykau is Commander of the Special Rapid Response Unit (SOBR) of the Ministry of Internal Affairs of Belarus. In his role as Commander, he is responsible for the actions of the SOBR and therefore responsible for the serious human rights violations and abuses against protestors, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13934 +BYONG CHOL,Min,,,,,,,,,10/08/1948,,,North Korea,,,,,"Member of the Workers' Party of Korea’s Organization and Guidance Department, which directs key personnel appointments for the Workers’ Party of Korea and the DPRK’s military",,,,,,,,North Korea,(UK Sanctions List Ref):DPR0246 (UN Ref):KPi.047 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13489 +BYONG CHUN,Min,,,,,,,,,10/08/1948,,,North Korea,,,,,"Member of the Workers' Party of Korea’s Organization and Guidance Department, which directs key personnel appointments for the Workers’ Party of Korea and the DPRK’s military",,,,,,,,North Korea,(UK Sanctions List Ref):DPR0246 (UN Ref):KPi.047 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13489 +BYONG-CHOL,Min,,,,,,,,,10/08/1948,,,North Korea,,,,,"Member of the Workers' Party of Korea’s Organization and Guidance Department, which directs key personnel appointments for the Workers’ Party of Korea and the DPRK’s military",,,,,,,,North Korea,(UK Sanctions List Ref):DPR0246 (UN Ref):KPi.047 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13489 +BYUTUKAEV,ASLAN,AVGAZAROVICH,,,,,Аслан Авгазарович Бютукаев,,,22/10/1974,"Kitaevka, Novoselitskiy District, Stavropol Region",Russia,Russia,,,,,,Akharkho Street,11,Katyr-Yurt,,Achkhoy-Martanovskiy District,Republic of Chechnya,,Russia,(UK Sanctions List Ref):AQD0150 (UN Ref):QDi.396 Wanted by the authorities of the Russian Federation for terrorist crimes. Commands a suicide battalion of Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs (RSRSBCM) (QDe.100). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5966084,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/08/2016,03/08/2016,12/01/2022,13376 +CABDULLAAHI,Maxammed,,,,,,,,,08/10/1974,Kismaayo,Somalia,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):AQD0226 (UN Ref):QDi.141 Present in Somalia as of Apr. 2009 following transfer from United Kingdom. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5950651,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7866 +CABELLO RONDON,Diosdado,,,,,,Diosdado Cabello Rondón,,,15/04/1963,,,Venezuela,,,,,(1) First Vice President of the United Socialist Party of Venezuela (PSUV) (2) National Assembly Deputy (since January 2021) (3) President of the National Assembly’s Special Commission for the Judicial Revolution of Venezuela (since January 2021) (4) Former President of the National Constituent Assembly,,,,,,Caracas,,Venezuela,"(UK Sanctions List Ref):VEN0006 Member of the Constituent Assembly (UK Statement of Reasons):Deputy of the National Assembly (2021-26) and President of the National Assembly’s Special Commission for the Judicial Revolution of Venezuela. Former President of the Constituent Assembly. As President of the Constituent Assembly and First Vice President of the United Socialist Party of Venezuela (PSUV), Cabello Rondon was involved in undermining democracy and the rule of law in Venezuela, including by using the media to publicly attack and threaten the political opposition, other media and civil society. (Gender):Male",Individual,Primary name,,Venezuela,22/01/2018,31/12/2020,28/01/2022,13586 +CAESAR,,,,,,,,,,00/00/1994,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +CAESAR,,,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +CAESAR,,,,,,,,,,00/00/1995,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +CAESAR,,,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +CAGL,,,,,,,,,,,,,,,,,,,,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0017 (UN Ref):CDe.003 As of December 2008, GLBC no longer had any operational aircraft, although several aircraft continued flying in 2008 despite UN sanctions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278381",Entity,AKA,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9070 +CAGL,,,,,,,,,,,,,,,,,,,,,,,,Gisenyi,,Rwanda,"(UK Sanctions List Ref):DRC0017 (UN Ref):CDe.003 As of December 2008, GLBC no longer had any operational aircraft, although several aircraft continued flying in 2008 despite UN sanctions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278381",Entity,AKA,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9070 +CAGL,,,,,,,,,,,,,,,,,,,Avenue President Mobutu,,,,,Goma,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0017 (UN Ref):CDe.003 As of December 2008, GLBC no longer had any operational aircraft, although several aircraft continued flying in 2008 despite UN sanctions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278381",Entity,AKA,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9070 +CAGL,,,,,,,,,,,,,,,,,,,Avenue Président Mobutu,,,,,Goma,,,"(UK Sanctions List Ref):DRC0017 (UN Ref):CDe.003 As of December 2008, GLBC no longer had any operational aircraft, although several aircraft continued flying in 2008 despite UN sanctions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278381",Entity,AKA,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9070 +CAGL,,,,,,,,,,,,,,,,,,,PO BOX 315,,,,,Goma,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0017 (UN Ref):CDe.003 As of December 2008, GLBC no longer had any operational aircraft, although several aircraft continued flying in 2008 despite UN sanctions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278381",Entity,AKA,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9070 +CAIRO,Aziz,,,,,,,,,05/02/1981,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +CAIRO,Aziz,,,,,,,,,01/01/1972,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +CALDERON CHIRINOS,Carlos,Alberto,,,,,,,,,,Venezuela,Venezuela,,,10352300,,,,,,,,,,,"(UK Sanctions List Ref):VEN0021 (UK Statement of Reasons):Senior office holder (referred to as Commissioner, Director and Director General) in the Bolivarian National Intelligence Service (SEBIN). Responsible for serious human rights violations, including torture, the use of excessive force and the mistreatment of detainees in SEBIN facilities. In particular, he participated in and was responsible for acts of torture and the cruel, inhuman and degrading treatment of detainees in El Helicoide, a SEBIN prison. (Gender):Male",Individual,Primary name,,Venezuela,27/09/2019,31/12/2020,31/12/2020,13793 +CALI,Yasiin,Baynax,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,,Mogadishu,Somalia,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +CALI,Yasiin,Baynax,,,,,,,,24/12/1965,,,(1) Somalia. (2) Sweden,,,,,,,,,,,Rinkeby,Stockholm,Sweden,(UK Sanctions List Ref):SOM0002 (UN Ref):SOi.001,Individual,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,10929 +CAMARA,Moussa,Dadis,,,,,,,,01/01/1964,,,,R0001318,,,,President of CNDD,,,,,,,,,"(UK Sanctions List Ref):GUC0003 (UK Statement of Reasons):Person identified as responsible for the violent repression and events in Guinea on 28 September 2009 or the aftermath of that violent repression and provided support for this through the use and threat of violence. As president, he had the loyalty of the CNDD, presidential guard and elite military forces whom he was responsible for. (Gender):Male",Individual,Primary name,,Guinea,24/12/2009,31/12/2020,31/12/2020,10956 +CAMARA,Moussa,Dadis,,,,,,,,29/12/1968,,,,R0001318,,,,President of CNDD,,,,,,,,,"(UK Sanctions List Ref):GUC0003 (UK Statement of Reasons):Person identified as responsible for the violent repression and events in Guinea on 28 September 2009 or the aftermath of that violent repression and provided support for this through the use and threat of violence. As president, he had the loyalty of the CNDD, presidential guard and elite military forces whom he was responsible for. (Gender):Male",Individual,Primary name,,Guinea,24/12/2009,31/12/2020,31/12/2020,10956 +CAMARA,Moussa,Tiegboro,,,,,Moussa Tiégboro Camara,,,01/01/1968,,,Guinea,710,,,,Commander of the Anti-Drug and Anti-Organized Crime unit,,,,,,,,,"(UK Sanctions List Ref):GUC0005 (UK Statement of Reasons):Person identified as responsible for the violent repression and events in Guinea on 28 September 2009 or the aftermath of that violent repression and providing support for, or promoting the violent repression including through the use or threat of violence during the violent repression or in its aftermath. (Gender):Male",Individual,Primary name,,Guinea,24/12/2009,31/12/2020,31/12/2020,10982 +CAMPBELL HOOKER,Lumberto,Ignacio,,,,,,,,03/02/1949,Raas,Nicaragua,Nicaragua,A00001109,,,,Magistrate in the Supreme Electoral Council of Nicaragua,,,,,,,,Nicaragua,"(UK Sanctions List Ref):NIC0012 (UK Statement of Reasons):Lumberto Ignacio Campbell Hooker is a senior official in the Government of Nicaragua. He was the former Vice President and subsequently interim President of the Supreme Electoral Council of Nicaragua, and remains a magistrate of that organisation. There are reasonable grounds to suspect that in these roles he has stifled free and fair elections during civic protests in 2018, shown partisanship towards the Ortega Regime whilst serving as a senior official in the Supreme Electoral Council, and played an active role in disbanding opposition parties. He is responsible for undermining democracy and the rule of law, repression of civil society and the democratic opposition and for human rights violations. (Gender):Male",Individual,Primary name,,Nicaragua,15/11/2021,15/11/2021,15/11/2021,14150 +CAPITANA SEAS LIMITED,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):LIB0014 (UK Statement of Reasons):Entity owned or controlled by Qadhafi family, utilised as a shell company for buying property in the UK.",Entity,Primary name,,Libya,14/04/2011,31/12/2020,31/12/2020,11768 +CAPRANOVA,Anastasiya,,,,,,,,,00/00/1964,,,Ukraine,,,,,Secretary of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0113 (UK Statement of Reasons):Former Secretary of the Sevastopol Electoral Commission (until May 2019). In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,31/12/2020,13670 +CAPRANOVA,Anastasiya,,,,,,,,,21/04/1964,,,Ukraine,,,,,Secretary of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0113 (UK Statement of Reasons):Former Secretary of the Sevastopol Electoral Commission (until May 2019). In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,31/12/2020,13670 +CAPRANOVA,Anastasiya,Nikolayevna,,,,,,,,00/00/1964,,,Ukraine,,,,,Secretary of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0113 (UK Statement of Reasons):Former Secretary of the Sevastopol Electoral Commission (until May 2019). In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,31/12/2020,13670 +CAPRANOVA,Anastasiya,Nikolayevna,,,,,,,,21/04/1964,,,Ukraine,,,,,Secretary of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0113 (UK Statement of Reasons):Former Secretary of the Sevastopol Electoral Commission (until May 2019). In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,31/12/2020,13670 +CARAMAN,Aleksandr,Akimovich,,,,,,,,26/07/1956,Slobozia district,Moldova,Ukraine,,,,,Former so called 'Deputy Prime Minster of 'Donetsk People's Republic',,,,,,,,,"(UK Sanctions List Ref):RUS0114 (UK Statement of Reasons):Aleksandr Akimovich KARAMAN is the former so-called ‘Deputy Prime Minister for Social Issues’ of the ‘Donetsk People’s Republic’. Associated with Vladimir Antyufeyev, who was responsible for the separatist ‘governmental’ activities of the so-called ‘Government of the Donetsk People’s Republic’. He has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Protégé of Russia’s Deputy Prime Minister Dmitry Rogozin. Former Head of the Administration of the Council of Ministers of the ‘Donetsk People’s Republic’. Until March 2017, so-called ‘Plenipotentiary representative of the President’ of the so-called ‘Pridnestrovian Moldavian Republic’ to the Russian Federation. (Gender):Male",Individual,Primary name variation,,Russia,12/09/2014,31/12/2020,16/09/2022,13098 +CARAMAN,Alexandru,,,,,,,,,26/07/1956,Slobozia district,Moldova,Ukraine,,,,,Former so called 'Deputy Prime Minster of 'Donetsk People's Republic',,,,,,,,,"(UK Sanctions List Ref):RUS0114 (UK Statement of Reasons):Aleksandr Akimovich KARAMAN is the former so-called ‘Deputy Prime Minister for Social Issues’ of the ‘Donetsk People’s Republic’. Associated with Vladimir Antyufeyev, who was responsible for the separatist ‘governmental’ activities of the so-called ‘Government of the Donetsk People’s Republic’. He has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Protégé of Russia’s Deputy Prime Minister Dmitry Rogozin. Former Head of the Administration of the Council of Ministers of the ‘Donetsk People’s Republic’. Until March 2017, so-called ‘Plenipotentiary representative of the President’ of the so-called ‘Pridnestrovian Moldavian Republic’ to the Russian Federation. (Gender):Male",Individual,Primary name variation,,Russia,12/09/2014,31/12/2020,16/09/2022,13098 +CARAMAN,Alexander,,,,,,,,,26/07/1956,Slobozia district,Moldova,Ukraine,,,,,Former so called 'Deputy Prime Minster of 'Donetsk People's Republic',,,,,,,,,"(UK Sanctions List Ref):RUS0114 (UK Statement of Reasons):Aleksandr Akimovich KARAMAN is the former so-called ‘Deputy Prime Minister for Social Issues’ of the ‘Donetsk People’s Republic’. Associated with Vladimir Antyufeyev, who was responsible for the separatist ‘governmental’ activities of the so-called ‘Government of the Donetsk People’s Republic’. He has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Protégé of Russia’s Deputy Prime Minister Dmitry Rogozin. Former Head of the Administration of the Council of Ministers of the ‘Donetsk People’s Republic’. Until March 2017, so-called ‘Plenipotentiary representative of the President’ of the so-called ‘Pridnestrovian Moldavian Republic’ to the Russian Federation. (Gender):Male",Individual,Primary name variation,,Russia,12/09/2014,31/12/2020,16/09/2022,13098 +CARE OF FIRST OIL JV CO LTD,,,,,,,,,,,,,,,,,,,Jongbaek 1-dong,,,,Rakrang-guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0184 (UN Ref):KPe.069 Registered owner of the DPRK tanker PAEK MA, which was involved in ship-to-ship transfer operations for oil in mid-January 2018.",Entity,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13640 +CASIMIRO,Didier,,,,,,Дидье КАЗИМИРО,Cyrillic,Russian,00/00/1966,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1553 (UK Statement of Reasons):Didier Casimiro was a member of the Management Board of Public Joint Stock Company Rosneft Oil Company [“Rosneft”], a Russian oil company. Rosneft is a Government of Russia-affiliated entity as the Government of Russia owns a minority interest in Rosneft via the state-owned company JSC Roseneftgaz. Casimiro has been involved in obtaining a benefit from or supporting the Government of Russia by working as a manager of a Government of Russia-affiliated entity. (Gender):Male",Individual,Primary name,,Russia,02/08/2022,02/08/2022,02/08/2022,15493 +CASTRO GONZALEZ,Sonia,,,,,,,,,29/09/1967,,,Nicaragua,A00001526,,0422909670000N,,(1) Former Minister of Health (2) Special Adviser to the President on health issues,,,,,,,,Nicaragua,"(UK Sanctions List Ref):NIC0005 (UK Statement of Reasons):As Minister of Health, Sonia Castro oversaw serious human rights violations. Under her direction, the Ministry of Health instructed public hospitals not to treat victims of the regime’s violent repression and dismissed medical staff who came to the aid of injured protesters from the public health system. (Gender):Female",Individual,Primary name,,Nicaragua,05/05/2020,31/12/2020,31/12/2020,13835 +CBS,,,,,,,,,,,,,,,,,,,P.O. Box: 2254,Altjreda al Maghrebeh square,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0285 Director/Management name is Duraid Durgham, Governor of the CBS (UK Statement of Reasons):The Central Bank of Syria provides financial support to the regime (Phone number):+963 11 998 5000",Entity,AKA,,Syria,28/02/2012,31/12/2020,14/02/2022,12503 +CBS,,,,,,,,,,,,,,,,,,,Sabah Bahrat Square,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0285 Director/Management name is Duraid Durgham, Governor of the CBS (UK Statement of Reasons):The Central Bank of Syria provides financial support to the regime (Phone number):+963 11 998 5000",Entity,AKA,,Syria,28/02/2012,31/12/2020,14/02/2022,12503 +CEBALLOS ICHASO,Remigio,,,,,,,,,01/05/1963,,Venezuela,Venezuela,,,V-6.557.495,,Head of the Strategic Command Operations of the Bolivarian National Armed Forces (CEOFANB),,,,,,,,Venezuela,"(UK Sanctions List Ref):GHR0070 (UK Statement of Reasons):Remigio Ceballos Ichaso was appointed as Head of the Strategic Command Operations of the Bolivarian National Armed Forces (CEOFANB) in June 2017. There is reliable evidence that the GNB has committed serious human rights violations during Ceballos’s period in command of CEOFANB including extrajudicial killings and incidences of people subjected to cruel, inhuman and degrading treatment or punishment and torture. In addition to human rights violations carried out by the GNB under the overall strategic command of CEOFANB, the CEOFANB was involved in directing multiple cases of extrajudicial executions, which amount to serious violations of the right to life. Ceballos bears command responsibility for the serious human rights violations carried out by CEOFANB under his command. (Gender):Male",Individual,Primary name,,Global Human Rights,10/12/2020,10/12/2020,14/12/2020,14009 +CELESTIN,Celestin,,,,,,,,,04/10/1960,Kananga,Congo (Democratic Republic),Congo (Democratic Republic),OB0637580,Valid from 20.5.2014 to 19.5.2019,,,(1) Former Kinshasa Police Commissioner (PNC) (2) now General of Schools and Training (PNC),Av Uvika 56,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0004 Schengen visa No 011518403, issued on 2.7.2016 (UK Statement of Reasons):There are reasonable grounds to conclude that KANYAMA was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Kinshasa Police Commissioner and therefore bore responsibility for the human rights violations committed by the PNC. As Kinshasa Police Commissioner (PNC), Celestin KANYAMA was responsible for the disproportionate use of force and violent repression in Kinshasa. In this capacity, Celestin KANYAMA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13435 +CELESTIN,Celestin,,,,,,Célestin,,,04/10/1960,Kananga,Congo (Democratic Republic),Congo (Democratic Republic),OB0637580,Valid from 20.5.2014 to 19.5.2019,,,(1) Former Kinshasa Police Commissioner (PNC) (2) now General of Schools and Training (PNC),Av Uvika 56,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0004 Schengen visa No 011518403, issued on 2.7.2016 (UK Statement of Reasons):There are reasonable grounds to conclude that KANYAMA was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Kinshasa Police Commissioner and therefore bore responsibility for the human rights violations committed by the PNC. As Kinshasa Police Commissioner (PNC), Celestin KANYAMA was responsible for the disproportionate use of force and violent repression in Kinshasa. In this capacity, Celestin KANYAMA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13435 +CELESTIN,Cishiku,Bilolo,,,,,,,,04/10/1960,Kananga,Congo (Democratic Republic),Congo (Democratic Republic),OB0637580,Valid from 20.5.2014 to 19.5.2019,,,(1) Former Kinshasa Police Commissioner (PNC) (2) now General of Schools and Training (PNC),Av Uvika 56,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0004 Schengen visa No 011518403, issued on 2.7.2016 (UK Statement of Reasons):There are reasonable grounds to conclude that KANYAMA was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Kinshasa Police Commissioner and therefore bore responsibility for the human rights violations committed by the PNC. As Kinshasa Police Commissioner (PNC), Celestin KANYAMA was responsible for the disproportionate use of force and violent repression in Kinshasa. In this capacity, Celestin KANYAMA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13435 +CELESTIN,Cishiku,Bilolo,,,,,Célestin,,,04/10/1960,Kananga,Congo (Democratic Republic),Congo (Democratic Republic),OB0637580,Valid from 20.5.2014 to 19.5.2019,,,(1) Former Kinshasa Police Commissioner (PNC) (2) now General of Schools and Training (PNC),Av Uvika 56,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0004 Schengen visa No 011518403, issued on 2.7.2016 (UK Statement of Reasons):There are reasonable grounds to conclude that KANYAMA was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Kinshasa Police Commissioner and therefore bore responsibility for the human rights violations committed by the PNC. As Kinshasa Police Commissioner (PNC), Celestin KANYAMA was responsible for the disproportionate use of force and violent repression in Kinshasa. In this capacity, Celestin KANYAMA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13435 +CELESTIN,Kanyama,Celestin,Cishiku,,,,,,,04/10/1960,Kananga,Congo (Democratic Republic),Congo (Democratic Republic),OB0637580,Valid from 20.5.2014 to 19.5.2019,,,(1) Former Kinshasa Police Commissioner (PNC) (2) now General of Schools and Training (PNC),Av Uvika 56,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0004 Schengen visa No 011518403, issued on 2.7.2016 (UK Statement of Reasons):There are reasonable grounds to conclude that KANYAMA was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Kinshasa Police Commissioner and therefore bore responsibility for the human rights violations committed by the PNC. As Kinshasa Police Commissioner (PNC), Celestin KANYAMA was responsible for the disproportionate use of force and violent repression in Kinshasa. In this capacity, Celestin KANYAMA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13435 +CELESTIN,Kanyama,Celestin,Cishiku,,,,Célestin,,,04/10/1960,Kananga,Congo (Democratic Republic),Congo (Democratic Republic),OB0637580,Valid from 20.5.2014 to 19.5.2019,,,(1) Former Kinshasa Police Commissioner (PNC) (2) now General of Schools and Training (PNC),Av Uvika 56,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0004 Schengen visa No 011518403, issued on 2.7.2016 (UK Statement of Reasons):There are reasonable grounds to conclude that KANYAMA was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Kinshasa Police Commissioner and therefore bore responsibility for the human rights violations committed by the PNC. As Kinshasa Police Commissioner (PNC), Celestin KANYAMA was responsible for the disproportionate use of force and violent repression in Kinshasa. In this capacity, Celestin KANYAMA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13435 +CELESTIN,Kanyama,Tshisiku,,,,,,,,04/10/1960,Kananga,Congo (Democratic Republic),Congo (Democratic Republic),OB0637580,Valid from 20.5.2014 to 19.5.2019,,,(1) Former Kinshasa Police Commissioner (PNC) (2) now General of Schools and Training (PNC),Av Uvika 56,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0004 Schengen visa No 011518403, issued on 2.7.2016 (UK Statement of Reasons):There are reasonable grounds to conclude that KANYAMA was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Kinshasa Police Commissioner and therefore bore responsibility for the human rights violations committed by the PNC. As Kinshasa Police Commissioner (PNC), Celestin KANYAMA was responsible for the disproportionate use of force and violent repression in Kinshasa. In this capacity, Celestin KANYAMA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13435 +CELESTIN,Kanyama,Tshisiku,,,,,Célestin,,,04/10/1960,Kananga,Congo (Democratic Republic),Congo (Democratic Republic),OB0637580,Valid from 20.5.2014 to 19.5.2019,,,(1) Former Kinshasa Police Commissioner (PNC) (2) now General of Schools and Training (PNC),Av Uvika 56,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0004 Schengen visa No 011518403, issued on 2.7.2016 (UK Statement of Reasons):There are reasonable grounds to conclude that KANYAMA was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Kinshasa Police Commissioner and therefore bore responsibility for the human rights violations committed by the PNC. As Kinshasa Police Commissioner (PNC), Celestin KANYAMA was responsible for the disproportionate use of force and violent repression in Kinshasa. In this capacity, Celestin KANYAMA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13435 +CELIKOVEC,Irina,Akexandrova,,,,,,,,02/11/1976,,,,,,,,Member of the Central Electoral Commision,,,,,,,,,"(UK Sanctions List Ref):BEL0044 (UK Statement of Reasons):Irina TSELIKAVETS is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13958 +CELIKOVEC,Irina,Alexandrovna,,,,,,,,02/11/1976,,,,,,,,Member of the Central Electoral Commision,,,,,,,,,"(UK Sanctions List Ref):BEL0044 (UK Statement of Reasons):Irina TSELIKAVETS is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13958 +CELIKOVEC,Irina,Aliaksandrauna,,,,,,,,02/11/1976,,,,,,,,Member of the Central Electoral Commision,,,,,,,,,"(UK Sanctions List Ref):BEL0044 (UK Statement of Reasons):Irina TSELIKAVETS is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13958 +CENTER FOR SCIENTIFIC STUDIES AND RESEARCH (SSRC),,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,Primary name variation,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +CENTER FOR SCIENTIFIC STUDIES AND RESEARCH (SSRC),,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,Primary name variation,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +CENTER FOR SCIENTIFIC STUDIES AND RESEARCH (SSRC),,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +CENTER FOR SCIENTIFIC STUDIES AND RESEARCH (SSRC),,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +CENTER FOR SCIENTIFIC STUDIES AND RESEARCH (SSRC),,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +CENTER FOR SCIENTIFIC STUDIES AND RESEARCH (SSRC),,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +CENTER FOR SCIENTIFIC STUDIES AND RESEARCH (SSRC),,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,Primary name variation,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +CENTER FOR SCIENTIFIC STUDIES AND RESEARCH (SSRC),,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,Primary name variation,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +CENTER FOR STUDY AND RESEARCH (CERS),,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +CENTER FOR STUDY AND RESEARCH (CERS),,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +CENTER FOR STUDY AND RESEARCH (CERS),,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +CENTER FOR STUDY AND RESEARCH (CERS),,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +CENTRAL BANK OF SYRIA,,,,,,,,,,,,,,,,,,,P.O. Box: 2254,Altjreda al Maghrebeh square,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0285 Director/Management name is Duraid Durgham, Governor of the CBS (UK Statement of Reasons):The Central Bank of Syria provides financial support to the regime (Phone number):+963 11 998 5000",Entity,Primary name,,Syria,28/02/2012,31/12/2020,14/02/2022,12503 +CENTRAL BANK OF SYRIA,,,,,,,,,,,,,,,,,,,Sabah Bahrat Square,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0285 Director/Management name is Duraid Durgham, Governor of the CBS (UK Statement of Reasons):The Central Bank of Syria provides financial support to the regime (Phone number):+963 11 998 5000",Entity,Primary name,,Syria,28/02/2012,31/12/2020,14/02/2022,12503 +CENTRAL COMMITTEE BUREAU 39,,,,,,,,,,,,,,,,,,,,Changwang Street,,,,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +CENTRAL COMMITTEE BUREAU 39,,,,,,,,,,,,,,,,,,,"Second KWP Government Building (Korean – Ch’o’ngsa, Urban Town (Korean-Dong)",,,,Chung Ward,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +CENTRAL COMMITTEE BUREAU 39,,,,,,,,,,,,,,,,,,,Chung-Guyok (Central District),Sosong Street,,,Kyongrim-Dong,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +CENTRAL MILITARY COMMISSION OF THE WORKERS' PARTY OF KOREA,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0127 (UN Ref):KPe.051 The Central Military Commission is responsible for the development and implementation of the Workers’ Party of Korea’s military policies, commands and controls the DPRK’s military, and directs the country’s military defense industries in coordination with the State Affairs Commission.",Entity,Primary name,,Democratic People's Republic of Korea,12/09/2017,11/09/2017,31/12/2020,13541 +CENTRAL RESEARCH INSTITUTE OF MACHINE BUILDING JSC,,,,,,,АО Центральный научно-исследовательский институт машиностроения,Cyrillic,Russian,,,,,,,,,,4 Ulitsa Pionerskaya,,,,,Korolev,141070,Russia,"(UK Sanctions List Ref):RUS1351 (UK Statement of Reasons):Central Research Institute of Machine Building JSC (TsNIIMash) is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because: it obtains a benefit from or supports the Government of Russia by carrying on business as a Government of Russia-affiliated entity. Central Research Institute of Machine Building JSC (TsNIIMash) is owned or controlled directly or indirectly by the Government of Russia, namely via the State Corporation Roscosmos. The Russian State, or Roscosmos, is currently the sole shareholder of The Central Research Institute of Machine Building JSC (TsNIIMash). (Phone number):(495) 513-59-51 (Website):https://www.tsniimash.ru/ (Email address):corp@tsniimash.ru (Parent company):Roscosmos",Entity,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15304 +CENTRAL SCIENTIFIC RESEARCH INSTITUTE OF CHEMISTRY AND MECHANICS,,,,,,,,,,,,,,,,,,,16a Nagatinskaya Street,,,,,Moscow,,Russia,"(UK Sanctions List Ref):CYB0022 (UK Statement of Reasons):The Central Scientific Research Institute of Chemistry and Mechanics (TsNIIKhM) was responsible for a cyber attack on a petro-chemical company in August 2017. The cyber attack gained remote access to the Safety Instrumented Systems connected to the Industrial Control System of a petrochemical refinery. This shut down the plant for over a week. There is evidence to suggest that the shutdown was inadvertent while TsNIIKhM were attempting to cause a highly dangerous physical consequence through disabling the safety systems, which could have included an explosion. These actions caused economic loss and prejudice to commercial interests and/or was intended to undermine the security and prosperity of a country other than the United Kingdom. (Type of entity):Government-owned technical research institution",Entity,Primary name,,Cyber,24/03/2022,24/03/2022,24/03/2022,15044 +CENTRE DE RECHERCHE DE KABOUN,,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +CENTRE DE RECHERCHE DE KABOUN,,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +CENTRE DE RECHERCHE DE KABOUN,,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +CENTRE DE RECHERCHE DE KABOUN,,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +CENTRE D'ETUDE ET DE RECHERCHE SCIENTIFIQUE (CERS),,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +CENTRE D'ETUDE ET DE RECHERCHE SCIENTIFIQUE (CERS),,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +CENTRE D'ETUDE ET DE RECHERCHE SCIENTIFIQUE (CERS),,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +CENTRE D'ETUDE ET DE RECHERCHE SCIENTIFIQUE (CERS),,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +CENTRE FOR INNOVATION AND TECHNOLOGY COOPERATION,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0124 (UK Statement of Reasons):Has undertaken procurement in support of Iran's nuclear and missile programmes (Phone number):(1) +98 21 44667322 (2) +98 21 44667323 (Website):(1) www.citc.ir (2) www.tco.ac.ir (3) www.tco.gov.ir (4) www.tco.ir (Email address):tco@tco.ac.ir (Type of entity):Government Ministry,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,08/03/2022,11221 +CENTRE FOR INNOVATION AND TECHNOLOGY COOPERATION,,,,,,,,,,,,,,,,,,,No 7 East Avesta Rd,Sheykh Bahaie Street,Sheykh Bahaie Sq,,,Tehran,1995859611,Iran,(UK Sanctions List Ref):INU0124 (UK Statement of Reasons):Has undertaken procurement in support of Iran's nuclear and missile programmes (Phone number):(1) +98 21 44667322 (2) +98 21 44667323 (Website):(1) www.citc.ir (2) www.tco.ac.ir (3) www.tco.gov.ir (4) www.tco.ir (Email address):tco@tco.ac.ir (Type of entity):Government Ministry,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,08/03/2022,11221 +CENTRE FOR TECHNOLOGICAL COMPETENCIES IN RADIOPHTONICS CHEAZ JCS,,,,,,,,,,,,,,,,,,,"5, pr. I. Yakovleva",,,,,Cheboksary,428020,Russia,"(UK Sanctions List Ref):RUS1435 (UK Statement of Reasons):Cheboksary Electrical Equipment Plant is a leading electrical company, which provides equipment to the energy and defence sectors. Cheboksary Electrical Equipment Plant therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in sectors of strategic significance to the Government of Russia, namely the defence and energy sectors. (Phone number):7 (835)2 222673 (Website):http://www.cheaz.ru (Email address):cheaz@cheaz.ru (Type of entity):Joint Stock Company (Subsidiaries):(1) CHEAZ Group (2) TsUP CHEAZ (3) ChEAZ-ELPRY (4) CHEAZ-Siberia (5) ERA Engineering (6) IZVA",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15370 +CERNYSEV,Aleh,,,,,,,,,,,,,,,,,"(1) Deputy Chairman, State Security Committee, Belarus (2) Deputy Chairman of Belarus's Presidium of the National Academy of Sciences",,,,,,,,,"(UK Sanctions List Ref):BEL0031 (UK Statement of Reasons):Alieg Charnyshou is a Deputy Chairman of the State Security Committee (KGB) of Belarus. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,10/05/2020,31/12/2020,18/03/2022,13961 +CEUX QUI SIGNENT AVEC LE SANG,,,,,,,,,,,,,,,,,,,,,,,,,,Mali,(UK Sanctions List Ref):AQD0006 (UN Ref):QDe.139 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and led by Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,16/06/2014,02/06/2014,31/12/2020,12983 +CH’O’L,Cho,,,,,,,,,10/05/1945,"Musan, North Hamgyo'ng Province",North Korea,,736410010,,,,Director of the Fifth Bureau of the Reconnaissance General Bureau,,,,,,,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0202 (UN Ref):KPi.040 Cho is believed to be in charge of overseas espionage operations and foreign intelligence collection for the Democratic People's Republic of Korea.,Individual,AKA,Good quality,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13471 +CHABANI,Slimane,,,,,,,,,25/06/1964,Oran,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0299 (UN Ref):QDi.323 A veteran member of the ‘Chechen Network’ (not listed) and other terrorist groups. He was convicted of his role and membership in the ‘Chechen Network’ in France in 2006. Joined Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137) in October 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13089 +CHABANI,Slimane,,,,,,,,,05/12/1965,Oran,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0299 (UN Ref):QDi.323 A veteran member of the ‘Chechen Network’ (not listed) and other terrorist groups. He was convicted of his role and membership in the ‘Chechen Network’ in France in 2006. Joined Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137) in October 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13089 +CHACHAJEE,,,,,,,,,,30/12/1960,Okara,Pakistan,Pakistan,,,61101-9618232-1,,,Barahkoh,P.O. DO,,,,Tehsil and District Islamabad,,Pakistan,(UK Sanctions List Ref):AQD0342 (UN Ref):QDi.264 Chief of operations of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543499. Pakistan (location as at May 2008),Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9216 +CHACHAJEE,,,,,,,,,,30/12/1960,Okara,Pakistan,Pakistan,,,61101-9618232-1,,,Chak No. 18/IL,Rinala Khurd,Tehsil Rinala Khurd,,,District Okara,,Pakistan,(UK Sanctions List Ref):AQD0342 (UN Ref):QDi.264 Chief of operations of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543499. Pakistan (location as at May 2008),Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9216 +CHADIAN,,,,,,,,,,00/00/1946,Baghdad,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0121 (UN Ref):IQi.060,Individual,AKA,Low quality,Iraq,22/04/2004,07/04/2004,31/12/2020,8258 +CHAE-IL,RI,,,,,,,,,00/00/1934,,,North Korea,,,,,"Vice Director of the Workers’ Party of Korea Propaganda and Agitation Department, which controls all DPRK’s media and is used by the government to control the public",,,,,,,,,(UK Sanctions List Ref):DPR0263 (UN Ref):KPi.051,Individual,AKA,Good quality,Democratic People's Republic of Korea,05/06/2017,02/06/2017,31/12/2020,13481 +CHAHADA,Rafeeq,,,,,,,,,00/00/1956,"Jablah, Latakia Province",,,,,,,Advisor to President Bashar al Assad for strategic questions and military intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0201 (UK Statement of Reasons):Former Head of Syrian Military Intelligence (SMI) Branch 293 (Internal Affairs) in Damascus. Directly involved in repression and violence against the civilian population in Damascus. Advisor to President Bashar Al-Assad for strategic questions and military intelligence. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12042 +CHAHADA,Rafiq,,,,,,,,,00/00/1956,"Jablah, Latakia Province",,,,,,,Advisor to President Bashar al Assad for strategic questions and military intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0201 (UK Statement of Reasons):Former Head of Syrian Military Intelligence (SMI) Branch 293 (Internal Affairs) in Damascus. Directly involved in repression and violence against the civilian population in Damascus. Advisor to President Bashar Al-Assad for strategic questions and military intelligence. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12042 +CHAHADE,Rafeeq,,,,,,,,,00/00/1956,"Jablah, Latakia Province",,,,,,,Advisor to President Bashar al Assad for strategic questions and military intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0201 (UK Statement of Reasons):Former Head of Syrian Military Intelligence (SMI) Branch 293 (Internal Affairs) in Damascus. Directly involved in repression and violence against the civilian population in Damascus. Advisor to President Bashar Al-Assad for strategic questions and military intelligence. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12042 +CHAHADE,Rafiq,,,,,,,,,00/00/1956,"Jablah, Latakia Province",,,,,,,Advisor to President Bashar al Assad for strategic questions and military intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0201 (UK Statement of Reasons):Former Head of Syrian Military Intelligence (SMI) Branch 293 (Internal Affairs) in Damascus. Directly involved in repression and violence against the civilian population in Damascus. Advisor to President Bashar Al-Assad for strategic questions and military intelligence. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12042 +CHAHADEH,Rafeeq,,,,,,,,,00/00/1956,"Jablah, Latakia Province",,,,,,,Advisor to President Bashar al Assad for strategic questions and military intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0201 (UK Statement of Reasons):Former Head of Syrian Military Intelligence (SMI) Branch 293 (Internal Affairs) in Damascus. Directly involved in repression and violence against the civilian population in Damascus. Advisor to President Bashar Al-Assad for strategic questions and military intelligence. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12042 +CHAHADEH,Rafiq,,,,,,,,,00/00/1956,"Jablah, Latakia Province",,,,,,,Advisor to President Bashar al Assad for strategic questions and military intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0201 (UK Statement of Reasons):Former Head of Syrian Military Intelligence (SMI) Branch 293 (Internal Affairs) in Damascus. Directly involved in repression and violence against the civilian population in Damascus. Advisor to President Bashar Al-Assad for strategic questions and military intelligence. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12042 +CHA-HYO'NG,Ku,,,,,,,,,08/09/1957,,,North Korea,,,,,Ku Ja Hyong is a Foreign Trade Bank chief representative in Libya,,,,,,,,Libya,(UK Sanctions List Ref):DPR0245 (UN Ref):KPi.070 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13565 +CHAIKA,Yury,Yakovlevich,,,,,ЧАЙКА Юрий Яковлевич,Cyrillic,Russian,21/05/1951,"Nikolayevsk-on Amur, Khabarovsk Territory",Russia,,,,,,(1) Presidential Plenipotentiary Envoy to North Caucasus Federal District (2) Member of the Security Council of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS0823 (UK Statement of Reasons):Yuri Yakovlevich CHAIKA, hereafter CHAIKA, is a member of Russia’s Security Council and Presidential Plenipotentiary Envoy to the North Caucasus Federal District. As a Member of the Security Council, CHAIKA is or has been responsible for, engaged in, provided support for or promoted policies or actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14774 +CHAIKO,Alexander,Yuryevich,,,,Lieutenant General,Александр Юрьевич Чайко,,,27/07/1971,Moscow Region,Russia,Russia,,,,,Head of Armed Forces Group in Syria,,,,,,,,Russia,(UK Sanctions List Ref):SYR0382 (UK Statement of Reasons):Alexander Yuryevich Chaiko was the Head of the Russian forces in Syria from September 2019 until at least September 2020. Through this role he has been involved in repressing the civilian population in Syria and supporting or benefiting from the Syrian regime. (Gender):Male,Individual,Primary name,,Syria,29/06/2022,29/06/2022,29/06/2022,15430 +CHAIRMAN,,,,,,,,,,06/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +CHAIRMAN,,,,,,,,,,02/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +CHALICHE,Dhu,al-Himma,,,,,,,,00/00/1941,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +CHALICHE,Dhu,al-Himma,,,,,,,,00/00/1956,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +CHALICHE,Dhu,al-Himma,,,,,,,,00/00/1951,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +CHALICHE,Riyad,,,,,,,,,,,,,,,,,Former Director of Military Housing Establishment,,,,,,,,,(UK Sanctions List Ref):SYR0208 (UK Statement of Reasons):Former Director of Military Housing Establishment; provides funding to the regime; first cousin of President Bashar Al-Assad (Gender):Male,Individual,Primary name,,Syria,24/06/2011,31/12/2020,13/05/2022,12014 +CHALICHE,Zoulhima,,,,,,,,,00/00/1941,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +CHALICHE,Zoulhima,,,,,,,,,00/00/1956,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +CHALICHE,Zoulhima,,,,,,,,,00/00/1951,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +CHALICHE,Zu,al-Himma,,,,,,,,00/00/1941,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +CHALICHE,Zu,al-Himma,,,,,,,,00/00/1956,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +CHALICHE,Zu,al-Himma,,,,,,,,00/00/1951,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +CHALIY,Aleksei,Mikhailovich,,,,,Алексей Михайлович ЧАЛЫЙ,,Russian,13/06/1961,(1) Moscow (2) Sevastopol,(1) Russia (2) Ukraine,Russia,,,,,"(1) Acting ""Governor"" of Sevastopol. (1 to 14 April 2014) (2) Chair of the Legislative Assembly of Sevastopol (3) Elected ""People's Mayor of Sevastopol"" on 23 February 2014",,,,,,,,Russia,(UK Sanctions List Ref):RUS0087 Deputy Chairperson of the Duma Committee on ethnic affairs. (UK Statement of Reasons):Chaliy became “People’s Mayor of Sevastopol” by popular acclamation 23 February 2014 and accepted this “vote”. He actively campaigned for Sevastopol to become a separate entity of the Russian Federation following a referendum on 16 March 2014. He was one of the co-signatories of the “treaty on Crimea’s accession to the Russian Federation” of 18 March 2014. He was acting “Governor” of Sevastopol from 1 to 14 April 2014 and is a former “elected” Chairman of the “Legislative Assembly” of the City of Sevastopol (until September 2019). Remains active in supporting separatist actions or policies. For his involvement in the annexation process he has been awarded with the Russian State order “For Merit to the Fatherland” – first degree. (Gender):Male,Individual,Primary name,,Russia,18/03/2014,31/12/2020,16/09/2022,12926 +CHALIY,Oleksiy,Mykhaylovych,,,,,Олексій Михайлович ЧАЛИЙ,,Ukrainian,13/06/1961,(1) Moscow (2) Sevastopol,(1) Russia (2) Ukraine,Russia,,,,,"(1) Acting ""Governor"" of Sevastopol. (1 to 14 April 2014) (2) Chair of the Legislative Assembly of Sevastopol (3) Elected ""People's Mayor of Sevastopol"" on 23 February 2014",,,,,,,,Russia,(UK Sanctions List Ref):RUS0087 Deputy Chairperson of the Duma Committee on ethnic affairs. (UK Statement of Reasons):Chaliy became “People’s Mayor of Sevastopol” by popular acclamation 23 February 2014 and accepted this “vote”. He actively campaigned for Sevastopol to become a separate entity of the Russian Federation following a referendum on 16 March 2014. He was one of the co-signatories of the “treaty on Crimea’s accession to the Russian Federation” of 18 March 2014. He was acting “Governor” of Sevastopol from 1 to 14 April 2014 and is a former “elected” Chairman of the “Legislative Assembly” of the City of Sevastopol (until September 2019). Remains active in supporting separatist actions or policies. For his involvement in the annexation process he has been awarded with the Russian State order “For Merit to the Fatherland” – first degree. (Gender):Male,Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12926 +CHALYY,Aleksei,Mikhailovich,,,,,,,,13/06/1961,(1) Moscow (2) Sevastopol,(1) Russia (2) Ukraine,Russia,,,,,"(1) Acting ""Governor"" of Sevastopol. (1 to 14 April 2014) (2) Chair of the Legislative Assembly of Sevastopol (3) Elected ""People's Mayor of Sevastopol"" on 23 February 2014",,,,,,,,Russia,(UK Sanctions List Ref):RUS0087 Deputy Chairperson of the Duma Committee on ethnic affairs. (UK Statement of Reasons):Chaliy became “People’s Mayor of Sevastopol” by popular acclamation 23 February 2014 and accepted this “vote”. He actively campaigned for Sevastopol to become a separate entity of the Russian Federation following a referendum on 16 March 2014. He was one of the co-signatories of the “treaty on Crimea’s accession to the Russian Federation” of 18 March 2014. He was acting “Governor” of Sevastopol from 1 to 14 April 2014 and is a former “elected” Chairman of the “Legislative Assembly” of the City of Sevastopol (until September 2019). Remains active in supporting separatist actions or policies. For his involvement in the annexation process he has been awarded with the Russian State order “For Merit to the Fatherland” – first degree. (Gender):Male,Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12926 +CHALYY,Oleksiy,Mykhaylovych,,,,,,,,13/06/1961,(1) Moscow (2) Sevastopol,(1) Russia (2) Ukraine,Russia,,,,,"(1) Acting ""Governor"" of Sevastopol. (1 to 14 April 2014) (2) Chair of the Legislative Assembly of Sevastopol (3) Elected ""People's Mayor of Sevastopol"" on 23 February 2014",,,,,,,,Russia,(UK Sanctions List Ref):RUS0087 Deputy Chairperson of the Duma Committee on ethnic affairs. (UK Statement of Reasons):Chaliy became “People’s Mayor of Sevastopol” by popular acclamation 23 February 2014 and accepted this “vote”. He actively campaigned for Sevastopol to become a separate entity of the Russian Federation following a referendum on 16 March 2014. He was one of the co-signatories of the “treaty on Crimea’s accession to the Russian Federation” of 18 March 2014. He was acting “Governor” of Sevastopol from 1 to 14 April 2014 and is a former “elected” Chairman of the “Legislative Assembly” of the City of Sevastopol (until September 2019). Remains active in supporting separatist actions or policies. For his involvement in the annexation process he has been awarded with the Russian State order “For Merit to the Fatherland” – first degree. (Gender):Male,Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12926 +CHAM,,,,,,,,,,,,,,,,,,,P.O. Box 9525,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,,,Syria,"(UK Sanctions List Ref):SYR0311 Transport (UK Statement of Reasons):Economic entity financing the regime. Associated with Cham Holding and Rami Makhlouf. A subsidiary company of Cham Holding, which is controlled by Rami Makhlouf; largest holding company in Syria, benefiting from and supporting the regime. (Phone number):+963 11 99 62 (Type of entity):Private (Subsidiaries):Cham Holding (parent), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525 (Parent company):Parent and branches",Entity,AKA,,Syria,05/09/2011,31/12/2020,14/02/2022,12062 +CHAM,,,,,,,,,,,,,,,,,,,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,P.O. Box 9525,,,,"(UK Sanctions List Ref):SYR0288 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime (Phone number):+963 11 9962 (Type of entity):Investment. Private (Subsidiaries):Cham Holding (parent), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525 (Parent company):Cham Holding",Entity,AKA,,Syria,05/09/2011,31/12/2020,31/12/2020,12063 +CHAM,,,,,,,,,,,,,,,,,,,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,P.O. Box 9525,,,,"(UK Sanctions List Ref):SYR0287 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime (Phone number):+963 11 668 14000. +963 11 673 1044. +963 11 9962 (Website):www.chamholding.sy (Email address):info@chamholding.sy (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525",Entity,AKA,,Syria,26/09/2011,31/12/2020,31/12/2020,12152 +CHAM CO.,,,,,,,,,,,,,,,,,,,P.O. Box 35202,Industrial Zone,Al-Qadam Road,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +CHAM CO.,,,,,,,,,,,,,,,,,,,P.O. Box: 1149,Rural Damascus: Adra,Industrial Zone,next to Teshreen Mill,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +CHAM HOLDING,,,,,,,,,,,,,,,,,,,P.O. Box 9525,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,,,Syria,"(UK Sanctions List Ref):SYR0311 Transport (UK Statement of Reasons):Economic entity financing the regime. Associated with Cham Holding and Rami Makhlouf. A subsidiary company of Cham Holding, which is controlled by Rami Makhlouf; largest holding company in Syria, benefiting from and supporting the regime. (Phone number):+963 11 99 62 (Type of entity):Private (Subsidiaries):Cham Holding (parent), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525 (Parent company):Parent and branches",Entity,AKA,,Syria,05/09/2011,31/12/2020,14/02/2022,12062 +CHAM HOLDING,,,,,,,,,,,,,,,,,,,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,P.O. Box 9525,,,,"(UK Sanctions List Ref):SYR0288 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime (Phone number):+963 11 9962 (Type of entity):Investment. Private (Subsidiaries):Cham Holding (parent), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525 (Parent company):Cham Holding",Entity,AKA,,Syria,05/09/2011,31/12/2020,31/12/2020,12063 +CHAM HOLDING,,,,,,,,,,,,,,,,,,,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,P.O. Box 9525,,,,"(UK Sanctions List Ref):SYR0287 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime (Phone number):+963 11 668 14000. +963 11 673 1044. +963 11 9962 (Website):www.chamholding.sy (Email address):info@chamholding.sy (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525",Entity,Primary name,,Syria,26/09/2011,31/12/2020,31/12/2020,12152 +CHAM INVESTMENT GROUP,,,,,,,,,,,,,,,,,,,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,P.O. Box 9525,,,,"(UK Sanctions List Ref):SYR0288 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime (Phone number):+963 11 9962 (Type of entity):Investment. Private (Subsidiaries):Cham Holding (parent), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525 (Parent company):Cham Holding",Entity,Primary name,,Syria,05/09/2011,31/12/2020,31/12/2020,12063 +CHAM INVESTMENT GROUP,,,,,,,,,,,,,,,,,,,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,P.O. Box 9525,,,,"(UK Sanctions List Ref):SYR0287 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime (Phone number):+963 11 668 14000. +963 11 673 1044. +963 11 9962 (Website):www.chamholding.sy (Email address):info@chamholding.sy (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525",Entity,AKA,,Syria,26/09/2011,31/12/2020,31/12/2020,12152 +CHAM PRESS TV,,,,,,,,,,,,,,,,,,,Al Qudsi building 2nd Floor Baramkeh,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0289 Media Outlet (UK Statement of Reasons):TV Channel Cham Press TV participates in campaigns to spread disinformation including relating to regime atrocities, and incite violence against demonstrators. (Phone number):+963 11 2260805 (Website):www.champress.net (Email address):mail@champress.com",Entity,Primary name,,Syria,02/12/2011,31/12/2020,13/05/2022,12424 +CHAN,Marial,,,,,,,,,01/01/1960,"Yirol, Lakes State",South Sudan,South Sudan,R00005943,South Sudan,,,"(1) Major General in the Sudan People's Liberation Army (2) Commander, of the South Sudanese Presidential Guard Unit",,,,,,,,,"(UK Sanctions List Ref):SSU0005 (UN Ref):SSi.005 His Presidential Guard led the slaughter of Nuer civilians in and around Juba, many who were buried in mass graves. One such grave was purported to contain 200-300 civilians. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/72684667",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13266 +CHANG AN SHIPPING & TECHNOLOGY,,,,,,,長安海連技術有限公司,,,,,,,,,,,,Room 2105,DL1849,Trend Centre,29-31 Cheung Lee Street,Chai Wan,Hong Kong,,China,"(UK Sanctions List Ref):DPR0128 (UN Ref):KPe.055 Registered owner, ship manager, and commercial manager of Panama-flagged vessel HUA FU, a cargo ship that loaded DPRK coal at Najin, DPRK on 24 September 2017.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13626 +CHANG AN SHIPPING AND TECHNOLOGY,,,,,,,,,,,,,,,,,,,Room 2105,DL1849,Trend Centre,29-31 Cheung Lee Street,Chai Wan,Hong Kong,,China,"(UK Sanctions List Ref):DPR0128 (UN Ref):KPe.055 Registered owner, ship manager, and commercial manager of Panama-flagged vessel HUA FU, a cargo ship that loaded DPRK coal at Najin, DPRK on 24 September 2017.",Entity,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13626 +CHANGGWANG CREDIT BANK,,,,,,,,,,,,,,,,,,,Saemul 1-Dong,,,,Pyongchon District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0195 (UN Ref):KPe.003 Main DPRK financial entity for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons.",Entity,AKA,,Democratic People's Republic of Korea,27/04/2009,24/04/2009,31/12/2020,10894 +CHANGGWANG SINYONG CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0157 (UN Ref):KPe.001 Primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons.,Entity,AKA,,Democratic People's Republic of Korea,27/04/2009,24/04/2009,31/12/2020,10892 +CHANG-HO,Pak,,,,,,,,,18/06/1964,Kaesong,North Korea,North Korea,,,381420754,Date of Issue 7 December 2011. Date of Expiration 7 December 2016,Senior official and head of the satellite control center of Korean Committee for Space Technology,,,,,,,,,(UK Sanctions List Ref):DPR0250 (UN Ref):KPi.006 Senior official and head of the satellite control center of Korean Committee for Space Technology. (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12843 +CH'ANG-HO,Paek,,,,,,,,,18/06/1964,Kaesong,North Korea,North Korea,,,381420754,Date of Issue 7 December 2011. Date of Expiration 7 December 2016,Senior official and head of the satellite control center of Korean Committee for Space Technology,,,,,,,,,(UK Sanctions List Ref):DPR0250 (UN Ref):KPi.006 Senior official and head of the satellite control center of Korean Committee for Space Technology. (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12843 +CHANG-HO,PAEK,,,,,,,,,18/06/1964,Kaesong,North Korea,North Korea,,,381420754,Date of Issue 7 December 2011. Date of Expiration 7 December 2016,Senior official and head of the satellite control center of Korean Committee for Space Technology,,,,,,,,,(UK Sanctions List Ref):DPR0250 (UN Ref):KPi.006 Senior official and head of the satellite control center of Korean Committee for Space Technology. (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12843 +CHAOUI,George,,,,,,,,,,,,,,,,,Member of Syrian electronic army (territorial army intelligence service).,,,,,,,,,(UK Sanctions List Ref):SYR0049 (UK Statement of Reasons):Member of Syrian electronic army. Involved in the violent crackdown and call for violence against the civilian population across Syria. Associated with members of Syrian security and intelligence services. (Gender):Male,Individual,Primary name,,Syria,15/11/2011,31/12/2020,13/05/2022,12216 +CHAPLIN,Nikita,Yurievich,,,,,"Чаплин, Никита Юрьевич",,,28/07/1982,"Ramenskoye, Moscow Oblast,",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0523 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14468 +CHARIF,Amar,,,,,,,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +CHARIF,Ammar,,,,,,,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +CHARIF,Ammar,Medhat,,,,,,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +CHARNYSHOU,Aleh,Anatolievich,,,,,"ЧАРНЫШОЎ, Алег Анатольевiч",,,,,,,,,,,"(1) Deputy Chairman, State Security Committee, Belarus (2) Deputy Chairman of Belarus's Presidium of the National Academy of Sciences",,,,,,,,,"(UK Sanctions List Ref):BEL0031 (UK Statement of Reasons):Alieg Charnyshou is a Deputy Chairman of the State Security Committee (KGB) of Belarus. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,10/05/2020,31/12/2020,18/03/2022,13961 +CHARNYSHOU,Alieg,Anatolevich,,,,,"ЧЕРНЫШЁВ, Олег Анатольевич",,,,,,,,,,,"(1) Deputy Chairman, State Security Committee, Belarus (2) Deputy Chairman of Belarus's Presidium of the National Academy of Sciences",,,,,,,,,"(UK Sanctions List Ref):BEL0031 (UK Statement of Reasons):Alieg Charnyshou is a Deputy Chairman of the State Security Committee (KGB) of Belarus. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Belarus,10/05/2020,31/12/2020,18/03/2022,13961 +CHARNYSHOU,Oleg,Anatolievich,,,,,,,,,,,,,,,,"(1) Deputy Chairman, State Security Committee, Belarus (2) Deputy Chairman of Belarus's Presidium of the National Academy of Sciences",,,,,,,,,"(UK Sanctions List Ref):BEL0031 (UK Statement of Reasons):Alieg Charnyshou is a Deputy Chairman of the State Security Committee (KGB) of Belarus. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,10/05/2020,31/12/2020,18/03/2022,13961 +CHATAEV,AKHMED,RAJAPOVICH,,,,,Ахмед Ражапович Чатаев,,,04/07/1980,"Vedeno Village, Vedenskiy District, Republic of Chechnya",Russia,Russia,9600133195,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0127 (UN Ref):QDi.365 As at Aug. 2015, one of the leaders of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), commanding directly 130 militants. Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899829. Address country Syria, located in as at August 2015",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13300 +CHATAEV,AKHMED,RAJAPOVICH,,,,,Ахмед Ражапович Чатаев,,,04/07/1980,"Vedeno Village, Vedenskiy District, Republic of Chechnya",Russia,Russia,9600133195,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0127 (UN Ref):QDi.365 As at Aug. 2015, one of the leaders of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), commanding directly 130 militants. Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899829. Address country Syria, located in as at August 2015",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13300 +CHAUDARY,Aamir,Ali,,,,,,,,03/08/1986,,,Pakistan,BN 4196361,Pakistani,33202-7126636-9,Pakistani national identity card,,,,,,,,,,(UK Sanctions List Ref):AQD0087 (UN Ref):QDi.312 Electronics and explosives expert for Tehrik-e Taliban Pakistan (TTP) (QDe.132). Involved in attack planning for TTP. Provided financial and logistical support for TTP and participated in TTP-sponsored militant training. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741575,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/10/2012,18/10/2012,31/12/2020,12809 +CHAUDHRY,Zafar,Iqbal,,,,,,,,04/10/1953,,,Pakistan,DG5149481,"Pakistan. Issued 22.8.2006, expired on 21.8.2011. Passport booklet number A2815665.",(1) 29553654234 (2) 35202-4135948-7,,,Masjid al-Qadesia,4 Lake Road,,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0339 (UN Ref):QDi.308 Senior leader and co-founder of Lashkar-e-Tayyiba (QDe.118) (LeT) who has held various senior leader positions in LeT and its front organization, Jamaat-ud-Dawa (JUD) (listed as an alias of LeT). As of 2010, in charge of LeT/JUD finance department, director of its education department and president of its medical wing. Other title: Professor. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741596",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,11/02/2022,12631 +CHAUDHRY,AAMIR,ALI,,,,,عبد العالي ابو ذر,,,03/08/1986,,,Pakistan,BN 4196361,Pakistani,33202-7126636-9,Pakistani national identity card,,,,,,,,,,(UK Sanctions List Ref):AQD0087 (UN Ref):QDi.312 Electronics and explosives expert for Tehrik-e Taliban Pakistan (TTP) (QDe.132). Involved in attack planning for TTP. Provided financial and logistical support for TTP and participated in TTP-sponsored militant training. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741575,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,30/10/2012,18/10/2012,31/12/2020,12809 +CHAUDRY,Amir,Ali,,,,,,,,03/08/1986,,,Pakistan,BN 4196361,Pakistani,33202-7126636-9,Pakistani national identity card,,,,,,,,,,(UK Sanctions List Ref):AQD0087 (UN Ref):QDi.312 Electronics and explosives expert for Tehrik-e Taliban Pakistan (TTP) (QDe.132). Involved in attack planning for TTP. Provided financial and logistical support for TTP and participated in TTP-sponsored militant training. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741575,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/10/2012,18/10/2012,31/12/2020,12809 +CHAUSOVA,Yana,Sergeevna,,,,,ЧАУСОВА Яна Сергеевна,Cyrillic,Russian,22/09/1980,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1151 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15103 +CHAY,Kyaw,,,,,Corporal,,,,,,,Myanmar,,,,,A Corporal in the Border Guard Police (BGP),,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0012 (UK Statement of Reasons):Corporal Kyaw Chay is a member of the Border Guard Police (BGP) and was present in the BGP base in Zay Di Pyin in Rakhine, during the most intense months of the Rohingya ‘clearance operations’, which commenced on 25 August 2017 and were at their most intense during the following two months. During this time Corporal Kyaw Chay directly participated in serious human rights violations. He is personally responsible for serious human rights violations committed against the Rohingya in Rakhine State, including physical abuse, torture and sexual violence against and detention of Rohingya people. (Gender):Male",Individual,Primary name,,Myanmar,24/12/2018,29/04/2021,11/11/2022,13738 +CHAYKO,Alexander,Yuryevich,,,,,,,,27/07/1971,Moscow Region,Russia,Russia,,,,,Head of Armed Forces Group in Syria,,,,,,,,Russia,(UK Sanctions List Ref):SYR0382 (UK Statement of Reasons):Alexander Yuryevich Chaiko was the Head of the Russian forces in Syria from September 2019 until at least September 2020. Through this role he has been involved in repressing the civilian population in Syria and supporting or benefiting from the Syrian regime. (Gender):Male,Individual,Primary name variation,,Syria,29/06/2022,29/06/2022,29/06/2022,15430 +CHAYON KWAHAK-WON,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0189 (UN Ref):KPe.018 The Second Academy of Natural Sciences is a national-level organization responsible for research and development of the DPRK’s advanced weapons systems, including missiles and probably nuclear weapons. The Second Academy of Natural Sciences uses a number of subordinate organizations to obtain technology, equipment, and information from overseas, including Tangun Trading Corporation, for use in the DPRK’s missile and probably nuclear weapons programs. Tangun Trading Corporation was designated by the Committee in July 2009 and is primarily responsible for the procurement of commodities and technologies to support DPRK’s defense research and development programs, including, but not limited to, weapons of mass destruction and delivery system programs and procurement, including materials that are controlled or prohibited under relevant multilateral control regimes. (Subsidiaries):Tangun Trading Corporation",Entity,AKA,,Democratic People's Republic of Korea,23/04/2013,07/03/2013,31/12/2020,12871 +CHE 2 CHAYON KWAHAKWON,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0189 (UN Ref):KPe.018 The Second Academy of Natural Sciences is a national-level organization responsible for research and development of the DPRK’s advanced weapons systems, including missiles and probably nuclear weapons. The Second Academy of Natural Sciences uses a number of subordinate organizations to obtain technology, equipment, and information from overseas, including Tangun Trading Corporation, for use in the DPRK’s missile and probably nuclear weapons programs. Tangun Trading Corporation was designated by the Committee in July 2009 and is primarily responsible for the procurement of commodities and technologies to support DPRK’s defense research and development programs, including, but not limited to, weapons of mass destruction and delivery system programs and procurement, including materials that are controlled or prohibited under relevant multilateral control regimes. (Subsidiaries):Tangun Trading Corporation",Entity,AKA,,Democratic People's Republic of Korea,23/04/2013,07/03/2013,31/12/2020,12871 +CHEBEL,Luna,,,,,,,,,01/09/1975,Suweida,Syria,Syria,,,,,Media Adviser to President Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0377 (UK Statement of Reasons):Adviser to President Assad and a prominent member of his inner circle. As Media Adviser to the President she supports the Syrian regime, which relies on disinformation and a lack of media freedom to repress the civilian population. She is also associated with the Syrian regime through her role as an adviser. (Gender):Female",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,14/02/2022,14070 +CHEBIL,Luna,,,,,,,,,01/09/1975,Suweida,Syria,Syria,,,,,Media Adviser to President Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0377 (UK Statement of Reasons):Adviser to President Assad and a prominent member of his inner circle. As Media Adviser to the President she supports the Syrian regime, which relies on disinformation and a lack of media freedom to repress the civilian population. She is also associated with the Syrian regime through her role as an adviser. (Gender):Female",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,14/02/2022,14070 +CHEBOKSARY ELECTRIC APPARATUS PLANT,,,,,,,Чебоксарский электроаппаратный завод,Cyrillic,Russian,,,,,,,,,,"5, pr. I. Yakovleva",,,,,Cheboksary,428020,Russia,"(UK Sanctions List Ref):RUS1435 (UK Statement of Reasons):Cheboksary Electrical Equipment Plant is a leading electrical company, which provides equipment to the energy and defence sectors. Cheboksary Electrical Equipment Plant therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in sectors of strategic significance to the Government of Russia, namely the defence and energy sectors. (Phone number):7 (835)2 222673 (Website):http://www.cheaz.ru (Email address):cheaz@cheaz.ru (Type of entity):Joint Stock Company (Subsidiaries):(1) CHEAZ Group (2) TsUP CHEAZ (3) ChEAZ-ELPRY (4) CHEAZ-Siberia (5) ERA Engineering (6) IZVA",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15370 +CHEBOKSARY ELECTRICAL EQUIPMENT PLANT,,,,,,,Чебоксарский завод электрооборудования,Cyrillic,Russian,,,,,,,,,,"5, pr. I. Yakovleva",,,,,Cheboksary,428020,Russia,"(UK Sanctions List Ref):RUS1435 (UK Statement of Reasons):Cheboksary Electrical Equipment Plant is a leading electrical company, which provides equipment to the energy and defence sectors. Cheboksary Electrical Equipment Plant therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in sectors of strategic significance to the Government of Russia, namely the defence and energy sectors. (Phone number):7 (835)2 222673 (Website):http://www.cheaz.ru (Email address):cheaz@cheaz.ru (Type of entity):Joint Stock Company (Subsidiaries):(1) CHEAZ Group (2) TsUP CHEAZ (3) ChEAZ-ELPRY (4) CHEAZ-Siberia (5) ERA Engineering (6) IZVA",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15370 +CHECHEN,Omar,the,,,,,,,,11/01/1986,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +CHECHEN,Omar,the,,,,,,,,00/00/1982,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +CHECHEN,Omer,the,,,,,,,,11/01/1986,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +CHECHEN,Omer,the,,,,,,,,00/00/1982,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +CHECHEN,Umar,the,,,,,,,,11/01/1986,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +CHECHEN,Umar,the,,,,,,,,00/00/1982,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +CHEHABI,Fares,,,,,,فارس الشهابي,Arabic,Arabic,07/05/1972,,,Syria,,,,,(1) President of Aleppo Chamber of Industry (2) Vice-chairman of Cham Holding (3) Chairman of the Federation of Chambers of Industry. Appointed in 16 December 2018,,,,,,,,,"(UK Sanctions List Ref):SYR0041 Son of Ahmad Chehabi (UK Statement of Reasons):President of Aleppo Chamber of Industry, Chairman of the Federation of Chambers of Industry since 16.12.2018. Vice-chairman of Cham Holding. Provides economic support to the Syrian regime. Former Member of the Syrian Parliament (2016-2020). (Gender):Male",Individual,Primary name,,Syria,05/09/2011,31/12/2020,16/06/2022,12058 +CHEHABI,Fares,,,,,,فارس الشهابي,Arabic,Arabic,07/09/1972,,,Syria,,,,,(1) President of Aleppo Chamber of Industry (2) Vice-chairman of Cham Holding (3) Chairman of the Federation of Chambers of Industry. Appointed in 16 December 2018,,,,,,,,,"(UK Sanctions List Ref):SYR0041 Son of Ahmad Chehabi (UK Statement of Reasons):President of Aleppo Chamber of Industry, Chairman of the Federation of Chambers of Industry since 16.12.2018. Vice-chairman of Cham Holding. Provides economic support to the Syrian regime. Former Member of the Syrian Parliament (2016-2020). (Gender):Male",Individual,Primary name,,Syria,05/09/2011,31/12/2020,16/06/2022,12058 +CHEIKA,Kamal,,,,,,,,,00/00/1961,Damascus,,,,,,,Former Minster of Water Resources.,,,,,,,,,"(UK Sanctions List Ref):SYR0118 (UK Statement of Reasons):Former Minister of Water Resources in power after May 2011 (appointed 27.8.2014 under decree 273 - 2014). As a former Government Minister, shares responsibility for the Syrian regime’s violent repression of the civilian population. (Gender):Male",Individual,Primary name,,Syria,22/10/2014,31/12/2020,08/01/2021,13152 +CHEKAREVA,Natalia,Dmitriyevna,,,,,,,,13/05/1969,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1235 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15187 +CHEKAREVA,Natalya,Dmitrievna,,,,,ЧЕКАРЕВА Наталья Дмитриевна,Cyrillic,Russian,13/05/1969,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1235 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15187 +CHEKKOURI,YASSINE,,,,,,ياسين شكوري,,,06/10/1966,Safi,Morocco,Morocco,F46947,,H-135467,,,7th Street,No 7,,,,Hay Anas Safi,,Morocco,(UK Sanctions List Ref):AQD0336 (UN Ref):QDi.070 Mother’s name is Feue Hlima Bent Barka and father’s name is Abderrahmane Mohammed Ben Azzouz. Deported from Italy to Morocco on 26 Feb. 2004. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/09/2002,03/09/2002,31/12/2020,7105 +CHELTER,Dima,,,,,,,,,10/08/1967,Moscow,Russia,Russia,,,,,Owner of Universal Savings Bank,,,,,,,,,"(UK Sanctions List Ref):GAC0012 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. KLYUEV participated in the fraud through his involvement, in particular in planning the fraud, and through his ownership of Universal Savings Bank. He was responsible for, and his actions facilitated or provided support for, the serious corruption. He also transferred or converted, or facilitated the transfer or conversion of, the proceeds of the serious corruption. (Gender):Male",Individual,AKA,,Global Anti-Corruption,26/04/2021,26/04/2021,20/05/2022,14091 +CHEMERIS,Roza,Basirovna,,,,,Чемерис Роза Басировна,,,11/06/1978,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0524 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14469 +CHEMEZOV,Sergey,Viktorovich,,,,,,,,20/08/1952,Irkutsk Oblast,Russia,Russia,,,,,Chair of the Rostec conglomerate,,,,,,,,,"(UK Sanctions List Ref):RUS0088 (UK Statement of Reasons):Sergey Chemezov is one of President Putin's known close associates. His close links to Russia’s President have led to him being appointed to a range of senior positions in state-controlled firms, including as CEO of the state technology holding company ‘Rostec’. He chairs the Rostec conglomerate, the leading Russian state-controlled defence and industrial manufacturing corporation. Prior to this, Chemezov headed Rosoboronexport, a subsidiary of Rostec. Under the direction of Chemezov, Rosoboronexport supported the integration of Crimean defence companies into Russia’s defence industry. Through this action Chemezov been involved in activities and the supply of goods and technology that has undermined the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,16/09/2022,13115 +CHEMEZOV,Alexander,Sergeevich,,,,,ЧЕМЕЗОВ Александр Сергеевич,Cyrillic,Russian,00/00/1985,,,,,,,,,3 Shvedskiy Tupik,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0786 (UK Statement of Reasons):Alexander CHEMEZOV is the son of Sergey Viktorovich CHEMEZOV (RUS0088), who has been designated by the UK since 31/12/2020, with whom he is closely associated and from whom he has obtained a financial benefit or other material benefit. Sergey Viktorovitch Chemezov is one of President Putin's known close associates, both were KGB officers posted in Dresden and he is a member of the Supreme Council of ‘United Russia’. He is benefiting from his links with the Russian President by being promoted to senior positions in State-controlled firms. He chairs the Rostec conglomerate, the leading Russian state-controlled defence and industrial manufacturing corporation. Further to a decision of the Russian government, Technopromexport,a subsidiary of Rostec, has built energy plants in Crimea thereby supporting its integration into the Russian Federation. Furthermore, Rosobornexport a subsidiary of Rostec, has supported the integration of Crimean defence companies into Russia’s defence industry, thereby consolidating the illegal annexation of Crimea into the Russian Federation. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14737 +CHEMEZOV,Alexander,Sergeyevich,,,,,,,,00/00/1985,,,,,,,,,3 Shvedskiy Tupik,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0786 (UK Statement of Reasons):Alexander CHEMEZOV is the son of Sergey Viktorovich CHEMEZOV (RUS0088), who has been designated by the UK since 31/12/2020, with whom he is closely associated and from whom he has obtained a financial benefit or other material benefit. Sergey Viktorovitch Chemezov is one of President Putin's known close associates, both were KGB officers posted in Dresden and he is a member of the Supreme Council of ‘United Russia’. He is benefiting from his links with the Russian President by being promoted to senior positions in State-controlled firms. He chairs the Rostec conglomerate, the leading Russian state-controlled defence and industrial manufacturing corporation. Further to a decision of the Russian government, Technopromexport,a subsidiary of Rostec, has built energy plants in Crimea thereby supporting its integration into the Russian Federation. Furthermore, Rosobornexport a subsidiary of Rostec, has supported the integration of Crimean defence companies into Russia’s defence industry, thereby consolidating the illegal annexation of Crimea into the Russian Federation. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14737 +CHEMEZOV,Sergey,Sergeevich,,,,,Сергей Сергеевич ЧЕМЕЗОВ,Cyrillic,Russian,07/05/2002,Irkutsk Oblast,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1019 (UK Statement of Reasons):Sergey Sergeevich CHEMEZOV is the son of Sergey Viktorovich CHEMEZOV, who is himself designated as an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 (“Russia Regulation”). Therefore, there are reasonable grounds to suspect that Sergey Sergeevich Chemezov is associated with Sergey Viktorovich CHEMEZOV and has obtained a financial benefit or other material benefit from Sergey Viktorovich CHEMEZOV. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15350 +CHEMEZOV,Stanislav,Sergeevich,,,,,ЧЕМЕЗОВ Станислав Сергеевич,Cyrillic,Russian,00/00/1973,,,Russia,,,,,,36 Yuzhnoye Highway; Tolyatti,,,,,Samara,,Russia,"(UK Sanctions List Ref):RUS0787 (UK Statement of Reasons):Stanislav CHEMEZOV is the son of Sergey Viktorovitch CHEMEZOV (RUS0088), who has been designated by the UK since 31 December2020, with whom he is closely associated and from whom he has obtained a financial benefit or other material benefit. Sergey Viktorovitch Chemezov is one of President Putin's known close associates, both were KGB officers posted in Dresden and he is a member of the Supreme Council of ‘United Russia’. He is benefiting from his links with the Russian President by being promoted to senior positions in State-controlled firms. He chairs the Rostec conglomerate, the leading Russian state-controlled defence and industrial manufacturing corporation. Further to a decision of the Russian government, Technopromexport,a subsidiary of Rostec, has built energy plants in Crimea thereby supporting its integration into the Russian Federation. Furthermore, Rosobornexport a subsidiary of Rostec, has supported the integration of Crimean defence companies into Russia’s defence industry, thereby consolidating the illegal annexation of Crimea into the Russian Federation. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14738 +CHEMEZOV,Stanislav,Sergeyevich,,,,,,,,00/00/1973,,,Russia,,,,,,36 Yuzhnoye Highway; Tolyatti,,,,,Samara,,Russia,"(UK Sanctions List Ref):RUS0787 (UK Statement of Reasons):Stanislav CHEMEZOV is the son of Sergey Viktorovitch CHEMEZOV (RUS0088), who has been designated by the UK since 31 December2020, with whom he is closely associated and from whom he has obtained a financial benefit or other material benefit. Sergey Viktorovitch Chemezov is one of President Putin's known close associates, both were KGB officers posted in Dresden and he is a member of the Supreme Council of ‘United Russia’. He is benefiting from his links with the Russian President by being promoted to senior positions in State-controlled firms. He chairs the Rostec conglomerate, the leading Russian state-controlled defence and industrial manufacturing corporation. Further to a decision of the Russian government, Technopromexport,a subsidiary of Rostec, has built energy plants in Crimea thereby supporting its integration into the Russian Federation. Furthermore, Rosobornexport a subsidiary of Rostec, has supported the integration of Crimean defence companies into Russia’s defence industry, thereby consolidating the illegal annexation of Crimea into the Russian Federation. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14738 +CHEN,MINGGUO,,,,,,,,,00/10/1966,"Yilong, Sichuan",China,China,,,,,(1) Director of the Public Security Department of the Xinjiang Uyghur Autonomous Region (2) Vice Chairman of the Xinjiang Uyghur Autonomous Region Government,,,,,,Xinjiang,,China,"(UK Sanctions List Ref):GHR0075 (UK Statement of Reasons):Chen Mingguo is a provincial-level Chinese Communist Party and State official in the Xinjiang Uyghur Autonomous Region (XUAR). He holds positions as a Vice Chairman of the Government of the XUAR, and the Director of the XUAR Public Security Department. In these positions, he bears responsibility for the administration of China's so called ""re-education"" policy in the XUAR and therefore is responsible also for serious violations of the right not to be subject to torture or cruel, inhuman or degrading treatment or punishment that have taken place in so called ""training centres"". (Gender):Male",Individual,Primary name,,Global Human Rights,22/03/2021,22/03/2021,01/04/2021,14074 +CHENG HE,Li,,,,,,,,,19/03/1965,,,North Korea,654234735,Issued by the Democratic People's Republic of Korea,,,Ri Song Hyok is an overseas representative for Koryo Bank and Koryo Credit Development Bank,,,,,,,,,(UK Sanctions List Ref):DPR0267 (UN Ref):KPi.077 Ri Song Hyok has reportedly established front companies to procure items and conduct financial transactions on behalf of North Korea. (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,02/08/2022,13573 +CHENG JIN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0098 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). In late November 2017 the YU PHYONG 5 conducted a ship-to-ship transfer of 1,721 metric tons of fuel oil. Listed as asset of Korea Myongdok Shipping Co - OFSI ID: 13634. UN Reference Number: UN Ref KPe.063 (IMO number):8605026 (Current owners):Korea Myongdok Shipping Co (Flag of ship):North Korea (Previous flags):South Korea (Type of ship):Oil tanker (Tonnage of ship):795 (Length of ship):75 (Year built):1986",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13649 +CHEONG JIN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0098 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). In late November 2017 the YU PHYONG 5 conducted a ship-to-ship transfer of 1,721 metric tons of fuel oil. Listed as asset of Korea Myongdok Shipping Co - OFSI ID: 13634. UN Reference Number: UN Ref KPe.063 (IMO number):8605026 (Current owners):Korea Myongdok Shipping Co (Flag of ship):North Korea (Previous flags):South Korea (Type of ship):Oil tanker (Tonnage of ship):795 (Length of ship):75 (Year built):1986",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13649 +CHEPA,Alexey,Vasilievich,,,,,Чепа Алексей Васильевич,,,22/11/1955,Znamensk,Russia,Russia,751849390,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0582 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14527 +CHEPIGA,Anatoliy,Vladimirovich,,,,Colonel,Анатолий Владимирович ЧЕПИГА,,,05/04/1979,"(1) Nikolaevka, Amur Oblast (2) Dushanbe",(1) Russia (2) Tajikistan,Russia,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):CHW0008 (UK Statement of Reasons):GRU Officer Anatoliy Chepiga (a.k.a. Ruslan Boshirov) possessed, transported and then, during the weekend of 4 March 2018, in Salisbury, used a toxic nerve agent (“Novichok”). On 5 September 2018, the UK Crown Prosecution Service charged Ruslan Boshirov for conspiracy to murder Sergei Skripal; for the attempted murder of Sergei Skripal, Yulia Skripal and Nick Bailey; for the use and possession of Novichok; and for causing grievous bodily harm with intent to Yulia Skripal and Nick Bailey. (Gender):Male",Individual,Primary name,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13751 +CHEPIGA,Anatoliy,Vladimirovich,,,,Colonel,Анатолий Владимирович ЧЕПИГА,,,12/04/1978,"(1) Nikolaevka, Amur Oblast (2) Dushanbe",(1) Russia (2) Tajikistan,Russia,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):CHW0008 (UK Statement of Reasons):GRU Officer Anatoliy Chepiga (a.k.a. Ruslan Boshirov) possessed, transported and then, during the weekend of 4 March 2018, in Salisbury, used a toxic nerve agent (“Novichok”). On 5 September 2018, the UK Crown Prosecution Service charged Ruslan Boshirov for conspiracy to murder Sergei Skripal; for the attempted murder of Sergei Skripal, Yulia Skripal and Nick Bailey; for the use and possession of Novichok; and for causing grievous bodily harm with intent to Yulia Skripal and Nick Bailey. (Gender):Male",Individual,Primary name,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13751 +CHEPIKOV,Sergey,Vladimirovich,,,,,Чепиков Сергей Владимирович,,,30/01/1967,Khor,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0525 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14470 +CHEREVKO,Sergei,,,,,,Сергей ЧЕРЕВКО,Cyrillic,Russian,11/08/1975,,,Ukraine,,,,,(1) Member of the ‘Salvation Committee for Peace and Order’ in Kherson (2) Former deputy Mayor of Kherson,,,,,,,,,"(UK Sanctions List Ref):RUS1471 (UK Statement of Reasons):There are reasonable grounds to suspect Serhiy Mikolayovich CHEREVKO of participation in the establishment of the so-called ‘Salvation Committee for Peace and Order’ and therefore that he is or has been involved in providing support for and promoting policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/06/2022,16/06/2022,09/08/2022,15414 +CHEREVKO,Sergey,,,,,,,,,11/08/1975,,,Ukraine,,,,,(1) Member of the ‘Salvation Committee for Peace and Order’ in Kherson (2) Former deputy Mayor of Kherson,,,,,,,,,"(UK Sanctions List Ref):RUS1471 (UK Statement of Reasons):There are reasonable grounds to suspect Serhiy Mikolayovich CHEREVKO of participation in the establishment of the so-called ‘Salvation Committee for Peace and Order’ and therefore that he is or has been involved in providing support for and promoting policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/06/2022,16/06/2022,09/08/2022,15414 +CHEREVKO,Serhiy,Mikolayovich,,,,,Сергiй Миколайович ЧЕРЕВКО,Cyrillic,Russian,11/08/1975,,,Ukraine,,,,,(1) Member of the ‘Salvation Committee for Peace and Order’ in Kherson (2) Former deputy Mayor of Kherson,,,,,,,,,"(UK Sanctions List Ref):RUS1471 (UK Statement of Reasons):There are reasonable grounds to suspect Serhiy Mikolayovich CHEREVKO of participation in the establishment of the so-called ‘Salvation Committee for Peace and Order’ and therefore that he is or has been involved in providing support for and promoting policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,16/06/2022,16/06/2022,09/08/2022,15414 +CHEREZOV,Andrey,Vladimirovich,,,,,Андрей Владимирович ЧЕРЕЗОВ,,,12/10/1967,"Salair, Kemerovskaya Oblast",,Russia,,,,,Former Deputy/Vice-Minister for Energy of the Russian Federation,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0089 (UK Statement of Reasons):Shares responsibility for the decision to transfer gas turbines that had been delivered by Siemens Gas Turbine Technologies OOO to OAO VO Technopromexport to be installed in Crimea. This decision contributes to establishing an independent power supply for Crimea and Sevastopol as a means of supporting their separation from Ukraine, and undermines the territorial integrity, sovereignty, and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,04/08/2017,31/12/2020,16/09/2022,13521 +CHERIF,Aboubacar,,,,,,Aboubacar Chérif,,,,,,Guinea,,,,,Commander of the Presidential Guard,,,,,,,,,(UK Sanctions List Ref):GUC0002 (UK Statement of Reasons):Person identified as responsible for the violent repression and events in Guinea on 28 September 2009 or the aftermath of that violent repression. As the commander of the presidential guard he was also involved committing serious human rights violations. (Gender):Male,Individual,Primary name variation,,Guinea,24/12/2009,31/12/2020,31/12/2020,10992 +CHERIF,PETER,,,,,,,,,26/08/1982,"Paris, 20th district",France,France,,,,,,Al Mukalla,Hadramawt province,,,,,,Yemen,(UK Sanctions List Ref):AQD0286 (UN Ref):QDi.376 Member of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Convicted in absentia to five years in prison in France in 2012. Wanted by French authorities as of 2015. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897329,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,12/01/2022,13290 +CHERKASOVA,Nadia,Narimanovna,,,,,Надия Наримановна ЧЕРКАСОВА,Cyrillic,Russian,11/12/1971,Vladimir,Russia,Russia,,,,,Member of OTKRITIE Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1636 (UK Statement of Reasons):Nadia Narimanovna Cherkasova is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by (1) working as a director, manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Bank Otkritie Financial Corporation PJSC which carries on business in the Russian financial services sector; (2) working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely Bank Otkritie Financial Corporation PJSC. (Gender):Female",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15580 +CHERNYAK,Alexey,Yurievich,,,,,Черняк Алексей Юрьевич,,,27/08/1973,Almaty,Kazakhstan,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0527 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14472 +CHERNYSHENKO,Dmitry,Nikolaevich,,,,,ЧЕРНИШЕНКО Дмитрий Николаевич,Cyrillic,Russian,20/09/1968,Saratov,Russia,Russia,,,,,"(1) Deputy Prime Minister of Russia for Tourism, Sport, Culture and Communications (2) Member of the Board of Directors of Russian Railways",,,,,,,,,"(UK Sanctions List Ref):RUS0754 (UK Statement of Reasons):Dmitry Nikolaevich CHERNYSHENKO, is a prominent Russian politician and businessman. CHERNYSHENKO is, or has been, involved in obtaining a benefit from or supporting the Government of Russia as a member of the Board of Directors of the state-owned Russian Railways which is an entity carrying on business in the transport sector - a sector of strategic importance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14705 +CHERNYSHEV,Aleh,Anatolievich,,,,,,,,,,,,,,,,"(1) Deputy Chairman, State Security Committee, Belarus (2) Deputy Chairman of Belarus's Presidium of the National Academy of Sciences",,,,,,,,,"(UK Sanctions List Ref):BEL0031 (UK Statement of Reasons):Alieg Charnyshou is a Deputy Chairman of the State Security Committee (KGB) of Belarus. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,10/05/2020,31/12/2020,18/03/2022,13961 +CHERNYSHEV,Alieg,Anatolevich,,,,,,,,,,,,,,,,"(1) Deputy Chairman, State Security Committee, Belarus (2) Deputy Chairman of Belarus's Presidium of the National Academy of Sciences",,,,,,,,,"(UK Sanctions List Ref):BEL0031 (UK Statement of Reasons):Alieg Charnyshou is a Deputy Chairman of the State Security Committee (KGB) of Belarus. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,10/05/2020,31/12/2020,18/03/2022,13961 +CHERNYSHEV,Oleg,Anatolievich,,,,,,,,,,,,,,,,"(1) Deputy Chairman, State Security Committee, Belarus (2) Deputy Chairman of Belarus's Presidium of the National Academy of Sciences",,,,,,,,,"(UK Sanctions List Ref):BEL0031 (UK Statement of Reasons):Alieg Charnyshou is a Deputy Chairman of the State Security Committee (KGB) of Belarus. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,10/05/2020,31/12/2020,18/03/2022,13961 +CHERNYSHOV,Boris,Alexandrovich,,,,,Чернышов Борис Александрович,,,25/06/1991,Voronezh,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0526 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14471 +CHERNYSHYOV,Andrey,Vladimirovich,,,,,Андрей Владимирович ЧЕРНЫШЁВ,,,10/07/1970,Bratsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0897 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14848 +CHERNYSOV,Oleg,Anatolevich,,,,,,,,,,,,,,,,"(1) Deputy Chairman, State Security Committee, Belarus (2) Deputy Chairman of Belarus's Presidium of the National Academy of Sciences",,,,,,,,,"(UK Sanctions List Ref):BEL0031 (UK Statement of Reasons):Alieg Charnyshou is a Deputy Chairman of the State Security Committee (KGB) of Belarus. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,10/05/2020,31/12/2020,18/03/2022,13961 +CHERSTVOVA,Elena,Alexandrovna,,,,,Елена Александровна Черствова,Cyrillic,Russian,,Tolyatti,Russia,Russia,716024138,Russia,,,Member of SOVCOMBANK’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1586 (UK Statement of Reasons):Elena Alexandrovna Cherstvova is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SOVCOMBANK which is carrying on business in the financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely SOVCOMBANK which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund. (Gender):Female",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15530 +CHERTKOV,Andrey,Gennadievich,,,,,Андрей ЧЕРТКОВ Геннадьевич,Cyrillic,Russian,04/09/1969,"Shatki, Nizhny Novgorod (Gorky) region",Russia,,,,,,"The so-called ""Minister of Coal and Energy"" of the so-called ""DPR""",,,,,,,,,"(UK Sanctions List Ref):RUS1576 (UK Statement of Reasons):Andrey CHERTKOV is the so-called Minister of Coal and Energy of the so-called Donetsk People’s Republic. CHERTKOV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he engages in and provides support for policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.    (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15520 +CHE-SON,Ri,,,,,,,,,00/00/1938,,,North Korea,,,,,Minister of Atomic Energy Industry since April 2014,,,,,,,,,"(UK Sanctions List Ref):DPR0264 (UN Ref):KPi.002 Minister of Atomic Energy Industry since April 2014. Former Director of the General Bureau of Atomic Energy (GBAE), chief agency directing DPRK's nuclear program; facilitated several nuclear endeavors including GBAE's management of Yongbyon Nuclear Research Center and Namchongang Trading Corporation.",Individual,AKA,Good quality,Democratic People's Republic of Korea,17/07/2009,16/07/2009,19/01/2021,10915 +CHIE MARU NO.6,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0096 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V CHON MYONG 1 conducted a ship-to-ship transfer, likely for oil, in late December 2017. Listed as asset of Chonmyong Shipping Co (OFSI ID: 13627, UN Ref KPe.056) (IMO number):8712362 (Current owners):Chonmyong Shipping Co (Flag of ship):North Korea (Previous flags):Togo (Type of ship):Oil tanker (Tonnage of ship):1220 (Length of ship):82 (Year built):1987",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13647 +CHIGRINA,Oksana,,,,,,,,,23/07/1981,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0140 (UK Statement of Reasons):Former spokesperson of the so-called ‘government’ of the so-called ‘Lugansk People’s Republic’ who made declarations justifying, inter alia, the shooting down of a Ukrainian military airplane, the taking of hostages, fighting activities by the illegal armed groups, which have as a consequence undermined the territorial integrity, sovereignty and unity of Ukraine. Former spokesperson of the head of the LPR. Remains active in supporting separatist actions or policies. (Gender):Female",Individual,Primary name variation,,Russia,31/07/2014,31/12/2020,31/12/2020,13069 +CHIGRINA,Oksana,Aleksandrovna,,,,,,,,23/07/1981,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0140 (UK Statement of Reasons):Former spokesperson of the so-called ‘government’ of the so-called ‘Lugansk People’s Republic’ who made declarations justifying, inter alia, the shooting down of a Ukrainian military airplane, the taking of hostages, fighting activities by the illegal armed groups, which have as a consequence undermined the territorial integrity, sovereignty and unity of Ukraine. Former spokesperson of the head of the LPR. Remains active in supporting separatist actions or policies. (Gender):Female",Individual,Primary name variation,,Russia,31/07/2014,31/12/2020,31/12/2020,13069 +CHIHABI,Fares,,,,,,,,,07/05/1972,,,Syria,,,,,(1) President of Aleppo Chamber of Industry (2) Vice-chairman of Cham Holding (3) Chairman of the Federation of Chambers of Industry. Appointed in 16 December 2018,,,,,,,,,"(UK Sanctions List Ref):SYR0041 Son of Ahmad Chehabi (UK Statement of Reasons):President of Aleppo Chamber of Industry, Chairman of the Federation of Chambers of Industry since 16.12.2018. Vice-chairman of Cham Holding. Provides economic support to the Syrian regime. Former Member of the Syrian Parliament (2016-2020). (Gender):Male",Individual,Primary name variation,,Syria,05/09/2011,31/12/2020,16/06/2022,12058 +CHIHABI,Fares,,,,,,,,,07/09/1972,,,Syria,,,,,(1) President of Aleppo Chamber of Industry (2) Vice-chairman of Cham Holding (3) Chairman of the Federation of Chambers of Industry. Appointed in 16 December 2018,,,,,,,,,"(UK Sanctions List Ref):SYR0041 Son of Ahmad Chehabi (UK Statement of Reasons):President of Aleppo Chamber of Industry, Chairman of the Federation of Chambers of Industry since 16.12.2018. Vice-chairman of Cham Holding. Provides economic support to the Syrian regime. Former Member of the Syrian Parliament (2016-2020). (Gender):Male",Individual,Primary name variation,,Syria,05/09/2011,31/12/2020,16/06/2022,12058 +CHIMISTE NANTES,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0097 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK tanker M/V AN SAN 1 was involved in ship-to-ship transfer operations, likely for oil, in late January 2018. Listed as asset of Korea Ansan Shipping Company (OFSI ID: 13633, UN Reference Number: UN Ref KPe.062) (IMO number):7303803 (Current owners):Korean Ansan Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Chemical Carrier (Tonnage of ship):1757 (Length of ship):86 (Year built):1973",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13648 +CHINGHEITY,,,,,,,,,,00/00/1981,,Saudi Arabia,Mauritania,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0093 (UN Ref):QDi.298 Pakistan-based senior Al-Qaida (QDe.004) leader also associated with The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Wanted by Mauritanian authorities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555823,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/09/2011,15/09/2011,31/12/2020,12148 +CHINOUM,Marial,,,,,,,,,01/01/1960,"Yirol, Lakes State",South Sudan,South Sudan,R00005943,South Sudan,,,"(1) Major General in the Sudan People's Liberation Army (2) Commander, of the South Sudanese Presidential Guard Unit",,,,,,,,,"(UK Sanctions List Ref):SSU0005 (UN Ref):SSi.005 His Presidential Guard led the slaughter of Nuer civilians in and around Juba, many who were buried in mass graves. One such grave was purported to contain 200-300 civilians. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/72684667",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13266 +CHIN-SO'K,Kim,,,,,,,,,00/00/1964,,,North Korea,290320764,Issued by the Democratic People's Republic of Korea,,,President of Tanchon Commercial Bank,,,,,,,,,(UK Sanctions List Ref):DPR0239 (UN Ref):KPi.023 Kim Tong My’ong is the President of Tanchon Commercial Bank and has held various positions within Tanchon Commercial bank since at least 2002. He has also played a role in managing Amroggang’s affairs.,Individual,AKA,Good quality,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12441 +CHIN-SO'K,Kim,,,,,,,,,28/08/1962,,,North Korea,290320764,Issued by the Democratic People's Republic of Korea,,,President of Tanchon Commercial Bank,,,,,,,,,(UK Sanctions List Ref):DPR0239 (UN Ref):KPi.023 Kim Tong My’ong is the President of Tanchon Commercial Bank and has held various positions within Tanchon Commercial bank since at least 2002. He has also played a role in managing Amroggang’s affairs.,Individual,AKA,Good quality,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12441 +CHINUONG,Marial,,,,,,,,,01/01/1960,"Yirol, Lakes State",South Sudan,South Sudan,R00005943,South Sudan,,,"(1) Major General in the Sudan People's Liberation Army (2) Commander, of the South Sudanese Presidential Guard Unit",,,,,,,,,"(UK Sanctions List Ref):SSU0005 (UN Ref):SSi.005 His Presidential Guard led the slaughter of Nuer civilians in and around Juba, many who were buried in mass graves. One such grave was purported to contain 200-300 civilians. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/72684667",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13266 +CHISTYAKOV,Oleg,,,,,,,,,,,,,,,,,Director of the Audit Department at Sberbank,,,,,,,,,"(UK Sanctions List Ref):RUS1603 (UK Statement of Reasons):Oleg Chistyakov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK). (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15547 +CHIZHOV,Sergey,Viktorovich,,,,,Чижов Сергей Викторович,,,16/03/1964,Moscow,Russia,Russia,605170815,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0583 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14528 +CHOE,Chan,Il,,,,,,,,,,,North Korea,,,,,Director of the Dandong office of Korea Heungjin Trading Company,,,,,,,,China,"(UK Sanctions List Ref):DPR0003 Associations with KOMID, Korea Heungjin Trading Company and DPRK Embassy, Beijing (UK Statement of Reasons):Director of the Dandong office of Korea Heungjin Trading Company, a UN designated entity. Korea Heungjin is used by KOMID, another UN designated entity, for trading purposes. KOMID was designated by the UN Sanctions Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13587 +CHOE,Chun-Sik,,,,,,,,,23/12/1963,Pyongyang,North Korea,North Korea,745132109,(Expiration date 12/02/2020),,,Director in the reinsurance department of Korea National Insurance Corporation (KNIC) Headquarters in Pyongyang,,,,,,,,North Korea,(UK Sanctions List Ref):DPR0006 Associations with Korea National Insurance Corporation (KNIC). (UK Statement of Reasons):Director in the reinsurance department of Korea National Insurance Corporation (KNIC) based in the headquarters in Pyongyang acting on behalf of KNIC or at its direction. (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,16/05/2018,31/12/2020,31/12/2020,13257 +CHOE,Kwang,Hyok,,,,,,,,,,,North Korea,,,,,,,,,,,,,China,"(UK Sanctions List Ref):DPR0004 Associations with Green Pine Corporation, Beijing King Helong International Trading Ltd, Hong Kong King Helong International trading Ltd and Korea Unhasu Trading Company (UK Statement of Reasons):Choe Kwang Hyok has served as a representative of Green Pine Associated Corporation, a UN designated entity. Choe Kwang Hyok has been identified by the UN Panel of Experts as chief executive of Beijing King Helong International Trading Ltd., an alias of Green Pine. He has also been identified by the UN Panel of Experts as director of Hong Kong King Helong International Trading Ltd and operator of the DPRK entity named Beijing representative office of Korea Unhasu Trading Company, which are also aliases of Green Pine. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13592 +CHOE,Kwang,Su,,,,,,,,20/04/1955,,,North Korea,381210143,(expiration date 03/06/2016),,,Third Secretary DPRK Embassy South Africa,,,,,,,,South Africa,"(UK Sanctions List Ref):DPR0005 Associations with Haegeumgang Trading Corporation and DPRK Embassy Pretoria (UK Statement of Reasons):Choe Kwang Su has been identified by the UN Panel of Experts as a representative of Haegeumgang Trading Company. In this capacity Choe Kwang Su signed a DPRK-Mozambique military cooperation contract in violation of the prohibitions imposed by United Nations Security Council Resolutions. The contract concerned the supply of arms and arms-related material to Monte Binga, a company controlled by the Government of Mozambique. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13601 +CHOE,Kyong-Song,,,,,Colonel General,,,,00/00/1945,,,North Korea,,,,,Colonel General in the Korean People’s Army,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0007 (UK Statement of Reasons):Colonel General in the Korean People’s Army. Former member of the Central Military Commission of the Workers’ Party of Korea, which is a key body for national defence matters in the DPRK. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13356 +CHOE,Yong,Ho,,,,,,,,,,,North Korea,,,,,Colonel General in the Korean People’s Army/Air Force General,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0008 (UK Statement of Reasons):Colonel General in the Korean People’s Army/Korean People’s Army Air Force General. Former member of the Central Military Commission of the Workers’ Party of Korea, which is a key body for national defence matters in the DPRK. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13357 +CHOE,Yong-Ho,,,,,Colonel General,,,,,,,North Korea,,,,,Colonel General in the Korean People’s Army/Air Force General,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0008 (UK Statement of Reasons):Colonel General in the Korean People’s Army/Korean People’s Army Air Force General. Former member of the Central Military Commission of the Workers’ Party of Korea, which is a key body for national defence matters in the DPRK. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13357 +CHOL,,,,,,,,,,00/00/1948,,,North Korea,,,,,(1) Alternate Member of the Political Bureau of the Workers’ Party of Korea (2) First Vice Director of the Munitions Industry Department,,,,,,,,North Korea,(UK Sanctions List Ref):DPR0266 (UN Ref):KPi.076 (Gender):Male,Individual,Primary name variation,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,02/08/2022,13572 +CHOL,James,Koang,,,,,,,,00/00/1961,,,South Sudan,R00012098,South Sudan,,,Commander of the Sudan People’s Liberation Army in Opposition (SPLAIO) Special Division,,,,,,,,,"(UK Sanctions List Ref):SSU0003 (UN Ref):SSi.003 Appointed commander of the Sudan People’s Liberation Army in Opposition (SPLA-IO) Special Division in December 2014. His forces have been engaged in attacks against civilians. In February 2014, forces under his command attacked United Nations camps, hospitals, churches, and schools, engaging in widespread rape, torture, and the destruction of property, in an attempt to flush out civilians, soldiers, and policemen allied with the government. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879069",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13265 +CHOL,Jo,,,,,,,,,10/05/1945,"Musan, North Hamgyo'ng Province",North Korea,,736410010,,,,Director of the Fifth Bureau of the Reconnaissance General Bureau,,,,,,,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0202 (UN Ref):KPi.040 Cho is believed to be in charge of overseas espionage operations and foreign intelligence collection for the Democratic People's Republic of Korea.,Individual,AKA,Good quality,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13471 +CHOL,Kang,Myong,,,,,,,,,,,North Korea,290410121,,,,"Vice Chairman of the Second Economic Committee, which oversees the production of the DPRK’s ballistic missiles",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0254 (UN Ref):KPi.049 Directs the activities of Korea Mining Development Corporation, the DPRK’s premier arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons.",Individual,AKA,Good quality,Democratic People's Republic of Korea,05/06/2017,02/06/2017,31/12/2020,13479 +CHOL,Li,Van,,,,,Ли Ван Чоль,,,06/07/1993,Prague,Czechia,,,,,,"(1) ""Informal deputy Chairman of the Lugansk Guard (2) Self-identified 'Governor' in the Luhansk Oblast (3) Head of the Luhansk Guard’s youth organisation wing",,,,,,,,,"(UK Sanctions List Ref):RUS0057 (UK Statement of Reasons):Active member of the ""Lugansk Guard"". Took part in the seizure of the building of the Lugansk regional office of the Security Service. Remains an active military fighter of the LNR. (Gender):Male",Individual,AKA,,Russia,29/04/2014,31/12/2020,31/12/2020,12959 +CHOL,Yun,,,,,,,,,,,,North Korea,,,,,Third Secretary DPRK Embassy China,,,,,,,,China,"(UK Sanctions List Ref):DPR0009 Associations with Green Pine Corporation and Korea Unsong Corporation Limited (UK Statement of Reasons):Chol Yun has been identified by the UN Panel of Experts as contact person of the DPRK Company General Precious Metal involved in the sale of lithium-6, a UN prohibited nuclear-related item, and DPRK diplomat. General Precious Metal has previously been identified by the European Union as an alias of the UN designated entity Green Pine (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13591 +CHOL MAN,KO,,,,,,,,,30/09/1967,,,North Korea,472420180,,,,Ko Chol Man is an overseas Foreign Trade Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0242 (UN Ref):KPi.069 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13564 +CHOL NAM,KIM,,,,,,,,,19/02/1970,,,,563120238,,,,"President of Korea Kumsan Trading Corporation, a company that procures supplies for General Bureau of Atomic Energy and serves as a cash route to the DPRK",,,,,,,,North Korea,(UK Sanctions List Ref):DPR0225 (UN Ref):KPi.044,Individual,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,31/12/2020,13474 +CHOL SAM,KIM,,,,,,,,,11/03/1971,,,North Korea,645120378,Issued by the Democratic People's Republic of Korea,,,Representative of Daedong Credit Bank (DCB),,,,,,,,,"(UK Sanctions List Ref):DPR0226 (UN Ref):KPi.035 Kim Chol Sam is a representative for Daedong Credit Bank (DCB) who has been involved in managing transactions on behalf of DCB Finance Limited. As an overseas-based representative of DCB, it is suspected that Kim Chol Sam has facilitated transactions worth hundreds of thousands of dollars and likely managed millions of dollars in DPRK related accounts with potential links to nuclear/missile programs.",Individual,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,02/08/2022,13420 +CHOL SONG,JO,,,,,,,,,25/09/1984,,,North Korea,654320502,expires on 16 September 2019.,,,Deputy Representative for the Korea Kwangson Banking Corporation,,,,,,,,,"(UK Sanctions List Ref):DPR0218 (UN Ref):KPi.058 Deputy Representative for the Korea Kwangson Banking Corporation, which provides financial services in support to Tanchon Commercial Bank and Korea Hyoksin Trading, a subordinate entity of Korea Ryonbong General Corporation. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13531 +CHOL SU,KANG,,,,,,,,,13/02/1969,,,,472234895,,,,Official for Korea Ryonbong General Corporation,,,,,,,,,"(UK Sanctions List Ref):DPR0222 (UN Ref):KPi.059 Official for Korea Ryonbong General Corporation, which specializes in acquisition for the DPRK’s defense industries and support for the DPRK’s military-related overseas sales. Its procurements also likely support the DPRK’s chemical weapons program.",Individual,Primary name,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13532 +CHOL U,YU,,,,,,,,,08/09/1959,,,North Korea,,,,,Director of the National Aerospace Development Administration,,,,,,,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0277 (UN Ref):KPi.028,Individual,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13338 +CH'O'L-CHAE,KO,,,,,,,,,,,,,,,,,Deputy Chief Representative for the Korea Mining Development Trading Corporation (KOMID),,,,,,,,,(UK Sanctions List Ref):DPR0243 (UN Ref):KPi.011 Deputy Chief Representative for the Korea Mining Development Trading Corporation (KOMID). The KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons.,Individual,Primary name,,Democratic People's Republic of Korea,23/04/2013,07/03/2013,31/12/2020,12869 +CH'O'L-MAN,Ko,,,,,,,,,30/09/1967,,,North Korea,472420180,,,,Ko Chol Man is an overseas Foreign Trade Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0242 (UN Ref):KPi.069 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13564 +CH'O'L-SO'NG,Cho,,,,,,,,,25/09/1984,,,North Korea,654320502,expires on 16 September 2019.,,,Deputy Representative for the Korea Kwangson Banking Corporation,,,,,,,,,"(UK Sanctions List Ref):DPR0218 (UN Ref):KPi.058 Deputy Representative for the Korea Kwangson Banking Corporation, which provides financial services in support to Tanchon Commercial Bank and Korea Hyoksin Trading, a subordinate entity of Korea Ryonbong General Corporation. (Gender):Male",Individual,AKA,Good quality,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13531 +CHON,Chi,Bu,,,,,,,,,,,North Korea,,,,,Member of the General Bureau of Atomic Energy,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0002 (UK Statement of Reasons):Member of the General Bureau of Atomic Energy, former technical director of Yongbyon. Photographs connected him to nuclear reactor in Syria before it was bombed by Israel in 2007. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11028 +CHON,Chibu,,,,,,,,,,,,North Korea,,,,,Member of the General Bureau of Atomic Energy,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0002 (UK Statement of Reasons):Member of the General Bureau of Atomic Energy, former technical director of Yongbyon. Photographs connected him to nuclear reactor in Syria before it was bombed by Israel in 2007. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11028 +CHON,Chi-bu,,,,,,,,,,,,North Korea,,,,,Member of the General Bureau of Atomic Energy,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0002 (UK Statement of Reasons):Member of the General Bureau of Atomic Energy, former technical director of Yongbyon. Photographs connected him to nuclear reactor in Syria before it was bombed by Israel in 2007. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11028 +CHON MA SAN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0105 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK vessel M/V CHON MA SAN was involved in ship-to-ship transfer operations for oil in mid-November 2017. Listed as asset of Korea Achim Shipping Co (OFSI ID: 13632, UN Reference Number: UN Ref KPe.061) (IMO number):8660313 (Current owners):Korea Achim Shipping Co (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):2808 (Length of ship):83 (Year built):2005",Ship,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13656 +CHON MYONG 1,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0096 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V CHON MYONG 1 conducted a ship-to-ship transfer, likely for oil, in late December 2017. Listed as asset of Chonmyong Shipping Co (OFSI ID: 13627, UN Ref KPe.056) (IMO number):8712362 (Current owners):Chonmyong Shipping Co (Flag of ship):North Korea (Previous flags):Togo (Type of ship):Oil tanker (Tonnage of ship):1220 (Length of ship):82 (Year built):1987",Ship,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13647 +CHON MYONG SHIPPING COMPANY LIMITED,,,,,,,,,,,,,,,,,,,Kalrimgil 2-dong,Mangyongdae-guyok,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0130 (UN Ref):KPe.056 Registered owner of CHON MYONG 1, a DPRK-flagged vessel that conducted ship-to-ship transfer of fuel in late December 2017. IMO number: 5571322.",Entity,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13627 +CHON MYONG SHIPPING COMPANY LIMITED,,,,,,,,,,,,,,,,,,,Saemaul 2-dong,Pyongchon-guyok,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0130 (UN Ref):KPe.056 Registered owner of CHON MYONG 1, a DPRK-flagged vessel that conducted ship-to-ship transfer of fuel in late December 2017. IMO number: 5571322.",Entity,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13627 +CHONG CHON GANG SHIPPING CO. LTD.,,,,,,,,,,,,,,,,,,,817,Haeum,Tonghun-dong,Chung-gu,,Pyongyang,,,"(UK Sanctions List Ref):DPR0129 (UN Ref):KPe.022 IMO Number: 5342883. The Chongchongang Shipping Company, through its vessel, the Chong Chon Gang, attempted to directly import the illicit shipment of conventional weapons and arms to the DPRK in July 2013.",Entity,AKA,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13340 +CHONG CHON GANG SHIPPING CO. LTD.,,,,,,,,,,,,,,,,,,,817 Haeun,Donghung-dong,Central District,,,Pyongyang,,,"(UK Sanctions List Ref):DPR0129 (UN Ref):KPe.022 IMO Number: 5342883. The Chongchongang Shipping Company, through its vessel, the Chong Chon Gang, attempted to directly import the illicit shipment of conventional weapons and arms to the DPRK in July 2013.",Entity,AKA,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13340 +CHO'NG NAM,YO'N,,,,,,,,,,,,,,,,,Chief Representative for the Korea Mining Development Trading Corporation (KOMID).,,,,,,,,,(UK Sanctions List Ref):DPR0276 (UN Ref):KPi.010 Chief Representative for the Korea Mining Development Trading Corporation (KOMID). The KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons.,Individual,Primary name,,Democratic People's Republic of Korea,23/04/2013,07/03/2013,31/12/2020,12868 +CHONGCH'AI CH'ONGGUK,,,,,,,,,,,,,,,,,,,,,,,Hyongjesan-Guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0188 (UN Ref):KPe.031 The Reconnaissance General Bureau is the DPRK's premiere intelligence organization, created in early 2009 by the merger of existing intelligence organizations from the Korean Workers' Party, the Operations Department and Office 35, and the Reconnaissance Bureau of the Korean People's Army. The Reconnaissance General Bureau trades in conventional arms and controls the DPRK conventional arms firm Green Pine Associated Corporation. (Subsidiaries):Green Pine Associated Corporation",Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,31/12/2020,12448 +CHONGCH'AI CH'ONGGUK,,,,,,,,,,,,,,,,,,,,,,,Nungrado,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0188 (UN Ref):KPe.031 The Reconnaissance General Bureau is the DPRK's premiere intelligence organization, created in early 2009 by the merger of existing intelligence organizations from the Korean Workers' Party, the Operations Department and Office 35, and the Reconnaissance Bureau of the Korean People's Army. The Reconnaissance General Bureau trades in conventional arms and controls the DPRK conventional arms firm Green Pine Associated Corporation. (Subsidiaries):Green Pine Associated Corporation",Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,31/12/2020,12448 +CHO'NG-CH'O'L,MUN,,,,,,,,,,,,Democratic People's Republic of Korea,,,,,Tanchon Commercial Bank (TCB) official,C/O Tanchon Commercial Bank,,,Pyongyang,Saemaeul 1-Dong,Pyongchon District,,Democratic People's Republic of Korea,"(UK Sanctions List Ref):DPR0247 (UN Ref):KPi.012 Mun Cho'ng-Ch'o'l is a TCB official. In this capacity he has facilitated transactions for TCB. Tanchon was designated by the Committee in April 2009 is the main DPRK financial entity for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons.",Individual,Primary name,,Democratic People's Republic of Korea,23/04/2013,07/03/2013,09/08/2022,12870 +CHONGCHONGANG SHIPPING CO LTD,,,,,,,,,,,,,,,,,,,817,Haeum,Tonghun-dong,Chung-gu,,Pyongyang,,,"(UK Sanctions List Ref):DPR0129 (UN Ref):KPe.022 IMO Number: 5342883. The Chongchongang Shipping Company, through its vessel, the Chong Chon Gang, attempted to directly import the illicit shipment of conventional weapons and arms to the DPRK in July 2013.",Entity,AKA,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13340 +CHONGCHONGANG SHIPPING CO LTD,,,,,,,,,,,,,,,,,,,817 Haeun,Donghung-dong,Central District,,,Pyongyang,,,"(UK Sanctions List Ref):DPR0129 (UN Ref):KPe.022 IMO Number: 5342883. The Chongchongang Shipping Company, through its vessel, the Chong Chon Gang, attempted to directly import the illicit shipment of conventional weapons and arms to the DPRK in July 2013.",Entity,AKA,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13340 +CHONG-CHONGANG SHIPPING COMPANY,,,,,,,,,,,,,,,,,,,817,Haeum,Tonghun-dong,Chung-gu,,Pyongyang,,,"(UK Sanctions List Ref):DPR0129 (UN Ref):KPe.022 IMO Number: 5342883. The Chongchongang Shipping Company, through its vessel, the Chong Chon Gang, attempted to directly import the illicit shipment of conventional weapons and arms to the DPRK in July 2013.",Entity,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13340 +CHONG-CHONGANG SHIPPING COMPANY,,,,,,,,,,,,,,,,,,,817 Haeun,Donghung-dong,Central District,,,Pyongyang,,,"(UK Sanctions List Ref):DPR0129 (UN Ref):KPe.022 IMO Number: 5342883. The Chongchongang Shipping Company, through its vessel, the Chong Chon Gang, attempted to directly import the illicit shipment of conventional weapons and arms to the DPRK in July 2013.",Entity,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13340 +CHO'NG-SIK,Kim,,,,,,,,,00/00/1967,,,North Korea,,,,,A leading official guiding the DPRK’s WMD development efforts. Serving as Deputy Director of the Workers’ Party of Korea Munitions Industry Department,,,,,,,,North Korea,(UK Sanctions List Ref):DPR0227 (UN Ref):KPi.066 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,16/02/2022,13561 +CHO'NG-SIK,Kim,,,,,,,,,00/00/1969,,,North Korea,,,,,A leading official guiding the DPRK’s WMD development efforts. Serving as Deputy Director of the Workers’ Party of Korea Munitions Industry Department,,,,,,,,North Korea,(UK Sanctions List Ref):DPR0227 (UN Ref):KPi.066 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,16/02/2022,13561 +CHO'NG-SIK,Kim,,,,,,,,,00/00/1968,,,North Korea,,,,,A leading official guiding the DPRK’s WMD development efforts. Serving as Deputy Director of the Workers’ Party of Korea Munitions Industry Department,,,,,,,,North Korea,(UK Sanctions List Ref):DPR0227 (UN Ref):KPi.066 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,16/02/2022,13561 +CHO'NGSONG UNITED TRADING COMPANY,,,,,,,,,,,,,,,,,,,,,,,Nungrado,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +CHO'NGSONG UNITED TRADING COMPANY,,,,,,,,,,,,,,,,,,,Rakrang No. 1,Rakrang District,Mangyongdae District,,Chilgol-1 dong,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +CHO'NGSONG UNITED TRADING COMPANY,,,,,,,,,,,,,,,,,,,Reconnaissance General Bureau Headquarters,,,,Hyongjesan-Guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +CHONGSONG YONHAP,,,,,,,,,,,,,,,,,,,,,,,Nungrado,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +CHONGSONG YONHAP,,,,,,,,,,,,,,,,,,,Rakrang No. 1,Rakrang District,Mangyongdae District,,Chilgol-1 dong,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +CHONGSONG YONHAP,,,,,,,,,,,,,,,,,,,Reconnaissance General Bureau Headquarters,,,,Hyongjesan-Guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +CH'O'NGSONG YO'NHAP,,,,,,,,,,,,,,,,,,,,,,,Nungrado,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +CH'O'NGSONG YO'NHAP,,,,,,,,,,,,,,,,,,,Rakrang No. 1,Rakrang District,Mangyongdae District,,Chilgol-1 dong,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +CH'O'NGSONG YO'NHAP,,,,,,,,,,,,,,,,,,,Reconnaissance General Bureau Headquarters,,,,Hyongjesan-Guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +CHONMYONG SHIPPING CO,,,,,,,,,,,,,,,,,,,Kalrimgil 2-dong,Mangyongdae-guyok,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0130 (UN Ref):KPe.056 Registered owner of CHON MYONG 1, a DPRK-flagged vessel that conducted ship-to-ship transfer of fuel in late December 2017. IMO number: 5571322.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13627 +CHONMYONG SHIPPING CO,,,,,,,,,,,,,,,,,,,Saemaul 2-dong,Pyongchon-guyok,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0130 (UN Ref):KPe.056 Registered owner of CHON MYONG 1, a DPRK-flagged vessel that conducted ship-to-ship transfer of fuel in late December 2017. IMO number: 5571322.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13627 +CHOSEN EXPO,,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):CYB0004 (UK Statement of Reasons):The Lazarus Group was responsible for relevant cyber activity that resulted in data interference which directly or indirectly caused, or is intended to cause, economic loss to, or prejudice to the commercial interests of, those affected by the activity through stealing money from Bangladesh Bank, attempting to steal money from Vietnam Tien Phong Bank and targeting the Polish Financial Conduct Authority information systems. Through the WannaCry attack they undermined the integrity of the United Kingdom through interfering with an information system so that it prevented the provision of essential healthcare services to the population. (Type of entity):Company (Subsidiaries):Reconnaissance General Bureau",Entity,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13910 +CHOSON INTERNATIONAL CHEMICALS JOINT OPERATION COMPANY,,,,,,,,,,,,,,,,,,,,,,,Hamhung,South Hamgyong Province,,North Korea,(UK Sanctions List Ref):DPR0152 (UN Ref):KPe.039 Korea International Chemical Joint Venture Company is a subsidiary of Korea Ryonbong General Corporation – DPRK’s defense conglomerate specializing in acquisition for DPRK defense industries and support to Pyongyang’s military related sales – and has engaged in proliferation-related transactions. (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,30/11/2016,31/12/2020,12444 +CHOSON INTERNATIONAL CHEMICALS JOINT OPERATION COMPANY,,,,,,,,,,,,,,,,,,,,,,,Man gyongdae-kuyok,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0152 (UN Ref):KPe.039 Korea International Chemical Joint Venture Company is a subsidiary of Korea Ryonbong General Corporation – DPRK’s defense conglomerate specializing in acquisition for DPRK defense industries and support to Pyongyang’s military related sales – and has engaged in proliferation-related transactions. (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,30/11/2016,31/12/2020,12444 +CHOSON INTERNATIONAL CHEMICALS JOINT OPERATION COMPANY,,,,,,,,,,,,,,,,,,,,,,,Mangyungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0152 (UN Ref):KPe.039 Korea International Chemical Joint Venture Company is a subsidiary of Korea Ryonbong General Corporation – DPRK’s defense conglomerate specializing in acquisition for DPRK defense industries and support to Pyongyang’s military related sales – and has engaged in proliferation-related transactions. (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,30/11/2016,31/12/2020,12444 +CHOSON TAESONG UNHAENG,,,,,,,,,,,,,,,,,,,,,Segori-dong,Gyongheung,St. Potonggang District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0147 (UN Ref):KPe.035 Daesong Bank is owned and controlled by Office 39 of the Korea Workers’ Party. SWIFT/BIC: KDBKKPPY,Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,30/11/2016,31/12/2020,11286 +CHOSUN CHAWO'N KAEBAL T'UJA HOESA,,,,,,,,,,,,,,,,,,,,,,,Nungrado,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +CHOSUN CHAWO'N KAEBAL T'UJA HOESA,,,,,,,,,,,,,,,,,,,Rakrang No. 1,Rakrang District,Mangyongdae District,,Chilgol-1 dong,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +CHOSUN CHAWO'N KAEBAL T'UJA HOESA,,,,,,,,,,,,,,,,,,,Reconnaissance General Bureau Headquarters,,,,Hyongjesan-Guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +CHOSUN EXPO (APT 38),,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):CYB0004 (UK Statement of Reasons):The Lazarus Group was responsible for relevant cyber activity that resulted in data interference which directly or indirectly caused, or is intended to cause, economic loss to, or prejudice to the commercial interests of, those affected by the activity through stealing money from Bangladesh Bank, attempting to steal money from Vietnam Tien Phong Bank and targeting the Polish Financial Conduct Authority information systems. Through the WannaCry attack they undermined the integrity of the United Kingdom through interfering with an information system so that it prevented the provision of essential healthcare services to the population. (Type of entity):Company (Subsidiaries):Reconnaissance General Bureau",Entity,Primary name,,Cyber,31/07/2020,31/12/2020,31/12/2020,13910 +CHOSUN INTERNATIONAL CHEMICALS JOINT OPERATION COMPANY,,,,,,,,,,,,,,,,,,,,,,,Hamhung,South Hamgyong Province,,North Korea,(UK Sanctions List Ref):DPR0152 (UN Ref):KPe.039 Korea International Chemical Joint Venture Company is a subsidiary of Korea Ryonbong General Corporation – DPRK’s defense conglomerate specializing in acquisition for DPRK defense industries and support to Pyongyang’s military related sales – and has engaged in proliferation-related transactions. (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,30/11/2016,31/12/2020,12444 +CHOSUN INTERNATIONAL CHEMICALS JOINT OPERATION COMPANY,,,,,,,,,,,,,,,,,,,,,,,Man gyongdae-kuyok,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0152 (UN Ref):KPe.039 Korea International Chemical Joint Venture Company is a subsidiary of Korea Ryonbong General Corporation – DPRK’s defense conglomerate specializing in acquisition for DPRK defense industries and support to Pyongyang’s military related sales – and has engaged in proliferation-related transactions. (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,30/11/2016,31/12/2020,12444 +CHOSUN INTERNATIONAL CHEMICALS JOINT OPERATION COMPANY,,,,,,,,,,,,,,,,,,,,,,,Mangyungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0152 (UN Ref):KPe.039 Korea International Chemical Joint Venture Company is a subsidiary of Korea Ryonbong General Corporation – DPRK’s defense conglomerate specializing in acquisition for DPRK defense industries and support to Pyongyang’s military related sales – and has engaged in proliferation-related transactions. (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,30/11/2016,31/12/2020,12444 +CHOSUN YUNHA MACHINERY JOINT OPERATION COMPANY,,,,,,,,,,,,,,,,,,,,,,,Mangungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +CHOSUN YUNHA MACHINERY JOINT OPERATION COMPANY,,,,,,,,,,,,,,,,,,,,,,,Mangyongdae District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +CHOSUN YUNHA MACHINERY JOINT OPERATION COMPANY,,,,,,,,,,,,,,,,,,,,,,Tongan-dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +CHOUDARY,ANJEM,,,,,,,,,18/01/1967,"Welling, London",United Kingdom,United Kingdom,516384722,Expire date: 06/06/2023. Issue date: 06/05/2013,,,,,,,,,London,,United Kingdom,"(UK Sanctions List Ref):AQD0143 (UN Ref):QDi.419 Pledged allegiance to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115) in July 2014. Imprisoned in the United Kingdom in September 2014 with a tentative release in October 2018 and subsequently released on licence in October 2018 which expires in July 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,16/10/2018,15/10/2018,31/12/2020,13714 +CHOUDRY,Aamir,Ali,,,,,,,,03/08/1986,,,Pakistan,BN 4196361,Pakistani,33202-7126636-9,Pakistani national identity card,,,,,,,,,,(UK Sanctions List Ref):AQD0087 (UN Ref):QDi.312 Electronics and explosives expert for Tehrik-e Taliban Pakistan (TTP) (QDe.132). Involved in attack planning for TTP. Provided financial and logistical support for TTP and participated in TTP-sponsored militant training. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741575,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/10/2012,18/10/2012,31/12/2020,12809 +CHOUKA,MONIR,,,,,,,,,30/07/1981,Bonn,Germany,(1) Germany. (2) Morocco,5208323009,"Germany number, issued on 2 Feb. 2007, issued in Stadt Bonn, Germany (expires on 1 Feb. 2012)",5209530116,"Germany national identification number, issued on 21 Jun. 2006, issued in Stadt Bonn, Germany (expired on 20 Jun. 2011)",,Ungartenstrasse 6,,,,,Bonn,53229,Germany,(UK Sanctions List Ref):AQD0250 (UN Ref):QDi.300 Associated with Islamic Movement of Uzbekistan (QDe.010). Brother of Yassin Chouka (QDi.301) Arrest warrant issued by the investigating judge of the German Federal Court of Justice on 5 Oct. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555858. Germany (previous),Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,08/02/2012,25/01/2012,12/01/2022,12500 +CHOUKA,YASSIN,,,,,,,,,11/12/1984,Bonn,Germany,(1) Germany. (2) Morocco,5204893014,"Germany number issued on 5 Oct. 2000, issued in Stadt Bonn, Germany (expired on 5 Oct. 2005)",5209445304,"Germany National Identification Number. issued on 5 Sep. 2005, issued in Stadt Bonn, Germany (expired on 4 Sep. 2010)",,Karl-Barth-Strasse 14,,,,,Bonn,53129,Germany,"(UK Sanctions List Ref):AQD0334 (UN Ref):QDi.301 Associated with Islamic Movement of Uzbekistan (QDe.010). Brother of Monir Chouka (QDi.300). Arrest warrant issued by the investigating judge of the German Federal Court of Justice on 5 Oct. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555865. Address country Germany, (previous)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,08/02/2012,25/01/2012,12/01/2022,12501 +CHUAL,James,Koang,,,,,,,,00/00/1961,,,South Sudan,R00012098,South Sudan,,,Commander of the Sudan People’s Liberation Army in Opposition (SPLAIO) Special Division,,,,,,,,,"(UK Sanctions List Ref):SSU0003 (UN Ref):SSi.003 Appointed commander of the Sudan People’s Liberation Army in Opposition (SPLA-IO) Special Division in December 2014. His forces have been engaged in attacks against civilians. In February 2014, forces under his command attacked United Nations camps, hospitals, churches, and schools, engaging in widespread rape, torture, and the destruction of property, in an attempt to flush out civilians, soldiers, and policemen allied with the government. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879069",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13265 +CHUCHIN,Sergey,Anatolievich,,,,,ЧУЧИН Сергей Анатольевич,Cyrillic,Russian,11/12/1959,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1236 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15188 +CHUCHIN,Sergey,Anatolyevich,,,,,,,,11/12/1959,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1236 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15188 +CHUGULEVA,Aleyona,Anatolyevna,,,,,Чугулева Алена Анатольевна,Cyrillic,Russian,14/05/1986,,,Russia,,,,,(1) SouthFront ‘volunteer’ (2) Secretary of the “Organizing Committee of Patriotism in Journalism,,,,,,,,,"(UK Sanctions List Ref):RUS1503 (UK Statement of Reasons):Aleyona Anatolyevna CHUGULEVA is a key individual associated with the disinformation website SouthFront, and has gathered donations to maintain their operations. SouthFront is a website which has spread disinformation relating to Ukraine and promoted the Government of Russia’s false narrative about the Russian invasion of Ukraine. CHUGULEVA is therefore a member of or associated with an entity which is or has been involved in supporting and promoting policies and actions which destabilise Ukraine and undermine and threaten the territorial integrity, sovereignty and independence of Ukraine. (Email address):aeoa34@yandex.ru (Gender):Female",Individual,Primary name,,Russia,04/07/2022,04/07/2022,04/07/2022,15443 +CHUICHENKO,Konstantin,Anatolyevich,,,,,Константин Анатольевич Чуйченко,,,12/07/1965,Lipetsk,Russia (former Russian SFSR),Russia,,,,,Minister for Justice,,,,,,,,,"(UK Sanctions List Ref):RUS1539 (UK Statement of Reasons):Konstantin Anatolyevich Chuychenko is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because Chuychenko is a Minister of a Russian Federation Ministry. Specifically, Chuychenko is Minister for Justice. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15492 +CHUN HWAN,RI,,,,,,,,,21/08/1957,,,North Korea,563233049,(Expires 09 May 2018),,,Ri Chun Hwan is an overseas Foreign Trade Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0260 (UN Ref):KPi.074 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13570 +CHUN RYONG,Jo,,,,,,,,,04/04/1960,,,,,,,,Chairman of the Second Economic Committee (SEC),,,,,,,,,(UK Sanctions List Ref):DPR0201 (UN Ref):KPi.038,Individual,AKA,Good quality,Democratic People's Republic of Korea,20/05/2016,30/11/2016,31/12/2020,13359 +CHUN RYONG,CHO,,,,,,,,,04/04/1960,,,,,,,,Chairman of the Second Economic Committee (SEC),,,,,,,,,(UK Sanctions List Ref):DPR0201 (UN Ref):KPi.038,Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,30/11/2016,31/12/2020,13359 +CHUN SONG,RI,,,,,,,,,30/10/1965,,,North Korea,654133553,Expires 11 March 2019.,,,Ri Chun Song is an overseas Foreign Trade Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0261 (UN Ref):KPi.075 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13571 +CHUN YONG,CHOE,,,,,,,,,,,,,654410078,,,,Representative for Ilsim International Bank,,,,,,,,,"(UK Sanctions List Ref):DPR0204 (UN Ref):KPi.054 Representative for Ilsim International Bank, which is affiliated with the DPRK military and has a close relationship with the Korea Kwangson Banking Corporation. Ilsim International Bank has attempted to evade United Nations sanctions. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13527 +CHUNG CHONG,Kim,,,,,,,,,07/11/1966,,,North Korea,(1) 199421147. (2) 381110042. (3) 563210184,(1) - . (2) Expired 25 Jan.2016 (3) Expires 18 Jun.2018.,,,Tanchon Commercial Bank Representative,,,,,,,,,(UK Sanctions List Ref):DPR0228 (UN Ref):KPi.021 Served as the Tanchon Commercial Bank representative in Vietnam.,Individual,AKA,Good quality,Democratic People's Republic of Korea,05/03/2016,02/03/2016,19/01/2021,13332 +CH'UN-HWAN,Ri,,,,,,,,,21/08/1957,,,North Korea,563233049,(Expires 09 May 2018),,,Ri Chun Hwan is an overseas Foreign Trade Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0260 (UN Ref):KPi.074 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13570 +CHUN-SIK,CHOE,,,,,,,,,12/10/1954,,,,,,,,(1) Former director of the Second Academy of Natural Sciences (SANS). (2) Former head of the DPRK’s long-range missile program.,,,,,,,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0205 (UN Ref):KPi.013 Choe Chun-sik was the director of the Second Academy of Natural Sciences (SANS) and was the head of the DPRK’s long-range missile program.,Individual,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13324 +CH'UN-SO'NG,Ri,,,,,,,,,30/10/1965,,,North Korea,654133553,Expires 11 March 2019.,,,Ri Chun Song is an overseas Foreign Trade Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0261 (UN Ref):KPi.075 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13571 +CH'UN-YO'NG,Ch'oe,,,,,,,,,,,,,654410078,,,,Representative for Ilsim International Bank,,,,,,,,,"(UK Sanctions List Ref):DPR0204 (UN Ref):KPi.054 Representative for Ilsim International Bank, which is affiliated with the DPRK military and has a close relationship with the Korea Kwangson Banking Corporation. Ilsim International Bank has attempted to evade United Nations sanctions. (Gender):Male",Individual,AKA,Good quality,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13527 +CHUOL,JAMES,KOANG,,,,Major General,,,,00/00/1961,,,South Sudan,R00012098,South Sudan,,,Commander of the Sudan People’s Liberation Army in Opposition (SPLAIO) Special Division,,,,,,,,,"(UK Sanctions List Ref):SSU0003 (UN Ref):SSi.003 Appointed commander of the Sudan People’s Liberation Army in Opposition (SPLA-IO) Special Division in December 2014. His forces have been engaged in attacks against civilians. In February 2014, forces under his command attacked United Nations camps, hospitals, churches, and schools, engaging in widespread rape, torture, and the destruction of property, in an attempt to flush out civilians, soldiers, and policemen allied with the government. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879069",Individual,Primary name,,South Sudan,10/07/2015,01/07/2015,31/12/2020,13265 +CHUPRIYAN,Aleksandr,Petrovich,,,,Colonel General,ЧУПРЯН Александр Петрович,Cyrillic,Russian,23/03/1958,Ukhta,Russia,Russia,,,,,"First Deputy Minister for Civil Defence, Emergencies and Elimination of Consequences of Natural Disasters of the Russian Federation",3 Teatralny Passage,,,,,Moscow,109012,Russia,"(UK Sanctions List Ref):RUS1343 (UK Statement of Reasons):Colonel General Aleksandr Petrovich CHUPRIYAN is the current First Deputy Minister for Civil Defence, Emergencies and Elimination of Consequences of Natural Disasters (EMERCOM) of the Russian Federation and was previously the Acting Head of EMERCOM. In this position he has provided support for and promoted policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15294 +CHURADZE,Dmitry,Murtazievich,,,,,ЧУРАДЗЕ Дмитрий Муртазиевич,Cyrillic,Russian,24/10/1974,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1237 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial Integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15189 +CHURADZE,Dmitry,Murtaziyevich,,,,,ЧУРАДЗЕ Дмитрий Муртазиевич,Cyrillic,Russian,24/10/1974,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1237 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial Integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15189 +CHURO,Leanid,Mikalaevich,,,,,,,,08/07/1956,,,,,,,,"Director General, Belaeronavigatsia Republican Unitary Air Navigation Services Enterprise",,,,,,,,,"(UK Sanctions List Ref):BEL0098 (UK Statement of Reasons):In his position as Director General of Belaeronavigatsia Republican Unitary Air Navigation Services Enterprise, Leanid Churo is responsible for Belarusian air traffic control. He therefore bears responsibility for the order to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In doing so, he acted on the direction of Alexander Lukashenko and in conjunction with the Belarusian defence forces. This resulted in the forced redirection of flight FR4978, the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega. This politically-motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression against civil society and democratic opposition in Belarus. Churo is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,12/07/2021,14115 +CHURO,Leanid,Mikalaievich,,,,,ЧУРО Леонид Николаевич,,,08/07/1956,,,,,,,,"Director General, Belaeronavigatsia Republican Unitary Air Navigation Services Enterprise",,,,,,,,,"(UK Sanctions List Ref):BEL0098 (UK Statement of Reasons):In his position as Director General of Belaeronavigatsia Republican Unitary Air Navigation Services Enterprise, Leanid Churo is responsible for Belarusian air traffic control. He therefore bears responsibility for the order to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In doing so, he acted on the direction of Alexander Lukashenko and in conjunction with the Belarusian defence forces. This resulted in the forced redirection of flight FR4978, the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega. This politically-motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression against civil society and democratic opposition in Belarus. Churo is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name,,Belarus,21/06/2021,21/06/2021,12/07/2021,14115 +CHURO,Leonid,Nikolaevich,,,,,,,,08/07/1956,,,,,,,,"Director General, Belaeronavigatsia Republican Unitary Air Navigation Services Enterprise",,,,,,,,,"(UK Sanctions List Ref):BEL0098 (UK Statement of Reasons):In his position as Director General of Belaeronavigatsia Republican Unitary Air Navigation Services Enterprise, Leanid Churo is responsible for Belarusian air traffic control. He therefore bears responsibility for the order to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In doing so, he acted on the direction of Alexander Lukashenko and in conjunction with the Belarusian defence forces. This resulted in the forced redirection of flight FR4978, the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega. This politically-motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression against civil society and democratic opposition in Belarus. Churo is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,12/07/2021,14115 +CHURO,Lieanid,Mikalajevich,,,,,ЧУРО Леанід Мікалаевіч,,,08/07/1956,,,,,,,,"Director General, Belaeronavigatsia Republican Unitary Air Navigation Services Enterprise",,,,,,,,,"(UK Sanctions List Ref):BEL0098 (UK Statement of Reasons):In his position as Director General of Belaeronavigatsia Republican Unitary Air Navigation Services Enterprise, Leanid Churo is responsible for Belarusian air traffic control. He therefore bears responsibility for the order to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In doing so, he acted on the direction of Alexander Lukashenko and in conjunction with the Belarusian defence forces. This resulted in the forced redirection of flight FR4978, the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega. This politically-motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression against civil society and democratic opposition in Belarus. Churo is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,12/07/2021,14115 +CHVK VAGNER,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1090 (UK Statement of Reasons):The WAGNER GROUP is often described as a Russia-based Private Military Company and is an entity or group that provides military services for financial gain. It has organised the recruitment of, and coordinated and planned operations for, the Wagner Group mercenaries participating in military operations in Ukraine. There are multiple, credible sources which corroborate and support the conclusion that the existence of the organisation known as the Wagner Group is kept purposefully vague and opaque in order to provide a deniable military capability for the Russian State. The WAGNER GROUP is therefore responsible for, engages in, and provides support for actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,27/05/2022,15033 +CHVK WAGNER,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1090 (UK Statement of Reasons):The WAGNER GROUP is often described as a Russia-based Private Military Company and is an entity or group that provides military services for financial gain. It has organised the recruitment of, and coordinated and planned operations for, the Wagner Group mercenaries participating in military operations in Ukraine. There are multiple, credible sources which corroborate and support the conclusion that the existence of the organisation known as the Wagner Group is kept purposefully vague and opaque in order to provide a deniable military capability for the Russian State. The WAGNER GROUP is therefore responsible for, engages in, and provides support for actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,27/05/2022,15033 +CHYRYNA,Oksana,,,,,,,,,23/07/1981,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0140 (UK Statement of Reasons):Former spokesperson of the so-called ‘government’ of the so-called ‘Lugansk People’s Republic’ who made declarations justifying, inter alia, the shooting down of a Ukrainian military airplane, the taking of hostages, fighting activities by the illegal armed groups, which have as a consequence undermined the territorial integrity, sovereignty and unity of Ukraine. Former spokesperson of the head of the LPR. Remains active in supporting separatist actions or policies. (Gender):Female",Individual,Primary name variation,,Russia,31/07/2014,31/12/2020,31/12/2020,13069 +CHYRYNA,Oksana,Aleksandrovna,,,,,,,,23/07/1981,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0140 (UK Statement of Reasons):Former spokesperson of the so-called ‘government’ of the so-called ‘Lugansk People’s Republic’ who made declarations justifying, inter alia, the shooting down of a Ukrainian military airplane, the taking of hostages, fighting activities by the illegal armed groups, which have as a consequence undermined the territorial integrity, sovereignty and unity of Ukraine. Former spokesperson of the head of the LPR. Remains active in supporting separatist actions or policies. (Gender):Female",Individual,Primary name variation,,Russia,31/07/2014,31/12/2020,31/12/2020,13069 +CIISE,Cabdullah,Mayamed,,,,,,,,08/10/1974,Kismaayo,Somalia,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):AQD0226 (UN Ref):QDi.141 Present in Somalia as of Apr. 2009 following transfer from United Kingdom. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5950651,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7866 +CIISE,Maxamed,Cabdullaahi,,,,,,,,08/10/1974,Kismaayo,Somalia,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):AQD0226 (UN Ref):QDi.141 Present in Somalia as of Apr. 2009 following transfer from United Kingdom. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5950651,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7866 +CIISE,MAXAMED,CABDULLAAH,,,,,,,,08/10/1974,Kismaayo,Somalia,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):AQD0226 (UN Ref):QDi.141 Present in Somalia as of Apr. 2009 following transfer from United Kingdom. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5950651,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7866 +CIT,Abu,Ayn,Tok,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +CIT,Abu,Ayn,Tok,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,96-06-06 Flat Sri Kota,Bandar Tun Razak,,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,56100,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +CIT,Abu,Ayn,Tok,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,B-3B-19 Glenview Villa,Jalan 49 Off Jalan Kuari,Taman Pinggiran Cheras,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +CITC,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0124 (UK Statement of Reasons):Has undertaken procurement in support of Iran's nuclear and missile programmes (Phone number):(1) +98 21 44667322 (2) +98 21 44667323 (Website):(1) www.citc.ir (2) www.tco.ac.ir (3) www.tco.gov.ir (4) www.tco.ir (Email address):tco@tco.ac.ir (Type of entity):Government Ministry,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,08/03/2022,11221 +CITC,,,,,,,,,,,,,,,,,,,No 7 East Avesta Rd,Sheykh Bahaie Street,Sheykh Bahaie Sq,,,Tehran,1995859611,Iran,(UK Sanctions List Ref):INU0124 (UK Statement of Reasons):Has undertaken procurement in support of Iran's nuclear and missile programmes (Phone number):(1) +98 21 44667322 (2) +98 21 44667323 (Website):(1) www.citc.ir (2) www.tco.ac.ir (3) www.tco.gov.ir (4) www.tco.ir (Email address):tco@tco.ac.ir (Type of entity):Government Ministry,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,08/03/2022,11221 +CITIZENS' ASSOCIATION FOR SUPPORT AND PREVENTION OF LIES - FURQAN,,,,,,,,,,,,,,,,,,,30a Put Mladih Muslimana (ex Pavla Lukaca Street),,,,,Sarajevo,71 000,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +CITIZENS' ASSOCIATION FOR SUPPORT AND PREVENTION OF LIES - FURQAN,,,,,,,,,,,,,,,,,,,42 Muhameda Hadzijahica,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +CITIZENS' ASSOCIATION FOR SUPPORT AND PREVENTION OF LIES - FURQAN,,,,,,,,,,,,,,,,,,,70 and 53 Strosmajerova Street,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +CITIZENS' ASSOCIATION FOR SUPPORT AND PREVENTION OF LIES - FURQAN,,,,,,,,,,,,,,,,,,,72 ul. Strossmajerova,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +CITIZENS' ASSOCIATION FOR SUPPORT AND PREVENTION OF LIES - FURQAN,,,,,,,,,,,,,,,,,,,Zlatnih Ljiljana Street,,,,,Zavidovici,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +CJSC BELBIZNESLIZING,,,,,,,,,,,,,,,,,,,office 919,29 Masherov Ave.,,,,Minsk,,Belarus,(UK Sanctions List Ref):BEL0121 (UK Statement of Reasons):CJSC Belbizneslizing is an involved person under The Republic of Belarus (Sanctions) (EU Exit) 2019 because it is or has been obtaining a benefit from or supporting the Government of Belarus by carrying on business in a sector of strategic importance to the Government of Belarus.,Entity,Primary name,,Belarus,24/03/2022,24/03/2022,12/07/2022,14980 +CJSC VAD AKTSIONERNOE OBSHCHESTVO VAD,,,,,,,,,,,,,,,,,,,,,,133 Chernyshevskogo Street,Vologda,Vologodskaya Oblast,160019,Russia,"(UK Sanctions List Ref):RUS0167 (UK Statement of Reasons):CJSC VAD is the main contractor for the construction of the Tavrida Highway in Crimea, the road over the Kerch Bridge and the access roads to it. Tavrida Highway will provide transportation access to Crimea through a system of newly constructed roadways that serve as a primary connection to the Kerch Bridge. Therefore CJSC VAD is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Website):www.zaovad.com (Email address):office@zaovad.com (Type of entity):Leading corporate group engaged in construction works for the oil and gas industry. Involved in trunk pipeline construction, offshore construction, gasification of constituent entities to the RF. (Business Reg No):1037804006811 (Russia). Tax ID 7802059185",Entity,Primary name variation,,Russia,31/07/2018,31/12/2020,16/09/2022,13705 +CJSC VAD AKTSIONERNOE OBSHCHESTVO VAD,,,,,,,,,,,,,,,,,,,,,122 Grazhdanskiy Prospect,Suite 5,Liter A,St Petersburg,195267,Russia,"(UK Sanctions List Ref):RUS0167 (UK Statement of Reasons):CJSC VAD is the main contractor for the construction of the Tavrida Highway in Crimea, the road over the Kerch Bridge and the access roads to it. Tavrida Highway will provide transportation access to Crimea through a system of newly constructed roadways that serve as a primary connection to the Kerch Bridge. Therefore CJSC VAD is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Website):www.zaovad.com (Email address):office@zaovad.com (Type of entity):Leading corporate group engaged in construction works for the oil and gas industry. Involved in trunk pipeline construction, offshore construction, gasification of constituent entities to the RF. (Business Reg No):1037804006811 (Russia). Tax ID 7802059185",Entity,Primary name variation,,Russia,31/07/2018,31/12/2020,16/09/2022,13705 +CLEANSEAS CORAL,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0101 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V SAM MA 2 imported refined petroleum products in October, early November and mid-November 2017 through multiple ship-to-ship transfers. Listed as asset of Korea Samma Shipping Co (OFSI ID: 13636, UN Reference Number: UN Ref KPe.065) (IMO number):8106496 (Current owners):Korea Samma Shipping (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):962 (Length of ship):70 (Year built):1981",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13652 +CMC,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0127 (UN Ref):KPe.051 The Central Military Commission is responsible for the development and implementation of the Workers’ Party of Korea’s military policies, commands and controls the DPRK’s military, and directs the country’s military defense industries in coordination with the State Affairs Commission.",Entity,AKA,,Democratic People's Republic of Korea,12/09/2017,11/09/2017,31/12/2020,13541 +CNS AVIATION LLC,,,,,,,"ДОМ ""СИНС АВИА""",,,,,,,,,,,,"5, литера А",Ulitsa Dzerzhinskogo,Krasnodar,,,Krasnodar Krai,350020,Russia,"(UK Sanctions List Ref):MYA0047 (UK Statement of Reasons):The Myanmar Armed Forces have a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. SINS AVIA Trading House LLC is a Russian company which has responsible for the supply of parts and upkeep of aircraft for the Myanmar Armed Forces since the coup in February 2021. Therefore, SINS AVIA Trading House LLC has been and is involved in the supply of restricted goods to Myanmar. (Phone number):+7 988 247-22-23 (Website):https://cns-aviation.ru/ (Email address):office@cns-aviation.ru (Type of entity):Private Business (Business Reg No):1192375000894",Entity,AKA,,Myanmar,16/06/2022,16/06/2022,24/06/2022,15401 +COEFFICIENT DEFENSE FOUNDATION,,,,,,,,,,,,,,,,,,,P.O. Box 2230,,,,Al-Hameh,Damascus Countryside,,,"(UK Sanctions List Ref):SYR0309 Industrial - Military (UK Statement of Reasons):There are reasonable grounds to suspect that the Industrial Establishment of Defence is or has been involved in the repression of the civilian population and engaging in and promoting the repression and otherwise supported the regime in that it is has produced and supplied military equipment to the regime, and is associated with members of the regime, in particular the Syrian military.",Entity,AKA,,Syria,23/07/2014,31/12/2020,13/05/2022,13031 +COEFFICIENT DEFENSE FOUNDATION,,,,,,,,,,,,,,,,,,,P.O. Box 2330,Al Thawraa Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0309 Industrial - Military (UK Statement of Reasons):There are reasonable grounds to suspect that the Industrial Establishment of Defence is or has been involved in the repression of the civilian population and engaging in and promoting the repression and otherwise supported the regime in that it is has produced and supplied military equipment to the regime, and is associated with members of the regime, in particular the Syrian military.",Entity,AKA,,Syria,23/07/2014,31/12/2020,13/05/2022,13031 +COMBATANT FORCE FOR THE LIBERATION OF RWANDA,,,,,,,,,,,,,,,,,,,,,,,,North Kivu,,Congo (Democratic Republic),(UK Sanctions List Ref):DRC0019 (UN Ref):CDe.005 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278442 (Email address):Fdlr@fmx.de. fdlr@gmx.net. fdlrsrt@gmail.com. fldrrse@yahoo.fr. humura2020@gmail.com,Entity,AKA,,Democratic Republic of the Congo,23/01/2013,31/12/2012,19/01/2021,12840 +COMMANDER TARIQ AFRIDI GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +COMMANDER TARIQ AFRIDI GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +COMMERCIAL BANK OF SYRIA,,,,,,,,,,,,,,,,,,,,,,,,Beirut,,Lebanon,(UK Sanctions List Ref):SYR0290 Subsidiary branch called Syrian Lebanese Commercial Bank is based in Beirut (UK Statement of Reasons):State-owned bank providing financial support to the regime (Phone number):+963 11 2218890 (Website):http://cbs-bank.sy/En-index.php (Email address):dir.cbs@mail.sy (Type of entity):Finance. State-owned (Subsidiaries):Syrian Lebanese Commercial Bank in Beirut,Entity,Primary name,,Syria,14/10/2011,31/12/2020,01/02/2021,12203 +COMMERCIAL BANK OF SYRIA,,,,,,,,,,,,,,,,,,,Aleppo Branch,Kastel Hajjarin St.,,,P.O. Box 2,Aleppo,,Syria,(UK Sanctions List Ref):SYR0290 Subsidiary branch called Syrian Lebanese Commercial Bank is based in Beirut (UK Statement of Reasons):State-owned bank providing financial support to the regime (Phone number):+963 11 2218890 (Website):http://cbs-bank.sy/En-index.php (Email address):dir.cbs@mail.sy (Type of entity):Finance. State-owned (Subsidiaries):Syrian Lebanese Commercial Bank in Beirut,Entity,Primary name,,Syria,14/10/2011,31/12/2020,01/02/2021,12203 +COMMERCIAL BANK OF SYRIA,,,,,,,,,,,,,,,,,,,Damascus Branch,Moawiya St.,,,P.O. Box 2231,Damascus,,Syria,(UK Sanctions List Ref):SYR0290 Subsidiary branch called Syrian Lebanese Commercial Bank is based in Beirut (UK Statement of Reasons):State-owned bank providing financial support to the regime (Phone number):+963 11 2218890 (Website):http://cbs-bank.sy/En-index.php (Email address):dir.cbs@mail.sy (Type of entity):Finance. State-owned (Subsidiaries):Syrian Lebanese Commercial Bank in Beirut,Entity,Primary name,,Syria,14/10/2011,31/12/2020,01/02/2021,12203 +COMMERCIAL BANK OF SYRIA,,,,,,,,,,,,,,,,,,,Yousef Azmeh Square,,,,P.O. Box 933,Damascus,,Syria,(UK Sanctions List Ref):SYR0290 Subsidiary branch called Syrian Lebanese Commercial Bank is based in Beirut (UK Statement of Reasons):State-owned bank providing financial support to the regime (Phone number):+963 11 2218890 (Website):http://cbs-bank.sy/En-index.php (Email address):dir.cbs@mail.sy (Type of entity):Finance. State-owned (Subsidiaries):Syrian Lebanese Commercial Bank in Beirut,Entity,Primary name,,Syria,14/10/2011,31/12/2020,01/02/2021,12203 +COMMITTEE FOR SPACE TECHNOLOGY,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0167 (UN Ref):KPe.012 The Korean Committee for Space Technology (KCST) orchestrated the DPRK’s launches on 13 April 2012 and 12 December 2012 via the satellite control center and Sohae launch area.,Entity,AKA,,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12847 +COMMUNIST PARTY OF THE PHILIPPINES,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0026 (UK Statement of Reasons):The Communist Party of the Philippines directly controls its military wing, the New People's Army (NPA), which has claimed responsibility for a number of terrorist attacks in the Philippines.",Entity,Primary name,,Counter-Terrorism (International),14/08/2002,31/12/2020,31/12/2020,7114 +COMPAGNIE AERIENNE DES GRANDS LACS (CAGL),,,,,,,,,,,,,,,,,,,,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0017 (UN Ref):CDe.003 As of December 2008, GLBC no longer had any operational aircraft, although several aircraft continued flying in 2008 despite UN sanctions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278381",Entity,Primary name,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9070 +COMPAGNIE AERIENNE DES GRANDS LACS (CAGL),,,,,,,,,,,,,,,,,,,,,,,,Gisenyi,,Rwanda,"(UK Sanctions List Ref):DRC0017 (UN Ref):CDe.003 As of December 2008, GLBC no longer had any operational aircraft, although several aircraft continued flying in 2008 despite UN sanctions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278381",Entity,Primary name,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9070 +COMPAGNIE AERIENNE DES GRANDS LACS (CAGL),,,,,,,,,,,,,,,,,,,Avenue President Mobutu,,,,,Goma,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0017 (UN Ref):CDe.003 As of December 2008, GLBC no longer had any operational aircraft, although several aircraft continued flying in 2008 despite UN sanctions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278381",Entity,Primary name,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9070 +COMPAGNIE AERIENNE DES GRANDS LACS (CAGL),,,,,,,,,,,,,,,,,,,Avenue Président Mobutu,,,,,Goma,,,"(UK Sanctions List Ref):DRC0017 (UN Ref):CDe.003 As of December 2008, GLBC no longer had any operational aircraft, although several aircraft continued flying in 2008 despite UN sanctions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278381",Entity,Primary name,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9070 +COMPAGNIE AERIENNE DES GRANDS LACS (CAGL),,,,,,,,,,,,,,,,,,,PO BOX 315,,,,,Goma,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0017 (UN Ref):CDe.003 As of December 2008, GLBC no longer had any operational aircraft, although several aircraft continued flying in 2008 despite UN sanctions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278381",Entity,Primary name,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9070 +COMPANIA DE DEZVOLTARE SIMATEC,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0117 (UK Statement of Reasons):Simatec Development Company has procured frequency inverters used to power uranium enrichment centrigues for UN designated Kalaye Electric Company (KEC).,Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12819 +COMPANY FOR METALIC CONSTRUCTIONS & MECHANICAL INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 35202,Industrial Zone,Al-Qadam Road,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +COMPANY FOR METALIC CONSTRUCTIONS & MECHANICAL INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box: 1149,Rural Damascus: Adra,Industrial Zone,next to Teshreen Mill,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +COMPANY OF MELALLIC CONSTRUCTIONS AND MECHANICAL INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 35202,Industrial Zone,Al-Qadam Road,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +COMPANY OF MELALLIC CONSTRUCTIONS AND MECHANICAL INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box: 1149,Rural Damascus: Adra,Industrial Zone,next to Teshreen Mill,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +COMPOSITE INSTITUTE OF IRAN,,,,,,,,,,,,,,,,,,,Iran Composites Institute,Iranian University of Science and Technology,16845-188,,,Tehran,,Iran,(UK Sanctions List Ref):INU0074 (UK Statement of Reasons):Iran Composites Institute has provided centrifuge components to Iran Centrifuge Technology Company (TESA). (Phone number):+98 2173912858 (Website):http://www.irancomposites.org. (Email address):ici@iust.ac.ir,Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,31/12/2020,12815 +CONCERN ALMAZ-ANTEY,,,,,,,,,,,,,,,,,,,,,,,41 ul. Vereiskaya,Moscow,121471,Russia,"(UK Sanctions List Ref):RUS0178 (UK Statement of Reasons):Almaz-Antey is a Russian state-owned company. It manufactures anti-aircraft weaponry including surface-to-air missiles which it supplies to the Russian army. This weaponry is deployed in Crimea. Almaz-Antey has carried out business in Crimea. The Russian authorities have been providing heavy weaponry to separatists in Eastern Ukraine, contributing to the destabilization of Ukraine. These weapons are used by the separatists, including for shooting down airplanes (this has included MH17) . As a state-owned company making available resources which contribute to the undermining of the territorial integrity, sovereignty and independence of Ukraine, Almaz-Antey contributes to the destabilization of Ukraine. (Phone number):(1) (+495) 276 29 75 (2) (+495) 2762980 (Website):http://almaz-antey.ru/about/27/ (Email address):antey@almaz-antey.ru (Type of entity):Manufacturing and supplying anti-aircraft weapons (Parent company):Strela",Entity,AKA,,Russia,31/07/2014,31/12/2020,16/09/2022,13076 +CONCERN KALASHNIKOV,,,,,,,,,,,,,,,,,,,3B,Deryabina avenue,,,,Izhevsk,394018,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +CONCERN KALASHNIKOV,,,,,,,,,,,,,,,,,,,3,Derjabin Pr,,,,Izhevsk,426006,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +CONGOMET TRADING HOUSE,,,,,,,,,,,,,,,,,,,,,,,Butembo,North Kivu,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0018 (UN Ref):CDe.004 No longer exists as a gold trading house in Butembo, North Kivu. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278420",Entity,Primary name,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9069 +CONQUEST OF THE LEVANT FRONT,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +CONQUEST OF THE LEVANT FRONT,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +COOPERATIVE FOUNDATION OF THE REVOLUTIONARY GUARDS,,,,,,,,,,,,,,,,,,,Niayes Highway,Seoul Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0059 (UK Statement of Reasons):Bonyad Taavon Sepah, also known as the IRGC Cooperative Foundation, was formed by the commanders of the IRGC to structure the IRGC's investments. It is controlled by the IRGC. Bonyad Taavon Sepah's Board of Trustees is composed of nine members, of whom eight are IRGC members. These officers include the IRGC's Commander in Chief, who is the Chairman of the Board of Trustees, the Supreme Leader's representative to the IRGC , the Basij Commander, the IRGC Ground Forces Commander, the IRGC Air Force Commander, the IRGC Navy Commander, the head of the IRGC Information Security Organisation, a senior IRGC officer from the Armed Forces general staff and a senior IRGC officer from MODAFL. (Type of entity):Foundation (Subsidiaries):Ansar Bank. Mehr Bank",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11580 +COPLAN,,,,,,,,,,01/01/1960,,,Guinea,,,,,Minister of Presidential Security,,,,,,,,,(UK Sanctions List Ref):GUC0004 (UK Statement of Reasons):Person identified as responsible for the violent repression and events in Guinea on 28 September 2009 or the aftermath of that violent repression. (Gender):Male,Individual,AKA,,Guinea,24/12/2009,31/12/2020,31/12/2020,10975 +COSSACK NATIONAL GUARD,,,,,,,,,,,,,,,,,,,,,,,,October (C) District. St Zaplavskaya. Str Shosseynaya 1,346465,Russia,"(UK Sanctions List Ref):RUS0168 (UK Statement of Reasons):Armed separatist group which has actively supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. Commanded by and therefore associated with a listed person Nikolay KOZITSYN. Reportedly part of the so called ‘2nd Army Corps’ of the ‘Lugansk People's Republic’. (Website):http://vk.com/kazak_nac_guard (Type of entity):Armed Separatist Group",Entity,Primary name,,Russia,16/02/2015,31/12/2020,31/12/2020,13218 +COTTON MARKETING ORGANISATION,,,,,,,,,,,,,,,,,,,Bab Al-Faraj,,,,P.O. Box 729,Aleppo,,,(UK Sanctions List Ref):SYR0291 (UK Statement of Reasons):State-owned company. Provides financial support to the Syrian regime. (Phone number):(1) +96321 2239495 (2) +96321 2239496 (3) +96321 2239497 (4) +96321 2239498 (Website):www.cmo.gov.sy (Email address):Cmo-aleppo@mail.sy,Entity,Primary name,,Syria,24/07/2012,31/12/2020,13/05/2022,12733 +CP,,,,,,,,,,,,,,,,,,,Police Headquarters,Attar street,Vanak Square,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0001 (UK Statement of Reasons):The Iranian Cyber Police, founded in January 2011, is a unit of the Islamic Republic of Iran Police, which at the time of its inception until early 2015 was headed by Esmail Ahmadi-Moqaddam (listed). Ahmadi-Moqaddam underlined that the Cyber Police would take on anti-revolutionary and dissident groups who used internet-based social networks in 2009 to trigger protests against the re-election of President Mahmoud Ahmadinejad. In January 2012, the Cyber Police issued new guidelines for internet cafés, requiring users to provide personal information that would be kept by café owners for six months, as well as a record of the websites they visited. The rules also require café owners to install closed-circuit television cameras and maintain the recordings for six months. These new rules may create a logbook that authorities can use to track down activists or whoever is deemed a threat to national security. In June 2012, Iranian media reported that the Cyber Police would be launching a crackdown on virtual private networks (VPNs). On 30 October 2012, the Cyber Police arrested the blogger Sattar Beheshti without a warrant for ‘actions against national security on social networks and Facebook’. Beheshti had criticised the Iranian government in his blog. Beheshti was found dead in his prison cell on 3 November 2012, and is believed to have been tortured to death by the Cyber Police authorities. (Website):(1) http://cyber.police.ir/ (2) www.gerdab.ir (Email address):webmaster@cyberpolice.ir (Type of entity):Enterprise - Police Agency",Entity,AKA,,Iran (Human Rights),12/03/2013,31/12/2020,28/01/2022,12864 +CRAWFORD,SHANE,DOMINIC,,,,,,,,22/02/1986,Mount Hope,Trinidad and Tobago,Trinidad and Tobago,(1) TA959547 (2) T1071839,(1) Trinidad and Tobago number. Issued on 19 Nov. 2013. Issued by Immigration Division of Trinidad and Tobago. Expiration date 18 Nov. 2018. (2) Trinidad and Tobago number. Issued on 8 Nov. 2004. Issued by Immigration Division of Trinidad and Tobago. Expiration date 7 Nov. 2014,(1) 19860222007 (2) B394445 (3) 892124B,(1) Trinidad and Tobago National Identification Card. Issued on 16 Jun. 2011. Expiration date 16 Jun. 2016. (2) Trinidad and Tobago Birth Certificate. Issued on 23 Jan. 2007 (3) Trinidad and Tobago Driver's Permit. Issued on 30 Aug. 2007. Expiration date 30 Aug. 2010,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0316 (UN Ref):QDi.410 English language propagandist for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115). Wanted in Trinidad and Tobago for possession of ammunition and firearms and receiving stolen goods. Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6123498. Syria (as at May 2014) (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/08/2017,18/08/2017,31/12/2020,13539 +CRAWFORD,SHANE,DOMINIC,,,,,,,,22/02/1986,Mount Hope,Trinidad and Tobago,Trinidad and Tobago,(1) TA959547 (2) T1071839,(1) Trinidad and Tobago number. Issued on 19 Nov. 2013. Issued by Immigration Division of Trinidad and Tobago. Expiration date 18 Nov. 2018. (2) Trinidad and Tobago number. Issued on 8 Nov. 2004. Issued by Immigration Division of Trinidad and Tobago. Expiration date 7 Nov. 2014,(1) 19860222007 (2) B394445 (3) 892124B,(1) Trinidad and Tobago National Identification Card. Issued on 16 Jun. 2011. Expiration date 16 Jun. 2016. (2) Trinidad and Tobago Birth Certificate. Issued on 23 Jan. 2007 (3) Trinidad and Tobago Driver's Permit. Issued on 30 Aug. 2007. Expiration date 30 Aug. 2010,,349 Dass Branch Trace,Dass Trace,Enterprise Chaguanas,,,,,Trinidad and Tobago,"(UK Sanctions List Ref):AQD0316 (UN Ref):QDi.410 English language propagandist for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115). Wanted in Trinidad and Tobago for possession of ammunition and firearms and receiving stolen goods. Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6123498. Syria (as at May 2014) (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/08/2017,18/08/2017,31/12/2020,13539 +CRAWFORD,SHANE,DOMINIC,,,,,,,,22/02/1986,Mount Hope,Trinidad and Tobago,Trinidad and Tobago,(1) TA959547 (2) T1071839,(1) Trinidad and Tobago number. Issued on 19 Nov. 2013. Issued by Immigration Division of Trinidad and Tobago. Expiration date 18 Nov. 2018. (2) Trinidad and Tobago number. Issued on 8 Nov. 2004. Issued by Immigration Division of Trinidad and Tobago. Expiration date 7 Nov. 2014,(1) 19860222007 (2) B394445 (3) 892124B,(1) Trinidad and Tobago National Identification Card. Issued on 16 Jun. 2011. Expiration date 16 Jun. 2016. (2) Trinidad and Tobago Birth Certificate. Issued on 23 Jan. 2007 (3) Trinidad and Tobago Driver's Permit. Issued on 30 Aug. 2007. Expiration date 30 Aug. 2010,,LP41 Ballisier Road,Smith Field Lands,Wallerfield,County of St. George East,,,,Trinidad and Tobago,"(UK Sanctions List Ref):AQD0316 (UN Ref):QDi.410 English language propagandist for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115). Wanted in Trinidad and Tobago for possession of ammunition and firearms and receiving stolen goods. Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6123498. Syria (as at May 2014) (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/08/2017,18/08/2017,31/12/2020,13539 +CRAWFORD,SHANE,DOMINIC,,,,,,,,22/02/1986,Mount Hope,Trinidad and Tobago,Trinidad and Tobago,(1) TA959547 (2) T1071839,(1) Trinidad and Tobago number. Issued on 19 Nov. 2013. Issued by Immigration Division of Trinidad and Tobago. Expiration date 18 Nov. 2018. (2) Trinidad and Tobago number. Issued on 8 Nov. 2004. Issued by Immigration Division of Trinidad and Tobago. Expiration date 7 Nov. 2014,(1) 19860222007 (2) B394445 (3) 892124B,(1) Trinidad and Tobago National Identification Card. Issued on 16 Jun. 2011. Expiration date 16 Jun. 2016. (2) Trinidad and Tobago Birth Certificate. Issued on 23 Jan. 2007 (3) Trinidad and Tobago Driver's Permit. Issued on 30 Aug. 2007. Expiration date 30 Aug. 2010,,Reyhanli,Hatay,,,,,,Turkey,"(UK Sanctions List Ref):AQD0316 (UN Ref):QDi.410 English language propagandist for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115). Wanted in Trinidad and Tobago for possession of ammunition and firearms and receiving stolen goods. Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6123498. Syria (as at May 2014) (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/08/2017,18/08/2017,31/12/2020,13539 +CREDIT BANK OF MOSCOW,,,,,,,МОСКОВСКИЙ КРЕДИТНЫЙ БАНК,Cyrillic,Russian,,,,,,,,,,"Lukov pereulok 2, bldg. 1",,,,,Moscow,107045,Russia,"(UK Sanctions List Ref):RUS1119 (UK Statement of Reasons):CREDIT BANK OF MOSCOW is a Russian bank, which has been carrying on business in the financial services sector, a sector of strategic significance to the Government of Russia. It has therefore been involved in obtaining a benefit from or supporting the Government of Russia. (Phone number):+7 495 797-42-42 (Website):www.mkb.ru (Email address):info@mkb.ru",Entity,Primary name,,Russia,06/04/2022,06/04/2022,27/05/2022,15077 +CREDIT BANK OF MOSCOW PJSC,,,,,,,,,,,,,,,,,,,"Lukov pereulok 2, bldg. 1",,,,,Moscow,107045,Russia,"(UK Sanctions List Ref):RUS1119 (UK Statement of Reasons):CREDIT BANK OF MOSCOW is a Russian bank, which has been carrying on business in the financial services sector, a sector of strategic significance to the Government of Russia. It has therefore been involved in obtaining a benefit from or supporting the Government of Russia. (Phone number):+7 495 797-42-42 (Website):www.mkb.ru (Email address):info@mkb.ru",Entity,Primary name variation,,Russia,06/04/2022,06/04/2022,27/05/2022,15077 +CREDIT BANK OF MOSCOW PUBLIC JOINT STOCK COMPANY,,,,,,,,,,,,,,,,,,,"Lukov pereulok 2, bldg. 1",,,,,Moscow,107045,Russia,"(UK Sanctions List Ref):RUS1119 (UK Statement of Reasons):CREDIT BANK OF MOSCOW is a Russian bank, which has been carrying on business in the financial services sector, a sector of strategic significance to the Government of Russia. It has therefore been involved in obtaining a benefit from or supporting the Government of Russia. (Phone number):+7 495 797-42-42 (Website):www.mkb.ru (Email address):info@mkb.ru",Entity,Primary name variation,,Russia,06/04/2022,06/04/2022,27/05/2022,15077 +CREST,,,,,,,,,,,,,,,,,,,44,190th Street West,,,,Tehran,16539-75751,,(UK Sanctions List Ref):INU0105 (UK Statement of Reasons):An entity associated with MODAFL that has carried out research into technologies with an application in Iran's nuclear programme. (Type of entity):Import/Export,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12263 +CRIMEAN RAILWAY (FEDERAL STATE UNITED ENTERPRISE),,,,,,,,,,,,,,,,,,,Pavlenko St 34,,,,,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",95006,Ukraine,"(UK Sanctions List Ref):RUS0224 Managing Director: Mikhail Goncharov – General Director from 30 June 2021 (UK Statement of Reasons):The Crimea Railway (Federal State United Enterprise) continues to participated in the project of connecting the railway infrastructures of the illegally annexed Crimea and Russia by being owner and operator of the railway tracks and locomotives on the bridge over the Kerch Strait connecting Russia and the illegally annexed Crimean peninsula. Therefore, it supports the consolidation of the illegally annexed Crimean peninsula into the Russian Federation which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Phone number):+7 (3652) 66-24-32 (Website):www.crimearw.ru (Email address):ngkkjd@mail.ru (Type of entity):Railway (Business Reg No):9102157783",Entity,Primary name,,Russia,02/10/2020,31/12/2020,16/09/2022,13930 +CRIMEAN REPUBLICAN ENTERPRISE AZOV DISTILLERY PLANT,,,,,,,Крымское республиканское предприятие ‘Азовский ликероводочный Завод’,,,,,,,,,,,,,,,40 Zeleznodorozhnaya Str.,96178 Town of Azov,Jankoysky District,,,"(UK Sanctions List Ref):RUS0169 Business Sector: distillery (UK Statement of Reasons):The ownership of the entity was transferred contrary to the Ukrainian law. On 9 April the 'Presidium of the Parliament of Crimea' adopted a decision No 1991-6/14 'On the amendments to the Resolution of the State Council of the Republic of Crimea' of 26 March 2014 No. 1836-6/14 'On nationalisation of the property of enterprises, institutions and organisations of agro industrial complex, located in the territory of the Republic of Crimea' declaring the appropriation of assets belonging to the 'Azovsky likerovodochny Zavod' on behalf of the 'Republic of Crimea'. The enterprise is thus effectively confiscated by the Crimean 'authorities'. Ongoing bankruptcy proceedings. (Type of entity):State-Owned Enterprise (Business Reg No):1271681",Entity,Primary name,,Russia,25/07/2014,31/12/2020,31/12/2020,13059 +CROCUS NANO ELECTRONICS,,,,,,,КРОКУС НАНОЭЛЕКТРОНИКА,Cyrillic,Russian,,,,,,,,,,Volgogradsky prospect 42,building 5,"floor 1, room 1",,,Moscow,109316,Russia,"(UK Sanctions List Ref):RUS1436 (UK Statement of Reasons):Crocus Nano Electronics (CNE) is a leading electronics company in Russia. CNE therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the electronics sector. (Phone number):7 (495) 640 51 86 (Website):www.crocusnano.com (Email address):info@crocusnano.com",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15369 +CRUISE MISSILE INDUSTRY GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0138 (UN Ref):IRe.010 Production and development of cruise missiles. Responsible for naval missiles including cruise missiles. [Old Reference # E.47.A.7],Entity,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,31/12/2020,9041 +CUCHI,,,,,,,,,,10/12/1963,Bogota,Colombia,Colombia,PE069914,Colombia,79324956,Colombian,,,,,,,,,,"(UK Sanctions List Ref):GAC0026 (UK Statement of Reasons):Alvaro Enrique Pulido Vargas (aka German Enrique Rubio Salas) is a close business associate of Alex Saab. With him, he engaged in serious corruption in Venezuela through his participation in two of Venezuela’s public programmes: the ‘Local Committees for Supply and Production’ (CLAP) and the Great Housing Scheme Venezuela (GMVV). In each case, contracts were improperly granted for the benefit of an official and/or for another person including Pulido Vargas himself. In the CLAP programme, basic foodstuffs were provided at highly inflated prices. For GMVV, Global Construction Fund only delivered a small proportion of the products they had agreed to deliver, misappropriating the remainder of the funds. (Gender):Male",Individual,AKA,,Global Anti-Corruption,22/07/2021,22/07/2021,12/08/2021,14129 +CUMAR,Asan,Mahad,,,,,,,,10/04/1979,Garissa,Kenya,,A1180173,Kenya,23446085,,,,,,,,Nairobi,,Kenya,(UK Sanctions List Ref):SOM0009 (UN Ref):SOi.009 Possibly Ethiopian,Individual,AKA,Good quality,Somalia,27/09/2011,28/07/2011,31/12/2020,12029 +CVIJANOVIC,Zeljka,,,,,President,Жељка Цвијановић,Cyrillic,Bosnian,02/08/1967,Banja Luka,Bosnia and Herzegovina,Bosnia and Herzegovina,,,,,"President of Republika Srpska, Bosnia and Herzegovina",Bana Milosavljevica 4,,,,,Banja Luka,78000,Bosnia and Herzegovina,"(UK Sanctions List Ref):BIH0001 Previously 11th Prime Minister of Republika Srpska. She is a member of the Alliance of Independent Social Democrats party (SNSD/СНСД), also a member of the party’s Executive Board and its Main Board. (UK Statement of Reasons):Zeljka Cvijanovic, as President of Republika Srpska, is working with Milorad Dodik (also designated under the Bosnia and Herzegovina (Sanctions) (EU Exit) Regulations 2020) to undermine the territorial integrity, international personality or constitutional order of Bosnia and Herzegovina, through enacting the unilateral transfer of state competencies from the Government of Bosnia and Herzegovina to Republika Srpska, signing into law the legislative steps to begin to degrade/destroy state institutions as well as establishing an independent tax authority, medical agency, and army in the Republika Srpska. Cvijanovic’s actions are unconstitutional and go against the central tenets of the Dayton Peace Agreement as well as undermine the state’s competences in security. (Gender):Female",Individual,Primary name,,Bosnia and Herzegovina,11/04/2022,11/04/2022,11/04/2022,15081 +CVNX,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CYB0003 (UK Statement of Reasons):Huaying Haitai, known in cyber security circles as APT10 (Advanced Persistent Threat 10), Red Apollo, CVNX, Stone Panda, MenuPass and Potassium, was involved in relevant cyber activity Operation Cloud Hopper, one of the most significant and widespread cyber instructions to date. They conducted data interference through the theft of intellectual property and sensitive commercial data over many years. Huaying Haitai targeted companies across six continents and sectors banking and finance, government, aviation, space, and satellite technology, manufacturing technology, medical, oil and gas, mining, communications technology, computer processing technology, and defence technology. This activity undermined the prosperity of the United Kingdom and countries other than the United Kingdom (Website):huayinghaitai.com (Type of entity):Company",Entity,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13909 +CYBER POLICE,,,,,,,مرکز به جرایم سازمان یافته – دفتر جرم و جنایت سایبر را مورد تحقیق قرار دهید,,,,,,,,,,,,Police Headquarters,Attar street,Vanak Square,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0001 (UK Statement of Reasons):The Iranian Cyber Police, founded in January 2011, is a unit of the Islamic Republic of Iran Police, which at the time of its inception until early 2015 was headed by Esmail Ahmadi-Moqaddam (listed). Ahmadi-Moqaddam underlined that the Cyber Police would take on anti-revolutionary and dissident groups who used internet-based social networks in 2009 to trigger protests against the re-election of President Mahmoud Ahmadinejad. In January 2012, the Cyber Police issued new guidelines for internet cafés, requiring users to provide personal information that would be kept by café owners for six months, as well as a record of the websites they visited. The rules also require café owners to install closed-circuit television cameras and maintain the recordings for six months. These new rules may create a logbook that authorities can use to track down activists or whoever is deemed a threat to national security. In June 2012, Iranian media reported that the Cyber Police would be launching a crackdown on virtual private networks (VPNs). On 30 October 2012, the Cyber Police arrested the blogger Sattar Beheshti without a warrant for ‘actions against national security on social networks and Facebook’. Beheshti had criticised the Iranian government in his blog. Beheshti was found dead in his prison cell on 3 November 2012, and is believed to have been tortured to death by the Cyber Police authorities. (Website):(1) http://cyber.police.ir/ (2) www.gerdab.ir (Email address):webmaster@cyberpolice.ir (Type of entity):Enterprise - Police Agency",Entity,Primary name,,Iran (Human Rights),12/03/2013,31/12/2020,28/01/2022,12864 +D,Abu,Gharib,,,,,,,,00/08/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +D,Abu,Gharib,,,,,,,,00/09/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +D,Abu,Gharib,,,,,,,,00/00/1976,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +DAABOUL,Samir,,,,,,,,,04/09/1965,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0143 (UK Statement of Reasons):Holds the rank of Brigadier General, in post after May 2011. As a senior military officer he is responsible for the violent repression against the civilian population and involved in the storage and deployment of chemical weapons. He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13493 +DABUL,Samir,,,,,,دعبول سمير,,,04/09/1965,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0143 (UK Statement of Reasons):Holds the rank of Brigadier General, in post after May 2011. As a senior military officer he is responsible for the violent repression against the civilian population and involved in the storage and deployment of chemical weapons. He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name,,Syria,18/07/2017,31/12/2020,31/12/2020,13493 +DADONOV,Oleg,Viacheslavovich,,,,,ДАДОНОВ Олег Вячеславович,Cyrillic,Russian,06/07/1968,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1265 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15217 +DADONOV,Oleg,Vyacheslavovich,,,,,,,,06/07/1968,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1265 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15217 +DAE HUNG 12,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0102 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V YU JONG 2 was involved in-ship-to ship transfer operations for oil in November 2017. M/V YU JONG 2 was also involved in a ship-to-ship transfer operation, likely for oil, with M/V MIN NING DE YOU 078 on 16 February 2018. Listed as asset of Korea Yujong Shipping Co Ltd (OFSI ID: 13637, UN Reference Number: UN Ref KPe.066) (IMO number):8604917 (Current owners):Korea Yujong Shipping (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):748 (Length of ship):62 (Year built):1986",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13653 +DAE HUNG 6,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0099 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK merchant vessel M/V SAM JONG 1 was involved in ship-to-ship transfer operations of oil in late January 2018. Listed as asset of Korea Samjong Shipping (OFSI ID: 13635, UN Reference Number: UN Ref KPe.064) (IMO number):8405311 (Current owners):Korea Samjong Shipping (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):1038 (Length of ship):70 (Year built):1984",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13650 +DAE-DONG CREDIT BANK,,,,,,,,,,,,,,,,,,,,,Ansan-dong,Botonggang Hotel,Pongchon,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0131 (UN Ref):KPe.023 SWIFT: DCBKKPPY. Daedong Credit Bank has provided financial services to the Korea Mining Development Trading Corporation (KOMID) and Tanchon Commercial Bank. Since at least 2007, DCB has facilitated hundreds of financial transactions worth millions of dollars on behalf of KOMID and Tanchon Commercial Bank. In some cases, DCB has knowingly facilitated transactions by using deceptive financial practices.",Entity,AKA,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13341 +DAE-DONG CREDIT BANK,,,,,,,,,,,,,,,,,,,,Suite 401,Potonggang Hotel,Ansan-Dong,Pyongchon District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0131 (UN Ref):KPe.023 SWIFT: DCBKKPPY. Daedong Credit Bank has provided financial services to the Korea Mining Development Trading Corporation (KOMID) and Tanchon Commercial Bank. Since at least 2007, DCB has facilitated hundreds of financial transactions worth millions of dollars on behalf of KOMID and Tanchon Commercial Bank. In some cases, DCB has knowingly facilitated transactions by using deceptive financial practices.",Entity,AKA,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13341 +DAEDONG CREDIT BANK (DCB),,,,,,,,,,,,,,,,,,,,,Ansan-dong,Botonggang Hotel,Pongchon,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0131 (UN Ref):KPe.023 SWIFT: DCBKKPPY. Daedong Credit Bank has provided financial services to the Korea Mining Development Trading Corporation (KOMID) and Tanchon Commercial Bank. Since at least 2007, DCB has facilitated hundreds of financial transactions worth millions of dollars on behalf of KOMID and Tanchon Commercial Bank. In some cases, DCB has knowingly facilitated transactions by using deceptive financial practices.",Entity,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13341 +DAEDONG CREDIT BANK (DCB),,,,,,,,,,,,,,,,,,,,Suite 401,Potonggang Hotel,Ansan-Dong,Pyongchon District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0131 (UN Ref):KPe.023 SWIFT: DCBKKPPY. Daedong Credit Bank has provided financial services to the Korea Mining Development Trading Corporation (KOMID) and Tanchon Commercial Bank. Since at least 2007, DCB has facilitated hundreds of financial transactions worth millions of dollars on behalf of KOMID and Tanchon Commercial Bank. In some cases, DCB has knowingly facilitated transactions by using deceptive financial practices.",Entity,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13341 +DAESH TUNISIA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0376 (UN Ref):QDe.167 Formed in November 2014. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). (Type of entity):Terrorist organisation",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/01/2022,29/12/2021,12/01/2022,14171 +DAESONG CREDIT DEVELOPMENT BANK,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0171 (UN Ref):KPe.049 Koryo Credit Development Bank operates in the financial services industry in the DPRK’s economy.,Entity,AKA,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13537 +DAESONG TRADING,,,,,,,,,,,,,,,,,,,,,,Pulgan Gori Dong 1,Potonggang District,Pyongyang City,,North Korea,"(UK Sanctions List Ref):DPR0148 (UN Ref):KPe.042 Korea Daesong General Trading Corporation is affiliated with Office 39 through minerals (gold) exports, metals, machinery, agricultural products, ginseng, jewelry, and light industry products. (Phone number):(1) +850-2-18111-8208 (2) Fax: +850-2-381-4432 (Email address):daesong@star-co.net.kp",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,30/11/2016,02/08/2022,11287 +DAESONG TRADING COMPANY,,,,,,,,,,,,,,,,,,,,,,Pulgan Gori Dong 1,Potonggang District,Pyongyang City,,North Korea,"(UK Sanctions List Ref):DPR0148 (UN Ref):KPe.042 Korea Daesong General Trading Corporation is affiliated with Office 39 through minerals (gold) exports, metals, machinery, agricultural products, ginseng, jewelry, and light industry products. (Phone number):(1) +850-2-18111-8208 (2) Fax: +850-2-381-4432 (Email address):daesong@star-co.net.kp",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,30/11/2016,02/08/2022,11287 +DAH,Dah,,,,,,,,,04/12/1964,Tabarka,Tunisia,Tunisia,L335915,"issue date: 08/11/1996, expiry date: 07/11/2001, issued in Milan, Italy",,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0256 (UN Ref):QDi.096 Considered a fugitive from justice by the Italian authorities (as of Oct. 2019). Left Sudan to Tunisia in 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,31/12/2020,7798 +DAHA,Sidi,Amar,Ould,,,,,,,01/01/1978,Djebock,Mali,Mali,,,11262/1547,Mali,Deputy chief of staff of the regional coordination of the Mécanisme opérationnel de coordination (MOC) in Gao,Golf Rue 708 Door 345,,,,,Gao,,Mali,"(UK Sanctions List Ref):MAL0006 (UN Ref):MLi.006 Mahri Sidi Amar Ben Daha is a leader of the Lehmar Arab community of Gao and military chief of staff of the pro-governmental wing of the Mouvement Arabe de l’Azawad (MAA), associated to the Plateforme des mouvements du 14 juin 2014 d’Alger (Plateforme) coalition. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Reportedly deceased in February 2020. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Mali,20/12/2019,10/07/2019,10/10/2022,13801 +DAHA,Yoro,Ould,,,,,,,,01/01/1978,Djebock,Mali,Mali,,,11262/1547,Mali,Deputy chief of staff of the regional coordination of the Mécanisme opérationnel de coordination (MOC) in Gao,Golf Rue 708 Door 345,,,,,Gao,,Mali,"(UK Sanctions List Ref):MAL0006 (UN Ref):MLi.006 Mahri Sidi Amar Ben Daha is a leader of the Lehmar Arab community of Gao and military chief of staff of the pro-governmental wing of the Mouvement Arabe de l’Azawad (MAA), associated to the Plateforme des mouvements du 14 juin 2014 d’Alger (Plateforme) coalition. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Reportedly deceased in February 2020. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Mali,20/12/2019,10/07/2019,10/10/2022,13801 +DAHI,Yasin,Ahmad,,,,,ياسين أحمد الجبين,,,00/00/1960,,,,,,,,Former Head of Military Intelligence Branch 235 in Damascus. Military Inteligence in Homs.,,,,,,,,,"(UK Sanctions List Ref):SYR0238 (UK Statement of Reasons):Holds the rank of Brigadier General in the Syrian Armed Forces, in post after May 2011. Senior officer within the Military Intelligence Directorate of the Syrian Armed Forces. Former head of Military Intelligence Branch 235 in Damascus and Military Intelligence in Homs. Responsible for violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,18/07/2017,31/12/2020,31/12/2020,13495 +DAHIR,Aweys,Hassan,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +DAHIR,Aweys,Hassan,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +DAHIR,Aweys,Hassan,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +DAHIR,Aweys,Hassan,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +DALE,ANDERS,CAMEROON,OSTENSVIG,,,,,,,19/10/1978,Oslo,Norway,Norway,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0140 (UN Ref):QDi.331 Member of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Physical description: eye colour: brown; hair colour: brown; height: 185 cm. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13128 +DAMARNACKI,Mikhail,Alexandrovich,,,,,,,,,,,Belarus,,,,,Head of OMON (‘Special Purpose Police Detachment’) in Gomel/Homyel,,,,,,,,,"(UK Sanctions List Ref):BEL0023 (UK Statement of Reasons):Mikhail Damarnacki is Commander of the Special Purpose Police Unit of Gomel (OMON). In his role as Commander, Damarnacki bears responsibility for the actions of OMON officers in Gomel. Damarnacki therefore bears responsibility for the serious human rights violations carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of people believed to be peaceful demonstrators (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13945 +DAMARNACKI,Mikhail,Aliaksandravich,,,,,Мiхаiл Аляксандравiч ДАМАРНАЦКI,,,,,,Belarus,,,,,Head of OMON (‘Special Purpose Police Detachment’) in Gomel/Homyel,,,,,,,,,"(UK Sanctions List Ref):BEL0023 (UK Statement of Reasons):Mikhail Damarnacki is Commander of the Special Purpose Police Unit of Gomel (OMON). In his role as Commander, Damarnacki bears responsibility for the actions of OMON officers in Gomel. Damarnacki therefore bears responsibility for the serious human rights violations carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of people believed to be peaceful demonstrators (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13945 +DAMARNATSKI,Mikhail,Aliaksandravich,,,,,,,,,,,Belarus,,,,,Head of OMON (‘Special Purpose Police Detachment’) in Gomel/Homyel,,,,,,,,,"(UK Sanctions List Ref):BEL0023 (UK Statement of Reasons):Mikhail Damarnacki is Commander of the Special Purpose Police Unit of Gomel (OMON). In his role as Commander, Damarnacki bears responsibility for the actions of OMON officers in Gomel. Damarnacki therefore bears responsibility for the serious human rights violations carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of people believed to be peaceful demonstrators (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13945 +DAMASCUS CHAM HOLDING,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0358 Public-owned company under private law.Names of Director(s)/Management: Adel Anwar AL-OLABI, Chairman of the board of Directors and governor of Damascus. Ultimate beneficial owner(s): Governorate of Damascus. Relatives/business associates/entities or partners/links Mazen Tarazi (EU-designated); businessman Anas Talas (EU-designated); Exceed Development and Investment Company, owned by private investors Hayan Mohammad Nazem Qaddour, and Maen Rizk Allah Haykal (both EU-designated); Khaled Al-Zubaidi and Nader Qalei (both EU-designated) Talas Group, owned by (UK Statement of Reasons):Damascus Cham Holding Company was established by the regime as the investment arm of the Governorate of Damascus in order to manage the properties of the Governorate of Damascus and implement the Marota City project, a luxurious real estate project based on confiscated and expropriated land under decree n°66 and Law n°10 in particular. (Type of entity):Real Estate",Entity,Primary name,,Syria,17/02/2020,31/12/2020,31/12/2020,13823 +DAMASCUS CHAM HOLDING COMPANY,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0358 Public-owned company under private law.Names of Director(s)/Management: Adel Anwar AL-OLABI, Chairman of the board of Directors and governor of Damascus. Ultimate beneficial owner(s): Governorate of Damascus. Relatives/business associates/entities or partners/links Mazen Tarazi (EU-designated); businessman Anas Talas (EU-designated); Exceed Development and Investment Company, owned by private investors Hayan Mohammad Nazem Qaddour, and Maen Rizk Allah Haykal (both EU-designated); Khaled Al-Zubaidi and Nader Qalei (both EU-designated) Talas Group, owned by (UK Statement of Reasons):Damascus Cham Holding Company was established by the regime as the investment arm of the Governorate of Damascus in order to manage the properties of the Governorate of Damascus and implement the Marota City project, a luxurious real estate project based on confiscated and expropriated land under decree n°66 and Law n°10 in particular. (Type of entity):Real Estate",Entity,AKA,,Syria,17/02/2020,31/12/2020,31/12/2020,13823 +DAMASCUS CHAM PRIVATE JOINT STOCK COMPANY,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0358 Public-owned company under private law.Names of Director(s)/Management: Adel Anwar AL-OLABI, Chairman of the board of Directors and governor of Damascus. Ultimate beneficial owner(s): Governorate of Damascus. Relatives/business associates/entities or partners/links Mazen Tarazi (EU-designated); businessman Anas Talas (EU-designated); Exceed Development and Investment Company, owned by private investors Hayan Mohammad Nazem Qaddour, and Maen Rizk Allah Haykal (both EU-designated); Khaled Al-Zubaidi and Nader Qalei (both EU-designated) Talas Group, owned by (UK Statement of Reasons):Damascus Cham Holding Company was established by the regime as the investment arm of the Governorate of Damascus in order to manage the properties of the Governorate of Damascus and implement the Marota City project, a luxurious real estate project based on confiscated and expropriated land under decree n°66 and Law n°10 in particular. (Type of entity):Real Estate",Entity,AKA,,Syria,17/02/2020,31/12/2020,31/12/2020,13823 +DAMDINTSURUNOV,Vyacheslav,Anatolievich,,,,,Дамдинцурунов Вячеслав Анатольевич,,,21/09/1977,Katangov,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0363 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14308 +DANA HOLDINGS A.K.A DANA ASTRA,,,,,,,,,,,,,,,,,,,Dana Center,St. P. Mstislavets 9 (1st floor),,,,Minsk,220 114,Belarus,"(UK Sanctions List Ref):BEL0063 (UK Statement of Reasons):Dana Holdings a.k.a Dana Astra belongs to the Karic brothers (Dragomir and Bogoljub), who are closely associated with Lukashenko and his family, and have benefitted significantly from that relationship. Dana Holdings a.k.a Dana Astra is the only non-state owned general sponsor of the Belarusian National Olympic Committee (NOC). The IOC has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August elections and subsequent violent suppression of peaceful protests. Dana Holdings a.k.a Dana Astra publicly supported Lukashenko in the face of strikes and protests. (Phone number):00375 17 26 93 290  (Website):https://en.dana-holdings.com (Email address):PR@bir.by (Type of entity):Private sector development group",Entity,Primary name,,Belarus,18/12/2020,31/12/2020,08/02/2022,14035 +DANCHIKOVA,Galina,Innokentievna,,,,,Галина Иннокентьевна Данчикова,,,13/08/1954,Khairyuzovka,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0364 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14309 +D'ANCONA,Bryan,,,,,,,,,26/01/1997,Nice,France,France,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0045 (UK Statement of Reasons):Bryan D'Ancona went to Syria in December 2013. He is a member of the jihadist group Firqatul Ghuraba, whose leader is the Senegalese terrorist Oumar Diaby, who has been designated since 23 September 2014 under the United Nations 1267 Al Qaeda/Da’esh regime.He has admitted to having participated in fighting alongside members of Jabhat al-Nusra, the Syrian branch of AI Qaeda that reportedly dissolved in January 2017, and has been an actor in jihadist propaganda seeking to recruit individuals to become foreign terrorist fighters in Syria. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),31/07/2020,31/12/2020,31/12/2020,13902 +DANESHJO,Kamran,,,,,,,,,02/02/1956,(1) Damghan (2) Damavand,(1) Iran (2) Iran,,,,,,(1) Professor at the Iran University of Science and Technology (2) Project Manager of the 111th section of the Amad Plan,Iranian University of Science and Technology,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0021 (UK Statement of Reasons):Former Minister of Science, Research and Technology. Has provided support to Iran’s nuclear activity through his support for nuclear research. (Phone number):(1) +98 21 77240488 (2) '+98 21 77240540 50 Extension 2906 (Email address):kdaneshjo@iust.ac.ir (Gender):Male",Individual,Primary name variation,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12232 +DANESHJO,Kamran,,,,,,,,,05/07/1957,(1) Damghan (2) Damavand,(1) Iran (2) Iran,,,,,,(1) Professor at the Iran University of Science and Technology (2) Project Manager of the 111th section of the Amad Plan,Iranian University of Science and Technology,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0021 (UK Statement of Reasons):Former Minister of Science, Research and Technology. Has provided support to Iran’s nuclear activity through his support for nuclear research. (Phone number):(1) +98 21 77240488 (2) '+98 21 77240540 50 Extension 2906 (Email address):kdaneshjo@iust.ac.ir (Gender):Male",Individual,Primary name variation,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12232 +DANESHJOO,Kamran,,,,,,کامران دانشجو,,,02/02/1956,(1) Damghan (2) Damavand,(1) Iran (2) Iran,,,,,,(1) Professor at the Iran University of Science and Technology (2) Project Manager of the 111th section of the Amad Plan,Iranian University of Science and Technology,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0021 (UK Statement of Reasons):Former Minister of Science, Research and Technology. Has provided support to Iran’s nuclear activity through his support for nuclear research. (Phone number):(1) +98 21 77240488 (2) '+98 21 77240540 50 Extension 2906 (Email address):kdaneshjo@iust.ac.ir (Gender):Male",Individual,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12232 +DANESHJOO,Kamran,,,,,,کامران دانشجو,,,05/07/1957,(1) Damghan (2) Damavand,(1) Iran (2) Iran,,,,,,(1) Professor at the Iran University of Science and Technology (2) Project Manager of the 111th section of the Amad Plan,Iranian University of Science and Technology,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0021 (UK Statement of Reasons):Former Minister of Science, Research and Technology. Has provided support to Iran’s nuclear activity through his support for nuclear research. (Phone number):(1) +98 21 77240488 (2) '+98 21 77240540 50 Extension 2906 (Email address):kdaneshjo@iust.ac.ir (Gender):Male",Individual,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12232 +DANESHJOU,Kamran,,,,,,,,,02/02/1956,(1) Damghan (2) Damavand,(1) Iran (2) Iran,,,,,,(1) Professor at the Iran University of Science and Technology (2) Project Manager of the 111th section of the Amad Plan,Iranian University of Science and Technology,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0021 (UK Statement of Reasons):Former Minister of Science, Research and Technology. Has provided support to Iran’s nuclear activity through his support for nuclear research. (Phone number):(1) +98 21 77240488 (2) '+98 21 77240540 50 Extension 2906 (Email address):kdaneshjo@iust.ac.ir (Gender):Male",Individual,Primary name variation,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12232 +DANESHJOU,Kamran,,,,,,,,,05/07/1957,(1) Damghan (2) Damavand,(1) Iran (2) Iran,,,,,,(1) Professor at the Iran University of Science and Technology (2) Project Manager of the 111th section of the Amad Plan,Iranian University of Science and Technology,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0021 (UK Statement of Reasons):Former Minister of Science, Research and Technology. Has provided support to Iran’s nuclear activity through his support for nuclear research. (Phone number):(1) +98 21 77240488 (2) '+98 21 77240540 50 Extension 2906 (Email address):kdaneshjo@iust.ac.ir (Gender):Male",Individual,Primary name variation,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12232 +DANILCHENKO,Galina,,,,,,,,,05/06/1964,"Orlovo, Melitopol Region",Ukraine,Ukraine,,,,,Russian-installed ‘Acting Mayor’ of Melitopol,p. Spaske,Melitopol district,,,,Zaporizhzhia region,,Ukraine,"(UK Sanctions List Ref):RUS1099 (UK Statement of Reasons):Galina Danilchenko is the ‘acting mayor’ of Melitopol, installed by Russian military forces in temporary control of Ukrainian territory. Danilchenko has provided support for and promoted policies and actions that threaten the territorial integrity, sovereignty or independence of Ukraine, including through endorsing and acting in support of Russian occupation of Melitopol as part of efforts to normalise and provide legitimacy to it. (Gender):Female",Individual,Primary name,,Russia,24/03/2022,24/03/2022,24/03/2022,15042 +DANILCHENKO,Haylina,,,,,,,,,05/06/1964,"Orlovo, Melitopol Region",Ukraine,Ukraine,,,,,Russian-installed ‘Acting Mayor’ of Melitopol,p. Spaske,Melitopol district,,,,Zaporizhzhia region,,Ukraine,"(UK Sanctions List Ref):RUS1099 (UK Statement of Reasons):Galina Danilchenko is the ‘acting mayor’ of Melitopol, installed by Russian military forces in temporary control of Ukrainian territory. Danilchenko has provided support for and promoted policies and actions that threaten the territorial integrity, sovereignty or independence of Ukraine, including through endorsing and acting in support of Russian occupation of Melitopol as part of efforts to normalise and provide legitimacy to it. (Gender):Female",Individual,Primary name variation,,Russia,24/03/2022,24/03/2022,24/03/2022,15042 +DANILENKO,Sergei,Andreevich,,,,,Даниленко Сергей Андреевич,,,14/03/1960,Krasnodar,Russia (USSR),Russia,,,,,Former Head of the Sevastopol City Election Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0219 (UK Statement of Reasons):Sergei Danilenko was the head of the Sevastopol City Electoral Commission. Danilenko organised elections in Sevastopol under Russian law, thereby violating the Constitution and laws of Ukraine and undermining Ukrainian sovereignty and territorial integrity, helping facilitate the integration of Sevastopol into Russia. (Gender):Male",Individual,Primary name,,Russia,28/01/2020,31/12/2020,16/09/2022,13805 +DANILENKO,Sergey,Andreevich,,,,,,,,14/03/1960,Krasnodar,Russia (USSR),Russia,,,,,Former Head of the Sevastopol City Election Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0219 (UK Statement of Reasons):Sergei Danilenko was the head of the Sevastopol City Electoral Commission. Danilenko organised elections in Sevastopol under Russian law, thereby violating the Constitution and laws of Ukraine and undermining Ukrainian sovereignty and territorial integrity, helping facilitate the integration of Sevastopol into Russia. (Gender):Male",Individual,Primary name variation,,Russia,28/01/2020,31/12/2020,16/09/2022,13805 +DARAS,Ali,,,,,,,,,22/09/1978,"Kabo, Ouham Prefecture",Central African Republic,Central African Republic,,,10978000004482,,Founder and leader of the Unité pour la Paix en Centrafrique (UPC),,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0016 (UN Ref):CFi.015 Ali Darassa founded and still leads the Central African Republic (CAR)-based militia group Unité pour la Paix en Centrafrique (UPC), which has killed, tortured, raped, and displaced civilians, committed a large number of abuses of human rights and violations of international humanitarian law, and engaged in arms trafficking, illegal taxation activities, and warfare against CAR defence and security forces, as well as other militias, since its creation in 2014. In December 2020, he played a leading role in the creation of the Coalition des patriotes pour le changement (CPC) that took up arms to oppose the elections and attempted to enter the capital Bangui, in violation of the commitments made by the UPC under the Accord politique pour la paix et la reconciliation (APPR) signed on 6 February 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals (Gender):Male",Individual,AKA,Good quality,Central African Republic,22/12/2021,21/12/2021,22/12/2021,14168 +DARASHENKA,Olga,Leanidauna,,,,,Ольга Леонидовна ДОРОШЕНКО,,,00/00/1976,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0037 (UK Statement of Reasons):Olga Darashenka is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Female",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,31/12/2020,13954 +DARASHENKA,Olga,Leonidovna,,,,,,,,00/00/1976,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0037 (UK Statement of Reasons):Olga Darashenka is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13954 +DARASSA,Ali,,,,,General,,,,22/09/1978,"Kabo, Ouham Prefecture",Central African Republic,Central African Republic,,,10978000004482,,Founder and leader of the Unité pour la Paix en Centrafrique (UPC),,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0016 (UN Ref):CFi.015 Ali Darassa founded and still leads the Central African Republic (CAR)-based militia group Unité pour la Paix en Centrafrique (UPC), which has killed, tortured, raped, and displaced civilians, committed a large number of abuses of human rights and violations of international humanitarian law, and engaged in arms trafficking, illegal taxation activities, and warfare against CAR defence and security forces, as well as other militias, since its creation in 2014. In December 2020, he played a leading role in the creation of the Coalition des patriotes pour le changement (CPC) that took up arms to oppose the elections and attempted to enter the capital Bangui, in violation of the commitments made by the UPC under the Accord politique pour la paix et la reconciliation (APPR) signed on 6 February 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals (Gender):Male",Individual,AKA,Low quality,Central African Republic,22/12/2021,21/12/2021,22/12/2021,14168 +DARASSA,Ali,,,,,,,,,22/09/1978,"Kabo, Ouham Prefecture",Central African Republic,Central African Republic,,,10978000004482,,Founder and leader of the Unité pour la Paix en Centrafrique (UPC),,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0016 (UN Ref):CFi.015 Ali Darassa founded and still leads the Central African Republic (CAR)-based militia group Unité pour la Paix en Centrafrique (UPC), which has killed, tortured, raped, and displaced civilians, committed a large number of abuses of human rights and violations of international humanitarian law, and engaged in arms trafficking, illegal taxation activities, and warfare against CAR defence and security forces, as well as other militias, since its creation in 2014. In December 2020, he played a leading role in the creation of the Coalition des patriotes pour le changement (CPC) that took up arms to oppose the elections and attempted to enter the capital Bangui, in violation of the commitments made by the UPC under the Accord politique pour la paix et la reconciliation (APPR) signed on 6 February 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals (Gender):Male",Individual,Primary name,,Central African Republic,22/12/2021,21/12/2021,22/12/2021,14168 +DARASSA,Ali,Mahamat,,,,,,,,22/09/1978,"Kabo, Ouham Prefecture",Central African Republic,Central African Republic,,,10978000004482,,Founder and leader of the Unité pour la Paix en Centrafrique (UPC),,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0016 (UN Ref):CFi.015 Ali Darassa founded and still leads the Central African Republic (CAR)-based militia group Unité pour la Paix en Centrafrique (UPC), which has killed, tortured, raped, and displaced civilians, committed a large number of abuses of human rights and violations of international humanitarian law, and engaged in arms trafficking, illegal taxation activities, and warfare against CAR defence and security forces, as well as other militias, since its creation in 2014. In December 2020, he played a leading role in the creation of the Coalition des patriotes pour le changement (CPC) that took up arms to oppose the elections and attempted to enter the capital Bangui, in violation of the commitments made by the UPC under the Accord politique pour la paix et la reconciliation (APPR) signed on 6 February 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals (Gender):Male",Individual,AKA,Good quality,Central African Republic,22/12/2021,21/12/2021,22/12/2021,14168 +DARNAVI,Hamza,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,,,,,,Reportedly located in Waziristan,,,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +DARNAVI,Hamza,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,"Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan",,,,,,,Pakistan,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +DARNAWI,Abdullah,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,,,,,,Reportedly located in Waziristan,,,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +DARNAWI,Abdullah,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,"Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan",,,,,,,Pakistan,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +DARNAWI,Hamza,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,,,,,,Reportedly located in Waziristan,,,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +DARNAWI,Hamza,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,"Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan",,,,,,,Pakistan,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +DARNAWI,Hamzah,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,,,,,,Reportedly located in Waziristan,,,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +DARNAWI,Hamzah,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,"Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan",,,,,,,Pakistan,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +DARRASSA,Ali,,,,,,,,,22/09/1978,"Kabo, Ouham Prefecture",Central African Republic,Central African Republic,,,10978000004482,,Founder and leader of the Unité pour la Paix en Centrafrique (UPC),,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0016 (UN Ref):CFi.015 Ali Darassa founded and still leads the Central African Republic (CAR)-based militia group Unité pour la Paix en Centrafrique (UPC), which has killed, tortured, raped, and displaced civilians, committed a large number of abuses of human rights and violations of international humanitarian law, and engaged in arms trafficking, illegal taxation activities, and warfare against CAR defence and security forces, as well as other militias, since its creation in 2014. In December 2020, he played a leading role in the creation of the Coalition des patriotes pour le changement (CPC) that took up arms to oppose the elections and attempted to enter the capital Bangui, in violation of the commitments made by the UPC under the Accord politique pour la paix et la reconciliation (APPR) signed on 6 February 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals (Gender):Male",Individual,AKA,Good quality,Central African Republic,22/12/2021,21/12/2021,22/12/2021,14168 +DARVISH WAND,Javad,,,,,,,,,,,,,,,,,(1) Former Deputy Minister of Defence (2) Former Inspector General of MODAFL,,,,,,,,,(UK Sanctions List Ref):INU0010 (UK Statement of Reasons):Former Deputy Minister and Inspector General of MODAFL (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10634 +DARVISH-VAND,Javad,,,,,,جواد درویش وند,,,,,,,,,,,(1) Former Deputy Minister of Defence (2) Former Inspector General of MODAFL,,,,,,,,,(UK Sanctions List Ref):INU0010 (UK Statement of Reasons):Former Deputy Minister and Inspector General of MODAFL (Gender):Male,Individual,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10634 +DARWIS,Jamil,,,,,,,,,11/01/1957,,,,,,,,"Major General, Syrian Arab Air Force",,,,,,,,,"(UK Sanctions List Ref):SYR0211 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and former Commander of the 22nd Division of the Syrian Arab Air Force, in post after May 2011. Operates in the chemical weapons proliferation sector and is responsible for the violent repression against the civilian population: as a senior ranking officer of the Syrian Arab Air Force and Commander of the 22nd Division until April 2017 he holds responsibility for the use of chemical weapons by aircraft operating from airbases under the control of the 22nd Division, including the attack on Talmenes that the Joint Investigative Mechanism reported was conducted by Hama airfield-based regime helicopters (Gender):Male",Individual,Primary name variation,,Syria,21/03/2017,31/12/2020,31/12/2020,13451 +DARWIS,Sajee,,,,,,,,,11/01/1957,,,,,,,,"Major General, Syrian Arab Air Force",,,,,,,,,"(UK Sanctions List Ref):SYR0211 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and former Commander of the 22nd Division of the Syrian Arab Air Force, in post after May 2011. Operates in the chemical weapons proliferation sector and is responsible for the violent repression against the civilian population: as a senior ranking officer of the Syrian Arab Air Force and Commander of the 22nd Division until April 2017 he holds responsibility for the use of chemical weapons by aircraft operating from airbases under the control of the 22nd Division, including the attack on Talmenes that the Joint Investigative Mechanism reported was conducted by Hama airfield-based regime helicopters (Gender):Male",Individual,Primary name variation,,Syria,21/03/2017,31/12/2020,31/12/2020,13451 +DARWIS,Saji,,,,,,,,,11/01/1957,,,,,,,,"Major General, Syrian Arab Air Force",,,,,,,,,"(UK Sanctions List Ref):SYR0211 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and former Commander of the 22nd Division of the Syrian Arab Air Force, in post after May 2011. Operates in the chemical weapons proliferation sector and is responsible for the violent repression against the civilian population: as a senior ranking officer of the Syrian Arab Air Force and Commander of the 22nd Division until April 2017 he holds responsibility for the use of chemical weapons by aircraft operating from airbases under the control of the 22nd Division, including the attack on Talmenes that the Joint Investigative Mechanism reported was conducted by Hama airfield-based regime helicopters (Gender):Male",Individual,Primary name variation,,Syria,21/03/2017,31/12/2020,31/12/2020,13451 +DARWIS,Saji',,,,,,,,,11/01/1957,,,,,,,,"Major General, Syrian Arab Air Force",,,,,,,,,"(UK Sanctions List Ref):SYR0211 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and former Commander of the 22nd Division of the Syrian Arab Air Force, in post after May 2011. Operates in the chemical weapons proliferation sector and is responsible for the violent repression against the civilian population: as a senior ranking officer of the Syrian Arab Air Force and Commander of the 22nd Division until April 2017 he holds responsibility for the use of chemical weapons by aircraft operating from airbases under the control of the 22nd Division, including the attack on Talmenes that the Joint Investigative Mechanism reported was conducted by Hama airfield-based regime helicopters (Gender):Male",Individual,Primary name variation,,Syria,21/03/2017,31/12/2020,31/12/2020,13451 +DARWIS,Sjaa,,,,,,,,,11/01/1957,,,,,,,,"Major General, Syrian Arab Air Force",,,,,,,,,"(UK Sanctions List Ref):SYR0211 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and former Commander of the 22nd Division of the Syrian Arab Air Force, in post after May 2011. Operates in the chemical weapons proliferation sector and is responsible for the violent repression against the civilian population: as a senior ranking officer of the Syrian Arab Air Force and Commander of the 22nd Division until April 2017 he holds responsibility for the use of chemical weapons by aircraft operating from airbases under the control of the 22nd Division, including the attack on Talmenes that the Joint Investigative Mechanism reported was conducted by Hama airfield-based regime helicopters (Gender):Male",Individual,Primary name variation,,Syria,21/03/2017,31/12/2020,31/12/2020,13451 +DARWISH,Jamil,,,,,,,,,11/01/1957,,,,,,,,"Major General, Syrian Arab Air Force",,,,,,,,,"(UK Sanctions List Ref):SYR0211 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and former Commander of the 22nd Division of the Syrian Arab Air Force, in post after May 2011. Operates in the chemical weapons proliferation sector and is responsible for the violent repression against the civilian population: as a senior ranking officer of the Syrian Arab Air Force and Commander of the 22nd Division until April 2017 he holds responsibility for the use of chemical weapons by aircraft operating from airbases under the control of the 22nd Division, including the attack on Talmenes that the Joint Investigative Mechanism reported was conducted by Hama airfield-based regime helicopters (Gender):Male",Individual,Primary name variation,,Syria,21/03/2017,31/12/2020,31/12/2020,13451 +DARWISH,Sajee,,,,,,,,,11/01/1957,,,,,,,,"Major General, Syrian Arab Air Force",,,,,,,,,"(UK Sanctions List Ref):SYR0211 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and former Commander of the 22nd Division of the Syrian Arab Air Force, in post after May 2011. Operates in the chemical weapons proliferation sector and is responsible for the violent repression against the civilian population: as a senior ranking officer of the Syrian Arab Air Force and Commander of the 22nd Division until April 2017 he holds responsibility for the use of chemical weapons by aircraft operating from airbases under the control of the 22nd Division, including the attack on Talmenes that the Joint Investigative Mechanism reported was conducted by Hama airfield-based regime helicopters (Gender):Male",Individual,Primary name variation,,Syria,21/03/2017,31/12/2020,31/12/2020,13451 +DARWISH,Saji,,,,,,,,,11/01/1957,,,,,,,,"Major General, Syrian Arab Air Force",,,,,,,,,"(UK Sanctions List Ref):SYR0211 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and former Commander of the 22nd Division of the Syrian Arab Air Force, in post after May 2011. Operates in the chemical weapons proliferation sector and is responsible for the violent repression against the civilian population: as a senior ranking officer of the Syrian Arab Air Force and Commander of the 22nd Division until April 2017 he holds responsibility for the use of chemical weapons by aircraft operating from airbases under the control of the 22nd Division, including the attack on Talmenes that the Joint Investigative Mechanism reported was conducted by Hama airfield-based regime helicopters (Gender):Male",Individual,Primary name variation,,Syria,21/03/2017,31/12/2020,31/12/2020,13451 +DARWISH,Saji',,,,,,ساجي درويش,,,11/01/1957,,,,,,,,"Major General, Syrian Arab Air Force",,,,,,,,,"(UK Sanctions List Ref):SYR0211 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and former Commander of the 22nd Division of the Syrian Arab Air Force, in post after May 2011. Operates in the chemical weapons proliferation sector and is responsible for the violent repression against the civilian population: as a senior ranking officer of the Syrian Arab Air Force and Commander of the 22nd Division until April 2017 he holds responsibility for the use of chemical weapons by aircraft operating from airbases under the control of the 22nd Division, including the attack on Talmenes that the Joint Investigative Mechanism reported was conducted by Hama airfield-based regime helicopters (Gender):Male",Individual,Primary name,,Syria,21/03/2017,31/12/2020,31/12/2020,13451 +DARWISH,Sjaa,,,,,,,,,11/01/1957,,,,,,,,"Major General, Syrian Arab Air Force",,,,,,,,,"(UK Sanctions List Ref):SYR0211 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and former Commander of the 22nd Division of the Syrian Arab Air Force, in post after May 2011. Operates in the chemical weapons proliferation sector and is responsible for the violent repression against the civilian population: as a senior ranking officer of the Syrian Arab Air Force and Commander of the 22nd Division until April 2017 he holds responsibility for the use of chemical weapons by aircraft operating from airbases under the control of the 22nd Division, including the attack on Talmenes that the Joint Investigative Mechanism reported was conducted by Hama airfield-based regime helicopters (Gender):Male",Individual,Primary name variation,,Syria,21/03/2017,31/12/2020,31/12/2020,13451 +DASS,,,,,,,,,,03/08/1973,Bizerta,Tunisia,Tunisia,,,,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0276 (UN Ref):QDi.222 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years detention on 20 Nov. 2008. Sentenced in Tunisia to 4 years imprisonment for terrorist activity and in detention in Tunisia as at Jun. 2009. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440724,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8918 +DASTJERDI,AHMAD VAHID,,,,,,,,,15/01/1954,,,Iran,A0002987,Issued in Iran,,,(1) Head of the AIO (2) Former Deputy Defence Minister,,,,,,,,,(UK Sanctions List Ref):INU0193 (UN Ref):IRi.012 Served as Deputy Defense Minister 2009-10. [Old Reference # I.37.D.2] (UK Statement of Reasons):Ahmad Vahid DASTJERDI has held the role of Head of Aerospace Industries Organisation (AIO) and in this capacity is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) EU Exit Regulations 2019.,Individual,Primary name,,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9003 +DASTJERDI,AHMAD VAHID,,,,,,,,,15/01/1954,,,Iran,A0002987,Issued in Iran,,,(1) Head of the AIO (2) Former Deputy Defence Minister,,,,,,,,,(UK Sanctions List Ref):INU0193 (UN Ref):IRi.012 Served as Deputy Defense Minister 2009-10. [Old Reference # I.37.D.2] (UK Statement of Reasons):Ahmad Vahid DASTJERDI has held the role of Head of Aerospace Industries Organisation (AIO) and in this capacity is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) EU Exit Regulations 2019.,Individual,Primary name,,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9003 +DAUD,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Gebang,Kecamatan Masaran,Kabupaten Sragen,,,Jawa Tengah,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +DAUD,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Taman Fajar,Kecamatan Probolinggo,Kabupaten Lampung Timur,,,Lampung,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +DAUDOV,Magomed,,,,,,,,,05/10/1973,Stavropol,Russia,Russia,,,,,The spokesperson/chairperson of the Parliament of the Chechen Republic,,,,,,,,,"(UK Sanctions List Ref):GHR0064 (UK Statement of Reasons):Magomed Daudov is Chairman of the Parliament of the Chechen Republic. Daudov is responsible for the severe and systematic human rights violations perpetrated by Ramzan Kadyrov’s administration, specifically the systematic arrest, torture, and murder of LGBT people in Chechnya since 2017. Daudov has also personally participated in the arrest, torture, and murder of LGBT people. (Gender):Male",Individual,Primary name,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14014 +DAVANKOV,Vladislav,Andreevich,,,,,Даванков Владислав Андреевич,,,25/02/1984,,,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0362 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14307 +DAVE,,,,,,,,,,19/12/1969,"Bagac, Bagamanok, Catanduanes",Philippines,Philippines,,,,,,Concepcion,,,,Zaragosa,Nueva Ecija,,Philippines,"(UK Sanctions List Ref):AQD0287 (UN Ref):QDi.245 Member of the Rajah Solaiman Movement (QDe.128), Abu Sayyaf Group (QDe.001) and Jemaah Islamiyah (QDe.092). Father's name is Honorio Devera. Mother's name is Fausta Abogne. In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10665 +DAVIDOVICH,David,,,,,,,,,29/08/1962,,Russia,(1) Russia (2) Israel,,,,,,,,,,,,,,(UK Sanctions List Ref):RUS1339 (UK Statement of Reasons):David DAVIDOVICH is a Russian/Israeli businessman closely associated with Roman ABRAMOVICH. ABRAMOVICH is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019. (Gender):Male,Individual,Primary name,,Russia,14/04/2022,14/04/2022,14/04/2022,15290 +DAWOOD,Ebrahim,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +DAWOOD,Ebrahim,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +DAWOOD,Ebrahim,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +DAWWA,Ali,,,,,,علي ضوا,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0011 (UK Statement of Reasons):Brigadier General in the Syrian Armed Forces. Gave orders to troops to shoot protestors in Al-Herak on 7 August 2011. (Gender):Male,Individual,Primary name,,Syria,24/01/2012,31/12/2020,31/12/2020,12474 +DAYA,Mohamed,Ould,Mahri,Ahmed,,,,,,01/01/1979,Tabankort,Mali,Mali,(1) AA00272627 (2) AA0263957 (3) AA0344148,(1) - . (2) - . (3) issued on 21 March 2019 (date of expiration: 20 March 2024),,,,,,,,,Bamako,,Mali,"(UK Sanctions List Ref):MAL0007 (UN Ref):MLi.007 Mohamed Ben Ahmed Mahri is a businessman from the Arab Lehmar community in Gao region who previously collaborated with the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Mali,20/12/2019,10/07/2019,10/10/2022,13802 +DAYA,Yoro,Ould,,,,,,,,01/01/1978,Djebock,Mali,Mali,,,11262/1547,Mali,Deputy chief of staff of the regional coordination of the Mécanisme opérationnel de coordination (MOC) in Gao,Golf Rue 708 Door 345,,,,,Gao,,Mali,"(UK Sanctions List Ref):MAL0006 (UN Ref):MLi.006 Mahri Sidi Amar Ben Daha is a leader of the Lehmar Arab community of Gao and military chief of staff of the pro-governmental wing of the Mouvement Arabe de l’Azawad (MAA), associated to the Plateforme des mouvements du 14 juin 2014 d’Alger (Plateforme) coalition. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Reportedly deceased in February 2020. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Mali,20/12/2019,10/07/2019,10/10/2022,13801 +DCB,,,,,,,,,,,,,,,,,,,,,Ansan-dong,Botonggang Hotel,Pongchon,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0131 (UN Ref):KPe.023 SWIFT: DCBKKPPY. Daedong Credit Bank has provided financial services to the Korea Mining Development Trading Corporation (KOMID) and Tanchon Commercial Bank. Since at least 2007, DCB has facilitated hundreds of financial transactions worth millions of dollars on behalf of KOMID and Tanchon Commercial Bank. In some cases, DCB has knowingly facilitated transactions by using deceptive financial practices.",Entity,AKA,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13341 +DCB,,,,,,,,,,,,,,,,,,,,Suite 401,Potonggang Hotel,Ansan-Dong,Pyongchon District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0131 (UN Ref):KPe.023 SWIFT: DCBKKPPY. Daedong Credit Bank has provided financial services to the Korea Mining Development Trading Corporation (KOMID) and Tanchon Commercial Bank. Since at least 2007, DCB has facilitated hundreds of financial transactions worth millions of dollars on behalf of KOMID and Tanchon Commercial Bank. In some cases, DCB has knowingly facilitated transactions by using deceptive financial practices.",Entity,AKA,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13341 +DCB FINANCE LIMITED,,,,,,,,,,,,,,,,,,,,,,,,Dalian,,China,"(UK Sanctions List Ref):DPR0132 (UN Ref):KPe.040 DCB Finance Limited is a front company for Daedong Credit Bank (DCB), a listed entity. (Phone number):British Virgin Islands (Parent company):Daedong Credit Bank (DCB)",Entity,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,02/08/2022,13431 +DCB FINANCE LIMITED,,,,,,,,,,,,,,,,,,,Akara Building,24 de Castro Street,Wickhams Cay I,Road Town,Tortola,British Virgin Islands,,,"(UK Sanctions List Ref):DPR0132 (UN Ref):KPe.040 DCB Finance Limited is a front company for Daedong Credit Bank (DCB), a listed entity. (Phone number):British Virgin Islands (Parent company):Daedong Credit Bank (DCB)",Entity,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,02/08/2022,13431 +DE CARVALHO,Celestino,,,,,Colonel,,,,14/06/1955,,,Guinea Bissau,DA0002166,,,,Minister of National Defence,,,,,,,,,(UK Sanctions List Ref):GUB0005 (UK Statement of Reasons):Member of the ‘Military Command’ which has assumed responsibility for the coup d'état of 12 April 2012. Former Air Force Chief of Staff. His presence in a delegation which met with ECOWAS on April 26th confirms his participation in the ‘Military Command’ (Gender):Male,Individual,Primary name,,Guinea-Bissau,01/06/2012,31/12/2020,10/03/2022,12678 +DE LAVILLA,Mike,,,,,,,,,04/10/1972,"Sitio Banga Maiti, Barangay Tranghawan, Lambunao, Iloilo",Philippines,Philippines,(1) MM611523 (2) EE947317 (3) P421967,(1) Philippines number (2004) (2) Philippines number 2000-2001 (3) Philippines number (1995-1997),,,,10th Avenue,,,,,Caloocan City,,Philippines,(UK Sanctions List Ref):AQD0296 (UN Ref):QDi.247 Spiritual leader of the Rajah Solaiman Movement (QDe.128). Associated with Khadafi Abubakar Janjalani (deceased). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10667 +DE VERA,Ismael,,,,,,,,,19/12/1969,"Bagac, Bagamanok, Catanduanes",Philippines,Philippines,,,,,,Concepcion,,,,Zaragosa,Nueva Ecija,,Philippines,"(UK Sanctions List Ref):AQD0287 (UN Ref):QDi.245 Member of the Rajah Solaiman Movement (QDe.128), Abu Sayyaf Group (QDe.001) and Jemaah Islamiyah (QDe.092). Father's name is Honorio Devera. Mother's name is Fausta Abogne. In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10665 +DE VERA,Pio,Abogne,,,,,,,,19/12/1969,"Bagac, Bagamanok, Catanduanes",Philippines,Philippines,,,,,,Concepcion,,,,Zaragosa,Nueva Ecija,,Philippines,"(UK Sanctions List Ref):AQD0287 (UN Ref):QDi.245 Member of the Rajah Solaiman Movement (QDe.128), Abu Sayyaf Group (QDe.001) and Jemaah Islamiyah (QDe.092). Father's name is Honorio Devera. Mother's name is Fausta Abogne. In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10665 +DEATH BATTALION,,,,,,,Смерть батальон,,,,,,,,,,,,,,,,,A former tourist camp outside Donetsk which has been turned into a base for the Death Battalion.,,,"(UK Sanctions List Ref):RUS0170 Part of the so called ""2nd Army Corps of the ""Lugansk People's Republic"". Also part of the Great Don Army. (UK Statement of Reasons):Armed separatist group which has actively supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. Part of the so called ""2nd Army Corps of the ""Lugansk People's Republic"". (Type of entity):Armed Separatist Group",Entity,Primary name,,Russia,16/02/2015,31/12/2020,16/09/2022,13225 +DEDKOVA,Natalia,Anatolievna,,,,,Наталля Анатольеўна ДЗЯДКОВА,,,02/12/1979,,,Belarus,,,,,"Judge of the Partizanski district court in Minsk, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0088 (UK Statement of Reasons):Natalia Dedkova is a Judge of the Partizanski District Court in Minsk. In her position she was responsible for numerous politically motivated rulings against journalists and activists for taking part in protests. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition. (Gender):Female",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/12/2021,14022 +DEDKOVA,Natallia,Anatolievna,,,,,Наталья Анатольевна ДЕДКОВА,,,02/12/1979,,,Belarus,,,,,"Judge of the Partizanski district court in Minsk, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0088 (UK Statement of Reasons):Natalia Dedkova is a Judge of the Partizanski District Court in Minsk. In her position she was responsible for numerous politically motivated rulings against journalists and activists for taking part in protests. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition. (Gender):Female",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/12/2021,14022 +DEEB,Ahmad,,,,,,,,,,,,Syria,,,,,Head of Deraa Regional Branch (General Security Directorate),,,,,,,,,"(UK Sanctions List Ref):SYR0071 (UK Statement of Reasons):As Head of the Deraa Regional Branch of the General Security Directorate, responsible for arbitrary detention and torture of detainees in Deraa. (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12478 +DEEB,Ahmed,,,,,,,,,,,,Syria,,,,,Head of Deraa Regional Branch (General Security Directorate),,,,,,,,,"(UK Sanctions List Ref):SYR0071 (UK Statement of Reasons):As Head of the Deraa Regional Branch of the General Security Directorate, responsible for arbitrary detention and torture of detainees in Deraa. (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12478 +DEEB,Nasser,Deeb,,,,,,,,,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0393 (UK Statement of Reasons):Nasser Deeb Deeb is involved in supporting and benefiting from the Syrian regime by virtue of his position controlling businesses in Syria, and through his association with other involved persons with links to the Syrian regime. (Gender):Male",Individual,Primary name,,Syria,26/07/2022,26/07/2022,26/07/2022,15462 +DEFENCE FACTORIES ESTABLISHMENT,,,,,,,,,,,,,,,,,,,P.O. Box 2230,,,,Al-Hameh,Damascus Countryside,,,"(UK Sanctions List Ref):SYR0309 Industrial - Military (UK Statement of Reasons):There are reasonable grounds to suspect that the Industrial Establishment of Defence is or has been involved in the repression of the civilian population and engaging in and promoting the repression and otherwise supported the regime in that it is has produced and supplied military equipment to the regime, and is associated with members of the regime, in particular the Syrian military.",Entity,AKA,,Syria,23/07/2014,31/12/2020,13/05/2022,13031 +DEFENCE FACTORIES ESTABLISHMENT,,,,,,,,,,,,,,,,,,,P.O. Box 2330,Al Thawraa Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0309 Industrial - Military (UK Statement of Reasons):There are reasonable grounds to suspect that the Industrial Establishment of Defence is or has been involved in the repression of the civilian population and engaging in and promoting the repression and otherwise supported the regime in that it is has produced and supplied military equipment to the regime, and is associated with members of the regime, in particular the Syrian military.",Entity,AKA,,Syria,23/07/2014,31/12/2020,13/05/2022,13031 +DEFENCE INDUSTRIES ORGANISATION (DIO),,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0139 (UN Ref):IRe.011 Overarching MODAFL-controlled entity, some of whose subordinates have been involved in the centrifuge programme making components, and in the missile programme. [Old Reference # E.37.A.6] (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name,,Iran (Nuclear),09/02/2007,23/12/2006,31/12/2020,8989 +DEFENCE PRODUCTS INDUSTRIES,,,,,,,,,,,,,,,,,,,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0032 (UK Statement of Reasons):The Myanmar military seized power from civilian leaders on 1 February in a coup d’état and established a military junta. The Myanmar security forces have committed serious human rights violations since 1 February 2021 and are responsible for the repression of the civilian population. The Directorate for Defence Industries (DDI) is a state-owned enterprise which operates under the Ministry of Defence (MOD). There are reasonable grounds to suspect that DDI is or has been involved in undermining democracy, the rule of law or good governance in Myanmar and the repression of the civilian population in Myanmar by its involvement in the supply to Myanmar of goods or technology which could contribute to a serious human rights violation or abuse. Further, there are reasonable grounds to suspect that DDI, as a state-owned enterprise subservient to the MOD, is acting on behalf or at the direction of the Minister of Defence, General Mya Tun Oo, who has been involved in undermining democracy, the rule of law or good governance in Myanmar and the repression of the civilian population in Myanmar, and is designated by the UK’s Myanmar sanctions regime. (Type of entity):Public Company",Entity,AKA,,Myanmar,10/12/2021,10/12/2021,11/11/2022,14165 +DEFENSE INITIATIVES,,,,,,,,,,,,,,,,,,,1ST F SKARYNA LANE 18,,,,,Minsk,220131,Belarus,"(UK Sanctions List Ref):RUS1071 (UK Statement of Reasons):As a Belarusian producer of electronic warfare systems supplied to Russia and used in Russian military equipment, OBORONNYE INITSIATIVY has made available goods or technology to persons, including the Russian armed forces, that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine.  (Phone number):+375 17 2883514 (Website):Defin.by (Email address):info@defin.by",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,12/07/2022,15014 +DEFENSE TECHNOLOGY AND SCIENCE RESEARCH CENTER (DTSRC),,,,,,,,,,,,,,,,,,,,,,Pasdaran Av.,PO Box 19585/777,Tehran,,Iran,"(UK Sanctions List Ref):INU0140 (UN Ref):IRe.012 Owned or controlled by, or acts on behalf of, MODAFL, which oversees Iran's defence research and development, production, maintenance, exports and procurement. [Old Reference # E.29.I.3] (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name,,Iran (Nuclear),24/04/2007,09/06/2010,31/12/2020,9104 +DEGHDEGH,AHMED,,,,,,أحمد دغداغ,,,17/01/1967,"Anser, Wilaya (province) of Jijel",Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0124 (UN Ref):QDi.252 Belongs to the leadership and is the finance chief of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Mother’s name is Zakia Chebira. Father’s name is Lakhdar. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529228,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,12/01/2022,10693 +DEGTYAREV,Mikhail,Vladimirovich,,,,,,,,10/07/1981,Kuibyshev (Samara),,Russia,,,,,"(1) Member of the Russian State Duma (2) Chairman of the Russian State Duma Committee on Physical Education, Sport and Youth Affairs (3) Appointed Governor of Khabarovsk Krai Territory in September 2021",,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0090 (UK Statement of Reasons):Member of the State Duma and Governor of Khabarovsk Territory. On 23.5.2014 he announced the inauguration of the ‘de facto embassy’ of the unrecognized, so called, ‘Donetsk People's Republic’ in Moscow, he contributes to undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,25/07/2014,31/12/2020,16/09/2022,13041 +DEGTYAREV,Yuriy,Anatolievich,,,,,ДЕГТЯРЕВ Юрий Анатольевич,Cyrillic,Russian,07/07/1977,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1170 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15122 +DEGTYAREV,Yury,Anatolievich,,,,,,,,07/07/1977,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1170 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15122 +DEGTYARYOV,Mikhail,Vladimirovich,,,,,,,,10/07/1981,Kuibyshev (Samara),,Russia,,,,,"(1) Member of the Russian State Duma (2) Chairman of the Russian State Duma Committee on Physical Education, Sport and Youth Affairs (3) Appointed Governor of Khabarovsk Krai Territory in September 2021",,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0090 (UK Statement of Reasons):Member of the State Duma and Governor of Khabarovsk Territory. On 23.5.2014 he announced the inauguration of the ‘de facto embassy’ of the unrecognized, so called, ‘Donetsk People's Republic’ in Moscow, he contributes to undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,16/09/2022,13041 +DEIR EZ-ZUR PETROLEUM COMPANY,,,,,,,,,,,,,,,,,,,Dar Al Saadi Building,"1st, 5th and 6th Floor",Zilat Street,Mazza Ara,P.O. Box 9120,Damascus,,Syria,(UK Sanctions List Ref):SYR0292 Oil and Gas Sector (UK Statement of Reasons):Subsidiary of the Syrian General Petroleum Company. Provides financial support to the regime. (Phone number):(1) +963 11 662 1175 (2) +963 11 662 1400,Entity,Primary name,,Syria,24/01/2012,31/12/2020,13/05/2022,12488 +DELAWAR,SHAHABUDDIN,,,,,Maulavi,شهاب الدين دلاور,,,00/00/1957,Logar Province,Afghanistan,Afghanistan,OA296623,Afghan,,,Deputy of High Court under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0090 (UN Ref):TAi.113 Deputy Head of Taliban Embassy in Riyadh, Saudi Arabia until 25 Sept. 1998. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7119 +DELAWAR,SHAHABUDDIN,,,,,Maulavi,شهاب الدين دلاور,,,00/00/1953,Logar Province,Afghanistan,Afghanistan,OA296623,Afghan,,,Deputy of High Court under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0090 (UN Ref):TAi.113 Deputy Head of Taliban Embassy in Riyadh, Saudi Arabia until 25 Sept. 1998. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7119 +DELLOSA,Habil,Ahmad,,,,,,,,15/05/1972,"Punta, Santa Ana, Manila",Philippines,Philippines,,,,,,Ma. Bautista,,,Punta,Santa Ana,Manila,3111,Philippines,(UK Sanctions List Ref):AQD0293 (UN Ref):QDi.246 Member of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). Father's name is Fernando Rafael Dellosa. Mother's name is Editha Parado Cain. In detention in the Philippines as of Jan. 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10666 +DELLOSA,REDENDO,CAIN,,,,,,,,15/05/1972,"Punta, Santa Ana, Manila",Philippines,Philippines,,,,,,Ma. Bautista,,,Punta,Santa Ana,Manila,3111,Philippines,(UK Sanctions List Ref):AQD0293 (UN Ref):QDi.246 Member of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). Father's name is Fernando Rafael Dellosa. Mother's name is Editha Parado Cain. In detention in the Philippines as of Jan. 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10666 +DELOS REYES JR.,Feliciano,Semborio,,,,Ustadz,فلسيانو سمبوريو ديلوس رييس الإبن,,,04/11/1963,"Arco, Lamitan, Basilan",Philippines,Philippines,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0175 (UN Ref):QDi.243 Member of the Rajah Solaiman Movement (QDe.128). Father's name is Feliciano Delos Reyes Sr. Mother's name is Aurea Semborio. In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10663 +DELYAGIN,Mikhail,Gennadievich,,,,,Делягин Михаил Геннадьевич,,,18/03/1968,Moscow,Russia,Russia,645264045,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0552 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14497 +DEMCHENKO,Ivan,Ivanovich,,,,,Демченко Иван Иванович,,,27/09/1960,Arkhonskaya,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0366 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14311 +DEMESHKO,Bella,Seiranovna,,,,,,,,19/02/1979,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1266 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15218 +DEMESHKO,Bella,Seyranovna,,,,,ДЕМЕШКО Белла Сейрановна,Cyrillic,Russian,19/02/1979,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1266 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15218 +DEMIDENKO,Igor,Viktorovich,,,,Major General,"ДЕМИДЕНКО, Игорь Викторович",Cyrillic,Russian,05/02/1971,Mogilev,Belarus,Belarus,,,,,Commander – Western Operational Command,,,,,,,,,"(UK Sanctions List Ref):RUS0720 (UK Statement of Reasons):Major General Igor Viktorovich DEMIDENKO has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being involved in the command of Belarusian forces who were involved in a joint exercise with the Russian military ahead of Russia’s invasion of Ukraine which: (1) threatened Ukraine; and (2) provided cover for Russian military preparations to invade Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14671 +DEMIN,Alexander,Vyacheslavovich,,,,,Демин Александр Вячеславович,,,23/09/1988,,,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0365 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14310 +DENGIN,Vadim,Yevgenyevich,,,,,Вадим Евгеньевич ДЕНЬГИН,,,23/09/1980,Obninsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0895 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14846 +DENISENKO,Vadim,Ivanovich,,,,Major General,ДЕНИСЕНКО Вадим Иванович,Cyrillic,Russian,03/09/1967,Budapest,Hungary,Belarus,,,,,Commander of the Special Operations Forces,,,,,,,,,"(UK Sanctions List Ref):RUS0718 (UK Statement of Reasons):Major General Vadim Ivanovich DENISENKO has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being involved in the command of Belarusian forces who were involved in a joint exercise with the Russian military ahead of Russia’s invasion of Ukraine which: (1) threatened Ukraine; and (2) provided cover for Russian military preparations to invade Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14669 +DEO,Izabayo,,,,,,,,,01/01/1966,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +DEO,Izabayo,,,,,,,,,00/00/1967,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +DEO,Izabayo,,,,,,,,,28/08/1966,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +DEPARTMENT OF SPACE TECHNOLOGY OF THE DPRK,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0167 (UN Ref):KPe.012 The Korean Committee for Space Technology (KCST) orchestrated the DPRK’s launches on 13 April 2012 and 12 December 2012 via the satellite control center and Sohae launch area.,Entity,AKA,,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12847 +DEPARTMENT OF THE KALAYE ELECTRIC COMPANY,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0104 (UK Statement of Reasons):A department of UN designated Kalaye Electric Company (KEC). Established in late 2006, it was responsible for the construction of the Fuel Enrichment Plant at Fordow (Qom).",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11216 +DERAKHSHANDEH,AHMAD,,,,,,,,,11/08/1956,,,,,,,,"Former Chairman and Managing Director of Bank Sepah, which provides support for the AIO and subordinates, including SHIG and SBIG, both of which were designated under resolution 1737 (2006).",33 Hormozan Building,Pirozan St,Sharak Ghods,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0192 (UN Ref):IRi.013 [Old Reference # I.47.C.8] (UK Statement of Reasons):As former Chairman and Managing Director of Bank Sepah, Ahmad DERAKHSHANDEH is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019 through the provision of financial services.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9056 +DERAKHSHANDEH,AHMAD,,,,,,,,,11/08/1956,,,,,,,,"Former Chairman and Managing Director of Bank Sepah, which provides support for the AIO and subordinates, including SHIG and SBIG, both of which were designated under resolution 1737 (2006).",33 Hormozan Building,Pirozan St,Sharak Ghods,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0192 (UN Ref):IRi.013 [Old Reference # I.47.C.8] (UK Statement of Reasons):As former Chairman and Managing Director of Bank Sepah, Ahmad DERAKHSHANDEH is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019 through the provision of financial services.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9056 +DERGHAM,Douraid,,,,,,,,,00/00/1964,,,,,,,,Governor of the Central Bank of Syria,,,,,,,,,"(UK Sanctions List Ref):SYR0036 Linked to Central Bank of Syria (UK Statement of Reasons):Former Governor of the Central Bank of Syria. Was responsible for providing economic and financial support to the Syrian regime through his functions as the Governor of the Central Bank of Syria, which is also listed.",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13413 +DERGHAM,Duraid,,,,,,,,,00/00/1964,,,,,,,,Governor of the Central Bank of Syria,,,,,,,,,"(UK Sanctions List Ref):SYR0036 Linked to Central Bank of Syria (UK Statement of Reasons):Former Governor of the Central Bank of Syria. Was responsible for providing economic and financial support to the Syrian regime through his functions as the Governor of the Central Bank of Syria, which is also listed.",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13413 +DERGUNOVA,Olga,Konstantinovna,,,,,ДЕРГУНОВА Ольга Константиновна,Cyrillic,Russian,15/05/1965,Moscow,Russia,Russia,,,,,Deputy President and Chairman of VTB Bank Management Board,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0847 (UK Statement of Reasons):Olga DERGUNOVA is a member of VTB Bank’s Management Board.  VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, DERGUNOVA obtains a financial benefit from VTB Bank, therefore DERGUNOVA is an involved person on the basis of her membership of and association with VTB Bank.     (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14798 +DERIPASKA,Oleg,,,,,,,,,02/01/1968,Dzerzhinsk,Russia,Russia,,,,,Shareholder at EN+ GROUP,,,,,,,,,"(UK Sanctions List Ref):RUS0269 (UK Statement of Reasons):Oleg Vladimirovich DERIPASKA (hereafter DERIPASKA) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 on the basis of the following grounds: (1) DERIPASKA is associated with a person who is and has been involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine, namely Vladimir Putin; (2) DERIPASKA is acting on behalf of or at the direction of a person who is and has been involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine, namely Vladimir Putin; (3) DERIPASKA has been involved in obtaining a benefit from or supporting the Government of Russia by indirectly owning or controlling an entity which is carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian energy and extractives sectors; (4) DERIPASKA is and has been involved in obtaining a benefit from or supporting the Government of Russia by indirectly owning and controlling entities which are carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian transport, defence and construction sectors; (5) DERIPASKA is and has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in sectors of strategic significance to the Government of Russia – namely the Russian energy, extractives, transport, defence and construction sectors. (Gender):Male",Individual,Primary name variation,,Russia,10/03/2022,10/03/2022,04/07/2022,14214 +DERIPASKA,Oleg,Vladimirovich,,,,Mr,Олег Владимирович  ДЕРИПАСКА,,,02/01/1968,Dzerzhinsk,Russia,Russia,,,,,Shareholder at EN+ GROUP,,,,,,,,,"(UK Sanctions List Ref):RUS0269 (UK Statement of Reasons):Oleg Vladimirovich DERIPASKA (hereafter DERIPASKA) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 on the basis of the following grounds: (1) DERIPASKA is associated with a person who is and has been involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine, namely Vladimir Putin; (2) DERIPASKA is acting on behalf of or at the direction of a person who is and has been involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine, namely Vladimir Putin; (3) DERIPASKA has been involved in obtaining a benefit from or supporting the Government of Russia by indirectly owning or controlling an entity which is carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian energy and extractives sectors; (4) DERIPASKA is and has been involved in obtaining a benefit from or supporting the Government of Russia by indirectly owning and controlling entities which are carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian transport, defence and construction sectors; (5) DERIPASKA is and has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in sectors of strategic significance to the Government of Russia – namely the Russian energy, extractives, transport, defence and construction sectors. (Gender):Male",Individual,Primary name,,Russia,10/03/2022,10/03/2022,04/07/2022,14214 +DERWISH,Ali,,,,,,,,,00/00/1973,"Sahl Village, Raqqa Province",Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0132 (UN Ref):QDi.384 A leader of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). As of Jun, 2015, al-Shawakh was the ISIL governor of Aleppo. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13317 +DERYABKIN,Viktor,Efimovich,,,,,Дерябкин Виктор Ефимович,,,11/05/1954,Bolshe-Napolovsky,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0367 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14312 +DEVOTEES OF ISLAM,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0032 (UN Ref):QDe.098 The founder is Najmuddin Faraj Ahmad (QDi.226). Associated with Al-Qaida in Iraq (QDe.115). Located and primarily active in northern Iraq but maintains a presence in western and central Iraq. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282119,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2003,24/02/2003,31/12/2020,7021 +DEYA,Mohamed,Ould,Ahmed,,,,,,,01/01/1979,Tabankort,Mali,Mali,(1) AA00272627 (2) AA0263957 (3) AA0344148,(1) - . (2) - . (3) issued on 21 March 2019 (date of expiration: 20 March 2024),,,,,,,,,Bamako,,Mali,"(UK Sanctions List Ref):MAL0007 (UN Ref):MLi.007 Mohamed Ben Ahmed Mahri is a businessman from the Arab Lehmar community in Gao region who previously collaborated with the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Mali,20/12/2019,10/07/2019,10/10/2022,13802 +DEYNEGO,Vladislav,Nikolayevich,,,,,,,,12/03/1964,"(1) Romny, Sumy oblast (2) (possibly) Gornyatskiy village, Perevalsk district, Luhansk oblast",(1) Ukrainian SSR (now Ukraine) (2) Ukrainian SSR (now Ukraine),Ukraine,0258399,Russian number,,,So-called 'Minister of Foreign Affairs' of the so-called 'Luhansk People’s Republic',Lugansk Heroes Square of the Great Patriotic War,9 Cabinet 212,,,,,,,"(UK Sanctions List Ref):RUS0091 (UK Statement of Reasons):Former Deputy Head of the ‘People's Council’ of the so-called ‘Luhansk People's Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Currently so-called 'Minister of Foreign Affairs’ of the so-called ‘Luhansk People's Republic’. (Phone number):505663783. 509435542. 642585793 (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13182 +DEYNEGO,Vladyslav,Nykolayevych,,,,,,,,12/03/1964,"(1) Romny, Sumy oblast (2) (possibly) Gornyatskiy village, Perevalsk district, Luhansk oblast",(1) Ukrainian SSR (now Ukraine) (2) Ukrainian SSR (now Ukraine),Ukraine,0258399,Russian number,,,So-called 'Minister of Foreign Affairs' of the so-called 'Luhansk People’s Republic',Lugansk Heroes Square of the Great Patriotic War,9 Cabinet 212,,,,,,,"(UK Sanctions List Ref):RUS0091 (UK Statement of Reasons):Former Deputy Head of the ‘People's Council’ of the so-called ‘Luhansk People's Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Currently so-called 'Minister of Foreign Affairs’ of the so-called ‘Luhansk People's Republic’. (Phone number):505663783. 509435542. 642585793 (Gender):Male",Individual,Primary name,,Russia,02/12/2014,31/12/2020,16/09/2022,13182 +DEZORTSEV,Dmitry,Eduardovich,,,,,ДЕЗОРЦЕВ Дмитрий Эдуардович,Cyrillic,Russian,19/06/1966,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1238 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial Integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15190 +DHAHI,Yasin,,,,,,,,,00/00/1960,,,,,,,,Former Head of Military Intelligence Branch 235 in Damascus. Military Inteligence in Homs.,,,,,,,,,"(UK Sanctions List Ref):SYR0238 (UK Statement of Reasons):Holds the rank of Brigadier General in the Syrian Armed Forces, in post after May 2011. Senior officer within the Military Intelligence Directorate of the Syrian Armed Forces. Former head of Military Intelligence Branch 235 in Damascus and Military Intelligence in Homs. Responsible for violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13495 +DHEER,Ali,Mohamed,Rage,Cali,,,,,,00/00/1966,,Somalia,Somalia,,,,,Spokesperson of Al-Shabaab,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0020 (UN Ref):SOi.021 Listed pursuant to paragraph 43(a) of resolution 2093 (2013) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the peace and reconciliation process in Somalia, or threaten the Federal Government of Somalia or AMISOM by force.” As a spokesperson for Al-Shabaab, Rage is involved in promulgating and supporting the group’s terrorist activities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals (Gender):Male",Individual,AKA,Good quality,Somalia,21/02/2022,21/02/2022,21/02/2022,14176 +DHEERE,Ali,,,,,,,,,00/00/1966,,Somalia,Somalia,,,,,Spokesperson of Al-Shabaab,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0020 (UN Ref):SOi.021 Listed pursuant to paragraph 43(a) of resolution 2093 (2013) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the peace and reconciliation process in Somalia, or threaten the Federal Government of Somalia or AMISOM by force.” As a spokesperson for Al-Shabaab, Rage is involved in promulgating and supporting the group’s terrorist activities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals (Gender):Male",Individual,AKA,Good quality,Somalia,21/02/2022,21/02/2022,21/02/2022,14176 +DHER,Abdelali,Abou,,,,,عبد العالي ابو ذر,,,19/12/1969,"Hussein Dey, Algiers",Algeria,Algeria,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0238 (UN Ref):QDi.279 Convicted in absentia by Algerian tribunal on 28 Mar. 1996. Algerian international arrest warrant number 03/09 of 6 Jun. 2009 issued by the Tribunal of Sidi Mhamed, Algiers, Algeria. Algerian extradition request number 2307/09 of 3 Sep. 2009, presented to Malian authorities. Father’s name is Ali Belkalem. Mother’s name is Fatma Saadoudi. Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,,ISIL (Da'esh) and Al-Qaida,04/05/2010,22/04/2010,31/12/2020,11096 +DHERE,Ali,,,,,,,,,00/00/1966,,Somalia,Somalia,,,,,Spokesperson of Al-Shabaab,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0020 (UN Ref):SOi.021 Listed pursuant to paragraph 43(a) of resolution 2093 (2013) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the peace and reconciliation process in Somalia, or threaten the Federal Government of Somalia or AMISOM by force.” As a spokesperson for Al-Shabaab, Rage is involved in promulgating and supporting the group’s terrorist activities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals (Gender):Male",Individual,AKA,Good quality,Somalia,21/02/2022,21/02/2022,21/02/2022,14176 +DHUAL,,,,,,,,,,00/00/1953,"(1) Akobo, Jonglei State (2) Uror County, Jonglei State",South Sudan,,,,,,"Chief of General Staff, SPLA in Opposition.",,,,,,Jonglei State,,South Sudan,"(UK Sanctions List Ref):SSU0009 (UN Ref):SSi.002 Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population. Photograph available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879066",Individual,AKA,Low quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13264 +DI SINGAPORE,F'raji,,,,,,,,,04/06/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +DI SINGAPORE,F'raji,,,,,,,,,13/11/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +DI SINGAPORE,F'raji,,,,,,,,,11/08/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +DI SINGAPORE,F'raji,,,,,,,,,04/04/1969,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +DI SINGAPORE,F'raji,,,,,,,,,04/04/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +DI SINGAPORE,F'raji,,,,,,,,,14/01/1968,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +DIAB,Mousa,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):LIB0067 (UK Statement of Reasons):There are reasonable grounds to suspect that Moussa Diab is responsible for a smuggler network involved in the trafficking of persons, inhumane and degrading treatment, torture, rape, and murder. These constitute both a violation of the right to life, and the breach of international humanitarian law in Libya. (Gender):Male",Individual,AKA,,Libya,21/09/2020,31/12/2020,31/12/2020,13914 +DIAB,Moussa,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):LIB0067 (UK Statement of Reasons):There are reasonable grounds to suspect that Moussa Diab is responsible for a smuggler network involved in the trafficking of persons, inhumane and degrading treatment, torture, rape, and murder. These constitute both a violation of the right to life, and the breach of international humanitarian law in Libya. (Gender):Male",Individual,Primary name,,Libya,21/09/2020,31/12/2020,31/12/2020,13914 +DIABY,Abdoulaye,Cherif,,,,,,,,26/02/1957,,,Guinea,13683,,,,Minister of Health,,,,,,,,,"(UK Sanctions List Ref):GUC0001 (UK Statement of Reasons):Person identified as responsible for the violent repression and events in Guinea on 28 September 2009 or the aftermath of that violent repression, including interfering with the access to medical care for victims and allowing military takeover of hospitals. (Gender):Male",Individual,Primary name,,Guinea,24/12/2009,31/12/2020,31/12/2020,10985 +DIABY,OUMAR,,,,,,,,,05/08/1975,Dakar,Senegal,Senegal,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0284 (UN Ref):QDi.342 A leader of an armed group linked to Al-Nusrah Front for the People of the Levant (QDe.137) and a key facilitator for a Syrian foreign terrorist fighter network. Active in terrorist propaganda through the Internet. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13139 +DIAKITE,Aboubacar,Cherif,,,,,,,,,,,Guinea,,,,,Commander of the Presidential Guard,,,,,,,,,(UK Sanctions List Ref):GUC0002 (UK Statement of Reasons):Person identified as responsible for the violent repression and events in Guinea on 28 September 2009 or the aftermath of that violent repression. As the commander of the presidential guard he was also involved committing serious human rights violations. (Gender):Male,Individual,Primary name,,Guinea,24/12/2009,31/12/2020,31/12/2020,10992 +DIAKITE,Toumba,,,,,,,,,,,,Guinea,,,,,Commander of the Presidential Guard,,,,,,,,,(UK Sanctions List Ref):GUC0002 (UK Statement of Reasons):Person identified as responsible for the violent repression and events in Guinea on 28 September 2009 or the aftermath of that violent repression. As the commander of the presidential guard he was also involved committing serious human rights violations. (Gender):Male,Individual,AKA,,Guinea,24/12/2009,31/12/2020,31/12/2020,10992 +DIANOVA,Irina,Leontievna,,,,Ms,ДИАНОВА Ирина Леонтьевна,Cyrillic,Russian,13/10/1962,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1239 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial Integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15191 +DIANOVA,Irina,Leontyevna,,,,,ДИАНОВА Ирина Леонтьевна,Cyrillic,Russian,13/10/1962,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1239 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial Integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15191 +DIAZ GONZALEZ,Tania,Valentina,,,,First Vice President of the National Constituent Assembly,,,,18/06/1963,Caracas,Venezuela,Venezuela,,,V-6432672,,(1) National Assembly Deputy (Dec 2020) (2) Vice President of the National Assembly’s People’s Power and Media Commission (Jan 2021) (3) Former First Vice President of the National Constituent Assembly,,,,,,,,Venezuela,"(UK Sanctions List Ref):VEN0028 (UK Statement of Reasons):National Assembly Deputy (2021-2026) and Vice President of the National Assembly’s People’s Power and Media Commission. Former member of the illegitimate National Constituent Assembly since August 2017, and former First Vice President since October 2018. Her actions as part of the National Constituent Assembly (ANC) including signing the decree that stripped the immunity of the president of the National Assembly (AN) and the interim-president of Venezuela, Juan Guaido, have undermined democracy and rule of law in Venezuela. (Gender):Female",Individual,Primary name,,Venezuela,30/06/2020,31/12/2020,28/01/2022,13843 +DIAZ MADRIZ,Francisco,Javier,,,,,Francisco Javier Díaz Madriz,,,03/08/1961,Chinandega,Nicaragua,Nicaragua,,,0810308610000L,,Director General of the Nicaraguan National Police (NNP),,,,,,,,Nicaragua,"(UK Sanctions List Ref):NIC0001 (UK Statement of Reasons):As Deputy Director General of the Nicaraguan National Police (NNP) Francisco Diaz was de facto leader of the police forces during the wave of violence that began in Nicaragua in April 2018. Diaz was appointed Director General of the NNP in August 2018. In these two roles, he was responsible for orchestrating the repressive actions, violence, and acts of torture by the police and pro-government armed gangs against protesters, students and civil society members. There are therefore reasonable grounds to suspect that he has been involved in serious human rights violations in Nicaragua. (Gender):Male",Individual,Primary name,,Nicaragua,05/05/2020,31/12/2020,31/12/2020,13836 +DIB,Ahmad,,,,,,,,,,,,Syria,,,,,Head of Deraa Regional Branch (General Security Directorate),,,,,,,,,"(UK Sanctions List Ref):SYR0071 (UK Statement of Reasons):As Head of the Deraa Regional Branch of the General Security Directorate, responsible for arbitrary detention and torture of detainees in Deraa. (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12478 +DIB,Ahmed,,,,,,,,,,,,Syria,,,,,Head of Deraa Regional Branch (General Security Directorate),,,,,,,,,"(UK Sanctions List Ref):SYR0071 (UK Statement of Reasons):As Head of the Deraa Regional Branch of the General Security Directorate, responsible for arbitrary detention and torture of detainees in Deraa. (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12478 +DIBE,Ahmad,,,,,,,,,,,,Syria,,,,,Head of Deraa Regional Branch (General Security Directorate),,,,,,,,,"(UK Sanctions List Ref):SYR0071 (UK Statement of Reasons):As Head of the Deraa Regional Branch of the General Security Directorate, responsible for arbitrary detention and torture of detainees in Deraa. (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12478 +DIBE,Ahmed,,,,,,,,,,,,Syria,,,,,Head of Deraa Regional Branch (General Security Directorate),,,,,,,,,"(UK Sanctions List Ref):SYR0071 (UK Statement of Reasons):As Head of the Deraa Regional Branch of the General Security Directorate, responsible for arbitrary detention and torture of detainees in Deraa. (Gender):Male",Individual,Primary name,,Syria,24/01/2012,31/12/2020,31/12/2020,12478 +DIBRI,Abdulqader,Yusef,,,,,,,,00/00/1946,Houn,Libya,,,,,,Head of Muammar Qadhafi's personal security,,,,,,,,,"(UK Sanctions List Ref):LIB0027 (UN Ref):LYi.002 UN Listing pursuant to paragraph 15 of resolution 1970 (Travel Ban). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525735 (UK Statement of Reasons):Involved in activities carried out on behalf of the former regime of Muammar Qadhafi, implementing or connected to the repressive policies of that regime, including directing violence against dissidents. (Gender):Male",Individual,Primary name,,Libya,03/03/2011,31/12/2020,10/02/2022,11656 +DIBRI,Abdulqader,Yusef,,,,,,,,,Houn,Libya,,,,,,Head of Muammar Qadhafi's personal security,,,,,,,,,"(UK Sanctions List Ref):LIB0027 (UN Ref):LYi.002 UN Listing pursuant to paragraph 15 of resolution 1970 (Travel Ban). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525735 (UK Statement of Reasons):Involved in activities carried out on behalf of the former regime of Muammar Qadhafi, implementing or connected to the repressive policies of that regime, including directing violence against dissidents. (Gender):Male",Individual,Primary name,,Libya,03/03/2011,31/12/2020,10/02/2022,11656 +DIDENKO,Sergei,Mikhaylovich,,,,,ДИДЕНКО Сергей Михайлович,Cyrillic,Russian,22/06/1974,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1267 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15219 +DIDENKO,Sergey,Mikhailovich,,,,,,,,22/06/1974,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1267 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15219 +DIDENKO,Alexey,Nikolaevich,,,,,Диденко Алексей Николаевич,,,30/03/1983,Pochapintsy,Ukraine,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0369 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14314 +DIJLA PETROLEUM COMPANY,,,,,,,,,,,,,,,,,,,Building No. 653,1st Floor Daraa Highway,,,P.O. Box 81,Damascus,,Syria,(UK Sanctions List Ref):SYR0293 Oil and Gas Sector (UK Statement of Reasons):Joint venture of Syrian General Petroleum Company. Provides financial support to the regime.,Entity,Primary name,,Syria,24/01/2012,31/12/2020,13/05/2022,12490 +DIKIY,Aleksei,Alexandrovich,,,,,ДИКИЙ Алексей Александрович,Cyrillic,Russian,05/07/1974,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1133 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15085 +DIKIY,Aleksey,Aleksandrovich,,,,,,,,05/07/1974,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1133 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15085 +DILIP,Aziz,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +DILIP,Aziz,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +DILIP,Aziz,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +DIMON,,,,,,,,,,29/01/1971,Roubaix,France,France,,,,,,,,,,,,,France,(UK Sanctions List Ref):AQD0217 (UN Ref):QDi.095 In custody in France as of May 2004. Sentenced to 25 years imprisonment in France in 2007. His sentence is due to end on 13 Jul. 2023 and his unconditional detention to end on 13 Aug. 2020. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4531664,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,11/02/2022,7797 +DIMOV,Oleg,Dmitrievich,,,,,Олег Дмитриевич Димов,,,08/03/1968,Vladychen,Ukraine,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0370 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,15/03/2022,14315 +DIO MARINE INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,44 Sharif St.,"Hoveyzeh, Korramshahr",North Sohrevardi Ave,,,,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +DIO MARINE INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,P.O. Box 19585 348,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +DIO MARINE INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,Pasdaran Avenue.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +DIO MARINE INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +DIO MARINE INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +DIRECTORATE FOR DEFENCE INDUSTRIES,,,,,,,,,,,,,,,,,,,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0032 (UK Statement of Reasons):The Myanmar military seized power from civilian leaders on 1 February in a coup d’état and established a military junta. The Myanmar security forces have committed serious human rights violations since 1 February 2021 and are responsible for the repression of the civilian population. The Directorate for Defence Industries (DDI) is a state-owned enterprise which operates under the Ministry of Defence (MOD). There are reasonable grounds to suspect that DDI is or has been involved in undermining democracy, the rule of law or good governance in Myanmar and the repression of the civilian population in Myanmar by its involvement in the supply to Myanmar of goods or technology which could contribute to a serious human rights violation or abuse. Further, there are reasonable grounds to suspect that DDI, as a state-owned enterprise subservient to the MOD, is acting on behalf or at the direction of the Minister of Defence, General Mya Tun Oo, who has been involved in undermining democracy, the rule of law or good governance in Myanmar and the repression of the civilian population in Myanmar, and is designated by the UK’s Myanmar sanctions regime. (Type of entity):Public Company",Entity,Primary name,,Myanmar,10/12/2021,10/12/2021,11/11/2022,14165 +DIRECTORATE FOR DEFENCE PROCUREMENT,,,,,,,,,,,,,,,,,,,,,,,,Nay Pyi Taw,,Myanmar,"(UK Sanctions List Ref):MYA0033 (UK Statement of Reasons):The Directorate of Procurement sits within the Myanmar Ministry of Defence, which is responsible for the Myanmar Armed Forces who are perpetrating a campaign of violence and human rights violations across Myanmar. The Commander-in-Chief, a designated individual in his own right, is associated with the Directorate of Procurement in his capacity as head of the Tatmadaw. Evidence indicates the Directorate of Procurement plays a central role in procuring and maintain weapons and equipment for the Myanmar Armed Forces, allowing them to continue to repress peaceful protests in Myanmar. (Type of entity):Public Company",Entity,Primary name,,Myanmar,10/12/2021,10/12/2021,11/11/2022,14166 +DIRECTORATE FOR INTERNAL SECURITY OF THE IRANIAN MINISTRY OF INTELLIGENCE AND SECURITY,,,,,,,,,,,,,,,,,,,,,,,,,,Iran,(UK Sanctions List Ref):CTI0028 (UK Statement of Reasons):The Internal Security Directorate of Iran’s Ministry of Intelligence and Security (MOIS) was involved in the foiled terrorist attack against a meeting of Iranian exiles in Villepinte in June 2018.,Entity,Primary name,,Counter-Terrorism (International),09/01/2019,31/12/2020,31/12/2020,13742 +DIRECTORATE OF YAZD AMMUNITION AND METALLURGY INDUSTRIES,,,,,,,,,,,,,,,,,,,Km 5 of Taft Road,,,,,Yazd,,Iran,(UK Sanctions List Ref):INU0191 (UN Ref):IRe.078 YMI is a subordinate of DIO. [Old Reference #E.29.I.22]. (Parent company):Defence Industries Organisation (DIO),Entity,AKA,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11129 +DIRECTORATE OF YAZD AMMUNITION AND METALLURGY INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O.Box 89195-678,,,,,Yazd,,Iran,(UK Sanctions List Ref):INU0191 (UN Ref):IRe.078 YMI is a subordinate of DIO. [Old Reference #E.29.I.22]. (Parent company):Defence Industries Organisation (DIO),Entity,AKA,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11129 +DIRECTORATE OF YAZD AMMUNITION AND METALLURGY INDUSTRIES,,,,,,,,,,,,,,,,,,,Pasdaran Avenue,next to Telecommunication Industry,,,,Tehran,16588,Iran,(UK Sanctions List Ref):INU0191 (UN Ref):IRe.078 YMI is a subordinate of DIO. [Old Reference #E.29.I.22]. (Parent company):Defence Industries Organisation (DIO),Entity,AKA,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11129 +DIRECTORATE OF YAZD AMMUNITION AND METALLURGY INDUSTRIES,,,,,,,,,,,,,,,,,,,Postal Box 89195/878,,,,,Yazd,,Iran,(UK Sanctions List Ref):INU0191 (UN Ref):IRe.078 YMI is a subordinate of DIO. [Old Reference #E.29.I.22]. (Parent company):Defence Industries Organisation (DIO),Entity,AKA,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11129 +DIRGHAM,Mohammad,,,,,,,,,,,,Syria,,,,,Commander of the 4th Armoured Division,4th Division HQ,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0173 (UK Statement of Reasons):Ordered troops to shoot at protestors in and around Damascus, including Mo'adamiyeh, Douma, Abasiyeh, Duma (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12462 +DIRGHAM,Mohammed,,,,,,,,,,,,Syria,,,,,Commander of the 4th Armoured Division,4th Division HQ,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0173 (UK Statement of Reasons):Ordered troops to shoot at protestors in and around Damascus, including Mo'adamiyeh, Douma, Abasiyeh, Duma (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12462 +DIRGHAM,Muhammad,,,,,,,,,,,,Syria,,,,,Commander of the 4th Armoured Division,4th Division HQ,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0173 (UK Statement of Reasons):Ordered troops to shoot at protestors in and around Damascus, including Mo'adamiyeh, Douma, Abasiyeh, Duma (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12462 +DIRGHAM,Muhammad,Ali,,,,,,,,,,,Syria,,,,,Commander of the 4th Armoured Division,4th Division HQ,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0173 (UK Statement of Reasons):Ordered troops to shoot at protestors in and around Damascus, including Mo'adamiyeh, Douma, Abasiyeh, Duma (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12462 +DIRIYE,Abu,,,,,,,,,00/00/1972,,Somalia,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0014 (UN Ref):SOi.014,Individual,AKA,Good quality,Somalia,23/10/2014,24/09/2014,31/12/2020,13150 +DIRIYE,AHMED,,,,,,,,,00/00/1972,,Somalia,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0014 (UN Ref):SOi.014,Individual,Primary name,,Somalia,23/10/2014,24/09/2014,31/12/2020,13150 +DIRKS,Natalia,Germanova,,,,,ДИРКС Наталья Германова,,,17/09/1961,,,,,,,,Member of VTB Bank Management Board,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0848 (UK Statement of Reasons):Natalia DIRKS is a member of VTB Bank’s Management Board. VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, DIRKS obtains a financial benefit from VTB Bank, therefore DIRKS is an involved person on the basis of his membership of and association with VTB Bank. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,13/05/2022,14799 +DIRKS,Natalya,,,,,,,,,17/09/1961,,,,,,,,Member of VTB Bank Management Board,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0848 (UK Statement of Reasons):Natalia DIRKS is a member of VTB Bank’s Management Board. VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, DIRKS obtains a financial benefit from VTB Bank, therefore DIRKS is an involved person on the basis of his membership of and association with VTB Bank. (Gender):Female",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,13/05/2022,14799 +DIRNAWI,Hamzah,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,,,,,,Reportedly located in Waziristan,,,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +DIRNAWI,Hamzah,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,"Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan",,,,,,,Pakistan,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +DIT SAID,Abdellillah,dit,Abdellah,Ahmed,,,,,,17/01/1967,"Anser, Wilaya (province) of Jijel",Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0124 (UN Ref):QDi.252 Belongs to the leadership and is the finance chief of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Mother’s name is Zakia Chebira. Father’s name is Lakhdar. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529228,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,12/01/2022,10693 +DIVISION 39,,,,,,,,,,,,,,,,,,,,Changwang Street,,,,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +DIVISION 39,,,,,,,,,,,,,,,,,,,"Second KWP Government Building (Korean – Ch’o’ngsa, Urban Town (Korean-Dong)",,,,Chung Ward,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +DIVISION 39,,,,,,,,,,,,,,,,,,,Chung-Guyok (Central District),Sosong Street,,,Kyongrim-Dong,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +DJAMAAT TURKISTAN,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0040 (UN Ref):QDe.088,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,12/09/2002,11/09/2002,31/12/2020,7122 +DJAMEL,Mostafa,,,,,,,,,22/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mostafa,,,,,,,,,26/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mostafa,,,,,,,,,,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mostafa,,,,,,,,,26/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mostafa,,,,,,,,,28/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mostafa,,,,,,,,,31/12/1979,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mostafa,,,,,,,,,10/06/1982,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mostefa,,,,,,,,,22/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mostefa,,,,,,,,,26/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mostefa,,,,,,,,,,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mostefa,,,,,,,,,26/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mostefa,,,,,,,,,28/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mostefa,,,,,,,,,31/12/1979,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mostefa,,,,,,,,,10/06/1982,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mustafa,,,,,,,,,22/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mustafa,,,,,,,,,26/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mustafa,,,,,,,,,,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mustafa,,,,,,,,,26/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mustafa,,,,,,,,,28/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mustafa,,,,,,,,,31/12/1979,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJAMEL,Mustafa,,,,,,,,,10/06/1982,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +DJANG,Cheul-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,China,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +DJANG,Cheul-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +DJANG,Chol-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,China,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +DJANG,Chol-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +DJANG,Tcheul,Hy,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,China,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +DJANG,Tcheul,Hy,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +DJANG,Tcheul-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,China,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +DJANG,Tcheul-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +DJANG,Tchou-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,China,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +DJANG,Tchou-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +DJECO GROUP LP,,,,,,,,,,,,,,,,,,,International House,38 Thistle Street,,,,Edinburgh,EH2 1EN,United Kingdom,"(UK Sanctions List Ref):RUS1118 (UK Statement of Reasons):DJECO GROUP LP is directly owned and controlled by a person who is or has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine by making available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. The Minister certified on 18 May 2022 that conditions B and C continued to be met. (Type of entity):Limited partnership (Business Reg No):SL033858",Entity,Primary name,,Russia,31/03/2022,31/03/2022,20/07/2022,15067 +DJERMANE,KAMEL,,,,,,كمال جرمان,,,12/10/1965,Oum el Bouaghi,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0212 (UN Ref):QDi.167 In detention in Algeria as at April 2010. Arrest warrant issued by the German authorities on 9 Oct. 2003 for involvement in kidnapping. Former member of the Katibat Tarek Ibn Ziad of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/05/2004,03/05/2004,31/12/2020,8352 +DJOUADI,YAHIA,,,,,,يحيى جوادي,,,01/01/1967,"M’Hamid, Wilaya (province) of Sidi Bel Abbes",Algeria,Algeria,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0333 (UN Ref):QDi.249 Belongs to the leadership of the Organization of Al-Qaida in the Islamic Maghreb (listed under permanent reference number QDe.014). Located in Northern Mali as of Jun. 2008. Mother’s name is Zohra Fares. Father’s name is Mohamed. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1274977,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,12/01/2022,10690 +DMITRIEV,Kirill,,,,,,,,,12/04/1975,Kyiv,Ukraine,Russia,,,,,CEO Russian Direct Investment Fund,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0264 (UK Statement of Reasons):Kirill DMITRIEV (hereafter DMITRIEV) is the Chief Executive Officer of the Russian Direct Investment Fund (RDIF), which is Russia's sovereign wealth fund. As Chief Executive Officer of RDIF, DMITRIEV is working as a director or equivalent of a Government of Russia-affiliated entity, and for a person which is carrying on business in a sector of strategic significance to the Government of Russia; and for a person which is carrying on business of economic significance to the Government of Russia, and is therefore obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14208 +DMITRIEV,Kirill,Alexandrovich,,,,,Кирилл Александрович Дмитриев,,,12/04/1975,Kyiv,Ukraine,Russia,,,,,CEO Russian Direct Investment Fund,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0264 (UK Statement of Reasons):Kirill DMITRIEV (hereafter DMITRIEV) is the Chief Executive Officer of the Russian Direct Investment Fund (RDIF), which is Russia's sovereign wealth fund. As Chief Executive Officer of RDIF, DMITRIEV is working as a director or equivalent of a Government of Russia-affiliated entity, and for a person which is carrying on business in a sector of strategic significance to the Government of Russia; and for a person which is carrying on business of economic significance to the Government of Russia, and is therefore obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,01/03/2022,01/03/2022,01/03/2022,14208 +DMITRIEV,Vladimir,Aleksandrovich,,,,,Владимир Александрович Дмитриев,Cyrillic,Russian,25/08/1953,Moscow,Russia,,,,,,Member of the Board of Directors of Gazprombank JSC,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1633 (UK Statement of Reasons):Vladimir Alexandrovich Dmitriev is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by:(1) working as a director of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a director of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15577 +DMITRIEVA,Oksana,Genrikhovna,,,,,Дмитриева Оксана Генриховна,,,03/04/1958,Leningrad,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0371 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14316 +DMITRIYEVA,Elena,Borisovna,,,,,,,,09/12/1954,"Bui, Kostroma Region",Russia,Russia,,,,,Former Deputy in the State Duma. Member of Federation Council from Omsk region; Deputy Chairman of the Federation Committee on Constitutional Legislation and State Building.,,,,,,,,,"(UK Sanctions List Ref):RUS0034 (UK Statement of Reasons):Former Deputy in the State Duma. Originator and co-sponsor of legislative proposals in Russia that would have allowed regions of other countries to join Russia without their central authorities' prior agreement. As of September 2015, a Member of the Federation Council from Omsk Region. Currently Deputy Chairman of the Federation Council Committee on Constitutional Legislation and State Building. (Gender):Female",Individual,AKA,,Russia,21/03/2014,31/12/2020,31/12/2020,12941 +DMUHAILA,ALENA,MIKALAEUNA,,,,,Алена Мікалаеўна Дмухайлы,,,01/07/1971,,,,,,,,Secretary of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0035 (UK Statement of Reasons):Alena DMUHAILA is the Secretary of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13952 +DMUHAILA,Elena,Nikolaevna,,,,,,,,01/07/1971,,,,,,,,Secretary of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0035 (UK Statement of Reasons):Alena DMUHAILA is the Secretary of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13952 +DMUHAILO,ALENA,MIKALAEUNA,,,,,,,,01/07/1971,,,,,,,,Secretary of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0035 (UK Statement of Reasons):Alena DMUHAILA is the Secretary of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13952 +DMUHAILO,Elena,,,,,,,,,01/07/1971,,,,,,,,Secretary of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0035 (UK Statement of Reasons):Alena DMUHAILA is the Secretary of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13952 +DMUHAILO,Elena,Nikolaevna,,,,,,,,01/07/1971,,,,,,,,Secretary of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0035 (UK Statement of Reasons):Alena DMUHAILA is the Secretary of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13952 +DMUHAJLO,Elena,Nikolaevna,,,,,,,,01/07/1971,,,,,,,,Secretary of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0035 (UK Statement of Reasons):Alena DMUHAILA is the Secretary of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13952 +DMUJAJLO,ALENA,MIKALAEUNA,,,,,,,,01/07/1971,,,,,,,,Secretary of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0035 (UK Statement of Reasons):Alena DMUHAILA is the Secretary of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13952 +DMUJAJLO,Elena,Nikolaevna,,,,,,,,01/07/1971,,,,,,,,Secretary of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0035 (UK Statement of Reasons):Alena DMUHAILA is the Secretary of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13952 +DMUKHAILO,ALENA,MIKALAEUNA,,,,,,,,01/07/1971,,,,,,,,Secretary of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0035 (UK Statement of Reasons):Alena DMUHAILA is the Secretary of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13952 +DMUKHAILO,Elena,Nikolaevna,,,,,,,,01/07/1971,,,,,,,,Secretary of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0035 (UK Statement of Reasons):Alena DMUHAILA is the Secretary of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13952 +DO CHUN,Pak,,,,,,,,,09/03/1944,,,,,,,,Former Secretary of Munitions Industry Department (MID). Adviser on nuclear and missile programmes. Former State Affairs Commission member. Member of the Workers’ Party of Korea Political Bureau,,,,,,,,,(UK Sanctions List Ref):DPR0257 (UN Ref):KPi.050 Pak To Chun is a former Secretary of Munitions Industry Department (MID) and currently advises on affairs relating to nuclear and missile programmes. He is a former State Affairs Commission member and is a member Workers’ Party of Korea Political Bureau.,Individual,AKA,Good quality,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13480 +DOBRODEEV,Oleg,Borisovich,,,,,Олег Борисович ДОБРОДЕЕВ,Cyrillic,Russian,28/10/1959,,,Russia,,,,,Director General of the All-Russian State Television and Radio Broadcasting Company (VGTRK),,,,,,,,,"(UK Sanctions List Ref):RUS1385 (UK Statement of Reasons):Oleg Borisovich DOBRODEEV (hereafter DOBRODEEV) is the General Director of the All-Russian State Television and Radio Broadcasting Company (VGTRK), a Government of Russia-affiliated entity. As such, he is associated with a person involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,24/06/2022,15318 +DOBRODEYEV,Oleg,Borisovich,,,,,,,,28/10/1959,,,Russia,,,,,Director General of the All-Russian State Television and Radio Broadcasting Company (VGTRK),,,,,,,,,"(UK Sanctions List Ref):RUS1385 (UK Statement of Reasons):Oleg Borisovich DOBRODEEV (hereafter DOBRODEEV) is the General Director of the All-Russian State Television and Radio Broadcasting Company (VGTRK), a Government of Russia-affiliated entity. As such, he is associated with a person involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,04/05/2022,04/05/2022,24/06/2022,15318 +DOBROLET,,,,,,,,,,,,,,,,,,,,,,,G. Moskva,ul Kozhevnicheskaya d. 7 str 1,115114,,(UK Sanctions List Ref):RUS0171 Names of Director(s)/Management: GORBUNOV 1: Vladimir 2: Pavlovich (General Director) (UK Statement of Reasons):Dobrolet was a subsidiary of a Russian state-owned airline. Since the annexation of Crimea Dobrolet exclusively operated flights between Moscow and Simferopol. It therefore facilitated the integration of the annexed Autonomous Republic of Crimea into the Russian Federation and undermines Ukrainian sovereignty and territorial integrity (Phone number):+ 7 (499) 4271101 (GMC Rosstat). + 7 (903) 7964488 (GMC Rosstat). +7 (495) 7529002 (Company Data). +7 (962) 9823682 (GMC Rosstat) (Website):www.dobrolet.com (Type of entity):State Owned Enterprise - was a subsidiary of a Russian State-owned airline. Airline code QD (Business Reg No):SPARK code 9027410,Entity,Primary name,,Russia,31/07/2014,31/12/2020,31/12/2020,13077 +DOBROLET,,,,,,,,,,,,,,,,,,,,,Aeroflot,ul Arvat,D 10,OAO (Moscow),,Russia,(UK Sanctions List Ref):RUS0171 Names of Director(s)/Management: GORBUNOV 1: Vladimir 2: Pavlovich (General Director) (UK Statement of Reasons):Dobrolet was a subsidiary of a Russian state-owned airline. Since the annexation of Crimea Dobrolet exclusively operated flights between Moscow and Simferopol. It therefore facilitated the integration of the annexed Autonomous Republic of Crimea into the Russian Federation and undermines Ukrainian sovereignty and territorial integrity (Phone number):+ 7 (499) 4271101 (GMC Rosstat). + 7 (903) 7964488 (GMC Rosstat). +7 (495) 7529002 (Company Data). +7 (962) 9823682 (GMC Rosstat) (Website):www.dobrolet.com (Type of entity):State Owned Enterprise - was a subsidiary of a Russian State-owned airline. Airline code QD (Business Reg No):SPARK code 9027410,Entity,Primary name,,Russia,31/07/2014,31/12/2020,31/12/2020,13077 +DOBROLET,,,,,,,,,,,,,,,,,,,,,International Highway,House 31,Building 1,Moscow,141411,Russia,(UK Sanctions List Ref):RUS0171 Names of Director(s)/Management: GORBUNOV 1: Vladimir 2: Pavlovich (General Director) (UK Statement of Reasons):Dobrolet was a subsidiary of a Russian state-owned airline. Since the annexation of Crimea Dobrolet exclusively operated flights between Moscow and Simferopol. It therefore facilitated the integration of the annexed Autonomous Republic of Crimea into the Russian Federation and undermines Ukrainian sovereignty and territorial integrity (Phone number):+ 7 (499) 4271101 (GMC Rosstat). + 7 (903) 7964488 (GMC Rosstat). +7 (495) 7529002 (Company Data). +7 (962) 9823682 (GMC Rosstat) (Website):www.dobrolet.com (Type of entity):State Owned Enterprise - was a subsidiary of a Russian State-owned airline. Airline code QD (Business Reg No):SPARK code 9027410,Entity,Primary name,,Russia,31/07/2014,31/12/2020,31/12/2020,13077 +DOBROLYOT,,,,,,,,,,,,,,,,,,,,,,,G. Moskva,ul Kozhevnicheskaya d. 7 str 1,115114,,(UK Sanctions List Ref):RUS0171 Names of Director(s)/Management: GORBUNOV 1: Vladimir 2: Pavlovich (General Director) (UK Statement of Reasons):Dobrolet was a subsidiary of a Russian state-owned airline. Since the annexation of Crimea Dobrolet exclusively operated flights between Moscow and Simferopol. It therefore facilitated the integration of the annexed Autonomous Republic of Crimea into the Russian Federation and undermines Ukrainian sovereignty and territorial integrity (Phone number):+ 7 (499) 4271101 (GMC Rosstat). + 7 (903) 7964488 (GMC Rosstat). +7 (495) 7529002 (Company Data). +7 (962) 9823682 (GMC Rosstat) (Website):www.dobrolet.com (Type of entity):State Owned Enterprise - was a subsidiary of a Russian State-owned airline. Airline code QD (Business Reg No):SPARK code 9027410,Entity,AKA,,Russia,31/07/2014,31/12/2020,31/12/2020,13077 +DOBROLYOT,,,,,,,,,,,,,,,,,,,,,Aeroflot,ul Arvat,D 10,OAO (Moscow),,Russia,(UK Sanctions List Ref):RUS0171 Names of Director(s)/Management: GORBUNOV 1: Vladimir 2: Pavlovich (General Director) (UK Statement of Reasons):Dobrolet was a subsidiary of a Russian state-owned airline. Since the annexation of Crimea Dobrolet exclusively operated flights between Moscow and Simferopol. It therefore facilitated the integration of the annexed Autonomous Republic of Crimea into the Russian Federation and undermines Ukrainian sovereignty and territorial integrity (Phone number):+ 7 (499) 4271101 (GMC Rosstat). + 7 (903) 7964488 (GMC Rosstat). +7 (495) 7529002 (Company Data). +7 (962) 9823682 (GMC Rosstat) (Website):www.dobrolet.com (Type of entity):State Owned Enterprise - was a subsidiary of a Russian State-owned airline. Airline code QD (Business Reg No):SPARK code 9027410,Entity,AKA,,Russia,31/07/2014,31/12/2020,31/12/2020,13077 +DOBROLYOT,,,,,,,,,,,,,,,,,,,,,International Highway,House 31,Building 1,Moscow,141411,Russia,(UK Sanctions List Ref):RUS0171 Names of Director(s)/Management: GORBUNOV 1: Vladimir 2: Pavlovich (General Director) (UK Statement of Reasons):Dobrolet was a subsidiary of a Russian state-owned airline. Since the annexation of Crimea Dobrolet exclusively operated flights between Moscow and Simferopol. It therefore facilitated the integration of the annexed Autonomous Republic of Crimea into the Russian Federation and undermines Ukrainian sovereignty and territorial integrity (Phone number):+ 7 (499) 4271101 (GMC Rosstat). + 7 (903) 7964488 (GMC Rosstat). +7 (495) 7529002 (Company Data). +7 (962) 9823682 (GMC Rosstat) (Website):www.dobrolet.com (Type of entity):State Owned Enterprise - was a subsidiary of a Russian State-owned airline. Airline code QD (Business Reg No):SPARK code 9027410,Entity,AKA,,Russia,31/07/2014,31/12/2020,31/12/2020,13077 +DODIK,Milorad,,,,,Minister,Милорад Додик,,,12/03/1959,Banja Luka,Bosnia and Herzegovina,Bosnia and Herzegovina,,,,,(1) President of the Alliance of Independent Social Democrats (SNSD/СНСД) (2) Representative of the Bosnian Serbs within the state-level tripartite Presidency of Bosnia and Herzegovina,Karadjordjeva Street 3,,,,,Laktasi,78250,Bosnia and Herzegovina,"(UK Sanctions List Ref):BIH0002 Has previously held a series of high-profile governance positions within the Bosnian Serb Entity. Leader of a key party, the SNSD (expelled from the Socialist International in 2012 for its “nationalism and extremism”). The party has been in power in the Republika Srpska since 2006. (UK Statement of Reasons):Milorad Dodik as the Bosnian Serb member of the Bosnia and Herzegovina tripartite Presidency has used this position to undermine the territorial integrity, sovereignty and stability of Bosnia and Herzegovina through using hate speech to stir ethnic tensions, calling for the fragmentation of Bosnia and Herzogovina to create an independent Republika Srpska, and overseeing legislative steps to degrade/destroy state institutions. (Gender):Male",Individual,Primary name,,Bosnia and Herzegovina,11/04/2022,11/04/2022,11/04/2022,15082 +DODONG,,,,,,,,,,15/05/1972,"Punta, Santa Ana, Manila",Philippines,Philippines,,,,,,Ma. Bautista,,,Punta,Santa Ana,Manila,3111,Philippines,(UK Sanctions List Ref):AQD0293 (UN Ref):QDi.246 Member of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). Father's name is Fernando Rafael Dellosa. Mother's name is Editha Parado Cain. In detention in the Philippines as of Jan. 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10666 +DOGAEV,Ahmed,Shamkhanovich,,,,,Догаев Ахмед Шамханович,,,18/08/1965,Belorechie,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0372 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14317 +DOLGOV,Konstantin,Konstantinovich,,,,,Константин Константинович ДОЛГОВ,,,12/08/1968,Moscow,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0910 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14861 +DOLUDA,Nikolai,Alexandrovich,,,,,Долуда Николай Александрович,,,10/06/1952,Myrolyuivka,Ukraine,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0373 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14318 +DOMARNATSKY,Mikhail,Alexandrovich,,,,,Михаил Александрович ДОМОРНАЦКИЙ,,,,,,Belarus,,,,,Head of OMON (‘Special Purpose Police Detachment’) in Gomel/Homyel,,,,,,,,,"(UK Sanctions List Ref):BEL0023 (UK Statement of Reasons):Mikhail Damarnacki is Commander of the Special Purpose Police Unit of Gomel (OMON). In his role as Commander, Damarnacki bears responsibility for the actions of OMON officers in Gomel. Damarnacki therefore bears responsibility for the serious human rights violations carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of people believed to be peaceful demonstrators (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13945 +DOMARNATSKY,Mikhail,Aliaksandravich,,,,,,,,,,,Belarus,,,,,Head of OMON (‘Special Purpose Police Detachment’) in Gomel/Homyel,,,,,,,,,"(UK Sanctions List Ref):BEL0023 (UK Statement of Reasons):Mikhail Damarnacki is Commander of the Special Purpose Police Unit of Gomel (OMON). In his role as Commander, Damarnacki bears responsibility for the actions of OMON officers in Gomel. Damarnacki therefore bears responsibility for the serious human rights violations carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of people believed to be peaceful demonstrators (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13945 +DOMINGUEZ ALVAREZ,Fidel,de Jesus,,,,,,,,21/03/1963,Rivas,Nicaragua,Nicaragua,,,,,"Chief Commissioner of the Police in the Department of León, Nicaragua",,,,,,,,Nicaragua,"(UK Sanctions List Ref):NIC0014 (UK Statement of Reasons):Fidel de Jesus DOMINGUEZ ALVAREZ is the Chief Commissioner of Police in the Department of León. In this position, he is responsible for undermining democracy and the rule of law, repression of civil society and the democratic opposition and human rights violations within the city of León. There are also reasonable grounds to suspect that he is aware of, and has authority over, similar violations committed by his subordinates within the Police Department of León. (Gender):Male",Individual,Primary name,,Nicaragua,15/11/2021,15/11/2021,15/11/2021,14152 +DONBAS PEOPLE'S MILITIA,,,,,,,,,,,,,,,,,,,,,,,Prospect Zasyadko.13.,Donetsk,,,"(UK Sanctions List Ref):RUS0172 (UK Statement of Reasons):Illegal armed separatist group responsible for fighting against the Ukrainian government forces in the Eastern Ukraine, thus threatening the stability or security of Ukraine. Inter alia, the militant group seized control of several government buildings in Eastern Ukraine in early April 2014, thus undermining the territorial integrity, sovereignty and indepedence of Ukraine. Its former leader Mr Pavel Gubarev, is responsible for the taking over of the regional government building in Donetsk with pro-Russian forces and proclaiming himself the 'people's governor'. (Phone number):(1) +38 094-912-96-60 (2) +7 (926) 428-99-51 (3) +7 (967) 171-27-09. -287 -323. -647. -774 (Website):http://vk.com/polkdonbassa (Email address):(1) mobilisation@novorossia.co (2) novoross24@mail.ru (3) voenkom.dnr@mail.ru",Entity,AKA,,Russia,25/07/2014,31/12/2020,16/09/2022,13045 +DONBASS PEOPLE'S MILITIA,,,,,,,,,,,,,,,,,,,,,,,Prospect Zasyadko.13.,Donetsk,,,"(UK Sanctions List Ref):RUS0172 (UK Statement of Reasons):Illegal armed separatist group responsible for fighting against the Ukrainian government forces in the Eastern Ukraine, thus threatening the stability or security of Ukraine. Inter alia, the militant group seized control of several government buildings in Eastern Ukraine in early April 2014, thus undermining the territorial integrity, sovereignty and indepedence of Ukraine. Its former leader Mr Pavel Gubarev, is responsible for the taking over of the regional government building in Donetsk with pro-Russian forces and proclaiming himself the 'people's governor'. (Phone number):(1) +38 094-912-96-60 (2) +7 (926) 428-99-51 (3) +7 (967) 171-27-09. -287 -323. -647. -774 (Website):http://vk.com/polkdonbassa (Email address):(1) mobilisation@novorossia.co (2) novoross24@mail.ru (3) voenkom.dnr@mail.ru",Entity,Primary name,,Russia,25/07/2014,31/12/2020,16/09/2022,13045 +DONETSK PEOPLE’S REPUBLIC,,,,,,,,,,,,,,,,,,,,,,,,Donetsk,,,"(UK Sanctions List Ref):RUS0173 Names of Director(s)/Management: Self-declared leader: Denis Pushilin (UK Statement of Reasons):The so called 'Donetsk People's Republic' was declared on 7 April 2014. Responsible for organising the illegal referendum on May 11 2014. Declaration of Independence on May 12 2014. On 24 May 2014, the so called 'People's Republics' of Donetsk and Lugansk signed an agreement on the creation of the so called 'Federal State of Novorossiya.' (Website):https://dnr-online.ru/",Entity,Primary name variation,,Russia,25/07/2014,31/12/2020,16/09/2022,13048 +DONETSK REPUBLIC,,,,,,,,,,,,,,,,,,,,,,,Donetsk,Universitetskaya 19,,,"(UK Sanctions List Ref):RUS0174 (UK Statement of Reasons):The Donetsk Republic is a public ‘organisation’ that presented candidates in the so-called ‘elections’ of the so- called ‘Donetsk People's Republic’ on 2 November 2014. These ‘elections’ were in breach of Ukrainian law and therefore illegal. In participating formally in the illegal ‘elections’ it has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. It was headed by Alexander ZAKHARCHENKO until his assassination in 2018 and was founded by Andriy PURGIN. According to its website it is now under the chairmanship of Denis PUSHILIN, who is also the so-called Head of State of the so-called Donetsk People’s Republic. (Website):http://oddr.info (Type of entity):Public Government Body",Entity,Primary name,,Russia,02/12/2014,31/12/2020,16/09/2022,13183 +DONETSKAYA NARODNAYA RESPUBLIKA,,,,,,,,,,,,,,,,,,,,,,,,Donetsk,,,"(UK Sanctions List Ref):RUS0173 Names of Director(s)/Management: Self-declared leader: Denis Pushilin (UK Statement of Reasons):The so called 'Donetsk People's Republic' was declared on 7 April 2014. Responsible for organising the illegal referendum on May 11 2014. Declaration of Independence on May 12 2014. On 24 May 2014, the so called 'People's Republics' of Donetsk and Lugansk signed an agreement on the creation of the so called 'Federal State of Novorossiya.' (Website):https://dnr-online.ru/",Entity,AKA,,Russia,25/07/2014,31/12/2020,16/09/2022,13048 +DONGBANG BANK,,,,,,,,,,,,,,,,,,,PO Box 32,BEL Building,Jonseung-Dung,,Moranbong District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0126 (UN Ref):KPe.013 DPRK financial institution Bank of East Land facilitates weapons-related transactions for, and other support to, arms manufacturer and exporter Green Pine Associated Corporation (Green Pine). Bank of East Land has actively worked with Green Pine to transfer funds in a manner that circumvents sanctions. In 2007 and 2008, Bank of East Land facilitated transactions involving Green Pine and Iranian financial institutions, including Bank Melli and Bank Sepah. The Security Council designated Bank Sepah in resolution 1747 (2007) for providing support to Iran’s ballistic missile program. Green Pine was designated by the Committee in April 2012.",Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12451 +DOOST MOHAMMAD,,,,,,,,,,00/00/1968,"(1) Nawi Deh village, Daman District, Kandahar Province (2) Marghankecha village, Daman District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Ghazni Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0070 (UN Ref):TAi.092 Associated with Mullah Jalil Haqqani (TAi.034). Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7297 +DOOST MOHAMMAD,,,,,,,,,,00/00/1969,"(1) Nawi Deh village, Daman District, Kandahar Province (2) Marghankecha village, Daman District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Ghazni Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0070 (UN Ref):TAi.092 Associated with Mullah Jalil Haqqani (TAi.034). Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7297 +DOOST MOHAMMAD,,,,,,,,,,00/00/1970,"(1) Nawi Deh village, Daman District, Kandahar Province (2) Marghankecha village, Daman District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Ghazni Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0070 (UN Ref):TAi.092 Associated with Mullah Jalil Haqqani (TAi.034). Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7297 +DOOST MOHAMMAD,,,,,,,,,,00/00/1971,"(1) Nawi Deh village, Daman District, Kandahar Province (2) Marghankecha village, Daman District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Ghazni Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0070 (UN Ref):TAi.092 Associated with Mullah Jalil Haqqani (TAi.034). Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7297 +DOOST MOHAMMAD,,,,,,,,,,00/00/1972,"(1) Nawi Deh village, Daman District, Kandahar Province (2) Marghankecha village, Daman District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Ghazni Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0070 (UN Ref):TAi.092 Associated with Mullah Jalil Haqqani (TAi.034). Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7297 +DOOST MOHAMMAD,,,,,,,,,,00/00/1973,"(1) Nawi Deh village, Daman District, Kandahar Province (2) Marghankecha village, Daman District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Ghazni Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0070 (UN Ref):TAi.092 Associated with Mullah Jalil Haqqani (TAi.034). Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7297 +DOOSTAN INTERNATIONAL COMPANY (DICO),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0141 (UN Ref):IRe.013 Supplies elements to Iran's ballistic missile programme. [Old Reference # E.29.I.4],Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11130 +DORDA,Abuzed,OE,,,,,,,,04/04/1944,Alrhaybat,,,FK117RK0,Libyan. Issued in Tripoli on 25 November 2018. Expiration date: 24 November 2026,,,"(1) Director, External Security Organisation (2) Head of external intelligence agency",,,,,,,,Libya,(UK Sanctions List Ref):LIB0045 (UN Ref):LYi.006 Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5938451. Libya (Believed status/location: deceased),Individual,AKA,Good quality,Libya,03/03/2011,26/02/2011,20/07/2022,11657 +DORDA,Abu,Zayd,Umar,Hmeid,,,,,,04/04/1944,Alrhaybat,,,FK117RK0,Libyan. Issued in Tripoli on 25 November 2018. Expiration date: 24 November 2026,,,"(1) Director, External Security Organisation (2) Head of external intelligence agency",,,,,,,,Libya,(UK Sanctions List Ref):LIB0045 (UN Ref):LYi.006 Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5938451. Libya (Believed status/location: deceased),Individual,AKA,Good quality,Libya,03/03/2011,26/02/2011,20/07/2022,11657 +DORDA,ABU,ZAYD,UMAR,,,,,,,04/04/1944,Alrhaybat,,,FK117RK0,Libyan. Issued in Tripoli on 25 November 2018. Expiration date: 24 November 2026,,,"(1) Director, External Security Organisation (2) Head of external intelligence agency",,,,,,,,Libya,(UK Sanctions List Ref):LIB0045 (UN Ref):LYi.006 Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5938451. Libya (Believed status/location: deceased),Individual,Primary name,,Libya,03/03/2011,26/02/2011,20/07/2022,11657 +DOROFEEV,Alexey,Sergeevich,,,,,ДОРОФЕЕВ Алексей Сергеевич,Cyrillic,Russian,11/11/1986,,,,,,,,,97 Artema St,,,,,Donetsk,,,"(UK Sanctions List Ref):RUS1240 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial Integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15192 +DOROFEYEV,Alexey,Sergeyevich,,,,,ДОРОФЕЕВ Алексей Сергеевич,Cyrillic,Russian,11/11/1986,,,,,,,,,97 Artema St,,,,,Donetsk,,,"(UK Sanctions List Ref):RUS1240 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial Integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15192 +DOROKHOVA,Nina,Viktorovna,,,,,ДОРОХОВА Нина Викторовна,Cyrillic,Russian,20/11/1965,,,,,,,,Director of InfoRos,Krzhizhanovskogo Street 13/2,,,,,Moscow,117218,,"(UK Sanctions List Ref):RUS0788 (UK Statement of Reasons):Nina Viktorovna DOROKHOVA (hereafter DOROKHOVA) is a Director of InfoRos, an organisation affiliated with the Government of Russia which spreads disinformation. In her role as Director of InfoRos DOROKHOVA has provided support for and promoted actions and policies which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,13/05/2022,14739 +DOROSHENKO,Olga,Leanidauna,,,,,,,,00/00/1976,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0037 (UK Statement of Reasons):Olga Darashenka is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13954 +DOROSHENKO,Olga,Leonidovna,,,,,,,,00/00/1976,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0037 (UK Statement of Reasons):Olga Darashenka is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13954 +DOROSHENKO,Andrey,Nikolaevich,,,,,Дорошенко Андрей Николаевич,,,10/03/1977,Armavir,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0374 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14319 +DORRI-NADJAFABADI,Ghorban-Ali,,,,,,,,,00/00/1945,Najafabad,Iran,Iran,,,,,(1) Member of the Assembly of Experts and representative of the Supreme Leader in Markazi ('Central') Province (2) Former Prosecutor General of Iran until Sept 2009 (3) Former Intelligence minister under Khatami presidency,,,,,,,,,"(UK Sanctions List Ref):IHR0033 (UK Statement of Reasons):Member of the Assembly of Experts and representative of the Supreme Leader in Markazi, Central Province, and Head of the Supreme Administrative Court. Prosecutor General of Iran until September 2009, as well as former Intelligence minister under Khatami presidency. As Prosecutor General of Iran, he ordered and supervised the show trials following the first post-election protests, where the accused were denied their rights, and an attorney. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,28/01/2022,11791 +DORRI-NADJAFABADI,Ghorban-Ali,,,,,,,,,03/12/1950,Najafabad,Iran,Iran,,,,,(1) Member of the Assembly of Experts and representative of the Supreme Leader in Markazi ('Central') Province (2) Former Prosecutor General of Iran until Sept 2009 (3) Former Intelligence minister under Khatami presidency,,,,,,,,,"(UK Sanctions List Ref):IHR0033 (UK Statement of Reasons):Member of the Assembly of Experts and representative of the Supreme Leader in Markazi, Central Province, and Head of the Supreme Administrative Court. Prosecutor General of Iran until September 2009, as well as former Intelligence minister under Khatami presidency. As Prosecutor General of Iran, he ordered and supervised the show trials following the first post-election protests, where the accused were denied their rights, and an attorney. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,28/01/2022,11791 +DORRI-NADJA-FABADI,Ghorban-Ali,,,,,,,,,00/00/1945,Najafabad,Iran,Iran,,,,,(1) Member of the Assembly of Experts and representative of the Supreme Leader in Markazi ('Central') Province (2) Former Prosecutor General of Iran until Sept 2009 (3) Former Intelligence minister under Khatami presidency,,,,,,,,,"(UK Sanctions List Ref):IHR0033 (UK Statement of Reasons):Member of the Assembly of Experts and representative of the Supreme Leader in Markazi, Central Province, and Head of the Supreme Administrative Court. Prosecutor General of Iran until September 2009, as well as former Intelligence minister under Khatami presidency. As Prosecutor General of Iran, he ordered and supervised the show trials following the first post-election protests, where the accused were denied their rights, and an attorney. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,28/01/2022,11791 +DORRI-NADJA-FABADI,Ghorban-Ali,,,,,,,,,03/12/1950,Najafabad,Iran,Iran,,,,,(1) Member of the Assembly of Experts and representative of the Supreme Leader in Markazi ('Central') Province (2) Former Prosecutor General of Iran until Sept 2009 (3) Former Intelligence minister under Khatami presidency,,,,,,,,,"(UK Sanctions List Ref):IHR0033 (UK Statement of Reasons):Member of the Assembly of Experts and representative of the Supreme Leader in Markazi, Central Province, and Head of the Supreme Administrative Court. Prosecutor General of Iran until September 2009, as well as former Intelligence minister under Khatami presidency. As Prosecutor General of Iran, he ordered and supervised the show trials following the first post-election protests, where the accused were denied their rights, and an attorney. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,28/01/2022,11791 +DOST MOHAMMAD,,,,,,(1) Mullah (2) Maulavi,دوست محمد,,,00/00/1968,"(1) Nawi Deh village, Daman District, Kandahar Province (2) Marghankecha village, Daman District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Ghazni Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0070 (UN Ref):TAi.092 Associated with Mullah Jalil Haqqani (TAi.034). Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7297 +DOST MOHAMMAD,,,,,,(1) Mullah (2) Maulavi,دوست محمد,,,00/00/1969,"(1) Nawi Deh village, Daman District, Kandahar Province (2) Marghankecha village, Daman District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Ghazni Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0070 (UN Ref):TAi.092 Associated with Mullah Jalil Haqqani (TAi.034). Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7297 +DOST MOHAMMAD,,,,,,(1) Mullah (2) Maulavi,دوست محمد,,,00/00/1970,"(1) Nawi Deh village, Daman District, Kandahar Province (2) Marghankecha village, Daman District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Ghazni Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0070 (UN Ref):TAi.092 Associated with Mullah Jalil Haqqani (TAi.034). Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7297 +DOST MOHAMMAD,,,,,,(1) Mullah (2) Maulavi,دوست محمد,,,00/00/1971,"(1) Nawi Deh village, Daman District, Kandahar Province (2) Marghankecha village, Daman District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Ghazni Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0070 (UN Ref):TAi.092 Associated with Mullah Jalil Haqqani (TAi.034). Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7297 +DOST MOHAMMAD,,,,,,(1) Mullah (2) Maulavi,دوست محمد,,,00/00/1972,"(1) Nawi Deh village, Daman District, Kandahar Province (2) Marghankecha village, Daman District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Ghazni Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0070 (UN Ref):TAi.092 Associated with Mullah Jalil Haqqani (TAi.034). Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7297 +DOST MOHAMMAD,,,,,,(1) Mullah (2) Maulavi,دوست محمد,,,00/00/1973,"(1) Nawi Deh village, Daman District, Kandahar Province (2) Marghankecha village, Daman District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Ghazni Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0070 (UN Ref):TAi.092 Associated with Mullah Jalil Haqqani (TAi.034). Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7297 +DOST MOHAMMAD,Nik Mohammad,,,,,Maulavi,نیک محمد دوست محمد,,,00/00/1957,"Zangi Abad village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Commerce under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0019 (UN Ref):TAi.019 Leads a commission to register enemies of the Taliban as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7299 +DOUBA,Ali,,,,,,,,,00/00/1933,Karfis,Syria,,,,,,Special Advisor to President Bashar al-Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0012 (UK Statement of Reasons):Special Adviser to President Al-Assad. Participates in, benefits from, and supports the Assad regime. Has been involved in violently repressing the civilian population in Syria. (Gender):Male",Individual,Primary name,,Syria,24/08/2011,31/12/2020,31/12/2020,12046 +DOUBLE HEADED EAGLE SOCIETY,,,,,,,Общество двуглавого орла,Cyrillic,Russian,,,,,,,,,,1s3 Partynniy pereulok,,,,,Moscow,115093,Russia,"(UK Sanctions List Ref):RUS1408 Established Date 01 Nov 2015 (UK Statement of Reasons):The ALL-RUSSIAN PUBLIC ORGANIZATION SOCIETY FOR THE PROMOTION OF RUSSIAN HISTORICAL DEVELOPMENT TSARGRAD is a political organisation controlled by Konstantin MALOFEEV. MALOFEEV (RUS0022) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. The ALL-RUSSIAN PUBLIC ORGANIZATION SOCIETY FOR THE PROMOTION OF RUSSIAN HISTORICAL DEVELOPMENT TSARGRAD is an involved person as it is owned or controlled directly or indirectly (within the meaning of regulation 7) by a person who is or has been so involved, namely Konstantin MALOFEEV. (Business Reg No):1167700052618 (Russia). Tax ID No. 7743141413 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15328 +DPRK COMMITTEE FOR SPACE TECHNOLOGY,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0167 (UN Ref):KPe.012 The Korean Committee for Space Technology (KCST) orchestrated the DPRK’s launches on 13 April 2012 and 12 December 2012 via the satellite control center and Sohae launch area.,Entity,AKA,,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12847 +DPRKN MINING DEVELOPMENT TRADING COOPERATION,,,,,,,,,,,,,,,,,,,,,,,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0157 (UN Ref):KPe.001 Primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons.,Entity,AKA,,Democratic People's Republic of Korea,27/04/2009,24/04/2009,31/12/2020,10892 +DR. MUSA,,,,,,,,,,09/02/1951,Gaza,Egypt,,92/664,Egypt,,,Senior Hamas Official,,,,,,,,,"(UK Sanctions List Ref):CTI0017 (UK Statement of Reasons):Mr Marzouk is a senior Hamas official and has been the deputy leader of Hamas since 1997. He has publicly represented the proscribed military wing of Hamas. He has been involved in terrorist financing and has defended Hamas’ terrorist activity, including the targeting of civilians. (Gender):Male",Individual,AKA,,Counter-Terrorism (International),24/03/2004,31/12/2020,15/03/2022,7888 +DREX TECHNOLOGIES S.A.,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0269 (UK Statement of Reasons):Drex Technologies is wholly owned by Rami Makhlouf, who is also an involved person given his financial support for the Syrian regime and his membership of the Makhlouf family. Rami Makhlouf uses Drex Technologies to facilitate and manage his international financial holdings. (Type of entity):Finance (Business Reg No):394678",Entity,Primary name,,Syria,24/07/2012,31/12/2020,13/05/2022,12732 +DROBOT,Maria,Vladimirovna,,,,,Дробот Мария Владимировна,,,21/03/1982,Rostov-on-Don,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0375 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14320 +DROGANOV,Aleksei,,,,,,,,,11/10/1975,,Russia,Russia,,,,,Operative of Tax Crimes Department in the Moscow directorate of the Interior Ministry,,,,,,,,,"(UK Sanctions List Ref):GHR0020 (UK Statement of Reasons):Aleksei Droganov was an officer in the Tax Crimes Department in the Moscow directorate of the Interior Ministry and was involved in the detention and mistreatment of Sergei Magnitsky, which contributed significantly to his death. Droganov was part of the ‘team’ of investigators, led by Artem Kuznetsov, the Deputy Head of the Tax Crimes Department, who were allegedly involved in the initial fraud exposed by Sergei Magnitsky and who falsified evidence to justify his arrest and detention. As part of this investigation team Aleksei Droganov facilitated the mistreatment of Sergei Magnitsky whilst in detention which was designed to force Magnitsky to retract his earlier testimony. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13880 +DRONOV,Sergey,Vladimirovich,,,,Lieutenant General,ДРОНОВ Сергей Владимирович,,,11/08/1962,Almazovka,Russia,Russia,,,,,Deputy Commander-in-Chief Aerospace Forces and head of Air Force of the Russian Federation,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0699 (UK Statement of Reasons):Lieutenant General Sergey Vladimirovich DRONOV is a member of the Armed Forces of the Russian Federation, he currently holds the position of Deputy Commander-in-Chief of the Aerospace Forces and head of the Air Force. He is considered to have been in direct command of, and/ or to have substantial influence in relation to the deployment of, Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14650 +DROUKDEL,ABDELMALEK,,,,,,عبد المالك دروكدال,,,20/04/1970,"Meftah, Wilaya of Blida",Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0099 (UN Ref):QDi.232 Head of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Sentenced in absentia to life imprisonment in Algeria on 21 March 2007. Father's name is Rabah Droukdel. Mother's name is Z'hour Zdigha. Review pursuant to Security Council resolution 1822 (2008) was concluded on 4 May 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1489020,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/08/2007,27/08/2007,31/12/2020,9157 +DROZDENKO,Alexander,Yurievich,,,,,Александр Юрьевич Дрозденко,,,01/11/1964,,,Russia,,,,,Governor of Leningrad Region,,,,,,,,,"(UK Sanctions List Ref):RUS1523 (UK Statement of Reasons):Alexander Yurievich DROZDENKO is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because DROZDENKO is a regional governor. Specifically, DROZDENKO is Governor of Leningrad Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15465 +DROZDOV,Alexander,Sergeevich,,,,,Дроздов Александр Сергеевич,,,01/11/1970,Krasnoyarsk,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0377 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14322 +DROZHZHINA,Yulia,Nikolaevna,,,,,Дрожжина Юлия Николаевна,,,01/03/1990,Zarinsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0376 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14321 +DSRC JSC,,,,,,,ЦСД AO,Cyrillic,Russian,,,,,,,,,,"Dalzavodskaya Str., 2",,,,,Vladivostok,690001,Russia,"(UK Sanctions List Ref):RUS1437 KPP 253601001; OGRN 1082536014120 (UK Statement of Reasons):The Dalzavod Ship Repair Centre JSC is an involved person under the Russia (EU) (Sanctions) Regulations 2019 as it is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian defence sector. (Phone number):(1) 8 (423) 2-224-010 (2) 8 (423) 2-220-210 (Website):(1) https://csdalzavod.ru (2) https://dalzavod.vl.ru (Email address):(1) dalzavod@dcss.ru (2) ok@csdalzavod.ru (Type of entity):Non Public Joint Stock Company (Business Reg No):Tax Identification Number: INN 2536210349",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15368 +DUAL,Simon,Gatwich,,,,,,,,00/00/1953,"(1) Akobo, Jonglei State (2) Uror County, Jonglei State",South Sudan,,,,,,"Chief of General Staff, SPLA in Opposition.",,,,,,Jonglei State,,South Sudan,"(UK Sanctions List Ref):SSU0009 (UN Ref):SSi.002 Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population. Photograph available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879066",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13264 +DUAL,Simon,Getwech,,,,,,,,00/00/1953,"(1) Akobo, Jonglei State (2) Uror County, Jonglei State",South Sudan,,,,,,"Chief of General Staff, SPLA in Opposition.",,,,,,Jonglei State,,South Sudan,"(UK Sanctions List Ref):SSU0009 (UN Ref):SSi.002 Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population. Photograph available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879066",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13264 +DUAL,SIMON,GATWECH,,,,Major General,,,,00/00/1953,"(1) Akobo, Jonglei State (2) Uror County, Jonglei State",South Sudan,,,,,,"Chief of General Staff, SPLA in Opposition.",,,,,,Jonglei State,,South Sudan,"(UK Sanctions List Ref):SSU0009 (UN Ref):SSi.002 Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population. Photograph available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879066",Individual,Primary name,,South Sudan,10/07/2015,01/07/2015,31/12/2020,13264 +DUARTE,Franklyn,Leonardo,,,,,,,,15/05/1977,,Venezuela,Venezuela,,,V-3304045,,Member of the National Assembly,,,,,,,,,"(UK Sanctions List Ref):VEN0035 (UK Statement of Reasons):Franklyn Duarte is a National Assembly Deputy (2021-2025) having been re-elected on 6 December 2020 in undemocratic parliamentary elections not recognised as free and fair by the UK. Duarte had previously served as a National Assembly Deputy for the period 20156-2020. As a Deputy of the 2015-2020 National Assembly Deputy, there are reasonable grounds to suspect that Franklin Duarte has been involved in the repression of democratic opposition and other actions, policies, or activities which undermine democracy in Venezuela by coming to power through fraudulent/illegitimate elections for the new National Assembly Board on 5 January 2020 and through his involvement with Operation Alacran. There are also reasonable grounds to suspect that Duarte has been acting on behalf of, or at the direction of, a person (Nicolas Maduro) who is involved in repression of political opposition and other actions, policies, or activities which undermine democracy in Venezuela, by enabling him to attack and control the democratically elected National Assembly. There are lastly reasonable grounds to suspect that Duarte is a member of, or associated with, persons who have been involved with the repression of democratic opposition and other actions, policies, and activities which undermined democracy in Venezuela due to his involvement in Operation Alacran. (Gender):Male",Individual,Primary name,,Venezuela,30/06/2020,31/12/2020,17/02/2022,13850 +DUBOVKA,Vladimir,Nikolaevich,,,,,ДУБОВКА Владимир Николаевич,Cyrillic,Russian,14/09/1982,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1241 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15193 +DUBOVSKIY,Ruslan,Mihajlovich,,,,,ДУБОВСКИЙ Руслан Михайлович,Cyrillic,Russian,20/02/1974,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1150 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15102 +DUBOVSKY,Ruslan,Mikhailovich,,,,,,,,20/02/1974,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1150 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15102 +DUEL,Simon,Gatwec,,,,,,,,00/00/1953,"(1) Akobo, Jonglei State (2) Uror County, Jonglei State",South Sudan,,,,,,"Chief of General Staff, SPLA in Opposition.",,,,,,Jonglei State,,South Sudan,"(UK Sanctions List Ref):SSU0009 (UN Ref):SSi.002 Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population. Photograph available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879066",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13264 +DUGINA,Dari,Dashjbh,,,,,,,,15/12/1992,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1498 (UK Statement of Reasons):Darya DUGINA is a frequent and high-profile contributor of disinformation in relation to Ukraine and the Russian invasion of Ukraine on various online platforms. DUGINA has therefore provided support for and promoted policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name variation,,Russia,04/07/2022,04/07/2022,04/07/2022,15437 +DUGINA,Daria,Platonova,,,,,,,,15/12/1992,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1498 (UK Statement of Reasons):Darya DUGINA is a frequent and high-profile contributor of disinformation in relation to Ukraine and the Russian invasion of Ukraine on various online platforms. DUGINA has therefore provided support for and promoted policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name variation,,Russia,04/07/2022,04/07/2022,04/07/2022,15437 +DUGINA,Darya,Aleksandrovna,,,,,Дугина Дарья Александровна,,,15/12/1992,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1498 (UK Statement of Reasons):Darya DUGINA is a frequent and high-profile contributor of disinformation in relation to Ukraine and the Russian invasion of Ukraine on various online platforms. DUGINA has therefore provided support for and promoted policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,04/07/2022,04/07/2022,04/07/2022,15437 +DUMONT,LIONEL,,,,,,,,,29/01/1971,Roubaix,France,France,,,,,,,,,,,,,France,(UK Sanctions List Ref):AQD0217 (UN Ref):QDi.095 In custody in France as of May 2004. Sentenced to 25 years imprisonment in France in 2007. His sentence is due to end on 13 Jul. 2023 and his unconditional detention to end on 13 Aug. 2020. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4531664,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,11/02/2022,7797 +DUNIA TELEVISION,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0275 (UK Statement of Reasons):Previously known as Addounia TV. Sama TV is a telecommunications entity which spreads disinformation and incites violence against the civilian population in Syria. (Phone number):(1) +963-11-5667271 (2) +963-11-5667274 (Website):http://www.addounia.tv (Type of entity):Media. State-owned,Entity,AKA,,Syria,26/09/2011,31/12/2020,13/05/2022,12151 +DUNKA,Arciom,Kanstantinavich,,,,,,,,08/06/1990,,,,,,,,Senior Inspector for Special Matters of the Department of Financial Investigations of the State Control Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0081 (UK Statement of Reasons):In his leadership position as Senior Inspector for Special Matters of the Department of Financial Investigations of the State Control Committee, Artem Dunko is responsible for repression and intimidation led by the State apparatus prior to and following the August 2020 presidential election, in particular investigations of alleged corruption, money laundering and tax-evasion launched against opposition leaders and activists. This has contributed to the repression civil society and undermining of democracy in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14040 +DUNKA,Artem,Konstantinovich,,,,,,,,08/06/1990,,,,,,,,Senior Inspector for Special Matters of the Department of Financial Investigations of the State Control Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0081 (UK Statement of Reasons):In his leadership position as Senior Inspector for Special Matters of the Department of Financial Investigations of the State Control Committee, Artem Dunko is responsible for repression and intimidation led by the State apparatus prior to and following the August 2020 presidential election, in particular investigations of alleged corruption, money laundering and tax-evasion launched against opposition leaders and activists. This has contributed to the repression civil society and undermining of democracy in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14040 +DUNKO,Arciom,Kanstantinavich,,,,,Арцём Канстанцiнавiч ДУНЬКА,,,08/06/1990,,,,,,,,Senior Inspector for Special Matters of the Department of Financial Investigations of the State Control Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0081 (UK Statement of Reasons):In his leadership position as Senior Inspector for Special Matters of the Department of Financial Investigations of the State Control Committee, Artem Dunko is responsible for repression and intimidation led by the State apparatus prior to and following the August 2020 presidential election, in particular investigations of alleged corruption, money laundering and tax-evasion launched against opposition leaders and activists. This has contributed to the repression civil society and undermining of democracy in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14040 +DUNKO,Artem,Konstantinovich,,,,,Артем Константинович ДУНЬКО,,,08/06/1990,,,,,,,,Senior Inspector for Special Matters of the Department of Financial Investigations of the State Control Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0081 (UK Statement of Reasons):In his leadership position as Senior Inspector for Special Matters of the Department of Financial Investigations of the State Control Committee, Artem Dunko is responsible for repression and intimidation led by the State apparatus prior to and following the August 2020 presidential election, in particular investigations of alleged corruption, money laundering and tax-evasion launched against opposition leaders and activists. This has contributed to the repression civil society and undermining of democracy in Belarus. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14040 +DUNYA LIMITED LIABILITY COMPANY FOR INFORMATION,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0275 (UK Statement of Reasons):Previously known as Addounia TV. Sama TV is a telecommunications entity which spreads disinformation and incites violence against the civilian population in Syria. (Phone number):(1) +963-11-5667271 (2) +963-11-5667274 (Website):http://www.addounia.tv (Type of entity):Media. State-owned,Entity,AKA,,Syria,26/09/2011,31/12/2020,13/05/2022,12151 +DURGHAM,Douraid,,,,,,,,,00/00/1964,,,,,,,,Governor of the Central Bank of Syria,,,,,,,,,"(UK Sanctions List Ref):SYR0036 Linked to Central Bank of Syria (UK Statement of Reasons):Former Governor of the Central Bank of Syria. Was responsible for providing economic and financial support to the Syrian regime through his functions as the Governor of the Central Bank of Syria, which is also listed.",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13413 +DURGHAM,Duraid,,,,,,,,,00/00/1964,,,,,,,,Governor of the Central Bank of Syria,,,,,,,,,"(UK Sanctions List Ref):SYR0036 Linked to Central Bank of Syria (UK Statement of Reasons):Former Governor of the Central Bank of Syria. Was responsible for providing economic and financial support to the Syrian regime through his functions as the Governor of the Central Bank of Syria, which is also listed.",Individual,Primary name,,Syria,14/11/2016,31/12/2020,31/12/2020,13413 +DURGHAM,Mohammad,,,,,,,,,,,,Syria,,,,,Commander of the 4th Armoured Division,4th Division HQ,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0173 (UK Statement of Reasons):Ordered troops to shoot at protestors in and around Damascus, including Mo'adamiyeh, Douma, Abasiyeh, Duma (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12462 +DURGHAM,Mohammed,,,,,,,,,,,,Syria,,,,,Commander of the 4th Armoured Division,4th Division HQ,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0173 (UK Statement of Reasons):Ordered troops to shoot at protestors in and around Damascus, including Mo'adamiyeh, Douma, Abasiyeh, Duma (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12462 +DURGHAM,Muhammad,,,,,,,,,,,,Syria,,,,,Commander of the 4th Armoured Division,4th Division HQ,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0173 (UK Statement of Reasons):Ordered troops to shoot at protestors in and around Damascus, including Mo'adamiyeh, Douma, Abasiyeh, Duma (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12462 +DURGHAM,Muhammad,Ali,,,,,محمد علي درغام,,,,,,Syria,,,,,Commander of the 4th Armoured Division,4th Division HQ,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0173 (UK Statement of Reasons):Ordered troops to shoot at protestors in and around Damascus, including Mo'adamiyeh, Douma, Abasiyeh, Duma (Gender):Male",Individual,Primary name,,Syria,24/01/2012,31/12/2020,31/12/2020,12462 +DVOINYKH,Aleksandr,Vladimirovich,,,,,,,,19/01/1984,Zagorsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0978 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,26/04/2022,14929 +DVORNIKOV,Aleksandr,Vladimirovich,,,,Colonel General,"Дворников, Александр Владимирович",,,22/08/1961,"Ussuriysk, Primorskiy Krai",Russia,Russia,,,,,Commander of the Southern Military District of the Russian Armed Forces,,,,,,,,,"(UK Sanctions List Ref):RUS0209 (UK Statement of Reasons):Head of the southern military district of the Russian Armed Forces, Colonel General and commanding officer of military forces in the region. He was responsible for air support actions of the Russian Federation against Ukraine on 25 November 2018 and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine.’ (Gender):Male",Individual,Primary name,,Russia,15/03/2019,31/12/2020,31/12/2020,13785 +DVOYNYKH,Aleksandr,Vladimirovich,,,,,Александр Владимирович Двойных,,,19/01/1984,Zagorsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0978 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14929 +DWE,Aung,Lin,,,,,,,,31/05/1962,,Myanmar,Myanmar,,,,,(1) Secretary of the SAC (2) Judge Advocate General of the TMD (3) Secretary to the Peace Negotiation Committee,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0021 (UK Statement of Reasons):On 1 February 2021 the Myanmar military (Tatmadaw), led by Commander-in-Chief Min Aung Hlaing, staged a coup in Myanmar. As part of the coup, Vice-President Swe declared a state of emergency on 1 February transferring the legislative, executive and judicial powers of the state to Min Aung Hlaing. On 2 February, the Tatmadaw established the State Administration Council (SAC), which is chaired by Hlaing, in order to run the functions of the state. Lt General Aung Lin Dwe was appointed Secretary of the SAC on 2 February. The Myanmar security forces have committed serious human rights violations since 1 February 2021: killing a protestor, restricting freedom of assembly and expression including through restricting internet access, arbitrary arrest and detention of opposition leaders and opponents of the coup. The SAC has adopted legislation violating the right to privacy and the right not to be subject to arbitrary detention in Myanmar. As a member of the SAC, Dwe shares responsibility with its other members for the exercise of state functions since 2 February 2021, including legislation violating human rights, and for the serious human rights violations committed by the Myanmar security forces. As a member of the SAC, Lt Gen Aung Lin Dwe is associated with Commander in Chief General Min Aung Hlaing who is a designated person under the (Myanmar Sanctions) Regulations 2021 in respect of actions related to the February 2021 coup. (Gender):Male",Individual,Primary name,,Myanmar,25/02/2021,29/04/2021,11/11/2022,14061 +DWIKARNA,AGUS,,,,,,,,,11/08/1964,"Makassar, South Sulawesi",Indonesia,Indonesia,XD253038,Indonesia travel document number,,,,,,,,,,,Indonesia,"(UK Sanctions List Ref):AQD0122 (UN Ref):QDi.111 Arrested 13 Mar. 2002, sentenced 12 July 2002 in the Philippines. Released from custody in the Philippines on 1 Jan. 2014 and subsequently deported to Indonesia. Physical description: height 165 cm. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/09/2003,09/09/2003,31/12/2020,7842 +DYAGOVETS,Alexander,Pavlovich,,,,,ДЯГОВЕЦ Александр Павлович,Cyrillic,Russian,12/01/1962,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1242 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15194 +DYAKONOVA,Tatyana,Ivanovna,,,,,Дьяконова Татьяна Ивановна,,,22/04/1970,Osh,Kyrgyzstan,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0378 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,15/03/2022,14323 +DYNASTY GROUP,,,,,,,,,,,,,,,,,,,"WAIZAYANDAR ROAD, NO.15",NGWE KYAR YAN QUARTER,SOUTH OKKALAPA TOWNSHIP,,,YANGON REGION,,Myanmar,"(UK Sanctions List Ref):MYA0041 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. Dynasty International Company Ltd has provided support for these activities in its role as an importer and broker of arms imports to Myanmar. It has been responsible for the supply and upkeep of military and training aircrafts for the Myanmar Air Force, including since the February 2021 coup. Dynasty International Company Ltd is therefore involved in the supply of restricted goods and/or restricted technology, and dual-use goods, which could contribute to serious human rights violations. Further and/or alternatively, Dynasty International Company Ltd is owned and controlled by Dr Aung Moe Myint, who is an “involved person” for the purposes of the Myanmar (Sanctions) Regulations 2021 for his involvement in supplying goods and technology to the Myanmar Security Forces, and his association with the State Administration Council. (Phone number):(0)95021813 (Email address):dynastygroup@myanmar.com.mm (Type of entity):Company (Business Reg No):100720744",Entity,Primary name variation,,Myanmar,25/03/2022,25/03/2022,25/03/2022,15049 +DYNASTY INTERNATIONAL COMPANY LTD,,,,,,,,,,,,,,,,,,,"WAIZAYANDAR ROAD, NO.15",NGWE KYAR YAN QUARTER,SOUTH OKKALAPA TOWNSHIP,,,YANGON REGION,,Myanmar,"(UK Sanctions List Ref):MYA0041 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. Dynasty International Company Ltd has provided support for these activities in its role as an importer and broker of arms imports to Myanmar. It has been responsible for the supply and upkeep of military and training aircrafts for the Myanmar Air Force, including since the February 2021 coup. Dynasty International Company Ltd is therefore involved in the supply of restricted goods and/or restricted technology, and dual-use goods, which could contribute to serious human rights violations. Further and/or alternatively, Dynasty International Company Ltd is owned and controlled by Dr Aung Moe Myint, who is an “involved person” for the purposes of the Myanmar (Sanctions) Regulations 2021 for his involvement in supplying goods and technology to the Myanmar Security Forces, and his association with the State Administration Council. (Phone number):(0)95021813 (Email address):dynastygroup@myanmar.com.mm (Type of entity):Company (Business Reg No):100720744",Entity,Primary name,,Myanmar,25/03/2022,25/03/2022,25/03/2022,15049 +DYUKOV,Alexander,Valeryevich,,,,,Алекса́ндр Вале́рьевич Дю́ков,,,03/12/1967,St Petersburg,Russia,Russia,,,,,(1) Chair of the Management Board (2) General Director at PJSC Gazprom Neft,,,,,,,,,"(UK Sanctions List Ref):RUS1123 (UK Statement of Reasons):Alexander DYUKOV is a prominent Russian businessman. DYUKOV is involved in obtaining a benefit from or supporting the Government of Russia by working as a director of PJSC Gazprom Neft, a Government of Russia-affiliated entity. (Gender):Male",Individual,Primary name,,Russia,06/04/2022,06/04/2022,06/04/2022,15074 +DZEMIJETUL FURKAN,,,,,,,,,,,,,,,,,,,30a Put Mladih Muslimana (ex Pavla Lukaca Street),,,,,Sarajevo,71 000,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +DZEMIJETUL FURKAN,,,,,,,,,,,,,,,,,,,42 Muhameda Hadzijahica,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +DZEMIJETUL FURKAN,,,,,,,,,,,,,,,,,,,70 and 53 Strosmajerova Street,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +DZEMIJETUL FURKAN,,,,,,,,,,,,,,,,,,,72 ul. Strossmajerova,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +DZEMIJETUL FURKAN,,,,,,,,,,,,,,,,,,,Zlatnih Ljiljana Street,,,,,Zavidovici,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +DZEM'IJJETUL FURQAN,,,,,,,,,,,,,,,,,,,30a Put Mladih Muslimana (ex Pavla Lukaca Street),,,,,Sarajevo,71 000,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +DZEM'IJJETUL FURQAN,,,,,,,,,,,,,,,,,,,42 Muhameda Hadzijahica,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +DZEM'IJJETUL FURQAN,,,,,,,,,,,,,,,,,,,70 and 53 Strosmajerova Street,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +DZEM'IJJETUL FURQAN,,,,,,,,,,,,,,,,,,,72 ul. Strossmajerova,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +DZEM'IJJETUL FURQAN,,,,,,,,,,,,,,,,,,,Zlatnih Ljiljana Street,,,,,Zavidovici,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +DZEMILIJATI FURKAN,,,,,,,,,,,,,,,,,,,30a Put Mladih Muslimana (ex Pavla Lukaca Street),,,,,Sarajevo,71 000,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +DZEMILIJATI FURKAN,,,,,,,,,,,,,,,,,,,42 Muhameda Hadzijahica,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +DZEMILIJATI FURKAN,,,,,,,,,,,,,,,,,,,70 and 53 Strosmajerova Street,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +DZEMILIJATI FURKAN,,,,,,,,,,,,,,,,,,,72 ul. Strossmajerova,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +DZEMILIJATI FURKAN,,,,,,,,,,,,,,,,,,,Zlatnih Ljiljana Street,,,,,Zavidovici,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +DZHABAROV,Vladimir,Michailovich,,,,,,,,29/09/1952,Samarkand,Uzbekistan,Russia,,,,,First Deputy Chairman of the Foreign Affairs Committee of the Federation Council of the Russian Federation.,,,,,,,,,"(UK Sanctions List Ref):RUS0092 (UK Statement of Reasons):First Deputy-Chairman of the Foreign Affairs Committee of the Federation Council of the Russian Federation. On 1 March 2014 Dzhabarov, on behalf of the Foreign Affairs Committee of the Federation Council, publicly supported in the Federation Council the deployment of Russian forces in Ukraine. (Gender):Male",Individual,Primary name,,Russia,18/03/2014,31/12/2020,16/09/2022,12913 +DZHAMAAT MODZHAKHEDOV,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0051 (UN Ref):QDe.119 Founded and led by Najmiddin Kamolitdinovich Jalolov (deceased) and Suhayl Fatilloevich Buranov (deceased). Associated with the Islamic Movement of Uzbekistan (QDe.010) and Emarat Kavkaz (QDe.131). Active in the Afghanistan/Pakistan border area, Central Asia, South Asia region and some European States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278465",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,06/06/2005,01/06/2005,31/12/2020,8652 +DZIADKOVA,Natalia,Anatolievna,,,,,,,,02/12/1979,,,Belarus,,,,,"Judge of the Partizanski district court in Minsk, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0088 (UK Statement of Reasons):Natalia Dedkova is a Judge of the Partizanski District Court in Minsk. In her position she was responsible for numerous politically motivated rulings against journalists and activists for taking part in protests. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition. (Gender):Female",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/12/2021,14022 +DZIADKOVA,Natallia,Anatolievna,,,,,,,,02/12/1979,,,Belarus,,,,,"Judge of the Partizanski district court in Minsk, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0088 (UK Statement of Reasons):Natalia Dedkova is a Judge of the Partizanski District Court in Minsk. In her position she was responsible for numerous politically motivated rulings against journalists and activists for taking part in protests. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition. (Gender):Female",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/12/2021,14022 +DZIUBA,Viktor,Viktorovich,,,,,Дзюба Виктор Викторович,,,10/08/1977,Tula,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0368 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14313 +E. S. CO.,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0142 (UN Ref):IRe.014 AIO front-company, involved in the ballistic missile programme. [Old Reference # E.03.III.3] (Parent company):Aerospace Industries Organisation (AIO)",Entity,AKA,,Iran (Nuclear),04/03/2008,03/03/2008,31/12/2020,10443 +E. X. CO.,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0142 (UN Ref):IRe.014 AIO front-company, involved in the ballistic missile programme. [Old Reference # E.03.III.3] (Parent company):Aerospace Industries Organisation (AIO)",Entity,AKA,,Iran (Nuclear),04/03/2008,03/03/2008,31/12/2020,10443 +EAMAN,Adam,Ramsey,,,,,,,,15/04/1958,Alexandria,Egypt,United Kingdom,,,,,,,,,,,,,United States,(UK Sanctions List Ref):AQD0252 (UN Ref):QDi.067 Extradited from the United Kingdom to the United States of America on 5 Oct. 2012. Convicted on terrorism charges by a court in the United States of America in May 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/04/2002,24/04/2002,31/12/2020,6930 +EAST INDONESIA MUJAHIDEEN,,,,,,,,,,,,,,,,,,,,,,,,,,Indonesia,"(UK Sanctions List Ref):AQD0071 (UN Ref):QDe.150 Terrorist group linked to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), Jemaah Islamiyah (JI) (QDe.092), and Jemmah Anshorut Tauhid (JAT) (QDe.133). Operates in Java and Sulawesi, Indonesia and also active in Indonesia’s eastern provinces. Its former leader was Abu Wardah, a.k.a. Santoso (deceased). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5919482",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,12/01/2022,13304 +EAST SEA SHIPPING COMPANY,,,,,,,,,,,,,,,,,,,Dongheung-dong Changgwang Street,Chung-Ku,PO Box 125,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0181 (UN Ref):KPe.020 Ocean Maritime Management Company, Limited is the operator/manager of the following vessels with IMO Number: (a) Chol Ryong (Ryong Gun Bong) 8606173, (b) Chong Bong (Greenlight) (Blue Nouvelle) 8909575, (c) Chong Rim 2 8916293, (d) Hoe Ryong 9041552, (e) Hu Chang (O Un Chong Nyon) 8330815, (f) Hui Chon (Hwang Gum San 2) 8405270, (g) Ji Hye San (Hyok Sin 2) 8018900, (h) Kang Gye (Pi Ryu Gang) 8829593, (i) Mi Rim 8713471, (j) Mi Rim 2 9361407, (k) Rang (Po Thong Gang) 8829555, (l) Ra Nam 2 8625545, (m) Ra Nam 3 9314650, (n) Ryo Myong 8987333, (o) Ryong Rim (Jon Jin 2) 8018912, (p) Se Pho (Rak Won 2) 8819017, (q) Songjin (Jang Ja San Chong Nyon Ho) 8133530, (r) South Hill 2 8412467,(s) Tan Chon (Ryon Gang 2) 7640378, (t) Thae Pyong San (Petrel 1) 9009085, (u) Tong Hung San (Chong Chon Gang) 7937317, (v) Tong Hung 8661575. It played a key role in arranging the shipment of concealed cargo of arms and related materiel from Cuba to the DPRK in July 2013. As such, Ocean Maritime Management Company, Limited contributed to activities prohibited by the resolutions, namely the arms embargo imposed by resolution 1718 (2006), as modified by resolution 1874 (2009), and contributed to the evasion of the measures imposed by these resolutions. International Maritime Organization (IMO) Number: 1790183.",Entity,AKA,,Democratic People's Republic of Korea,16/10/2014,28/07/2014,02/08/2022,13143 +EAST SEA SHIPPING COMPANY,,,,,,,,,,,,,,,,,,,Donghung Dong,Central District,PO Box 120,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0181 (UN Ref):KPe.020 Ocean Maritime Management Company, Limited is the operator/manager of the following vessels with IMO Number: (a) Chol Ryong (Ryong Gun Bong) 8606173, (b) Chong Bong (Greenlight) (Blue Nouvelle) 8909575, (c) Chong Rim 2 8916293, (d) Hoe Ryong 9041552, (e) Hu Chang (O Un Chong Nyon) 8330815, (f) Hui Chon (Hwang Gum San 2) 8405270, (g) Ji Hye San (Hyok Sin 2) 8018900, (h) Kang Gye (Pi Ryu Gang) 8829593, (i) Mi Rim 8713471, (j) Mi Rim 2 9361407, (k) Rang (Po Thong Gang) 8829555, (l) Ra Nam 2 8625545, (m) Ra Nam 3 9314650, (n) Ryo Myong 8987333, (o) Ryong Rim (Jon Jin 2) 8018912, (p) Se Pho (Rak Won 2) 8819017, (q) Songjin (Jang Ja San Chong Nyon Ho) 8133530, (r) South Hill 2 8412467,(s) Tan Chon (Ryon Gang 2) 7640378, (t) Thae Pyong San (Petrel 1) 9009085, (u) Tong Hung San (Chong Chon Gang) 7937317, (v) Tong Hung 8661575. It played a key role in arranging the shipment of concealed cargo of arms and related materiel from Cuba to the DPRK in July 2013. As such, Ocean Maritime Management Company, Limited contributed to activities prohibited by the resolutions, namely the arms embargo imposed by resolution 1718 (2006), as modified by resolution 1874 (2009), and contributed to the evasion of the measures imposed by these resolutions. International Maritime Organization (IMO) Number: 1790183.",Entity,AKA,,Democratic People's Republic of Korea,16/10/2014,28/07/2014,02/08/2022,13143 +EASTERN LUCK,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0096 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V CHON MYONG 1 conducted a ship-to-ship transfer, likely for oil, in late December 2017. Listed as asset of Chonmyong Shipping Co (OFSI ID: 13627, UN Ref KPe.056) (IMO number):8712362 (Current owners):Chonmyong Shipping Co (Flag of ship):North Korea (Previous flags):Togo (Type of ship):Oil tanker (Tonnage of ship):1220 (Length of ship):82 (Year built):1987",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13647 +EASTERN TURKISTAN ISLAMIC MOVEMENT,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0040 (UN Ref):QDe.088,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,12/09/2002,11/09/2002,31/12/2020,7122 +EBCO,,,,,,,,,,,,,,,,,,,Head Office Mazzeh,Vilat Ghabia Dar Es Saada,,,16 P.O. Box 9120,Damascus,,Syria,(UK Sanctions List Ref):SYR0296 Oil and Gas Sector (UK Statement of Reasons):Joint venture of Syrian General Petroleum Company (GPC). Provides financial support to the regime. (Phone number):+963 116691100,Entity,AKA,,Syria,24/01/2012,31/12/2020,13/05/2022,12489 +EBLA PETROLEUM COMPANY,,,,,,,,,,,,,,,,,,,Head Office Mazzeh,Vilat Ghabia Dar Es Saada,,,16 P.O. Box 9120,Damascus,,Syria,(UK Sanctions List Ref):SYR0296 Oil and Gas Sector (UK Statement of Reasons):Joint venture of Syrian General Petroleum Company (GPC). Provides financial support to the regime. (Phone number):+963 116691100,Entity,Primary name,,Syria,24/01/2012,31/12/2020,13/05/2022,12489 +EFES,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0097 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK tanker M/V AN SAN 1 was involved in ship-to-ship transfer operations, likely for oil, in late January 2018. Listed as asset of Korea Ansan Shipping Company (OFSI ID: 13633, UN Reference Number: UN Ref KPe.062) (IMO number):7303803 (Current owners):Korean Ansan Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Chemical Carrier (Tonnage of ship):1757 (Length of ship):86 (Year built):1973",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13648 +EFIMOV,Vitaly,Borisovich,,,,,Ефимов Виталий Борисович,,,04/04/1940,"Bereznetsovo, Moscow",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0382 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14327 +EGOROV,Maxim,Borisovich,,,,,Максим Борисович Егоров,,,23/05/1977,,,Russia,,,,,Acting Governor of Tambov Region,,,,,,,,,"(UK Sanctions List Ref):RUS1524 (UK Statement of Reasons):Maxim Borisovich EGOROV (henceforth EGOROV) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because EGOROV is a regional governor. Specifically, EGOROV is Acting Governor of Tambov Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15472 +EGYPTIAN AL-JIHAD,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0041 (UN Ref):QDe.003 Co-founded by Aiman Muhammed Rabi al-Zawahiri (QDi.006), who was also its military leader. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282058",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7000 +EGYPTIAN ISLAMIC JIHAD,,,,,,,الجهاد الاسلامي المصري,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0041 (UN Ref):QDe.003 Co-founded by Aiman Muhammed Rabi al-Zawahiri (QDi.006), who was also its military leader. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282058",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7000 +EGYPTIAN ISLAMIC MOVEMENT,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0041 (UN Ref):QDe.003 Co-founded by Aiman Muhammed Rabi al-Zawahiri (QDi.006), who was also its military leader. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282058",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7000 +EIBATOV,Oleg,Anatolyevich,,,,Colonel,"ЭЙБАТОВ, Олег Анатольевич",Cyrillic,Russian,,,,Belarus,,,,,Commander of the Mozyr Border Detachment,,,,,,,,,"(UK Sanctions List Ref):RUS0708 (UK Statement of Reasons):Colonel Oleg Anatolyevich EIBATOV is Commander of the Mozyr Border Detachment in Belarus. There are reasonable grounds to suspect that he has engaged in, and provided support for, an action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine, namely, facilitating the movement of Russian forces across the Belarus border into Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14659 +EISMANT,Ivan,Mikhailavich,,,,,Иван Михайлович ЭЙСМОНТ,,,20/01/1977,Grodno,,Belarus,,,,,(1) Chairman of the Belarusian State Television and Radio Company since February 2018 (2) Head of Belteleradio Company,,,,,,,,,"(UK Sanctions List Ref):BEL0082 (UK Statement of Reasons):As Head of the Belarusian State Television and Radio Company, Ivan Eismont is responsible for the dissemination of state propaganda in public media. This includes using media channels to support the President’s continuation of his term in office, despite the fraudulent presidential elections that took place on 9 August 2020, and the subsequent and repeated violent crackdown on peaceful and legitimate protests. Eismont made public statements criticising the peaceful protesters and refused to provide media coverage of the protests. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14024 +EISMANT,Natalia,Nikolayevna,,,,,Наталля Мiкалаеўна ЭЙСМАНТ,,,16/02/1984,Minsk,Former USSR Currently Belarus,Belarus,,,,,Spokesperson/Press Secretary of the President of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0059 (UK Statement of Reasons):Natalia Eismont was appointed Spokesperson / Press Secretary to President Lukashenko in November 2014. In this role, she has actively supported President Lukashenko throughout the flawed election process surrounding the 9 August 2020 Presidential election. Through her activities and statements, she has supported the repression of civil society and democratic opposition in Belarus and has undermined democracy and the rule of law in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13993 +EISMANT,Natalia,Mikalaeuna,,,,,,,,16/02/1984,Minsk,Former USSR Currently Belarus,Belarus,,,,,Spokesperson/Press Secretary of the President of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0059 (UK Statement of Reasons):Natalia Eismont was appointed Spokesperson / Press Secretary to President Lukashenko in November 2014. In this role, she has actively supported President Lukashenko throughout the flawed election process surrounding the 9 August 2020 Presidential election. Through her activities and statements, she has supported the repression of civil society and democratic opposition in Belarus and has undermined democracy and the rule of law in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13993 +EISMANT,Natallya,,,,,,,,,16/02/1984,Minsk,Former USSR Currently Belarus,Belarus,,,,,Spokesperson/Press Secretary of the President of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0059 (UK Statement of Reasons):Natalia Eismont was appointed Spokesperson / Press Secretary to President Lukashenko in November 2014. In this role, she has actively supported President Lukashenko throughout the flawed election process surrounding the 9 August 2020 Presidential election. Through her activities and statements, she has supported the repression of civil society and democratic opposition in Belarus and has undermined democracy and the rule of law in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13993 +EISMANT,Natallya,Mikalaeuna,,,,,,,,16/02/1984,Minsk,Former USSR Currently Belarus,Belarus,,,,,Spokesperson/Press Secretary of the President of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0059 (UK Statement of Reasons):Natalia Eismont was appointed Spokesperson / Press Secretary to President Lukashenko in November 2014. In this role, she has actively supported President Lukashenko throughout the flawed election process surrounding the 9 August 2020 Presidential election. Through her activities and statements, she has supported the repression of civil society and democratic opposition in Belarus and has undermined democracy and the rule of law in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13993 +EISMANT,Natallya,Nikolayevna,,,,,,,,16/02/1984,Minsk,Former USSR Currently Belarus,Belarus,,,,,Spokesperson/Press Secretary of the President of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0059 (UK Statement of Reasons):Natalia Eismont was appointed Spokesperson / Press Secretary to President Lukashenko in November 2014. In this role, she has actively supported President Lukashenko throughout the flawed election process surrounding the 9 August 2020 Presidential election. Through her activities and statements, she has supported the repression of civil society and democratic opposition in Belarus and has undermined democracy and the rule of law in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13993 +EISMANT,Natalya,Mikalaeuna,,,,,,,,16/02/1984,Minsk,Former USSR Currently Belarus,Belarus,,,,,Spokesperson/Press Secretary of the President of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0059 (UK Statement of Reasons):Natalia Eismont was appointed Spokesperson / Press Secretary to President Lukashenko in November 2014. In this role, she has actively supported President Lukashenko throughout the flawed election process surrounding the 9 August 2020 Presidential election. Through her activities and statements, she has supported the repression of civil society and democratic opposition in Belarus and has undermined democracy and the rule of law in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13993 +EISMANT,Natalya,Nikolayevna,,,,,,,,16/02/1984,Minsk,Former USSR Currently Belarus,Belarus,,,,,Spokesperson/Press Secretary of the President of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0059 (UK Statement of Reasons):Natalia Eismont was appointed Spokesperson / Press Secretary to President Lukashenko in November 2014. In this role, she has actively supported President Lukashenko throughout the flawed election process surrounding the 9 August 2020 Presidential election. Through her activities and statements, she has supported the repression of civil society and democratic opposition in Belarus and has undermined democracy and the rule of law in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13993 +EISMONT,Natalia,Nikolayevna,,,,,Наталья Николаевна ЭЙСМОНТ,,,16/02/1984,Minsk,Former USSR Currently Belarus,Belarus,,,,,Spokesperson/Press Secretary of the President of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0059 (UK Statement of Reasons):Natalia Eismont was appointed Spokesperson / Press Secretary to President Lukashenko in November 2014. In this role, she has actively supported President Lukashenko throughout the flawed election process surrounding the 9 August 2020 Presidential election. Through her activities and statements, she has supported the repression of civil society and democratic opposition in Belarus and has undermined democracy and the rule of law in Belarus. (Gender):Female",Individual,Primary name,,Belarus,06/11/2020,31/12/2020,13/04/2022,13993 +EISMONT,Ivan,Mikhailavich,,,,,Iван Мiхайлавiч ЭЙСМАНТ,,,20/01/1977,Grodno,,Belarus,,,,,(1) Chairman of the Belarusian State Television and Radio Company since February 2018 (2) Head of Belteleradio Company,,,,,,,,,"(UK Sanctions List Ref):BEL0082 (UK Statement of Reasons):As Head of the Belarusian State Television and Radio Company, Ivan Eismont is responsible for the dissemination of state propaganda in public media. This includes using media channels to support the President’s continuation of his term in office, despite the fraudulent presidential elections that took place on 9 August 2020, and the subsequent and repeated violent crackdown on peaceful and legitimate protests. Eismont made public statements criticising the peaceful protesters and refused to provide media coverage of the protests. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14024 +EISMONT,Natalia,Mikalaeuna,,,,,,,,16/02/1984,Minsk,Former USSR Currently Belarus,Belarus,,,,,Spokesperson/Press Secretary of the President of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0059 (UK Statement of Reasons):Natalia Eismont was appointed Spokesperson / Press Secretary to President Lukashenko in November 2014. In this role, she has actively supported President Lukashenko throughout the flawed election process surrounding the 9 August 2020 Presidential election. Through her activities and statements, she has supported the repression of civil society and democratic opposition in Belarus and has undermined democracy and the rule of law in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13993 +EISMONT,Natallya,Mikalaeuna,,,,,,,,16/02/1984,Minsk,Former USSR Currently Belarus,Belarus,,,,,Spokesperson/Press Secretary of the President of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0059 (UK Statement of Reasons):Natalia Eismont was appointed Spokesperson / Press Secretary to President Lukashenko in November 2014. In this role, she has actively supported President Lukashenko throughout the flawed election process surrounding the 9 August 2020 Presidential election. Through her activities and statements, she has supported the repression of civil society and democratic opposition in Belarus and has undermined democracy and the rule of law in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13993 +EISMONT,Natallya,Nikolayevna,,,,,,,,16/02/1984,Minsk,Former USSR Currently Belarus,Belarus,,,,,Spokesperson/Press Secretary of the President of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0059 (UK Statement of Reasons):Natalia Eismont was appointed Spokesperson / Press Secretary to President Lukashenko in November 2014. In this role, she has actively supported President Lukashenko throughout the flawed election process surrounding the 9 August 2020 Presidential election. Through her activities and statements, she has supported the repression of civil society and democratic opposition in Belarus and has undermined democracy and the rule of law in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13993 +EISMONT,Natalya,Mikalaeuna,,,,,,,,16/02/1984,Minsk,Former USSR Currently Belarus,Belarus,,,,,Spokesperson/Press Secretary of the President of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0059 (UK Statement of Reasons):Natalia Eismont was appointed Spokesperson / Press Secretary to President Lukashenko in November 2014. In this role, she has actively supported President Lukashenko throughout the flawed election process surrounding the 9 August 2020 Presidential election. Through her activities and statements, she has supported the repression of civil society and democratic opposition in Belarus and has undermined democracy and the rule of law in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13993 +EISMONT,Natalya,Nikolayevna,,,,,,,,16/02/1984,Minsk,Former USSR Currently Belarus,Belarus,,,,,Spokesperson/Press Secretary of the President of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0059 (UK Statement of Reasons):Natalia Eismont was appointed Spokesperson / Press Secretary to President Lukashenko in November 2014. In this role, she has actively supported President Lukashenko throughout the flawed election process surrounding the 9 August 2020 Presidential election. Through her activities and statements, she has supported the repression of civil society and democratic opposition in Belarus and has undermined democracy and the rule of law in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13993 +EJERCITO DE LIBERACION NACIONAL (ELN),,,,,,,Ejército de Liberación Nacional (ELN),,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0029 (UK Statement of Reasons):The ELN is a terrorist organisation which is responsible for bombings and armed attacks against the Colombian government and civilians.,Entity,Primary name,,Counter-Terrorism (International),02/11/2001,31/12/2020,31/12/2020,7364 +EKATOM,Alfred,,,,,,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,,The Hague,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +EKATOM,Alfred,,,,,,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Bimbo,Ombella-Mpoko province,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +EKATOM,Alfred,,,,,,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Mbaiki,Lobaye Province,,,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +EL ABASS,Belaouar,Khaled,Abou,,,,,,,01/06/1972,Ghardaia,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0249 (UN Ref):QDi.136 Father's name is Mohamed. Mother's name is Zohra Chemkha. Member of the Council of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) (AQIM). Head of Al Mouakaoune Biddam (QDe.139), Al Moulathamoun (QDe.140) and Al Mourabitoun (QDe.141). Review pursuant to Security Council resolution 1822 (2008) was concluded on 30 Jul. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4488665",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,11/11/2003,14/04/2022,7881 +EL ABASS,Belaouer,Khaled,Abou,,,,,,,01/06/1972,Ghardaia,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0249 (UN Ref):QDi.136 Father's name is Mohamed. Mother's name is Zohra Chemkha. Member of the Council of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) (AQIM). Head of Al Mouakaoune Biddam (QDe.139), Al Moulathamoun (QDe.140) and Al Mourabitoun (QDe.141). Review pursuant to Security Council resolution 1822 (2008) was concluded on 30 Jul. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4488665",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,11/11/2003,14/04/2022,7881 +EL ABASS,Khaled,Abou,,,,,,,,01/06/1972,Ghardaia,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0249 (UN Ref):QDi.136 Father's name is Mohamed. Mother's name is Zohra Chemkha. Member of the Council of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) (AQIM). Head of Al Mouakaoune Biddam (QDe.139), Al Moulathamoun (QDe.140) and Al Mourabitoun (QDe.141). Review pursuant to Security Council resolution 1822 (2008) was concluded on 30 Jul. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4488665",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,11/11/2003,14/04/2022,7881 +EL ABBES,Khaled,Abou,,,,,,,,01/06/1972,Ghardaia,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0249 (UN Ref):QDi.136 Father's name is Mohamed. Mother's name is Zohra Chemkha. Member of the Council of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) (AQIM). Head of Al Mouakaoune Biddam (QDe.139), Al Moulathamoun (QDe.140) and Al Mourabitoun (QDe.141). Review pursuant to Security Council resolution 1822 (2008) was concluded on 30 Jul. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4488665",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,11/11/2003,14/04/2022,7881 +EL ABES,Belmokhtar,Khaled,Abou,,,,,,,01/06/1972,Ghardaia,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0249 (UN Ref):QDi.136 Father's name is Mohamed. Mother's name is Zohra Chemkha. Member of the Council of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) (AQIM). Head of Al Mouakaoune Biddam (QDe.139), Al Moulathamoun (QDe.140) and Al Mourabitoun (QDe.141). Review pursuant to Security Council resolution 1822 (2008) was concluded on 30 Jul. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4488665",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,11/11/2003,14/04/2022,7881 +EL ABES,Khaled,Abou,,,,,,,,01/06/1972,Ghardaia,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0249 (UN Ref):QDi.136 Father's name is Mohamed. Mother's name is Zohra Chemkha. Member of the Council of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) (AQIM). Head of Al Mouakaoune Biddam (QDe.139), Al Moulathamoun (QDe.140) and Al Mourabitoun (QDe.141). Review pursuant to Security Council resolution 1822 (2008) was concluded on 30 Jul. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4488665",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,11/11/2003,14/04/2022,7881 +EL ALFI,ABDULLAH,AHMED,ABDULLAH,,,,عبد الله احمد عبدالله الالفي,,,06/06/1963,Gharbia,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0109 (UN Ref):QDi.019 Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6917 +EL AYASHI,Radi,Abd El Samie,Abou El Yazid,,,,راضي عبد السميع أبواليزيد العياشي,,,02/01/1972,El Gharbia Governorate,Egypt,Egypt,,,,,,Via Cilea 40,,,,,Milan,,Italy,(UK Sanctions List Ref):AQD0289 (UN Ref):QDi.142 Sentenced to ten years of imprisonment by the Court of first instance of Milan on 21 Sep. 2006. In custody in Italy. Due for release on 6 Jan. 2012. Subject to expulsion from Italy after serving the sentence. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1418994.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7865 +EL BACHIR,Lahbib,Idrissi,ould Sidi,Abdi ould,Said ould,,,,,16/02/1973,Laayoune,,,,,,,,,,,,Ménaka,Gao Region,,Mali,"(UK Sanctions List Ref):AQD0121 (UN Ref):QDi.415 Former spokesperson of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Emir of the Al-Mourabitoun (QDe.141) group in Mali. Pledged allegiance to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115) in May 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6241501",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/08/2018,09/08/2018,31/12/2020,13706 +EL BESIR,Muhammed,,,,,,,,,04/06/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +EL BESIR,Muhammed,,,,,,,,,13/11/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +EL BESIR,Muhammed,,,,,,,,,11/08/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +EL BESIR,Muhammed,,,,,,,,,04/04/1969,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +EL BESIR,Muhammed,,,,,,,,,04/04/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +EL BESIR,Muhammed,,,,,,,,,14/01/1968,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +EL DJAZAIRI,Abou,Yasser,,,,,,,,13/02/1970,"Rouiba, Algiers",Algeria,(1) Algeria. (2) Palestine,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0158 (UN Ref):QDi.058 Finance chief of the Afghan Support Committee (ASC) (QDe.069). Al-Qaida (QDe.004) facilitator and communication expert. Believed to be in Algeria as at Apr. 2010. Son of Mohamed and Fatma Aribi. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6104674 (Gender):Male,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6998 +EL' GHABRA,Mohammed,,,,,,,,,01/06/1980,Damascus,Syria,United Kingdom,094629366,British number,,,,,,,,,East London,,United Kingdom,(UK Sanctions List Ref):AQD0245 (UN Ref):QDi.228 Father’s name is Mohamed Ayman Ghabra. Mother’s name is Dalal. Review pursuant to Security Council resolution 1822 (2008) was concluded on 5 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1475981,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/12/2006,12/12/2006,31/12/2020,8983 +EL HABHAB,Redouane,,,,,,,,,20/12/1969,Casablanca,Morocco,(1) Germany. (2) Morocco,1005552350,"German. Issued on 27 March 2001 by Municipality of Kiel, Germany. Expired on 26 March 2011.",1007850441,"German federal identity card. Issued on 27 March 2001 by Municipality of Kiel, Germany. Expired on 26 March 2011.",,lltisstrasse 58,,,,,Kiel,24143,Germany,"(UK Sanctions List Ref):AQD0294 (UN Ref):QDi.262 Released from custody in Germany in Apr. 2012. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4474065. Address Kiel, previous address",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,14/11/2008,12/11/2008,12/01/2022,10753 +EL HAKIM,Boubaker,,,,,,,,,01/08/1983,Paris,France,(1) France. (2) Tunisia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0157 (UN Ref):QDi.375 French-Tunisian foreign terrorist fighter for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897328.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,12/01/2022,13289 +EL HAMMAM,Yahia,Abou,,,,,,,,09/05/1978,"Rouiba, Algiers",Algeria,Algeria,,,,,,,,,,,,,Mali,(UK Sanctions List Ref):AQD0162 (UN Ref):QDi.313 Father’s name is Slimane. Mother’s name is Akrouf Khadidja. Coordinator of groups associated with The Organisation of Al-Qaida in the Islamic Maghreb (QDe.014) in northern Mali. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5224629,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,13/02/2013,05/02/2013,31/12/2020,12842 +EL ILLAH,Abd,,,,,,,,,17/01/1967,"Anser, Wilaya (province) of Jijel",Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0124 (UN Ref):QDi.252 Belongs to the leadership and is the finance chief of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Mother’s name is Zakia Chebira. Father’s name is Lakhdar. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529228,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,12/01/2022,10693 +EL JAZEERA,,,,,,,,,,,,,,,,,,,,Shaheen Building,2nd Floor,Sami el Solh,,Beirut,,Lebanon,"(UK Sanctions List Ref):SYR0297 (UK Statement of Reasons):Owned or controlled by the designated person Ayman Jabir. (Type of entity):Private, Transport, Oil and Petroleum",Entity,AKA,,Syria,23/07/2014,31/12/2020,31/12/2020,13034 +EL JAZEERAH,,,,,,,,,,,,,,,,,,,,Shaheen Building,2nd Floor,Sami el Solh,,Beirut,,Lebanon,"(UK Sanctions List Ref):SYR0297 (UK Statement of Reasons):Owned or controlled by the designated person Ayman Jabir. (Type of entity):Private, Transport, Oil and Petroleum",Entity,AKA,,Syria,23/07/2014,31/12/2020,31/12/2020,13034 +EL JAZERRA,,,,,,,,,,,,,,,,,,,,Shaheen Building,2nd Floor,Sami el Solh,,Beirut,,Lebanon,"(UK Sanctions List Ref):SYR0297 (UK Statement of Reasons):Owned or controlled by the designated person Ayman Jabir. (Type of entity):Private, Transport, Oil and Petroleum",Entity,AKA,,Syria,23/07/2014,31/12/2020,31/12/2020,13034 +EL JAZIRA,,,,,,,,,,,,,,,,,,,,Shaheen Building,2nd Floor,Sami el Solh,,Beirut,,Lebanon,"(UK Sanctions List Ref):SYR0297 (UK Statement of Reasons):Owned or controlled by the designated person Ayman Jabir. (Type of entity):Private, Transport, Oil and Petroleum",Entity,AKA,,Syria,23/07/2014,31/12/2020,31/12/2020,13034 +EL JAZIREH,,,,,,,,,,,,,,,,,,,,Shaheen Building,2nd Floor,Sami el Solh,,Beirut,,Lebanon,"(UK Sanctions List Ref):SYR0297 (UK Statement of Reasons):Owned or controlled by the designated person Ayman Jabir. (Type of entity):Private, Transport, Oil and Petroleum",Entity,Primary name,,Syria,23/07/2014,31/12/2020,31/12/2020,13034 +EL JENDOUBI,Abou,Ismail,,,,,,,,23/11/1965,Ghardimaou,Tunisia,Tunisia,E590976,"issue date: 19/06/1987, expiry date: 18/06/1992",,,,Rue Leon Theodore No 107/1,1090 Jette,,,,Brussels,,Belgium,"(UK Sanctions List Ref):AQD0321 (UN Ref):QDi.074 Belgian nationality withdrawn on 26 Jan. 2009. In detention in Nivelles, Belgium, as of Oct. 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2002,03/09/2002,31/12/2020,7255 +EL KHAIRY,Hamad,,,,,,,,,00/00/1970,Nouakchott,Mauritania,(1) Mauritania. (2) Mali,A1447120,Mali number. Expired on 19 Oct. 2011,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0188 (UN Ref):QDi.315 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Has provided logistical support to the Sahelian group Al Moulathamine, linked with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). International arrest warrant issued by Mauritania. Mother’s name is Tijal Bint Mohamed Dadda. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278393",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12859 +EL MOTASSADEQ,Mounir,,,,,,منير المتصدق,,,03/04/1974,Marrakesh,Morocco,Morocco,H 236483,,E-491591,,,,,,,,,,Germany,"(UK Sanctions List Ref):AQD0254 (UN Ref):QDi.082 Arrested on 28 Nov. 2001 and found guilty in Germany of being an accessory to murder and of membership in a terrorist organization and sentenced to 15 years of imprisonment on 8 Jan. 2007. Father's name is Brahim Brik. Mother's name is Habiba Abbes. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Germany, in prison",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,31/12/2020,7124 +EL MOUHAJER,Omar,,,,,,,,,10/02/1968,"Menzel Jemil, Bizerte",Tunisia,Tunisia,K929139,"Tunisia number, issued on 14 Feb. 1995 (expired on 13 Feb. 2000)",(1) 00319547 (2) SSDSBN68B10Z352F,(1) Issued on 8 Dec. 1994 (2) Italian Fiscal Code,,Ibn Al-Haythman Street,No 6,Manubah,,,Tunis,,Tunisia,(UK Sanctions List Ref):AQD0311 (UN Ref):QDi.064 Mother’s name is Beya Al-Saidani. Deported from Italy to Tunisia on 2 Jun. 2008. Imprisoned in Tunisia in Aug. 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7091 +EL MOUTASSADEQ,Mounir,,,,,,,,,03/04/1974,Marrakesh,Morocco,Morocco,H 236483,,E-491591,,,,,,,,,,Germany,"(UK Sanctions List Ref):AQD0254 (UN Ref):QDi.082 Arrested on 28 Nov. 2001 and found guilty in Germany of being an accessory to murder and of membership in a terrorist organization and sentenced to 15 years of imprisonment on 8 Jan. 2007. Father's name is Brahim Brik. Mother's name is Habiba Abbes. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Germany, in prison",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,31/12/2020,7124 +EL OURASSI,,,,,,,,,,01/01/1968,(1) Kef Rih (2) Guelma,(1) Algeria (2) Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0303 (UN Ref):QDi.152 In detention in Algeria since Oct. 2004. Former member of the GSPC listed as The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. El Para (combat name), Abderrezak Le Para (combat name).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/12/2003,04/12/2003,16/02/2022,7890 +EL OURASSI,,,,,,,,,,24/04/1968,(1) Kef Rih (2) Guelma,(1) Algeria (2) Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0303 (UN Ref):QDi.152 In detention in Algeria since Oct. 2004. Former member of the GSPC listed as The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. El Para (combat name), Abderrezak Le Para (combat name).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/12/2003,04/12/2003,16/02/2022,7890 +EL PARA,,,,,,,,,,01/01/1968,(1) Kef Rih (2) Guelma,(1) Algeria (2) Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0303 (UN Ref):QDi.152 In detention in Algeria since Oct. 2004. Former member of the GSPC listed as The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. El Para (combat name), Abderrezak Le Para (combat name).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/12/2003,04/12/2003,16/02/2022,7890 +EL PARA,,,,,,,,,,24/04/1968,(1) Kef Rih (2) Guelma,(1) Algeria (2) Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0303 (UN Ref):QDi.152 In detention in Algeria since Oct. 2004. Former member of the GSPC listed as The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. El Para (combat name), Abderrezak Le Para (combat name).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/12/2003,04/12/2003,16/02/2022,7890 +EL QAIM,Ibn,,,,,,,,,00/00/1969,Tripoli,Libya,Libya,96/184442,Libyan Passport No.,,,,Ghout El Shamal,,,,,Tripoli,,Libya,(UK Sanctions List Ref):AQD0135 (UN Ref):QDi.229 Member of Libyan Islamic Fighting Group (QDe.011). Review pursuant to Security Council resolution 1822 (2008) was concluded on 24 Nov. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1479979,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/06/2007,08/06/2007,31/12/2020,8650 +EL SABAAY,Hani,al-Sayyid,,,,,,,,01/03/1961,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +EL SABAAY,Hani,al-Sayyid,,,,,,,,16/06/1960,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +EL SAYED,Abdel Khader,Mahmoud,Mohamed,,,,,,,26/12/1962,,Egypt,Egypt,,,SSYBLK62T26Z336L,Italian Fiscal Code,,,,,,,,,,(UK Sanctions List Ref):AQD0094 (UN Ref):QDi.065 Italian Fiscal Code: SSYBLK62T26Z336L. Sentenced to 8 years imprisonment in Italy on 2 February 2004. Considered a fugitive from justice by the Italian authorities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1418867,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,12/01/2022,7128 +EL SAYED,ABD EL KADER,MAHMOUD,MOHAMED,,,,عبد القادر محمود محمد السيد,,,26/12/1962,,Egypt,Egypt,,,SSYBLK62T26Z336L,Italian Fiscal Code,,,,,,,,,,(UK Sanctions List Ref):AQD0094 (UN Ref):QDi.065 Italian Fiscal Code: SSYBLK62T26Z336L. Sentenced to 8 years imprisonment in Italy on 2 February 2004. Considered a fugitive from justice by the Italian authorities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1418867,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,12/01/2022,7128 +EL SEBAI,Hani,al-Sayyid,,,,,,,,01/03/1961,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +EL SEBAI,Hani,al-Sayyid,,,,,,,,16/06/1960,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +EL SHEIKH,ELSHAFEE,,,,,,,,,16/07/1988,London,United Kingdom,United Kingdom,801121547,"United Kingdom of Great Britain and Northern Ireland number, expiry date: 16/06/2019, cancelled in Dec. 2014, issue date on 16/06/2009",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0166 (UN Ref):QDi.409 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Physical description: eye colour: dark brown; hair colour: black; complexion: dark. Distinguishing marks: beard. Mother’s name: Maha Elgizouli. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116609",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13513 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1977,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1977,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1977,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1977,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1978,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1978,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1978,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1978,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1979,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1979,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1979,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1979,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1980,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1980,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1980,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1980,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1981,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1981,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1981,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1981,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1982,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1982,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1982,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL TILEMSI,Ahmed,,,,,,,,,00/00/1982,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +EL-AISSAMI MADDAH,Tareck,Zaidan,,,,Vice President,,,,12/11/1974,,,,,,,,(1) Sectoral Vice-President of Economy (2) Minister of Petroleum (3) Former Minister of Industry and National Production (4) Former Venezuelan Vice President,,,,,,,,,"(UK Sanctions List Ref):VEN0007 Vice President of the Bolivarian Republic of Venezuela (UK Statement of Reasons):Sectoral Vice President of the Economy and Minister of Petroleum, former Minister for National Industry. Reasonable grounds to suspect that as the former Vice President of Venezuela with oversight of the Bolivarian National Intelligence Service (SEBIN) El-Aissami is involved in the commission of serious human rights violations carried out by the organisation, including arbitrary detention, politically motivated investigations, inhumane and degrading treatment, and torture. Reasonable grounds to suspect he is also involved in supporting and implementing policies and activities which undermine democracy and the rule of law, including the prohibition of public demonstrations, and heading President Maduro's “anti-coup command” which has targeted civil society and the democratic opposition. (Gender):Male",Individual,Primary name,,Venezuela,26/06/2018,31/12/2020,28/01/2022,13679 +EL-ATOU,Fawaz,,,,,,,,,,,,,,,,,A lab technician at the Syrian Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0043 Not currently designated by the US Treasury Linked with SSRC (UK Statement of Reasons):Fawwaz El-Atou is a lab technician at the Syrian Scientific Studies and Research Centre, involved in chemical weapons proliferation and delivery. Fawwaz El-Atou has been involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is associated with the Syrian Scientific Studies and Research Centre, a listed entity. Therefore, he has been involved in carrying on prohibited activities related to chemical weapons in Syria. He is or has been involved in repressing the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,13/05/2022,13506 +EL-ATOU,Fawwaz,,,,,,الاطو فواز,,,,,,,,,,,A lab technician at the Syrian Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0043 Not currently designated by the US Treasury Linked with SSRC (UK Statement of Reasons):Fawwaz El-Atou is a lab technician at the Syrian Scientific Studies and Research Centre, involved in chemical weapons proliferation and delivery. Fawwaz El-Atou has been involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is associated with the Syrian Scientific Studies and Research Centre, a listed entity. Therefore, he has been involved in carrying on prohibited activities related to chemical weapons in Syria. He is or has been involved in repressing the civilian population in Syria. (Gender):Male",Individual,Primary name,,Syria,18/07/2017,31/12/2020,13/05/2022,13506 +ELECTRO SANAM COMPANY,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0142 (UN Ref):IRe.014 AIO front-company, involved in the ballistic missile programme. [Old Reference # E.03.III.3] (Parent company):Aerospace Industries Organisation (AIO)",Entity,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,31/12/2020,10443 +ELECTRONIC COMPONENTS INDUSTRIES,,,,,,,,,,,,,,,,,,,Hossain Abad Avenue,,,,,Shiraz,,Iran,(UK Sanctions List Ref):INU0060 (UK Statement of Reasons):Subsidiary of Iran Electronics Industries (Type of entity):Enterprise (Parent company):Iran Electronic Industries (a MODAFL subsidiary),Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11952 +ELECTRONIC COMPONENTS INDUSTRIES (ECI),,,,,,,,,,,,,,,,,,,Hossain Abad Avenue,,,,,Shiraz,,Iran,(UK Sanctions List Ref):INU0060 (UK Statement of Reasons):Subsidiary of Iran Electronics Industries (Type of entity):Enterprise (Parent company):Iran Electronic Industries (a MODAFL subsidiary),Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11952 +ELECTRONIC INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,Hossein Abad/Ardakan Road,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +ELECTRONIC INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,P.O. Box 18575-365,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +ELECTRONIC INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,P.O. Box 71265-1589,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +ELECTRONIC INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,P.O. Box 71365-1174,Eman Khomeini Ave.,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +ELECTRONIC INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,PO Box 19575 365,Pasdran Ave.,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +ELECTRONIC INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,Sh. Langari St.,Nobonyad Sq.,Pasdaran Ave.,,,Tehran,19574,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +ELECTRONIC INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,Shahid Langari Street,Nobonyad Square,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +EL-HAJJ,,,,,,,,,,22/03/1988,"Zaghdraiya, Sidon",,Canada,JX446643,Canadian,,,,,,,,,,,Lebanon,"(UK Sanctions List Ref):CTI0007 (UK Statement of Reasons):Mr El-Hajj has been found guilty of complicity in the bombing of Burgas Airport, which killed 6 people and injured 32 others. He is associated with the military wing of Hizballah, a terrorist organisation. (Gender):Male",Individual,AKA,,Counter-Terrorism (International),23/12/2016,31/12/2020,11/03/2022,13442 +EL-HAJJ,Hassan,,,,,,,,,22/03/1988,"Zaghdraiya, Sidon",,Canada,JX446643,Canadian,,,,,,,,,,,Lebanon,"(UK Sanctions List Ref):CTI0007 (UK Statement of Reasons):Mr El-Hajj has been found guilty of complicity in the bombing of Burgas Airport, which killed 6 people and injured 32 others. He is associated with the military wing of Hizballah, a terrorist organisation. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),23/12/2016,31/12/2020,11/03/2022,13442 +EL-HAKIM,Boubakeur,,,,,,,,,01/08/1983,Paris,France,(1) France. (2) Tunisia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0157 (UN Ref):QDi.375 French-Tunisian foreign terrorist fighter for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897328.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,12/01/2022,13289 +ELHASSAN,Gaffar,Mohmed,,,,,,,,24/06/1952,,,,,,4302,Ex-serviceman's identification card,(1) Major-General (2) Commander of the Western Military Region for the Sudanese Armed Forces (SAF),El Waha,,,,,Omdurman,,Sudan,(UK Sanctions List Ref):SUD0001 (UN Ref):SDi.001 Retired from the Sudanese Army.,Individual,AKA,Good quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8838 +ELHASSAN,GAFFAR,MOHAMMED,,,,,,,,24/06/1952,,,,,,4302,Ex-serviceman's identification card,(1) Major-General (2) Commander of the Western Military Region for the Sudanese Armed Forces (SAF),El Waha,,,,,Omdurman,,Sudan,(UK Sanctions List Ref):SUD0001 (UN Ref):SDi.001 Retired from the Sudanese Army.,Individual,Primary name,,Sudan,26/05/2006,25/04/2006,31/12/2020,8838 +ELHOUMMAM,Yahia,Abou,,,,,,,,09/05/1978,"Rouiba, Algiers",Algeria,Algeria,,,,,,,,,,,,,Mali,(UK Sanctions List Ref):AQD0162 (UN Ref):QDi.313 Father’s name is Slimane. Mother’s name is Akrouf Khadidja. Coordinator of groups associated with The Organisation of Al-Qaida in the Islamic Maghreb (QDe.014) in northern Mali. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5224629,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,13/02/2013,05/02/2013,31/12/2020,12842 +ELISEEV,Ilya,Vladimirovich,,,,,Илья Владимирович Эйльсеев,Cyrillic,Russian,19/12/1965,,,,,,,,Member of the Board of Directors of Gazprombank JSC,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1630 (UK Statement of Reasons):Ilya Vladimirovich Eilseev is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by:(1) working as a director of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a director of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15574 +EL-JARROUCHI,Ahmad,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +EL-JARROUCHI,Ahmed,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +EL-KHAYARI,Brahim,,,,,,,,,07/05/1992,Nîmes,France,France,,,,,,,,,,,,,Iraq,(UK Sanctions List Ref):CTI0044 Linked to Sheikh Adnani - Official Spokesman of Islamic State in Iraq and the Levant (Qdi.325) (UK Statement of Reasons):Brahim El-Khayari is associated with ISIL (Da’esh) – a terrorist organisation. He is a foreign terrorist fighter who travelled to Syria to participate in activities (including recruitment and glorification of acts of terrorism) on behalf of Da’esh. (Gender):Male,Individual,Primary name,,Counter-Terrorism (International),18/02/2019,31/12/2020,21/01/2021,13769 +EL-KHAYARI,Brahim,,,,,,,,,07/05/1992,Nîmes,France,France,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):CTI0044 Linked to Sheikh Adnani - Official Spokesman of Islamic State in Iraq and the Levant (Qdi.325) (UK Statement of Reasons):Brahim El-Khayari is associated with ISIL (Da’esh) – a terrorist organisation. He is a foreign terrorist fighter who travelled to Syria to participate in activities (including recruitment and glorification of acts of terrorism) on behalf of Da’esh. (Gender):Male,Individual,Primary name,,Counter-Terrorism (International),18/02/2019,31/12/2020,21/01/2021,13769 +ELMA,Zidni,,,,,,,,,11/10/1978,,Indonesia,Indonesia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0248 (UN Ref):QDi.416 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: hair colour: black; build: slight. Speaks Indonesian, Arabic and Mindanao dialect. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244333. Syria, location since 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13708 +ELMI,MOHAMMAD,AZAM,,,,Maulavi,محمد اعظم علمی,,,00/00/1968,"Sayd Karam District, Paktia Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Mines and Industries under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0048 (UN Ref):TAi.063 Reportedly deceased in 2005. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7127 +EL-OULABI,Adel,Anouar,,,,,,,,00/00/1976,,,Syria,,,,,(1) Governor of Damascus (2) Chairman of Damascus Cham Holding Company,,,,,,,,,"(UK Sanctions List Ref):SYR0356 Chairman of Damascus Cham Holding Company (DCHC) (UK Statement of Reasons):Leading businessperson benefiting from and supporting the regime. Vice Chairman of Damascus Cham Holding Company (DCHC), the investment arm of the Governorate of Damascus managing the properties of the Governorate of Damascus and implementing the Marota City Project. Adel Anwar Al-Olabi is also the Governor of Damascus, appointed by Bashar Al-Assad in November 2018. As Governor of Damascus and Vice Chair of DCHC, he is responsible for efforts to implement regime policies of developing expropriated land in Damascus (including Decree No.66 and Law No.10), most notably through the Marota City Project. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13821 +EL-OULABI,Adel,Anwar,,,,,,,,00/00/1976,,,Syria,,,,,(1) Governor of Damascus (2) Chairman of Damascus Cham Holding Company,,,,,,,,,"(UK Sanctions List Ref):SYR0356 Chairman of Damascus Cham Holding Company (DCHC) (UK Statement of Reasons):Leading businessperson benefiting from and supporting the regime. Vice Chairman of Damascus Cham Holding Company (DCHC), the investment arm of the Governorate of Damascus managing the properties of the Governorate of Damascus and implementing the Marota City Project. Adel Anwar Al-Olabi is also the Governor of Damascus, appointed by Bashar Al-Assad in November 2018. As Governor of Damascus and Vice Chair of DCHC, he is responsible for efforts to implement regime policies of developing expropriated land in Damascus (including Decree No.66 and Law No.10), most notably through the Marota City Project. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13821 +EL-OULABI,Adil,Anwar,,,,,,,,00/00/1976,,,Syria,,,,,(1) Governor of Damascus (2) Chairman of Damascus Cham Holding Company,,,,,,,,,"(UK Sanctions List Ref):SYR0356 Chairman of Damascus Cham Holding Company (DCHC) (UK Statement of Reasons):Leading businessperson benefiting from and supporting the regime. Vice Chairman of Damascus Cham Holding Company (DCHC), the investment arm of the Governorate of Damascus managing the properties of the Governorate of Damascus and implementing the Marota City Project. Adel Anwar Al-Olabi is also the Governor of Damascus, appointed by Bashar Al-Assad in November 2018. As Governor of Damascus and Vice Chair of DCHC, he is responsible for efforts to implement regime policies of developing expropriated land in Damascus (including Decree No.66 and Law No.10), most notably through the Marota City Project. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13821 +EL-SABABT,,,,,,,,,,01/03/1961,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +EL-SABABT,,,,,,,,,,16/06/1960,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +ELSHEIKH,El Shafee,,,,,,,,,16/07/1988,London,United Kingdom,United Kingdom,801121547,"United Kingdom of Great Britain and Northern Ireland number, expiry date: 16/06/2019, cancelled in Dec. 2014, issue date on 16/06/2009",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0166 (UN Ref):QDi.409 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Physical description: eye colour: dark brown; hair colour: black; complexion: dark. Distinguishing marks: beard. Mother’s name: Maha Elgizouli. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116609",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13513 +EL-SHEIKH,Alshafee,,,,,,,,,16/07/1988,London,United Kingdom,United Kingdom,801121547,"United Kingdom of Great Britain and Northern Ireland number, expiry date: 16/06/2019, cancelled in Dec. 2014, issue date on 16/06/2009",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0166 (UN Ref):QDi.409 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Physical description: eye colour: dark brown; hair colour: black; complexion: dark. Distinguishing marks: beard. Mother’s name: Maha Elgizouli. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116609",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13513 +ELSSEID,SAMI,BEN KHAMIS,BEN SALEH,,,,سامي بن خميس بن صالح الصيد,,,10/02/1968,"Menzel Jemil, Bizerte",Tunisia,Tunisia,K929139,"Tunisia number, issued on 14 Feb. 1995 (expired on 13 Feb. 2000)",(1) 00319547 (2) SSDSBN68B10Z352F,(1) Issued on 8 Dec. 1994 (2) Italian Fiscal Code,,Ibn Al-Haythman Street,No 6,Manubah,,,Tunis,,Tunisia,(UK Sanctions List Ref):AQD0311 (UN Ref):QDi.064 Mother’s name is Beya Al-Saidani. Deported from Italy to Tunisia on 2 Jun. 2008. Imprisoned in Tunisia in Aug. 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7091 +EL-TEL CO,,,,,,,,,,,,,,,,,,,Dair Ali Jordan Highway,,,,P.O.Box 13052,Damascus,,Syria,(UK Sanctions List Ref):SYR0298 (UK Statement of Reasons):Manufacturing and supplying communication and transmission towers and other equipment for the Syrian regime. Associated with Rami and Iyad Makhlouf. (Phone number):+963 11 2212345 (Website):www.eltelme.com,Entity,Primary name,,Syria,26/09/2011,31/12/2020,13/05/2022,12068 +EL-TOUNSI,Abou,Iyadh,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,,,,,,,,Libya,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +EL-TOUNSI,Abou,Iyadh,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,60 Rue de la Libye Hamman Lif,Ben Arous,,,,,,Tunisia,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +EMADI,Hamid,Reza,,,,,,,,00/00/1973,Hamedan,Iran,Iran,,,,,Director Press TV Newsroom,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0034 (UK Statement of Reasons):Press TV Newsroom Director. Former Press TV Senior Producer. Responsible for producing and broadcasting the forced confessions of detainees, including journalists, political activists, persons belonging to Kurdish and Arab minorities, violating internationally recognised rights to a fair trial and due process. Independent broadcast regulator OFCOM fined Press TV in the UK GBP 100 000 for broadcasting the forced confession of Iranian-Canadian journalist and film-maker Maziar Bahari in 2011, which was filmed in prison whilst Bahari was under duress. NGOs have reported further instances of forced televised confessions by Press TV. Emadi is therefore associated with violating the right to due process and fair trial. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/03/2013,31/12/2020,31/12/2020,12854 +EMADI,Hamidreza,,,,,,,,,00/00/1973,Hamedan,Iran,Iran,,,,,Director Press TV Newsroom,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0034 (UK Statement of Reasons):Press TV Newsroom Director. Former Press TV Senior Producer. Responsible for producing and broadcasting the forced confessions of detainees, including journalists, political activists, persons belonging to Kurdish and Arab minorities, violating internationally recognised rights to a fair trial and due process. Independent broadcast regulator OFCOM fined Press TV in the UK GBP 100 000 for broadcasting the forced confession of Iranian-Canadian journalist and film-maker Maziar Bahari in 2011, which was filmed in prison whilst Bahari was under duress. NGOs have reported further instances of forced televised confessions by Press TV. Emadi is therefore associated with violating the right to due process and fair trial. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/03/2013,31/12/2020,31/12/2020,12854 +EMARAT KAVKAZ,,,,,,,Эмират Кавказ,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0042 (UN Ref):QDE.131 Mainly active in the Russian Federation, Afghanistan and Pakistan. Led by# Doku Khamatovich Umarov (QDi.290) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235592",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,11/08/2011,29/07/2011,31/12/2020,12031 +EMARAT KAVKAZ,,,,,,,Эмират Кавказ,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0042 (UN Ref):QDE.131 Mainly active in the Russian Federation, Afghanistan and Pakistan. Led by# Doku Khamatovich Umarov (QDi.290) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235592",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,11/08/2011,29/07/2011,31/12/2020,12031 +EMARAT KAVKAZ,,,,,,,Эмират Кавказ,,,,,,,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):AQD0042 (UN Ref):QDE.131 Mainly active in the Russian Federation, Afghanistan and Pakistan. Led by# Doku Khamatovich Umarov (QDi.290) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235592",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,11/08/2011,29/07/2011,31/12/2020,12031 +EMELYANOVA,Svetlana,Petrovna,,,,,,,,07/10/1971,Novorossiysk,Russia,Russia,,,,,Member of OTKRITIE Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1639 (UK Statement of Reasons):Svetlana Petrovna Yemelyanova is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by (1) working as a director, manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Bank Otkritie Financial Corporation PJSC which carries on business in the Russian financial services sector; (2) working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely Bank Otkritie Financial Corporation PJSC. (Gender):Female",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15583 +ENDING,Hambali,Bin,,,,,,,,04/04/1964,"Cianjur, West Java",Indonesia,Indonesia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0278 (UN Ref):QDi.087 Senior leader of Jemaah Islamiyah (QDe.092). Brother of Gun Gun Rusman Gunawan (QDi.218). In custody of the United States of America, as of July 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,7156 +ENGINEERING OF EXPANSION OF NUCLEAR FUEL COMPANY LTD.,,,,,,,,,,,,,,,,,,,90,Fathi Shaghaghi Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0092 (UK Statement of Reasons):An Iranian company which has been contracted by UN designated Kalaye Electric Company to provide design and engineering services across the nuclear fuel cycle, including at Natanz Fuel Enrichment Plant. (Type of entity):Engineering",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12260 +ENGINEERING OF EXPANSION OF NUCLEAR FUEL COMPANY LTD.,,,,,,,,,,,,,,,,,,,27,Alvand Avenue,37th Street,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0092 (UK Statement of Reasons):An Iranian company which has been contracted by UN designated Kalaye Electric Company to provide design and engineering services across the nuclear fuel cycle, including at Natanz Fuel Enrichment Plant. (Type of entity):Engineering",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12260 +ENNOUINI,Mohamed,,,,,,,,,00/00/1978,,Mali,Mali,,,,,,,,,,,,,Mali,(UK Sanctions List Ref):AQD0240 (UN Ref):QDi.319 Member of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5720103,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,24/10/2013,31/12/2020,12886 +EPIFANOVA,Olga,Nikolaevna,,,,,О́льга Никола́евна Епифа́нова,,,19/08/1966,Novgorod,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0878 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14829 +EQUIPMENT SUPPLIER FOR NUCLEAR INDUSTRIES CORPORATION,,,,,,,,,,,,,,,,,,,No1,37th Avenue,Asadabadi Street,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0061 (UK Statement of Reasons):Has procured industrial goods, specifically for the nuclear programme activities carried out by AEOI, Novin Energy and Kalaye Electric Company. (Phone number):(1) +98 21 88214616. (2) +98 21 88214641 2 (Website):www.esnico.com",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11187 +EQUIPMENT SUPPLY OF NUCLEAR INDUSTRIES CO,,,,,,,,,,,,,,,,,,,No1,37th Avenue,Asadabadi Street,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0061 (UK Statement of Reasons):Has procured industrial goods, specifically for the nuclear programme activities carried out by AEOI, Novin Energy and Kalaye Electric Company. (Phone number):(1) +98 21 88214616. (2) +98 21 88214641 2 (Website):www.esnico.com",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11187 +ERAGHI,Abdollah,,,,,,,,,00/00/1945,,,Iran,,,,,Former Deputy Head of IRGC's Ground Forces,,,,,,,,,(UK Sanctions List Ref):IHR0005 (UK Statement of Reasons):Former Deputy Head of IRGC's Ground Forces. He had a direct and personal responsibility in the crackdown of protests all through the summer of 2009. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11779 +ERAGHI,Abdullah,,,,,,,,,00/00/1945,,,Iran,,,,,Former Deputy Head of IRGC's Ground Forces,,,,,,,,,(UK Sanctions List Ref):IHR0005 (UK Statement of Reasons):Former Deputy Head of IRGC's Ground Forces. He had a direct and personal responsibility in the crackdown of protests all through the summer of 2009. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11779 +ERAQI,Abdollah,,,,,,,,,00/00/1945,,,Iran,,,,,Former Deputy Head of IRGC's Ground Forces,,,,,,,,,(UK Sanctions List Ref):IHR0005 (UK Statement of Reasons):Former Deputy Head of IRGC's Ground Forces. He had a direct and personal responsibility in the crackdown of protests all through the summer of 2009. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11779 +ERAQI,Abdullah,,,,,,,,,00/00/1945,,,Iran,,,,,Former Deputy Head of IRGC's Ground Forces,,,,,,,,,(UK Sanctions List Ref):IHR0005 (UK Statement of Reasons):Former Deputy Head of IRGC's Ground Forces. He had a direct and personal responsibility in the crackdown of protests all through the summer of 2009. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11779 +ERJA,Amy,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +ERMAK,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0097 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK tanker M/V AN SAN 1 was involved in ship-to-ship transfer operations, likely for oil, in late January 2018. Listed as asset of Korea Ansan Shipping Company (OFSI ID: 13633, UN Reference Number: UN Ref KPe.062) (IMO number):7303803 (Current owners):Korean Ansan Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Chemical Carrier (Tonnage of ship):1757 (Length of ship):86 (Year built):1973",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13648 +ERMAKOVA,Elena,Petrovna,,,,,,,,21/12/1955,,,(1) Finland (2) Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1312 (UK Statement of Reasons):Elena Petrovna TIMCHENKO is closely associated with Gennadiy Nikolayevich TIMCHENKO, a Russian billionaire. Gennadiy Nikolayevich TIMCHENKO is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,14/06/2022,15265 +ERMIAS GHERMAY,Guro,,,,,,,,,00/00/1980,,Eritrea,Eritrea,,,,,Leader of a transnational trafficking network,Tarig sure no. 51,,,,,Tripoli,,Libya,"(UK Sanctions List Ref):LIB0049 (UN Ref):LYi.021 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)",Individual,AKA,Good quality,Libya,08/06/2018,07/06/2018,21/01/2021,13671 +ERMOLENKO,Alexander,Viktorovich,,,,,,,,20/12/1985,Snezhnoe,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1303 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15255 +ERNST,Konstantin,Lvovich,,,,,ЭРНСТ Константин Львович,Cyrillic,Russian,06/02/1961,Moscow,Russia,,,,,,Chief Executive Officer/General Director,,,,,,,,,"(UK Sanctions List Ref):RUS0827 (UK Statement of Reasons):Konstantin ERNST (hereafter ERNST) is a media producer and chief executive officer of Channel One Russia (also known as the First Channel, Perviy Kanal and previously Public Russian Television / ORT). ERNST has been CEO of this organisation since 1999 and is responsible for all programming decisions. Following Russia’s invasion of Ukraine, Channel One has significantly escalated its political broadcasts which have strong pro-invasion, pro-Kremlin messages. ERNST therefore engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14778 +ERZA,Ammy,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +ES SAYED,Kader,,,,,,,,,26/12/1962,,Egypt,Egypt,,,SSYBLK62T26Z336L,Italian Fiscal Code,,,,,,,,,,(UK Sanctions List Ref):AQD0094 (UN Ref):QDi.065 Italian Fiscal Code: SSYBLK62T26Z336L. Sentenced to 8 years imprisonment in Italy on 2 February 2004. Considered a fugitive from justice by the Italian authorities. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1418867,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,12/01/2022,7128 +ESAH,Wali,Adam,,,,,,,,10/07/1968,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0358 (UN Ref):QDi.422 Founder of Jaish-i-Mohammed (QDe.019). Former leader of Harakat ul-Mujahidin / HUM (QDe.008). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/xxxx.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,02/05/2019,01/05/2019,31/12/2020,13787 +ESAH,Wali,Adam,,,,,,,,10/06/1968,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0358 (UN Ref):QDi.422 Founder of Jaish-i-Mohammed (QDe.019). Former leader of Harakat ul-Mujahidin / HUM (QDe.008). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/xxxx.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,02/05/2019,01/05/2019,31/12/2020,13787 +ESCALON,Abdulpatta,Abubakar,,,,,,,,03/03/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Daina,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ESCALON,Abdulpatta,Abubakar,,,,,,,,03/03/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Jeddah,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ESCALON,Abdulpatta,Abubakar,,,,,,,,01/01/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Jeddah,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ESCALON,Abdulpatta,Abubakar,,,,,,,,01/01/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Daina,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ESCALON,Abdulpatta,Abubakar,,,,,,,,11/01/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Daina,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ESCALON,Abdulpatta,Abubakar,,,,,,,,11/01/1965,"Tuburan, Basilan Province",Philippines,Philippines,(1) EC6530802 (2) EB2778599,(1) Philippines number. Expires 19 Jan. 2021 (2) Philippines number,(1) 2135314355 (2) 202112421,(1) Saudi Arabia (2) Saudi Arabia,,,,,,,Jeddah,,Saudi Arabia,"(UK Sanctions List Ref):AQD0111 (UN Ref):QDi.414 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229927 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,31/12/2020,13678 +ESCALONA MARRERO,Alexis,Enrique,,,,,,,,12/10/1962,,Venezuela,Venezuela,,,7.786.260,,(1) Current Chief in Charge of the National Office Against Organized Crime and Terrorist Financing (ONCDOFT) (2) Former National Commander of CONAS (3) Deputy Minister of Prevention and Public Security,,,,,,,,,"(UK Sanctions List Ref):VEN0022 (UK Statement of Reasons):Chief in Charge of the National Office Against Organized Crime and Terrorist Financing (ONDOFT) between January 2018-May 2019. National Commander of the National Anti-Extortion and Kidnapping Command (Comando Nacional Antiextorsión y Secuestro (CONAS) between 2014 and 2017. Former Deputy Minister of Prevention and Public Security. Responsible for serious human rights violations, including torture, excessive use of force and the mistreatment of detainees by members of CONAS under his command. Also responsible for the repression of civil society by members of CONAS under his command. Also responsible for the repression of civil society by members of CONAS under his command. Escalona Marrero was arrested by Venezuelan Military Intelligence officials on 14 September on charges of embezzlement, money laundering, criminal association and “violent outrage” against public officials. (Gender):Male",Individual,Primary name,,Venezuela,27/09/2019,31/12/2020,28/01/2022,13794 +ESFAHAN OPTIC INDUSTRY,,,,,,,,,,,,,,,,,,,Kaveh Road,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ESFAHAN OPTIC INDUSTRY,,,,,,,,,,,,,,,,,,,P.O. Box 81465-1117,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ESFAHAN OPTIC INDUSTRY,,,,,,,,,,,,,,,,,,,P.O. Box 81465-313,Kaveh Ave,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ESFAHAN OPTIC INDUSTRY,,,,,,,,,,,,,,,,,,,PO Box 81465-117,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ESFAHAN OPTICS INDUSTRY,,,,,,,,,,,,,,,,,,,Kaveh Road,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ESFAHAN OPTICS INDUSTRY,,,,,,,,,,,,,,,,,,,P.O. Box 81465-1117,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ESFAHAN OPTICS INDUSTRY,,,,,,,,,,,,,,,,,,,P.O. Box 81465-313,Kaveh Ave,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ESFAHAN OPTICS INDUSTRY,,,,,,,,,,,,,,,,,,,PO Box 81465-117,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ESLAMI,MOHAMMAD,,,,,Doctor,,,,00/00/1956,Isfahan,Iran,,,,,,(1) Former Head of Iran's Defence Industries Training and Research Institute (2) Head of the Atomic Energy Organisation of Iran (AEOI),,,,,,,,,"(UK Sanctions List Ref):INU0202 (UN Ref):IRi.014 Served as Deputy Defence Minister from 2012 to 2013. [Old Reference # I.03.I.6] (UK Statement of Reasons):As Vice President and Chief of the Atomic Energy Organization of Iran (AEOI), and formerly Head of the Defence Industries Training and Research Institute, Mohammad ESLAMI is or has been involved in relevant nuclear activities for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019 and is a member of, or associated with other persons so involved.",Individual,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,04/03/2022,10438 +ESMAELI,REZA-GHOLI,,,,,,,,,03/04/1961,,,Iran,A0002302,Issued in Iran (Islamic Republic of),,,Head of Trade and International Affairs Department of the AIO.,,,,,,,,,"(UK Sanctions List Ref):INU0213 (UN Ref):IRi.015 [Old Reference # I.37.D.3] (UK Statement of Reasons):As Head of the Trade and International Affairs Department of Iran’s Aerospace Industries Organisation (AIO), Reza-Gholi ESMAELI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),09/02/2007,23/12/2006,31/12/2020,9004 +ESMAELI,REZA-GHOLI,,,,,,,,,03/04/1961,,,Iran,A0002302,Issued in Iran (Islamic Republic of),,,Head of Trade and International Affairs Department of the AIO.,,,,,,,,,"(UK Sanctions List Ref):INU0213 (UN Ref):IRi.015 [Old Reference # I.37.D.3] (UK Statement of Reasons):As Head of the Trade and International Affairs Department of Iran’s Aerospace Industries Organisation (AIO), Reza-Gholi ESMAELI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),09/02/2007,23/12/2006,31/12/2020,9004 +ESMAILI,Gholam-Hossein,,,,,,,,,,,,,,,,,Former Head of Iran's Prisons Organisation. Judiciary spokesman since 2019,,,,,,,,,"(UK Sanctions List Ref):IHR0031 (UK Statement of Reasons):Head of the Tehran Judiciary. Former Head of Iran's Prisons Organisation. In this capacity, he was complicit to the massive detention of political protesters and covering up abuses performed in the jailing system. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11806 +ESNICO (EQUIPMENT SUPPLIER FOR NUCLEAR INDUSTRIES CORPORATION),,,,,,,,,,,,,,,,,,,No1,37th Avenue,Asadabadi Street,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0061 (UK Statement of Reasons):Has procured industrial goods, specifically for the nuclear programme activities carried out by AEOI, Novin Energy and Kalaye Electric Company. (Phone number):(1) +98 21 88214616. (2) +98 21 88214641 2 (Website):www.esnico.com",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11187 +ESNICO CO.,,,,,,,,,,,,,,,,,,,No1,37th Avenue,Asadabadi Street,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0061 (UK Statement of Reasons):Has procured industrial goods, specifically for the nuclear programme activities carried out by AEOI, Novin Energy and Kalaye Electric Company. (Phone number):(1) +98 21 88214616. (2) +98 21 88214641 2 (Website):www.esnico.com",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11187 +ESNICO COMPANY,,,,,,,,,,,,,,,,,,,No1,37th Avenue,Asadabadi Street,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0061 (UK Statement of Reasons):Has procured industrial goods, specifically for the nuclear programme activities carried out by AEOI, Novin Energy and Kalaye Electric Company. (Phone number):(1) +98 21 88214616. (2) +98 21 88214641 2 (Website):www.esnico.com",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11187 +ESO,,,,,,,,,,04/10/1972,"Sitio Banga Maiti, Barangay Tranghawan, Lambunao, Iloilo",Philippines,Philippines,(1) MM611523 (2) EE947317 (3) P421967,(1) Philippines number (2004) (2) Philippines number 2000-2001 (3) Philippines number (1995-1997),,,,10th Avenue,,,,,Caloocan City,,Philippines,(UK Sanctions List Ref):AQD0296 (UN Ref):QDi.247 Spiritual leader of the Rajah Solaiman Movement (QDe.128). Associated with Khadafi Abubakar Janjalani (deceased). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10667 +ESPRIT DE MORT,,,,,,,,,,04/10/1960,Kananga,Congo (Democratic Republic),Congo (Democratic Republic),OB0637580,Valid from 20.5.2014 to 19.5.2019,,,(1) Former Kinshasa Police Commissioner (PNC) (2) now General of Schools and Training (PNC),Av Uvika 56,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0004 Schengen visa No 011518403, issued on 2.7.2016 (UK Statement of Reasons):There are reasonable grounds to conclude that KANYAMA was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Kinshasa Police Commissioner and therefore bore responsibility for the human rights violations committed by the PNC. As Kinshasa Police Commissioner (PNC), Celestin KANYAMA was responsible for the disproportionate use of force and violent repression in Kinshasa. In this capacity, Celestin KANYAMA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,AKA,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13435 +ESSA,Salim,Azziz,,,,,,,,15/01/1978,Johannesburg,South Africa,South Africa,(1) M00073786. (2) 481034886. (3) M00134539. (4) 48103.,(1) Expiry: 08 Nov 2022. (2) Expiry: 06 Nov 2018. (3) Expiry: 28 Dec 2024. (4) Expiry: 08 Nov 2022.,,,Businessperson,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0019 Ajay Kumar Gupta (business partner); Atul Kumar Gupta (business partner); Rajesh Kumar Gupta (business partner) (UK Statement of Reasons):Salim Essa, in association with Ajay Gupta, Atul Gupta and Rajesh Gupta, has been involved in serious corruption in South Africa, involving the misappropriation of property. He has been responsible for this corruption by playing a key part in its organisation and has financially benefitted from it. This corruption caused serious damage to South Africa. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14087 +ESSAADI,MOUSSA,BEN OMAR,BEN ALI,,,,موسى بن عمر بن علي السعدي,,,04/12/1964,Tabarka,Tunisia,Tunisia,L335915,"issue date: 08/11/1996, expiry date: 07/11/2001, issued in Milan, Italy",,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0256 (UN Ref):QDi.096 Considered a fugitive from justice by the Italian authorities (as of Oct. 2019). Left Sudan to Tunisia in 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,31/12/2020,7798 +ESSABAR,Zakariya,,,,,,,,,03/04/1977,Essaouria,Morocco,Morocco,(1) M 271351 (2) K-348486,(1) Moroccan. Issued on 24 October 2000 by the Embassy of Morocco in Berlin (2) Moroccan,(1) E-189935 (2) G-0343089,(1) Moroccan (2) Moroccan national identity card,,,,,,,,,,(UK Sanctions List Ref):AQD0340 (UN Ref):QDi.083 Father's name is Mohamed ben Ahmed. Mother's name is Sfia bent Toubali. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4490645,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,12/01/2022,7131 +ESSABAR,ZAKARYA,,,,,,زكريا الصبار,,,03/04/1977,Essaouria,Morocco,Morocco,(1) M 271351 (2) K-348486,(1) Moroccan. Issued on 24 October 2000 by the Embassy of Morocco in Berlin (2) Moroccan,(1) E-189935 (2) G-0343089,(1) Moroccan (2) Moroccan national identity card,,,,,,,,,,(UK Sanctions List Ref):AQD0340 (UN Ref):QDi.083 Father's name is Mohamed ben Ahmed. Mother's name is Sfia bent Toubali. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4490645,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,12/01/2022,7131 +ESTABLISSEMENT INDUSTRIAL DE LA DEFENCE (ETINDE),,,,,,,,,,,,,,,,,,,P.O. Box 2230,,,,Al-Hameh,Damascus Countryside,,,"(UK Sanctions List Ref):SYR0309 Industrial - Military (UK Statement of Reasons):There are reasonable grounds to suspect that the Industrial Establishment of Defence is or has been involved in the repression of the civilian population and engaging in and promoting the repression and otherwise supported the regime in that it is has produced and supplied military equipment to the regime, and is associated with members of the regime, in particular the Syrian military.",Entity,AKA,,Syria,23/07/2014,31/12/2020,13/05/2022,13031 +ESTABLISSEMENT INDUSTRIAL DE LA DEFENCE (ETINDE),,,,,,,,,,,,,,,,,,,P.O. Box 2330,Al Thawraa Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0309 Industrial - Military (UK Statement of Reasons):There are reasonable grounds to suspect that the Industrial Establishment of Defence is or has been involved in the repression of the civilian population and engaging in and promoting the repression and otherwise supported the regime in that it is has produced and supplied military equipment to the regime, and is associated with members of the regime, in particular the Syrian military.",Entity,AKA,,Syria,23/07/2014,31/12/2020,13/05/2022,13031 +ESTABLISSEMENTS INDUSTRIELS DE LA DEFENSE (EID),,,,,,,,,,,,,,,,,,,P.O. Box 2230,,,,Al-Hameh,Damascus Countryside,,,"(UK Sanctions List Ref):SYR0309 Industrial - Military (UK Statement of Reasons):There are reasonable grounds to suspect that the Industrial Establishment of Defence is or has been involved in the repression of the civilian population and engaging in and promoting the repression and otherwise supported the regime in that it is has produced and supplied military equipment to the regime, and is associated with members of the regime, in particular the Syrian military.",Entity,AKA,,Syria,23/07/2014,31/12/2020,13/05/2022,13031 +ESTABLISSEMENTS INDUSTRIELS DE LA DEFENSE (EID),,,,,,,,,,,,,,,,,,,P.O. Box 2330,Al Thawraa Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0309 Industrial - Military (UK Statement of Reasons):There are reasonable grounds to suspect that the Industrial Establishment of Defence is or has been involved in the repression of the civilian population and engaging in and promoting the repression and otherwise supported the regime in that it is has produced and supplied military equipment to the regime, and is associated with members of the regime, in particular the Syrian military.",Entity,AKA,,Syria,23/07/2014,31/12/2020,13/05/2022,13031 +ETEMAD AMIN INVEST CO MOBIN,,,,,,,,,,,,,,,,,,,No. 70 Yasaman Str.,North Dibaji Str.,Farmanieh Ave,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +ETEMAD AMIN INVEST CO MOBIN,,,,,,,,,,,,,,,,,,,Pasadaran Av.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +ETEMAD AMIN INVEST COMPANY MOBIN,,,,,,,,,,,,,,,,,,,No. 70 Yasaman Str.,North Dibaji Str.,Farmanieh Ave,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +ETEMAD AMIN INVEST COMPANY MOBIN,,,,,,,,,,,,,,,,,,,Pasadaran Av.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +ETEMAD AMIN INVESTMENT COMPANY MOBIN,,,,,,,,,,,,,,,,,,,No. 70 Yasaman Str.,North Dibaji Str.,Farmanieh Ave,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +ETEMAD AMIN INVESTMENT COMPANY MOBIN,,,,,,,,,,,,,,,,,,,Pasadaran Av.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +ETEMAD MOBIN CO.,,,,,,,,,,,,,,,,,,,No. 70 Yasaman Str.,North Dibaji Str.,Farmanieh Ave,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +ETEMAD MOBIN CO.,,,,,,,,,,,,,,,,,,,Pasadaran Av.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +ETEMAD MOBIN COMPANY,,,,,,,,,,,,,,,,,,,No. 70 Yasaman Str.,North Dibaji Str.,Farmanieh Ave,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +ETEMAD MOBIN COMPANY,,,,,,,,,,,,,,,,,,,Pasadaran Av.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +ETEMAD MOBIN TRUST CO.,,,,,,,,,,,,,,,,,,,No. 70 Yasaman Str.,North Dibaji Str.,Farmanieh Ave,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +ETEMAD MOBIN TRUST CO.,,,,,,,,,,,,,,,,,,,Pasadaran Av.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +ETEMAD-E MOBIN,,,,,,,,,,,,,,,,,,,No. 70 Yasaman Str.,North Dibaji Str.,Farmanieh Ave,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +ETEMAD-E MOBIN,,,,,,,,,,,,,,,,,,,Pasadaran Av.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +ETEMAD-E MOBIN TRUST CONSORTIUM,,,,,,,,,,,,,,,,,,,No. 70 Yasaman Str.,North Dibaji Str.,Farmanieh Ave,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +ETEMAD-E MOBIN TRUST CONSORTIUM,,,,,,,,,,,,,,,,,,,Pasadaran Av.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +ETIM,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0040 (UN Ref):QDe.088,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,12/09/2002,11/09/2002,31/12/2020,7122 +ETTEHAD TECHNICAL GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0143 (UN Ref):IRe.016 AIO front-company, involved in the ballistic missile programme. [Old Reference # E.03.III.4] (Parent company):Aerospace Industries Organisation (AIO)",Entity,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,31/12/2020,10445 +EUN SONG,Ri,,,,,,,,,23/07/1969,,,North Korea,,,,,Ri U’n-so’ng is an overseas Korea Unification Development Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0269 (UN Ref):KPi.078 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13574 +EUSKADI TA ASKATASUNA (ETA),,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0043 (UK Statement of Reasons):Euskadi Ta Askatasuna (ETA) seeks the creation of an independent state comprising the Basque regions of both Spain and France. It is responsible for the killings of over 800 individuals in numerous terrorist attacks since 1968, including but not limited to, the bombing of Hipercor in Barcelona (June 1987). Its most recent attack, resulting in two deaths, took place in 2009.",Entity,Primary name,,Counter-Terrorism (International),02/11/2001,31/12/2020,11/03/2022,7083 +EVKUROV,Yunus-Bek,Bamatgirevich,,,,Colonel General,ЕВКУРОВ Юнус-Бек Баматгриевич,,,30/07/1963,Tarskoye,Russia,Russia,,,,,Deputy Minister of Defence of the Russian Federation,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0838 (UK Statement of Reasons):Colonel General Yunus-Bek Bamatgireevich EVKUROV is a member of the Armed Forces of the Russian Federation, he currently holds the position of Deputy Minister of Defence. He is considered to have been either in direct command of and/or to have substantial influence regarding the deployment of Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14789 +EVRAZ PLC,,,,,,,Евраз,,,,,,,,,,,,2 Portman Street,,,,,London,W1H 6DU,United Kingdom,"(UK Sanctions List Ref):RUS1027 (UK Statement of Reasons):Evraz plc is the UK-incorporated holding company of a multinational steel manufacturing and mining company group. Evraz plc is obtaining a benefit from or supporting the Government of Russia by: (1) carrying on business in sectors of strategic significance to the Russian Government, namely, the extractive sector, the transport sector, and the construction sector; and (2) owning or controlling directly or indirectly the following subsidiaries - JSC Evraz NTMK; PJSC Raspadskaya; JSC Evraz ZSMK; JSC Evraz United Coal Company Yuzhkuzbassugol; and JSC Evraz Kachkanar Mining and Processing Plant - each of which: (a) carries out business in one or more sectors of strategic significance to the Government of Russia; and (b) carries out business of economic significance to the Government of Russia. (Phone number):+74953631963 (Website):www.evraz.com/en (Email address):info@evraz.com (Type of entity):Public Limited Company (PLC) (Business Reg No):07784342",Entity,Primary name,,Russia,05/05/2022,05/05/2022,05/05/2022,15380 +EVRO POLIS LLC,,,,,,,,,,,,,,,,,,,Ulitsa Bratev Gozozaninykh Dom 2B,Pomeshchenie 3.1,,,,Krasnogorsk,143409,Russia,(UK Sanctions List Ref):SYR0386 (UK Statement of Reasons):Evro Polis LLC operates in the oil and gas industry in Syria and is therefore involved in supporting or benefiting from the Syrian regime. The company is associated with Yevgeny Prigozhin who is a person who is or has been so involved. (Type of entity):Limited Liability Company (LLC),Entity,Primary name,,Syria,29/06/2022,29/06/2022,29/06/2022,15434 +EVTUSHENKOV,Vladimir,Petrovich,,,,,Владимир Петрович Евтушенков,,,25/09/1948,"Kamenshchina, Smolensk Oblast",Russia,Russia,,,,,Majority shareholder and Chairman of the Board of Directors of Sistema JSFC,,,,,,,,,"(UK Sanctions List Ref):RUS1332 (UK Statement of Reasons):Vladimir EVTUSHENKOV is a prominent Russian businessman and oligarch. EVTUSHENKOV is or has been involved in obtaining a benefit from or supporting the Government of Russia by virtue of his ownership of a Sistema JSFC, a conglomerate which has business interests in the Russian energy and information, communications and digital technologies sectors, which are sectors of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,13/04/2022,15264 +EVTYUKHOVA,Elena,Alexandrovna,,,,,Евтюхова Елена Александровна,,,07/08/1970,Ust-Belaya,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0379 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14324 +EXIAR,,,,,,,"Российское Агентство по страхованию экспортных кредитов и инвестиций, ЭКСАР",Cyrillic,Russian,,,,,,,,,,"12, Krasnopresnenskaya Embankment, entrance 9",,,,,Moscow,123610,Russia,"(UK Sanctions List Ref):RUS1076 (UK Statement of Reasons):The Russian Agency for Export Credit and Investment Insurance, EXIAR, is a Russia based national export credit agency. EXIAR is or has been involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):+7 (495) 783-11-88 (Website):http://www.salavathz.ru/ (Email address):info@salavathz.ru",Entity,Primary name,,Russia,24/03/2022,24/03/2022,24/06/2022,15019 +EXPERT PARTNERS,,,,,,,,,,,,,,,,,,,Rukn Addin,Saladin Street,Building 5,,PO Box: 7006,Damascus,,Syria,"(UK Sanctions List Ref):SYR0299 Expert Partners is a trading company. Company headquarters is in Damascus. (UK Statement of Reasons):Acts as a proxy for the Scientific Studies and Research Centre (SSRC), which is listed. Involved in trade in dual use goods prohibited by UK sanctions for the Syrian Government.",Entity,Primary name,,Syria,16/10/2012,31/12/2020,31/12/2020,12801 +EXTERNAL TECHNOLOGY GENERAL CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0157 (UN Ref):KPe.001 Primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons.,Entity,AKA,,Democratic People's Republic of Korea,27/04/2009,24/04/2009,31/12/2020,10892 +EYVAS TECHNIC,,,,,,,,,,,,,,,,,,,No 3,Building 3,Shahid Hamid Sadigh Alley,Shariati Street,,Tehran,,Iran,(UK Sanctions List Ref):INU0063 (UK Statement of Reasons):Eyvaz Technic has produced vacuum equipment involved in the construction of the Natanz and Qom/Fordow Fuel Enrichment Plants. (Phone number):+98 21 77509537 (Website):www.eyvaztechnic.com (Email address):info@eyvaztechnic.com,Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12252 +EYVAS TECHNIC,,,,,,,,,,,,,,,,,,,Sharia'ati St.,Shahid Hamid Sadik Alley,Building 3,Number 3,,Tehran,,Iran,(UK Sanctions List Ref):INU0063 (UK Statement of Reasons):Eyvaz Technic has produced vacuum equipment involved in the construction of the Natanz and Qom/Fordow Fuel Enrichment Plants. (Phone number):+98 21 77509537 (Website):www.eyvaztechnic.com (Email address):info@eyvaztechnic.com,Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12252 +EYVAZ TECHNIC INDUSTRIAL COMPANY LTD.,,,,,,,,,,,,,,,,,,,No 3,Building 3,Shahid Hamid Sadigh Alley,Shariati Street,,Tehran,,Iran,(UK Sanctions List Ref):INU0063 (UK Statement of Reasons):Eyvaz Technic has produced vacuum equipment involved in the construction of the Natanz and Qom/Fordow Fuel Enrichment Plants. (Phone number):+98 21 77509537 (Website):www.eyvaztechnic.com (Email address):info@eyvaztechnic.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12252 +EYVAZ TECHNIC INDUSTRIAL COMPANY LTD.,,,,,,,,,,,,,,,,,,,Sharia'ati St.,Shahid Hamid Sadik Alley,Building 3,Number 3,,Tehran,,Iran,(UK Sanctions List Ref):INU0063 (UK Statement of Reasons):Eyvaz Technic has produced vacuum equipment involved in the construction of the Natanz and Qom/Fordow Fuel Enrichment Plants. (Phone number):+98 21 77509537 (Website):www.eyvaztechnic.com (Email address):info@eyvaztechnic.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12252 +EYVAZ TECHNIC MANUFACTURING COMPANY,,,,,,,,,,,,,,,,,,,No 3,Building 3,Shahid Hamid Sadigh Alley,Shariati Street,,Tehran,,Iran,(UK Sanctions List Ref):INU0063 (UK Statement of Reasons):Eyvaz Technic has produced vacuum equipment involved in the construction of the Natanz and Qom/Fordow Fuel Enrichment Plants. (Phone number):+98 21 77509537 (Website):www.eyvaztechnic.com (Email address):info@eyvaztechnic.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12252 +EYVAZ TECHNIC MANUFACTURING COMPANY,,,,,,,,,,,,,,,,,,,Sharia'ati St.,Shahid Hamid Sadik Alley,Building 3,Number 3,,Tehran,,Iran,(UK Sanctions List Ref):INU0063 (UK Statement of Reasons):Eyvaz Technic has produced vacuum equipment involved in the construction of the Natanz and Qom/Fordow Fuel Enrichment Plants. (Phone number):+98 21 77509537 (Website):www.eyvaztechnic.com (Email address):info@eyvaztechnic.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12252 +EZERSKY,Nikolay,Nikolaevich,,,,,Езерский Николай Николаевич,,,08/05/1956,Palmino,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0380 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14325 +EZOUBOV,Pavel,,,,,,Павел Езубов,,,12/08/1975,,,(1) Cyprus (2) Russia,,,,,Associate of Oleg Deripaska,,,,,,,,,"(UK Sanctions List Ref):RUS1333 (UK Statement of Reasons):Pavel EZOUBOV is associated with Oleg DERIPASKA. Oleg DERIPASKA is a Russian oligarch and businessman who was designated under the Russia (Sanctions) (EU Exit) Regulations 2019 for the purposes of an asset freeze, travel ban, and transport sanction by the United Kingdom, on 10th March 2022. DERIPASKA is or has been involved in obtaining a benefit from or supporting the Government of Russia by owning or controlling and working as a director in businesses in the Russian extractives and energy sectors, which are sectors of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,06/09/2022,15268 +EZUBOV,Pavel,,,,,,,,,12/08/1975,,,(1) Cyprus (2) Russia,,,,,Associate of Oleg Deripaska,,,,,,,,,"(UK Sanctions List Ref):RUS1333 (UK Statement of Reasons):Pavel EZOUBOV is associated with Oleg DERIPASKA. Oleg DERIPASKA is a Russian oligarch and businessman who was designated under the Russia (Sanctions) (EU Exit) Regulations 2019 for the purposes of an asset freeze, travel ban, and transport sanction by the United Kingdom, on 10th March 2022. DERIPASKA is or has been involved in obtaining a benefit from or supporting the Government of Russia by owning or controlling and working as a director in businesses in the Russian extractives and energy sectors, which are sectors of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,06/09/2022,15268 +EZUBOV,Alexey,Petrovich,,,,,Езубов Алексей Петрович,,,10/02/1948,Sokolsky Farm,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0381 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14326 +EZZAT,Abou,,,,,,,,,,,,,,,,,Head of Branch 235 of Army’s Intelligence Service,,,,,,,,,"(UK Sanctions List Ref):SYR0175 (UK Statement of Reasons):Former Head of Branch 235, a.k.a. ‘Palestine’ or ‘Far'Falastin’ (Damascus) of the army's intelligence service, which is at the centre of the army's apparatus of repression. Directly involved in repression of opponents. Responsible for the torture of opponents in custody. (Gender):Male",Individual,AKA,,Syria,24/07/2012,31/12/2020,31/12/2020,12708 +FAASSEN,Maria,,,,,,,,,28/04/1985,Leningrad,Russia,Russia,,,320304191830,Taxpayer ID,,,,,,,,,,"(UK Sanctions List Ref):RUS1128 (UK Statement of Reasons):Maria Vladimirovna VORONSTOVA is widely reported to be the daughter of the President of the Russian Federation Vladimir Vladimirovich PUTIN, with whom she is closely associated and from whom she has obtained a financial benefit or other material benefit. Vladimir Vladimirovich PUTIN is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,08/04/2022,08/04/2022,14/06/2022,15078 +FAATER INSTITUTE,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0147 (UN Ref):IRe.020 Khatam al-Anbiya (KAA) subsidiary. Fater has worked with foreign suppliers, likely on behalf of other KAA companies on IRGC projects in Iran. [Old Reference # E.29.II.1]",Entity,AKA,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11134 +FACI,,,,,,,,,,,,,,,,,,,Mehrabad Airport,PO Box 13445-885,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0064 (UK Statement of Reasons):A subsidiary of the IAIO within MODAFL, which primarily produces composite materials for the aircraft industry. (Phone number):+98 21 4659457(9). 90214659460 (fax). 98 21 4659458(9). 98 21 4659460 (fax) (Email address):faci@fajrind.com. fajr@tco.ac.ir. najarian@fajr.tco.ac.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11193 +FACI,,,,,,,,,,,,,,,,,,,Tehran 5 kilometres into the Karaj Makhsous Road,P.O. Box 12455 885,,,,,,,"(UK Sanctions List Ref):INU0064 (UK Statement of Reasons):A subsidiary of the IAIO within MODAFL, which primarily produces composite materials for the aircraft industry. (Phone number):+98 21 4659457(9). 90214659460 (fax). 98 21 4659458(9). 98 21 4659460 (fax) (Email address):faci@fajrind.com. fajr@tco.ac.ir. najarian@fajr.tco.ac.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11193 +FACKIH,,,,,,,Факих,,,07/09/1975,"Chegem-1 Village, Chegemskiy District, Republic of Kabardino-Balkaria",Russia,Russia,622641887,Russian foreign travel passport number,8304661431,Russian Federation national passport,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0343 (UN Ref):QDi.367 As at Aug. 2015, one of the leaders of the Army of Emigrants and Supporters (QDe.148). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899831. Syria, located in as at Aug. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13302 +FACKIH,,,,,,,Факих,,,07/09/1975,"Chegem-1 Village, Chegemskiy District, Republic of Kabardino-Balkaria",Russia,Russia,622641887,Russian foreign travel passport number,8304661431,Russian Federation national passport,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0343 (UN Ref):QDi.367 As at Aug. 2015, one of the leaders of the Army of Emigrants and Supporters (QDe.148). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899831. Syria, located in as at Aug. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13302 +FADAVI,Ali,,,,,Brigadier General,علی فدوی,,,13/03/1961,Ardestan,Iran,,,,,,(1) Deputy Commander of IRGC (2) Former IRGC Navy Commander,,,,,,,,,(UK Sanctions List Ref):INU0003 (UK Statement of Reasons):Deputy Commander of the IRGC. (Gender):Male,Individual,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11232 +FADHLOUN,Zoher,,,,,,,,,,,,,,,,,"Head of Institute 3000, aka Security Office, Scientific Studies and Research Centre (SSRC)",,Scientific Studies and Research Centre (SSRC),Barzeh Street,PO Box 4470,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0244 (UK Statement of Reasons):Director of the branch of the Scientific Studies and Research Centre (SSRC) that is known as Institute 3000 (a.k.a. Institute 5000). In this role, he is responsible for chemical weapons projects, including production of chemical agents and munitions. Due to his senior position at SSRC, he is associated with designated entity SSRC. (Gender):Male",Individual,Primary name variation,,Syria,19/03/2018,31/12/2020,31/12/2020,13623 +FADHLOUN,Zuhair,,,,,,,,,,,,,,,,,"Head of Institute 3000, aka Security Office, Scientific Studies and Research Centre (SSRC)",,Scientific Studies and Research Centre (SSRC),Barzeh Street,PO Box 4470,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0244 (UK Statement of Reasons):Director of the branch of the Scientific Studies and Research Centre (SSRC) that is known as Institute 3000 (a.k.a. Institute 5000). In this role, he is responsible for chemical weapons projects, including production of chemical agents and munitions. Due to his senior position at SSRC, he is associated with designated entity SSRC. (Gender):Male",Individual,Primary name variation,,Syria,19/03/2018,31/12/2020,31/12/2020,13623 +FADHLUN,Zoher,,,,,,,,,,,,,,,,,"Head of Institute 3000, aka Security Office, Scientific Studies and Research Centre (SSRC)",,Scientific Studies and Research Centre (SSRC),Barzeh Street,PO Box 4470,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0244 (UK Statement of Reasons):Director of the branch of the Scientific Studies and Research Centre (SSRC) that is known as Institute 3000 (a.k.a. Institute 5000). In this role, he is responsible for chemical weapons projects, including production of chemical agents and munitions. Due to his senior position at SSRC, he is associated with designated entity SSRC. (Gender):Male",Individual,Primary name variation,,Syria,19/03/2018,31/12/2020,31/12/2020,13623 +FADHLUN,Zuhair,,,,,,,,,,,,,,,,,"Head of Institute 3000, aka Security Office, Scientific Studies and Research Centre (SSRC)",,Scientific Studies and Research Centre (SSRC),Barzeh Street,PO Box 4470,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0244 (UK Statement of Reasons):Director of the branch of the Scientific Studies and Research Centre (SSRC) that is known as Institute 3000 (a.k.a. Institute 5000). In this role, he is responsible for chemical weapons projects, including production of chemical agents and munitions. Due to his senior position at SSRC, he is associated with designated entity SSRC. (Gender):Male",Individual,Primary name,,Syria,19/03/2018,31/12/2020,31/12/2020,13623 +FADINA,Oksana,Nikolaevna,,,,,Фадина Оксана Николаевна,,,03/07/1976,"Bolshereche, Omsk",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0514 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14459 +FADLON,Zoher,,,,,,,,,,,,,,,,,"Head of Institute 3000, aka Security Office, Scientific Studies and Research Centre (SSRC)",,Scientific Studies and Research Centre (SSRC),Barzeh Street,PO Box 4470,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0244 (UK Statement of Reasons):Director of the branch of the Scientific Studies and Research Centre (SSRC) that is known as Institute 3000 (a.k.a. Institute 5000). In this role, he is responsible for chemical weapons projects, including production of chemical agents and munitions. Due to his senior position at SSRC, he is associated with designated entity SSRC. (Gender):Male",Individual,AKA,,Syria,19/03/2018,31/12/2020,31/12/2020,13623 +FADZAYEV,Arsen,Suleymanovich,,,,,Арсен Сулейманович ФАДЗАЕВ,,,05/09/1952,Chikola,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0951 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14902 +FAHRADI,Ali,,,,,,,,,,Mashhad,Iran,Iran,,,,,Deputy head of Inspectorate of Legal Affairs and Public Inspection of the Ministry of Justice of Tehran.,,,,,,,,,"(UK Sanctions List Ref):IHR0010 (UK Statement of Reasons):Deputy head of Inspectorate of Legal Affairs and Public Inspection of the Ministry of Justice of Tehran. Former prosecutor of Karaj. Responsible for grave violations of human rights, including prosecuting trials in which the death penalty was passed. There were a high number of executions in Karaj region during his time as prosecutor. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,31/12/2020,12657 +FAIZ,Abdullah,,,,,,,,,11/10/1978,,Indonesia,Indonesia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0248 (UN Ref):QDi.416 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: hair colour: black; build: slight. Speaks Indonesian, Arabic and Mindanao dialect. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244333. Syria, location since 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13708 +FAIZ,Kholid,,,,,,,,,11/10/1978,,Indonesia,Indonesia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0248 (UN Ref):QDi.416 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: hair colour: black; build: slight. Speaks Indonesian, Arabic and Mindanao dialect. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244333. Syria, location since 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13708 +FAIZ,Mohamad,Yusuf,Karim,Saifullah,,,,,,11/10/1978,,Indonesia,Indonesia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0248 (UN Ref):QDi.416 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: hair colour: black; build: slight. Speaks Indonesian, Arabic and Mindanao dialect. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244333. Syria, location since 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13708 +FAIZ,Mohammad,Saifuddin,Mohammad,Yusuf,,,,,,11/10/1978,,Indonesia,Indonesia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0248 (UN Ref):QDi.416 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: hair colour: black; build: slight. Speaks Indonesian, Arabic and Mindanao dialect. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244333. Syria, location since 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13708 +FAIZ,Mohammad,Yusef,Karim,,,,,,,11/10/1978,,Indonesia,Indonesia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0248 (UN Ref):QDi.416 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: hair colour: black; build: slight. Speaks Indonesian, Arabic and Mindanao dialect. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244333. Syria, location since 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13708 +FAIZ,Saifudin,,,,,,,,,11/10/1978,,Indonesia,Indonesia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0248 (UN Ref):QDi.416 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: hair colour: black; build: slight. Speaks Indonesian, Arabic and Mindanao dialect. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244333. Syria, location since 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13708 +FAIZ,Ustadz,,,,,,,,,11/10/1978,,Indonesia,Indonesia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0248 (UN Ref):QDi.416 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: hair colour: black; build: slight. Speaks Indonesian, Arabic and Mindanao dialect. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244333. Syria, location since 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13708 +FAIZ,,,,,,Maulavi,فيض,,,00/00/1969,Ghazni Province,Afghanistan,Afghanistan,,,,,"Head of the Information Department, Ministry of Foreign Affairs under the Taliban regime",,,,,,,,,(UK Sanctions List Ref):AFG0033 (UN Ref):TAi.036 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7134 +FAIZULLAH,Mullah,,,,,Haji,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FAIZULLAH,Mullah,,,,,Haji,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FAIZULLAH,Mullah,,,,,Haji,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FAIZULLAH,Mullah,,,,,Haji,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FAIZULLAH,Mullah,,,,,Haji,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FAIZULLAH,Mullah,,,,,Haji,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FAIZULLAH,Mullah,,,,,Haji,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FAIZULLAH,Mullah,,,,,Haji,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FAIZULLAH,Mullah,,,,,Haji,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FAIZULLAH,Mullah,,,,,Haji,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FAIZULLAH,Mullah,,,,,Haji,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FAIZULLAH,Mullah,,,,,Haji,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FAIZULLIN,Irek,Envarovich,,,,,ФАЙЗУЛЛИН Ирек Энварович,Cyrillic,Russian,08/12/1962,Kazan,Russia,Russia,,,,,(1) Member of the Board of Directors of the Russian Railways (2) Minister of Construction and Housing of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS0755 (UK Statement of Reasons):Irek Envarovich FAIZULLIN, is a prominent Russian politician. FAIZULLIN is, or has been, involved in obtaining a benefit from or supporting the Government of Russia as a member of the Board of Directors of the state-owned Russian Railways which is an entity carrying on business in the transport sector - a sector of strategic importance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14706 +FAJR AERATION AND COMPOSITES INDUSTRIES,,,,,,,,,,,,,,,,,,,Mehrabad Airport,PO Box 13445-885,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0064 (UK Statement of Reasons):A subsidiary of the IAIO within MODAFL, which primarily produces composite materials for the aircraft industry. (Phone number):+98 21 4659457(9). 90214659460 (fax). 98 21 4659458(9). 98 21 4659460 (fax) (Email address):faci@fajrind.com. fajr@tco.ac.ir. najarian@fajr.tco.ac.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11193 +FAJR AERATION AND COMPOSITES INDUSTRIES,,,,,,,,,,,,,,,,,,,Tehran 5 kilometres into the Karaj Makhsous Road,P.O. Box 12455 885,,,,,,,"(UK Sanctions List Ref):INU0064 (UK Statement of Reasons):A subsidiary of the IAIO within MODAFL, which primarily produces composite materials for the aircraft industry. (Phone number):+98 21 4659457(9). 90214659460 (fax). 98 21 4659458(9). 98 21 4659460 (fax) (Email address):faci@fajrind.com. fajr@tco.ac.ir. najarian@fajr.tco.ac.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11193 +FAJR AERONAUTICS AND COMPOUND MATERIAL INDUSTRIES,,,,,,,,,,,,,,,,,,,Mehrabad Airport,PO Box 13445-885,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0064 (UK Statement of Reasons):A subsidiary of the IAIO within MODAFL, which primarily produces composite materials for the aircraft industry. (Phone number):+98 21 4659457(9). 90214659460 (fax). 98 21 4659458(9). 98 21 4659460 (fax) (Email address):faci@fajrind.com. fajr@tco.ac.ir. najarian@fajr.tco.ac.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11193 +FAJR AERONAUTICS AND COMPOUND MATERIAL INDUSTRIES,,,,,,,,,,,,,,,,,,,Tehran 5 kilometres into the Karaj Makhsous Road,P.O. Box 12455 885,,,,,,,"(UK Sanctions List Ref):INU0064 (UK Statement of Reasons):A subsidiary of the IAIO within MODAFL, which primarily produces composite materials for the aircraft industry. (Phone number):+98 21 4659457(9). 90214659460 (fax). 98 21 4659458(9). 98 21 4659460 (fax) (Email address):faci@fajrind.com. fajr@tco.ac.ir. najarian@fajr.tco.ac.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11193 +FAJR AVIATION & COMPOSITES INDUSTRY,,,,,,,,,,,,,,,,,,,Mehrabad Airport,PO Box 13445-885,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0064 (UK Statement of Reasons):A subsidiary of the IAIO within MODAFL, which primarily produces composite materials for the aircraft industry. (Phone number):+98 21 4659457(9). 90214659460 (fax). 98 21 4659458(9). 98 21 4659460 (fax) (Email address):faci@fajrind.com. fajr@tco.ac.ir. najarian@fajr.tco.ac.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11193 +FAJR AVIATION & COMPOSITES INDUSTRY,,,,,,,,,,,,,,,,,,,Tehran 5 kilometres into the Karaj Makhsous Road,P.O. Box 12455 885,,,,,,,"(UK Sanctions List Ref):INU0064 (UK Statement of Reasons):A subsidiary of the IAIO within MODAFL, which primarily produces composite materials for the aircraft industry. (Phone number):+98 21 4659457(9). 90214659460 (fax). 98 21 4659458(9). 98 21 4659460 (fax) (Email address):faci@fajrind.com. fajr@tco.ac.ir. najarian@fajr.tco.ac.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11193 +FAJR AVIATION COMPOSITE INDUSTRIES,,,,,,,,,,,,,,,,,,,Mehrabad Airport,PO Box 13445-885,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0064 (UK Statement of Reasons):A subsidiary of the IAIO within MODAFL, which primarily produces composite materials for the aircraft industry. (Phone number):+98 21 4659457(9). 90214659460 (fax). 98 21 4659458(9). 98 21 4659460 (fax) (Email address):faci@fajrind.com. fajr@tco.ac.ir. najarian@fajr.tco.ac.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11193 +FAJR AVIATION COMPOSITE INDUSTRIES,,,,,,,,,,,,,,,,,,,Tehran 5 kilometres into the Karaj Makhsous Road,P.O. Box 12455 885,,,,,,,"(UK Sanctions List Ref):INU0064 (UK Statement of Reasons):A subsidiary of the IAIO within MODAFL, which primarily produces composite materials for the aircraft industry. (Phone number):+98 21 4659457(9). 90214659460 (fax). 98 21 4659458(9). 98 21 4659460 (fax) (Email address):faci@fajrind.com. fajr@tco.ac.ir. najarian@fajr.tco.ac.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11193 +FAJR AVIATION IND,,,,,,,,,,,,,,,,,,,Mehrabad Airport,PO Box 13445-885,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0064 (UK Statement of Reasons):A subsidiary of the IAIO within MODAFL, which primarily produces composite materials for the aircraft industry. (Phone number):+98 21 4659457(9). 90214659460 (fax). 98 21 4659458(9). 98 21 4659460 (fax) (Email address):faci@fajrind.com. fajr@tco.ac.ir. najarian@fajr.tco.ac.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11193 +FAJR AVIATION IND,,,,,,,,,,,,,,,,,,,Tehran 5 kilometres into the Karaj Makhsous Road,P.O. Box 12455 885,,,,,,,"(UK Sanctions List Ref):INU0064 (UK Statement of Reasons):A subsidiary of the IAIO within MODAFL, which primarily produces composite materials for the aircraft industry. (Phone number):+98 21 4659457(9). 90214659460 (fax). 98 21 4659458(9). 98 21 4659460 (fax) (Email address):faci@fajrind.com. fajr@tco.ac.ir. najarian@fajr.tco.ac.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11193 +FAJR INDUSTRIAL GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0144 (UN Ref):IRe.017 Subordinate entity of AIO. [Old Reference # E.37.B.3] (Parent company):Aerospace Industries Organisation (AIO),Entity,Primary name,,Iran (Nuclear),09/02/2007,23/12/2006,31/12/2020,8994 +FAKHIRI,Abdelbakir,Mohamad,,,,,,,,04/05/1963,,,,B/014965,expired end 2013,,,"Minister for Education, Higher Education and Research in Colonel Qadhafi’s Government",,,,,,,,,"(UK Sanctions List Ref):LIB0024 (UK Statement of Reasons):As a Minister for Education, and Higher Education and Research in Colonel Qadhafi's Government. Associated with Muammar Qadhafi and other involved persons. (Gender):Male",Individual,Primary name,,Libya,22/03/2011,31/12/2020,31/12/2020,11705 +FAKHIRI,Abdelkebir,,,,,,,,,04/05/1963,,,,B/014965,expired end 2013,,,"Minister for Education, Higher Education and Research in Colonel Qadhafi’s Government",,,,,,,,,"(UK Sanctions List Ref):LIB0024 (UK Statement of Reasons):As a Minister for Education, and Higher Education and Research in Colonel Qadhafi's Government. Associated with Muammar Qadhafi and other involved persons. (Gender):Male",Individual,Primary name variation,,Libya,22/03/2011,31/12/2020,31/12/2020,11705 +FAKHRIZADEH-MAHABADI,MOHSEN,,,,,,,,,,,,,(1) 4229533 (2) A0009228,(1) (Unconfirmed (likely Iran)) (2) (Unconfirmed (likely Iran)),,,Former head of the Physics Research Centre (PHRC),,,,,,,,,(UK Sanctions List Ref):INU0207 (UN Ref):IRi.016 The IAEA have asked to interview him about the activities of the PHRC over the period he was head but Iran has refused. [Old Reference # I.47.C.2],Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,10/02/2022,9050 +FALAH,Jaber,Taha,,,,,,,,00/00/1977,Binnish,Syria,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0113 (UN Ref):QDi.325 Official spokesman of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and emir of ISIL in Syria, closely associated with Abu Mohammed al-Jawlani (QDi.317) and Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809950",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13086 +FALAHA,Taha,Sobhi,,,,,,,,00/00/1977,Binnish,Syria,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0113 (UN Ref):QDi.325 Official spokesman of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and emir of ISIL in Syria, closely associated with Abu Mohammed al-Jawlani (QDi.317) and Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809950",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13086 +FALAH-I-INSANIAT FOUNDATION (FIF),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +FANAVARAN MOJPOOYA,,,,,,,,,,,,,,,,,,,No 15,Eighth Street,Pakistan Avenue,Shahid Beheshti Avenue,,Tehran,,Iran,(UK Sanctions List Ref):INU0099 (UK Statement of Reasons):Has been involved in procurement of materials that are controlled and have direct applications in the manufacture of centrifuges for Iran's uranium enrichment programme. (Phone number):+98 21 88 73 77 53 (Website):www.pooyawave.com (Email address):info@pooyawave.com (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11541 +FANCY BEARS,,,,,,,,,,,,,,,,,,,Komsomol'skiy Prospekt,,,,,20 Moscow,119146,Russia,"(UK Sanctions List Ref):CYB0012 (UK Statement of Reasons):The 85th Main Centre for Special Technologies (GTsSS) of the Russian General Staff of the Armed Forces of the Russian Federation (GRU) - also known by its field post number ‘26165’ and industry nicknames: APT28, Fancy Bear, Sofacy Group, Pawn Storm, Strontium - was involved in illegally accessing the information systems of the German Federal Parliament (Deutscher Bundestag) without permission in April and May 2015. The military intelligence officers of the 85th controlled, directed and took part in this activity, accessing the email accounts of MPs and stealing their data. Their activity interfered with the parliament’s information systems affecting its operation for several days, undermining the exercise of parliamentary functions in Germany. (Type of entity):Department within Government (Parent company):Russian Ministry of Defence",Entity,AKA,,Cyber,23/10/2020,31/12/2020,31/12/2020,13984 +FARAG,,,,,,,,,,04/06/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FARAG,,,,,,,,,,13/11/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FARAG,,,,,,,,,,11/08/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FARAG,,,,,,,,,,04/04/1969,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FARAG,,,,,,,,,,04/04/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FARAG,,,,,,,,,,14/01/1968,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FARAG,Hamdi,Ahmad,,,,,,,,15/03/1963,Alexandria,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0322 (UN Ref):QDi.014 Reportedly deceased in October 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4493067,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,12/01/2022,7011 +FARAHI,Seyyed,Mehdi,,,,,,,,,,,,,,,,"(1) Deputy Minister for Logistics, Research and Industry Affairs (2) Commander of the Staff Skill Training Center of the General Staff of the Armed Forces (2018)",,,,,,,,,(UK Sanctions List Ref):INU0018 (UK Statement of Reasons):Former head of Iran's Aerospace Industries Organisation (AIO) and former managing director of the UN-designated Defence Industries Organisation (DIO). Member of the IRGC and a Deputy in Iran's Ministry of Defense for Armed Forces Logistics (MODAFL). (Gender):Male,Individual,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10635 +FARAHI,Seyyed,Mahdi,,,,,,,,,,,,,,,,"(1) Deputy Minister for Logistics, Research and Industry Affairs (2) Commander of the Staff Skill Training Center of the General Staff of the Armed Forces (2018)",,,,,,,,,(UK Sanctions List Ref):INU0018 (UK Statement of Reasons):Former head of Iran's Aerospace Industries Organisation (AIO) and former managing director of the UN-designated Defence Industries Organisation (DIO). Member of the IRGC and a Deputy in Iran's Ministry of Defense for Armed Forces Logistics (MODAFL). (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10635 +FARAHOVA,Elena,Evgenievna,,,,,,,,31/12/1984,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1268 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15220 +FARAJ,Lazrag,,,,,,,,,04/06/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FARAJ,Lazrag,,,,,,,,,13/11/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FARAJ,Lazrag,,,,,,,,,11/08/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FARAJ,Lazrag,,,,,,,,,04/04/1969,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FARAJ,Lazrag,,,,,,,,,04/04/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FARAJ,Lazrag,,,,,,,,,14/01/1968,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FARAKHOVA,Elena,Evgenyevna,,,,,ФАРАХОВА Елена Евгеньевна,Cyrillic,Russian,31/12/1984,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1268 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15220 +FARAMOJ COMPANY,,,,,,,,,,,,,,,,,,,No 15,Eighth Street,Pakistan Avenue,Shahid Beheshti Avenue,,Tehran,,Iran,(UK Sanctions List Ref):INU0099 (UK Statement of Reasons):Has been involved in procurement of materials that are controlled and have direct applications in the manufacture of centrifuges for Iran's uranium enrichment programme. (Phone number):+98 21 88 73 77 53 (Website):www.pooyawave.com (Email address):info@pooyawave.com (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11541 +FARASAKHT INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O.Box 83145-311,Kilometer 28,Esfahan-Tehran Freeway,,Shahin Shahr,Esfahan,,Iran,"(UK Sanctions List Ref):INU0145 (UN Ref):IRe.018 Owned or controlled by, or acts on behalf of, the Iran Aircraft Manufacturing Company, which in turn is owned or controlled by MODAFL. [Old Reference # E.29.I.5] (Parent company):Iran Aircraft Manufacturing Company",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11148 +FARASEPEHR ENGINEERING COMPANY,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0065 (UK Statement of Reasons):Acting on behalf of Yasa Part,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,31/12/2020,11225 +FARAYAND TECHNIQUE,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0146 (UN Ref):IRe.019 Involved in centrifuge programme, identified in IAEA reports. [Old Reference # E.37.A.5]",Entity,Primary name,,Iran (Nuclear),09/02/2007,23/12/2006,31/12/2020,8988 +FARAZ ROYAL QESHM LLC,,,,,,,,,,,,,,,,,,,No. 80,Tidewater Building,Vozara Street,Saie Park,,Tehran,,Iran,(UK Sanctions List Ref):INU0045 (UK Statement of Reasons):Owned or controlled by the IRGC. (Type of entity):Port operator,Entity,AKA,,Iran (Nuclear),24/01/2012,31/12/2020,31/12/2020,12460 +FARHADI,Ali,,,,,,,,,,Mashhad,Iran,Iran,,,,,Deputy head of Inspectorate of Legal Affairs and Public Inspection of the Ministry of Justice of Tehran.,,,,,,,,,"(UK Sanctions List Ref):IHR0010 (UK Statement of Reasons):Deputy head of Inspectorate of Legal Affairs and Public Inspection of the Ministry of Justice of Tehran. Former prosecutor of Karaj. Responsible for grave violations of human rights, including prosecuting trials in which the death penalty was passed. There were a high number of executions in Karaj region during his time as prosecutor. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,31/12/2020,12657 +FARM GUIDANCE BUREAU,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,,"(UK Sanctions List Ref):GHR0048 No details regarding the Head of MSS Bureau 7 are available. The Minister of State Security, who we understand to have been Jong Kyong Thaek since 2017 (although DPRK sources have not confirmed he still holds that position), is assumed to have responsibility for MSS Bureau 7. (UK Statement of Reasons):As the entity responsible for running the DPRK's political prison camps, MSS Bureau 7 is involved in the widespread serious human rights violations committed against prisoners in those camps by camp guards and other DPRK officials. These violations include murder, torture and enslavement. (Type of entity):Government (Parent company):Is the Parent company",Entity,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13899 +FARMING BUREAU,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,,"(UK Sanctions List Ref):GHR0048 No details regarding the Head of MSS Bureau 7 are available. The Minister of State Security, who we understand to have been Jong Kyong Thaek since 2017 (although DPRK sources have not confirmed he still holds that position), is assumed to have responsibility for MSS Bureau 7. (UK Statement of Reasons):As the entity responsible for running the DPRK's political prison camps, MSS Bureau 7 is involved in the widespread serious human rights violations committed against prisoners in those camps by camp guards and other DPRK officials. These violations include murder, torture and enslavement. (Type of entity):Government (Parent company):Is the Parent company",Entity,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13899 +FAROOQ,,,,,,,,,,,,Pakistan,Pakistan,,,51602-9768615-5,,Former commander of Lashkar-e-Jhangvi,Karachi central prison,,,,,,,Pakistan,"(UK Sanctions List Ref):GHR0082 Affiliated with ISIS-K (UK Statement of Reasons):Furqan Bangalzai was commander of the militant wing of the terror organisation Lashkar-e-Jhangvi. In this capacity, he was involved in an activity which, if carried out by or on behalf of a State within the territory of that State, would amount to a serious violation by that State of an individual’s right to life by his role in facilitating the bombing of the Lal Shahbaz Qalandar shrine in Sehwan, Pakistan, in which at least 70 people were killed. Additional information: In May 2020, Bangalzai was convicted of 70 counts of murder for his involvement in the bombing. (Gender):Male",Individual,AKA,,Global Human Rights,10/12/2021,10/12/2021,10/12/2021,14167 +FAROOQ,,,,,,,,,,,,Pakistan,Pakistan,,,51602-9768615-5,,Former commander of Lashkar-e-Jhangvi,Saryab Road,,,,,Sindhi Gali Quetta,,Pakistan,"(UK Sanctions List Ref):GHR0082 Affiliated with ISIS-K (UK Statement of Reasons):Furqan Bangalzai was commander of the militant wing of the terror organisation Lashkar-e-Jhangvi. In this capacity, he was involved in an activity which, if carried out by or on behalf of a State within the territory of that State, would amount to a serious violation by that State of an individual’s right to life by his role in facilitating the bombing of the Lal Shahbaz Qalandar shrine in Sehwan, Pakistan, in which at least 70 people were killed. Additional information: In May 2020, Bangalzai was convicted of 70 counts of murder for his involvement in the bombing. (Gender):Male",Individual,AKA,,Global Human Rights,10/12/2021,10/12/2021,10/12/2021,14167 +FAROOQI,,,,,,Sheikh,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +FAROOQI,,,,,,Sheikh,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +FAROOQI,,,,,,Sheikh,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +FARRAJ,Fateh,Najm,Eddine,,,,,,,07/07/1956,"Olaqloo Sharbajer, Al-Sulaymaniyah Governorate",Iraq,Iraq,,,0075258,Ration card number,,Heimdalsgate 36-V,,,,,Oslo,,Norway,(UK Sanctions List Ref):AQD0270 (UN Ref):QDi.226 Mother’s name: Masouma Abd al-Rahman. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1453897,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/12/2006,07/12/2006,31/12/2020,8970 +FARRAJ,Fateh,Najm,Eddine,,,,,,,17/06/1963,"Olaqloo Sharbajer, Al-Sulaymaniyah Governorate",Iraq,Iraq,,,0075258,Ration card number,,Heimdalsgate 36-V,,,,,Oslo,,Norway,(UK Sanctions List Ref):AQD0270 (UN Ref):QDi.226 Mother’s name: Masouma Abd al-Rahman. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1453897,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/12/2006,07/12/2006,31/12/2020,8970 +FARRAKHOV,Airat,Zakievich,,,,,Фаррахов Айрат Закиевич,,,17/02/1968,Agryz,Russia,,200275550. 732975994,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0596 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14541 +FARZAT,Hussain,Mahmoud,,,,,,,,00/00/1957,Hama,Syria,Syria,,,,,(1) Former Minister of Housing & Urban Development (2) Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0095 (UK Statement of Reasons):Former Minister of State, in office until at least 2014. As former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12640 +FARZAT,Hussain,Mahmud,,,,,,,,00/00/1957,Hama,Syria,Syria,,,,,(1) Former Minister of Housing & Urban Development (2) Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0095 (UK Statement of Reasons):Former Minister of State, in office until at least 2014. As former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12640 +FARZAT,Hussain,Mohammad,,,,,,,,00/00/1957,Hama,Syria,Syria,,,,,(1) Former Minister of Housing & Urban Development (2) Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0095 (UK Statement of Reasons):Former Minister of State, in office until at least 2014. As former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12640 +FARZAT,Hussein,Mahmoud,,,,,,,,00/00/1957,Hama,Syria,Syria,,,,,(1) Former Minister of Housing & Urban Development (2) Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0095 (UK Statement of Reasons):Former Minister of State, in office until at least 2014. As former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,26/03/2012,31/12/2020,13/05/2022,12640 +FARZAT,Hussein,Mahmud,,,,,,,,00/00/1957,Hama,Syria,Syria,,,,,(1) Former Minister of Housing & Urban Development (2) Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0095 (UK Statement of Reasons):Former Minister of State, in office until at least 2014. As former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12640 +FARZAT,Hussein,Mohammad,,,,,,,,00/00/1957,Hama,Syria,Syria,,,,,(1) Former Minister of Housing & Urban Development (2) Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0095 (UK Statement of Reasons):Former Minister of State, in office until at least 2014. As former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12640 +FATAH,Parvis,,,,,,,,,00/00/1961,"Qharabagh, Iran (unverified)",,,,,,,(1) IRGC Officer (2) Former Head of Imam Khomeini Relief Foundation (3) Head of the Mostazafan Foundation,,,,,,,,,(UK Sanctions List Ref):INU0017 (UK Statement of Reasons):Member of the IRGC. Former Minister of Energy (Gender):Male,Individual,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,14/06/2022,11233 +FATAH,Parviz,,,,,,,,,00/00/1961,"Qharabagh, Iran (unverified)",,,,,,,(1) IRGC Officer (2) Former Head of Imam Khomeini Relief Foundation (3) Head of the Mostazafan Foundation,,,,,,,,,(UK Sanctions List Ref):INU0017 (UK Statement of Reasons):Member of the IRGC. Former Minister of Energy (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,14/06/2022,11233 +FATAH AL-SHAM FRONT,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +FATAH AL-SHAM FRONT,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +FATA'IRANIAN CYBER POLICE,,,,,,,,,,,,,,,,,,,Police Headquarters,Attar street,Vanak Square,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0001 (UK Statement of Reasons):The Iranian Cyber Police, founded in January 2011, is a unit of the Islamic Republic of Iran Police, which at the time of its inception until early 2015 was headed by Esmail Ahmadi-Moqaddam (listed). Ahmadi-Moqaddam underlined that the Cyber Police would take on anti-revolutionary and dissident groups who used internet-based social networks in 2009 to trigger protests against the re-election of President Mahmoud Ahmadinejad. In January 2012, the Cyber Police issued new guidelines for internet cafés, requiring users to provide personal information that would be kept by café owners for six months, as well as a record of the websites they visited. The rules also require café owners to install closed-circuit television cameras and maintain the recordings for six months. These new rules may create a logbook that authorities can use to track down activists or whoever is deemed a threat to national security. In June 2012, Iranian media reported that the Cyber Police would be launching a crackdown on virtual private networks (VPNs). On 30 October 2012, the Cyber Police arrested the blogger Sattar Beheshti without a warrant for ‘actions against national security on social networks and Facebook’. Beheshti had criticised the Iranian government in his blog. Beheshti was found dead in his prison cell on 3 November 2012, and is believed to have been tortured to death by the Cyber Police authorities. (Website):(1) http://cyber.police.ir/ (2) www.gerdab.ir (Email address):webmaster@cyberpolice.ir (Type of entity):Enterprise - Police Agency",Entity,AKA,,Iran (Human Rights),12/03/2013,31/12/2020,28/01/2022,12864 +FATEH AL-SHAM FRONT,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +FATEH AL-SHAM FRONT,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +FATER INSTITUTE,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0147 (UN Ref):IRe.020 Khatam al-Anbiya (KAA) subsidiary. Fater has worked with foreign suppliers, likely on behalf of other KAA companies on IRGC projects in Iran. [Old Reference # E.29.II.1]",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11134 +FATHI,Abu,,,,,,,,,00/00/1958,"Pacitan, East Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0110 (UN Ref):QDi.216 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429180,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8834 +FATHI,Amr,Al-Fatih,,,,,,,,15/03/1963,Alexandria,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0322 (UN Ref):QDi.014 Reportedly deceased in October 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4493067,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,12/01/2022,7011 +FATIH,Abu,,,,,,,,,00/00/1958,"Pacitan, East Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0110 (UN Ref):QDi.216 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429180,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8834 +FATIH KHAN,MOHAMMAD SHAFIQULLAH,AHMADI,,,,Mullah,محمد شفیق الله احمدی فاتح خان,,,00/00/1956,"(1) Charmistan village, Tirin Kot District, Uruzgan Province. (2) Marghi village, Nawa District, Ghazni Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Samangan Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0084 (UN Ref):TAi.106 Originally from Ghazni Province, but later lived in Uruzgan. Taliban Shadow Governor for Uruzgan Province as of late 2012. Serves as a member of the Military Commission as of July 2016. Belongs to Hotak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7443 +FATIH KHAN,MOHAMMAD SHAFIQULLAH,AHMADI,,,,Mullah,محمد شفیق الله احمدی فاتح خان,,,00/00/1957,"(1) Charmistan village, Tirin Kot District, Uruzgan Province. (2) Marghi village, Nawa District, Ghazni Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Samangan Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0084 (UN Ref):TAi.106 Originally from Ghazni Province, but later lived in Uruzgan. Taliban Shadow Governor for Uruzgan Province as of late 2012. Serves as a member of the Military Commission as of July 2016. Belongs to Hotak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7443 +FATMA,Abu,,,,,,,,,19/06/1951,Giza,Egypt,Egypt,(1) 1084010 (2) 19820215,(1) Egyptian (2) - .,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0126 (UN Ref):QDi.006 Leader of Al-Qaida (QDe.004). Former operational and military leader of Egyptian Islamic Jihad (QDe.003), was a close associate of Usama Bin Laden (deceased). Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487197",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7016 +FATTAH,Parvis,,,,,,,,,00/00/1961,"Qharabagh, Iran (unverified)",,,,,,,(1) IRGC Officer (2) Former Head of Imam Khomeini Relief Foundation (3) Head of the Mostazafan Foundation,,,,,,,,,(UK Sanctions List Ref):INU0017 (UK Statement of Reasons):Member of the IRGC. Former Minister of Energy (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,14/06/2022,11233 +FATTAH,Seyed,Parviz,,,,,سید پرویز فتاح,,,00/00/1961,"Qharabagh, Iran (unverified)",,,,,,,(1) IRGC Officer (2) Former Head of Imam Khomeini Relief Foundation (3) Head of the Mostazafan Foundation,,,,,,,,,(UK Sanctions List Ref):INU0017 (UK Statement of Reasons):Member of the IRGC. Former Minister of Energy (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,14/06/2022,11233 +FATTAH,Zoghbai,Merai,Abdul,,,,,,,04/06/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FATTAH,Zoghbai,Merai,Abdul,,,,,,,13/11/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FATTAH,Zoghbai,Merai,Abdul,,,,,,,11/08/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FATTAH,Zoghbai,Merai,Abdul,,,,,,,04/04/1969,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FATTAH,Zoghbai,Merai,Abdul,,,,,,,04/04/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FATTAH,Zoghbai,Merai,Abdul,,,,,,,14/01/1968,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FATUROHMAN,Fauz,,,,,,,,,11/10/1978,,Indonesia,Indonesia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0248 (UN Ref):QDi.416 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: hair colour: black; build: slight. Speaks Indonesian, Arabic and Mindanao dialect. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244333. Syria, location since 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13708 +FAWZ,Samer,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FAWZ,Samer,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,Meadows 2,Street 3,Villa 5,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FAWZ,Samer,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,Platinum Tower,Office no. 2405,Jumeirah Lake Towers,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FAWZ,Samer Zuhair,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FAWZ,Samer Zuhair,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,Meadows 2,Street 3,Villa 5,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FAWZ,Samer Zuhair,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,Platinum Tower,Office no. 2405,Jumeirah Lake Towers,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FAWZ,Samir,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FAWZ,Samir,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,Meadows 2,Street 3,Villa 5,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FAWZ,Samir,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,Platinum Tower,Office no. 2405,Jumeirah Lake Towers,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FAYAD,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0250 (UK Statement of Reasons):Political Security Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,31/12/2020,12423 +FAYAD,Ghaith,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0250 (UK Statement of Reasons):Political Security Division. Military official involved in the violence in Homs.,Individual,Primary name,,Syria,02/12/2011,31/12/2020,31/12/2020,12423 +FAYAD,Ghiath,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0250 (UK Statement of Reasons):Political Security Division. Military official involved in the violence in Homs.,Individual,Primary name variation,,Syria,02/12/2011,31/12/2020,31/12/2020,12423 +FAYCAL,,,,,,,,,,30/04/1964,Tunis,Tunisia,Tunisia,L851940,"issue date: 09/09/1998, expiry date: 08/09/2003",,,,Via Plebiscito 3,,,,,Cremona,,Italy,(UK Sanctions List Ref):AQD0277 (UN Ref):QDi.149 Sentenced to six years of imprisonment for international terrorism in 2008. Deported from Italy to Tunisia on 10 Feb. 2013. Inadmissible to the Schengen area. Mother’s name is Khadijah al-Drissi. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,01/04/2021,7879 +FAYSAL,Abu,,,,,,,,,00/00/1974,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +FAYSAL,Abu,,,,,,,,,00/00/1974,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +FAYSAL,Abu,,,,,,,,,00/00/1975,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +FAYSAL,Abu,,,,,,,,,00/00/1975,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +FAZL,Molah,,,,,,,,,00/00/1963,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +FAZL,Molah,,,,,,,,,00/00/1964,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +FAZL,Molah,,,,,,,,,00/00/1965,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +FAZL,Molah,,,,,,,,,00/00/1966,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +FAZL,Molah,,,,,,,,,00/00/1967,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +FAZL,Molah,,,,,,,,,00/00/1968,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +FAZLI,Ali,,,,,Brigadier General,,,,,,,,,,,,"(1) Deputy Coordinator of the IRGC (2) Chief, Imam Hossein Cadet College (3) Former Deputy Commander of the Basij (until 2018) (4) Former Head of the IRGC’s Seyyed al-Shohada Corps, Tehran Province",,,,,,,,,"(UK Sanctions List Ref):IHR0011 (UK Statement of Reasons):Former Head of the IRGC’s Seyyed al-Shohada Corps, Tehran Province. The Seyyed al-Shohada Corps is in charge of security in Tehran province and played a key role in brutal repression of protesters in 2009. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,28/01/2022,11780 +FAZLULLAH,Mullah,,,,,,,,,00/00/1974,"Kuza Bandai village, Swat Valley, Khyber Pakhtunkhawa Province",Pakistan,,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0225 (UN Ref):QDi.352 Commander of Tehrik-e Taliban Pakistan (TTP) (QDe.132) since 7 Nov. 2013. Led the local TTP in Pakistan’s northwest valley of Swat from 2007 to 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5859726. Afghanistan / Pakistan border region,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,13/04/2015,07/04/2015,31/12/2020,13246 +FAZLULLAH,Mullah,,,,,,,,,00/00/1974,"Kuza Bandai village, Swat Valley, Khyber Pakhtunkhawa Province",Pakistan,,,,,,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0225 (UN Ref):QDi.352 Commander of Tehrik-e Taliban Pakistan (TTP) (QDe.132) since 7 Nov. 2013. Led the local TTP in Pakistan’s northwest valley of Swat from 2007 to 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5859726. Afghanistan / Pakistan border region,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,13/04/2015,07/04/2015,31/12/2020,13246 +FAZLULLAH,MAULANA,,,,,Maulana,,,,00/00/1974,"Kuza Bandai village, Swat Valley, Khyber Pakhtunkhawa Province",Pakistan,,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0225 (UN Ref):QDi.352 Commander of Tehrik-e Taliban Pakistan (TTP) (QDe.132) since 7 Nov. 2013. Led the local TTP in Pakistan’s northwest valley of Swat from 2007 to 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5859726. Afghanistan / Pakistan border region,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,13/04/2015,07/04/2015,31/12/2020,13246 +FAZLULLAH,MAULANA,,,,,Maulana,,,,00/00/1974,"Kuza Bandai village, Swat Valley, Khyber Pakhtunkhawa Province",Pakistan,,,,,,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0225 (UN Ref):QDi.352 Commander of Tehrik-e Taliban Pakistan (TTP) (QDe.132) since 7 Nov. 2013. Led the local TTP in Pakistan’s northwest valley of Swat from 2007 to 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5859726. Afghanistan / Pakistan border region,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,13/04/2015,07/04/2015,31/12/2020,13246 +FDLR,,,,,,,,,,,,,,,,,,,,,,,,North Kivu,,Congo (Democratic Republic),(UK Sanctions List Ref):DRC0019 (UN Ref):CDe.005 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278442 (Email address):Fdlr@fmx.de. fdlr@gmx.net. fdlrsrt@gmail.com. fldrrse@yahoo.fr. humura2020@gmail.com,Entity,AKA,,Democratic Republic of the Congo,23/01/2013,31/12/2012,19/01/2021,12840 +FEDERAL STATE BUDGET INSTITUTION FOR SCIENCE AND RESEARCH 'ALL-RUSSIA NATIONAL SCIENTIFIC RESEARCH INSTITUTE FOR WINE GROWING AND WINE MAKING 'MAGARACH' RUSSIAN ACADEMY OF SCIENCES',,,,,,,Государственное предприятие Агрофирма ‘Магарач’ Национального института винограда и вина ‘Магарач’,,,,,,,,,,,,Kirov Street 31,Yalta,,,,The Autonomous Republic of Crimea and the city of Sevastopol,298600,Ukraine,"(UK Sanctions List Ref):RUS0164 (UK Statement of Reasons):The ownership of the entity was transferred contrary to the Ukrainian law. On 9 April 2014, the ‘Presidium of the Parliament of Crimea’ adopted a decision No 1991-6/14 ‘On the amendments to the Resolution of the State Council of the “Republic of Crimea” of 26 March 2014 No 1836-6/14 ‘On nationalization of the property of enterprises, institutions and organizations of agro-industrial complex, located in the territory of the “Republic of Crimea”’ declaring the appropriation of assets belonging to the state enterprise ‘Gosudarstvenoye predpriyatiye Agrofirma “Magarach” nacionalnogo instituta vinograda i vina “Magarach”’ on behalf of the ‘Republic of Crimea’. The enterprise is thus effectively confiscated by the Crimean ‘authorities’. Re-registered on 15 January 2015 as ‘State Unitary Institution of the “Republic of Crimea” National Institute of Wine “Magarach”’. Founder: The Ministry of Agriculture of the ‘Republic of Crimea’. On 7 February 2017, State Unitary Enterprise of the ‘Republic of Crimea’‘National Institute of Wine “Magarach”’ was transformed into Federal Budgetary scientific facility ‘All-Russia scientific-research institute of viticulture and winemaking “Magarach”’, Russian Academy of Sciences",Entity,Primary name,,Russia,25/07/2014,31/12/2020,31/12/2020,13061 +FEDERAL STATE BUDGETARY ENTERPRISE 'PRODUCTION-AGRARIAN UNION 'MASSANDRA' OF THE ADMINISTRATION OF THE PRESIDENT OF THE RUSSIAN FEDERATION,,,,,,,,,,,,,,,,,,,Str. Vinodela Egorova 9,Massandra,Yalta,The Autonomous Republic of Crimea and the city of Sevastopol,,,298650,Ukraine,"(UK Sanctions List Ref):RUS0192 (UK Statement of Reasons):The ownership of Massandra Winery, a business trading in Crimea, was transferred contrary to the Ukrainian law. The enterprise was confiscated by the Crimean ‘authorities’. The subsequent ‘sale’ of the entity to the Yuzhny Proyect Company (Southern Project Company), affiliated with the Rossiya Bank which was founded by Yury Kovalchuk, was therefore a further unlawful transfer. (Website):http://massandra.su (Type of entity):Winery/Agriculture (Subsidiaries):Yuzhny Proyect (Southern Project), affiliated with the Saint Petersburg-based Rossiya bank, which is co-owned by oligarch Yury KOVALCHUK (RUS0007)",Entity,AKA,,Russia,25/07/2014,31/12/2020,16/09/2022,13060 +"FEDERAL STATE BUDGETARY ENTERPRISE 'SANATORIUM ""NIZHNYAYA OREANDA""' OF THE ADMINISTRATION OF THE PRESIDENT OF THE RUSSIAN FEDERATION",,,,,,,Санаторий ‘Нижняя Ореанда’,,,,,,,,,,,,House 12,Resort 'Nizhnyaya Oreanda',,,Oreanda,Yalta,298658,,"(UK Sanctions List Ref):RUS0194 (UK Statement of Reasons):The ownership of the entity was transferred contrary to the Ukrainian law. On 21 March 2014, the 'Presidium of the Parliament of Crimea' adopted a decision 'On the questions of creation of the Association of sanatoria and resorts' No 1767-6/14 declaring the appropriation of assets belonging to the resort 'Nizhnyaya Oreanda' on behalf of the 'Republic of Crimea'. The enterprise is thus effectively confiscated by the Crimean 'authorities'. Re-registered on 9 October 2014 as Federal State Budgetary Enterprise 'Sanatorium Nizhnyaya Oreanda' of the Administration of the President of the Russian Federation. (Website):marketing@oreanda-resort.ru",Entity,Primary name,,Russia,25/07/2014,31/12/2020,31/12/2020,13058 +'FEDERAL STATE OF NOVOROSSIYA',,,,,,,Федеративное государство Новороссия’,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0175 Movement Novorossia of Igor Strelkov (UK Statement of Reasons):On 24 May 2014, the so-called “People’s Republics’ of Donetsk and Lugansk” signed an agreement on the creation of the unrecognised so-called ‘Federal State of Novorossiya’. This is in breach of Ukrainian constitutional law, thus threatening the territorial integrity, sovereignty and independence of Ukraine. (Website):(1) https://novorussia.su/official, https://novopressa.ru/ (2) https://novorussia-tv.ru/ (3) https://novorussia.today/ (4) http://novorossiia.ru/ (5) https://www.novorosinform.org/",Entity,Primary name,,Russia,25/07/2014,31/12/2020,16/09/2022,13050 +"FEDERAL STATE UNITARY ENTERPRISE ""STATE RESEARCH INSTITUTE OF ORGANIC CHEMISTRY AND TECHNOLOGY"" (GOSNIIOKHT)",,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CHW0017 (UK Statement of Reasons):The Federal State Unitary Enterprise State Scientific Research Institute for Organic Chemistry and Technology (Gosniiokht) is a state research institute within Russia with responsibility for the destruction of chemical weapon stocks inherited from the Soviet Union. The institute in its original role, before 1994, was involved in the development and production of chemical weapons, including the toxic nerve agent now known as ‘Novichok’. After 1994, the same family who owned the institute took part in the government’s program for destruction of the stocks of chemical weapons inherited from the Soviet Union. The subsequent deployment of a toxic nerve agent of the Novichok group against Alexey Navalny would therefore only be possible because the institute had failed to carry out its responsibility to destroy the stockpiles of chemical weapons. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny was a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. As the institute responsible for the destruction of chemical weapons within the Russian Federation, Gosniiokht bears responsibility for the preparation and use of chemical weapons in the attempted assassination of Alexey Navalny. (Phone number):7+495+2732405 (Email address):DIR@GosNIIOKhT.rmt.ru (Parent company):Russian Ministry of Defence",Entity,Primary name variation,,Chemical Weapons,15/10/2020,06/01/2021,18/03/2022,13975 +FEDERAL STATE UNITARY ENTERPRISE CENTRAL RESEARCH INSTITUTE FOR MACHINE BUILDING,,,,,,,,,,,,,,,,,,,4 Ulitsa Pionerskaya,,,,,Korolev,141070,Russia,"(UK Sanctions List Ref):RUS1351 (UK Statement of Reasons):Central Research Institute of Machine Building JSC (TsNIIMash) is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because: it obtains a benefit from or supports the Government of Russia by carrying on business as a Government of Russia-affiliated entity. Central Research Institute of Machine Building JSC (TsNIIMash) is owned or controlled directly or indirectly by the Government of Russia, namely via the State Corporation Roscosmos. The Russian State, or Roscosmos, is currently the sole shareholder of The Central Research Institute of Machine Building JSC (TsNIIMash). (Phone number):(495) 513-59-51 (Website):https://www.tsniimash.ru/ (Email address):corp@tsniimash.ru (Parent company):Roscosmos",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15304 +FEDERAL STATE UNITARY ENTERPRISE DUKHOV AUTOMATICS RESEARCH INSTITUTE,,,,,,,Федеральное государственное унитарное предприятие Всероссийский научно-исследовательский институт автоматики,Cyrillic,Russian,,,,,,,,,,"st. Sushchevskaya, 22",,,,,Moscow,127055,Russia,"(UK Sanctions List Ref):RUS1350 (UK Statement of Reasons):The Federal State Unitary Enterprise Dukhov Automatics Research Institute (VNIIA) is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because: it is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian defence sector. The Federal State Unitary Enterprise Dukhov Automatics Research Institute (VNIIA) is also carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 (499) 978-7803 (Website):http://www.vniia.ru/eng/index.php (Email address):vniia@vniia.ru (Type of entity):Federal State Unitary Enterprise  (Parent company):Rosatom (Business Reg No):1027739646164",Entity,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15303 +FEDERAL UNITED ENTERPRISE ‘CRIMEA RAILWAY’,,,,,,,,,,,,,,,,,,,Pavlenko St 34,,,,,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",95006,Ukraine,"(UK Sanctions List Ref):RUS0224 Managing Director: Mikhail Goncharov – General Director from 30 June 2021 (UK Statement of Reasons):The Crimea Railway (Federal State United Enterprise) continues to participated in the project of connecting the railway infrastructures of the illegally annexed Crimea and Russia by being owner and operator of the railway tracks and locomotives on the bridge over the Kerch Strait connecting Russia and the illegally annexed Crimean peninsula. Therefore, it supports the consolidation of the illegally annexed Crimean peninsula into the Russian Federation which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Phone number):+7 (3652) 66-24-32 (Website):www.crimearw.ru (Email address):ngkkjd@mail.ru (Type of entity):Railway (Business Reg No):9102157783",Entity,Primary name variation,,Russia,02/10/2020,31/12/2020,16/09/2022,13930 +'FEDERATIVNOYE GOSUDARSTVO NOVOROSSIYA',,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0175 Movement Novorossia of Igor Strelkov (UK Statement of Reasons):On 24 May 2014, the so-called “People’s Republics’ of Donetsk and Lugansk” signed an agreement on the creation of the unrecognised so-called ‘Federal State of Novorossiya’. This is in breach of Ukrainian constitutional law, thus threatening the territorial integrity, sovereignty and independence of Ukraine. (Website):(1) https://novorussia.su/official, https://novopressa.ru/ (2) https://novorussia-tv.ru/ (3) https://novorussia.today/ (4) http://novorossiia.ru/ (5) https://www.novorosinform.org/",Entity,AKA,,Russia,25/07/2014,31/12/2020,16/09/2022,13050 +FEDIN,Yuriy,Sergeyevich,,,,,Юрий Сергеевич ФЕДИН,Cyrillic,Russian,26/03/1989,Bakhchisaray,Ukraine,Russia,,,,,CEO of NewsFront,,,,,,,,,"(UK Sanctions List Ref):RUS1502 (UK Statement of Reasons):Yuriy Sergeyevich FEDIN (hereafter FEDIN) is an entrepreneur who has provided funding to the Russian news organisation NewsFront, including via his company INTENT. NewsFront has disseminated disinformation relating to Russian activities in Crimea and the war against Ukraine. FEDIN has therefore made available funds and provided support for activity that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,04/07/2022,04/07/2022,12/07/2022,15442 +FEDOROV,Evgeny,Alekseevich,,,,,Фёдоров Евгений Алексеевич,,,11/05/1963,Leningrad,Russia,Russia,(1) 715071170 (2) 640203235,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0657 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/04/2022,14602 +FEDOROVA,Marina,Arkadievna,,,,,Марына Аркадзьеўна ФЁДАРАВА,,,11/09/1965,,,,,,,,Judge of the Sovetsky district court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0095 (UK Statement of Reasons):As a judge at the Minsk City Sovetsky District Court, Marina Fedorova has been responsible the widespread sentencing of demonstrators and political activists in politically motivated decisions and without fair and transparent court proceedings. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition. (Gender):Female",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14023 +FEDOROVA,Maryna,Arkadzeuna,,,,,Марина Аркадьевна ФЕДОРОВА,,,11/09/1965,,,,,,,,Judge of the Sovetsky district court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0095 (UK Statement of Reasons):As a judge at the Minsk City Sovetsky District Court, Marina Fedorova has been responsible the widespread sentencing of demonstrators and political activists in politically motivated decisions and without fair and transparent court proceedings. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition. (Gender):Female",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14023 +FEDOSIA OIL PRODUCTS SUPPLY COMPANY,,,,,,,,,,,,,,,,,,,28 Kirova Street,,,,Kerch,The Autonomous Republic of Crimea and the city of Sevastopol,298312,Ukraine,"(UK Sanctions List Ref):RUS0199 Name of Director(s). Management: Andrei Vladimirovich Vasiliev (Director). Sergey Beym (Owner) (UK Statement of Reasons):The ""Parliament of Crimea"" adopted resolution No 1757-6/14 on 17 March 2014 ""on nationalisation of some companies belonging to the Ukrainian Ministries of Infrastructure of Agriculture"" and Resolution No 1865-6/14 on 26 March 2014 ""on State-owned Enterprise ""Crimean Sea Port"" declaring the appropriation of assets belonging to several State Enterprises which were merged into the ""State Unitary Enterprise of the Crimean Republic ""Crimean Sea Ports"". Those enterprises were thus effectively confiscated by the Crimean ""authorities"" and the ""Crimean Sea Ports"" has benefitted from the illegal transfer of their ownership. (Website):http:/crimeaport.com/ (Parent company):Chernomorneftegaz (also subject to Sanctions). Feodosia Trade Port. Gosgidrographia and Port-Terminal. Kerch Ferry Crossing. Kerch Fish Port. Kerch Trade Port. Yalta Trade Port. Yevpatoria Trade Port (Business Reg No):USREOU code 3482347",Entity,AKA,,Russia,16/09/2017,31/12/2020,31/12/2020,13544 +FEDYAEV,Pavel,Mikhailovich,,,,,Федяев Павел Михайлович,,,31/07/1982,Kemerovo,Russia,Russia,733615840,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0574 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14519 +FETISOV,Oleg,Vasilievich,,,,,ФЕТИСОВ Олег Васильевич,Cyrillic,Russian,30/03/1971,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1169 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15121 +FETISOV,Vyacheslav,Alexandrovich,,,,,Фетисов Вячеслав Александрович,,,20/04/1958,Moscow,Russia,Russia,751505741,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0575 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14520 +FIAZULLAH,,,,,,Haji,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FIAZULLAH,,,,,,Haji,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FIAZULLAH,,,,,,Haji,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FIAZULLAH,,,,,,Haji,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FIAZULLAH,,,,,,Haji,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FIAZULLAH,,,,,,Haji,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FIAZULLAH,,,,,,Haji,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FIAZULLAH,,,,,,Haji,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FIAZULLAH,,,,,,Haji,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FIAZULLAH,,,,,,Haji,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FIAZULLAH,,,,,,Haji,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FIAZULLAH,,,,,,Haji,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +FIELD POST NUMBER 74455,,,,,,,,,,,,,,,,,,,22 Kirova Street,,,,,Moscow,,Russia,"(UK Sanctions List Ref):CYB0009 (UK Statement of Reasons):The Main Centre for Special Technologies (GTsST) of the Russian General Staff Main Intelligence Directorate (GRU), also known by its field post number ‘74455’ and “Sandworm” by industry, was responsible for cyber attacks which disrupted critical national infrastructure in Ukraine, cutting off the electricity grid. The perpetrators were directly responsible for relevant cyber activity by carrying out information system interference intended to undermine integrity, prosperity and security of the Ukraine. These cyber attacks originated in Russia and were unauthorised (Type of entity):Department within Government/Military Unit (Parent company):Russian Ministry of Defence",Entity,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13911 +FILATOV,Alexey,Yevgenevich,,,,,Алексей Евгеньевич ФИЛАТОВ,Cyrillic,Russian,12/02/1983,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1309 (UK Statement of Reasons):Alexey Yevgenevich FILATOV is an involved person under the Russia (EU Exit) (Sanctions) Regulations 2019 on the basis that he is and has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine by engaging in policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15261 +FILATOVA,Irina,Anatolievna,,,,,Филатова Ирина Анатольевна,,,08/08/1978,Novosibirsk,Russia,Russia,710414823,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0576 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14521 +FILIPCHUK,Pavlo,Ihorovych,,,,,ФІЛІПЧУК ПАВЛО ІГОРОВИЧ,,Ukrainian,05/07/1983,Zolochiv,Ukraine,,,,,,so-called Mayor of Kakhovka,,,,,,,,,"(UK Sanctions List Ref):RUS1567 (UK Statement of Reasons):Pavlo FILIPCHUK is an involved person within the meaning of the Russia (Sanctions) (EU Exit) Regulations 2019 because he is the so-called Mayor of Kakhovka for the temporarily controlled territory of Kherson. Through this role, FILIPCHUK is or has engaged in policies or actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15511 +FILIPPOVA,Ekaterina,Vladimirovna,,,,,,,,20/11/1988,"Krasnoarmeysk (now Pokrovsk), Donetskaya oblast",Ukrainian SSR (now Ukraine),Russia,,,,,(1) Former so called 'Minister of Justice' of the 'Donetsk People's Republic' (2) Commissioner for Human Rights of the so-called of the ‘Donetsk People's Republic.',Ul Sobinova,the house. 160,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS0093 (UK Statement of Reasons):Former so-called ‘Minister of Justice’ of the so called ‘Donetsk People's Republic’. In taking on and acting in this capacity, she has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. Commissioner for Human Rights of the so-called of the ‘Donetsk People's Republic.' (Gender):Female",Individual,Primary name,,Russia,16/02/2015,31/12/2020,16/09/2022,13207 +FILIPPOVA,Kateryna,Volodymyrivna,,,,,,,,20/11/1988,"Krasnoarmeysk (now Pokrovsk), Donetskaya oblast",Ukrainian SSR (now Ukraine),Russia,,,,,(1) Former so called 'Minister of Justice' of the 'Donetsk People's Republic' (2) Commissioner for Human Rights of the so-called of the ‘Donetsk People's Republic.',Ul Sobinova,the house. 160,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS0093 (UK Statement of Reasons):Former so-called ‘Minister of Justice’ of the so called ‘Donetsk People's Republic’. In taking on and acting in this capacity, she has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. Commissioner for Human Rights of the so-called of the ‘Donetsk People's Republic.' (Gender):Female",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13207 +FIODARAVA,Marina,Arkadievna,,,,,,,,11/09/1965,,,,,,,,Judge of the Sovetsky district court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0095 (UK Statement of Reasons):As a judge at the Minsk City Sovetsky District Court, Marina Fedorova has been responsible the widespread sentencing of demonstrators and political activists in politically motivated decisions and without fair and transparent court proceedings. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition. (Gender):Female",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14023 +FIODARAVA,Maryna,Arkadzeuna,,,,,,,,11/09/1965,,,,,,,,Judge of the Sovetsky district court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0095 (UK Statement of Reasons):As a judge at the Minsk City Sovetsky District Court, Marina Fedorova has been responsible the widespread sentencing of demonstrators and political activists in politically motivated decisions and without fair and transparent court proceedings. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition. (Gender):Female",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14023 +FIRQAT AL-TAKHRIB WA AL-ISTITLA AL-ASKARIYAH LI SHUHADA RIYADH AL-SALIHIN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0075 (UN Ref):QDe.100 Associated with the Islamic International Brigade (IIB) (QDe.099), the Special Purpose Islamic Regiment (SPIR) (QDe.101) and Emarat Kavkaz (QDe.131). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281893",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,31/12/2020,7138 +FIRST CRIMEAN INSURANCE COMPANY,,,,,,,,,,,,,,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0225 (UK Statement of Reasons):The First Crimean Insurance Company participated in the project of connecting the railway infrastructures of the illegally annexed Crimea and Russia by insuring the construction of the bridge over the Kerch Strait. Therefore, it supports the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Website):https://kpsk-ins.ru/about (Email address):info@kpsk-ins.ru (Type of entity):Insurance (Business Reg No):1 149 102 007 933",Entity,Primary name,,Russia,02/10/2020,31/12/2020,31/12/2020,13931 +FIRST OIL JV CO LTD,,,,,,,,,,,,,,,,,,,,,,Jongbaek 1-dong,Rakrang-guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0133 (UN Ref):KPe.057 Owner of the DPRK tanker PAEK MA, which was involved in ship-to-ship transfer operations for oil in mid-January 2018. IMO number: 5963351.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13628 +FISHERXP,,,,,,,,,,04/10/1983,Shandong Province,China,China,,,,,,Room 1102,Guanfu Mansion,46 Xinkai Road,,Hedong District,Tianjin,,China,"(UK Sanctions List Ref):CYB0001 (UK Statement of Reasons):Gao Qiang was involved in relevant cyber activity through his employment with Huaying Haitai and setting up command and control infrastructure used to conduct relevant cyber activity. He was therefore responsible for, engaged in, provided support for, or promoted the commission, planning or preparation of relevant cyber activity. (Gender):Male",Individual,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13903 +FISUN,Aleksei,Leonidovich,,,,,,,,,,,,,,,,Member of the Supervisory Board Sovcombank,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1581 (UK Statement of Reasons):Aleksey Leonidovich Fisun is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SOVCOMBANK which is carrying on business in the financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely SOVCOMBANK which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15525 +FISUN,Aleksey,Leonidovich,,,,,Алексей Леонидович Фисун,Cyrillic,Russian,,,,,,,,,Member of the Supervisory Board Sovcombank,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1581 (UK Statement of Reasons):Aleksey Leonidovich Fisun is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SOVCOMBANK which is carrying on business in the financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely SOVCOMBANK which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15525 +FLYUSTIKOV,Valery,,,,,Major General,,,,,,,Russia,,,,,Commander of the Special Operations Forces,,,,,,,,,"(UK Sanctions List Ref):RUS1364 (UK Statement of Reasons):Major General Valery FLYUSTIKOV is the Commander of the Special Operations Forces of the Russian Armed Forces. He is considered to have been either in direct command of and/or otherwise involved in deployment of Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that FLYUSTIKOV is an involved person because he is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,21/04/2022,21/04/2022,21/04/2022,15315 +FOCA,,,,,,,,,,,,,,,,,,,,,,,,North Kivu,,Congo (Democratic Republic),(UK Sanctions List Ref):DRC0019 (UN Ref):CDe.005 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278442 (Email address):Fdlr@fmx.de. fdlr@gmx.net. fdlrsrt@gmail.com. fldrrse@yahoo.fr. humura2020@gmail.com,Entity,AKA,,Democratic Republic of the Congo,23/01/2013,31/12/2012,19/01/2021,12840 +FODHIL,,,,,,,,,,12/10/1965,Oum el Bouaghi,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0212 (UN Ref):QDi.167 In detention in Algeria as at April 2010. Arrest warrant issued by the German authorities on 9 Oct. 2003 for involvement in kidnapping. Former member of the Katibat Tarek Ibn Ziad of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/05/2004,03/05/2004,31/12/2020,8352 +FOLLOWERS OF ISLAM IN KURDISTAN,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0032 (UN Ref):QDe.098 The founder is Najmuddin Faraj Ahmad (QDi.226). Associated with Al-Qaida in Iraq (QDe.115). Located and primarily active in northern Iraq but maintains a presence in western and central Iraq. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282119,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2003,24/02/2003,31/12/2020,7021 +FOMICHEV,Vyacheslav,Vasilievich,,,,,Фомичёв Вячеслав Васильевич,,,26/04/1965,Saransk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0515 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14460 +FOMIN,Alexander,Vasilyevich,,,,Colonel General,ФОМИН Александр Васильевич,,,25/05/1959,Leninogorsk,Kazakhstan,Russia,,,,,Deputy Minister of Defence of the Russian Federation,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0840 (UK Statement of Reasons):Colonel General Aleksandr Vasilyevich FOMIN is a member of the Armed Forces of the Russian Federation, he currently holds the position of Deputy Minister of Defence. He is considered to have been either in direct command of and/or to have substantial influence regarding the deployment of Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14791 +FOOPIE,,,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +FOOPIE,,,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +FOOPIE,,,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +FOOPIE,,,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +FORCE COMBATTANTE ABACUNGUZI,,,,,,,,,,,,,,,,,,,,,,,,North Kivu,,Congo (Democratic Republic),(UK Sanctions List Ref):DRC0019 (UN Ref):CDe.005 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278442 (Email address):Fdlr@fmx.de. fdlr@gmx.net. fdlrsrt@gmail.com. fldrrse@yahoo.fr. humura2020@gmail.com,Entity,AKA,,Democratic Republic of the Congo,23/01/2013,31/12/2012,19/01/2021,12840 +FORCES DEMOCRATIQUES ALLIEES-ARMEE NATIONALE DE LIBERATION DE L'OUGANDA,,,,,,,Forces Démocratiques Alliées-Armée Nationale de Libération de l’Ouganda,,,,,,,,,,,,,,,,,North Kivu Province,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0015 (UN Ref):CDe.001 ADF founder and leader, Jamil Mukulu (CDi.015), was arrested in Dar es Salaam, Tanzania in April 2015. He was subsequently extradited to Kampala, Uganda in July 2015. As of June 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial. Seka Baluku (CDi.036) succeeded Jamil Mukulu (CDi.015) as the overall leader of the ADF. As highlighted in several reports from the Group of Experts on the DRC (S/2015/19, S/2015/797, S/2016/1102, S/2017/672, S/2018/531, S/2019/469, S/2019/974, S/2020/482), the ADF, including under Seka Baluku’s leadership, continued to commit the repeated targeting, killing and maiming, rape and other sexual violence, abduction of civilians, including children, as well as attacks on villages and health facilities, in particular in Mamove, Beni territory, on 12 and 24 February 2019, and Mantumbi, Beni territory, on 5 December 2019 and 30 January 2020, as well as the continuous recruitment and use of children during attacks and for forced labour in Beni territory in the DRC since at least 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,FKA,,Democratic Republic of the Congo,09/12/2014,30/06/2014,19/01/2021,13189 +FORCES DEMOCRATIQUES DE LIBERATION DU RWANDA (FDLR),,,,,,,,,,,,,,,,,,,,,,,,North Kivu,,Congo (Democratic Republic),(UK Sanctions List Ref):DRC0019 (UN Ref):CDe.005 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278442 (Email address):Fdlr@fmx.de. fdlr@gmx.net. fdlrsrt@gmail.com. fldrrse@yahoo.fr. humura2020@gmail.com,Entity,Primary name,,Democratic Republic of the Congo,23/01/2013,31/12/2012,19/01/2021,12840 +FOREIGN TRADE BANK (FTB),,,,,,,,,,,,,,,,,,,,,FTB Building,Jungsong-dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0134 (UN Ref):KPe.047 Foreign Trade Bank is a state-owned bank and acts as the DPRK’s primary foreign exchange bank and has provided key financial support to the Korea Kwangson Banking Corporation. SWIFT/BIC: FTBDKPPY.,Entity,Primary name,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,02/08/2022,13536 +FORSS MARINE,,,,,,,Форсс Марин,Cyrillic,Russian,,,,,,,,,,"51, lit. E",Magnitogorskaya street,,,,St. Petersburg,195027,Russia,"(UK Sanctions List Ref):RUS1433 OGRN: 1137847075057; KPP: 780601001 (UK Statement of Reasons):Forss Technology LTD is a Russian company providing engineering services in shipbuilding, machine building, electrical technology, instruments manufacturing and high-tech products development. Forss Technology LTD therefore is or has been involved in supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the transport sector. (Phone number):(1) 7 (812) 363-14-67 (2) 7 (812) 363-14-68 (Website):www.forss.tech (Email address):info@forss.su (Business Reg No):Tax Identification Number: INN: 7806496845",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15372 +FORSS MARINE,,,,,,,Форсс Марин,Cyrillic,Russian,,,,,,,,,,"1st floor, Room 1h, 44/117",Bronnistkaya street,Semyonovskii,Admiralteiskii region,,St. Petersburg,190013,Russia,"(UK Sanctions List Ref):RUS1433 OGRN: 1137847075057; KPP: 780601001 (UK Statement of Reasons):Forss Technology LTD is a Russian company providing engineering services in shipbuilding, machine building, electrical technology, instruments manufacturing and high-tech products development. Forss Technology LTD therefore is or has been involved in supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the transport sector. (Phone number):(1) 7 (812) 363-14-67 (2) 7 (812) 363-14-68 (Website):www.forss.tech (Email address):info@forss.su (Business Reg No):Tax Identification Number: INN: 7806496845",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15372 +FORSS TECHNOLOGY LTD,,,,,,,ООО ФОРСС ТЕХНОЛОГИИ,Cyrillic,Russian,,,,,,,,,,"51, lit. E",Magnitogorskaya street,,,,St. Petersburg,195027,Russia,"(UK Sanctions List Ref):RUS1433 OGRN: 1137847075057; KPP: 780601001 (UK Statement of Reasons):Forss Technology LTD is a Russian company providing engineering services in shipbuilding, machine building, electrical technology, instruments manufacturing and high-tech products development. Forss Technology LTD therefore is or has been involved in supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the transport sector. (Phone number):(1) 7 (812) 363-14-67 (2) 7 (812) 363-14-68 (Website):www.forss.tech (Email address):info@forss.su (Business Reg No):Tax Identification Number: INN: 7806496845",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15372 +FORSS TECHNOLOGY LTD,,,,,,,ООО ФОРСС ТЕХНОЛОГИИ,Cyrillic,Russian,,,,,,,,,,"1st floor, Room 1h, 44/117",Bronnistkaya street,Semyonovskii,Admiralteiskii region,,St. Petersburg,190013,Russia,"(UK Sanctions List Ref):RUS1433 OGRN: 1137847075057; KPP: 780601001 (UK Statement of Reasons):Forss Technology LTD is a Russian company providing engineering services in shipbuilding, machine building, electrical technology, instruments manufacturing and high-tech products development. Forss Technology LTD therefore is or has been involved in supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the transport sector. (Phone number):(1) 7 (812) 363-14-67 (2) 7 (812) 363-14-68 (Website):www.forss.tech (Email address):info@forss.su (Business Reg No):Tax Identification Number: INN: 7806496845",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15372 +FOTON PRO,,,,,,,,,,,,,,,,,,,C/O Law & Tax International Solutions,25 City Road,,,,London,EC1Y 1AA,United Kingdom,"(UK Sanctions List Ref):RUS1116 (UK Statement of Reasons):PHOTON PRO LLP (hereafter PHOTON PRO) is a Limited Liability Partnership which acts as a front company for the procurement of equipment for the Government of Russia. PHOTON PRO is therefore associated with a person that is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business as a Government of Russia-affiliated entity. Furthermore, PHOTON PRO makes available goods or technology to a person that in turn makes available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Phone number):+44 1438 94 08 80 (Website):photon.pro/ (Email address):info@photon.pro (Type of entity):Limited liability partnership (Business Reg No):OC425116",Entity,Primary name variation,,Russia,31/03/2022,31/03/2022,20/07/2022,15065 +FOX,Karina,,,,,,,,,24/11/1978,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0803 (UK Statement of Reasons):There are reasonable grounds to suspect that Karina ROTENBERG is associated with Boris Romanovich ROTENBERG; Karina ROTENBERG is the wife of Boris Romanovich ROTENBERG (RUS0246). Boris Romanovich ROTENBERG has been designated by the UK since 22/02/2022. Boris Romanovich ROTENBERG is a prominent Russian businessman with close personal ties to Russian President, Vladimir Putin. Boris Romanovich ROTENBERG is a major shareholder of SMP Bank, where he sits on the Board of Directors. Boris Romanovich ROTENBERG therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by virtue of owning or controlling directly or indirectly"" or ""working as a director"" or ""equivalent"" at SMP Bank, a Government of Russia affiliated-entity which obtains a financial benefit or other material benefit from the Government of Russia and is carrying out business in the finance sector which is a sector of strategic significance to the Government of Russia. (Gender):Female",Individual,AKA,,Russia,15/03/2022,15/03/2022,09/05/2022,14754 +FOZ,Amer,,,,,,عامر فوز,,,11/03/1976,Homs,Syria,Syria,06010274747,Syrian,,,Prominent Syrian Businessman,,,,,,,,,"(UK Sanctions List Ref):SYR0353 General Manager of ASM International General Trading, LLC (ASM International Trading). Linked to EU-designated Samer Foz ; EU-designated Aman Holding (Aman Damascus Joint Stock Company) ; ASM International General Trading, LLC (ASM International Trading) (UK Statement of Reasons):Leading businessperson with personal and family business interests and activities in multiple sectors of the Syrian economy, including through the Aman Holding (formerly known as the Aman Group). Through the Aman Holding, he benefits financially from access to commercial opportunities and supports the Assad regime, including through involvement in the regime-backed development of Marota City. Since 2012, he has been General Manager of ASM International Trading LLC. He is also associated with his brother Samer FOZ, who has been designated by the EU since January 2019 as a leading businessperson operating in Syria and for supporting or benefiting from the regime. (Gender):Male",Individual,Primary name,,Syria,17/02/2020,31/12/2020,13/05/2022,13817 +FOZ,Samer,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FOZ,Samer,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,Meadows 2,Street 3,Villa 5,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FOZ,Samer,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,Platinum Tower,Office no. 2405,Jumeirah Lake Towers,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FOZ,Samer Zuhair,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FOZ,Samer Zuhair,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,Meadows 2,Street 3,Villa 5,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FOZ,Samer Zuhair,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,Platinum Tower,Office no. 2405,Jumeirah Lake Towers,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FOZ,Samir,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FOZ,Samir,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,Meadows 2,Street 3,Villa 5,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FOZ,Samir,,,,,,,,,00/05/1973,(1) Homs (2) Latakia,(1) Syria (2) Syria,(1) Syria (2) Turkey,U 09471711,Turkey Expires 21 July 2024.,(1) 784197341865828 (2) 06010274705,,CEO of Aman Group,Platinum Tower,Office no. 2405,Jumeirah Lake Towers,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):SYR0260 Executive President of Aman Group. Subsidiaries: Foz for Trading, Al-Mohaimen for Transportation & Contracting. Aman Group is the private sector partner in Joint Venture Aman Damascus JSC with Damascus Cham Holding, in which Foz is an individual shareholder. Emmar Industries is a joint venture between Aman Group and the Hamisho Group, in which Foz has the majority stake and is the Chairman. (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy, including a regime-backed joint venture involved in the development of Marota City, a luxury residential and commercial development. Samer Foz provides financial and other support to the regime, including funding the Military Security Shield Forces in Syria and brokering grain deals. He also benefits financially from access to commercial opportunities through the wheat trade and reconstruction projects as a result of his links to the regime. (Phone number):-4874878 (Website):http://www.amangroupco.com (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,13/05/2022,13755 +FRADKOV,Mikhail,Efimovich,,,,,Михаи́л Ефи́мович Фрадко́в,,,01/09/1950,"Kurumoch, Kuibyshev region",Russia,Russia,,,,,(1) Former Permanent Member of the Security Council of the Russian Federation (2) Former Director of the Foreign Intelligence Service of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS0094 (UK Statement of Reasons):Former permanent member of the Security Council of the Russian Federation. Former Director of the Foreign Intelligence Service of the Russian Federation. As a member of the Security Council, which provides advice on and coordinates national security affairs, he was involved in shaping the policy of the Russian Government threatening the territorial intergity, sovereignty and independence of Ukraine. As of 4 January 2017, Director of the Russian Institute for Strategic Studies. He is also Chairperson of the Board of Directors of ""Almaz-Antey"" (also sanctioned). Remains active in supporting separatist actions and policies. (Gender):Male",Individual,Primary name,,Russia,25/07/2014,31/12/2020,16/09/2022,13035 +FRADKOV,Petr,Mikhailovich,,,,,Петр Михаилович Фрадков,,,02/07/1978,Moscow,Russia,Russia,,,,,Chairman/CEO of Promsvyazbank,,,,,,,,,"(UK Sanctions List Ref):RUS0244 (UK Statement of Reasons):Petr Fradkov is the Chairman and/or CEO of Promsvyazbank. Promsvyazbank is a Russian state owned bank and its main task is to service the Russian defence sector and to finance defence industry enterprises. Promsvyazbank is therefore a Government of Russia-affiliated entity and/or carrying on business in a sector of strategic significance to the Government of Russia. Through his role as Chairman and/or of Promsvyazbank, Fradkov is or has been involved in obtaining a benefit from or supporting the Government of Russia. In addition/in the alternative, Fradkov, as Chairman and/or CEO of Promsvyazbank is involved, through his role at Promsvyazbank and the role the bank plays in financing Russian defence industries, in the provision of financial services, and/or making available of funds and economic resources, goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,24/02/2022,24/02/2022,24/02/2022,14191 +FRADKOV,Pyotr,Mikhailovich,,,,,,,,02/07/1978,Moscow,Russia,Russia,,,,,Chairman/CEO of Promsvyazbank,,,,,,,,,"(UK Sanctions List Ref):RUS0244 (UK Statement of Reasons):Petr Fradkov is the Chairman and/or CEO of Promsvyazbank. Promsvyazbank is a Russian state owned bank and its main task is to service the Russian defence sector and to finance defence industry enterprises. Promsvyazbank is therefore a Government of Russia-affiliated entity and/or carrying on business in a sector of strategic significance to the Government of Russia. Through his role as Chairman and/or of Promsvyazbank, Fradkov is or has been involved in obtaining a benefit from or supporting the Government of Russia. In addition/in the alternative, Fradkov, as Chairman and/or CEO of Promsvyazbank is involved, through his role at Promsvyazbank and the role the bank plays in financing Russian defence industries, in the provision of financial services, and/or making available of funds and economic resources, goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,24/02/2022,24/02/2022,24/02/2022,14191 +FRADKOV,Mikhail,Yefimovich,,,,,,,,01/09/1950,"Kurumoch, Kuibyshev region",Russia,Russia,,,,,(1) Former Permanent Member of the Security Council of the Russian Federation (2) Former Director of the Foreign Intelligence Service of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS0094 (UK Statement of Reasons):Former permanent member of the Security Council of the Russian Federation. Former Director of the Foreign Intelligence Service of the Russian Federation. As a member of the Security Council, which provides advice on and coordinates national security affairs, he was involved in shaping the policy of the Russian Government threatening the territorial intergity, sovereignty and independence of Ukraine. As of 4 January 2017, Director of the Russian Institute for Strategic Studies. He is also Chairperson of the Board of Directors of ""Almaz-Antey"" (also sanctioned). Remains active in supporting separatist actions and policies. (Gender):Male",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,16/09/2022,13035 +FRANCO QUINTERO,Rafael,Antonio,,,,Brigadier General,,,,14/10/1973,,Venezuela,Venezuela,,,11311672,,Former Head of Investigations at the Dirección General de Contrainteligencia Militar (General Directorate of Military Counter-Intelligence) (DGCIM),,,,,,,,,"(UK Sanctions List Ref):VEN0023 (UK Statement of Reasons):Agent in the Bolivarian National Intelligence Service (SEBIN). Head of Investigations at the Directorate-General of Military Counter-Intelligence (Dirección General de Contrainteligencia Militar (DGCIM)) between at least 2017 and December 2018. Responsible for serious human rights violations, including torture, excessive use of force and the ill- treatment of detainees in DGCIM facilities by members of the DGCIM under his command. Also responsible for the repression of civil society and democratic opposition by members of the DGCIM under his command. Linked to the death of Captain Acosta. (Gender):Male",Individual,Primary name,,Venezuela,27/09/2019,31/12/2020,28/01/2022,13795 +FREDJ,,,,,,,,,,04/06/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FREDJ,,,,,,,,,,13/11/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FREDJ,,,,,,,,,,11/08/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FREDJ,,,,,,,,,,04/04/1969,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FREDJ,,,,,,,,,,04/04/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FREDJ,,,,,,,,,,14/01/1968,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +FREE DONBAS,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0176 (UK Statement of Reasons):Public 'organisation' that presented candidates in the so called 'elections' of the so called 'Donetsk People's Republic' on 2 November 2014. These elections are in breach of Ukrainian law and therefore illegal. In participating formally in illegal 'elections' it has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine.",Entity,AKA,,Russia,02/12/2014,31/12/2020,31/12/2020,13185 +FREE DONBASS,,,,,,,Свободный Донбасс,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0176 (UK Statement of Reasons):Public 'organisation' that presented candidates in the so called 'elections' of the so called 'Donetsk People's Republic' on 2 November 2014. These elections are in breach of Ukrainian law and therefore illegal. In participating formally in illegal 'elections' it has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine.",Entity,Primary name,,Russia,02/12/2014,31/12/2020,31/12/2020,13185 +FRIDMAN,Mikhail,Maratovic,,,,,Михаил Маратович ФРИДМАН,,,21/04/1964,Lviv,Ukraine,(1) Israel (2) Russia,,,,,(1) Member of the Board of Directors of Alfa Bank (2) Chairman of the Supervisory Board of Alfa Group Consortium (3) Founder of Alfa Group,Moscow,,,,,,,Russia,"(UK Sanctions List Ref):RUS0664 (UK Statement of Reasons):MIKHAIL MARATOVICH FRIDMAN is a prominent Russian businessman and pro-Kremlin oligarch. FRIDMAN is involved in obtaining a benefit from or supporting the Government of Russia through his positions on the Supervisory Board of the Alfa Group, and the Board of Directors of ABH Holdings S.A., owner of Russia’s largest privately owned bank 'Alfa-Bank (Russia)’, which are carrying on business in a sector or sectors of strategic significance to the Government of Russia. FRIDMAN is closely associated with President Vladimir Putin, and is therefore associated with an individual who is involved in destabilising and threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,18/03/2022,14615 +FRIDMAN,Mikhail,Maratovic,,,,,Михаил Маратович ФРИДМАН,,,21/04/1964,Lviv,Ukraine,(1) Israel (2) Russia,,,,,(1) Member of the Board of Directors of Alfa Bank (2) Chairman of the Supervisory Board of Alfa Group Consortium (3) Founder of Alfa Group,London,,,,,,,UK,"(UK Sanctions List Ref):RUS0664 (UK Statement of Reasons):MIKHAIL MARATOVICH FRIDMAN is a prominent Russian businessman and pro-Kremlin oligarch. FRIDMAN is involved in obtaining a benefit from or supporting the Government of Russia through his positions on the Supervisory Board of the Alfa Group, and the Board of Directors of ABH Holdings S.A., owner of Russia’s largest privately owned bank 'Alfa-Bank (Russia)’, which are carrying on business in a sector or sectors of strategic significance to the Government of Russia. FRIDMAN is closely associated with President Vladimir Putin, and is therefore associated with an individual who is involved in destabilising and threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,18/03/2022,14615 +FRIEDMAN,Mikhail,Maratovic,,,,,,,,21/04/1964,Lviv,Ukraine,(1) Israel (2) Russia,,,,,(1) Member of the Board of Directors of Alfa Bank (2) Chairman of the Supervisory Board of Alfa Group Consortium (3) Founder of Alfa Group,Moscow,,,,,,,Russia,"(UK Sanctions List Ref):RUS0664 (UK Statement of Reasons):MIKHAIL MARATOVICH FRIDMAN is a prominent Russian businessman and pro-Kremlin oligarch. FRIDMAN is involved in obtaining a benefit from or supporting the Government of Russia through his positions on the Supervisory Board of the Alfa Group, and the Board of Directors of ABH Holdings S.A., owner of Russia’s largest privately owned bank 'Alfa-Bank (Russia)’, which are carrying on business in a sector or sectors of strategic significance to the Government of Russia. FRIDMAN is closely associated with President Vladimir Putin, and is therefore associated with an individual who is involved in destabilising and threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,18/03/2022,14615 +FRIEDMAN,Mikhail,Maratovic,,,,,,,,21/04/1964,Lviv,Ukraine,(1) Israel (2) Russia,,,,,(1) Member of the Board of Directors of Alfa Bank (2) Chairman of the Supervisory Board of Alfa Group Consortium (3) Founder of Alfa Group,London,,,,,,,UK,"(UK Sanctions List Ref):RUS0664 (UK Statement of Reasons):MIKHAIL MARATOVICH FRIDMAN is a prominent Russian businessman and pro-Kremlin oligarch. FRIDMAN is involved in obtaining a benefit from or supporting the Government of Russia through his positions on the Supervisory Board of the Alfa Group, and the Board of Directors of ABH Holdings S.A., owner of Russia’s largest privately owned bank 'Alfa-Bank (Russia)’, which are carrying on business in a sector or sectors of strategic significance to the Government of Russia. FRIDMAN is closely associated with President Vladimir Putin, and is therefore associated with an individual who is involved in destabilising and threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,18/03/2022,14615 +FRITZ,,,,,,,,,,30/04/1991,St. Petersburg,,Russia,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0031 (UK Statement of Reasons):Commander of the ‘Rusich’ unit, an armed separatist group involved in the fighting in eastern Ukraine. In this capacity, he has actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. He was also involved in the construction of the Kerch Bridge from Russia to the illegally annexed Autonomous Republic of Crimea. Therefore he has supported the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,AKA,,Russia,16/02/2015,31/12/2020,31/12/2020,13200 +FRITZ,,,,,,,,,,30/04/1991,St. Petersburg,,Russia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):RUS0031 (UK Statement of Reasons):Commander of the ‘Rusich’ unit, an armed separatist group involved in the fighting in eastern Ukraine. In this capacity, he has actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. He was also involved in the construction of the Kerch Bridge from Russia to the illegally annexed Autonomous Republic of Crimea. Therefore he has supported the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,AKA,,Russia,16/02/2015,31/12/2020,31/12/2020,13200 +FROLOV,Alexey,,,,,,,,,16/06/1981,,,,,,,,FSB Operative attached to Criminalistics Institute,,,,,,,,,"(UK Sanctions List Ref):CHW0018 (UK Statement of Reasons):Alexey Alexandrov is an FSB operative in the Criminalistics Institute - Military Unit 34435. Evidence including phone and travel records suggest that Alexey Alexandrov was one of the operatives involved in the use of a chemical weapon in the attempted assassination of Russian opposition leader Alexey Navalny during his August 2020 visit to Siberia. A chemical weapon - a toxic nerve agent of the Novichok group - was used. Alexandrov was an operative of the Criminalistics Unit present in Tomsk where Navalny was poisoned. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny is a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. There are reasonable grounds to suspect that Alexey Alexandrov in his capacity as an operative in the Federal Security Service of the Russian Federation, was present in Tomsk at the time of the poisoning and was one of the key operatives responsible for the preparation and use of a toxic nerve agent of the Novichok group in the attempted assassination of Alexey Navalny.",Individual,AKA,,Chemical Weapons,20/08/2021,20/08/2021,20/08/2021,14132 +FROLOV,Alexander,Vladimirovich,,,,,ФРОЛОВ Александр Владимирович,Cyrillic,Russian,00/05/1964,,,Russia,,,,,"Former Director and Former CEO, Evraz plc",,,,,,,,,"(UK Sanctions List Ref):RUS1647 (UK Statement of Reasons):Alexander Vladimirovich FROLOV (hereafter FROLOV) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 on the basis of the following grounds: (1) FROLOV is a former director of Evraz plc; in this role, FROLOV has been involved in obtaining a benefit from or supporting the Government of Russia by working as a Director of an entity carrying on business in sectors of strategic significance to the Government of Russia, namely, the Russian extractives, transport and construction sectors; (2) FROLOV is a former CEO of Evraz plc, in this role, FROLOV has been involved in supporting the Government of Russia by working as a manager of an entity carrying on business in sectors of strategic significance to the Government of Russia, namely, the Russian extractives, transport and construction sectors; (3) FROLOV is involved in obtaining a benefit from or supporting the Government of Russia by owning or controlling directly or indirectly (within the meaning of reg. 7 (2)) Evraz plc, an entity carrying on business in sectors of strategic significance to the Government of Russia, namely, the Russian extractives, transport and construction sectors. (Gender):Male",Individual,Primary name,,Russia,02/11/2022,02/11/2022,02/11/2022,15611 +FROLOVA,Tamara,Ivanovna,,,,,Фролова Тамара Ивановна,,,02/11/1959,Varvarino,Russia,Russia,642980460,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0577 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14522 +FRONT FOR THE CONQUEST OF SYRIA,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +FRONT FOR THE CONQUEST OF SYRIA,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +FRONT FOR THE LIBERATION OF THE LEVANT,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +FRONT FOR THE LIBERATION OF THE LEVANT,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +FSUE ALEXANDROV NITI,,,,,,,ФГУП Нити имени Александрова,Cyrillic,Russian,,,,,,,,,,72 Koporskoye shosse,Sosnovy Bor,Leningrad region,,,,188540,Russia,"(UK Sanctions List Ref):RUS1349 (UK Statement of Reasons):Aleksandrov Scientific Research Technological Institute NITI is involved in designing, testing, and supporting nuclear power and naval propulsion reactors as well as their systems and parts. Aleksandrov Scientific Research Technological Institute NITI is an involved person under regulation 6(2)(a)(ii) and 6(4)(c) of Russia (Sanctions) (EU Exit) Regulation 2019 because it is carrying on business in a sector of strategic significance to the Government of Russia, the energy sector. (Phone number):+7 81369 22667 (Website):https://www.niti.ru (Email address):foton@niti.ru (Type of entity):Federal State Unitary Enterprise (Business Reg No):1024701759565",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15301 +FT LTD,,,,,,,ООО ФТ,Cyrillic,Russian,,,,,,,,,,"51, lit. E",Magnitogorskaya street,,,,St. Petersburg,195027,Russia,"(UK Sanctions List Ref):RUS1433 OGRN: 1137847075057; KPP: 780601001 (UK Statement of Reasons):Forss Technology LTD is a Russian company providing engineering services in shipbuilding, machine building, electrical technology, instruments manufacturing and high-tech products development. Forss Technology LTD therefore is or has been involved in supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the transport sector. (Phone number):(1) 7 (812) 363-14-67 (2) 7 (812) 363-14-68 (Website):www.forss.tech (Email address):info@forss.su (Business Reg No):Tax Identification Number: INN: 7806496845",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15372 +FT LTD,,,,,,,ООО ФТ,Cyrillic,Russian,,,,,,,,,,"1st floor, Room 1h, 44/117",Bronnistkaya street,Semyonovskii,Admiralteiskii region,,St. Petersburg,190013,Russia,"(UK Sanctions List Ref):RUS1433 OGRN: 1137847075057; KPP: 780601001 (UK Statement of Reasons):Forss Technology LTD is a Russian company providing engineering services in shipbuilding, machine building, electrical technology, instruments manufacturing and high-tech products development. Forss Technology LTD therefore is or has been involved in supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the transport sector. (Phone number):(1) 7 (812) 363-14-67 (2) 7 (812) 363-14-68 (Website):www.forss.tech (Email address):info@forss.su (Business Reg No):Tax Identification Number: INN: 7806496845",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15372 +FUPI,,,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +FUPI,,,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +FUPI,,,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +FUPI,,,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +FURSENKO,Andrei,Aleksandrovich,,,,,,,,17/07/1949,Leningrad,Russia,Russia,,,,,Aide to the President of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS1337 (UK Statement of Reasons):As Aide to the President and a member of the Presidential Executive Office, Andrei Aleksandrovich FURSENKO has directly supported the Presidency of the Russian Federation and the Government of Russia. FURSENKO is therefore an involved person who provides support for and promotes policies and actions which destabilise Ukraine and undermine and threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,13/04/2022,15278 +FURSENKO,Andrey,Aleksandrovich,,,,,Андрей Александрович Фурсенко,,,17/07/1949,Leningrad,Russia,Russia,,,,,Aide to the President of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS1337 (UK Statement of Reasons):As Aide to the President and a member of the Presidential Executive Office, Andrei Aleksandrovich FURSENKO has directly supported the Presidency of the Russian Federation and the Government of Russia. FURSENKO is therefore an involved person who provides support for and promotes policies and actions which destabilise Ukraine and undermine and threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,13/04/2022,15278 +FURSENKO,Sergei,Aleksandrovich,,,,,Серге́й Александрович Фурсенко,Cyrillic,Russian,11/03/1954,St. Petersburg,Russia,Russia,,,,,Vice President GAZPROMBANK,,,,,,,,,"(UK Sanctions List Ref):RUS1330 (UK Statement of Reasons):Sergey Aleksandrovich FURSENKO is the Vice President of Gazprombank. In his role, FURSENKO is associated with GAZPROMBANK. GAZPROMBANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,02/08/2022,15288 +FURSENKO,Sergey,Aleksandrovich,,,,,Серге́й Александрович Фурсенко,Cyrillic,Russian,11/03/1954,St. Petersburg,Russia,Russia,,,,,Vice President GAZPROMBANK,,,,,,,,,"(UK Sanctions List Ref):RUS1330 (UK Statement of Reasons):Sergey Aleksandrovich FURSENKO is the Vice President of Gazprombank. In his role, FURSENKO is associated with GAZPROMBANK. GAZPROMBANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15288 +FUSCO,Fabio,,,,,,,,,18/12/1969,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +FUSCO,Fabio,,,,,,,,,25/05/1968,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +FUSCO,Fabio,,,,,,,,,18/12/1968,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +FUSCO,Fabio,,,,,,,,,14/07/1969,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +FYODOROV,Nikolay,Vasilyevich,,,,,Никола́й Васи́льевич Фёдоров,,,09/05/1958,Novocheboksarsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0872 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14823 +FYODOROV,Yury,Viktorovich,,,,,Юрий Викторович Федоров,,,01/01/1972,Vinogradovo,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0954 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14905 +GACHI,Mohammad,,,,,,محمد رستمی,Persian,Persian/Farsi,00/00/1966,,,Iran,,,,,Head of the Morality Police,,,,,,,,,(UK Sanctions List Ref):IHR0084 (UK Statement of Reasons):Mohammad Rostami Cheshmeh Gachi as Head of the Morality Police in Iran is or has been involved in the commission of serious human rights violations or abuse in Iran. The Morality Police enforce Iran’s Islamic dress requirements and are known to use unreasonable force against individuals they deem to be non-compliant.  In this role Gachi is responsible for and promotes violations of the right to liberty and security and the right to freedom of expression. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15597 +GACHI,Mohammad,,,,,,محمد رستمی,Persian,Persian/Farsi,00/00/1967,,,Iran,,,,,Head of the Morality Police,,,,,,,,,(UK Sanctions List Ref):IHR0084 (UK Statement of Reasons):Mohammad Rostami Cheshmeh Gachi as Head of the Morality Police in Iran is or has been involved in the commission of serious human rights violations or abuse in Iran. The Morality Police enforce Iran’s Islamic dress requirements and are known to use unreasonable force against individuals they deem to be non-compliant.  In this role Gachi is responsible for and promotes violations of the right to liberty and security and the right to freedom of expression. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15597 +GACHI,Mohammad,Rostami,Cheshmeh,,,,محمد رستمی چشمه گچی,Persian,Persian/Farsi,00/00/1966,,,Iran,,,,,Head of the Morality Police,,,,,,,,,(UK Sanctions List Ref):IHR0084 (UK Statement of Reasons):Mohammad Rostami Cheshmeh Gachi as Head of the Morality Police in Iran is or has been involved in the commission of serious human rights violations or abuse in Iran. The Morality Police enforce Iran’s Islamic dress requirements and are known to use unreasonable force against individuals they deem to be non-compliant.  In this role Gachi is responsible for and promotes violations of the right to liberty and security and the right to freedom of expression. (Gender):Male,Individual,Primary name,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15597 +GACHI,Mohammad,Rostami,Cheshmeh,,,,محمد رستمی چشمه گچی,Persian,Persian/Farsi,00/00/1967,,,Iran,,,,,Head of the Morality Police,,,,,,,,,(UK Sanctions List Ref):IHR0084 (UK Statement of Reasons):Mohammad Rostami Cheshmeh Gachi as Head of the Morality Police in Iran is or has been involved in the commission of serious human rights violations or abuse in Iran. The Morality Police enforce Iran’s Islamic dress requirements and are known to use unreasonable force against individuals they deem to be non-compliant.  In this role Gachi is responsible for and promotes violations of the right to liberty and security and the right to freedom of expression. (Gender):Male,Individual,Primary name,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15597 +GADDAFI INTERNATIONAL CHARITY AND DEVELOPMENT FOUNDATION,,,,,,,,,,,,,,,,,,,Hay Alandalus,Jian Street,PO Box 1101,,,Tripoli,,Libya,"(UK Sanctions List Ref):LIB0002 Contact details of administration are Hay Alandalus, Jian St., Tripoli , PoBox 1101, Libya (UK Statement of Reasons):Controlled by Saif Al Islam Qadhafi, son of Muammar Qadhafi, a person involved in the commission of serious human rights violations or abuses in Libya and connected to the repressive policies of the Muammar Qadhafi regime. (Phone number):+218 214778301. +218 214778766 (Email address):info@gicdf.org",Entity,Primary name,,Libya,22/03/2011,31/12/2020,31/12/2020,11711 +GADDEF EDDAM,Sayed,M,,,,,,,,00/00/1948,(1) Sirte (2) -,(1) Libya (2) Egypt,,513519,Libyan,,,,,,,,,,,,"(UK Sanctions List Ref):LIB0029 (UN Ref):LYi.003 Cousin of Muamar Qadhafi. UN Listing pursuant to paragraph 15 of resolution 1970 (Travel Ban). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525735 (UK Statement of Reasons):Involved in activities carried out on behalf of the former regime of Muammar Qadhafi implementing or connected to the repressive policies of that regime, including in the 1980s, Sayyid was involved in the dissident assassination campaign and allegedly responsible for several deaths in Europe. He is also thought to have been involved in arms procurement. (Gender):Male",Individual,AKA,Good quality,Libya,03/03/2011,31/12/2020,16/02/2022,11646 +GADDEF EDDAM,Sayed,M,,,,,,,,,(1) Sirte (2) -,(1) Libya (2) Egypt,,513519,Libyan,,,,,,,,,,,,"(UK Sanctions List Ref):LIB0029 (UN Ref):LYi.003 Cousin of Muamar Qadhafi. UN Listing pursuant to paragraph 15 of resolution 1970 (Travel Ban). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525735 (UK Statement of Reasons):Involved in activities carried out on behalf of the former regime of Muammar Qadhafi implementing or connected to the repressive policies of that regime, including in the 1980s, Sayyid was involved in the dissident assassination campaign and allegedly responsible for several deaths in Europe. He is also thought to have been involved in arms procurement. (Gender):Male",Individual,AKA,Good quality,Libya,03/03/2011,31/12/2020,16/02/2022,11646 +GADET,PETER,,,,,(1) General (2) Major General,,,,00/00/1957,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,Primary name,,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +GADET,PETER,,,,,(1) General (2) Major General,,,,00/00/1958,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,Primary name,,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +GADET,PETER,,,,,(1) General (2) Major General,,,,00/00/1959,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,Primary name,,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +GADUEL,,,,,,General,,,,00/00/1953,"(1) Akobo, Jonglei State (2) Uror County, Jonglei State",South Sudan,,,,,,"Chief of General Staff, SPLA in Opposition.",,,,,,Jonglei State,,South Sudan,"(UK Sanctions List Ref):SSU0009 (UN Ref):SSi.002 Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population. Photograph available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879066",Individual,AKA,Low quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13264 +GADZHIEV,Ruslan,Gadzhievich,,,,,ГАДЖИЕВ Руслан Гаджиевич,,,29/08/1978,Derbent,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0343 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14288 +GADZHIEV,Abdulkhakim,Kutbudinovich,,,,,ГАДЖИЕВ Абдулхаким Кутбудинович,,,13/02/1966,Zubutli,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0342 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14287 +GADZHIYEV,Murad,Stanislavovich,,,,,ГАДЖИЕВ Мурад Станиславович,,,31/07/1961,Makhachkala,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0674 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14625 +GAFNER,Denis,Yakovlevich,,,,,ГАФНЕР Денис Яковлевич,Cyrillic,Russian,08/09/1980,,,Russia,5003226888,,21500322688,,,,,,,,,,,"(UK Sanctions List Ref):RUS1506 (UK Statement of Reasons):Denis Yakovlevich GAFNER has been involved in providing support for and promoting actions and policies that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being involved in spreading disinformation and promoting Russian actions in Ukraine. (Gender):Male",Individual,Primary name,,Russia,05/07/2022,05/07/2022,05/07/2022,15444 +GAIDUKEVICH,Aleh,Siarheevich,,,,,Гайдукевіч Алег Сяргеевіч,,,26/03/1977,Minsk,Belarus,Belarus,,,,,(1) Deputy Chairman of the Standing Committee of International Affairs in the House of Representatives of the National Assembly (2) Member of the delegation of the National Assembly for contacts with the Parliamentary Assembly of the Council of Europe,,,,,,,,,"(UK Sanctions List Ref):BEL0102 (UK Statement of Reasons):Oleg Gaidukevich is the Deputy Chairman of the Standing Committee of International Affairs in the house of Representative of the National Assembly, and a member of the delegation of the national Assembly for contacts with the Parliamentary Assembly of the Council of Europe. In this capacity, he has made public statements in support of Alexander Lukashenko and the actions taken by the Belarusian authorities to forcibly divert passenger flight FR4978 to Minsk airport without proper justification on 21 May 2021. This politically motivated decision was aimed at arresting and detaining opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega and is a form of repression against civil society and democratic opposition in Belarus. Therefore, Oleg Gaidukevich supports the Lukashenko regime and its repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14116 +GAIDUKEVICH,Oleg,Sergeevich,,,,,Олег Сергеевич Гайдукевич,,,26/03/1977,Minsk,Belarus,Belarus,,,,,(1) Deputy Chairman of the Standing Committee of International Affairs in the House of Representatives of the National Assembly (2) Member of the delegation of the National Assembly for contacts with the Parliamentary Assembly of the Council of Europe,,,,,,,,,"(UK Sanctions List Ref):BEL0102 (UK Statement of Reasons):Oleg Gaidukevich is the Deputy Chairman of the Standing Committee of International Affairs in the house of Representative of the National Assembly, and a member of the delegation of the national Assembly for contacts with the Parliamentary Assembly of the Council of Europe. In this capacity, he has made public statements in support of Alexander Lukashenko and the actions taken by the Belarusian authorities to forcibly divert passenger flight FR4978 to Minsk airport without proper justification on 21 May 2021. This politically motivated decision was aimed at arresting and detaining opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega and is a form of repression against civil society and democratic opposition in Belarus. Therefore, Oleg Gaidukevich supports the Lukashenko regime and its repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name,,Belarus,21/06/2021,21/06/2021,21/06/2021,14116 +GALENKA,Andrei,Vasilievich,,,,,"ГАЛЕНКА, Андрей Васильевич",,,,,,Belarus,,,,,"(1) Deputy Head of the District Department of Internal Affairs in Moskovski District, Minsk (2) Head of the Public Safety Police",,,,,,,,,"(UK Sanctions List Ref):BEL0017 (UK Statement of Reasons):In his position as Deputy Head of the District Department of Internal Affairs in Moskovski District, Minsk, and Head of Public Safety Police, Galenka is responsible for the repression and intimidation campaign in that district against peaceful protesters in the wake of the 2020 presidential election, in particular with arbitrary arrests, excessive use of force and ill-treatment, including torture. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,19/01/2021,13939 +GALENKA,Andrey,Vasilievich,,,,,"ГАЛЕНКА, Андрэй Васiльевiч",,,,,,Belarus,,,,,"(1) Deputy Head of the District Department of Internal Affairs in Moskovski District, Minsk (2) Head of the Public Safety Police",,,,,,,,,"(UK Sanctions List Ref):BEL0017 (UK Statement of Reasons):In his position as Deputy Head of the District Department of Internal Affairs in Moskovski District, Minsk, and Head of Public Safety Police, Galenka is responsible for the repression and intimidation campaign in that district against peaceful protesters in the wake of the 2020 presidential election, in particular with arbitrary arrests, excessive use of force and ill-treatment, including torture. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,19/01/2021,13939 +GALINKIN,Valeriy,Iosifovich,,,,,ГАЛИНКИН Валерий Иосифович,Cyrillic,Russian,01/08/1947,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1269 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15221 +GALINKIN,Valery,Iosifovich,,,,,,,,01/08/1947,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1269 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15221 +GALKIN,Aleksandr,Viktorovich,,,,,Александр Викторович Галкин,,,22/03/1958,"Ordzhonikidze (Vladikavkaz), North Ossetian ASSR",USSR (now Russian Federation),Russia,,,,,Aide to the Defence Minister,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0095 (UK Statement of Reasons):Former Commander of Russia's Southern Military District (SMD), forces of which are in Crimea, the Black Sea Fleet comes under Galkin's command; much of the force movement into Crimea has come through the Southern Military District. SMD forces are deployed in Crimea. He is responsible for part of the Russian military presence in Crimea which is undermining the sovereignty of Ukraine and assisted the Crimean authorities in preventing public demonstrations against moves towards a referendum and incorporation into Russia. Additionally the Black Sea Fleet falls within the District's control. Currently employed by the Central apparatus of the Russian Ministry of Defence. Aide to the Minister of Defence since 19 January 2017. (Gender):Male",Individual,Primary name,,Russia,18/03/2014,31/12/2020,16/09/2022,12932 +GALUSHINA,Rimma,Fyodorovna,,,,,Римма Фёдоровна Галушина,,,30/05/1963,"Naryan-Mar, Nenets",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS1004 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14955 +GAMOLA,Maxim,Alexandrovich,,,,,"ГАМОЛА, Максiм Аляксандравiч",,,,,,Belarus,,,,,"Head of the Police Department in Moskovski District, Minsk",,,,,,,,,"(UK Sanctions List Ref):BEL0015 (UK Statement of Reasons):In his position as Head of the Department of Internal Affairs of the Minsk City Executive Committee for Moskovski District, Maxim Gamola is responsible for the repression and intimidation campaign in that district against peaceful protesters in the wake of the 2020 presidential election, in particular with arbitrary arrests, excessive use of force and ill-treatment, including torture. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13937 +GAMOLA,Maxim,Aliaksandravich,,,,,"ГАМОЛА, Максим Александрович",,,,,,Belarus,,,,,"Head of the Police Department in Moskovski District, Minsk",,,,,,,,,"(UK Sanctions List Ref):BEL0015 (UK Statement of Reasons):In his position as Head of the Department of Internal Affairs of the Minsk City Executive Committee for Moskovski District, Maxim Gamola is responsible for the repression and intimidation campaign in that district against peaceful protesters in the wake of the 2020 presidential election, in particular with arbitrary arrests, excessive use of force and ill-treatment, including torture. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,31/12/2020,13937 +GANEEV,Oleg,Vladimirovich,,,,,,,,,,,,,,,,Deputy Chairman of Sberbank’s Executive Board,,,,,,,,,"(UK Sanctions List Ref):RUS1593 (UK Statement of Reasons):Oleg Vladimirovich Ganeev is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a director, manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK). (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15537 +GANJI,Mostafa,Barzegar,,,,,,,,,,,,,,,,(1) Head of the Directorate General for prisons (2) Director General of Supervision of Courts and Officers of the Attorney General’s Office (3) Assistant Prosecutor in Supreme Court,,,,,,,,,"(UK Sanctions List Ref):IHR0068 (UK Statement of Reasons):Prosecutor-General of Qom (2008-2017), now head of the directorate general for prisons. He was responsible for the arbitrary detention and maltreatment of dozens of offenders in Qom. He was complicit in a grave violation of the right to due process, contributing to the excessive and increasing use of the death penalty and a sharp increase in executions in 2009/2010. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12180 +GANOV,Alexander,Nikolaevich,,,,,,,,24/10/1974,Voroezh,Russia (USSR),Russia,,,,,CEO of the railway company JSC TC Grand Service Express,,,,,,,,,"(UK Sanctions List Ref):RUS0226 (UK Statement of Reasons):CEO of the JSC TC Grand Service Express since 28 August 2019, the company which operates a railway service between Russia and the illegally annexed Crimean peninsula. Therefore, he supports the consolidation of the illegally annexed Crimean peninsula into the Russian Federation which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,02/10/2020,31/12/2020,16/09/2022,13926 +GAO,Qiang,,,,,,,,,04/10/1983,Shandong Province,China,China,,,,,,Room 1102,Guanfu Mansion,46 Xinkai Road,,Hedong District,Tianjin,,China,"(UK Sanctions List Ref):CYB0001 (UK Statement of Reasons):Gao Qiang was involved in relevant cyber activity through his employment with Huaying Haitai and setting up command and control infrastructure used to conduct relevant cyber activity. He was therefore responsible for, engaged in, provided support for, or promoted the commission, planning or preparation of relevant cyber activity. (Gender):Male",Individual,Primary name,,Cyber,31/07/2020,31/12/2020,31/12/2020,13903 +GAP,Gure,,,,,,,,,00/00/1979,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +GAP,Gure,,,,,,,,,00/00/1980,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +GAP,Gure,,,,,,,,,00/00/1981,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +GAP,Gure,,,,,,,,,00/00/1982,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +GAPCHUK,Karina,,,,,,,,,24/11/1978,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0803 (UK Statement of Reasons):There are reasonable grounds to suspect that Karina ROTENBERG is associated with Boris Romanovich ROTENBERG; Karina ROTENBERG is the wife of Boris Romanovich ROTENBERG (RUS0246). Boris Romanovich ROTENBERG has been designated by the UK since 22/02/2022. Boris Romanovich ROTENBERG is a prominent Russian businessman with close personal ties to Russian President, Vladimir Putin. Boris Romanovich ROTENBERG is a major shareholder of SMP Bank, where he sits on the Board of Directors. Boris Romanovich ROTENBERG therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by virtue of owning or controlling directly or indirectly"" or ""working as a director"" or ""equivalent"" at SMP Bank, a Government of Russia affiliated-entity which obtains a financial benefit or other material benefit from the Government of Russia and is carrying out business in the finance sector which is a sector of strategic significance to the Government of Russia. (Gender):Female",Individual,AKA,,Russia,15/03/2022,15/03/2022,09/05/2022,14754 +GAPCHUK FOX,Karina,,,,,,,,,24/11/1978,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0803 (UK Statement of Reasons):There are reasonable grounds to suspect that Karina ROTENBERG is associated with Boris Romanovich ROTENBERG; Karina ROTENBERG is the wife of Boris Romanovich ROTENBERG (RUS0246). Boris Romanovich ROTENBERG has been designated by the UK since 22/02/2022. Boris Romanovich ROTENBERG is a prominent Russian businessman with close personal ties to Russian President, Vladimir Putin. Boris Romanovich ROTENBERG is a major shareholder of SMP Bank, where he sits on the Board of Directors. Boris Romanovich ROTENBERG therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by virtue of owning or controlling directly or indirectly"" or ""working as a director"" or ""equivalent"" at SMP Bank, a Government of Russia affiliated-entity which obtains a financial benefit or other material benefit from the Government of Russia and is carrying out business in the finance sector which is a sector of strategic significance to the Government of Russia. (Gender):Female",Individual,AKA,,Russia,15/03/2022,15/03/2022,09/05/2022,14754 +GARANTEX EUROPE OU,,,,,,,ГАРАНТЕКС,Cyrillic,Russian,,,,,,,,,,Harju maakond,"Kesklinna linnaosa, J.",Poska tn 51a/1-3,,,Tallinn,10150,Estonia,"(UK Sanctions List Ref):RUS1421 Digital Currency Address: XBT 3Lpoy53K625zVeE47ZasiG5jGkAxJ27kh1 Digital Currency Address: ETH 0x7FF9cFad3877F21d41Da833E2F775dB0569eE3D9 Digital Currency Address: USDT 3E6ZCKRrsdPc35chA9Eftp1h3DLW18NFNV (UK Statement of Reasons):GARANTEX Europe OU is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because GARANTEX Europe OU is a virtual currency exchange that operates in the financial services sector in Russia. There are reasonable grounds to suspect that GARANTEX Europe OU is, or has been, involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the financial services sector, a sector of strategic significance to the Government of Russia. (Website):garantex.io (Business Reg No):Business Registration Number 14850239 (Estonia)",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15329 +GARANTEX EUROPE OU,,,,,,,ГАРАНТЕКС,Cyrillic,Russian,,,,,,,,,,Harju maakond,Lasnamae linnaosa,Peterburi tee 47,,,Tallinn,11415,Estonia,"(UK Sanctions List Ref):RUS1421 Digital Currency Address: XBT 3Lpoy53K625zVeE47ZasiG5jGkAxJ27kh1 Digital Currency Address: ETH 0x7FF9cFad3877F21d41Da833E2F775dB0569eE3D9 Digital Currency Address: USDT 3E6ZCKRrsdPc35chA9Eftp1h3DLW18NFNV (UK Statement of Reasons):GARANTEX Europe OU is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because GARANTEX Europe OU is a virtual currency exchange that operates in the financial services sector in Russia. There are reasonable grounds to suspect that GARANTEX Europe OU is, or has been, involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the financial services sector, a sector of strategic significance to the Government of Russia. (Website):garantex.io (Business Reg No):Business Registration Number 14850239 (Estonia)",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15329 +GARBAYA,Ahmed,,,,,,,,,00/00/1963,,Lebanon,Lebanon,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0009 (UK Statement of Reasons):Hasan Izz Al-Din is a member of Lebanese Hizballah. He is wanted by the FBI for his involvement in the hijacking of a commercial airliner on 14 June 1985 during which various passengers and crewmembers were assaulted and one US citizen murdered. (Gender):Male,Individual,AKA,,Counter-Terrorism (International),12/10/2001,31/12/2020,11/03/2022,7146 +GARIN,Oleg,Vladimirovich,,,,,Гарин Олег Владимирович,,,26/12/1973,Igra,Russia,Russia,1360039,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0550 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14495 +GARTSEV,Dmitry,Anatolievich,,,,,Дмитрий Анатольевич Гарцев,,Russian,,"Vlasikha, Moscow",Russia,Russia,,,,,So-called ‘Minister of Health’,,,,,,,,,"(UK Sanctions List Ref):RUS1566 (UK Statement of Reasons):Dmitry GARTSEV is an involved person within the meaning of the Russia (Sanctions) (EU Exit) Regulations 2019 because he is the so-called Minister of Health for the non-government controlled area of Ukraine known as the Donetsk People’s Republic. Through this role, GARTSEV is or has engaged in policies or actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15510 +GARTUNG,Valery,Karlovich,,,,,Валерий Карлович Гартунг,,,12/11/1960,Kopeysk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0344 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14289 +GARWICH,Simon,,,,,,,,,00/00/1953,"(1) Akobo, Jonglei State (2) Uror County, Jonglei State",South Sudan,,,,,,"Chief of General Staff, SPLA in Opposition.",,,,,,Jonglei State,,South Sudan,"(UK Sanctions List Ref):SSU0009 (UN Ref):SSi.002 Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population. Photograph available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879066",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13264 +GAS INDUSTRY INSURANCE COMPANY SOGAZ,,,,,,,,,,,,,,,,,,,10 Akademika Sakharova av,,,,,Moscow,107078,Russia,"(UK Sanctions List Ref):RUS0771 (UK Statement of Reasons):JSC SOGAZ is a Russian Insurance company, and is the largest insurer in the Russian corporate sector. JSC SOGAZ provides insurance to the oil and gas sector, water and rail transport, military-industrial complex and metallurgy. As such, it is carrying on business in the financial services sector, a sector of strategic significance to the Russian Government, thereby obtaining a benefit from or supporting the Government of Russia. Furthermore, it provides insurance for the Kerch Bridge, thereby providing support to policies that could destabilise Ukraine or undermine the territorial integrity, sovereignty, or independence of Ukraine. (Phone number):+8 (800) 333-08-88 (Type of entity):Russian Insurance Company (Joint stock company)",Entity,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14722 +GASANOV,Jamaladin,Nabievich,,,,,Джамаладин Набиевич Гасанов,,,05/08/1964,Levashi,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0345 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14290 +GASMI,SALAH,EDDINE,,,,,صالح قاسمي,,,13/04/1971,"Zeribet El Oued, Wilaya (province) of Biskra",Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0304 (UN Ref):QDi.251 Belongs to the leadership and is in charge of information committee of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Mother’s name is Yamina Soltane. Father’s name is Abdelaziz. Associated with Abdelmalek Droukdel (QDi.232). Arrested in Algeria on 16 Dec. 2012. Incarcerated at the El-Harrach prison in Algiers, as of August 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529206",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,31/12/2020,10692 +GASPARYAN,Armen,Sumbatovich,,,,,ГАСПАРЯН Армен Сумбатович,Cyrillic,Russian,04/07/1975,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1036 (UK Statement of Reasons):Armen Sumbatovich Gasparyan is a Russia radio presenter and broadcaster.  In numerous broadcasts and interviews he has promoted actions and policies which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14973 +GATDET,Peter,,,,,,,,,00/00/1957,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +GATDET,Peter,,,,,,,,,00/00/1958,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +GATDET,Peter,,,,,,,,,00/00/1959,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +GATWEACH,Simon,,,,,,,,,00/00/1953,"(1) Akobo, Jonglei State (2) Uror County, Jonglei State",South Sudan,,,,,,"Chief of General Staff, SPLA in Opposition.",,,,,,Jonglei State,,South Sudan,"(UK Sanctions List Ref):SSU0009 (UN Ref):SSi.002 Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population. Photograph available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879066",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13264 +GATWECH,Simon,,,,,,,,,00/00/1953,"(1) Akobo, Jonglei State (2) Uror County, Jonglei State",South Sudan,,,,,,"Chief of General Staff, SPLA in Opposition.",,,,,,Jonglei State,,South Sudan,"(UK Sanctions List Ref):SSU0009 (UN Ref):SSi.002 Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population. Photograph available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879066",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13264 +GATWICK,Simon,,,,,,,,,00/00/1953,"(1) Akobo, Jonglei State (2) Uror County, Jonglei State",South Sudan,,,,,,"Chief of General Staff, SPLA in Opposition.",,,,,,Jonglei State,,South Sudan,"(UK Sanctions List Ref):SSU0009 (UN Ref):SSi.002 Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population. Photograph available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879066",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13264 +GAUS,Aleksandra,Viktorovna,,,,,,,,29/03/1975,,,,,,,,"Doctor, Matrosskaya Tishina Prison",,,,,,,,,"(UK Sanctions List Ref):GHR0007 (UK Statement of Reasons):Alexandra Gauss was a doctor at Matrosskaya Tishina detention centre where Sergei Magnitsky was detained during the final hours of his life on 16 November 2009. She failed to provide or ensure the proper administration of medical care which contributed to his death; she also facilitated the mistreatment of Magnitsky after his transfer to Matrosskaya Tishina, including beating by a security team. (Gender):Female",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13860 +GAUS,Alexandra,Viktorovna,,,,,,,,29/03/1975,,,,,,,,"Doctor, Matrosskaya Tishina Prison",,,,,,,,,"(UK Sanctions List Ref):GHR0007 (UK Statement of Reasons):Alexandra Gauss was a doctor at Matrosskaya Tishina detention centre where Sergei Magnitsky was detained during the final hours of his life on 16 November 2009. She failed to provide or ensure the proper administration of medical care which contributed to his death; she also facilitated the mistreatment of Magnitsky after his transfer to Matrosskaya Tishina, including beating by a security team. (Gender):Female",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13860 +GAUSS,Aleksandra,Viktorovna,,,,,,,,29/03/1975,,,,,,,,"Doctor, Matrosskaya Tishina Prison",,,,,,,,,"(UK Sanctions List Ref):GHR0007 (UK Statement of Reasons):Alexandra Gauss was a doctor at Matrosskaya Tishina detention centre where Sergei Magnitsky was detained during the final hours of his life on 16 November 2009. She failed to provide or ensure the proper administration of medical care which contributed to his death; she also facilitated the mistreatment of Magnitsky after his transfer to Matrosskaya Tishina, including beating by a security team. (Gender):Female",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13860 +GAUSS,Alexandra,Viktorovna,,,,,,,,29/03/1975,,,,,,,,"Doctor, Matrosskaya Tishina Prison",,,,,,,,,"(UK Sanctions List Ref):GHR0007 (UK Statement of Reasons):Alexandra Gauss was a doctor at Matrosskaya Tishina detention centre where Sergei Magnitsky was detained during the final hours of his life on 16 November 2009. She failed to provide or ensure the proper administration of medical care which contributed to his death; she also facilitated the mistreatment of Magnitsky after his transfer to Matrosskaya Tishina, including beating by a security team. (Gender):Female",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13860 +GAVRILENKO,Anatoli,Anatolievich,,,,,,,,00/00/1972,,,Russia,,,771902996586,Russian Tax ID,Member of the Board of Directors of Gazprombank JSC,,,,,,,,,"(UK Sanctions List Ref):RUS1628 (UK Statement of Reasons):Anatoly Anatolievich Gavrilenko is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by:(1) working as a director of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a director of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15572 +GAVRILENKO,Anatolii,Anatolyevich,,,,,,,,00/00/1972,,,Russia,,,771902996586,Russian Tax ID,Member of the Board of Directors of Gazprombank JSC,,,,,,,,,"(UK Sanctions List Ref):RUS1628 (UK Statement of Reasons):Anatoly Anatolievich Gavrilenko is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by:(1) working as a director of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a director of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15572 +GAVRILENKO,Anatoly,Anatolyevich,,,,,Анатолий Анатольевич Гавриленко,Cyrillic,Russian,00/00/1972,,,Russia,,,771902996586,Russian Tax ID,Member of the Board of Directors of Gazprombank JSC,,,,,,,,,"(UK Sanctions List Ref):RUS1628 (UK Statement of Reasons):Anatoly Anatolievich Gavrilenko is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by:(1) working as a director of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a director of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15572 +GAVRILOV,Victor,Evdokimovich,,,,General,"Виктор, Гаврилов Евдокимович",Cyrillic,Russian,00/00/1961,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1052 (UK Statement of Reasons):Victor Evdokimovich GAVRILOV has held a number of senior positions of leadership in the Federal Security Service (FSB), including as Head of the FSB’s Economic Security Service’s Department of Transport, FSB Head of the Orenburg Region and other Russian-Government affiliated entities. As a member of the FSB and in his other senior Government posts, GAVRILOV is or has been responsible for, engaged in, provided support for or promoted policies or actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,24/03/2022,24/03/2022,12/07/2022,14995 +GAVRILOV,Sergey,Anatolievich,,,,,Гаврилов Сергей Анатольевич,,,27/01/1966,Tula,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0341 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14286 +GAYE,Aroun,,,,,,,,,30/01/1968,,,,O00065772,Central African Republic. Letter O followed by 3 zeros. Expires 30 Dec. 2019,,,Rapporteur of the political coordination of the Front Populaire pour la Renaissance de Centrafrique (FPRC),,,,,,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0008 (UN Ref):CFi.007 Gaye is a leader of the Front Populaire pour la Renaissance de Centrafrique (FPRC) (not listed) a marginalized ex-Seleka armed group in Bangui. He is also a leader of the so-called “Defense Committee” of Bangui’s PK5 (known as PK5 Resistance’ or ‘Texas’) (not listed), which extorts money from residents and threatens and employs physical violence. Gaye was appointed on 2 November 2014 by Nourredine Adam (CFi.002) as rapporteur of the political coordination of the FPRC. On 9 May 2014, the Security Council Committee established by resolution 2127 (2013) on CAR included Adam on its sanctions list. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13308 +GAYE,Aroun,,,,,,,,,30/01/1968,,,,O00065772,Central African Republic. Letter O followed by 3 zeros. Expires 30 Dec. 2019,,,Rapporteur of the political coordination of the Front Populaire pour la Renaissance de Centrafrique (FPRC),,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0008 (UN Ref):CFi.007 Gaye is a leader of the Front Populaire pour la Renaissance de Centrafrique (FPRC) (not listed) a marginalized ex-Seleka armed group in Bangui. He is also a leader of the so-called “Defense Committee” of Bangui’s PK5 (known as PK5 Resistance’ or ‘Texas’) (not listed), which extorts money from residents and threatens and employs physical violence. Gaye was appointed on 2 November 2014 by Nourredine Adam (CFi.002) as rapporteur of the political coordination of the FPRC. On 9 May 2014, the Security Council Committee established by resolution 2127 (2013) on CAR included Adam on its sanctions list. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13308 +GAYE,Aroun,,,,,,,,,30/01/1969,,,,O00065772,Central African Republic. Letter O followed by 3 zeros. Expires 30 Dec. 2019,,,Rapporteur of the political coordination of the Front Populaire pour la Renaissance de Centrafrique (FPRC),,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0008 (UN Ref):CFi.007 Gaye is a leader of the Front Populaire pour la Renaissance de Centrafrique (FPRC) (not listed) a marginalized ex-Seleka armed group in Bangui. He is also a leader of the so-called “Defense Committee” of Bangui’s PK5 (known as PK5 Resistance’ or ‘Texas’) (not listed), which extorts money from residents and threatens and employs physical violence. Gaye was appointed on 2 November 2014 by Nourredine Adam (CFi.002) as rapporteur of the political coordination of the FPRC. On 9 May 2014, the Security Council Committee established by resolution 2127 (2013) on CAR included Adam on its sanctions list. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13308 +GAYE,Aroun,,,,,,,,,30/01/1969,,,,O00065772,Central African Republic. Letter O followed by 3 zeros. Expires 30 Dec. 2019,,,Rapporteur of the political coordination of the Front Populaire pour la Renaissance de Centrafrique (FPRC),,,,,,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0008 (UN Ref):CFi.007 Gaye is a leader of the Front Populaire pour la Renaissance de Centrafrique (FPRC) (not listed) a marginalized ex-Seleka armed group in Bangui. He is also a leader of the so-called “Defense Committee” of Bangui’s PK5 (known as PK5 Resistance’ or ‘Texas’) (not listed), which extorts money from residents and threatens and employs physical violence. Gaye was appointed on 2 November 2014 by Nourredine Adam (CFi.002) as rapporteur of the political coordination of the FPRC. On 9 May 2014, the Security Council Committee established by resolution 2127 (2013) on CAR included Adam on its sanctions list. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13308 +GAYE,HAROUN,,,,,,,,,30/01/1968,,,,O00065772,Central African Republic. Letter O followed by 3 zeros. Expires 30 Dec. 2019,,,Rapporteur of the political coordination of the Front Populaire pour la Renaissance de Centrafrique (FPRC),,,,,,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0008 (UN Ref):CFi.007 Gaye is a leader of the Front Populaire pour la Renaissance de Centrafrique (FPRC) (not listed) a marginalized ex-Seleka armed group in Bangui. He is also a leader of the so-called “Defense Committee” of Bangui’s PK5 (known as PK5 Resistance’ or ‘Texas’) (not listed), which extorts money from residents and threatens and employs physical violence. Gaye was appointed on 2 November 2014 by Nourredine Adam (CFi.002) as rapporteur of the political coordination of the FPRC. On 9 May 2014, the Security Council Committee established by resolution 2127 (2013) on CAR included Adam on its sanctions list. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13308 +GAYE,HAROUN,,,,,,,,,30/01/1968,,,,O00065772,Central African Republic. Letter O followed by 3 zeros. Expires 30 Dec. 2019,,,Rapporteur of the political coordination of the Front Populaire pour la Renaissance de Centrafrique (FPRC),,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0008 (UN Ref):CFi.007 Gaye is a leader of the Front Populaire pour la Renaissance de Centrafrique (FPRC) (not listed) a marginalized ex-Seleka armed group in Bangui. He is also a leader of the so-called “Defense Committee” of Bangui’s PK5 (known as PK5 Resistance’ or ‘Texas’) (not listed), which extorts money from residents and threatens and employs physical violence. Gaye was appointed on 2 November 2014 by Nourredine Adam (CFi.002) as rapporteur of the political coordination of the FPRC. On 9 May 2014, the Security Council Committee established by resolution 2127 (2013) on CAR included Adam on its sanctions list. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13308 +GAYE,HAROUN,,,,,,,,,30/01/1969,,,,O00065772,Central African Republic. Letter O followed by 3 zeros. Expires 30 Dec. 2019,,,Rapporteur of the political coordination of the Front Populaire pour la Renaissance de Centrafrique (FPRC),,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0008 (UN Ref):CFi.007 Gaye is a leader of the Front Populaire pour la Renaissance de Centrafrique (FPRC) (not listed) a marginalized ex-Seleka armed group in Bangui. He is also a leader of the so-called “Defense Committee” of Bangui’s PK5 (known as PK5 Resistance’ or ‘Texas’) (not listed), which extorts money from residents and threatens and employs physical violence. Gaye was appointed on 2 November 2014 by Nourredine Adam (CFi.002) as rapporteur of the political coordination of the FPRC. On 9 May 2014, the Security Council Committee established by resolution 2127 (2013) on CAR included Adam on its sanctions list. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13308 +GAYE,HAROUN,,,,,,,,,30/01/1969,,,,O00065772,Central African Republic. Letter O followed by 3 zeros. Expires 30 Dec. 2019,,,Rapporteur of the political coordination of the Front Populaire pour la Renaissance de Centrafrique (FPRC),,,,,,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0008 (UN Ref):CFi.007 Gaye is a leader of the Front Populaire pour la Renaissance de Centrafrique (FPRC) (not listed) a marginalized ex-Seleka armed group in Bangui. He is also a leader of the so-called “Defense Committee” of Bangui’s PK5 (known as PK5 Resistance’ or ‘Texas’) (not listed), which extorts money from residents and threatens and employs physical violence. Gaye was appointed on 2 November 2014 by Nourredine Adam (CFi.002) as rapporteur of the political coordination of the FPRC. On 9 May 2014, the Security Council Committee established by resolution 2127 (2013) on CAR included Adam on its sanctions list. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13308 +GAZARYAN,Yuri,Garunovich,,,,,,,,23/07/1974,Baku,Azerbaijan,Russia,,,,,Member of the Board of Directors of Gazprombank JSC,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1635 (UK Statement of Reasons):Yuriy Garunovich Gazaryan is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by:(1) working as a director of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a director of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15579 +GAZARYAN,Yury,Garunovich,,,,,Юрий Гарунович Газарян,Cyrillic,Russian,23/07/1974,Baku,Azerbaijan,Russia,,,,,Member of the Board of Directors of Gazprombank JSC,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1635 (UK Statement of Reasons):Yuriy Garunovich Gazaryan is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by:(1) working as a director of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a director of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15579 +GAZIEV,Husan,Isaevich,,,,,Хусан Исаевич Газиев,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +GAZIEV,Husan,Isaevich,,,,,Хусан Исаевич Газиев,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +GAZIEV,Tarkhan,Isaevich,,,,,Тархан Исаевич Газиев,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +GAZIEV,Tarkhan,Isaevich,,,,,Тархан Исаевич Газиев,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +GAZIEV,TARKHAN,ISMAILOVICH,,,,,Тархан Исмаилович Газиев,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +GAZIEV,TARKHAN,ISMAILOVICH,,,,,Тархан Исмаилович Газиев,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +GAZPROMBANK,,,,,,,Газпромбанк (АО),Cyrillic,Russian,,,,,,,,,,"16 Nametkina Street, Bldg. 1",,,,,Moscow,117420,Russia,"(UK Sanctions List Ref):RUS1072 (UK Statement of Reasons):GAZPROMBANK is a Russian bank. GAZPROMBANK is or has been involved in obtaining a benefit from or supporting the Government of Russia by, carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):+7 (495) 913-74-74 (Website):www.GAZPROMBANK.ru",Entity,Primary name,,Russia,24/03/2022,24/03/2022,24/06/2022,15015 +GEKKIEV,Zaur,Dalkhatovich,,,,,Заур Далхатович Геккиев,,,12/02/1961,Lashkuta,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0346 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14291 +GENERAL BUREAU OF ATOMIC ENERGY (GBAE),,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0135 (UN Ref):KPe.007 The GBAE is responsible for the DPRK’s nuclear program, which includes the Yongbyon Nuclear Research Center and its 5 MWe (25 MWt) plutonium production research reactor, as well as its fuel fabrication and reprocessing facilities. The GBAE has held nuclear-related meetings and discussions with the International Atomic Energy Agency. GBAE is the primary DPRK government agency that oversees nuclear programs, including the operation of the Yongbyon Nuclear Research Center.",Entity,Primary name,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,31/12/2020,10912 +GENERAL BUREAU OF ATOMIC ENERGY (GBAE),,,,,,,,,,,,,,,,,,,,,,Haeudong,Pyongchen District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0135 (UN Ref):KPe.007 The GBAE is responsible for the DPRK’s nuclear program, which includes the Yongbyon Nuclear Research Center and its 5 MWe (25 MWt) plutonium production research reactor, as well as its fuel fabrication and reprocessing facilities. The GBAE has held nuclear-related meetings and discussions with the International Atomic Energy Agency. GBAE is the primary DPRK government agency that oversees nuclear programs, including the operation of the Yongbyon Nuclear Research Center.",Entity,Primary name,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,31/12/2020,10912 +GENERAL COMPANY FOR HOMS REFINERY,,,,,,,,,,,,,,,,,,,General Company for Homs Refinery Building,352 Tripoli Street,,,,Homs,,Syria,"(UK Sanctions List Ref):SYR0339 Oil and Gas sector (UK Statement of Reasons):Entity is subsidiary of General Corporation of Petroleum Products, a section of the Ministry of Petroleum and Mineral Resources. And as such provides financial support to Syrian regime. (Phone number):+963 3125 16401 (Email address):homsrefinery@mail.sy (Type of entity):General Corporation for Refining and Distribution of Petroleum Products. Ministry of Petroleum and Minerals",Entity,AKA,,Syria,23/07/2014,31/12/2020,31/12/2020,13029 +GENERAL DEPARTMENT OF ATOMIC ENERGY (GDAE),,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0135 (UN Ref):KPe.007 The GBAE is responsible for the DPRK’s nuclear program, which includes the Yongbyon Nuclear Research Center and its 5 MWe (25 MWt) plutonium production research reactor, as well as its fuel fabrication and reprocessing facilities. The GBAE has held nuclear-related meetings and discussions with the International Atomic Energy Agency. GBAE is the primary DPRK government agency that oversees nuclear programs, including the operation of the Yongbyon Nuclear Research Center.",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,31/12/2020,10912 +GENERAL DEPARTMENT OF ATOMIC ENERGY (GDAE),,,,,,,,,,,,,,,,,,,,,,Haeudong,Pyongchen District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0135 (UN Ref):KPe.007 The GBAE is responsible for the DPRK’s nuclear program, which includes the Yongbyon Nuclear Research Center and its 5 MWe (25 MWt) plutonium production research reactor, as well as its fuel fabrication and reprocessing facilities. The GBAE has held nuclear-related meetings and discussions with the International Atomic Energy Agency. GBAE is the primary DPRK government agency that oversees nuclear programs, including the operation of the Yongbyon Nuclear Research Center.",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,31/12/2020,10912 +GENERAL INTELLIGENCE DIRECTORATE,,,,,,,إدارة المخابرات العامة,,,,,,,,,,,,,,,,,Ministry of Interior Marjeh Square Damascus,,,"(UK Sanctions List Ref):SYR0300 Intelligence. Names of Director(s)/Management: Muhammad Dib Zaytun (listed 9 May 2011) (UK Statement of Reasons):Syrian government agency directly involved in repression. (Type of entity):Government (Subsidiaries):Ministry of Interior, Marjeh Square, Damascus",Entity,Primary name,,Syria,24/08/2011,31/12/2020,31/12/2020,12055 +GENERAL ORGANISATION OF RADIO AND TV,,,,,,,,,,,,,,,,,,,Al Oumaween Square,,,,P.O. Box 250,Damascus,,Syria,"(UK Sanctions List Ref):SYR0301 Media (UK Statement of Reasons):State-run agency subordinate to Syria’s Ministry of Information and as such supports and promotes its information policy. It is responsible for operating Syria’s state-owned television channels, two terrestrial and one satellite, as well as government radio stations. It has incited violence against the civilian population in Syria, serving as a propaganda instrument for the Assad regime and spreading disinformation.",Entity,Primary name,,Syria,26/06/2012,31/12/2020,31/12/2020,12695 +GENERAL ORGANISATION OF TOBACCO,,,,,,,,,,,,,,,,,,,General Establishment of Tobacco,Salhieh Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0302 General Establishment of Tobacco, Salhieh Street, Damascus (Designated 15 May 2012). Associations with the Makhlouf Family & therefore Assad (UK Statement of Reasons):Provides financial support to the Syrian regime. The General Organisation of Tobacco is wholly owned by the Syrian state. The profits that the organisation makes, including through the sale of licenses to market foreign brands of tobacco and taxes levied on imports of foreign brands of tobacco are transferred to the Syrian state.",Entity,Primary name,,Syria,15/05/2012,31/12/2020,31/12/2020,12673 +GENERAL PETROLEUM CORPORATION (GPC),,,,,,,,,,,,,,,,,,,New Sham - Building of Syrian Oil Company,,,,PO Box 60694,Damascus,,Syria,(UK Sanctions List Ref):SYR0303 Business sector is Oil and Gas. (UK Statement of Reasons):State-owned oil company. Provides financial support to the regime. (Phone number):+963 11 3141635. +963113141634 (Fax) (Email address):info@gpc-sy.com (Type of entity):State-owned (Parent company):General Petroleum Company (GPC),Entity,Primary name,,Syria,02/12/2011,31/12/2020,31/12/2020,12433 +GEOGRAPHICAL ORGANIZATION OF IRANIAN ARMED FORCES,,,,,,,,,,,,,,,,,,,Ferdowsi Avenue,,,,,Sarhang,,Iran,(UK Sanctions List Ref):INU0054 (UK Statement of Reasons):A subsidiary of MODAFL assessed to provide geospatial data for the ballistic missile programme (Type of entity):Public (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,31/12/2020,10648 +GEOGRAPHICAL ORGANIZATION OF IRANIAN ARMED FORCES,,,,,,,,,,,,,,,,,,,Sakhei Avenue,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0054 (UK Statement of Reasons):A subsidiary of MODAFL assessed to provide geospatial data for the ballistic missile programme (Type of entity):Public (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,31/12/2020,10648 +GEOPOLITICA,,,,,,,ГЕОПОЛИТИКА,Cyrillic,Russian,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0817 (UK Statement of Reasons):By spreading disinformation online, including the use of fictitious personae, GEOPOLITICA is responsible for engaging in, providing support for, or promoting policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Entity,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14768 +GEORGE,,,,,,,,,,15/01/1970,"Grozny, Chechen Republic",Russia,(1) Russia. (2) Georgia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0266 (UN Ref):QDi.406 Associated with Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116583",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13517 +GEORGIEVA,Elena,Alexandrovna,,,,,Елена Алехандровна Георгиева,,,15/02/1977,Moscow,Russia,Russia,,,,,Chairwoman of the Novikombank Board,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0249 (UK Statement of Reasons):Elena Alexandrovna Georgieva is the Chair of the Board of Novikombank. Novikombank is a subsidiary of Rostec (Russian Technologies State Corporation), a major Russian state owned defence conglomerate. Novikombank plays a significant role in the implementation of Russian government programmes aimed at the development of high technology industries in Russia by providing financing to key military and civilian projects. Georgieva is involved in obtaining a benefit from or supporting the Government of Russia by working as a director or equivalent of a company which carries on business in sectors of strategic significance to the Government of Russia, in particular the defence sector. (Gender):Female",Individual,Primary name,,Russia,24/02/2022,24/02/2022,24/02/2022,14194 +GERASIMOV,Valery,Vasilevich,,,,,Вале́рий Васи́льевич Гера́симов,,,08/09/1955,Kazan,Russia,Russia,,,,,(1) General of the Army (2) Chief of the General Staff of the Armed Forces of the Russian Federation.(3) First Deputy Minister of Defence of the Russian Federation,,,,,,,,,(UK Sanctions List Ref):RUS0096 (UK Statement of Reasons):Chief of the General Staff of the Armed Forces of the Russian Federation. First Deputy minister of Defence of the Russian Federation. General of the Army. Responsible for the massive deployment of Russian troops along the border with Ukraine and lack of de-escalation of the situation. (Gender):Male,Individual,Primary name,,Russia,29/04/2014,31/12/2020,16/09/2022,12958 +GEREMEYEV,Suleiman,Sadulayevich,,,,,Сулейман Садулаевич Геремеев,,,20/01/1971,Grozny,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0871 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14822 +GERGES,Fawaz,Mikhail,,,,,,,,,,,Syria,,,,,CEO of AL-SAYYAD COMPANY FOR GUARDING AND PROTECTION SERVICES,,,,,,,,Syria,"(UK Sanctions List Ref):RUS1546 (UK Statement of Reasons):Fawaz Mikhail GERGES is the CEO of AL-SAYYAD COMPANY FOR GUARDING AND PROTECTION SERVICES. GERGES is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he is engaging in and providing support for actions or policies that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty or independence of Ukraine. By virtue of his position, he is responsible for the recruitment of fighters and mercenaries in Syria to fight alongside Russian forces in Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15474 +GERMANOVA,Olga,Mikhailovna,,,,,Ольга Михайловна Германова,,,26/09/1961,Peny,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0347 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14292 +GETTA,Anton,Alexandrovich,,,,,Антон Александрович Гетта,,,29/04/1980,Rostov-on-Don,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0348 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14293 +GEYE,Aroun,,,,,,,,,30/01/1968,,,,O00065772,Central African Republic. Letter O followed by 3 zeros. Expires 30 Dec. 2019,,,Rapporteur of the political coordination of the Front Populaire pour la Renaissance de Centrafrique (FPRC),,,,,,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0008 (UN Ref):CFi.007 Gaye is a leader of the Front Populaire pour la Renaissance de Centrafrique (FPRC) (not listed) a marginalized ex-Seleka armed group in Bangui. He is also a leader of the so-called “Defense Committee” of Bangui’s PK5 (known as PK5 Resistance’ or ‘Texas’) (not listed), which extorts money from residents and threatens and employs physical violence. Gaye was appointed on 2 November 2014 by Nourredine Adam (CFi.002) as rapporteur of the political coordination of the FPRC. On 9 May 2014, the Security Council Committee established by resolution 2127 (2013) on CAR included Adam on its sanctions list. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13308 +GEYE,Aroun,,,,,,,,,30/01/1968,,,,O00065772,Central African Republic. Letter O followed by 3 zeros. Expires 30 Dec. 2019,,,Rapporteur of the political coordination of the Front Populaire pour la Renaissance de Centrafrique (FPRC),,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0008 (UN Ref):CFi.007 Gaye is a leader of the Front Populaire pour la Renaissance de Centrafrique (FPRC) (not listed) a marginalized ex-Seleka armed group in Bangui. He is also a leader of the so-called “Defense Committee” of Bangui’s PK5 (known as PK5 Resistance’ or ‘Texas’) (not listed), which extorts money from residents and threatens and employs physical violence. Gaye was appointed on 2 November 2014 by Nourredine Adam (CFi.002) as rapporteur of the political coordination of the FPRC. On 9 May 2014, the Security Council Committee established by resolution 2127 (2013) on CAR included Adam on its sanctions list. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13308 +GEYE,Aroun,,,,,,,,,30/01/1969,,,,O00065772,Central African Republic. Letter O followed by 3 zeros. Expires 30 Dec. 2019,,,Rapporteur of the political coordination of the Front Populaire pour la Renaissance de Centrafrique (FPRC),,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0008 (UN Ref):CFi.007 Gaye is a leader of the Front Populaire pour la Renaissance de Centrafrique (FPRC) (not listed) a marginalized ex-Seleka armed group in Bangui. He is also a leader of the so-called “Defense Committee” of Bangui’s PK5 (known as PK5 Resistance’ or ‘Texas’) (not listed), which extorts money from residents and threatens and employs physical violence. Gaye was appointed on 2 November 2014 by Nourredine Adam (CFi.002) as rapporteur of the political coordination of the FPRC. On 9 May 2014, the Security Council Committee established by resolution 2127 (2013) on CAR included Adam on its sanctions list. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13308 +GEYE,Aroun,,,,,,,,,30/01/1969,,,,O00065772,Central African Republic. Letter O followed by 3 zeros. Expires 30 Dec. 2019,,,Rapporteur of the political coordination of the Front Populaire pour la Renaissance de Centrafrique (FPRC),,,,,,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0008 (UN Ref):CFi.007 Gaye is a leader of the Front Populaire pour la Renaissance de Centrafrique (FPRC) (not listed) a marginalized ex-Seleka armed group in Bangui. He is also a leader of the so-called “Defense Committee” of Bangui’s PK5 (known as PK5 Resistance’ or ‘Texas’) (not listed), which extorts money from residents and threatens and employs physical violence. Gaye was appointed on 2 November 2014 by Nourredine Adam (CFi.002) as rapporteur of the political coordination of the FPRC. On 9 May 2014, the Security Council Committee established by resolution 2127 (2013) on CAR included Adam on its sanctions list. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13308 +GEYE,Haroun,,,,,,,,,30/01/1968,,,,O00065772,Central African Republic. Letter O followed by 3 zeros. Expires 30 Dec. 2019,,,Rapporteur of the political coordination of the Front Populaire pour la Renaissance de Centrafrique (FPRC),,,,,,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0008 (UN Ref):CFi.007 Gaye is a leader of the Front Populaire pour la Renaissance de Centrafrique (FPRC) (not listed) a marginalized ex-Seleka armed group in Bangui. He is also a leader of the so-called “Defense Committee” of Bangui’s PK5 (known as PK5 Resistance’ or ‘Texas’) (not listed), which extorts money from residents and threatens and employs physical violence. Gaye was appointed on 2 November 2014 by Nourredine Adam (CFi.002) as rapporteur of the political coordination of the FPRC. On 9 May 2014, the Security Council Committee established by resolution 2127 (2013) on CAR included Adam on its sanctions list. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13308 +GEYE,Haroun,,,,,,,,,30/01/1968,,,,O00065772,Central African Republic. Letter O followed by 3 zeros. Expires 30 Dec. 2019,,,Rapporteur of the political coordination of the Front Populaire pour la Renaissance de Centrafrique (FPRC),,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0008 (UN Ref):CFi.007 Gaye is a leader of the Front Populaire pour la Renaissance de Centrafrique (FPRC) (not listed) a marginalized ex-Seleka armed group in Bangui. He is also a leader of the so-called “Defense Committee” of Bangui’s PK5 (known as PK5 Resistance’ or ‘Texas’) (not listed), which extorts money from residents and threatens and employs physical violence. Gaye was appointed on 2 November 2014 by Nourredine Adam (CFi.002) as rapporteur of the political coordination of the FPRC. On 9 May 2014, the Security Council Committee established by resolution 2127 (2013) on CAR included Adam on its sanctions list. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13308 +GEYE,Haroun,,,,,,,,,30/01/1969,,,,O00065772,Central African Republic. Letter O followed by 3 zeros. Expires 30 Dec. 2019,,,Rapporteur of the political coordination of the Front Populaire pour la Renaissance de Centrafrique (FPRC),,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0008 (UN Ref):CFi.007 Gaye is a leader of the Front Populaire pour la Renaissance de Centrafrique (FPRC) (not listed) a marginalized ex-Seleka armed group in Bangui. He is also a leader of the so-called “Defense Committee” of Bangui’s PK5 (known as PK5 Resistance’ or ‘Texas’) (not listed), which extorts money from residents and threatens and employs physical violence. Gaye was appointed on 2 November 2014 by Nourredine Adam (CFi.002) as rapporteur of the political coordination of the FPRC. On 9 May 2014, the Security Council Committee established by resolution 2127 (2013) on CAR included Adam on its sanctions list. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13308 +GEYE,Haroun,,,,,,,,,30/01/1969,,,,O00065772,Central African Republic. Letter O followed by 3 zeros. Expires 30 Dec. 2019,,,Rapporteur of the political coordination of the Front Populaire pour la Renaissance de Centrafrique (FPRC),,,,,,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0008 (UN Ref):CFi.007 Gaye is a leader of the Front Populaire pour la Renaissance de Centrafrique (FPRC) (not listed) a marginalized ex-Seleka armed group in Bangui. He is also a leader of the so-called “Defense Committee” of Bangui’s PK5 (known as PK5 Resistance’ or ‘Texas’) (not listed), which extorts money from residents and threatens and employs physical violence. Gaye was appointed on 2 November 2014 by Nourredine Adam (CFi.002) as rapporteur of the political coordination of the FPRC. On 9 May 2014, the Security Council Committee established by resolution 2127 (2013) on CAR included Adam on its sanctions list. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13308 +GHABACHE,Hassan,,,,,,,,,00/00/1971,Damascus,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0368 (UK Statement of Reasons):Minister of Health. Appointed in August 2020. As a Government Minister shares resposnbility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,06/11/2020,31/12/2020,14/02/2022,13998 +GHADER,El Hadj,Ould,Abdel,,,,,,,00/00/1981,,Saudi Arabia,Mauritania,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0093 (UN Ref):QDi.298 Pakistan-based senior Al-Qaida (QDe.004) leader also associated with The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Wanted by Mauritanian authorities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555823,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/09/2011,15/09/2011,31/12/2020,12148 +GHAFARI,Sanaullah,,,,,Doctor,ثناء اللہ غفاری,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +GHAFARI,Sanaullah,,,,,Doctor,ثناء اللہ غفاری,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,Kunduz,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +GHAFARI,Shahab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,Primary name variation,,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +GHAFARI,Shahab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,Kunduz,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,Primary name variation,,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +GHAFARI,Shihab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,Primary name variation,,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +GHAFARI,Shihab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,Kunduz,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,Primary name variation,,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +GHAILANI,Abubakary,Khalfan,Ahmed,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +GHAILANI,Abubakary,Khalfan,Ahmed,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +GHAILANI,Abubakary,Khalfan,Ahmed,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +GHAILANI,Abubakary,Khalfan,Ahmed,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +GHAILANI,Ahmed,,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +GHAILANI,Ahmed,,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +GHAILANI,Ahmed,,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +GHAILANI,Ahmed,,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +GHAILANI,AHMED,KHALFAN,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +GHAILANI,AHMED,KHALFAN,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +GHAILANI,AHMED,KHALFAN,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +GHAILANI,AHMED,KHALFAN,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +GHAIR,Alim,,,,,Doctor,,,,00/00/1970,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +GHAIR,Alim,,,,,Doctor,,,,00/00/1971,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +GHAIR,Alim,,,,,Doctor,,,,00/00/1972,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +GHAIR,Alim,,,,,Doctor,,,,00/00/1973,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +GHALAWANJI,Omar,Ibrahim,,,,,,,,00/00/1954,Tartous,Syria,,,,,,Former Minister of Local Administration. Former Vice Prime Minister for Service Affairs,,,,,,,,,"(UK Sanctions List Ref):SYR0195 (UK Statement of Reasons):Former Vice Prime Minister for Services Affairs, former Minister of Local Administration, in office until 3 July 2016. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,26/03/2012,31/12/2020,31/12/2020,12637 +GHALIB,NAYIF,SHINDAKH,THAMIR,,,,نايف شنداخ ثامر غالب,,,,,,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0106 (UN Ref):IQi.045,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7604 +GHANEM,Ali,,,,,,,,,00/00/1963,Damascus,Syria,,,,,,Former Minister of Petroleum and Mineral Resources,,,,,,,,,"(UK Sanctions List Ref):SYR0013 (UK Statement of Reasons):Former Minister for Petroleum and Mineral Resources. As a former Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population. (Gender):Male",Individual,Primary name,,Syria,14/11/2016,31/12/2020,31/12/2020,13399 +GHANEM,Ghassan,Ahmed,,,,,,,,,,,,,,,,Commander of 155th Missile Brigade,,,,,,,,,"(UK Sanctions List Ref):SYR0053 (UK Statement of Reasons):Member of the Syrian Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011. Major General and commander of the 155th Missile Brigade. Associated with Maher al-Assad through his role in the 155th Missile Brigade. As commander of the 155th Missile Brigade, he is supporting the Syrian regime and he is responsible for the violent repression against the civilian population. Responsible for firing Scud Missiles at various civilian sites between January and March 2013. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,31/12/2020,13161 +GHANI SAZI URANIUM COMPANY,,,,,,,,,,,,,,,,,,,,Qarqavol Close,20th Street,,,Tehran,,,(UK Sanctions List Ref):INU0066 (UK Statement of Reasons):Known to have production contracts with Iran Centrifuge Technology Company (TESA). (Parent company):(1) Novin Energy (2) TAMAS,Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12254 +GHANNAN,Ghassan,Ahmed,,,,,,,,,,,,,,,,Commander of 155th Missile Brigade,,,,,,,,,"(UK Sanctions List Ref):SYR0053 (UK Statement of Reasons):Member of the Syrian Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011. Major General and commander of the 155th Missile Brigade. Associated with Maher al-Assad through his role in the 155th Missile Brigade. As commander of the 155th Missile Brigade, he is supporting the Syrian regime and he is responsible for the violent repression against the civilian population. Responsible for firing Scud Missiles at various civilian sites between January and March 2013. (Gender):Male",Individual,Primary name,,Syria,22/10/2014,31/12/2020,31/12/2020,13161 +GHARAGAHE SAZANDEGI GHAEM,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0148 (UN Ref):IRe.022 Owned or controlled by Khatam al-Anbiya (KAA). [Old Reference # E.29.II.2] (Parent company):Khatam al-Anbiya (KAA),Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11135 +GHARIB,Omar,,,,,,,,,25/06/1964,Oran,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0299 (UN Ref):QDi.323 A veteran member of the ‘Chechen Network’ (not listed) and other terrorist groups. He was convicted of his role and membership in the ‘Chechen Network’ in France in 2006. Joined Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137) in October 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13089 +GHARIB,Omar,,,,,,,,,05/12/1965,Oran,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0299 (UN Ref):QDi.323 A veteran member of the ‘Chechen Network’ (not listed) and other terrorist groups. He was convicted of his role and membership in the ‘Chechen Network’ in France in 2006. Joined Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137) in October 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13089 +GHARIB,FADIL,MAHMUD,,,,,فاضل محمود غريب,,,00/00/1944,Dujail,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0108 (UN Ref):IQi.047,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7605 +GHASEMI,Rostam,,,,,,,,,05/05/1964,Sargh,Iran,,,,,,(1) Former Minister of Oil (2) Former Commander of Khatam al Anbiya Construction,,,,,,,,,"(UK Sanctions List Ref):INU0036 (UK Statement of Reasons):Former Commander of Khatam al-Anbiya, part of the IRGC, and provided support to the Ministry of Defence and Armed Forces Logistics of Iran as an adviser to the Minister of Defence. (Gender):Male",Individual,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11236 +GHASEMI,Rostam,,,,,,,,,00/00/1961,Sargh,Iran,,,,,,(1) Former Minister of Oil (2) Former Commander of Khatam al Anbiya Construction,,,,,,,,,"(UK Sanctions List Ref):INU0036 (UK Statement of Reasons):Former Commander of Khatam al-Anbiya, part of the IRGC, and provided support to the Ministry of Defence and Armed Forces Logistics of Iran as an adviser to the Minister of Defence. (Gender):Male",Individual,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11236 +GHASSEMI,Rostam,,,,,,,,,05/05/1964,Sargh,Iran,,,,,,(1) Former Minister of Oil (2) Former Commander of Khatam al Anbiya Construction,,,,,,,,,"(UK Sanctions List Ref):INU0036 (UK Statement of Reasons):Former Commander of Khatam al-Anbiya, part of the IRGC, and provided support to the Ministry of Defence and Armed Forces Logistics of Iran as an adviser to the Minister of Defence. (Gender):Male",Individual,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11236 +GHASSEMI,Rostam,,,,,,,,,00/00/1961,Sargh,Iran,,,,,,(1) Former Minister of Oil (2) Former Commander of Khatam al Anbiya Construction,,,,,,,,,"(UK Sanctions List Ref):INU0036 (UK Statement of Reasons):Former Commander of Khatam al-Anbiya, part of the IRGC, and provided support to the Ministry of Defence and Armed Forces Logistics of Iran as an adviser to the Minister of Defence. (Gender):Male",Individual,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11236 +GHAWIL,Khalifa,Mohamed,,,,,,,,01/01/1956,Misurata,Libya,Libya,(1) A005465 (2) J690P666,(1) Issued 12/04/2015. Expired 11/04/2017. (2) Libya. Issued 12 June 2016. Expires 11 June 2024.,,,,Qasr Ahmed Street,Misurata,,,,,,Libya,"(UK Sanctions List Ref):LIB0032 (UK Statement of Reasons):In his capacity as the so-called 'Prime Minister and Defence Minister' off the internationally unrecognised General National Congress ('GNC')(also known as the 'National Salvation Government'), and therefore responsible for their activities. Ghwell has engaged in activity threatening the peace, security and stability of Libya and undermining its political transition. (Gender):Male",Individual,AKA,,Libya,01/04/2016,31/12/2020,16/06/2022,13347 +GHAYASUDIN,Sayyed,,,,,,,,,00/00/1961,"Kohistan District, Faryab Province",Afghanistan,Afghanistan,,,,,(1) Education Minister under the Taliban regime. (2) Minister of Haj and Religious Affairs under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0056 (UN Ref):TAi.072 Taliban member responsible for Faryab, Jawzjan, Sari Pul and Balkh Provinces, Afghanistan as at June 2010. Involved in drug trafficking. Member of Taliban Supreme Council and Taliban Military Council as at December 2009. Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,6943 +GHAZAL,Mohammad,Walid,,,,,,,,00/00/1951,Aleppo,Syria,Syria,,,,,Former Minister for Housing and Urban Development,,,,,,,,,"(UK Sanctions List Ref):SYR0169 (UK Statement of Reasons):Former Minister of Housing and Urban Development. As a Former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,21/10/2014,31/12/2020,31/12/2020,13154 +GHAZI MOHAMMAD,Arefullah,Aref,,,,Maulavi,عارف الله عارف غازی محمد,,,00/00/1958,"Lawang (Lawand) village, Gelan District, Ghazni Province",Afghanistan,Afghanistan,,,,,(1) Deputy Minister of Finance under the Taliban regime. (2) Governor of Ghazni Province under the Taliban regime. (3) Governor of Paktia Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0029 (UN Ref):TAi.030 Directs Taliban ""front"" in Gelan District, Ghazni Province, Afghanistan as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7025 +GHAZY,Fezzaa,Hishan,,,,,,,,00/00/1974,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +GHAZY,Fezzaa,Hishan,,,,,,,,00/00/1974,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +GHAZY,Fezzaa,Hishan,,,,,,,,00/00/1975,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +GHAZY,Fezzaa,Hishan,,,,,,,,00/00/1975,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +GHAZZY,Abu,,,,,,,,,00/00/1974,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +GHAZZY,Abu,,,,,,,,,00/00/1974,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +GHAZZY,Abu,,,,,,,,,00/00/1975,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +GHAZZY,Abu,,,,,,,,,00/00/1975,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +GHEDEIR,AMOR,MOHAMED,,,,,عمر محمد قدير,,,12/12/1965,"Deb-Deb, Amenas, Wilaya (province) of Illizi",Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0137 (UN Ref):QDi.250 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Located in Northern Mali as of Jun. 2008. Mother’s name is Benarouba Bachira. Father’s name is Mabrouk. He usurped the identity of Abid Hammadou, who allegedly died in Chad in 2004. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529259",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,11/02/2022,10691 +GHEDEIR,AMOR,MOHAMED,,,,,عمر محمد قدير,,,00/00/1958,"Deb-Deb, Amenas, Wilaya (province) of Illizi",Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0137 (UN Ref):QDi.250 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Located in Northern Mali as of Jun. 2008. Mother’s name is Benarouba Bachira. Father’s name is Mabrouk. He usurped the identity of Abid Hammadou, who allegedly died in Chad in 2004. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529259",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,11/02/2022,10691 +GHERMAY,Ermies,,,,,,,,,00/00/1980,,Eritrea,Eritrea,,,,,Leader of a transnational trafficking network,Tarig sure no. 51,,,,,Tripoli,,Libya,"(UK Sanctions List Ref):LIB0049 (UN Ref):LYi.021 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13671 +GHIAS,Sayed,,,,,,,,,00/00/1961,"Kohistan District, Faryab Province",Afghanistan,Afghanistan,,,,,(1) Education Minister under the Taliban regime. (2) Minister of Haj and Religious Affairs under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0056 (UN Ref):TAi.072 Taliban member responsible for Faryab, Jawzjan, Sari Pul and Balkh Provinces, Afghanistan as at June 2010. Involved in drug trafficking. Member of Taliban Supreme Council and Taliban Military Council as at December 2009. Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,6943 +GHILANI,Ahmad,Khalafan,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +GHILANI,Ahmad,Khalafan,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +GHILANI,Ahmad,Khalafan,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +GHILANI,Ahmad,Khalafan,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +GHIRMAY,Ermias,,,,,,,,,00/00/1980,,Eritrea,Eritrea,,,,,Leader of a transnational trafficking network,Tarig sure no. 51,,,,,Tripoli,,Libya,"(UK Sanctions List Ref):LIB0049 (UN Ref):LYi.021 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13671 +GHOBASH,Hassan,,,,,,,,,00/00/1971,Damascus,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0368 (UK Statement of Reasons):Minister of Health. Appointed in August 2020. As a Government Minister shares resposnbility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,06/11/2020,31/12/2020,14/02/2022,13998 +GHORB KARBALA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0149 (UN Ref):IRe.023 Owned or controlled by Khatam al-Anbiya (KAA). [Old Reference # E.29.II.3] (Parent company):Khatam al-Anbiya (KAA),Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11136 +GHORB NOOH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0150 (UN Ref):IRe.024 Owned or controlled by Khatam al-Anbiya (KAA). [Old Reference # E.29.II.4] (Parent company):Khatam al-Anbiya (KAA),Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11137 +GHOUSUDDIN,Sayed,Ghiasuddin,Sayed,,,,,,,00/00/1961,"Kohistan District, Faryab Province",Afghanistan,Afghanistan,,,,,(1) Education Minister under the Taliban regime. (2) Minister of Haj and Religious Affairs under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0056 (UN Ref):TAi.072 Taliban member responsible for Faryab, Jawzjan, Sari Pul and Balkh Provinces, Afghanistan as at June 2010. Involved in drug trafficking. Member of Taliban Supreme Council and Taliban Military Council as at December 2009. Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,6943 +GHRIWATI,Mohammad,Ziad,,,,Colonel,,,,,,,,,,,,"Engineer, SSRC",,,,,,,,,"(UK Sanctions List Ref):SYR0150 Mohammad Ziad Ghriwati is not currently designated by US Treasury. (UK Statement of Reasons):Mohammad Ziad Ghriwati is an engineer at the Syrian Scientific Studies and Research Centre. He is involved in chemical weapons proliferation and delivery. Mohammad Ziad Ghriwati has been involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name,,Syria,18/07/2017,31/12/2020,13/05/2022,13502 +GHUL,Hassan,,,,,,حسن غول,,,00/08/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +GHUL,Hassan,,,,,,حسن غول,,,00/09/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +GHUL,Hassan,,,,,,حسن غول,,,00/00/1976,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +GHULAM NABI,Mohammed,Omar,,,,Mullah,محمد عمر غلام نبی,,,00/00/1966,"(1) Maiwand District, Kandahar Province. (2) Naw Deh village, Deh Rawud District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,"Director of Administrative Affairs under the Taliban regime. Leader of the Faithful ('Amir ul-Mumineen'), Afghanistan",,,,,,,,,"(UK Sanctions List Ref):AFG0008 (UN Ref):TAi.004 Father's name is Ghulam Nabi, also known as Mullah Musafir. Left eye missing. Brother-in-law of Ahmad Jan Akhundzada Shukoor Akhundzada (TAi.109). Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of April 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,03/05/2000,12/04/2000,01/02/2021,7387 +GHULAM NABI,Mohammed,Omar,,,,Mullah,محمد عمر غلام نبی,,,00/00/1953,"(1) Maiwand District, Kandahar Province. (2) Naw Deh village, Deh Rawud District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,"Director of Administrative Affairs under the Taliban regime. Leader of the Faithful ('Amir ul-Mumineen'), Afghanistan",,,,,,,,,"(UK Sanctions List Ref):AFG0008 (UN Ref):TAi.004 Father's name is Ghulam Nabi, also known as Mullah Musafir. Left eye missing. Brother-in-law of Ahmad Jan Akhundzada Shukoor Akhundzada (TAi.109). Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of April 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,03/05/2000,12/04/2000,01/02/2021,7387 +GHULAM NABI,Mohammed,Omar,,,,Mullah,محمد عمر غلام نبی,,,00/00/1960,"(1) Maiwand District, Kandahar Province. (2) Naw Deh village, Deh Rawud District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,"Director of Administrative Affairs under the Taliban regime. Leader of the Faithful ('Amir ul-Mumineen'), Afghanistan",,,,,,,,,"(UK Sanctions List Ref):AFG0008 (UN Ref):TAi.004 Father's name is Ghulam Nabi, also known as Mullah Musafir. Left eye missing. Brother-in-law of Ahmad Jan Akhundzada Shukoor Akhundzada (TAi.109). Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of April 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,03/05/2000,12/04/2000,01/02/2021,7387 +GHWELL,Khalifa,,,,,,,,,01/01/1956,Misurata,Libya,Libya,(1) A005465 (2) J690P666,(1) Issued 12/04/2015. Expired 11/04/2017. (2) Libya. Issued 12 June 2016. Expires 11 June 2024.,,,,Qasr Ahmed Street,Misurata,,,,,,Libya,"(UK Sanctions List Ref):LIB0032 (UK Statement of Reasons):In his capacity as the so-called 'Prime Minister and Defence Minister' off the internationally unrecognised General National Congress ('GNC')(also known as the 'National Salvation Government'), and therefore responsible for their activities. Ghwell has engaged in activity threatening the peace, security and stability of Libya and undermining its political transition. (Gender):Male",Individual,Primary name,,Libya,01/04/2016,31/12/2020,16/06/2022,13347 +GI,Kim,Myong,,,,,,,,25/05/1972,,,North Korea,563120630,Date of Expiration: 20.3.2018,,,Tanchon Commercial Bank Representative,,,,,,,,,(UK Sanctions List Ref):DPR0244 (UN Ref):KPi.025,Individual,AKA,Good quality,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13335 +GI,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0030 (UK Statement of Reasons):Al-Gama'a al-Islamiyya (GI) is an Egyptian Sunni terrorist organisation who were responsible for a number of terrorist attacks in the 1980s and 1990s,Entity,AKA,,Counter-Terrorism (International),02/11/2001,31/12/2020,21/01/2021,6988 +GIA,,,,,,,,,,,,,,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0036 (UN Ref):QDe.006 Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281693,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6963 +GIBATDINOV,Ayrat,Minerasikhovich,,,,,Айрат Минерасихович ГИБАТДИНОВ,,,16/01/1986,Ulyanovsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0926 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14877 +GICM,,,,,,,,,,,,,,,,,,,,,,,,,,Morocco,(UK Sanctions List Ref):AQD0068 (UN Ref):QDe.089 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282051,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/10/2002,10/10/2002,31/12/2020,7149 +GICT,,,,,,,,,,,,,,,,,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0082 (UN Ref):QDe.090 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278433,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/10/2002,10/10/2002,31/12/2020,7148 +GIGEL,Tatyana,Anatolyevna,,,,,Татьяна Анатольевна ГИГЕЛЬ,,,27/02/1960,"Uymen, Choi District, Altai Territory",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0938 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14889 +GILMUTDINOV,Dinar,Zagitovich,,,,,Динар Загитович Гильмутдинов,,,10/08/1969,Chebykovo,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0349 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14294 +GILMUTDINOV,Ildar,Irekovich,,,,,Ильдар Ирекович Гильмутдинов,,,03/09/1962,Klyancheevo,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0350 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14295 +GIMBATOV,Andrey,Petrovich,,,,,Андрей Петрович Гимбатов,,,19/07/1979,Volgograd,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0351 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14296 +GIRKIN,Igor,Vsevolodovich,,,,,Игорь Всеволодович ГИРКИН,,,17/12/1970,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0097 (UK Statement of Reasons):Identified as staff of the Main Intelligence Director of the General Staff of the Armed Forces of the Russian Federation (GRU). He was involved in incidents in Sloviansk. Head of 'Novorussia' public movement. Former 'Ministry of Defence' of the so-called 'Donetsk People's Republic'. Organised on 4 November 2016, a Russian March in Moscow for Russian nationalists who support the separatists in Ukraine. Remains active in supporting separatist activity in Eastern Ukraine. One of the organisers of the 'Russian March' in November 2016. (Gender):Male",Individual,Primary name,,Russia,29/04/2014,31/12/2020,16/09/2022,12964 +GIZAY,Svetlana,Fedorovna,,,,,,,,24/01/1965,Kehychivka,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1270 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15222 +GIZAY,Svetlana,Fiodorovna,,,,,ГИЗАЙ Светлана Федоровна,Cyrillic,Russian,24/01/1965,Kehychivka,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1270 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15222 +GLADKAYA,Liudmila,,,,,,,,,30/06/1983,,,Belarus,,,,,"Journalist, Belarus Segodnya (Belarus Today)",Belarus Segodnya,10a Khmelnitskogo St,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0116 (UK Statement of Reasons):Lyudmila GLADKAYA is a propagandist of the Lukashenko regime. She is a journalist publishing in “Belarus Segodnya"", the official (state-owned) newspaper of the Presidential Administration. Her published opinions/articles and broadcasts are one of the main mouthpieces of state propaganda belittling and discrediting independent journalists and opposition supporters who seek to demonstrate evidence of serious human rights violations committed by the regime. There are recorded instances where she has interrogated persons and her journalism is specifically endorsed by the Lukashenko regime. GLADKAYA therefore is or has been involved in repressing civil society and democratic opposition in Belarus, and for serious human rights violations in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,02/12/2021,14159 +GLADKAYA,Lyudmila,,,,,,,,,30/06/1983,,,Belarus,,,,,"Journalist, Belarus Segodnya (Belarus Today)",Belarus Segodnya,10a Khmelnitskogo St,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0116 (UK Statement of Reasons):Lyudmila GLADKAYA is a propagandist of the Lukashenko regime. She is a journalist publishing in “Belarus Segodnya"", the official (state-owned) newspaper of the Presidential Administration. Her published opinions/articles and broadcasts are one of the main mouthpieces of state propaganda belittling and discrediting independent journalists and opposition supporters who seek to demonstrate evidence of serious human rights violations committed by the regime. There are recorded instances where she has interrogated persons and her journalism is specifically endorsed by the Lukashenko regime. GLADKAYA therefore is or has been involved in repressing civil society and democratic opposition in Belarus, and for serious human rights violations in Belarus. (Gender):Female",Individual,Primary name,,Belarus,02/12/2021,02/12/2021,02/12/2021,14159 +GLADKIKH,Boris,Mikhailovich,,,,,Борис Михайлович Гладких,,,16/02/1983,Olovyannaya,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0352 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14297 +GLAZKOVA,Angelica,Egorovna,,,,,Глазкова Анжелика Егоровна,,,28/12/1968,Kostroma,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0353 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14298 +GLAZYEV,Sergey,Yurievich,,,,,Сергей Юрьевич ГЛАЗЬЕВ,,,01/01/1961,Zaprozhye,Ukrainian SSR (now Ukraine),Ukraine,,,,,Adviser to the President of the Russian Federation,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0098 (UK Statement of Reasons):Former Adviser to the President of the Russian Federation. Publicly called for the annexation of Crimea. Since October 2019 Minister for Integration and Macroeconomics in the Eurasian Economic Commission. (Gender):Male,Individual,Primary name,,Russia,21/03/2014,31/12/2020,16/09/2022,12936 +GLEBOVA,Lyubov,Nikolayevna,,,,,Любовь Николаевна ГЛЕБОВА,,,07/03/1960,Arzamas,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0883 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14834 +GLOBAL RELIEF FOUNDATION,,,,,,,,,,,,,,,,,,,9935 South 76th Avenue,Unit 1,,,Bridgeview,Illinois,60455,United States,"(UK Sanctions List Ref):AQD0043 (UN Ref):QDe.091 Other Foreign Locations: Afghanistan, Bangladesh, Eritrea, Ethiopia, India, Iraq, West Bank and Gaza, Somalia and Syria. Federal Employer Identification Number (United States of America): 36-3804626. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,22/10/2002,22/10/2002,31/12/2020,7141 +GLOBAL RELIEF FOUNDATION,,,,,,,,,,,,,,,,,,,PO Box 1406,,,,Bridgeview,Illinois,60455,United States,"(UK Sanctions List Ref):AQD0043 (UN Ref):QDe.091 Other Foreign Locations: Afghanistan, Bangladesh, Eritrea, Ethiopia, India, Iraq, West Bank and Gaza, Somalia and Syria. Federal Employer Identification Number (United States of America): 36-3804626. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,22/10/2002,22/10/2002,31/12/2020,7141 +GLOCOM,,,,,,,,,,,,,,,,,,,Room 818,Pothonggang Hotel,,Ansan-Dong,Pyongchon district,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0064 Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. (UK Statement of Reasons):Pan Systems has assisted in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related materiel to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau, which has been designated by the United Nations.",Entity,AKA,,Democratic People's Republic of Korea,16/10/2017,31/12/2020,31/12/2020,13553 +GLOCOM INTERNATIONAL GOLDEN SERVICES,,,,,,,,,,,,,,,,,,,Room 818,Pothonggang Hotel,,Ansan-Dong,Pyongchon district,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0064 Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. (UK Statement of Reasons):Pan Systems has assisted in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related materiel to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau, which has been designated by the United Nations.",Entity,AKA,,Democratic People's Republic of Korea,16/10/2017,31/12/2020,31/12/2020,13553 +GLOTOV,Yevgeniy,Eduardovich,,,,,ГЛОТОВ Евгений Эдуардович,Cyrillic,Russian,19/09/1987,,,,,,,,Deputy Director of Newsfront,,,,,,,,,"(UK Sanctions List Ref):RUS1499 (UK Statement of Reasons):Yevgeniy GLOTOV (hereafter referred to as GLOTOV) is the deputy director of Newsfront. Newsfront is a news organisation known for publishing disinformation about the war against Ukraine, thus supporting and promoting actions which destabilise Ukraine. By virtue of his role and actions GLOTOV is both engaging in, supporting and promoting policies and/or actions which destabilise Ukraine. (Gender):Male",Individual,Primary name,,Russia,04/07/2022,04/07/2022,04/07/2022,15439 +GNTS RF FGUP TSNIIKHM,,,,,,,,,,,,,,,,,,,16a Nagatinskaya Street,,,,,Moscow,,Russia,"(UK Sanctions List Ref):CYB0022 (UK Statement of Reasons):The Central Scientific Research Institute of Chemistry and Mechanics (TsNIIKhM) was responsible for a cyber attack on a petro-chemical company in August 2017. The cyber attack gained remote access to the Safety Instrumented Systems connected to the Industrial Control System of a petrochemical refinery. This shut down the plant for over a week. There is evidence to suggest that the shutdown was inadvertent while TsNIIKhM were attempting to cause a highly dangerous physical consequence through disabling the safety systems, which could have included an explosion. These actions caused economic loss and prejudice to commercial interests and/or was intended to undermine the security and prosperity of a country other than the United Kingdom. (Type of entity):Government-owned technical research institution",Entity,Primary name variation,,Cyber,24/03/2022,24/03/2022,24/03/2022,15044 +GO MAL SAN 4,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0105 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK vessel M/V CHON MA SAN was involved in ship-to-ship transfer operations for oil in mid-November 2017. Listed as asset of Korea Achim Shipping Co (OFSI ID: 13632, UN Reference Number: UN Ref KPe.061) (IMO number):8660313 (Current owners):Korea Achim Shipping Co (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):2808 (Length of ship):83 (Year built):2005",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13656 +GODANE,,,,,,,,,,10/07/1977,Hargeysa,Somalia,Somalia,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0005 (UN Ref):SOi.004,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11091 +GODANI,,,,,,,,,,10/07/1977,Hargeysa,Somalia,Somalia,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0005 (UN Ref):SOi.004,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11091 +GOGIASHVILI,Ekaterina,,,,,,,,,20/11/1988,"Krasnoarmeysk (now Pokrovsk), Donetskaya oblast",Ukrainian SSR (now Ukraine),Russia,,,,,(1) Former so called 'Minister of Justice' of the 'Donetsk People's Republic' (2) Commissioner for Human Rights of the so-called of the ‘Donetsk People's Republic.',Ul Sobinova,the house. 160,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS0093 (UK Statement of Reasons):Former so-called ‘Minister of Justice’ of the so called ‘Donetsk People's Republic’. In taking on and acting in this capacity, she has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. Commissioner for Human Rights of the so-called of the ‘Donetsk People's Republic.' (Gender):Female",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13207 +GOLDA,Dmitry,Yurievich,,,,,,,,02/08/1984,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1271 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15223 +GOLDA,Dmitry,Yuryevich,,,,,ГОЛЬДА Дмитрий Юрьевич,Cyrillic,Russian,02/08/1984,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1271 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15223 +GOLIKOV,Oleg,Alexandrovich,,,,,Олег Александрович Голиков,,,21/10/1968,Chesma,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0354 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14299 +GOLODETS,Olga,Yurevna,,,,,,,,01/06/1962,Moscow,Russia,Russia,,,,,(1) Former Deputy Prime Minister of Russia (2) Deputy Chairman of Sberbank’s Executive Board,,,,,,,,,"(UK Sanctions List Ref):RUS1589 (UK Statement of Reasons):Olga Yurievna Golodets is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a director, manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK); (Gender):Female",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15533 +GOLODETS,Olga,Yurievna,,,,,,,,01/06/1962,Moscow,Russia,Russia,,,,,(1) Former Deputy Prime Minister of Russia (2) Deputy Chairman of Sberbank’s Executive Board,,,,,,,,,"(UK Sanctions List Ref):RUS1589 (UK Statement of Reasons):Olga Yurievna Golodets is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a director, manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK); (Gender):Female",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15533 +GOLODETS,Olga,Yurievna,,,,,,,,01/06/1962,Moscow,Russia,Russia,,,,,(1) Former Deputy Prime Minister of Russia (2) Deputy Chairman of Sberbank’s Executive Board,,,,,,,,,"(UK Sanctions List Ref):RUS1589 (UK Statement of Reasons):Olga Yurievna Golodets is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a director, manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK); (Gender):Female",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15533 +GOLUB,Igor,Vladimirovich,,,,,ГОЛУБ Игорь Владимирович,,,19/11/1967,"Chernigov, Chernigovskaya oblast",Ukraine,Belarus,,,,,Commander of the Air Force and Air Defence Forces of the Armed Forces of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0097 (UK Statement of Reasons):In his position as Commander of the Air Force and Air Defence of the Armed Forces of the Republic of Belarus, Igor Golub is responsible for the order dispatching military aircraft to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In so doing, Golub acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian aviation authorities. This resulted in the forced redirection of flight FR4978, the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega. This politically-motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression against civil society and democratic opposition in Belarus. Igor Golub is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name,,Belarus,21/06/2021,21/06/2021,21/06/2021,14114 +GOLUB,Ihar,Uladzimiravich,,,,,,,,19/11/1967,"Chernigov, Chernigovskaya oblast",Ukraine,Belarus,,,,,Commander of the Air Force and Air Defence Forces of the Armed Forces of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0097 (UK Statement of Reasons):In his position as Commander of the Air Force and Air Defence of the Armed Forces of the Republic of Belarus, Igor Golub is responsible for the order dispatching military aircraft to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In so doing, Golub acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian aviation authorities. This resulted in the forced redirection of flight FR4978, the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega. This politically-motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression against civil society and democratic opposition in Belarus. Igor Golub is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14114 +GOLUBOVICH,Mikhail,Vasilievich,,,,,,,,21/11/1943,Zolotonosha,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1272 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15224 +GOLUBOVICH,Mikhail,Vasilyevich,,,,,ГОЛУБОВИЧ Михаил Васильевич,Cyrillic,Russian,21/11/1943,Zolotonosha,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1272 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15224 +GONCHAROV,Nikolai,Alexandrovich,,,,,Николай Александрович Гончаров,,,13/01/1984,Verkhnemakeevka,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0355 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14300 +GONZALEZ LOPEZ,Gustavo,Enrique,,,,,Gustavo González López,,,02/11/1960,,,Venezuela,,,,,Head of the Bolivarian National Intelligence Services (SEBIN). Presidential Security Counsel.,,,,,,Caracas,,Venezuela,"(UK Sanctions List Ref):VEN0002 Head of SEBIN, Intelligence Police (UK Statement of Reasons):Reappointed as Head of the Bolivarian National Intelligence Service (SEBIN) on 30 April 2019. Formerly Security and Intelligence Adviser for the President's office from 8 January 2019 to 30 April 2019 and Head of SEBIN until October 2018. As Head of SEBIN, responsible for serious human rights violations (including arbitrary detention, inhuman and degrading treatment, and torture) and repression of civil society and the democratic opposition in Venezuela. (Gender):Male",Individual,Primary name,,Venezuela,22/01/2018,31/12/2020,31/12/2020,13581 +GORDEEV,Alexey,Vasilievich,,,,,Гордеев Алексей Васильевич,,,28/02/1955,Frankfurt (Oder),Germany,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0356 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14301 +GORDIEVSKIY,Stanislav,Evgenievich,,,,,,,,09/09/1977,,Russia,Russia,,,,,"Investigator of the Investigative Department of the South Administrative District, of the Prosecutor Service in Moscow",,,,,,,,,"(UK Sanctions List Ref):GAC0003 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. GORDIEVSKY participated in the fraud through his actions during the course of a tax investigation into companies involved in the serious corruption. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14096 +GORDIEVSKIY,Stanislav,Yevgyenyevich,,,,,,,,09/09/1977,,Russia,Russia,,,,,"Investigator of the Investigative Department of the South Administrative District, of the Prosecutor Service in Moscow",,,,,,,,,"(UK Sanctions List Ref):GAC0003 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. GORDIEVSKY participated in the fraud through his actions during the course of a tax investigation into companies involved in the serious corruption. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14096 +GORDIEVSKY,Stanislav,Evgenievich,,,,,Станислав Евгеньевич ГОРДИЕВСКИЙ,,,09/09/1977,,Russia,Russia,,,,,"Investigator of the Investigative Department of the South Administrative District, of the Prosecutor Service in Moscow",,,,,,,,,"(UK Sanctions List Ref):GAC0003 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. GORDIEVSKY participated in the fraud through his actions during the course of a tax investigation into companies involved in the serious corruption. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14096 +GORDIEVSKY,Stanislav,Yevgyenyevich,,,,,,,,09/09/1977,,Russia,Russia,,,,,"Investigator of the Investigative Department of the South Administrative District, of the Prosecutor Service in Moscow",,,,,,,,,"(UK Sanctions List Ref):GAC0003 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. GORDIEVSKY participated in the fraud through his actions during the course of a tax investigation into companies involved in the serious corruption. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14096 +GORELKIN,Anton,Vadimovich,,,,,Антон Вадимович Горелкин,,,22/01/1982,Kemerovo,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0357 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14302 +GORITSKY,Dmitry,Yuryevich,,,,,Дмитрий Юрьевич ГОРИЦКИЙ,,,28/10/1970,Krasnodar,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0997 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14948 +GORNYAKOV,Sergey,Vasilyevich,,,,,Сергей Васильевич Горняков,,,01/05/1966,Volgograd,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS1000 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14951 +GORODETSKY,Vladimir,Filippovich,,,,,Владимир Филиппович ГОРОДЕЦКИЙ,,,11/07/1948,Aleksino,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0913 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14864 +GOROKHOV,Andrey,Yurievich,,,,,Андрей Юрьевич Горохов,,,13/01/1960,Balikhash,Kazakhstan,Russia,717493879,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0551 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14496 +GORYACHEVA,Svetlana,Petrovna,,,,,Светлана Петровна ГОРЯЧЕВА,,,03/06/1947,Risov,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0890 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14841 +GORYACHEVA,Ksenia,Alexandrovna,,,,,Горячева Ксения Александровна,,,16/05/1996,Aromashevo,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0358 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14303 +GOSTAR VACUUM DEVICE TECHNOLOGY DEVELOPMENT COMPANY,,,,,,,,,,,,,,,,,,,No 3,Building 3,Shahid Hamid Sadigh Alley,Shariati Street,,Tehran,,Iran,(UK Sanctions List Ref):INU0063 (UK Statement of Reasons):Eyvaz Technic has produced vacuum equipment involved in the construction of the Natanz and Qom/Fordow Fuel Enrichment Plants. (Phone number):+98 21 77509537 (Website):www.eyvaztechnic.com (Email address):info@eyvaztechnic.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12252 +GOSTAR VACUUM DEVICE TECHNOLOGY DEVELOPMENT COMPANY,,,,,,,,,,,,,,,,,,,Sharia'ati St.,Shahid Hamid Sadik Alley,Building 3,Number 3,,Tehran,,Iran,(UK Sanctions List Ref):INU0063 (UK Statement of Reasons):Eyvaz Technic has produced vacuum equipment involved in the construction of the Natanz and Qom/Fordow Fuel Enrichment Plants. (Phone number):+98 21 77509537 (Website):www.eyvaztechnic.com (Email address):info@eyvaztechnic.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12252 +GOSUDARSTVENNOYE UNITARNOYE PREDPRIYATIYE RESPUBLIKI KRYM 'ZAVOD SHAMPANSKYKH VIN 'NOVY SVET',,,,,,,,,,,,,,,,,,,Str. Shalapina 1,,,Novy Svet,Sudak,The Autonomous Republic of Crimea and the city of Sevastopol,298032,Ukraine,"(UK Sanctions List Ref):RUS0201 (UK Statement of Reasons):The ownership of the entity was transferred contrary to the Ukrainian law. On 9 April 2014, the ‘Presidium of the Parliament of Crimea’ adopted a decision No 1991-6/14 ‘On the amendments to the Resolution of the State Council of the “Republic of Crimea” of 26 March 2014 No 1836-6/14 ‘On nationalization of the property of enterprises, institutions and organizations of agro-industrial complex, located in the territory of the “Republic of Crimea” declaring the appropriation of assets belonging to the state enterprise “Zavod shampanskykh vin Novy Svet”’ on behalf of the ‘Republic of Crimea’. The enterprise is thus effectively confiscated by the Crimean ‘authorities’. Re-registered on 4.1.2015 as State Unitary Enterprise of the ‘Republic of Crimea’ ‘sparkling wine plant “Novy Svet”’. Founder: The Ministry of Agriculture of the Republic of Crimea. Re-registered following reorganization on 29.8.2018 as Joint-stock company Sparkling wine plant ‘Novy Svet’. Founder: the Ministry of Land and Property Regulations of the ‘Republic of Crimea’. The action of transferring ownership, contrary to Ukrainian law, undermines or threatens the territorial integrity, sovereignty and independence of Ukraine.",Entity,AKA,,Russia,25/07/2014,31/12/2020,31/12/2020,13062 +GOSUDARSTVENOYE PREDPRIYATIYE AGROFIRMA 'MAGARACH' NACIONALNOGO INSTITUTA VINOGRADA I VINA 'MAGARACH',,,,,,,,,,,,,,,,,,,Kirov Street 31,Yalta,,,,The Autonomous Republic of Crimea and the city of Sevastopol,298600,Ukraine,"(UK Sanctions List Ref):RUS0164 (UK Statement of Reasons):The ownership of the entity was transferred contrary to the Ukrainian law. On 9 April 2014, the ‘Presidium of the Parliament of Crimea’ adopted a decision No 1991-6/14 ‘On the amendments to the Resolution of the State Council of the “Republic of Crimea” of 26 March 2014 No 1836-6/14 ‘On nationalization of the property of enterprises, institutions and organizations of agro-industrial complex, located in the territory of the “Republic of Crimea”’ declaring the appropriation of assets belonging to the state enterprise ‘Gosudarstvenoye predpriyatiye Agrofirma “Magarach” nacionalnogo instituta vinograda i vina “Magarach”’ on behalf of the ‘Republic of Crimea’. The enterprise is thus effectively confiscated by the Crimean ‘authorities’. Re-registered on 15 January 2015 as ‘State Unitary Institution of the “Republic of Crimea” National Institute of Wine “Magarach”’. Founder: The Ministry of Agriculture of the ‘Republic of Crimea’. On 7 February 2017, State Unitary Enterprise of the ‘Republic of Crimea’‘National Institute of Wine “Magarach”’ was transformed into Federal Budgetary scientific facility ‘All-Russia scientific-research institute of viticulture and winemaking “Magarach”’, Russian Academy of Sciences",Entity,AKA,,Russia,25/07/2014,31/12/2020,31/12/2020,13061 +GOTSANYUK,Jury,,,,,,,,,18/07/1966,"Novaya Derevnya, Pervomaiskii raion",Russia (USSR),Russia,,,,,"Chair, Council of Ministers, Crimea (Prime Minister)",,,,,,,,,"(UK Sanctions List Ref):RUS0216 (UK Statement of Reasons):Appointed so-called “Prime Minister” of illegally-annexed Crimea in September 2019 and in this role undermined Ukrainian sovereignty over Crimea. In his previous role as so-called Deputy Chair of the Council of Ministers of Crimea, his responsibility for implementing Russian federal programmes helped facilitate the integration of Crimea into Russia. In 2015 he was given an award for protecting the “Republic of Crimea”. (Gender):Male",Individual,Primary name variation,,Russia,28/01/2020,31/12/2020,31/12/2020,13809 +GOTSANYUK,Yuriy,,,,,,Юрий Михайлович ГОЦАНЮК,,,18/07/1966,"Novaya Derevnya, Pervomaiskii raion",Russia (USSR),Russia,,,,,"Chair, Council of Ministers, Crimea (Prime Minister)",,,,,,,,,"(UK Sanctions List Ref):RUS0216 (UK Statement of Reasons):Appointed so-called “Prime Minister” of illegally-annexed Crimea in September 2019 and in this role undermined Ukrainian sovereignty over Crimea. In his previous role as so-called Deputy Chair of the Council of Ministers of Crimea, his responsibility for implementing Russian federal programmes helped facilitate the integration of Crimea into Russia. In 2015 he was given an award for protecting the “Republic of Crimea”. (Gender):Male",Individual,Primary name,,Russia,28/01/2020,31/12/2020,31/12/2020,13809 +GOTSANYUK,Yuriy,Mikhailovich,,,,,,,,18/07/1966,"Novaya Derevnya, Pervomaiskii raion",Russia (USSR),Russia,,,,,"Chair, Council of Ministers, Crimea (Prime Minister)",,,,,,,,,"(UK Sanctions List Ref):RUS0216 (UK Statement of Reasons):Appointed so-called “Prime Minister” of illegally-annexed Crimea in September 2019 and in this role undermined Ukrainian sovereignty over Crimea. In his previous role as so-called Deputy Chair of the Council of Ministers of Crimea, his responsibility for implementing Russian federal programmes helped facilitate the integration of Crimea into Russia. In 2015 he was given an award for protecting the “Republic of Crimea”. (Gender):Male",Individual,Primary name variation,,Russia,28/01/2020,31/12/2020,31/12/2020,13809 +GOVTVIN,Yuri,Nikolaevich,,,,,,,,12/04/1968,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1155 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15107 +GOVTVIN,Yuriy,Nikolaevich,,,,,ГОВТВИН Юрий Николаевич,Cyrillic,Russian,12/04/1968,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1155 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15107 +GOVYRIN,Alexey,Borisovich,,,,,Алексей Борисович Говырин,,,26/05/1983,Kovrov,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0659 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14604 +GOZNAK,,,,,,,Государственный знак,,Russian,,,,,,,,,,3G Peter and Paul Fortress,,,,,Saint Petersburg,197046,Russia,"(UK Sanctions List Ref):RUS1557 (UK Statement of Reasons):Joint Stock Company (JSC) GOZNAK is an involved entity within the meaning of the Russia (Sanctions) (EU Exit) Regulations 2019 because its sole shareholder is the Russian Federation, and therefore it is an entity carrying on business as a Government of Russia-affiliated entity. GOZNAK also engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine through its production of passports for the Russian Federation.  (Phone number):+7 (495) 363-23-70  (Website):https://goznak.ru/en/  (Email address):Goznak@goznak.ru  (Type of entity):JSC  (Parent company):Russian Federation Federal Agency for State Property Management",Entity,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15501 +GRABCHAK,Evgeniy,Petrovich,,,,,,,,18/07/1981,"Ust-Labinsk, Krasnodar Region",Russia,Russia,,,,,Vice-Minister for Energy of the Russian Federation,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0099 (UK Statement of Reasons):Former Head of Department in the Energy Ministry of the Russian Federation and responsible within the Ministry of Energy of the Russian Federation for the development of electro-energetic projects in Crimea. These projects contribute to establishing an independent power supply for Crimea and Sevastopol as a means of supporting their separation from Ukraine, and undermine the territorial integrity, sovereignty and independence of Ukraine. Vice-Minister for Energy of the Russian Federation. (Gender):Male",Individual,Primary name,,Russia,04/08/2017,31/12/2020,31/12/2020,13522 +GRANKO ARTEAGA,Alexander,,,,,,,,,25/03/1981,,Venezuela,Venezuela,,,14970215,,Director of the DAE (Special Affairs Division) of the Director General of Military Counter-Intelligence,,,,,,,,,"(UK Sanctions List Ref):VEN0024 (UK Statement of Reasons):Head (Director) of the Special Affairs Division (DAE) of the Directorate-General of Military Counterintelligence (Dirección General de Contrainteligencia Militar (DGCIM)). Promoted to Colonel in July 2020. There are reasonable grounds to suspect that he is responsible for serious human rights violations, including torture, excessive use of force causing death and injury and the ill-treatment of detainees in DGCIM facilities committed by himself and officials under his command. There are also, reasonable grounds to suspect he is involved in the repression of civil society by members of DGCIM under his command, as well as directly involved in such repression. In particular, he is l Linked to the death of Captain Acosta. (Gender):Male",Individual,Primary name,,Venezuela,27/09/2019,31/12/2020,28/01/2022,13796 +GREAT LAKES BUSINESS COMPANY (GLBC),,,,,,,,,,,,,,,,,,,,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0017 (UN Ref):CDe.003 As of December 2008, GLBC no longer had any operational aircraft, although several aircraft continued flying in 2008 despite UN sanctions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278381",Entity,AKA,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9070 +GREAT LAKES BUSINESS COMPANY (GLBC),,,,,,,,,,,,,,,,,,,,,,,,Gisenyi,,Rwanda,"(UK Sanctions List Ref):DRC0017 (UN Ref):CDe.003 As of December 2008, GLBC no longer had any operational aircraft, although several aircraft continued flying in 2008 despite UN sanctions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278381",Entity,AKA,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9070 +GREAT LAKES BUSINESS COMPANY (GLBC),,,,,,,,,,,,,,,,,,,Avenue President Mobutu,,,,,Goma,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0017 (UN Ref):CDe.003 As of December 2008, GLBC no longer had any operational aircraft, although several aircraft continued flying in 2008 despite UN sanctions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278381",Entity,AKA,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9070 +GREAT LAKES BUSINESS COMPANY (GLBC),,,,,,,,,,,,,,,,,,,Avenue Président Mobutu,,,,,Goma,,,"(UK Sanctions List Ref):DRC0017 (UN Ref):CDe.003 As of December 2008, GLBC no longer had any operational aircraft, although several aircraft continued flying in 2008 despite UN sanctions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278381",Entity,AKA,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9070 +GREAT LAKES BUSINESS COMPANY (GLBC),,,,,,,,,,,,,,,,,,,PO BOX 315,,,,,Goma,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0017 (UN Ref):CDe.003 As of December 2008, GLBC no longer had any operational aircraft, although several aircraft continued flying in 2008 despite UN sanctions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278381",Entity,AKA,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9070 +GREEN EMIRATE PAYA,,,,,,,,,,,,,,,,,,,No 15,Eighth Street,Pakistan Avenue,Shahid Beheshti Avenue,,Tehran,,Iran,(UK Sanctions List Ref):INU0099 (UK Statement of Reasons):Has been involved in procurement of materials that are controlled and have direct applications in the manufacture of centrifuges for Iran's uranium enrichment programme. (Phone number):+98 21 88 73 77 53 (Website):www.pooyawave.com (Email address):info@pooyawave.com (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11541 +GREEN PINE ASSOCIATED CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Nungrado,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,Primary name,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +GREEN PINE ASSOCIATED CORPORATION,,,,,,,,,,,,,,,,,,,Rakrang No. 1,Rakrang District,Mangyongdae District,,Chilgol-1 dong,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,Primary name,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +GREEN PINE ASSOCIATED CORPORATION,,,,,,,,,,,,,,,,,,,Reconnaissance General Bureau Headquarters,,,,Hyongjesan-Guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,Primary name,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +GREF,Herman,Oskarovich,,,,,Герман Оскарович Греф,Cyrillic,Russian,08/02/1964,,,Germany. Russia,,,,,Chief Executive Officer and Chairman of the Board of PJSC SberBank,,,,,,,,,"(UK Sanctions List Ref):RUS1057 (UK Statement of Reasons):Herman Oskarovich GREF, hereafter GREF, is the Chief Executive and Board Chairman of Public Joint Stock Company SberBank, Russia’s largest State controlled bank, hereafter SberBank. . He has served in this role since 2007. SberBank has been designated as a person involved in obtaining a benefit from or supporting the Government of Russia. As the Chief Executive and Chairman of the Board of SberbBank GREF is associated with a person involved in obtaining a benefit from or supporting the Government of Russia, and has received a financial benefit from that person",Individual,Primary name,,Russia,24/03/2022,24/03/2022,24/05/2022,15000 +GRIGORENKO,Dmitriy,Yuryevich,,,,,ГРИГОРЕНКО Дмитрий Юрьевич,Cyrillic,Russian,14/07/1978,Nizhnevartovsk,Russia,Russia,,,,,(1) Deputy Prime Minister of the Russian Federation – Chief of the Government Staff of the Russian Federation (2) Chairman of the Supervisory Council of the VTB Bank (3) Chairman of the Supervisory Council of VEB.RF,,,,,,,,,"(UK Sanctions List Ref):RUS0692 (UK Statement of Reasons):Dmitriy Yuryevich GRIGORENKO, hereafter GRIGORENKO, is Deputy Prime Minister and Chief of Government Staff of the Russian Federation and former Deputy Director of Russia’s Federal Taxation Service. As Deputy Director of Russia’s Federal Tax, GRIGORENKO introduced and implemented a new tax system in Crimea following its illegal annexation, which consolidated the integration of Crimea into Russia, GRIGORENKO is or has therefore been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine by being responsible for, engaging in, providing support for or promoting a policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. As Deputy Prime Minister and Chief of Government Staff of the Russian Federation, GRIGORENKO has overseen the Russian President’s decision to sign decrees on recognizing Ukraine’s Donetsk and Luhansk Republics. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14643 +GRIGORIEV,Yury,Innokent'evich,,,,,Григорьев Юрий Иннокентьевич,,,20/09/1969,Yakutsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0359 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14304 +GRIN,Victor,,,,,,,,,01/01/1951,,,Russia,,,,,Deputy General Prosecutor in Prosecutors office,,,,,,,,,"(UK Sanctions List Ref):GHR0016 (UK Statement of Reasons):Victor Yakovlevich Grin was Deputy General Prosecutor of the Prosecutor General’s Office of the Russian Federation. In that role he was responsible for overseeing the case of Sergei Magnitsky during his detention, as well as responsible for investigating the claims of mistreatment of Magnitsky and his subsequent death on 16 November 2009. He intentionally or recklessly failed to fulfil that responsibility, including by issuing conclusions stating that there had been no violation of law by Interior Ministry investigators whilst Magnitsky was in detention which were then used to justify not prosecuting those alleged to be responsible for his mistreatment and death. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13875 +GRIN,Victor,Yakovlevich,,,,,,,,01/01/1951,,,Russia,,,,,Deputy General Prosecutor in Prosecutors office,,,,,,,,,"(UK Sanctions List Ref):GHR0016 (UK Statement of Reasons):Victor Yakovlevich Grin was Deputy General Prosecutor of the Prosecutor General’s Office of the Russian Federation. In that role he was responsible for overseeing the case of Sergei Magnitsky during his detention, as well as responsible for investigating the claims of mistreatment of Magnitsky and his subsequent death on 16 November 2009. He intentionally or recklessly failed to fulfil that responsibility, including by issuing conclusions stating that there had been no violation of law by Interior Ministry investigators whilst Magnitsky was in detention which were then used to justify not prosecuting those alleged to be responsible for his mistreatment and death. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13875 +GRIN,Viktor,Yakovlevich,,,,,,,,01/01/1951,,,Russia,,,,,Deputy General Prosecutor in Prosecutors office,,,,,,,,,"(UK Sanctions List Ref):GHR0016 (UK Statement of Reasons):Victor Yakovlevich Grin was Deputy General Prosecutor of the Prosecutor General’s Office of the Russian Federation. In that role he was responsible for overseeing the case of Sergei Magnitsky during his detention, as well as responsible for investigating the claims of mistreatment of Magnitsky and his subsequent death on 16 November 2009. He intentionally or recklessly failed to fulfil that responsibility, including by issuing conclusions stating that there had been no violation of law by Interior Ministry investigators whilst Magnitsky was in detention which were then used to justify not prosecuting those alleged to be responsible for his mistreatment and death. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13875 +GRINYUK,Sergey,Nikolayevich,,,,Colonel,ГРИНЮК Сергей Николаевич,Cyrillic,Russian,11/05/1971,Brest,Belarus,Belarus,,,,,Commander of Logistics and Deputy Commander of Western Operational Command,,,,,,,,,"(UK Sanctions List Ref):RUS0742 (UK Statement of Reasons):Colonel Sergey Nikolayevich GRINYUK has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being involved in the command of Belarusian forces who were involved in a joint exercise with the Russian military ahead of Russia’s invasion of Ukraine which: (1) threatened Ukraine; and (2) provided cover for Russian military preparations to invade Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14693 +GRITSENKO,Yevgeny,Dmitrievich,,,,,ГРИЦЕНКО Евгений Дмитриевич,Cyrillic,Russian,26/07/1977,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1176 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15128 +GRITSENKO,Yevgeny,Dmitriyevich,,,,,,,,26/07/1977,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1176 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15128 +GROMAKOV,Aleksandr,Yurevich,,,,,Громаков Александр Юрьевич,Cyrillic,Russian,04/09/1958,Dontesk,Ukraine,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1142 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15094 +GROMAKOV,Alexander,Yurievich,,,,,,,,04/09/1958,Dontesk,Ukraine,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1142 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15094 +GROMOV,Alexey,Alexeyevich,,,,,Алексей Алексеевич ГРОМОВ,,,31/05/1960,Zagorsk (Sergiev Posad),Russia,Russia,,,,,First Deputy Chief of Staff of the Presidential Administration of the Russian Federation,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0100 (UK Statement of Reasons):As first Deputy Chief of Staff of the Presidential Administration, he is responsible for instructing Russian media outlets to take a line favourable with the separatists in Ukraine and the annexation of Crimea, therefore supporting the destabilisation of Eastern Ukraine and the annexation of Crimea. (Gender):Male",Individual,Primary name,,Russia,31/07/2014,31/12/2020,16/09/2022,13068 +GROUPE COMBATTANT TUNISIEN,,,,,,,,,,,,,,,,,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0082 (UN Ref):QDe.090 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278433,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/10/2002,10/10/2002,31/12/2020,7148 +GROUPE ISLAMIQUE ARME,,,,,,,Groupe Islamique Armé,,,,,,,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0036 (UN Ref):QDe.006 Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281693,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6963 +GROUPE ISLAMIQUE COMBATTANT MAROCAIN,,,,,,,,,,,,,,,,,,,,,,,,,,Morocco,(UK Sanctions List Ref):AQD0068 (UN Ref):QDe.089 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282051,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/10/2002,10/10/2002,31/12/2020,7149 +GROUPE ISLAMISTE COMBATTANT TUNISIEN,,,,,,,,,,,,,,,,,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0082 (UN Ref):QDe.090 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278433,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/10/2002,10/10/2002,31/12/2020,7148 +GRU 85TH MAIN SPECIAL SERVICE CENTRE (GTSSS) (APT 28),,,,,,,,,,,,,,,,,,,Komsomol'skiy Prospekt,,,,,20 Moscow,119146,Russia,"(UK Sanctions List Ref):CYB0012 (UK Statement of Reasons):The 85th Main Centre for Special Technologies (GTsSS) of the Russian General Staff of the Armed Forces of the Russian Federation (GRU) - also known by its field post number ‘26165’ and industry nicknames: APT28, Fancy Bear, Sofacy Group, Pawn Storm, Strontium - was involved in illegally accessing the information systems of the German Federal Parliament (Deutscher Bundestag) without permission in April and May 2015. The military intelligence officers of the 85th controlled, directed and took part in this activity, accessing the email accounts of MPs and stealing their data. Their activity interfered with the parliament’s information systems affecting its operation for several days, undermining the exercise of parliamentary functions in Germany. (Type of entity):Department within Government (Parent company):Russian Ministry of Defence",Entity,Primary name,,Cyber,23/10/2020,31/12/2020,31/12/2020,13984 +GRYAZNOVA,Olga,Petrovna,,,,,ГРЯЗНОВА Ольга Петровна,Cyrillic,Russian,16/05/1983,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1243 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,14/06/2022,15195 +GRYAZNOVA,Olga,Petrovna,,,,,,,,16/05/1983,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1243 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,14/06/2022,15195 +GRYZLOV,Boris,Yyacheslavovich,,,,,,,,15/12/1950,Kuibyshev (Samara),,Russia,,,,,"(1) Permanent Member of the Security Council of the Russian Federation (2) Chairman of the Russian State Duma committee on Physical Education, Sport and Youth Affairs",,,,,,,,,"(UK Sanctions List Ref):RUS0101 (UK Statement of Reasons):Former Permanent member of the Security Council of the Russian Federation. As a member of the Security Council, which provides advice on and coordinates national security affairs, he was involved in shaping the policy of the Russian Government in threatening the territorial integrity, sovereignty and independence of Ukraine. He remains chairman of the Supreme Council of the United Russia party. Chairperson of the Board of Directors of the State-owned enterprise Tactical Missiles Corporation JSC. (Gender):Male",Individual,Primary name,,Russia,25/07/2014,31/12/2020,31/12/2020,13039 +GUBAREV,Pavel,Yurievich,,,,,Павел Юрьевич ГУБАРЕВ,,Russian,05/07/1983,(1) Lugansk Oblast (2) Severodonetsk (3) Sievierodonetsk,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0102 (UK Statement of Reasons):One of the self-described leaders of the so-called ‘people' Republic of Donetsk’. He requested Russian intervention in eastern Ukraine, including through the deployment of Russian peacekeeping forces. He is associated with Igor Strelkov/Girkin, who is responsible for actions which undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. Gubarev is responsible for recruiting people for armed forces of separatists. Responsible for taking over of the regional government building in Donetsk with pro-Russian forces and proclaimed himself the ‘people's governor’. Despite being arrested for threatening the territorial integrity of Ukraine, and subsequently released, he has continued to play a prominent role in separatist activities, thus undermining the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,25/07/2014,31/12/2020,16/09/2022,13044 +GUBAREV,Pavel,Yurievich,,,,,Павел Юрьевич ГУБАРЕВ,,Russian,10/03/1983,(1) Lugansk Oblast (2) Severodonetsk (3) Sievierodonetsk,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0102 (UK Statement of Reasons):One of the self-described leaders of the so-called ‘people' Republic of Donetsk’. He requested Russian intervention in eastern Ukraine, including through the deployment of Russian peacekeeping forces. He is associated with Igor Strelkov/Girkin, who is responsible for actions which undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. Gubarev is responsible for recruiting people for armed forces of separatists. Responsible for taking over of the regional government building in Donetsk with pro-Russian forces and proclaimed himself the ‘people's governor’. Despite being arrested for threatening the territorial integrity of Ukraine, and subsequently released, he has continued to play a prominent role in separatist activities, thus undermining the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,25/07/2014,31/12/2020,16/09/2022,13044 +GUBAREV,Andrei,Anatolyevich,,,,,ГУБАРЕВ Андрей Анатольевич,Cyrillic,Russian,22/10/1974,Krasnodon,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1273 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15225 +GUBAREV,Andrey,Anatolievich,,,,,,,,22/10/1974,Krasnodon,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1273 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15225 +GUBAREVA,Ekaterina,Yurievna,,,,,Екатерина Юрьевна ГУБАРЕВА,,Russian,10/03/1983,"Kakhovka, Kherson Oblast",,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0103 (UK Statement of Reasons):In her capacity of former so-called 'Minister of Foreign Affairs' she was responsible for defending the so-called 'Donetsk Pople's Republic' thus undermining the territorial integrity, sovereignty and independence of Ukraine. In taking on and acting in this capacity she has therefore supported actions and policies which undermin the territorial integrity, sovereignty and independence of Ukraine. Remains active in supporting separatist actions or policies. Former member of the so-called 'People's Council' of the 'Donetsk People's Republic' (until November 2018). (Gender):Female",Individual,Primary name,,Russia,25/07/2014,31/12/2020,16/09/2022,13063 +GUBAREVA,Ekaterina,Yurievna,,,,,Екатерина Юрьевна ГУБАРЕВА,,Russian,05/07/1983,"Kakhovka, Kherson Oblast",,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0103 (UK Statement of Reasons):In her capacity of former so-called 'Minister of Foreign Affairs' she was responsible for defending the so-called 'Donetsk Pople's Republic' thus undermining the territorial integrity, sovereignty and independence of Ukraine. In taking on and acting in this capacity she has therefore supported actions and policies which undermin the territorial integrity, sovereignty and independence of Ukraine. Remains active in supporting separatist actions or policies. Former member of the so-called 'People's Council' of the 'Donetsk People's Republic' (until November 2018). (Gender):Female",Individual,Primary name,,Russia,25/07/2014,31/12/2020,16/09/2022,13063 +GUBAREVA,Katerina,Yuriivna,,,,,Катерина Юріівна ГУБАРЄВА,,Ukrainian,10/03/1983,"Kakhovka, Kherson Oblast",,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0103 (UK Statement of Reasons):In her capacity of former so-called 'Minister of Foreign Affairs' she was responsible for defending the so-called 'Donetsk Pople's Republic' thus undermining the territorial integrity, sovereignty and independence of Ukraine. In taking on and acting in this capacity she has therefore supported actions and policies which undermin the territorial integrity, sovereignty and independence of Ukraine. Remains active in supporting separatist actions or policies. Former member of the so-called 'People's Council' of the 'Donetsk People's Republic' (until November 2018). (Gender):Female",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,16/09/2022,13063 +GUBAREVA,Katerina,Yuriivna,,,,,Катерина Юріівна ГУБАРЄВА,,Ukrainian,05/07/1983,"Kakhovka, Kherson Oblast",,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0103 (UK Statement of Reasons):In her capacity of former so-called 'Minister of Foreign Affairs' she was responsible for defending the so-called 'Donetsk Pople's Republic' thus undermining the territorial integrity, sovereignty and independence of Ukraine. In taking on and acting in this capacity she has therefore supported actions and policies which undermin the territorial integrity, sovereignty and independence of Ukraine. Remains active in supporting separatist actions or policies. Former member of the so-called 'People's Council' of the 'Donetsk People's Republic' (until November 2018). (Gender):Female",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,16/09/2022,13063 +GUBAREVA,Natalia,Vladimirovna,,,,,,,,23/06/1981,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1244 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15196 +GUBAREVA,Natalya,Vladimirovna,,,,,ГУБАРЕВА Наталья Владимировна,Cyrillic,Russian,23/06/1981,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1244 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15196 +GUBARIEV,Pavlo,Yuriyovich,,,,,Павло Юрійович ГУБАРЄВ,,Ukrainian,05/07/1983,(1) Lugansk Oblast (2) Severodonetsk (3) Sievierodonetsk,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0102 (UK Statement of Reasons):One of the self-described leaders of the so-called ‘people' Republic of Donetsk’. He requested Russian intervention in eastern Ukraine, including through the deployment of Russian peacekeeping forces. He is associated with Igor Strelkov/Girkin, who is responsible for actions which undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. Gubarev is responsible for recruiting people for armed forces of separatists. Responsible for taking over of the regional government building in Donetsk with pro-Russian forces and proclaimed himself the ‘people's governor’. Despite being arrested for threatening the territorial integrity of Ukraine, and subsequently released, he has continued to play a prominent role in separatist activities, thus undermining the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,16/09/2022,13044 +GUBARIEV,Pavlo,Yuriyovich,,,,,Павло Юрійович ГУБАРЄВ,,Ukrainian,10/03/1983,(1) Lugansk Oblast (2) Severodonetsk (3) Sievierodonetsk,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0102 (UK Statement of Reasons):One of the self-described leaders of the so-called ‘people' Republic of Donetsk’. He requested Russian intervention in eastern Ukraine, including through the deployment of Russian peacekeeping forces. He is associated with Igor Strelkov/Girkin, who is responsible for actions which undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. Gubarev is responsible for recruiting people for armed forces of separatists. Responsible for taking over of the regional government building in Donetsk with pro-Russian forces and proclaimed himself the ‘people's governor’. Despite being arrested for threatening the territorial integrity of Ukraine, and subsequently released, he has continued to play a prominent role in separatist activities, thus undermining the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,16/09/2022,13044 +GUBARIEVA,Kateryna,Yuriyivna,,,,,,,,10/03/1983,"Kakhovka, Kherson Oblast",,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0103 (UK Statement of Reasons):In her capacity of former so-called 'Minister of Foreign Affairs' she was responsible for defending the so-called 'Donetsk Pople's Republic' thus undermining the territorial integrity, sovereignty and independence of Ukraine. In taking on and acting in this capacity she has therefore supported actions and policies which undermin the territorial integrity, sovereignty and independence of Ukraine. Remains active in supporting separatist actions or policies. Former member of the so-called 'People's Council' of the 'Donetsk People's Republic' (until November 2018). (Gender):Female",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,16/09/2022,13063 +GUBARIEVA,Kateryna,Yuriyivna,,,,,,,,05/07/1983,"Kakhovka, Kherson Oblast",,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0103 (UK Statement of Reasons):In her capacity of former so-called 'Minister of Foreign Affairs' she was responsible for defending the so-called 'Donetsk Pople's Republic' thus undermining the territorial integrity, sovereignty and independence of Ukraine. In taking on and acting in this capacity she has therefore supported actions and policies which undermin the territorial integrity, sovereignty and independence of Ukraine. Remains active in supporting separatist actions or policies. Former member of the so-called 'People's Council' of the 'Donetsk People's Republic' (until November 2018). (Gender):Female",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,16/09/2022,13063 +GUCHAEV,ZAURBEK,SALIMOVICH,,,,,Заурбек Салимович Гучаев,,,07/09/1975,"Chegem-1 Village, Chegemskiy District, Republic of Kabardino-Balkaria",Russia,Russia,622641887,Russian foreign travel passport number,8304661431,Russian Federation national passport,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0343 (UN Ref):QDi.367 As at Aug. 2015, one of the leaders of the Army of Emigrants and Supporters (QDe.148). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899831. Syria, located in as at Aug. 2015",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13302 +GUCHAEV,ZAURBEK,SALIMOVICH,,,,,Заурбек Салимович Гучаев,,,07/09/1975,"Chegem-1 Village, Chegemskiy District, Republic of Kabardino-Balkaria",Russia,Russia,622641887,Russian foreign travel passport number,8304661431,Russian Federation national passport,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0343 (UN Ref):QDi.367 As at Aug. 2015, one of the leaders of the Army of Emigrants and Supporters (QDe.148). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899831. Syria, located in as at Aug. 2015",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13302 +GUERRERO MIJARES,Hannover,Esteban,,,,Colonel,,,,14/01/1971,,Venezuela,Venezuela,,,10537738,,(1) Appointed to DGCIM’s (Dirección General de Contrainteligencia Militar (General Directorate of Military Counterintelligence): Capital District (August 2021) (2) Former DGCIM Director of Investigations (3) Oversees DGCIM headquarters in Boleita (4) Second-in-Command and Chief of the General Staff of 35th Military Police Brigade (August 2020),,,,,,,,,"(UK Sanctions List Ref):VEN0025 (UK Statement of Reasons):Second-in-Command and Chief of the General Staff of 35 Military Police Brigade and former DGCIM’s Director of Investigations. Former Director of Investigations at the Directorate- General of Military Counterintelligence (Dirección General de Contrainteligencia Militar (DGCIM)) from at least April 2019 to August 2019. Believed to currently hold a role in the DGCIM Capital Region. As Head of Investigations, he supervised the DGCIM facility in Boleita. There are reasonable grounds to suspect that he is involved in the commission of serious human rights violations, including torture, excessive use of force and the ill-treatment of detainees committed by him and also by officials under his command, particularly in Boleita. Linked to the death of Captain Acosta. (Gender):Male",Individual,Primary name,,Venezuela,27/09/2019,31/12/2020,28/01/2022,13797 +GUIAVARCH,KEVIN,JORDAN,AXEL,,,,,,,12/03/1993,Paris,France,France,12CP63882.3FRA,France. Issued on 31.7.2012. Valid until 30.7.2022.,070275Q007873,France national identity card. Issued on 16.2.2007. Valid until 15.2.2017.,,,,,,,,,France,"(UK Sanctions List Ref):AQD0213 (UN Ref):QDi.341 French terrorist fighter associated with Al-Nusrah Front for the People of the Levant (QDe.137) and the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Facilitated foreign terrorist fighters travel from France to Syria. Activist in violent propaganda through the Internet. A warrant for his arrest was issued in 2014 by French authorities and executed in Jan. 2017 upon his expulsion from Turkey where he was arrested in Jun. 2016. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818237. Address Country France (in detention since Jan. 2017), Grenoble, France (domicile from 1993 to 2012), Syria (located in between 2012 and 2016), Turkey (from Jun. 2016 to Jan. 2017). (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,12/01/2022,13138 +GUIAVARCH,KEVIN,JORDAN,AXEL,,,,,,,12/03/1993,Paris,France,France,12CP63882.3FRA,France. Issued on 31.7.2012. Valid until 30.7.2022.,070275Q007873,France national identity card. Issued on 16.2.2007. Valid until 15.2.2017.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0213 (UN Ref):QDi.341 French terrorist fighter associated with Al-Nusrah Front for the People of the Levant (QDe.137) and the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Facilitated foreign terrorist fighters travel from France to Syria. Activist in violent propaganda through the Internet. A warrant for his arrest was issued in 2014 by French authorities and executed in Jan. 2017 upon his expulsion from Turkey where he was arrested in Jun. 2016. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818237. Address Country France (in detention since Jan. 2017), Grenoble, France (domicile from 1993 to 2012), Syria (located in between 2012 and 2016), Turkey (from Jun. 2016 to Jan. 2017). (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,12/01/2022,13138 +GUIAVARCH,KEVIN,JORDAN,AXEL,,,,,,,12/03/1993,Paris,France,France,12CP63882.3FRA,France. Issued on 31.7.2012. Valid until 30.7.2022.,070275Q007873,France national identity card. Issued on 16.2.2007. Valid until 15.2.2017.,,,,,,,,,Turkey,"(UK Sanctions List Ref):AQD0213 (UN Ref):QDi.341 French terrorist fighter associated with Al-Nusrah Front for the People of the Levant (QDe.137) and the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Facilitated foreign terrorist fighters travel from France to Syria. Activist in violent propaganda through the Internet. A warrant for his arrest was issued in 2014 by French authorities and executed in Jan. 2017 upon his expulsion from Turkey where he was arrested in Jun. 2016. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818237. Address Country France (in detention since Jan. 2017), Grenoble, France (domicile from 1993 to 2012), Syria (located in between 2012 and 2016), Turkey (from Jun. 2016 to Jan. 2017). (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,12/01/2022,13138 +GUIAVARCH,KEVIN,JORDAN,AXEL,,,,,,,12/03/1993,Paris,France,France,12CP63882.3FRA,France. Issued on 31.7.2012. Valid until 30.7.2022.,070275Q007873,France national identity card. Issued on 16.2.2007. Valid until 15.2.2017.,,,,,,,Grenoble,,France,"(UK Sanctions List Ref):AQD0213 (UN Ref):QDi.341 French terrorist fighter associated with Al-Nusrah Front for the People of the Levant (QDe.137) and the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Facilitated foreign terrorist fighters travel from France to Syria. Activist in violent propaganda through the Internet. A warrant for his arrest was issued in 2014 by French authorities and executed in Jan. 2017 upon his expulsion from Turkey where he was arrested in Jun. 2016. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818237. Address Country France (in detention since Jan. 2017), Grenoble, France (domicile from 1993 to 2012), Syria (located in between 2012 and 2016), Turkey (from Jun. 2016 to Jan. 2017). (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,12/01/2022,13138 +GUIDANCE PATROL,,,,,,,Gašt-e Eršād,Persian,Persian/Farsi,,,,,,,,,,Vozara Street,corner of 25th Street,District 6,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0085 (UK Statement of Reasons):The Morality Police are or have been involved in the commission of serious human rights violations in Iran, including being responsible for, engaging in and promoting violations of the right to liberty and security and the right to freedom of expression through their enforcement of mandatory dress codes for women, including the use of unreasonable force against individuals they deem to be non-compliant. (Type of entity):State Religious Police Force",Entity,Primary name variation,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15598 +GUIDANCE PATROL,,,,,,,Gast-e Ersad,Persian,Persian/Farsi,,,,,,,,,,Vozara Street,corner of 25th Street,District 6,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0085 (UK Statement of Reasons):The Morality Police are or have been involved in the commission of serious human rights violations in Iran, including being responsible for, engaging in and promoting violations of the right to liberty and security and the right to freedom of expression through their enforcement of mandatory dress codes for women, including the use of unreasonable force against individuals they deem to be non-compliant. (Type of entity):State Religious Police Force",Entity,Primary name variation,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15598 +GUIDANCE PATROL,,,,,,,گشت ارشاد,Persian,Persian/Farsi,,,,,,,,,,Vozara Street,corner of 25th Street,District 6,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0085 (UK Statement of Reasons):The Morality Police are or have been involved in the commission of serious human rights violations in Iran, including being responsible for, engaging in and promoting violations of the right to liberty and security and the right to freedom of expression through their enforcement of mandatory dress codes for women, including the use of unreasonable force against individuals they deem to be non-compliant. (Type of entity):State Religious Police Force",Entity,Primary name variation,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15598 +GUIDANCE PATROL,,,,,,,Gasht-e Ershad,Persian,Persian/Farsi,,,,,,,,,,Vozara Street,corner of 25th Street,District 6,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0085 (UK Statement of Reasons):The Morality Police are or have been involved in the commission of serious human rights violations in Iran, including being responsible for, engaging in and promoting violations of the right to liberty and security and the right to freedom of expression through their enforcement of mandatory dress codes for women, including the use of unreasonable force against individuals they deem to be non-compliant. (Type of entity):State Religious Police Force",Entity,Primary name variation,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15598 +GUIDO DE ROMERO,Ana,Julia,,,,,,,,16/02/1959,Matagalpa,Nicaragua,Nicaragua,,,,,Attorney General of Nicaragua,Km 4 Carretera a Masaya,,,,Contiguo a Bancentro,Managua,,Nicaragua,"(UK Sanctions List Ref):NIC0010 (UK Statement of Reasons):Ana Julia Guido Ochoa is the Attorney General of the Republic of Nicaragua. There are reasonable grounds to suspect that in her role as Attorney General, she has been actively involved in undermining the independence and competence of the Public Ministry; repressing political candidates, non-governmental organisations and journalists; and restricting access to free and fair trials, to freedom from arbitrary arrest and detention, to freedom of expression, association and peaceful assembly, and the right of all persons in Nicaragua to human rights regardless of their political views. She is responsible for undermining democracy and the rule of law, repression of civil society and the democratic opposition and for human rights violations. (Gender):Female",Individual,AKA,,Nicaragua,15/11/2021,15/11/2021,15/11/2021,14148 +GUIDO OCHOA,Ana,Julia,,,,,,,,16/02/1959,Matagalpa,Nicaragua,Nicaragua,,,,,Attorney General of Nicaragua,Km 4 Carretera a Masaya,,,,Contiguo a Bancentro,Managua,,Nicaragua,"(UK Sanctions List Ref):NIC0010 (UK Statement of Reasons):Ana Julia Guido Ochoa is the Attorney General of the Republic of Nicaragua. There are reasonable grounds to suspect that in her role as Attorney General, she has been actively involved in undermining the independence and competence of the Public Ministry; repressing political candidates, non-governmental organisations and journalists; and restricting access to free and fair trials, to freedom from arbitrary arrest and detention, to freedom of expression, association and peaceful assembly, and the right of all persons in Nicaragua to human rights regardless of their political views. She is responsible for undermining democracy and the rule of law, repression of civil society and the democratic opposition and for human rights violations. (Gender):Female",Individual,Primary name,,Nicaragua,15/11/2021,15/11/2021,15/11/2021,14148 +GUIZANI,Achraf,Ben Fathi,Ben Mabrouk,,,,,,,05/10/1991,"El Gouazine, Dahmani, Governorate of Le Kef",Tunisia,Tunisia,,,13601334,Tunisia,,,,,,,,,,"(UK Sanctions List Ref):AQD0375 (UN Ref):QDi.432 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115).  Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/01/2022,29/12/2021,14/04/2022,14170 +GUIZANI,Achref,Ben Fethi,Ben Mabrouk,,,,,,,05/10/1991,"El Gouazine, Dahmani, Governorate of Le Kef",Tunisia,Tunisia,,,13601334,Tunisia,,,,,,,,,,"(UK Sanctions List Ref):AQD0375 (UN Ref):QDi.432 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115).  Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/01/2022,29/12/2021,14/04/2022,14170 +GUL,Haji,Gulab,,,,,,,,00/00/1963,"(1) Kandahar City, Kandahar Province. (2) Khwaja Malik village, Arghandab District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,(1) OR 1961825. (2) TR024417,"(1) Afghanistan. Issued in name of Akhtar Mohmad, son of Noor Mohmad, born in 1965 in Kandahar. Issued 4 Feb 2003 by Afghan Consulate in Quetta, Pakistan. Expired 2 Feb 2006 (2) Issued under the name of Haji Gulab Gul, son of Haji Hazrat Gul, born in 1955 in Logar, Afghanistan. Issued on 20/12/2003 by Central Passport Department in Kabul, Afghanistan. Expired 29 December 2006.",,,Deputy Minister of Foreign Affairs under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0032 (UN Ref):TAi.034 Believed to be in Afghanistan/Pakistan border area. Member of the Taliban Supreme Council as of May 2007. Member of the Financial Commission of the Taliban Council. Responsible for logistics for the Taliban and also active as a businessman in his personal capacity as at mid-2013. Belongs to Alizai tribe. Brother of Atiqullah Wali Mohammad (TAi.070). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6908 +GUL,Hasan,,,,,,حسن غول,,,00/08/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +GUL,Hasan,,,,,,حسن غول,,,00/09/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +GUL,Hasan,,,,,,حسن غول,,,00/00/1976,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +GUL,Hassan,,,,,,حسن غول,,,00/08/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +GUL,Hassan,,,,,,حسن غول,,,00/09/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +GUL,Hassan,,,,,,حسن غول,,,00/00/1976,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +GUL,BAKHT,,,,,,بخت گل,,,00/00/1980,"Aki Village, Zadran District, Paktiya Province",Afghanistan,Afghanistan,,,,,,Miram Shah,North Waziristan,,,,Federally Administered Tribal Areas,,Pakistan,"(UK Sanctions List Ref):AFG0127 (UN Ref):TAi.161 Communications assistant to Badruddin Haqqani (deceased). Also coordinates movement of Haqqani insurgents, foreign fighters and weapons in the Afghanistan/Pakistan border area. Belongs to Zadran tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,17/07/2012,27/06/2012,01/02/2021,12700 +GUL,Bakhta,,,,,,,,,00/00/1980,"Aki Village, Zadran District, Paktiya Province",Afghanistan,Afghanistan,,,,,,Miram Shah,North Waziristan,,,,Federally Administered Tribal Areas,,Pakistan,"(UK Sanctions List Ref):AFG0127 (UN Ref):TAi.161 Communications assistant to Badruddin Haqqani (deceased). Also coordinates movement of Haqqani insurgents, foreign fighters and weapons in the Afghanistan/Pakistan border area. Belongs to Zadran tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,17/07/2012,27/06/2012,01/02/2021,12700 +GUL,Janat,,,,,,,,,00/00/1972,"(1) Sarpolad village, Washer District, Helmand Province (2) Arghandab District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Head of Ariana Afghan Airlines under the Taliban regime,,,,,,,,Afghanistan,(UK Sanctions List Ref):AFG0092 (UN Ref):TAi.118 Belongs to Ghilzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7159 +GUL,Janat,,,,,,,,,00/00/1973,"(1) Sarpolad village, Washer District, Helmand Province (2) Arghandab District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Head of Ariana Afghan Airlines under the Taliban regime,,,,,,,,Afghanistan,(UK Sanctions List Ref):AFG0092 (UN Ref):TAi.118 Belongs to Ghilzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7159 +GULBAKHOR,Ismailova,,,,,,,,,22/12/1959,,Uzbekistan,(1) Russia (2) Uzbekistan,,,,,,Apartment 81-83,79 Ustabayeva Street,,,,Tashkent,1000187,Uzbekistan,"(UK Sanctions List Ref):RUS1327 (UK Statement of Reasons):Gulbakhor ISMAILOVA is the sister of Alisher USMANOV, an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019.  USMANOV was designated by the UK on 3 March 2022.  As an immediate family member of USMANOV and obtaining material benefit from USMANOV, Gulbakhor ISMAILOVA is associated with an involved person and therefore ISMAILOVA is an involved person under the Russia  (Sanctions)  (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,02/08/2022,15286 +GULEVICH,Victor,Vladimirovich,,,,,Віктар Уладзіміравіч ГУЛЕВІЧ,,,14/05/1969,"Bolshaya Pader, Slutsk district, Minsk region",Belarus,Belarus,,,,,(1) Chief of the General Staff of the Armed Forces of Belarus (2) First Deputy Minister of Defence,Ministry of Defence of the Republic of Belarus,1 Kommunisticheskaya St.,,,,Minsk,220034,Belarus,"(UK Sanctions List Ref):RUS0258 (UK Statement of Reasons):As Chief of the General Staff of the Armed Forces and First Deputy Minister of Defence, Major General Victor Gulevich is an active, visible and senior military leader in Belarus and, as part of the top-level chain of command, is responsible for directing the actions of the Belarusian armed forces, which have supported and enabled the Russian invasion of Ukraine. The Belarusian armed forces have conducted joint military exercises with Russian armed forces, and also consented to the deployment of Russian troops along the border of Belarus with Ukraine, which has directly contributed to Russia’s ability to both threaten and attack Ukraine, including from positions in Belarus. Gulevich therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14204 +GULEVICH,Victor,Vladimirovich,,,,Major General,Виктор Владимирович ГУЛЕВИЧ,,,14/05/1969,"Bolshaya Pader, Slutsk district, Minsk region",Belarus,Belarus,,,,,(1) Chief of the General Staff of the Armed Forces of Belarus (2) First Deputy Minister of Defence,Ministry of Defence of the Republic of Belarus,1 Kommunisticheskaya St.,,,,Minsk,220034,Belarus,"(UK Sanctions List Ref):RUS0258 (UK Statement of Reasons):As Chief of the General Staff of the Armed Forces and First Deputy Minister of Defence, Major General Victor Gulevich is an active, visible and senior military leader in Belarus and, as part of the top-level chain of command, is responsible for directing the actions of the Belarusian armed forces, which have supported and enabled the Russian invasion of Ukraine. The Belarusian armed forces have conducted joint military exercises with Russian armed forces, and also consented to the deployment of Russian troops along the border of Belarus with Ukraine, which has directly contributed to Russia’s ability to both threaten and attack Ukraine, including from positions in Belarus. Gulevich therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,01/03/2022,01/03/2022,01/03/2022,14204 +GUMEROVA,Liliya,Salavatovna,,,,,Ли́лия Салава́товна Гуме́рова,,,16/12/1972,"Uchaly, Uchalinsky District",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0869 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14820 +GUNAWAN,Rusman,,,,,,,,,06/07/1977,"Cianjur, West Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0180 (UN Ref):QDi.218 Brother of Nurjaman Riduan Isamuddin (QDi.087). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8832 +GUNAWAN,GUN GUN,RUSMAN,,,,,,,,06/07/1977,"Cianjur, West Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0180 (UN Ref):QDi.218 Brother of Nurjaman Riduan Isamuddin (QDi.087). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8832 +GUNDYAYEV,Vladimir,Mikhailovich,,,,,Владимир Михайлович Гундяев,,,20/11/1946,Saint Petersburg,Russia,Russia,,,,,Primate of the Russian Orthodox Church,,,,,,,,,"(UK Sanctions List Ref):RUS1467 (UK Statement of Reasons):Vladimir GUNDYAYEV, known as Patriarch Kirill, is the head of the Russian Orthodox Church. Patriarch Kirill has made multiple public statements in support of the Russian invasion of Ukraine. He therefore engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,16/06/2022,16/06/2022,16/06/2022,15405 +GUPTA,Ajay,Kumar,,,,,,,,05/02/1966,Saharanpur,India,(1) India. (2) South Africa,(1) Z1876211. (2) Z1440582. (3) Z2325724.,(1) Expiry: 03 Sep 2018. (2) - . (3) - .,,,Businessperson,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0016 Associated with: Atul Gupta (brother/business partner); Rajesh Kumar Gupta (brother/business partner); Salim Essa (business partner). (UK Statement of Reasons):Ajay Gupta, in association with Atul Gupta, Rajesh Gupta and Salim Essa, has been involved in serious corruption in South Africa, involving the misappropriation of property. He has been responsible for this corruption by playing a key part in its organisation and has financially benefitted from it. This corruption caused serious damage to South Africa. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14098 +GUPTA,Atul,Kumar,,,,,,,,14/06/1968,Saharanpur,India,(1) India. (2) South Africa,(1) 233646059. (2) 477486059. (3) 589623059.,(1) Expiry: 04 Jun 2018. (2) Expiry: 04 Jun 2018. (3) Expiry: 04 Jun 2018.,,,Businessperson,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0017 Associated with: Ajay Kumar Gupta (brother/business partner); Rajesh Kumar Gupta (brother/business partner) Salim Essa (business partner). (UK Statement of Reasons):Atul Gupta, in association with Ajay Gupta, Rajesh Gupta and Salim Essa, has been involved in serious corruption in South Africa, involving the misappropriation of property. He has been responsible for this corruption by playing a key part in its organisation and has financially benefitted from it. This corruption caused serious damage to South Africa. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14100 +GUPTA,Rajesh,Kumar,,,,,,,,05/08/1972,Saharanpur,India,(1) India. (2) South Africa,(1) M00069726. (2) 462064042. (3) M00006520. (4) M00138156.,(1) Expiry: 13 Sep 2022. (2) Expiry: 26 Jul 2016. (3) Expiry: 26 Jul 2019. (4) Expiry: 04 Feb 2025.,,,Businessperson,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0018 Associated with: Ajay Kumar Gupta (brother/business partner); Atul Kumar Gupta (brother/business partner); Salim Essa (business partner) (UK Statement of Reasons):Rajesh “Tony” Gupta, in association with Ajay Gupta, Atul Gupta and Salim Essa, has been involved in serious corruption in South Africa, involving the misappropriation of property. He has been responsible for this corruption by playing a key part in its organisation and has financially benefitted from it. This corruption caused serious damage to South Africa. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14102 +GUPTA,Tony,,,,,,,,,05/08/1972,Saharanpur,India,(1) India. (2) South Africa,(1) M00069726. (2) 462064042. (3) M00006520. (4) M00138156.,(1) Expiry: 13 Sep 2022. (2) Expiry: 26 Jul 2016. (3) Expiry: 26 Jul 2019. (4) Expiry: 04 Feb 2025.,,,Businessperson,,,,,,Dubai,,United Arab Emirates,"(UK Sanctions List Ref):GAC0018 Associated with: Ajay Kumar Gupta (brother/business partner); Atul Kumar Gupta (brother/business partner); Salim Essa (business partner) (UK Statement of Reasons):Rajesh “Tony” Gupta, in association with Ajay Gupta, Atul Gupta and Salim Essa, has been involved in serious corruption in South Africa, involving the misappropriation of property. He has been responsible for this corruption by playing a key part in its organisation and has financially benefitted from it. This corruption caused serious damage to South Africa. (Gender):Male",Individual,AKA,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14102 +GURG,,,,,,,,,,00/00/1958,"Robat village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,Governor of Nimroz Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0082 (UN Ref):TAi.104 Member of the Taliban Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7412 +GURG,,,,,,,,,,00/00/1959,"Robat village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,Governor of Nimroz Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0082 (UN Ref):TAi.104 Member of the Taliban Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7412 +GURG,,,,,,,,,,00/00/1960,"Robat village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,Governor of Nimroz Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0082 (UN Ref):TAi.104 Member of the Taliban Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7412 +GURG,,,,,,,,,,00/00/1961,"Robat village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,Governor of Nimroz Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0082 (UN Ref):TAi.104 Member of the Taliban Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7412 +GURG,,,,,,,,,,00/00/1962,"Robat village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,Governor of Nimroz Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0082 (UN Ref):TAi.104 Member of the Taliban Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7412 +GURG,,,,,,,,,,00/00/1963,"Robat village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,Governor of Nimroz Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0082 (UN Ref):TAi.104 Member of the Taliban Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7412 +GURIEV,Andrey,Grigoryevich,,,,,,,,24/03/1960,Lobnya,Russia,Russia,,,,,Former Deputy Chairman of the Board of Directors at PJSC PhosAgro,,,,,,,,,"(UK Sanctions List Ref):RUS1125 (UK Statement of Reasons):Andrey G GURYEV is a former Deputy Chair of the Board of Directors at PJSC PhosAgro, a leading Russian chemical company. Through his directorship at PJSC PhosAgro, which he held between 2013 and 2022, GURYEV has been involved in obtaining a benefit or supporting the Government of Russia by working as a director (whether executive or non-executive), trustee, or equivalent, of an entity carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian chemicals sector. (Gender):Male",Individual,Primary name variation,,Russia,06/04/2022,06/04/2022,06/04/2022,15072 +GURTSEVICH,Andrei,Mikalaevich,,,,,Андрей Микалаевич Гурцевич,,,27/07/1971,"Baranovich, Brest Region/Oblast",Belarus,Belarus,,,,,First Deputy Commander of the Air Force,,,,,,,,,"(UK Sanctions List Ref):BEL0099 (UK Statement of Reasons):In his position as First Deputy Commander of the Air Force and Air Defence Forces of the Armed Forces of the Republic of Belarus, Andrei Gurtsevich is responsible for the order dispatching military aircraft to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In so doing, Gurtsevich acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian aviation authorities. This resulted in the forced redirection of flight FR4978, the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega. This politically-motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression against civil society and democratic opposition in Belarus. Andrei Gurtsevich is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name,,Belarus,21/06/2021,25/06/2021,04/02/2022,14117 +GURTSEVICH,Andrei,Nikolaevich,,,,,,,,27/07/1971,"Baranovich, Brest Region/Oblast",Belarus,Belarus,,,,,First Deputy Commander of the Air Force,,,,,,,,,"(UK Sanctions List Ref):BEL0099 (UK Statement of Reasons):In his position as First Deputy Commander of the Air Force and Air Defence Forces of the Armed Forces of the Republic of Belarus, Andrei Gurtsevich is responsible for the order dispatching military aircraft to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In so doing, Gurtsevich acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian aviation authorities. This resulted in the forced redirection of flight FR4978, the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega. This politically-motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression against civil society and democratic opposition in Belarus. Andrei Gurtsevich is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,25/06/2021,04/02/2022,14117 +GURULEV,Andrey,Viktorovich,,,,,ГУРУЛЁВ Андрей Викторович,,,16/10/1967,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0360 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14305 +GURYEV,Andrey,Andreevich,,,,,ГУРЬЕВ Андрей Андреевич,Cyrillic,Russian,07/03/1982,,Russia,Russia,,,,,"Former Member of the Board, the CEO and former Chairman of the Management Board of PSJC PhosAgro",,,,,,,,,"(UK Sanctions List Ref):RUS0783 (UK Statement of Reasons):Andrey Andreevich GURYEV is a former Member of the Board, the CEO, and former Chairman of the Management Board of PSJC PhosAgro, a leading Russian chemical company. Through his role in PJSC PhosAgro, GURYEV is or has been involved in obtaining a benefit or supporting the Government of Russia by working as a director (whether executive or non-executive), trustee, or equivalent, of an entity carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian chemicals sector. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14734 +GURYEV,Andrey,Grigoryevich,,,,,Андрей Григорьевич Гурьев,,,24/03/1960,Lobnya,Russia,Russia,,,,,Former Deputy Chairman of the Board of Directors at PJSC PhosAgro,,,,,,,,,"(UK Sanctions List Ref):RUS1125 (UK Statement of Reasons):Andrey G GURYEV is a former Deputy Chair of the Board of Directors at PJSC PhosAgro, a leading Russian chemical company. Through his directorship at PJSC PhosAgro, which he held between 2013 and 2022, GURYEV has been involved in obtaining a benefit or supporting the Government of Russia by working as a director (whether executive or non-executive), trustee, or equivalent, of an entity carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian chemicals sector. (Gender):Male",Individual,Primary name,,Russia,06/04/2022,06/04/2022,06/04/2022,15072 +GURZHIY,Andrei,Anatolievich,,,,,,,,10/10/1975,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0036 (UK Statement of Reasons):Andrei Gurzhy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13953 +GURZHIY,Andrey,Anatolievich,,,,,,,,10/10/1975,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0036 (UK Statement of Reasons):Andrei Gurzhy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13953 +GURZHIY,Andrey,Anatolyevich,,,,,,,,10/10/1975,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0036 (UK Statement of Reasons):Andrei Gurzhy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13953 +GURZHY,Andrei,Anatolievich,,,,,,,,10/10/1975,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0036 (UK Statement of Reasons):Andrei Gurzhy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13953 +GURZHY,Andrey,Anatolievich,,,,,,,,10/10/1975,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0036 (UK Statement of Reasons):Andrei Gurzhy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13953 +GUSACHENKA,Siarhei,Aliaksandravich,,,,,,,,05/11/1983,Minsk,Belarus,Belarus,(1) SP0017927 (2) MP2486634 (3) MP2972008,(1) Expiry: 19 Jul 2022 (2) Expiry: 05 Nov 2028 (3) Expiry: 05 Nov 2028,,,"Deputy Chairman, National State TV and Radio Company (Belteleradio – BTRC)",Belteleradio,9 Makayonka St,,,,Minsk,220807,Belarus,"(UK Sanctions List Ref):BEL0118 (UK Statement of Reasons):In his position as the Deputy Chairman of BTRC and host of weekly propaganda TV-show “Glavnyy efir”, Sergey Alexandrovich GUSACHENKO has been willingly providing the Belarusian public with false information about the outcome of elections, protests and the repressions perpetrated by the state authorities. GUSHACHENKO is directly responsible for the way in which the State Television presents information about the situation in Belarus, thus lending support to the regime. GUSACHENKO therefore is or has been involved in undermining democracy and the rule of law in Belarus and repressing of civil society and the democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14161 +GUSACHENKO,Sergei,Aleksandrovich,,,,,,,,05/11/1983,Minsk,Belarus,Belarus,(1) SP0017927 (2) MP2486634 (3) MP2972008,(1) Expiry: 19 Jul 2022 (2) Expiry: 05 Nov 2028 (3) Expiry: 05 Nov 2028,,,"Deputy Chairman, National State TV and Radio Company (Belteleradio – BTRC)",Belteleradio,9 Makayonka St,,,,Minsk,220807,Belarus,"(UK Sanctions List Ref):BEL0118 (UK Statement of Reasons):In his position as the Deputy Chairman of BTRC and host of weekly propaganda TV-show “Glavnyy efir”, Sergey Alexandrovich GUSACHENKO has been willingly providing the Belarusian public with false information about the outcome of elections, protests and the repressions perpetrated by the state authorities. GUSHACHENKO is directly responsible for the way in which the State Television presents information about the situation in Belarus, thus lending support to the regime. GUSACHENKO therefore is or has been involved in undermining democracy and the rule of law in Belarus and repressing of civil society and the democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14161 +GUSACHENKO,Sergei,Alexandrovich,,,,,,,,05/11/1983,Minsk,Belarus,Belarus,(1) SP0017927 (2) MP2486634 (3) MP2972008,(1) Expiry: 19 Jul 2022 (2) Expiry: 05 Nov 2028 (3) Expiry: 05 Nov 2028,,,"Deputy Chairman, National State TV and Radio Company (Belteleradio – BTRC)",Belteleradio,9 Makayonka St,,,,Minsk,220807,Belarus,"(UK Sanctions List Ref):BEL0118 (UK Statement of Reasons):In his position as the Deputy Chairman of BTRC and host of weekly propaganda TV-show “Glavnyy efir”, Sergey Alexandrovich GUSACHENKO has been willingly providing the Belarusian public with false information about the outcome of elections, protests and the repressions perpetrated by the state authorities. GUSHACHENKO is directly responsible for the way in which the State Television presents information about the situation in Belarus, thus lending support to the regime. GUSACHENKO therefore is or has been involved in undermining democracy and the rule of law in Belarus and repressing of civil society and the democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14161 +GUSACHENKO,Sergey,Aleksandrovich,,,,,,,,05/11/1983,Minsk,Belarus,Belarus,(1) SP0017927 (2) MP2486634 (3) MP2972008,(1) Expiry: 19 Jul 2022 (2) Expiry: 05 Nov 2028 (3) Expiry: 05 Nov 2028,,,"Deputy Chairman, National State TV and Radio Company (Belteleradio – BTRC)",Belteleradio,9 Makayonka St,,,,Minsk,220807,Belarus,"(UK Sanctions List Ref):BEL0118 (UK Statement of Reasons):In his position as the Deputy Chairman of BTRC and host of weekly propaganda TV-show “Glavnyy efir”, Sergey Alexandrovich GUSACHENKO has been willingly providing the Belarusian public with false information about the outcome of elections, protests and the repressions perpetrated by the state authorities. GUSHACHENKO is directly responsible for the way in which the State Television presents information about the situation in Belarus, thus lending support to the regime. GUSACHENKO therefore is or has been involved in undermining democracy and the rule of law in Belarus and repressing of civil society and the democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14161 +GUSACHENKO,Sergey,Alexandrovich,,,,,Сергей Александрович ГУСАЧЕНКО,,,05/11/1983,Minsk,Belarus,Belarus,(1) SP0017927 (2) MP2486634 (3) MP2972008,(1) Expiry: 19 Jul 2022 (2) Expiry: 05 Nov 2028 (3) Expiry: 05 Nov 2028,,,"Deputy Chairman, National State TV and Radio Company (Belteleradio – BTRC)",Belteleradio,9 Makayonka St,,,,Minsk,220807,Belarus,"(UK Sanctions List Ref):BEL0118 (UK Statement of Reasons):In his position as the Deputy Chairman of BTRC and host of weekly propaganda TV-show “Glavnyy efir”, Sergey Alexandrovich GUSACHENKO has been willingly providing the Belarusian public with false information about the outcome of elections, protests and the repressions perpetrated by the state authorities. GUSHACHENKO is directly responsible for the way in which the State Television presents information about the situation in Belarus, thus lending support to the regime. GUSACHENKO therefore is or has been involved in undermining democracy and the rule of law in Belarus and repressing of civil society and the democratic opposition. (Gender):Male",Individual,Primary name,,Belarus,02/12/2021,02/12/2021,18/03/2022,14161 +GUSAKOVSKY,Aleksandr,Vladislavovich,,,,,Александр Владиславович ГУСАКОВСКИЙ,,,25/08/1970,Izhevsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0970 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14921 +GUSEV,Dmitry,Vladimirovich,,,,,Дмитрий Владимирович Гусев,Cyrillic,Russian,25/01/1976,Anadyr,Russia,Russia,,,,,"Chairman of the Management Board, SOVCOMBANK",Ulofa Palme street 7,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1020 (UK Statement of Reasons):Dmitry Vladimirovich GUSEV is the Chairman of the Management Board of SOVCOMBANK. In his role, GUSEV is a member of and associated with SOVCOMBANK. SOVCOMBANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15351 +GUSEV,Pavel,Nikolaevich,,,,,,,,04/04/1949,Moscow,Russia,Russia,,,,,Editor and owner of “Moskovskiy Komsomolets”,,,,,,,,,"(UK Sanctions List Ref):RUS1386 (UK Statement of Reasons):Pavel Nikolayevitch GUSEV is Editor-in-Chief of Moskovsky Komsomolets and is therefore responsible for the content of the newspaper. This newspaper has consistently supported and promoted the positions of the Russian Government on Ukraine, including engaging in active denial of the killing of civilians, most notably the massacre in Bucha. GUSEV, through the output of Moskovsky Komsomolets, has been involved in destabilising Ukraine, undermining, or threatening the territorial integrity, sovereignty, or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15319 +GUSEV,Aleksandr,Viktorovich,,,,,Александр Викторович Гусев,,,27/07/1963,,,Russia,,,,,Governor of Voronezh Region,,,,,,,,,"(UK Sanctions List Ref):RUS1530 (UK Statement of Reasons):Aleksandr Viktorovich GUSEV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because GUSEV is a regional governor. Specifically, GUSEV is Governor of Voronezh Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15483 +GUSEV,Denis,Vladimirovich,,,,,Денис Владимирович ГУСЕВ,,,26/12/1976,Arkhangelsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0933 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14884 +GUSEV,Pavel,Nikolayevitch,,,,,Павел Николаевич ГУСЕВ,Cyrillic,Russian,04/04/1949,Moscow,Russia,Russia,,,,,Editor and owner of “Moskovskiy Komsomolets”,,,,,,,,,"(UK Sanctions List Ref):RUS1386 (UK Statement of Reasons):Pavel Nikolayevitch GUSEV is Editor-in-Chief of Moskovsky Komsomolets and is therefore responsible for the content of the newspaper. This newspaper has consistently supported and promoted the positions of the Russian Government on Ukraine, including engaging in active denial of the killing of civilians, most notably the massacre in Bucha. GUSEV, through the output of Moskovsky Komsomolets, has been involved in destabilising Ukraine, undermining, or threatening the territorial integrity, sovereignty, or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15319 +GUSEV,Dmitry,Gennadievich,,,,,Гусев Дмитрий Геннадьевич,,,23/07/1972,Sverdlovsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0361 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14306 +GUTSAN,Aleksandr,Vladimirovich,,,,,ГУЦАН Александр Владимирович,Cyrillic,Russian,06/06/1960,"Siversky, Gatchinsky District, Leningrad Region",Russia,Russia,,,,,(1) Presidential Envoy to the Northwestern Federal District (2) Member of the Security Council of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS1045 (UK Statement of Reasons):Aleksandr Vladimirovich GUTSAN is a Member of the Security Council and Deputy Prime Minister of the Russian Federation. As a Member of the Security Council, GUTSAN is or has been responsible for, engaged in, provided support for or promoted policies or actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,24/03/2022,24/03/2022,09/05/2022,14988 +GUTSERIEV,Mikhail,Safarbekovich,,,,,Михаил Сафарбекович Гуцериев,,,09/03/1958,(1) Akmolinsk (2) Akmolinsk (3) Nur-Sultan (4) Nur-Sultan,(1) Kazakhstan (2) Soviet Union (3) Kazakhstan (4) Soviet Union,Cyprus,K00162033,Expiry: 11 Feb 2024,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):BEL0110 (UK Statement of Reasons):Mikhail Gutseriev is a prominent Russian businessman who is one of the main private investors in Belarus and a longstanding associate of Alexander Lukashenko, who is responsible for serious violations of human rights and the repression of civil society and democratic opposition in Belarus. Gutseriev has provided support for the Government of Belarus, including through use of his business interests. (Gender):Male",Individual,Primary name,,Belarus,09/08/2021,09/08/2021,04/02/2022,14131 +GUTSERIEV,Said,Mikhailovich,,,,,"ГУЦЕРИЕВ, Саид Михайлович",,,18/04/1988,Grozny,Russia,Russia,,,,,,Building 10,Apartment 15,Burdenko Street,,,Moscow,119121,Russia,"(UK Sanctions List Ref):RUS1479 (UK Statement of Reasons):Said GUTSERIEV is and has been involved in obtaining a benefit from or supporting the Government of Russia by working as a director (whether executive or non-executive), or equivalent, and owning or controlling directly or indirectly (within the meaning of regulation 7), of PJSC SFI, an entity carrying on business in the Russian financial services sector, a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,29/06/2022,29/06/2022,29/06/2022,15418 +GUTSERIEV,Sait-Salam,Safarbekovich,,,,,саит салам гуцериев,,,25/07/1959,Nur-Sultan,Kazakhstan,Russia,,,,,,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1480 (UK Statement of Reasons):Sait-Salam GUTSERIEV is involved in obtaining a benefit from or supporting the Government of Russia by owning or controlling directly or indirectly (within the meaning of regulation 7) and working as a director (whether executive or non-executive), or equivalent, of JSC NK Neftisa, an entity carrying on business in the energy sector - a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,29/06/2022,29/06/2022,29/06/2022,15419 +GUTSERIYEV,Mikhail,Safarbekovich,,,,,,,,09/03/1958,(1) Akmolinsk (2) Akmolinsk (3) Nur-Sultan (4) Nur-Sultan,(1) Kazakhstan (2) Soviet Union (3) Kazakhstan (4) Soviet Union,Cyprus,K00162033,Expiry: 11 Feb 2024,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):BEL0110 (UK Statement of Reasons):Mikhail Gutseriev is a prominent Russian businessman who is one of the main private investors in Belarus and a longstanding associate of Alexander Lukashenko, who is responsible for serious violations of human rights and the repression of civil society and democratic opposition in Belarus. Gutseriev has provided support for the Government of Belarus, including through use of his business interests. (Gender):Male",Individual,Primary name variation,,Belarus,09/08/2021,09/08/2021,04/02/2022,14131 +GUZEEVA,Inna,Nikolayevna,,,,,,,,20/05/1971,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Ukraine,,,,,Deputy Chair of the Crimea Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0104 Ukraine imposed sanctions on 15/05/2017 (UK Statement of Reasons):Deputy Chair of the Crimea Electoral Commission. In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13666 +GUZEYEVA,Inna,Nikolayevna,,,,,Инна Николаевна ГУЗЕЕВА,,Russian,20/05/1971,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Ukraine,,,,,Deputy Chair of the Crimea Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0104 Ukraine imposed sanctions on 15/05/2017 (UK Statement of Reasons):Deputy Chair of the Crimea Electoral Commission. In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,14/05/2018,31/12/2020,16/09/2022,13666 +GUZIEVA,Inna,Mykolaivna,,,,,Інна Миколаївна ГУЗЄЄВА,,Ukrainian,20/05/1971,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Ukraine,,,,,Deputy Chair of the Crimea Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0104 Ukraine imposed sanctions on 15/05/2017 (UK Statement of Reasons):Deputy Chair of the Crimea Electoral Commission. In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13666 +GWANG IL,Hyon,,,,,,,,,27/05/1961,,,,,,,,Department Director for Scientific Development at the National Aerospace Development Administration,,,,,,,,,(UK Sanctions List Ref):DPR0213 (UN Ref):KPi.015,Individual,AKA,Good quality,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13326 +HA,Jang,Chang,,,,,,,,10/01/1964,,,,,,,,President of the Second Academy of Natural Sciences (SANS),,,,,,,,,(UK Sanctions List Ref):DPR0199 (UN Ref):KPi.037 N/A,Individual,AKA,Good quality,Democratic People's Republic of Korea,09/12/2016,30/11/2016,31/12/2020,13422 +HA,CHANG,CHANG,,,,,,,,10/01/1964,,,,,,,,President of the Second Academy of Natural Sciences (SANS),,,,,,,,,(UK Sanctions List Ref):DPR0199 (UN Ref):KPi.037 N/A,Individual,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,31/12/2020,13422 +HABIB,Abdul,,,,,,,,,15/10/1963,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +HABIB,Abdul,,,,,,,,,14/02/1973,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +HABIB,Abdul,,,,,,,,,00/00/1967,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +HABIB,Abdul,,,,,,,,,00/00/1957,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +HABIB,Hasan,Abu,,,,,,,,00/00/1975,Derna,Libya,Libya,542858,,55252,,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0193 (UN Ref):QDi.385 Facilitator for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930734",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13318 +HABIBI,Mohammad,Reza,,,,,,,,,,,,,,,,Attorney General of Isfahan. Former Deputy Prosecutor of Isfahan,,,,,,,,,"(UK Sanctions List Ref):IHR0056 (UK Statement of Reasons):Head of the Ministry of Justice office in Yazd. Former Deputy Prosecutor of Isfahan. Complicit in proceedings denying defendants a fair trial — such as Abdollah Fathi, executed in May 2011 after his right to be heard and mental health issues were ignored by Habibi during his trial in March 2010. He was, therefore, complicit in a grave violation of the right to due process, contributing to a sharp increase in executions in 2011. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,31/12/2020,12181 +HABIBULLAH,RUSTUM,HANAFI,,,,Maulavi,رستم حنفی حبیب الله,,,00/00/1963,"Dara Kolum, Do Aab District, Nuristan Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Public Works under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0053 (UN Ref):TAi.069 Taliban member responsible for Nuristan Province, Afghanistan, as of May 2007. Belongs to Nuristani tribe. Reportedly deceased in early 2012. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7379 +HABO,,,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HABO,,,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HABO,,,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HABO,,,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HABO,,,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HABO,,,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HABU,,,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HABU,,,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HABU,,,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HABU,,,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HABU,,,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HABU,,,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HADDAD,Mohammad,Samir,,,,,,,,00/00/1956,Tartous,Syria,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0374 (UK Statement of Reasons):Former Minister of State. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,06/11/2020,31/12/2020,13/05/2022,14004 +HADI,Abdul,,,,,,,,,06/07/1977,"Cianjur, West Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0180 (UN Ref):QDi.218 Brother of Nurjaman Riduan Isamuddin (QDi.087). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8832 +HADI,MIZBAN,KHADR,,,,,مزبان خضر هادي,,,00/00/1938,Diyala,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0084 (UN Ref):IQi.023,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7607 +HADUD,Abu-Ahmad,,,,,,,,,07/04/1986,Damascus,Syria,Syria,00351762055,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0139 (UN Ref):QDi.336 Administrative amir of Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818211,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13133 +HAERI,Mojtaba,,,,,Engineer,,,,,,,,,,,,Former MODAFL Deputy for Industry,,,,,,,,,(UK Sanctions List Ref):INU0026 (UK Statement of Reasons):Former MODAFL Deputy for Industry.,Individual,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10636 +HAEYANG CREW MANAGEMENT COMPANY,,,,,,,,,,,,,,,,,,,Dongheung-dong Changgwang Street,Chung-Ku,PO Box 125,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0181 (UN Ref):KPe.020 Ocean Maritime Management Company, Limited is the operator/manager of the following vessels with IMO Number: (a) Chol Ryong (Ryong Gun Bong) 8606173, (b) Chong Bong (Greenlight) (Blue Nouvelle) 8909575, (c) Chong Rim 2 8916293, (d) Hoe Ryong 9041552, (e) Hu Chang (O Un Chong Nyon) 8330815, (f) Hui Chon (Hwang Gum San 2) 8405270, (g) Ji Hye San (Hyok Sin 2) 8018900, (h) Kang Gye (Pi Ryu Gang) 8829593, (i) Mi Rim 8713471, (j) Mi Rim 2 9361407, (k) Rang (Po Thong Gang) 8829555, (l) Ra Nam 2 8625545, (m) Ra Nam 3 9314650, (n) Ryo Myong 8987333, (o) Ryong Rim (Jon Jin 2) 8018912, (p) Se Pho (Rak Won 2) 8819017, (q) Songjin (Jang Ja San Chong Nyon Ho) 8133530, (r) South Hill 2 8412467,(s) Tan Chon (Ryon Gang 2) 7640378, (t) Thae Pyong San (Petrel 1) 9009085, (u) Tong Hung San (Chong Chon Gang) 7937317, (v) Tong Hung 8661575. It played a key role in arranging the shipment of concealed cargo of arms and related materiel from Cuba to the DPRK in July 2013. As such, Ocean Maritime Management Company, Limited contributed to activities prohibited by the resolutions, namely the arms embargo imposed by resolution 1718 (2006), as modified by resolution 1874 (2009), and contributed to the evasion of the measures imposed by these resolutions. International Maritime Organization (IMO) Number: 1790183.",Entity,AKA,,Democratic People's Republic of Korea,16/10/2014,28/07/2014,02/08/2022,13143 +HAEYANG CREW MANAGEMENT COMPANY,,,,,,,,,,,,,,,,,,,Donghung Dong,Central District,PO Box 120,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0181 (UN Ref):KPe.020 Ocean Maritime Management Company, Limited is the operator/manager of the following vessels with IMO Number: (a) Chol Ryong (Ryong Gun Bong) 8606173, (b) Chong Bong (Greenlight) (Blue Nouvelle) 8909575, (c) Chong Rim 2 8916293, (d) Hoe Ryong 9041552, (e) Hu Chang (O Un Chong Nyon) 8330815, (f) Hui Chon (Hwang Gum San 2) 8405270, (g) Ji Hye San (Hyok Sin 2) 8018900, (h) Kang Gye (Pi Ryu Gang) 8829593, (i) Mi Rim 8713471, (j) Mi Rim 2 9361407, (k) Rang (Po Thong Gang) 8829555, (l) Ra Nam 2 8625545, (m) Ra Nam 3 9314650, (n) Ryo Myong 8987333, (o) Ryong Rim (Jon Jin 2) 8018912, (p) Se Pho (Rak Won 2) 8819017, (q) Songjin (Jang Ja San Chong Nyon Ho) 8133530, (r) South Hill 2 8412467,(s) Tan Chon (Ryon Gang 2) 7640378, (t) Thae Pyong San (Petrel 1) 9009085, (u) Tong Hung San (Chong Chon Gang) 7937317, (v) Tong Hung 8661575. It played a key role in arranging the shipment of concealed cargo of arms and related materiel from Cuba to the DPRK in July 2013. As such, Ocean Maritime Management Company, Limited contributed to activities prohibited by the resolutions, namely the arms embargo imposed by resolution 1718 (2006), as modified by resolution 1874 (2009), and contributed to the evasion of the measures imposed by these resolutions. International Maritime Organization (IMO) Number: 1790183.",Entity,AKA,,Democratic People's Republic of Korea,16/10/2014,28/07/2014,02/08/2022,13143 +HAFIZ,Muhammad,,,,,,,,,05/06/1950,"Sargodha, Punjab",Pakistan,Pakistan,,,3520025509842-7,Pakistan,,House No. 116E,Mohalla Johar,Lahore,Tehsil,Lahore City,Lahore District,,Pakistan,"(UK Sanctions List Ref):AQD0183 (UN Ref):QDi.263 Muhammad Saeed is the leader of Lashkar-e-Tayyiba (QDe.118). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543488. Address country Pakistan, location as at May 2008",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9215 +HAIDAR,Ali,,,,,,,,,00/00/1962,Hama,Syria,Syria,,,,,Former Head of the National Reconciliation Agency,,,,,,,,,"(UK Sanctions List Ref):SYR0075 Linked to Bashar Asad (UK Statement of Reasons):Former Head of the National Reconciliation Agency and Former State Minister for National Reconciliation Affairs. As a Former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12784 +HAIDARA,Abou,,,,,,,,,01/01/1968,(1) Kef Rih (2) Guelma,(1) Algeria (2) Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0303 (UN Ref):QDi.152 In detention in Algeria since Oct. 2004. Former member of the GSPC listed as The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. El Para (combat name), Abderrezak Le Para (combat name).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/12/2003,04/12/2003,16/02/2022,7890 +HAIDARA,Abou,,,,,,,,,24/04/1968,(1) Kef Rih (2) Guelma,(1) Algeria (2) Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0303 (UN Ref):QDi.152 In detention in Algeria since Oct. 2004. Former member of the GSPC listed as The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. El Para (combat name), Abderrezak Le Para (combat name).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/12/2003,04/12/2003,16/02/2022,7890 +HAIDUKEVICH,Aleh,Siarheevich,,,,,,,,26/03/1977,Minsk,Belarus,Belarus,,,,,(1) Deputy Chairman of the Standing Committee of International Affairs in the House of Representatives of the National Assembly (2) Member of the delegation of the National Assembly for contacts with the Parliamentary Assembly of the Council of Europe,,,,,,,,,"(UK Sanctions List Ref):BEL0102 (UK Statement of Reasons):Oleg Gaidukevich is the Deputy Chairman of the Standing Committee of International Affairs in the house of Representative of the National Assembly, and a member of the delegation of the national Assembly for contacts with the Parliamentary Assembly of the Council of Europe. In this capacity, he has made public statements in support of Alexander Lukashenko and the actions taken by the Belarusian authorities to forcibly divert passenger flight FR4978 to Minsk airport without proper justification on 21 May 2021. This politically motivated decision was aimed at arresting and detaining opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega and is a form of repression against civil society and democratic opposition in Belarus. Therefore, Oleg Gaidukevich supports the Lukashenko regime and its repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14116 +HAIDUKEVICH,Oleg,Sergeevich,,,,,,,,26/03/1977,Minsk,Belarus,Belarus,,,,,(1) Deputy Chairman of the Standing Committee of International Affairs in the House of Representatives of the National Assembly (2) Member of the delegation of the National Assembly for contacts with the Parliamentary Assembly of the Council of Europe,,,,,,,,,"(UK Sanctions List Ref):BEL0102 (UK Statement of Reasons):Oleg Gaidukevich is the Deputy Chairman of the Standing Committee of International Affairs in the house of Representative of the National Assembly, and a member of the delegation of the national Assembly for contacts with the Parliamentary Assembly of the Council of Europe. In this capacity, he has made public statements in support of Alexander Lukashenko and the actions taken by the Belarusian authorities to forcibly divert passenger flight FR4978 to Minsk airport without proper justification on 21 May 2021. This politically motivated decision was aimed at arresting and detaining opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega and is a form of repression against civil society and democratic opposition in Belarus. Therefore, Oleg Gaidukevich supports the Lukashenko regime and its repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14116 +HAITAI TECHNOLOGY DEVELOPMENT CO. LTD,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CYB0003 (UK Statement of Reasons):Huaying Haitai, known in cyber security circles as APT10 (Advanced Persistent Threat 10), Red Apollo, CVNX, Stone Panda, MenuPass and Potassium, was involved in relevant cyber activity Operation Cloud Hopper, one of the most significant and widespread cyber instructions to date. They conducted data interference through the theft of intellectual property and sensitive commercial data over many years. Huaying Haitai targeted companies across six continents and sectors banking and finance, government, aviation, space, and satellite technology, manufacturing technology, medical, oil and gas, mining, communications technology, computer processing technology, and defence technology. This activity undermined the prosperity of the United Kingdom and countries other than the United Kingdom (Website):huayinghaitai.com (Type of entity):Company",Entity,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13909 +HAJI,Ahmad,,,,,,,,,00/00/1964,"(1) Hisarak District, Nangarhar Province. (2) Surkh Rod District, Nangarhar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,D 000974,Afghanistan number,,,"(1) Head of Taliban Peshawar Financial Commission. (2) Military Attache, Taliban Embassy, Islamabad, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0098 (UN Ref):TAi.128 Financial advisor to Taliban Peshawar Military Council and Head of Taliban Peshawar Financial Commission. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6911 +HAJI ABDUL BASIR AND ZAR JAMEEL HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 1: Sanatan (variant Sanatin) Bazaar,Sanatan,Bazaar Street,near Trench (variant Tranch) Road,,"Chaman, Baluchistan Province",,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR AND ZAR JAMEEL HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 10,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR AND ZAR JAMEEL HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 11,,,,,,,Iran,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR AND ZAR JAMEEL HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 2,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR AND ZAR JAMEEL HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 3,,,,,Lahore,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR AND ZAR JAMEEL HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 4,,,,,Peshawar,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR AND ZAR JAMEEL HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 5,,,,,Karachi,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR AND ZAR JAMEEL HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 6,,,,,Islamabad,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR AND ZAR JAMEEL HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 7,,,,,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR AND ZAR JAMEEL HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 8,,,,,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR AND ZAR JAMEEL HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 9,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR EXCHANGE SHOP,,,,,,,,,,,,,,,,,,,Branch Office 1: Sanatan (variant Sanatin) Bazaar,Sanatan,Bazaar Street,near Trench (variant Tranch) Road,,"Chaman, Baluchistan Province",,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR EXCHANGE SHOP,,,,,,,,,,,,,,,,,,,Branch Office 10,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR EXCHANGE SHOP,,,,,,,,,,,,,,,,,,,Branch Office 11,,,,,,,Iran,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR EXCHANGE SHOP,,,,,,,,,,,,,,,,,,,Branch Office 2,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR EXCHANGE SHOP,,,,,,,,,,,,,,,,,,,Branch Office 3,,,,,Lahore,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR EXCHANGE SHOP,,,,,,,,,,,,,,,,,,,Branch Office 4,,,,,Peshawar,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR EXCHANGE SHOP,,,,,,,,,,,,,,,,,,,Branch Office 5,,,,,Karachi,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR EXCHANGE SHOP,,,,,,,,,,,,,,,,,,,Branch Office 6,,,,,Islamabad,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR EXCHANGE SHOP,,,,,,,,,,,,,,,,,,,Branch Office 7,,,,,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR EXCHANGE SHOP,,,,,,,,,,,,,,,,,,,Branch Office 8,,,,,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI ABDUL BASIR EXCHANGE SHOP,,,,,,,,,,,,,,,,,,,Branch Office 9,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,Chaghi,Chaghi District,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,Cholmon Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,Flat number 4,Furqan Centre,Jamaluddin Afghani Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,Gerd-e-Jangal,Chaghi District,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,Haji Ghulam Nabi Market,Lashkar Gar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,Hazar Joft,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,Ismat Bazaar,Marjah District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,Lakri City,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,Lashkar Gar Bazaar,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,Main Bazaar,Safar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,Money Exchange Market,Lashkar Gar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,Munsafi Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,"Office number 4, 2nd Floor",Muslim Plaza Building,Doctor Banu Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,Safar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,"Shop number 1, 1st Floor",Kadari Place,Abdul Samad Khan Street (next to Fatima Jena Road),,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,Shop number 1584,Furqan (Fahr Khan) Centre,Chalhor Mal Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,"Shop number 25, 5th Floor",Sarafi Market,,Kandahar City,Kandahar District,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,"Suite number 8, 4th Floor",Sarafi Market,District number 1,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI AHMAD SHAH HAWALA,,,,,,,,,,,,,,,,,,,Zaranj,,,,,Nimruz Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,"Ansari Market, 2nd Floor",,,,,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 10,"Suite numbers 196-197, 3rd Floor",Khorasan Market,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 11,Sarafi Market,,,Zaranj District,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 12,Sarafi Market,Wesh,,Spin Boldak District,,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 13,Sarafi Market,,,,Farah,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 14,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 15,,,,,Zahedan,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 16,,,,,Zabul,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 2,,,,Peshawar,Khyber Paktunkhwa Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 3,Moishah Chowk Road,,,Lahore,Punjab Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 4,,,,Karachi,Sindh Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 5,Larran Road number 2,Chaman,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 6,Shop number 237,Shah Zada Market (also known as Sarai Shahzada),Puli Khishti area,Police District 1,Kabul,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 7,"Shop numbers 21 and 22, 2nd Floor",Kandahar City Sarafi Market,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 8,Gereshk City,Nahr-e Saraj District,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 9,Lashkar Gah Bazaar,Lashkar Gah,Lashkar Gah District,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Chaman Central Bazaar,Chaman,Shah Zada Market (also known as Sarai Shahzada),,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Chohar Mir Road,Kandahari Bazaar,,,Quetta City,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,"Haji Ghulam Nabi Market, 2nd Floor",Lashkar Gah District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Kachara Road,Nasrullah Khan Chowk,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Khorasan Market,Shahre Naw,District 5,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,"New Sarafi Market, 2nd Floor",,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Office number 3,Near Fatima Jinnah Road,Dr. Bano Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Room number 1,Abdul Sattar Plaza,Hafiz Saleem Street,Munsafi Road,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Safi Market,,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Shop number 3,Dr. Bano Road,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ALIM HAWALA,,,,,,,,,,,,,,,,,,,Wazir Mohammad Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI BASEER HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 1: Sanatan (variant Sanatin) Bazaar,Sanatan,Bazaar Street,near Trench (variant Tranch) Road,,"Chaman, Baluchistan Province",,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASEER HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 10,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASEER HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 11,,,,,,,Iran,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASEER HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 2,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASEER HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 3,,,,,Lahore,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASEER HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 4,,,,,Peshawar,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASEER HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 5,,,,,Karachi,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASEER HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 6,,,,,Islamabad,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASEER HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 7,,,,,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASEER HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 8,,,,,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASEER HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 9,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASHIR AND ZARJMIL HAWALA COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 1: Sanatan (variant Sanatin) Bazaar,Sanatan,Bazaar Street,near Trench (variant Tranch) Road,,"Chaman, Baluchistan Province",,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASHIR AND ZARJMIL HAWALA COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 10,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASHIR AND ZARJMIL HAWALA COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 11,,,,,,,Iran,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASHIR AND ZARJMIL HAWALA COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 2,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASHIR AND ZARJMIL HAWALA COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 3,,,,,Lahore,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASHIR AND ZARJMIL HAWALA COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 4,,,,,Peshawar,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASHIR AND ZARJMIL HAWALA COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 5,,,,,Karachi,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASHIR AND ZARJMIL HAWALA COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 6,,,,,Islamabad,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASHIR AND ZARJMIL HAWALA COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 7,,,,,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASHIR AND ZARJMIL HAWALA COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 8,,,,,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASHIR AND ZARJMIL HAWALA COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 9,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJAMIL CURRENCY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 1: Sanatan (variant Sanatin) Bazaar,Sanatan,Bazaar Street,near Trench (variant Tranch) Road,,"Chaman, Baluchistan Province",,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJAMIL CURRENCY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 10,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJAMIL CURRENCY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 11,,,,,,,Iran,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJAMIL CURRENCY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 2,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJAMIL CURRENCY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 3,,,,,Lahore,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJAMIL CURRENCY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 4,,,,,Peshawar,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJAMIL CURRENCY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 5,,,,,Karachi,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJAMIL CURRENCY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 6,,,,,Islamabad,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJAMIL CURRENCY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 7,,,,,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJAMIL CURRENCY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 8,,,,,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJAMIL CURRENCY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 9,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJMIL COMPANY HAWALA,,,,,,,د حاجی بصیر او ضرجمیل کمپنی حواله,,,,,,,,,,,,Branch Office 1: Sanatan (variant Sanatin) Bazaar,Sanatan,Bazaar Street,near Trench (variant Tranch) Road,,"Chaman, Baluchistan Province",,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJMIL COMPANY HAWALA,,,,,,,د حاجی بصیر او ضرجمیل کمپنی حواله,,,,,,,,,,,,Branch Office 10,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJMIL COMPANY HAWALA,,,,,,,د حاجی بصیر او ضرجمیل کمپنی حواله,,,,,,,,,,,,Branch Office 11,,,,,,,Iran,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJMIL COMPANY HAWALA,,,,,,,د حاجی بصیر او ضرجمیل کمپنی حواله,,,,,,,,,,,,Branch Office 2,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJMIL COMPANY HAWALA,,,,,,,د حاجی بصیر او ضرجمیل کمپنی حواله,,,,,,,,,,,,Branch Office 3,,,,,Lahore,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJMIL COMPANY HAWALA,,,,,,,د حاجی بصیر او ضرجمیل کمپنی حواله,,,,,,,,,,,,Branch Office 4,,,,,Peshawar,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJMIL COMPANY HAWALA,,,,,,,د حاجی بصیر او ضرجمیل کمپنی حواله,,,,,,,,,,,,Branch Office 5,,,,,Karachi,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJMIL COMPANY HAWALA,,,,,,,د حاجی بصیر او ضرجمیل کمپنی حواله,,,,,,,,,,,,Branch Office 6,,,,,Islamabad,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJMIL COMPANY HAWALA,,,,,,,د حاجی بصیر او ضرجمیل کمپنی حواله,,,,,,,,,,,,Branch Office 7,,,,,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJMIL COMPANY HAWALA,,,,,,,د حاجی بصیر او ضرجمیل کمپنی حواله,,,,,,,,,,,,Branch Office 8,,,,,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR AND ZARJMIL COMPANY HAWALA,,,,,,,د حاجی بصیر او ضرجمیل کمپنی حواله,,,,,,,,,,,,Branch Office 9,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 1: Sanatan (variant Sanatin) Bazaar,Sanatan,Bazaar Street,near Trench (variant Tranch) Road,,"Chaman, Baluchistan Province",,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 10,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 11,,,,,,,Iran,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 2,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 3,,,,,Lahore,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 4,,,,,Peshawar,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 5,,,,,Karachi,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 6,,,,,Islamabad,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 7,,,,,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 8,,,,,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI BASIR HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 9,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,"Ansari Market, 2nd Floor",,,,,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 10,"Suite numbers 196-197, 3rd Floor",Khorasan Market,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 11,Sarafi Market,,,Zaranj District,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 12,Sarafi Market,Wesh,,Spin Boldak District,,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 13,Sarafi Market,,,,Farah,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 14,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 15,,,,,Zahedan,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 16,,,,,Zabul,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 2,,,,Peshawar,Khyber Paktunkhwa Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 3,Moishah Chowk Road,,,Lahore,Punjab Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 4,,,,Karachi,Sindh Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 5,Larran Road number 2,Chaman,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 6,Shop number 237,Shah Zada Market (also known as Sarai Shahzada),Puli Khishti area,Police District 1,Kabul,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 7,"Shop numbers 21 and 22, 2nd Floor",Kandahar City Sarafi Market,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 8,Gereshk City,Nahr-e Saraj District,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 9,Lashkar Gah Bazaar,Lashkar Gah,Lashkar Gah District,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Chaman Central Bazaar,Chaman,Shah Zada Market (also known as Sarai Shahzada),,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Chohar Mir Road,Kandahari Bazaar,,,Quetta City,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,"Haji Ghulam Nabi Market, 2nd Floor",Lashkar Gah District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Kachara Road,Nasrullah Khan Chowk,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Khorasan Market,Shahre Naw,District 5,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,"New Sarafi Market, 2nd Floor",,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Office number 3,Near Fatima Jinnah Road,Dr. Bano Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Room number 1,Abdul Sattar Plaza,Hafiz Saleem Street,Munsafi Road,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Safi Market,,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Shop number 3,Dr. Bano Road,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI HAKIM HAWALA,,,,,,,,,,,,,,,,,,,Wazir Mohammad Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,"Ansari Market, 2nd Floor",,,,,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Branch Office 10,"Suite numbers 196-197, 3rd Floor",Khorasan Market,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Branch Office 11,Sarafi Market,,,Zaranj District,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Branch Office 12,Sarafi Market,Wesh,,Spin Boldak District,,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Branch Office 13,Sarafi Market,,,,Farah,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Branch Office 14,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Branch Office 15,,,,,Zahedan,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Branch Office 16,,,,,Zabul,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Branch Office 2,,,,Peshawar,Khyber Paktunkhwa Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Branch Office 3,Moishah Chowk Road,,,Lahore,Punjab Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Branch Office 4,,,,Karachi,Sindh Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Branch Office 5,Larran Road number 2,Chaman,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Branch Office 6,Shop number 237,Shah Zada Market (also known as Sarai Shahzada),Puli Khishti area,Police District 1,Kabul,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Branch Office 7,"Shop numbers 21 and 22, 2nd Floor",Kandahar City Sarafi Market,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Branch Office 8,Gereshk City,Nahr-e Saraj District,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Branch Office 9,Lashkar Gah Bazaar,Lashkar Gah,Lashkar Gah District,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Chaman Central Bazaar,Chaman,Shah Zada Market (also known as Sarai Shahzada),,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Chohar Mir Road,Kandahari Bazaar,,,Quetta City,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,"Haji Ghulam Nabi Market, 2nd Floor",Lashkar Gah District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Kachara Road,Nasrullah Khan Chowk,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Khorasan Market,Shahre Naw,District 5,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,"New Sarafi Market, 2nd Floor",,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Office number 3,Near Fatima Jinnah Road,Dr. Bano Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Room number 1,Abdul Sattar Plaza,Hafiz Saleem Street,Munsafi Road,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Safi Market,,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Shop number 3,Dr. Bano Road,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIR ULLAH MONEY SERVICE,,,,,,,,,,,,,,,,,,,Wazir Mohammad Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,"Ansari Market, 2nd Floor",,,,,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 10,"Suite numbers 196-197, 3rd Floor",Khorasan Market,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 11,Sarafi Market,,,Zaranj District,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 12,Sarafi Market,Wesh,,Spin Boldak District,,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 13,Sarafi Market,,,,Farah,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 14,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 15,,,,,Zahedan,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 16,,,,,Zabul,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 2,,,,Peshawar,Khyber Paktunkhwa Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 3,Moishah Chowk Road,,,Lahore,Punjab Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 4,,,,Karachi,Sindh Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 5,Larran Road number 2,Chaman,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 6,Shop number 237,Shah Zada Market (also known as Sarai Shahzada),Puli Khishti area,Police District 1,Kabul,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 7,"Shop numbers 21 and 22, 2nd Floor",Kandahar City Sarafi Market,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 8,Gereshk City,Nahr-e Saraj District,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Branch Office 9,Lashkar Gah Bazaar,Lashkar Gah,Lashkar Gah District,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Chaman Central Bazaar,Chaman,Shah Zada Market (also known as Sarai Shahzada),,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Chohar Mir Road,Kandahari Bazaar,,,Quetta City,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,"Haji Ghulam Nabi Market, 2nd Floor",Lashkar Gah District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Kachara Road,Nasrullah Khan Chowk,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Khorasan Market,Shahre Naw,District 5,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,"New Sarafi Market, 2nd Floor",,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Office number 3,Near Fatima Jinnah Road,Dr. Bano Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Room number 1,Abdul Sattar Plaza,Hafiz Saleem Street,Munsafi Road,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Safi Market,,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Shop number 3,Dr. Bano Road,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH AND ABDUL SATTAR AND COMPANY,,,,,,,,,,,,,,,,,,,Wazir Mohammad Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,"Ansari Market, 2nd Floor",,,,,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Branch Office 10,"Suite numbers 196-197, 3rd Floor",Khorasan Market,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Branch Office 11,Sarafi Market,,,Zaranj District,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Branch Office 12,Sarafi Market,Wesh,,Spin Boldak District,,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Branch Office 13,Sarafi Market,,,,Farah,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Branch Office 14,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Branch Office 15,,,,,Zahedan,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Branch Office 16,,,,,Zabul,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Branch Office 2,,,,Peshawar,Khyber Paktunkhwa Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Branch Office 3,Moishah Chowk Road,,,Lahore,Punjab Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Branch Office 4,,,,Karachi,Sindh Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Branch Office 5,Larran Road number 2,Chaman,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Branch Office 6,Shop number 237,Shah Zada Market (also known as Sarai Shahzada),Puli Khishti area,Police District 1,Kabul,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Branch Office 7,"Shop numbers 21 and 22, 2nd Floor",Kandahar City Sarafi Market,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Branch Office 8,Gereshk City,Nahr-e Saraj District,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Branch Office 9,Lashkar Gah Bazaar,Lashkar Gah,Lashkar Gah District,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Chaman Central Bazaar,Chaman,Shah Zada Market (also known as Sarai Shahzada),,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Chohar Mir Road,Kandahari Bazaar,,,Quetta City,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,"Haji Ghulam Nabi Market, 2nd Floor",Lashkar Gah District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Kachara Road,Nasrullah Khan Chowk,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Khorasan Market,Shahre Naw,District 5,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,"New Sarafi Market, 2nd Floor",,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Office number 3,Near Fatima Jinnah Road,Dr. Bano Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Room number 1,Abdul Sattar Plaza,Hafiz Saleem Street,Munsafi Road,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Safi Market,,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Shop number 3,Dr. Bano Road,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH HAJI SATTAR MONEY EXCHANGE,,,,,,,حاجی خيرالله و حاجی ستار صرافی,,,,,,,,,,,,Wazir Mohammad Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,"Ansari Market, 2nd Floor",,,,,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 10,"Suite numbers 196-197, 3rd Floor",Khorasan Market,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 11,Sarafi Market,,,Zaranj District,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 12,Sarafi Market,Wesh,,Spin Boldak District,,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 13,Sarafi Market,,,,Farah,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 14,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 15,,,,,Zahedan,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 16,,,,,Zabul,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 2,,,,Peshawar,Khyber Paktunkhwa Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 3,Moishah Chowk Road,,,Lahore,Punjab Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 4,,,,Karachi,Sindh Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 5,Larran Road number 2,Chaman,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 6,Shop number 237,Shah Zada Market (also known as Sarai Shahzada),Puli Khishti area,Police District 1,Kabul,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 7,"Shop numbers 21 and 22, 2nd Floor",Kandahar City Sarafi Market,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 8,Gereshk City,Nahr-e Saraj District,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Branch Office 9,Lashkar Gah Bazaar,Lashkar Gah,Lashkar Gah District,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Chaman Central Bazaar,Chaman,Shah Zada Market (also known as Sarai Shahzada),,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Chohar Mir Road,Kandahari Bazaar,,,Quetta City,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,"Haji Ghulam Nabi Market, 2nd Floor",Lashkar Gah District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Kachara Road,Nasrullah Khan Chowk,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Khorasan Market,Shahre Naw,District 5,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,"New Sarafi Market, 2nd Floor",,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Office number 3,Near Fatima Jinnah Road,Dr. Bano Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Room number 1,Abdul Sattar Plaza,Hafiz Saleem Street,Munsafi Road,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Safi Market,,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Shop number 3,Dr. Bano Road,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Wazir Mohammad Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,"Ansari Market, 2nd Floor",,,,,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Branch Office 10,"Suite numbers 196-197, 3rd Floor",Khorasan Market,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Branch Office 11,Sarafi Market,,,Zaranj District,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Branch Office 12,Sarafi Market,Wesh,,Spin Boldak District,,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Branch Office 13,Sarafi Market,,,,Farah,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Branch Office 14,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Branch Office 15,,,,,Zahedan,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Branch Office 16,,,,,Zabul,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Branch Office 2,,,,Peshawar,Khyber Paktunkhwa Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Branch Office 3,Moishah Chowk Road,,,Lahore,Punjab Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Branch Office 4,,,,Karachi,Sindh Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Branch Office 5,Larran Road number 2,Chaman,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Branch Office 6,Shop number 237,Shah Zada Market (also known as Sarai Shahzada),Puli Khishti area,Police District 1,Kabul,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Branch Office 7,"Shop numbers 21 and 22, 2nd Floor",Kandahar City Sarafi Market,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Branch Office 8,Gereshk City,Nahr-e Saraj District,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Branch Office 9,Lashkar Gah Bazaar,Lashkar Gah,Lashkar Gah District,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Chaman Central Bazaar,Chaman,Shah Zada Market (also known as Sarai Shahzada),,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Chohar Mir Road,Kandahari Bazaar,,,Quetta City,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,"Haji Ghulam Nabi Market, 2nd Floor",Lashkar Gah District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Kachara Road,Nasrullah Khan Chowk,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Khorasan Market,Shahre Naw,District 5,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,"New Sarafi Market, 2nd Floor",,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Office number 3,Near Fatima Jinnah Road,Dr. Bano Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Room number 1,Abdul Sattar Plaza,Hafiz Saleem Street,Munsafi Road,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Safi Market,,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Shop number 3,Dr. Bano Road,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI KHAIRULLAH-HAJI SATTAR SARAFI,,,,,,,,,,,,,,,,,,,Wazir Mohammad Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI MUHAMMAD QASIM SARAFI,,,,,,,,,,,,,,,,,,,,,,,Chaman,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +HAJI MUHAMMAD QASIM SARAFI,,,,,,,,,,,,,,,,,,,,,,,Zahedan,Zabol Province,,Iran,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +HAJI MUHAMMAD QASIM SARAFI,,,,,,,,,,,,,,,,,,,Chaghi Bazaar,,,,Chaghi,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +HAJI MUHAMMAD QASIM SARAFI,,,,,,,,,,,,,,,,,,,Dr Barno Road,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +HAJI MUHAMMAD QASIM SARAFI,,,,,,,,,,,,,,,,,,,Gereshk District,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +HAJI MUHAMMAD QASIM SARAFI,,,,,,,,,,,,,,,,,,,Haji Mohammed Plaza,Tol Aram Road,near Jamaluddin Afghani Road,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +HAJI MUHAMMAD QASIM SARAFI,,,,,,,,,,,,,,,,,,,Kandahari Bazaar,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +HAJI MUHAMMAD QASIM SARAFI,,,,,,,,,,,,,,,,,,,Lashkar Gah,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +HAJI MUHAMMAD QASIM SARAFI,,,,,,,,,,,,,,,,,,,Room number 33,5th Floor,Sarafi Market,,Kandahar city,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +HAJI MUHAMMAD QASIM SARAFI,,,,,,,,,,,,,,,,,,,Safaar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +HAJI MUHAMMAD QASIM SARAFI,,,,,,,,,,,,,,,,,,,Shop number 4,Azizi Bank,Haji Muhammad Isa Market,Wesh,Spin Boldak,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +HAJI MUHAMMAD QASIM SARAFI,,,,,,,,,,,,,,,,,,,Zaranj District,,,,,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,"Ansari Market, 2nd Floor",,,,,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 10,"Suite numbers 196-197, 3rd Floor",Khorasan Market,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 11,Sarafi Market,,,Zaranj District,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 12,Sarafi Market,Wesh,,Spin Boldak District,,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 13,Sarafi Market,,,,Farah,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 14,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 15,,,,,Zahedan,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 16,,,,,Zabul,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 2,,,,Peshawar,Khyber Paktunkhwa Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 3,Moishah Chowk Road,,,Lahore,Punjab Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 4,,,,Karachi,Sindh Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 5,Larran Road number 2,Chaman,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 6,Shop number 237,Shah Zada Market (also known as Sarai Shahzada),Puli Khishti area,Police District 1,Kabul,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 7,"Shop numbers 21 and 22, 2nd Floor",Kandahar City Sarafi Market,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 8,Gereshk City,Nahr-e Saraj District,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Branch Office 9,Lashkar Gah Bazaar,Lashkar Gah,Lashkar Gah District,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Chaman Central Bazaar,Chaman,Shah Zada Market (also known as Sarai Shahzada),,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Chohar Mir Road,Kandahari Bazaar,,,Quetta City,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,"Haji Ghulam Nabi Market, 2nd Floor",Lashkar Gah District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Kachara Road,Nasrullah Khan Chowk,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Khorasan Market,Shahre Naw,District 5,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,"New Sarafi Market, 2nd Floor",,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Office number 3,Near Fatima Jinnah Road,Dr. Bano Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Room number 1,Abdul Sattar Plaza,Hafiz Saleem Street,Munsafi Road,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Safi Market,,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Shop number 3,Dr. Bano Road,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI SALAM HAWALA,,,,,,,,,,,,,,,,,,,Wazir Mohammad Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +HAJI ZADEH,Amir,Ali,,,,,,,,00/00/1962,Tehran,Iran,,,,,,IRGC Aerospace Force Commander,,,,,,,,,(UK Sanctions List Ref):INU0006 (UK Statement of Reasons):IRGC Aerospace Force Commander (Gender):Male,Individual,Primary name,,Iran (Nuclear),24/01/2012,31/12/2020,04/03/2022,12498 +"HAJI ZAR JAMIL, HAJI ABDUL BASEER MONEY CHANGER",,,,,,,,,,,,,,,,,,,Branch Office 1: Sanatan (variant Sanatin) Bazaar,Sanatan,Bazaar Street,near Trench (variant Tranch) Road,,"Chaman, Baluchistan Province",,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +"HAJI ZAR JAMIL, HAJI ABDUL BASEER MONEY CHANGER",,,,,,,,,,,,,,,,,,,Branch Office 10,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +"HAJI ZAR JAMIL, HAJI ABDUL BASEER MONEY CHANGER",,,,,,,,,,,,,,,,,,,Branch Office 11,,,,,,,Iran,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +"HAJI ZAR JAMIL, HAJI ABDUL BASEER MONEY CHANGER",,,,,,,,,,,,,,,,,,,Branch Office 2,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +"HAJI ZAR JAMIL, HAJI ABDUL BASEER MONEY CHANGER",,,,,,,,,,,,,,,,,,,Branch Office 3,,,,,Lahore,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +"HAJI ZAR JAMIL, HAJI ABDUL BASEER MONEY CHANGER",,,,,,,,,,,,,,,,,,,Branch Office 4,,,,,Peshawar,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +"HAJI ZAR JAMIL, HAJI ABDUL BASEER MONEY CHANGER",,,,,,,,,,,,,,,,,,,Branch Office 5,,,,,Karachi,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +"HAJI ZAR JAMIL, HAJI ABDUL BASEER MONEY CHANGER",,,,,,,,,,,,,,,,,,,Branch Office 6,,,,,Islamabad,,Pakistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +"HAJI ZAR JAMIL, HAJI ABDUL BASEER MONEY CHANGER",,,,,,,,,,,,,,,,,,,Branch Office 7,,,,,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +"HAJI ZAR JAMIL, HAJI ABDUL BASEER MONEY CHANGER",,,,,,,,,,,,,,,,,,,Branch Office 8,,,,,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +"HAJI ZAR JAMIL, HAJI ABDUL BASEER MONEY CHANGER",,,,,,,,,,,,,,,,,,,Branch Office 9,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0005 (UN Ref):TAe.014 Money service provider used by senior Taliban leaders to transfer funds to Taliban commanders in the region. Owned by Abdul Basir Noorzai (TAi.173). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13269 +HAJIZADEH,Amir,Ali,,,,,,,,00/00/1962,Tehran,Iran,,,,,,IRGC Aerospace Force Commander,,,,,,,,,(UK Sanctions List Ref):INU0006 (UK Statement of Reasons):IRGC Aerospace Force Commander (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/01/2012,31/12/2020,04/03/2022,12498 +HAJJI,Iman,,,,,,,,,00/00/1959,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +HAJJI,Iman,,,,,,,,,00/00/1957,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +HAJMOHAM-MADI,Aziz,,,,,,,,,00/00/1948,,,,,,,,Judge at the Tehran Provincial Criminal Court,,,,,,,,,"(UK Sanctions List Ref):IHR0022 (UK Statement of Reasons):Judge at the Tehran Provincial Criminal Court. He was involved in several trials of demonstrators, inter alia, that of Abdol-Reza Ghanbari, a teacher arrested in January 2010 and sentenced to death for his political activities. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,16/02/2022,12198 +HAJMOHAM-MADI,Noorullah,Aziz,,,,,,,,00/00/1948,,,,,,,,Judge at the Tehran Provincial Criminal Court,,,,,,,,,"(UK Sanctions List Ref):IHR0022 (UK Statement of Reasons):Judge at the Tehran Provincial Criminal Court. He was involved in several trials of demonstrators, inter alia, that of Abdol-Reza Ghanbari, a teacher arrested in January 2010 and sentenced to death for his political activities. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,16/02/2022,12198 +HAJ-MOHAMMADI,Aziz,,,,,,,,,00/00/1948,,,,,,,,Judge at the Tehran Provincial Criminal Court,,,,,,,,,"(UK Sanctions List Ref):IHR0022 (UK Statement of Reasons):Judge at the Tehran Provincial Criminal Court. He was involved in several trials of demonstrators, inter alia, that of Abdol-Reza Ghanbari, a teacher arrested in January 2010 and sentenced to death for his political activities. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,16/02/2022,12198 +HAJ-MOHAMMADI,Noorullah,Aziz,,,,,,,,00/00/1948,,,,,,,,Judge at the Tehran Provincial Criminal Court,,,,,,,,,"(UK Sanctions List Ref):IHR0022 (UK Statement of Reasons):Judge at the Tehran Provincial Criminal Court. He was involved in several trials of demonstrators, inter alia, that of Abdol-Reza Ghanbari, a teacher arrested in January 2010 and sentenced to death for his political activities. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,16/02/2022,12198 +HAK SONG,Kim,,,,,,,,,26/03/1968,,,North Korea,(1) 381420565 (2) 654120219,,,,KOMID Official,,,,,,,,,(UK Sanctions List Ref):DPR0237 (UN Ref):KPi.030 Kim Song Chol is a KOMID official that has conducted business in Sudan on behalf of KOMID’s interests.,Individual,AKA,Good quality,Democratic People's Republic of Korea,09/12/2016,30/11/2016,16/02/2022,13415 +HAK SONG,Kim,,,,,,,,,15/10/1970,,,North Korea,(1) 381420565 (2) 654120219,,,,KOMID Official,,,,,,,,,(UK Sanctions List Ref):DPR0237 (UN Ref):KPi.030 Kim Song Chol is a KOMID official that has conducted business in Sudan on behalf of KOMID’s interests.,Individual,AKA,Good quality,Democratic People's Republic of Korea,09/12/2016,30/11/2016,16/02/2022,13415 +HAKE,Abudu,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +HAKE,Abudu,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +HAKIMI,GUL AHMAD,,,,,Maulavi,گل احمد حكيمى,,,00/00/1964,(1) Kabul Province. (2) Logar Province,(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,"Commercial Attache, Taliban Consulate General, Karachi, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0108 (UN Ref):TAi.140 Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7153 +HALAQ,Essam,,,,,,,,,,,,,,,,,Air Force Chief of Staff since 2010,,,,,,,,,(UK Sanctions List Ref):SYR0104 (UK Statement of Reasons):Air Force Chief of Staff holding the rank of Major General since 2010. Responsible for commanding air operations against opponents and other activities by the Syrian Air Force involving the repression of the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12729 +HALAQ,Issam,,,,,,,,,,,,,,,,,Air Force Chief of Staff since 2010,,,,,,,,,(UK Sanctions List Ref):SYR0104 (UK Statement of Reasons):Air Force Chief of Staff holding the rank of Major General since 2010. Responsible for commanding air operations against opponents and other activities by the Syrian Air Force involving the repression of the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12729 +HALEPA,Igor,Nikolaevich,,,,,ХАЛЕПА Игорь Николаевич,Cyrillic,Russian,19/05/1969,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1146 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15098 +HALLAK,Essam,,,,,,,,,,,,,,,,,Air Force Chief of Staff since 2010,,,,,,,,,(UK Sanctions List Ref):SYR0104 (UK Statement of Reasons):Air Force Chief of Staff holding the rank of Major General since 2010. Responsible for commanding air operations against opponents and other activities by the Syrian Air Force involving the repression of the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12729 +HALLAK,Issam,,,,,,,,,,,,,,,,,Air Force Chief of Staff since 2010,,,,,,,,,(UK Sanctions List Ref):SYR0104 (UK Statement of Reasons):Air Force Chief of Staff holding the rank of Major General since 2010. Responsible for commanding air operations against opponents and other activities by the Syrian Air Force involving the repression of the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12729 +HALLAQ,Essam,,,,,,,,,,,,,,,,,Air Force Chief of Staff since 2010,,,,,,,,,(UK Sanctions List Ref):SYR0104 (UK Statement of Reasons):Air Force Chief of Staff holding the rank of Major General since 2010. Responsible for commanding air operations against opponents and other activities by the Syrian Air Force involving the repression of the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12729 +HALLAQ,Issam,,,,,,عصام حلاق,,,,,,,,,,,Air Force Chief of Staff since 2010,,,,,,,,,(UK Sanctions List Ref):SYR0104 (UK Statement of Reasons):Air Force Chief of Staff holding the rank of Major General since 2010. Responsible for commanding air operations against opponents and other activities by the Syrian Air Force involving the repression of the civilian population. (Gender):Male,Individual,Primary name,,Syria,24/07/2012,31/12/2020,13/05/2022,12729 +HAMAD,Nofal,Hammadi,Sultan,Albu,,,,,,23/02/1964,,Iraq,Iraq,,,71719043,,,,,,,,,,Iraq,"(UK Sanctions List Ref):GAC0027 (UK Statement of Reasons):Nawfal Hammadi Al-Sultan has been involved in serious corruption in Nineveh province, Iraq involving the misappropriation of state property to his benefit and the benefit of others. In his role as governor of Nineveh province, he misappropriated public funds intended for reconstruction efforts and to provide support for civilians and improperly awarded contracts and other state property. Additional information: in February 2021 Al-Sultan was convicted by the Central Anti-Corruption Criminal Court in Iraq in relation to some of his corrupt activities when governor of Nineveh Governorate. He was convicted of two offences of “harming a public body” under Article 340 of Iraq’s Penal Code and sentenced to a total of five years in prison, for: (i) wasting five billion Iraqi Dinars of public funds of Nineveh Governorate through fictitious works and contracts, and (ii) improperly disposing of 50 tons of asphalt delivered to him for paving the streets and for reconstruction in 2017. (Gender):Male",Individual,AKA,,Global Anti-Corruption,22/07/2021,22/07/2021,22/07/2021,14130 +HAMAD,Salah,,,,,,,,,,,,,,,,,Deputy Head of Branch 291 of the army's intelligence service,,,,,,,,,(UK Sanctions List Ref):SYR0212 (UK Statement of Reasons):Deputy Head of Branch 291 of the army's intelligence service. Responsible for the torture of opponents in custody (Gender):Male,Individual,Primary name,,Syria,24/07/2012,31/12/2020,31/12/2020,12707 +HAMAD,Zouhair,,,,,,,,,,Damascus,Syria,,,,,,Deputy Head of General Intelligence Directorate (a.k.a. General Security Directorate). Appointed July 2012.,,,,,,,,,"(UK Sanctions List Ref):SYR0245 (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces in post after May 2011. Deputy Head of General Intelligence Directorate. Responsible for repression, human rights abuses and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,31/12/2020,12217 +HAMAD,Zouheir,,,,,,,,,,Damascus,Syria,,,,,,Deputy Head of General Intelligence Directorate (a.k.a. General Security Directorate). Appointed July 2012.,,,,,,,,,"(UK Sanctions List Ref):SYR0245 (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces in post after May 2011. Deputy Head of General Intelligence Directorate. Responsible for repression, human rights abuses and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,31/12/2020,12217 +HAMAD,Zuhair,,,,,,,,,,Damascus,Syria,,,,,,Deputy Head of General Intelligence Directorate (a.k.a. General Security Directorate). Appointed July 2012.,,,,,,,,,"(UK Sanctions List Ref):SYR0245 (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces in post after May 2011. Deputy Head of General Intelligence Directorate. Responsible for repression, human rights abuses and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name,,Syria,15/11/2011,31/12/2020,31/12/2020,12217 +HAMAD,Zuheir,,,,,,,,,,Damascus,Syria,,,,,,Deputy Head of General Intelligence Directorate (a.k.a. General Security Directorate). Appointed July 2012.,,,,,,,,,"(UK Sanctions List Ref):SYR0245 (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces in post after May 2011. Deputy Head of General Intelligence Directorate. Responsible for repression, human rights abuses and violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,31/12/2020,12217 +HAMAS INCLUDING IZZ AL-DIN AL-QASSAM BRIGADES,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0031 (UK Statement of Reasons):Hamas has claimed responsibility for numerous terrorist attacks including rocket strikes. It has also released statements that promote and encourage acts of terrorism.,Entity,Primary name,,Counter-Terrorism (International),15/09/2003,31/12/2020,11/03/2022,7855 +HAMAWANDI,Kawa,,,,,,,,,01/07/1971,Arbil,Iraq,Iraq,A 0139243,German travel document (“Reiseausweis”) (revoked as at Sep.2012),,,,Arbil,Qushtuba,house no. SH 11,alley 5380,,,,Iraq,(UK Sanctions List Ref):AQD0170 (UN Ref):QDi.203 Mother’s name: Farida Hussein Khadir. Released from custody in Germany on 10 Dec. 2010 and relocated to Iraq on 6 Dec. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 5 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423935,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8781 +HAMAWI,Abu,,,,,,,,,06/06/1969,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,AKA,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +HAMAWI,Abu,,,,,,,,,06/06/1967,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,AKA,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +HAMBALI,,,,,,,,,,04/04/1964,"Cianjur, West Java",Indonesia,Indonesia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0278 (UN Ref):QDi.087 Senior leader of Jemaah Islamiyah (QDe.092). Brother of Gun Gun Rusman Gunawan (QDi.218). In custody of the United States of America, as of July 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,7156 +HAMBALI,Hambali,Ending,,,,,,,,04/04/1964,"Cianjur, West Java",Indonesia,Indonesia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0278 (UN Ref):QDi.087 Senior leader of Jemaah Islamiyah (QDe.092). Brother of Gun Gun Rusman Gunawan (QDi.218). In custody of the United States of America, as of July 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,7156 +HAMCHO,Emad,,,,,,,,,,,,,,,,,Vice-President of the Syrian Council of Iron and Steel,Hamsho Building,31 Baghdad Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0038 (UK Statement of Reasons):Occupies a senior management position in Hamsho Trading. As a result of his senior position in Hamsho Trading, a subsidiary of Hamsho International, which has been designated, he provides support to the Syrian regime. This means he is associated with a designated entity, Hamsho International. He is also a member of the Syrian Council of Iron and Steel alongside other designated regime businessmen. He is also associated with the Assad regime. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13233 +HAMCHO,Imad,,,,,,,,,,,,,,,,,Vice-President of the Syrian Council of Iron and Steel,Hamsho Building,31 Baghdad Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0038 (UK Statement of Reasons):Occupies a senior management position in Hamsho Trading. As a result of his senior position in Hamsho Trading, a subsidiary of Hamsho International, which has been designated, he provides support to the Syrian regime. This means he is associated with a designated entity, Hamsho International. He is also a member of the Syrian Council of Iron and Steel alongside other designated regime businessmen. He is also associated with the Assad regime. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13233 +HAMCHO,Mohammad,,,,,,,,,20/05/1966,,,Syria,2954347,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0152 (UK Statement of Reasons):Leading businessman operating in Syria, with interests in the engineering and construction, media, hospitality and health sector. He has financial interest in and/or holds senior and executive positions within a number of companies in Syria, in particular Hamsho international, Hamsho Communication, Mhg International, Jupiter for Investment and Tourism project and Syria Metal industries. He plays an important role in the business community in Syria as general secretary of the Damascus Chamber of Commerce (appointed by the then Minister for economy Khodr Orfali in December 2014), chairman of the China-Syria Bilateral Business Councils (since March 2014) and chairman of the Syrian Metal and Steel Council (since December 2015). He has close business relationships with key figures of the Syrian regime, including Maher Al-Assad. Mohammed Hamcho benefits from and provides support to the Syrian regime through his business interests, and is associated with persons benefiting from and providing support to this regime. (Gender):Male",Individual,Primary name variation,,Syria,27/01/2015,31/12/2020,31/12/2020,11933 +HAMCHO,Mohammad Saber,,,,,,,,,20/05/1966,,,Syria,2954347,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0152 (UK Statement of Reasons):Leading businessman operating in Syria, with interests in the engineering and construction, media, hospitality and health sector. He has financial interest in and/or holds senior and executive positions within a number of companies in Syria, in particular Hamsho international, Hamsho Communication, Mhg International, Jupiter for Investment and Tourism project and Syria Metal industries. He plays an important role in the business community in Syria as general secretary of the Damascus Chamber of Commerce (appointed by the then Minister for economy Khodr Orfali in December 2014), chairman of the China-Syria Bilateral Business Councils (since March 2014) and chairman of the Syrian Metal and Steel Council (since December 2015). He has close business relationships with key figures of the Syrian regime, including Maher Al-Assad. Mohammed Hamcho benefits from and provides support to the Syrian regime through his business interests, and is associated with persons benefiting from and providing support to this regime. (Gender):Male",Individual,Primary name variation,,Syria,27/01/2015,31/12/2020,31/12/2020,11933 +HAMCHO,Mohammed,,,,,,,,,20/05/1966,,,Syria,2954347,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0152 (UK Statement of Reasons):Leading businessman operating in Syria, with interests in the engineering and construction, media, hospitality and health sector. He has financial interest in and/or holds senior and executive positions within a number of companies in Syria, in particular Hamsho international, Hamsho Communication, Mhg International, Jupiter for Investment and Tourism project and Syria Metal industries. He plays an important role in the business community in Syria as general secretary of the Damascus Chamber of Commerce (appointed by the then Minister for economy Khodr Orfali in December 2014), chairman of the China-Syria Bilateral Business Councils (since March 2014) and chairman of the Syrian Metal and Steel Council (since December 2015). He has close business relationships with key figures of the Syrian regime, including Maher Al-Assad. Mohammed Hamcho benefits from and provides support to the Syrian regime through his business interests, and is associated with persons benefiting from and providing support to this regime. (Gender):Male",Individual,Primary name,,Syria,27/01/2015,31/12/2020,31/12/2020,11933 +HAMCHO GROUP,,,,,,,,,,,,,,,,,,,Building 31,Baghdad Street,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0304 Director and Controller of Business is Muhammed Hamcho. (UK Statement of Reasons):Hamcho International is a large Syrian holding company owned by Mohammed Hamcho. Hamcho International benefits from and provides support to the regime and is associated with a person benefiting from and supporting the regime. (Phone number):+963 112 168 02 (Website):www.hamshointl.com,Entity,AKA,,Syria,27/01/2015,31/12/2020,31/12/2020,12019 +HAMCHO GROUP INTERNATIONAL,,,,,,,,,,,,,,,,,,,Building 31,Baghdad Street,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0304 Director and Controller of Business is Muhammed Hamcho. (UK Statement of Reasons):Hamcho International is a large Syrian holding company owned by Mohammed Hamcho. Hamcho International benefits from and provides support to the regime and is associated with a person benefiting from and supporting the regime. (Phone number):+963 112 168 02 (Website):www.hamshointl.com,Entity,AKA,,Syria,27/01/2015,31/12/2020,31/12/2020,12019 +HAMCHO INTERNATIONAL,,,,,,,,,,,,,,,,,,,Building 31,Baghdad Street,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0304 Director and Controller of Business is Muhammed Hamcho. (UK Statement of Reasons):Hamcho International is a large Syrian holding company owned by Mohammed Hamcho. Hamcho International benefits from and provides support to the regime and is associated with a person benefiting from and supporting the regime. (Phone number):+963 112 168 02 (Website):www.hamshointl.com,Entity,Primary name,,Syria,27/01/2015,31/12/2020,31/12/2020,12019 +HAMCHU,Emad,,,,,,,,,,,,,,,,,Vice-President of the Syrian Council of Iron and Steel,Hamsho Building,31 Baghdad Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0038 (UK Statement of Reasons):Occupies a senior management position in Hamsho Trading. As a result of his senior position in Hamsho Trading, a subsidiary of Hamsho International, which has been designated, he provides support to the Syrian regime. This means he is associated with a designated entity, Hamsho International. He is also a member of the Syrian Council of Iron and Steel alongside other designated regime businessmen. He is also associated with the Assad regime. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13233 +HAMCHU,Imad,,,,,,,,,,,,,,,,,Vice-President of the Syrian Council of Iron and Steel,Hamsho Building,31 Baghdad Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0038 (UK Statement of Reasons):Occupies a senior management position in Hamsho Trading. As a result of his senior position in Hamsho Trading, a subsidiary of Hamsho International, which has been designated, he provides support to the Syrian regime. This means he is associated with a designated entity, Hamsho International. He is also a member of the Syrian Council of Iron and Steel alongside other designated regime businessmen. He is also associated with the Assad regime. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13233 +HAMDAN,Maamoun,,,,,,,,,00/00/1958,Damascus,Syria,,,,,,Former Finance Minister from 2016 to 2020.,,,,,,,,,"(UK Sanctions List Ref):SYR0131 (UK Statement of Reasons):Former Finance Minister from 2016 to 2020. As a former Government Minister, there are reasonable grounds to suspect that he has been involved in the Syrian regime's repression of the civilian population and/or supporting or benefitting from the regime. (Gender):Male",Individual,Primary name,,Syria,14/11/2016,31/12/2020,13/05/2022,13404 +HAMDAN,Ma'moun,,,,,,,,,00/00/1958,Damascus,Syria,,,,,,Former Finance Minister from 2016 to 2020.,,,,,,,,,"(UK Sanctions List Ref):SYR0131 (UK Statement of Reasons):Former Finance Minister from 2016 to 2020. As a former Government Minister, there are reasonable grounds to suspect that he has been involved in the Syrian regime's repression of the civilian population and/or supporting or benefitting from the regime. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,13/05/2022,13404 +HAMDAN,Salem,Ahmed,Salem,,,,,,,00/00/1965,(1) Al-Mukalla (2) AI-Mukala,(1) Yemen (2) Yemen,Yemen,00385937,Yemen,,,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0306 (UN Ref):QDi.003 Driver and private bodyguard to Usama bin Laden (deceased) from 1996 until 2001. Transferred from United States custody to Yemen in Nov. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Yemen (previous address),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,11/02/2022,6997 +HAMDAN,Salem,Ahmed,Salem,,,,,,,00/00/1965,(1) Al-Mukalla (2) AI-Mukala,(1) Yemen (2) Yemen,Yemen,00385937,Yemen,,,,Shari Tunis,,,,,Sana'a,,Yemen,(UK Sanctions List Ref):AQD0306 (UN Ref):QDi.003 Driver and private bodyguard to Usama bin Laden (deceased) from 1996 until 2001. Transferred from United States custody to Yemen in Nov. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Yemen (previous address),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,11/02/2022,6997 +HAMDAN,Usama,,,,,,,,,00/00/1965,(1) Al-Majdal (Ashqelon) (2) East Albatani,(1) - (2) Occupied Palestinian Territories,,,,,,Senior Hamas Official,,,,,,,,,"(UK Sanctions List Ref):CTI0018 (UK Statement of Reasons):Usama Hamdan is a senior official of Hamas and a member of the group’s politburo. He is therefore a member of and associated with Hamas, and threatened retaliation and violence against Israel. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),24/03/2004,31/12/2020,16/02/2022,7886 +HAMDAN,SALIM,AHMAD,SALIM,,,,سالم أحمد سالم حمدان,,,00/00/1965,(1) Al-Mukalla (2) AI-Mukala,(1) Yemen (2) Yemen,Yemen,00385937,Yemen,,,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0306 (UN Ref):QDi.003 Driver and private bodyguard to Usama bin Laden (deceased) from 1996 until 2001. Transferred from United States custody to Yemen in Nov. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Yemen (previous address),Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,11/02/2022,6997 +HAMDAN,SALIM,AHMAD,SALIM,,,,سالم أحمد سالم حمدان,,,00/00/1965,(1) Al-Mukalla (2) AI-Mukala,(1) Yemen (2) Yemen,Yemen,00385937,Yemen,,,,Shari Tunis,,,,,Sana'a,,Yemen,(UK Sanctions List Ref):AQD0306 (UN Ref):QDi.003 Driver and private bodyguard to Usama bin Laden (deceased) from 1996 until 2001. Transferred from United States custody to Yemen in Nov. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Yemen (previous address),Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,11/02/2022,6997 +HAMDI,ADEL,BEN AL-AZHAR,BEN YOUSSEF,,,,عادل بن الأزهر بن يوسف حمدي,,,14/07/1970,Tunis,Tunisia,Tunisia,M408665,Tunisian. Issued on 4 October 2000. Expired on 3 October 2005,(1) BNSDLA70L14Z352B (2) W334061,(1) Italian fiscal code (2) Tunisian national identity number. Issued on 9 March 2011,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0119 (UN Ref):QDi.068 Deported from Italy to Tunisia on 28 February 2004. Serving a 12-year prison sentence in Tunisia for membership in a terrorist organization abroad as at Jan. 2010. Arrested in Tunisia in 2013. Legally changed family name from Ben Soltane to Hamdi in 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/09/2002,03/09/2002,31/12/2020,7092 +HAMDOUNI,Meherez,,,,,,,,,18/12/1969,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +HAMDOUNI,Meherez,,,,,,,,,25/05/1968,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +HAMDOUNI,Meherez,,,,,,,,,18/12/1968,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +HAMDOUNI,Meherez,,,,,,,,,14/07/1969,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +HAMID,,,,,,,,,,,,,Syria,,,,,Chairman of Overseas Petroleum Trading Company (OPT),,,,,,,,,"(UK Sanctions List Ref):SYR0002 (UK Statement of Reasons):Chairman of Overseas Petroleum Trading Company (OPT) which has been listed for benefiting from and supporting the Syrian regime. He coordinated shipments of oil to the Syrian regime with listed Syrian state oil company Sytrol. Therefore, he is benefitting from and providing support to the Syrian regime. In view of his position as the most senior person in the entity he is responsible for its activities and associated with it. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13164 +HAMID,Ahmad,,,,,,,,,,,,Syria,,,,,Chairman of Overseas Petroleum Trading Company (OPT),,,,,,,,,"(UK Sanctions List Ref):SYR0002 (UK Statement of Reasons):Chairman of Overseas Petroleum Trading Company (OPT) which has been listed for benefiting from and supporting the Syrian regime. He coordinated shipments of oil to the Syrian regime with listed Syrian state oil company Sytrol. Therefore, he is benefitting from and providing support to the Syrian regime. In view of his position as the most senior person in the entity he is responsible for its activities and associated with it. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13164 +HAMID,Khalil,Tahir,,,,,,,,,,,,,,,,Head of the Syrian Artillery and Missiles Directorate of the Syrian Armed Forces,,,,,,,,,"(UK Sanctions List Ref):SYR0227 (UK Statement of Reasons):Holds the ranks of Major General, Head of the Syrian Artillery and Missiles Directorate of the Syrian Armed Forces, in post after May 2011. As a senior ranking officer of the Syrian Artillery and Missile Directorate, he is responsible for the violent repression of the civilian population, including the deployment of missiles and chemical weapons by Brigades under his command in highly populated civilian areas in Ghouta in 2013 (Gender):Male",Individual,AKA,,Syria,28/10/2016,31/12/2020,31/12/2020,13383 +HAMID,Khamis,,,,,,,,,,,,Syria,,,,,Chairman of Overseas Petroleum Trading Company (OPT),,,,,,,,,"(UK Sanctions List Ref):SYR0002 (UK Statement of Reasons):Chairman of Overseas Petroleum Trading Company (OPT) which has been listed for benefiting from and supporting the Syrian regime. He coordinated shipments of oil to the Syrian regime with listed Syrian state oil company Sytrol. Therefore, he is benefitting from and providing support to the Syrian regime. In view of his position as the most senior person in the entity he is responsible for its activities and associated with it. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13164 +HAMID,Khamis,Ahmad,,,,,,,,,,,Syria,,,,,Chairman of Overseas Petroleum Trading Company (OPT),,,,,,,,,"(UK Sanctions List Ref):SYR0002 (UK Statement of Reasons):Chairman of Overseas Petroleum Trading Company (OPT) which has been listed for benefiting from and supporting the Syrian regime. He coordinated shipments of oil to the Syrian regime with listed Syrian state oil company Sytrol. Therefore, he is benefitting from and providing support to the Syrian regime. In view of his position as the most senior person in the entity he is responsible for its activities and associated with it. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13164 +HAMID,Mahmoud,,,,,,,,,29/05/1966,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Egypt,Tunisia,L723315,"Issue date: 05/05/1998, expiry date: 04/05/2003",,,,Corso XXII Marzo Number 39,,,,,Milan,,Italy,(UK Sanctions List Ref):AQD0189 (UN Ref):QDi.143 In prison in Italy until 6 Feb. 2026. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7874 +HAMID,Mahmoud,,,,,,,,,25/05/1966,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Egypt,Tunisia,L723315,"Issue date: 05/05/1998, expiry date: 04/05/2003",,,,Corso XXII Marzo Number 39,,,,,Milan,,Italy,(UK Sanctions List Ref):AQD0189 (UN Ref):QDi.143 In prison in Italy until 6 Feb. 2026. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7874 +HAMID,Mahmoud,,,,,,,,,09/05/1986,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Egypt,Tunisia,L723315,"Issue date: 05/05/1998, expiry date: 04/05/2003",,,,Corso XXII Marzo Number 39,,,,,Milan,,Italy,(UK Sanctions List Ref):AQD0189 (UN Ref):QDi.143 In prison in Italy until 6 Feb. 2026. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7874 +HAMISHO,,,,,,,,,,,,,,,,,,,Hamsho Centre,Adaye Street,,,,Damascus,,,"(UK Sanctions List Ref):SYR0305 Trading & Construction. Name of Director/Management: Mohammed Hamsho (UK Statement of Reasons):Prominent business and subsidiary of sanctioned entity Hamsho International Group. Controlled by sanctioned individual Mohammed Hamsho, Hamsho Trading supports and benefits from the Syrian regime through business contracts. (Phone number):+963 112316675. +963 112318875 (Fax) (Email address):hamsho-group@inco.com.lb. hamshogroup@yahoo.com. info@hamshointl.com (Parent company):Hamsho International, Baghdad Street, PO Box 8254 Damascus",Entity,AKA,,Syria,09/03/2015,31/12/2020,25/03/2021,13237 +HAMISHO,Emad,,,,,,,,,,,,,,,,,Vice-President of the Syrian Council of Iron and Steel,Hamsho Building,31 Baghdad Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0038 (UK Statement of Reasons):Occupies a senior management position in Hamsho Trading. As a result of his senior position in Hamsho Trading, a subsidiary of Hamsho International, which has been designated, he provides support to the Syrian regime. This means he is associated with a designated entity, Hamsho International. He is also a member of the Syrian Council of Iron and Steel alongside other designated regime businessmen. He is also associated with the Assad regime. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13233 +HAMISHO,Imad,,,,,,,,,,,,,,,,,Vice-President of the Syrian Council of Iron and Steel,Hamsho Building,31 Baghdad Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0038 (UK Statement of Reasons):Occupies a senior management position in Hamsho Trading. As a result of his senior position in Hamsho Trading, a subsidiary of Hamsho International, which has been designated, he provides support to the Syrian regime. This means he is associated with a designated entity, Hamsho International. He is also a member of the Syrian Council of Iron and Steel alongside other designated regime businessmen. He is also associated with the Assad regime. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13233 +HAMLBAR,Rahim,,,,,,,,,,,,,,,,,Judge of Branch 1 of Tabriz Revolutionary Court,,,,,,,,,"(UK Sanctions List Ref):IHR0071 (UK Statement of Reasons):Judge of Branch 1 of Tabriz Revolutionary Court. Responsible for heavy sentences against Azeri ethnic minority and workers' rights activists, accusing them of spying, acts against national security, propaganda against the Iranian regime and insulting the leader of Iran. A high profile case involved 20 volunteer earthquake relief workers (following an earthquake in Iran in August 2012) to whom he gave prison sentences for their attempts to assist earthquake victims. The court found the workers guilty of ‘collaboration in assembly and collusion to commit crimes against national security.’ (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/03/2013,31/12/2020,31/12/2020,12855 +HAMMADOU,Abid,,,,,,,,,12/12/1965,"Deb-Deb, Amenas, Wilaya (province) of Illizi",Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0137 (UN Ref):QDi.250 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Located in Northern Mali as of Jun. 2008. Mother’s name is Benarouba Bachira. Father’s name is Mabrouk. He usurped the identity of Abid Hammadou, who allegedly died in Chad in 2004. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529259",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,11/02/2022,10691 +HAMMADOU,Abid,,,,,,,,,00/00/1958,"Deb-Deb, Amenas, Wilaya (province) of Illizi",Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0137 (UN Ref):QDi.250 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Located in Northern Mali as of Jun. 2008. Mother’s name is Benarouba Bachira. Father’s name is Mabrouk. He usurped the identity of Abid Hammadou, who allegedly died in Chad in 2004. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529259",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,11/02/2022,10691 +HAMMAMI,Umar,,,,,,,,,06/05/1986,Alabama,United States,(1) United States (2) Syria,403062567,United States,423-31-3021,Social Security Number (United States),,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0010 (UN Ref):SOi.010 Married to a Somali woman. Lived in Egypt in 2005 and moved to Somalia in 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,Somalia,27/09/2011,28/07/2011,16/02/2022,12030 +HAMMAMI,OMAR,,,,,,,,,06/05/1986,Alabama,United States,(1) United States (2) Syria,403062567,United States,423-31-3021,Social Security Number (United States),,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0010 (UN Ref):SOi.010 Married to a Somali woman. Lived in Egypt in 2005 and moved to Somalia in 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,Somalia,27/09/2011,28/07/2011,16/02/2022,12030 +HAMMOUD,Ali,,,,,,,,,00/00/1964,Tartus,Syria,,,,,,Former Transport Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0014 (UK Statement of Reasons):Former Transport Minister. As a former Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13402 +HAMMOUDA,Fo'ad,,,,,,,,,,,,Syria,,,,,Commander of the military operations in Idlib.,,,,,,,,,(UK Sanctions List Ref):SYR0047 (UK Statement of Reasons):Commander of the military operations in Idlib. Gave orders to troops to shoot protestors in Idlib at the beginning of September 2011. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12467 +HAMMOUDA,Fouad,,,,,,,,,,,,Syria,,,,,Commander of the military operations in Idlib.,,,,,,,,,(UK Sanctions List Ref):SYR0047 (UK Statement of Reasons):Commander of the military operations in Idlib. Gave orders to troops to shoot protestors in Idlib at the beginning of September 2011. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12467 +HAMMOUDA,Fu'ad,,,,,,,,,,,,Syria,,,,,Commander of the military operations in Idlib.,,,,,,,,,(UK Sanctions List Ref):SYR0047 (UK Statement of Reasons):Commander of the military operations in Idlib. Gave orders to troops to shoot protestors in Idlib at the beginning of September 2011. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12467 +HAMMOUDAH,Fo'ad,,,,,,,,,,,,Syria,,,,,Commander of the military operations in Idlib.,,,,,,,,,(UK Sanctions List Ref):SYR0047 (UK Statement of Reasons):Commander of the military operations in Idlib. Gave orders to troops to shoot protestors in Idlib at the beginning of September 2011. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12467 +HAMMOUDAH,Fouad,,,,,,,,,,,,Syria,,,,,Commander of the military operations in Idlib.,,,,,,,,,(UK Sanctions List Ref):SYR0047 (UK Statement of Reasons):Commander of the military operations in Idlib. Gave orders to troops to shoot protestors in Idlib at the beginning of September 2011. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12467 +HAMMOUDAH,Fu'ad,,,,,,,,,,,,Syria,,,,,Commander of the military operations in Idlib.,,,,,,,,,(UK Sanctions List Ref):SYR0047 (UK Statement of Reasons):Commander of the military operations in Idlib. Gave orders to troops to shoot protestors in Idlib at the beginning of September 2011. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12467 +HAMMOUDE,Fo'ad,,,,,,,,,,,,Syria,,,,,Commander of the military operations in Idlib.,,,,,,,,,(UK Sanctions List Ref):SYR0047 (UK Statement of Reasons):Commander of the military operations in Idlib. Gave orders to troops to shoot protestors in Idlib at the beginning of September 2011. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12467 +HAMMOUDE,Fouad,,,,,,,,,,,,Syria,,,,,Commander of the military operations in Idlib.,,,,,,,,,(UK Sanctions List Ref):SYR0047 (UK Statement of Reasons):Commander of the military operations in Idlib. Gave orders to troops to shoot protestors in Idlib at the beginning of September 2011. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12467 +HAMMOUDE,Fu'ad,,,,,,,,,,,,Syria,,,,,Commander of the military operations in Idlib.,,,,,,,,,(UK Sanctions List Ref):SYR0047 (UK Statement of Reasons):Commander of the military operations in Idlib. Gave orders to troops to shoot protestors in Idlib at the beginning of September 2011. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12467 +HAMMOUDEH,Fo'ad,,,,,,,,,,,,Syria,,,,,Commander of the military operations in Idlib.,,,,,,,,,(UK Sanctions List Ref):SYR0047 (UK Statement of Reasons):Commander of the military operations in Idlib. Gave orders to troops to shoot protestors in Idlib at the beginning of September 2011. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12467 +HAMMOUDEH,Fouad,,,,,,,,,,,,Syria,,,,,Commander of the military operations in Idlib.,,,,,,,,,(UK Sanctions List Ref):SYR0047 (UK Statement of Reasons):Commander of the military operations in Idlib. Gave orders to troops to shoot protestors in Idlib at the beginning of September 2011. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12467 +HAMMOUDEH,Fu'ad,,,,,,,,,,,,Syria,,,,,Commander of the military operations in Idlib.,,,,,,,,,(UK Sanctions List Ref):SYR0047 (UK Statement of Reasons):Commander of the military operations in Idlib. Gave orders to troops to shoot protestors in Idlib at the beginning of September 2011. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12467 +HAMMUD,Abed,Mahmoud,,,,,,,,00/00/1957,"al-Awja, near Tikrit",Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0065 (UN Ref):IQi.004,Individual,AKA,Good quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7619 +HAMMUD,Ali,,,,,,,,,00/00/1973,"Sahl Village, Raqqa Province",Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0132 (UN Ref):QDi.384 A leader of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). As of Jun, 2015, al-Shawakh was the ISIL governor of Aleppo. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13317 +HAMOUD,Ali,,,,,,,,,00/00/1964,Tartus,Syria,,,,,,Former Transport Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0014 (UK Statement of Reasons):Former Transport Minister. As a former Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population. (Gender):Male",Individual,Primary name,,Syria,14/11/2016,31/12/2020,31/12/2020,13402 +HAMOUDEH,Fo'ad,,,,,,,,,,,,Syria,,,,,Commander of the military operations in Idlib.,,,,,,,,,(UK Sanctions List Ref):SYR0047 (UK Statement of Reasons):Commander of the military operations in Idlib. Gave orders to troops to shoot protestors in Idlib at the beginning of September 2011. (Gender):Male,Individual,Primary name,,Syria,24/01/2012,31/12/2020,31/12/2020,12467 +HAMOUDEH,Fouad,,,,,,,,,,,,Syria,,,,,Commander of the military operations in Idlib.,,,,,,,,,(UK Sanctions List Ref):SYR0047 (UK Statement of Reasons):Commander of the military operations in Idlib. Gave orders to troops to shoot protestors in Idlib at the beginning of September 2011. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12467 +HAMOUDEH,Fu'ad,,,,,,,,,,,,Syria,,,,,Commander of the military operations in Idlib.,,,,,,,,,(UK Sanctions List Ref):SYR0047 (UK Statement of Reasons):Commander of the military operations in Idlib. Gave orders to troops to shoot protestors in Idlib at the beginning of September 2011. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12467 +HAMRA,Ezzedine,,,,,,,,,00/00/1946,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +HAMRA,Ezzedine,,,,,,,,,00/00/1947,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +HAMRA,Ezzedine,,,,,,,,,00/00/1949,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +HAMRA,Ezzedine,,,,,,,,,00/00/1950,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +HAMRA,Ezzedine,,,,,,,,,00/00/1942,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +HAMRA,Ezzedine,,,,,,,,,00/00/1944,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +HAMRA,Ezzedine,,,,,,,,,00/00/1948,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +HAMRA,Ezzedine,,,,,,,,,00/00/1940,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +HAMRA,Ezzedine,,,,,,,,,00/00/1941,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +HAMRA,Ezzedine,,,,,,,,,00/00/1943,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +HAMRA,Ezzedine,,,,,,,,,00/00/1945,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +HAMSA,Abu,,,,,,,,,12/03/1966,"Sangandaan, Caloocan City",Philippines,Philippines,AA780554,,,,,"50, Purdue Street",,,,Cubao,Quezon City,,Philippines,(UK Sanctions List Ref):AQD0195 (UN Ref):QDi.244 Founder and leader of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1523805,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10664 +HAMSHO,Emad,,,,,,,,,,,,,,,,,Vice-President of the Syrian Council of Iron and Steel,Hamsho Building,31 Baghdad Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0038 (UK Statement of Reasons):Occupies a senior management position in Hamsho Trading. As a result of his senior position in Hamsho Trading, a subsidiary of Hamsho International, which has been designated, he provides support to the Syrian regime. This means he is associated with a designated entity, Hamsho International. He is also a member of the Syrian Council of Iron and Steel alongside other designated regime businessmen. He is also associated with the Assad regime. (Gender):Male",Individual,Primary name,,Syria,09/03/2015,31/12/2020,31/12/2020,13233 +HAMSHO,Imad,,,,,,,,,,,,,,,,,Vice-President of the Syrian Council of Iron and Steel,Hamsho Building,31 Baghdad Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0038 (UK Statement of Reasons):Occupies a senior management position in Hamsho Trading. As a result of his senior position in Hamsho Trading, a subsidiary of Hamsho International, which has been designated, he provides support to the Syrian regime. This means he is associated with a designated entity, Hamsho International. He is also a member of the Syrian Council of Iron and Steel alongside other designated regime businessmen. He is also associated with the Assad regime. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13233 +HAMSHO,Mohammad,,,,,,,,,20/05/1966,,,Syria,2954347,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0152 (UK Statement of Reasons):Leading businessman operating in Syria, with interests in the engineering and construction, media, hospitality and health sector. He has financial interest in and/or holds senior and executive positions within a number of companies in Syria, in particular Hamsho international, Hamsho Communication, Mhg International, Jupiter for Investment and Tourism project and Syria Metal industries. He plays an important role in the business community in Syria as general secretary of the Damascus Chamber of Commerce (appointed by the then Minister for economy Khodr Orfali in December 2014), chairman of the China-Syria Bilateral Business Councils (since March 2014) and chairman of the Syrian Metal and Steel Council (since December 2015). He has close business relationships with key figures of the Syrian regime, including Maher Al-Assad. Mohammed Hamcho benefits from and provides support to the Syrian regime through his business interests, and is associated with persons benefiting from and providing support to this regime. (Gender):Male",Individual,Primary name variation,,Syria,27/01/2015,31/12/2020,31/12/2020,11933 +HAMSHO,Mohammad Saber,,,,,,,,,20/05/1966,,,Syria,2954347,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0152 (UK Statement of Reasons):Leading businessman operating in Syria, with interests in the engineering and construction, media, hospitality and health sector. He has financial interest in and/or holds senior and executive positions within a number of companies in Syria, in particular Hamsho international, Hamsho Communication, Mhg International, Jupiter for Investment and Tourism project and Syria Metal industries. He plays an important role in the business community in Syria as general secretary of the Damascus Chamber of Commerce (appointed by the then Minister for economy Khodr Orfali in December 2014), chairman of the China-Syria Bilateral Business Councils (since March 2014) and chairman of the Syrian Metal and Steel Council (since December 2015). He has close business relationships with key figures of the Syrian regime, including Maher Al-Assad. Mohammed Hamcho benefits from and provides support to the Syrian regime through his business interests, and is associated with persons benefiting from and providing support to this regime. (Gender):Male",Individual,Primary name variation,,Syria,27/01/2015,31/12/2020,31/12/2020,11933 +HAMSHO,Mohammed,,,,,,,,,20/05/1966,,,Syria,2954347,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0152 (UK Statement of Reasons):Leading businessman operating in Syria, with interests in the engineering and construction, media, hospitality and health sector. He has financial interest in and/or holds senior and executive positions within a number of companies in Syria, in particular Hamsho international, Hamsho Communication, Mhg International, Jupiter for Investment and Tourism project and Syria Metal industries. He plays an important role in the business community in Syria as general secretary of the Damascus Chamber of Commerce (appointed by the then Minister for economy Khodr Orfali in December 2014), chairman of the China-Syria Bilateral Business Councils (since March 2014) and chairman of the Syrian Metal and Steel Council (since December 2015). He has close business relationships with key figures of the Syrian regime, including Maher Al-Assad. Mohammed Hamcho benefits from and provides support to the Syrian regime through his business interests, and is associated with persons benefiting from and providing support to this regime. (Gender):Male",Individual,Primary name variation,,Syria,27/01/2015,31/12/2020,31/12/2020,11933 +HAMSHO TRADE AND CONSTRUCTION,,,,,,,,,,,,,,,,,,,Hamsho Centre,Adaye Street,,,,Damascus,,,"(UK Sanctions List Ref):SYR0305 Trading & Construction. Name of Director/Management: Mohammed Hamsho (UK Statement of Reasons):Prominent business and subsidiary of sanctioned entity Hamsho International Group. Controlled by sanctioned individual Mohammed Hamsho, Hamsho Trading supports and benefits from the Syrian regime through business contracts. (Phone number):+963 112316675. +963 112318875 (Fax) (Email address):hamsho-group@inco.com.lb. hamshogroup@yahoo.com. info@hamshointl.com (Parent company):Hamsho International, Baghdad Street, PO Box 8254 Damascus",Entity,AKA,,Syria,09/03/2015,31/12/2020,25/03/2021,13237 +HAMSHO TRADING,,,,,,,,,,,,,,,,,,,Hamsho Centre,Adaye Street,,,,Damascus,,,"(UK Sanctions List Ref):SYR0305 Trading & Construction. Name of Director/Management: Mohammed Hamsho (UK Statement of Reasons):Prominent business and subsidiary of sanctioned entity Hamsho International Group. Controlled by sanctioned individual Mohammed Hamsho, Hamsho Trading supports and benefits from the Syrian regime through business contracts. (Phone number):+963 112316675. +963 112318875 (Fax) (Email address):hamsho-group@inco.com.lb. hamshogroup@yahoo.com. info@hamshointl.com (Parent company):Hamsho International, Baghdad Street, PO Box 8254 Damascus",Entity,Primary name,,Syria,09/03/2015,31/12/2020,25/03/2021,13237 +HAMSHO TRADING EST.,,,,,,,,,,,,,,,,,,,Hamsho Centre,Adaye Street,,,,Damascus,,,"(UK Sanctions List Ref):SYR0305 Trading & Construction. Name of Director/Management: Mohammed Hamsho (UK Statement of Reasons):Prominent business and subsidiary of sanctioned entity Hamsho International Group. Controlled by sanctioned individual Mohammed Hamsho, Hamsho Trading supports and benefits from the Syrian regime through business contracts. (Phone number):+963 112316675. +963 112318875 (Fax) (Email address):hamsho-group@inco.com.lb. hamshogroup@yahoo.com. info@hamshointl.com (Parent company):Hamsho International, Baghdad Street, PO Box 8254 Damascus",Entity,AKA,,Syria,09/03/2015,31/12/2020,25/03/2021,13237 +HAMSHO TRADING ESTABLISHMENT,,,,,,,,,,,,,,,,,,,Hamsho Centre,Adaye Street,,,,Damascus,,,"(UK Sanctions List Ref):SYR0305 Trading & Construction. Name of Director/Management: Mohammed Hamsho (UK Statement of Reasons):Prominent business and subsidiary of sanctioned entity Hamsho International Group. Controlled by sanctioned individual Mohammed Hamsho, Hamsho Trading supports and benefits from the Syrian regime through business contracts. (Phone number):+963 112316675. +963 112318875 (Fax) (Email address):hamsho-group@inco.com.lb. hamshogroup@yahoo.com. info@hamshointl.com (Parent company):Hamsho International, Baghdad Street, PO Box 8254 Damascus",Entity,AKA,,Syria,09/03/2015,31/12/2020,25/03/2021,13237 +HAMWI,Abu,,,,,,,,,06/06/1969,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,AKA,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +HAMWI,Abu,,,,,,,,,06/06/1967,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,AKA,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +HAMZA,Abou,,,,,,,,,29/01/1971,Roubaix,France,France,,,,,,,,,,,,,France,(UK Sanctions List Ref):AQD0217 (UN Ref):QDi.095 In custody in France as of May 2004. Sentenced to 25 years imprisonment in France in 2007. His sentence is due to end on 13 Jul. 2023 and his unconditional detention to end on 13 Aug. 2020. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4531664,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,11/02/2022,7797 +HAMZA,Abu,,,,,,,,,15/04/1958,Alexandria,Egypt,United Kingdom,,,,,,,,,,,,,United States,(UK Sanctions List Ref):AQD0252 (UN Ref):QDi.067 Extradited from the United Kingdom to the United States of America on 5 Oct. 2012. Convicted on terrorism charges by a court in the United States of America in May 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,19/04/2002,24/04/2002,31/12/2020,6930 +HAMZA,Abu,,,,,,,,,29/01/1971,Roubaix,France,France,,,,,,,,,,,,,France,(UK Sanctions List Ref):AQD0217 (UN Ref):QDi.095 In custody in France as of May 2004. Sentenced to 25 years imprisonment in France in 2007. His sentence is due to end on 13 Jul. 2023 and his unconditional detention to end on 13 Aug. 2020. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4531664,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,11/02/2022,7797 +HAMZA,Arfauni,Imad,Ben,Yousset,,,,,,29/01/1971,Roubaix,France,France,,,,,,,,,,,,,France,(UK Sanctions List Ref):AQD0217 (UN Ref):QDi.095 In custody in France as of May 2004. Sentenced to 25 years imprisonment in France in 2007. His sentence is due to end on 13 Jul. 2023 and his unconditional detention to end on 13 Aug. 2020. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4531664,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,11/02/2022,7797 +HAMZA,,,,,,,,,,29/01/1971,Roubaix,France,France,,,,,,,,,,,,,France,(UK Sanctions List Ref):AQD0217 (UN Ref):QDi.095 In custody in France as of May 2004. Sentenced to 25 years imprisonment in France in 2007. His sentence is due to end on 13 Jul. 2023 and his unconditional detention to end on 13 Aug. 2020. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4531664,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,11/02/2022,7797 +HAMZAH,Abu,,,,,,,,,07/04/1986,Damascus,Syria,Syria,00351762055,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0139 (UN Ref):QDi.336 Administrative amir of Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818211,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13133 +HAN,Chang-Su,,,,,,,,,08/11/1969,Pyongyang,North Korea,,745420176,expires on 19 October 2020,,,Chief Representative of the Foreign Trade Bank,,,,,,,,,(UK Sanctions List Ref):DPR0210 (UN Ref):KPi.055 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13528 +HAN,German,,,,,,,,,24/10/1961,Kyiv,Ukraine,(1) Israel (2) Russia,,,,,"(1) Member of Supervisory Board, DEA Deutsche Erdoel AG (2) Co-founder and Member of Board of Directors, LetterOne Group",,,,,,,,,"(UK Sanctions List Ref):RUS0666 (UK Statement of Reasons):German Borisovich KHAN, hereafter KHAN, is a prominent Russian businessman. KHAN is obtaining a benefit from and/or supporting the Government of Russia through his positions on the Supervisory Board of the Alfa Group Consortium and the Board of Directors of ABH Holdings S.A., owner of Russia’s largest privately owned bank 'Alfa-Bank (Russia)’, and Chairman of the Supervisory Board of A1 Investment Holding S. A., entities which are carrying on business in sectors of strategic significance to the Government of Russia, KHAN is also a close associate of Vladimir Putin who has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,18/03/2022,14617 +HAN SE,PAK,,,,,,,,,,,,North Korea,290410121,,,,"Vice Chairman of the Second Economic Committee, which oversees the production of the DPRK’s ballistic missiles",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0254 (UN Ref):KPi.049 Directs the activities of Korea Mining Development Corporation, the DPRK’s premier arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons.",Individual,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,31/12/2020,13479 +HANDALAH,,,,,,,,,,04/01/1973,Jeddah,Saudi Arabia,Yemen,01055336,Yemen,2054275397,"Saudi Arabia alien registration number, issued on 22 Jul. 1998.",,,,,,,,,,"(UK Sanctions List Ref):AQD0257 (UN Ref):QDi.369 Financial and foreign fighter facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Member of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) since at least Jun. 2014. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13294 +HANDASIEH ORGANIZATION FOR ENGINEERING INDUSTRIES,,,,,,,,,,,,,,,,,,,PO Box 21120,,,,Baramkeh,Damascus,,Syria,(UK Sanctions List Ref):SYR0306 (UK Statement of Reasons):Front company for the acquisition of sensitive equipment related to the production of chemical weapons by the Syrian Scientific Studies and Research Center (SSRC) also known as Centre d'études et de recherches syrien (CERS). Owned or controlled by or otherwise associated with the SSRC. (Phone number):(1) +963112121816 (2) +963112121834 (3) +963112212743 (4) +963112214650 (5) +963115110117,Entity,Primary name,,Syria,02/12/2011,31/12/2020,13/05/2022,12431 +HANDASIEH ORGANIZATION FOR ENGINEERING INDUSTRIES,,,,,,,,,,,,,,,,,,,PO Box 5966,Abou Bakr Al Seddeq St.,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0306 (UK Statement of Reasons):Front company for the acquisition of sensitive equipment related to the production of chemical weapons by the Syrian Scientific Studies and Research Center (SSRC) also known as Centre d'études et de recherches syrien (CERS). Owned or controlled by or otherwise associated with the SSRC. (Phone number):(1) +963112121816 (2) +963112121834 (3) +963112212743 (4) +963112214650 (5) +963115110117,Entity,Primary name,,Syria,02/12/2011,31/12/2020,13/05/2022,12431 +HANDASIEH ORGANIZATION FOR ENGINEERING INDUSTRIES,,,,,,,,,,,,,,,,,,,PO Box 2849,Al Moutanabi Street,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0306 (UK Statement of Reasons):Front company for the acquisition of sensitive equipment related to the production of chemical weapons by the Syrian Scientific Studies and Research Center (SSRC) also known as Centre d'études et de recherches syrien (CERS). Owned or controlled by or otherwise associated with the SSRC. (Phone number):(1) +963112121816 (2) +963112121834 (3) +963112212743 (4) +963112214650 (5) +963115110117,Entity,Primary name,,Syria,02/12/2011,31/12/2020,13/05/2022,12431 +HANI,,,,,,,,,,07/04/1986,Damascus,Syria,Syria,00351762055,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0139 (UN Ref):QDi.336 Administrative amir of Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818211,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13133 +HANI,Youssef,,,,,,,,,01/03/1961,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +HANI,Youssef,,,,,,,,,16/06/1960,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +HANIF,DIN MOHAMMAD,,,,,Qari,دین محمد حنیف,,,00/00/1955,"Shakarlab village, Yaftali Pain District, Badakhshan Province",Afghanistan,Afghanistan,OA 454044,Issued in Afghanistan,,,(1) Minister of Planning under the Taliban regime. (2) Minister of Higher Education under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0038 (UN Ref):TAi.043 Member of Taliban Supreme Council responsible for Takhar and Badakhshan provinces. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,25/01/2001,01/02/2021,7164 +HANIF,DIN MOHAMMAD,,,,,Qari,دین محمد حنیف,,,01/01/1969,"Shakarlab village, Yaftali Pain District, Badakhshan Province",Afghanistan,Afghanistan,OA 454044,Issued in Afghanistan,,,(1) Minister of Planning under the Taliban regime. (2) Minister of Higher Education under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0038 (UN Ref):TAi.043 Member of Taliban Supreme Council responsible for Takhar and Badakhshan provinces. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,25/01/2001,01/02/2021,7164 +HANIFA,Abu,,,,,,Абу Ханифа,,,29/10/1980,Astrakhan,Russia,Russia,514448632,Russian foreign travel passport number,1200075689,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0315 (UN Ref):QDi.368 As at Aug. 2015, leader of Jamaat Abu Hanifa, a terrorist group that is part of the Al-Nusrah Front for the People of the Levant (QDe.137). Physical description: eye colour: brown, hair colour: black, build: slim, height 175-180 cm. Distinguishing marks: long face, speech defect. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899833. Address country Syria, located in as at Aug. 2015, Iraq , possible alternative location as at August 2015.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13303 +HANIFA,Abu,,,,,,Абу Ханифа,,,29/10/1980,Astrakhan,Russia,Russia,514448632,Russian foreign travel passport number,1200075689,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0315 (UN Ref):QDi.368 As at Aug. 2015, leader of Jamaat Abu Hanifa, a terrorist group that is part of the Al-Nusrah Front for the People of the Levant (QDe.137). Physical description: eye colour: brown, hair colour: black, build: slim, height 175-180 cm. Distinguishing marks: long face, speech defect. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899833. Address country Syria, located in as at Aug. 2015, Iraq , possible alternative location as at August 2015.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13303 +HANIFA EXCHANGE,,,,,,,,,,,,,,,,,,,Albu Kamal,(Al-Bukamal),,,,,,Syria,"(UK Sanctions List Ref):AQD0044 (UN Ref):QDe.153 Money exchange business in Albu Kamal, (Al-Bukamal), Syrian Arab Republic, facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Used exclusively for ISIL-related transactions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116591",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13514 +HANIFA MONEY EXCHANGE OFFICE,,,,,,,,,,,,,,,,,,,Albu Kamal,(Al-Bukamal),,,,,,Syria,"(UK Sanctions List Ref):AQD0044 (UN Ref):QDe.153 Money exchange business in Albu Kamal, (Al-Bukamal), Syrian Arab Republic, facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Used exclusively for ISIL-related transactions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116591",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13514 +"HANIFA MONEY EXCHANGE OFFICE (BRANCH LOCATED IN ALBU KAMAL, SYRIAN ARAB REPUBLIC)",,,,,,,مكتب حنيفة للصرافة,,,,,,,,,,,,Albu Kamal,(Al-Bukamal),,,,,,Syria,"(UK Sanctions List Ref):AQD0044 (UN Ref):QDe.153 Money exchange business in Albu Kamal, (Al-Bukamal), Syrian Arab Republic, facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Used exclusively for ISIL-related transactions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116591",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13514 +HANIFAH CURRENCY EXCHANGE,,,,,,,,,,,,,,,,,,,Albu Kamal,(Al-Bukamal),,,,,,Syria,"(UK Sanctions List Ref):AQD0044 (UN Ref):QDe.153 Money exchange business in Albu Kamal, (Al-Bukamal), Syrian Arab Republic, facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Used exclusively for ISIL-related transactions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116591",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13514 +HANIFAH EXCHANGE COMPANY,,,,,,,,,,,,,,,,,,,Albu Kamal,(Al-Bukamal),,,,,,Syria,"(UK Sanctions List Ref):AQD0044 (UN Ref):QDe.153 Money exchange business in Albu Kamal, (Al-Bukamal), Syrian Arab Republic, facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Used exclusively for ISIL-related transactions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116591",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13514 +HANIFEH EXCHANGE,,,,,,,,,,,,,,,,,,,Albu Kamal,(Al-Bukamal),,,,,,Syria,"(UK Sanctions List Ref):AQD0044 (UN Ref):QDe.153 Money exchange business in Albu Kamal, (Al-Bukamal), Syrian Arab Republic, facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Used exclusively for ISIL-related transactions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116591",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13514 +HANIFI,Abdussalam,,,,,,,,,00/00/1968,"(1) Darzab District, Faryab Province. (2) Qush Tepa District, Jawzjan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Deputy Minister of Education under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0027 (UN Ref):TAi.027 Taliban member responsible for Jawzjan Province in Northern Afghanistan until 2008. Involved in drug trafficking. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7162 +HANNA,Bassam,,,,,,,,,00/00/1954,Aleppo,Syria,,,,,,Former Minister for Water Resources,,,,,,,,,"(UK Sanctions List Ref):SYR0078 (UK Statement of Reasons):Former Minister of Water Resources in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,16/10/2012,31/12/2020,31/12/2020,12769 +HANNACHI,Fathi,,,,,,,,,11/12/1974,Tunis,Tunisia,Tunisia,L 191609,"Tunisian passport number issued on 28 Feb. 1996, expired on 27 Feb. 2001",(1) 04643632 (2) DAOMMD74T11Z352Z,(1) Issued on 18 Jun. 1999 (2) Italian Fiscal Code,,50th Street,No 23,Zehrouni,,,Tunis,,Tunisia,(UK Sanctions List Ref):AQD0239 (UN Ref):QDi.060 Head of security wing of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Mother's name is Ourida Bint Mohamed. Deported from Italy to Tunisia on 1 Dec. 2004. Arrested in Tunisia in Aug. 2013. Imprisoned in the civilian prison of Burj al-‘Amiri on 13 Sep. 2013. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7024 +HAP JANG GANG 6,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0110 Pursuant to paragraphs 8(d) of Security Council resolution 1718 (2006) and 12 of Security Council resolution 2270 (2016) as economic resources of designated entities. DPRK cargo vessel M/V HAP JANG GANG 6 is owned by Hapjanggang Shipping Corp and is believed to have been involved in illicit transfers of prohibited DPRK goods. Listed as asset of Hapjanggang Shipping Corp, (OFSI ID: 13629, UN Reference Number: UN Ref KPe.058) (IMO number):9066540 (Current owners):Hapjanggang Shipping Corp (Flag of ship):North Korea (Previous flags):Cambodia (Type of ship):General Cargo / Multi Purpose (Tonnage of ship):1497 (Length of ship):75 (Year built):1993",Ship,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13661 +HAPILON,ISNILON,TOTONI,,,,,,,,18/03/1966,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,"Basilan, previous location until 2016",,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +HAPILON,ISNILON,TOTONI,,,,,,,,18/03/1966,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,Lanao del Sur,,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +HAPILON,ISNILON,TOTONI,,,,,,,,10/03/1967,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,Lanao del Sur,,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +HAPILON,ISNILON,TOTONI,,,,,,,,10/03/1967,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,"Basilan, previous location until 2016",,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +HAPILUN,Isnilon,,,,,,,,,18/03/1966,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,"Basilan, previous location until 2016",,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +HAPILUN,Isnilon,,,,,,,,,18/03/1966,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,Lanao del Sur,,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +HAPILUN,Isnilon,,,,,,,,,10/03/1967,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,Lanao del Sur,,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +HAPILUN,Isnilon,,,,,,,,,10/03/1967,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,"Basilan, previous location until 2016",,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +HAPILUN,Isnilun,,,,,,,,,18/03/1966,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,"Basilan, previous location until 2016",,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +HAPILUN,Isnilun,,,,,,,,,18/03/1966,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,Lanao del Sur,,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +HAPILUN,Isnilun,,,,,,,,,10/03/1967,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,Lanao del Sur,,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +HAPILUN,Isnilun,,,,,,,,,10/03/1967,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,"Basilan, previous location until 2016",,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +HAPJANGGANG SHIPPING CORP,,,,,,,,,,,,,,,,,,,,,,Kumsong 3-dong,Mangyongdae-guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0137 (UN Ref):KPe.058 Registered owner of the DPRK tanker NAM SAN 8, believed to have been involved in ship-to-ship transfer operations for oil, and owner of vessel HAP JANG GANG 6. IMO number: 5787684.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13629 +HAQ,Abdul,,,,,,,,,00/00/1973,"(1) Shinkalai village, Nad-e-Ali District, Helmand Province. (2) Zabul Province",(1) Afghanistan (2) Afghanistan,Afghanistan,OA462456,Afghanistan. Issued under the name Abdul Haq on 31 Jan 2012 (11-11-1390),,,(1) Director of the Information and Culture Department in Kandahar Province under the Taliban regime (2) Spokesperson of the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0042 (UN Ref):TAi.051 Family is originally from Zabul, but settled later in Helmand. Member of the Taliban Supreme Council and spokesperson for Mullah Mohammed Omar (TAi.004) as of 2007. Believed to be in Afghanistan/Pakistan border area. Belongs to Kharoti tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7309 +HAQ,ABDUL,,,,,,阿不都·哈克,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +HAQ,ABDUL,,,,,,阿不都·哈克,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +HAQANI,Saraj,,,,,,,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Dergey Manday Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Saraj,,,,,,,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Kela neighborhood/Danda neighborhood,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Saraj,,,,,,,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Manba'ul uloom Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Saraj,,,,,,,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Manba'ul uloom Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Saraj,,,,,,,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Kela neighborhood/Danda neighborhood,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Saraj,,,,,,,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Dergey Manday Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Serajuddin,,,,,,,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Dergey Manday Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Serajuddin,,,,,,,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Kela neighborhood/Danda neighborhood,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Serajuddin,,,,,,,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Manba'ul uloom Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Serajuddin,,,,,,,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Manba'ul uloom Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Serajuddin,,,,,,,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Kela neighborhood/Danda neighborhood,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Serajuddin,,,,,,,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Dergey Manday Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Siraj,,,,,,,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Dergey Manday Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Siraj,,,,,,,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Kela neighborhood/Danda neighborhood,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Siraj,,,,,,,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Manba'ul uloom Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Siraj,,,,,,,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Manba'ul uloom Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Siraj,,,,,,,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Kela neighborhood/Danda neighborhood,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Siraj,,,,,,,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Dergey Manday Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQANI,Jalaluddin,,,,,,,,,00/00/1942,"(1) Garda Saray area, Waza Zadran District, Paktika Province. (2) Neka District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Frontier Affairs under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0036 (UN Ref):TAi.040 Father of Sirajuddin Jallaloudine Haqqani (TAi.144), Nasiruddin Haqqani (TAi.146) and Badruddin Haqqani (deceased). Brother of Mohammad Ibrahim Omari (TAi.042) and Khalil Ahmed Haqqani (TAi.150). He is an active Taliban leader. Believed to be in Afghanistan/Pakistan border area. Head of the Taliban Miram Shah Shura as at 2008. Belongs to Zadran tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of September 2018. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7165 +HAQANI,Jalaluddin,,,,,,,,,00/00/1948,"(1) Garda Saray area, Waza Zadran District, Paktika Province. (2) Neka District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Frontier Affairs under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0036 (UN Ref):TAi.040 Father of Sirajuddin Jallaloudine Haqqani (TAi.144), Nasiruddin Haqqani (TAi.146) and Badruddin Haqqani (deceased). Brother of Mohammad Ibrahim Omari (TAi.042) and Khalil Ahmed Haqqani (TAi.150). He is an active Taliban leader. Believed to be in Afghanistan/Pakistan border area. Head of the Taliban Miram Shah Shura as at 2008. Belongs to Zadran tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of September 2018. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7165 +HAQANI,Jallalouddin,,,,,,,,,00/00/1942,"(1) Garda Saray area, Waza Zadran District, Paktika Province. (2) Neka District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Frontier Affairs under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0036 (UN Ref):TAi.040 Father of Sirajuddin Jallaloudine Haqqani (TAi.144), Nasiruddin Haqqani (TAi.146) and Badruddin Haqqani (deceased). Brother of Mohammad Ibrahim Omari (TAi.042) and Khalil Ahmed Haqqani (TAi.150). He is an active Taliban leader. Believed to be in Afghanistan/Pakistan border area. Head of the Taliban Miram Shah Shura as at 2008. Belongs to Zadran tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of September 2018. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7165 +HAQANI,Jallalouddin,,,,,,,,,00/00/1948,"(1) Garda Saray area, Waza Zadran District, Paktika Province. (2) Neka District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Frontier Affairs under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0036 (UN Ref):TAi.040 Father of Sirajuddin Jallaloudine Haqqani (TAi.144), Nasiruddin Haqqani (TAi.146) and Badruddin Haqqani (deceased). Brother of Mohammad Ibrahim Omari (TAi.042) and Khalil Ahmed Haqqani (TAi.150). He is an active Taliban leader. Believed to be in Afghanistan/Pakistan border area. Head of the Taliban Miram Shah Shura as at 2008. Belongs to Zadran tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of September 2018. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7165 +HAQANI,Najibullah,,,,,,,,,00/00/1971,"Moni village, Shigal District, Kunar Province",Afghanistan,Afghanistan,,,545167,Afghan national ID card (tazkira). Issued in 1974,Deputy Minister of Finance under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0055 (UN Ref):TAi.071 Cousin of Moulavi Noor Jalal. Grandfather’s name is Salam. Taliban member responsible for Laghman Province as of late 2010. Believed to be in Afghanistan/ Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7170 +HAQQANI,Abdul Jalil,,,,,,,,,00/00/1963,"(1) Kandahar City, Kandahar Province. (2) Khwaja Malik village, Arghandab District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,(1) OR 1961825. (2) TR024417,"(1) Afghanistan. Issued in name of Akhtar Mohmad, son of Noor Mohmad, born in 1965 in Kandahar. Issued 4 Feb 2003 by Afghan Consulate in Quetta, Pakistan. Expired 2 Feb 2006 (2) Issued under the name of Haji Gulab Gul, son of Haji Hazrat Gul, born in 1955 in Logar, Afghanistan. Issued on 20/12/2003 by Central Passport Department in Kabul, Afghanistan. Expired 29 December 2006.",,,Deputy Minister of Foreign Affairs under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0032 (UN Ref):TAi.034 Believed to be in Afghanistan/Pakistan border area. Member of the Taliban Supreme Council as of May 2007. Member of the Financial Commission of the Taliban Council. Responsible for logistics for the Taliban and also active as a businessman in his personal capacity as at mid-2013. Belongs to Alizai tribe. Brother of Atiqullah Wali Mohammad (TAi.070). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6908 +HAQQANI,Khaleel,,,,,,,,,01/01/1966,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,01/01/1966,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,01/01/1966,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,01/01/1966,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1958,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1958,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1958,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1958,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1959,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1959,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1959,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1959,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1960,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1960,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1960,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1960,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1961,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1961,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1961,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1961,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1962,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1962,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1962,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1962,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1963,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1963,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1963,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1963,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1964,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1964,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1964,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khaleel,,,,,,,,,00/00/1964,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,01/01/1966,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,01/01/1966,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,01/01/1966,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,01/01/1966,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1958,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1958,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1958,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1958,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1959,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1959,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1959,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1959,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1960,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1960,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1960,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1960,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1961,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1961,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1961,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1961,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1962,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1962,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1962,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1962,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1963,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1963,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1963,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1963,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1964,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1964,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1964,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,Al-Rahman,,,,,,,,00/00/1964,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,01/01/1966,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,01/01/1966,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,01/01/1966,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,01/01/1966,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1958,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1958,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1958,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1958,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1959,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1959,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1959,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1959,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1960,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1960,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1960,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1960,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1961,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1961,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1961,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1961,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1962,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1962,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1962,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1962,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1963,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1963,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1963,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1963,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1964,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1964,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1964,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Khalil,ur Rahman,,,,,,,,00/00/1964,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Moslim,,,,,,,,,00/00/1965,"Gawargan village, Pul-e-Khumri District, Baghlan Province",Afghanistan,Afghanistan,,,1136,(Afghan) (tazkira),(1) Deputy Minister of Haj and Religious Affairs under the Taliban regime (2) Deputy Minister of Higher Education under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0057 (UN Ref):TAi.073 Ethnic Pashtun from Baghlan Province. Believed to be in Afghanistan/Pakistan border area. Speaks fluent English, Urdu and Arabic. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7169 +HAQQANI,Siraj,,,,,,,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Dergey Manday Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQQANI,Siraj,,,,,,,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Kela neighborhood/Danda neighborhood,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQQANI,Siraj,,,,,,,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Manba'ul uloom Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQQANI,Siraj,,,,,,,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Manba'ul uloom Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQQANI,Siraj,,,,,,,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Kela neighborhood/Danda neighborhood,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQQANI,Siraj,,,,,,,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Dergey Manday Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQQANI,Abdul Qadir,,,,,,,,,00/00/1964,"(1) Hisarak District, Nangarhar Province. (2) Surkh Rod District, Nangarhar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,D 000974,Afghanistan number,,,"(1) Head of Taliban Peshawar Financial Commission. (2) Military Attache, Taliban Embassy, Islamabad, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0098 (UN Ref):TAi.128 Financial advisor to Taliban Peshawar Military Council and Head of Taliban Peshawar Financial Commission. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6911 +HAQQANI,Ezatullah,,,,,,,,,00/00/1957,"Alingar District, Laghman Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Planning under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0049 (UN Ref):TAi.064 Member of the Taliban Peshawar Shura as of 2008. Believed to be in Afghanistan/ Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7132 +HAQQANI,Ibrahim,,,,,,,,,00/00/1958,"Garda Saray, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Frontier Affairs under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0037 (UN Ref):TAi.042 Brother of Jalaluddin Haqqani (TAi.040) Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7388 +HAQQANI,JALALUDDIN,,,,,Maulavi,جلال الدين حقانى,,,00/00/1942,"(1) Garda Saray area, Waza Zadran District, Paktika Province. (2) Neka District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Frontier Affairs under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0036 (UN Ref):TAi.040 Father of Sirajuddin Jallaloudine Haqqani (TAi.144), Nasiruddin Haqqani (TAi.146) and Badruddin Haqqani (deceased). Brother of Mohammad Ibrahim Omari (TAi.042) and Khalil Ahmed Haqqani (TAi.150). He is an active Taliban leader. Believed to be in Afghanistan/Pakistan border area. Head of the Taliban Miram Shah Shura as at 2008. Belongs to Zadran tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of September 2018. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7165 +HAQQANI,JALALUDDIN,,,,,Maulavi,جلال الدين حقانى,,,00/00/1948,"(1) Garda Saray area, Waza Zadran District, Paktika Province. (2) Neka District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Frontier Affairs under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0036 (UN Ref):TAi.040 Father of Sirajuddin Jallaloudine Haqqani (TAi.144), Nasiruddin Haqqani (TAi.146) and Badruddin Haqqani (deceased). Brother of Mohammad Ibrahim Omari (TAi.042) and Khalil Ahmed Haqqani (TAi.150). He is an active Taliban leader. Believed to be in Afghanistan/Pakistan border area. Head of the Taliban Miram Shah Shura as at 2008. Belongs to Zadran tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of September 2018. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7165 +HAQQANI,Jallalouddine,,,,,,,,,00/00/1942,"(1) Garda Saray area, Waza Zadran District, Paktika Province. (2) Neka District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Frontier Affairs under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0036 (UN Ref):TAi.040 Father of Sirajuddin Jallaloudine Haqqani (TAi.144), Nasiruddin Haqqani (TAi.146) and Badruddin Haqqani (deceased). Brother of Mohammad Ibrahim Omari (TAi.042) and Khalil Ahmed Haqqani (TAi.150). He is an active Taliban leader. Believed to be in Afghanistan/Pakistan border area. Head of the Taliban Miram Shah Shura as at 2008. Belongs to Zadran tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of September 2018. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7165 +HAQQANI,Jallalouddine,,,,,,,,,00/00/1948,"(1) Garda Saray area, Waza Zadran District, Paktika Province. (2) Neka District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Frontier Affairs under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0036 (UN Ref):TAi.040 Father of Sirajuddin Jallaloudine Haqqani (TAi.144), Nasiruddin Haqqani (TAi.146) and Badruddin Haqqani (deceased). Brother of Mohammad Ibrahim Omari (TAi.042) and Khalil Ahmed Haqqani (TAi.150). He is an active Taliban leader. Believed to be in Afghanistan/Pakistan border area. Head of the Taliban Miram Shah Shura as at 2008. Belongs to Zadran tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of September 2018. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7165 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,01/01/1966,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,01/01/1966,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,01/01/1966,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,01/01/1966,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1958,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1958,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1958,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1958,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1959,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1959,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1959,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1959,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1960,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1960,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1960,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1960,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1961,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1961,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1961,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1961,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1962,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1962,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1962,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1962,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1963,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1963,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1963,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1963,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1964,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Sarana Zadran Village,,,,,Paktia Province,,Afghanistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1964,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Near Dergey Manday Madrasa,Dergey Manday Village,near Miram Shah,,North Waziristan Agency (NWA),Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1964,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,Kayla Village,near Miram Shah,,,"North Waziristan Agency (NWA),",Federally Administered Tribal Areas (FATA),,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,KHALIL,AHMED,,,,Haji,خلیل احمد حقانی,,,00/00/1964,"Sarana village, Garda Saray area, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,,,,,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AFG0118 (UN Ref):TAi.150 Senior member of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Has previously traveled to, and raised funds in, Dubai, United Arab Emirates. Brother of Jalaluddin Haqqani (TAi.040) and uncle of Sirajuddin Jallaloudine Haqqani (TAi.144). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,28/02/2011,09/02/2011,01/02/2021,11633 +HAQQANI,Maseer,,,,,Doctor,,,,00/00/1970,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +HAQQANI,Maseer,,,,,Doctor,,,,00/00/1971,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +HAQQANI,Maseer,,,,,Doctor,,,,00/00/1972,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +HAQQANI,Maseer,,,,,Doctor,,,,00/00/1973,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +HAQQANI,MOHAMMAD SALIM,,,,,Maulavi,محمد سلیم حقانی,,,00/00/1967,"Alingar District, Laghman Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Preventing Vice and Propagating Virtue under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0060 (UN Ref):TAi.079 Deputy Commander of Ezatullah Haqqani Khan Sayyid (TAi.064) as at Mar. 2010. Member of Taliban Peshawar Military Council as at June 2010. Belongs to Pashai ethnic group. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7168 +HAQQANI,MOHAMMAD SALIM,,,,,Maulavi,محمد سلیم حقانی,,,00/00/1966,"Alingar District, Laghman Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Preventing Vice and Propagating Virtue under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0060 (UN Ref):TAi.079 Deputy Commander of Ezatullah Haqqani Khan Sayyid (TAi.064) as at Mar. 2010. Member of Taliban Peshawar Military Council as at June 2010. Belongs to Pashai ethnic group. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7168 +HAQQANI,Nashir,,,,,,,,,00/00/1970,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +HAQQANI,Nashir,,,,,,,,,00/00/1971,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +HAQQANI,Nashir,,,,,,,,,00/00/1972,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +HAQQANI,Nashir,,,,,,,,,00/00/1973,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +HAQQANI,NASIRUDDIN,,,,,,نصیر الدین حقانی,,,00/00/1970,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +HAQQANI,NASIRUDDIN,,,,,,نصیر الدین حقانی,,,00/00/1971,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +HAQQANI,NASIRUDDIN,,,,,,نصیر الدین حقانی,,,00/00/1972,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +HAQQANI,NASIRUDDIN,,,,,,نصیر الدین حقانی,,,00/00/1973,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +HAQQANI,Nassir,,,,,,,,,00/00/1970,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +HAQQANI,Nassir,,,,,,,,,00/00/1971,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +HAQQANI,Nassir,,,,,,,,,00/00/1972,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +HAQQANI,Nassir,,,,,,,,,00/00/1973,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +HAQQANI,Sayyed,Mohammad,,,,,,,,00/00/1965,"Chaharbagh village, Arghandab District, Kandahar Province",Afghanistan,Afghanistan,,,,,(1) Director of Administrative Affairs under the Taliban regime. (2) Head of Information and Culture in Kandahar Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0010 (UN Ref):TAi.006 Graduate of the Haqqaniya madrasa in Akora Khattak, Pakistan. Believed to have had close relations with Taliban Leader Mullah Mohammed Omar (TAi.004). Believed to be in Afghanistan/Pakistan border area. Member of Taliban Supreme Council as at June 2010. Belongs to Barakzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of January 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7167 +HAQQANI,Sayyed,Mohammed,,,,Mullah,سيد محمد حقانی,,,00/00/1965,"Chaharbagh village, Arghandab District, Kandahar Province",Afghanistan,Afghanistan,,,,,(1) Director of Administrative Affairs under the Taliban regime. (2) Head of Information and Culture in Kandahar Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0010 (UN Ref):TAi.006 Graduate of the Haqqaniya madrasa in Akora Khattak, Pakistan. Believed to have had close relations with Taliban Leader Mullah Mohammed Omar (TAi.004). Believed to be in Afghanistan/Pakistan border area. Member of Taliban Supreme Council as at June 2010. Belongs to Barakzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of January 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7167 +HAQQANI,SIRAJUDDIN,JALLALOUDINE,,,,,سراج الدين جلال الدين حقانى,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Dergey Manday Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQQANI,SIRAJUDDIN,JALLALOUDINE,,,,,سراج الدين جلال الدين حقانى,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Kela neighborhood/Danda neighborhood,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQQANI,SIRAJUDDIN,JALLALOUDINE,,,,,سراج الدين جلال الدين حقانى,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Manba'ul uloom Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQQANI,SIRAJUDDIN,JALLALOUDINE,,,,,سراج الدين جلال الدين حقانى,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Manba'ul uloom Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQQANI,SIRAJUDDIN,JALLALOUDINE,,,,,سراج الدين جلال الدين حقانى,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Kela neighborhood/Danda neighborhood,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQQANI,SIRAJUDDIN,JALLALOUDINE,,,,,سراج الدين جلال الدين حقانى,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Dergey Manday Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +HAQQANI,YAHYA,,,,,,يحيى حقانی,,,00/00/1982,,,Afghanistan,,,,,,A Haqqani Madrassa in the Afghanistan/Pakistan border area.,,,,,,,,"(UK Sanctions List Ref):AFG0135 (UN Ref):TAi.169 Senior Haqqani Network (HQN) (TAe.012) member. Closely involved in the group’s military, financial, and propaganda activities. Injured leg. Father’s name is Hajji Meyawar Khan (deceased). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,31/07/2014,31/07/2014,01/02/2021,13144 +HAQQANI,YAHYA,,,,,,يحيى حقانی,,,00/00/1978,,,Afghanistan,,,,,,A Haqqani Madrassa in the Afghanistan/Pakistan border area.,,,,,,,,"(UK Sanctions List Ref):AFG0135 (UN Ref):TAi.169 Senior Haqqani Network (HQN) (TAe.012) member. Closely involved in the group’s military, financial, and propaganda activities. Injured leg. Father’s name is Hajji Meyawar Khan (deceased). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,31/07/2014,31/07/2014,01/02/2021,13144 +HAQQANI NETWORK (HQN),,,,,,,شبکه حقانی,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0003 (UN Ref):TAe.012 Network of Taliban fighters centered around the border between Khost Province, Afghanistan and North Waziristan, Pakistan. Founded by Jalaluddin Haqqani (TAi.040) and currently headed by his son Sirajuddin Jallaloudine Haqqani (TAi.144). Other listed members include Nasiruddin Haqqani (TAi.146), Sangeen Zadran Sher Mohammad (TAi.152), Abdul Aziz Abbasin (TAi.155), Fazl Rabi (TAi.157), Ahmed Jan Wazir (TAi.159), Bakht Gul (TAi.161), Abdul Rauf Zakir (TAi.164). Responsible for suicide attacks and targeted assassination as well as kidnappings in Kabul and other provinces of Afghanistan. Linked to Al-Qaida (QDe.004), Islamic Movement of Uzbekistan (QDe.010), Tehrik-e Taliban Pakistan (QDe.132), Lashkar I Jhangvi (QDe.096), and Jaish-IMohammed (QDe.019). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here",Entity,Primary name,,Afghanistan,06/12/2012,05/11/2012,01/02/2021,12811 +HARA COMPANY,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0151 (UN Ref):IRe.025 Owned or controlled by Ghorb Nooh. [Old Reference # E.29.II.5] (Parent company):Ghorb Nooh,Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11138 +HARAKAT AL-MUTHANNA AL-ISLAMIA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0058 (UN Ref):QDe.155 Joined the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in May 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116594",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13510 +HARAKAT AL-SHABAAB AL - MUJAAHIDIIN,,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +HARAKAT SHABAB AL-MUJAHIDIN,,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +HARAKAT SHAM AL-ISLAM,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0045 (UN Ref):QDe.149 Moroccan-led terrorist organization formed in Aug. 2013 and operating in Syrian Arab Republic. Principally composed of foreign terrorist fighters and associated with AI-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5930739,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13323 +HARAKAT UL JIHAD-E-ISLAMI,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0047 (UN Ref):QDe.130 Was established in Afghanistan in 1980. In 1993, Harakat-ul Jihad Islami merged with Harakat ul-Mujahidin (QDe.008) to form Harakat ul-Ansar. In 1997, Harakat-ul Jihad Islami split from Harakat ul-Ansar and resumed using its former name. Operations are in India, Pakistan and Afghanistan. Banned in Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282215",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,06/09/2010,06/08/2010,31/12/2020,11270 +HARAKAT UL- MUJAHIDEEN,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0046 (UN Ref):QDe.008 Associated with Jaish-i-Mohammed (QDe.019), Lashkar i Jhangvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Active in Pakistan and Afghanistan. Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282053",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6987 +HARAKAT UL-ANSAR,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0046 (UN Ref):QDe.008 Associated with Jaish-i-Mohammed (QDe.019), Lashkar i Jhangvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Active in Pakistan and Afghanistan. Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282053",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6987 +HARAKAT UL-MUJAHIDIN (HUM),,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0046 (UN Ref):QDe.008 Associated with Jaish-i-Mohammed (QDe.019), Lashkar i Jhangvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Active in Pakistan and Afghanistan. Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282053",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6987 +HARAKAT-UL JIHAD ISLAMI,,,,,,,حرکت الجہاد الاسلامی,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0047 (UN Ref):QDe.130 Was established in Afghanistan in 1980. In 1993, Harakat-ul Jihad Islami merged with Harakat ul-Mujahidin (QDe.008) to form Harakat ul-Ansar. In 1997, Harakat-ul Jihad Islami split from Harakat ul-Ansar and resumed using its former name. Operations are in India, Pakistan and Afghanistan. Banned in Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282215",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,06/09/2010,06/08/2010,31/12/2020,11270 +HARAKATUL SHABAAB AL MUJAAHIDIIN,,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +HARAKAT-UL-ANSAR,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0047 (UN Ref):QDe.130 Was established in Afghanistan in 1980. In 1993, Harakat-ul Jihad Islami merged with Harakat ul-Mujahidin (QDe.008) to form Harakat ul-Ansar. In 1997, Harakat-ul Jihad Islami split from Harakat ul-Ansar and resumed using its former name. Operations are in India, Pakistan and Afghanistan. Banned in Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282215",Entity,FKA,,ISIL (Da'esh) and Al-Qaida,06/09/2010,06/08/2010,31/12/2020,11270 +HARAKET SHAM AL-ISLAM,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0045 (UN Ref):QDe.149 Moroccan-led terrorist organization formed in Aug. 2013 and operating in Syrian Arab Republic. Principally composed of foreign terrorist fighters and associated with AI-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5930739,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13323 +HARARA,Muyassir,,,,,,,,,01/06/1976,"(1) Al-Shura, Mosul (2) Harara, Ninawa",(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0228 (UN Ref):QDi.337 Sharia amir of Al-Nusrah Front for the People of the Levant (QDe.137) as of early 2014. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13134 +HARES,Abu,,,,,,,,,06/06/1969,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,AKA,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +HARES,Abu,,,,,,,,,06/06/1967,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,AKA,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +HARETH,Abu,,,,,,,,,06/06/1969,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,AKA,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +HARETH,Abu,,,,,,,,,06/06/1967,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,AKA,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +HARKAT-AL-JIHAD-UL ISLAMI,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0047 (UN Ref):QDe.130 Was established in Afghanistan in 1980. In 1993, Harakat-ul Jihad Islami merged with Harakat ul-Mujahidin (QDe.008) to form Harakat ul-Ansar. In 1997, Harakat-ul Jihad Islami split from Harakat ul-Ansar and resumed using its former name. Operations are in India, Pakistan and Afghanistan. Banned in Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282215",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,06/09/2010,06/08/2010,31/12/2020,11270 +HARKAT-UL-JEHAD-AL-ISLAMI,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0047 (UN Ref):QDe.130 Was established in Afghanistan in 1980. In 1993, Harakat-ul Jihad Islami merged with Harakat ul-Mujahidin (QDe.008) to form Harakat ul-Ansar. In 1997, Harakat-ul Jihad Islami split from Harakat ul-Ansar and resumed using its former name. Operations are in India, Pakistan and Afghanistan. Banned in Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282215",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,06/09/2010,06/08/2010,31/12/2020,11270 +HARKAT-UL-JIHAD-AL ISLAMI,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0047 (UN Ref):QDe.130 Was established in Afghanistan in 1980. In 1993, Harakat-ul Jihad Islami merged with Harakat ul-Mujahidin (QDe.008) to form Harakat ul-Ansar. In 1997, Harakat-ul Jihad Islami split from Harakat ul-Ansar and resumed using its former name. Operations are in India, Pakistan and Afghanistan. Banned in Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282215",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,06/09/2010,06/08/2010,31/12/2020,11270 +HARO RUHORIMBERE,,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,AKA,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +HARRACHI,El,,,,,,الحراشي,,,19/12/1969,"Hussein Dey, Algiers",Algeria,Algeria,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0238 (UN Ref):QDi.279 Convicted in absentia by Algerian tribunal on 28 Mar. 1996. Algerian international arrest warrant number 03/09 of 6 Jun. 2009 issued by the Tribunal of Sidi Mhamed, Algiers, Algeria. Algerian extradition request number 2307/09 of 3 Sep. 2009, presented to Malian authorities. Father’s name is Ali Belkalem. Mother’s name is Fatma Saadoudi. Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,,ISIL (Da'esh) and Al-Qaida,04/05/2010,22/04/2010,31/12/2020,11096 +HARRINGTON PADRON,Katherine,Nayarith,,,,,Katherine Nayarith Harrington Padrón,,,05/12/1971,,,,,,,,Former Deputy Attorney General. Previously National Public Prosecutor,,,,,,,,,"(UK Sanctions List Ref):VEN0018 Former Deputy Attorney General (UK Statement of Reasons):Former Deputy Prosecutor General, appointed by the Constituent Assembly. Responsible for undermining democracy and the rule of law, including by initiating politically-motivated prosecutions and failing to investigate allegations of human rights violations by the Maduro regime. In a previous role as National Public Prosecutor, she admitted to carrying out her duties with “political bias”. (Gender):Female",Individual,Primary name,,Venezuela,26/06/2018,31/12/2020,31/12/2020,13694 +HASAN,Bassam,,,,,,,,,00/00/1961,"Sheen, Homs",Syria,Syria,,,,,(1) Former Commander in the Republican Guards and regime representative in the SSRC (2) Advisor to President Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0027 Links Syrian Regime with the Scientific Studies and Research Centre (an entity listed by the EU 1 December 2011). Advisor to Syrian President Bashar al Asad (listed by the EU 23 May 2011). Works with IRGC Major General Qasem Soleimani (listed by the EU 23 June 2011). (UK Statement of Reasons):Former Major General in the Syrian Arab Army and Commander of the National Defense Forces, advisor to the President on strategic affairs; involved in violence against the civilian population. (Gender):Male",Individual,AKA,,Syria,24/05/2011,31/12/2020,13/05/2022,11935 +HASAN,Kaskar,Dawood,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +HASAN,Kaskar,Dawood,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +HASAN,Kaskar,Dawood,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +HASAN,Malek,,,,,,,,,,,,,,,,,Commander of the 22nd Division of the Syrian Air Force,,,,,,,,,"(UK Sanctions List Ref):SYR0141 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and Commander of the 22nd Division of the Syrian Air Force, in post after May 2011. As a senior officer of the Syrian Air Force and in the chain of command of the 22nd Division, he is responsible for the violent repression against the civilian population in Syria, including the use of chemical weapons by aircraft operating from airbases under the control of the 22nd Division, such as the attack on Talmenas that the Joint Investigative Mechanism established by the United Nations reported was conducted by Hama airfield-based regime helicopters. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13497 +HASAN,Malik,,,,,,مالك حسن,,,,,,,,,,,Commander of the 22nd Division of the Syrian Air Force,,,,,,,,,"(UK Sanctions List Ref):SYR0141 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and Commander of the 22nd Division of the Syrian Air Force, in post after May 2011. As a senior officer of the Syrian Air Force and in the chain of command of the 22nd Division, he is responsible for the violent repression against the civilian population in Syria, including the use of chemical weapons by aircraft operating from airbases under the control of the 22nd Division, such as the attack on Talmenas that the Joint Investigative Mechanism established by the United Nations reported was conducted by Hama airfield-based regime helicopters. (Gender):Male",Individual,Primary name,,Syria,18/07/2017,31/12/2020,31/12/2020,13497 +HASAN,Sameer,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0217 Business interests: Cham Holdings, Byblos Bank Syria, Syrian Kuwaiti Insurance Company, Amir Group (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in multiple sectors of Syria's economy. He holds interests in and/or has significant influence in the Amir Group and Cham Holdings, two conglomerates with interests in the real estate, tourism, transport and finance sectors. From March 2014 until September 2018, he held the position of Chairman for Russia of the Bilateral Business Councils following his appointment by Minister of Economy, Khodr Orfali. Samir Hassan supports the regime's war effort with cash donations. He has substantial political and economic ties with the regime, and has close business links with key regime figures such as Rami Makhlouf and Issam Anbouba. Hassan's listing therefore falls under the relevant listing criteria as a person 'benefiting from or supporting the regime' and associated with 'persons or entities responsible for the violent repression against the civilian population in Syria'. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,19/05/2022,12053 +HASAN,Samir,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0217 Business interests: Cham Holdings, Byblos Bank Syria, Syrian Kuwaiti Insurance Company, Amir Group (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in multiple sectors of Syria's economy. He holds interests in and/or has significant influence in the Amir Group and Cham Holdings, two conglomerates with interests in the real estate, tourism, transport and finance sectors. From March 2014 until September 2018, he held the position of Chairman for Russia of the Bilateral Business Councils following his appointment by Minister of Economy, Khodr Orfali. Samir Hassan supports the regime's war effort with cash donations. He has substantial political and economic ties with the regime, and has close business links with key regime figures such as Rami Makhlouf and Issam Anbouba. Hassan's listing therefore falls under the relevant listing criteria as a person 'benefiting from or supporting the regime' and associated with 'persons or entities responsible for the violent repression against the civilian population in Syria'. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,19/05/2022,12053 +HASAN,Sohail,,,,,,,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +HASAN,Suhail,,,,,,,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +HASAN,Suhayl,,,,,,,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +HASAN,Suheil,,,,,,,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +HASAN AL-TIKRITI,ALI,BARZAN,IBRAHIM,,,,علي برزان إبراهيم حسن التكريتي,,,18/04/1981,,,Iraq,,,,,,,,,,,Geneva,,Switzerland,(UK Sanctions List Ref):IRQ0125 (UN Ref):IQi.064,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8248 +HASAN AL-TIKRITI,KHAWLA,BARZAN,IBRAHIM,,,,خولة برزان إبراهيم حسن التكريتي,,,03/12/1986,,,Iraq,,,,,,,,,,,Geneva,,Switzerland,(UK Sanctions List Ref):IRQ0127 (UN Ref):IQi.066,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8250 +HASAN AL-TIKRITI,MOHAMMAD,BARZAN,IBRAHIM,,,,محمد برزان إبراهيم حسن التكريتي,,,02/11/1972,,,Iraq,,,,,,,,,,,Geneva,,Switzerland,(UK Sanctions List Ref):IRQ0123 (UN Ref):IQi.062,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8251 +HASAN AL-TIKRITI,NOOR,BARZAN,IBRAHIM,,,,نور برزان إبراهيم حسن التكريتي,,,02/11/1983,,,Iraq,,,,,,,,,,,Geneva,,Switzerland,(UK Sanctions List Ref):IRQ0126 (UN Ref):IQi.065,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8252 +HASAN AL-TIKRITI,SAJA,BARZAN,IBRAHIM,,,,سجا برزان إبراهيم حسن التكريتي,,,01/01/1978,,,Iraq,,,,,,,,,,,Geneva,,Switzerland,(UK Sanctions List Ref):IRQ0124 (UN Ref):IQi.063,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8255 +HASAN AL-TIKRITI,THORAYA,BARZAN,IBRAHIM,,,,ثريا برزان إبراهيم حسن التكريتي,,,19/12/1980,,,Iraq,,,,,,,,,,,,,Iraq,(UK Sanctions List Ref):IRQ0128 (UN Ref):IQi.067,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8256 +HASAN AL-TIKRITI,THORAYA,BARZAN,IBRAHIM,,,,ثريا برزان إبراهيم حسن التكريتي,,,19/01/1980,,,Iraq,,,,,,,,,,,,,Iraq,(UK Sanctions List Ref):IRQ0128 (UN Ref):IQi.067,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8256 +HASAWANI,George,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +HASAWANI,Georges,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +HASAWANI,Jurj,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +HASHAN,Sayed,Mohammed,,,,,,,,00/00/1960,"(1) Kandahar Province. (2) Pishin, Baluchistan Province",(1) Afghanistan. (2) Pakistan,,,,5430312277059,Pakistan. Fraudulently obtained and since cancelled by the Government of Pakistan.,,Pashtunabad,,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0140 (UN Ref):TAi.174 Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of November 2018. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/11/2015,02/11/2015,01/02/2021,13306 +HASHAN,Sayed,Mohammed,,,,,,,,00/00/1962,"(1) Kandahar Province. (2) Pishin, Baluchistan Province",(1) Afghanistan. (2) Pakistan,,,,5430312277059,Pakistan. Fraudulently obtained and since cancelled by the Government of Pakistan.,,Pashtunabad,,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0140 (UN Ref):TAi.174 Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of November 2018. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/11/2015,02/11/2015,01/02/2021,13306 +HASHAN,Sayed,Mohammed,,,,,,,,00/00/1965,"(1) Kandahar Province. (2) Pishin, Baluchistan Province",(1) Afghanistan. (2) Pakistan,,,,5430312277059,Pakistan. Fraudulently obtained and since cancelled by the Government of Pakistan.,,Pashtunabad,,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0140 (UN Ref):TAi.174 Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of November 2018. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/11/2015,02/11/2015,01/02/2021,13306 +HASOURI,Mohammad,Yousef,,,,,,,,,,,,,,,,(1) Chief of Staff of Air Force Brigade 50 (2) Deputy Commander of the Shayrat Airbase,,,,,,,,,"(UK Sanctions List Ref):SYR0177 (UK Statement of Reasons):Brigadier General Muhammad Hasouri is a senior officer of the Syrian Air Force, in post after May 2011. He holds the position as Chief of Staff of Air Force Brigade 50 and Deputy Commander of the Shayrat Airbase. Brigadier General Muhammad Hasouri operates in the chemical weapons proliferation sector. As a senior military officer he is responsible for the violent repression against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13496 +HASOURI,Mohammed,Yousef,,,,,,,,,,,,,,,,(1) Chief of Staff of Air Force Brigade 50 (2) Deputy Commander of the Shayrat Airbase,,,,,,,,,"(UK Sanctions List Ref):SYR0177 (UK Statement of Reasons):Brigadier General Muhammad Hasouri is a senior officer of the Syrian Air Force, in post after May 2011. He holds the position as Chief of Staff of Air Force Brigade 50 and Deputy Commander of the Shayrat Airbase. Brigadier General Muhammad Hasouri operates in the chemical weapons proliferation sector. As a senior military officer he is responsible for the violent repression against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13496 +HASOURI,Muhammad,Yousef,,,,,محمد يوسف حاسوري,,,,,,,,,,,(1) Chief of Staff of Air Force Brigade 50 (2) Deputy Commander of the Shayrat Airbase,,,,,,,,,"(UK Sanctions List Ref):SYR0177 (UK Statement of Reasons):Brigadier General Muhammad Hasouri is a senior officer of the Syrian Air Force, in post after May 2011. He holds the position as Chief of Staff of Air Force Brigade 50 and Deputy Commander of the Shayrat Airbase. Brigadier General Muhammad Hasouri operates in the chemical weapons proliferation sector. As a senior military officer he is responsible for the violent repression against the civilian population in Syria. (Gender):Male",Individual,Primary name,,Syria,18/07/2017,31/12/2020,31/12/2020,13496 +HASSAN,,,,,,,,,,00/00/1980,,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0122 (UN Ref):IQi.061,Individual,AKA,Low quality,Iraq,22/04/2004,07/04/2004,31/12/2020,8247 +HASSAN,,,,,,,,,,00/00/1983,,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0122 (UN Ref):IQi.061,Individual,AKA,Low quality,Iraq,22/04/2004,07/04/2004,31/12/2020,8247 +HASSAN,,,,,,,,,,00/00/1978,,Mali,Mali,,,,,,,,,,,,,Mali,(UK Sanctions List Ref):AQD0240 (UN Ref):QDi.319 Member of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5720103,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,24/10/2013,31/12/2020,12886 +HASSAN,Dawood,,,,,Sheikh,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +HASSAN,Dawood,,,,,Sheikh,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +HASSAN,Dawood,,,,,Sheikh,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +HASSAN,El-Hajj,,,,,,,,,22/03/1988,"Zaghdraiya, Sidon",,Canada,JX446643,Canadian,,,,,,,,,,,Lebanon,"(UK Sanctions List Ref):CTI0007 (UK Statement of Reasons):Mr El-Hajj has been found guilty of complicity in the bombing of Burgas Airport, which killed 6 people and injured 32 others. He is associated with the military wing of Hizballah, a terrorist organisation. (Gender):Male",Individual,AKA,,Counter-Terrorism (International),23/12/2016,31/12/2020,11/03/2022,13442 +HASSAN,Gud,Mullah,Mohammad,,,,,,,00/00/1963,"(1) Deh Rawud District, Uruzgan Province (2) Chora District, Uruzgan Province (3) Charchino District, Uruzgan Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Governor of Kandahar Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0074 (UN Ref):TAi.096 Has a prosthetic right leg. Member of Taliban Supreme Council as of mid-2013, acted as deputy of Mullah Mohammed Omar (TAi.004) in Mar. 2010. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. Deceased as of 9 February 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,16/02/2022,7411 +HASSAN,Jameel,,,,,,,,,07/07/1953,Qusayr Homs,Syria,,,,,,Head of Syrian Air Force Intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0111 (UK Statement of Reasons):Officer of the rank of Major-General in the Syrian Air Force in post after May 2011. Head of Syrian Air Force Intelligence in post after May 2011. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11906 +HASSAN,Jamieel,,,,,,,,,07/07/1953,Qusayr Homs,Syria,,,,,,Head of Syrian Air Force Intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0111 (UK Statement of Reasons):Officer of the rank of Major-General in the Syrian Air Force in post after May 2011. Head of Syrian Air Force Intelligence in post after May 2011. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11906 +HASSAN,Jamil,,,,,,,,,07/07/1953,Qusayr Homs,Syria,,,,,,Head of Syrian Air Force Intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0111 (UK Statement of Reasons):Officer of the rank of Major-General in the Syrian Air Force in post after May 2011. Head of Syrian Air Force Intelligence in post after May 2011. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name,,Syria,10/05/2011,31/12/2020,31/12/2020,11906 +HASSAN,Malek,,,,,,,,,,,,,,,,,Commander of the 22nd Division of the Syrian Air Force,,,,,,,,,"(UK Sanctions List Ref):SYR0141 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and Commander of the 22nd Division of the Syrian Air Force, in post after May 2011. As a senior officer of the Syrian Air Force and in the chain of command of the 22nd Division, he is responsible for the violent repression against the civilian population in Syria, including the use of chemical weapons by aircraft operating from airbases under the control of the 22nd Division, such as the attack on Talmenas that the Joint Investigative Mechanism established by the United Nations reported was conducted by Hama airfield-based regime helicopters. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13497 +HASSAN,Malik,,,,,,,,,,,,,,,,,Commander of the 22nd Division of the Syrian Air Force,,,,,,,,,"(UK Sanctions List Ref):SYR0141 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and Commander of the 22nd Division of the Syrian Air Force, in post after May 2011. As a senior officer of the Syrian Air Force and in the chain of command of the 22nd Division, he is responsible for the violent repression against the civilian population in Syria, including the use of chemical weapons by aircraft operating from airbases under the control of the 22nd Division, such as the attack on Talmenas that the Joint Investigative Mechanism established by the United Nations reported was conducted by Hama airfield-based regime helicopters. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13497 +HASSAN,Mohamed,,,,,,,,,18/12/1969,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +HASSAN,Mohamed,,,,,,,,,25/05/1968,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +HASSAN,Mohamed,,,,,,,,,18/12/1968,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +HASSAN,Mohamed,,,,,,,,,14/07/1969,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +HASSAN,Muhammad,Khalid,,,,,,,,01/06/1976,"(1) Al-Shura, Mosul (2) Harara, Ninawa",(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0228 (UN Ref):QDi.337 Sharia amir of Al-Nusrah Front for the People of the Levant (QDe.137) as of early 2014. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13134 +HASSAN,Sameer,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0217 Business interests: Cham Holdings, Byblos Bank Syria, Syrian Kuwaiti Insurance Company, Amir Group (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in multiple sectors of Syria's economy. He holds interests in and/or has significant influence in the Amir Group and Cham Holdings, two conglomerates with interests in the real estate, tourism, transport and finance sectors. From March 2014 until September 2018, he held the position of Chairman for Russia of the Bilateral Business Councils following his appointment by Minister of Economy, Khodr Orfali. Samir Hassan supports the regime's war effort with cash donations. He has substantial political and economic ties with the regime, and has close business links with key regime figures such as Rami Makhlouf and Issam Anbouba. Hassan's listing therefore falls under the relevant listing criteria as a person 'benefiting from or supporting the regime' and associated with 'persons or entities responsible for the violent repression against the civilian population in Syria'. (Gender):Male",Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,19/05/2022,12053 +HASSAN,Samir,,,,,,سميرر حسان,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0217 Business interests: Cham Holdings, Byblos Bank Syria, Syrian Kuwaiti Insurance Company, Amir Group (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in multiple sectors of Syria's economy. He holds interests in and/or has significant influence in the Amir Group and Cham Holdings, two conglomerates with interests in the real estate, tourism, transport and finance sectors. From March 2014 until September 2018, he held the position of Chairman for Russia of the Bilateral Business Councils following his appointment by Minister of Economy, Khodr Orfali. Samir Hassan supports the regime's war effort with cash donations. He has substantial political and economic ties with the regime, and has close business links with key regime figures such as Rami Makhlouf and Issam Anbouba. Hassan's listing therefore falls under the relevant listing criteria as a person 'benefiting from or supporting the regime' and associated with 'persons or entities responsible for the violent repression against the civilian population in Syria'. (Gender):Male",Individual,Primary name,,Syria,24/08/2011,31/12/2020,19/05/2022,12053 +HASSAN,Sheikh,,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +HASSAN,Sheikh,,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +HASSAN,Sheikh,,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +HASSAN,Sheikh,,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +HASSAN,Sohail,,,,,,,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +HASSAN,Suhail,,,,,,,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +HASSAN,Suhayl,,,,,,النمر,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +HASSAN,Suheil,,,,,,,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +HASSAN,Abdu,Tamer,,,,,"Хассан, Абду Тамер",Cyrillic,Russian,12/06/1994,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1223 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15175 +HASSAN,Ahmed,Salem,,,,,,,,01/02/1948,,,,,,,,General Intelligence Directorate Brigadier General,,,,,,,,,(UK Sanctions List Ref):SYR0247 (UK Statement of Reasons):Brigadier General in the General Intelligence Directorate. (Gender):Male,Individual,AKA,,Syria,24/07/2012,31/12/2020,31/12/2020,12725 +HASSAN,Sheikh,,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +HASSAN,Sheikh,,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +HASSAN,Sheikh,,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +HASSAN,Sheikh,,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +HASSANZADEH,Hasan,,,,,,حسن حسن زاده,,Persian,,,,Iran,,,,,IRGC Commander in Tehran,,,,,,,,,"(UK Sanctions List Ref):IHR0112 (UK Statement of Reasons):Hasan HASSANZADEH is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and the right to freedom of expression and peaceful assembly in Iran through his role as senior commander of the Islamic Revolutionary Guard Corps (IRGC) in Tehran and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15632 +HASSOUN,Nahib,,,,,,,,,,,,,,,,,Former Head of Political Security Directorate (PSD),,,,,,,,,(UK Sanctions List Ref):SYR0191 (UK Statement of Reasons):Former Officer of the rank of Major General in the Syrian Armed Forces. Former head of the Political Security Directorate of the Syrian security services. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,02/12/2011,31/12/2020,13/05/2022,12419 +HASSOUN,Nazeeh,,,,,,,,,,,,,,,,,Former Head of Political Security Directorate (PSD),,,,,,,,,(UK Sanctions List Ref):SYR0191 (UK Statement of Reasons):Former Officer of the rank of Major General in the Syrian Armed Forces. Former head of the Political Security Directorate of the Syrian security services. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,02/12/2011,31/12/2020,13/05/2022,12419 +HASSOUN,Nazih,,,,,,,,,,,,,,,,,Former Head of Political Security Directorate (PSD),,,,,,,,,(UK Sanctions List Ref):SYR0191 (UK Statement of Reasons):Former Officer of the rank of Major General in the Syrian Armed Forces. Former head of the Political Security Directorate of the Syrian security services. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,02/12/2011,31/12/2020,13/05/2022,12419 +HASSUN,Nahib,,,,,,,,,,,,,,,,,Former Head of Political Security Directorate (PSD),,,,,,,,,(UK Sanctions List Ref):SYR0191 (UK Statement of Reasons):Former Officer of the rank of Major General in the Syrian Armed Forces. Former head of the Political Security Directorate of the Syrian security services. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,02/12/2011,31/12/2020,13/05/2022,12419 +HASSUN,Nazeeh,,,,,,,,,,,,,,,,,Former Head of Political Security Directorate (PSD),,,,,,,,,(UK Sanctions List Ref):SYR0191 (UK Statement of Reasons):Former Officer of the rank of Major General in the Syrian Armed Forces. Former head of the Political Security Directorate of the Syrian security services. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,02/12/2011,31/12/2020,13/05/2022,12419 +HASSUN,Nazih,,,,,,,,,,,,,,,,,Former Head of Political Security Directorate (PSD),,,,,,,,,(UK Sanctions List Ref):SYR0191 (UK Statement of Reasons):Former Officer of the rank of Major General in the Syrian Armed Forces. Former head of the Political Security Directorate of the Syrian security services. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,Primary name,,Syria,02/12/2011,31/12/2020,13/05/2022,12419 +HASWANI,George,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +HASWANI,Georges,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +HASWANI,Jurj,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +HAUCHARD,MAXIME,,,,,,,,,17/03/1992,"Saint Aubin les Elbeuf, Normandy",France,France,,,101127200129,"French national identity card. Issued by the Sous-Prefecture of Bernay, France. Expires 04/11/2020.",,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0227 (UN Ref):QDi.378 French foreign terrorist fighter for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). French arrest warrant issued on 20 Jan. 2015 by a magistrate of the anti-terrorism division of the Prosecutor’s Office in Paris for murder in connection with a terrorist entity and participation in a terrorist criminal association. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897332. Syria, as at Sep. 2015",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,12/01/2022,13291 +HAVA PEYMA SAZI-E IRAN,,,,,,,,,,,,,,,,,,,No. 27 Shahamat Ave.,Vallie asr Square.,,,,Tehran (HESA Tehran Office),15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAVA PEYMA SAZI-E IRAN,,,,,,,,,,,,,,,,,,,P.O. Box 14155 5568,No. 27 Ahahamat Ave.,Vallie Asr Square,,,Tehran,15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAVA PEYMA SAZI-E IRAN,,,,,,,,,,,,,,,,,,,P.O. Box 8140,No. 107 Sepahbod Gharany Ave.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAVA PEYMA SAZI-E IRAN,,,,,,,,,,,,,,,,,,,P.O. Box 83145 311,28 km Esfahan Tehran Freeway,Shain Shahr,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAVA PEYMA SAZI-E IRAN,,,,,,,,,,,,,,,,,,,P.O. Box81465 935,,,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAVA PEYMA SAZI-E IRAN,,,,,,,,,,,,,,,,,,,Shahih Shar Industrial Zone,,,,,Isfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAVAPEYMA SAZHRAN,,,,,,,,,,,,,,,,,,,No. 27 Shahamat Ave.,Vallie asr Square.,,,,Tehran (HESA Tehran Office),15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAVAPEYMA SAZHRAN,,,,,,,,,,,,,,,,,,,P.O. Box 14155 5568,No. 27 Ahahamat Ave.,Vallie Asr Square,,,Tehran,15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAVAPEYMA SAZHRAN,,,,,,,,,,,,,,,,,,,P.O. Box 8140,No. 107 Sepahbod Gharany Ave.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAVAPEYMA SAZHRAN,,,,,,,,,,,,,,,,,,,P.O. Box 83145 311,28 km Esfahan Tehran Freeway,Shain Shahr,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAVAPEYMA SAZHRAN,,,,,,,,,,,,,,,,,,,P.O. Box81465 935,,,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAVAPEYMA SAZHRAN,,,,,,,,,,,,,,,,,,,Shahih Shar Industrial Zone,,,,,Isfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAVAPEYMA SAZI IRAN,,,,,,,,,,,,,,,,,,,No. 27 Shahamat Ave.,Vallie asr Square.,,,,Tehran (HESA Tehran Office),15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAVAPEYMA SAZI IRAN,,,,,,,,,,,,,,,,,,,P.O. Box 14155 5568,No. 27 Ahahamat Ave.,Vallie Asr Square,,,Tehran,15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAVAPEYMA SAZI IRAN,,,,,,,,,,,,,,,,,,,P.O. Box 8140,No. 107 Sepahbod Gharany Ave.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAVAPEYMA SAZI IRAN,,,,,,,,,,,,,,,,,,,P.O. Box 83145 311,28 km Esfahan Tehran Freeway,Shain Shahr,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAVAPEYMA SAZI IRAN,,,,,,,,,,,,,,,,,,,P.O. Box81465 935,,,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAVAPEYMA SAZI IRAN,,,,,,,,,,,,,,,,,,,Shahih Shar Industrial Zone,,,,,Isfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HAYADATULLAH,,,,,,,,,,00/00/1972,"Band-e-Temur, Maiwand District, Kandahar Province",Afghanistan,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0115 (UN Ref):TAi.147 Member of a Taliban Council that coordinates the collection of zakat (Islamic tax) from Baluchistan Province, Pakistan. Head of Taliban Financial Commission as at mid-2013. Associated with Mullah Mohammed Omar (TAi.004). Served as Omar's principal finance officer and one of his closest advisors. Belongs to Ishaqzai tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,AKA,Low quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11207 +HAYAT,Fazal,,,,,,,,,00/00/1974,"Kuza Bandai village, Swat Valley, Khyber Pakhtunkhawa Province",Pakistan,,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0225 (UN Ref):QDi.352 Commander of Tehrik-e Taliban Pakistan (TTP) (QDe.132) since 7 Nov. 2013. Led the local TTP in Pakistan’s northwest valley of Swat from 2007 to 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5859726. Afghanistan / Pakistan border region,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,13/04/2015,07/04/2015,31/12/2020,13246 +HAYAT,Fazal,,,,,,,,,00/00/1974,"Kuza Bandai village, Swat Valley, Khyber Pakhtunkhawa Province",Pakistan,,,,,,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0225 (UN Ref):QDi.352 Commander of Tehrik-e Taliban Pakistan (TTP) (QDe.132) since 7 Nov. 2013. Led the local TTP in Pakistan’s northwest valley of Swat from 2007 to 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5859726. Afghanistan / Pakistan border region,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,13/04/2015,07/04/2015,31/12/2020,13246 +HAYAT TAHRIR AL-SHAM,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +HAYAT TAHRIR AL-SHAM,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +HAY'AT TAHRIR AL-SHAM,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +HAY'AT TAHRIR AL-SHAM,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +HAY'AT TAHRIR AL-SHAM HTS,,,,,,,هيئة تحرير الشام,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +HAY'AT TAHRIR AL-SHAM HTS,,,,,,,هيئة تحرير الشام,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +HAYDAR,Ali,,,,,,,,,00/00/1962,Hama,Syria,Syria,,,,,Former Head of the National Reconciliation Agency,,,,,,,,,"(UK Sanctions List Ref):SYR0075 Linked to Bashar Asad (UK Statement of Reasons):Former Head of the National Reconciliation Agency and Former State Minister for National Reconciliation Affairs. As a Former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12784 +HAY'ET TAHRIR AL-SHAM,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +HAY'ET TAHRIR AL-SHAM,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +HAYRAPETYAN,Larisa,,,,,,,,,21/02/1970,,,,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0062 Relatives/business associates or partners/links to listed individuals: Husband – Geran Hayrapetyan aka Ayrapetyan (UK Statement of Reasons):Former so-called “Health Minister’ of the so called ‘Luhansk People's Republic’. Stood as a candidate in the so called ‘elections’ of 2 November 2014 to the post of the ‘Head’ of the so called ‘Luhansk People's Republic’. These ‘elections’ are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, she has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilised Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13172 +HAYRAPETYAN,Larisa,Leonidovna,,,,,Лариса Леонидовна АЙРАПЕТЯН,,,21/02/1970,,,,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0062 Relatives/business associates or partners/links to listed individuals: Husband – Geran Hayrapetyan aka Ayrapetyan (UK Statement of Reasons):Former so-called “Health Minister’ of the so called ‘Luhansk People's Republic’. Stood as a candidate in the so called ‘elections’ of 2 November 2014 to the post of the ‘Head’ of the so called ‘Luhansk People's Republic’. These ‘elections’ are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, she has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilised Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13172 +HAYRAPETYAN,Larisa,Leonidovna,,,,,Лариса Леонідівна АЙРАПЕТЯН,,,21/02/1970,,,,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0062 Relatives/business associates or partners/links to listed individuals: Husband – Geran Hayrapetyan aka Ayrapetyan (UK Statement of Reasons):Former so-called “Health Minister’ of the so called ‘Luhansk People's Republic’. Stood as a candidate in the so called ‘elections’ of 2 November 2014 to the post of the ‘Head’ of the so called ‘Luhansk People's Republic’. These ‘elections’ are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, she has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilised Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13172 +HAZA',Abu,,,,,,,,,15/02/1972,,,Qatar,00966737,Qatar number. Expired 16 Feb. 2016.,27263401275,Qatar number,,,,,,,Umm Salal,,Qatar,"(UK Sanctions List Ref):AQD0298 (UN Ref):QDi.382 Qatar-based facilitator who provides financial services to, or in support of, Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896810",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,24/03/2021,13280 +HAZEM,Abdul Hai,,,,,,,,,00/00/1971,"Pashawal Yargatoo village, Andar District, Ghazni Province",Afghanistan,Afghanistan,D 0001203,Issued in Afghanistan,,,"First Secretary, Taliban Consulate General, Quetta, Pakistan",Puli Charkhi Area,District Number 9,,,Kabul City,Kabul Province,,Afghanistan,(UK Sanctions List Ref):AFG0110 (UN Ref):TAi.142 Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6895 +HAZZA',Abu,,,,,,,,,15/02/1972,,,Qatar,00966737,Qatar number. Expired 16 Feb. 2016.,27263401275,Qatar number,,,,,,,Umm Salal,,Qatar,"(UK Sanctions List Ref):AQD0298 (UN Ref):QDi.382 Qatar-based facilitator who provides financial services to, or in support of, Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896810",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,24/03/2021,13280 +HEBBO,,,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HEBBO,,,,,,,,,,01/10/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HEBBO,,,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HEBBO,,,,,,,,,,15/03/1983,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HEBBO,,,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Gazantiep,,Turkey,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HEBBO,,,,,,,,,,01/01/1980,Raqqa,Syria,Syria,00814L001424,Syrian Arab Republic number,(1) 10716775 (2) 2020316097 (3) 2020409266,(1) Syrian Arab Republic national identification card. (2) Syrian Arab Republic national identification card (3) Syrian Arab Republic national identification card,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0372 (UN Ref):QDi.429 Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Turkey (since 2016)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/06/2021,17/06/2021,18/06/2021,14112 +HEIDAR,Ali,,,,,,,,,00/00/1962,Hama,Syria,Syria,,,,,Former Head of the National Reconciliation Agency,,,,,,,,,"(UK Sanctions List Ref):SYR0075 Linked to Bashar Asad (UK Statement of Reasons):Former Head of the National Reconciliation Agency and Former State Minister for National Reconciliation Affairs. As a Former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,16/10/2012,31/12/2020,13/05/2022,12784 +HEJAZI,Ali,,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,AKA,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +HEJAZI,Ali,,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +HEJAZI,Ali,Asghar,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,AKA,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +HEJAZI,Ali,Asghar,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +HEJAZI,Ali,Asqar,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +HEJAZI,Asghar,,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +HEJAZI,Asghar,Sadegh,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +HEJAZI,Seyyed,Ali,Asghar,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,AKA,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +HEJAZI,Seyyed,Ali,Asghar,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +HEJAZI,MOHAMMAD,,,,,,,,,00/00/1959,Isfahan,Iran,,,,,,Brigadier General. Commander of Bassij resistance force,,,,,,,,,(UK Sanctions List Ref):INU0203 (UN Ref):IRi.017 [Old Reference # I.47.D.5],Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,08/03/2022,9061 +HEJAZI,MOHAMMAD,,,,,,,,,,Isfahan,Iran,,,,,,Brigadier General. Commander of Bassij resistance force,,,,,,,,,(UK Sanctions List Ref):INU0203 (UN Ref):IRi.017 [Old Reference # I.47.D.5],Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,08/03/2022,9061 +HELEL,Mounir,,,,,,,,,10/05/1983,Ben Guerdane,Tunisia,Tunisia,,,08619445,,,Amria Ben Guerdane,,,,,Medenine,,Tunisia,"(UK Sanctions List Ref):AQD0253 (UN Ref):QDi.386 Foreign terrorist fighter facilitator experienced in establishing and securing travel routes. Deeply involved in providing material support to the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) in North Africa. Assisted foreign terrorist fighters’ travel throughout North Africa and to Syrian Arab Republic to join Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Profession: farm worker. Mother's name: Mbarka Helali. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,14/06/2022,13319 +HELWEH,Adnan,Aboud,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0004 (UK Statement of Reasons):Holds the rank of Brigadier General of 155 Brigade and 157 Brigade in the Syrian Army in post after May 2011. As the Brigadier General of 155 and 157 Brigade, he is responsible for the violent repression against the civilian population in Syria, including through his responsibility for the deployment and use of missile and chemical weapons attacks in civilian areas in 2013 and involvement in the large scale detentions (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13381 +HEMASHO,Emad,,,,,,,,,,,,,,,,,Vice-President of the Syrian Council of Iron and Steel,Hamsho Building,31 Baghdad Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0038 (UK Statement of Reasons):Occupies a senior management position in Hamsho Trading. As a result of his senior position in Hamsho Trading, a subsidiary of Hamsho International, which has been designated, he provides support to the Syrian regime. This means he is associated with a designated entity, Hamsho International. He is also a member of the Syrian Council of Iron and Steel alongside other designated regime businessmen. He is also associated with the Assad regime. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13233 +HEMASHO,Imad,,,,,,,,,,,,,,,,,Vice-President of the Syrian Council of Iron and Steel,Hamsho Building,31 Baghdad Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0038 (UK Statement of Reasons):Occupies a senior management position in Hamsho Trading. As a result of his senior position in Hamsho Trading, a subsidiary of Hamsho International, which has been designated, he provides support to the Syrian regime. This means he is associated with a designated entity, Hamsho International. He is also a member of the Syrian Council of Iron and Steel alongside other designated regime businessmen. He is also associated with the Assad regime. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13233 +HEQ,Abdul,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +HEQ,Abdul,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +HEREMET,Mykhaylo,Serhiyovych,,,,,,,,23/05/1971,Dzhankoy,,Ukraine,,,,,Member of Russian State Duma elected for Crimea and former so-called ‘First Deputy Prime Minister’ of Crimea.,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0131 (UK Statement of Reasons):Member of the State Duma, elected from the illegally annexed Autonomous Republic of Crimea. Former “First Deputy Prime Minister” of Crimea. Sheremet played a key role in the organisation and implementation of the 16 March referendum in Crimea on unification with Russia. At the time of the referendum, Sheremet reportedly commanded the pro-Moscow “self-defence forces” in Crimea. He has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Elected on 18 September 2016 as a Duma deputy from illegally annexed Crimean Peninsula. (Gender):Male",Individual,AKA,,Russia,12/09/2014,31/12/2020,31/12/2020,13100 +HERNANDEZ DALA,Ivan,,,,,,Iván Hernández Dala,,,15/04/1963,,,,,,,,Head of Directorate-General of Military Counter-Intelligence. Head of Presidential Guard,,,,,,,,,"(UK Sanctions List Ref):VEN0009 Head of Directorate-General of Military Counter-Intelligence. Head of Presidential Guard (UK Statement of Reasons):Head of the Directorate-General of Military Counter-Intelligence (DGCIM) since January 2014 and Head of the Presidential Guard since September 2015. As Head of DGCIM, Ivan Hernandez Dala is responsible for serious human rights violations and the repression of civil society and democratic opposition committed by members of the DGCIM under his command, including excessive use of force and the ill-treatment of detainees. (Gender):Male",Individual,Primary name,,Venezuela,26/06/2018,31/12/2020,31/12/2020,13685 +HERNANDEZ DE HERNANDEZ,Socorro,Elizabeth,,,,,Socorro Elizabeth Hernández de Hernández,,,11/03/1952,"Caracas, Capital District",Venezuela,Venezuela,,,3977396,Venezuela,Member of the National Electoral Council (CNE) and National Electoral Board (JNE),,,,,Caracas,Capital District,,Venezuela,"(UK Sanctions List Ref):VEN0014 Member of the National Electoral Council (CNE). National Electoral Board (JNE) (UK Statement of Reasons):Rector and member of the National Electoral Council (CNE) and member of the National Electoral Board (JNE). Responsible for the CNE’s activities which have undermined democracy in Venezuela, including facilitating the establishment of the Constituent Assembly and manipulation of the electoral process in relation to a cancelled presidential recall election in 2016, postponement of gubernatorial elections in 2016, and the relocation of polling stations at short notice before gubernatorial elections in 2017. (Gender):Female",Individual,Primary name variation,,Venezuela,26/06/2018,31/12/2020,31/12/2020,13695 +HERNANDEZ HERNANDEZ,Socorro,Elizabeth,,,,,Socorro Elizabeth Hernández Hernández,,,11/03/1952,"Caracas, Capital District",Venezuela,Venezuela,,,3977396,Venezuela,Member of the National Electoral Council (CNE) and National Electoral Board (JNE),,,,,Caracas,Capital District,,Venezuela,"(UK Sanctions List Ref):VEN0014 Member of the National Electoral Council (CNE). National Electoral Board (JNE) (UK Statement of Reasons):Rector and member of the National Electoral Council (CNE) and member of the National Electoral Board (JNE). Responsible for the CNE’s activities which have undermined democracy in Venezuela, including facilitating the establishment of the Constituent Assembly and manipulation of the electoral process in relation to a cancelled presidential recall election in 2016, postponement of gubernatorial elections in 2016, and the relocation of polling stations at short notice before gubernatorial elections in 2017. (Gender):Female",Individual,Primary name,,Venezuela,26/06/2018,31/12/2020,31/12/2020,13695 +HESA,,,,,,,,,,,,,,,,,,,No. 27 Shahamat Ave.,Vallie asr Square.,,,,Tehran (HESA Tehran Office),15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HESA,,,,,,,,,,,,,,,,,,,P.O. Box 14155 5568,No. 27 Ahahamat Ave.,Vallie Asr Square,,,Tehran,15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HESA,,,,,,,,,,,,,,,,,,,P.O. Box 8140,No. 107 Sepahbod Gharany Ave.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HESA,,,,,,,,,,,,,,,,,,,P.O. Box 83145 311,28 km Esfahan Tehran Freeway,Shain Shahr,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HESA,,,,,,,,,,,,,,,,,,,P.O. Box81465 935,,,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HESA,,,,,,,,,,,,,,,,,,,Shahih Shar Industrial Zone,,,,,Isfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HESA TRADE CENTER,,,,,,,,,,,,,,,,,,,No. 27 Shahamat Ave.,Vallie asr Square.,,,,Tehran (HESA Tehran Office),15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HESA TRADE CENTER,,,,,,,,,,,,,,,,,,,P.O. Box 14155 5568,No. 27 Ahahamat Ave.,Vallie Asr Square,,,Tehran,15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HESA TRADE CENTER,,,,,,,,,,,,,,,,,,,P.O. Box 8140,No. 107 Sepahbod Gharany Ave.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HESA TRADE CENTER,,,,,,,,,,,,,,,,,,,P.O. Box 83145 311,28 km Esfahan Tehran Freeway,Shain Shahr,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HESA TRADE CENTER,,,,,,,,,,,,,,,,,,,P.O. Box81465 935,,,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HESA TRADE CENTER,,,,,,,,,,,,,,,,,,,Shahih Shar Industrial Zone,,,,,Isfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HESONG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0138 (UN Ref):KPe.024 The Korea Mining Development Trading Corporation (KOMID) is the parent company of Hesong Trading Corporation.,Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,31/12/2020,12442 +HESSWANI,George,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +HESSWANI,Georges,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +HESSWANI,Jurj,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +HEVAPEIMASAZI,,,,,,,,,,,,,,,,,,,No. 27 Shahamat Ave.,Vallie asr Square.,,,,Tehran (HESA Tehran Office),15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HEVAPEIMASAZI,,,,,,,,,,,,,,,,,,,P.O. Box 14155 5568,No. 27 Ahahamat Ave.,Vallie Asr Square,,,Tehran,15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HEVAPEIMASAZI,,,,,,,,,,,,,,,,,,,P.O. Box 8140,No. 107 Sepahbod Gharany Ave.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HEVAPEIMASAZI,,,,,,,,,,,,,,,,,,,P.O. Box 83145 311,28 km Esfahan Tehran Freeway,Shain Shahr,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HEVAPEIMASAZI,,,,,,,,,,,,,,,,,,,P.O. Box81465 935,,,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HEVAPEIMASAZI,,,,,,,,,,,,,,,,,,,Shahih Shar Industrial Zone,,,,,Isfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HEWANI,George,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +HEWANI,Georges,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +HEWANI,Jurj,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +HEYDAR,Ali,,,,,,,,,00/00/1962,Hama,Syria,Syria,,,,,Former Head of the National Reconciliation Agency,,,,,,,,,"(UK Sanctions List Ref):SYR0075 Linked to Bashar Asad (UK Statement of Reasons):Former Head of the National Reconciliation Agency and Former State Minister for National Reconciliation Affairs. As a Former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12784 +HEYDARIFAR,Ali-Akbar,,,,,,,,,,,,,,,,,"Former Judge, Tehran Revolutionary Court.",,,,,,,,,"(UK Sanctions List Ref):IHR0016 (UK Statement of Reasons):Former Judge, Tehran Revolutionary Court. He participated in protesters trials. He was questioned by the Judiciary about Kahrizak abuses. He was instrumental in issuing detention orders to consign detainees to Kahrizak Detention Centre in 2009. In November 2014, his role in the deaths of detainees was officially recognised by the Iranian authorities. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11794 +HEZBOLLAH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0032 Includes Hizballah Military Wing (UK Statement of Reasons):Hizballah has claimed responsibility for a number of terrorist attacks since the 1980s. It supports terrorism in Iraq and the Occupied Palestinian Territories. It also frequently incites violence against Israel and is behind a large number of rocket attacks into Israel.,Entity,AKA,,Counter-Terrorism (International),16/01/2020,31/12/2020,31/12/2020,13804 +HIDAYATULLAH,,,,,,,هدايت الله,,,00/00/1968,"Arghandab District, Kandahar Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation and Tourism under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0016 (UN Ref):TAi.014 Believed to be in Afghanistan/Pakistan border area. Belongs to Ghilzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,08/03/2001,01/02/2021,6936 +HIDAYATULLAH,,,,,,,,,,00/00/1972,"Band-e-Temur, Maiwand District, Kandahar Province",Afghanistan,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0115 (UN Ref):TAi.147 Member of a Taliban Council that coordinates the collection of zakat (Islamic tax) from Baluchistan Province, Pakistan. Head of Taliban Financial Commission as at mid-2013. Associated with Mullah Mohammed Omar (TAi.004). Served as Omar's principal finance officer and one of his closest advisors. Belongs to Ishaqzai tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,AKA,Low quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11207 +HIDAYATULLAH,Haji,,,,,,,,,00/00/1972,"Band-e-Temur, Maiwand District, Kandahar Province",Afghanistan,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0115 (UN Ref):TAi.147 Member of a Taliban Council that coordinates the collection of zakat (Islamic tax) from Baluchistan Province, Pakistan. Head of Taliban Financial Commission as at mid-2013. Associated with Mullah Mohammed Omar (TAi.004). Served as Omar's principal finance officer and one of his closest advisors. Belongs to Ishaqzai tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,AKA,Low quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11207 +HIDAYATULLAH,Najibullah,Haqqani,,,,Maulavi,نجیب الله حقانی هدايت الله,,,00/00/1971,"Moni village, Shigal District, Kunar Province",Afghanistan,Afghanistan,,,545167,Afghan national ID card (tazkira). Issued in 1974,Deputy Minister of Finance under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0055 (UN Ref):TAi.071 Cousin of Moulavi Noor Jalal. Grandfather’s name is Salam. Taliban member responsible for Laghman Province as of late 2010. Believed to be in Afghanistan/ Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7170 +HIDROBO AMOROSO,Elvis,Eduardo,,,,,,,,04/08/1963,Caracas,Venezuela,Venezuela,,,V-7659695,,(1) Comptroller General and President of Venezuela’s Moral Council (2) Former Vice President of the National Constituent Assembly,,,,,,,,Venezuela,"(UK Sanctions List Ref):VEN0029 (UK Statement of Reasons):Amoroso has repeatedly undermined democracy in Venezuela, undermined the rule of law and violated the right to freedom of speech. By taking up his appointment as Comptroller General in contravention of a ruling by the legitimate National Assembly, and his role in setting up the non-recognised National Constituent Assembly (ANC), Amoroso has seriously undermined the democratic process, constitution, and democratic institutions in Venezuela. Additionally, while Second Vice President of the ANC, he contributed to the political persecution of opposition politicians Freddy Guevara and Juan Pablo Guanipa, further undermining democracy. (Gender):Male",Individual,Primary name variation,,Venezuela,30/06/2020,31/12/2020,02/08/2022,13844 +HIGHER INSTITUTE FOR APPLIED SCIENCES AND TECHNOLOGY (HIAST),,,,,,,المعهد العالي للعلوم التطبيقية والتكنولوجيا,,,,,,,,,,,,,,,PO Box 31983,Barzeh District,Damascus,,Syria,"(UK Sanctions List Ref):SYR0307 Research, Sciences, Chemical Weapons (UK Statement of Reasons):Affiliated to and a subsidiary of the Syrian Scientific Studies and Research Centre (SSRC) which is a designated entity involved in the development and proliferation of chemical weapons in Syria. HIAST provides training and support to the SSRC and is therefore also responsible for the repression of the civilian population. (Website):https://hiast.edu.sy/en/contact-us (Type of entity):Government Entity and Higher Institute (Subsidiaries):SSRC, Barzeh Street, PO Box 4470 (Parent company):SSRC, Barzeh Street, PO Box 4470",Entity,Primary name,,Syria,23/07/2014,31/12/2020,13/05/2022,13032 +HIGHER INSTITUTE FOR APPLIED SCIENCES AND TECHNOLOGY (HIAST),,,,,,,المعهد العالي للعلوم التطبيقية والتكنولوجيا,,,,,,,,,,,,,,,,,Location of entity headquarters: Damascus,,,"(UK Sanctions List Ref):SYR0307 Research, Sciences, Chemical Weapons (UK Statement of Reasons):Affiliated to and a subsidiary of the Syrian Scientific Studies and Research Centre (SSRC) which is a designated entity involved in the development and proliferation of chemical weapons in Syria. HIAST provides training and support to the SSRC and is therefore also responsible for the repression of the civilian population. (Website):https://hiast.edu.sy/en/contact-us (Type of entity):Government Entity and Higher Institute (Subsidiaries):SSRC, Barzeh Street, PO Box 4470 (Parent company):SSRC, Barzeh Street, PO Box 4470",Entity,Primary name,,Syria,23/07/2014,31/12/2020,13/05/2022,13032 +HIJAZI,Hassan,,,,,,,,,00/00/1964,Quneitra,Syria,,,,,,Former Minister of Labour,,,,,,,,,"(UK Sanctions List Ref):SYR0082 (UK Statement of Reasons):Former Minister for Labour in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,24/06/2014,31/12/2020,31/12/2020,12990 +HIJAZI,Mohamad,Mahmoud,,,,,,,,,,,,,,,,Minister for Health and Environment in Colonel Qadhafi’s Government,,,,,,,,,(UK Sanctions List Ref):LIB0020 (UK Statement of Reasons):As Minister for Health and Environment in Colonel Qadhafi's Government was associated with Muammar Qadhafi and other involved persons.,Individual,Primary name,,Libya,22/03/2011,31/12/2020,31/12/2020,11700 +HIJAZI,Mohammed,,,,,,,,,00/00/1959,Isfahan,Iran,,,,,,Brigadier General. Commander of Bassij resistance force,,,,,,,,,(UK Sanctions List Ref):INU0203 (UN Ref):IRi.017 [Old Reference # I.47.D.5],Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,08/03/2022,9061 +HIJAZI,Mohammed,,,,,,,,,,Isfahan,Iran,,,,,,Brigadier General. Commander of Bassij resistance force,,,,,,,,,(UK Sanctions List Ref):INU0203 (UN Ref):IRi.017 [Old Reference # I.47.D.5],Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,08/03/2022,9061 +HIJAZI,Raed,M.,,,,,,,,30/12/1968,California,United States,(1) Jordan. (2) United States,,,(1) 548-91-5411 (2) 9681029476,(1) US social security (2) Jordanian,,,,,,,,,,"(UK Sanctions List Ref):AQD0291 (UN Ref):QDi.029 In custody in Jordan since 26 Feb. 2015 for recruitment and support to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Father’s name is Mohammad Hijazi. Mother’s name is Sakina. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1419275",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6974 +HIJAZI,Ri'ad,Muhammad,Hasan,Muhammad,,,رياض محمد حسن محمد الحجازي,,,30/12/1968,California,United States,(1) Jordan. (2) United States,,,(1) 548-91-5411 (2) 9681029476,(1) US social security (2) Jordanian,,,,,,,,,,"(UK Sanctions List Ref):AQD0291 (UN Ref):QDi.029 In custody in Jordan since 26 Feb. 2015 for recruitment and support to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Father’s name is Mohammad Hijazi. Mother’s name is Sakina. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1419275",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6974 +HIJAZI,RAED,MUHAMMAD HASAN,MUHAMMAD,,,,رائد محمد حسن محمد حجازي,,,30/12/1968,California,United States,(1) Jordan. (2) United States,,,(1) 548-91-5411 (2) 9681029476,(1) US social security (2) Jordanian,,,,,,,,,,"(UK Sanctions List Ref):AQD0291 (UN Ref):QDi.029 In custody in Jordan since 26 Feb. 2015 for recruitment and support to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Father’s name is Mohammad Hijazi. Mother’s name is Sakina. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1419275",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6974 +HILAL,al-Hilal,,,,,,,,,00/00/1966,,,,,,,,Vice-Chairman of the Baath Party,,,,,,,,,(UK Sanctions List Ref):SYR0087 (UK Statement of Reasons):Member of the regime affiliated militias known as ‘Kataeb al-Baath’ (The Baath Party militia). Vice-Chairman of the Baath Party. Supports the regime through his role in the recruitment and organisation of the Baath Party militia. (Gender):Male,Individual,AKA,,Syria,28/10/2016,31/12/2020,31/12/2020,13384 +HILAL,Hilal,,,,,,هلال هلال,,,00/00/1966,,,,,,,,Vice-Chairman of the Baath Party,,,,,,,,,(UK Sanctions List Ref):SYR0087 (UK Statement of Reasons):Member of the regime affiliated militias known as ‘Kataeb al-Baath’ (The Baath Party militia). Vice-Chairman of the Baath Party. Supports the regime through his role in the recruitment and organisation of the Baath Party militia. (Gender):Male,Individual,Primary name,,Syria,28/10/2016,31/12/2020,31/12/2020,13384 +HILAL,Musa,,,,,Sheikh,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +HILAL,Musa,,,,,Sheikh,,,,01/01/1964,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +HILAL,Musa,,,,,Sheikh,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kabkabiya,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +HILAL,Musa,,,,,Sheikh,,,,00/00/1959,Kutum,,Sudan,(1) D014433 (2) D009889,(1) Diplomatic Passport. Issued 21 February 2013. Expires 21 February 2015. (2) Diplomatic Passport. Issued on 17 February 2011. Expired on 17 February 2013.,A0680623,Certificate of Nationality,(1) Formerly Member of the National Assembly of Sudan from Al-Waha district (2) Formerly special adviser to the Ministry of Federal Affairs (3) Paramount Chief of the Mahamid Tribe in North Darfur,,,,,,Kutum,,Sudan,(UK Sanctions List Ref):SUD0002 (UN Ref):SDi.002,Individual,AKA,Low quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8836 +HILAL AHMAR SOCIETY INDONESIA (HASI),,,,,,,,,,,,,,,,,,,,,,,,,,Indonesia,"(UK Sanctions List Ref):AQD0048 (UN Ref):QDe.147 Ostensibly humanitarian wing of Jemaah Islamiyah (QDe.092). Operates in Lampung, Jakarta, Semarang, Yogyakarta, Solo, Surabaya and Makassar, Indonesia. Has been recruiting, funding and facilitating travel of foreign terrorist fighters to Syria. Not affiliated with the humanitarian group International Federation of the Red Cross and Red Crescent Societies (IFRC). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5854978",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,21/03/2015,13/03/2015,31/12/2020,13241 +HILEL,Mounir,,,,,,,,,10/05/1983,Ben Guerdane,Tunisia,Tunisia,,,08619445,,,Amria Ben Guerdane,,,,,Medenine,,Tunisia,"(UK Sanctions List Ref):AQD0253 (UN Ref):QDi.386 Foreign terrorist fighter facilitator experienced in establishing and securing travel routes. Deeply involved in providing material support to the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) in North Africa. Assisted foreign terrorist fighters’ travel throughout North Africa and to Syrian Arab Republic to join Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Profession: farm worker. Mother's name: Mbarka Helali. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,14/06/2022,13319 +HILWEH,Adnan,Aboud,,,,,عدنان عبود حلوة,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0004 (UK Statement of Reasons):Holds the rank of Brigadier General of 155 Brigade and 157 Brigade in the Syrian Army in post after May 2011. As the Brigadier General of 155 and 157 Brigade, he is responsible for the violent repression against the civilian population in Syria, including through his responsibility for the deployment and use of missile and chemical weapons attacks in civilian areas in 2013 and involvement in the large scale detentions (Gender):Male",Individual,Primary name,,Syria,28/10/2016,31/12/2020,31/12/2020,13381 +HIRBOD,,,,,,,,,,,,,,,,,,,Flat 2,3 Second Street,Asad Abadi Avenue,,,Tehran,14316,,(UK Sanctions List Ref):INU0067 (UK Statement of Reasons):A company that has procured goods and equipment for UN designated Kalaye Electric Company (KEC) and Iran's proliferation sensitive nuclear activities. (Phone number):+98 2188958350 (Website):www.hirbodco.ir (Email address):info@hirbodco.ir (Type of entity):(1) Procurement (2) Importer,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11552 +HIRBOD CO,,,,,,,,,,,,,,,,,,,Flat 2,3 Second Street,Asad Abadi Avenue,,,Tehran,14316,,(UK Sanctions List Ref):INU0067 (UK Statement of Reasons):A company that has procured goods and equipment for UN designated Kalaye Electric Company (KEC) and Iran's proliferation sensitive nuclear activities. (Phone number):+98 2188958350 (Website):www.hirbodco.ir (Email address):info@hirbodco.ir (Type of entity):(1) Procurement (2) Importer,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11552 +HIRBOD COMPANY,,,,,,,,,,,,,,,,,,,Flat 2,3 Second Street,Asad Abadi Avenue,,,Tehran,14316,,(UK Sanctions List Ref):INU0067 (UK Statement of Reasons):A company that has procured goods and equipment for UN designated Kalaye Electric Company (KEC) and Iran's proliferation sensitive nuclear activities. (Phone number):+98 2188958350 (Website):www.hirbodco.ir (Email address):info@hirbodco.ir (Type of entity):(1) Procurement (2) Importer,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11552 +HISAT,,,,,,,,,,,,,,,,,,,,,,PO Box 31983,Barzeh District,Damascus,,Syria,"(UK Sanctions List Ref):SYR0307 Research, Sciences, Chemical Weapons (UK Statement of Reasons):Affiliated to and a subsidiary of the Syrian Scientific Studies and Research Centre (SSRC) which is a designated entity involved in the development and proliferation of chemical weapons in Syria. HIAST provides training and support to the SSRC and is therefore also responsible for the repression of the civilian population. (Website):https://hiast.edu.sy/en/contact-us (Type of entity):Government Entity and Higher Institute (Subsidiaries):SSRC, Barzeh Street, PO Box 4470 (Parent company):SSRC, Barzeh Street, PO Box 4470",Entity,AKA,,Syria,23/07/2014,31/12/2020,13/05/2022,13032 +HISAT,,,,,,,,,,,,,,,,,,,,,,,,Location of entity headquarters: Damascus,,,"(UK Sanctions List Ref):SYR0307 Research, Sciences, Chemical Weapons (UK Statement of Reasons):Affiliated to and a subsidiary of the Syrian Scientific Studies and Research Centre (SSRC) which is a designated entity involved in the development and proliferation of chemical weapons in Syria. HIAST provides training and support to the SSRC and is therefore also responsible for the repression of the civilian population. (Website):https://hiast.edu.sy/en/contact-us (Type of entity):Government Entity and Higher Institute (Subsidiaries):SSRC, Barzeh Street, PO Box 4470 (Parent company):SSRC, Barzeh Street, PO Box 4470",Entity,AKA,,Syria,23/07/2014,31/12/2020,13/05/2022,13032 +HISB'UL SHABAAB,,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +HISSEIN,Abdoulaye,,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Nana-Grebizi,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +HISSEIN,Abdoulaye,,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,KM5,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +HISSEIN,Abdoulaye,,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndjari,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +HISSEIN,Abdoulaye,,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +HISSEIN,Abdoulaye,,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndjari,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +HISSEIN,Abdoulaye,,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +HISSEIN,Abdoulaye,,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,KM5,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +HISSEIN,Abdoulaye,,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Nana-Grebizi,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +HISSENE,ABDOULAYE,,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Nana-Grebizi,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +HISSENE,ABDOULAYE,,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,KM5,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +HISSENE,ABDOULAYE,,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndjari,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +HISSENE,ABDOULAYE,,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +HISSENE,ABDOULAYE,,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndjari,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +HISSENE,ABDOULAYE,,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +HISSENE,ABDOULAYE,,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,KM5,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +HISSENE,ABDOULAYE,,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Nana-Grebizi,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +HIZBALLAH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0032 Includes Hizballah Military Wing (UK Statement of Reasons):Hizballah has claimed responsibility for a number of terrorist attacks since the 1980s. It supports terrorism in Iraq and the Occupied Palestinian Territories. It also frequently incites violence against Israel and is behind a large number of rocket attacks into Israel.,Entity,Primary name,,Counter-Terrorism (International),16/01/2020,31/12/2020,31/12/2020,13804 +HIZBUL MUJAHIDEEN (HM),,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0033 (UK Statement of Reasons):Hizbul Mujahideen has claimed responsibility for several terrorist attacks in Jammu and Kashmir, including attacks on Indian security forces and politicians.",Entity,Primary name,,Counter-Terrorism (International),07/12/2005,31/12/2020,31/12/2020,8803 +HIZBUL SHABAAB,,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +HIZBULLAH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0032 Includes Hizballah Military Wing (UK Statement of Reasons):Hizballah has claimed responsibility for a number of terrorist attacks since the 1980s. It supports terrorism in Iraq and the Occupied Palestinian Territories. It also frequently incites violence against Israel and is behind a large number of rocket attacks into Israel.,Entity,AKA,,Counter-Terrorism (International),16/01/2020,31/12/2020,31/12/2020,13804 +HIZRAT,,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +HIZRAT,,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +HIZRAT,,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +HLADKAYA,Liudmila,,,,,,,,,30/06/1983,,,Belarus,,,,,"Journalist, Belarus Segodnya (Belarus Today)",Belarus Segodnya,10a Khmelnitskogo St,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0116 (UK Statement of Reasons):Lyudmila GLADKAYA is a propagandist of the Lukashenko regime. She is a journalist publishing in “Belarus Segodnya"", the official (state-owned) newspaper of the Presidential Administration. Her published opinions/articles and broadcasts are one of the main mouthpieces of state propaganda belittling and discrediting independent journalists and opposition supporters who seek to demonstrate evidence of serious human rights violations committed by the regime. There are recorded instances where she has interrogated persons and her journalism is specifically endorsed by the Lukashenko regime. GLADKAYA therefore is or has been involved in repressing civil society and democratic opposition in Belarus, and for serious human rights violations in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,02/12/2021,14159 +HLADKAYA,Lyudmila,,,,,,,,,30/06/1983,,,Belarus,,,,,"Journalist, Belarus Segodnya (Belarus Today)",Belarus Segodnya,10a Khmelnitskogo St,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0116 (UK Statement of Reasons):Lyudmila GLADKAYA is a propagandist of the Lukashenko regime. She is a journalist publishing in “Belarus Segodnya"", the official (state-owned) newspaper of the Presidential Administration. Her published opinions/articles and broadcasts are one of the main mouthpieces of state propaganda belittling and discrediting independent journalists and opposition supporters who seek to demonstrate evidence of serious human rights violations committed by the regime. There are recorded instances where she has interrogated persons and her journalism is specifically endorsed by the Lukashenko regime. GLADKAYA therefore is or has been involved in repressing civil society and democratic opposition in Belarus, and for serious human rights violations in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,02/12/2021,14159 +HLAING,Khin,,,,,Brigadier General,,,,02/05/1968,,,Myanmar,,,,,(1) Commander of the Northeastern Command of the Myanmar Armed Forces (Tatmadaw) (2) Former Leader of the 99th Light Infantry Division (LID) of the Myanmar Military (Tatmadaw),,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0011 (UK Statement of Reasons):Brigadier General Khin Hlaing, Commander of the Northeastern Command of the Myanmar Army. Responsible for serious human rights violations committed against the Rohingya population in Rakhine state, carried out by the 99th Light Infantry Division during his time as commander. These include unlawful killings, forced detainment, repression of the civilian population and systematic burning of Rohingya houses and buildings. (Gender):Male",Individual,Primary name,,Myanmar,24/12/2018,29/04/2021,11/11/2022,13735 +HLAING,Than,,,,,,,,,,,Myanmar,Myanmar,,,,,(1) Deputy Minister for Home Affairs (2) Chief of Police,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0016 (UK Statement of Reasons):Following the coup of 1 February 2021, during which Myanmar’s military seized power from civilian leaders, Than Hlaing was appointed Deputy Minister for Home Affairs and Chief of the Myanmar Police Force. The police in Myanmar have committed serious human rights violations since 1 February 2021 including killing a civilian protestor against the coup, preventing and disbanding assemblies, the arbitrary arrest and detention of opposition leaders and supporters, and preventing freedom of expression by opponents of the coup. As Deputy Minister for Home Affairs and Chief of the Myanmar Police Force we have strong reason to suspect that Lt. General Than Hlaing has command responsibility for these serious human rights violations. (Gender):Male",Individual,Primary name,,Myanmar,18/02/2021,29/04/2021,11/11/2022,14057 +HLAING,Min,Aung,,,,,,,,03/07/1956,Tavoy,Myanmar,Myanmar,,,12/SAKHANA(N)020199,NRC number,Commander-in-Chief of the Myanmar Armed Forces (Tatmadaw),,,,,,,,Myanmar,"(UK Sanctions List Ref):GHR0046 and MYA0018 Listed under the Global Human Rights and Myanmar sanctions regimes. (UK Statement of Reasons):Senior General Min Aung Hlaing is Commander in Chief of the Myanmar Armed Forces (Tatmadaw). In this role, he was responsible for military operations carried out in Rakhine State in 2017 and in 2019 and is responsible for atrocities and serious human rights violations committed against the Rohingya population in Rakhine state by the Tatmadaw. These include unlawful killings, including through systematic burning of Rohingya houses and buildings, massacre, torture, forced labour, systematic rape and other forms of targeted sexual violence, and enforced labour. On 1 February 2021 the Myanmar military (Tatmadaw), led by Commander-in-Chief Min Aung Hlaing, staged a coup in Myanmar. As part of the coup, Vice-President Swe declared a state of emergency on 1 February transferring the legislative, executive and judicial powers of the state to Min Aung Hlaing. On 2 February, the Tatmadaw established the State Administration Council (SAC), which is chaired by Hlaing, in order to run the functions of the state. The SAC has adopted legislation violating the right to privacy and removing protection from arbitrary detention in Myanmar. The Myanmar security forces have committed serious human rights violations since 1 February 2021; killing a protestor, restricting freedom of assembly and of expression including through restricting internet access and of assembly, arbitrary arrest and detention of opposition leaders and opponents of the coup, and infringing. As the Commander-in-Chief of the Tatmadaw, Min Aung Hlaing has overall control of the Myanmar security forces and therefore has command responsibility for these violations. As a member of the SAC Hlaing shares responsibility with its other members for the exercise of state functions since 2 February 2021, including legislation violating human rights, and for the serious human rights violations committed by the Myanmar security forces. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,11/11/2022,13897 +HLAING,Min,Aung,,,,,,,,03/07/1956,Tavoy,Myanmar,Myanmar,,,12/SAKHANA(N)020199,NRC number,Commander-in-Chief of the Myanmar Armed Forces (Tatmadaw),,,,,,,,Myanmar,"(UK Sanctions List Ref):GHR0046 and MYA0018 Listed under the Global Human Rights and Myanmar sanctions regimes. (UK Statement of Reasons):Senior General Min Aung Hlaing is Commander in Chief of the Myanmar Armed Forces (Tatmadaw). In this role, he was responsible for military operations carried out in Rakhine State in 2017 and in 2019 and is responsible for atrocities and serious human rights violations committed against the Rohingya population in Rakhine state by the Tatmadaw. These include unlawful killings, including through systematic burning of Rohingya houses and buildings, massacre, torture, forced labour, systematic rape and other forms of targeted sexual violence, and enforced labour. On 1 February 2021 the Myanmar military (Tatmadaw), led by Commander-in-Chief Min Aung Hlaing, staged a coup in Myanmar. As part of the coup, Vice-President Swe declared a state of emergency on 1 February transferring the legislative, executive and judicial powers of the state to Min Aung Hlaing. On 2 February, the Tatmadaw established the State Administration Council (SAC), which is chaired by Hlaing, in order to run the functions of the state. The SAC has adopted legislation violating the right to privacy and removing protection from arbitrary detention in Myanmar. The Myanmar security forces have committed serious human rights violations since 1 February 2021; killing a protestor, restricting freedom of assembly and of expression including through restricting internet access and of assembly, arbitrary arrest and detention of opposition leaders and opponents of the coup, and infringing. As the Commander-in-Chief of the Tatmadaw, Min Aung Hlaing has overall control of the Myanmar security forces and therefore has command responsibility for these violations. As a member of the SAC Hlaing shares responsibility with its other members for the exercise of state functions since 2 February 2021, including legislation violating human rights, and for the serious human rights violations committed by the Myanmar security forces. (Gender):Male",Individual,Primary name,,Myanmar,25/02/2021,29/04/2021,11/11/2022,13897 +HMEISHO,Emad,,,,,,,,,,,,,,,,,Vice-President of the Syrian Council of Iron and Steel,Hamsho Building,31 Baghdad Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0038 (UK Statement of Reasons):Occupies a senior management position in Hamsho Trading. As a result of his senior position in Hamsho Trading, a subsidiary of Hamsho International, which has been designated, he provides support to the Syrian regime. This means he is associated with a designated entity, Hamsho International. He is also a member of the Syrian Council of Iron and Steel alongside other designated regime businessmen. He is also associated with the Assad regime. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13233 +HMEISHO,Imad,,,,,,,,,,,,,,,,,Vice-President of the Syrian Council of Iron and Steel,Hamsho Building,31 Baghdad Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0038 (UK Statement of Reasons):Occupies a senior management position in Hamsho Trading. As a result of his senior position in Hamsho Trading, a subsidiary of Hamsho International, which has been designated, he provides support to the Syrian regime. This means he is associated with a designated entity, Hamsho International. He is also a member of the Syrian Council of Iron and Steel alongside other designated regime businessmen. He is also associated with the Assad regime. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13233 +HMISHO,Emad,,,,,,,,,,,,,,,,,Vice-President of the Syrian Council of Iron and Steel,Hamsho Building,31 Baghdad Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0038 (UK Statement of Reasons):Occupies a senior management position in Hamsho Trading. As a result of his senior position in Hamsho Trading, a subsidiary of Hamsho International, which has been designated, he provides support to the Syrian regime. This means he is associated with a designated entity, Hamsho International. He is also a member of the Syrian Council of Iron and Steel alongside other designated regime businessmen. He is also associated with the Assad regime. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13233 +HMISHO,Imad,,,,,,,,,,,,,,,,,Vice-President of the Syrian Council of Iron and Steel,Hamsho Building,31 Baghdad Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0038 (UK Statement of Reasons):Occupies a senior management position in Hamsho Trading. As a result of his senior position in Hamsho Trading, a subsidiary of Hamsho International, which has been designated, he provides support to the Syrian regime. This means he is associated with a designated entity, Hamsho International. He is also a member of the Syrian Council of Iron and Steel alongside other designated regime businessmen. He is also associated with the Assad regime. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13233 +HNEIDI,Saeed,Maazi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Saeed,Ma'dhi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Saeed,Ma'thi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Saeed,Ma'zi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Saeed,Mu'dhi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Saeed,Mu'zi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'eed,Maazi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'eed,Ma'dhi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'eed,Ma'thi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'eed,Ma'zi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'eed,Mu'dhi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'eed,Mu'zi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'id,Maazi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'id,Ma'dhi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'id,Ma'thi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'id,Ma'zi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'id,Mu'dhi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'id,Mu'zi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'iid,Maazi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'iid,Ma'dhi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'iid,Ma'thi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'iid,Ma'zi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'iid,Mu'dhi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HNEIDI,Sa'iid,Mu'zi,,,,,,,,,,,,,,,,Former Minister of Oil and Mineral Resources,,,,,,,,,(UK Sanctions List Ref):SYR0210 (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12777 +HO-CHIN,Yun,,,,,,,,,13/10/1944,,,North Korea,,,,,Director of Namchongang Trading Corporation,,,,,,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0278 (UN Ref):KPi.001 Director of Namchongang Trading Corporation; oversees the import of items needed for the uranium enrichment program.,Individual,AKA,Good quality,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10914 +HOCINE,,,,,,,,,,00/00/1978,,Mali,Mali,,,,,,,,,,,,,Mali,(UK Sanctions List Ref):AQD0240 (UN Ref):QDi.319 Member of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5720103,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,24/10/2013,31/12/2020,12886 +HOJATI,MOHSEN,,,,,,,,,28/09/1955,,,Iran,G4506013,,,,"Head of Fajr Industrial Group, which is designated under resolution 1737 (2006) for its role in the ballistic missile programme.",,,,,,,,,"(UK Sanctions List Ref):INU0208 (UN Ref):IRi.018 [Old Reference # I.47.C.5] (UK Statement of Reasons):As Head of Fajr Industrial Group, Mohsen HOJATI is or has been involved in a relevant nuclear activity and is a member of, or associated with, a person who has been so involved for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,31/12/2020,9053 +HOJATI,MOHSEN,,,,,,,,,28/09/1955,,,Iran,G4506013,,,,"Head of Fajr Industrial Group, which is designated under resolution 1737 (2006) for its role in the ballistic missile programme.",,,,,,,,,"(UK Sanctions List Ref):INU0208 (UN Ref):IRi.018 [Old Reference # I.47.C.5] (UK Statement of Reasons):As Head of Fajr Industrial Group, Mohsen HOJATI is or has been involved in a relevant nuclear activity and is a member of, or associated with, a person who has been so involved for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,31/12/2020,9053 +HO-JIN,YUN,,,,,,,,,13/10/1944,,,North Korea,,,,,Director of Namchongang Trading Corporation,,,,,,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0278 (UN Ref):KPi.001 Director of Namchongang Trading Corporation; oversees the import of items needed for the uranium enrichment program.,Individual,Primary name,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10914 +HOLUB,Igor,Vladimirovich,,,,,,,,19/11/1967,"Chernigov, Chernigovskaya oblast",Ukraine,Belarus,,,,,Commander of the Air Force and Air Defence Forces of the Armed Forces of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0097 (UK Statement of Reasons):In his position as Commander of the Air Force and Air Defence of the Armed Forces of the Republic of Belarus, Igor Golub is responsible for the order dispatching military aircraft to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In so doing, Golub acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian aviation authorities. This resulted in the forced redirection of flight FR4978, the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega. This politically-motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression against civil society and democratic opposition in Belarus. Igor Golub is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14114 +HOLUB,Ihar,Uladzimiravich,,,,,ГОЛУБ Ігар Уладзіміравіч,,,19/11/1967,"Chernigov, Chernigovskaya oblast",Ukraine,Belarus,,,,,Commander of the Air Force and Air Defence Forces of the Armed Forces of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0097 (UK Statement of Reasons):In his position as Commander of the Air Force and Air Defence of the Armed Forces of the Republic of Belarus, Igor Golub is responsible for the order dispatching military aircraft to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In so doing, Golub acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian aviation authorities. This resulted in the forced redirection of flight FR4978, the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega. This politically-motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression against civil society and democratic opposition in Belarus. Igor Golub is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14114 +HONG,Sun,Mu,,,,,,,,01/01/1942,,,North Korea,,,,,"Deputy Director, Munitions Industry Department",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0011 (UK Statement of Reasons):Deputy Director of the Munitions Industry Department (MID). In charge of the development of programmes concerning conventional arms and missiles, including ballistic missiles. One of the main persons responsible for the industrial development programmes for nuclear arms. As such, responsible for the DPRK’s nuclear arms-related, ballistic missile-related, or other weapons of mass destruction-related programmes.Witnessed the launch of the Hwasong-15 intercontinental ballistic missile on 28 November 2017. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13358 +HONG,Sun,Mu,,,,,,,,31/12/1941,,,North Korea,,,,,"Deputy Director, Munitions Industry Department",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0011 (UK Statement of Reasons):Deputy Director of the Munitions Industry Department (MID). In charge of the development of programmes concerning conventional arms and missiles, including ballistic missiles. One of the main persons responsible for the industrial development programmes for nuclear arms. As such, responsible for the DPRK’s nuclear arms-related, ballistic missile-related, or other weapons of mass destruction-related programmes.Witnessed the launch of the Hwasong-15 intercontinental ballistic missile on 28 November 2017. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13358 +HONG,Sung,Mu,,,,,,,,01/01/1942,,,North Korea,,,,,"Deputy Director, Munitions Industry Department",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0011 (UK Statement of Reasons):Deputy Director of the Munitions Industry Department (MID). In charge of the development of programmes concerning conventional arms and missiles, including ballistic missiles. One of the main persons responsible for the industrial development programmes for nuclear arms. As such, responsible for the DPRK’s nuclear arms-related, ballistic missile-related, or other weapons of mass destruction-related programmes.Witnessed the launch of the Hwasong-15 intercontinental ballistic missile on 28 November 2017. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13358 +HONG,Sung,Mu,,,,,,,,31/12/1941,,,North Korea,,,,,"Deputy Director, Munitions Industry Department",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0011 (UK Statement of Reasons):Deputy Director of the Munitions Industry Department (MID). In charge of the development of programmes concerning conventional arms and missiles, including ballistic missiles. One of the main persons responsible for the industrial development programmes for nuclear arms. As such, responsible for the DPRK’s nuclear arms-related, ballistic missile-related, or other weapons of mass destruction-related programmes.Witnessed the launch of the Hwasong-15 intercontinental ballistic missile on 28 November 2017. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13358 +HONG,Sung-Mu,,,,,,,,,01/01/1942,,,North Korea,,,,,"Deputy Director, Munitions Industry Department",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0011 (UK Statement of Reasons):Deputy Director of the Munitions Industry Department (MID). In charge of the development of programmes concerning conventional arms and missiles, including ballistic missiles. One of the main persons responsible for the industrial development programmes for nuclear arms. As such, responsible for the DPRK’s nuclear arms-related, ballistic missile-related, or other weapons of mass destruction-related programmes.Witnessed the launch of the Hwasong-15 intercontinental ballistic missile on 28 November 2017. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13358 +HONG,Sung-Mu,,,,,,,,,31/12/1941,,,North Korea,,,,,"Deputy Director, Munitions Industry Department",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0011 (UK Statement of Reasons):Deputy Director of the Munitions Industry Department (MID). In charge of the development of programmes concerning conventional arms and missiles, including ballistic missiles. One of the main persons responsible for the industrial development programmes for nuclear arms. As such, responsible for the DPRK’s nuclear arms-related, ballistic missile-related, or other weapons of mass destruction-related programmes.Witnessed the launch of the Hwasong-15 intercontinental ballistic missile on 28 November 2017. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13358 +HONG,Yong,Chil,,,,Deputy Director,,,,,,,North Korea,,,,,Deputy Director of the Munitions Industry Department (MID),,,,,,,,,"(UK Sanctions List Ref):DPR0012 (UK Statement of Reasons):Deputy Director of the Munitions Industry Department (MID). MID is responsible for overseeing the development of the DPRK’s ballistic missiles, including the Taepo Dong-2, weapons production and R&D programmes. Ex-Vice Director of the Workers’ Party of Korea Central Committee.   (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,03/03/2022,13372 +HONG KONG ELECTRONICS,,,,,,,,,,,,,,,,,,,,,,,Sanaee Street,Kish Island,,Iran,"(UK Sanctions List Ref):DPR0139 (UN Ref):KPe.005 Owned or controlled by, or acts or purports to act for or on behalf of Tanchon Commercial Bank and KOMID. Hong Kong Electronics has transferred millions of dollars of proliferation-related funds on behalf of Tanchon Commercial Bank and KOMID (both designated by the Committee in April 2009) since 2007. Hong Kong Electronics has facilitated the movement of money from Iran to the DPRK on behalf of KOMID.",Entity,Primary name,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,31/12/2020,10910 +HONG KONG ELECTRONICS KISH CO.,,,,,,,,,,,,,,,,,,,,,,,Sanaee Street,Kish Island,,Iran,"(UK Sanctions List Ref):DPR0139 (UN Ref):KPe.005 Owned or controlled by, or acts or purports to act for or on behalf of Tanchon Commercial Bank and KOMID. Hong Kong Electronics has transferred millions of dollars of proliferation-related funds on behalf of Tanchon Commercial Bank and KOMID (both designated by the Committee in April 2009) since 2007. Hong Kong Electronics has facilitated the movement of money from Iran to the DPRK on behalf of KOMID.",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,31/12/2020,10910 +HONG-SOP,RI,,,,,,,,,00/00/1940,,,North Korea,,,,,"(1) Former director, Yongbyon Nuclear Research Center (2) Head of Nuclear Weapons Institute",,,,,,Pyongyang,,Democratic People's Republic of Korea,"(UK Sanctions List Ref):DPR0262 (UN Ref):KPi.004 Former director, Yongbyon Nuclear Research Center, oversaw three core facilities that assist in the production of weapons-grade plutonium: the Fuel Fabrication Facility, the Nuclear Reactor, and the Reprocessing Plant.",Individual,Primary name,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10917 +HOSEYNITASH,Ali,,,,,(1) Brigadier General (2) Doctor,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0004 (UK Statement of Reasons):Member of the IRGC. Member of the Supreme National Security Council and involved in formulating policy on nuclear issues. Former Deputy Minister of Defence (Gender):Male,Individual,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10637 +HOSNI,Wafiqa,,,,,,,,,00/00/1952,Damascus,Syria,Syria,,,,,"State Minister, appointed in July 2016.",,,,,,,,,"(UK Sanctions List Ref):SYR0235 (UK Statement of Reasons):State Minister. Appointed in July 2016. As Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Female",Individual,Primary name,,Syria,14/11/2016,31/12/2020,31/12/2020,13411 +HOSSEINI,Mohammad,,,,,Doctor,,,,00/00/1961,"Rafsanjan, Kerman",Iran,,,,,,(1) Advisor to Former President and current member of the Expediency Council (2) Vice President for Parliamentary Affairs,,,,,,,,,"(UK Sanctions List Ref):IHR0054 (UK Statement of Reasons):Advisor to Former President Mahmoud Ahmadinejad and spokesperson for YEKTA hardline political faction. Minister of Culture and Islamic Guidance (2009-2013). Ex-IRGC, he was complicit in the repression of journalists. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12201 +HOSSEINI,Sardar,Seyed,Sadegh,,,,سردار سید صادق حسینی,,Persian,,,,Iran,,,,,IRGC Commander Kurdistan Province,,,,,,,,,"(UK Sanctions List Ref):IHR0108 (UK Statement of Reasons):Sardar Seyed Sadegh HOSSEINI is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and the right to freedom of expression and peaceful assembly in Iran through his role as senior commander of the Islamic Revolutionary Guard Corps (IRGC) in Kurdistan and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15628 +HOSSEINI,Sayyed,Mohammad,,,,,,,,00/00/1961,"Rafsanjan, Kerman",Iran,,,,,,(1) Advisor to Former President and current member of the Expediency Council (2) Vice President for Parliamentary Affairs,,,,,,,,,"(UK Sanctions List Ref):IHR0054 (UK Statement of Reasons):Advisor to Former President Mahmoud Ahmadinejad and spokesperson for YEKTA hardline political faction. Minister of Culture and Islamic Guidance (2009-2013). Ex-IRGC, he was complicit in the repression of journalists. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12201 +HOSSEINI,Sayyid,,,,,,,,,00/00/1961,"Rafsanjan, Kerman",Iran,,,,,,(1) Advisor to Former President and current member of the Expediency Council (2) Vice President for Parliamentary Affairs,,,,,,,,,"(UK Sanctions List Ref):IHR0054 (UK Statement of Reasons):Advisor to Former President Mahmoud Ahmadinejad and spokesperson for YEKTA hardline political faction. Minister of Culture and Islamic Guidance (2009-2013). Ex-IRGC, he was complicit in the repression of journalists. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12201 +HOSSEINI,Seyed,,,,,,,,,00/00/1961,"Rafsanjan, Kerman",Iran,,,,,,(1) Advisor to Former President and current member of the Expediency Council (2) Vice President for Parliamentary Affairs,,,,,,,,,"(UK Sanctions List Ref):IHR0054 (UK Statement of Reasons):Advisor to Former President Mahmoud Ahmadinejad and spokesperson for YEKTA hardline political faction. Minister of Culture and Islamic Guidance (2009-2013). Ex-IRGC, he was complicit in the repression of journalists. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12201 +HOSSEINI,Seyyed,,,,,,,,,00/00/1961,"Rafsanjan, Kerman",Iran,,,,,,(1) Advisor to Former President and current member of the Expediency Council (2) Vice President for Parliamentary Affairs,,,,,,,,,"(UK Sanctions List Ref):IHR0054 (UK Statement of Reasons):Advisor to Former President Mahmoud Ahmadinejad and spokesperson for YEKTA hardline political faction. Minister of Culture and Islamic Guidance (2009-2013). Ex-IRGC, he was complicit in the repression of journalists. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12201 +HOSSEINI NEJAD TRADING CO.,,,,,,,,,,,,,,,,,,,,,,,West Lavasani,Tehran,9821,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +HOSSEINI NEJAD TRADING CO.,,,,,,,,,,,,,,,,,,,Sa'adat Abaad,Shahrdari Sq. Sarv Building,9th Floor,Unit 5,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +HOSSEINI NEJAD TRADING CO.,,,,,,,,,,,,,,,,,,,No.17,Balooch Alley,Vaezi St,Shariati Ave.,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +HOSSEINI TASH,Ali,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0004 (UK Statement of Reasons):Member of the IRGC. Member of the Supreme National Security Council and involved in formulating policy on nuclear issues. Former Deputy Minister of Defence (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10637 +HOSSEINI TASH,Seyyed,Ali,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0004 (UK Statement of Reasons):Member of the IRGC. Member of the Supreme National Security Council and involved in formulating policy on nuclear issues. Former Deputy Minister of Defence (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10637 +HOSSEYNI,Sayyed,Mohammad,,,,,,,,00/00/1961,"Rafsanjan, Kerman",Iran,,,,,,(1) Advisor to Former President and current member of the Expediency Council (2) Vice President for Parliamentary Affairs,,,,,,,,,"(UK Sanctions List Ref):IHR0054 (UK Statement of Reasons):Advisor to Former President Mahmoud Ahmadinejad and spokesperson for YEKTA hardline political faction. Minister of Culture and Islamic Guidance (2009-2013). Ex-IRGC, he was complicit in the repression of journalists. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12201 +HOSSEYNI,Sayyid,,,,,,,,,00/00/1961,"Rafsanjan, Kerman",Iran,,,,,,(1) Advisor to Former President and current member of the Expediency Council (2) Vice President for Parliamentary Affairs,,,,,,,,,"(UK Sanctions List Ref):IHR0054 (UK Statement of Reasons):Advisor to Former President Mahmoud Ahmadinejad and spokesperson for YEKTA hardline political faction. Minister of Culture and Islamic Guidance (2009-2013). Ex-IRGC, he was complicit in the repression of journalists. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12201 +HOSSEYNI,Seyed,,,,,,,,,00/00/1961,"Rafsanjan, Kerman",Iran,,,,,,(1) Advisor to Former President and current member of the Expediency Council (2) Vice President for Parliamentary Affairs,,,,,,,,,"(UK Sanctions List Ref):IHR0054 (UK Statement of Reasons):Advisor to Former President Mahmoud Ahmadinejad and spokesperson for YEKTA hardline political faction. Minister of Culture and Islamic Guidance (2009-2013). Ex-IRGC, he was complicit in the repression of journalists. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12201 +HOSSEYNI,Seyyed,,,,,,,,,00/00/1961,"Rafsanjan, Kerman",Iran,,,,,,(1) Advisor to Former President and current member of the Expediency Council (2) Vice President for Parliamentary Affairs,,,,,,,,,"(UK Sanctions List Ref):IHR0054 (UK Statement of Reasons):Advisor to Former President Mahmoud Ahmadinejad and spokesperson for YEKTA hardline political faction. Minister of Culture and Islamic Guidance (2009-2013). Ex-IRGC, he was complicit in the repression of journalists. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12201 +HOTTAK,ABDUL RAHMAN,AHMAD,,,,Maulavi,عبدالرحمان احمد هوتک,,,00/00/1957,Ghazni Province,Afghanistan,Afghanistan,,,,,(1) Deputy (Cultural) Minister of Information and Culture under the Taliban regime. (2) Head of Consular Department of Ministry of Foreign Affairs under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0041 (UN Ref):TAi.049 Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7187 +HOUEJ,Mohamad,Ali,,,,,,,,00/00/1949,Al-Azizia (near Tripoli),Libya,,,,,,,,,,,,,,,"(UK Sanctions List Ref):LIB0021 (UK Statement of Reasons):As Minister for Industry, Economy and Trade in Colonel Qadhafi's Government, associated with Muammar Qadhafi, an involved person. (Gender):Male",Individual,Primary name,,Libya,22/03/2011,31/12/2020,31/12/2020,11702 +HOUKA,Houka,,,,,,,,,01/01/1962,"Ariaw, Tombouctou region",Mali,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):MAL0005 (UN Ref):MLi.005 Houka Houka Ag Alhousseini was appointed by Iyad Ag Ghaly (QDi.316) as the Cadi of Timbuktu in April 2012 after the establishment of the jihadist caliphate in northern Mali. Houka Houka used to work closely with the Hesbah, the Islamic police headed by Ahmad Al Faqi Al Mahdi, jailed at the Detention Centre of the International Criminal Court in The Hague since September 2016. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,Mali,20/12/2019,10/07/2019,31/12/2020,13800 +HOUKA,Houka,,,,,,,,,01/01/1963,"Ariaw, Tombouctou region",Mali,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):MAL0005 (UN Ref):MLi.005 Houka Houka Ag Alhousseini was appointed by Iyad Ag Ghaly (QDi.316) as the Cadi of Timbuktu in April 2012 after the establishment of the jihadist caliphate in northern Mali. Houka Houka used to work closely with the Hesbah, the Islamic police headed by Ahmad Al Faqi Al Mahdi, jailed at the Detention Centre of the International Criminal Court in The Hague since September 2016. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,Mali,20/12/2019,10/07/2019,31/12/2020,13800 +HOUKA,Houka,,,,,,,,,01/01/1964,"Ariaw, Tombouctou region",Mali,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):MAL0005 (UN Ref):MLi.005 Houka Houka Ag Alhousseini was appointed by Iyad Ag Ghaly (QDi.316) as the Cadi of Timbuktu in April 2012 after the establishment of the jihadist caliphate in northern Mali. Houka Houka used to work closely with the Hesbah, the Islamic police headed by Ahmad Al Faqi Al Mahdi, jailed at the Detention Centre of the International Criminal Court in The Hague since September 2016. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,Mali,20/12/2019,10/07/2019,31/12/2020,13800 +HOUSAM,,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,AKA,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +HOUSSAM,,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,AKA,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +HTC,,,,,,,,,,,,,,,,,,,No. 27 Shahamat Ave.,Vallie asr Square.,,,,Tehran (HESA Tehran Office),15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HTC,,,,,,,,,,,,,,,,,,,P.O. Box 14155 5568,No. 27 Ahahamat Ave.,Vallie Asr Square,,,Tehran,15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HTC,,,,,,,,,,,,,,,,,,,P.O. Box 8140,No. 107 Sepahbod Gharany Ave.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HTC,,,,,,,,,,,,,,,,,,,P.O. Box 83145 311,28 km Esfahan Tehran Freeway,Shain Shahr,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HTC,,,,,,,,,,,,,,,,,,,P.O. Box81465 935,,,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HTC,,,,,,,,,,,,,,,,,,,Shahih Shar Industrial Zone,,,,,Isfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +HTOO GROUP OF COMPANIES,,,,,,,,,,,,,,,,,,,No 5 Pyay Road,,,,Hlaing Township,Yangon,,Myanmar,"(UK Sanctions List Ref):MYA0029 (UK Statement of Reasons):The Htoo Group of Companies is owned or controlled directly or indirectly by U Tay Za, who is an involved person. Htoo Group of Companies contributed funds to the Tatmadaw in 2017, at a fundraising event for the Rakhine clearance operations held by Commander in Chief, Min Aung Hlaing. There are reasonable grounds to suspect that these funds contributed to serious human rights violations and ethnic cleansing against the Rohingya. Further and/or additionally, Myanmar Avia Export Ltd, a subsidiary of Htoo Group of Companies has connections to the Myanmar military, and has been responsible for brokering aircraft deals and arms with Russia, which, could have been used in serious human rights violations, including killings, arbitrary detention and torture in the Rakhine state and during the 2021 military coup. (Phone number):(1) +95 1 500344 (2) +95 1 500355 (Email address):info@htoo.com (Type of entity):Private Company (Parent company):Htoo Group of Companies",Entity,Primary name,,Myanmar,02/09/2021,02/09/2021,11/11/2022,14140 +HTUN AUNG,,,,,,,,,,,,,Myanmar,,,,,General,,,,,,,,,"(UK Sanctions List Ref):MYA0040 (UK Statement of Reasons):On 1 February 2021 the Myanmar military (Tatmadaw), led by Commander-in-Chief Min Aung Hlaing, staged a coup and transferred powers to the State Administration Council (SAC). The SAC is responsible for undermining democracy and the rule of law in its seizure of power from the democratically elected government. The Myanmar Security Forces, acting under the direction of the SAC and senior Generals, have committed serious human rights violations since 1 February 2021: killing protestors, restricting freedom of assembly and expression including through restricting internet access, arbitrary arrest and detention of opposition leaders and opponents of the coup. The SAC has adopted legislation violating the right to privacy and the right not to be subject to arbitrary detention in Myanmar. As a member of the SAC, Htun Aung shares responsibility with its other members for the actions of the SAC. Further, and/or alternatively, Htun Aung is a senior general in the Myanmar Air Force. He is also associated with Commander in Chief General Min Aung Hlaing who is a designated person under the Myanmar (Sanctions) Regulations 2021 and the Global Human Rights (Sanctions) Regulations 2020 in respect of actions related to the February 2021 coup and serious human rights violations in Rakhine, and elsewhere. Further, and/or alternatively, General Htun Aung is a Director of, and therefore associated with, Myanmar Economic Holdings Public Company Ltd an entity designated under the Global Human Rights (Sanctions) Regulations and owned by the Myanmar military. (Gender):Male",Individual,Primary name,,Myanmar,25/03/2022,25/03/2022,25/03/2022,15046 +HTUT,Soe,,,,,,,,,00/03/1960,,Myanmar,Myanmar,,,,,Minister for Home Affairs and the Minister for the Office of the Union Government,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0015 Lt-Gen Soe Htut graduated from Intake 64 of the Myanmar military’s Officer Training School. Became a regional commander in 2010. (UK Statement of Reasons):Soe Htut was appointed Minister for Home Affairs, on 1 February 2020. He was Home Affairs Minister during the coup, on 1 February, when Tatmadaw security forces (including the police) were directed to detain MPs and civil society figures. . The Minister for Home Affairs is responsible for the Myanmar Police Force, Fire Service and Prison Service. The police in Myanmar have committed serious human rights violations since 1 February 2021 including killing a civilian protesting against the military coup, preventing and disbanding assemblies, the arbitrary arrest and detention of opposition leaders and opponent of the coup, and preventing freedom of expression by opponents of the coup. The Ministry for Home Affairs has as two of its functions State Security and Law and Order. Directing and managing the police force is directly under Soe Htut’s command as Minister for Home Affairs. As such, we have strong reason to suspect that Lt. General Soe Htut has command responsibility for these violations. (Gender):Male",Individual,Primary name,,Myanmar,18/02/2021,29/04/2021,11/11/2022,14056 +HUA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0047 (UN Ref):QDe.130 Was established in Afghanistan in 1980. In 1993, Harakat-ul Jihad Islami merged with Harakat ul-Mujahidin (QDe.008) to form Harakat ul-Ansar. In 1997, Harakat-ul Jihad Islami split from Harakat ul-Ansar and resumed using its former name. Operations are in India, Pakistan and Afghanistan. Banned in Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282215",Entity,FKA,,ISIL (Da'esh) and Al-Qaida,06/09/2010,06/08/2010,31/12/2020,11270 +HUA,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0046 (UN Ref):QDe.008 Associated with Jaish-i-Mohammed (QDe.019), Lashkar i Jhangvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Active in Pakistan and Afghanistan. Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282053",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6987 +HUAXIN SHIPPING HONGKONG LTD,,,,,,,華信船務(香港)有限公司,,,,,,,,,,,,,Room 2105,Trend Centre,29-31 Cheung Lee Street,Chai Wan,Hong Kong,,China,"(UK Sanctions List Ref):DPR0140 (UN Ref):KPe.059 Ship and commercial manager of the ASIA BRIDGE 1. Hong Kong-owned vessel, the probable “ASIA BRIDGE 1” was instructed on 19 October 2017 by Huaxin Shipping to make preparations for entry into Nampo, DPRK to receive a shipment of coal bound for Vietnam. The “ASIA BRIDGE 1” was instructed by an unidentified employee of Huaxin Shipping Ltd. to make preparations to receive 8,000 metric tons of coal and then sail to Cam Pha, Vietnam. The master of the vessel was instructed to cover the ship’s name and other markings using canvas while in port at Nampo.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,16/02/2022,13630 +HUBARIEV,Pavlo,Yuriyovich,,,,,,,,05/07/1983,(1) Lugansk Oblast (2) Severodonetsk (3) Sievierodonetsk,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0102 (UK Statement of Reasons):One of the self-described leaders of the so-called ‘people' Republic of Donetsk’. He requested Russian intervention in eastern Ukraine, including through the deployment of Russian peacekeeping forces. He is associated with Igor Strelkov/Girkin, who is responsible for actions which undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. Gubarev is responsible for recruiting people for armed forces of separatists. Responsible for taking over of the regional government building in Donetsk with pro-Russian forces and proclaimed himself the ‘people's governor’. Despite being arrested for threatening the territorial integrity of Ukraine, and subsequently released, he has continued to play a prominent role in separatist activities, thus undermining the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,16/09/2022,13044 +HUBARIEV,Pavlo,Yuriyovich,,,,,,,,10/03/1983,(1) Lugansk Oblast (2) Severodonetsk (3) Sievierodonetsk,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0102 (UK Statement of Reasons):One of the self-described leaders of the so-called ‘people' Republic of Donetsk’. He requested Russian intervention in eastern Ukraine, including through the deployment of Russian peacekeeping forces. He is associated with Igor Strelkov/Girkin, who is responsible for actions which undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. Gubarev is responsible for recruiting people for armed forces of separatists. Responsible for taking over of the regional government building in Donetsk with pro-Russian forces and proclaimed himself the ‘people's governor’. Despite being arrested for threatening the territorial integrity of Ukraine, and subsequently released, he has continued to play a prominent role in separatist activities, thus undermining the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,16/09/2022,13044 +HUBARIEVA,Kateryna,Yuriyivna,,,,,,,,10/03/1983,"Kakhovka, Kherson Oblast",,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0103 (UK Statement of Reasons):In her capacity of former so-called 'Minister of Foreign Affairs' she was responsible for defending the so-called 'Donetsk Pople's Republic' thus undermining the territorial integrity, sovereignty and independence of Ukraine. In taking on and acting in this capacity she has therefore supported actions and policies which undermin the territorial integrity, sovereignty and independence of Ukraine. Remains active in supporting separatist actions or policies. Former member of the so-called 'People's Council' of the 'Donetsk People's Republic' (until November 2018). (Gender):Female",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,16/09/2022,13063 +HUBARIEVA,Kateryna,Yuriyivna,,,,,,,,05/07/1983,"Kakhovka, Kherson Oblast",,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0103 (UK Statement of Reasons):In her capacity of former so-called 'Minister of Foreign Affairs' she was responsible for defending the so-called 'Donetsk Pople's Republic' thus undermining the territorial integrity, sovereignty and independence of Ukraine. In taking on and acting in this capacity she has therefore supported actions and policies which undermin the territorial integrity, sovereignty and independence of Ukraine. Remains active in supporting separatist actions or policies. Former member of the so-called 'People's Council' of the 'Donetsk People's Republic' (until November 2018). (Gender):Female",Individual,Primary name variation,,Russia,25/07/2014,31/12/2020,16/09/2022,13063 +HUDHAYFAH,Abu,,,,,,,,,11/01/1986,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +HUDHAYFAH,Abu,,,,,,,,,00/00/1982,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +HUI,Kim,Kyong,,,,,,,,06/05/1981,Pyongyang,North Korea,North Korea,,,,,General in the Korean People’s Army,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0055 Association with Tcheul Hy Djang, Yong Nam Kim and Su Gwang Kim (UK Statement of Reasons):Kim Kyong Hui has been involved together with her husband Kim Su Gwang, her father-in-law Kim Yong Nam and her mother-in-law Djang Tcheul Hy in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She received several bank transfers from her husband Kim Su Gwang and father-in-law Kim Yong Nam, and transferred money to accounts outside the European Union in her name or the name of her mother-in-law, Djang Tcheul Hy. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,04/03/2022,13665 +HUICHON RYONHA MACHINERY GENERAL PLANT,,,,,,,,,,,,,,,,,,,,,,,Mangungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +HUICHON RYONHA MACHINERY GENERAL PLANT,,,,,,,,,,,,,,,,,,,,,,,Mangyongdae District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +HUICHON RYONHA MACHINERY GENERAL PLANT,,,,,,,,,,,,,,,,,,,,,,Tongan-dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +HUJI,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0047 (UN Ref):QDe.130 Was established in Afghanistan in 1980. In 1993, Harakat-ul Jihad Islami merged with Harakat ul-Mujahidin (QDe.008) to form Harakat ul-Ansar. In 1997, Harakat-ul Jihad Islami split from Harakat ul-Ansar and resumed using its former name. Operations are in India, Pakistan and Afghanistan. Banned in Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282215",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,06/09/2010,06/08/2010,31/12/2020,11270 +HULEVICH,Viktar,,,,,,Viktar HULIEVIČ,,,14/05/1969,"Bolshaya Pader, Slutsk district, Minsk region",Belarus,Belarus,,,,,(1) Chief of the General Staff of the Armed Forces of Belarus (2) First Deputy Minister of Defence,Ministry of Defence of the Republic of Belarus,1 Kommunisticheskaya St.,,,,Minsk,220034,Belarus,"(UK Sanctions List Ref):RUS0258 (UK Statement of Reasons):As Chief of the General Staff of the Armed Forces and First Deputy Minister of Defence, Major General Victor Gulevich is an active, visible and senior military leader in Belarus and, as part of the top-level chain of command, is responsible for directing the actions of the Belarusian armed forces, which have supported and enabled the Russian invasion of Ukraine. The Belarusian armed forces have conducted joint military exercises with Russian armed forces, and also consented to the deployment of Russian troops along the border of Belarus with Ukraine, which has directly contributed to Russia’s ability to both threaten and attack Ukraine, including from positions in Belarus. Gulevich therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14204 +HULIEVIC,Viktar,Uladzimiravic,,,,,Viktar Uladzimiravič HULIEVIČ,,,14/05/1969,"Bolshaya Pader, Slutsk district, Minsk region",Belarus,Belarus,,,,,(1) Chief of the General Staff of the Armed Forces of Belarus (2) First Deputy Minister of Defence,Ministry of Defence of the Republic of Belarus,1 Kommunisticheskaya St.,,,,Minsk,220034,Belarus,"(UK Sanctions List Ref):RUS0258 (UK Statement of Reasons):As Chief of the General Staff of the Armed Forces and First Deputy Minister of Defence, Major General Victor Gulevich is an active, visible and senior military leader in Belarus and, as part of the top-level chain of command, is responsible for directing the actions of the Belarusian armed forces, which have supported and enabled the Russian invasion of Ukraine. The Belarusian armed forces have conducted joint military exercises with Russian armed forces, and also consented to the deployment of Russian troops along the border of Belarus with Ukraine, which has directly contributed to Russia’s ability to both threaten and attack Ukraine, including from positions in Belarus. Gulevich therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14204 +HUMAYDAH,Muhammad,Abd-al-Halim,,,,,,,,22/09/1988,Alexandria,Egypt,Egypt,,,,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0244 (UN Ref):QDi.387 Member of Al-Qaida (QDe.004). Involved in recruiting suicide bombers to go to Syrian Arab Republic and planning terrorist activities against targets in Europe. Arrested in Cairo, Egypt in 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930736",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13320 +HUMAYDAH,Muhammad,Abd-al-Halim,,,,,,,,22/09/1989,Alexandria,Egypt,Egypt,,,,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0244 (UN Ref):QDi.387 Member of Al-Qaida (QDe.004). Involved in recruiting suicide bombers to go to Syrian Arab Republic and planning terrorist activities against targets in Europe. Arrested in Cairo, Egypt in 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930736",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13320 +HUN,KO,TAE,,,,,,,,25/05/1972,,,North Korea,563120630,Date of Expiration: 20.3.2018,,,Tanchon Commercial Bank Representative,,,,,,,,,(UK Sanctions List Ref):DPR0244 (UN Ref):KPi.025,Individual,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13335 +HUNAIFA OFFICE,,,,,,,,,,,,,,,,,,,Albu Kamal,(Al-Bukamal),,,,,,Syria,"(UK Sanctions List Ref):AQD0044 (UN Ref):QDe.153 Money exchange business in Albu Kamal, (Al-Bukamal), Syrian Arab Republic, facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Used exclusively for ISIL-related transactions. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116591",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13514 +HUNG,Sun,Mu,,,,,,,,01/01/1942,,,North Korea,,,,,"Deputy Director, Munitions Industry Department",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0011 (UK Statement of Reasons):Deputy Director of the Munitions Industry Department (MID). In charge of the development of programmes concerning conventional arms and missiles, including ballistic missiles. One of the main persons responsible for the industrial development programmes for nuclear arms. As such, responsible for the DPRK’s nuclear arms-related, ballistic missile-related, or other weapons of mass destruction-related programmes.Witnessed the launch of the Hwasong-15 intercontinental ballistic missile on 28 November 2017. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13358 +HUNG,Sun,Mu,,,,,,,,31/12/1941,,,North Korea,,,,,"Deputy Director, Munitions Industry Department",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0011 (UK Statement of Reasons):Deputy Director of the Munitions Industry Department (MID). In charge of the development of programmes concerning conventional arms and missiles, including ballistic missiles. One of the main persons responsible for the industrial development programmes for nuclear arms. As such, responsible for the DPRK’s nuclear arms-related, ballistic missile-related, or other weapons of mass destruction-related programmes.Witnessed the launch of the Hwasong-15 intercontinental ballistic missile on 28 November 2017. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13358 +HUNG,Sung,Mu,,,,,,,,01/01/1942,,,North Korea,,,,,"Deputy Director, Munitions Industry Department",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0011 (UK Statement of Reasons):Deputy Director of the Munitions Industry Department (MID). In charge of the development of programmes concerning conventional arms and missiles, including ballistic missiles. One of the main persons responsible for the industrial development programmes for nuclear arms. As such, responsible for the DPRK’s nuclear arms-related, ballistic missile-related, or other weapons of mass destruction-related programmes.Witnessed the launch of the Hwasong-15 intercontinental ballistic missile on 28 November 2017. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13358 +HUNG,Sung,Mu,,,,,,,,31/12/1941,,,North Korea,,,,,"Deputy Director, Munitions Industry Department",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0011 (UK Statement of Reasons):Deputy Director of the Munitions Industry Department (MID). In charge of the development of programmes concerning conventional arms and missiles, including ballistic missiles. One of the main persons responsible for the industrial development programmes for nuclear arms. As such, responsible for the DPRK’s nuclear arms-related, ballistic missile-related, or other weapons of mass destruction-related programmes.Witnessed the launch of the Hwasong-15 intercontinental ballistic missile on 28 November 2017. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13358 +HUNG,Sung-Mu,,,,,,,,,01/01/1942,,,North Korea,,,,,"Deputy Director, Munitions Industry Department",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0011 (UK Statement of Reasons):Deputy Director of the Munitions Industry Department (MID). In charge of the development of programmes concerning conventional arms and missiles, including ballistic missiles. One of the main persons responsible for the industrial development programmes for nuclear arms. As such, responsible for the DPRK’s nuclear arms-related, ballistic missile-related, or other weapons of mass destruction-related programmes.Witnessed the launch of the Hwasong-15 intercontinental ballistic missile on 28 November 2017. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13358 +HUNG,Sung-Mu,,,,,,,,,31/12/1941,,,North Korea,,,,,"Deputy Director, Munitions Industry Department",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0011 (UK Statement of Reasons):Deputy Director of the Munitions Industry Department (MID). In charge of the development of programmes concerning conventional arms and missiles, including ballistic missiles. One of the main persons responsible for the industrial development programmes for nuclear arms. As such, responsible for the DPRK’s nuclear arms-related, ballistic missile-related, or other weapons of mass destruction-related programmes.Witnessed the launch of the Hwasong-15 intercontinental ballistic missile on 28 November 2017. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13358 +HUNJIN TRADING CO.,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0150 (UN Ref):KPe.011 The Korea Heungjin Trading Company is used by KOMID for trading purposes. We suspect it has been involved in supplying missile-related goods to Iran’s Shahid Hemmat Industrial Group (SHIG). Heungjin has been associated with KOMID, and, more specifically, KOMID’s procurement office. Heungjin has been used to procure an advanced digital controller with applications in missile design. KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. The Security Council designated SHIG in resolution 1737 (2006) as an entity involved in Iran’s ballistic missile programme.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11283 +HURAYRAH,Abu,,,,,,,,,05/06/1978,"Raymah village, Sanaa Governorate",Yemen,Yemen,00344994,"Yemeni. Issue date: 03/07/1999, issued in Sanaa.",973406,Yemeni national identification number. Issued on 3 Jul. 1996,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0288 (UN Ref):QDi.282 Mother’s name: Fatima Muthanna Yahya. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Al-Qaida in the Arabian Peninsula (QDe.129) since Jun. 2015, pledged loyalty to Aiman al-Zawahiri (QDi.006). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4470245",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,26/05/2010,11/05/2010,31/12/2020,11123 +HURIEMBERE,Eric,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +HURIEMBERE,Erick,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +HUSACHENKA,Siarhei,Aliaksandravich,,,,,Сяргей Аляксандравiч ГУСАЧЭНКА,,,05/11/1983,Minsk,Belarus,Belarus,(1) SP0017927 (2) MP2486634 (3) MP2972008,(1) Expiry: 19 Jul 2022 (2) Expiry: 05 Nov 2028 (3) Expiry: 05 Nov 2028,,,"Deputy Chairman, National State TV and Radio Company (Belteleradio – BTRC)",Belteleradio,9 Makayonka St,,,,Minsk,220807,Belarus,"(UK Sanctions List Ref):BEL0118 (UK Statement of Reasons):In his position as the Deputy Chairman of BTRC and host of weekly propaganda TV-show “Glavnyy efir”, Sergey Alexandrovich GUSACHENKO has been willingly providing the Belarusian public with false information about the outcome of elections, protests and the repressions perpetrated by the state authorities. GUSHACHENKO is directly responsible for the way in which the State Television presents information about the situation in Belarus, thus lending support to the regime. GUSACHENKO therefore is or has been involved in undermining democracy and the rule of law in Belarus and repressing of civil society and the democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14161 +HUSACHENKA,Siarhej,Aliaksandravich,,,,,,,,05/11/1983,Minsk,Belarus,Belarus,(1) SP0017927 (2) MP2486634 (3) MP2972008,(1) Expiry: 19 Jul 2022 (2) Expiry: 05 Nov 2028 (3) Expiry: 05 Nov 2028,,,"Deputy Chairman, National State TV and Radio Company (Belteleradio – BTRC)",Belteleradio,9 Makayonka St,,,,Minsk,220807,Belarus,"(UK Sanctions List Ref):BEL0118 (UK Statement of Reasons):In his position as the Deputy Chairman of BTRC and host of weekly propaganda TV-show “Glavnyy efir”, Sergey Alexandrovich GUSACHENKO has been willingly providing the Belarusian public with false information about the outcome of elections, protests and the repressions perpetrated by the state authorities. GUSHACHENKO is directly responsible for the way in which the State Television presents information about the situation in Belarus, thus lending support to the regime. GUSACHENKO therefore is or has been involved in undermining democracy and the rule of law in Belarus and repressing of civil society and the democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14161 +HUSAM,,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,AKA,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +HUSAN,,,,,,,Хусан,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +HUSAN,,,,,,,Хусан,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +HUSARI,Bassam,Ahmad,,,,,,,,01/01/1969,"(1) Qalamun, Damascus Province (2) Ghutah, Damascus Province (3) Tadamon, Rif Dimashq",(1) Syria (2) Syria (3) Syria,(1) Syria. (2) Palestine,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0155 (UN Ref):QDi.399 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) for southern Syrian Arab Republic since July 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6013284. Syrian Arab Republic (Southern. Location as of July 2016),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13446 +HUSARI,Bassam,Ahmad,,,,,,,,00/00/1971,"(1) Qalamun, Damascus Province (2) Ghutah, Damascus Province (3) Tadamon, Rif Dimashq",(1) Syria (2) Syria (3) Syria,(1) Syria. (2) Palestine,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0155 (UN Ref):QDi.399 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) for southern Syrian Arab Republic since July 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6013284. Syrian Arab Republic (Southern. Location as of July 2016),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13446 +HUSSAIN,,,,,,,,,,00/00/1977,"Chak number 36/DNB, Rajkan, Madina Colony, Bahawalpur District, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0224 (UN Ref):QDi.296 Physical description: 5 feet 2 inches; 157,4 cm. Name of father: Ali Muhammad. Mati ur-Rehman is the chief operational commander of Lashkar i Jhangvi (LJ) (QDe.096). Associated with Harakat-ul Jihad Islami (QDe.130). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4674457",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,02/09/2011,22/08/2011,31/12/2020,12038 +HUSSAIN,Abdallah,Khaleel,,,,,,,,00/00/1959,Qamishli,,,,,,,Former Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0065 (UK Statement of Reasons):Former State Minister in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12788 +HUSSAIN,Abdallah,Khalil,,,,,,,,00/00/1959,Qamishli,,,,,,,Former Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0065 (UK Statement of Reasons):Former State Minister in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12788 +HUSSAIN,Abdullah,Khaleel,,,,,,,,00/00/1959,Qamishli,,,,,,,Former Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0065 (UK Statement of Reasons):Former State Minister in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12788 +HUSSAIN,Abdullah,Khalil,,,,,,,,00/00/1959,Qamishli,,,,,,,Former Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0065 (UK Statement of Reasons):Former State Minister in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12788 +HUSSAIN,Sakinah,,,,,,,,,17/11/1968,"Greenwich, Greater London",United Kingdom,United Kingdom,519408086,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0310 (UN Ref):QDi.360 Recruiter for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Sex: female. Husband’s name is: Junaid Hussain. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897339. Syria, as at 2013 (Gender):Female",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13288 +HUSSAIN,Sakinah,,,,,,,,,17/11/1968,"Greenwich, Greater London",United Kingdom,United Kingdom,519408086,,,,,,,,,,,,United Kingdom,"(UK Sanctions List Ref):AQD0310 (UN Ref):QDi.360 Recruiter for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Sex: female. Husband’s name is: Junaid Hussain. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897339. Syria, as at 2013 (Gender):Female",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13288 +HUSSAIN,OMAR,ALI,,,,,,,,21/03/1987,,United Kingdom,United Kingdom,205939411,(British). Issued 21.07.2004. Expired 21.04.2015.,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0281 (UN Ref):QDi.359 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Physical description: eye colour: brown; hair colour: brown/black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897337. Address country Syria, as at Jan. 2014.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13287 +HUSSAIN,OMAR,ALI,,,,,,,,21/03/1987,,United Kingdom,United Kingdom,205939411,(British). Issued 21.07.2004. Expired 21.04.2015.,,,,,,,,,,,United Kingdom,"(UK Sanctions List Ref):AQD0281 (UN Ref):QDi.359 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Physical description: eye colour: brown; hair colour: brown/black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897337. Address country Syria, as at Jan. 2014.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13287 +HUSSEIN,Abdallah,Khaleel,,,,,,,,00/00/1959,Qamishli,,,,,,,Former Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0065 (UK Statement of Reasons):Former State Minister in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12788 +HUSSEIN,Abdallah,Khalil,,,,,,,,00/00/1959,Qamishli,,,,,,,Former Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0065 (UK Statement of Reasons):Former State Minister in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12788 +HUSSEIN,Abdullah,Khaleel,,,,,,,,00/00/1959,Qamishli,,,,,,,Former Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0065 (UK Statement of Reasons):Former State Minister in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,16/10/2012,31/12/2020,31/12/2020,12788 +HUSSEIN,Abdullah,Khalil,,,,,,,,00/00/1959,Qamishli,,,,,,,Former Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0065 (UK Statement of Reasons):Former State Minister in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12788 +HUSSEIN,Abu,,,,,,,,,17/08/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +HUSSEIN,Abu,,,,,,,,,17/08/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,Arsal,Bekaa,,Lebanon,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +HUSSEIN,Abu,,,,,,,,,01/01/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,Arsal,Bekaa,,Lebanon,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +HUSSEIN,Abu,,,,,,,,,01/01/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +HUSSEIN,Mahafudh,Abubakar,Ahmed,Abdallah,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +HUSSEIN,Mahafudh,Abubakar,Ahmed,Abdallah,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +HUSSEIN,Mahafudh,Abubakar,Ahmed,Abdallah,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +HUSSEIN,Mahafudh,Abubakar,Ahmed,Abdallah,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +HUSSEIN,Malloul,,,,,,,,,00/00/1950,Al-Hasakah Governorate,Syria,Syria,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0373 (UK Statement of Reasons):Former Minister of State. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,06/11/2020,31/12/2020,13/05/2022,14003 +HUSSEIN,Maloul,,,,,,,,,00/00/1950,Al-Hasakah Governorate,Syria,Syria,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0373 (UK Statement of Reasons):Former Minister of State. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,06/11/2020,31/12/2020,13/05/2022,14003 +HUSSEIN,Sheikh,Hassaan,,,,,,,,10/04/1979,Garissa,Kenya,,A1180173,Kenya,23446085,,,,,,,,Nairobi,,Kenya,(UK Sanctions List Ref):SOM0009 (UN Ref):SOi.009 Possibly Ethiopian,Individual,AKA,Good quality,Somalia,27/09/2011,28/07/2011,31/12/2020,12029 +HUSSEIN,MOHAMMAD,TAHIR,HAMMID,,,Imam,حسين محمد طاهر حامد,,,01/11/1975,Poshok,Iraq,Iraq,,,,,,,,,,,Sulaymaniya,,Iraq,(UK Sanctions List Ref):AQD0243 (UN Ref):QDi.144 Mother's name: Attia Mohiuddin Taha. A deportation order was issued by the Italian authorities on 18 Oct. 2004. Considered a fugitive from justice by the Italian authorities as of Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424109,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7867 +HUSTYR,Yulia,Chaslavauna,,,,,Юлiя Чаславаўна ГУСТЫР,,,14/01/1984,,,Belarus,,,,,Judge of the Central District Court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0094 (UK Statement of Reasons):As a judge of the Central District Court of Minsk, Yulia Hustyr has been responsible the widespread sentencing of demonstrators and political activists (including opposition presidential candidate Viktor Babariko) in politically motivated decisions and without fair and transparent court proceedings. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition, and a serious human rights violation. (Gender):Female",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,13/04/2022,14025 +HUSTYR,Yulia,Chaslavauna,,,,,Юлия Чеславовна ГУСТЫР,,,14/01/1984,,,Belarus,,,,,Judge of the Central District Court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0094 (UK Statement of Reasons):As a judge of the Central District Court of Minsk, Yulia Hustyr has been responsible the widespread sentencing of demonstrators and political activists (including opposition presidential candidate Viktor Babariko) in politically motivated decisions and without fair and transparent court proceedings. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition, and a serious human rights violation. (Gender):Female",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,13/04/2022,14025 +HUWAYSH,ABD-AL-TAWWAB,MULLAH,,,,,عبد التواب ملا حويش,,,14/03/1942,(1) Baghdad (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0080 (UN Ref):IQi.019,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,16/02/2022,7615 +HUWAYSH,ABD-AL-TAWWAB,MULLAH,,,,,عبد التواب ملا حويش,,,00/00/1957,(1) Baghdad (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0080 (UN Ref):IQi.019,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,16/02/2022,7615 +HUZAIFA,,,,,,,,,,03/08/1986,,,Pakistan,BN 4196361,Pakistani,33202-7126636-9,Pakistani national identity card,,,,,,,,,,(UK Sanctions List Ref):AQD0087 (UN Ref):QDi.312 Electronics and explosives expert for Tehrik-e Taliban Pakistan (TTP) (QDe.132). Involved in attack planning for TTP. Provided financial and logistical support for TTP and participated in TTP-sponsored militant training. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741575,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,30/10/2012,18/10/2012,31/12/2020,12809 +HUZIEIEVA,Inna,Mykolayivna,,,,,,,,20/05/1971,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Ukraine,,,,,Deputy Chair of the Crimea Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0104 Ukraine imposed sanctions on 15/05/2017 (UK Statement of Reasons):Deputy Chair of the Crimea Electoral Commission. In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13666 +HWI,CHOE,,,,,,,,,00/00/1954,,,,,,,,"First Vice Director of the Workers' Party of Korea Propaganda and Agitation Department, which controls all DPRK media and is used by the government to control the public",,,,,,,,North Korea,(UK Sanctions List Ref):DPR0206 (UN Ref):KPi.042 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/03/2016,31/12/2020,13473 +HWI,CHOE,,,,,,,,,00/00/1955,,,,,,,,"First Vice Director of the Workers' Party of Korea Propaganda and Agitation Department, which controls all DPRK media and is used by the government to control the public",,,,,,,,North Korea,(UK Sanctions List Ref):DPR0206 (UN Ref):KPi.042 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/03/2016,31/12/2020,13473 +HYOK,Ju,,,,,,,,,23/11/1986,,,,836420186,issued 28 October 2016 expires 28 October 2021,,,Overseas Foreign Trade Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0209 (UN Ref):KPi.065 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13560 +HYO'K,CHU,,,,,,,,,23/11/1986,,,,836420186,issued 28 October 2016 expires 28 October 2021,,,Overseas Foreign Trade Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0209 (UN Ref):KPi.065 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13560 +HYOK CHOL,Kim,,,,,,,,,00/00/1964,,,North Korea,290320764,Issued by the Democratic People's Republic of Korea,,,President of Tanchon Commercial Bank,,,,,,,,,(UK Sanctions List Ref):DPR0239 (UN Ref):KPi.023 Kim Tong My’ong is the President of Tanchon Commercial Bank and has held various positions within Tanchon Commercial bank since at least 2002. He has also played a role in managing Amroggang’s affairs.,Individual,AKA,Good quality,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12441 +HYOK CHOL,Kim,,,,,,,,,28/08/1962,,,North Korea,290320764,Issued by the Democratic People's Republic of Korea,,,President of Tanchon Commercial Bank,,,,,,,,,(UK Sanctions List Ref):DPR0239 (UN Ref):KPi.023 Kim Tong My’ong is the President of Tanchon Commercial Bank and has held various positions within Tanchon Commercial bank since at least 2002. He has also played a role in managing Amroggang’s affairs.,Individual,AKA,Good quality,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12441 +HYOK-CHOL,Kim,,,,,,,,,00/00/1964,,,North Korea,290320764,Issued by the Democratic People's Republic of Korea,,,President of Tanchon Commercial Bank,,,,,,,,,(UK Sanctions List Ref):DPR0239 (UN Ref):KPi.023 Kim Tong My’ong is the President of Tanchon Commercial Bank and has held various positions within Tanchon Commercial bank since at least 2002. He has also played a role in managing Amroggang’s affairs.,Individual,AKA,Good quality,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12441 +HYOK-CHOL,Kim,,,,,,,,,28/08/1962,,,North Korea,290320764,Issued by the Democratic People's Republic of Korea,,,President of Tanchon Commercial Bank,,,,,,,,,(UK Sanctions List Ref):DPR0239 (UN Ref):KPi.023 Kim Tong My’ong is the President of Tanchon Commercial Bank and has held various positions within Tanchon Commercial bank since at least 2002. He has also played a role in managing Amroggang’s affairs.,Individual,AKA,Good quality,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12441 +HYON,Chol,Hae,,,,,,,,13/08/1934,Manchuria,China,North Korea,,,,,Korean People's Army Marshal,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0013 (UK Statement of Reasons):Korean People’s Army Marshal since April 2016. Former Deputy Director of the General Political Department of the People’s Armed Forces (military adviser to Kim Jong-Il). Elected Workers’ Party of Korea Central Committee member in May 2016 at 7th Congress of Workers’ Party of Korea where WPK adopted a decision to continue the DPRK’s nuclear programme, although no longer Central Committee member since January 2021. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11030 +HYON,Chol-Hae,,,,,Vice Marshal,,,,13/08/1934,Manchuria,China,North Korea,,,,,Korean People's Army Marshal,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0013 (UK Statement of Reasons):Korean People’s Army Marshal since April 2016. Former Deputy Director of the General Political Department of the People’s Armed Forces (military adviser to Kim Jong-Il). Elected Workers’ Party of Korea Central Committee member in May 2016 at 7th Congress of Workers’ Party of Korea where WPK adopted a decision to continue the DPRK’s nuclear programme, although no longer Central Committee member since January 2021. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11030 +HYON U,Jang,,,,,,,,,22/02/1958,,,,836110034,"diplomatic passport number 836110034, which expires on 1 January 2020.",,,Tanchon Commercial Bank Representative in Syria,,,,,,,,,"(UK Sanctions List Ref):DPR0214 (UN Ref):KPi.016 Pursuant to Resolution 2371(2017) the Security Council added the following information: New AKA: Jang Hyon U with date of birth 22 February 1958 and diplomatic passport number 836110034, which expires on 1 January 2020.",Individual,AKA,Good quality,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13327 +HYON U,Jang,,,,,,,,,15/04/1957,,,,836110034,"diplomatic passport number 836110034, which expires on 1 January 2020.",,,Tanchon Commercial Bank Representative in Syria,,,,,,,,,"(UK Sanctions List Ref):DPR0214 (UN Ref):KPi.016 Pursuant to Resolution 2371(2017) the Security Council added the following information: New AKA: Jang Hyon U with date of birth 22 February 1958 and diplomatic passport number 836110034, which expires on 1 January 2020.",Individual,AKA,Good quality,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13327 +IAI,,,,,,,,,,,,,,,,,,,Ekbatan City,Karaj Road,Azadi Sq.,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IAI,,,,,,,,,,,,,,,,,,,P.O. Box 14155/1449,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IAI,,,,,,,,,,,,,,,,,,,P.O. Box 83145/311,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IAI,,,,,,,,,,,,,,,,,,,Plant No. 1,opp. Of 2nd Phase of Shahrak e Ekbatan,Karaj Special Road,Mehrabad Airport,,1000 Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IAI,,,,,,,,,,,,,,,,,,,Sepabhod Gharani 36,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IAI,,,,,,,,,,,,,,,,,,,Special Karaj Road,Mehrabad Airport,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IAIO,,,,,,,,,,,,,,,,,,,107 Sepahbod Gharani Avenue,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +IAIO,,,,,,,,,,,,,,,,,,,3th km Karaj Special Road,Aviation Industries Boulevard,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +IAIO,,,,,,,,,,,,,,,,,,,Ave. Sepahbod Gharani PO Box 15815/1775,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +IAIO,,,,,,,,,,,,,,,,,,,Karaj Special Road,Mehrabad Airport,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +IAIO,,,,,,,,,,,,,,,,,,,Sepahbod Gharani 36,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +IAMCO,,,,,,,,,,,,,,,,,,,No. 27 Shahamat Ave.,Vallie asr Square.,,,,Tehran (HESA Tehran Office),15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IAMCO,,,,,,,,,,,,,,,,,,,P.O. Box 14155 5568,No. 27 Ahahamat Ave.,Vallie Asr Square,,,Tehran,15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IAMCO,,,,,,,,,,,,,,,,,,,P.O. Box 8140,No. 107 Sepahbod Gharany Ave.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IAMCO,,,,,,,,,,,,,,,,,,,P.O. Box 83145 311,28 km Esfahan Tehran Freeway,Shain Shahr,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IAMCO,,,,,,,,,,,,,,,,,,,P.O. Box81465 935,,,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IAMCO,,,,,,,,,,,,,,,,,,,Shahih Shar Industrial Zone,,,,,Isfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IAMI,,,,,,,,,,,,,,,,,,,No. 27 Shahamat Ave.,Vallie asr Square.,,,,Tehran (HESA Tehran Office),15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IAMI,,,,,,,,,,,,,,,,,,,P.O. Box 14155 5568,No. 27 Ahahamat Ave.,Vallie Asr Square,,,Tehran,15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IAMI,,,,,,,,,,,,,,,,,,,P.O. Box 8140,No. 107 Sepahbod Gharany Ave.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IAMI,,,,,,,,,,,,,,,,,,,P.O. Box 83145 311,28 km Esfahan Tehran Freeway,Shain Shahr,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IAMI,,,,,,,,,,,,,,,,,,,P.O. Box81465 935,,,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IAMI,,,,,,,,,,,,,,,,,,,Shahih Shar Industrial Zone,,,,,Isfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IANOUKOVYTCH,Aleksandr,Viktorovich,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANOUKOVYTCH,Alexander,Victorovych,,,,,Alexander Viktorovyč Ianoukovytch,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANOUKOVYTCH,Alexander,Viktorovich,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANOUKOVYTCH,Alexandr,Victorovych,,,,,Alexandr Viktorovyč Ianoukovytch,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANOUKOVYTCH,Alexsandr,Victorovych,,,,,Alexsandr Viktorovyč Ianoukovytch,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANOUKOVYTCH,Alexsandr,Viktorovich,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANOUKOVYTCH,Olecsandr,Victorovych,,,,,Olecsandr Viktorovyč Ianoukovytch,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANOUKOVYTCH,Olecsandr,Viktorovich,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANOUKOVYTCH,Olexandr,Victorovych,,,,,Olexandr Viktorovyč Ianoukovytch,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANOUKOVYTCH,Olexandr,Viktorovich,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANOUKOVYTCH,Viktor,Fedorovytch,,,,,,,,09/07/1950,Yenakiyeve Donetsk,Former USSR Currently Ukraine,Ukraine,,,,,Former President of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0228 (UK Statement of Reasons):Viktor Yanukovych was the President of Ukraine from November 2010 to February 2014 and was responsible for requesting President Putin to send Russian troops into Ukraine, therefore undermining Ukrainian independence and threatening Ukraine’s territorial integrity. Russian troops annexed Crimea shortly after this invitation was issued. Yanukovych was personally responsible for the appointment of at least one key official who continues to run the territory of Crimea and Sevastopol under the Russian annexation. Yanukovych is also suspected of supporting a policy, which reduced the defence capability of Ukraine’s Armed Forces stationed in Crimea prior to the 2014 Russian invasion. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/02/2022,12891 +IANUKOVICH,Viktor,Fedorovich,,,,,,,,09/07/1950,Yenakiyeve Donetsk,Former USSR Currently Ukraine,Ukraine,,,,,Former President of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0228 (UK Statement of Reasons):Viktor Yanukovych was the President of Ukraine from November 2010 to February 2014 and was responsible for requesting President Putin to send Russian troops into Ukraine, therefore undermining Ukrainian independence and threatening Ukraine’s territorial integrity. Russian troops annexed Crimea shortly after this invitation was issued. Yanukovych was personally responsible for the appointment of at least one key official who continues to run the territory of Crimea and Sevastopol under the Russian annexation. Yanukovych is also suspected of supporting a policy, which reduced the defence capability of Ukraine’s Armed Forces stationed in Crimea prior to the 2014 Russian invasion. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/02/2022,12891 +IANUKOVYCH,Aleksandr,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANUKOVYCH,Alexander,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANUKOVYCH,Alexander,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANUKOVYCH,Alexandr,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANUKOVYCH,Alexsandr,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANUKOVYCH,Alexsandr,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANUKOVYCH,Olecsandr,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANUKOVYCH,Olecsandr,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANUKOVYCH,Olexandr,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANUKOVYCH,Olexandr,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +IANUKOVYCH,Viktor,Fedorovych,,,,,,,,09/07/1950,Yenakiyeve Donetsk,Former USSR Currently Ukraine,Ukraine,,,,,Former President of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0228 (UK Statement of Reasons):Viktor Yanukovych was the President of Ukraine from November 2010 to February 2014 and was responsible for requesting President Putin to send Russian troops into Ukraine, therefore undermining Ukrainian independence and threatening Ukraine’s territorial integrity. Russian troops annexed Crimea shortly after this invitation was issued. Yanukovych was personally responsible for the appointment of at least one key official who continues to run the territory of Crimea and Sevastopol under the Russian annexation. Yanukovych is also suspected of supporting a policy, which reduced the defence capability of Ukraine’s Armed Forces stationed in Crimea prior to the 2014 Russian invasion. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/02/2022,12891 +IAP,,,,,,,,,,,,,,,,,,,P.O. Box 15875 5878,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0069 (UK Statement of Reasons):Has procured dual use items with applications in the Iranian nuclear programme. (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11949 +IAP,,,,,,,,,,,,,,,,,,,P.O. Box 16845 163,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0069 (UK Statement of Reasons):Has procured dual use items with applications in the Iranian nuclear programme. (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11949 +IAROSH,Petr,Grigorievich,,,,,,,,30/01/1971,,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0108 (UK Statement of Reasons):Former head of the Federal Migration Service office for Crimea. Responsible for the systematic and expedited issuance of Russian passports for the residents of Crimea,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12968 +IAROSH,Petro,Hryyhorovych,,,,,,,,30/01/1971,,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0108 (UK Statement of Reasons):Former head of the Federal Migration Service office for Crimea. Responsible for the systematic and expedited issuance of Russian passports for the residents of Crimea,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12968 +IAROSH,Petr,Hryyhorovych,,,,,,,,30/01/1971,,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0108 (UK Statement of Reasons):Former head of the Federal Migration Service office for Crimea. Responsible for the systematic and expedited issuance of Russian passports for the residents of Crimea,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12968 +IAROSH,Petro,Grigorievich,,,,,,,,30/01/1971,,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0108 (UK Statement of Reasons):Former head of the Federal Migration Service office for Crimea. Responsible for the systematic and expedited issuance of Russian passports for the residents of Crimea,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12968 +IBDA-C,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0034 (UK Statement of Reasons):The Great Eastern Islamic Raiders' Front (Islami Büyükdogu Akincilar Cephesi in Turkish, IBDA-C) claimed responsibility for a number of terrorist attacks during the 1990s and early 2000s, including an attack on the British Consulate in Istanbul in 2003 which killed the British Consul-General and 14 others. Their stated aim is to establish an Islamic federation in Turkey through violent means. The group is associated with Al-Qaida and has openly supported Osama bin Laden.",Entity,AKA,,Counter-Terrorism (International),29/12/2003,31/12/2020,21/01/2021,7980 +IBN ALHOUSSEYNI,Mohamed,,,,,,,,,01/01/1962,"Ariaw, Tombouctou region",Mali,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):MAL0005 (UN Ref):MLi.005 Houka Houka Ag Alhousseini was appointed by Iyad Ag Ghaly (QDi.316) as the Cadi of Timbuktu in April 2012 after the establishment of the jihadist caliphate in northern Mali. Houka Houka used to work closely with the Hesbah, the Islamic police headed by Ahmad Al Faqi Al Mahdi, jailed at the Detention Centre of the International Criminal Court in The Hague since September 2016. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Mali,20/12/2019,10/07/2019,31/12/2020,13800 +IBN ALHOUSSEYNI,Mohamed,,,,,,,,,01/01/1963,"Ariaw, Tombouctou region",Mali,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):MAL0005 (UN Ref):MLi.005 Houka Houka Ag Alhousseini was appointed by Iyad Ag Ghaly (QDi.316) as the Cadi of Timbuktu in April 2012 after the establishment of the jihadist caliphate in northern Mali. Houka Houka used to work closely with the Hesbah, the Islamic police headed by Ahmad Al Faqi Al Mahdi, jailed at the Detention Centre of the International Criminal Court in The Hague since September 2016. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Mali,20/12/2019,10/07/2019,31/12/2020,13800 +IBN ALHOUSSEYNI,Mohamed,,,,,,,,,01/01/1964,"Ariaw, Tombouctou region",Mali,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):MAL0005 (UN Ref):MLi.005 Houka Houka Ag Alhousseini was appointed by Iyad Ag Ghaly (QDi.316) as the Cadi of Timbuktu in April 2012 after the establishment of the jihadist caliphate in northern Mali. Houka Houka used to work closely with the Hesbah, the Islamic police headed by Ahmad Al Faqi Al Mahdi, jailed at the Detention Centre of the International Criminal Court in The Hague since September 2016. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Mali,20/12/2019,10/07/2019,31/12/2020,13800 +IBN AL-HUSAYN,Muhammad,,,,,,,,,01/01/1962,"Ariaw, Tombouctou region",Mali,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):MAL0005 (UN Ref):MLi.005 Houka Houka Ag Alhousseini was appointed by Iyad Ag Ghaly (QDi.316) as the Cadi of Timbuktu in April 2012 after the establishment of the jihadist caliphate in northern Mali. Houka Houka used to work closely with the Hesbah, the Islamic police headed by Ahmad Al Faqi Al Mahdi, jailed at the Detention Centre of the International Criminal Court in The Hague since September 2016. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Mali,20/12/2019,10/07/2019,31/12/2020,13800 +IBN AL-HUSAYN,Muhammad,,,,,,,,,01/01/1963,"Ariaw, Tombouctou region",Mali,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):MAL0005 (UN Ref):MLi.005 Houka Houka Ag Alhousseini was appointed by Iyad Ag Ghaly (QDi.316) as the Cadi of Timbuktu in April 2012 after the establishment of the jihadist caliphate in northern Mali. Houka Houka used to work closely with the Hesbah, the Islamic police headed by Ahmad Al Faqi Al Mahdi, jailed at the Detention Centre of the International Criminal Court in The Hague since September 2016. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Mali,20/12/2019,10/07/2019,31/12/2020,13800 +IBN AL-HUSAYN,Muhammad,,,,,,,,,01/01/1964,"Ariaw, Tombouctou region",Mali,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):MAL0005 (UN Ref):MLi.005 Houka Houka Ag Alhousseini was appointed by Iyad Ag Ghaly (QDi.316) as the Cadi of Timbuktu in April 2012 after the establishment of the jihadist caliphate in northern Mali. Houka Houka used to work closely with the Hesbah, the Islamic police headed by Ahmad Al Faqi Al Mahdi, jailed at the Detention Centre of the International Criminal Court in The Hague since September 2016. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Mali,20/12/2019,10/07/2019,31/12/2020,13800 +IBRAHEEM,Abu,,,,,,,,,11/12/1984,Bonn,Germany,(1) Germany. (2) Morocco,5204893014,"Germany number issued on 5 Oct. 2000, issued in Stadt Bonn, Germany (expired on 5 Oct. 2005)",5209445304,"Germany National Identification Number. issued on 5 Sep. 2005, issued in Stadt Bonn, Germany (expired on 4 Sep. 2010)",,Karl-Barth-Strasse 14,,,,,Bonn,53129,Germany,"(UK Sanctions List Ref):AQD0334 (UN Ref):QDi.301 Associated with Islamic Movement of Uzbekistan (QDe.010). Brother of Monir Chouka (QDi.300). Arrest warrant issued by the investigating judge of the German Federal Court of Justice on 5 Oct. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555865. Address country Germany, (previous)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,08/02/2012,25/01/2012,12/01/2022,12501 +IBRAHIM,,,,,,Doctor,,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +IBRAHIM,,,,,,Doctor,,,,00/00/1971,(1) Samarra (2) -,(1) Iraq (2) Iraq,Iraq,,,0134852,Ration card,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0198 (UN Ref):QDi.299 Description: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Currently based in Iraq and Syria. Declared himself “caliph” in Mosul in 2014. Responsible for managing and directing AQI large scale operations. Wife's name: Saja Hamid al-Dulaimi. Wife’s name: Asma Fawzi Mohammed al-Kubaissi. Wanted by the Iraqi security forces. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4654685",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/10/2011,05/10/2011,16/02/2022,12157 +IBRAHIM,Anis,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +IBRAHIM,Anis,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +IBRAHIM,Anis,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +IBRAHIM,Bassam,Bashir,,,,,,,,00/00/1960,Hama,Syria,Syria,,,,,Minister of Higher Education. Appointed in November 2018.,,,,,,,,,"(UK Sanctions List Ref):SYR0246 Relatives/business associates or partners/links to listed individuals: Bashar Asad (UK Statement of Reasons):Minister of Higher Education. Appointed in November 2018. As Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,04/03/2019,31/12/2020,31/12/2020,13774 +IBRAHIM,Dowood,Hassan,Shaikh,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +IBRAHIM,Dowood,Hassan,Shaikh,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +IBRAHIM,Dowood,Hassan,Shaikh,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +IBRAHIM,Frere,Petrus,,,,,,,,00/00/1966,Kigali,Rwanda,Rwanda,,,,,FDLR-FOCA Chief of Staff. FDLR-FOCA Interim Deputy Commander,,,,,,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0048 (UN Ref):CDi.014 Became acting FDLR-FOCA Deputy Commander in 2014. Captured in Goma, DRC by Congolese security services in early May 2016 and transferred to Kinshasa. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5224709 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,21/01/2021,10679 +IBRAHIM,Frere,Petrus,,,,,,,,17/03/1962,Kigali,Rwanda,Rwanda,,,,,FDLR-FOCA Chief of Staff. FDLR-FOCA Interim Deputy Commander,,,,,,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0048 (UN Ref):CDi.014 Became acting FDLR-FOCA Deputy Commander in 2014. Captured in Goma, DRC by Congolese security services in early May 2016 and transferred to Kinshasa. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5224709 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,21/01/2021,10679 +IBRAHIM,Hajj,,,,,,,,,00/00/1977,Binnish,Syria,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0113 (UN Ref):QDi.325 Official spokesman of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and emir of ISIL in Syria, closely associated with Abu Mohammed al-Jawlani (QDi.317) and Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809950",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13086 +IBRAHIM,Mohamed,Heikmat,,,,,,,,,,,,,,,,"Head of Operations Branch, Political Security Directorate",,,,,,,,,"(UK Sanctions List Ref):SYR0153 (UK Statement of Reasons):There are reasonable grounds to suspect that while Head of the Operations Branch of the Political Security Directorate, Mohamed Heikmat Ibrahim was responsible for the detention of protestors, and as such, that he has been involved in the repression of the civilian population in Syria as a member of the security and intelligence services. (Gender):Male",Individual,Primary name,,Syria,24/01/2012,31/12/2020,13/05/2022,12480 +IBRAHIM,Mohammad,Sholeh,,,,,,,,00/09/1958,Demak,Indonesia,Indonesia,,,(1) 3311092409580002 (2) 3311092409580003,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Desa Cemani,Waringinrejo RT 001/021,Kecamatan,Grogol,Kabupaten Sukoharjo,Jawa Tengah,,Indonesia,"(UK Sanctions List Ref):AQD0262 (UN Ref):QDi.395 Has served as the acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133) since 2014 and has supported Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Profession: Lecturer/Private Teacher. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,14/06/2022,13354 +IBRAHIM,Mohammad,Sholeh,,,,,,,,00/09/1958,Demak,Indonesia,Indonesia,,,(1) 3311092409580002 (2) 3311092409580003,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Masjid Baitul Amin,Waringinrejo RT 01 RW 02,Grogol,Cemani,Sukoharjo,Jawa Tengah,57572,Indonesia,"(UK Sanctions List Ref):AQD0262 (UN Ref):QDi.395 Has served as the acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133) since 2014 and has supported Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Profession: Lecturer/Private Teacher. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,14/06/2022,13354 +IBRAHIM,Mohammed,Hassan,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +IBRAHIM,Mohammed,Hassan,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +IBRAHIM,Mohammed,Hassan,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +IBRAHIM,Mohammed,Hassan,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +IBRAHIM,Muh,Sholeh,,,,,,,,00/09/1958,Demak,Indonesia,Indonesia,,,(1) 3311092409580002 (2) 3311092409580003,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Desa Cemani,Waringinrejo RT 001/021,Kecamatan,Grogol,Kabupaten Sukoharjo,Jawa Tengah,,Indonesia,"(UK Sanctions List Ref):AQD0262 (UN Ref):QDi.395 Has served as the acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133) since 2014 and has supported Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Profession: Lecturer/Private Teacher. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,14/06/2022,13354 +IBRAHIM,Muh,Sholeh,,,,,,,,00/09/1958,Demak,Indonesia,Indonesia,,,(1) 3311092409580002 (2) 3311092409580003,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Masjid Baitul Amin,Waringinrejo RT 01 RW 02,Grogol,Cemani,Sukoharjo,Jawa Tengah,57572,Indonesia,"(UK Sanctions List Ref):AQD0262 (UN Ref):QDi.395 Has served as the acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133) since 2014 and has supported Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Profession: Lecturer/Private Teacher. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,14/06/2022,13354 +IBRAHIM,Muhammad,,,,,,إبراهيم محمد,,,05/08/1964,,,,,,,,Deputy Commander of Syrian Arab Air Force 63rd Brigade at Hamah airfield,,,,,,,,,"(UK Sanctions List Ref):SYR0178 (UK Statement of Reasons):Holds the rank of Brigadier General, a senior officer and Deputy Commander of the Syrian Arab Air Force 63rd Brigade, in post after May 2011. Operates in the chemical weapons proliferation sector and, as a senior ranking officer of the Syrian Arab Air Force during the period investigated by the Joint Investigative Mechanism and Deputy Commander of the 63rd brigade from March to December 2015, is responsible for the violent repression against the civilian population through the use of chemical weapons by the 63rd Brigade in Talmenes (21 April 2014), Qmenas (16 March 2015) and Sarmin (16 March 2015). (Gender):Male",Individual,Primary name,,Syria,21/03/2017,31/12/2020,31/12/2020,13452 +IBRAHIM,Muhammad,Soleh,,,,,,,,00/09/1958,Demak,Indonesia,Indonesia,,,(1) 3311092409580002 (2) 3311092409580003,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Desa Cemani,Waringinrejo RT 001/021,Kecamatan,Grogol,Kabupaten Sukoharjo,Jawa Tengah,,Indonesia,"(UK Sanctions List Ref):AQD0262 (UN Ref):QDi.395 Has served as the acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133) since 2014 and has supported Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Profession: Lecturer/Private Teacher. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,14/06/2022,13354 +IBRAHIM,Muhammad,Soleh,,,,,,,,00/09/1958,Demak,Indonesia,Indonesia,,,(1) 3311092409580002 (2) 3311092409580003,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Masjid Baitul Amin,Waringinrejo RT 01 RW 02,Grogol,Cemani,Sukoharjo,Jawa Tengah,57572,Indonesia,"(UK Sanctions List Ref):AQD0262 (UN Ref):QDi.395 Has served as the acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133) since 2014 and has supported Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Profession: Lecturer/Private Teacher. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,14/06/2022,13354 +IBRAHIM,Osama,Al Kuni,,,,,أسامة الكوني ابراھیم,,,04/04/1976,Tripoli,Libya,Libya,,,,,Manager of Al Nasr Detention Centre in Zawiyah,,,,,,Zawiyah,,Libya,"(UK Sanctions List Ref):LIB0075 (UN Ref):LYi.029 As de factor manager of the Al Nasr detention centre the person concerned has directly, and/or through subordinates engaged in or provided support to acts that violate applicable international human rights law, or acts that consistute human rights abuses in Libya. The person concerned has acted for or on behalf of or at the direction of two listed individuals intrinsically linked to the human trafficking activities of the Zawiyah network, namely Mohamed Kashlaf (LYi.025) and Abdulrahman al Milad (LYi.026). For years, the Al Nasr detention centre in Zawiyah has been singled out in public and in confidential reports describing the plight of migrants and asylum seekers in Libya, including torture, sexual and gender-based violence and human trafficking. Humanitarian organisations and victims of trafficking have consistently identified the person concerned as the de facto manager of the detention centre. Three individuals who had been working in the Al Nasr detention centre were served prison sentences for torturing migrants in the detention centre. (Gender):Male",Individual,Primary name,,Libya,26/10/2021,25/10/2021,26/10/2021,14142 +IBRAHIM,Osama,Al Kuni,,,,,أسامة الكوني ابراھیم,,,04/04/1976,Tripoli,Libya,Libya,,,,,Manager of Al Nasr Detention Centre in Zawiyah,,,,,,Zawiyah,,Libya,"(UK Sanctions List Ref):LIB0075 (UN Ref):LYi.029 As de factor manager of the Al Nasr detention centre the person concerned has directly, and/or through subordinates engaged in or provided support to acts that violate applicable international human rights law, or acts that consistute human rights abuses in Libya. The person concerned has acted for or on behalf of or at the direction of two listed individuals intrinsically linked to the human trafficking activities of the Zawiyah network, namely Mohamed Kashlaf (LYi.025) and Abdulrahman al Milad (LYi.026). For years, the Al Nasr detention centre in Zawiyah has been singled out in public and in confidential reports describing the plight of migrants and asylum seekers in Libya, including torture, sexual and gender-based violence and human trafficking. Humanitarian organisations and victims of trafficking have consistently identified the person concerned as the de facto manager of the detention centre. Three individuals who had been working in the Al Nasr detention centre were served prison sentences for torturing migrants in the detention centre. (Gender):Male",Individual,Primary name,,Libya,26/10/2021,25/10/2021,26/10/2021,14142 +IBRAHIM,MOSTAFA,KAMEL,MOSTAFA,,,,مصطفى كمال مصطفى ابراهيم,,,15/04/1958,Alexandria,Egypt,United Kingdom,,,,,,,,,,,,,United States,(UK Sanctions List Ref):AQD0252 (UN Ref):QDi.067 Extradited from the United Kingdom to the United States of America on 5 Oct. 2012. Convicted on terrorism charges by a court in the United States of America in May 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,19/04/2002,24/04/2002,31/12/2020,6930 +IBRAHIM,MUHAMMAD,SHOLEH,,,,Ustad,,,,00/09/1958,Demak,Indonesia,Indonesia,,,(1) 3311092409580002 (2) 3311092409580003,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Desa Cemani,Waringinrejo RT 001/021,Kecamatan,Grogol,Kabupaten Sukoharjo,Jawa Tengah,,Indonesia,"(UK Sanctions List Ref):AQD0262 (UN Ref):QDi.395 Has served as the acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133) since 2014 and has supported Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Profession: Lecturer/Private Teacher. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,14/06/2022,13354 +IBRAHIM,MUHAMMAD,SHOLEH,,,,Ustad,,,,00/09/1958,Demak,Indonesia,Indonesia,,,(1) 3311092409580002 (2) 3311092409580003,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Masjid Baitul Amin,Waringinrejo RT 01 RW 02,Grogol,Cemani,Sukoharjo,Jawa Tengah,57572,Indonesia,"(UK Sanctions List Ref):AQD0262 (UN Ref):QDi.395 Has served as the acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133) since 2014 and has supported Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Profession: Lecturer/Private Teacher. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,14/06/2022,13354 +IBRAHIM,Yasar,,,,,,,,,09/04/1983,Damascus,Syria,Syria,,,,,Businessman,,,,,,,,,"(UK Sanctions List Ref):SYR0379 (UK Statement of Reasons):Prominent and influential businessperson and financier to President Assad, operating across multiple sectors of the Syrian economy. The Ibrahim family, led by Yasser Ibrahim, is associated with the Assad regime, and acts as a front for Bashar and Asma Assad’s personal hold on the Syrian economy, whilst millions of Syrians are food insecure. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14072 +IBRAHIM,Yassar,,,,,,,,,09/04/1983,Damascus,Syria,Syria,,,,,Businessman,,,,,,,,,"(UK Sanctions List Ref):SYR0379 (UK Statement of Reasons):Prominent and influential businessperson and financier to President Assad, operating across multiple sectors of the Syrian economy. The Ibrahim family, led by Yasser Ibrahim, is associated with the Assad regime, and acts as a front for Bashar and Asma Assad’s personal hold on the Syrian economy, whilst millions of Syrians are food insecure. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14072 +IBRAHIM,Yasser,Hussein,,,,,يسار حسين ابراهيم,,,09/04/1983,Damascus,Syria,Syria,,,,,Businessman,,,,,,,,,"(UK Sanctions List Ref):SYR0379 (UK Statement of Reasons):Prominent and influential businessperson and financier to President Assad, operating across multiple sectors of the Syrian economy. The Ibrahim family, led by Yasser Ibrahim, is associated with the Assad regime, and acts as a front for Bashar and Asma Assad’s personal hold on the Syrian economy, whilst millions of Syrians are food insecure. (Gender):Male",Individual,Primary name,,Syria,15/03/2021,15/03/2021,13/05/2022,14072 +IBROHIM,Muhammad,Sholeh,,,,,,,,00/09/1958,Demak,Indonesia,Indonesia,,,(1) 3311092409580002 (2) 3311092409580003,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Desa Cemani,Waringinrejo RT 001/021,Kecamatan,Grogol,Kabupaten Sukoharjo,Jawa Tengah,,Indonesia,"(UK Sanctions List Ref):AQD0262 (UN Ref):QDi.395 Has served as the acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133) since 2014 and has supported Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Profession: Lecturer/Private Teacher. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,14/06/2022,13354 +IBROHIM,Muhammad,Sholeh,,,,,,,,00/09/1958,Demak,Indonesia,Indonesia,,,(1) 3311092409580002 (2) 3311092409580003,(1) Indonesia National Identity Card (2) Indonesia National Identity Card,,Masjid Baitul Amin,Waringinrejo RT 01 RW 02,Grogol,Cemani,Sukoharjo,Jawa Tengah,57572,Indonesia,"(UK Sanctions List Ref):AQD0262 (UN Ref):QDi.395 Has served as the acting emir of Jemmah Anshorut Tauhid (JAT) (QDe.133) since 2014 and has supported Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Profession: Lecturer/Private Teacher. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,14/06/2022,13354 +ICI,,,,,,,,,,,,,,,,,,,Iran Composites Institute,Iranian University of Science and Technology,16845-188,,,Tehran,,Iran,(UK Sanctions List Ref):INU0074 (UK Statement of Reasons):Iran Composites Institute has provided centrifuge components to Iran Centrifuge Technology Company (TESA). (Phone number):+98 2173912858 (Website):http://www.irancomposites.org. (Email address):ici@iust.ac.ir,Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,31/12/2020,12815 +IDLEB COMPANY FOR SPINNING,,,,,,,,,,,,,,,,,,,PO Box 9,,,,,Idleb,,Iraq,(UK Sanctions List Ref):IRQ0013 (UN Ref):IQe.049 Funds or financial assets or economic resources received on or after 23 May 2003 are not to be regarded as frozen nor required to be transferred to the successor arrangements to the DFI.,Entity,Primary name,,Iraq,05/05/2004,26/04/2004,31/12/2020,8105 +IEC,,,,,,,,,,,,,,,,,,,,Qarqavol Close,20th Street,,,Tehran,,,(UK Sanctions List Ref):INU0066 (UK Statement of Reasons):Known to have production contracts with Iran Centrifuge Technology Company (TESA). (Parent company):(1) Novin Energy (2) TAMAS,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12254 +IG,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0030 (UK Statement of Reasons):Al-Gama'a al-Islamiyya (GI) is an Egyptian Sunni terrorist organisation who were responsible for a number of terrorist attacks in the 1980s and 1990s,Entity,AKA,,Counter-Terrorism (International),02/11/2001,31/12/2020,21/01/2021,6988 +IGNACE,,,,,,Doctor,,,,14/05/1963,"(1) Butera (2) Ngoma, Butare",(1) Rwanda (2) Rwanda,Rwanda,,,,,President of the FDLR,,,,,,,,Germany,(UK Sanctions List Ref):DRC0036 (UN Ref):CDi.016 Reported to have died in prison in Germany on 16 April 2019. Arrested by German authorities on 17 November 2009 and found guilty by a German court on 28 September 2015 of leadership of a foreign terrorist group and aiding in war crimes. Received a 13-year sentence and is in prison in Germany as of June 2016. Re-elected FDLR President on 29 November 2014 for a five-year term. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,31/12/2020,8713 +IGNATOV,Sergey,Yurevich,,,,,,,,07/01/1967,"Michurinsk, Tambov oblast",Russia,Russia,,,,,(1) Former so-called 'Commander in Chief of the People's Militia of the Luhansk People's Republic' (2) Former Commander of 8th Army of the Russian Armed Force,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0105 (UK Statement of Reasons):Former so-called Commander in Chief of the People’s Militia of the ‘Lugansk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Former Commander of 8th Army of the Russian Armed Force. Chief of Staff and First Deputy Commander of the Russian Southern Military District. (Gender):Male",Individual,Primary name,,Russia,16/02/2015,31/12/2020,31/12/2020,13206 +IGNATOV,Viktor,Alexandrovich,,,,,Игнатов Виктор Александрович,,,15/10/1968,Novosibirsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0683 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14634 +IGNATOVA,Anastasiya,Mikhailovna,,,,,ИГНАТОВА Анастасия Михайловна,Cyrillic,Russian,00/00/1988,,,,,,,,,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0789 (UK Statement of Reasons):Anastasiya Mikhailovna IGNATOVA (hereafter Anastasiya IGNATOVA) is the step-daughter of prominent Russian oligarch Sergey CHEMEZOV, with whom she is closely associated and from whom she has obtained a financial benefit or other material benefit. Sergey CHEMEZOV is one of President Putin's known close associates, both were KGB officers posted in Dresden and he is a member of the Supreme Council of ‘United Russia’. He is benefiting from his links with the Russian President by being promoted to senior positions in State-controlled firms. He chairs the Rostec conglomerate, the leading Russian state-controlled defence and industrial manufacturing corporation. Further to a decision of the Russian government, Technopromexport, a subsidiary of Rostec, has built energy plants in Crimea thereby supporting its integration into the Russian Federation. Furthermore, Rosobornexport a subsidiary of Rostec, has supported the integration of Crimean defence companies into Russia’s defence industry, thereby consolidating the illegal annexation of Crimea into the Russian Federation. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14740 +IGNATOVA,Ekaterina,Sergeevna,,,,,ИГНАТОВА Екатерина Сергеевна,Cyrillic,Russian,21/03/1968,,,,,,,,,10 Presnenskaya Naberezhnaya,,,,,,,Russia,"(UK Sanctions List Ref):RUS0790 (UK Statement of Reasons):Ekaterina Sergeevna IGNATOVA (hereafter Ekaterina IGNATOVA) is the second wife of prominent Russian oligarch Sergey CHEMEZOV, with whom she is closely associated and from whom she has obtained a financial benefit or other material benefit. Sergey CHEMEZOV is one of President Putin's known close associates, both were KGB officers posted in Dresden and he is a member of the Supreme Council of ‘United Russia’. He is benefiting from his links with the Russian President by being promoted to senior positions in State-controlled firms. He chairs the Rostec conglomerate, the leading Russian state-controlled defence and industrial manufacturing corporation. Further to a decision of the Russian government, Technopromexport, a subsidiary of Rostec, has built energy plants in Crimea thereby supporting its integration into the Russian Federation. Furthermore, Rosobornexport a subsidiary of Rostec, has supported the integration of Crimean defence companies into Russia’s defence industry, thereby consolidating the illegal annexation of Crimea into the Russian Federation. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14741 +IGNATOVA,Ekaterina,Sergeyevna,,,,,,,,21/03/1968,,,,,,,,,10 Presnenskaya Naberezhnaya,,,,,,,Russia,"(UK Sanctions List Ref):RUS0790 (UK Statement of Reasons):Ekaterina Sergeevna IGNATOVA (hereafter Ekaterina IGNATOVA) is the second wife of prominent Russian oligarch Sergey CHEMEZOV, with whom she is closely associated and from whom she has obtained a financial benefit or other material benefit. Sergey CHEMEZOV is one of President Putin's known close associates, both were KGB officers posted in Dresden and he is a member of the Supreme Council of ‘United Russia’. He is benefiting from his links with the Russian President by being promoted to senior positions in State-controlled firms. He chairs the Rostec conglomerate, the leading Russian state-controlled defence and industrial manufacturing corporation. Further to a decision of the Russian government, Technopromexport, a subsidiary of Rostec, has built energy plants in Crimea thereby supporting its integration into the Russian Federation. Furthermore, Rosobornexport a subsidiary of Rostec, has supported the integration of Crimean defence companies into Russia’s defence industry, thereby consolidating the illegal annexation of Crimea into the Russian Federation. (Gender):Female",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14741 +IGOSHIN,Igor,Nikolaevich,,,,,Игошин Игорь Николаевич,,,11/12/1970,Kirov,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0397 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14342 +IIB,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0050 (UN Ref):QDe.099 Linked to the Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs (RSRSBCM) (QDe.100) and the Special Purpose Islamic Regiment (SPIR) (QDe.101). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,12/01/2022,7202 +IKONNIKOV,Vasily,Nikolayevich,,,,,Василий Николаевич ИКОННИКОВ,,,26/04/1961,Pryol,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0985 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14936 +IKRAM,JAN MOHAMMAD,MADANI,,,,Maulavi,جان محمد مدنی اکرام,,,00/00/1954,"Siyachoy village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,"Charge d'Affaires, Taliban Embassy, Abu Dhabi, United Arab Emirates",,,,,,,,,(UK Sanctions List Ref):AFG0093 (UN Ref):TAi.119 Believed to be in Afghanistan/Pakistan border area. Belongs to Alizai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7257 +IKRAM,JAN MOHAMMAD,MADANI,,,,Maulavi,جان محمد مدنی اکرام,,,00/00/1955,"Siyachoy village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,"Charge d'Affaires, Taliban Embassy, Abu Dhabi, United Arab Emirates",,,,,,,,,(UK Sanctions List Ref):AFG0093 (UN Ref):TAi.119 Believed to be in Afghanistan/Pakistan border area. Belongs to Alizai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7257 +IL,PAK,CHUN,,,,,,,,28/07/1954,,,North Korea,563410091,,,,Served as DPRK Ambassador to Egypt,,,,,,,,,(UK Sanctions List Ref):DPR0253 (UN Ref):KPi.029 Pak Chun Il has served as the DPRK Ambassador to Egypt and provides support to KOMID. He concluded his tour of duty and left Egypt on 15 November 2016.,Individual,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,07/07/2022,13414 +IL KYU,Pak,,,,,,,,,,,,North Korea,563120235,,,,Official for Korea Ryonbong General Corporation,,,,,,,,,"(UK Sanctions List Ref):DPR0255 (UN Ref):KPi.062 Official for Korea Ryonbong General Corporation, which specializes in acquisition for DPRK’s defense industries and support to Pyongyang’s military-related sales. Its procurements also likely support the DPRK’s chemical weapons program. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13535 +IL LIBICO,F'raji,,,,,,,,,04/06/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +IL LIBICO,F'raji,,,,,,,,,13/11/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +IL LIBICO,F'raji,,,,,,,,,11/08/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +IL LIBICO,F'raji,,,,,,,,,04/04/1969,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +IL LIBICO,F'raji,,,,,,,,,04/04/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +IL LIBICO,F'raji,,,,,,,,,14/01/1968,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +IL MOOK,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0103 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK vessel M/V PAEK MA was involved in ship-to-ship transfer operations for oil in mid-January 2018. Listed as asset of Paekma Shipping Co (a.k.a First Oil JV Co Ltd) (OFSI ID: 13640, UN Reference Number: UN Ref KPe.069) (IMO number):9066978 (Flag of ship):North Korea (Previous flags):Panama. South Korea (Type of ship):Oil tanker (Tonnage of ship):1181 (Length of ship):77 (Year built):1993",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13654 +IL U,CHO,,,,,,,,,10/05/1945,"Musan, North Hamgyo'ng Province",North Korea,,736410010,,,,Director of the Fifth Bureau of the Reconnaissance General Bureau,,,,,,,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0202 (UN Ref):KPi.040 Cho is believed to be in charge of overseas espionage operations and foreign intelligence collection for the Democratic People's Republic of Korea.,Individual,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13471 +IL WOO,Cho,,,,,,,,,10/05/1945,"Musan, North Hamgyo'ng Province",North Korea,,736410010,,,,Director of the Fifth Bureau of the Reconnaissance General Bureau,,,,,,,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0202 (UN Ref):KPi.040 Cho is believed to be in charge of overseas espionage operations and foreign intelligence collection for the Democratic People's Republic of Korea.,Individual,AKA,Good quality,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13471 +ILA,Larzg,Ben,,,,,,,,04/06/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ILA,Larzg,Ben,,,,,,,,13/11/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ILA,Larzg,Ben,,,,,,,,11/08/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ILA,Larzg,Ben,,,,,,,,04/04/1969,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ILA,Larzg,Ben,,,,,,,,04/04/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ILA,Larzg,Ben,,,,,,,,14/01/1968,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +IL-GYU,Pak,,,,,,,,,,,,North Korea,563120235,,,,Official for Korea Ryonbong General Corporation,,,,,,,,,"(UK Sanctions List Ref):DPR0255 (UN Ref):KPi.062 Official for Korea Ryonbong General Corporation, which specializes in acquisition for DPRK’s defense industries and support to Pyongyang’s military-related sales. Its procurements also likely support the DPRK’s chemical weapons program. (Gender):Male",Individual,AKA,Good quality,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13535 +ILIEV,Zarakh,Binsionovich,,,,,ИЛИЕВ Зарах Бинсионович,Cyrillic,Russian,08/09/1966,,Azerbaijan,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1645 Transport sanction: where transport sanctions apply, a ship owned, controlled, chartered or operated by a designated person is prohibited from entering a port in the UK, may be given a movement or a port entry direction, can be detained, and will be refused permission to register on the UK Ship Register or have its existing registration terminated. Similarly, an aircraft owned, chartered or operated by a designated person is prohibited from overflying or landing in the UK, may be given a movement direction, can be detained or moved to a specified airport, and will be refused permission to register on the CAA Aircraft Register or have its existing registration terminated. (UK Statement of Reasons):Zarakh Binsionovich ILIEV (hereafter ILIEV) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 on the basis of the following grounds: (1) ILIEV is associated with God NISANOV who is an involved person as defined in the regulations. (2) ILIEV is and has been involved in obtaining a benefit from or supporting the Government of Russia by owning or controlling directly or indirectly Kievskaya Ploshchad, which is carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian construction and transport sectors. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15589 +ILINYKH,Vladimir,Alekseevich,,,,,Ильиных Владимир Алексеевич,,,20/05/1975,Severouralsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0398 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14343 +ILONGGO,Abu,,,,,,,,,15/05/1972,"Punta, Santa Ana, Manila",Philippines,Philippines,,,,,,Ma. Bautista,,,Punta,Santa Ana,Manila,3111,Philippines,(UK Sanctions List Ref):AQD0293 (UN Ref):QDi.246 Member of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). Father's name is Fernando Rafael Dellosa. Mother's name is Editha Parado Cain. In detention in the Philippines as of Jan. 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10666 +ILSIM INTERNATIONAL BANK,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0141 (UN Ref):KPe.034 Ilsim International Bank is affiliated with the DPRK military and has a close relationship with Korea Kwangson Banking Corporation (KKBC). Ilsim International Bank has attempted to evade United Nations sanctions. SWIFT: ILSIKPPY,Entity,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,31/12/2020,13426 +ILTYAKOV,Alexander,Vladimirovich,,,,,Ильтяков Александр Владимирович,,,09/10/1971,Kurgan,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0399 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14344 +ILYASHENKO,Andrey,Vitalyevich,,,,,ИЛЬЯШЕНКО Андрей Витальевич,Cyrillic,Russian,19/12/1958,,,,,,771706200945,Taxpayer ID,"CEO, General Director, Editor-in-chief of InfoRos",Krzhizhanovskogo Street 13/2,,,,,Moscow,117218,,"(UK Sanctions List Ref):RUS0791 (UK Statement of Reasons):Andrey Vitalyevich ILYASHENKO (hereafter ILYASHENKO) runs and is a contributor to InfoRos, an organisation affiliated with the Government of Russia which spreads disinformation. In his role as CEO and General Director of InfoRos, and as a contributor, ILYASHENKO has provided support for and promoted actions and policies which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,13/05/2022,14742 +ILYENKO,Evgeny,Alekseevich,,,,,ИЛЬЕНКО Евгений Алексеевич,Cyrillic,Russian,05/11/1995,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1245 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15197 +ILYENKO,Yevgeny,Alexeyevich,,,,,,,,05/11/1995,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1245 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15197 +IMA CONSULTING,,,,,,,ИМА-КОНСАЛТИНГ,,Russian,,,,,,,,,,"Nizhny Susalny lane, 5, building 4.",,,,,Moscow,105064,Russia,"(UK Sanctions List Ref):RUS1565 (UK Statement of Reasons):Joint-Stock Company ‘IMA Consulting’ is an involved entity within the meaning of the Russia (Sanctions) (EU Exit) Regulations 2019 because it has been awarded a contract to manage the referenda campaigns in non-government controlled areas of Ukraine. Therefore, IMA Consulting is engaging in, providing support for, or promoting a policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Phone number):+7 (495) 917-00-80 (Website):http://ima-consulting.ru/   (Email address):ima@ima-consulting.ru  (Type of entity):Joint Stock Company  (Business Reg No):TIN: 7706191991",Entity,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15509 +IMAD,Arfauni,,,,,,,,,29/01/1971,Roubaix,France,France,,,,,,,,,,,,,France,(UK Sanctions List Ref):AQD0217 (UN Ref):QDi.095 In custody in France as of May 2004. Sentenced to 25 years imprisonment in France in 2007. His sentence is due to end on 13 Jul. 2023 and his unconditional detention to end on 13 Aug. 2020. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4531664,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,11/02/2022,7797 +IMAMOVIC,Nusret,Sulejman,,,,,,,,26/09/1971,"Miljanovci, Kalesija Municipality",Bosnia and Herzegovina,Bosnia and Herzegovina,(1) 349054 (2) 3490054,(1) Bosnia and Herzegovina (2) Bosnia and Herzegovina,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0279 (UN Ref):QDi.374 Believed to be fighting with Al-Nusrah Front for the People of the Levant (QDe.137) in Syrian Arab Republic and reported to be a leader in the group as of Apr. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930702. Address country Syria, as at Jan. 2014.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13314 +IMAMOVIC,Nusret,Sulejman,,,,,,,,26/09/1977,"Miljanovci, Kalesija Municipality",Bosnia and Herzegovina,Bosnia and Herzegovina,(1) 349054 (2) 3490054,(1) Bosnia and Herzegovina (2) Bosnia and Herzegovina,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0279 (UN Ref):QDi.374 Believed to be fighting with Al-Nusrah Front for the People of the Levant (QDe.137) in Syrian Arab Republic and reported to be a leader in the group as of Apr. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930702. Address country Syria, as at Jan. 2014.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13314 +IMAMOVIC,NUSRET,,,,,,,,,26/09/1971,"Miljanovci, Kalesija Municipality",Bosnia and Herzegovina,Bosnia and Herzegovina,(1) 349054 (2) 3490054,(1) Bosnia and Herzegovina (2) Bosnia and Herzegovina,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0279 (UN Ref):QDi.374 Believed to be fighting with Al-Nusrah Front for the People of the Levant (QDe.137) in Syrian Arab Republic and reported to be a leader in the group as of Apr. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930702. Address country Syria, as at Jan. 2014.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13314 +IMAMOVIC,NUSRET,,,,,,,,,26/09/1977,"Miljanovci, Kalesija Municipality",Bosnia and Herzegovina,Bosnia and Herzegovina,(1) 349054 (2) 3490054,(1) Bosnia and Herzegovina (2) Bosnia and Herzegovina,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0279 (UN Ref):QDi.374 Believed to be fighting with Al-Nusrah Front for the People of the Levant (QDe.137) in Syrian Arab Republic and reported to be a leader in the group as of Apr. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930702. Address country Syria, as at Jan. 2014.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13314 +IMAN,Maimaiti,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +IMAN,Maimaiti,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +IMENSAZAN CONSULTANT ENGINEERS INSTITUTE,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0152 (UN Ref):IRe.026 Owned or controlled by, or acts on behalf of, Khatam al-Anbiya (KAA). [Old Reference # E.29.II.6] (Parent company):Khatam al-Anbiya (KAA)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11141 +IMU,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0052 (UN Ref):QDe.010 Associated with the Eastern Turkistan Islamic Movement (QDe.088), Islamic Jihad Group (QDe.119) and Emarat Kavkaz (QDe.131). Active in the Afghanistan/Pakistan border area, northern Afghanistan and Central Asia. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278466",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7199 +IN SIRATEL,,,,,,,,,,,,,,,,,,,30a Put Mladih Muslimana (ex Pavla Lukaca Street),,,,,Sarajevo,71 000,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +IN SIRATEL,,,,,,,,,,,,,,,,,,,42 Muhameda Hadzijahica,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +IN SIRATEL,,,,,,,,,,,,,,,,,,,70 and 53 Strosmajerova Street,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +IN SIRATEL,,,,,,,,,,,,,,,,,,,72 ul. Strossmajerova,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +IN SIRATEL,,,,,,,,,,,,,,,,,,,Zlatnih Ljiljana Street,,,,,Zavidovici,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +INDJAI,Antonio,,,,,,António Indjai,,,20/01/1955,"Encheia, Sector de Bissorá, Região de Oio",Guinea-Bissau,Guinea Bissau,AAID00435,Diplomatic Passport Issued 18 February 2010 in Guinea-Bissau. Expires 18 February 2013,,,(1) Chief of Staff of the Armed Forces (2) Lieutenant General,,,,,,,,,"(UK Sanctions List Ref):GUB0009 (UN Ref):GBi.005 Injai was listed on 18 May 2012 pursuant to paragraph 4 of resolution 2048 (2012) as “António Injai was personally involved in planning and leading the mutiny of 1 April 2010, culminating with the illegal apprehension of the Prime Minister, Carlo Gomes Junior, and the then Chief of Staff of the Armed Forces, José Zamora Induta; during the 2012 electoral period, in his capacity as Chief of Staff of the Armed Forces, Injai made statements threatening to overthrow the elected authorities and to put an end to the electoral process; António Injai has been involved in the operational planning of the coup d’état of 12 April 2012. In the aftermath of the coup, the first communiqué by the “Military Command” was issued by the Armed Forces General Staff, which is led by General Injai.” Father’s name is Wasna Injai; Mother’s name is Quiritche Cofte. (UK Statement of Reasons):In the aftermath of the coup, the first communiqué by the ‘Military Command’ was issued by the Armed Forces General Staff, which was led by General Injai (Gender):Male",Individual,AKA,Good quality,Guinea-Bissau,04/05/2012,31/12/2020,10/03/2022,12664 +INDJAI,Antonio,,,,,,António Indjai,,,20/01/1955,"Encheia, Sector de Bissorá, Região de Oio",Guinea-Bissau,Guinea Bissau,AAID00435,Diplomatic Passport Issued 18 February 2010 in Guinea-Bissau. Expires 18 February 2013,,,(1) Chief of Staff of the Armed Forces (2) Lieutenant General,,,,,,,,,"(UK Sanctions List Ref):GUB0009 (UN Ref):GBi.005 Injai was listed on 18 May 2012 pursuant to paragraph 4 of resolution 2048 (2012) as “António Injai was personally involved in planning and leading the mutiny of 1 April 2010, culminating with the illegal apprehension of the Prime Minister, Carlo Gomes Junior, and the then Chief of Staff of the Armed Forces, José Zamora Induta; during the 2012 electoral period, in his capacity as Chief of Staff of the Armed Forces, Injai made statements threatening to overthrow the elected authorities and to put an end to the electoral process; António Injai has been involved in the operational planning of the coup d’état of 12 April 2012. In the aftermath of the coup, the first communiqué by the “Military Command” was issued by the Armed Forces General Staff, which is led by General Injai.” Father’s name is Wasna Injai; Mother’s name is Quiritche Cofte. (UK Statement of Reasons):In the aftermath of the coup, the first communiqué by the ‘Military Command’ was issued by the Armed Forces General Staff, which was led by General Injai (Gender):Male",Individual,AKA,Good quality,Guinea-Bissau,04/05/2012,31/12/2020,10/03/2022,12664 +INDONESIA HILAL AHMAR SOCIETY FOR SYRIA,,,,,,,,,,,,,,,,,,,,,,,,,,Indonesia,"(UK Sanctions List Ref):AQD0048 (UN Ref):QDe.147 Ostensibly humanitarian wing of Jemaah Islamiyah (QDe.092). Operates in Lampung, Jakarta, Semarang, Yogyakarta, Solo, Surabaya and Makassar, Indonesia. Has been recruiting, funding and facilitating travel of foreign terrorist fighters to Syria. Not affiliated with the humanitarian group International Federation of the Red Cross and Red Crescent Societies (IFRC). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5854978",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/03/2015,13/03/2015,31/12/2020,13241 +INDUSTRIAL BANK,,,,,,,Banca Industrială,,,,,,,,,,,,Dar Al Muhanisen Building,7th Floor,Maysaloun Street,,P.O. Box 7572,Damascus,,Syria,(UK Sanctions List Ref):SYR0308 Banking (UK Statement of Reasons):State-owned bank. Provides financial support to the regime. (Phone number):+963 11-222-7910. +963 11-222-8200. +963 11-222-8412 (Fax) (Website):www.industrialbank.gov.sy,Entity,Primary name,,Syria,24/01/2012,31/12/2020,31/12/2020,12483 +INDUSTRIAL ESTABLISHMENT FOR DEFENCE,,,,,,,,,,,,,,,,,,,P.O. Box 2230,,,,Al-Hameh,Damascus Countryside,,,"(UK Sanctions List Ref):SYR0309 Industrial - Military (UK Statement of Reasons):There are reasonable grounds to suspect that the Industrial Establishment of Defence is or has been involved in the repression of the civilian population and engaging in and promoting the repression and otherwise supported the regime in that it is has produced and supplied military equipment to the regime, and is associated with members of the regime, in particular the Syrian military.",Entity,AKA,,Syria,23/07/2014,31/12/2020,13/05/2022,13031 +INDUSTRIAL ESTABLISHMENT FOR DEFENCE,,,,,,,,,,,,,,,,,,,P.O. Box 2330,Al Thawraa Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0309 Industrial - Military (UK Statement of Reasons):There are reasonable grounds to suspect that the Industrial Establishment of Defence is or has been involved in the repression of the civilian population and engaging in and promoting the repression and otherwise supported the regime in that it is has produced and supplied military equipment to the regime, and is associated with members of the regime, in particular the Syrian military.",Entity,AKA,,Syria,23/07/2014,31/12/2020,13/05/2022,13031 +INDUSTRIAL ESTABLISHMENT OF DEFENCE,,,,,,,,,,,,,,,,,,,P.O. Box 2230,,,,Al-Hameh,Damascus Countryside,,,"(UK Sanctions List Ref):SYR0309 Industrial - Military (UK Statement of Reasons):There are reasonable grounds to suspect that the Industrial Establishment of Defence is or has been involved in the repression of the civilian population and engaging in and promoting the repression and otherwise supported the regime in that it is has produced and supplied military equipment to the regime, and is associated with members of the regime, in particular the Syrian military.",Entity,Primary name,,Syria,23/07/2014,31/12/2020,13/05/2022,13031 +INDUSTRIAL ESTABLISHMENT OF DEFENCE,,,,,,,,,,,,,,,,,,,P.O. Box 2330,Al Thawraa Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0309 Industrial - Military (UK Statement of Reasons):There are reasonable grounds to suspect that the Industrial Establishment of Defence is or has been involved in the repression of the civilian population and engaging in and promoting the repression and otherwise supported the regime in that it is has produced and supplied military equipment to the regime, and is associated with members of the regime, in particular the Syrian military.",Entity,Primary name,,Syria,23/07/2014,31/12/2020,13/05/2022,13031 +INDUSTRIAL ESTABLISHMENT OF DEFENSE,,,,,,,,,,,,,,,,,,,P.O. Box 2230,,,,Al-Hameh,Damascus Countryside,,,"(UK Sanctions List Ref):SYR0309 Industrial - Military (UK Statement of Reasons):There are reasonable grounds to suspect that the Industrial Establishment of Defence is or has been involved in the repression of the civilian population and engaging in and promoting the repression and otherwise supported the regime in that it is has produced and supplied military equipment to the regime, and is associated with members of the regime, in particular the Syrian military.",Entity,AKA,,Syria,23/07/2014,31/12/2020,13/05/2022,13031 +INDUSTRIAL ESTABLISHMENT OF DEFENSE,,,,,,,,,,,,,,,,,,,P.O. Box 2330,Al Thawraa Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0309 Industrial - Military (UK Statement of Reasons):There are reasonable grounds to suspect that the Industrial Establishment of Defence is or has been involved in the repression of the civilian population and engaging in and promoting the repression and otherwise supported the regime in that it is has produced and supplied military equipment to the regime, and is associated with members of the regime, in particular the Syrian military.",Entity,AKA,,Syria,23/07/2014,31/12/2020,13/05/2022,13031 +INDUSTRIAL FACTORIES OF PRECISION (IFP) MACHINERY,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0153 (UN Ref):IRe.027 Used by AIO for some acquisition attempts. [Old Reference # E.03.III.5],Entity,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,31/12/2020,10446 +INDUSTRIAL FACTORIES OF PRECISION (IFP) MACHINERY GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0153 (UN Ref):IRe.027 Used by AIO for some acquisition attempts. [Old Reference # E.03.III.5],Entity,AKA,,Iran (Nuclear),04/03/2008,03/03/2008,31/12/2020,10446 +INDUSTRIAL SAVINGS BANK,,,,,,,,,,,,,,,,,,,Dmitrovsky Lane,7,,,,Moscow,107031,Russia,"(UK Sanctions List Ref):RUS0236 (UK Statement of Reasons):Since the annexation of Crimea, IS Bank, a Russian Bank, has operated across Crimea, after Ukrainian banks were stopped from operating there. Its business development is directly tied to the annexation of Crimea. In addition, it has been providing financial services, thereby facilitating the integration of Crimea into the Russian Federation through the financial system. (Phone number):(1) +7-4994018383 (2) 7-495 641 4070 (Website):www.isbank.ru (Type of entity):Bank (Business Reg No):1027739339715 (Russia)",Entity,Primary name variation,,Russia,22/02/2022,22/02/2022,03/03/2022,14180 +INDUSTRIAL SAVINGS BANK,,,,,,,,,,,,,,,,,,,Eldoradovsky Per 7,,,,,Moscow,1251677,,"(UK Sanctions List Ref):RUS0236 (UK Statement of Reasons):Since the annexation of Crimea, IS Bank, a Russian Bank, has operated across Crimea, after Ukrainian banks were stopped from operating there. Its business development is directly tied to the annexation of Crimea. In addition, it has been providing financial services, thereby facilitating the integration of Crimea into the Russian Federation through the financial system. (Phone number):(1) +7-4994018383 (2) 7-495 641 4070 (Website):www.isbank.ru (Type of entity):Bank (Business Reg No):1027739339715 (Russia)",Entity,Primary name variation,,Russia,22/02/2022,22/02/2022,03/03/2022,14180 +INDUSTRIAL SOLUTIONS,,,,,,,,,,,,,,,,,,,Baghdad Street 5,PO Box 6394,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0268 (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC (Scientific Studies and Research Centre) (Phone number):63100000000,Entity,Primary name,,Syria,02/12/2011,31/12/2020,31/12/2020,12428 +INDUSTRIAL-COMMERCIAL PRIVATE UNITARY ENTERPRISE MINOTOR-SERVICE,,,,,,,,,,,,,,,,,,,40 Radialnaya Street,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0122 (UK Statement of Reasons):Minotor-Service Enterprise is supporting the government of Belarus by operating in a sector of strategic significance, namely the defence sector.",Entity,Primary name variation,,Belarus,24/03/2022,24/03/2022,12/07/2022,14981 +INDUSTRIALNY SBEREGATELNY BANK,,,,,,,,,,,,,,,,,,,Dmitrovsky Lane,7,,,,Moscow,107031,Russia,"(UK Sanctions List Ref):RUS0236 (UK Statement of Reasons):Since the annexation of Crimea, IS Bank, a Russian Bank, has operated across Crimea, after Ukrainian banks were stopped from operating there. Its business development is directly tied to the annexation of Crimea. In addition, it has been providing financial services, thereby facilitating the integration of Crimea into the Russian Federation through the financial system. (Phone number):(1) +7-4994018383 (2) 7-495 641 4070 (Website):www.isbank.ru (Type of entity):Bank (Business Reg No):1027739339715 (Russia)",Entity,Primary name variation,,Russia,22/02/2022,22/02/2022,03/03/2022,14180 +INDUSTRIALNY SBEREGATELNY BANK,,,,,,,,,,,,,,,,,,,Eldoradovsky Per 7,,,,,Moscow,1251677,,"(UK Sanctions List Ref):RUS0236 (UK Statement of Reasons):Since the annexation of Crimea, IS Bank, a Russian Bank, has operated across Crimea, after Ukrainian banks were stopped from operating there. Its business development is directly tied to the annexation of Crimea. In addition, it has been providing financial services, thereby facilitating the integration of Crimea into the Russian Federation through the financial system. (Phone number):(1) +7-4994018383 (2) 7-495 641 4070 (Website):www.isbank.ru (Type of entity):Bank (Business Reg No):1027739339715 (Russia)",Entity,Primary name variation,,Russia,22/02/2022,22/02/2022,03/03/2022,14180 +INFOROS,,,,,,,,,,,,,,,,,,,Krzhizhanovskogo Street 13/2,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1382 (UK Statement of Reasons):InfoRos is an online news agency which spreads disinformation. It has provided support for and promoted actions and policies which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Phone number):(+) 7 495 718 84 11 (Website):http://inforos.ru (Type of entity):Media organisation (Business Reg No):(1) Taxpayer ID: 7727214569 (2) OGRN 1037739468084",Entity,Primary name,,Russia,04/05/2022,04/05/2022,04/05/2022,15339 +INGUSHI,Saifuddin,,,,,,,,,14/03/1992,"Ordzhonikidzevskaya village, Sunzhenskiy district, Ingushetia",Russia,Russia,,,,,,,,,,,Mosul,,Iraq,"(UK Sanctions List Ref):AQD0223 (UN Ref):QDi.405 Joined the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115) in September 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116563",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13516 +INJAI,Antonio,,,,,,António Injai,,,20/01/1955,"Encheia, Sector de Bissorá, Região de Oio",Guinea-Bissau,Guinea Bissau,AAID00435,Diplomatic Passport Issued 18 February 2010 in Guinea-Bissau. Expires 18 February 2013,,,(1) Chief of Staff of the Armed Forces (2) Lieutenant General,,,,,,,,,"(UK Sanctions List Ref):GUB0009 (UN Ref):GBi.005 Injai was listed on 18 May 2012 pursuant to paragraph 4 of resolution 2048 (2012) as “António Injai was personally involved in planning and leading the mutiny of 1 April 2010, culminating with the illegal apprehension of the Prime Minister, Carlo Gomes Junior, and the then Chief of Staff of the Armed Forces, José Zamora Induta; during the 2012 electoral period, in his capacity as Chief of Staff of the Armed Forces, Injai made statements threatening to overthrow the elected authorities and to put an end to the electoral process; António Injai has been involved in the operational planning of the coup d’état of 12 April 2012. In the aftermath of the coup, the first communiqué by the “Military Command” was issued by the Armed Forces General Staff, which is led by General Injai.” Father’s name is Wasna Injai; Mother’s name is Quiritche Cofte. (UK Statement of Reasons):In the aftermath of the coup, the first communiqué by the ‘Military Command’ was issued by the Armed Forces General Staff, which was led by General Injai (Gender):Male",Individual,Primary name,,Guinea-Bissau,04/05/2012,31/12/2020,10/03/2022,12664 +INJAI,Antonio,,,,,,António Injai,,,20/01/1955,"Encheia, Sector de Bissorá, Região de Oio",Guinea-Bissau,Guinea Bissau,AAID00435,Diplomatic Passport Issued 18 February 2010 in Guinea-Bissau. Expires 18 February 2013,,,(1) Chief of Staff of the Armed Forces (2) Lieutenant General,,,,,,,,,"(UK Sanctions List Ref):GUB0009 (UN Ref):GBi.005 Injai was listed on 18 May 2012 pursuant to paragraph 4 of resolution 2048 (2012) as “António Injai was personally involved in planning and leading the mutiny of 1 April 2010, culminating with the illegal apprehension of the Prime Minister, Carlo Gomes Junior, and the then Chief of Staff of the Armed Forces, José Zamora Induta; during the 2012 electoral period, in his capacity as Chief of Staff of the Armed Forces, Injai made statements threatening to overthrow the elected authorities and to put an end to the electoral process; António Injai has been involved in the operational planning of the coup d’état of 12 April 2012. In the aftermath of the coup, the first communiqué by the “Military Command” was issued by the Armed Forces General Staff, which is led by General Injai.” Father’s name is Wasna Injai; Mother’s name is Quiritche Cofte. (UK Statement of Reasons):In the aftermath of the coup, the first communiqué by the ‘Military Command’ was issued by the Armed Forces General Staff, which was led by General Injai (Gender):Male",Individual,Primary name,,Guinea-Bissau,04/05/2012,31/12/2020,10/03/2022,12664 +INLC,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0102 (UK Statement of Reasons):An entity that has supplied materials for use in gas centrifuge component production, and has been directly involved in construction planning for one of Iran's uranium enrichment sites. Fomerly known as Paya Partov. (Phone number):(1) +98 21 88373421 (2) +98 21 88638214 (Website):www.payapartov.com (Email address):service@payapartov.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11556 +INSTITUTE FOR APPLIED PHYSICS,,,,,,,,,,,,,,,,,,,P.O. Box 15875 5878,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0069 (UK Statement of Reasons):Has procured dual use items with applications in the Iranian nuclear programme. (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11949 +INSTITUTE FOR APPLIED PHYSICS,,,,,,,,,,,,,,,,,,,P.O. Box 16845 163,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0069 (UK Statement of Reasons):Has procured dual use items with applications in the Iranian nuclear programme. (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11949 +INSTITUTE OF APPLIED PHYSICS (IAP),,,,,,,,,,,,,,,,,,,P.O. Box 15875 5878,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0069 (UK Statement of Reasons):Has procured dual use items with applications in the Iranian nuclear programme. (Type of entity):Research,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11949 +INSTITUTE OF APPLIED PHYSICS (IAP),,,,,,,,,,,,,,,,,,,P.O. Box 16845 163,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0069 (UK Statement of Reasons):Has procured dual use items with applications in the Iranian nuclear programme. (Type of entity):Research,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11949 +INSTRUMENTATION FACTORIES PLANT,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0153 (UN Ref):IRe.027 Used by AIO for some acquisition attempts. [Old Reference # E.03.III.5],Entity,AKA,,Iran (Nuclear),04/03/2008,03/03/2008,31/12/2020,10446 +INSTRUMENTATION FACTORY PLANT,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0144 (UN Ref):IRe.017 Subordinate entity of AIO. [Old Reference # E.37.B.3] (Parent company):Aerospace Industries Organisation (AIO),Entity,FKA,,Iran (Nuclear),09/02/2007,23/12/2006,31/12/2020,8994 +INTEGRAL,,,,,,,ИНТЕГРАЛ,,,,,,,,,,,,121A,Kazintsa I.P. Str.,,,,Minsk,220108,Belarus,"(UK Sanctions List Ref):RUS0262 (UK Statement of Reasons):JSC Integral is a Belarusian defence SOE (state-owned enterprise) that produces semiconductors for military end-users, and supplies parts to both the Belarusian and Russian armed forces. Russian armed forces have been directly involved in the invasion of Ukraine. Belarusian armed forces have supported and enabled the Russian invasion of Ukraine, including by conducting joint military exercises with Russian armed forces which involved the deployment of Russian troops along the border of Belarus with Ukraine, which in turn directly contributed to Russia’s ability to both threaten and attack Ukraine, including from positions in Belarus. JSC Integral therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Phone number):+375-17-253-3562 (Website):https://integral.by/en (Email address):export@integral.by (Type of entity):Public Joint Stock Company (PJSC)",Entity,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14202 +INTEGRAL,,,,,,,ІНТЭГРАЛ,,,,,,,,,,,,121A,Kazintsa I.P. Str.,,,,Minsk,220108,Belarus,"(UK Sanctions List Ref):RUS0262 (UK Statement of Reasons):JSC Integral is a Belarusian defence SOE (state-owned enterprise) that produces semiconductors for military end-users, and supplies parts to both the Belarusian and Russian armed forces. Russian armed forces have been directly involved in the invasion of Ukraine. Belarusian armed forces have supported and enabled the Russian invasion of Ukraine, including by conducting joint military exercises with Russian armed forces which involved the deployment of Russian troops along the border of Belarus with Ukraine, which in turn directly contributed to Russia’s ability to both threaten and attack Ukraine, including from positions in Belarus. JSC Integral therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Phone number):+375-17-253-3562 (Website):https://integral.by/en (Email address):export@integral.by (Type of entity):Public Joint Stock Company (PJSC)",Entity,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14202 +INTEGRAL SPB,,,,,,,ИНТЕГРАЛ СПБ,Cyrillic,Russian,,,,,,,,,,"Irinovsky pr-kt, 21",building 1,,,,St. Petersburg,195279,Russia,"(UK Sanctions List Ref):RUS1432 KPP: 780601001 (UK Statement of Reasons):INTEGRAL SPB is an electronics company based in St Petersburg servicing the military and civilian markets. It is an appointed representative and distributor for JSC INTEGRAL, a Minsk based company designated by the UK on 1 March 2022. As a representative and distributor of JSC INTEGRAL, and benefiting through the selling of JSC INTEGRAL products in the Russian market, INTEGRAL SPB is associated with an involved person and therefore INTEGRAL SPB is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. Further, by selling electronics products to military customers, INTEGRAL SPB is also carrying on business in a sector of strategic significance to the Government of Russia, namely the electronics and defence sectors. (Phone number):7 (812) 640-78-90 (Website):http://integralspb.ru/o-kompanii/ (Email address):order@integralspb.ru (Parent company):JSC INTEGRAL (Business Reg No):Tax Identification Number: INN 7801047839",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15373 +INTEGRATED ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,Hossein Abad/Ardakan Road,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +INTEGRATED ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 18575-365,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +INTEGRATED ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 71265-1589,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +INTEGRATED ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 71365-1174,Eman Khomeini Ave.,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +INTEGRATED ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,PO Box 19575 365,Pasdran Ave.,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +INTEGRATED ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,Sh. Langari St.,Nobonyad Sq.,Pasdaran Ave.,,,Tehran,19574,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +INTEGRATED ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,Shahid Langari Street,Nobonyad Square,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +INTERNATIONAL BATTALION,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0050 (UN Ref):QDe.099 Linked to the Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs (RSRSBCM) (QDe.100) and the Special Purpose Islamic Regiment (SPIR) (QDe.101). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,12/01/2022,7202 +INTERNATIONAL CHEMICAL JOINT VENTURE COMPANY,,,,,,,,,,,,,,,,,,,,,,,Hamhung,South Hamgyong Province,,North Korea,(UK Sanctions List Ref):DPR0152 (UN Ref):KPe.039 Korea International Chemical Joint Venture Company is a subsidiary of Korea Ryonbong General Corporation – DPRK’s defense conglomerate specializing in acquisition for DPRK defense industries and support to Pyongyang’s military related sales – and has engaged in proliferation-related transactions. (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,30/11/2016,31/12/2020,12444 +INTERNATIONAL CHEMICAL JOINT VENTURE COMPANY,,,,,,,,,,,,,,,,,,,,,,,Man gyongdae-kuyok,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0152 (UN Ref):KPe.039 Korea International Chemical Joint Venture Company is a subsidiary of Korea Ryonbong General Corporation – DPRK’s defense conglomerate specializing in acquisition for DPRK defense industries and support to Pyongyang’s military related sales – and has engaged in proliferation-related transactions. (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,30/11/2016,31/12/2020,12444 +INTERNATIONAL CHEMICAL JOINT VENTURE COMPANY,,,,,,,,,,,,,,,,,,,,,,,Mangyungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0152 (UN Ref):KPe.039 Korea International Chemical Joint Venture Company is a subsidiary of Korea Ryonbong General Corporation – DPRK’s defense conglomerate specializing in acquisition for DPRK defense industries and support to Pyongyang’s military related sales – and has engaged in proliferation-related transactions. (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,30/11/2016,31/12/2020,12444 +INTERNATIONAL GATEWAYS GROUP OF COMPANIES LIMITED,,,,,,,,,,,,,,,,,,,No. 19,Kyaik Wine Pagoda Road,Myaing Hay Wun Housing,8-Mile,Mayangone,Yangon,,Myanmar,"(UK Sanctions List Ref):MYA0054 (UK Statement of Reasons):The Myanmar Security Forces have a track record of committing serious human rights violations and repression of the civilian population of Myanmar. In 2017, the Myanmar Security Forces murdered, raped and tortured thousands of Rohingya during the Rakhine clearance operations. 740,000 Rohingya were forced over the border into Bangladesh. International Gateways Group of Company Limited (IGG), a Myanmar-based company, contributed funds to the Myanmar Security Forces in 2017, at fundraising events for the Rakhine clearance operations held by Commander in Chief, Min Aung Hlaing. IGG has therefore made funds and economic resources available directly to or for the benefit of the Myanmar Security Forces, which could have contributed to serious human rights violations and repression of the civilian population in Myanmar. (Phone number):(1) 01-655821 (2) 01-653351 (3) 01-655831 (4) 01-652897 (Email address):pollinwei@gmail.com",Entity,Primary name,,Myanmar,24/08/2022,24/08/2022,24/08/2022,15497 +INTERNATIONAL GLOBAL SYSTEM,,,,,,,,,,,,,,,,,,,Room 818,Pothonggang Hotel,,Ansan-Dong,Pyongchon district,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0064 Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. (UK Statement of Reasons):Pan Systems has assisted in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related materiel to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau, which has been designated by the United Nations.",Entity,AKA,,Democratic People's Republic of Korea,16/10/2017,31/12/2020,31/12/2020,13553 +INTERNATIONAL GOLDEN SERVICES,,,,,,,,,,,,,,,,,,,Room 818,Pothonggang Hotel,,Ansan-Dong,Pyongchon district,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0064 Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. (UK Statement of Reasons):Pan Systems has assisted in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related materiel to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau, which has been designated by the United Nations.",Entity,AKA,,Democratic People's Republic of Korea,16/10/2017,31/12/2020,31/12/2020,13553 +INTERNATIONAL UNION OF PUBLIC ASSOCIATIONS 'GREAT DON ARMY',,,,,,,,,,,,,,,,,,,,,,,Voroshilovskiy Prospekt 12/85 - 87/13,Rostov-on-Don,,,"(UK Sanctions List Ref):RUS0177 (UK Statement of Reasons):The 'Great Don Army' established the 'Cossack National Guard', responsible for fighting against the Ukrainian government forces in Eastern Ukraine, thus undermining the territorial integrity, sovereignty and independence of Ukraine as well as threatening the stability or security of Ukraine. Associated with Mr Nikolay Kozitsyn, who is Commander of Cossack forces and responsible for commanding separatists in Eastern Ukraine fighting against the Ukraine government forces. (Phone number):-1209 (Website):Social Media: Cossack National Guard http://vk.com/kazak_nac_guard (Type of entity):State Owned Enterprise",Entity,Primary name,,Russia,25/07/2014,31/12/2020,16/09/2022,13052 +INTERNATIONAL UNION OF PUBLIC ASSOCIATIONS 'GREAT DON ARMY',,,,,,,,,,,,,,,,,,,Shosseynaya 1 St.,Zaplavskaya. Str.,,,October C District,Rostov Region,346465,Russia,"(UK Sanctions List Ref):RUS0177 (UK Statement of Reasons):The 'Great Don Army' established the 'Cossack National Guard', responsible for fighting against the Ukrainian government forces in Eastern Ukraine, thus undermining the territorial integrity, sovereignty and independence of Ukraine as well as threatening the stability or security of Ukraine. Associated with Mr Nikolay Kozitsyn, who is Commander of Cossack forces and responsible for commanding separatists in Eastern Ukraine fighting against the Ukraine government forces. (Phone number):-1209 (Website):Social Media: Cossack National Guard http://vk.com/kazak_nac_guard (Type of entity):State Owned Enterprise",Entity,Primary name,,Russia,25/07/2014,31/12/2020,16/09/2022,13052 +INTERNET RESEARCH AGENCY,,,,,,,Агентство Интернет Исследований,Cyrillic,Russian,,,,,,,,,,55 Savushkina Street,,,,,St Petersburg,197183,Russia,"(UK Sanctions List Ref):RUS0706 (UK Statement of Reasons):By creating fictitious personas to spread disinformation online, The Internet Research agency has sought to destabilise Ukraine, undermining and threatening the territorial integrity, sovereignty or independence of Ukraine.",Entity,Primary name,,Russia,15/03/2022,15/03/2022,20/05/2022,14657 +IOI,,,,,,,,,,,,,,,,,,,Kaveh Road,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +IOI,,,,,,,,,,,,,,,,,,,P.O. Box 81465-1117,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +IOI,,,,,,,,,,,,,,,,,,,P.O. Box 81465-313,Kaveh Ave,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +IOI,,,,,,,,,,,,,,,,,,,PO Box 81465-117,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +IPATAU,Vadim,Dmitrievich,,,,,,,,30/10/1964,"Kolomyia, Ivano-Frankivsk region",Ukraine,,,,,,(1) First Deputy Head of the Chief State legal department of the administration of the President of Belarus (2) Deputy Head of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0034 (UK Statement of Reasons):Vadzim Ipatau is the Deputy Chairman of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,13/04/2022,13963 +IPATAU,Vadzim,DZMITRYEVICH,,,,,Iпатаў Вадзiм Дзмiтрыевiч,,,30/10/1964,"Kolomyia, Ivano-Frankivsk region",Ukraine,,,,,,(1) First Deputy Head of the Chief State legal department of the administration of the President of Belarus (2) Deputy Head of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0034 (UK Statement of Reasons):Vadzim Ipatau is the Deputy Chairman of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,13/04/2022,13963 +IPATOV,Vadim,Dmitrievich,,,,,,,,30/10/1964,"Kolomyia, Ivano-Frankivsk region",Ukraine,,,,,,(1) First Deputy Head of the Chief State legal department of the administration of the President of Belarus (2) Deputy Head of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0034 (UK Statement of Reasons):Vadzim Ipatau is the Deputy Chairman of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,13/04/2022,13963 +IPATOV,Vadzim,DZMITRYEVICH,,,,,,,,30/10/1964,"Kolomyia, Ivano-Frankivsk region",Ukraine,,,,,,(1) First Deputy Head of the Chief State legal department of the administration of the President of Belarus (2) Deputy Head of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0034 (UK Statement of Reasons):Vadzim Ipatau is the Deputy Chairman of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,13/04/2022,13963 +IQBAL,A,Rahman,Mohamad,,,,,,,17/08/1958,"(1) Tirpas-Selong Village, East Lombok (2) Korleko-Lombok Timur",(1) Indonesia (2) Indonesia,Indonesia,,,3603251708570001,,,Jalan Nakula,Komplek Witana Harja III Blok C 106-107,,,,Tangerang,,Indonesia,(UK Sanctions List Ref):AQD0235 (UN Ref):QDi.086 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,6894 +IQBAL,A,Rahman,Mohamad,,,,,,,17/08/1957,"(1) Tirpas-Selong Village, East Lombok (2) Korleko-Lombok Timur",(1) Indonesia (2) Indonesia,Indonesia,,,3603251708570001,,,Jalan Nakula,Komplek Witana Harja III Blok C 106-107,,,,Tangerang,,Indonesia,(UK Sanctions List Ref):AQD0235 (UN Ref):QDi.086 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,6894 +IQBAL,Abdul,Rahman,Mohamad,,,,,,,17/08/1958,"(1) Tirpas-Selong Village, East Lombok (2) Korleko-Lombok Timur",(1) Indonesia (2) Indonesia,Indonesia,,,3603251708570001,,,Jalan Nakula,Komplek Witana Harja III Blok C 106-107,,,,Tangerang,,Indonesia,(UK Sanctions List Ref):AQD0235 (UN Ref):QDi.086 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,6894 +IQBAL,Abdul,Rahman,Mohamad,,,,,,,17/08/1957,"(1) Tirpas-Selong Village, East Lombok (2) Korleko-Lombok Timur",(1) Indonesia (2) Indonesia,Indonesia,,,3603251708570001,,,Jalan Nakula,Komplek Witana Harja III Blok C 106-107,,,,Tangerang,,Indonesia,(UK Sanctions List Ref):AQD0235 (UN Ref):QDi.086 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,6894 +IQBAL,Malik,Zafar,,,,,,,,04/10/1953,,,Pakistan,DG5149481,"Pakistan. Issued 22.8.2006, expired on 21.8.2011. Passport booklet number A2815665.",(1) 29553654234 (2) 35202-4135948-7,,,Masjid al-Qadesia,4 Lake Road,,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0339 (UN Ref):QDi.308 Senior leader and co-founder of Lashkar-e-Tayyiba (QDe.118) (LeT) who has held various senior leader positions in LeT and its front organization, Jamaat-ud-Dawa (JUD) (listed as an alias of LeT). As of 2010, in charge of LeT/JUD finance department, director of its education department and president of its medical wing. Other title: Professor. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741596",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,11/02/2022,12631 +IQBAL,Muhammad,Ricky,Ardhan,bin Muhammad,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +IQBAL,Muhammad,Ricky,Ardhan,bin Muhammad,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +IQBAL,Muhammad,Ricky,Ardhan,bin Muhammad,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +IQBAL,Muhammad,Ricky,Ardhan,bin Muhammad,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +IQBAL,Muhammad,Ricky,Ardhan,bin Muhammad,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +IQBAL,Muhammad,Ricky,Ardhan,bin Muhammad,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +IQBAL,Muhammad,Ricky,Ardhan,bin Muhammad,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +IQBAL,Muhammad,Ricky,Ardhan,bin Muhammad,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +IQBAL,Muhammad,Zafar,,,,,,,,04/10/1953,,,Pakistan,DG5149481,"Pakistan. Issued 22.8.2006, expired on 21.8.2011. Passport booklet number A2815665.",(1) 29553654234 (2) 35202-4135948-7,,,Masjid al-Qadesia,4 Lake Road,,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0339 (UN Ref):QDi.308 Senior leader and co-founder of Lashkar-e-Tayyiba (QDe.118) (LeT) who has held various senior leader positions in LeT and its front organization, Jamaat-ud-Dawa (JUD) (listed as an alias of LeT). As of 2010, in charge of LeT/JUD finance department, director of its education department and president of its medical wing. Other title: Professor. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741596",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,11/02/2022,12631 +IQBAL,Rahman,Mohamad,,,,,,,,17/08/1958,"(1) Tirpas-Selong Village, East Lombok (2) Korleko-Lombok Timur",(1) Indonesia (2) Indonesia,Indonesia,,,3603251708570001,,,Jalan Nakula,Komplek Witana Harja III Blok C 106-107,,,,Tangerang,,Indonesia,(UK Sanctions List Ref):AQD0235 (UN Ref):QDi.086 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,6894 +IQBAL,Rahman,Mohamad,,,,,,,,17/08/1957,"(1) Tirpas-Selong Village, East Lombok (2) Korleko-Lombok Timur",(1) Indonesia (2) Indonesia,Indonesia,,,3603251708570001,,,Jalan Nakula,Komplek Witana Harja III Blok C 106-107,,,,Tangerang,,Indonesia,(UK Sanctions List Ref):AQD0235 (UN Ref):QDi.086 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,6894 +IQBAL,Zaffer,,,,,,,,,04/10/1953,,,Pakistan,DG5149481,"Pakistan. Issued 22.8.2006, expired on 21.8.2011. Passport booklet number A2815665.",(1) 29553654234 (2) 35202-4135948-7,,,Masjid al-Qadesia,4 Lake Road,,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0339 (UN Ref):QDi.308 Senior leader and co-founder of Lashkar-e-Tayyiba (QDe.118) (LeT) who has held various senior leader positions in LeT and its front organization, Jamaat-ud-Dawa (JUD) (listed as an alias of LeT). As of 2010, in charge of LeT/JUD finance department, director of its education department and president of its medical wing. Other title: Professor. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741596",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,11/02/2022,12631 +IQBAL,ZAFAR,,,,,,,,,04/10/1953,,,Pakistan,DG5149481,"Pakistan. Issued 22.8.2006, expired on 21.8.2011. Passport booklet number A2815665.",(1) 29553654234 (2) 35202-4135948-7,,,Masjid al-Qadesia,4 Lake Road,,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0339 (UN Ref):QDi.308 Senior leader and co-founder of Lashkar-e-Tayyiba (QDe.118) (LeT) who has held various senior leader positions in LeT and its front organization, Jamaat-ud-Dawa (JUD) (listed as an alias of LeT). As of 2010, in charge of LeT/JUD finance department, director of its education department and president of its medical wing. Other title: Professor. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741596",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,11/02/2022,12631 +IRAKEZA,Fred,,,,,,,,,00/00/1967,"(1) Kinyinya, Kigali. (2) Murama, Kigali. (3) Rubungo, Kigali",(1) Rwanda. (2) Rwanda. (3) Rwanda.,Rwanda,,,,,FDLR-FOCA Colonel. FDLR-FOCA Subsector Commander,,,,,,South Kivu Province,,Congo (Democratic Republic),(UK Sanctions List Ref):DRC0029 (UN Ref):CDi.023 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5269078 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,03/12/2010,01/12/2010,31/12/2020,11277 +IRAN AIRCRAFT INDUSTRIES (IACI),,,,,,,صها مخفف فارسی صنایع هواپیمایی ایران,,,,,,,,,,,,Ekbatan City,Karaj Road,Azadi Sq.,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IRAN AIRCRAFT INDUSTRIES (IACI),,,,,,,صها مخفف فارسی صنایع هواپیمایی ایران,,,,,,,,,,,,P.O. Box 14155/1449,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IRAN AIRCRAFT INDUSTRIES (IACI),,,,,,,صها مخفف فارسی صنایع هواپیمایی ایران,,,,,,,,,,,,P.O. Box 83145/311,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IRAN AIRCRAFT INDUSTRIES (IACI),,,,,,,صها مخفف فارسی صنایع هواپیمایی ایران,,,,,,,,,,,,Plant No. 1,opp. Of 2nd Phase of Shahrak e Ekbatan,Karaj Special Road,Mehrabad Airport,,1000 Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IRAN AIRCRAFT INDUSTRIES (IACI),,,,,,,صها مخفف فارسی صنایع هواپیمایی ایران,,,,,,,,,,,,Sepabhod Gharani 36,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IRAN AIRCRAFT INDUSTRIES (IACI),,,,,,,صها مخفف فارسی صنایع هواپیمایی ایران,,,,,,,,,,,,Special Karaj Road,Mehrabad Airport,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IRAN AIRCRAFT INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,Ekbatan City,Karaj Road,Azadi Sq.,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IRAN AIRCRAFT INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,P.O. Box 14155/1449,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IRAN AIRCRAFT INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,P.O. Box 83145/311,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IRAN AIRCRAFT INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,Plant No. 1,opp. Of 2nd Phase of Shahrak e Ekbatan,Karaj Special Road,Mehrabad Airport,,1000 Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IRAN AIRCRAFT INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,Sepabhod Gharani 36,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IRAN AIRCRAFT INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,Special Karaj Road,Mehrabad Airport,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +IRAN AIRCRAFT MANUFACTURING COMPANY (IAMCO),,,,,,,,,,,,,,,,,,,No. 27 Shahamat Ave.,Vallie asr Square.,,,,Tehran (HESA Tehran Office),15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IRAN AIRCRAFT MANUFACTURING COMPANY (IAMCO),,,,,,,,,,,,,,,,,,,P.O. Box 14155 5568,No. 27 Ahahamat Ave.,Vallie Asr Square,,,Tehran,15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IRAN AIRCRAFT MANUFACTURING COMPANY (IAMCO),,,,,,,,,,,,,,,,,,,P.O. Box 8140,No. 107 Sepahbod Gharany Ave.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IRAN AIRCRAFT MANUFACTURING COMPANY (IAMCO),,,,,,,,,,,,,,,,,,,P.O. Box 83145 311,28 km Esfahan Tehran Freeway,Shain Shahr,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IRAN AIRCRAFT MANUFACTURING COMPANY (IAMCO),,,,,,,,,,,,,,,,,,,P.O. Box81465 935,,,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IRAN AIRCRAFT MANUFACTURING COMPANY (IAMCO),,,,,,,,,,,,,,,,,,,Shahih Shar Industrial Zone,,,,,Isfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IRAN AIRCRAFT MANUFACTURING INDUSTRIES,,,,,,,,,,,,,,,,,,,No. 27 Shahamat Ave.,Vallie asr Square.,,,,Tehran (HESA Tehran Office),15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IRAN AIRCRAFT MANUFACTURING INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 14155 5568,No. 27 Ahahamat Ave.,Vallie Asr Square,,,Tehran,15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IRAN AIRCRAFT MANUFACTURING INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 8140,No. 107 Sepahbod Gharany Ave.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IRAN AIRCRAFT MANUFACTURING INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 83145 311,28 km Esfahan Tehran Freeway,Shain Shahr,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IRAN AIRCRAFT MANUFACTURING INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box81465 935,,,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IRAN AIRCRAFT MANUFACTURING INDUSTRIES,,,,,,,,,,,,,,,,,,,Shahih Shar Industrial Zone,,,,,Isfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +IRAN AVIATION INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,107 Sepahbod Gharani Avenue,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +IRAN AVIATION INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,3th km Karaj Special Road,Aviation Industries Boulevard,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +IRAN AVIATION INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,Ave. Sepahbod Gharani PO Box 15815/1775,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +IRAN AVIATION INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,Karaj Special Road,Mehrabad Airport,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +IRAN AVIATION INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,Sepahbod Gharani 36,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +IRAN CENTRIFUGE TECHNOLOGY CO.,,,,,,,,,,,,,,,,,,,156 Golestan Street,Saradr e Jangal,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN CENTRIFUGE TECHNOLOGY CO.,,,,,,,,,,,,,,,,,,,Khalij e Fars Boulevard,Kilometre 10 of Atomic Energy Road,Rowshan Shahr,Third Moshtaq Street,,Esfahan,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN CENTRIFUGE TECHNOLOGY CO.,,,,,,,,,,,,,,,,,,,Km. 55th of Tehran-Qazvin Rd.,,,,,Karaj,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN CENTRIFUGE TECHNOLOGY CO.,,,,,,,,,,,,,,,,,,,No.239,Africa Ave.,Apartment No.12,First Floor,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN CENTRIFUGE TECHNOLOGY CO.,,,,,,,,,,,,,,,,,,,Northwest of Karaj at Km 55 Qazvin (alt. Ghazvin) Highway,,,,,Haljerd,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN CENTRIFUGE TECHNOLOGY CO.,,,,,,,,,,,,,,,,,,,Yousef Abad District,No. 1,37th Street,,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN CENTRIFUGE TECHNOLOGY CO.,,,,,,,,,,,,,,,,,,,No.66,Sarhang Sakhaei St.,Hafez Avenue,,,Tehran,11367,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN CENTRIFUGE TECHNOLOGY CO.,,,,,,,,,,,,,,,,,,,No.66,Sarhang Sakhaei St.,Hafez Avenue,,,Tehran,(11367),Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN CENTRIFUGE TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,156 Golestan Street,Saradr e Jangal,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN CENTRIFUGE TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,Khalij e Fars Boulevard,Kilometre 10 of Atomic Energy Road,Rowshan Shahr,Third Moshtaq Street,,Esfahan,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN CENTRIFUGE TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,Km. 55th of Tehran-Qazvin Rd.,,,,,Karaj,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN CENTRIFUGE TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,No.239,Africa Ave.,Apartment No.12,First Floor,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN CENTRIFUGE TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,Northwest of Karaj at Km 55 Qazvin (alt. Ghazvin) Highway,,,,,Haljerd,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN CENTRIFUGE TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,Yousef Abad District,No. 1,37th Street,,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN CENTRIFUGE TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,No.66,Sarhang Sakhaei St.,Hafez Avenue,,,Tehran,11367,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN CENTRIFUGE TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,No.66,Sarhang Sakhaei St.,Hafez Avenue,,,Tehran,(11367),Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN COMMUNICATIONS INDUSTRIES,,,,,,,,,,,,,,,,,,,34 Khorramshar Street,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMMUNICATIONS INDUSTRIES,,,,,,,,,,,,,,,,,,,Apadana Ave.,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMMUNICATIONS INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 15875 4337,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMMUNICATIONS INDUSTRIES,,,,,,,,,,,,,,,,,,,PO Box 19295 4731,Pasdaran Ave,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMMUNICATIONS INDUSTRIES,,,,,,,,,,,,,,,,,,,PO Box 19575 131,34 Apadana Ave,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMMUNICATIONS INDUSTRIES,,,,,,,,,,,,,,,,,,,Shahid Langary St,Nobonyad Square Ave,Pasdaran,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMMUNICATIONS INDUSTRIES (ICI),,,,,,,,,,,,,,,,,,,34 Khorramshar Street,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMMUNICATIONS INDUSTRIES (ICI),,,,,,,,,,,,,,,,,,,Apadana Ave.,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMMUNICATIONS INDUSTRIES (ICI),,,,,,,,,,,,,,,,,,,P.O. Box 15875 4337,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMMUNICATIONS INDUSTRIES (ICI),,,,,,,,,,,,,,,,,,,PO Box 19295 4731,Pasdaran Ave,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMMUNICATIONS INDUSTRIES (ICI),,,,,,,,,,,,,,,,,,,PO Box 19575 131,34 Apadana Ave,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMMUNICATIONS INDUSTRIES (ICI),,,,,,,,,,,,,,,,,,,Shahid Langary St,Nobonyad Square Ave,Pasdaran,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMMUNICATIONS INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,34 Khorramshar Street,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMMUNICATIONS INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,Apadana Ave.,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMMUNICATIONS INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,P.O. Box 15875 4337,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMMUNICATIONS INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,PO Box 19295 4731,Pasdaran Ave,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMMUNICATIONS INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,PO Box 19575 131,34 Apadana Ave,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMMUNICATIONS INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,Shahid Langary St,Nobonyad Square Ave,Pasdaran,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +IRAN COMPOSITES INSTITUTE (ICI),,,,,,,,,,,,,,,,,,,Iran Composites Institute,Iranian University of Science and Technology,16845-188,,,Tehran,,Iran,(UK Sanctions List Ref):INU0074 (UK Statement of Reasons):Iran Composites Institute has provided centrifuge components to Iran Centrifuge Technology Company (TESA). (Phone number):+98 2173912858 (Website):http://www.irancomposites.org. (Email address):ici@iust.ac.ir,Entity,Primary name,,Iran (Nuclear),24/12/2012,31/12/2020,31/12/2020,12815 +IRAN ELECTRONIC COMPONENTS INDUSTRIES COMPANY,,,,,,,,,,,,,,,,,,,Hossain Abad Avenue,,,,,Shiraz,,Iran,(UK Sanctions List Ref):INU0060 (UK Statement of Reasons):Subsidiary of Iran Electronics Industries (Type of entity):Enterprise (Parent company):Iran Electronic Industries (a MODAFL subsidiary),Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11952 +IRAN ELECTRONIC INDUSTRIES CO. (SAIRAN),,,,,,,,,,,,,,,,,,,Hossein Abad/Ardakan Road,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONIC INDUSTRIES CO. (SAIRAN),,,,,,,,,,,,,,,,,,,P.O. Box 18575-365,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONIC INDUSTRIES CO. (SAIRAN),,,,,,,,,,,,,,,,,,,P.O. Box 71265-1589,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONIC INDUSTRIES CO. (SAIRAN),,,,,,,,,,,,,,,,,,,P.O. Box 71365-1174,Eman Khomeini Ave.,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONIC INDUSTRIES CO. (SAIRAN),,,,,,,,,,,,,,,,,,,PO Box 19575 365,Pasdran Ave.,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONIC INDUSTRIES CO. (SAIRAN),,,,,,,,,,,,,,,,,,,Sh. Langari St.,Nobonyad Sq.,Pasdaran Ave.,,,Tehran,19574,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONIC INDUSTRIES CO. (SAIRAN),,,,,,,,,,,,,,,,,,,Shahid Langari Street,Nobonyad Square,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,Hossein Abad/Ardakan Road,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 18575-365,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 71265-1589,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 71365-1174,Eman Khomeini Ave.,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,PO Box 19575 365,Pasdran Ave.,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,Sh. Langari St.,Nobonyad Sq.,Pasdaran Ave.,,,Tehran,19574,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,Shahid Langari Street,Nobonyad Square,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONICS INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,Hossein Abad/Ardakan Road,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONICS INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,P.O. Box 18575-365,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONICS INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,P.O. Box 71265-1589,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONICS INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,P.O. Box 71365-1174,Eman Khomeini Ave.,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONICS INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,PO Box 19575 365,Pasdran Ave.,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONICS INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,Sh. Langari St.,Nobonyad Sq.,Pasdaran Ave.,,,Tehran,19574,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN ELECTRONICS INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,Shahid Langari Street,Nobonyad Square,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +IRAN MARINE INDUSTRIAL CO.,,,,,,,,,,,,,,,,,,,Exclusive Road,Bushehr Grazjan Road,5km,,,Bushehr,75179197793,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIAL CO.,,,,,,,,,,,,,,,,,,,No. 3 Shafagh St. Dadman Blvd,Qods Square,,,PO Box 14665 495,Tehran,,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIAL CO.,,,,,,,,,,,,,,,,,,,Office E 43,Torre E Piso4,Centro Commercial Lido Av,Francisco de Miranda,,Caracas,,Venezuela,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIAL CO.,,,,,,,,,,,,,,,,,,,Sadra Building No 3,Shafagh St,Poonak Khavari Blvd,Shahrak Ghods,PO Box 14669 56491,Tehran,,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIAL CO.,,,,,,,,,,,,,,,,,,,Zanzabil Mountain Side,Shahid Kalantari Road 24 km,,,,Urmia,4851758674,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIAL COMPANY,,,,,,,,,,,,,,,,,,,Exclusive Road,Bushehr Grazjan Road,5km,,,Bushehr,75179197793,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIAL COMPANY,,,,,,,,,,,,,,,,,,,No. 3 Shafagh St. Dadman Blvd,Qods Square,,,PO Box 14665 495,Tehran,,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIAL COMPANY,,,,,,,,,,,,,,,,,,,Office E 43,Torre E Piso4,Centro Commercial Lido Av,Francisco de Miranda,,Caracas,,Venezuela,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIAL COMPANY,,,,,,,,,,,,,,,,,,,Sadra Building No 3,Shafagh St,Poonak Khavari Blvd,Shahrak Ghods,PO Box 14669 56491,Tehran,,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIAL COMPANY,,,,,,,,,,,,,,,,,,,Zanzabil Mountain Side,Shahid Kalantari Road 24 km,,,,Urmia,4851758674,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIAL COMPANY (SADRA),,,,,,,(شركت صنعتي دريايي ايران (صدرا,,,,,,,,,,,,Exclusive Road,Bushehr Grazjan Road,5km,,,Bushehr,75179197793,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIAL COMPANY (SADRA),,,,,,,(شركت صنعتي دريايي ايران (صدرا,,,,,,,,,,,,No. 3 Shafagh St. Dadman Blvd,Qods Square,,,PO Box 14665 495,Tehran,,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIAL COMPANY (SADRA),,,,,,,(شركت صنعتي دريايي ايران (صدرا,,,,,,,,,,,,Office E 43,Torre E Piso4,Centro Commercial Lido Av,Francisco de Miranda,,Caracas,,Venezuela,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIAL COMPANY (SADRA),,,,,,,(شركت صنعتي دريايي ايران (صدرا,,,,,,,,,,,,Sadra Building No 3,Shafagh St,Poonak Khavari Blvd,Shahrak Ghods,PO Box 14669 56491,Tehran,,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIAL COMPANY (SADRA),,,,,,,(شركت صنعتي دريايي ايران (صدرا,,,,,,,,,,,,Zanzabil Mountain Side,Shahid Kalantari Road 24 km,,,,Urmia,4851758674,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIES CO.IMICO,,,,,,,,,,,,,,,,,,,Exclusive Road,Bushehr Grazjan Road,5km,,,Bushehr,75179197793,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIES CO.IMICO,,,,,,,,,,,,,,,,,,,No. 3 Shafagh St. Dadman Blvd,Qods Square,,,PO Box 14665 495,Tehran,,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIES CO.IMICO,,,,,,,,,,,,,,,,,,,Office E 43,Torre E Piso4,Centro Commercial Lido Av,Francisco de Miranda,,Caracas,,Venezuela,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIES CO.IMICO,,,,,,,,,,,,,,,,,,,Sadra Building No 3,Shafagh St,Poonak Khavari Blvd,Shahrak Ghods,PO Box 14669 56491,Tehran,,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRIES CO.IMICO,,,,,,,,,,,,,,,,,,,Zanzabil Mountain Side,Shahid Kalantari Road 24 km,,,,Urmia,4851758674,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRY CO.,,,,,,,,,,,,,,,,,,,Exclusive Road,Bushehr Grazjan Road,5km,,,Bushehr,75179197793,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRY CO.,,,,,,,,,,,,,,,,,,,No. 3 Shafagh St. Dadman Blvd,Qods Square,,,PO Box 14665 495,Tehran,,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRY CO.,,,,,,,,,,,,,,,,,,,Office E 43,Torre E Piso4,Centro Commercial Lido Av,Francisco de Miranda,,Caracas,,Venezuela,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRY CO.,,,,,,,,,,,,,,,,,,,Sadra Building No 3,Shafagh St,Poonak Khavari Blvd,Shahrak Ghods,PO Box 14669 56491,Tehran,,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRY CO.,,,,,,,,,,,,,,,,,,,Zanzabil Mountain Side,Shahid Kalantari Road 24 km,,,,Urmia,4851758674,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRY COMPANY,,,,,,,,,,,,,,,,,,,Exclusive Road,Bushehr Grazjan Road,5km,,,Bushehr,75179197793,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRY COMPANY,,,,,,,,,,,,,,,,,,,No. 3 Shafagh St. Dadman Blvd,Qods Square,,,PO Box 14665 495,Tehran,,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRY COMPANY,,,,,,,,,,,,,,,,,,,Office E 43,Torre E Piso4,Centro Commercial Lido Av,Francisco de Miranda,,Caracas,,Venezuela,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRY COMPANY,,,,,,,,,,,,,,,,,,,Sadra Building No 3,Shafagh St,Poonak Khavari Blvd,Shahrak Ghods,PO Box 14669 56491,Tehran,,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MARINE INDUSTRY COMPANY,,,,,,,,,,,,,,,,,,,Zanzabil Mountain Side,Shahid Kalantari Road 24 km,,,,Urmia,4851758674,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +IRAN MORALITY POLICE,,,,,,,,,,,,,,,,,,,Vozara Street,corner of 25th Street,District 6,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0085 (UK Statement of Reasons):The Morality Police are or have been involved in the commission of serious human rights violations in Iran, including being responsible for, engaging in and promoting violations of the right to liberty and security and the right to freedom of expression through their enforcement of mandatory dress codes for women, including the use of unreasonable force against individuals they deem to be non-compliant. (Type of entity):State Religious Police Force",Entity,Primary name variation,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15598 +IRAN POOYA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0077 (UK Statement of Reasons):A company manufacturing aluminium casings for centrifuges whose customers reportedly included the Iran Centrifuge Technology Company (TESA). (Phone number):+98 21 88779497 8,Entity,Primary name variation,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12255 +IRAN POUYA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0077 (UK Statement of Reasons):A company manufacturing aluminium casings for centrifuges whose customers reportedly included the Iran Centrifuge Technology Company (TESA). (Phone number):+98 21 88779497 8,Entity,Primary name variation,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12255 +IRAN PUYA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0077 (UK Statement of Reasons):A company manufacturing aluminium casings for centrifuges whose customers reportedly included the Iran Centrifuge Technology Company (TESA). (Phone number):+98 21 88779497 8,Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12255 +IRAN SAFFRON COMPANY,,,,,,,,,,,,,,,,,,,,,,,West Lavasani,Tehran,9821,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +IRAN SAFFRON COMPANY,,,,,,,,,,,,,,,,,,,Sa'adat Abaad,Shahrdari Sq. Sarv Building,9th Floor,Unit 5,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +IRAN SAFFRON COMPANY,,,,,,,,,,,,,,,,,,,No.17,Balooch Alley,Vaezi St,Shariati Ave.,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +IRANIAN ATOMIC FUEL DEVELOPMENT ENGINEERING COMPANY,,,,,,,,,,,,,,,,,,,90,Fathi Shaghaghi Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0092 (UK Statement of Reasons):An Iranian company which has been contracted by UN designated Kalaye Electric Company to provide design and engineering services across the nuclear fuel cycle, including at Natanz Fuel Enrichment Plant. (Type of entity):Engineering",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12260 +IRANIAN ATOMIC FUEL DEVELOPMENT ENGINEERING COMPANY,,,,,,,,,,,,,,,,,,,27,Alvand Avenue,37th Street,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0092 (UK Statement of Reasons):An Iranian company which has been contracted by UN designated Kalaye Electric Company to provide design and engineering services across the nuclear fuel cycle, including at Natanz Fuel Enrichment Plant. (Type of entity):Engineering",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12260 +IRANIAN AVIATION INDUSTRIES ORGANIZATION (IAIO),,,,,,,,,,,,,,,,,,,107 Sepahbod Gharani Avenue,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +IRANIAN AVIATION INDUSTRIES ORGANIZATION (IAIO),,,,,,,,,,,,,,,,,,,3th km Karaj Special Road,Aviation Industries Boulevard,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +IRANIAN AVIATION INDUSTRIES ORGANIZATION (IAIO),,,,,,,,,,,,,,,,,,,Ave. Sepahbod Gharani PO Box 15815/1775,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +IRANIAN AVIATION INDUSTRIES ORGANIZATION (IAIO),,,,,,,,,,,,,,,,,,,Karaj Special Road,Mehrabad Airport,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +IRANIAN AVIATION INDUSTRIES ORGANIZATION (IAIO),,,,,,,,,,,,,,,,,,,Sepahbod Gharani 36,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +IRANIAN COMPOSITE INDUSTITE,,,,,,,,,,,,,,,,,,,Iran Composites Institute,Iranian University of Science and Technology,16845-188,,,Tehran,,Iran,(UK Sanctions List Ref):INU0074 (UK Statement of Reasons):Iran Composites Institute has provided centrifuge components to Iran Centrifuge Technology Company (TESA). (Phone number):+98 2173912858 (Website):http://www.irancomposites.org. (Email address):ici@iust.ac.ir,Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,31/12/2020,12815 +IRANIAN ENRICHMENT COMPANY.,,,,,,,,,,,,,,,,,,,,Qarqavol Close,20th Street,,,Tehran,,,(UK Sanctions List Ref):INU0066 (UK Statement of Reasons):Known to have production contracts with Iran Centrifuge Technology Company (TESA). (Parent company):(1) Novin Energy (2) TAMAS,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12254 +IRANIAN NATIONAL CENTRE FOR LASER SCIENCE AND TECHNOLOGY,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0102 (UK Statement of Reasons):An entity that has supplied materials for use in gas centrifuge component production, and has been directly involved in construction planning for one of Iran's uranium enrichment sites. Fomerly known as Paya Partov. (Phone number):(1) +98 21 88373421 (2) +98 21 88638214 (Website):www.payapartov.com (Email address):service@payapartov.com",Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11556 +IRANIAN NATIONAL GEOGRAPHICAL ORGANISATION OF ARMED FORCES,,,,,,,,,,,,,,,,,,,Ferdowsi Avenue,,,,,Sarhang,,Iran,(UK Sanctions List Ref):INU0054 (UK Statement of Reasons):A subsidiary of MODAFL assessed to provide geospatial data for the ballistic missile programme (Type of entity):Public (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,31/12/2020,10648 +IRANIAN NATIONAL GEOGRAPHICAL ORGANISATION OF ARMED FORCES,,,,,,,,,,,,,,,,,,,Sakhei Avenue,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0054 (UK Statement of Reasons):A subsidiary of MODAFL assessed to provide geospatial data for the ballistic missile programme (Type of entity):Public (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,31/12/2020,10648 +IRANIAN OFFICE OF GERMAN JELVETACH UG,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0086 (UK Statement of Reasons):Jelvesazan Company assisted designated entities to violate the provisions of UN and EU sanctions on Iran and directly supported Iran's proliferation sensitive nuclear activities. As of early 2012 Jelvesazan intended to supply controlled vacuum pumps to Iran Centrifuge Technology Company (TESA). (Phone number):+98 03112658311 15,Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,08/03/2022,12817 +IRAN'S CENTRIFUGE TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,156 Golestan Street,Saradr e Jangal,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN'S CENTRIFUGE TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,Khalij e Fars Boulevard,Kilometre 10 of Atomic Energy Road,Rowshan Shahr,Third Moshtaq Street,,Esfahan,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN'S CENTRIFUGE TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,Km. 55th of Tehran-Qazvin Rd.,,,,,Karaj,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN'S CENTRIFUGE TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,No.239,Africa Ave.,Apartment No.12,First Floor,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN'S CENTRIFUGE TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,Northwest of Karaj at Km 55 Qazvin (alt. Ghazvin) Highway,,,,,Haljerd,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN'S CENTRIFUGE TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,Yousef Abad District,No. 1,37th Street,,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN'S CENTRIFUGE TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,No.66,Sarhang Sakhaei St.,Hafez Avenue,,,Tehran,11367,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAN'S CENTRIFUGE TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,No.66,Sarhang Sakhaei St.,Hafez Avenue,,,Tehran,(11367),Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +IRAQ,Ami,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +IRGC AEROSPACE FORCE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0081 (UK Statement of Reasons):Operates Iran’s inventory of short and medium range ballistic missiles and is responsible for controlling Iran’s strategic missile force. Controlled by and acts on behalf of the IRGC. (Type of entity):Military (Parent company):Islamic Revolutionary Guard Corps,Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10660 +IRGC AIR FORCE MISSILE COMMAND,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0083 (UK Statement of Reasons):The IRGC-Air Force Al Ghadir Missile Command is a specific element within the IRGC Air Force that has been working with SBIG (designated under UNSCR 1737) with the FATEH 110, short range ballistic missile as well as Ashura medium range ballistic missile. This command appears to be the entity that actually has the operational control of the missiles. Controlled by the IRGC. (Type of entity):Military (Parent company):Islamic Revolutionary Guard Corps",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11239 +IRGC COOPERATIVE FOUNDATION,,,,,,,,,,,,,,,,,,,Niayes Highway,Seoul Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0059 (UK Statement of Reasons):Bonyad Taavon Sepah, also known as the IRGC Cooperative Foundation, was formed by the commanders of the IRGC to structure the IRGC's investments. It is controlled by the IRGC. Bonyad Taavon Sepah's Board of Trustees is composed of nine members, of whom eight are IRGC members. These officers include the IRGC's Commander in Chief, who is the Chairman of the Board of Trustees, the Supreme Leader's representative to the IRGC , the Basij Commander, the IRGC Ground Forces Commander, the IRGC Air Force Commander, the IRGC Navy Commander, the head of the IRGC Information Security Organisation, a senior IRGC officer from the Armed Forces general staff and a senior IRGC officer from MODAFL. (Type of entity):Foundation (Subsidiaries):Ansar Bank. Mehr Bank",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11580 +IRGC MISSILE COMMAND,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0083 (UK Statement of Reasons):The IRGC-Air Force Al Ghadir Missile Command is a specific element within the IRGC Air Force that has been working with SBIG (designated under UNSCR 1737) with the FATEH 110, short range ballistic missile as well as Ashura medium range ballistic missile. This command appears to be the entity that actually has the operational control of the missiles. Controlled by the IRGC. (Type of entity):Military (Parent company):Islamic Revolutionary Guard Corps",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11239 +IRGC QF,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,AKA,,Syria,24/08/2011,31/12/2020,13/05/2022,11241 +IRGC QF,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,13/05/2022,11241 +IRGCAF (PASDARAN),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0081 (UK Statement of Reasons):Operates Iran’s inventory of short and medium range ballistic missiles and is responsible for controlling Iran’s strategic missile force. Controlled by and acts on behalf of the IRGC. (Type of entity):Military (Parent company):Islamic Revolutionary Guard Corps,Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10660 +IRGC-AIR FORCE MISSILE COMMAND,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0083 (UK Statement of Reasons):The IRGC-Air Force Al Ghadir Missile Command is a specific element within the IRGC Air Force that has been working with SBIG (designated under UNSCR 1737) with the FATEH 110, short range ballistic missile as well as Ashura medium range ballistic missile. This command appears to be the entity that actually has the operational control of the missiles. Controlled by the IRGC. (Type of entity):Military (Parent company):Islamic Revolutionary Guard Corps",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11239 +IRGC-QF,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,AKA,,Syria,24/08/2011,31/12/2020,13/05/2022,11241 +IRGC-QF,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,13/05/2022,11241 +IRHAYYIM,Omar,Mahmood,,,,,,,,16/06/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +IRHAYYIM,Omar,Mahmood,,,,,,,,01/01/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +IRON TWILIGHT,,,,,,,,,,,,,,,,,,,Komsomol'skiy Prospekt,,,,,20 Moscow,119146,Russia,"(UK Sanctions List Ref):CYB0012 (UK Statement of Reasons):The 85th Main Centre for Special Technologies (GTsSS) of the Russian General Staff of the Armed Forces of the Russian Federation (GRU) - also known by its field post number ‘26165’ and industry nicknames: APT28, Fancy Bear, Sofacy Group, Pawn Storm, Strontium - was involved in illegally accessing the information systems of the German Federal Parliament (Deutscher Bundestag) without permission in April and May 2015. The military intelligence officers of the 85th controlled, directed and took part in this activity, accessing the email accounts of MPs and stealing their data. Their activity interfered with the parliament’s information systems affecting its operation for several days, undermining the exercise of parliamentary functions in Germany. (Type of entity):Department within Government (Parent company):Russian Ministry of Defence",Entity,AKA,,Cyber,23/10/2020,31/12/2020,31/12/2020,13984 +IRZA,Ami,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +IS BANK,,,,,,,"Акционерное общество Коммерческий банк ""Индустриальный Сберегательный Банк""",,,,,,,,,,,,Dmitrovsky Lane,7,,,,Moscow,107031,Russia,"(UK Sanctions List Ref):RUS0236 (UK Statement of Reasons):Since the annexation of Crimea, IS Bank, a Russian Bank, has operated across Crimea, after Ukrainian banks were stopped from operating there. Its business development is directly tied to the annexation of Crimea. In addition, it has been providing financial services, thereby facilitating the integration of Crimea into the Russian Federation through the financial system. (Phone number):(1) +7-4994018383 (2) 7-495 641 4070 (Website):www.isbank.ru (Type of entity):Bank (Business Reg No):1027739339715 (Russia)",Entity,Primary name,,Russia,22/02/2022,22/02/2022,03/03/2022,14180 +IS BANK,,,,,,,"Акционерное общество Коммерческий банк ""Индустриальный Сберегательный Банк""",,,,,,,,,,,,Eldoradovsky Per 7,,,,,Moscow,1251677,,"(UK Sanctions List Ref):RUS0236 (UK Statement of Reasons):Since the annexation of Crimea, IS Bank, a Russian Bank, has operated across Crimea, after Ukrainian banks were stopped from operating there. Its business development is directly tied to the annexation of Crimea. In addition, it has been providing financial services, thereby facilitating the integration of Crimea into the Russian Federation through the financial system. (Phone number):(1) +7-4994018383 (2) 7-495 641 4070 (Website):www.isbank.ru (Type of entity):Bank (Business Reg No):1027739339715 (Russia)",Entity,Primary name,,Russia,22/02/2022,22/02/2022,03/03/2022,14180 +ISAEV,Andrey,Konstantinovich,,,,,Исаев Андрей Константинович,,,01/10/1964,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0400 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14345 +ISAH,Wali,Adam,,,,,,,,10/07/1968,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0358 (UN Ref):QDi.422 Founder of Jaish-i-Mohammed (QDe.019). Former leader of Harakat ul-Mujahidin / HUM (QDe.008). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/xxxx.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,02/05/2019,01/05/2019,31/12/2020,13787 +ISAH,Wali,Adam,,,,,,,,10/06/1968,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0358 (UN Ref):QDi.422 Founder of Jaish-i-Mohammed (QDe.019). Former leader of Harakat ul-Mujahidin / HUM (QDe.008). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/xxxx.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,02/05/2019,01/05/2019,31/12/2020,13787 +ISAIKIN,Alexey,Ivanovich,,,,,,,,09/09/1952,,Kyrgyzstan,(1) Russia (2) Cyprus,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1468 (UK Statement of Reasons):Alexey ISAYKIN is President and Board Member of Volga-Dnepr Group, a Russian transport company with significant air operations. ISAYKIN is working as a Director (or equivalent) of a company carrying on business in a sector of strategic significance (the transport sector) to the Government of Russia, and therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia. ISAYKIN meets the criteria for designation under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Male",Individual,Primary name variation,,Russia,16/06/2022,16/06/2022,30/09/2022,15406 +ISAKOV,Eduard,Vladimirovich,,,,,Эдуард Владимирович ИСАКОВ,,,04/10/1973,Sverdlovsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0932 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14883 +ISAKOV,Vladimir,Pavlovich,,,,,Исаков Владимир Павлович,,,25/02/1987,Tula,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0401 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14346 +ISAYKIN,Alexey,Ivanovich,,,,,Алексей Иванович Исайкин,,,09/09/1952,,Kyrgyzstan,(1) Russia (2) Cyprus,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1468 (UK Statement of Reasons):Alexey ISAYKIN is President and Board Member of Volga-Dnepr Group, a Russian transport company with significant air operations. ISAYKIN is working as a Director (or equivalent) of a company carrying on business in a sector of strategic significance (the transport sector) to the Government of Russia, and therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia. ISAYKIN meets the criteria for designation under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Male",Individual,Primary name,,Russia,16/06/2022,16/06/2022,30/09/2022,15406 +ISFAHAN OPTICAL INDUSTRY,,,,,,,,,,,,,,,,,,,Kaveh Road,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICAL INDUSTRY,,,,,,,,,,,,,,,,,,,P.O. Box 81465-1117,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICAL INDUSTRY,,,,,,,,,,,,,,,,,,,P.O. Box 81465-313,Kaveh Ave,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICAL INDUSTRY,,,,,,,,,,,,,,,,,,,PO Box 81465-117,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICS,,,,,,,,,,,,,,,,,,,Kaveh Road,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICS,,,,,,,,,,,,,,,,,,,P.O. Box 81465-1117,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICS,,,,,,,,,,,,,,,,,,,P.O. Box 81465-313,Kaveh Ave,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICS,,,,,,,,,,,,,,,,,,,PO Box 81465-117,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICS INDUSTRIES,,,,,,,,,,,,,,,,,,,Kaveh Road,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICS INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 81465-1117,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICS INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 81465-313,Kaveh Ave,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICS INDUSTRIES,,,,,,,,,,,,,,,,,,,PO Box 81465-117,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICS INDUSTRIES (IOI),,,,,,,,,,,,,,,,,,,Kaveh Road,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICS INDUSTRIES (IOI),,,,,,,,,,,,,,,,,,,P.O. Box 81465-1117,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICS INDUSTRIES (IOI),,,,,,,,,,,,,,,,,,,P.O. Box 81465-313,Kaveh Ave,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICS INDUSTRIES (IOI),,,,,,,,,,,,,,,,,,,PO Box 81465-117,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICS INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,Kaveh Road,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICS INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,P.O. Box 81465-1117,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICS INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,P.O. Box 81465-313,Kaveh Ave,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISFAHAN OPTICS INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,PO Box 81465-117,,,,,Isfahan,,Iran,"(UK Sanctions List Ref):INU0084 (UK Statement of Reasons):Owned or controlled by, or acts on behalf of Iran Electronics Industries. (Phone number):(1) 0098 311 4511740 (2) +98 (311) 4518095 (Fax): (1) 0098 311 4518085 (2) +98(311)4511741 (Website):www.ioico.ir (Email address):export@ioico.ir (Type of entity):Enterprise (Subsidiaries):Sairan Medical Equipment Industry (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11204 +ISHAKZAI,GUL,AGHA,,,,,كُل آغا اسحاقزی,,,00/00/1972,"Band-e-Temur, Maiwand District, Kandahar Province",Afghanistan,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0115 (UN Ref):TAi.147 Member of a Taliban Council that coordinates the collection of zakat (Islamic tax) from Baluchistan Province, Pakistan. Head of Taliban Financial Commission as at mid-2013. Associated with Mullah Mohammed Omar (TAi.004). Served as Omar's principal finance officer and one of his closest advisors. Belongs to Ishaqzai tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,Primary name,,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11207 +ISHCHENKO,Viktor,Dmitrievich,,,,,ИЩЕНКО Виктор Дмитриевич,Cyrillic,Russian,23/09/1958,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1246 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15198 +ISHCHENKO,Viktor,Dmitriyevich,,,,,,,,23/09/1958,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1246 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15198 +ISI,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +ISIL IN YEMEN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0369 (UN Ref):QDe.166 Formed in November 2014 upon acceptance of oaths of allegiance by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/03/2020,04/03/2020,31/12/2020,13832 +ISIL KHORASAN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0357 (UN Ref):QDe.161 Islamic State of Iraq and the Levant - Khorasan (ISIL - K) was formed on January 10, 2015 by a former Tehrik-e Taliban Pakistan (TTP) (QDe.132) commander and was established by former Taliban faction commanders who swore an oath of allegiance to the Islamic State of Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,15/05/2019,14/05/2019,04/04/2022,13788 +ISIL'S SOUTH ASIA BRANCH,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0357 (UN Ref):QDe.161 Islamic State of Iraq and the Levant - Khorasan (ISIL - K) was formed on January 10, 2015 by a former Tehrik-e Taliban Pakistan (TTP) (QDe.132) commander and was established by former Taliban faction commanders who swore an oath of allegiance to the Islamic State of Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,15/05/2019,14/05/2019,04/04/2022,13788 +ISIL-TUNISIA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0376 (UN Ref):QDe.167 Formed in November 2014. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). (Type of entity):Terrorist organisation",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/01/2022,29/12/2021,12/01/2022,14171 +ISIL-TUNISIA PROVINCE,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0376 (UN Ref):QDe.167 Formed in November 2014. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). (Type of entity):Terrorist organisation",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/01/2022,29/12/2021,12/01/2022,14171 +ISIS HUNTERS,,,,,,,,,,,,,,,,,,,,,,,,Al Suqaylabiya (region of Hama),,Syria,"(UK Sanctions List Ref):RUS1550 (UK Statement of Reasons):AL-SAYYAD COMPANY FOR GUARDING AND PROTECTION SERVICES LTD is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because they are engaging in and providing support for actions or policies that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty or independence of Ukraine by recruiting fighters and mercenaries in Syria to fight alongside Russian forces in Ukraine. (Type of entity):Security company",Entity,Primary name variation,,Russia,26/07/2022,26/07/2022,26/07/2022,15477 +ISIS IN THE GREATER SAHARA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0366 (UN Ref):QDe.163 Formed in May 2015 by Adnan Abu Walid al-Sahraoui (QDi.415). Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). Splinter group of Al-Mourabitoun (QDe.141). Committed terrorist attacks in Mali, Niger and Burkina Faso. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2020,23/02/2020,31/12/2020,13825 +ISIS IN THE GREATER SAHEL,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0366 (UN Ref):QDe.163 Formed in May 2015 by Adnan Abu Walid al-Sahraoui (QDi.415). Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). Splinter group of Al-Mourabitoun (QDe.141). Committed terrorist attacks in Mali, Niger and Burkina Faso. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2020,23/02/2020,31/12/2020,13825 +ISIS IN THE ISLAMIC SAHEL,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0366 (UN Ref):QDe.163 Formed in May 2015 by Adnan Abu Walid al-Sahraoui (QDi.415). Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). Splinter group of Al-Mourabitoun (QDe.141). Committed terrorist attacks in Mali, Niger and Burkina Faso. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2020,23/02/2020,31/12/2020,13825 +ISIS IN YEMEN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0369 (UN Ref):QDe.166 Formed in November 2014 upon acceptance of oaths of allegiance by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/03/2020,04/03/2020,31/12/2020,13832 +ISIS WILAYAT KHORASAN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0357 (UN Ref):QDe.161 Islamic State of Iraq and the Levant - Khorasan (ISIL - K) was formed on January 10, 2015 by a former Tehrik-e Taliban Pakistan (TTP) (QDe.132) commander and was established by former Taliban faction commanders who swore an oath of allegiance to the Islamic State of Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,15/05/2019,14/05/2019,04/04/2022,13788 +ISISK,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0357 (UN Ref):QDe.161 Islamic State of Iraq and the Levant - Khorasan (ISIL - K) was formed on January 10, 2015 by a former Tehrik-e Taliban Pakistan (TTP) (QDe.132) commander and was established by former Taliban faction commanders who swore an oath of allegiance to the Islamic State of Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,15/05/2019,14/05/2019,04/04/2022,13788 +ISIS-K,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0357 (UN Ref):QDe.161 Islamic State of Iraq and the Levant - Khorasan (ISIL - K) was formed on January 10, 2015 by a former Tehrik-e Taliban Pakistan (TTP) (QDe.132) commander and was established by former Taliban faction commanders who swore an oath of allegiance to the Islamic State of Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,15/05/2019,14/05/2019,04/04/2022,13788 +IS-KHORASAN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0357 (UN Ref):QDe.161 Islamic State of Iraq and the Levant - Khorasan (ISIL - K) was formed on January 10, 2015 by a former Tehrik-e Taliban Pakistan (TTP) (QDe.132) commander and was established by former Taliban faction commanders who swore an oath of allegiance to the Islamic State of Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,15/05/2019,14/05/2019,04/04/2022,13788 +ISLAM,Ahmed,,,,,,,,,12/03/1966,"Sangandaan, Caloocan City",Philippines,Philippines,AA780554,,,,,"50, Purdue Street",,,,Cubao,Quezon City,,Philippines,(UK Sanctions List Ref):AQD0195 (UN Ref):QDi.244 Founder and leader of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1523805,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10664 +ISLAMI,Mohamed,,,,,,,,,00/00/1956,Isfahan,Iran,,,,,,(1) Former Head of Iran's Defence Industries Training and Research Institute (2) Head of the Atomic Energy Organisation of Iran (AEOI),,,,,,,,,"(UK Sanctions List Ref):INU0202 (UN Ref):IRi.014 Served as Deputy Defence Minister from 2012 to 2013. [Old Reference # I.03.I.6] (UK Statement of Reasons):As Vice President and Chief of the Atomic Energy Organization of Iran (AEOI), and formerly Head of the Defence Industries Training and Research Institute, Mohammad ESLAMI is or has been involved in relevant nuclear activities for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019 and is a member of, or associated with other persons so involved.",Individual,AKA,Good quality,Iran (Nuclear),04/03/2008,03/03/2008,04/03/2022,10438 +ISLAMI,Mohammad,,,,,,,,,00/00/1956,Isfahan,Iran,,,,,,(1) Former Head of Iran's Defence Industries Training and Research Institute (2) Head of the Atomic Energy Organisation of Iran (AEOI),,,,,,,,,"(UK Sanctions List Ref):INU0202 (UN Ref):IRi.014 Served as Deputy Defence Minister from 2012 to 2013. [Old Reference # I.03.I.6] (UK Statement of Reasons):As Vice President and Chief of the Atomic Energy Organization of Iran (AEOI), and formerly Head of the Defence Industries Training and Research Institute, Mohammad ESLAMI is or has been involved in relevant nuclear activities for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019 and is a member of, or associated with other persons so involved.",Individual,AKA,Good quality,Iran (Nuclear),04/03/2008,03/03/2008,04/03/2022,10438 +ISLAMI,Mohammed,,,,,,,,,00/00/1956,Isfahan,Iran,,,,,,(1) Former Head of Iran's Defence Industries Training and Research Institute (2) Head of the Atomic Energy Organisation of Iran (AEOI),,,,,,,,,"(UK Sanctions List Ref):INU0202 (UN Ref):IRi.014 Served as Deputy Defence Minister from 2012 to 2013. [Old Reference # I.03.I.6] (UK Statement of Reasons):As Vice President and Chief of the Atomic Energy Organization of Iran (AEOI), and formerly Head of the Defence Industries Training and Research Institute, Mohammad ESLAMI is or has been involved in relevant nuclear activities for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019 and is a member of, or associated with other persons so involved.",Individual,AKA,Good quality,Iran (Nuclear),04/03/2008,03/03/2008,04/03/2022,10438 +ISLAMI BUYUKDOGU AKINCILAR CEPHESI,,,,,,,İslami Büyükdoğu Akıncılar Cephesi,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0034 (UK Statement of Reasons):The Great Eastern Islamic Raiders' Front (Islami Büyükdogu Akincilar Cephesi in Turkish, IBDA-C) claimed responsibility for a number of terrorist attacks during the 1990s and early 2000s, including an attack on the British Consulate in Istanbul in 2003 which killed the British Consul-General and 14 others. Their stated aim is to establish an Islamic federation in Turkey through violent means. The group is associated with Al-Qaida and has openly supported Osama bin Laden.",Entity,AKA,,Counter-Terrorism (International),29/12/2003,31/12/2020,21/01/2021,7980 +ISLAMIC ARMY,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0027 (UN Ref):QDe.004 Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278330,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,23/02/2001,06/10/2001,31/12/2020,6965 +ISLAMIC ARMY OF ADEN,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0049 (UN Ref):QDe.009 Review pursuant to Security Council resolution 1822 (2008) was concluded on 9 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278444,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,12/01/2022,7205 +ISLAMIC INTERNATIONAL BRIGADE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0050 (UN Ref):QDe.099 Linked to the Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs (RSRSBCM) (QDe.100) and the Special Purpose Islamic Regiment (SPIR) (QDe.101). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,12/01/2022,7202 +ISLAMIC JIHAD GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0051 (UN Ref):QDe.119 Founded and led by Najmiddin Kamolitdinovich Jalolov (deceased) and Suhayl Fatilloevich Buranov (deceased). Associated with the Islamic Movement of Uzbekistan (QDe.010) and Emarat Kavkaz (QDe.131). Active in the Afghanistan/Pakistan border area, Central Asia, South Asia region and some European States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278465",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,06/06/2005,01/06/2005,31/12/2020,8652 +ISLAMIC JIHAD GROUP OF UZBEKISTAN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0051 (UN Ref):QDe.119 Founded and led by Najmiddin Kamolitdinovich Jalolov (deceased) and Suhayl Fatilloevich Buranov (deceased). Associated with the Islamic Movement of Uzbekistan (QDe.010) and Emarat Kavkaz (QDe.131). Active in the Afghanistan/Pakistan border area, Central Asia, South Asia region and some European States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278465",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,06/06/2005,01/06/2005,31/12/2020,8652 +ISLAMIC JIHAD UNION,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0051 (UN Ref):QDe.119 Founded and led by Najmiddin Kamolitdinovich Jalolov (deceased) and Suhayl Fatilloevich Buranov (deceased). Associated with the Islamic Movement of Uzbekistan (QDe.010) and Emarat Kavkaz (QDe.131). Active in the Afghanistan/Pakistan border area, Central Asia, South Asia region and some European States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278465",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,06/06/2005,01/06/2005,31/12/2020,8652 +ISLAMIC MOVEMENT OF UZBEKISTAN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0052 (UN Ref):QDe.010 Associated with the Eastern Turkistan Islamic Movement (QDe.088), Islamic Jihad Group (QDe.119) and Emarat Kavkaz (QDe.131). Active in the Afghanistan/Pakistan border area, northern Afghanistan and Central Asia. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278466",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7199 +ISLAMIC PARTY OF TURKESTAN,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0040 (UN Ref):QDe.088,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,12/09/2002,11/09/2002,31/12/2020,7122 +ISLAMIC PEACEKEEPING BATTALION,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0050 (UN Ref):QDe.099 Linked to the Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs (RSRSBCM) (QDe.100) and the Special Purpose Islamic Regiment (SPIR) (QDe.101). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,12/01/2022,7202 +ISLAMIC PEACEKEEPING INTERNATIONAL BRIGADE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0050 (UN Ref):QDe.099 Linked to the Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs (RSRSBCM) (QDe.100) and the Special Purpose Islamic Regiment (SPIR) (QDe.101). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,12/01/2022,7202 +ISLAMIC REGIMENT OF SPECIAL MEANING,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0077 (UN Ref):QDe.101 Linked to the Islamic International Brigade (IIB) (QDe.099) and the Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs (RSRSBCM) (QDe.100). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278482,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,31/12/2020,7466 +ISLAMIC REVOLUTIONARY GUARD CORPS (IRGC),,,,,,,سپاه پاسداران انقلاب اسلامی,,,,,,,,,,,,,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0080 (UK Statement of Reasons):Responsible for Iran's nuclear programme. Has operational control for Iran's ballistic missile programme. Has undertaken procurement attempts to support Iran's ballistic missiles and nuclear programmes. (Type of entity):Military Government,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11238 +ISLAMIC REVOLUTIONARY GUARD CORPS (IRGC) AEROSPACE FORCE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0081 (UK Statement of Reasons):Operates Iran’s inventory of short and medium range ballistic missiles and is responsible for controlling Iran’s strategic missile force. Controlled by and acts on behalf of the IRGC. (Type of entity):Military (Parent company):Islamic Revolutionary Guard Corps,Entity,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10660 +ISLAMIC REVOLUTIONARY GUARD CORPS (IRGC) AL GHADIR MISSILE COMMAND,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0083 (UK Statement of Reasons):The IRGC-Air Force Al Ghadir Missile Command is a specific element within the IRGC Air Force that has been working with SBIG (designated under UNSCR 1737) with the FATEH 110, short range ballistic missile as well as Ashura medium range ballistic missile. This command appears to be the entity that actually has the operational control of the missiles. Controlled by the IRGC. (Type of entity):Military (Parent company):Islamic Revolutionary Guard Corps",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11239 +ISLAMIC REVOLUTIONARY GUARD CORPS (IRGC) QODS FORCE,,,,,,,سپاه قدس,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,Primary name,,Syria,24/08/2011,31/12/2020,13/05/2022,11241 +ISLAMIC REVOLUTIONARY GUARD CORPS (IRGC) QODS FORCE,,,,,,,سپاه قدس,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,13/05/2022,11241 +ISLAMIC REVOLUTIONARY GUARD CORPS AL GHADIR MISSILE COMMAND,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0083 (UK Statement of Reasons):The IRGC-Air Force Al Ghadir Missile Command is a specific element within the IRGC Air Force that has been working with SBIG (designated under UNSCR 1737) with the FATEH 110, short range ballistic missile as well as Ashura medium range ballistic missile. This command appears to be the entity that actually has the operational control of the missiles. Controlled by the IRGC. (Type of entity):Military (Parent company):Islamic Revolutionary Guard Corps",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11239 +ISLAMIC REVOLUTIONARY GUARD CORPS MISSILE COMMAND,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0083 (UK Statement of Reasons):The IRGC-Air Force Al Ghadir Missile Command is a specific element within the IRGC Air Force that has been working with SBIG (designated under UNSCR 1737) with the FATEH 110, short range ballistic missile as well as Ashura medium range ballistic missile. This command appears to be the entity that actually has the operational control of the missiles. Controlled by the IRGC. (Type of entity):Military (Parent company):Islamic Revolutionary Guard Corps",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11239 +ISLAMIC REVOLUTIONARY GUARDS CORPS - QODS FORCE,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,Primary name,,Syria,24/08/2011,31/12/2020,13/05/2022,11241 +ISLAMIC REVOLUTIONARY GUARDS CORPS - QODS FORCE,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,13/05/2022,11241 +ISLAMIC REVOLUTIONARY GUARDS CORPS AIR FORCE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0081 (UK Statement of Reasons):Operates Iran’s inventory of short and medium range ballistic missiles and is responsible for controlling Iran’s strategic missile force. Controlled by and acts on behalf of the IRGC. (Type of entity):Military (Parent company):Islamic Revolutionary Guard Corps,Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10660 +ISLAMIC SALVATION FOUNDATION,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0027 (UN Ref):QDe.004 Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278330,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,23/02/2001,06/10/2001,31/12/2020,6965 +ISLAMIC STATE IN IRAQ AND SYRIA - GREATER SAHARA (ISIS-GS),,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0366 (UN Ref):QDe.163 Formed in May 2015 by Adnan Abu Walid al-Sahraoui (QDi.415). Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). Splinter group of Al-Mourabitoun (QDe.141). Committed terrorist attacks in Mali, Niger and Burkina Faso. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2020,23/02/2020,31/12/2020,13825 +ISLAMIC STATE IN IRAQ AND THE LEVANT,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +ISLAMIC STATE IN IRAQ AND THE LEVANT - KHORASAN (ISIL- K),,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0357 (UN Ref):QDe.161 Islamic State of Iraq and the Levant - Khorasan (ISIL - K) was formed on January 10, 2015 by a former Tehrik-e Taliban Pakistan (TTP) (QDe.132) commander and was established by former Taliban faction commanders who swore an oath of allegiance to the Islamic State of Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/How-we-work/Notices/View-UN-Notices-Entities",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,15/05/2019,14/05/2019,04/04/2022,13788 +ISLAMIC STATE IN IRAQ AND THE LEVANT - LIBYA,,,,,,,الدولة الإسلامية في العراق والشام - ليبيا,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0368 (UN Ref):QDe.165 Formed in November 2014 upon announcement by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,05/03/2020,04/03/2020,31/12/2020,13831 +ISLAMIC STATE IN IRAQ AND THE LEVANT - WEST AFRICA (ISIL-WA),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0365 (UN Ref):QDe.162 Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). Formed in March 2015 by Abubakar Shekau (QDi.322). Splinter group of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138). Committed terrorist attacks in Nigeria. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2020,23/02/2020,31/12/2020,13826 +ISLAMIC STATE IN IRAQ AND THE LEVANT - YEMEN,,,,,,,الدولة الإسلامية في العراق والشام - اليمن,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0369 (UN Ref):QDe.166 Formed in November 2014 upon acceptance of oaths of allegiance by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,05/03/2020,04/03/2020,31/12/2020,13832 +ISLAMIC STATE IN THE GREATER SAHARA (ISGS),,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0366 (UN Ref):QDe.163 Formed in May 2015 by Adnan Abu Walid al-Sahraoui (QDi.415). Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). Splinter group of Al-Mourabitoun (QDe.141). Committed terrorist attacks in Mali, Niger and Burkina Faso. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,24/02/2020,23/02/2020,31/12/2020,13825 +ISLAMIC STATE IN YEMEN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0369 (UN Ref):QDe.166 Formed in November 2014 upon acceptance of oaths of allegiance by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/03/2020,04/03/2020,31/12/2020,13832 +ISLAMIC STATE KHURASAN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0357 (UN Ref):QDe.161 Islamic State of Iraq and the Levant - Khorasan (ISIL - K) was formed on January 10, 2015 by a former Tehrik-e Taliban Pakistan (TTP) (QDe.132) commander and was established by former Taliban faction commanders who swore an oath of allegiance to the Islamic State of Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,15/05/2019,14/05/2019,04/04/2022,13788 +ISLAMIC STATE OF IRAQ,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +ISLAMIC STATE OF IRAQ AND LEVANT IN KHORASAN PROVINCE,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0357 (UN Ref):QDe.161 Islamic State of Iraq and the Levant - Khorasan (ISIL - K) was formed on January 10, 2015 by a former Tehrik-e Taliban Pakistan (TTP) (QDe.132) commander and was established by former Taliban faction commanders who swore an oath of allegiance to the Islamic State of Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,15/05/2019,14/05/2019,04/04/2022,13788 +ISLAMIC STATE OF IRAQ AND SYRIA - GREATER SAHARA (ISIS-GS),,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0366 (UN Ref):QDe.163 Formed in May 2015 by Adnan Abu Walid al-Sahraoui (QDi.415). Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). Splinter group of Al-Mourabitoun (QDe.141). Committed terrorist attacks in Mali, Niger and Burkina Faso. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2020,23/02/2020,31/12/2020,13825 +ISLAMIC STATE OF IRAQ AND SYRIA - WEST AFRICA (ISIS-WA),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0365 (UN Ref):QDe.162 Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). Formed in March 2015 by Abubakar Shekau (QDi.322). Splinter group of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138). Committed terrorist attacks in Nigeria. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2020,23/02/2020,31/12/2020,13826 +ISLAMIC STATE OF IRAQ AND SYRIA WEST AFRICA PROVINCE (ISISWAP),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0365 (UN Ref):QDe.162 Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). Formed in March 2015 by Abubakar Shekau (QDi.322). Splinter group of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138). Committed terrorist attacks in Nigeria. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2020,23/02/2020,31/12/2020,13826 +ISLAMIC STATE OF IRAQ AND THE LEVANT - GREATER SAHARA (ISIL-GS),,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0366 (UN Ref):QDe.163 Formed in May 2015 by Adnan Abu Walid al-Sahraoui (QDi.415). Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). Splinter group of Al-Mourabitoun (QDe.141). Committed terrorist attacks in Mali, Niger and Burkina Faso. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2020,23/02/2020,31/12/2020,13825 +ISLAMIC STATE OF IRAQ AND THE LEVANT - WEST AFRICA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0365 (UN Ref):QDe.162 Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). Formed in March 2015 by Abubakar Shekau (QDi.322). Splinter group of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138). Committed terrorist attacks in Nigeria. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2020,23/02/2020,31/12/2020,13826 +ISLAMIC STATE OF IRAQ AND THE LEVANT IN LIBYA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0368 (UN Ref):QDe.165 Formed in November 2014 upon announcement by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/03/2020,04/03/2020,31/12/2020,13831 +ISLAMIC STATE OF IRAQ AND THE LEVANT OF YEMEN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0369 (UN Ref):QDe.166 Formed in November 2014 upon acceptance of oaths of allegiance by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/03/2020,04/03/2020,31/12/2020,13832 +ISLAMIC STATE OF THE GREATER SAHEL,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0366 (UN Ref):QDe.163 Formed in May 2015 by Adnan Abu Walid al-Sahraoui (QDi.415). Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). Splinter group of Al-Mourabitoun (QDe.141). Committed terrorist attacks in Mali, Niger and Burkina Faso. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2020,23/02/2020,31/12/2020,13825 +ISLAMIC STATE WEST AFRICA PROVINCE (ISWAP),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0365 (UN Ref):QDe.162 Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). Formed in March 2015 by Abubakar Shekau (QDi.322). Splinter group of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138). Committed terrorist attacks in Nigeria. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,24/02/2020,23/02/2020,31/12/2020,13826 +ISLAMIC STATE'S KHORASAN PROVINCE,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0357 (UN Ref):QDe.161 Islamic State of Iraq and the Levant - Khorasan (ISIL - K) was formed on January 10, 2015 by a former Tehrik-e Taliban Pakistan (TTP) (QDe.132) commander and was established by former Taliban faction commanders who swore an oath of allegiance to the Islamic State of Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,15/05/2019,14/05/2019,04/04/2022,13788 +ISLAMOV,Dmitry,Viktorovich,,,,,Исламов Дмитрий Викторович,,,05/12/1977,Kemerovo,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0402 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14347 +ISMAEL,Amar,,,,,,,,,03/04/1973,,,,,,,,Head of Syrian electronic army (territorial army intelligence service),,,,,,,,,(UK Sanctions List Ref):SYR0017 (UK Statement of Reasons):Head of Syrian electronic army (territorial army service) involved in violent crackdown and call to violence against the civilian population across Syria and supporting the regime. Associated with members of Syrian security and intelligence services. (Gender):Male,Individual,Primary name,,Syria,15/11/2011,31/12/2020,13/05/2022,12218 +ISMAEL,Ammar,,,,,,,,,03/04/1973,,,,,,,,Head of Syrian electronic army (territorial army intelligence service),,,,,,,,,(UK Sanctions List Ref):SYR0017 (UK Statement of Reasons):Head of Syrian electronic army (territorial army service) involved in violent crackdown and call to violence against the civilian population across Syria and supporting the regime. Associated with members of Syrian security and intelligence services. (Gender):Male,Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,13/05/2022,12218 +ISMAEL,Ezzedine,,,,,,عز الدين إسماعيل,,,00/00/1946,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAEL,Ezzedine,,,,,,عز الدين إسماعيل,,,00/00/1947,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAEL,Ezzedine,,,,,,عز الدين إسماعيل,,,00/00/1949,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAEL,Ezzedine,,,,,,عز الدين إسماعيل,,,00/00/1950,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAEL,Ezzedine,,,,,,عز الدين إسماعيل,,,00/00/1942,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAEL,Ezzedine,,,,,,عز الدين إسماعيل,,,00/00/1944,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAEL,Ezzedine,,,,,,عز الدين إسماعيل,,,00/00/1948,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAEL,Ezzedine,,,,,,عز الدين إسماعيل,,,00/00/1940,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAEL,Ezzedine,,,,,,عز الدين إسماعيل,,,00/00/1941,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAEL,Ezzedine,,,,,,عز الدين إسماعيل,,,00/00/1943,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAEL,Ezzedine,,,,,,عز الدين إسماعيل,,,00/00/1945,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAEL,Ghassan,Jaoudat,,,,,,,,00/00/1960,"Drekish, Tartous region",,Syria,,,,,Head of the Special Missions branch of the Air Force Intelligence Agency,,,,,,,,,"(UK Sanctions List Ref):SYR0055 Commander in the Air Force Intelligence Agency (listed 23 August 2011) (UK Statement of Reasons):Responsible for the missions branch of the air force intelligence service, which, in cooperation with the special operations branch, manages the elite troops of the air force intelligence service, who play an important role in the repression conducted by the regime. As such, Ghassan Jaoudat Ismail is one of the military leaders directly implementing the repression of opponents conducted by the regime. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12726 +ISMAEL,Ismael,,,,,,,,,00/00/1955,,,,,,,,Former Finance Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0102 (UK Statement of Reasons):Former Finance Minister in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,24/06/2014,31/12/2020,31/12/2020,12991 +ISMAEL,Ismail,,,,,,,,,00/00/1955,,,,,,,,Former Finance Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0102 (UK Statement of Reasons):Former Finance Minister in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,31/12/2020,12991 +ISMAEL,Mujahed,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0181 (UK Statement of Reasons):Member of Syrian electronic army. Involved in the violent crackdown and call for violence against the civilian population across Syria. (Gender):Male,Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,31/12/2020,12219 +ISMAEL,Sma'il,,,,,,,,,00/00/1955,,,,,,,,Former Finance Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0102 (UK Statement of Reasons):Former Finance Minister in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,31/12/2020,12991 +ISMAIL,,,,,,,,,,19/12/1969,"Bagac, Bagamanok, Catanduanes",Philippines,Philippines,,,,,,Concepcion,,,,Zaragosa,Nueva Ecija,,Philippines,"(UK Sanctions List Ref):AQD0287 (UN Ref):QDi.245 Member of the Rajah Solaiman Movement (QDe.128), Abu Sayyaf Group (QDe.001) and Jemaah Islamiyah (QDe.092). Father's name is Honorio Devera. Mother's name is Fausta Abogne. In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10665 +ISMAIL,Abu,,,,,,,,,30/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +ISMAIL,Abu,,,,,,,,,13/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +ISMAIL,Abu,,,,,,,,,23/11/1965,Ghardimaou,Tunisia,Tunisia,E590976,"issue date: 19/06/1987, expiry date: 18/06/1992",,,,Rue Leon Theodore No 107/1,1090 Jette,,,,Brussels,,Belgium,"(UK Sanctions List Ref):AQD0321 (UN Ref):QDi.074 Belgian nationality withdrawn on 26 Jan. 2009. In detention in Nivelles, Belgium, as of Oct. 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2002,03/09/2002,31/12/2020,7255 +ISMAIL,Abu,,,,,,,,,26/02/1993,,Morocco,Morocco,UZ6430184,,CD595054,,,,,,,,,,Turkey,"(UK Sanctions List Ref):AQD0251 (UN Ref):QDi.383 Facilitator for travel of foreign terrorist fighters to join Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), in Syrian Arab Republic. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930723",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13316 +ISMAIL,Amar,,,,,,,,,03/04/1973,,,,,,,,Head of Syrian electronic army (territorial army intelligence service),,,,,,,,,(UK Sanctions List Ref):SYR0017 (UK Statement of Reasons):Head of Syrian electronic army (territorial army service) involved in violent crackdown and call to violence against the civilian population across Syria and supporting the regime. Associated with members of Syrian security and intelligence services. (Gender):Male,Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,13/05/2022,12218 +ISMAIL,Ammar,,,,,,,,,03/04/1973,,,,,,,,Head of Syrian electronic army (territorial army intelligence service),,,,,,,,,(UK Sanctions List Ref):SYR0017 (UK Statement of Reasons):Head of Syrian electronic army (territorial army service) involved in violent crackdown and call to violence against the civilian population across Syria and supporting the regime. Associated with members of Syrian security and intelligence services. (Gender):Male,Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,13/05/2022,12218 +ISMAIL,Ezzedine,,,,,,,,,00/00/1946,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAIL,Ezzedine,,,,,,,,,00/00/1947,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAIL,Ezzedine,,,,,,,,,00/00/1949,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAIL,Ezzedine,,,,,,,,,00/00/1950,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAIL,Ezzedine,,,,,,,,,00/00/1942,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAIL,Ezzedine,,,,,,,,,00/00/1944,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAIL,Ezzedine,,,,,,,,,00/00/1948,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAIL,Ezzedine,,,,,,,,,00/00/1940,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAIL,Ezzedine,,,,,,,,,00/00/1941,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAIL,Ezzedine,,,,,,,,,00/00/1943,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAIL,Ezzedine,,,,,,,,,00/00/1945,(1) Bastawir (2) Jableh,,Syria,,,,,Political and Security Adviser to the President. Previous head of Air Force Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0039 (UK Statement of Reasons):Retired general, longstanding member of the managerial staff of the air force intelligence service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006. As political and security adviser to the Syrian president, Ezzedine Ismael is implicated in the political repression conducted by the regime against the opposition. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,14/02/2022,12730 +ISMAIL,Ghassan,Jaoudat,,,,,غسان جودت إسماعيل,,,00/00/1960,"Drekish, Tartous region",,Syria,,,,,Head of the Special Missions branch of the Air Force Intelligence Agency,,,,,,,,,"(UK Sanctions List Ref):SYR0055 Commander in the Air Force Intelligence Agency (listed 23 August 2011) (UK Statement of Reasons):Responsible for the missions branch of the air force intelligence service, which, in cooperation with the special operations branch, manages the elite troops of the air force intelligence service, who play an important role in the repression conducted by the regime. As such, Ghassan Jaoudat Ismail is one of the military leaders directly implementing the repression of opponents conducted by the regime. (Gender):Male",Individual,Primary name,,Syria,24/07/2012,31/12/2020,31/12/2020,12726 +ISMAIL,Ismael,,,,,,,,,00/00/1955,,,,,,,,Former Finance Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0102 (UK Statement of Reasons):Former Finance Minister in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,31/12/2020,12991 +ISMAIL,Ismail,,,,,,,,,00/00/1955,,,,,,,,Former Finance Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0102 (UK Statement of Reasons):Former Finance Minister in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,31/12/2020,12991 +ISMAIL,Mujahed,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0181 (UK Statement of Reasons):Member of Syrian electronic army. Involved in the violent crackdown and call for violence against the civilian population across Syria. (Gender):Male,Individual,Primary name,,Syria,15/11/2011,31/12/2020,31/12/2020,12219 +ISMAIL,Sma'il,,,,,,,,,00/00/1955,,,,,,,,Former Finance Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0102 (UK Statement of Reasons):Former Finance Minister in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,31/12/2020,12991 +ISMA'IL,Ismael,,,,,,,,,00/00/1955,,,,,,,,Former Finance Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0102 (UK Statement of Reasons):Former Finance Minister in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,31/12/2020,12991 +ISMA'IL,Ismail,,,,,,,,,00/00/1955,,,,,,,,Former Finance Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0102 (UK Statement of Reasons):Former Finance Minister in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,31/12/2020,12991 +ISMA'IL,Sma'il,,,,,,,,,00/00/1955,,,,,,,,Former Finance Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0102 (UK Statement of Reasons):Former Finance Minister in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,31/12/2020,12991 +ISMAILI,Reza-Gholi,,,,,,,,,03/04/1961,,,Iran,A0002302,Issued in Iran (Islamic Republic of),,,Head of Trade and International Affairs Department of the AIO.,,,,,,,,,"(UK Sanctions List Ref):INU0213 (UN Ref):IRi.015 [Old Reference # I.37.D.3] (UK Statement of Reasons):As Head of the Trade and International Affairs Department of Iran’s Aerospace Industries Organisation (AIO), Reza-Gholi ESMAELI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),09/02/2007,23/12/2006,31/12/2020,9004 +ISMAILI,Reza-Gholi,,,,,,,,,03/04/1961,,,Iran,A0002302,Issued in Iran (Islamic Republic of),,,Head of Trade and International Affairs Department of the AIO.,,,,,,,,,"(UK Sanctions List Ref):INU0213 (UN Ref):IRi.015 [Old Reference # I.37.D.3] (UK Statement of Reasons):As Head of the Trade and International Affairs Department of Iran’s Aerospace Industries Organisation (AIO), Reza-Gholi ESMAELI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),09/02/2007,23/12/2006,31/12/2020,9004 +ISMAILOV,Zaur,Raufovich,,,,,Заур Рауфович ИСМАИЛОВ,,,25/07/1978,"Krasny Luch, Voroshilovgrad Luhansk region",Ukrainian SSR (now Ukraine),Ukraine,,,,,(1) Former 'General Prosecutor' of the so called 'Luhansk People's Republic (until October 2017) (2) Currently acting so-called 'Minister of Justice' of the so-called 'Luhansk People's Republic',,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0106 Former so-called 'Minister of Internal Affairs of the Luhansk People's Republic'. (UK Statement of Reasons):Former so called ‘General Prosecutor’ of the so called ‘Luhansk People's Republic’ (until October 2017). Currently acting so-called ‘Minister of Justice’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. (Gender):Male",Individual,Primary name,,Russia,16/02/2015,31/12/2020,16/09/2022,13212 +ISMAILOV,Zaur,Raufovich,,,,,Заур Рауфович ИСМАИЛОВ,,,23/03/1975,"Krasny Luch, Voroshilovgrad Luhansk region",Ukrainian SSR (now Ukraine),Ukraine,,,,,(1) Former 'General Prosecutor' of the so called 'Luhansk People's Republic (until October 2017) (2) Currently acting so-called 'Minister of Justice' of the so-called 'Luhansk People's Republic',,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0106 Former so-called 'Minister of Internal Affairs of the Luhansk People's Republic'. (UK Statement of Reasons):Former so called ‘General Prosecutor’ of the so called ‘Luhansk People's Republic’ (until October 2017). Currently acting so-called ‘Minister of Justice’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. (Gender):Male",Individual,Primary name,,Russia,16/02/2015,31/12/2020,16/09/2022,13212 +ISMAILOV,Zaur,Raufovych,,,,,,,,25/07/1978,"Krasny Luch, Voroshilovgrad Luhansk region",Ukrainian SSR (now Ukraine),Ukraine,,,,,(1) Former 'General Prosecutor' of the so called 'Luhansk People's Republic (until October 2017) (2) Currently acting so-called 'Minister of Justice' of the so-called 'Luhansk People's Republic',,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0106 Former so-called 'Minister of Internal Affairs of the Luhansk People's Republic'. (UK Statement of Reasons):Former so called ‘General Prosecutor’ of the so called ‘Luhansk People's Republic’ (until October 2017). Currently acting so-called ‘Minister of Justice’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13212 +ISMAILOV,Zaur,Raufovych,,,,,,,,23/03/1975,"Krasny Luch, Voroshilovgrad Luhansk region",Ukrainian SSR (now Ukraine),Ukraine,,,,,(1) Former 'General Prosecutor' of the so called 'Luhansk People's Republic (until October 2017) (2) Currently acting so-called 'Minister of Justice' of the so-called 'Luhansk People's Republic',,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0106 Former so-called 'Minister of Internal Affairs of the Luhansk People's Republic'. (UK Statement of Reasons):Former so called ‘General Prosecutor’ of the so called ‘Luhansk People's Republic’ (until October 2017). Currently acting so-called ‘Minister of Justice’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13212 +ISMAILOV,Sanjar,Zunnurovich,,,,,,,,29/01/1987,,,(1) Russia (2) Uzbekistan (3) Cyprus,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1541 (UK Statement of Reasons):Sanjar ISMAILOV is an involved person within the meaning of the Russia (Sanctions) (EU Exit) Regulations 2019 because he is associated with a person who is an involved person. ISMAILOV is the nephew of Alisher Usmanov, who was designated by the UK Government on 3 March 2022. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,02/08/2022,15468 +ISMAILOV,Sarvar,,,,,,,,,14/03/1995,,,(1) Russia (2) Uzbekistan (3) Cyprus,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1542 (UK Statement of Reasons):Sarvar ISMAILOV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because ISMAILOV is related to an involved person. Specifically, ISMAILOV is the nephew of Alisher Usmanov, who was designated by the UK Government on 3 March 2022. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15469 +ISMAILOV,SHAMIL,MAGOMEDOVICH,,,,,Шамиль Магомедович Измайлов,,,29/10/1980,Astrakhan,Russia,Russia,514448632,Russian foreign travel passport number,1200075689,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0315 (UN Ref):QDi.368 As at Aug. 2015, leader of Jamaat Abu Hanifa, a terrorist group that is part of the Al-Nusrah Front for the People of the Levant (QDe.137). Physical description: eye colour: brown, hair colour: black, build: slim, height 175-180 cm. Distinguishing marks: long face, speech defect. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899833. Address country Syria, located in as at Aug. 2015, Iraq , possible alternative location as at August 2015.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13303 +ISMAILOV,SHAMIL,MAGOMEDOVICH,,,,,Шамиль Магомедович Измайлов,,,29/10/1980,Astrakhan,Russia,Russia,514448632,Russian foreign travel passport number,1200075689,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0315 (UN Ref):QDi.368 As at Aug. 2015, leader of Jamaat Abu Hanifa, a terrorist group that is part of the Al-Nusrah Front for the People of the Levant (QDe.137). Physical description: eye colour: brown, hair colour: black, build: slim, height 175-180 cm. Distinguishing marks: long face, speech defect. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899833. Address country Syria, located in as at Aug. 2015, Iraq , possible alternative location as at August 2015.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13303 +ISMAILOV,Zaur,Raufovich,,,,,,,,25/07/1978,"Krasny Luch, Voroshilovgrad Luhansk region",Ukrainian SSR (now Ukraine),Ukraine,,,,,(1) Former 'General Prosecutor' of the so called 'Luhansk People's Republic (until October 2017) (2) Currently acting so-called 'Minister of Justice' of the so-called 'Luhansk People's Republic',,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0106 Former so-called 'Minister of Internal Affairs of the Luhansk People's Republic'. (UK Statement of Reasons):Former so called ‘General Prosecutor’ of the so called ‘Luhansk People's Republic’ (until October 2017). Currently acting so-called ‘Minister of Justice’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13212 +ISMAILOV,Zaur,Raufovich,,,,,Заур Рауфович ІСМАЇЛОВ,,,25/07/1978,"Krasny Luch, Voroshilovgrad Luhansk region",Ukrainian SSR (now Ukraine),Ukraine,,,,,(1) Former 'General Prosecutor' of the so called 'Luhansk People's Republic (until October 2017) (2) Currently acting so-called 'Minister of Justice' of the so-called 'Luhansk People's Republic',,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0106 Former so-called 'Minister of Internal Affairs of the Luhansk People's Republic'. (UK Statement of Reasons):Former so called ‘General Prosecutor’ of the so called ‘Luhansk People's Republic’ (until October 2017). Currently acting so-called ‘Minister of Justice’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13212 +ISMAILOV,Zaur,Raufovich,,,,,Заур Рауфович ІСМАЇЛОВ,,,23/03/1975,"Krasny Luch, Voroshilovgrad Luhansk region",Ukrainian SSR (now Ukraine),Ukraine,,,,,(1) Former 'General Prosecutor' of the so called 'Luhansk People's Republic (until October 2017) (2) Currently acting so-called 'Minister of Justice' of the so-called 'Luhansk People's Republic',,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0106 Former so-called 'Minister of Internal Affairs of the Luhansk People's Republic'. (UK Statement of Reasons):Former so called ‘General Prosecutor’ of the so called ‘Luhansk People's Republic’ (until October 2017). Currently acting so-called ‘Minister of Justice’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13212 +ISMAILOV,Zaur,Raufovich,,,,,,,,23/03/1975,"Krasny Luch, Voroshilovgrad Luhansk region",Ukrainian SSR (now Ukraine),Ukraine,,,,,(1) Former 'General Prosecutor' of the so called 'Luhansk People's Republic (until October 2017) (2) Currently acting so-called 'Minister of Justice' of the so-called 'Luhansk People's Republic',,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0106 Former so-called 'Minister of Internal Affairs of the Luhansk People's Republic'. (UK Statement of Reasons):Former so called ‘General Prosecutor’ of the so called ‘Luhansk People's Republic’ (until October 2017). Currently acting so-called ‘Minister of Justice’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13212 +ISMAILOVA,Gulbakhor,,,,,,Гульбахор ИСМАИЛОВА,Cyrillic,Russian,22/12/1959,,Uzbekistan,(1) Russia (2) Uzbekistan,,,,,,Apartment 81-83,79 Ustabayeva Street,,,,Tashkent,1000187,Uzbekistan,"(UK Sanctions List Ref):RUS1327 (UK Statement of Reasons):Gulbakhor ISMAILOVA is the sister of Alisher USMANOV, an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019.  USMANOV was designated by the UK on 3 March 2022.  As an immediate family member of USMANOV and obtaining material benefit from USMANOV, Gulbakhor ISMAILOVA is associated with an involved person and therefore ISMAILOVA is an involved person under the Russia  (Sanctions)  (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15286 +ISMAYILOV,Zaur,Raufovich,,,,,,,,25/07/1978,"Krasny Luch, Voroshilovgrad Luhansk region",Ukrainian SSR (now Ukraine),Ukraine,,,,,(1) Former 'General Prosecutor' of the so called 'Luhansk People's Republic (until October 2017) (2) Currently acting so-called 'Minister of Justice' of the so-called 'Luhansk People's Republic',,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0106 Former so-called 'Minister of Internal Affairs of the Luhansk People's Republic'. (UK Statement of Reasons):Former so called ‘General Prosecutor’ of the so called ‘Luhansk People's Republic’ (until October 2017). Currently acting so-called ‘Minister of Justice’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13212 +ISMAYILOV,Zaur,Raufovich,,,,,,,,23/03/1975,"Krasny Luch, Voroshilovgrad Luhansk region",Ukrainian SSR (now Ukraine),Ukraine,,,,,(1) Former 'General Prosecutor' of the so called 'Luhansk People's Republic (until October 2017) (2) Currently acting so-called 'Minister of Justice' of the so-called 'Luhansk People's Republic',,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0106 Former so-called 'Minister of Internal Affairs of the Luhansk People's Republic'. (UK Statement of Reasons):Former so called ‘General Prosecutor’ of the so called ‘Luhansk People's Republic’ (until October 2017). Currently acting so-called ‘Minister of Justice’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13212 +ISMAYILOV,Zaur,Raufovych,,,,,,,,25/07/1978,"Krasny Luch, Voroshilovgrad Luhansk region",Ukrainian SSR (now Ukraine),Ukraine,,,,,(1) Former 'General Prosecutor' of the so called 'Luhansk People's Republic (until October 2017) (2) Currently acting so-called 'Minister of Justice' of the so-called 'Luhansk People's Republic',,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0106 Former so-called 'Minister of Internal Affairs of the Luhansk People's Republic'. (UK Statement of Reasons):Former so called ‘General Prosecutor’ of the so called ‘Luhansk People's Republic’ (until October 2017). Currently acting so-called ‘Minister of Justice’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13212 +ISMAYILOV,Zaur,Raufovych,,,,,,,,23/03/1975,"Krasny Luch, Voroshilovgrad Luhansk region",Ukrainian SSR (now Ukraine),Ukraine,,,,,(1) Former 'General Prosecutor' of the so called 'Luhansk People's Republic (until October 2017) (2) Currently acting so-called 'Minister of Justice' of the so-called 'Luhansk People's Republic',,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0106 Former so-called 'Minister of Internal Affairs of the Luhansk People's Republic'. (UK Statement of Reasons):Former so called ‘General Prosecutor’ of the so called ‘Luhansk People's Republic’ (until October 2017). Currently acting so-called ‘Minister of Justice’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13212 +ISNILON,Tuan,,,,,,,,,18/03/1966,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,"Basilan, previous location until 2016",,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +ISNILON,Tuan,,,,,,,,,18/03/1966,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,Lanao del Sur,,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +ISNILON,Tuan,,,,,,,,,10/03/1967,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,Lanao del Sur,,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +ISNILON,Tuan,,,,,,,,,10/03/1967,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,"Basilan, previous location until 2016",,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +ISOMUDDIN,Nurjaman,Riduan,,,,,,,,04/04/1964,"Cianjur, West Java",Indonesia,Indonesia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0278 (UN Ref):QDi.087 Senior leader of Jemaah Islamiyah (QDe.092). Brother of Gun Gun Rusman Gunawan (QDi.218). In custody of the United States of America, as of July 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,7156 +ISRAEL,,,,,,,,,,01/01/1964,"Gaseke, Gisenyi Province",Rwanda,Rwanda,,,,,(1) FDLR-FOCA “SONOKI” Sector Commander (2) FDLR-FOCA Brigadier General. Former commander of the First Division of FOCA,,,,,Rutshuru Territory,North Kivu,,Congo (Democratic Republic),(UK Sanctions List Ref):DRC0053 (UN Ref):CDi.024 Received military training in Egypt. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5269021 (Gender):Male,Individual,AKA,Low quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,19/01/2021,10678 +ISSENE,Abdoulaye,,,,,,Abdoulaye Issène,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Nana-Grebizi,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ISSENE,Abdoulaye,,,,,,Abdoulaye Issène,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,KM5,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ISSENE,Abdoulaye,,,,,,Abdoulaye Issène,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ISSENE,Abdoulaye,,,,,,Abdoulaye Issène,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndjari,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ISSENE,Abdoulaye,,,,,,Abdoulaye Issène,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndjari,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ISSENE,Abdoulaye,,,,,,Abdoulaye Issène,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ISSENE,Abdoulaye,,,,,,Abdoulaye Issène,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,KM5,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ISSENE,Abdoulaye,,,,,,Abdoulaye Issène,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Nana-Grebizi,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +ISTIKAMET,,,,,,,,,,,,,,,,,,,30a Put Mladih Muslimana (ex Pavla Lukaca Street),,,,,Sarajevo,71 000,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ISTIKAMET,,,,,,,,,,,,,,,,,,,42 Muhameda Hadzijahica,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ISTIKAMET,,,,,,,,,,,,,,,,,,,70 and 53 Strosmajerova Street,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ISTIKAMET,,,,,,,,,,,,,,,,,,,72 ul. Strossmajerova,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +ISTIKAMET,,,,,,,,,,,,,,,,,,,Zlatnih Ljiljana Street,,,,,Zavidovici,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +IUS,,,,,,,,,,,,,,,,,,,2 Ordzhonikidze Street,,,,,Udmurt Republic,426063,Russia,"(UK Sanctions List Ref):RUS1429 (UK Statement of Reasons):Izhevsk Unmanned Systems is, or has been, involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the defence sector. (Phone number):7(3412) 655 390 (Website):http://www.izh-bs/ru (Email address):info@izh-bs.ru (Business Reg No):INN - 1831117433 OGRN - 1061831040688",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15376 +IVAKIN,Yuriy,Volodymyrovych,,,,,Юрій Володимирович ІВАКІН,,Ukrainian,13/08/1954,"(1) Perevalsk, Luhansk Oblast",Ukraine,Ukraine,,,,,Former First Minister of the Ministry of Foreign Affairs of the Lugansk People's Republic (LNR),,,,,,,,,"(UK Sanctions List Ref):RUS0107 (UK Statement of Reasons):Former ""Minister of Internal Affairs of the Lugansk People's Republic"", as such responsible for the separatist ""governmental"" activities of the ""government of the Lugansk People's Republic."" (Gender):Male",Individual,Primary name,,Russia,12/07/2014,31/12/2020,16/09/2022,13016 +IVAKIN,Iurii,Vladimirovich,,,,,,,,13/08/1954,"(1) Perevalsk, Luhansk Oblast",Ukraine,Ukraine,,,,,Former First Minister of the Ministry of Foreign Affairs of the Lugansk People's Republic (LNR),,,,,,,,,"(UK Sanctions List Ref):RUS0107 (UK Statement of Reasons):Former ""Minister of Internal Affairs of the Lugansk People's Republic"", as such responsible for the separatist ""governmental"" activities of the ""government of the Lugansk People's Republic."" (Gender):Male",Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,16/09/2022,13016 +IVAKIN,Yuri,Vladimirovich,,,,,Юрий Владимирович ИВАКИН,,Russian,13/08/1954,"(1) Perevalsk, Luhansk Oblast",Ukraine,Ukraine,,,,,Former First Minister of the Ministry of Foreign Affairs of the Lugansk People's Republic (LNR),,,,,,,,,"(UK Sanctions List Ref):RUS0107 (UK Statement of Reasons):Former ""Minister of Internal Affairs of the Lugansk People's Republic"", as such responsible for the separatist ""governmental"" activities of the ""government of the Lugansk People's Republic."" (Gender):Male",Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,16/09/2022,13016 +IVANAYEV,Andrei,Sergeyevich,,,,Lieutenant General,ИВАНАЕВ Андрей Сергеевич,,,19/01/1972,Uralsk,Kazakhstan,Russia,,,,,"Commander 20th Combined Arms Army, Western Military District",Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0831 (UK Statement of Reasons):Lieutenant General Andrei Sergeyevich IVANAYEV is a member of the Armed Forces of the Russian Federation, he currently holds the position of Commander of the 20th Combined Arms Army of the Western Military District. He is considered to have been in direct command of and/or to have substantial influence regarding the deployment of Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14782 +IVANINSKY,Oleg,Ivanovich,,,,,Иванинский Олег Иванович,,,05/06/1966,Novosibirsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0389 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14334 +IVANOV,Sergei,Borisovich,,,,,ИВАНОВ Сергей Борисович,Cyrillic,Russian,31/01/1953,St. Petersburg,Russia,Russia,,,,,"(1) Special Presidential Representative for Environmental Protection, Ecology and Transport (2) Member of the Russian Security Council",12 BLD 1 Rochdelskaya Street Apt 13,,,,,,,,"(UK Sanctions List Ref):RUS0728 (UK Statement of Reasons):Sergei Borisovich IVANOV is a permanent member of the Russian Security Council (RSC) and Special Representative of the President for Environmental Protection, Ecology and Transport. The RSC has been involved actively in decision-making about Russian policy towards Ukraine. On 21 February 2022, the RSC supported a proposal to recognise Donetsk and Luhansk as independent republics. IVANOV has therefore been responsible for, provided support to, or promoted a policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14679 +IVANOV,Sergei,Sergeivich,,,,,Сергей Сергеевич Иванов,Cyrillic,Russian,23/10/1980,Moscow,Russia,Russia,759511560,"Country: Russia, Issue Date: 29/10/18, Expire Date: 29/10/2028",,,Chairman of the Board of ALROSA JSC,"Apt 13, 12 BLD",1 Rochdelskaya Street,,,,Moscow,123002,Russia,"(UK Sanctions List Ref):RUS1120 (UK Statement of Reasons):Sergei Sergeivich IVANOV is CEO of Alrosa, a diamond mining company, part-owned by the Russian State. Sergi Sergeivich IVANOV is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because he is associated with an involved person, Sergey Borisovich Ivanov. Sergei Sergeivich IVANOV is also involved in obtaining a benefit from or supporting the Government of Russia by working as a director (whether executive or non-executive), trustee, or equivalent, of Alrosa, a Government of Russia-affiliated entity carrying out business in the Russian extractives sector, a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,06/04/2022,06/04/2022,20/07/2022,15068 +IVANOV,Sergejj,Sergeevich,,,,,,,,23/10/1980,Moscow,Russia,Russia,759511560,"Country: Russia, Issue Date: 29/10/18, Expire Date: 29/10/2028",,,Chairman of the Board of ALROSA JSC,"Apt 13, 12 BLD",1 Rochdelskaya Street,,,,Moscow,123002,Russia,"(UK Sanctions List Ref):RUS1120 (UK Statement of Reasons):Sergei Sergeivich IVANOV is CEO of Alrosa, a diamond mining company, part-owned by the Russian State. Sergi Sergeivich IVANOV is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because he is associated with an involved person, Sergey Borisovich Ivanov. Sergei Sergeivich IVANOV is also involved in obtaining a benefit from or supporting the Government of Russia by working as a director (whether executive or non-executive), trustee, or equivalent, of Alrosa, a Government of Russia-affiliated entity carrying out business in the Russian extractives sector, a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,06/04/2022,06/04/2022,20/07/2022,15068 +IVANOV,Sergey,Pavlovich,,,,,Сергей Павлович Иванов,,,19/04/1952,Leningrad/St Petersburg,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS1013 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14964 +IVANOV,Sergey,Sergeevich,,,,,,,,23/10/1980,Moscow,Russia,Russia,759511560,"Country: Russia, Issue Date: 29/10/18, Expire Date: 29/10/2028",,,Chairman of the Board of ALROSA JSC,"Apt 13, 12 BLD",1 Rochdelskaya Street,,,,Moscow,123002,Russia,"(UK Sanctions List Ref):RUS1120 (UK Statement of Reasons):Sergei Sergeivich IVANOV is CEO of Alrosa, a diamond mining company, part-owned by the Russian State. Sergi Sergeivich IVANOV is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because he is associated with an involved person, Sergey Borisovich Ivanov. Sergei Sergeivich IVANOV is also involved in obtaining a benefit from or supporting the Government of Russia by working as a director (whether executive or non-executive), trustee, or equivalent, of Alrosa, a Government of Russia-affiliated entity carrying out business in the Russian extractives sector, a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,06/04/2022,06/04/2022,20/07/2022,15068 +IVANOV,Sergey,Sergeivich,,,,,,,,23/10/1980,Moscow,Russia,Russia,759511560,"Country: Russia, Issue Date: 29/10/18, Expire Date: 29/10/2028",,,Chairman of the Board of ALROSA JSC,"Apt 13, 12 BLD",1 Rochdelskaya Street,,,,Moscow,123002,Russia,"(UK Sanctions List Ref):RUS1120 (UK Statement of Reasons):Sergei Sergeivich IVANOV is CEO of Alrosa, a diamond mining company, part-owned by the Russian State. Sergi Sergeivich IVANOV is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because he is associated with an involved person, Sergey Borisovich Ivanov. Sergei Sergeivich IVANOV is also involved in obtaining a benefit from or supporting the Government of Russia by working as a director (whether executive or non-executive), trustee, or equivalent, of Alrosa, a Government of Russia-affiliated entity carrying out business in the Russian extractives sector, a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,06/04/2022,06/04/2022,20/07/2022,15068 +IVANOV,Timur,Vadimovich,,,,,ИВАНОВ Тимур Вадимович,,,15/08/1975,Moscow,Russia,Russia,,,,,Deputy Minister of Defence of the Russian Federation,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0839 (UK Statement of Reasons):State Councillor of the Russian Federation, 1st Class Timur Vadimovich IVANOV is a Deputy Minister of Defence of the Armed Forces of the Russian Federation. He is considered to have been either in direct command of and/or to have substantial influence regarding the deployment of Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14790 +IVANOV JR.,Sergey,,,,,,,,,23/10/1980,Moscow,Russia,Russia,759511560,"Country: Russia, Issue Date: 29/10/18, Expire Date: 29/10/2028",,,Chairman of the Board of ALROSA JSC,"Apt 13, 12 BLD",1 Rochdelskaya Street,,,,Moscow,123002,Russia,"(UK Sanctions List Ref):RUS1120 (UK Statement of Reasons):Sergei Sergeivich IVANOV is CEO of Alrosa, a diamond mining company, part-owned by the Russian State. Sergi Sergeivich IVANOV is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because he is associated with an involved person, Sergey Borisovich Ivanov. Sergei Sergeivich IVANOV is also involved in obtaining a benefit from or supporting the Government of Russia by working as a director (whether executive or non-executive), trustee, or equivalent, of Alrosa, a Government of Russia-affiliated entity carrying out business in the Russian extractives sector, a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,06/04/2022,06/04/2022,20/07/2022,15068 +IVANOV,Maxim,Anatolievich,,,,,Иванов Максим Анатольевич,,,24/11/1967,Sverdlovsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0391 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14336 +IVANOV,Maxim,Evgenievich,,,,,Иванов Максим Евгеньевич,,,23/05/1987,Berezovka,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0392 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14337 +IVANOV,Nikolai,Nikolaevich,,,,,Иванов Николай Николаевич,,,17/01/1957,Kursk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0393 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14338 +IVANOV,Vladimir,Valerievich,,,,,Иванов Владимир Валерьевич,,,10/02/1971,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0390 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14335 +IVANYUZHENKOV,Boris,Viktorovich,,,,,Иванюженков Борис Викторович,,,25/02/1966,Reutov,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0394 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14339 +IVASCHENKO,Konstantin,Vladimirovich,,,,,,,,03/10/1963,Zhadnov,Ukraine,Ukraine,,,,,Head of the Mariupol city administration,,,,,,,,,"(UK Sanctions List Ref):RUS1648 (UK Statement of Reasons):Konstantin IVASHCHENKO is the Russian appointed head of the Mariupol city administration, following Russian forces’ occupation of Mariupol. IVASHCHENKO is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because in this role he supports and promotes actions and policies that destabilise and undermine or threaten the territorial integrity, sovereignty, or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15590 +IVASHCHENKO,Konstantin,Vladimirovich,,,,,Костянтин Володимирович Іващенко,Cyrilic,Ukrainian,03/10/1963,Zhadnov,Ukraine,Ukraine,,,,,Head of the Mariupol city administration,,,,,,,,,"(UK Sanctions List Ref):RUS1648 (UK Statement of Reasons):Konstantin IVASHCHENKO is the Russian appointed head of the Mariupol city administration, following Russian forces’ occupation of Mariupol. IVASHCHENKO is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because in this role he supports and promotes actions and policies that destabilise and undermine or threaten the territorial integrity, sovereignty, or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15590 +IVENSKIKH,Irina,Valentinovna,,,,,Ивенских Ирина Валентиновна,,,22/07/1972,Mirny,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0395 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14340 +IVLEV,Leonid,Grigorievich,,,,,Ивлев Леонид Григорьевич,,,01/05/1953,Voronezh,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0396 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14341 +IWANOW,Sergei,Sergejewitsch,,,,,,,,23/10/1980,Moscow,Russia,Russia,759511560,"Country: Russia, Issue Date: 29/10/18, Expire Date: 29/10/2028",,,Chairman of the Board of ALROSA JSC,"Apt 13, 12 BLD",1 Rochdelskaya Street,,,,Moscow,123002,Russia,"(UK Sanctions List Ref):RUS1120 (UK Statement of Reasons):Sergei Sergeivich IVANOV is CEO of Alrosa, a diamond mining company, part-owned by the Russian State. Sergi Sergeivich IVANOV is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because he is associated with an involved person, Sergey Borisovich Ivanov. Sergei Sergeivich IVANOV is also involved in obtaining a benefit from or supporting the Government of Russia by working as a director (whether executive or non-executive), trustee, or equivalent, of Alrosa, a Government of Russia-affiliated entity carrying out business in the Russian extractives sector, a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,06/04/2022,06/04/2022,20/07/2022,15068 +IYADH,Abou,,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,,,,,,,,Libya,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +IYADH,Abou,,,,,,,,,08/11/1965,Tunis,Tunisia,Tunisia,G557170,Tunisia number. Issued on 16 Nov. 1989.,05054425,Tunisia National Identification Card. Issued in Hammam Lif on 3 May 2011.,,60 Rue de la Libye Hamman Lif,Ben Arous,,,,,,Tunisia,(UK Sanctions List Ref):AQD0313 (UN Ref):QDi.333 Founder of the Tunisian Combatant Group (QDe.090) and leader of Ansar al-Shari'a in Tunisia (AAS-T) (QDe.143). Arrest warrant issued by Tunisian Court of First Instance on 23 Aug. 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5817982,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13130 +IYAMUREMYE,GASTON,,,,,,,,,00/00/1948,"(1) Musanze District, Northern Province (2) Ruhengeri",(1) Rwanda (2) Rwanda,Rwanda,,,,,1st Vice-President. FDLR Interim President. Major General of the FDLR-FOCA,,,,,,North Kivu Province,,Congo (Democratic Republic),(UK Sanctions List Ref):DRC0032 (UN Ref):CDi.003 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272456 (Gender):Male,Individual,Primary name,,Democratic Republic of the Congo,03/12/2010,01/12/2010,21/01/2021,11276 +IZABAYO,Deogratias,Bigaruka,,,,,,,,01/01/1966,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +IZABAYO,Deogratias,Bigaruka,,,,,,,,00/00/1967,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +IZABAYO,Deogratias,Bigaruka,,,,,,,,28/08/1966,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +IZHEVKSY UNMANNED SYSTEMS,,,,,,,,,,,,,,,,,,,2 Ordzhonikidze Street,,,,,Udmurt Republic,426063,Russia,"(UK Sanctions List Ref):RUS1429 (UK Statement of Reasons):Izhevsk Unmanned Systems is, or has been, involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the defence sector. (Phone number):7(3412) 655 390 (Website):http://www.izh-bs/ru (Email address):info@izh-bs.ru (Business Reg No):INN - 1831117433 OGRN - 1061831040688",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15376 +IZHEVSKIY MASHINOSTROITEL'NYI ZAVOD OAO,,,,,,,,,,,,,,,,,,,3B,Deryabina avenue,,,,Izhevsk,394018,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +IZHEVSKIY MASHINOSTROITEL'NYI ZAVOD OAO,,,,,,,,,,,,,,,,,,,3,Derjabin Pr,,,,Izhevsk,426006,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +IZHMASH R&D CENTER,,,,,,,,,,,,,,,,,,,3B,Deryabina avenue,,,,Izhevsk,394018,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +IZHMASH R&D CENTER,,,,,,,,,,,,,,,,,,,3,Derjabin Pr,,,,Izhevsk,426006,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +IZHMASH UNMANNED SYSTEMS,,,,,,,Ижмаш Беспилотные системы,Cyrillic,Russian,,,,,,,,,,2 Ordzhonikidze Street,,,,,Udmurt Republic,426063,Russia,"(UK Sanctions List Ref):RUS1429 (UK Statement of Reasons):Izhevsk Unmanned Systems is, or has been, involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the defence sector. (Phone number):7(3412) 655 390 (Website):http://www.izh-bs/ru (Email address):info@izh-bs.ru (Business Reg No):INN - 1831117433 OGRN - 1061831040688",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15376 +IZMASH UNMANNED SYSTEMS,,,,,,,Ижмаш беспилотные системы,Cyrillic,Russian,,,,,,,,,,2 Ordzhonikidze Street,,,,,Udmurt Republic,426063,Russia,"(UK Sanctions List Ref):RUS1429 (UK Statement of Reasons):Izhevsk Unmanned Systems is, or has been, involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the defence sector. (Phone number):7(3412) 655 390 (Website):http://www.izh-bs/ru (Email address):info@izh-bs.ru (Business Reg No):INN - 1831117433 OGRN - 1061831040688",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15376 +IZZA,Ammy,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +JA HYONG,KU,,,,,,,,,08/09/1957,,,North Korea,,,,,Ku Ja Hyong is a Foreign Trade Bank chief representative in Libya,,,,,,,,Libya,(UK Sanctions List Ref):DPR0245 (UN Ref):KPi.070 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13565 +JABBAR,,,,,,Mullah,,,,00/00/1958,Zabul Province,Afghanistan,Afghanistan,,,,,Governor of Baghlan Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0067 (UN Ref):TAi.088 Belongs to Hottak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6907 +JABBAR,Mauwin,,,,,,,,,00/00/1958,Zabul Province,Afghanistan,Afghanistan,,,,,Governor of Baghlan Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0067 (UN Ref):TAi.088 Belongs to Hottak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6907 +JABER,Aymin,,,,,,,,,00/00/1967,Latakia,Syria,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0144 (UK Statement of Reasons):Leading businessman operating in Syria. He has a financial interest and/or holds senior executive positions in a number of companies and entities in Syria. Through his businesses Ayman Jabir benefits from, and provides support to, the Syrian regime. Further, he is a member of a militia ('Sugur as-Sahraa') and an associate of Rami Makhlouf and Maher al-Assad. (Gender):Male",Individual,Primary name variation,,Syria,27/01/2015,31/12/2020,13/05/2022,12023 +JABHAT AL-NUSRAH,,,,,,,جبهة النصرة,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +JABHAT AL-NUSRAH,,,,,,,جبهة النصرة,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +JABHAT FATAH AL-SHAM,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +JABHAT FATAH AL-SHAM,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +JABHAT FATEH AL-SHAM,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +JABHAT FATEH AL-SHAM,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +JABHAT FATH AL SHAM,,,,,,,جبهة فتح الشام,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +JABHAT FATH AL SHAM,,,,,,,جبهة فتح الشام,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +JABHAT FATH AL-SHAM,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +JABHAT FATH AL-SHAM,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +JABHET AL-NUSRA,,,,,,,جبهة النصرة,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +JABHET AL-NUSRA,,,,,,,جبهة النصرة,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +JABIR,Ayman,,,,,,جابر أيمن,,,00/00/1967,Latakia,Syria,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0144 (UK Statement of Reasons):Leading businessman operating in Syria. He has a financial interest and/or holds senior executive positions in a number of companies and entities in Syria. Through his businesses Ayman Jabir benefits from, and provides support to, the Syrian regime. Further, he is a member of a militia ('Sugur as-Sahraa') and an associate of Rami Makhlouf and Maher al-Assad. (Gender):Male",Individual,Primary name,,Syria,27/01/2015,31/12/2020,13/05/2022,12023 +JABIR,Mohammed,,,,,,,,,,Latakia,,Syria,,,,,Founder of Desert Hawks,,,,,,,,,"(UK Sanctions List Ref):SYR0154 (UK Statement of Reasons):Shabiha militia, Associate of Maher Al-Assad for the Shabiha militia. Directly involved in repression and violence against the civilian population and coordination of Shabiha militia groups. (Gender):Male",Individual,Primary name,,Syria,24/08/2011,31/12/2020,31/12/2020,12052 +JABIR,ABU,BAKR,YUNIS,,,,,,,00/00/1952,Jalo,Libya,,,,,,Defence Minister,,,,,,,,,(UK Sanctions List Ref):LIB0044 (UN Ref):LYi.007 Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze). Believed status/location: deceased. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525775,Individual,Primary name,,Libya,03/03/2011,26/02/2011,31/12/2020,11658 +JADEED,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0132 (UK Statement of Reasons):Presidential Guard. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,31/12/2020,12420 +JADHRAN,Ibrahim,Saeed,Salim,,,,,,,29/10/1982,,,Libya,S/263963,Issued on 8 Nov 2012,(1) 119820043341 (2) 137803,(1) - (2) Personal ID,Leader of armed militias,,,,,,,,,"(UK Sanctions List Ref):LIB0052 (UN Ref):LYi.027 Name of mother Salma Abdula Younis. Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,Primary name,,Libya,12/09/2018,11/09/2018,10/02/2022,13711 +JADRAN,Mohammad-Omar,,,,,,,,,00/00/1958,"Sultan Kheyl Village, Spera District, Khost Province",Afghanistan,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AFG0137 (UN Ref):TAi.171 Haqqani Network (HQN) (TAe.012) leader in command of over 100 militants active in Khost Province, Afghanistan as of 2013. Involved in the preparation of attacks against Afghan and international forces in Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here. Pakistan Border Area",Individual,AKA,Good quality,Afghanistan,31/07/2014,31/07/2014,01/02/2021,13146 +JAE IL,RI,,,,,,,,,00/00/1934,,,North Korea,,,,,"Vice Director of the Workers’ Party of Korea Propaganda and Agitation Department, which controls all DPRK’s media and is used by the government to control the public",,,,,,,,,(UK Sanctions List Ref):DPR0263 (UN Ref):KPi.051,Individual,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,31/12/2020,13481 +JAFAR,Anis,Alawi,,,,,,,,20/07/1966,Central Java,Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0331 (UN Ref):QDi.294 Senior member of Jemaah Islamiyah (QDe.092) involved in planning and funding multiple terrorist attacks in the Philippines and Indonesia. Provided training to Abu Sayyaf Group (QDe.001). Convicted for his role in the 2002 Bali bombings and sentenced to 20 years in prison in Jun. 2012. Remains in custody in Indonesia as at May 2015. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173385,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,12/01/2022,12021 +JAFARI,Asadollah,,,,,,,,,,,,,,,,,Prosecutor of Mazandaran Province,,,,,,,,,"(UK Sanctions List Ref):IHR0021 (UK Statement of Reasons):As Prosecutor of Mazandaran Province, Jafari has recommended the imposition of the death penalty in cases he has prosecuted, which has resulted in many executions including public executions and in circumstances where the imposition of the death penalty is contrary to international human rights, including by being disproportionate and excessive punishment. Jafari has also been responsible for illegal arrests and violations of the rights of Baha'i detainees from initial arrest to keeping them in solitary confinement in the Intelligence Detention Centre. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/03/2013,31/12/2020,31/12/2020,12853 +JAFARI,Assadollah,,,,,,,,,,,,,,,,,Prosecutor of Mazandaran Province,,,,,,,,,"(UK Sanctions List Ref):IHR0021 (UK Statement of Reasons):As Prosecutor of Mazandaran Province, Jafari has recommended the imposition of the death penalty in cases he has prosecuted, which has resulted in many executions including public executions and in circumstances where the imposition of the death penalty is contrary to international human rights, including by being disproportionate and excessive punishment. Jafari has also been responsible for illegal arrests and violations of the rights of Baha'i detainees from initial arrest to keeping them in solitary confinement in the Intelligence Detention Centre. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/03/2013,31/12/2020,31/12/2020,12853 +JAFARI,Milad,,,,,,,,,20/09/1974,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0027 (UK Statement of Reasons):An Iranian national who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) front companies.",Individual,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12234 +JAFARI,Reza,,,,,,,,,00/00/1967,,,,,,,,Retired. (1) Former Advisor to the Disciplinary Court for Judges (2) Former Head of Special Prosecutors Office for cyber-crime,,,,,,,,,"(UK Sanctions List Ref):IHR0072 (UK Statement of Reasons):Senior figure in the Iranian judiciary, now retired. Was previously Aadvisor to the Disciplinary Court for Judges, and former Head of Special Prosecution Office of Cyber-crime between 2007 and 2012. He was responsible for the repression of freedom of expression, including through the arrest, arbitrary detention and prosecution of bloggers and journalists, which in some cases then carried the death penalty. He promoted the violation of the right to life through his remarks, and failed to prevent the mistreatment and arbitrary detention of persons arrested on suspicion of cyber-crime. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12661 +JA'FARI,Reza,,,,,,,,,00/00/1967,,,,,,,,Retired. (1) Former Advisor to the Disciplinary Court for Judges (2) Former Head of Special Prosecutors Office for cyber-crime,,,,,,,,,"(UK Sanctions List Ref):IHR0072 (UK Statement of Reasons):Senior figure in the Iranian judiciary, now retired. Was previously Aadvisor to the Disciplinary Court for Judges, and former Head of Special Prosecution Office of Cyber-crime between 2007 and 2012. He was responsible for the repression of freedom of expression, including through the arrest, arbitrary detention and prosecution of bloggers and journalists, which in some cases then carried the death penalty. He promoted the violation of the right to life through his remarks, and failed to prevent the mistreatment and arbitrary detention of persons arrested on suspicion of cyber-crime. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12661 +JAFARI,Ali,,,,,,,,,01/09/1957,Yazd,Iran,Iran,,,,,Former General Commander of Islamic Revolutionary Guards Corps,,,,,,,,,"(UK Sanctions List Ref):IHR0061, INU0011 and SYR0161 Listed under the Iran (Human Rights), Iran (Nuclear), and Syria sanctions regimes. (UK Statement of Reasons):Former General Commander of the IRGC. IRGC and the Sarollah Base commanded by General Aziz Jafari has played a key role in illegally interfering with the 2009 Presidential Elections, arresting and detaining political activists, as well as clashing with protestors in the streets. Brigadier Commander Mohammad Ali Jafari is the former General Commander of the Iranian Revolutionary Guard Corps. Involved in providing equipment and support to help the Syrian regime suppress protests in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,13/05/2022,10638 +JAFARI,Ali,,,,,,,,,01/09/1957,Yazd,Iran,Iran,,,,,Former General Commander of Islamic Revolutionary Guards Corps,,,,,,,,,"(UK Sanctions List Ref):IHR0061, INU0011 and SYR0161 Listed under the Iran (Human Rights), Iran (Nuclear), and Syria sanctions regimes. (UK Statement of Reasons):Former General Commander of the IRGC. IRGC and the Sarollah Base commanded by General Aziz Jafari has played a key role in illegally interfering with the 2009 Presidential Elections, arresting and detaining political activists, as well as clashing with protestors in the streets. Brigadier Commander Mohammad Ali Jafari is the former General Commander of the Iranian Revolutionary Guard Corps. Involved in providing equipment and support to help the Syrian regime suppress protests in Syria. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,13/05/2022,10638 +JAFARI,Ali,,,,,,,,,01/09/1957,Yazd,Iran,Iran,,,,,Former General Commander of Islamic Revolutionary Guards Corps,,,,,,,,,"(UK Sanctions List Ref):IHR0061, INU0011 and SYR0161 Listed under the Iran (Human Rights), Iran (Nuclear), and Syria sanctions regimes. (UK Statement of Reasons):Former General Commander of the IRGC. IRGC and the Sarollah Base commanded by General Aziz Jafari has played a key role in illegally interfering with the 2009 Presidential Elections, arresting and detaining political activists, as well as clashing with protestors in the streets. Brigadier Commander Mohammad Ali Jafari is the former General Commander of the Iranian Revolutionary Guard Corps. Involved in providing equipment and support to help the Syrian regime suppress protests in Syria. (Gender):Male",Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,13/05/2022,10638 +JAFARI,Aziz,,,,,,,,,01/09/1957,Yazd,Iran,Iran,,,,,Former General Commander of Islamic Revolutionary Guards Corps,,,,,,,,,"(UK Sanctions List Ref):IHR0061, INU0011 and SYR0161 Listed under the Iran (Human Rights), Iran (Nuclear), and Syria sanctions regimes. (UK Statement of Reasons):Former General Commander of the IRGC. IRGC and the Sarollah Base commanded by General Aziz Jafari has played a key role in illegally interfering with the 2009 Presidential Elections, arresting and detaining political activists, as well as clashing with protestors in the streets. Brigadier Commander Mohammad Ali Jafari is the former General Commander of the Iranian Revolutionary Guard Corps. Involved in providing equipment and support to help the Syrian regime suppress protests in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,13/05/2022,10638 +JAFARI,Aziz,,,,,,,,,01/09/1957,Yazd,Iran,Iran,,,,,Former General Commander of Islamic Revolutionary Guards Corps,,,,,,,,,"(UK Sanctions List Ref):IHR0061, INU0011 and SYR0161 Listed under the Iran (Human Rights), Iran (Nuclear), and Syria sanctions regimes. (UK Statement of Reasons):Former General Commander of the IRGC. IRGC and the Sarollah Base commanded by General Aziz Jafari has played a key role in illegally interfering with the 2009 Presidential Elections, arresting and detaining political activists, as well as clashing with protestors in the streets. Brigadier Commander Mohammad Ali Jafari is the former General Commander of the Iranian Revolutionary Guard Corps. Involved in providing equipment and support to help the Syrian regime suppress protests in Syria. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,13/05/2022,10638 +JAFARI,Aziz,,,,,,,,,01/09/1957,Yazd,Iran,Iran,,,,,Former General Commander of Islamic Revolutionary Guards Corps,,,,,,,,,"(UK Sanctions List Ref):IHR0061, INU0011 and SYR0161 Listed under the Iran (Human Rights), Iran (Nuclear), and Syria sanctions regimes. (UK Statement of Reasons):Former General Commander of the IRGC. IRGC and the Sarollah Base commanded by General Aziz Jafari has played a key role in illegally interfering with the 2009 Presidential Elections, arresting and detaining political activists, as well as clashing with protestors in the streets. Brigadier Commander Mohammad Ali Jafari is the former General Commander of the Iranian Revolutionary Guard Corps. Involved in providing equipment and support to help the Syrian regime suppress protests in Syria. (Gender):Male",Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,13/05/2022,10638 +JAFARI,Mohammad,Ali,,,,,,,,01/09/1957,Yazd,Iran,Iran,,,,,Former General Commander of Islamic Revolutionary Guards Corps,,,,,,,,,"(UK Sanctions List Ref):IHR0061, INU0011 and SYR0161 Listed under the Iran (Human Rights), Iran (Nuclear), and Syria sanctions regimes. (UK Statement of Reasons):Former General Commander of the IRGC. IRGC and the Sarollah Base commanded by General Aziz Jafari has played a key role in illegally interfering with the 2009 Presidential Elections, arresting and detaining political activists, as well as clashing with protestors in the streets. Brigadier Commander Mohammad Ali Jafari is the former General Commander of the Iranian Revolutionary Guard Corps. Involved in providing equipment and support to help the Syrian regime suppress protests in Syria. (Gender):Male",Individual,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,13/05/2022,10638 +JAFARI,Mohammad,Ali,,,,,,,,01/09/1957,Yazd,Iran,Iran,,,,,Former General Commander of Islamic Revolutionary Guards Corps,,,,,,,,,"(UK Sanctions List Ref):IHR0061, INU0011 and SYR0161 Listed under the Iran (Human Rights), Iran (Nuclear), and Syria sanctions regimes. (UK Statement of Reasons):Former General Commander of the IRGC. IRGC and the Sarollah Base commanded by General Aziz Jafari has played a key role in illegally interfering with the 2009 Presidential Elections, arresting and detaining political activists, as well as clashing with protestors in the streets. Brigadier Commander Mohammad Ali Jafari is the former General Commander of the Iranian Revolutionary Guard Corps. Involved in providing equipment and support to help the Syrian regime suppress protests in Syria. (Gender):Male",Individual,Primary name,,Syria,24/06/2011,31/12/2020,13/05/2022,10638 +JAFARI,Mohammad,Ali,,,,,,,,01/09/1957,Yazd,Iran,Iran,,,,,Former General Commander of Islamic Revolutionary Guards Corps,,,,,,,,,"(UK Sanctions List Ref):IHR0061, INU0011 and SYR0161 Listed under the Iran (Human Rights), Iran (Nuclear), and Syria sanctions regimes. (UK Statement of Reasons):Former General Commander of the IRGC. IRGC and the Sarollah Base commanded by General Aziz Jafari has played a key role in illegally interfering with the 2009 Presidential Elections, arresting and detaining political activists, as well as clashing with protestors in the streets. Brigadier Commander Mohammad Ali Jafari is the former General Commander of the Iranian Revolutionary Guard Corps. Involved in providing equipment and support to help the Syrian regime suppress protests in Syria. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,13/05/2022,10638 +JA'FARI DOWLATABADI,Abbas,,,,,,,,,00/10/1957,(1) Isfahan (2) Yazd,(1) Iran (2) Iran,Iran,,,,,Former prosecutor general of Tehran ( Aug 2009-Apr 2019),,,,,,,,,"(UK Sanctions List Ref):IHR0002 (UK Statement of Reasons):Prosecutor general of Tehran. ( August 2009 until May 2019). Dolatabadi's office indicted a large number of protesters, including individuals who took part in the December 2009 Ashura Day protests. He ordered the closure of Karroubi's office in September 2009 and the arrest of several reformist politicians, and he banned two reformist political parties in June 2010. His office charged protesters with the charge of Muharebeh, or enmity against God, which carries a death sentence, and denied due process to those facing the death sentence. His office also targeted and arrested reformists, human rights activists, and members of the media, as part of a broad crackdown on the political opposition. In October 2018 he announced to the media that four detained Iranian environmental activists were to be charged with “sowing corruption on earth”, a charge which carries the death penalty. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11795 +JA'FARI DOWLATABADI,Abbas,,,,,,,,,00/00/1953,(1) Isfahan (2) Yazd,(1) Iran (2) Iran,Iran,,,,,Former prosecutor general of Tehran ( Aug 2009-Apr 2019),,,,,,,,,"(UK Sanctions List Ref):IHR0002 (UK Statement of Reasons):Prosecutor general of Tehran. ( August 2009 until May 2019). Dolatabadi's office indicted a large number of protesters, including individuals who took part in the December 2009 Ashura Day protests. He ordered the closure of Karroubi's office in September 2009 and the arrest of several reformist politicians, and he banned two reformist political parties in June 2010. His office charged protesters with the charge of Muharebeh, or enmity against God, which carries a death sentence, and denied due process to those facing the death sentence. His office also targeted and arrested reformists, human rights activists, and members of the media, as part of a broad crackdown on the political opposition. In October 2018 he announced to the media that four detained Iranian environmental activists were to be charged with “sowing corruption on earth”, a charge which carries the death penalty. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11795 +JAFARI-DOLATABADI,Abbas,,,,,,,,,00/10/1957,(1) Isfahan (2) Yazd,(1) Iran (2) Iran,Iran,,,,,Former prosecutor general of Tehran ( Aug 2009-Apr 2019),,,,,,,,,"(UK Sanctions List Ref):IHR0002 (UK Statement of Reasons):Prosecutor general of Tehran. ( August 2009 until May 2019). Dolatabadi's office indicted a large number of protesters, including individuals who took part in the December 2009 Ashura Day protests. He ordered the closure of Karroubi's office in September 2009 and the arrest of several reformist politicians, and he banned two reformist political parties in June 2010. His office charged protesters with the charge of Muharebeh, or enmity against God, which carries a death sentence, and denied due process to those facing the death sentence. His office also targeted and arrested reformists, human rights activists, and members of the media, as part of a broad crackdown on the political opposition. In October 2018 he announced to the media that four detained Iranian environmental activists were to be charged with “sowing corruption on earth”, a charge which carries the death penalty. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11795 +JAFARI-DOLATABADI,Abbas,,,,,,,,,00/00/1953,(1) Isfahan (2) Yazd,(1) Iran (2) Iran,Iran,,,,,Former prosecutor general of Tehran ( Aug 2009-Apr 2019),,,,,,,,,"(UK Sanctions List Ref):IHR0002 (UK Statement of Reasons):Prosecutor general of Tehran. ( August 2009 until May 2019). Dolatabadi's office indicted a large number of protesters, including individuals who took part in the December 2009 Ashura Day protests. He ordered the closure of Karroubi's office in September 2009 and the arrest of several reformist politicians, and he banned two reformist political parties in June 2010. His office charged protesters with the charge of Muharebeh, or enmity against God, which carries a death sentence, and denied due process to those facing the death sentence. His office also targeted and arrested reformists, human rights activists, and members of the media, as part of a broad crackdown on the political opposition. In October 2018 he announced to the media that four detained Iranian environmental activists were to be charged with “sowing corruption on earth”, a charge which carries the death penalty. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11795 +JAFERI,Milad,,,,,,,,,20/09/1974,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0027 (UK Statement of Reasons):An Iranian national who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) front companies.",Individual,Primary name variation,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12234 +JAHANBAKHSH,Rahim,,,,,,,,,,,Iran,Iran,,,,,Law Enforcement Force Commander in West Azerbaijan province,,,,,,,,,"(UK Sanctions List Ref):IHR0102 (UK Statement of Reasons):Rahim JAHANBAKHSH is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and the right to freedom of expression and peaceful assembly in Iran through his role as Law Enforcement Force (LEF) commander for West Azerbaijan and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15622 +JAISH ANSAR AL-SUNNA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0032 (UN Ref):QDe.098 The founder is Najmuddin Faraj Ahmad (QDi.226). Associated with Al-Qaida in Iraq (QDe.115). Located and primarily active in northern Iraq but maintains a presence in western and central Iraq. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282119,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2003,24/02/2003,31/12/2020,7021 +JAISH-I-MOHAMMED,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0053 (UN Ref):QDe.019,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,7029 +JAK-A,,,,,,,,,,,,,,,,,,,,,,,,Kabylie region,,Algeria,(UK Sanctions List Ref):AQD0062 (UN Ref):QDe.151 Emerged on 13 Sep. 2014. Most known for its abduction and subsequent beheading of French national Herve Gourdel. Claimed responsibility for attacking police and gendarmes in Algeria and continued planning future attacks. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5919300,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13305 +JALALI,Mohamad,Ghazi,,,,,,,,,,,,,,,,Former Minister of Communications and Technology,,,,,,,,,"(UK Sanctions List Ref):SYR0155 (UK Statement of Reasons):Having been Communications and Technology Minister in the Asad government, Mohamad Ghazi Al-Jalali shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,31/12/2020,13151 +JALALI,Mohammad,Ghazi,,,,,,,,,,,,,,,,Former Minister of Communications and Technology,,,,,,,,,"(UK Sanctions List Ref):SYR0155 (UK Statement of Reasons):Having been Communications and Technology Minister in the Asad government, Mohamad Ghazi Al-Jalali shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,31/12/2020,13151 +JALLOUL,,,,,,,,,,02/04/1966,Biskra,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0097 (UN Ref):QDi.075 Deported from Italy to Algeria on 12 Aug. 2006. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Dec. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424786,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2002,03/09/2002,31/12/2020,7416 +JAMA`AT AL-TAWHID WAL-JIHAD,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0377 Khatiba al-Tawhid wal-Jihad (formerly known as Jannat Oshiklari) is a terrorist organization operating under the umbrella of the international terrorist organization Al-Nusrah Front for the People of the Levant (QDe.137). The group mainly operates in the provinces of Hama, Idlib and Ladhiqiyah, in the Syrian Arab Republic, and also conduct operations in Turkey, Kyrgyzstan, Uzbekistan, Russian Federation, Tajikistan, Kazakhstan, Egypt, Afghanistan, Ukraine. The number of fighters of KTJ is about 500. KTJ also cooperates with such terrorist organizations as Khatiba Imam al-Bukhari (QDe.158) and the Islamic Jihad Group (QDe.119).",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,08/03/2022,07/03/2022,08/03/2022,14211 +JAMA'A NUSRAT UL-ISLAM WA AL-MUSLIMIN,,,,,,,جماعة نصرة الإسلام والمسلمين,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0054 (UN Ref):QDe.159 Associated with Al-Qaida (QDe.004), the Organization of Al-Qaida in the Islamic Maghreb (QDe.014), Ansar Eddine (QDe.135) and Al-Mourabitoun (QDe.141). Operations in Mali and Burkina Faso. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6254410",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,05/10/2018,04/10/2018,31/12/2020,13712 +JAMAAH ANSHARUT DAULAH,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0367 (UN Ref):QDe.164 Established in 2015 as an umbrella group of Indonesian extremist groups that pledged allegiance to then-ISIL leader Abu Bakr al-Baghdadi. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,05/03/2020,04/03/2020,31/12/2020,13830 +JAMAAH ANSHARUT DAULAT,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0367 (UN Ref):QDe.164 Established in 2015 as an umbrella group of Indonesian extremist groups that pledged allegiance to then-ISIL leader Abu Bakr al-Baghdadi. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/03/2020,04/03/2020,31/12/2020,13830 +JAMAAH ANSHARUT TAUHID,,,,,,,,,,,,,,,,,,,JI. Semenromo number 58,04/XV Ngruki,Cemani,Grogol,Sukoharjo,Jawa Tengah,,Indonesia,"(UK Sanctions List Ref):AQD0060 (UN Ref):QDe.133 A group affiliated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), that has perpetrated attacks in Indonesia. Founded and led by Abu Bakar Ba'asyir (QDi.217). Established on 27 Jul. 2008 in Solo, Indonesia. Had been associated with Jemmah Islamiya (JI) (QDe.092). Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 June 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Website: http://ansharuttauhid.com/ INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282133 (Phone number):0271-2167285 (Email address):info@ansharuttauhid.com",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,12/01/2022,12553 +JAMA'AH ANSHARUT TAUHID,,,,,,,,,,,,,,,,,,,JI. Semenromo number 58,04/XV Ngruki,Cemani,Grogol,Sukoharjo,Jawa Tengah,,Indonesia,"(UK Sanctions List Ref):AQD0060 (UN Ref):QDe.133 A group affiliated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), that has perpetrated attacks in Indonesia. Founded and led by Abu Bakar Ba'asyir (QDi.217). Established on 27 Jul. 2008 in Solo, Indonesia. Had been associated with Jemmah Islamiya (JI) (QDe.092). Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 June 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Website: http://ansharuttauhid.com/ INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282133 (Phone number):0271-2167285 (Email address):info@ansharuttauhid.com",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,12/01/2022,12553 +JAMAAH ISLAMIYAH,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0059 (UN Ref):QDe.092 Operates in Southeast Asia, including Indonesia, Malaysia and the Philippines. Associated with the Abu Sayyaf Group (QDe.001). Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282122",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/10/2002,25/10/2002,31/12/2020,7208 +JAMA'AH ISLAMIYAH,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0059 (UN Ref):QDe.092 Operates in Southeast Asia, including Indonesia, Malaysia and the Philippines. Associated with the Abu Sayyaf Group (QDe.001). Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282122",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/10/2002,25/10/2002,31/12/2020,7208 +JAMA'AT AL-DAWA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +JAMA'AT AL-JIHAD,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0051 (UN Ref):QDe.119 Founded and led by Najmiddin Kamolitdinovich Jalolov (deceased) and Suhayl Fatilloevich Buranov (deceased). Associated with the Islamic Movement of Uzbekistan (QDe.010) and Emarat Kavkaz (QDe.131). Active in the Afghanistan/Pakistan border area, Central Asia, South Asia region and some European States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278465",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,06/06/2005,01/06/2005,31/12/2020,8652 +JAMA'AT AL-TAWHID WA'AL-JIHAD,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +JAMAAT MOJAHEDIN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0051 (UN Ref):QDe.119 Founded and led by Najmiddin Kamolitdinovich Jalolov (deceased) and Suhayl Fatilloevich Buranov (deceased). Associated with the Islamic Movement of Uzbekistan (QDe.010) and Emarat Kavkaz (QDe.131). Active in the Afghanistan/Pakistan border area, Central Asia, South Asia region and some European States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278465",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,06/06/2005,01/06/2005,31/12/2020,8652 +JAMAAT UD-DAAWA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +JAMAAT UL-DAWAH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +JAMAAT-E-AHRAR,,,,,,,,,,,,,,,,,,,Lalpura,,,,,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AQD0056 (UN Ref):QDe.152 Splinter group of the Tehrik-e Taliban Pakistan (QDe.132). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Formed in Aug. 2014 in Mohmand Agency, Pakistan. Operates from Nangarhar Province, Afghanistan and Pakistan-Afghanistan border region. Banned in Pakistan on 21 Nov. 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6114258",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,07/07/2017,06/07/2017,31/12/2020,13491 +JAMAAT-E-AHRAR,,,,,,,,,,,,,,,,,,,Mohmand Agency,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0056 (UN Ref):QDe.152 Splinter group of the Tehrik-e Taliban Pakistan (QDe.132). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Formed in Aug. 2014 in Mohmand Agency, Pakistan. Operates from Nangarhar Province, Afghanistan and Pakistan-Afghanistan border region. Banned in Pakistan on 21 Nov. 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6114258",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,07/07/2017,06/07/2017,31/12/2020,13491 +JAMA'AT-I-DAWAT,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +JAMAATI-UD-DAWA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +JAMA'ATU AHLIS SUNNA LIDDA'AWATI WAL-JIHAD,,,,,,,جماعة أهل السنة للدعوة والجهاد,,,,,,,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0055 (UN Ref):QDe.138 Affiliate of Al-Qaida (QDe.004), and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Associated with Jama'atu Ansarul Muslimina Fi Biladis-Sudan (Ansaru). The leader is Abubakar Shekau. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,29/05/2014,22/05/2014,31/12/2020,12982 +JAMA'ATU AHLUS-SUNNA LIDDA'AWATI WAL JIHAD,,,,,,,,,,,,,,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0055 (UN Ref):QDe.138 Affiliate of Al-Qaida (QDe.004), and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Associated with Jama'atu Ansarul Muslimina Fi Biladis-Sudan (Ansaru). The leader is Abubakar Shekau. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,22/05/2014,31/12/2020,12982 +JAMA'ATU AHLUS-SUNNAH LIDDA'AWATI WAL JIHAD,,,,,,,,,,,,,,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0055 (UN Ref):QDe.138 Affiliate of Al-Qaida (QDe.004), and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Associated with Jama'atu Ansarul Muslimina Fi Biladis-Sudan (Ansaru). The leader is Abubakar Shekau. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,22/05/2014,31/12/2020,12982 +JAMA'ATU ANSARIL MUSLIMINA FI BILADIS SUDAN (JAMBS),,,,,,,,,,,,,,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0035 (UN Ref):QDe.142 Terrorist and paramilitary group established in 2012 and operating in Nigeria. Associated with the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014), Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138) and Abubakar Mohammed Shekau (QDi322). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,08/07/2014,26/06/2014,16/02/2022,13007 +JAMA'ATU ANSARUL MUSLIMINA FI BILADIS-SUDAN (JAMBS),,,,,,,,,,,,,,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0035 (UN Ref):QDe.142 Terrorist and paramilitary group established in 2012 and operating in Nigeria. Associated with the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014), Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138) and Abubakar Mohammed Shekau (QDi322). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,08/07/2014,26/06/2014,16/02/2022,13007 +JAMA'AT-UD-DA'AWAH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +JAMAAT-UD-DAWA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +JAMAAT-UL-AHRAR,,,,,,,جمات ال احرار,,,,,,,,,,,,Lalpura,,,,,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AQD0056 (UN Ref):QDe.152 Splinter group of the Tehrik-e Taliban Pakistan (QDe.132). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Formed in Aug. 2014 in Mohmand Agency, Pakistan. Operates from Nangarhar Province, Afghanistan and Pakistan-Afghanistan border region. Banned in Pakistan on 21 Nov. 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6114258",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,07/07/2017,06/07/2017,31/12/2020,13491 +JAMAAT-UL-AHRAR,,,,,,,جمات ال احرار,,,,,,,,,,,,Mohmand Agency,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0056 (UN Ref):QDe.152 Splinter group of the Tehrik-e Taliban Pakistan (QDe.132). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Formed in Aug. 2014 in Mohmand Agency, Pakistan. Operates from Nangarhar Province, Afghanistan and Pakistan-Afghanistan border region. Banned in Pakistan on 21 Nov. 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6114258",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,07/07/2017,06/07/2017,31/12/2020,13491 +JAMAAT-UL-DAWA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +JAMAIAT-UD-DAWA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +JAMAL,Abu,,,,,,,,,01/01/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +JAMAL,Abu,,,,,,,,,01/02/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +JAMAL,Muhammad,,,,,,,,,01/01/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +JAMAL,Muhammad,,,,,,,,,01/02/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +JAMAL,QUDRATULLAH,,,,,Maulavi,قدرت الله جمال,,,00/00/1963,"Gardez, Paktia Province",Afghanistan,Afghanistan,,,,,Minister of Information under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0040 (UN Ref):TAi.047 Member of Taliban Supreme Council and member of Taliban Cultural Commission as at 2010. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7209 +JAMAL NETWORK,,,,,,,,,,,,,,,,,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +JAMAL NETWORK,,,,,,,,,,,,,,,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +JAMAL NETWORK,,,,,,,,,,,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +JAMALEDDINE,Nazir,Ahmad,,,,,,,,00/00/1962,,,Syria,N 011612445,"Issue no. 002-17-L022286, place of issue: Syria",010-3028342,Place of issue: Syria,(1) Co-founder and majority shareholder of Apex Development and Projects LLC (2) Founder of A'ayan Company for Projects and Equipment,,,,,,,,,"(UK Sanctions List Ref):SYR0258 (UK Statement of Reasons):Leading businessperson operating in Syria with significant investments in the construction industry, including a controlling 90% stake in Apex Development and Projects LLC, which has entered into a USD 34,8 million joint venture for the construction of Marota City, a regime-backed luxury residential and commercial development. Through his participation in the Marota City development, Nazir Ahmad JamalEddine benefits from and/or supports the Syrian regime. (Gender):Male",Individual,Primary name,,Syria,22/01/2019,31/12/2020,31/12/2020,13753 +JAMALEDDINE,Mohammed,,,,,,,,,00/00/1962,,,Syria,N 011612445,"Issue no. 002-17-L022286, place of issue: Syria",010-3028342,Place of issue: Syria,(1) Co-founder and majority shareholder of Apex Development and Projects LLC (2) Founder of A'ayan Company for Projects and Equipment,,,,,,,,,"(UK Sanctions List Ref):SYR0258 (UK Statement of Reasons):Leading businessperson operating in Syria with significant investments in the construction industry, including a controlling 90% stake in Apex Development and Projects LLC, which has entered into a USD 34,8 million joint venture for the construction of Marota City, a regime-backed luxury residential and commercial development. Through his participation in the Marota City development, Nazir Ahmad JamalEddine benefits from and/or supports the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13753 +JAMEEL,Kadri,,,,,,,,,00/00/1952,,,,,,,,1) Former Vice Prime Minister for Economic Affairs (2) Former Minister for Domestic Trade and Consumer Protection,,,,,,,,,(UK Sanctions List Ref):SYR0197 N/A (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12760 +JAMEEL,Qadri,,,,,,,,,00/00/1952,,,,,,,,1) Former Vice Prime Minister for Economic Affairs (2) Former Minister for Domestic Trade and Consumer Protection,,,,,,,,,(UK Sanctions List Ref):SYR0197 N/A (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12760 +JAMIA IHYA UL TURATH,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0074 (UN Ref):QDe.070 NOTE: Only the Pakistan and Afghanistan offices of this entity are designated. Associated with Abu Bakr al-Jaziri (QDi.058) and Afghan Support Committee (ASC) (QDe.069). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281996,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,7210 +JAMIA IHYA UL TURATH,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0074 (UN Ref):QDe.070 NOTE: Only the Pakistan and Afghanistan offices of this entity are designated. Associated with Abu Bakr al-Jaziri (QDi.058) and Afghan Support Committee (ASC) (QDe.069). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281996,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,7210 +JAMIAT AL-JIHAD AL-ISLAMI,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0051 (UN Ref):QDe.119 Founded and led by Najmiddin Kamolitdinovich Jalolov (deceased) and Suhayl Fatilloevich Buranov (deceased). Associated with the Islamic Movement of Uzbekistan (QDe.010) and Emarat Kavkaz (QDe.131). Active in the Afghanistan/Pakistan border area, Central Asia, South Asia region and some European States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278465",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,06/06/2005,01/06/2005,31/12/2020,8652 +JAMIAT AYAT-UR-RHAS AL ISLAMIAC,,,,,,,,,,,,,,,,,,,Cheprahar Hadda,Mia Omar Sabaqah School,,,,Jalalabad,,Afghanistan,(UK Sanctions List Ref):AQD0004 (UN Ref):QDe.069 Associated with the Revival of Islamic Heritage Society (QDe.070). Abu Bakr al-Jaziri (QDi.058) served as finance chief of ASC. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235582,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,12/01/2022,6940 +JAMIAT AYAT-UR-RHAS AL ISLAMIAC,,,,,,,,,,,,,,,,,,,Headquarters – G.T. Road (probably Grand Trunk Road),near Pushtoon Garhi Pabbi,,,,Peshawar,,Pakistan,(UK Sanctions List Ref):AQD0004 (UN Ref):QDe.069 Associated with the Revival of Islamic Heritage Society (QDe.070). Abu Bakr al-Jaziri (QDi.058) served as finance chief of ASC. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235582,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,12/01/2022,6940 +JAMIAT IHIA AL-TURATH AL-ISLAMIYA,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0074 (UN Ref):QDe.070 NOTE: Only the Pakistan and Afghanistan offices of this entity are designated. Associated with Abu Bakr al-Jaziri (QDi.058) and Afghan Support Committee (ASC) (QDe.069). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281996,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,7210 +JAMIAT IHIA AL-TURATH AL-ISLAMIYA,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0074 (UN Ref):QDe.070 NOTE: Only the Pakistan and Afghanistan offices of this entity are designated. Associated with Abu Bakr al-Jaziri (QDi.058) and Afghan Support Committee (ASC) (QDe.069). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281996,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,7210 +JAMIAT IHYA UL TURATH AL ISLAMIA,,,,,,,,,,,,,,,,,,,Cheprahar Hadda,Mia Omar Sabaqah School,,,,Jalalabad,,Afghanistan,(UK Sanctions List Ref):AQD0004 (UN Ref):QDe.069 Associated with the Revival of Islamic Heritage Society (QDe.070). Abu Bakr al-Jaziri (QDi.058) served as finance chief of ASC. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235582,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,12/01/2022,6940 +JAMIAT IHYA UL TURATH AL ISLAMIA,,,,,,,,,,,,,,,,,,,Headquarters – G.T. Road (probably Grand Trunk Road),near Pushtoon Garhi Pabbi,,,,Peshawar,,Pakistan,(UK Sanctions List Ref):AQD0004 (UN Ref):QDe.069 Associated with the Revival of Islamic Heritage Society (QDe.070). Abu Bakr al-Jaziri (QDi.058) served as finance chief of ASC. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235582,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,12/01/2022,6940 +JAMIL,Kadri,,,,,,,,,00/00/1952,,,,,,,,1) Former Vice Prime Minister for Economic Affairs (2) Former Minister for Domestic Trade and Consumer Protection,,,,,,,,,(UK Sanctions List Ref):SYR0197 N/A (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12760 +JAMIL,Qadri,,,,,,,,,00/00/1952,,,,,,,,1) Former Vice Prime Minister for Economic Affairs (2) Former Minister for Domestic Trade and Consumer Protection,,,,,,,,,(UK Sanctions List Ref):SYR0197 N/A (UK Statement of Reasons):Former government minister within the Assad regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,16/10/2012,31/12/2020,31/12/2020,12760 +JAMIYAT,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0051 (UN Ref):QDe.119 Founded and led by Najmiddin Kamolitdinovich Jalolov (deceased) and Suhayl Fatilloevich Buranov (deceased). Associated with the Islamic Movement of Uzbekistan (QDe.010) and Emarat Kavkaz (QDe.131). Active in the Afghanistan/Pakistan border area, Central Asia, South Asia region and some European States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278465",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,06/06/2005,01/06/2005,31/12/2020,8652 +JAM'IYAT AL TA'AWUN AL ISLAMIYYA,,,,,,,,,,,,,,,,,,,,,,,,Kandahar City,,Afghanistan,(UK Sanctions List Ref):AQD0057 (UN Ref):QDe.020 Founded by Usama Mohammad Awad bin Laden (deceased) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282077,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,12/01/2022,7212 +JAMMA'ATU ANSARUL MUSLIMINA FI BILADIS-SUDAN (JAMBS),,,,,,,,,,,,,,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0035 (UN Ref):QDe.142 Terrorist and paramilitary group established in 2012 and operating in Nigeria. Associated with the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014), Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138) and Abubakar Mohammed Shekau (QDi322). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,08/07/2014,26/06/2014,16/02/2022,13007 +JAMMEH,Zeinab,,,,,,,,,05/10/1977,Rabat,Morocco,(1) Morocco. (2) The Gambia,,,,,Former First Lady of The Gambia and wife of Yahya Jammeh,,,,,,,,Equatorial Guinea,"(UK Sanctions List Ref):GHR0060 (UK Statement of Reasons):Former President of Gambia Yahya Jammeh was responsible for inciting, promoting and ordering extrajudicial killings; enforced disappearances; kidnappings and torture; as well as wider human rights violations during his tenure as President between 1994 and 2016. Zineb Jammeh is the former “First Lady” of The Gambia and is married to Yahya Jammeh. She is associated with Yahya Jammeh and his regime, and used a charitable foundation and charities as cover for the illicit transfer of funds between herself and the Former President. (Gender):Female",Individual,Primary name variation,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14012 +JAMMEH,Zineb,,,,,,,,,05/10/1977,Rabat,Morocco,(1) Morocco. (2) The Gambia,,,,,Former First Lady of The Gambia and wife of Yahya Jammeh,,,,,,,,Equatorial Guinea,"(UK Sanctions List Ref):GHR0060 (UK Statement of Reasons):Former President of Gambia Yahya Jammeh was responsible for inciting, promoting and ordering extrajudicial killings; enforced disappearances; kidnappings and torture; as well as wider human rights violations during his tenure as President between 1994 and 2016. Zineb Jammeh is the former “First Lady” of The Gambia and is married to Yahya Jammeh. She is associated with Yahya Jammeh and his regime, and used a charitable foundation and charities as cover for the illicit transfer of funds between herself and the Former President. (Gender):Female",Individual,Primary name,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14012 +JAM'YAH TA'AWUN AL-ISLAMIA,,,,,,,,,,,,,,,,,,,,,,,,Kandahar City,,Afghanistan,(UK Sanctions List Ref):AQD0057 (UN Ref):QDe.020 Founded by Usama Mohammad Awad bin Laden (deceased) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282077,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,12/01/2022,7212 +JAN,Agha,,,,,Hajji,,,,15/10/1963,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +JAN,Agha,,,,,Hajji,,,,14/02/1973,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +JAN,Agha,,,,,Hajji,,,,00/00/1967,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +JAN,Agha,,,,,Hajji,,,,00/00/1957,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +JAN,Nazar,,,,,,,,,00/00/1963,"(1) Kandahar City, Kandahar Province. (2) Khwaja Malik village, Arghandab District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,(1) OR 1961825. (2) TR024417,"(1) Afghanistan. Issued in name of Akhtar Mohmad, son of Noor Mohmad, born in 1965 in Kandahar. Issued 4 Feb 2003 by Afghan Consulate in Quetta, Pakistan. Expired 2 Feb 2006 (2) Issued under the name of Haji Gulab Gul, son of Haji Hazrat Gul, born in 1955 in Logar, Afghanistan. Issued on 20/12/2003 by Central Passport Department in Kabul, Afghanistan. Expired 29 December 2006.",,,Deputy Minister of Foreign Affairs under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0032 (UN Ref):TAi.034 Believed to be in Afghanistan/Pakistan border area. Member of the Taliban Supreme Council as of May 2007. Member of the Financial Commission of the Taliban Council. Responsible for logistics for the Taliban and also active as a businessman in his personal capacity as at mid-2013. Belongs to Alizai tribe. Brother of Atiqullah Wali Mohammad (TAi.070). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6908 +JAN,Qasi,Sa'id,,,,,,,,05/02/1981,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +JAN,Qasi,Sa'id,,,,,,,,01/01/1972,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +JAN,Haji,Ahmed,,,,,,,,00/00/1953,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +JAN,Haji,Ahmed,,,,,,,,00/00/1954,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +JAN,Haji,Ahmed,,,,,,,,00/00/1955,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +JAN,Haji,Ahmed,,,,,,,,00/00/1956,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +JAN,Haji,Ahmed,,,,,,,,00/00/1957,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +JAN,Haji,Ahmed,,,,,,,,00/00/1958,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +JAN,SAIDULLAH,,,,,,سعيدالله جان,,,00/00/1982,"Giyan District, Paktika Province",Afghanistan,,,,,,,,,,,,,,,(UK Sanctions List Ref):AFG0136 (UN Ref):TAi.170 Senior member of the Haqqani Network (HQN) (TE.H.12.12.) as of 2013. Provided critical facilitation support to drivers and vehicles transporting HQN ammunition. Also involved in the group’s recruiting efforts as of 2011. Father’s name is Bakhta Jan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,31/07/2014,31/07/2014,01/02/2021,13145 +JANG,Cheul-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,China,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +JANG,Cheul-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +JANG,Chol,,,,,,,,,31/03/1961,Pyongyang,North Korea,North Korea,563310042,,,,Former President of the State Academy of Sciences,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0015 (UK Statement of Reasons):Former President of the State Academy of Sciences, an organisation dedicated to the development of technological and scientific capacities of the DPRK. In this capacity, Jang Chol holds a strategic position for the development of DPRK nuclear activities and is responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,07/04/2017,31/12/2020,31/12/2020,13457 +JANG,Chol-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,China,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +JANG,Chol-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +JANG,Tcheul,Hy,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,China,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +JANG,Tcheul,Hy,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +JANG,Tcheul-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,China,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +JANG,Tcheul-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +JANG,Tchou-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,China,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +JANG,Tchou-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +JANG SU,HAN,,,,,,,,,08/11/1969,Pyongyang,North Korea,,745420176,expires on 19 October 2020,,,Chief Representative of the Foreign Trade Bank,,,,,,,,,(UK Sanctions List Ref):DPR0210 (UN Ref):KPi.055 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13528 +JANNAT OSHIKLARI,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0377 Khatiba al-Tawhid wal-Jihad (formerly known as Jannat Oshiklari) is a terrorist organization operating under the umbrella of the international terrorist organization Al-Nusrah Front for the People of the Levant (QDe.137). The group mainly operates in the provinces of Hama, Idlib and Ladhiqiyah, in the Syrian Arab Republic, and also conduct operations in Turkey, Kyrgyzstan, Uzbekistan, Russian Federation, Tajikistan, Kazakhstan, Egypt, Afghanistan, Ukraine. The number of fighters of KTJ is about 500. KTJ also cooperates with such terrorist organizations as Khatiba Imam al-Bukhari (QDe.158) and the Islamic Jihad Group (QDe.119).",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,08/03/2022,07/03/2022,08/03/2022,14211 +JANUKOVIC,Viktor,Fedorovic,,,,,Viktor Fedorovič Janukovič,,,09/07/1950,Yenakiyeve Donetsk,Former USSR Currently Ukraine,Ukraine,,,,,Former President of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0228 (UK Statement of Reasons):Viktor Yanukovych was the President of Ukraine from November 2010 to February 2014 and was responsible for requesting President Putin to send Russian troops into Ukraine, therefore undermining Ukrainian independence and threatening Ukraine’s territorial integrity. Russian troops annexed Crimea shortly after this invitation was issued. Yanukovych was personally responsible for the appointment of at least one key official who continues to run the territory of Crimea and Sevastopol under the Russian annexation. Yanukovych is also suspected of supporting a policy, which reduced the defence capability of Ukraine’s Armed Forces stationed in Crimea prior to the 2014 Russian invasion. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/02/2022,12891 +JANUKOVICH,Aleksandr,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVICH,Alexander,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVICH,Alexander,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVICH,Alexandr,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVICH,Alexsandr,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVICH,Alexsandr,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVICH,Olecsandr,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVICH,Olecsandr,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVICH,Olexandr,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVICH,Olexandr,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVICH,Viktor,Fedorovich,,,,,,,,09/07/1950,Yenakiyeve Donetsk,Former USSR Currently Ukraine,Ukraine,,,,,Former President of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0228 (UK Statement of Reasons):Viktor Yanukovych was the President of Ukraine from November 2010 to February 2014 and was responsible for requesting President Putin to send Russian troops into Ukraine, therefore undermining Ukrainian independence and threatening Ukraine’s territorial integrity. Russian troops annexed Crimea shortly after this invitation was issued. Yanukovych was personally responsible for the appointment of at least one key official who continues to run the territory of Crimea and Sevastopol under the Russian annexation. Yanukovych is also suspected of supporting a policy, which reduced the defence capability of Ukraine’s Armed Forces stationed in Crimea prior to the 2014 Russian invasion. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/02/2022,12891 +JANUKOVYC,Viktor,Fedorovyc,,,,,Viktor Fedorovyč Janukovyč,,,09/07/1950,Yenakiyeve Donetsk,Former USSR Currently Ukraine,Ukraine,,,,,Former President of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0228 (UK Statement of Reasons):Viktor Yanukovych was the President of Ukraine from November 2010 to February 2014 and was responsible for requesting President Putin to send Russian troops into Ukraine, therefore undermining Ukrainian independence and threatening Ukraine’s territorial integrity. Russian troops annexed Crimea shortly after this invitation was issued. Yanukovych was personally responsible for the appointment of at least one key official who continues to run the territory of Crimea and Sevastopol under the Russian annexation. Yanukovych is also suspected of supporting a policy, which reduced the defence capability of Ukraine’s Armed Forces stationed in Crimea prior to the 2014 Russian invasion. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/02/2022,12891 +JANUKOVYCH,Aleksandr,Viktorovich,,,,,Aleksandr Viktorovich Janukovyč,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVYCH,Alexander,Victorovych,,,,,Alexander Viktorovyč Janukovyč,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVYCH,Alexander,Viktorovich,,,,,Alexander Viktorovich Janukovyč,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVYCH,Alexandr,Victorovych,,,,,Alexandr Viktorovyč Janukovyč,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVYCH,Alexsandr,Victorovych,,,,,Alexsandr Viktorovyč Janukovyč,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVYCH,Alexsandr,Viktorovich,,,,,Alexsandr Viktorovich Janukovyč,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVYCH,Olecsandr,Victorovych,,,,,Olecsandr Viktorovyč Janukovyč,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVYCH,Olecsandr,Viktorovich,,,,,Olecsandr Viktorovich Janukovyč,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVYCH,Olexandr,Victorovych,,,,,Olexandr Viktorovyč Janukovyč,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVYCH,Olexandr,Viktorovich,,,,,Olexandr Viktorovich Janukovyč,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOVYCH,Viktor,Fedorovych,,,,,,,,09/07/1950,Yenakiyeve Donetsk,Former USSR Currently Ukraine,Ukraine,,,,,Former President of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0228 (UK Statement of Reasons):Viktor Yanukovych was the President of Ukraine from November 2010 to February 2014 and was responsible for requesting President Putin to send Russian troops into Ukraine, therefore undermining Ukrainian independence and threatening Ukraine’s territorial integrity. Russian troops annexed Crimea shortly after this invitation was issued. Yanukovych was personally responsible for the appointment of at least one key official who continues to run the territory of Crimea and Sevastopol under the Russian annexation. Yanukovych is also suspected of supporting a policy, which reduced the defence capability of Ukraine’s Armed Forces stationed in Crimea prior to the 2014 Russian invasion. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/02/2022,12891 +JANUKOWYTSCH,Aleksandr,Viktorovich,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOWYTSCH,Alexander,Victorovych,,,,,Alexander Viktorovyč Janukowytsch,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOWYTSCH,Alexander,Viktorovich,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOWYTSCH,Alexandr,Victorovych,,,,,Alexandr Viktorovyč Janukowytsch,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOWYTSCH,Alexsandr,Victorovych,,,,,Alexsandr Viktorovyč Janukowytsch,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOWYTSCH,Alexsandr,Viktorovich,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOWYTSCH,Olecsandr,Victorovych,,,,,Olecsandr Viktorovyč Janukowytsch,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOWYTSCH,Olecsandr,Viktorovich,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOWYTSCH,Olexandr,Victorovych,,,,,Olexandr Viktorovyč Janukowytsch,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOWYTSCH,Olexandr,Viktorovich,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +JANUKOWYTSCH,Wiktor,Fedorowytsch,,,,,,,,09/07/1950,Yenakiyeve Donetsk,Former USSR Currently Ukraine,Ukraine,,,,,Former President of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0228 (UK Statement of Reasons):Viktor Yanukovych was the President of Ukraine from November 2010 to February 2014 and was responsible for requesting President Putin to send Russian troops into Ukraine, therefore undermining Ukrainian independence and threatening Ukraine’s territorial integrity. Russian troops annexed Crimea shortly after this invitation was issued. Yanukovych was personally responsible for the appointment of at least one key official who continues to run the territory of Crimea and Sevastopol under the Russian annexation. Yanukovych is also suspected of supporting a policy, which reduced the defence capability of Ukraine’s Armed Forces stationed in Crimea prior to the 2014 Russian invasion. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/02/2022,12891 +JAROSH,Petr,Grigorievich,,,,,Петр Григорьевич ЯРОШ,,Russian,30/01/1971,,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0108 (UK Statement of Reasons):Former head of the Federal Migration Service office for Crimea. Responsible for the systematic and expedited issuance of Russian passports for the residents of Crimea,Individual,Primary name,,Russia,12/05/2014,31/12/2020,16/09/2022,12968 +JAROSH,Petro,Hryyhorovych,,,,,,,,30/01/1971,,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0108 (UK Statement of Reasons):Former head of the Federal Migration Service office for Crimea. Responsible for the systematic and expedited issuance of Russian passports for the residents of Crimea,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12968 +JAROSH,Petr,Hryyhorovych,,,,,,,,30/01/1971,,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0108 (UK Statement of Reasons):Former head of the Federal Migration Service office for Crimea. Responsible for the systematic and expedited issuance of Russian passports for the residents of Crimea,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12968 +JAROSH,Petro,Grigorievich,,,,,,,,30/01/1971,,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0108 (UK Statement of Reasons):Former head of the Federal Migration Service office for Crimea. Responsible for the systematic and expedited issuance of Russian passports for the residents of Crimea,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12968 +JAROUCHA,Ahmad,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JAROUCHA,Ahmed,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JAROUCHAH,Ahmad,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JAROUCHAH,Ahmed,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JAROUCHEH,Ahmad,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JAROUCHEH,Ahmed,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JAROUCHI,Ahmad,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JAROUCHI,Ahmed,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JAROUSHA,Ahmad,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JAROUSHA,Ahmed,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JAROUSHEH,Ahmad,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JAROUSHEH,Ahmed,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JAROUSHI,Ahmad,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JAROUSHI,Ahmed,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JARRAH,Abu,,,,,,,,,00/00/1974,,,,,,0075258,Ration card no.,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +JARRAH,Abu,,,,,,,,,00/00/1974,,,,,,0075258,Ration card no.,,,,,,,Deir ez-Zor Governorate,,Syria,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +JARRAH,Abu,,,,,,,,,00/00/1975,,,,,,0075258,Ration card no.,,,,,,,Deir ez-Zor Governorate,,Syria,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +JARRAH,Abu,,,,,,,,,00/00/1975,,,,,,0075258,Ration card no.,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +JARRAH,Abu,,,,,,,,,00/00/1979,,,,,,0075258,Ration card no.,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +JARRAH,Abu,,,,,,,,,00/00/1979,,,,,,0075258,Ration card no.,,,,,,,Deir ez-Zor Governorate,,Syria,"(UK Sanctions List Ref):AQD0128 (UN Ref):QDi.276 Other possible date of birth: 1979. He is a cousin of Ghazy Fezza Hishan Al Mazidih (QDi.277). Financial facilitator of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1605607",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11050 +JARROUCHE,Ahmad,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JARROUCHE,Ahmed,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JARUSHI,Ahmad,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JARUSHI,Ahmed,,,,,,,,,00/00/1957,"Al-Qaryatayn, Homs Countryside",,Syria,,,,,"Former Head of Branch 279, General Intelligence Directorate’s Foreign Branch",,,,,,,,,"(UK Sanctions List Ref):SYR0248 Links to General Intelligence Directorate, listed by the EU on 23 August 2011. (UK Statement of Reasons):Former head of the foreign branch of General Intelligence (branch 279). As such, has been responsible for General Intelligence arrangements in Syrian embassies. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12724 +JAT,,,,,,,,,,,,,,,,,,,JI. Semenromo number 58,04/XV Ngruki,Cemani,Grogol,Sukoharjo,Jawa Tengah,,Indonesia,"(UK Sanctions List Ref):AQD0060 (UN Ref):QDe.133 A group affiliated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), that has perpetrated attacks in Indonesia. Founded and led by Abu Bakar Ba'asyir (QDi.217). Established on 27 Jul. 2008 in Solo, Indonesia. Had been associated with Jemmah Islamiya (JI) (QDe.092). Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 June 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Website: http://ansharuttauhid.com/ INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282133 (Phone number):0271-2167285 (Email address):info@ansharuttauhid.com",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,12/01/2022,12553 +JAUA MILANO,Elias,Jose,,,,,Elías José Jaua Milano,,,16/12/1969,"Caucagua, Miranda",Venezuela,Venezuela,,,,,Former Minister of Popular Power for Education. Former President of the Presidential Commission for the illegitimate National Constituent Assembly,,,,,,,,,(UK Sanctions List Ref):VEN0011 Former Minister of Popular Power for Education. Previously President of the Presidential Commission for the National Constituent Assembly (UK Statement of Reasons):Former Minister of Popular Power for Education. Former President of the Presidential Commission for the illegitimate National Constituent Assembly. Responsible for undermining democracy and the rule of law in Venezuela through his role in leading the establishment of the illegitimate Constituent Assembly. (Gender):Male,Individual,Primary name,,Venezuela,26/06/2018,31/12/2020,31/12/2020,13688 +JAVANI,Yadollah,,,,,,,,,,Isfahan,,,,,,,IRGC Deputy Commander For Political Affairs,,,,,,,,,"(UK Sanctions List Ref):IHR0045 (UK Statement of Reasons):Political Head of the IRGC. Has made numerous attempts to suppress free speech and free discourse through his public statements supporting the arrest and punishment of protesters and dissenters. One of the first high-ranking officials to demand in 2009 Moussavi, Karroubi and Khatami's arrest. Has supported the use of techniques that breach rights to a fair trial including public confessions and he has released the contents of interrogations before trial. Evidence also indicates that he has condoned the use of violence against protesters and as an integral member of the IRGC he is highly likely to have been aware of the use of harsh interrogation techniques to force confessions. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,31/12/2020,12184 +JAVEDAN MEHR TOOS,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0085 (UK Statement of Reasons):Engineering firm that has procured for UN designated Kalaye Electric Company, an AEOI subsidiary.",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,31/12/2020,11209 +JAYSH AL-MUHAJIRIN WAL-ANSAR JAMWA,,,,,,,,,,,,,,,,,,,Jabal Turkuman area,,,,,Lattakia Governorate,,Syria,"(UK Sanctions List Ref):AQD0080 (UN Ref):QDe.148 Established by foreign terrorist fighters in 2013. Location: Syrian Arab Republic. Affiliated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115) and AI-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5887669",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/08/2015,06/08/2015,31/12/2020,13270 +JAYSH KHALID IBN AL WALEED,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0058 (UN Ref):QDe.155 Joined the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in May 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116594",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13510 +JAZAI'IRI,Hammam,,,,,,,,,00/00/1977,,,,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,"(UK Sanctions List Ref):SYR0090 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade in power after May 2011. As a former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13148 +JAZAI'IRI,Houmam,,,,,,,,,00/00/1977,,,,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,"(UK Sanctions List Ref):SYR0090 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade in power after May 2011. As a former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,22/10/2014,31/12/2020,13/05/2022,13148 +JAZAI'IRI,Humam,,,,,,,,,00/00/1977,,,,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,"(UK Sanctions List Ref):SYR0090 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade in power after May 2011. As a former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13148 +JAZAYERI,Massoud,,,,,,,,,,,,,,,,,Advisor to the Chief of General Staff of the Armed Forces,,,,,,,,,"(UK Sanctions List Ref):IHR0049 (UK Statement of Reasons):Massoud Jazayeri, in his capacity as a senior figure within the Iranian armed forces, and his position as official spokesman, was responsible for supporting and promoting the repression of protests in 2009. He has openly called for repression of foreign mass media outlets, Iranians working for such outlets and the political opposition, and issued threats against protestors, both inside and outside of Iran. In 2010, he urged the passing of tougher laws against Iranians who cooperate with foreign media sources. He was responsible for the support and promotion of serious human rights violations in Iran, including the violation of freedom of expression and assembly. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12185 +JAZAYERI,Seyyed,Massoud,,,,,,,,,,,,,,,,Advisor to the Chief of General Staff of the Armed Forces,,,,,,,,,"(UK Sanctions List Ref):IHR0049 (UK Statement of Reasons):Massoud Jazayeri, in his capacity as a senior figure within the Iranian armed forces, and his position as official spokesman, was responsible for supporting and promoting the repression of protests in 2009. He has openly called for repression of foreign mass media outlets, Iranians working for such outlets and the political opposition, and issued threats against protestors, both inside and outside of Iran. In 2010, he urged the passing of tougher laws against Iranians who cooperate with foreign media sources. He was responsible for the support and promotion of serious human rights violations in Iran, including the violation of freedom of expression and assembly. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12185 +JDEED,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0132 (UK Statement of Reasons):Presidential Guard. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,31/12/2020,12420 +JDIDD,Maan,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0132 (UK Statement of Reasons):Presidential Guard. Military official involved in the violence in Homs.,Individual,Primary name variation,,Syria,02/12/2011,31/12/2020,31/12/2020,12420 +JDIF,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0132 (UK Statement of Reasons):Presidential Guard. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,31/12/2020,12420 +JDIID,Maan,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0132 (UK Statement of Reasons):Presidential Guard. Military official involved in the violence in Homs.,Individual,Primary name,,Syria,02/12/2011,31/12/2020,31/12/2020,12420 +JEDEED,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0132 (UK Statement of Reasons):Presidential Guard. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,31/12/2020,12420 +JEDID,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0132 (UK Statement of Reasons):Presidential Guard. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,31/12/2020,12420 +JELIL,Youssef,Ould,Abdel,,,,,,,00/00/1981,,Saudi Arabia,Mauritania,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0093 (UN Ref):QDi.298 Pakistan-based senior Al-Qaida (QDe.004) leader also associated with The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Wanted by Mauritanian authorities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555823,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/09/2011,15/09/2011,31/12/2020,12148 +JELVESAZAN COMPANY,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0086 (UK Statement of Reasons):Jelvesazan Company assisted designated entities to violate the provisions of UN and EU sanctions on Iran and directly supported Iran's proliferation sensitive nuclear activities. As of early 2012 Jelvesazan intended to supply controlled vacuum pumps to Iran Centrifuge Technology Company (TESA). (Phone number):+98 03112658311 15,Entity,Primary name,,Iran (Nuclear),24/12/2012,31/12/2020,08/03/2022,12817 +JELVESEZAN LASER SYSTEMS,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0086 (UK Statement of Reasons):Jelvesazan Company assisted designated entities to violate the provisions of UN and EU sanctions on Iran and directly supported Iran's proliferation sensitive nuclear activities. As of early 2012 Jelvesazan intended to supply controlled vacuum pumps to Iran Centrifuge Technology Company (TESA). (Phone number):+98 03112658311 15,Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,08/03/2022,12817 +JELVETECH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0086 (UK Statement of Reasons):Jelvesazan Company assisted designated entities to violate the provisions of UN and EU sanctions on Iran and directly supported Iran's proliferation sensitive nuclear activities. As of early 2012 Jelvesazan intended to supply controlled vacuum pumps to Iran Centrifuge Technology Company (TESA). (Phone number):+98 03112658311 15,Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,08/03/2022,12817 +JEMAAH ANSHORUT DAULAH,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0367 (UN Ref):QDe.164 Established in 2015 as an umbrella group of Indonesian extremist groups that pledged allegiance to then-ISIL leader Abu Bakr al-Baghdadi. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/03/2020,04/03/2020,31/12/2020,13830 +JEMAAH ANSHORUT TAUHID,,,,,,,,,,,,,,,,,,,JI. Semenromo number 58,04/XV Ngruki,Cemani,Grogol,Sukoharjo,Jawa Tengah,,Indonesia,"(UK Sanctions List Ref):AQD0060 (UN Ref):QDe.133 A group affiliated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), that has perpetrated attacks in Indonesia. Founded and led by Abu Bakar Ba'asyir (QDi.217). Established on 27 Jul. 2008 in Solo, Indonesia. Had been associated with Jemmah Islamiya (JI) (QDe.092). Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 June 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Website: http://ansharuttauhid.com/ INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282133 (Phone number):0271-2167285 (Email address):info@ansharuttauhid.com",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,12/01/2022,12553 +JEMAAH ISLAMIAH,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0059 (UN Ref):QDe.092 Operates in Southeast Asia, including Indonesia, Malaysia and the Philippines. Associated with the Abu Sayyaf Group (QDe.001). Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282122",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/10/2002,25/10/2002,31/12/2020,7208 +JEMAAH ISLAMIYA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0059 (UN Ref):QDe.092 Operates in Southeast Asia, including Indonesia, Malaysia and the Philippines. Associated with the Abu Sayyaf Group (QDe.001). Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282122",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/10/2002,25/10/2002,31/12/2020,7208 +JEMA'AH ISLAMIYAH,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0059 (UN Ref):QDe.092 Operates in Southeast Asia, including Indonesia, Malaysia and the Philippines. Associated with the Abu Sayyaf Group (QDe.001). Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282122",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/10/2002,25/10/2002,31/12/2020,7208 +JEMAAH ISLAMIYAH,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0059 (UN Ref):QDe.092 Operates in Southeast Asia, including Indonesia, Malaysia and the Philippines. Associated with the Abu Sayyaf Group (QDe.001). Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282122",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,25/10/2002,25/10/2002,31/12/2020,7208 +JEMMAH ANSHARUT TAUHID,,,,,,,,,,,,,,,,,,,JI. Semenromo number 58,04/XV Ngruki,Cemani,Grogol,Sukoharjo,Jawa Tengah,,Indonesia,"(UK Sanctions List Ref):AQD0060 (UN Ref):QDe.133 A group affiliated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), that has perpetrated attacks in Indonesia. Founded and led by Abu Bakar Ba'asyir (QDi.217). Established on 27 Jul. 2008 in Solo, Indonesia. Had been associated with Jemmah Islamiya (JI) (QDe.092). Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 June 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Website: http://ansharuttauhid.com/ INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282133 (Phone number):0271-2167285 (Email address):info@ansharuttauhid.com",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,12/01/2022,12553 +JEM'MAH ANSHARUT TAUHID,,,,,,,,,,,,,,,,,,,JI. Semenromo number 58,04/XV Ngruki,Cemani,Grogol,Sukoharjo,Jawa Tengah,,Indonesia,"(UK Sanctions List Ref):AQD0060 (UN Ref):QDe.133 A group affiliated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), that has perpetrated attacks in Indonesia. Founded and led by Abu Bakar Ba'asyir (QDi.217). Established on 27 Jul. 2008 in Solo, Indonesia. Had been associated with Jemmah Islamiya (JI) (QDe.092). Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 June 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Website: http://ansharuttauhid.com/ INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282133 (Phone number):0271-2167285 (Email address):info@ansharuttauhid.com",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,12/01/2022,12553 +JEMMAH ANSHORUT TAUHID,,,,,,,,,,,,,,,,,,,JI. Semenromo number 58,04/XV Ngruki,Cemani,Grogol,Sukoharjo,Jawa Tengah,,Indonesia,"(UK Sanctions List Ref):AQD0060 (UN Ref):QDe.133 A group affiliated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), that has perpetrated attacks in Indonesia. Founded and led by Abu Bakar Ba'asyir (QDi.217). Established on 27 Jul. 2008 in Solo, Indonesia. Had been associated with Jemmah Islamiya (JI) (QDe.092). Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 June 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Website: http://ansharuttauhid.com/ INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282133 (Phone number):0271-2167285 (Email address):info@ansharuttauhid.com",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,12/01/2022,12553 +JERAATLI,Ghiath,,,,,,,,,00/00/1950,Salamiya,Syria,Syria,,,,,Former Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0059 (UK Statement of Reasons):Former minister within the regime appointed after May 2011, and as such participated in, benefited from, or otherwise supported the Syrian regime.",Individual,Primary name,,Syria,26/03/2012,31/12/2020,31/12/2020,12639 +JER'ATLI,Ghiath,,,,,,,,,00/00/1950,Salamiya,Syria,Syria,,,,,Former Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0059 (UK Statement of Reasons):Former minister within the regime appointed after May 2011, and as such participated in, benefited from, or otherwise supported the Syrian regime.",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,31/12/2020,12639 +JEROME,Commandant,,,,,,Commandant Jérôme,,,,Goma,Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0043 (UN Ref):CDi.005 Given the rank of General in the FARDC in December 2004.As of June 2011, detained in Makala Prison in Kinshasa. As of 25 March 2011, the High Military Court in Kinshasa opened a trial against Kakwavu for war crimes. In November 2014, convicted by a DRC military court to ten years in prison for rape, murder, and torture. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776083",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8707 +JERUSALEM FORCE,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,AKA,,Syria,24/08/2011,31/12/2020,13/05/2022,11241 +JERUSALEM FORCE,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,13/05/2022,11241 +JE-SON,RI,,,,,,,,,00/00/1938,,,North Korea,,,,,Minister of Atomic Energy Industry since April 2014,,,,,,,,,"(UK Sanctions List Ref):DPR0264 (UN Ref):KPi.002 Minister of Atomic Energy Industry since April 2014. Former Director of the General Bureau of Atomic Energy (GBAE), chief agency directing DPRK's nuclear program; facilitated several nuclear endeavors including GBAE's management of Yongbyon Nuclear Research Center and Namchongang Trading Corporation.",Individual,Primary name,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,19/01/2021,10915 +JHAN,Said,,,,,,,,,05/02/1981,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +JHAN,Said,,,,,,,,,01/01/1972,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +JI,Baba,,,,,,,,,00/00/1944,,Pakistan,Pakistan,,,,,,House No 136,KDA Scheme No 1,Tipu Sultan Road,,,Karachi,,Pakistan,(UK Sanctions List Ref):AQD0146 (UN Ref):QDi.271 Associated with Lashkar-e-Tayyiba (QDe.118) and Al-Qaida (QDe.004). In detention as at June 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578017,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10906 +JI,Hafiz,,,,,,,,,05/06/1950,"Sargodha, Punjab",Pakistan,Pakistan,,,3520025509842-7,Pakistan,,House No. 116E,Mohalla Johar,Lahore,Tehsil,Lahore City,Lahore District,,Pakistan,"(UK Sanctions List Ref):AQD0183 (UN Ref):QDi.263 Muhammad Saeed is the leader of Lashkar-e-Tayyiba (QDe.118). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543488. Address country Pakistan, location as at May 2008",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9215 +JI SONG 6,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0104 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK tanker M/V JI SONG 6 was involved in ship-to-ship transfer operations of oil in late January 2018. Listed as asset of Phyongchon Shipping & Marine (OFSI ID: 13641, UN Reference Number: UN Ref KPe.070) (IMO number):8898740 (Current owners):Phyongchon Shipping & Marine (Flag of ship):North Korea (Type of ship):Other (Tonnage of ship):841 (Length of ship):58 (Year built):1995",Ship,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13655 +JI SONG 8,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0109 Pursuant to paragraphs 8(d) of Security Council resolution 1718 (2006) and 12 of Security Council resolution 2270 (2016) as economic resources of designated entities. DPRK cargo vessel M/V JI SONG 8 is owned by Phyongchon Shipping & Marine and is believed to have been involved in illicit transfers of prohibited DPRK goods. Listed as asset of Phyongchon Shipping & Marine, (OFSI ID: 13641, UN Reference Number: UN Ref KPe.070) (IMO number):8503228 (Current owners):Phyongchon Shipping & Marine (Flag of ship):North Korea (Previous flags):Hong Kong (Type of ship):General Cargo / Multi Purpose (Tonnage of ship):3953 (Length of ship):105 (Year built):1985",Ship,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13660 +JIBRIL,Muhammad,Ricky,Ardhan,bin Abu,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +JIBRIL,Muhammad,Ricky,Ardhan,bin Abu,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +JIBRIL,Muhammad,Ricky,Ardhan,bin Abu,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +JIBRIL,Muhammad,Ricky,Ardhan,bin Abu,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +JIBRIL,Muhammad,Ricky,Ardhan,bin Abu,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +JIBRIL,Muhammad,Ricky,Ardhan,bin Abu,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +JIBRIL,Muhammad,Ricky,Ardhan,bin Abu,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +JIBRIL,Muhammad,Ricky,Ardhan,bin Abu,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +JIHAD,Abu,,,,,,Абу Джихад,,,29/09/1983,"Ust-Dzheguta, Republic of Karachayevo- Cherkessia",Russia,Russia,620169661,Russian foreign travel passport number,9103314932,Issued on 15 Aug. 2003 (issued by Department of the Federal Migration Service of the Russian Federation for the Republic Karachayevo-Cherkessia),,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0206 (UN Ref):QDi.364 As at Aug. 2015, emir of Russian-speaking militants of the Islamic State of Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Controls the Syrian Arab Republic cities of Al Dana and Idlib as an ISIL chief. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899821",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,11/02/2022,13299 +JIHAD,Abu,,,,,,Абу Джихад,,,29/09/1983,"Ust-Dzheguta, Republic of Karachayevo- Cherkessia",Russia,Russia,620169661,Russian foreign travel passport number,9103314932,Issued on 15 Aug. 2003 (issued by Department of the Federal Migration Service of the Russian Federation for the Republic Karachayevo-Cherkessia),,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0206 (UN Ref):QDi.364 As at Aug. 2015, emir of Russian-speaking militants of the Islamic State of Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Controls the Syrian Arab Republic cities of Al Dana and Idlib as an ISIL chief. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899821",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,11/02/2022,13299 +JIHAD,Abu,,,,,,Абу Джихад,,,29/09/1983,"Ust-Dzheguta, Republic of Karachayevo- Cherkessia",Russia,Russia,620169661,Russian foreign travel passport number,9103314932,Issued on 15 Aug. 2003 (issued by Department of the Federal Migration Service of the Russian Federation for the Republic Karachayevo-Cherkessia),,Moscovskiy Microrayon 6,App. 96,Ust- Dzheguta,Republic of Karachayevo-Cherkessia,,,,Russia,"(UK Sanctions List Ref):AQD0206 (UN Ref):QDi.364 As at Aug. 2015, emir of Russian-speaking militants of the Islamic State of Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Controls the Syrian Arab Republic cities of Al Dana and Idlib as an ISIL chief. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899821",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,11/02/2022,13299 +JIHAD GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0041 (UN Ref):QDe.003 Co-founded by Aiman Muhammed Rabi al-Zawahiri (QDi.006), who was also its military leader. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282058",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7000 +JIMBOY,,,,,,,,,,15/09/1973,"24 Paraiso Street, Barangay Poblacion, Mandaluyong City",Philippines,Philippines,,,,,,Barangay Mangayao,,,,Tagkawayan,Quezon,,Philippines,(UK Sanctions List Ref):AQD0295 (UN Ref):QDi.248 Member of the Rajah Solaiman Movement (QDe.128). Arrested by the Philippines authorities on 14 Mar. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10668 +JIMBOY,,,,,,,,,,15/09/1973,"24 Paraiso Street, Barangay Poblacion, Mandaluyong City",Philippines,Philippines,,,,,,Barangay Tigib,,,,Ayungon,Negros Oriental,,Philippines,(UK Sanctions List Ref):AQD0295 (UN Ref):QDi.248 Member of the Rajah Solaiman Movement (QDe.128). Arrested by the Philippines authorities on 14 Mar. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10668 +JIN,Chang,Hyok,,,,,,,,29/04/1963,North Hamgyong,North Korea,North Korea,472130058,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0018 Associations with Pan Systems, Reconnaissance General Bureau, Glocom, International Golden Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Kim Chang Hyok has been identified by the UN Panel of Experts as the representative of Pan Systems Pyongyang in Malaysia. Pan Systems Pyongyang has been designated by the European Union for assisting in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related materiel to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. Established multiple accounts in Malaysia in the name of front companies of ‘Glocom’, itself a front company of designated entity Pan Systems Pyongyang. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13593 +JIN,James,,,,,,,,,29/04/1963,North Hamgyong,North Korea,North Korea,472130058,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0018 Associations with Pan Systems, Reconnaissance General Bureau, Glocom, International Golden Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Kim Chang Hyok has been identified by the UN Panel of Experts as the representative of Pan Systems Pyongyang in Malaysia. Pan Systems Pyongyang has been designated by the European Union for assisting in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related materiel to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. Established multiple accounts in Malaysia in the name of front companies of ‘Glocom’, itself a front company of designated entity Pan Systems Pyongyang. (Gender):Male",Individual,AKA,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13593 +JIN,RYU,,,,,,,,,07/08/1965,,,North Korea,563410081,,,,Korea Mining Development Trading Corporation (KOMID) Representative in Syria,,,,,,,,,(UK Sanctions List Ref):DPR0272 (UN Ref):KPi.027,Individual,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13337 +JINDALLAE,,,,,,,,,,,,,,,,,,,,,,,Nungrado,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +JINDALLAE,,,,,,,,,,,,,,,,,,,Rakrang No. 1,Rakrang District,Mangyongdae District,,Chilgol-1 dong,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +JINDALLAE,,,,,,,,,,,,,,,,,,,Reconnaissance General Bureau Headquarters,,,,Hyongjesan-Guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +JIN-SOK,Kim,,,,,,,,,00/00/1964,,,North Korea,290320764,Issued by the Democratic People's Republic of Korea,,,President of Tanchon Commercial Bank,,,,,,,,,(UK Sanctions List Ref):DPR0239 (UN Ref):KPi.023 Kim Tong My’ong is the President of Tanchon Commercial Bank and has held various positions within Tanchon Commercial bank since at least 2002. He has also played a role in managing Amroggang’s affairs.,Individual,AKA,Good quality,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12441 +JIN-SOK,Kim,,,,,,,,,28/08/1962,,,North Korea,290320764,Issued by the Democratic People's Republic of Korea,,,President of Tanchon Commercial Bank,,,,,,,,,(UK Sanctions List Ref):DPR0239 (UN Ref):KPi.023 Kim Tong My’ong is the President of Tanchon Commercial Bank and has held various positions within Tanchon Commercial bank since at least 2002. He has also played a role in managing Amroggang’s affairs.,Individual,AKA,Good quality,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12441 +JIRAATLI,Ghiath,,,,,,,,,00/00/1950,Salamiya,Syria,Syria,,,,,Former Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0059 (UK Statement of Reasons):Former minister within the regime appointed after May 2011, and as such participated in, benefited from, or otherwise supported the Syrian regime.",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,31/12/2020,12639 +JIR'ATLI,Ghiath,,,,,,,,,00/00/1950,Salamiya,Syria,Syria,,,,,Former Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0059 (UK Statement of Reasons):Former minister within the regime appointed after May 2011, and as such participated in, benefited from, or otherwise supported the Syrian regime.",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,31/12/2020,12639 +JIT,,,,,,,,,,,,,,,,,,,,,,,,Kandahar City,,Afghanistan,(UK Sanctions List Ref):AQD0057 (UN Ref):QDe.020 Founded by Usama Mohammad Awad bin Laden (deceased) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282077,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,12/01/2022,7212 +JMT,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0085 (UK Statement of Reasons):Engineering firm that has procured for UN designated Kalaye Electric Company, an AEOI subsidiary.",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,31/12/2020,11209 +JNIM,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0054 (UN Ref):QDe.159 Associated with Al-Qaida (QDe.004), the Organization of Al-Qaida in the Islamic Maghreb (QDe.014), Ansar Eddine (QDe.135) and Al-Mourabitoun (QDe.141). Operations in Mali and Burkina Faso. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6254410",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/10/2018,04/10/2018,31/12/2020,13712 +JO,Kyong,Chol,,,,,,,,,,,North Korea,,,,,(1) General in the Korean People’s Army (2) Director of the Military Security Command,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0039 (UK Statement of Reasons):General in the Korean People’s Army. Former member of the Central Military Commission of the Workers’ Party of Korea, which is a key body for national defence matters in the DPRK. Director of the Military Security Command. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. Accompanied Kim Jong Un to largest-ever long-range artillery fire drill. (Gender):Male",Individual,AKA,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,19/01/2021,13360 +JO,Kyongchol,,,,,General,,,,,,,North Korea,,,,,(1) General in the Korean People’s Army (2) Director of the Military Security Command,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0039 (UK Statement of Reasons):General in the Korean People’s Army. Former member of the Central Military Commission of the Workers’ Party of Korea, which is a key body for national defence matters in the DPRK. Director of the Military Security Command. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. Accompanied Kim Jong Un to largest-ever long-range artillery fire drill. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,19/01/2021,13360 +JOE,,,,,,,,,,20/01/1964,Johor,Malaysia,Malaysia,A 10472263,,640120-01-5529,,,,,,,,,,Malaysia,"(UK Sanctions List Ref):AQD0337 (UN Ref):QDi.124 Founding member of Jemaah Islamiyah (JI) (QDe.092) who worked on Al-Qaida’s (QDe.004) biological weapons program, provided support to those involved in Al-Qaida’s 11 Sep. 2001 attacks in the United States of America, and was involved in JI bombing operations. Detained in Malaysia from 2001 to 2008. Arrested in Malaysia in 2013 and sentenced to 7 years in Jan. 2016 for failing to report information relating to terrorist acts. Due for release in Feb. 2020. Review pursuant to Security Council resolution 1989 (2011) was concluded on 6 Mar. 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424794. Malaysia (previous address)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/09/2003,09/09/2003,31/12/2020,7848 +JOE,,,,,,,,,,20/01/1964,Johor,Malaysia,Malaysia,A 10472263,,640120-01-5529,,,Taman Bukit Ampang,,,,,State of Selangor,,Malaysia,"(UK Sanctions List Ref):AQD0337 (UN Ref):QDi.124 Founding member of Jemaah Islamiyah (JI) (QDe.092) who worked on Al-Qaida’s (QDe.004) biological weapons program, provided support to those involved in Al-Qaida’s 11 Sep. 2001 attacks in the United States of America, and was involved in JI bombing operations. Detained in Malaysia from 2001 to 2008. Arrested in Malaysia in 2013 and sentenced to 7 years in Jan. 2016 for failing to report information relating to terrorist acts. Due for release in Feb. 2020. Review pursuant to Security Council resolution 1989 (2011) was concluded on 6 Mar. 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424794. Malaysia (previous address)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/09/2003,09/09/2003,31/12/2020,7848 +JOHN,,,,,,,,,,15/01/1970,"Grozny, Chechen Republic",Russia,(1) Russia. (2) Georgia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0266 (UN Ref):QDi.406 Associated with Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116583",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13517 +JOINT STOCK COMMERCIAL BANK MOSCOW INDUSTRIAL BANK,,,,,,,,,,,,,,,,,,,Ordzhonikidze Street 5,,,,,Moscow,115419,Russia,"(UK Sanctions List Ref):RUS1492 Organization Established Date 22 Nov 1990 (UK Statement of Reasons):JOINT STOCK COMPANY MOSCOW INDUSTRIAL BANK is a Russian commercial bank. It is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian financial services sector. (Website):http://www.minbank.ru (Type of entity):Financial Institution (Subsidiaries):Agropromyshlenny Kompleks Voronezhski OOO Anninskii Elevator OOO Auditkonsalt OOO Belinveststroi OOO Dve Stolitsy OOO Kontrakt OOO Ladoga OOO Nekommercheskaya Organizatsiya Fond Khimicheskoe Razoruzhenie I Konversiya Azovskaya Zernovaya Kompaniya OOO Ekspluatiruyushchaya Kompaniya Tsentr OOO (Business Reg No):SWIFT/BIC MINNRUMM BIK (RU) 044525600 Tax ID No. 7725039953 (Russia) Government Gazette Number 09317135 (Russia) Legal Entity Number 2534006SJ05GGKETEY75 (Russia) Registration Number 1027739179160 (Russia)",Entity,Primary name variation,,Russia,29/06/2022,29/06/2022,29/06/2022,15429 +JOINT STOCK COMPANY 558 ARP,,,,,,,,,,,,,,,,,,,bld.7,50 let VLKSM st.,Baranovichi,,,Brest reg,225415,Belarus,"(UK Sanctions List Ref):RUS0261 (UK Statement of Reasons):JSC 558 Aircraft Repair Plant (“558 ARP”) is a Belarusian defence company based at the Baranovichi airbase which provides maintenance and servicing to military aircraft. Belarus and Russia have deepened military cooperation at Baranovichi airbase in recent years and held extensive joint exercises there in February 2022, immediately before Russia’s invasion of Ukraine. There is evidence that Russian aircraft operated from Baranovichi airbase as part of the invasion. Given 558 ARP’s role in providing maintenance and servicing to aircraft stationed at Baranovichi airbase, there are reasonable grounds to suspect that 558 ARP is providing those services to Russian aircraft involved in the invasion of Ukraine, and therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Phone number):+375-163-41-70-98 (Website):https://www.558arp.by/eng/ (Email address):box@558arp.by (Type of entity):Public Joint Stock Company (PJSC)",Entity,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14201 +JOINT STOCK COMPANY ALMAZ-ANTEY CORPORATION,,,,,,,,,,,,,,,,,,,,,,,41 ul. Vereiskaya,Moscow,121471,Russia,"(UK Sanctions List Ref):RUS0178 (UK Statement of Reasons):Almaz-Antey is a Russian state-owned company. It manufactures anti-aircraft weaponry including surface-to-air missiles which it supplies to the Russian army. This weaponry is deployed in Crimea. Almaz-Antey has carried out business in Crimea. The Russian authorities have been providing heavy weaponry to separatists in Eastern Ukraine, contributing to the destabilization of Ukraine. These weapons are used by the separatists, including for shooting down airplanes (this has included MH17) . As a state-owned company making available resources which contribute to the undermining of the territorial integrity, sovereignty and independence of Ukraine, Almaz-Antey contributes to the destabilization of Ukraine. (Phone number):(1) (+495) 276 29 75 (2) (+495) 2762980 (Website):http://almaz-antey.ru/about/27/ (Email address):antey@almaz-antey.ru (Type of entity):Manufacturing and supplying anti-aircraft weapons (Parent company):Strela",Entity,Primary name variation,,Russia,31/07/2014,31/12/2020,16/09/2022,13076 +JOINT STOCK COMPANY BLACK SEA BANK FOR DEVELOPMENT AND RECONSTRUCTION,,,,,,,,,,,,,,,,,,,Bil’shovyts’ka Street,24,Simferopol,Crimea,,,,Ukraine,"(UK Sanctions List Ref):RUS0233 Other suspected locations: 22 regional offices in Crimea (UK Statement of Reasons):JOINT STOCK COMPANY “BLACK SEA BANK FOR DEVELOPMENT AND RECONSTRUCTION” hereafter,  JSC “BLACK SEA BANK FOR DEVELOPMENT AND RECONSTRUCTION” is a Crimean bank that was created immediately after the illegal annexation of Crimea in 2014. It has capitalised on the sector’s fear of Western sanctions and the lack of banks in Crimea. By operating in Crimea, JSC “BLACK SEA BANK FOR DEVELOPMENT AND RECONSTRUCTION” has consolidated Crimea into the Russian Federation through the financial system. (Phone number):(1) +7 (365) 254-89-05 (2) +7 (978) 982-52-09 (3) +7(365) 260-58-05 (4) +7 (365) 254-89-18 (5) +7 (978) 750-36-94 (6) +7 (978) 835-27-83 (7) +7 (978) 095-11-18 (8) +7 (978) 825-59-40 (9) +7 (365) 255-02-48 (Website):https://www.chbrr.crimea.com/ (Email address):(1) magnolia.byx@yandex.ua (2) sicomplit@i.ua (3) t_c82@inbox.ru (4) zakupkj@chbrr.crimea.com (Type of entity):Public Joint Stock Company (PJSC)",Entity,AKA,,Russia,22/02/2022,22/02/2022,22/02/2022,14178 +JOINT STOCK COMPANY FEDERAL SCIENTIFIC AND PRODUCTION CENTER TITAN BARRIKADY,,,,,,,,,,,,,,,,,,,Lenin Ave,,,,,Volgograd,400071,Russia,"(UK Sanctions List Ref):RUS1091 (UK Statement of Reasons):Joint Stock Company Federal Scientific and Production Center Titan Barrikady (hereafter JSC Federal Scientific and Production Center Titan Barrikady) is a subsidiary of State-owned Moscow Institute of Thermal Engineering. JSC Federal Scientific and Production Center Titan Barrikady is an entity obtaining a benefit from or supporting the Government of Russia by carrying on business in the Russian defence sector, a sector of strategic significance to the Government of Russia. (Phone number):(8442) 74-93-26 (Email address):cdb@cdbtitan.ru",Entity,Primary name,,Russia,24/03/2022,24/03/2022,14/06/2022,15034 +JOINT STOCK COMPANY GENBANK,,,,,,,"АО ""ГЕНБАНК""",,,,,,,,,,,,Sevastopolskaya Street,13,Simferopol,Crimea,,,295011,Ukraine,"(UK Sanctions List Ref):RUS0234 Phone number: (1) +7 (495) 777 55 45 (2) 8 (800) 333 55 45 (3) +7 (365) 255 02 55 (4) +7 365 225 50 25 ext 5 (5) +7 (915) 210 21 56 (6) +7 (978) 712 77 01 (7) +7 (978) 708 79 80 (8) +7 (978) 740 75 94 (9) +7 (495) 701 19 42 (10) +7 (495) 701 15 41 (11) +7 (365) 254 86 20 (12) +7 (978) 755 00 51 (UK Statement of Reasons):Joint Stock Company (JSC) Genbank is a Russian financial institution that operates extensively in the occupied territory of Crimea. By providing banking and other financial services in the annexed territory of Crimea it contributes to undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Website):www.genbank.ru (Type of entity):Bank (Business Reg No):1137711000074 (Russia)",Entity,Primary name,,Russia,22/02/2022,22/02/2022,24/02/2022,14179 +JOINT STOCK COMPANY GENBANK,,,,,,,"АО ""ГЕНБАНК""",,,,,,,,,,,,Ozerkovskaya Naberezhnaya,12,Moscow,,,,115184,Russia,"(UK Sanctions List Ref):RUS0234 Phone number: (1) +7 (495) 777 55 45 (2) 8 (800) 333 55 45 (3) +7 (365) 255 02 55 (4) +7 365 225 50 25 ext 5 (5) +7 (915) 210 21 56 (6) +7 (978) 712 77 01 (7) +7 (978) 708 79 80 (8) +7 (978) 740 75 94 (9) +7 (495) 701 19 42 (10) +7 (495) 701 15 41 (11) +7 (365) 254 86 20 (12) +7 (978) 755 00 51 (UK Statement of Reasons):Joint Stock Company (JSC) Genbank is a Russian financial institution that operates extensively in the occupied territory of Crimea. By providing banking and other financial services in the annexed territory of Crimea it contributes to undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Website):www.genbank.ru (Type of entity):Bank (Business Reg No):1137711000074 (Russia)",Entity,Primary name,,Russia,22/02/2022,22/02/2022,24/02/2022,14179 +JOINT STOCK COMPANY INTEGRAL,,,,,,,,,,,,,,,,,,,121A,Kazintsa I.P. Str.,,,,Minsk,220108,Belarus,"(UK Sanctions List Ref):RUS0262 (UK Statement of Reasons):JSC Integral is a Belarusian defence SOE (state-owned enterprise) that produces semiconductors for military end-users, and supplies parts to both the Belarusian and Russian armed forces. Russian armed forces have been directly involved in the invasion of Ukraine. Belarusian armed forces have supported and enabled the Russian invasion of Ukraine, including by conducting joint military exercises with Russian armed forces which involved the deployment of Russian troops along the border of Belarus with Ukraine, which in turn directly contributed to Russia’s ability to both threaten and attack Ukraine, including from positions in Belarus. JSC Integral therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Phone number):+375-17-253-3562 (Website):https://integral.by/en (Email address):export@integral.by (Type of entity):Public Joint Stock Company (PJSC)",Entity,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14202 +JOINT STOCK COMPANY MARSHAL.GLOBAL,,,,,,,АКЦИОНЕРНОЕ ОБЩЕСТВО МАРШАЛ.ГЛОБАЛ,,,,,,,,,,,,"ul. Krasnobogatyrskaya, d. 6, str. 6, et 1 komn 23",,,,,Moscow,107564,Russia,"(UK Sanctions List Ref):RUS1491 (UK Statement of Reasons):JSC Marshal.Global (hereafter Marshal.Global) is a Russian investment banking, financial and asset management firm. Therefore, it is obtaining a benefit from or supporting the Government of Russia through being an entity carrying on business in a sector of strategic significance to the Government of Russia, namely, the Russian financial services sector. (Phone number):+7 495 120 6626 (Website):http://marshal.global/en.html (Email address):info@marshal.global (Type of entity):JSC (Business Reg No):TIN: 7703436139, Registration number: 5177746148784",Entity,Primary name,,Russia,29/06/2022,29/06/2022,29/06/2022,15428 +JOINT STOCK COMPANY MIKRON,,,,,,,Акционерное общество Микрон,Cyrillic,Russian,,,,,,,,,,1st Zapadny Proezd 12/1,,,,,Zelenograd,124460,Russia,"(UK Sanctions List Ref):RUS1404 Organization Established Date 13 Jan 1994; Government Gazette Number 07589295 (Russia) (UK Statement of Reasons):JOINT STOCK COMPANY MIKRON is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is the largest Russian manufacturer and exporter of microelectronics.  The company received tax benefits to produce the domestic chip for Russia’s National Payment Card System, which was developed following previous sanctions on Russia. Therefore, JOINT STOCK COMPANY MIKRON is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian electronics sector. (Website):https://en.mikron.ru/ (Business Reg No):1027700073466 (Russia). Tax ID No. 7735007358 (Russia)",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15324 +JOINT STOCK COMPANY MIKRON,,,,,,,Акционерное общество Микрон,Cyrillic,Russian,,,,,,,,,,d. 6 str. 1,ul. Akademika Valieva,,,Zelenograd,Moscow,124460,Russia,"(UK Sanctions List Ref):RUS1404 Organization Established Date 13 Jan 1994; Government Gazette Number 07589295 (Russia) (UK Statement of Reasons):JOINT STOCK COMPANY MIKRON is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is the largest Russian manufacturer and exporter of microelectronics.  The company received tax benefits to produce the domestic chip for Russia’s National Payment Card System, which was developed following previous sanctions on Russia. Therefore, JOINT STOCK COMPANY MIKRON is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian electronics sector. (Website):https://en.mikron.ru/ (Business Reg No):1027700073466 (Russia). Tax ID No. 7735007358 (Russia)",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15324 +JOINT STOCK COMPANY MOSCOW INDUSTRIAL BANK,,,,,,,АО МОСКОВСКИИ ИНДУСТРИАЛЬНЫИ БАНК,,,,,,,,,,,,Ordzhonikidze Street 5,,,,,Moscow,115419,Russia,"(UK Sanctions List Ref):RUS1492 Organization Established Date 22 Nov 1990 (UK Statement of Reasons):JOINT STOCK COMPANY MOSCOW INDUSTRIAL BANK is a Russian commercial bank. It is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian financial services sector. (Website):http://www.minbank.ru (Type of entity):Financial Institution (Subsidiaries):Agropromyshlenny Kompleks Voronezhski OOO Anninskii Elevator OOO Auditkonsalt OOO Belinveststroi OOO Dve Stolitsy OOO Kontrakt OOO Ladoga OOO Nekommercheskaya Organizatsiya Fond Khimicheskoe Razoruzhenie I Konversiya Azovskaya Zernovaya Kompaniya OOO Ekspluatiruyushchaya Kompaniya Tsentr OOO (Business Reg No):SWIFT/BIC MINNRUMM BIK (RU) 044525600 Tax ID No. 7725039953 (Russia) Government Gazette Number 09317135 (Russia) Legal Entity Number 2534006SJ05GGKETEY75 (Russia) Registration Number 1027739179160 (Russia)",Entity,Primary name,,Russia,29/06/2022,29/06/2022,29/06/2022,15429 +JOINT STOCK COMPANY NIIME,,,,,,,,,,,,,,,,,,,1st Zapadny Proezd 12/1,,,,,Zelenograd,124460,Russia,"(UK Sanctions List Ref):RUS1405 Organization Established Date 03 Sep 1964. Government Gazette Number 92611467 (Russia) (UK Statement of Reasons):The Molecular Electronics Research Institute is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the electronics sector. (Website):https://www.niime.ru (Business Reg No):1117746568829 (Russia). Tax ID No. 7735579027 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15325 +JOINT STOCK COMPANY NIIME,,,,,,,,,,,,,,,,,,,d. 6 str. 1,ul. Akademika Valieva,,,Zelenograd,Moscow,124460,Russia,"(UK Sanctions List Ref):RUS1405 Organization Established Date 03 Sep 1964. Government Gazette Number 92611467 (Russia) (UK Statement of Reasons):The Molecular Electronics Research Institute is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the electronics sector. (Website):https://www.niime.ru (Business Reg No):1117746568829 (Russia). Tax ID No. 7735579027 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15325 +JOINT STOCK COMPANY SALAVAT CHEMICAL PLANT,,,,,,,,,,,,,,,,,,,30 Mologvardeytsev Street,Salavat,Bashkortostan,,,,453256,Russia,"(UK Sanctions List Ref):RUS1077 (UK Statement of Reasons):Joint Stock Company Salavat Chemical Plant (hereafter JSC SALAVAT CHEMICAL PLANT), a subsidiary of Russian State space agency Roscosmos. JSC SALAVAT CHEMICAL PLANT has been and is been involved in obtaining a benefit from or supporting by carrying on business in the Russia chemicals sector a sector of strategic significance to the Government of Russia.",Entity,Primary name,,Russia,24/03/2022,24/03/2022,24/06/2022,15020 +JOINT STOCK COMPANY SCIENTIFIC-RESEARCH INSTITUTE VEKTOR,,,,,,,акционерное общество Научно-исследовательский институт Вектор,Cyrillic,Russian,,,,,,,,,,ul. Akademika Pavlova d. 14-A,,,,,Saint Petersburg,197376,Russia,"(UK Sanctions List Ref):RUS1402 Organization Established Date 1908, Trade License No. 1117847020400 (Russia) (UK Statement of Reasons):AO NII VEKTOR has obtained a benefit from supporting the Government of Russia by carrying on business as a Government of Russia-affiliated entity which is owned or controlled directly or indirectly by the Government of Russia. (Phone number):7 (812) 4387597 (Website):nii-vektor.ru (Email address):nii@nii-vektor.ru (Business Reg No):Tax ID No. 7813491943 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15322 +JOINT STOCK COMPANY SCIENTIFIC-RESEARCH INSTITUTE VEKTOR,,,,,,,акционерное общество Научно-исследовательский институт Вектор,Cyrillic,Russian,,,,,,,,,,14 St. Academician Pavlova,,,,,Saint Petersburg,197022,Russia,"(UK Sanctions List Ref):RUS1402 Organization Established Date 1908, Trade License No. 1117847020400 (Russia) (UK Statement of Reasons):AO NII VEKTOR has obtained a benefit from supporting the Government of Russia by carrying on business as a Government of Russia-affiliated entity which is owned or controlled directly or indirectly by the Government of Russia. (Phone number):7 (812) 4387597 (Website):nii-vektor.ru (Email address):nii@nii-vektor.ru (Business Reg No):Tax ID No. 7813491943 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15322 +JOINT STOCK COMPANY T-PLATFORMS,,,,,,,АКЦИОНЕРНОЕ ОБЩЕСТВО Т-ПЛАТФОРМЫ,Cyrillic,Russian,,,,,,,,,,Ul. Krupskoi D.4,Korp.2,,,,Moscow,119311,Russia,"(UK Sanctions List Ref):RUS1403 Trade License No. 5087746658984 (UK Statement of Reasons):T-Platforms is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance to the Government of Russia, namely the information, communications and digital technologies sector. (Phone number):(1) 7(495) 9565414 (2) 7(499) 6500150 (3) 7(495) 9565415 (Website):t-platforms.ru (Business Reg No):Tax ID No. 7736588433 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15323 +"JOINT-STOCK COMPANY ""PRODUCTION AGRARIAN UNION ‘MASSANDRA’""",,,,,,,,,,,,,,,,,,,Str. Vinodela Egorova 9,Massandra,Yalta,The Autonomous Republic of Crimea and the city of Sevastopol,,,298650,Ukraine,"(UK Sanctions List Ref):RUS0192 (UK Statement of Reasons):The ownership of Massandra Winery, a business trading in Crimea, was transferred contrary to the Ukrainian law. The enterprise was confiscated by the Crimean ‘authorities’. The subsequent ‘sale’ of the entity to the Yuzhny Proyect Company (Southern Project Company), affiliated with the Rossiya Bank which was founded by Yury Kovalchuk, was therefore a further unlawful transfer. (Website):http://massandra.su (Type of entity):Winery/Agriculture (Subsidiaries):Yuzhny Proyect (Southern Project), affiliated with the Saint Petersburg-based Rossiya bank, which is co-owned by oligarch Yury KOVALCHUK (RUS0007)",Entity,Primary name,,Russia,25/07/2014,31/12/2020,16/09/2022,13060 +JOINT-STOCK COMPANY 'LENPROMTRANSPROYEKT',,,,,,,,,,,,,,,,,,,Ave. Kondratyevskiy 15,,,,Saint Petersburg,"Korpus 5 Stroyeniye 1, the room 223",195197,Russia,"(UK Sanctions List Ref):RUS0222 (UK Statement of Reasons):Joint-stock company Lenpromtransproyekt participated in the project of connecting the railway infrastructures of the illegally annexed Crimea and Russia by designing the railway approaches to the bridge over the Kerch Strait and acting as a supervisor during construction of the bridge connecting Russia and the illegally annexed Crimean peninsula. Therefore, it supports the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Phone number):(812) 612-06-12 (Website):http://www.lptp.ru/ (Email address):ptp@sp.ru (Type of entity):Joint Stock Company (Business Reg No):1027809210054",Entity,Primary name,,Russia,02/10/2020,31/12/2020,16/09/2022,13928 +'JOINT-STOCK COMPANY 'SPARKLING WINE PLANT NOVY SVET',,,,,,,,,,,,,,,,,,,Str. Shalapina 1,,,Novy Svet,Sudak,The Autonomous Republic of Crimea and the city of Sevastopol,298032,Ukraine,"(UK Sanctions List Ref):RUS0201 (UK Statement of Reasons):The ownership of the entity was transferred contrary to the Ukrainian law. On 9 April 2014, the ‘Presidium of the Parliament of Crimea’ adopted a decision No 1991-6/14 ‘On the amendments to the Resolution of the State Council of the “Republic of Crimea” of 26 March 2014 No 1836-6/14 ‘On nationalization of the property of enterprises, institutions and organizations of agro-industrial complex, located in the territory of the “Republic of Crimea” declaring the appropriation of assets belonging to the state enterprise “Zavod shampanskykh vin Novy Svet”’ on behalf of the ‘Republic of Crimea’. The enterprise is thus effectively confiscated by the Crimean ‘authorities’. Re-registered on 4.1.2015 as State Unitary Enterprise of the ‘Republic of Crimea’ ‘sparkling wine plant “Novy Svet”’. Founder: The Ministry of Agriculture of the Republic of Crimea. Re-registered following reorganization on 29.8.2018 as Joint-stock company Sparkling wine plant ‘Novy Svet’. Founder: the Ministry of Land and Property Regulations of the ‘Republic of Crimea’. The action of transferring ownership, contrary to Ukrainian law, undermines or threatens the territorial integrity, sovereignty and independence of Ukraine.",Entity,Primary name,,Russia,25/07/2014,31/12/2020,31/12/2020,13062 +JOINT-STOCK COMPANY 'THE BERKATIT-TOMMOT-YAKUTSK RAILWAY LINE'S CONSTRUCTION DIRECTORATE',,,,,,,,,,,,,,,,,,,Mayakovskogo St. 14,,,,Alansky District,Aldan,678900,Russia,"(UK Sanctions List Ref):RUS0223 (UK Statement of Reasons):Joint Stock company The Berkakit-Tommot-Yakutsk Railway Line’s Construction Directorate participated in the project of connecting the railway infrastructures of the illegally annexed Crimea and Russia by providing engineering services during the construction of railway approaches to the bridge over the Kerch Strait connecting Russia and the illegally annexed Crimean peninsula. Therefore, it supports the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Website):http://dsgd.ru (Email address):info@dsgd.ru (Type of entity):Joint Stock Company (Business Reg No):1121402000213",Entity,Primary name,,Russia,02/10/2020,31/12/2020,31/12/2020,13929 +JOK,Gabriel,,,,,,,,,01/01/1966,,Sudan,South Sudan,D00008623,South Sudan number,M6600000258472,,Chief of Defence Forces. Former Sudan People’s Liberation Army’s (SPLA) Sector One Commander,,,,,,Unity State,,South Sudan,"(UK Sanctions List Ref):SSU0002 (UN Ref):SSi.001 Appointed as Chief of Defence Forces on 2 May 2018. Commanded SPLA Sector One, which operates primarily within Unity State, since January 2013. In his position as the SPLA Sector One commander, he has expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement. The SPLA is a South Sudanese military entity that has engaged in actions that have extended the conflict in South Sudan, including breaches of the January 2014 Cessation of Hostilities Agreement and the May 9, 2014 Agreement to Resolve the Crisis in South Sudan, which was a re-commitment to the CoHA and has obstructed the activities of IGAD’s Monitoring and Verification Mechanism. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879060",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13263 +JOK,Gabriel,,,,,,,,,01/01/1966,,Sudan,South Sudan,D00008623,South Sudan number,M6600000258472,,Chief of Defence Forces. Former Sudan People’s Liberation Army’s (SPLA) Sector One Commander,Wau,,,,,Western Bahr El Ghazal,,South Sudan,"(UK Sanctions List Ref):SSU0002 (UN Ref):SSi.001 Appointed as Chief of Defence Forces on 2 May 2018. Commanded SPLA Sector One, which operates primarily within Unity State, since January 2013. In his position as the SPLA Sector One commander, he has expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement. The SPLA is a South Sudanese military entity that has engaged in actions that have extended the conflict in South Sudan, including breaches of the January 2014 Cessation of Hostilities Agreement and the May 9, 2014 Agreement to Resolve the Crisis in South Sudan, which was a re-commitment to the CoHA and has obstructed the activities of IGAD’s Monitoring and Verification Mechanism. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879060",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13263 +JOKAR,Mohammad,Salah,,,,,,,,,,,,,,,,(1) Deputy for Parliamentary Affairs of the Islamic Revolutionary Guard Corps (IRGC) (2) Former Parliamentary deputy for Yazd Province (2011-16) (3) Member of the parliamentary Committee for National Security and Foreign Policy (4) Former Commander of Student Basij Force,,,,,,,,,(UK Sanctions List Ref):IHR0058 (UK Statement of Reasons):Deputy for Parliamentary Affairs of the Revolutionary Guards. From 2011 until 2016 parliamentary deputy for Yazd Province and Member of the parliamentary Committee for National Security and Foreign Policy. Former Commander of Student Basij Forces. In this role he was actively involved in suppressing protests and indoctrinating children and young people with a view to continuing suppression of free speech and dissent. As member of the Parliamentary Committee for National Security and Foreign Policy he publicly supported the suppression of opposition to the government.,Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12186 +JOKAR,Mohammad,Saleh,,,,,,,,,,,,,,,,(1) Deputy for Parliamentary Affairs of the Islamic Revolutionary Guard Corps (IRGC) (2) Former Parliamentary deputy for Yazd Province (2011-16) (3) Member of the parliamentary Committee for National Security and Foreign Policy (4) Former Commander of Student Basij Force,,,,,,,,,(UK Sanctions List Ref):IHR0058 (UK Statement of Reasons):Deputy for Parliamentary Affairs of the Revolutionary Guards. From 2011 until 2016 parliamentary deputy for Yazd Province and Member of the parliamentary Committee for National Security and Foreign Policy. Former Commander of Student Basij Forces. In this role he was actively involved in suppressing protests and indoctrinating children and young people with a view to continuing suppression of free speech and dissent. As member of the Parliamentary Committee for National Security and Foreign Policy he publicly supported the suppression of opposition to the government.,Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12186 +JON,Chol,Yong,,,,,,,,30/04/1975,,,North Korea,563410192,,,,Diplomat DPRK Embassy Angola,,,,,,,,Angola,(UK Sanctions List Ref):DPR0016 Associations with Green Pine Corporation and DPRK Embassy Luanda (UK Statement of Reasons):Former Representative in Angola of Green Pine Associated Corporation and DPRK diplomat accredited to Angola. Green Pine has been designated by the UN for activities including violating the UN arms embargo. Green Pine has also negotiated contracts for the refurbishment of Angolan naval vessels in violation of the prohibitions imposed by United Nations Security Council Resolutions. (Gender):Male,Individual,Primary name variation,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13589 +JON,Chol,Young,,,,,,,,30/04/1975,,,North Korea,563410192,,,,Diplomat DPRK Embassy Angola,,,,,,,,Angola,(UK Sanctions List Ref):DPR0016 Associations with Green Pine Corporation and DPRK Embassy Luanda (UK Statement of Reasons):Former Representative in Angola of Green Pine Associated Corporation and DPRK diplomat accredited to Angola. Green Pine has been designated by the UN for activities including violating the UN arms embargo. Green Pine has also negotiated contracts for the refurbishment of Angolan naval vessels in violation of the prohibitions imposed by United Nations Security Council Resolutions. (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13589 +JON,Il,Chun,,,,,,,,24/08/1941,,,North Korea,,,,,Director of 'Office 39' of the Central Committee of the Workers' Party of Korea,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0014 (UK Statement of Reasons):In February of 2010 KIM Tong-Un was discharged from his office as director of Office 39, which is, among other things, in charge of purchasing goods out of the DPRK diplomatic representations bypassing sanctions. He was replaced by JON IL-CHUN. Representative of the National Defence Commission which was a key body for national defence matters in the DPRK before it was reformed into the State Affairs Commission (SAC), has been elected director-general of the State Development Bank in March 2010. Elected Workers’ Party of Korea Central Committee alternate member in May 2016 at the 7th Party Congress of Workers’ Party of Korea, where WPK adopted a decision to continue the DPRK’s nuclear programme. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,23/12/2010,31/12/2020,31/12/2020,11281 +JON,Il-Chun,,,,,,,,,24/08/1941,,,North Korea,,,,,Director of 'Office 39' of the Central Committee of the Workers' Party of Korea,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0014 (UK Statement of Reasons):In February of 2010 KIM Tong-Un was discharged from his office as director of Office 39, which is, among other things, in charge of purchasing goods out of the DPRK diplomatic representations bypassing sanctions. He was replaced by JON IL-CHUN. Representative of the National Defence Commission which was a key body for national defence matters in the DPRK before it was reformed into the State Affairs Commission (SAC), has been elected director-general of the State Development Bank in March 2010. Elected Workers’ Party of Korea Central Committee alternate member in May 2016 at the 7th Party Congress of Workers’ Party of Korea, where WPK adopted a decision to continue the DPRK’s nuclear programme. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,23/12/2010,31/12/2020,31/12/2020,11281 +JONES,SALLY-ANNE,FRANCES,,,,,,,,17/11/1968,"Greenwich, Greater London",United Kingdom,United Kingdom,519408086,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0310 (UN Ref):QDi.360 Recruiter for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Sex: female. Husband’s name is: Junaid Hussain. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897339. Syria, as at 2013 (Gender):Female",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13288 +JONES,SALLY-ANNE,FRANCES,,,,,,,,17/11/1968,"Greenwich, Greater London",United Kingdom,United Kingdom,519408086,,,,,,,,,,,,United Kingdom,"(UK Sanctions List Ref):AQD0310 (UN Ref):QDi.360 Recruiter for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Sex: female. Husband’s name is: Junaid Hussain. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897339. Syria, as at 2013 (Gender):Female",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13288 +JONG HYOK,SON,,,,,,,,,20/05/1980,,,North Korea,,,,,KOMID Official,,,,,,,,,(UK Sanctions List Ref):DPR0273 (UN Ref):KPi.031 Son Jong Hyok is a KOMID official that has conducted business in Sudan on behalf of KOMID’s interests.,Individual,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,31/12/2020,13416 +JONG SIK,KIM,,,,,,,,,00/00/1967,,,North Korea,,,,,A leading official guiding the DPRK’s WMD development efforts. Serving as Deputy Director of the Workers’ Party of Korea Munitions Industry Department,,,,,,,,North Korea,(UK Sanctions List Ref):DPR0227 (UN Ref):KPi.066 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,16/02/2022,13561 +JONG SIK,KIM,,,,,,,,,00/00/1969,,,North Korea,,,,,A leading official guiding the DPRK’s WMD development efforts. Serving as Deputy Director of the Workers’ Party of Korea Munitions Industry Department,,,,,,,,North Korea,(UK Sanctions List Ref):DPR0227 (UN Ref):KPi.066 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,16/02/2022,13561 +JONG SIK,KIM,,,,,,,,,00/00/1968,,,North Korea,,,,,A leading official guiding the DPRK’s WMD development efforts. Serving as Deputy Director of the Workers’ Party of Korea Munitions Industry Department,,,,,,,,North Korea,(UK Sanctions List Ref):DPR0227 (UN Ref):KPi.066 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,16/02/2022,13561 +JOUM'A,Sameer,,,,,,,,,00/00/1962,,,Syria,,,,,"Deputy to the Vice- President, Faruq Al Shar, head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad",,,,,,,,,"(UK Sanctions List Ref):SYR0219 Linked to Muhammad Nasif Khayrbik and Bashar al-Asad (UK Statement of Reasons):For almost 20 years he has been head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad (and officially deputy to the Vice- President, Faruq Al Shar'). Samir Joumaa's closeness to Bashar al-Assad and Muhammad Nasif Khayrbik means that he is implicated in the policy of repression conducted by the regime against its opponents (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12731 +JOUM'A,Samir,,,,,,,,,00/00/1962,,,Syria,,,,,"Deputy to the Vice- President, Faruq Al Shar, head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad",,,,,,,,,"(UK Sanctions List Ref):SYR0219 Linked to Muhammad Nasif Khayrbik and Bashar al-Asad (UK Statement of Reasons):For almost 20 years he has been head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad (and officially deputy to the Vice- President, Faruq Al Shar'). Samir Joumaa's closeness to Bashar al-Assad and Muhammad Nasif Khayrbik means that he is implicated in the policy of repression conducted by the regime against its opponents (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12731 +JOUMAA,Sameer,,,,,,,,,00/00/1962,,,Syria,,,,,"Deputy to the Vice- President, Faruq Al Shar, head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad",,,,,,,,,"(UK Sanctions List Ref):SYR0219 Linked to Muhammad Nasif Khayrbik and Bashar al-Asad (UK Statement of Reasons):For almost 20 years he has been head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad (and officially deputy to the Vice- President, Faruq Al Shar'). Samir Joumaa's closeness to Bashar al-Assad and Muhammad Nasif Khayrbik means that he is implicated in the policy of repression conducted by the regime against its opponents (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12731 +JOUMAA,Samir,,,,,,,,,00/00/1962,,,Syria,,,,,"Deputy to the Vice- President, Faruq Al Shar, head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad",,,,,,,,,"(UK Sanctions List Ref):SYR0219 Linked to Muhammad Nasif Khayrbik and Bashar al-Asad (UK Statement of Reasons):For almost 20 years he has been head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad (and officially deputy to the Vice- President, Faruq Al Shar'). Samir Joumaa's closeness to Bashar al-Assad and Muhammad Nasif Khayrbik means that he is implicated in the policy of repression conducted by the regime against its opponents (Gender):Male",Individual,Primary name,,Syria,24/07/2012,31/12/2020,31/12/2020,12731 +JOUMANI,Lehbib,Ould,Ali Ould,Said Ould,,,,,,16/02/1973,Laayoune,,,,,,,,,,,,Ménaka,Gao Region,,Mali,"(UK Sanctions List Ref):AQD0121 (UN Ref):QDi.415 Former spokesperson of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Emir of the Al-Mourabitoun (QDe.141) group in Mali. Pledged allegiance to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115) in May 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6241501",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/08/2018,09/08/2018,31/12/2020,13706 +JOZA INDUSTRIAL CO.,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0154 (UN Ref):IRe.031 AIO front-company, involved in the ballistic missile programme. [Old Reference # E.03.III.7] (Parent company):Aerospace Industries Organisation (AIO)",Entity,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,31/12/2020,10447 +JSC 558 AIRCRAFT REPAIR PLANT,,,,,,,558 АВІЯЦЫЙНЫ РАМОНТНЫ ЗАВОД,,,,,,,,,,,,bld.7,50 let VLKSM st.,Baranovichi,,,Brest reg,225415,Belarus,"(UK Sanctions List Ref):RUS0261 (UK Statement of Reasons):JSC 558 Aircraft Repair Plant (“558 ARP”) is a Belarusian defence company based at the Baranovichi airbase which provides maintenance and servicing to military aircraft. Belarus and Russia have deepened military cooperation at Baranovichi airbase in recent years and held extensive joint exercises there in February 2022, immediately before Russia’s invasion of Ukraine. There is evidence that Russian aircraft operated from Baranovichi airbase as part of the invasion. Given 558 ARP’s role in providing maintenance and servicing to aircraft stationed at Baranovichi airbase, there are reasonable grounds to suspect that 558 ARP is providing those services to Russian aircraft involved in the invasion of Ukraine, and therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Phone number):+375-163-41-70-98 (Website):https://www.558arp.by/eng/ (Email address):box@558arp.by (Type of entity):Public Joint Stock Company (PJSC)",Entity,Primary name,,Russia,01/03/2022,01/03/2022,01/03/2022,14201 +JSC 558 AIRCRAFT REPAIR PLANT,,,,,,,558 АВИАЦИОННЫЙ РЕМОНТНЫЙ ЗАВОД,,,,,,,,,,,,bld.7,50 let VLKSM st.,Baranovichi,,,Brest reg,225415,Belarus,"(UK Sanctions List Ref):RUS0261 (UK Statement of Reasons):JSC 558 Aircraft Repair Plant (“558 ARP”) is a Belarusian defence company based at the Baranovichi airbase which provides maintenance and servicing to military aircraft. Belarus and Russia have deepened military cooperation at Baranovichi airbase in recent years and held extensive joint exercises there in February 2022, immediately before Russia’s invasion of Ukraine. There is evidence that Russian aircraft operated from Baranovichi airbase as part of the invasion. Given 558 ARP’s role in providing maintenance and servicing to aircraft stationed at Baranovichi airbase, there are reasonable grounds to suspect that 558 ARP is providing those services to Russian aircraft involved in the invasion of Ukraine, and therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Phone number):+375-163-41-70-98 (Website):https://www.558arp.by/eng/ (Email address):box@558arp.by (Type of entity):Public Joint Stock Company (PJSC)",Entity,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14201 +JSC 558 ARP,,,,,,,,,,,,,,,,,,,bld.7,50 let VLKSM st.,Baranovichi,,,Brest reg,225415,Belarus,"(UK Sanctions List Ref):RUS0261 (UK Statement of Reasons):JSC 558 Aircraft Repair Plant (“558 ARP”) is a Belarusian defence company based at the Baranovichi airbase which provides maintenance and servicing to military aircraft. Belarus and Russia have deepened military cooperation at Baranovichi airbase in recent years and held extensive joint exercises there in February 2022, immediately before Russia’s invasion of Ukraine. There is evidence that Russian aircraft operated from Baranovichi airbase as part of the invasion. Given 558 ARP’s role in providing maintenance and servicing to aircraft stationed at Baranovichi airbase, there are reasonable grounds to suspect that 558 ARP is providing those services to Russian aircraft involved in the invasion of Ukraine, and therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Phone number):+375-163-41-70-98 (Website):https://www.558arp.by/eng/ (Email address):box@558arp.by (Type of entity):Public Joint Stock Company (PJSC)",Entity,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14201 +JSC AGAT - ELECTROMECHANICAL PLANT,,,,,,,,,,,,,,,,,,,Nezavisimosti ave. 115,,,,,Minsk,220114,Belarus,"(UK Sanctions List Ref):BEL0109 (UK Statement of Reasons):JSC AGAT-Electromechanical Plant is named as one of a number of Belarusian defence companies on the website of the government authority, The State Authority for Military Industry of the Republic of Belarus (SAMI). JSC AGAT – Electromechanical Plant manufactures the ‘Rubezh’ (Frontier), a barrier system designed for riot control which was deployed during the demonstrations that have taken place in the wake of the August 9 2020 Presidential elections in Belarus. JSC AGAT-Electromechanical Plant therefore provided support for, and made available equipment to police and security forces of the Ministry of Internal Affairs, which have contributed to, the repression of civil society and of democratic opposition following the August 9 elections. Furthermore, JSC AGAT - Electromechanical Plant is named as one of a number of Belarusian defence companies on the SAMI website. SAMI was established by the Belarusian President’s Decree of 30 December 2003 and is described on its website as being “subordinate to the Council of Ministers of the Republic of Belarus and in certain aspects of its activity, in accordance with the current legislation, is subordinate to the President of the Republic of Belarus.” It is therefore reasonable to conclude that JSC AGAT - Electromechanical Plant is responsible for, engaging in, providing support for, and promoting the wider efforts directed by the Belarussian regime to repress civil society and the democratic opposition. (Phone number):+375 17 272 01 32. +375 17 570 41 45 (Website):https://agat-emz.by/ (Email address):marketing@agat-emz.by",Entity,Primary name,,Belarus,21/07/2021,21/07/2021,21/07/2021,14125 +JSC ARZAMAS MACHINE-BUILDING PLANT,,,,,,,AO Арзамасский машиностроительный завод,Cyrillic,Russian,,,,,,,,,,2,Ulitsa 9 Maya,,,Arzamas,Nizhny Novgorod Oblast,607220,Russia,"(UK Sanctions List Ref):RUS1355 (UK Statement of Reasons):JSC Arzamas Machine-Building Plant is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the defence sector. (Phone number):+7 831 4740780 (Website):amz.ru (Email address):oao_amz@amz.ru",Entity,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15302 +JSC CB IS BANK,,,,,,,,,,,,,,,,,,,Dmitrovsky Lane,7,,,,Moscow,107031,Russia,"(UK Sanctions List Ref):RUS0236 (UK Statement of Reasons):Since the annexation of Crimea, IS Bank, a Russian Bank, has operated across Crimea, after Ukrainian banks were stopped from operating there. Its business development is directly tied to the annexation of Crimea. In addition, it has been providing financial services, thereby facilitating the integration of Crimea into the Russian Federation through the financial system. (Phone number):(1) +7-4994018383 (2) 7-495 641 4070 (Website):www.isbank.ru (Type of entity):Bank (Business Reg No):1027739339715 (Russia)",Entity,Primary name variation,,Russia,22/02/2022,22/02/2022,03/03/2022,14180 +JSC CB IS BANK,,,,,,,,,,,,,,,,,,,Eldoradovsky Per 7,,,,,Moscow,1251677,,"(UK Sanctions List Ref):RUS0236 (UK Statement of Reasons):Since the annexation of Crimea, IS Bank, a Russian Bank, has operated across Crimea, after Ukrainian banks were stopped from operating there. Its business development is directly tied to the annexation of Crimea. In addition, it has been providing financial services, thereby facilitating the integration of Crimea into the Russian Federation through the financial system. (Phone number):(1) +7-4994018383 (2) 7-495 641 4070 (Website):www.isbank.ru (Type of entity):Bank (Business Reg No):1027739339715 (Russia)",Entity,Primary name variation,,Russia,22/02/2022,22/02/2022,03/03/2022,14180 +JSC CENTRAL RESEARCH INSTITUTE OF MECHANICAL ENGINEERING,,,,,,,,,,,,,,,,,,,4 Ulitsa Pionerskaya,,,,,Korolev,141070,Russia,"(UK Sanctions List Ref):RUS1351 (UK Statement of Reasons):Central Research Institute of Machine Building JSC (TsNIIMash) is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because: it obtains a benefit from or supports the Government of Russia by carrying on business as a Government of Russia-affiliated entity. Central Research Institute of Machine Building JSC (TsNIIMash) is owned or controlled directly or indirectly by the Government of Russia, namely via the State Corporation Roscosmos. The Russian State, or Roscosmos, is currently the sole shareholder of The Central Research Institute of Machine Building JSC (TsNIIMash). (Phone number):(495) 513-59-51 (Website):https://www.tsniimash.ru/ (Email address):corp@tsniimash.ru (Parent company):Roscosmos",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15304 +JSC FNPC TITAN-BARRICADES,,,,,,,,,,,,,,,,,,,Lenin Ave,,,,,Volgograd,400071,Russia,"(UK Sanctions List Ref):RUS1091 (UK Statement of Reasons):Joint Stock Company Federal Scientific and Production Center Titan Barrikady (hereafter JSC Federal Scientific and Production Center Titan Barrikady) is a subsidiary of State-owned Moscow Institute of Thermal Engineering. JSC Federal Scientific and Production Center Titan Barrikady is an entity obtaining a benefit from or supporting the Government of Russia by carrying on business in the Russian defence sector, a sector of strategic significance to the Government of Russia. (Phone number):(8442) 74-93-26 (Email address):cdb@cdbtitan.ru",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,14/06/2022,15034 +JSC GORIZONT,,,,,,,"АО ""ГОРИЗОНТ""",,,,,,,,,,,,"2 ""J"", Omskaya str.",,,,,Rostov-on-Don,344068,Russia,"(UK Sanctions List Ref):MYA0044 (UK Statement of Reasons):The Myanmar Armed Forces have a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. JSC Gorizont is a Russian company which has been responsible for the supply and upkeep of aircraft for the Myanmar Armed Forces since the coup in February 2021. Therefore, JSC Gorizont has been and is involved in the supply of dual-use goods for the use of the Myanmar Armed Forces. (Website):www.gorizontrostov.ru (Email address):oao@gorizontrostov.ru (Type of entity):Private Business (Business Reg No):2196196584065",Entity,Primary name,,Myanmar,16/06/2022,16/06/2022,16/06/2022,15399 +JSC GTLK,,,,,,,ГТЛК,Cryillic,Russian,,,,,,,,,,bldg. #1,31a Leningradsky Avenue,,,,Moscow,125284,Russia,"(UK Sanctions List Ref):RUS1358 Associated entities: GTLK Europe, GTLK Asia, GTLK Middle East (UK Statement of Reasons):GTLK JSC is a Russian leasing company focused on, air, railway, and water transportation. They are a state-owned company directly controlled by the Government of the Russian Federation. GTLK JSC therefore obtains a benefit from the Government of Russia by being a Government of Russia-affiliated entity, and are therefore considered to be an involved person. (Phone number):(1) (495) 221-00-12 (2) 8-800-200-12-99 (Email address):gtlk@gtlk.ru",Entity,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15309 +JSC GTLK,,,,,,,ГТЛК,Cryillic,Russian,,,,,,,,,,Suite 100,73 Respublika St,,,Salekhard,Yamalo-Nenets Autonomous Area,62900B,Russia,"(UK Sanctions List Ref):RUS1358 Associated entities: GTLK Europe, GTLK Asia, GTLK Middle East (UK Statement of Reasons):GTLK JSC is a Russian leasing company focused on, air, railway, and water transportation. They are a state-owned company directly controlled by the Government of the Russian Federation. GTLK JSC therefore obtains a benefit from the Government of Russia by being a Government of Russia-affiliated entity, and are therefore considered to be an involved person. (Phone number):(1) (495) 221-00-12 (2) 8-800-200-12-99 (Email address):gtlk@gtlk.ru",Entity,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15309 +JSC INTEGRAL,,,,,,,,,,,,,,,,,,,121A,Kazintsa I.P. Str.,,,,Minsk,220108,Belarus,"(UK Sanctions List Ref):RUS0262 (UK Statement of Reasons):JSC Integral is a Belarusian defence SOE (state-owned enterprise) that produces semiconductors for military end-users, and supplies parts to both the Belarusian and Russian armed forces. Russian armed forces have been directly involved in the invasion of Ukraine. Belarusian armed forces have supported and enabled the Russian invasion of Ukraine, including by conducting joint military exercises with Russian armed forces which involved the deployment of Russian troops along the border of Belarus with Ukraine, which in turn directly contributed to Russia’s ability to both threaten and attack Ukraine, including from positions in Belarus. JSC Integral therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Phone number):+375-17-253-3562 (Website):https://integral.by/en (Email address):export@integral.by (Type of entity):Public Joint Stock Company (PJSC)",Entity,Primary name,,Russia,01/03/2022,01/03/2022,01/03/2022,14202 +JSC KALASHNIKOV CONCERN,,,,,,,Концерн Калашников,Cyrillic,Russian,,,,,,,,,,3B,Deryabina avenue,,,,Izhevsk,394018,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +JSC KALASHNIKOV CONCERN,,,,,,,Концерн Калашников,Cyrillic,Russian,,,,,,,,,,3,Derjabin Pr,,,,Izhevsk,426006,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +JSC KOLMAR GROUP,,,,,,,,,,,,,,,,,,,1st Krasnogvardeysky Drive,"21, building 1, Oko Tower, Floor 39",,,,Moscow,123112,Russia,"(UK Sanctions List Ref):RUS1488 (UK Statement of Reasons):JSC Kolmar Group is a Russian coal mining and processing company that is carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian extractives and energy sectors. Therefore, JSC Kolmar Group is or has been involved in obtaining a benefit from or supporting the Government of Russia. (Phone number):+7 495 662 3990 (Website):http://www.kolmar.ru/en/ (Email address):info@kolmar.ru (Type of entity):JSC (Subsidiaries):Kolmar Prodazhi I Logistika LLC Kolmar-Tour LLC SibProektGrupp LLC Kolmar Administration Company LLC JSC Mining and Processing Complex Inaglinsky JSC Mining and Processing Complex Denisovsky (Business Reg No):TIN 7714447012",Entity,Primary name,,Russia,29/06/2022,29/06/2022,29/06/2022,15425 +JSC MOSCOW INDUSTRIAL BANK,,,,,,,,,,,,,,,,,,,Ordzhonikidze Street 5,,,,,Moscow,115419,Russia,"(UK Sanctions List Ref):RUS1492 Organization Established Date 22 Nov 1990 (UK Statement of Reasons):JOINT STOCK COMPANY MOSCOW INDUSTRIAL BANK is a Russian commercial bank. It is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian financial services sector. (Website):http://www.minbank.ru (Type of entity):Financial Institution (Subsidiaries):Agropromyshlenny Kompleks Voronezhski OOO Anninskii Elevator OOO Auditkonsalt OOO Belinveststroi OOO Dve Stolitsy OOO Kontrakt OOO Ladoga OOO Nekommercheskaya Organizatsiya Fond Khimicheskoe Razoruzhenie I Konversiya Azovskaya Zernovaya Kompaniya OOO Ekspluatiruyushchaya Kompaniya Tsentr OOO (Business Reg No):SWIFT/BIC MINNRUMM BIK (RU) 044525600 Tax ID No. 7725039953 (Russia) Government Gazette Number 09317135 (Russia) Legal Entity Number 2534006SJ05GGKETEY75 (Russia) Registration Number 1027739179160 (Russia)",Entity,Primary name variation,,Russia,29/06/2022,29/06/2022,29/06/2022,15429 +JSC NEW OPPORTUNITIES,,,,,,,АО НОВЫЕ ВОЗМОЖНОСТИ,,,,,,,,,,,,"ROOM 4, OFFICE 48, FLOOR 4","D. 34, SH ENTHUSIASTS",PEROVO,,,Moscow,105118,Russia,"(UK Sanctions List Ref):RUS1489 (UK Statement of Reasons):JSC New Opportunities is a Russian Joint Stock Company established in March 2022 and registered in Moscow. In May 2022, companies offering digital services previously owned by PJSC Sberbank were sold to JSC New Opportunities. Therefore, JSC New Opportunities is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance, namely the Russian information, communications and digital technologies sector.",Entity,Primary name,,Russia,29/06/2022,29/06/2022,29/06/2022,15426 +JSC NPO IZHMASH,,,,,,,,,,,,,,,,,,,3B,Deryabina avenue,,,,Izhevsk,394018,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +JSC NPO IZHMASH,,,,,,,,,,,,,,,,,,,3,Derjabin Pr,,,,Izhevsk,426006,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +JSC RESEARCH AND PRODUCTION CORPORATION URALVAGONZAVOD,,,,,,,ОАО «Научно-производственная корпорация «УралВагонЗавод»,,,,,,,,,,,,B. Yakimanka,40,,,,Moscow,119049,Russia,"(UK Sanctions List Ref):RUS0241 (List of persons named in relation to financial and investment restrictions Group ID): 13122. (UK Statement of Reasons):UralVagonZavod (""UVZ"") is a wholly Russian-state owned company which produces military equipment, particularly tanks, for the Russian armed forces. It is one of the largest tank manufacturers in the world. As such, UVZ plays a key role in supporting the Government of Russia; it carries on business in a sector of strategic significance to the Government of Russia, and has contributed towards threatening the territorial integrity, sovereignty and independence of Ukraine. (Website):uralvagonzavod.ru (Type of entity):State owned Joint Stock Company",Entity,Primary name,,Russia,24/02/2022,24/02/2022,06/04/2022,14188 +JSC ROSSELKHOZBANK,,,,,,,,,,,,,,,,,,,"0 Bld. 2 Presnenskaya Emb. (Moscow City, IQ-quarter Complex)",,,,,Moscow,123112,Russia,(UK Sanctions List Ref):RUS1073 (UK Statement of Reasons):RUSSIAN AGRICULTURAL BANK is a Russian bank. RUSSIAN AGRICULTURAL BANK is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):(1) 7 (495) 777-11-00 (2) 7 (495) 787-7-787 (3) 8 (800) 100-0-100 (Website):(1) http://www.rshb.ru/en/ (2) https://www.rshb.ru/ (Email address):office@rshb.ru,Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,24/05/2022,15016 +JSC ROSSELKHOZBANK,,,,,,,,,,,,,,,,,,,"3, Gagarinsky Pereulok",,,,,Moscow,119034,Russia,(UK Sanctions List Ref):RUS1073 (UK Statement of Reasons):RUSSIAN AGRICULTURAL BANK is a Russian bank. RUSSIAN AGRICULTURAL BANK is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):(1) 7 (495) 777-11-00 (2) 7 (495) 787-7-787 (3) 8 (800) 100-0-100 (Website):(1) http://www.rshb.ru/en/ (2) https://www.rshb.ru/ (Email address):office@rshb.ru,Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,24/05/2022,15016 +JSC ROSSIYA AIRLINES,,,,,,,,,,,,,,,,,,,18/4 Pilotov St.,,,,,Saint Petersburg,196210,Russia,"(UK Sanctions List Ref):RUS1445 (UK Statement of Reasons):JSC Rossiya Airlines is one of Russia’s largest airlines and part of Aeroflot Group. It is obtaining a benefit from and supporting the Government of Russia by carrying on business in a sector of strategic significance, the transport sector, and as part of Aeroflot Group, it is also carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 (812) 6-333-999 (Website):www.rossiya-airlines.com (Type of entity):Joint Stock Company (Parent company):PJSC Aeroflot",Entity,Primary name,,Russia,19/05/2022,19/05/2022,19/05/2022,15396 +JSC RTI,,,,,,,AO РТИ,Cyrillic,Russian,,,,,,,,,,"8 Marta Street, 10, building 1",,,,,Moscow,127083,Russia,(UK Sanctions List Ref):RUS1354 (UK Statement of Reasons):Radiotechnical and Information Systems Concern is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia - the Russian defence sector. (Phone number):+7 (495) 788-00-07 (Website):https://www.aorti.ru (Email address):inbox@oaorti.ru (Business Reg No):INN: 7713269230,Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15300 +JSC TPE,,,,,,,,,,,,,,,,,,,Novyi Arbat str.,15,building 2,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0185 Names of Director(s). Management: Sergey Topor-Gilka (DG of OAO ""TPE"" and also of OOO TPE) (UK Statement of Reasons):Contracting party with Siemens Gas Turbine Technologies OOO, OAO ‘VO TPE’ purchased gas turbines declared to be destined for a power plant in Taman, Krasnodar region, Russian Federation, and as the contractor was responsible for the transfer of the gas turbines to OOO 'VO TPE' which in turn transferred them to be installed in Crimea. This contributes to establishing an independent power supply for Crimea and Sevastopol as a means of supporting their separation from Ukraine, and undermines the territorial integrity, sovereignty and independence of Ukraine. (Type of entity):Public Joint-Stock (Parent company):Rostech (Business Reg No):1067746244026 dated 27/07/1992. Tax ID: 7705713236",Entity,AKA,,Russia,04/08/2017,31/12/2020,14/02/2022,13524 +JSC T-PLATFORMS,,,,,,,АО Т-ПЛАТФОРМЫ,Cyrillic,Russian,,,,,,,,,,Ul. Krupskoi D.4,Korp.2,,,,Moscow,119311,Russia,"(UK Sanctions List Ref):RUS1403 Trade License No. 5087746658984 (UK Statement of Reasons):T-Platforms is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance to the Government of Russia, namely the information, communications and digital technologies sector. (Phone number):(1) 7(495) 9565414 (2) 7(499) 6500150 (3) 7(495) 9565415 (Website):t-platforms.ru (Business Reg No):Tax ID No. 7736588433 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15323 +JSC TRANSAVIAEXPORT AIRLINES,,,,,,,,,,,,,,,,,,,44 Zakharova Str.,,,,,Minsk,220034,Belarus,(UK Sanctions List Ref):BEL0123 (UK Statement of Reasons):Transaviaexport Airlines JSC is an involved person under The Republic of Belarus (Sanctions) (EU Exit) 2019 because it is or has been obtaining a benefit from or supporting the Government of Belarus by carrying on business as a Government of Belarus-affiliated entity. (Phone number):(1) + 375 17 3237805 (2) + 375 17 3238401 (Website):www.transaviaexport.com (Email address):tae@transaviaexport.com,Entity,Primary name variation,,Belarus,24/03/2022,24/03/2022,12/07/2022,14982 +JSC URAL AIRLINES,,,,,,,,,,,,,,,,,,,4 Sverdlov St,,,,,Ekaterinburg,,Russia,"(UK Sanctions List Ref):RUS1446 (UK Statement of Reasons):JSC Ural Airlines is one of Russia’s largest airlines. It is obtaining a benefit from and supporting the Government of Russia by carrying on business in a sector of strategic significance, namely the transport sector. (Phone number):+7 (499) 920 22 52 (Website):https://www.uralairlines.ru/en/ (Type of entity):Joint Stock Company (Parent company):Ural Wings",Entity,Primary name,,Russia,19/05/2022,19/05/2022,19/05/2022,15397 +JSC VAD,,,,,,,,,,,,,,,,,,,,,,133 Chernyshevskogo Street,Vologda,Vologodskaya Oblast,160019,Russia,"(UK Sanctions List Ref):RUS0167 (UK Statement of Reasons):CJSC VAD is the main contractor for the construction of the Tavrida Highway in Crimea, the road over the Kerch Bridge and the access roads to it. Tavrida Highway will provide transportation access to Crimea through a system of newly constructed roadways that serve as a primary connection to the Kerch Bridge. Therefore CJSC VAD is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Website):www.zaovad.com (Email address):office@zaovad.com (Type of entity):Leading corporate group engaged in construction works for the oil and gas industry. Involved in trunk pipeline construction, offshore construction, gasification of constituent entities to the RF. (Business Reg No):1037804006811 (Russia). Tax ID 7802059185",Entity,Primary name,,Russia,31/07/2018,31/12/2020,16/09/2022,13705 +JSC VAD,,,,,,,,,,,,,,,,,,,,,122 Grazhdanskiy Prospect,Suite 5,Liter A,St Petersburg,195267,Russia,"(UK Sanctions List Ref):RUS0167 (UK Statement of Reasons):CJSC VAD is the main contractor for the construction of the Tavrida Highway in Crimea, the road over the Kerch Bridge and the access roads to it. Tavrida Highway will provide transportation access to Crimea through a system of newly constructed roadways that serve as a primary connection to the Kerch Bridge. Therefore CJSC VAD is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Website):www.zaovad.com (Email address):office@zaovad.com (Type of entity):Leading corporate group engaged in construction works for the oil and gas industry. Involved in trunk pipeline construction, offshore construction, gasification of constituent entities to the RF. (Business Reg No):1037804006811 (Russia). Tax ID 7802059185",Entity,Primary name,,Russia,31/07/2018,31/12/2020,16/09/2022,13705 +JSC ZALIV SHIPYARD,,,,,,,,,,,,,,,,,,,,,,,,"Location of entity headquarters, ""Republic of Crimea",,,"(UK Sanctions List Ref):RUS0179 (UK Statement of Reasons):JSC Zaliv Shipyard actively participated in the construction of new railway approaches to the Kerch Bridge, connecting Russian to the illegally annexed Crimean peninsula. Therefore, it is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Phone number):(1) +7 (36561) 33055 (2) +7 (36561) 33501 (3) +7 (36561) 33527 (4) +7 (36561) 34002 (5) +7 (36561) 37858 (6) +7 (861) 2033829 (7) +7 (861) 2033896 (8) + (812) 612-06-12 (Email address):(1) press@zalivkerch.com (2) sess@zalivkerch.com (3) uzis@zalivkerch.com (Type of entity):Shipyard (joint stock company)",Entity,Primary name,,Russia,31/07/2018,31/12/2020,16/09/2022,13702 +JSC ZALIV SHIPYARD,,,,,,,,,,,,,,,,,,,,,4,Tankistov Street,Kerch,The Autonomous Republic of Crimea and the city of Sevastopol,298310,Ukraine,"(UK Sanctions List Ref):RUS0179 (UK Statement of Reasons):JSC Zaliv Shipyard actively participated in the construction of new railway approaches to the Kerch Bridge, connecting Russian to the illegally annexed Crimean peninsula. Therefore, it is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Phone number):(1) +7 (36561) 33055 (2) +7 (36561) 33501 (3) +7 (36561) 33527 (4) +7 (36561) 34002 (5) +7 (36561) 37858 (6) +7 (861) 2033829 (7) +7 (861) 2033896 (8) + (812) 612-06-12 (Email address):(1) press@zalivkerch.com (2) sess@zalivkerch.com (3) uzis@zalivkerch.com (Type of entity):Shipyard (joint stock company)",Entity,Primary name,,Russia,31/07/2018,31/12/2020,16/09/2022,13702 +JSC ZELENODOLSK SHIPYARD,,,,,,,,,,,,,,,,,,,"5, Zavodskaya Str",Zelenodolsk,,,,Republic of Tatarstan,422546,Russia,"(UK Sanctions List Ref):RUS1041 (UK Statement of Reasons):JSC Zelenodolsk Shipyard is a Russian shipbuilding enterprise that has constructed more than 1500 sea- and river-going ships and vessels . JSC Zelenodolsk Shipyard is therefore carrying on business in a sector of strategic significance to the Government of Russia – the Russian construction sector and the Russian transport sector. JSC Zelenodolsk Shipyard is thereby obtaining a benefit from or supporting the Government of Russia. (Phone number):8 (843‒71) 5‒76‒10",Entity,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14978 +JTJ,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +JU JAK BONG 5,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0096 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V CHON MYONG 1 conducted a ship-to-ship transfer, likely for oil, in late December 2017. Listed as asset of Chonmyong Shipping Co (OFSI ID: 13627, UN Ref KPe.056) (IMO number):8712362 (Current owners):Chonmyong Shipping Co (Flag of ship):North Korea (Previous flags):Togo (Type of ship):Oil tanker (Tonnage of ship):1220 (Length of ship):82 (Year built):1987",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13647 +JUA,,,,,,,,,,,,,,,,,,,Lalpura,,,,,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AQD0056 (UN Ref):QDe.152 Splinter group of the Tehrik-e Taliban Pakistan (QDe.132). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Formed in Aug. 2014 in Mohmand Agency, Pakistan. Operates from Nangarhar Province, Afghanistan and Pakistan-Afghanistan border region. Banned in Pakistan on 21 Nov. 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6114258",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,07/07/2017,06/07/2017,31/12/2020,13491 +JUA,,,,,,,,,,,,,,,,,,,Mohmand Agency,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0056 (UN Ref):QDe.152 Splinter group of the Tehrik-e Taliban Pakistan (QDe.132). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Formed in Aug. 2014 in Mohmand Agency, Pakistan. Operates from Nangarhar Province, Afghanistan and Pakistan-Afghanistan border region. Banned in Pakistan on 21 Nov. 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6114258",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,07/07/2017,06/07/2017,31/12/2020,13491 +JUAYTHINI,Husayn,Muhammad,Husayn,,,,,,,03/05/1977,"Nuseirat Refugee Camp, Gaza Strip",Palestinian Territories,Palestinian,0363464,Issued by Palestinian Authority.,,,,,,,,,Gaza Strip,,Palestinian Territories,"(UK Sanctions List Ref):AQD0196 (UN Ref):QDi.394 Link between Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), leader Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299), and armed groups in Gaza. Was using money to build an ISIL presence in Gaza. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5943053",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,12/01/2022,13353 +JUAYTHINI,HUSAYN,,,,,,,,,03/05/1977,"Nuseirat Refugee Camp, Gaza Strip",Palestinian Territories,Palestinian,0363464,Issued by Palestinian Authority.,,,,,,,,,Gaza Strip,,Palestinian Territories,"(UK Sanctions List Ref):AQD0196 (UN Ref):QDi.394 Link between Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), leader Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299), and armed groups in Gaza. Was using money to build an ISIL presence in Gaza. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5943053",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,12/01/2022,13353 +JUD,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +JUHAN,Abdelrahman,Mouhamad Zafir,al Dabissi,,,,,,,04/12/1971,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +JUHAN,Abdelrahman,Mouhamad Zafir,al Dabissi,,,,,,,00/00/1977,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +JUHANI,Abdelrahman,Mouhamad Zafir,al Dabissi,,,,,,,04/12/1971,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +JUHANI,Abdelrahman,Mouhamad Zafir,al Dabissi,,,,,,,00/00/1977,Kharj,Saudi Arabia,Saudi Arabia,F508591,,1027508157,Saudi Arabia,,,,,,,,,,"(UK Sanctions List Ref):AQD0100 (UN Ref):QDi.327 A member and regional commander of Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137)and a facilitator of foreign recruits for that group. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,16/02/2022,13084 +JUJAKBONG5,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0096 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V CHON MYONG 1 conducted a ship-to-ship transfer, likely for oil, in late December 2017. Listed as asset of Chonmyong Shipping Co (OFSI ID: 13627, UN Ref KPe.056) (IMO number):8712362 (Current owners):Chonmyong Shipping Co (Flag of ship):North Korea (Previous flags):Togo (Type of ship):Oil tanker (Tonnage of ship):1220 (Length of ship):82 (Year built):1987",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13647 +JUJAKBONH-5,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0096 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V CHON MYONG 1 conducted a ship-to-ship transfer, likely for oil, in late December 2017. Listed as asset of Chonmyong Shipping Co (OFSI ID: 13627, UN Ref KPe.056) (IMO number):8712362 (Current owners):Chonmyong Shipping Co (Flag of ship):North Korea (Previous flags):Togo (Type of ship):Oil tanker (Tonnage of ship):1220 (Length of ship):82 (Year built):1987",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13647 +JULKIPLI,SALIM Y SALAMUDDIN,,,,,,,,,20/06/1967,"Tulay, Jolo Sulu",Philippines,Philippines,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0309 (UN Ref):QDi.114 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/09/2003,09/09/2003,31/12/2020,7854 +JUM'A,Sameer,,,,,,,,,00/00/1962,,,Syria,,,,,"Deputy to the Vice- President, Faruq Al Shar, head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad",,,,,,,,,"(UK Sanctions List Ref):SYR0219 Linked to Muhammad Nasif Khayrbik and Bashar al-Asad (UK Statement of Reasons):For almost 20 years he has been head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad (and officially deputy to the Vice- President, Faruq Al Shar'). Samir Joumaa's closeness to Bashar al-Assad and Muhammad Nasif Khayrbik means that he is implicated in the policy of repression conducted by the regime against its opponents (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12731 +JUM'A,Samir,,,,,,,,,00/00/1962,,,Syria,,,,,"Deputy to the Vice- President, Faruq Al Shar, head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad",,,,,,,,,"(UK Sanctions List Ref):SYR0219 Linked to Muhammad Nasif Khayrbik and Bashar al-Asad (UK Statement of Reasons):For almost 20 years he has been head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad (and officially deputy to the Vice- President, Faruq Al Shar'). Samir Joumaa's closeness to Bashar al-Assad and Muhammad Nasif Khayrbik means that he is implicated in the policy of repression conducted by the regime against its opponents (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12731 +JUMAA,Sameer,,,,,,,,,00/00/1962,,,Syria,,,,,"Deputy to the Vice- President, Faruq Al Shar, head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad",,,,,,,,,"(UK Sanctions List Ref):SYR0219 Linked to Muhammad Nasif Khayrbik and Bashar al-Asad (UK Statement of Reasons):For almost 20 years he has been head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad (and officially deputy to the Vice- President, Faruq Al Shar'). Samir Joumaa's closeness to Bashar al-Assad and Muhammad Nasif Khayrbik means that he is implicated in the policy of repression conducted by the regime against its opponents (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12731 +JUMAA,Samir,,,,,,,,,00/00/1962,,,Syria,,,,,"Deputy to the Vice- President, Faruq Al Shar, head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad",,,,,,,,,"(UK Sanctions List Ref):SYR0219 Linked to Muhammad Nasif Khayrbik and Bashar al-Asad (UK Statement of Reasons):For almost 20 years he has been head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad (and officially deputy to the Vice- President, Faruq Al Shar'). Samir Joumaa's closeness to Bashar al-Assad and Muhammad Nasif Khayrbik means that he is implicated in the policy of repression conducted by the regime against its opponents (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12731 +JUND AL AQSA,,,,,,,,,,,,,,,,,,,,,,,,Idlib Governorate,,Syria,"(UK Sanctions List Ref):AQD0061 (UN Ref):QDe.156 Associated with the Al Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116596 Also suspected to be in Hama Governorate, Syrian Arab Republic",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13509 +JUND AL AQSA,,,,,,,,,,,,,,,,,,,,,,,,Hama Governorate,,Syria,"(UK Sanctions List Ref):AQD0061 (UN Ref):QDe.156 Associated with the Al Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116596 Also suspected to be in Hama Governorate, Syrian Arab Republic",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13509 +JUND AL KHALIFA,,,,,,,,,,,,,,,,,,,,,,,,Kabylie region,,Algeria,(UK Sanctions List Ref):AQD0062 (UN Ref):QDe.151 Emerged on 13 Sep. 2014. Most known for its abduction and subsequent beheading of French national Herve Gourdel. Claimed responsibility for attacking police and gendarmes in Algeria and continued planning future attacks. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5919300,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13305 +JUND AL KHILAFAH,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0376 (UN Ref):QDe.167 Formed in November 2014. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). (Type of entity):Terrorist organisation",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/01/2022,29/12/2021,12/01/2022,14171 +JUND AL-ISLAM,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0032 (UN Ref):QDe.098 The founder is Najmuddin Faraj Ahmad (QDi.226). Associated with Al-Qaida in Iraq (QDe.115). Located and primarily active in northern Iraq but maintains a presence in western and central Iraq. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282119,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2003,24/02/2003,31/12/2020,7021 +JUND AL-KHALIFA FI ARD AL-JAZAYER,,,,,,,,,,,,,,,,,,,,,,,,Kabylie region,,Algeria,(UK Sanctions List Ref):AQD0062 (UN Ref):QDe.151 Emerged on 13 Sep. 2014. Most known for its abduction and subsequent beheading of French national Herve Gourdel. Claimed responsibility for attacking police and gendarmes in Algeria and continued planning future attacks. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5919300,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13305 +JUND AL-KHILAFA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0376 (UN Ref):QDe.167 Formed in November 2014. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). (Type of entity):Terrorist organisation",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/01/2022,29/12/2021,12/01/2022,14171 +JUND AL-KHILAFAH FI ARD AL-JAZA'IR,,,,,,,,,,,,,,,,,,,,,,,,Kabylie region,,Algeria,(UK Sanctions List Ref):AQD0062 (UN Ref):QDe.151 Emerged on 13 Sep. 2014. Most known for its abduction and subsequent beheading of French national Herve Gourdel. Claimed responsibility for attacking police and gendarmes in Algeria and continued planning future attacks. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5919300,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13305 +JUND AL-KHILAFAH FI TUNIS,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0376 (UN Ref):QDe.167 Formed in November 2014. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). (Type of entity):Terrorist organisation",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/01/2022,29/12/2021,12/01/2022,14171 +JUND AL-KHILAFAH IN ALGERIA,,,,,,,,,,,,,,,,,,,,,,,,Kabylie region,,Algeria,(UK Sanctions List Ref):AQD0062 (UN Ref):QDe.151 Emerged on 13 Sep. 2014. Most known for its abduction and subsequent beheading of French national Herve Gourdel. Claimed responsibility for attacking police and gendarmes in Algeria and continued planning future attacks. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5919300,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13305 +JUND AL-KHILAFAH IN TUNISIA (JAK-T),,,,,,,جند الخلافة في تونس,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0376 (UN Ref):QDe.167 Formed in November 2014. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). (Type of entity):Terrorist organisation",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,04/01/2022,29/12/2021,12/01/2022,14171 +JUNDULLAH,Abdul,Heq,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +JUNDULLAH,Abdul,Heq,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +JUNG JONG,KIM,,,,,,,,,07/11/1966,,,North Korea,(1) 199421147. (2) 381110042. (3) 563210184,(1) - . (2) Expired 25 Jan.2016 (3) Expires 18 Jun.2018.,,,Tanchon Commercial Bank Representative,,,,,,,,,(UK Sanctions List Ref):DPR0228 (UN Ref):KPi.021 Served as the Tanchon Commercial Bank representative in Vietnam.,Individual,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,19/01/2021,13332 +JUNJUAKA,Abdullah,,,,,,,,,00/00/1965,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +JUNJUAKA,Abdullah,,,,,,,,,01/01/1964,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +JUNJUN,,,,,,,,,,04/10/1972,"Sitio Banga Maiti, Barangay Tranghawan, Lambunao, Iloilo",Philippines,Philippines,(1) MM611523 (2) EE947317 (3) P421967,(1) Philippines number (2004) (2) Philippines number 2000-2001 (3) Philippines number (1995-1997),,,,10th Avenue,,,,,Caloocan City,,Philippines,(UK Sanctions List Ref):AQD0296 (UN Ref):QDi.247 Spiritual leader of the Rajah Solaiman Movement (QDe.128). Associated with Khadafi Abubakar Janjalani (deceased). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10667 +KA PA SA,,,,,,,,,,,,,,,,,,,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0032 (UK Statement of Reasons):The Myanmar military seized power from civilian leaders on 1 February in a coup d’état and established a military junta. The Myanmar security forces have committed serious human rights violations since 1 February 2021 and are responsible for the repression of the civilian population. The Directorate for Defence Industries (DDI) is a state-owned enterprise which operates under the Ministry of Defence (MOD). There are reasonable grounds to suspect that DDI is or has been involved in undermining democracy, the rule of law or good governance in Myanmar and the repression of the civilian population in Myanmar by its involvement in the supply to Myanmar of goods or technology which could contribute to a serious human rights violation or abuse. Further, there are reasonable grounds to suspect that DDI, as a state-owned enterprise subservient to the MOD, is acting on behalf or at the direction of the Minister of Defence, General Mya Tun Oo, who has been involved in undermining democracy, the rule of law or good governance in Myanmar and the repression of the civilian population in Myanmar, and is designated by the UK’s Myanmar sanctions regime. (Type of entity):Public Company",Entity,AKA,,Myanmar,10/12/2021,10/12/2021,11/11/2022,14165 +KABAEVA,Alina,Maratovna,,,,,Әлинә Марат кызы Кабаева,,,12/05/1983,Tashkent,Uzbekhistan,,,,,,Chair of the Board of Directors of National Media Group,,,,,,,,,"(UK Sanctions List Ref):RUS1462 (UK Statement of Reasons):Alina KABAEVA is the Chair of the Board of Directors at Russia's National Media Group, which actively promotes Russian propaganda regarding the invasion of Ukraine. Accordingly, KABAEVA is involved in destabilising Ukraine as she herself or through her association with NMG is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/05/2022,13/05/2022,13/05/2022,15391 +KABAYEVA,Alina,Maratovna,,,,,,,,12/05/1983,Tashkent,Uzbekhistan,,,,,,Chair of the Board of Directors of National Media Group,,,,,,,,,"(UK Sanctions List Ref):RUS1462 (UK Statement of Reasons):Alina KABAEVA is the Chair of the Board of Directors at Russia's National Media Group, which actively promotes Russian propaganda regarding the invasion of Ukraine. Accordingly, KABAEVA is involved in destabilising Ukraine as she herself or through her association with NMG is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/05/2022,13/05/2022,13/05/2022,15391 +KABO,Ayman,,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,Badamadow,Lower Juba Region,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +KABO,Ayman,,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Kenya,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +KABO,Ayman,,,,,,,,,00/00/1973,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +KABO,Ayman,,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +KABO,Ayman,,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,,Kenya/Somalia border,,Kenya,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +KABO,Ayman,,,,,,,,,00/00/1983,,Kenya,,,,,,"Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia",,,,,Badamadow,Lower Juba Region,,Somalia,"(UK Sanctions List Ref):SOM0018 (UN Ref):SOi.019 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Maalim Ayman is the founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia. Ayman helped with preparations for the January 5, 2020 attack on Camp Simba in Lamu County, Kenya.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14066 +KABYSHEV,Sergey,Vladimirovich,,,,,Кабышев Сергей Владимирович,,,04/09/1963,Saratov,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0403 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14348 +KACHANAVA,Natalia,Ivanovna,,,,,,,,25/09/1960,"Polotsk, Vitebsk/Viciebsk Oblast",Former USSR (now Belarus),Belarus,,,,,Chair of the Council of the Republic of the National Assembly of Belarus,,,,,,,,,(UK Sanctions List Ref):BEL0080 (UK Statement of Reasons):Natalia Kochanova is responsible for overseeing the organisation of the flawed Presidential elections on 9 August 2020 and has defended the authorities’ violent and repressive response to the subsequent peaceful demonstrations. Her leadership role is also responsible for supporting the decisions of the President in the field of domestic policy. (Gender):Female,Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14028 +KACHANAVA,Natallia,Ivanauna,,,,,,,,25/09/1960,"Polotsk, Vitebsk/Viciebsk Oblast",Former USSR (now Belarus),Belarus,,,,,Chair of the Council of the Republic of the National Assembly of Belarus,,,,,,,,,(UK Sanctions List Ref):BEL0080 (UK Statement of Reasons):Natalia Kochanova is responsible for overseeing the organisation of the flawed Presidential elections on 9 August 2020 and has defended the authorities’ violent and repressive response to the subsequent peaceful demonstrations. Her leadership role is also responsible for supporting the decisions of the President in the field of domestic policy. (Gender):Female,Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14028 +KACHKAEV,Pavel,Rurikovich,,,,,Павел Рюрикович Качкаев,,,04/10/1951,Chernigovka,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0418 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14363 +KACUBO,Svetlana,Petrovna,,,,,,,,06/08/1959,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0039 (UK Statement of Reasons):Sviatlana Katsuba is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13964 +KACUBO,Sviatlana,Piatrouna,,,,,,,,06/08/1959,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0039 (UK Statement of Reasons):Sviatlana Katsuba is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13964 +KADDOUR,Khaled,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0122 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the telecommunications, oil and plastic industry sectors and close business relations with Maher Al-Assad. He benefits from and provides support to the Syrian regime, through his business activities and association with persons who support and benefit from the regime. In particular, he is an associate of Maher Al-Assad, including through his business activities. (Gender):Male",Individual,Primary name variation,,Syria,27/01/2015,31/12/2020,13/05/2022,12015 +KADDOUR,Khalid,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0122 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the telecommunications, oil and plastic industry sectors and close business relations with Maher Al-Assad. He benefits from and provides support to the Syrian regime, through his business activities and association with persons who support and benefit from the regime. In particular, he is an associate of Maher Al-Assad, including through his business activities. (Gender):Male",Individual,Primary name variation,,Syria,27/01/2015,31/12/2020,13/05/2022,12015 +KADENKOV,Dmitry,Mikhailovich,,,,,Каденков Дмитрий Михайлович,,,03/05/1972,Penza,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0405 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14350 +KADYROV,Ramzan,Akhmadovitch,,,,,,,,05/10/1976,"Tsentaroy, Chechnya",Russia,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0109 (UK Statement of Reasons):President of the Republic of Chechnya. Kadyrov made statements in support of the illegal annexation of Crimea and in support of the armed insurgency in Ukraine. He stated inter alia on 14 June 2014 that he ‘will do anything to help revive Crimea’. In that context, he was awarded the medal for ‘the liberation of Crimea’ by the Acting Head of the Autonomous Republic of Crimea for the support he provided to the unlawful annexation of Crimea. In addition, on 1 June 2014 he expressed his readiness to send 74 000 Chechen volunteers to Ukraine if requested to do so. On 26 December 2021, he spoke in support of the invasion and annexation of Ukraine. (Gender):Male",Individual,Primary name,,Russia,25/07/2014,31/12/2020,16/09/2022,13042 +KADYROV,German,Rustemovich,,,,,КАДЫРОВ Герман Рустемович,Cyrillic,Russian,15/10/1965,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1247 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15199 +KAFAN,Ahmad,,,,,,,,,,,,Syria,,,,,Police officer at Idlib central prison,,,,,,,,,(UK Sanctions List Ref):SYR0006 Worked with listed individuals: Bassam al-Misri and Bassel Bilal. (UK Statement of Reasons):Police officer at Idlib central prison; has taken part directly in acts of torture of opponents held in Idlib central prison.,Individual,Primary name,,Syria,24/07/2012,31/12/2020,31/12/2020,12722 +KAFAN,Ahmed,,,,,,,,,,,,Syria,,,,,Police officer at Idlib central prison,,,,,,,,,(UK Sanctions List Ref):SYR0006 Worked with listed individuals: Bassam al-Misri and Bassel Bilal. (UK Statement of Reasons):Police officer at Idlib central prison; has taken part directly in acts of torture of opponents held in Idlib central prison.,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12722 +KAHWA,,,,,,Chief,,,,20/08/1973,Bunia,Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0045 (UN Ref):CDi.009 Placed in prison in Bunia in April 2005 for sabotage of the Ituri peace process. Arrested by Congolese authorities in October 2005, acquitted by the Court of Appeal in Kisangani, subsequently transferred to the judicial authorities in Kinshasa on new charges of crimes against humanity, war crimes, murder, aggravated assault and battery. In August 2014, a DRC military court in Kisangani convicted him of war crimes and crimes against humanity, sentenced him to nine years in prison, and ordered him to pay approximately $85,000 to his victims. He served his sentence and resides in Uganda as of May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272933. Address country Uganda (as of May 2016). (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8708 +KAHWA,Mandro,Panga,,,,,,,,20/08/1973,Bunia,Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0045 (UN Ref):CDi.009 Placed in prison in Bunia in April 2005 for sabotage of the Ituri peace process. Arrested by Congolese authorities in October 2005, acquitted by the Court of Appeal in Kisangani, subsequently transferred to the judicial authorities in Kinshasa on new charges of crimes against humanity, war crimes, murder, aggravated assault and battery. In August 2014, a DRC military court in Kisangani convicted him of war crimes and crimes against humanity, sentenced him to nine years in prison, and ordered him to pay approximately $85,000 to his victims. He served his sentence and resides in Uganda as of May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272933. Address country Uganda (as of May 2016). (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8708 +KAINA,Innocent,,,,,Colonel,,,,00/11/1973,"Bunagana, Rutshuru territory",Congo (Democratic Republic),,,,,,Former M23 Deputy Commander,,,,,,,,Uganda,(UK Sanctions List Ref):DRC0037 (UN Ref):CDi.004 Became M23 deputy commander after the flight of Bosco Taganda’s faction to Rwanda in March 2013. Fled to Uganda in November 2013. In Uganda as of early 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776081 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,28/02/2013,30/11/2012,31/12/2020,12830 +KAINA,INNOCENT,,,,,,,,,00/11/1973,"Bunagana, Rutshuru territory",Congo (Democratic Republic),,,,,,Former M23 Deputy Commander,,,,,,,,Uganda,(UK Sanctions List Ref):DRC0037 (UN Ref):CDi.004 Became M23 deputy commander after the flight of Bosco Taganda’s faction to Rwanda in March 2013. Fled to Uganda in November 2013. In Uganda as of early 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776081 (Gender):Male,Individual,Primary name,,Democratic Republic of the Congo,28/02/2013,30/11/2012,31/12/2020,12830 +KAJAJU,Mzee,,,,,,,,,00/00/1977,,,Uganda,,,,,Overall leader of the Allied Democratic Forces (ADF) (CDe.001),,,,Kajuju camp of Medina II,Beni territory,North Kivu,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0059 (UN Ref):CDi.036 Longtime member of the ADF (CDe.001), Baluku used to be the second in command to ADF founder Jamil Mukulu (CDi.015) until he took over after FARDC military operation Sukola I in 2014.",Individual,AKA,Low quality,Democratic Republic of the Congo,07/02/2020,06/02/2020,31/12/2020,13813 +KAKAZADA,,,,,,,,,,00/00/1968,"Zurmat District, Paktia Province",Afghanistan,Afghanistan,D 000952,Issued on 7 Jan. 1999. Issued in Afghanistan.,,,"Consul General, Taliban Consulate General, Karachi, Pakistan",,,,,,,,,"(UK Sanctions List Ref):AFG0105 (UN Ref):TAi.137 Taliban member responsible for Ghazni Province, Afghanistan, as of May 2007. Head of an intelligence network. Believed to be in Afghanistan/ Pakistan border area. Belongs to Suleimankheil tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7219 +KAKAZADA,RAHMATULLAH,,,,,(1) Maulavi (2) Mullah,رحمت الله کاکا زاده,,,00/00/1968,"Zurmat District, Paktia Province",Afghanistan,Afghanistan,D 000952,Issued on 7 Jan. 1999. Issued in Afghanistan.,,,"Consul General, Taliban Consulate General, Karachi, Pakistan",,,,,,,,,"(UK Sanctions List Ref):AFG0105 (UN Ref):TAi.137 Taliban member responsible for Ghazni Province, Afghanistan, as of May 2007. Head of an intelligence network. Believed to be in Afghanistan/ Pakistan border area. Belongs to Suleimankheil tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7219 +KAKIDZIANOV,Ihor,Yevhenovych,,,,,,,,25/07/1980,Makivka (Donetsk Oblast),,Ukraine,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0110 (UK Statement of Reasons):One of the former leaders of armed forces of the self-proclaimed ""Donetsk People's Repulic"". The aim of the forces is to ""protect the people of Donetsk People's Republic"" according to Pushylin, one of the leaders of the ""Donetsk People's Republic. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12972 +KAKIDZIANOV,Ihor,Yevhenovych,,,,,,,,00/00/1980,Makivka (Donetsk Oblast),,Ukraine,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0110 (UK Statement of Reasons):One of the former leaders of armed forces of the self-proclaimed ""Donetsk People's Repulic"". The aim of the forces is to ""protect the people of Donetsk People's Republic"" according to Pushylin, one of the leaders of the ""Donetsk People's Republic. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12972 +KAKIDZYANOV,Igor,Evgenevich,,,,,,,,25/07/1980,Makivka (Donetsk Oblast),,Ukraine,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0110 (UK Statement of Reasons):One of the former leaders of armed forces of the self-proclaimed ""Donetsk People's Repulic"". The aim of the forces is to ""protect the people of Donetsk People's Republic"" according to Pushylin, one of the leaders of the ""Donetsk People's Republic. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name,,Russia,12/05/2014,31/12/2020,16/09/2022,12972 +KAKIDZYANOV,Igor,Evgenevich,,,,,,,,00/00/1980,Makivka (Donetsk Oblast),,Ukraine,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0110 (UK Statement of Reasons):One of the former leaders of armed forces of the self-proclaimed ""Donetsk People's Repulic"". The aim of the forces is to ""protect the people of Donetsk People's Republic"" according to Pushylin, one of the leaders of the ""Donetsk People's Republic. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name,,Russia,12/05/2014,31/12/2020,16/09/2022,12972 +KAKORERE,Frank,,,,,,,,,,,,Congo (Democratic Republic),,,,,FARDC General,,,,,,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0031 (UN Ref):CDi.002 Left the CNDP in January 2008. As of June 2011, resides in Kinshasa. Since 2010, Kakolele has been involved in activities apparently on behalf of the DRC government’s Programme de Stabilisation et Reconstruction des Zones Sortant des Conflits Armés (STAREC), including participation in a STAREC mission to Goma and Beni in March 2011. DRC authorities arrested him in December 2013 in Beni, North Kivu Province, for allegedly blocking the DDR process. He left the DRC and lived in Kenya for some time, before being called back by the DRC Government to assist them with the situation in the Territory of Beni. He was arrested in October 2015 in the area of Mambasa for allegedly supporting a Mai Mai group, but no charges were brought and as of June 2016, he lived in Kinshasa. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776078 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8732 +KAKWAVU,Jerome,,,,,,Jérôme Kakwavu,,,,Goma,Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0043 (UN Ref):CDi.005 Given the rank of General in the FARDC in December 2004.As of June 2011, detained in Makala Prison in Kinshasa. As of 25 March 2011, the High Military Court in Kinshasa opened a trial against Kakwavu for war crimes. In November 2014, convicted by a DRC military court to ten years in prison for rape, murder, and torture. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776083",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8707 +KAKWAVU BUKANDE,Jerome,,,,,,JÉRÔME KAKWAVU BUKANDE,,,,Goma,Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0043 (UN Ref):CDi.005 Given the rank of General in the FARDC in December 2004.As of June 2011, detained in Makala Prison in Kinshasa. As of 25 March 2011, the High Military Court in Kinshasa opened a trial against Kakwavu for war crimes. In November 2014, convicted by a DRC military court to ten years in prison for rape, murder, and torture. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776083",Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8707 +KALABAYEVA,Valeriya,,,,,,КАЛАБАЕВА Валерия,Cyrillic,Russian,01/10/1997,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1507 (UK Statement of Reasons):Valeriya KALABAYEVA has been involved in providing support for and promoting actions and policies that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being involved in spreading disinformation and promoting Russian actions in Ukraine.  (Gender):Female",Individual,Primary name,,Russia,05/07/2022,05/07/2022,05/07/2022,15445 +KALACH,Uladzimir,Viktaravich,,,,,"КАЛАЧ, Владимир Викторович",,,,,,Belarus,,,,,"(1) Former Deputy Head, State Security Committee, Belarus (2) Currently Aide to the President – Inspector for Minsk Oblast.",,,,,,,,,"(UK Sanctions List Ref):BEL0030 (UK Statement of Reasons):Major General Kalach was a Deputy Chairman of the State Security Committee (KGB) of Belarus until 29 July 2021. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13960 +KALACH,Vladimir,Viktorovich,,,,,"КАЛАЧ, Уладзiмiр Вiктаравiч",,,,,,Belarus,,,,,"(1) Former Deputy Head, State Security Committee, Belarus (2) Currently Aide to the President – Inspector for Minsk Oblast.",,,,,,,,,"(UK Sanctions List Ref):BEL0030 (UK Statement of Reasons):Major General Kalach was a Deputy Chairman of the State Security Committee (KGB) of Belarus until 29 July 2021. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13960 +KALAD,Balkasam,,,,,,,,,22/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Balkasam,,,,,,,,,26/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Balkasam,,,,,,,,,,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Balkasam,,,,,,,,,26/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Balkasam,,,,,,,,,28/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Balkasam,,,,,,,,,31/12/1979,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Balkasam,,,,,,,,,10/06/1982,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Bekasam,,,,,,,,,22/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Bekasam,,,,,,,,,26/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Bekasam,,,,,,,,,,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Bekasam,,,,,,,,,26/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Bekasam,,,,,,,,,28/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Bekasam,,,,,,,,,31/12/1979,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Bekasam,,,,,,,,,10/06/1982,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Belkasam,,,,,,,,,22/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Belkasam,,,,,,,,,26/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Belkasam,,,,,,,,,,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Belkasam,,,,,,,,,26/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Belkasam,,,,,,,,,28/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Belkasam,,,,,,,,,31/12/1979,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALAD,Belkasam,,,,,,,,,10/06/1982,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +KALA-ELECTRIC,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0155 (UN Ref):IRe.032 Provider for PFEP - Natanz. [Old Reference # E.37.A.3],Entity,Primary name,,Iran (Nuclear),09/02/2007,23/12/2006,31/12/2020,8986 +KALAF,Fuad,Mohamed,,,,,,,,,,,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +KALAF,Fuad,Mohamed,,,,,,,,,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +KALAF,Fuad,Mohammed,,,,,,,,,,,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +KALAF,Fuad,Mohammed,,,,,,,,,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +KALASHNIK,Sergey,Viktorovich,,,,,Сергей Викторович Калашник),,,31/03/1978,Kostroma,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0975 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14926 +KALASHNIKOV,Leonid,Ivanovich,,,,,Леонид Иванович КАЛАШНИКОВ,,,06/08/1960,Stepnoy Dvorets,Russia,Russia,,,,,First Deputy Chairman of the Committee on Foreign Affairs of the State Durma,,,,,,,,,"(UK Sanctions List Ref):RUS0111 (UK Statement of Reasons):Former First deputy Chairman of the Committee on Foreign Affairs of the State Duma. On 20 March 2014 he voted in favour of the draft Federal Constitutional Law 'on the acceptance into the Russian Federation of the Republic of Crimea and the formation within the Russian Federation of new federal subjects - the republic of Crimea and the City of Federal Status Sevastopol’. Kalashnikov is one of the Russian lawmakers from the Communist Party (KPRF) who, in January 2022, submitted to the State Duma for consideration a draft resolution  that proposes sending a formal appeal to President Vladimir Putin “on the need to recognize the Donetsk People’s Republic and the Luhansk People’s Republic.” The resolution, if adopted, would undermine the territorial integrity of Ukraine. Chairman of the Russian State Duma Committee for CIS Affairs, Eurasian Intergration and Relations with Compatrios. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,16/09/2022,13107 +KALASHNIKOV CONCERN,,,,,,,,,,,,,,,,,,,3B,Deryabina avenue,,,,Izhevsk,394018,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +KALASHNIKOV CONCERN,,,,,,,,,,,,,,,,,,,3,Derjabin Pr,,,,Izhevsk,426006,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +KALAYE ELECTRIC,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0155 (UN Ref):IRe.032 Provider for PFEP - Natanz. [Old Reference # E.37.A.3],Entity,AKA,,Iran (Nuclear),09/02/2007,23/12/2006,31/12/2020,8986 +KALIMULLIN,Rustam,Galiullovich,,,,,Калимуллин Рустам Галиуллович,,,02/01/1958,Kazaklar,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0409 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14354 +KALINNIK,Sergei,Leonidivich,,,,,Сяргей Леанiдавiч КАЛИННИК,,,23/07/1979,,,,,,,,(1) Police Colonel (2) Chief of the Sovetsky District Police Department of Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0070 (UK Statement of Reasons):Sergei Kalinnik is the Police Colonel, Chief of the Soviet District Police Department of Minsk. In this position he bears responsibility for the inhumane and degrading treatment against detainees, amounting to serious human rights violations, including torture, carried out in the detention facilities following the elections of 9 August. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14049 +KALINNIK,Siarhei,Leanidavich,,,,,Сергей Леонидович КАЛИННИК,,,23/07/1979,,,,,,,,(1) Police Colonel (2) Chief of the Sovetsky District Police Department of Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0070 (UK Statement of Reasons):Sergei Kalinnik is the Police Colonel, Chief of the Soviet District Police Department of Minsk. In this position he bears responsibility for the inhumane and degrading treatment against detainees, amounting to serious human rights violations, including torture, carried out in the detention facilities following the elections of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14049 +KALINOUSKY,Sergei,Alekseevich,,,,,,,,03/01/1969,,,,,,,,(1) Member of the Central Electoral Commission (2) Deputy Justice Minister,,,,,,,,,"(UK Sanctions List Ref):BEL0038 (UK Statement of Reasons):Siarhei Kalinousky is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,13/04/2022,13955 +KALINOUSKY,Siarhei,Aliakseevich,,,,,Сергей Алексеевич КАЛИНОВСКИЙ,,,03/01/1969,,,,,,,,(1) Member of the Central Electoral Commission (2) Deputy Justice Minister,,,,,,,,,"(UK Sanctions List Ref):BEL0038 (UK Statement of Reasons):Siarhei Kalinousky is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,13/04/2022,13955 +KALINOUSKY,Sergey,Alekseevich,,,,,,,,03/01/1969,,,,,,,,(1) Member of the Central Electoral Commission (2) Deputy Justice Minister,,,,,,,,,"(UK Sanctions List Ref):BEL0038 (UK Statement of Reasons):Siarhei Kalinousky is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,13/04/2022,13955 +KALINOUSKY,Siarhei,Aliakseevich,,,,,Сяргей Аляксеевiч КАЛIНОЎСКI,,,03/01/1969,,,,,,,,(1) Member of the Central Electoral Commission (2) Deputy Justice Minister,,,,,,,,,"(UK Sanctions List Ref):BEL0038 (UK Statement of Reasons):Siarhei Kalinousky is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,13/04/2022,13955 +KALINOVSKI,Sergei,Alekseevich,,,,,,,,03/01/1969,,,,,,,,(1) Member of the Central Electoral Commission (2) Deputy Justice Minister,,,,,,,,,"(UK Sanctions List Ref):BEL0038 (UK Statement of Reasons):Siarhei Kalinousky is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,13/04/2022,13955 +KALINOVSKI,Siarhei,Aliakseevich,,,,,,,,03/01/1969,,,,,,,,(1) Member of the Central Electoral Commission (2) Deputy Justice Minister,,,,,,,,,"(UK Sanctions List Ref):BEL0038 (UK Statement of Reasons):Siarhei Kalinousky is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,13/04/2022,13955 +KALINOVSKIY,Sergei,Alekseevich,,,,,,,,03/01/1969,,,,,,,,(1) Member of the Central Electoral Commission (2) Deputy Justice Minister,,,,,,,,,"(UK Sanctions List Ref):BEL0038 (UK Statement of Reasons):Siarhei Kalinousky is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,13/04/2022,13955 +KALINOVSKIY,Siarhei,Aliakseevich,,,,,,,,03/01/1969,,,,,,,,(1) Member of the Central Electoral Commission (2) Deputy Justice Minister,,,,,,,,,"(UK Sanctions List Ref):BEL0038 (UK Statement of Reasons):Siarhei Kalinousky is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,13/04/2022,13955 +KALMIUS BATTALION,,,,,,,,,,,,,,,,,,,,,,,,Location of entity headquarters: A former tourist camp outside Donetsk which has been turned into a base for the Death Battalion,,,"(UK Sanctions List Ref):RUS0180 Part of the so called ""2nd Army Corps of the ""Lugansk People's Republic (Type of entity):Armed Separatist Group",Entity,Primary name,,Russia,16/02/2015,31/12/2020,31/12/2020,13224 +KALUME,Andre,,,,,,André Kalume,,,00/00/1966,"Cellule Nyagitabire, Sector Ruvune, Commune Kinyami, Prefecture Byumba",Rwanda,Rwanda,,,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0049 (UN Ref):CDi.034 He is a threat to the peace, stability and security of the DRC under UNSCR 2293 paragraph 7(j). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6194815",Individual,AKA,Good quality,Democratic Republic of the Congo,02/02/2018,01/02/2018,31/12/2020,13606 +KALYUSSKY,Alexander,Alexandrovich,,,,,,,,09/10/1975,,,Ukraine,,,,,"Former so called ""de facto Deputy Prime Minister for Social Affairs of the Donetsk People's Republic"".",,,,,,,,,"(UK Sanctions List Ref):RUS0112 Former so-called 'de facto Deputy Prime Minister for Social Affairs of the Donetsk People's Republic'. (UK Statement of Reasons):Former so called ""de facto Deputy Prime Minister for Social Affairs of DPR"". Responsible for the separatist ""governmental"" activities of the ""government of the Donetsk People's Republic"". (Gender):Male",Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,14/02/2022,13011 +KALYUSSKY,Alexandr,Aleksandrovich,,,,,,,,09/10/1975,,,Ukraine,,,,,"Former so called ""de facto Deputy Prime Minister for Social Affairs of the Donetsk People's Republic"".",,,,,,,,,"(UK Sanctions List Ref):RUS0112 Former so-called 'de facto Deputy Prime Minister for Social Affairs of the Donetsk People's Republic'. (UK Statement of Reasons):Former so called ""de facto Deputy Prime Minister for Social Affairs of DPR"". Responsible for the separatist ""governmental"" activities of the ""government of the Donetsk People's Republic"". (Gender):Male",Individual,Primary name,,Russia,12/07/2014,31/12/2020,14/02/2022,13011 +KALYUSSKY,Alexandr,Arkadievich,,,,,,,,09/10/1975,,,Ukraine,,,,,"Former so called ""de facto Deputy Prime Minister for Social Affairs of the Donetsk People's Republic"".",,,,,,,,,"(UK Sanctions List Ref):RUS0112 Former so-called 'de facto Deputy Prime Minister for Social Affairs of the Donetsk People's Republic'. (UK Statement of Reasons):Former so called ""de facto Deputy Prime Minister for Social Affairs of DPR"". Responsible for the separatist ""governmental"" activities of the ""government of the Donetsk People's Republic"". (Gender):Male",Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,14/02/2022,13011 +KAMA AUTOMOBILE PLANT,,,,,,,Ка́мский автомоби́льный заво́д,Cyrillic,Russian,,,,,,,,,,2 Avtozavodskiy Prospect,Naberezhnye Chelny,,,,Republic of Tatarstan,423827,Russia,"(UK Sanctions List Ref):RUS1422 (UK Statement of Reasons):Kamaz is the largest truck producer in the Russian Federation. Kamaz therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian transport sector. (Website):www.kamaz.ru (Parent company):Rostec",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15332 +KAMALIAN,Behrouz,,,,,,,,,00/00/1983,Tehran,Iran,,,,,,"Head of the 'Ashiyaneh' cyber group, linked with the Iranian regime",,,,,,,,,"(UK Sanctions List Ref):IHR0026 The “Ashiyaneh” Digital Security, founded by Behrouz Kamalian, is responsible for intensive cyber attacks both on domestic opponents and reformists and foreign institutions. (UK Statement of Reasons):Head of the “Ashiyaneh” cyber group linked with the Iranian regime. The “Ashiyaneh” Digital Security, founded by Behrouz Kamalian, is responsible for intensive cyber attacks both on domestic opponents and reformists and foreign institutions. Kamalian’s Ashiyane organisation’s work has assisted the regime’s crackdown against the opposition which has involved numerous serious human rights violations. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,31/12/2020,12187 +KAMAZ,,,,,,,камаз,Cyrillic,Russian,,,,,,,,,,2 Avtozavodskiy Prospect,Naberezhnye Chelny,,,,Republic of Tatarstan,423827,Russia,"(UK Sanctions List Ref):RUS1422 (UK Statement of Reasons):Kamaz is the largest truck producer in the Russian Federation. Kamaz therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian transport sector. (Website):www.kamaz.ru (Parent company):Rostec",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15332 +KAMEL,,,,,,,,,,21/10/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Bertesi Number 27,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +KAMEL,,,,,,,,,,21/10/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Plebiscito Number 3,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +KAMEL,,,,,,,,,,21/11/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Bertesi Number 27,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +KAMEL,,,,,,,,,,21/11/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Plebiscito Number 3,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +KAMEL,Hamraoui,,,,,,,,,21/10/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Bertesi Number 27,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +KAMEL,Hamraoui,,,,,,,,,21/10/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Plebiscito Number 3,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +KAMEL,Hamraoui,,,,,,,,,21/11/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Bertesi Number 27,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +KAMEL,Hamraoui,,,,,,,,,21/11/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Plebiscito Number 3,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +KAMMOUN,MEHDI,BEN MOHAMED,BEN MOHAMED,,,,المهدي بن محمد بن محمد كمون,,,03/04/1968,Tunis,Tunisia,Tunisia,M307707,"issue date: 12/04/2000, expiry date: 11/04/2005",,,,Via Masina No 7,,,,,Milan,,Italy,(UK Sanctions List Ref):AQD0230 (UN Ref):QDi.072 Italian Fiscal Code: KMMMHD68D03Z352N. Deported from Italy to Tunisia on 22 July 2005. Serving an eight-year prison term in Tunisia for membership of a terrorist organization abroad as at Jan. 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/09/2002,03/09/2002,31/12/2020,7220 +KAMNEV,Georgy,Petrovich,,,,,Камнев Георгий Петрович,,,05/10/1983,Serdobsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0410 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14355 +KAMPETE,Gaston,Hughes,Ilunga,,,Commander,,,,24/11/1964,Lubumbashi,Congo (Democratic Republic),Congo (Democratic Republic),,,1-64-86-22311-29,,"Commander, Republican Guard",Av Nyangwile No 69,Kinsuka Mimosa,,,Ngaliema,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0001 (UK Statement of Reasons):As Commander of the Republican Guard until July 2020, Ilunga KAMPETE was responsible for the GR units deployed on the ground and involved in the disproportionate use of force and violent repression, in September 2016 in Kinshasa. In this capacity, Ilunga KAMPETE was therefore involved in planning, directing, or committing acts that constitute serious human rights violations in DRC. Since July 2020, he remains a high-ranking soldier, as a Lieutenant General in the Congolese Armed Forces (FARDC) and Commander of the Kitona military base in the province of Kongo Central. There are reasonable grounds to conclude that KAMPETE is an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Commander of the Republic Guard and therefore bears responsibility for the human rights violations committed by the FARDC.  (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13439 +KAMPETE,Gastson,Hughes,Ilunga,,,,,,,24/11/1964,Lubumbashi,Congo (Democratic Republic),Congo (Democratic Republic),,,1-64-86-22311-29,,"Commander, Republican Guard",Av Nyangwile No 69,Kinsuka Mimosa,,,Ngaliema,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0001 (UK Statement of Reasons):As Commander of the Republican Guard until July 2020, Ilunga KAMPETE was responsible for the GR units deployed on the ground and involved in the disproportionate use of force and violent repression, in September 2016 in Kinshasa. In this capacity, Ilunga KAMPETE was therefore involved in planning, directing, or committing acts that constitute serious human rights violations in DRC. Since July 2020, he remains a high-ranking soldier, as a Lieutenant General in the Congolese Armed Forces (FARDC) and Commander of the Kitona military base in the province of Kongo Central. There are reasonable grounds to conclude that KAMPETE is an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Commander of the Republic Guard and therefore bears responsibility for the human rights violations committed by the FARDC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13439 +KAMPETE,Hugues,Raston,Illunga,,,,,,,24/11/1964,Lubumbashi,Congo (Democratic Republic),Congo (Democratic Republic),,,1-64-86-22311-29,,"Commander, Republican Guard",Av Nyangwile No 69,Kinsuka Mimosa,,,Ngaliema,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0001 (UK Statement of Reasons):As Commander of the Republican Guard until July 2020, Ilunga KAMPETE was responsible for the GR units deployed on the ground and involved in the disproportionate use of force and violent repression, in September 2016 in Kinshasa. In this capacity, Ilunga KAMPETE was therefore involved in planning, directing, or committing acts that constitute serious human rights violations in DRC. Since July 2020, he remains a high-ranking soldier, as a Lieutenant General in the Congolese Armed Forces (FARDC) and Commander of the Kitona military base in the province of Kongo Central. There are reasonable grounds to conclude that KAMPETE is an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Commander of the Republic Guard and therefore bears responsibility for the human rights violations committed by the FARDC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13439 +KAMRAN,Gul,Mohammad,,,,,,,,00/00/1975,"(1) Lakhi village, Hazarjuft area, Garmsir District, Helmand Province (2) Laki village, Garmsir District, Helmand Province (3) Lakari village, Garmsir District, Helmand Province (4) Darvishan, Garmsir District, Helmand Province (5) De Luy Wiyalah village, Garmsir District, Helmand Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan (5) Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation under the Taliban,,,,,,,,,(UK Sanctions List Ref):AFG0015 (UN Ref):TAi.013 Member of the Taliban Military Commission as at mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7354 +KAMYSHANOVA,Aleksandra,Aleksandrovna,,,,,КАМЫШАНОВА Александра Александровна,Cyrillic,Russian,29/11/1986,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0792 (UK Statement of Reasons):Aleksandra Aleksandrovna KAMYSHANOVA has been involved in providing support for and promoting actions and policies that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being involved in spreading disinformation and promoting Russian actions in Ukraine. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,05/07/2022,14743 +KAMYSHOV,Alexander,Sergeevich,,,,,КАМЫШОВ Александр Сергеевич,Cyrillic,Russian,24/05/1987,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1248 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15200 +KAMYSHOV,Alexander,Sergeyevich,,,,,,,,24/05/1987,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1248 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15200 +KANAEV,Alexey,Valerianovich,,,,,Канаев Алексей Валерианович,,,30/09/1971,Strunino,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0411 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14356 +KANDE-MUPOMPA,Alex,Kande,,,,,,,,23/09/1950,Kananga,Congo (Democratic Republic),(1) Belgium (2) Congo (Democratic Republic),OP0024910,21 March 2016 to 20 March 2021,,,"Governor, Kasai Central",Ave Bumba No 1,,,,Kinshasa,Ngaliena,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0009 (UK Statement of Reasons):As Governor of Kasai Central until October 2017, Alex Kande MUPOMPA has been responsible for the disproportionate use of force, violent repression and extrajudicial killings committed by security forces and the PNC in Kasai Central from August 2016, including killings on the territory of Dibaya in February 2017. As a senior provincial government official, Alex Kande MUPOMPA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13461 +KANDE-MUPOMPA,Alex,Kande,,,,,,,,23/09/1950,Kananga,Congo (Democratic Republic),(1) Belgium (2) Congo (Democratic Republic),OP0024910,21 March 2016 to 20 March 2021,,,"Governor, Kasai Central",Messidorlaan 217/25,,,,,1180 Uccle,,Belgium,"(UK Sanctions List Ref):DRC0009 (UK Statement of Reasons):As Governor of Kasai Central until October 2017, Alex Kande MUPOMPA has been responsible for the disproportionate use of force, violent repression and extrajudicial killings committed by security forces and the PNC in Kasai Central from August 2016, including killings on the territory of Dibaya in February 2017. As a senior provincial government official, Alex Kande MUPOMPA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13461 +KANDE-MUPOMPA,Alexandre,Kande,,,,,,,,23/09/1950,Kananga,Congo (Democratic Republic),(1) Belgium (2) Congo (Democratic Republic),OP0024910,21 March 2016 to 20 March 2021,,,"Governor, Kasai Central",Ave Bumba No 1,,,,Kinshasa,Ngaliena,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0009 (UK Statement of Reasons):As Governor of Kasai Central until October 2017, Alex Kande MUPOMPA has been responsible for the disproportionate use of force, violent repression and extrajudicial killings committed by security forces and the PNC in Kasai Central from August 2016, including killings on the territory of Dibaya in February 2017. As a senior provincial government official, Alex Kande MUPOMPA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13461 +KANDE-MUPOMPA,Alexandre,Kande,,,,,,,,23/09/1950,Kananga,Congo (Democratic Republic),(1) Belgium (2) Congo (Democratic Republic),OP0024910,21 March 2016 to 20 March 2021,,,"Governor, Kasai Central",Messidorlaan 217/25,,,,,1180 Uccle,,Belgium,"(UK Sanctions List Ref):DRC0009 (UK Statement of Reasons):As Governor of Kasai Central until October 2017, Alex Kande MUPOMPA has been responsible for the disproportionate use of force, violent repression and extrajudicial killings committed by security forces and the PNC in Kasai Central from August 2016, including killings on the territory of Dibaya in February 2017. As a senior provincial government official, Alex Kande MUPOMPA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13461 +KANG,Song,Sam,,,,,,,,05/07/1972,Pyongyang,North Korea,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0017 Associations with Korea National Insurance Corporation (KNIC) (UK Statement of Reasons):Former authorised representative of Korea National Insurance Corporation (KNIC) in Hamburg, continues to act for or on behalf of KNIC or at its direction. (Gender):Male",Individual,AKA,,Democratic People's Republic of Korea,03/07/2015,31/12/2020,31/12/2020,13256 +KANG,Song-Sam,,,,,,,,,05/07/1972,Pyongyang,North Korea,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0017 Associations with Korea National Insurance Corporation (KNIC) (UK Statement of Reasons):Former authorised representative of Korea National Insurance Corporation (KNIC) in Hamburg, continues to act for or on behalf of KNIC or at its direction. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,03/07/2015,31/12/2020,31/12/2020,13256 +KANGBONG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0142 (UN Ref):KPe.043 The Kangbong Trading Corporation sold, supplied, transferred, or purchased, directly or indirectly, to or from the DPRK, metal, graphite, coal, or software, where revenue or goods received may benefit the Government of the DPRK or the Workers’ Party of Korea. The Kangbong Trading Corporation’s parent is the Ministry of People’s Armed Forces",Entity,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,31/12/2020,13484 +KANI BRIGADE,,,,,,,,,,,,,,,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0074 (UK Statement of Reasons):The al-Kaniyat milita is designated on the basis that there are reasonable grounds to suspect that the militia has committed serious human rights abuses and committed violations of international humanitarian law. There are reasonable grounds to suspect that the al-Kaniyat militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tahouna. There are reasonable grounds to suspect that the militia has been involved in activities that threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country.",Entity,AKA,,Libya,13/05/2021,07/05/2021,13/05/2021,14107 +KANIAT,,,,,,,,,,,,,,,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0074 (UK Statement of Reasons):The al-Kaniyat milita is designated on the basis that there are reasonable grounds to suspect that the militia has committed serious human rights abuses and committed violations of international humanitarian law. There are reasonable grounds to suspect that the al-Kaniyat militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tahouna. There are reasonable grounds to suspect that the militia has been involved in activities that threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country.",Entity,AKA,,Libya,13/05/2021,07/05/2021,13/05/2021,14107 +KANOKOV,Timur,Borisovich,,,,,Каноков Тимур Борисович,,,24/09/1972,Shitkhala,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0682 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14633 +KANONGA,GEDEON,KYUNGU,MUTANGA WA BAFUNKWA,,,,GÉDÉON KYUNGU MUTANGA WA BAFUNKWA KANONGA,,,00/00/1974,"Manono Territory, Katanga Province (now Tanganyika Province)",Congo (Democratic Republic),,,,,,Katangan rebel leader,,,,,,,,,"(UK Sanctions List Ref):DRC0033 (UN Ref):CDi.035 Gédéon Kyungu belongs to the Balubakat ethnic group. After completing primary education in Likasi and secondary school in Manono, he obtained a degree in pedagogy. In 1999 he joined the Maï Maï movement, commanding from 2003 one of the most active groups in the province of Katanga. In 2006, he visited UN peacekeeping forces to integrate through the disarmament, demobilization and reintegration (DDR) process. He escaped from prison in 2011 and surrendered in October 2016. He is a threat to the peace, stability and security of the DRC under UNSCR 2293 paragraph 7(e). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6194816",Individual,Primary name,,Democratic Republic of the Congo,02/02/2018,01/02/2018,31/12/2020,13607 +KANTOR,Viacheslav,,,,,,,,,08/09/1953,Moscow,Russia,(1) Russia (2) Israel,,,,,Chairman of the Coordinating Board of PJSC Acron,,,,,,,,,"(UK Sanctions List Ref):RUS1127 (UK Statement of Reasons):Viatcheslav KANTOR, hereafter KANTOR, is a prominent Russian businessman associated with Vladimir Putin. KANTOR is the Chairman of the Coordinating Board of PJSC ‘Acron’ and its largest shareholder. Acron is a Russian chemical, mineral and fertilizer producer which carries on business in a sector of strategic significance to the Government of Russia, namely the Russian chemicals and extractives sectors. KANTOR therefore owns or controls directly or indirectly and/or works as a director (whether executive or non-executive) trustee, or equivalent of a person other than an individual carrying on business of economic significance to the Government of Russian in sectors of strategic significance to the Government of Russian. Hence KANTOR is involved in gaining a benefit from or supporting the Government of Russia, whose actions are destabilising Ukraine or undermining or destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name variation,,Russia,06/04/2022,06/04/2022,06/04/2022,15075 +KANTOR,Viacheslav,Moshe,,,,,Вячеслав Моше Кантор,,,08/09/1953,Moscow,Russia,(1) Russia (2) Israel,,,,,Chairman of the Coordinating Board of PJSC Acron,,,,,,,,,"(UK Sanctions List Ref):RUS1127 (UK Statement of Reasons):Viatcheslav KANTOR, hereafter KANTOR, is a prominent Russian businessman associated with Vladimir Putin. KANTOR is the Chairman of the Coordinating Board of PJSC ‘Acron’ and its largest shareholder. Acron is a Russian chemical, mineral and fertilizer producer which carries on business in a sector of strategic significance to the Government of Russia, namely the Russian chemicals and extractives sectors. KANTOR therefore owns or controls directly or indirectly and/or works as a director (whether executive or non-executive) trustee, or equivalent of a person other than an individual carrying on business of economic significance to the Government of Russian in sectors of strategic significance to the Government of Russian. Hence KANTOR is involved in gaining a benefit from or supporting the Government of Russia, whose actions are destabilising Ukraine or undermining or destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name variation,,Russia,06/04/2022,06/04/2022,06/04/2022,15075 +KANTOR,Viacheslav,Vladimirovich,,,,,,,,08/09/1953,Moscow,Russia,(1) Russia (2) Israel,,,,,Chairman of the Coordinating Board of PJSC Acron,,,,,,,,,"(UK Sanctions List Ref):RUS1127 (UK Statement of Reasons):Viatcheslav KANTOR, hereafter KANTOR, is a prominent Russian businessman associated with Vladimir Putin. KANTOR is the Chairman of the Coordinating Board of PJSC ‘Acron’ and its largest shareholder. Acron is a Russian chemical, mineral and fertilizer producer which carries on business in a sector of strategic significance to the Government of Russia, namely the Russian chemicals and extractives sectors. KANTOR therefore owns or controls directly or indirectly and/or works as a director (whether executive or non-executive) trustee, or equivalent of a person other than an individual carrying on business of economic significance to the Government of Russian in sectors of strategic significance to the Government of Russian. Hence KANTOR is involved in gaining a benefit from or supporting the Government of Russia, whose actions are destabilising Ukraine or undermining or destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name variation,,Russia,06/04/2022,06/04/2022,06/04/2022,15075 +KANTOR,Viatcheslav,,,,,,Вячеслав Кантор,,,08/09/1953,Moscow,Russia,(1) Russia (2) Israel,,,,,Chairman of the Coordinating Board of PJSC Acron,,,,,,,,,"(UK Sanctions List Ref):RUS1127 (UK Statement of Reasons):Viatcheslav KANTOR, hereafter KANTOR, is a prominent Russian businessman associated with Vladimir Putin. KANTOR is the Chairman of the Coordinating Board of PJSC ‘Acron’ and its largest shareholder. Acron is a Russian chemical, mineral and fertilizer producer which carries on business in a sector of strategic significance to the Government of Russia, namely the Russian chemicals and extractives sectors. KANTOR therefore owns or controls directly or indirectly and/or works as a director (whether executive or non-executive) trustee, or equivalent of a person other than an individual carrying on business of economic significance to the Government of Russian in sectors of strategic significance to the Government of Russian. Hence KANTOR is involved in gaining a benefit from or supporting the Government of Russia, whose actions are destabilising Ukraine or undermining or destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name,,Russia,06/04/2022,06/04/2022,06/04/2022,15075 +KANTOR,Viatcheslav,Moshe,,,,,Вячеслав Владимирович Кантор,,,08/09/1953,Moscow,Russia,(1) Russia (2) Israel,,,,,Chairman of the Coordinating Board of PJSC Acron,,,,,,,,,"(UK Sanctions List Ref):RUS1127 (UK Statement of Reasons):Viatcheslav KANTOR, hereafter KANTOR, is a prominent Russian businessman associated with Vladimir Putin. KANTOR is the Chairman of the Coordinating Board of PJSC ‘Acron’ and its largest shareholder. Acron is a Russian chemical, mineral and fertilizer producer which carries on business in a sector of strategic significance to the Government of Russia, namely the Russian chemicals and extractives sectors. KANTOR therefore owns or controls directly or indirectly and/or works as a director (whether executive or non-executive) trustee, or equivalent of a person other than an individual carrying on business of economic significance to the Government of Russian in sectors of strategic significance to the Government of Russian. Hence KANTOR is involved in gaining a benefit from or supporting the Government of Russia, whose actions are destabilising Ukraine or undermining or destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name variation,,Russia,06/04/2022,06/04/2022,06/04/2022,15075 +KANTOR,Viatcheslav,Vladimirovich,,,,,,,,08/09/1953,Moscow,Russia,(1) Russia (2) Israel,,,,,Chairman of the Coordinating Board of PJSC Acron,,,,,,,,,"(UK Sanctions List Ref):RUS1127 (UK Statement of Reasons):Viatcheslav KANTOR, hereafter KANTOR, is a prominent Russian businessman associated with Vladimir Putin. KANTOR is the Chairman of the Coordinating Board of PJSC ‘Acron’ and its largest shareholder. Acron is a Russian chemical, mineral and fertilizer producer which carries on business in a sector of strategic significance to the Government of Russia, namely the Russian chemicals and extractives sectors. KANTOR therefore owns or controls directly or indirectly and/or works as a director (whether executive or non-executive) trustee, or equivalent of a person other than an individual carrying on business of economic significance to the Government of Russian in sectors of strategic significance to the Government of Russian. Hence KANTOR is involved in gaining a benefit from or supporting the Government of Russia, whose actions are destabilising Ukraine or undermining or destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name variation,,Russia,06/04/2022,06/04/2022,06/04/2022,15075 +KANTOR,Vyacheslav,,,,,,,,,08/09/1953,Moscow,Russia,(1) Russia (2) Israel,,,,,Chairman of the Coordinating Board of PJSC Acron,,,,,,,,,"(UK Sanctions List Ref):RUS1127 (UK Statement of Reasons):Viatcheslav KANTOR, hereafter KANTOR, is a prominent Russian businessman associated with Vladimir Putin. KANTOR is the Chairman of the Coordinating Board of PJSC ‘Acron’ and its largest shareholder. Acron is a Russian chemical, mineral and fertilizer producer which carries on business in a sector of strategic significance to the Government of Russia, namely the Russian chemicals and extractives sectors. KANTOR therefore owns or controls directly or indirectly and/or works as a director (whether executive or non-executive) trustee, or equivalent of a person other than an individual carrying on business of economic significance to the Government of Russian in sectors of strategic significance to the Government of Russian. Hence KANTOR is involved in gaining a benefit from or supporting the Government of Russia, whose actions are destabilising Ukraine or undermining or destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name variation,,Russia,06/04/2022,06/04/2022,06/04/2022,15075 +KANYAMA,Celestin,,,,,Police Commissioner,,,,04/10/1960,Kananga,Congo (Democratic Republic),Congo (Democratic Republic),OB0637580,Valid from 20.5.2014 to 19.5.2019,,,(1) Former Kinshasa Police Commissioner (PNC) (2) now General of Schools and Training (PNC),Av Uvika 56,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0004 Schengen visa No 011518403, issued on 2.7.2016 (UK Statement of Reasons):There are reasonable grounds to conclude that KANYAMA was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Kinshasa Police Commissioner and therefore bore responsibility for the human rights violations committed by the PNC. As Kinshasa Police Commissioner (PNC), Celestin KANYAMA was responsible for the disproportionate use of force and violent repression in Kinshasa. In this capacity, Celestin KANYAMA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13435 +KANYAMA,Cishiku,Bilolo,,,,,,,,04/10/1960,Kananga,Congo (Democratic Republic),Congo (Democratic Republic),OB0637580,Valid from 20.5.2014 to 19.5.2019,,,(1) Former Kinshasa Police Commissioner (PNC) (2) now General of Schools and Training (PNC),Av Uvika 56,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0004 Schengen visa No 011518403, issued on 2.7.2016 (UK Statement of Reasons):There are reasonable grounds to conclude that KANYAMA was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Kinshasa Police Commissioner and therefore bore responsibility for the human rights violations committed by the PNC. As Kinshasa Police Commissioner (PNC), Celestin KANYAMA was responsible for the disproportionate use of force and violent repression in Kinshasa. In this capacity, Celestin KANYAMA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13435 +KANYAMA,Kanyama,Celestin,Cishiku,,,,,,,04/10/1960,Kananga,Congo (Democratic Republic),Congo (Democratic Republic),OB0637580,Valid from 20.5.2014 to 19.5.2019,,,(1) Former Kinshasa Police Commissioner (PNC) (2) now General of Schools and Training (PNC),Av Uvika 56,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0004 Schengen visa No 011518403, issued on 2.7.2016 (UK Statement of Reasons):There are reasonable grounds to conclude that KANYAMA was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Kinshasa Police Commissioner and therefore bore responsibility for the human rights violations committed by the PNC. As Kinshasa Police Commissioner (PNC), Celestin KANYAMA was responsible for the disproportionate use of force and violent repression in Kinshasa. In this capacity, Celestin KANYAMA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13435 +KANYAMA,Kanyama,Tshisiku,,,,,,,,04/10/1960,Kananga,Congo (Democratic Republic),Congo (Democratic Republic),OB0637580,Valid from 20.5.2014 to 19.5.2019,,,(1) Former Kinshasa Police Commissioner (PNC) (2) now General of Schools and Training (PNC),Av Uvika 56,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0004 Schengen visa No 011518403, issued on 2.7.2016 (UK Statement of Reasons):There are reasonable grounds to conclude that KANYAMA was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Kinshasa Police Commissioner and therefore bore responsibility for the human rights violations committed by the PNC. As Kinshasa Police Commissioner (PNC), Celestin KANYAMA was responsible for the disproportionate use of force and violent repression in Kinshasa. In this capacity, Celestin KANYAMA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13435 +KANYAT,,,,,,,,,,,,,,,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0074 (UK Statement of Reasons):The al-Kaniyat milita is designated on the basis that there are reasonable grounds to suspect that the militia has committed serious human rights abuses and committed violations of international humanitarian law. There are reasonable grounds to suspect that the al-Kaniyat militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tahouna. There are reasonable grounds to suspect that the militia has been involved in activities that threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country.",Entity,AKA,,Libya,13/05/2021,07/05/2021,13/05/2021,14107 +KANYUK,Aleksandr,Vladimirovich,,,,,"КАНЮК, Аляксандр Уладзіміравіч",,,11/07/1960,Hrodna/Grodno,,Belarus,,,,,Prosecutor General,,,,,,,,,(UK Sanctions List Ref):BEL0032 (UK Statement of Reasons):Aliaksandr Kanyuk was the Prosecutor General of the Republic of Belarus for nine years up until 9 September 2020. Kanyuk was responsible for the use of criminal proceedings to disqualify opposition candidates ahead of the 2020 presidential election and to prevent persons from joining the Coordination Council launched by the opposition as a means to challenge the election result. (Gender):Male,Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13951 +KANYUK,Alexander,Vladimirovich,,,,,,,,11/07/1960,Hrodna/Grodno,,Belarus,,,,,Prosecutor General,,,,,,,,,(UK Sanctions List Ref):BEL0032 (UK Statement of Reasons):Aliaksandr Kanyuk was the Prosecutor General of the Republic of Belarus for nine years up until 9 September 2020. Kanyuk was responsible for the use of criminal proceedings to disqualify opposition candidates ahead of the 2020 presidential election and to prevent persons from joining the Coordination Council launched by the opposition as a means to challenge the election result. (Gender):Male,Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13951 +KANYUK,ALIAKSANDR,ULADZIMIRAVICH,,,,,"КОНЮК, Александр Владимирович",,,11/07/1960,Hrodna/Grodno,,Belarus,,,,,Prosecutor General,,,,,,,,,(UK Sanctions List Ref):BEL0032 (UK Statement of Reasons):Aliaksandr Kanyuk was the Prosecutor General of the Republic of Belarus for nine years up until 9 September 2020. Kanyuk was responsible for the use of criminal proceedings to disqualify opposition candidates ahead of the 2020 presidential election and to prevent persons from joining the Coordination Council launched by the opposition as a means to challenge the election result. (Gender):Male,Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13951 +KANYUK,Alyaksandr,Vladzimirovich,,,,,,,,11/07/1960,Hrodna/Grodno,,Belarus,,,,,Prosecutor General,,,,,,,,,(UK Sanctions List Ref):BEL0032 (UK Statement of Reasons):Aliaksandr Kanyuk was the Prosecutor General of the Republic of Belarus for nine years up until 9 September 2020. Kanyuk was responsible for the use of criminal proceedings to disqualify opposition candidates ahead of the 2020 presidential election and to prevent persons from joining the Coordination Council launched by the opposition as a means to challenge the election result. (Gender):Male,Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13951 +KAPERE,Otim,,,,,,,,,00/00/1994,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +KAPERE,Otim,,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +KAPERE,Otim,,,,,,,,,00/00/1995,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +KAPERE,Otim,,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +KAPLUNNIK,Irina,Alexandrovna,,,,,Ирина Александровна Каплунник,Cyrillic,Russian,00/00/1969,,,(1) Bulgaria (2) Russia,,,,,Member of Gazprombank’s Management Board,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1607 (UK Statement of Reasons):Irina Alexandrovna Kaplunnik is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Female",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15551 +KAPRANOVA,Anastasiya,,,,,,,,,00/00/1964,,,Ukraine,,,,,Secretary of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0113 (UK Statement of Reasons):Former Secretary of the Sevastopol Electoral Commission (until May 2019). In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,31/12/2020,13670 +KAPRANOVA,Anastasiya,,,,,,,,,21/04/1964,,,Ukraine,,,,,Secretary of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0113 (UK Statement of Reasons):Former Secretary of the Sevastopol Electoral Commission (until May 2019). In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,31/12/2020,13670 +KAPRANOVA,Anastasiya,Nikolayevna,,,,,,,,00/00/1964,,,Ukraine,,,,,Secretary of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0113 (UK Statement of Reasons):Former Secretary of the Sevastopol Electoral Commission (until May 2019). In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,14/05/2018,31/12/2020,31/12/2020,13670 +KAPRANOVA,Anastasiya,Nikolayevna,,,,,,,,21/04/1964,,,Ukraine,,,,,Secretary of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0113 (UK Statement of Reasons):Former Secretary of the Sevastopol Electoral Commission (until May 2019). In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,14/05/2018,31/12/2020,31/12/2020,13670 +KAPRANOVA,Anastasiya,Mykolayivna,,,,,,,,00/00/1964,,,Ukraine,,,,,Secretary of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0113 (UK Statement of Reasons):Former Secretary of the Sevastopol Electoral Commission (until May 2019). In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,31/12/2020,13670 +KAPRANOVA,Anastasiya,Mykolayivna,,,,,,,,21/04/1964,,,Ukraine,,,,,Secretary of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0113 (UK Statement of Reasons):Former Secretary of the Sevastopol Electoral Commission (until May 2019). In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,31/12/2020,13670 +KAPRANOWA,Anastasiya,,,,,,,,,00/00/1964,,,Ukraine,,,,,Secretary of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0113 (UK Statement of Reasons):Former Secretary of the Sevastopol Electoral Commission (until May 2019). In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,31/12/2020,13670 +KAPRANOWA,Anastasiya,,,,,,,,,21/04/1964,,,Ukraine,,,,,Secretary of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0113 (UK Statement of Reasons):Former Secretary of the Sevastopol Electoral Commission (until May 2019). In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,31/12/2020,13670 +KAPRANOWA,Anastasiya,Nikolayevna,,,,,,,,00/00/1964,,,Ukraine,,,,,Secretary of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0113 (UK Statement of Reasons):Former Secretary of the Sevastopol Electoral Commission (until May 2019). In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,31/12/2020,13670 +KAPRANOWA,Anastasiya,Nikolayevna,,,,,,,,21/04/1964,,,Ukraine,,,,,Secretary of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0113 (UK Statement of Reasons):Former Secretary of the Sevastopol Electoral Commission (until May 2019). In this capacity she participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,31/12/2020,13670 +KARAEU,Yuri,Khadzimuratavich,,,,,,,,21/06/1966,Ordzhonikidze (now Vladikavkaz),Russia. Former USSR,,,,,,"(1) Former Minister of Internal Affairs of the Republic of Belarus (2) Former Minister of Internal Affairs of the Republic of Belarus,= (3) Major-General of Militia",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0005 and GHR0055 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Karayev was the Minister of Internal Affairs in Belarus and was appointed in June 2019. In this role, Karayev had overall leadership and command of, and was therefore responsible for, the actions of the Internal Troops and Public Security Police in Minsk. Therefore, he is responsible for serious violations of the right not to be subject to CIDT or torture of detained protestors and journalists, carried out by those security forces under his command following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13923 +KARAEU,Yuri,Khadzimuratavich,,,,,,,,21/06/1966,Ordzhonikidze (now Vladikavkaz),Russia. Former USSR,,,,,,"(1) Former Minister of Internal Affairs of the Republic of Belarus (2) Former Minister of Internal Affairs of the Republic of Belarus,= (3) Major-General of Militia",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0005 and GHR0055 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Karayev was the Minister of Internal Affairs in Belarus and was appointed in June 2019. In this role, Karayev had overall leadership and command of, and was therefore responsible for, the actions of the Internal Troops and Public Security Police in Minsk. Therefore, he is responsible for serious violations of the right not to be subject to CIDT or torture of detained protestors and journalists, carried out by those security forces under his command following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13923 +KARAEU,Yuri,Khadzimuratovich,,,,,,,,21/06/1966,Ordzhonikidze (now Vladikavkaz),Russia. Former USSR,,,,,,"(1) Former Minister of Internal Affairs of the Republic of Belarus (2) Former Minister of Internal Affairs of the Republic of Belarus,= (3) Major-General of Militia",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0005 and GHR0055 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Karayev was the Minister of Internal Affairs in Belarus and was appointed in June 2019. In this role, Karayev had overall leadership and command of, and was therefore responsible for, the actions of the Internal Troops and Public Security Police in Minsk. Therefore, he is responsible for serious violations of the right not to be subject to CIDT or torture of detained protestors and journalists, carried out by those security forces under his command following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13923 +KARAEU,Yuri,Khadzimuratovich,,,,,,,,21/06/1966,Ordzhonikidze (now Vladikavkaz),Russia. Former USSR,,,,,,"(1) Former Minister of Internal Affairs of the Republic of Belarus (2) Former Minister of Internal Affairs of the Republic of Belarus,= (3) Major-General of Militia",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0005 and GHR0055 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Karayev was the Minister of Internal Affairs in Belarus and was appointed in June 2019. In this role, Karayev had overall leadership and command of, and was therefore responsible for, the actions of the Internal Troops and Public Security Police in Minsk. Therefore, he is responsible for serious violations of the right not to be subject to CIDT or torture of detained protestors and journalists, carried out by those security forces under his command following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13923 +KARAEV,Yuri,Khadzimuratavich,,,,,Юрый Хаджымуратавіч Караеў,,,21/06/1966,Ordzhonikidze (now Vladikavkaz),Russia. Former USSR,,,,,,"(1) Former Minister of Internal Affairs of the Republic of Belarus (2) Former Minister of Internal Affairs of the Republic of Belarus,= (3) Major-General of Militia",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0005 and GHR0055 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Karayev was the Minister of Internal Affairs in Belarus and was appointed in June 2019. In this role, Karayev had overall leadership and command of, and was therefore responsible for, the actions of the Internal Troops and Public Security Police in Minsk. Therefore, he is responsible for serious violations of the right not to be subject to CIDT or torture of detained protestors and journalists, carried out by those security forces under his command following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13923 +KARAEV,Yuri,Khadzimuratavich,,,,,Юрый Хаджымуратавіч Караеў,,,21/06/1966,Ordzhonikidze (now Vladikavkaz),Russia. Former USSR,,,,,,"(1) Former Minister of Internal Affairs of the Republic of Belarus (2) Former Minister of Internal Affairs of the Republic of Belarus,= (3) Major-General of Militia",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0005 and GHR0055 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Karayev was the Minister of Internal Affairs in Belarus and was appointed in June 2019. In this role, Karayev had overall leadership and command of, and was therefore responsible for, the actions of the Internal Troops and Public Security Police in Minsk. Therefore, he is responsible for serious violations of the right not to be subject to CIDT or torture of detained protestors and journalists, carried out by those security forces under his command following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13923 +KARAEV,Yuri,Khadzimuratovich,,,,,,,,21/06/1966,Ordzhonikidze (now Vladikavkaz),Russia. Former USSR,,,,,,"(1) Former Minister of Internal Affairs of the Republic of Belarus (2) Former Minister of Internal Affairs of the Republic of Belarus,= (3) Major-General of Militia",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0005 and GHR0055 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Karayev was the Minister of Internal Affairs in Belarus and was appointed in June 2019. In this role, Karayev had overall leadership and command of, and was therefore responsible for, the actions of the Internal Troops and Public Security Police in Minsk. Therefore, he is responsible for serious violations of the right not to be subject to CIDT or torture of detained protestors and journalists, carried out by those security forces under his command following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13923 +KARAEV,Yuri,Khadzimuratovich,,,,,,,,21/06/1966,Ordzhonikidze (now Vladikavkaz),Russia. Former USSR,,,,,,"(1) Former Minister of Internal Affairs of the Republic of Belarus (2) Former Minister of Internal Affairs of the Republic of Belarus,= (3) Major-General of Militia",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0005 and GHR0055 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Karayev was the Minister of Internal Affairs in Belarus and was appointed in June 2019. In this role, Karayev had overall leadership and command of, and was therefore responsible for, the actions of the Internal Troops and Public Security Police in Minsk. Therefore, he is responsible for serious violations of the right not to be subject to CIDT or torture of detained protestors and journalists, carried out by those security forces under his command following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13923 +KARAMAN,Aleksandr,Akimovich,,,,,,,,26/07/1956,Slobozia district,Moldova,Ukraine,,,,,Former so called 'Deputy Prime Minster of 'Donetsk People's Republic',,,,,,,,,"(UK Sanctions List Ref):RUS0114 (UK Statement of Reasons):Aleksandr Akimovich KARAMAN is the former so-called ‘Deputy Prime Minister for Social Issues’ of the ‘Donetsk People’s Republic’. Associated with Vladimir Antyufeyev, who was responsible for the separatist ‘governmental’ activities of the so-called ‘Government of the Donetsk People’s Republic’. He has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Protégé of Russia’s Deputy Prime Minister Dmitry Rogozin. Former Head of the Administration of the Council of Ministers of the ‘Donetsk People’s Republic’. Until March 2017, so-called ‘Plenipotentiary representative of the President’ of the so-called ‘Pridnestrovian Moldavian Republic’ to the Russian Federation. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,16/09/2022,13098 +KARAMAN,Alexandru,,,,,,,,,26/07/1956,Slobozia district,Moldova,Ukraine,,,,,Former so called 'Deputy Prime Minster of 'Donetsk People's Republic',,,,,,,,,"(UK Sanctions List Ref):RUS0114 (UK Statement of Reasons):Aleksandr Akimovich KARAMAN is the former so-called ‘Deputy Prime Minister for Social Issues’ of the ‘Donetsk People’s Republic’. Associated with Vladimir Antyufeyev, who was responsible for the separatist ‘governmental’ activities of the so-called ‘Government of the Donetsk People’s Republic’. He has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Protégé of Russia’s Deputy Prime Minister Dmitry Rogozin. Former Head of the Administration of the Council of Ministers of the ‘Donetsk People’s Republic’. Until March 2017, so-called ‘Plenipotentiary representative of the President’ of the so-called ‘Pridnestrovian Moldavian Republic’ to the Russian Federation. (Gender):Male",Individual,Primary name variation,,Russia,12/09/2014,31/12/2020,16/09/2022,13098 +KARAMAN,Alexander,,,,,,,,,26/07/1956,Slobozia district,Moldova,Ukraine,,,,,Former so called 'Deputy Prime Minster of 'Donetsk People's Republic',,,,,,,,,"(UK Sanctions List Ref):RUS0114 (UK Statement of Reasons):Aleksandr Akimovich KARAMAN is the former so-called ‘Deputy Prime Minister for Social Issues’ of the ‘Donetsk People’s Republic’. Associated with Vladimir Antyufeyev, who was responsible for the separatist ‘governmental’ activities of the so-called ‘Government of the Donetsk People’s Republic’. He has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Protégé of Russia’s Deputy Prime Minister Dmitry Rogozin. Former Head of the Administration of the Council of Ministers of the ‘Donetsk People’s Republic’. Until March 2017, so-called ‘Plenipotentiary representative of the President’ of the so-called ‘Pridnestrovian Moldavian Republic’ to the Russian Federation. (Gender):Male",Individual,Primary name variation,,Russia,12/09/2014,31/12/2020,16/09/2022,13098 +KARAMI,Hassan,,,,,,,,,,,,Iran,,,,,Commander FARAJA (formerly NAJA) (Police) Special Unit,,,,,,,,,"(UK Sanctions List Ref):IHR0087 (UK Statement of Reasons):There are reasonable grounds to suspect that Hassan KARAMI has been involved in the commission of serious human rights violations in Iran, including being responsible for, engaging in and providing support for the violent suppression of protests through his role as Commander of the NAJA (Police) Special Unit. (Gender):Male",Individual,Primary name,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15600 +KARANIK,Uladzimir,Stsiapanavich,,,,,Уладзiмiр Сцяпанавiч КАРАНIК,,,30/11/1973,Grodno,Former USSR (now Belarus),Belarus,,,,,(1) Governor of the Grodno Oblast (2) Former Minister of Health,,,,,,,,,"(UK Sanctions List Ref):BEL0079 (UK Statement of Reasons):In his former leadership capacity as the Minister of Healthcare, Uladzimir Karanik was responsible for the use of healthcare services to repress peaceful protesters, including using ambulances to transport protesters in need of medical assistance to isolation wards rather than to hospitals. He made numerous public statements criticising the peaceful protests taking place in Belarus and supporting the authorities’ approach. In his current leadership position as the Governor of the Grodno/Hrodna Oblast Karanik continues to support the Lukashenka regime and presides over continuing human rights violations. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14026 +KARANIK,Vladimir,Stepanovich,,,,,Владимир Степанович КАРАНИК,,,30/11/1973,Grodno,Former USSR (now Belarus),Belarus,,,,,(1) Governor of the Grodno Oblast (2) Former Minister of Health,,,,,,,,,"(UK Sanctions List Ref):BEL0079 (UK Statement of Reasons):In his former leadership capacity as the Minister of Healthcare, Uladzimir Karanik was responsible for the use of healthcare services to repress peaceful protesters, including using ambulances to transport protesters in need of medical assistance to isolation wards rather than to hospitals. He made numerous public statements criticising the peaceful protests taking place in Belarus and supporting the authorities’ approach. In his current leadership position as the Governor of the Grodno/Hrodna Oblast Karanik continues to support the Lukashenka regime and presides over continuing human rights violations. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14026 +KARANIR,,,,,,,,,,,,,,,,,,,1139/1 Unit 104 Gol Building,Gol Alley,North Side of Sae,Vali Asr Avenue,PO Box 19395-6439,Tehran,,,(UK Sanctions List Ref):INU0087 (UK Statement of Reasons):Has been involved in purchasing equipment and materials which have direct applications in the Iranian nuclear programme. (Phone number):(1) +98 21 2226 2312 (2) 98 21 22 92 29 74 (Website):(1) www.karanir.com (2) www.iranyell.com/company/16170/KARANIR_CO,Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12257 +KARANIR SANAT CO.,,,,,,,,,,,,,,,,,,,1139/1 Unit 104 Gol Building,Gol Alley,North Side of Sae,Vali Asr Avenue,PO Box 19395-6439,Tehran,,,(UK Sanctions List Ref):INU0087 (UK Statement of Reasons):Has been involved in purchasing equipment and materials which have direct applications in the Iranian nuclear programme. (Phone number):(1) +98 21 2226 2312 (2) 98 21 22 92 29 74 (Website):(1) www.karanir.com (2) www.iranyell.com/company/16170/KARANIR_CO,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12257 +KARA-OOL,Sholban,Valerievich,,,,,Кара-оол Шолбан Валерьевич,,,18/07/1966,Choduraa,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0412 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14357 +KARASIN,Grigory,Borisovich,,,,,Григорий Борисович КАРАСИН,,,23/08/1949,Moscow,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0919 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14870 +KARATE,Mahad,,,,,,,,,00/00/1957,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,Primary name,,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARATE,Mahad,,,,,,,,,00/00/1958,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,Primary name,,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARATE,Mahad,,,,,,,,,00/00/1960,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,Primary name,,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARATE,Mahad,,,,,,,,,00/00/1959,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,Primary name,,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARATE,Mahad,,,,,,,,,00/00/1962,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,Primary name,,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARATE,Mahad,,,,,,,,,00/00/1961,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,Primary name,,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARATE,Mahad,Mohamed,Ali,,,,,,,00/00/1957,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARATE,Mahad,Mohamed,Ali,,,,,,,00/00/1958,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARATE,Mahad,Mohamed,Ali,,,,,,,00/00/1960,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARATE,Mahad,Mohamed,Ali,,,,,,,00/00/1959,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARATE,Mahad,Mohamed,Ali,,,,,,,00/00/1962,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARATE,Mahad,Mohamed,Ali,,,,,,,00/00/1961,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARATE,Mahad,Warsame,Qalley,,,,,,,00/00/1957,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARATE,Mahad,Warsame,Qalley,,,,,,,00/00/1958,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARATE,Mahad,Warsame,Qalley,,,,,,,00/00/1960,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARATE,Mahad,Warsame,Qalley,,,,,,,00/00/1959,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARATE,Mahad,Warsame,Qalley,,,,,,,00/00/1962,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARATE,Mahad,Warsame,Qalley,,,,,,,00/00/1961,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +KARAYEU,Yury,Khadzhimuratavich,,,,,,,,21/06/1966,Ordzhonikidze (now Vladikavkaz),Russia. Former USSR,,,,,,"(1) Former Minister of Internal Affairs of the Republic of Belarus (2) Former Minister of Internal Affairs of the Republic of Belarus,= (3) Major-General of Militia",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0005 and GHR0055 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Karayev was the Minister of Internal Affairs in Belarus and was appointed in June 2019. In this role, Karayev had overall leadership and command of, and was therefore responsible for, the actions of the Internal Troops and Public Security Police in Minsk. Therefore, he is responsible for serious violations of the right not to be subject to CIDT or torture of detained protestors and journalists, carried out by those security forces under his command following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13923 +KARAYEU,Yury,Khadzhimuratavich,,,,,,,,21/06/1966,Ordzhonikidze (now Vladikavkaz),Russia. Former USSR,,,,,,"(1) Former Minister of Internal Affairs of the Republic of Belarus (2) Former Minister of Internal Affairs of the Republic of Belarus,= (3) Major-General of Militia",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0005 and GHR0055 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Karayev was the Minister of Internal Affairs in Belarus and was appointed in June 2019. In this role, Karayev had overall leadership and command of, and was therefore responsible for, the actions of the Internal Troops and Public Security Police in Minsk. Therefore, he is responsible for serious violations of the right not to be subject to CIDT or torture of detained protestors and journalists, carried out by those security forces under his command following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13923 +KARAYEV,Yuri,Khadzimuratavich,,,,,Юрый Хаджымуратавіч Караеў,,,21/06/1966,Ordzhonikidze (now Vladikavkaz),Russia. Former USSR,,,,,,"(1) Former Minister of Internal Affairs of the Republic of Belarus (2) Former Minister of Internal Affairs of the Republic of Belarus,= (3) Major-General of Militia",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0005 and GHR0055 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Karayev was the Minister of Internal Affairs in Belarus and was appointed in June 2019. In this role, Karayev had overall leadership and command of, and was therefore responsible for, the actions of the Internal Troops and Public Security Police in Minsk. Therefore, he is responsible for serious violations of the right not to be subject to CIDT or torture of detained protestors and journalists, carried out by those security forces under his command following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13923 +KARAYEV,Yuri,Khadzimuratavich,,,,,Юрый Хаджымуратавіч Караеў,,,21/06/1966,Ordzhonikidze (now Vladikavkaz),Russia. Former USSR,,,,,,"(1) Former Minister of Internal Affairs of the Republic of Belarus (2) Former Minister of Internal Affairs of the Republic of Belarus,= (3) Major-General of Militia",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0005 and GHR0055 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Karayev was the Minister of Internal Affairs in Belarus and was appointed in June 2019. In this role, Karayev had overall leadership and command of, and was therefore responsible for, the actions of the Internal Troops and Public Security Police in Minsk. Therefore, he is responsible for serious violations of the right not to be subject to CIDT or torture of detained protestors and journalists, carried out by those security forces under his command following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13923 +KARAYEV,Yuri,Khadzimuratovich,,,,,Ю́рий Хаджимура́тович Кара́ев,,,21/06/1966,Ordzhonikidze (now Vladikavkaz),Russia. Former USSR,,,,,,"(1) Former Minister of Internal Affairs of the Republic of Belarus (2) Former Minister of Internal Affairs of the Republic of Belarus,= (3) Major-General of Militia",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0005 and GHR0055 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Karayev was the Minister of Internal Affairs in Belarus and was appointed in June 2019. In this role, Karayev had overall leadership and command of, and was therefore responsible for, the actions of the Internal Troops and Public Security Police in Minsk. Therefore, he is responsible for serious violations of the right not to be subject to CIDT or torture of detained protestors and journalists, carried out by those security forces under his command following the election of 9 August. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13923 +KARAYEV,Yuri,Khadzimuratovich,,,,,Ю́рий Хаджимура́тович Кара́ев,,,21/06/1966,Ordzhonikidze (now Vladikavkaz),Russia. Former USSR,,,,,,"(1) Former Minister of Internal Affairs of the Republic of Belarus (2) Former Minister of Internal Affairs of the Republic of Belarus,= (3) Major-General of Militia",,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0005 and GHR0055 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Karayev was the Minister of Internal Affairs in Belarus and was appointed in June 2019. In this role, Karayev had overall leadership and command of, and was therefore responsible for, the actions of the Internal Troops and Public Security Police in Minsk. Therefore, he is responsible for serious violations of the right not to be subject to CIDT or torture of detained protestors and journalists, carried out by those security forces under his command following the election of 9 August. (Gender):Male",Individual,Primary name,,Global Human Rights,29/09/2020,29/09/2020,18/03/2022,13923 +KARAZEI,Aleh,Heorhievich,,,,,Олег Георгиевич КАРАЗЕЙ,,,01/01/1979,Dzerzhinsky district of the Minsk region,former USSR (now Belarus),,,,,,Head of the Prevention Department of the Main Department of Law Enforcement and Prevention of the Public Security Police of the Ministry of Internal Affairs of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0071 (UK Statement of Reasons):Oleg Karazei is Head of the Prevention Department of the Main Department of Law Enforcement and Prevention of the Public Security Police of the Ministry of Internal Affairs of the Republic of Belarus. In this role, Karazei is responsible for the repression and intimidation of peaceful protesters in the wake of the 2020 presidential election, in particular with arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/03/2022,14043 +KARAZEI,Oleg,Georgevich,,,,,Алег Георгiевiч КАРАЗЕЙ,,,01/01/1979,Dzerzhinsky district of the Minsk region,former USSR (now Belarus),,,,,,Head of the Prevention Department of the Main Department of Law Enforcement and Prevention of the Public Security Police of the Ministry of Internal Affairs of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0071 (UK Statement of Reasons):Oleg Karazei is Head of the Prevention Department of the Main Department of Law Enforcement and Prevention of the Public Security Police of the Ministry of Internal Affairs of the Republic of Belarus. In this role, Karazei is responsible for the repression and intimidation of peaceful protesters in the wake of the 2020 presidential election, in particular with arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/03/2022,14043 +KARAZIEI,Aleh,Heorhievich,,,,,,,,01/01/1979,Dzerzhinsky district of the Minsk region,former USSR (now Belarus),,,,,,Head of the Prevention Department of the Main Department of Law Enforcement and Prevention of the Public Security Police of the Ministry of Internal Affairs of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0071 (UK Statement of Reasons):Oleg Karazei is Head of the Prevention Department of the Main Department of Law Enforcement and Prevention of the Public Security Police of the Ministry of Internal Affairs of the Republic of Belarus. In this role, Karazei is responsible for the repression and intimidation of peaceful protesters in the wake of the 2020 presidential election, in particular with arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/03/2022,14043 +KARELIN,Aleksandr,Alexandrovich,,,,,Александр Александрович КАРЕЛИН,,,19/06/1967,Novosibirsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0982 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14933 +KARELOVA,Galina,Nikolayevna,,,,,Галина Николаевна КАРЕЛОВА,,,29/06/1960,"Nizhnyaya Salda, Sverdlovsk Region",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0929 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14880 +KARGINOV,Sergey,Genrikhovich,,,,,Каргинов Сергей Генрихович,,,05/09/1969,Vologda,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0413 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14358 +KARIM,Abdul,,,,,,,,,06/07/1977,"Cianjur, West Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0180 (UN Ref):QDi.218 Brother of Nurjaman Riduan Isamuddin (QDi.087). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8832 +KARIM,Abu,,,,,,,,,01/03/1961,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +KARIM,Abu,,,,,,,,,16/06/1960,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +KARIM,Yves,Andoul,,,,,,,,20/08/1973,Bunia,Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0045 (UN Ref):CDi.009 Placed in prison in Bunia in April 2005 for sabotage of the Ituri peace process. Arrested by Congolese authorities in October 2005, acquitted by the Court of Appeal in Kisangani, subsequently transferred to the judicial authorities in Kinshasa on new charges of crimes against humanity, war crimes, murder, aggravated assault and battery. In August 2014, a DRC military court in Kisangani convicted him of war crimes and crimes against humanity, sentenced him to nine years in prison, and ordered him to pay approximately $85,000 to his victims. He served his sentence and resides in Uganda as of May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272933. Address country Uganda (as of May 2016). (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8708 +KARIM,,,,,,Haji,,,,00/00/1963,"(1) Spin Boldak District, Kandahar Province (2) Chora District, Uruzgan Province (3) Dehrawood District, Uruzgan Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Minister of Justice under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0046 (UN Ref):TAi.058 Deputy to Mullah Mohammed Omar (TAi.004). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7527 +KARIM,,,,,,Haji,,,,00/00/1955,"(1) Spin Boldak District, Kandahar Province (2) Chora District, Uruzgan Province (3) Dehrawood District, Uruzgan Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Minister of Justice under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0046 (UN Ref):TAi.058 Deputy to Mullah Mohammed Omar (TAi.004). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7527 +KARIM,,,,,,Haji,,,,00/00/1956,"(1) Spin Boldak District, Kandahar Province (2) Chora District, Uruzgan Province (3) Dehrawood District, Uruzgan Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Minister of Justice under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0046 (UN Ref):TAi.058 Deputy to Mullah Mohammed Omar (TAi.004). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7527 +KARIM,MOHAMMED,YUSIP,,,,,,,,11/10/1978,,Indonesia,Indonesia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0248 (UN Ref):QDi.416 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: hair colour: black; build: slight. Speaks Indonesian, Arabic and Mindanao dialect. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244333. Syria, location since 2015",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13708 +KARIMIAN,Ali,,,,,,,,,,,,Iran,,,,,Managing Director,,,,,,,,,(UK Sanctions List Ref):INU0035 (UK Statement of Reasons):An Iranian national known to have supplied goods to UN designated Shahid Hemmat Industries Group (SHIG) and Shahid Bakeri Industries Group (SBIG) (Gender):Male,Individual,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12236 +KARIMULLAH,,,,,,Haji,,,,00/00/1965,"(1) Zumbaleh village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,BP4199631,Pakistan. Expired 25 June 2014. Officially cancelled as of 2013.,5440005229635,Issued in Pakistan. Officially cancelled as of 2013.,,Abdul Manan Chowk,Pashtunabad,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0129 (UN Ref):TAi.163 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan (TAi.162). Belongs to Barakzai tribe. Father’s name is Haji Khudai Nazar. Alternative father’s name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12702 +KARKHANEJATE SANAYE HAVAPAYMAIE IRAN,,,,,,,,,,,,,,,,,,,No. 27 Shahamat Ave.,Vallie asr Square.,,,,Tehran (HESA Tehran Office),15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +KARKHANEJATE SANAYE HAVAPAYMAIE IRAN,,,,,,,,,,,,,,,,,,,P.O. Box 14155 5568,No. 27 Ahahamat Ave.,Vallie Asr Square,,,Tehran,15946,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +KARKHANEJATE SANAYE HAVAPAYMAIE IRAN,,,,,,,,,,,,,,,,,,,P.O. Box 8140,No. 107 Sepahbod Gharany Ave.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +KARKHANEJATE SANAYE HAVAPAYMAIE IRAN,,,,,,,,,,,,,,,,,,,P.O. Box 83145 311,28 km Esfahan Tehran Freeway,Shain Shahr,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +KARKHANEJATE SANAYE HAVAPAYMAIE IRAN,,,,,,,,,,,,,,,,,,,P.O. Box81465 935,,,,,Esfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +KARKHANEJATE SANAYE HAVAPAYMAIE IRAN,,,,,,,,,,,,,,,,,,,Shahih Shar Industrial Zone,,,,,Isfahan,,Iran,(UK Sanctions List Ref):INU0071 (UK Statement of Reasons):Owned or controlled by MODAFL as a subsidiary of Iranian Aviation Industries Organisation (IAIO). (Phone number):(312)5224910 20. (9831)229737. (9831)229738. (98329)324903 (Fax). 0312 5227368. 031252273 (Fax). 98(21)8806478. 98(21)8892488. 98(21)8904388. 98(311)2220101. 98(311)22214219 (Fax). 98(311)2222028. 98(311)2222204. 98218807565. 98218828355 (Email address):info@hesaco.com (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL),Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11199 +KARKWEYE PYITSU SETYOUN,,,,,,,,,,,,,,,,,,,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0032 (UK Statement of Reasons):The Myanmar military seized power from civilian leaders on 1 February in a coup d’état and established a military junta. The Myanmar security forces have committed serious human rights violations since 1 February 2021 and are responsible for the repression of the civilian population. The Directorate for Defence Industries (DDI) is a state-owned enterprise which operates under the Ministry of Defence (MOD). There are reasonable grounds to suspect that DDI is or has been involved in undermining democracy, the rule of law or good governance in Myanmar and the repression of the civilian population in Myanmar by its involvement in the supply to Myanmar of goods or technology which could contribute to a serious human rights violation or abuse. Further, there are reasonable grounds to suspect that DDI, as a state-owned enterprise subservient to the MOD, is acting on behalf or at the direction of the Minister of Defence, General Mya Tun Oo, who has been involved in undermining democracy, the rule of law or good governance in Myanmar and the repression of the civilian population in Myanmar, and is designated by the UK’s Myanmar sanctions regime. (Type of entity):Public Company",Entity,AKA,,Myanmar,10/12/2021,10/12/2021,11/11/2022,14165 +KARLIN,Alexander,Bogdanovich,,,,,Александр Богданович КАРЛИН,,,29/10/1951,"Medvedka, Tyumentsevsky district, Altai Territory",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0885 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14836 +KARLOV,Gennady,Vyacheslavovich,,,,,,,,27/02/1960,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0004 (UK Statement of Reasons):Gennady Karlov, as the Head of the Department of Ownership and Financial Crimes in the Investigative Committee of the Russian Ministry of Interior, was involved in the mistreatment of Sergei Magnitsky whilst in detention, which contributed significantly to his death. Karlov was part of a ‘team’ of investigators who failed to investigate complaints made by Magnitsky about his mistreatment and approved actions to conceal evidence relating to subordinates who were directly involved in that conduct. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13856 +KARLOV,Georgy,Alexandrovich,,,,,Карлов Георгий Александрович,,,04/01/1971,Yuzhno-Sakhalinsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0414 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14359 +KARMAZINA,Raisa,Vasilievna,,,,,Кармазина Раиса Васильевна,,,09/01/1951,Rostov-on-Don,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0415 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14360 +KARPENKOV,Mikalai,,,,,,,,,06/09/1968,Minsk,Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops,,,,,,,,,"(UK Sanctions List Ref):BEL0105 (UK Statement of Reasons):Nikolai Karpenkov is the Deputy Minister of Internal Affairs and Commander of Internal Troops and former Head of the Main Directorate for Combating Organised Crime and Corruption. In both roles, he has engaged in and supported human rights violations and the repression of civil society in Belarus. In his current role, he is responsible for the actions of officers of the Ministry of Internal Affairs and Internal Troops and therefore responsible for serious human rights violations and abuses against detained protestors and journalists, which have taken placed since Karpenkov assumed this role in November 2020. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14122 +KARPENKOV,Nikolai,,,,,,Мікалай Карпянкоў,,,06/09/1968,Minsk,Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops,,,,,,,,,"(UK Sanctions List Ref):BEL0105 (UK Statement of Reasons):Nikolai Karpenkov is the Deputy Minister of Internal Affairs and Commander of Internal Troops and former Head of the Main Directorate for Combating Organised Crime and Corruption. In both roles, he has engaged in and supported human rights violations and the repression of civil society in Belarus. In his current role, he is responsible for the actions of officers of the Ministry of Internal Affairs and Internal Troops and therefore responsible for serious human rights violations and abuses against detained protestors and journalists, which have taken placed since Karpenkov assumed this role in November 2020. (Gender):Male",Individual,Primary name,,Belarus,21/06/2021,21/06/2021,21/06/2021,14122 +KARPENKOV,Nikolay,,,,,,Николай Карпенков,,,06/09/1968,Minsk,Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops,,,,,,,,,"(UK Sanctions List Ref):BEL0105 (UK Statement of Reasons):Nikolai Karpenkov is the Deputy Minister of Internal Affairs and Commander of Internal Troops and former Head of the Main Directorate for Combating Organised Crime and Corruption. In both roles, he has engaged in and supported human rights violations and the repression of civil society in Belarus. In his current role, he is responsible for the actions of officers of the Ministry of Internal Affairs and Internal Troops and therefore responsible for serious human rights violations and abuses against detained protestors and journalists, which have taken placed since Karpenkov assumed this role in November 2020. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14122 +KARPIANKOU,Mikalai,,,,,,,,,06/09/1968,Minsk,Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops,,,,,,,,,"(UK Sanctions List Ref):BEL0105 (UK Statement of Reasons):Nikolai Karpenkov is the Deputy Minister of Internal Affairs and Commander of Internal Troops and former Head of the Main Directorate for Combating Organised Crime and Corruption. In both roles, he has engaged in and supported human rights violations and the repression of civil society in Belarus. In his current role, he is responsible for the actions of officers of the Ministry of Internal Affairs and Internal Troops and therefore responsible for serious human rights violations and abuses against detained protestors and journalists, which have taken placed since Karpenkov assumed this role in November 2020. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14122 +KARPIANKOU,Nikolai,,,,,,,,,06/09/1968,Minsk,Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops,,,,,,,,,"(UK Sanctions List Ref):BEL0105 (UK Statement of Reasons):Nikolai Karpenkov is the Deputy Minister of Internal Affairs and Commander of Internal Troops and former Head of the Main Directorate for Combating Organised Crime and Corruption. In both roles, he has engaged in and supported human rights violations and the repression of civil society in Belarus. In his current role, he is responsible for the actions of officers of the Ministry of Internal Affairs and Internal Troops and therefore responsible for serious human rights violations and abuses against detained protestors and journalists, which have taken placed since Karpenkov assumed this role in November 2020. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14122 +KARPIANKOU,Nikolay,,,,,,,,,06/09/1968,Minsk,Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops,,,,,,,,,"(UK Sanctions List Ref):BEL0105 (UK Statement of Reasons):Nikolai Karpenkov is the Deputy Minister of Internal Affairs and Commander of Internal Troops and former Head of the Main Directorate for Combating Organised Crime and Corruption. In both roles, he has engaged in and supported human rights violations and the repression of civil society in Belarus. In his current role, he is responsible for the actions of officers of the Ministry of Internal Affairs and Internal Troops and therefore responsible for serious human rights violations and abuses against detained protestors and journalists, which have taken placed since Karpenkov assumed this role in November 2020. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14122 +KARPOV,Pavel,Aleksandrovich,,,,,Павел Александрович КАРПОВ,,,27/08/1977,Moscow,Russia,Russia,604176957,Likely expired,,,(1) Formerly described as Investigator of the Investigative Unit of the Moscow branch of the Interior Ministry (2) Senior Investigating Officer for Major Cases. Retired July 2012,,,,,,,,,"(UK Sanctions List Ref):GAC0002 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of US$ 230 million of Russian state property via a complex scheme involving a fraudulent tax rebate. KARPOV participated in the fraud through his role as an investigator of alleged tax fraud by the Kameya company. His actions facilitated or provided support for serious corruption, and he benefited financially from the proceeds of the serious corruption. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14094 +KARPOV,Pavel,Alexandrovich,,,,,,,,27/08/1977,Moscow,Russia,Russia,604176957,Likely expired,,,(1) Formerly described as Investigator of the Investigative Unit of the Moscow branch of the Interior Ministry (2) Senior Investigating Officer for Major Cases. Retired July 2012,,,,,,,,,"(UK Sanctions List Ref):GAC0002 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of US$ 230 million of Russian state property via a complex scheme involving a fraudulent tax rebate. KARPOV participated in the fraud through his role as an investigator of alleged tax fraud by the Kameya company. His actions facilitated or provided support for serious corruption, and he benefited financially from the proceeds of the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14094 +KARPOV,Anatoly,Evgenievich,,,,,Карпов Анатолий Евгеньевич,,,23/05/1951,Zlatoust,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0416 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14361 +KARTAPOLOV,Andrei,Valeryevich,,,,,Андрей Валерьевич КАРТAПOЛOВ,,,09/11/1963,,Former German Democratic Republic,,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0115 (UK Statement of Reasons):Former Commander of the Western Military District Headquarters until June 2014 and Former Commander of the Western Military District from June 2014 to July 2018. Former Director of the Main Operations Department and deputy chief of the General Staff of the Armed Forces of the Russian Federation. Actively involved in shaping and implementing the military campaign of the Russian forces in Ukraine. According to the stated activities of the general staff, by exercising operational control over the armed forces, he is actively involved in shaping and implementing the Russian government policy threatening the territorial integrity, sovereignty and independence of Ukraine. Deputy Defence Minister July 2018 to October 2021. Currently Head of the State Duma Defence Committee. (Gender):Male",Individual,Primary name,,Russia,16/02/2015,31/12/2020,16/09/2022,13215 +KARYAKIN,Aleksey,Vyacheslavovich,,,,,Алексей Вячеславович КАРЯКИН,,Russian,07/04/1979,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0116 (UK Statement of Reasons):Until 25 March 2016 so called ""Supreme Council Chair of the People's Republic of Luhansk"". Responsible for the separatist ""governmental"" activities of the ""Supreme Council"", responsible for asking the Russian Federation to recognise the independence of the ""Lugansk People's Republic"". Signatory of the Memorandum of Understanding on the ""Novorossiya union"". Remains active in supporting separatist actions or policies. Former member of the so-called 'People's Council of the Luhansk People's Republic.' Currently Chairman of the so-called 'Public Chamber of the Luhansk People's Republic.'",Individual,Primary name,,Russia,12/07/2014,31/12/2020,16/09/2022,13015 +KARYAKIN,Aleksey,Vyacheslavovich,,,,,Алексей Вячеславович КАРЯКИН,,Russian,07/04/1980,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0116 (UK Statement of Reasons):Until 25 March 2016 so called ""Supreme Council Chair of the People's Republic of Luhansk"". Responsible for the separatist ""governmental"" activities of the ""Supreme Council"", responsible for asking the Russian Federation to recognise the independence of the ""Lugansk People's Republic"". Signatory of the Memorandum of Understanding on the ""Novorossiya union"". Remains active in supporting separatist actions or policies. Former member of the so-called 'People's Council of the Luhansk People's Republic.' Currently Chairman of the so-called 'Public Chamber of the Luhansk People's Republic.'",Individual,Primary name,,Russia,12/07/2014,31/12/2020,16/09/2022,13015 +KARYAKIN,Oleksiy,Vyacheslavovych,,,,,Олексій В'ячеславович КАРЯКІН,,Ukrainian,07/04/1979,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0116 (UK Statement of Reasons):Until 25 March 2016 so called ""Supreme Council Chair of the People's Republic of Luhansk"". Responsible for the separatist ""governmental"" activities of the ""Supreme Council"", responsible for asking the Russian Federation to recognise the independence of the ""Lugansk People's Republic"". Signatory of the Memorandum of Understanding on the ""Novorossiya union"". Remains active in supporting separatist actions or policies. Former member of the so-called 'People's Council of the Luhansk People's Republic.' Currently Chairman of the so-called 'Public Chamber of the Luhansk People's Republic.'",Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,16/09/2022,13015 +KARYAKIN,Oleksiy,Vyacheslavovych,,,,,Олексій В'ячеславович КАРЯКІН,,Ukrainian,07/04/1980,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0116 (UK Statement of Reasons):Until 25 March 2016 so called ""Supreme Council Chair of the People's Republic of Luhansk"". Responsible for the separatist ""governmental"" activities of the ""Supreme Council"", responsible for asking the Russian Federation to recognise the independence of the ""Lugansk People's Republic"". Signatory of the Memorandum of Understanding on the ""Novorossiya union"". Remains active in supporting separatist actions or policies. Former member of the so-called 'People's Council of the Luhansk People's Republic.' Currently Chairman of the so-called 'Public Chamber of the Luhansk People's Republic.'",Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,16/09/2022,13015 +KASATONOV,Vladimir,Lvovich,,,,Vice-Admiral,КАСАТОНОВ Владимир Львович,,,17/06/1952,Moscow,Russia,Russia,,,,,Deputy Commander-in-Chief Navy of the Russian Federation,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0695 (UK Statement of Reasons):Vice-Admiral Vladimir KASATONOV is the Deputy Commander-in-Chief of the Navy of the Russian Federation. It is known that elements of the Russian Navy have been heavily involved in the ongoing invasion of Ukraine by Russia, including conducting missile strikes on cities and launching amphibious assaults. As Deputy Commander-in-Chief, there are reasonable grounds to suspect that Vice-Admiral KASATONOV will have directed operations against Ukraine by the Russian Navy and/or otherwise have had responsibility for, involvement in and influence over such operations. He has also been utilised as a special envoy to garner support for the Russian invasion of Ukraine. He is therefore a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14646 +KASHIN,Vladimir,Ivanovich,,,,,Кашин Владимир Иванович,,,10/08/1948,Nazarevo,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0419 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14364 +KASHINA,Irina,Nikoalyevna,,,,,Ирина Николаевна Кашина,Cyrillic,Russian,27/07/1956,,,Russia,,,,,Vice Chairman of the Management Board of SOVCOMBANK,,,,,,,,,"(UK Sanctions List Ref):RUS1024 (UK Statement of Reasons):Irina Nikoalyevna KASHINA is a Vice Chairman of the Management Board of SOVCOMBANK. In her role, KASHINA is a member of and associated with SOVCOMBANK. SOVCOMBANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Female",Individual,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15356 +KASHLAF,,,,,,,,,,02/12/1985,Zawiya,Libya,Libya,C17HLRL3,Issued in Zawiya on 30 Dec 2015,,,(1) Commander of the Shuhada al-Nasr brigade (2) Head of the Petrol Refinery Guard of Zawiya’s refinery,,,,,,Zawiya,,Libya,"(UK Sanctions List Ref):LIB0055 (UN Ref):LYi.025 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13675 +KASHLAF,Mohammed,al Amin,al-Arabi,,,,محمد الأمين العربي كشلاف,,,02/12/1985,Zawiya,Libya,Libya,C17HLRL3,Issued in Zawiya on 30 Dec 2015,,,(1) Commander of the Shuhada al-Nasr brigade (2) Head of the Petrol Refinery Guard of Zawiya’s refinery,,,,,,Zawiya,,Libya,"(UK Sanctions List Ref):LIB0055 (UN Ref):LYi.025 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)",Individual,Primary name,,Libya,08/06/2018,07/06/2018,21/01/2021,13675 +KASIANCHYK,Alina,Sergeevna,,,,,,,,12/03/1998,,,Belarus,,,,,Former Assistant Prosecutor at the Frunzensky District Court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0113 (UK Statement of Reasons):In her former position as assistant prosecutor at the Fruzensky District Court in Minsk, Alina Sergeevna KASYANCHYK has represented the Lukashenko regime in politically motivated cases against journalists, activists and protesters. In particular, she has prosecuted BelSat journalists Katsiaryna Bakhvalava (Andreyeva) and Darya Chultsova for live streaming peaceful protests, based on the unwarrented charges of “conspiracy” and “violating public order”. She has also prosecuted members of Belarusian civil society e.g. for taking parts in peaceful protests, and paying tribute to murdered protester Aliaksandr Taraikousky. She has consistently asked the judge for disproportionately long-term prison sentences. KASYANCHYK therefore is or has been involved in undermining democracy and the rule of law in Belarus, repressing civil society and the democratic opposition in Belarus, and for serious human rights violations. (Gender):Female",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,13/04/2022,14156 +KASIANCHYK,Alina,Siarhiejeuna,,,,,Аліна Сяргееўна КАСЬЯНЧЫК,,,12/03/1998,,,Belarus,,,,,Former Assistant Prosecutor at the Frunzensky District Court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0113 (UK Statement of Reasons):In her former position as assistant prosecutor at the Fruzensky District Court in Minsk, Alina Sergeevna KASYANCHYK has represented the Lukashenko regime in politically motivated cases against journalists, activists and protesters. In particular, she has prosecuted BelSat journalists Katsiaryna Bakhvalava (Andreyeva) and Darya Chultsova for live streaming peaceful protests, based on the unwarrented charges of “conspiracy” and “violating public order”. She has also prosecuted members of Belarusian civil society e.g. for taking parts in peaceful protests, and paying tribute to murdered protester Aliaksandr Taraikousky. She has consistently asked the judge for disproportionately long-term prison sentences. KASYANCHYK therefore is or has been involved in undermining democracy and the rule of law in Belarus, repressing civil society and the democratic opposition in Belarus, and for serious human rights violations. (Gender):Female",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,13/04/2022,14156 +KASINSKY,Leonid,Viktorovich,,,,Major General,КАСИНСКИЙ Леонид Викторович,Cyrillic,,29/06/1972,Grodno,Belarus,Belarus,,,,,Assistant to the Minister of Defence for Ideological Work,,,,,,,,,"(UK Sanctions List Ref):RUS0730 (UK Statement of Reasons):Major General Leonid Viktorovich KASINSKY has been involved in engaging in and providing support for policies and actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely the Government of Belarus’s policy of support for Russia’s invasion of Ukraine, and the involvement of the Belarusian military in a joint exercise with the Russian military ahead of Russia’s invasion of Ukraine which: (1) threatened Ukraine; and (2) provided cover for Russian military preparations to invade Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14681 +KASKAR,Daud,Hasan,Shaikh,Ibrahim,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +KASKAR,Daud,Hasan,Shaikh,Ibrahim,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +KASKAR,Daud,Hasan,Shaikh,Ibrahim,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +KASKAR,Daud,Ibrahim,Memon,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +KASKAR,Daud,Ibrahim,Memon,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +KASKAR,Daud,Ibrahim,Memon,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +KASKAR,Dawood,Hasan,Ibrahim,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +KASKAR,Dawood,Hasan,Ibrahim,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +KASKAR,Dawood,Hasan,Ibrahim,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +KASKAR,DAWOOD,IBRAHIM,,,,Sheikh,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +KASKAR,DAWOOD,IBRAHIM,,,,Sheikh,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +KASKAR,DAWOOD,IBRAHIM,,,,Sheikh,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +KASOUHA,Michel,,,,,,,,,01/02/1948,,,,,,,,General Intelligence Directorate Brigadier General,,,,,,,,,(UK Sanctions List Ref):SYR0247 (UK Statement of Reasons):Brigadier General in the General Intelligence Directorate. (Gender):Male,Individual,AKA,,Syria,24/07/2012,31/12/2020,31/12/2020,12725 +KASSOUHA,Michel,,,,,,,,,01/02/1948,,,,,,,,General Intelligence Directorate Brigadier General,,,,,,,,,(UK Sanctions List Ref):SYR0247 (UK Statement of Reasons):Brigadier General in the General Intelligence Directorate. (Gender):Male,Individual,Primary name,,Syria,24/07/2012,31/12/2020,31/12/2020,12725 +KASTYUKEVICH,Igor,Yurievich,,,,,Кастюкевич Игорь Юрьевич,,,06/12/1976,Saratov,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0417 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14362 +KASYANCHUK,Alina,Siarhiejeuna,,,,,Alina Siarhiejeŭna KASYANCHUK,,,12/03/1998,,,Belarus,,,,,Former Assistant Prosecutor at the Frunzensky District Court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0113 (UK Statement of Reasons):In her former position as assistant prosecutor at the Fruzensky District Court in Minsk, Alina Sergeevna KASYANCHYK has represented the Lukashenko regime in politically motivated cases against journalists, activists and protesters. In particular, she has prosecuted BelSat journalists Katsiaryna Bakhvalava (Andreyeva) and Darya Chultsova for live streaming peaceful protests, based on the unwarrented charges of “conspiracy” and “violating public order”. She has also prosecuted members of Belarusian civil society e.g. for taking parts in peaceful protests, and paying tribute to murdered protester Aliaksandr Taraikousky. She has consistently asked the judge for disproportionately long-term prison sentences. KASYANCHYK therefore is or has been involved in undermining democracy and the rule of law in Belarus, repressing civil society and the democratic opposition in Belarus, and for serious human rights violations. (Gender):Female",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,13/04/2022,14156 +KASYANCHYK,Alina,Sergeevna,,,,,Алина Сергеевна КАСЬЯНЧИК,,,12/03/1998,,,Belarus,,,,,Former Assistant Prosecutor at the Frunzensky District Court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0113 (UK Statement of Reasons):In her former position as assistant prosecutor at the Fruzensky District Court in Minsk, Alina Sergeevna KASYANCHYK has represented the Lukashenko regime in politically motivated cases against journalists, activists and protesters. In particular, she has prosecuted BelSat journalists Katsiaryna Bakhvalava (Andreyeva) and Darya Chultsova for live streaming peaceful protests, based on the unwarrented charges of “conspiracy” and “violating public order”. She has also prosecuted members of Belarusian civil society e.g. for taking parts in peaceful protests, and paying tribute to murdered protester Aliaksandr Taraikousky. She has consistently asked the judge for disproportionately long-term prison sentences. KASYANCHYK therefore is or has been involved in undermining democracy and the rule of law in Belarus, repressing civil society and the democratic opposition in Belarus, and for serious human rights violations. (Gender):Female",Individual,Primary name,,Belarus,02/12/2021,02/12/2021,13/04/2022,14156 +KASYANCHYK,Alina,Siarhiejeuna,,,,,,,,12/03/1998,,,Belarus,,,,,Former Assistant Prosecutor at the Frunzensky District Court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0113 (UK Statement of Reasons):In her former position as assistant prosecutor at the Fruzensky District Court in Minsk, Alina Sergeevna KASYANCHYK has represented the Lukashenko regime in politically motivated cases against journalists, activists and protesters. In particular, she has prosecuted BelSat journalists Katsiaryna Bakhvalava (Andreyeva) and Darya Chultsova for live streaming peaceful protests, based on the unwarrented charges of “conspiracy” and “violating public order”. She has also prosecuted members of Belarusian civil society e.g. for taking parts in peaceful protests, and paying tribute to murdered protester Aliaksandr Taraikousky. She has consistently asked the judge for disproportionately long-term prison sentences. KASYANCHYK therefore is or has been involved in undermining democracy and the rule of law in Belarus, repressing civil society and the democratic opposition in Belarus, and for serious human rights violations. (Gender):Female",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,13/04/2022,14156 +KATAEV,Aiub,,,,,,,,,,,,Russia,,,,,Head of the Ministry of Internal Affairs of the Chechen Republic of the Russian Federation in Argun,,,,,,,,,"(UK Sanctions List Ref):GHR0065 (UK Statement of Reasons):Aiub Kataev is Head of the Ministry of Internal Affairs of the Russian Federation in Argun, of the Chechen Republic. In this role, Kataev has responsibility for the activities of state security and police agencies, including their involvement in the mass arrest, use of CIDT or torture, and murder of LGBT Chechens since 2017. (Gender):Male",Individual,Primary name,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14006 +KATAN,Mohammad,Safwan,,,,,,,,,,,,,,,,SSRC Worker,,,,,,,,,"(UK Sanctions List Ref):SYR0147 Associations with SSRC (UK Statement of Reasons):Mohammad Safwan Katan is an engineer at the Syrian Scientific Studies and Research Centre, a listed entity. He is involved in chemical weapons proliferation and delivery. Mohammad Safwan Katan has been involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name,,Syria,18/07/2017,31/12/2020,31/12/2020,13501 +KATANGA,Kalev,,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +KATANGA,Kalev,Katanga,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +KATANGA,Kalev,Mutondo,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +KATANGA,GERMAIN,,,,,,,,,28/04/1978,"Mambasa, Ituri Province",Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0034 (UN Ref):CDi.006 Appointed General in the FARDC in December 2004. Handed over by the Government of the DRC to the International Criminal Court on 18 October 2007. Initially convicted on 23 May 2014 by the ICC to 12 years in prison for war crimes and crimes against humanity, the ICC Appeals Chamber reduced his sentence and determined that Katanga’s sentence should be completed on 18 January 2016. Although he was detained in the Netherlands for the duration of his trial, Katanga was transferred to a DRC prison in December 2015 and charged for other crimes previously committed in Ituri. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776116",Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8735 +KATARJI,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0359 Hussam AL-QATIRJI, CEO (EU-designated) Ultimate beneficial owner(s): Hussam AL-QATIRJI, Muhammad Baraa QATERJI (EU-designated) Relatives/business associates/entities or partners/links: Arvada/Arfada Petroleum Company JSC Registered address or each jurisdiction): Mazzah, Damascus, Syria (UK Statement of Reasons):Prominent and influential company operating across multiple sectors of the Syrian economy. By facilitating fuel, arms and ammunition trade towards between the regime and various actors including ISIS (Daesh) under the pretext of importing and exporting food items, supporting militias fighting alongside the regime and taking advantage of its ties with the regime to expand its commercial activity, Al Qatarji Company – whose board is headed by designated person Hossam Qatarji, a member of the Syrian People’s Assembly – supports and benefits from the Syrian regime. (Type of entity):Export. Import. Supplying oil and commodities. Trucking company (Subsidiaries):Arvada/Arfada Petroleum Company JSC",Entity,AKA,,Syria,17/02/2020,31/12/2020,13/05/2022,13822 +KATARJI,Abu,al-Bara,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KATARJI,Bara,,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KATARJI,Bara,Ahmad,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KATARJI,Muhammad,,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KATARJI,Muhammad,Bara,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KATARJI,Muhammad,Bara,Ahmad,Rushdi,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KATARJI,Muhammad,Nur,al-Din,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KATEHON,,,,,,,,,,,,,,,,,,,ul. Gorbunova d. 2,str. 3,e 9 pom II of 89,,,Moscow,121596,Russia,"(UK Sanctions List Ref):RUS1407 Organization Established Date 11 Feb 2016 (UK Statement of Reasons):ANALITICHESKI TSENTR KATEKHON OOO (a.k.a. KATEHON) is a think tank and website involved in the spread of propaganda and disinformation. Through articles on its website it is regularly engaged in providing support for and promoting policies and action which destabilise Ukraine and undermine and threaten its territorial integrity, sovereignty and independence. (Website):https://katehon.com/ (Email address):editor@katehon.com (Type of entity):Limited liability company (Business Reg No):1167746154432 (Russia). Tax ID No. 9710007769 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,24/06/2022,15327 +KATEKHON,,,,,,,,,,,,,,,,,,,ul. Gorbunova d. 2,str. 3,e 9 pom II of 89,,,Moscow,121596,Russia,"(UK Sanctions List Ref):RUS1407 Organization Established Date 11 Feb 2016 (UK Statement of Reasons):ANALITICHESKI TSENTR KATEKHON OOO (a.k.a. KATEHON) is a think tank and website involved in the spread of propaganda and disinformation. Through articles on its website it is regularly engaged in providing support for and promoting policies and action which destabilise Ukraine and undermine and threaten its territorial integrity, sovereignty and independence. (Website):https://katehon.com/ (Email address):editor@katehon.com (Type of entity):Limited liability company (Business Reg No):1167746154432 (Russia). Tax ID No. 9710007769 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,24/06/2022,15327 +KATERJI GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0359 Hussam AL-QATIRJI, CEO (EU-designated) Ultimate beneficial owner(s): Hussam AL-QATIRJI, Muhammad Baraa QATERJI (EU-designated) Relatives/business associates/entities or partners/links: Arvada/Arfada Petroleum Company JSC Registered address or each jurisdiction): Mazzah, Damascus, Syria (UK Statement of Reasons):Prominent and influential company operating across multiple sectors of the Syrian economy. By facilitating fuel, arms and ammunition trade towards between the regime and various actors including ISIS (Daesh) under the pretext of importing and exporting food items, supporting militias fighting alongside the regime and taking advantage of its ties with the regime to expand its commercial activity, Al Qatarji Company – whose board is headed by designated person Hossam Qatarji, a member of the Syrian People’s Assembly – supports and benefits from the Syrian regime. (Type of entity):Export. Import. Supplying oil and commodities. Trucking company (Subsidiaries):Arvada/Arfada Petroleum Company JSC",Entity,AKA,,Syria,17/02/2020,31/12/2020,13/05/2022,13822 +KATHIM,Rashid,Taan,,,,,رشيد طعان كاظم,,,,,,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0110 (UN Ref):IQi.049,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7616 +KATIBAT ANSAR AL CHARIA,,,,,,,كتيبة أنصار الشريعة,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0030 (UN Ref):QDe.146,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/11/2014,19/11/2014,31/12/2020,13188 +KATIRJI COMPANY,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0359 Hussam AL-QATIRJI, CEO (EU-designated) Ultimate beneficial owner(s): Hussam AL-QATIRJI, Muhammad Baraa QATERJI (EU-designated) Relatives/business associates/entities or partners/links: Arvada/Arfada Petroleum Company JSC Registered address or each jurisdiction): Mazzah, Damascus, Syria (UK Statement of Reasons):Prominent and influential company operating across multiple sectors of the Syrian economy. By facilitating fuel, arms and ammunition trade towards between the regime and various actors including ISIS (Daesh) under the pretext of importing and exporting food items, supporting militias fighting alongside the regime and taking advantage of its ties with the regime to expand its commercial activity, Al Qatarji Company – whose board is headed by designated person Hossam Qatarji, a member of the Syrian People’s Assembly – supports and benefits from the Syrian regime. (Type of entity):Export. Import. Supplying oil and commodities. Trucking company (Subsidiaries):Arvada/Arfada Petroleum Company JSC",Entity,AKA,,Syria,17/02/2020,31/12/2020,13/05/2022,13822 +KATSAVALOV,Evgeny,Anatolievich,,,,,КАЦАВАЛОВ Евгений Анатольевич,Cyrillic,Russian,11/02/1972,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1160 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15112 +KATSUBA,Svetlana,Petrovna,,,,,,,,06/08/1959,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0039 (UK Statement of Reasons):Sviatlana Katsuba is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13964 +KATSUBA,Sviatlana,Piatrouna,,,,,Святлана Пятроўна КАЦУБА,,,06/08/1959,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0039 (UK Statement of Reasons):Sviatlana Katsuba is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Female",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,31/12/2020,13964 +KATSUBO,Svetlana,Petrovna,,,,,,,,06/08/1959,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0039 (UK Statement of Reasons):Sviatlana Katsuba is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13964 +KATSUBO,Sviatlana,Piatrouna,,,,,,,,06/08/1959,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0039 (UK Statement of Reasons):Sviatlana Katsuba is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13964 +KAUROV,Valery,Vladimirovich,,,,,,,,02/04/1956,Odessa,,Ukraine,,,,,"Self described ""President"" of the ""Republic of Novorossiya"".",,,,,,,,,"(UK Sanctions List Ref):RUS0117 (UK Statement of Reasons):The self-described 'president' of the 'Republic of Novorossiay' who has called on Russia to deploy troops to Ukraine. In taking on and acting in this capacity he has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Remains active in supporting separatist actions and policies. (Gender):Male",Individual,Primary name,,Russia,25/07/2014,31/12/2020,31/12/2020,13065 +KAVEH CUTTING TOOLS COMPANY,,,,,,,,,,,,,,,,,,,,,,,P.O.Box 91735-549,Mashad,,Iran,"(UK Sanctions List Ref):INU0156 (UN Ref):IRe.034 Owned or controlled by, or acts on behalf of, DIO. [Old Reference # E.29.I.7] (Parent company):Defence Industries Organisation (DIO)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11126 +KAVEH CUTTING TOOLS COMPANY,,,,,,,,,,,,,,,,,,,,,,Khalaj Rd.,End of Seyyedi Alley,Mashad,,Iran,"(UK Sanctions List Ref):INU0156 (UN Ref):IRe.034 Owned or controlled by, or acts on behalf of, DIO. [Old Reference # E.29.I.7] (Parent company):Defence Industries Organisation (DIO)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11126 +KAVEH CUTTING TOOLS COMPANY,,,,,,,,,,,,,,,,,,,,,,Km 4 of Khalaj Road,End of Seyedi Street,Mashad,,Iran,"(UK Sanctions List Ref):INU0156 (UN Ref):IRe.034 Owned or controlled by, or acts on behalf of, DIO. [Old Reference # E.29.I.7] (Parent company):Defence Industries Organisation (DIO)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11126 +KAVEH CUTTING TOOLS COMPANY,,,,,,,,,,,,,,,,,,,,,3rd Km of Khalaj Road,Seyyedi Street,,Mashad,91638,Iran,"(UK Sanctions List Ref):INU0156 (UN Ref):IRe.034 Owned or controlled by, or acts on behalf of, DIO. [Old Reference # E.29.I.7] (Parent company):Defence Industries Organisation (DIO)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11126 +KAVEH CUTTING TOOLS COMPANY,,,,,,,,,,,,,,,,,,,,,Moqan St.,Pasdaran St.,Pasdaran Cross Rd.,Tehran,,Iran,"(UK Sanctions List Ref):INU0156 (UN Ref):IRe.034 Owned or controlled by, or acts on behalf of, DIO. [Old Reference # E.29.I.7] (Parent company):Defence Industries Organisation (DIO)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11126 +KAVINOV,Artem,Alexandrovich,,,,,Кавинов Артем Александрович,,,03/09/1969,Gorky,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0404 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14349 +KAWA,,,,,,,,,,20/08/1973,Bunia,Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0045 (UN Ref):CDi.009 Placed in prison in Bunia in April 2005 for sabotage of the Ituri peace process. Arrested by Congolese authorities in October 2005, acquitted by the Court of Appeal in Kisangani, subsequently transferred to the judicial authorities in Kinshasa on new charges of crimes against humanity, war crimes, murder, aggravated assault and battery. In August 2014, a DRC military court in Kisangani convicted him of war crimes and crimes against humanity, sentenced him to nine years in prison, and ordered him to pay approximately $85,000 to his victims. He served his sentence and resides in Uganda as of May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272933. Address country Uganda (as of May 2016). (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8708 +KAZAKEVICH,GENADZ,ARKADZIEVICH,,,,,"КАЗАКЕВИЧ, Геннадий Аркадьевич",,,14/02/1975,Minsk,Belarus,Belarus,,,,,(1) First Deputy Minister of the Ministry of Internal Affairs (2) Chief of the Criminal Militia,,,,,,,,,"(UK Sanctions List Ref):BEL0006 (UK Statement of Reasons):Kazakevich is the First Deputy Minister of Internal Affairs and Head of the Criminal Police. In his role as Deputy Internal Minister and Head of the Criminal Police, he is responsible for the actions of the Ministry of the Interior and Criminal Police, and therefore responsible for the serious human rights violations and abuses of detained protestors and journalists, which were carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,31/12/2020,13932 +KAZAKEVICH,Gennadi,Arkadievich,,,,,"КАЗАКЕВIЧ, Генадзь Аркадзьевіч",,,14/02/1975,Minsk,Belarus,Belarus,,,,,(1) First Deputy Minister of the Ministry of Internal Affairs (2) Chief of the Criminal Militia,,,,,,,,,"(UK Sanctions List Ref):BEL0006 (UK Statement of Reasons):Kazakevich is the First Deputy Minister of Internal Affairs and Head of the Criminal Police. In his role as Deputy Internal Minister and Head of the Criminal Police, he is responsible for the actions of the Ministry of the Interior and Criminal Police, and therefore responsible for the serious human rights violations and abuses of detained protestors and journalists, which were carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13932 +KAZAKH JAMA'AT,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0051 (UN Ref):QDe.119 Founded and led by Najmiddin Kamolitdinovich Jalolov (deceased) and Suhayl Fatilloevich Buranov (deceased). Associated with the Islamic Movement of Uzbekistan (QDe.010) and Emarat Kavkaz (QDe.131). Active in the Afghanistan/Pakistan border area, Central Asia, South Asia region and some European States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278465",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,06/06/2005,01/06/2005,31/12/2020,8652 +KAZAKOV,Viktor,Alekseevich,,,,,Казаков Виктор Алексеевич,,,04/04/1949,Fergana,Uzbekistan,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0406 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14351 +KAZAKOVA,Olga,Mikhailovna,,,,,Казакова Ольга Михайловна,,,30/05/1968,Usolye-Sibirskoye,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0407 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14352 +KAZANKOV,Sergei,Ivanovich,,,,,Казанков Сергей Иванович,,,09/10/1972,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0408 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14353 +KAZANOKOV,Krym,Olievich,,,,,Крым Олиевич Казаноков,,,19/07/1962,Kosh-Khabl,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0875 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14826 +KAZEMI,Toraj,,,,,,,,,,,,,,,,,Chief of the Cyber Police,,,,,,,,,"(UK Sanctions List Ref):IHR0083 (UK Statement of Reasons):Chief of the Cyber Police. In this capacity, he announced a campaign for the recruitment of government hackers in order to achieve better control of information on the internet and attack ‘dangerous’ sites. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,16/06/2022,12648 +KB RADAR,,,,,,,«КБ Радар»,Cyrillic,Russian,,,,,,,,,,64A Partizanskii Prospect,,,,,Minsk,220026,Belarus,"(UK Sanctions List Ref):BEL0125 (UK Statement of Reasons):KB Radar is an Belarussian government affiliated entity, being entirely owned by the Government of Belarus, and operates in a sector of strategic significance, namely the defence sector. (Phone number):+375 17 390-30-91 (Website):https://kbradar.by/ (Email address):info@kbradar.by",Entity,Primary name,,Belarus,24/03/2022,24/03/2022,12/07/2022,14984 +KB RADAR,,,,,,,«КБ Радар»,Cyrillic,Russian,,,,,,,,,,24 Promyshlennaya str,,,,,Minsk,220075,Belarus,"(UK Sanctions List Ref):BEL0125 (UK Statement of Reasons):KB Radar is an Belarussian government affiliated entity, being entirely owned by the Government of Belarus, and operates in a sector of strategic significance, namely the defence sector. (Phone number):+375 17 390-30-91 (Website):https://kbradar.by/ (Email address):info@kbradar.by",Entity,Primary name,,Belarus,24/03/2022,24/03/2022,12/07/2022,14984 +KCST,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0167 (UN Ref):KPe.012 The Korean Committee for Space Technology (KCST) orchestrated the DPRK’s launches on 13 April 2012 and 12 December 2012 via the satellite control center and Sohae launch area.,Entity,AKA,,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12847 +KECIL,Umar,,,,,,,,,20/07/1966,Central Java,Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0331 (UN Ref):QDi.294 Senior member of Jemaah Islamiyah (QDe.092) involved in planning and funding multiple terrorist attacks in the Philippines and Indonesia. Provided training to Abu Sayyaf Group (QDe.001). Convicted for his role in the 2002 Bali bombings and sentenced to 20 years in prison in Jun. 2012. Remains in custody in Indonesia as at May 2015. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173385,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,12/01/2022,12021 +KEOSAYAN,Tigran,Edmondovich,,,,,КЕОСАЯН Тигран Эдмондович,Cyrillic,Russian,04/01/1966,Moscow,Russia,Russia,,,,,(1) Filmmaker and TV presenter (2) Presenter of ‘International Sawmill’ programme on NTV,,,,,,,,,"(UK Sanctions List Ref):RUS0758 Margarita Simonovna Simonyan (Russian: Маргарита Симоновна Симонян)  - wife (RUS0702)  (UK Statement of Reasons):Tigran Keosayan is a prominent Russian TV presenter. In numerous broadcasts he has provided support for and promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14709 +KERIMOV,Said,Suleimanovich,,,,,Саид Сулейманович КЕРИМОВ,Cyrillic,Russian,06/07/1995,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1325 (UK Statement of Reasons):Said Suleimanovich KERIMOV was a member of the Board of Directors of Polyus, a Russian gold mining company. He therefore worked as a director or equivalent at a company carrying on business in a sector of strategic significance to the Government of Russia (namely, the extractives sector). He therefore has been involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,14/06/2022,15283 +KERIMOV,Suleyman,Abusaidovich,,,,,Сулейман Абусаидович Керимов,,,12/03/1966,Derbent,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS1039 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14976 +KESAEV,Igor,Albertovich,,,,,Игорь Альбертович КЕСАЕВ,Cyrillic,Russian,30/10/1966,Vladikavkaz,Russia,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1315 (UK Statement of Reasons):KESAEV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because as a shareholder of V.A Degtyarev Weapons plant, which has been carrying on business in the Russian defence sector - a sector of strategic significance to the Government of Russia, he is a member of an involved person.  (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15269 +KESLAF,,,,,,,,,,02/12/1985,Zawiya,Libya,Libya,C17HLRL3,Issued in Zawiya on 30 Dec 2015,,,(1) Commander of the Shuhada al-Nasr brigade (2) Head of the Petrol Refinery Guard of Zawiya’s refinery,,,,,,Zawiya,,Libya,"(UK Sanctions List Ref):LIB0055 (UN Ref):LYi.025 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13675 +KETABACHI,MEHRDADA,AKHLAGHI,,,,,,,,10/09/1958,,,,A0030940,,,,"Former Head of the Shahid Bagheri Industrial Group (SBIG), which is designated under resolution 1737 (2006) for its role in the ballistic missile programme (designated under IRe.066).",,,,,,,,,"(UK Sanctions List Ref):INU0200 (UN Ref):IRi.020 [Old Reference # I.47.C.6] (UK Statement of Reasons):As former Director of the Aerospace Industries Organisation (AIO) and former head of UN-designated Shahid Bagheri Industrial Group (SBIG), an AIO subsidiary, Mehrdada Akhlaghi KETABACHI is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9054 +KETABACHI,MEHRDADA,AKHLAGHI,,,,,,,,10/09/1958,,,,A0030940,,,,"Former Head of the Shahid Bagheri Industrial Group (SBIG), which is designated under resolution 1737 (2006) for its role in the ballistic missile programme (designated under IRe.066).",,,,,,,,,"(UK Sanctions List Ref):INU0200 (UN Ref):IRi.020 [Old Reference # I.47.C.6] (UK Statement of Reasons):As former Director of the Aerospace Industries Organisation (AIO) and former head of UN-designated Shahid Bagheri Industrial Group (SBIG), an AIO subsidiary, Mehrdada Akhlaghi KETABACHI is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9054 +KHABAR,Abu,,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +KHABAR,Abu,,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +KHABAR,Abu,,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +KHABAR,Abu,,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +KHABIROV,Radiy,Faritovich,,,,,Радий Фаритович Хабиров,,,20/03/1964,,,Russia,,,,,Head of the Republic of Bashkortostan/Baskhiria,,,,,,,,,"(UK Sanctions List Ref):RUS1515 (UK Statement of Reasons):Radiy Faritovich KHABIROV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because KHABIROV is a regional governor or equivalent. Specifically, KHABIROV is Head of the Republic of Bashkortostan. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15453 +KHACHATUROV,Tigran,Garikovich,,,,,Тигран Гарикович Хачатуров,Cyrillic,Russian,07/02/1979,Yerevan,Armenia,Russia,,,,,(1) Member of Gazprombank’s Management Board (2) Deputy Chairman of Gazprombank’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1608 (UK Statement of Reasons):Tigran Garikovich Khachaturov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15552 +KHADDOR,Mohamed,Ibrahim,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHADDOR,Mohammad,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHADDOR,Mohammed,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHADDOR,Muhammad,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHADDOUR,Mohamed,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHADDOUR,Mohammad,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHADDOUR,Mohammed,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHADDOUR,Muhammad,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHADDUR,Mohamed,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHADDUR,Mohammad,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHADDUR,Mohammed,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHADDUR,Muhammad,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHADDUR,Muhammad,Ibrahim,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHADEM,Abdul Rauf,,,,,Mullah,عبدالروف خادم,,,00/00/1958,"(1) Azan village, Kajaki District, Helmand Province. (2) Spin Boldak District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Commander of Central Corp under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0025 (UN Ref):TAi.025 Member of the Taliban Quetta Shura as at 2009. Taliban member responsible for Uruzgan Province, Afghanistan, as at 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6912 +KHADEM,Abdul Rauf,,,,,Mullah,عبدالروف خادم,,,00/00/1959,"(1) Azan village, Kajaki District, Helmand Province. (2) Spin Boldak District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Commander of Central Corp under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0025 (UN Ref):TAi.025 Member of the Taliban Quetta Shura as at 2009. Taliban member responsible for Uruzgan Province, Afghanistan, as at 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6912 +KHADEM,Abdul Rauf,,,,,Mullah,عبدالروف خادم,,,00/00/1960,"(1) Azan village, Kajaki District, Helmand Province. (2) Spin Boldak District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Commander of Central Corp under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0025 (UN Ref):TAi.025 Member of the Taliban Quetta Shura as at 2009. Taliban member responsible for Uruzgan Province, Afghanistan, as at 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6912 +KHADEM,Abdul Rauf,,,,,Mullah,عبدالروف خادم,,,00/00/1961,"(1) Azan village, Kajaki District, Helmand Province. (2) Spin Boldak District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Commander of Central Corp under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0025 (UN Ref):TAi.025 Member of the Taliban Quetta Shura as at 2009. Taliban member responsible for Uruzgan Province, Afghanistan, as at 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6912 +KHADEM,Abdul Rauf,,,,,Mullah,عبدالروف خادم,,,00/00/1962,"(1) Azan village, Kajaki District, Helmand Province. (2) Spin Boldak District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Commander of Central Corp under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0025 (UN Ref):TAi.025 Member of the Taliban Quetta Shura as at 2009. Taliban member responsible for Uruzgan Province, Afghanistan, as at 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6912 +KHADEM,Abdul Rauf,,,,,Mullah,عبدالروف خادم,,,00/00/1963,"(1) Azan village, Kajaki District, Helmand Province. (2) Spin Boldak District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Commander of Central Corp under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0025 (UN Ref):TAi.025 Member of the Taliban Quetta Shura as at 2009. Taliban member responsible for Uruzgan Province, Afghanistan, as at 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6912 +KHADEM,Abdul Rauf,,,,,Mullah,عبدالروف خادم,,,00/00/1970,"(1) Azan village, Kajaki District, Helmand Province. (2) Spin Boldak District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Commander of Central Corp under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0025 (UN Ref):TAi.025 Member of the Taliban Quetta Shura as at 2009. Taliban member responsible for Uruzgan Province, Afghanistan, as at 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6912 +KHADER,Abdel,,,,,,,,,00/00/1981,,Saudi Arabia,Mauritania,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0093 (UN Ref):QDi.298 Pakistan-based senior Al-Qaida (QDe.004) leader also associated with The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Wanted by Mauritanian authorities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555823,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/09/2011,15/09/2011,31/12/2020,12148 +KHADOUR,Mohamed,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHADOUR,Mohammad,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHADOUR,Mohammed,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHADOUR,Muhammad,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHAIRKHWA,Khirullah,Said,Wali,,,,,,,00/00/1963,"Poti village, Arghistan district, Kandahar province",Afghanistan,Afghanistan,,,,,(1) Governor of Herat Province under the Taliban regime (2) Spokesperson of the Taliban regime (3) Governor of Kabul Province under the Taliban regime (4) Minister of Internal Affairs under the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0071 (UN Ref):TAi.093 Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7223 +KHAIRKHWA,Khirullah,Said,Wali,,,,,,,01/01/1967,"Poti village, Arghistan district, Kandahar province",Afghanistan,Afghanistan,,,,,(1) Governor of Herat Province under the Taliban regime (2) Spokesperson of the Taliban regime (3) Governor of Kabul Province under the Taliban regime (4) Minister of Internal Affairs under the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0071 (UN Ref):TAi.093 Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7223 +KHAIRKHWAH,Khairullah,,,,,Mullah,,,,00/00/1963,"Poti village, Arghistan district, Kandahar province",Afghanistan,Afghanistan,,,,,(1) Governor of Herat Province under the Taliban regime (2) Spokesperson of the Taliban regime (3) Governor of Kabul Province under the Taliban regime (4) Minister of Internal Affairs under the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0071 (UN Ref):TAi.093 Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7223 +KHAIRKHWAH,Khairullah,,,,,Mullah,,,,01/01/1967,"Poti village, Arghistan district, Kandahar province",Afghanistan,Afghanistan,,,,,(1) Governor of Herat Province under the Taliban regime (2) Spokesperson of the Taliban regime (3) Governor of Kabul Province under the Taliban regime (4) Minister of Internal Affairs under the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0071 (UN Ref):TAi.093 Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7223 +KHAIRKHWAH,KHAIRULLAH,,,,,(1) Mullah (2) Maulavi,خيرالله خيرخواه,,,00/00/1963,"Poti village, Arghistan district, Kandahar province",Afghanistan,Afghanistan,,,,,(1) Governor of Herat Province under the Taliban regime (2) Spokesperson of the Taliban regime (3) Governor of Kabul Province under the Taliban regime (4) Minister of Internal Affairs under the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0071 (UN Ref):TAi.093 Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7223 +KHAIRKHWAH,KHAIRULLAH,,,,,(1) Mullah (2) Maulavi,خيرالله خيرخواه,,,01/01/1967,"Poti village, Arghistan district, Kandahar province",Afghanistan,Afghanistan,,,,,(1) Governor of Herat Province under the Taliban regime (2) Spokesperson of the Taliban regime (3) Governor of Kabul Province under the Taliban regime (4) Minister of Internal Affairs under the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0071 (UN Ref):TAi.093 Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7223 +KHAIRULLAH,,,,,,Haji,,,,00/00/1965,"(1) Zumbaleh village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,BP4199631,Pakistan. Expired 25 June 2014. Officially cancelled as of 2013.,5440005229635,Issued in Pakistan. Officially cancelled as of 2013.,,Abdul Manan Chowk,Pashtunabad,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0129 (UN Ref):TAi.163 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan (TAi.162). Belongs to Barakzai tribe. Father’s name is Haji Khudai Nazar. Alternative father’s name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12702 +KHAKIMZIAN,Ihor,Yevhenovych,,,,,,,,25/07/1980,Makivka (Donetsk Oblast),,Ukraine,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0110 (UK Statement of Reasons):One of the former leaders of armed forces of the self-proclaimed ""Donetsk People's Repulic"". The aim of the forces is to ""protect the people of Donetsk People's Republic"" according to Pushylin, one of the leaders of the ""Donetsk People's Republic. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12972 +KHAKIMZIAN,Ihor,Yevhenovych,,,,,,,,00/00/1980,Makivka (Donetsk Oblast),,Ukraine,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0110 (UK Statement of Reasons):One of the former leaders of armed forces of the self-proclaimed ""Donetsk People's Repulic"". The aim of the forces is to ""protect the people of Donetsk People's Republic"" according to Pushylin, one of the leaders of the ""Donetsk People's Republic. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12972 +KHAKIMZIANOV,Ihor,Yevhenovych,,,,,,,,25/07/1980,Makivka (Donetsk Oblast),,Ukraine,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0110 (UK Statement of Reasons):One of the former leaders of armed forces of the self-proclaimed ""Donetsk People's Repulic"". The aim of the forces is to ""protect the people of Donetsk People's Republic"" according to Pushylin, one of the leaders of the ""Donetsk People's Republic. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12972 +KHAKIMZIANOV,Ihor,Yevhenovych,,,,,,,,00/00/1980,Makivka (Donetsk Oblast),,Ukraine,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0110 (UK Statement of Reasons):One of the former leaders of armed forces of the self-proclaimed ""Donetsk People's Repulic"". The aim of the forces is to ""protect the people of Donetsk People's Republic"" according to Pushylin, one of the leaders of the ""Donetsk People's Republic. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12972 +KHAKIMZYANC,Igor,Evegenevich,,,,,,,,25/07/1980,Makivka (Donetsk Oblast),,Ukraine,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0110 (UK Statement of Reasons):One of the former leaders of armed forces of the self-proclaimed ""Donetsk People's Repulic"". The aim of the forces is to ""protect the people of Donetsk People's Republic"" according to Pushylin, one of the leaders of the ""Donetsk People's Republic. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12972 +KHAKIMZYANC,Igor,Evegenevich,,,,,,,,00/00/1980,Makivka (Donetsk Oblast),,Ukraine,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0110 (UK Statement of Reasons):One of the former leaders of armed forces of the self-proclaimed ""Donetsk People's Repulic"". The aim of the forces is to ""protect the people of Donetsk People's Republic"" according to Pushylin, one of the leaders of the ""Donetsk People's Republic. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12972 +KHAKIMZYANOV,Igor,Evegenevich,,,,,,,,25/07/1980,Makivka (Donetsk Oblast),,Ukraine,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0110 (UK Statement of Reasons):One of the former leaders of armed forces of the self-proclaimed ""Donetsk People's Repulic"". The aim of the forces is to ""protect the people of Donetsk People's Republic"" according to Pushylin, one of the leaders of the ""Donetsk People's Republic. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12972 +KHAKIMZYANOV,Igor,Evegenevich,,,,,,,,00/00/1980,Makivka (Donetsk Oblast),,Ukraine,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0110 (UK Statement of Reasons):One of the former leaders of armed forces of the self-proclaimed ""Donetsk People's Repulic"". The aim of the forces is to ""protect the people of Donetsk People's Republic"" according to Pushylin, one of the leaders of the ""Donetsk People's Republic. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12972 +KHALA AFARIN PARS,,,,,,,,,,,,,,,,,,,Unit 5,2nd Floor,No 75,Mehran Afrand St,Sattarkhan St,Tehran,,,(UK Sanctions List Ref):INU0088 (UK Statement of Reasons):Involved in procurement of materials on behalf of an entity directly involved in Iran's restricted weapons related activity (Phone number):66905459 21 0098 (Website):www.vacuumafarin.com (Email address):info@vacuumafarin.com,Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,31/12/2020,12258 +KHALAF,Fuad,,,,,,,,,,,,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +KHALAF,Fuad,,,,,,,,,,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +KHALAF,Ghassan,Omar,,,,,,,,,,,,,,,,Former Governor of Hama,,,,,,,,,"(UK Sanctions List Ref):SYR0057 (UK Statement of Reasons):Former Governor of Hama, who was appointed by, and is associated with, Bashar al-Assad. He also supports and benefits from the regime. Ghassan Omar Khalaf is closely associated with members of a regime-affiliated militia in Hama known as the Hama Brigade. (Gender):Male",Individual,Primary name,,Syria,28/10/2016,31/12/2020,31/12/2020,13388 +KHALAF,FUAD,MOHAMED,,,,,,,,,,,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,Primary name,,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +KHALAF,FUAD,MOHAMED,,,,,,,,,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,Primary name,,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +KHALED,Abou,Abbes,,,,,,,,01/06/1972,Ghardaia,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0249 (UN Ref):QDi.136 Father's name is Mohamed. Mother's name is Zohra Chemkha. Member of the Council of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) (AQIM). Head of Al Mouakaoune Biddam (QDe.139), Al Moulathamoun (QDe.140) and Al Mourabitoun (QDe.141). Review pursuant to Security Council resolution 1822 (2008) was concluded on 30 Jul. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4488665",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,11/11/2003,14/04/2022,7881 +KHALED,Abu,,,,,,,,,06/06/1969,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,AKA,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +KHALED,Abu,,,,,,,,,06/06/1967,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,AKA,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +KHALED,Mohammed,Fawaz,,,,,,,,06/06/1969,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,Primary name,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +KHALED,Mohammed,Fawaz,,,,,,,,06/06/1967,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,Primary name,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +KHALEEL,Ghassan,,,,,,,,,,,,,,,,,Former Head of Information Branch in the General Intelligence Directorate,,,,,,,,,(UK Sanctions List Ref):SYR0056 (UK Statement of Reasons):Former Head of General Intelligence Directorate's (GID) Information Branch. Directly involved in repression and violence against the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12051 +KHALEPA,Igor,Nikolaevich,,,,,,,,19/05/1969,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1146 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15098 +KHALFAN,Ahmed,,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +KHALFAN,Ahmed,,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +KHALFAN,Ahmed,,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +KHALFAN,Ahmed,,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +KHALI,Tahir,Hamid,,,,,,,,,,,,,,,,Head of the Syrian Artillery and Missiles Directorate of the Syrian Armed Forces,,,,,,,,,"(UK Sanctions List Ref):SYR0227 (UK Statement of Reasons):Holds the ranks of Major General, Head of the Syrian Artillery and Missiles Directorate of the Syrian Armed Forces, in post after May 2011. As a senior ranking officer of the Syrian Artillery and Missile Directorate, he is responsible for the violent repression of the civilian population, including the deployment of missiles and chemical weapons by Brigades under his command in highly populated civilian areas in Ghouta in 2013 (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13383 +KHALID,,,,,,,,,,19/12/1969,"Bagac, Bagamanok, Catanduanes",Philippines,Philippines,,,,,,Concepcion,,,,Zaragosa,Nueva Ecija,,Philippines,"(UK Sanctions List Ref):AQD0287 (UN Ref):QDi.245 Member of the Rajah Solaiman Movement (QDe.128), Abu Sayyaf Group (QDe.001) and Jemaah Islamiyah (QDe.092). Father's name is Honorio Devera. Mother's name is Fausta Abogne. In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10665 +KHALID,Kembar,,,,,,,,,11/10/1978,,Indonesia,Indonesia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0248 (UN Ref):QDi.416 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: hair colour: black; build: slight. Speaks Indonesian, Arabic and Mindanao dialect. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244333. Syria, location since 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13708 +KHALID IBN AL-WALID ARMY,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0058 (UN Ref):QDe.155 Joined the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in May 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116594",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13510 +KHALIF,Fuad,Mohamed,,,,,,,,,,,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +KHALIF,Fuad,Mohamed,,,,,,,,,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +KHALIF,Fuad,Mohammed,,,,,,,,,,,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +KHALIF,Fuad,Mohammed,,,,,,,,,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +KHALIFA,,,,,,,,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Dergey Manday Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +KHALIFA,,,,,,,,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Kela neighborhood/Danda neighborhood,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +KHALIFA,,,,,,,,,,00/00/1977,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Manba'ul uloom Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +KHALIFA,,,,,,,,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Manba'ul uloom Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +KHALIFA,,,,,,,,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Kela neighborhood/Danda neighborhood,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +KHALIFA,,,,,,,,,,00/00/1978,"(1) Danda, Miramshah, North Waziristan (2) Khost province (3) Neka district, Paktika province (4) Srana village, Garda Saray district, Paktia province",(1) Pakistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Na'ib Amir (Deputy Commander),Dergey Manday Madrasa,Miramshah,,,,North Waziristan,,Pakistan,"(UK Sanctions List Ref):AFG0112 (UN Ref):TAi.144 Heading the Haqqani Network (TAe.012) as of late 2012. Son of Jalaluddin Haqqani (TAi.040). Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,14/09/2007,13/09/2007,01/02/2021,9158 +KHALIFA,Abdul,Rahim,,,,,,,,22/02/1981,Tarhuna,Libya,Libya,H4FG6H2J,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0073 (UK Statement of Reasons):Abdurahem al-Kani is designated on the basis that there are reasonable grounds to suspect that he was one of the leaders of the Al-Kaniyat militia and involved in the activities of the militia in Tarhuna, including in the commission of serious human rights abuses, or violations of international humanitarian law. There are reasonable grounds to suspect that, under the leadership of Abdurahem al-Kani, the militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tarhouna. There are reasonable grounds to suspect that he is involved in the activities of the militia and that those activities threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,Primary name variation,,Libya,13/05/2021,07/05/2021,13/05/2021,14106 +KHALIFA,Abdurahem,,,,,,,,,22/02/1981,Tarhuna,Libya,Libya,H4FG6H2J,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0073 (UK Statement of Reasons):Abdurahem al-Kani is designated on the basis that there are reasonable grounds to suspect that he was one of the leaders of the Al-Kaniyat militia and involved in the activities of the militia in Tarhuna, including in the commission of serious human rights abuses, or violations of international humanitarian law. There are reasonable grounds to suspect that, under the leadership of Abdurahem al-Kani, the militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tarhouna. There are reasonable grounds to suspect that he is involved in the activities of the militia and that those activities threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,Primary name variation,,Libya,13/05/2021,07/05/2021,13/05/2021,14106 +KHALIFA,Abdurrahim,,,,,,,,,22/02/1981,Tarhuna,Libya,Libya,H4FG6H2J,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0073 (UK Statement of Reasons):Abdurahem al-Kani is designated on the basis that there are reasonable grounds to suspect that he was one of the leaders of the Al-Kaniyat militia and involved in the activities of the militia in Tarhuna, including in the commission of serious human rights abuses, or violations of international humanitarian law. There are reasonable grounds to suspect that, under the leadership of Abdurahem al-Kani, the militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tarhouna. There are reasonable grounds to suspect that he is involved in the activities of the militia and that those activities threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,Primary name variation,,Libya,13/05/2021,07/05/2021,13/05/2021,14106 +KHALIKOV,Ravil,Zakarievich,,,,,Равиль Закариевич ХАЛИКОВ,,,23/02/1969,"Belozernoe village, Romodanovskiy rayon",Russia,Ukraine,,,,,Aide' to the Head of the Moscow Branch of the Investigative Committee of Russian Federation (GSU SK),,,,,,,,Russia,"(UK Sanctions List Ref):RUS0118 (UK Statement of Reasons):Former so-called ‘First Deputy Prime Minister’ and previous ‘Prosecutor-General’ of the ‘Donetsk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Currently ‘aide’ to the head of the Moscow branch of the Investigative Committee of Russian Federation (GSU SK). (Gender):Male",Individual,Primary name,,Russia,02/12/2014,31/12/2020,16/09/2022,13175 +KHALIKOV,Ravil,Zakariyovych,,,,,,,,23/02/1969,"Belozernoe village, Romodanovskiy rayon",Russia,Ukraine,,,,,Aide' to the Head of the Moscow Branch of the Investigative Committee of Russian Federation (GSU SK),,,,,,,,Russia,"(UK Sanctions List Ref):RUS0118 (UK Statement of Reasons):Former so-called ‘First Deputy Prime Minister’ and previous ‘Prosecutor-General’ of the ‘Donetsk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Currently ‘aide’ to the head of the Moscow branch of the Investigative Committee of Russian Federation (GSU SK). (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13175 +KHALIL,Abdul,,,,,,,,,20/03/1978,"Gattaran, Cagayan Province",Philippines,Philippines,,,,,,3111 Ma. Bautista,Punta,Santa Ana,,,Manila,,Philippines,"(UK Sanctions List Ref):AQD0141 (UN Ref):QDi.241 Distinguishing marks include scars on both legs. Member of the Rajah Solaiman Movement (QDe.128), and associated with the Abu Sayyaf Group (QDe.001) and the Jemaah Islamiyah (QDe.092). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10661 +KHALIL,Abu,,,,,,,,,20/03/1978,"Gattaran, Cagayan Province",Philippines,Philippines,,,,,,3111 Ma. Bautista,Punta,Santa Ana,,,Manila,,Philippines,"(UK Sanctions List Ref):AQD0141 (UN Ref):QDi.241 Distinguishing marks include scars on both legs. Member of the Rajah Solaiman Movement (QDe.128), and associated with the Abu Sayyaf Group (QDe.001) and the Jemaah Islamiyah (QDe.092). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10661 +KHALIL,Ahmad,Khalil,,,,,,,,,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0392 (UK Statement of Reasons):Ahmad Khalil Khalil is involved in supporting and benefiting from the Syrian regime by virtue of his position as a prominent person operating and controlling businesses in Syria, and through his association with other persons involved. (Gender):Male",Individual,Primary name,,Syria,26/07/2022,26/07/2022,26/07/2022,15460 +KHALIL,Ahmed,Khalil,,,,,,,,,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0392 (UK Statement of Reasons):Ahmad Khalil Khalil is involved in supporting and benefiting from the Syrian regime by virtue of his position as a prominent person operating and controlling businesses in Syria, and through his association with other persons involved. (Gender):Male",Individual,Primary name variation,,Syria,26/07/2022,26/07/2022,26/07/2022,15460 +KHALIL,Ayyad,Nazmi,Salih,,,,,,,00/00/1974,,Syria,Jordan,(1) 654781 (2) 286062,"(1) Jordan. Approximately issued in 2009. (2) Jordan. Issued on 5 April 1999 at Zarqa, Jordan. Expired on 4 April 2004.",,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0209 (UN Ref):QDi.400 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) for coastal area of Syrian Arab Republic since March 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6013286. Coastal area of Syrian Arab Republic. Location as of April 2016.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13447 +KHALIL,Eyad,Nazmi,Saleh,,,,,,,00/00/1974,,Syria,Jordan,(1) 654781 (2) 286062,"(1) Jordan. Approximately issued in 2009. (2) Jordan. Issued on 5 April 1999 at Zarqa, Jordan. Expired on 4 April 2004.",,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0209 (UN Ref):QDi.400 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) for coastal area of Syrian Arab Republic since March 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6013286. Coastal area of Syrian Arab Republic. Location as of April 2016.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13447 +KHALIL,Ghassan,,,,,,,,,,,,,,,,,Former Head of Information Branch in the General Intelligence Directorate,,,,,,,,,(UK Sanctions List Ref):SYR0056 (UK Statement of Reasons):Former Head of General Intelligence Directorate's (GID) Information Branch. Directly involved in repression and violence against the civilian population in Syria. (Gender):Male,Individual,Primary name,,Syria,24/08/2011,31/12/2020,13/05/2022,12051 +KHALIL,Issam,,,,,,,,,00/00/1965,"Banias, Tartous Governorate",Syria,,,,,,Former Minister for Culture,,,,,,,,,(UK Sanctions List Ref):SYR0105 (UK Statement of Reasons):Minister of Culture within the Assad regime between at least 2014 and 2016. Shares responsibility for the violent repression of the civilian population and supported or benefitted from the Syrian regime.,Individual,Primary name,,Syria,22/10/2014,31/12/2020,13/05/2022,13158 +KHALIL,Tahir,Hamid,,,,,طاهر حامد خليل,,,,,,,,,,,Head of the Syrian Artillery and Missiles Directorate of the Syrian Armed Forces,,,,,,,,,"(UK Sanctions List Ref):SYR0227 (UK Statement of Reasons):Holds the ranks of Major General, Head of the Syrian Artillery and Missiles Directorate of the Syrian Armed Forces, in post after May 2011. As a senior ranking officer of the Syrian Artillery and Missile Directorate, he is responsible for the violent repression of the civilian population, including the deployment of missiles and chemical weapons by Brigades under his command in highly populated civilian areas in Ghouta in 2013 (Gender):Male",Individual,Primary name,,Syria,28/10/2016,31/12/2020,31/12/2020,13383 +KHALIL,IYAD,NAZMI,SALIH,,,,إياد نظمي صالح خليل,,,00/00/1974,,Syria,Jordan,(1) 654781 (2) 286062,"(1) Jordan. Approximately issued in 2009. (2) Jordan. Issued on 5 April 1999 at Zarqa, Jordan. Expired on 4 April 2004.",,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0209 (UN Ref):QDi.400 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) for coastal area of Syrian Arab Republic since March 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6013286. Coastal area of Syrian Arab Republic. Location as of April 2016.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,25/02/2017,22/02/2017,31/12/2020,13447 +KHALIL ELAHI,Mousa,,,,,,,,,,,,,,,,,(1) Chief Justice of East Azerbaijan province (2) Former Prosecutor of Tabriz (12 Apr 2010 - 25 Sep 2019),,,,,,,,,(UK Sanctions List Ref):IHR0070 (UK Statement of Reasons):Prosecutor of Tabriz. He was involved in Sakineh Mohammadi-Ashtiani's case and is complicit in grave violations of the right to due process. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,16/06/2022,12188 +KHALIL ELAHI,Moussa,,,,,,,,,,,,,,,,,(1) Chief Justice of East Azerbaijan province (2) Former Prosecutor of Tabriz (12 Apr 2010 - 25 Sep 2019),,,,,,,,,(UK Sanctions List Ref):IHR0070 (UK Statement of Reasons):Prosecutor of Tabriz. He was involved in Sakineh Mohammadi-Ashtiani's case and is complicit in grave violations of the right to due process. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,16/06/2022,12188 +KHALIL ELAHI,Musa,,,,,,,,,,,,,,,,,(1) Chief Justice of East Azerbaijan province (2) Former Prosecutor of Tabriz (12 Apr 2010 - 25 Sep 2019),,,,,,,,,(UK Sanctions List Ref):IHR0070 (UK Statement of Reasons):Prosecutor of Tabriz. He was involved in Sakineh Mohammadi-Ashtiani's case and is complicit in grave violations of the right to due process. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,16/06/2022,12188 +KHALIL ELAHI,Musa,,,,,,,,,,,,,,,,,(1) Chief Justice of East Azerbaijan province (2) Former Prosecutor of Tabriz (12 Apr 2010 - 25 Sep 2019),,,,,,,,,(UK Sanctions List Ref):IHR0070 (UK Statement of Reasons):Prosecutor of Tabriz. He was involved in Sakineh Mohammadi-Ashtiani's case and is complicit in grave violations of the right to due process. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,16/06/2022,12188 +KHALILI,Ali,,,,,,,,,,,,,,,,,Chairman of the Technical Committee of Sarollah Base,,,,,,,,,"(UK Sanctions List Ref):IHR0012 (UK Statement of Reasons):IRGC General, in a senior role within the Sarollah Base. He signed a letter sent to the Ministry of Health June 26, 2009 forbidding the submission of documents or medical records to anyone injured or hospitalized during post-elections events. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,16/06/2022,11782 +KHALILOLLAHI,Mousa,,,,,,,,,,,,,,,,,(1) Chief Justice of East Azerbaijan province (2) Former Prosecutor of Tabriz (12 Apr 2010 - 25 Sep 2019),,,,,,,,,(UK Sanctions List Ref):IHR0070 (UK Statement of Reasons):Prosecutor of Tabriz. He was involved in Sakineh Mohammadi-Ashtiani's case and is complicit in grave violations of the right to due process. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,16/06/2022,12188 +KHALILOLLAHI,Moussa,,,,,,,,,,,,,,,,,(1) Chief Justice of East Azerbaijan province (2) Former Prosecutor of Tabriz (12 Apr 2010 - 25 Sep 2019),,,,,,,,,(UK Sanctions List Ref):IHR0070 (UK Statement of Reasons):Prosecutor of Tabriz. He was involved in Sakineh Mohammadi-Ashtiani's case and is complicit in grave violations of the right to due process. (Gender):Male,Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,16/06/2022,12188 +KHALILOLLAHI,Musa,,,,,,,,,,,,,,,,,(1) Chief Justice of East Azerbaijan province (2) Former Prosecutor of Tabriz (12 Apr 2010 - 25 Sep 2019),,,,,,,,,(UK Sanctions List Ref):IHR0070 (UK Statement of Reasons):Prosecutor of Tabriz. He was involved in Sakineh Mohammadi-Ashtiani's case and is complicit in grave violations of the right to due process. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,16/06/2022,12188 +KHALILOLLAHI,Musa,,,,,,,,,,,,,,,,,(1) Chief Justice of East Azerbaijan province (2) Former Prosecutor of Tabriz (12 Apr 2010 - 25 Sep 2019),,,,,,,,,(UK Sanctions List Ref):IHR0070 (UK Statement of Reasons):Prosecutor of Tabriz. He was involved in Sakineh Mohammadi-Ashtiani's case and is complicit in grave violations of the right to due process. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,16/06/2022,12188 +KHALIMOV,GULMUROD,,,,,,,,,14/05/1975,(1) Varzob area (2) Dushanbe,(1) Tajikistan (2) Tajikistan,Tajikistan,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0179 (UN Ref):QDi.372 Syria-based military expert, member and recruiter of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the Government of Tajikistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930721. Address country Syria location as at Sep. 2015.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13313 +KHALIMOV,GULMUROD,,,,,,,,,00/00/1975,(1) Varzob area (2) Dushanbe,(1) Tajikistan (2) Tajikistan,Tajikistan,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0179 (UN Ref):QDi.372 Syria-based military expert, member and recruiter of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the Government of Tajikistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930721. Address country Syria location as at Sep. 2015.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13313 +KHALIQ,Muhammad,Ahmed,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +KHALIQ,Muhammad,Ahmed,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +KHALISTAN ZINDABAD FORCE (KZF),,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0035 (UK Statement of Reasons):Khalistan Zindabad Force (KZF) is a Sikh terrorist organisation who have claimed responsibility for a number of terrorist attacks, including armed attacks, assassinations and bombings.",Entity,Primary name,,Counter-Terrorism (International),23/12/2005,31/12/2020,31/12/2020,8809 +KHALLOUF,Muhammad,,,,,,,,,,,,,,,,,Head of Branch 235 of Army’s Intelligence Service,,,,,,,,,"(UK Sanctions List Ref):SYR0175 (UK Statement of Reasons):Former Head of Branch 235, a.k.a. ‘Palestine’ or ‘Far'Falastin’ (Damascus) of the army's intelligence service, which is at the centre of the army's apparatus of repression. Directly involved in repression of opponents. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name,,Syria,24/07/2012,31/12/2020,31/12/2020,12708 +KHALOUDY,Mohammad,,,,,,,,,,,,Syria,,,,,An engineer at the Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0163 Employee of Scientific Studies and Research Centre (UK Statement of Reasons):Mohammad Darar Khaludi is an engineer at the Syrian Scientific Studies and Research Centre. He is involved in chemical weapons proliferation and delivery. Mohammad Darar Khaludi has been also known to be involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13503 +KHALOUDY,Mohammad,Darar,,,,,,,,,,,Syria,,,,,An engineer at the Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0163 Employee of Scientific Studies and Research Centre (UK Statement of Reasons):Mohammad Darar Khaludi is an engineer at the Syrian Scientific Studies and Research Centre. He is involved in chemical weapons proliferation and delivery. Mohammad Darar Khaludi has been also known to be involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13503 +KHALOUDY,Mohammed,Dirar,,,,,,,,,,,Syria,,,,,An engineer at the Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0163 Employee of Scientific Studies and Research Centre (UK Statement of Reasons):Mohammad Darar Khaludi is an engineer at the Syrian Scientific Studies and Research Centre. He is involved in chemical weapons proliferation and delivery. Mohammad Darar Khaludi has been also known to be involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13503 +KHALUDI,Mohammad,,,,,,,,,,,,Syria,,,,,An engineer at the Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0163 Employee of Scientific Studies and Research Centre (UK Statement of Reasons):Mohammad Darar Khaludi is an engineer at the Syrian Scientific Studies and Research Centre. He is involved in chemical weapons proliferation and delivery. Mohammad Darar Khaludi has been also known to be involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13503 +KHALUDI,Mohammad,Darar,,,,,,,,,,,Syria,,,,,An engineer at the Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0163 Employee of Scientific Studies and Research Centre (UK Statement of Reasons):Mohammad Darar Khaludi is an engineer at the Syrian Scientific Studies and Research Centre. He is involved in chemical weapons proliferation and delivery. Mohammad Darar Khaludi has been also known to be involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name,,Syria,18/07/2017,31/12/2020,31/12/2020,13503 +KHALUDI,Mohammed,Dirar,,,,,,,,,,,Syria,,,,,An engineer at the Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0163 Employee of Scientific Studies and Research Centre (UK Statement of Reasons):Mohammad Darar Khaludi is an engineer at the Syrian Scientific Studies and Research Centre. He is involved in chemical weapons proliferation and delivery. Mohammad Darar Khaludi has been also known to be involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13503 +KHAMCHIEV,Belan,Bagaudinovich,,,,,Белан Багаудинович ХАМЧИЕВ,,,07/12/1960,"Art. Ordzhonikidzevskaya, Chechen-Ingush ASSR",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0943 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14894 +KHAMEES,Imad,Mohamed,Deeb,,,,,,,01/08/1961,near Damascus,Syria,Syria,,,,,"(1) Former Prime Minister (appointed in 2016, but relieved from duties in June 2020 under decree 143) (2) Former Minister for Electricity",,,,,,,,,"(UK Sanctions List Ref):SYR0101 (UK Statement of Reasons):Former Prime Minister and Former Minister of Electricity. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12636 +KHAMEES,Imad,Mohamed,Dib,,,,,,,01/08/1961,near Damascus,Syria,Syria,,,,,"(1) Former Prime Minister (appointed in 2016, but relieved from duties in June 2020 under decree 143) (2) Former Minister for Electricity",,,,,,,,,"(UK Sanctions List Ref):SYR0101 (UK Statement of Reasons):Former Prime Minister and Former Minister of Electricity. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12636 +KHAMEES,Imad,Mohammad,Deeb,,,,,,,01/08/1961,near Damascus,Syria,Syria,,,,,"(1) Former Prime Minister (appointed in 2016, but relieved from duties in June 2020 under decree 143) (2) Former Minister for Electricity",,,,,,,,,"(UK Sanctions List Ref):SYR0101 (UK Statement of Reasons):Former Prime Minister and Former Minister of Electricity. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12636 +KHAMEES,Imad,Mohammad,Dib,,,,,,,01/08/1961,near Damascus,Syria,Syria,,,,,"(1) Former Prime Minister (appointed in 2016, but relieved from duties in June 2020 under decree 143) (2) Former Minister for Electricity",,,,,,,,,"(UK Sanctions List Ref):SYR0101 (UK Statement of Reasons):Former Prime Minister and Former Minister of Electricity. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12636 +KHAMEES,Imad,Mohammed,Deeb,,,,,,,01/08/1961,near Damascus,Syria,Syria,,,,,"(1) Former Prime Minister (appointed in 2016, but relieved from duties in June 2020 under decree 143) (2) Former Minister for Electricity",,,,,,,,,"(UK Sanctions List Ref):SYR0101 (UK Statement of Reasons):Former Prime Minister and Former Minister of Electricity. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12636 +KHAMEES,Imad,Mohammed,Dib,,,,,,,01/08/1961,near Damascus,Syria,Syria,,,,,"(1) Former Prime Minister (appointed in 2016, but relieved from duties in June 2020 under decree 143) (2) Former Minister for Electricity",,,,,,,,,"(UK Sanctions List Ref):SYR0101 (UK Statement of Reasons):Former Prime Minister and Former Minister of Electricity. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12636 +KHAMEES,Imad,Muhammad,Deeb,,,,,,,01/08/1961,near Damascus,Syria,Syria,,,,,"(1) Former Prime Minister (appointed in 2016, but relieved from duties in June 2020 under decree 143) (2) Former Minister for Electricity",,,,,,,,,"(UK Sanctions List Ref):SYR0101 (UK Statement of Reasons):Former Prime Minister and Former Minister of Electricity. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12636 +KHAMEES,Imad,Muhammad,Dib,,,,,,,01/08/1961,near Damascus,Syria,Syria,,,,,"(1) Former Prime Minister (appointed in 2016, but relieved from duties in June 2020 under decree 143) (2) Former Minister for Electricity",,,,,,,,,"(UK Sanctions List Ref):SYR0101 (UK Statement of Reasons):Former Prime Minister and Former Minister of Electricity. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12636 +KHAMENKA,Sergei,Nikolaevich,,,,,"ХАМЕНКА, Сяргей Мікалаевіч",,,21/09/1966,Yasinovataya (former USSR),Former USSR Currently Ukraine,Belarus,,,,,Deputy Minister of the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0008 (UK Statement of Reasons):Siarhei Khamenka is Deputy Minister of Internal Affairs and Major General of Police. In his role, he is responsible for the actions of the police in Minsk and therefore responsible for the serious human rights violations and abuses against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13933 +KHAMENKA,SIARHEI,MIKALAEVICH,,,,,"ХОМЕНКО, Сергей Николаевич",,,21/09/1966,Yasinovataya (former USSR),Former USSR Currently Ukraine,Belarus,,,,,Deputy Minister of the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0008 (UK Statement of Reasons):Siarhei Khamenka is Deputy Minister of Internal Affairs and Major General of Police. In his role, he is responsible for the actions of the police in Minsk and therefore responsible for the serious human rights violations and abuses against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,31/12/2020,13933 +KHAMIS,Abdelhamid,Khamis,,,,,,,,,,,Syria,,,,,Chairman of Overseas Petroleum Trading Company (OPT),,,,,,,,,"(UK Sanctions List Ref):SYR0002 (UK Statement of Reasons):Chairman of Overseas Petroleum Trading Company (OPT) which has been listed for benefiting from and supporting the Syrian regime. He coordinated shipments of oil to the Syrian regime with listed Syrian state oil company Sytrol. Therefore, he is benefitting from and providing support to the Syrian regime. In view of his position as the most senior person in the entity he is responsible for its activities and associated with it. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13164 +KHAMIS,Fnu,Mnu,,,,Doctor,,,,,,,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0115 (UN Ref):IQi.054,Individual,AKA,Good quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7586 +KHAMIS,Imad,Mohamed,Deeb,,,,,,,01/08/1961,near Damascus,Syria,Syria,,,,,"(1) Former Prime Minister (appointed in 2016, but relieved from duties in June 2020 under decree 143) (2) Former Minister for Electricity",,,,,,,,,"(UK Sanctions List Ref):SYR0101 (UK Statement of Reasons):Former Prime Minister and Former Minister of Electricity. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12636 +KHAMIS,Imad,Mohamed,Dib,,,,,,,01/08/1961,near Damascus,Syria,Syria,,,,,"(1) Former Prime Minister (appointed in 2016, but relieved from duties in June 2020 under decree 143) (2) Former Minister for Electricity",,,,,,,,,"(UK Sanctions List Ref):SYR0101 (UK Statement of Reasons):Former Prime Minister and Former Minister of Electricity. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12636 +KHAMIS,Imad,Mohammad,Deeb,,,,,,,01/08/1961,near Damascus,Syria,Syria,,,,,"(1) Former Prime Minister (appointed in 2016, but relieved from duties in June 2020 under decree 143) (2) Former Minister for Electricity",,,,,,,,,"(UK Sanctions List Ref):SYR0101 (UK Statement of Reasons):Former Prime Minister and Former Minister of Electricity. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,26/03/2012,31/12/2020,13/05/2022,12636 +KHAMIS,Imad,Mohammad,Dib,,,,,,,01/08/1961,near Damascus,Syria,Syria,,,,,"(1) Former Prime Minister (appointed in 2016, but relieved from duties in June 2020 under decree 143) (2) Former Minister for Electricity",,,,,,,,,"(UK Sanctions List Ref):SYR0101 (UK Statement of Reasons):Former Prime Minister and Former Minister of Electricity. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12636 +KHAMIS,Imad,Mohammed,Deeb,,,,,,,01/08/1961,near Damascus,Syria,Syria,,,,,"(1) Former Prime Minister (appointed in 2016, but relieved from duties in June 2020 under decree 143) (2) Former Minister for Electricity",,,,,,,,,"(UK Sanctions List Ref):SYR0101 (UK Statement of Reasons):Former Prime Minister and Former Minister of Electricity. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12636 +KHAMIS,Imad,Mohammed,Dib,,,,,,,01/08/1961,near Damascus,Syria,Syria,,,,,"(1) Former Prime Minister (appointed in 2016, but relieved from duties in June 2020 under decree 143) (2) Former Minister for Electricity",,,,,,,,,"(UK Sanctions List Ref):SYR0101 (UK Statement of Reasons):Former Prime Minister and Former Minister of Electricity. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12636 +KHAMIS,Imad,Muhammad,Deeb,,,,,,,01/08/1961,near Damascus,Syria,Syria,,,,,"(1) Former Prime Minister (appointed in 2016, but relieved from duties in June 2020 under decree 143) (2) Former Minister for Electricity",,,,,,,,,"(UK Sanctions List Ref):SYR0101 (UK Statement of Reasons):Former Prime Minister and Former Minister of Electricity. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12636 +KHAMIS,Imad,Muhammad,Dib,,,,,,,01/08/1961,near Damascus,Syria,Syria,,,,,"(1) Former Prime Minister (appointed in 2016, but relieved from duties in June 2020 under decree 143) (2) Former Minister for Electricity",,,,,,,,,"(UK Sanctions List Ref):SYR0101 (UK Statement of Reasons):Former Prime Minister and Former Minister of Electricity. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12636 +KHAMITOV,Amir,Mahsudovich,,,,,Хамитов Амир Махсудович,,,04/02/1975,,,Russia,757985992,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0578 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14523 +KHAMZAEV,Sultan,,,,,,Хамзаев Бийсултан Султанбиевич,,,24/05/1982,Khasavyurt,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0516 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14461 +KHAN,Adam,,,,,Maulavi,,,,00/00/1970,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +KHAN,Adam,,,,,Maulavi,,,,00/00/1971,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +KHAN,Adam,,,,,Maulavi,,,,00/00/1972,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +KHAN,Adam,,,,,Maulavi,,,,00/00/1973,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +KHAN,Adam,,,,,Maulavi,,,,00/00/1974,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +KHAN,Adam,,,,,Maulavi,,,,00/00/1975,Kandahar Province,Afghanistan,Pakistan,,,,,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0133 (UN Ref):TAi.167 Improvised explosive device manufacturer and facilitator for the Taliban. Taliban member responsible for Badghis Province, Afghanistan, as at mid – 2010. Former Taliban member responsible for Sar-e Pul and Samangan Provinces, Afghanistan. As Taliban military commander in Kandahar Province, Afghanistan, he was involved in organizing suicide attacks in neighboring provinces. Associated with Abdul Samad Achekzai (TAi.160). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,17/05/2013,16/04/2013,01/02/2021,12867 +KHAN,Angelika,,,,,,Анжелика Хан,,,23/06/1971,,,,,,,,,118 Eaton Square,,,,,London,SW1W 9AA,United Kingdom,"(UK Sanctions List Ref):RUS1359 (UK Statement of Reasons):There are reasonable grounds to suspect that Anzhelika KHAN is associated with German Borisovich KHAN. Anzhelika KHAN is the wife of German Borisovich KHAN. German Borisovich KHAN, hereafter KHAN, is a prominent Russian businessman. KHAN is obtaining a benefit from and/or supporting the Government of Russia through his positions on the Supervisory Board of the Alfa Group Consortium and the Board of Directors of ABH Holdings S.A., owner of Russia’s largest privately owned bank 'Alfa-Bank (Russia)’, and Chairman of the Supervisory Board of A1 Investment Holding S. A., entities which are carrying on business in sectors of strategic significance to the Government of Russia. KHAN is also a close associate of Vladimir Putin who has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,21/04/2022,21/04/2022,21/04/2022,15310 +KHAN,Anwar,Ahmed,,,,,,,,01/01/1959,,Pakistan,Pakistan,,,,,"Former Senior Superintendent of Police (SSP) in Malir District, Karachi",,,,,,Punjab,,Pakistan,"(UK Sanctions List Ref):GHR0061 (UK Statement of Reasons):Anwar Ahmed Khan (a.k.a. Rao Anwar Khan) is the former Senior Superintendent of Police (SSP) in Malir District, Pakistan. In his role as SSP Malir, Khan was responsible for numerous staged police encounters in which hundreds of individuals were extra-judicially killed by police, including the murder of Naqeebullah Mehsud in 2018. Khan is therefore responsible for serious violations of the right to life. (Gender):Male",Individual,Primary name,,Global Human Rights,10/12/2020,10/12/2020,16/07/2021,14013 +KHAN,Anzhelika,,,,,,Анжелика Хан,,,23/06/1971,,,,,,,,,118 Eaton Square,,,,,London,SW1W 9AA,United Kingdom,"(UK Sanctions List Ref):RUS1359 (UK Statement of Reasons):There are reasonable grounds to suspect that Anzhelika KHAN is associated with German Borisovich KHAN. Anzhelika KHAN is the wife of German Borisovich KHAN. German Borisovich KHAN, hereafter KHAN, is a prominent Russian businessman. KHAN is obtaining a benefit from and/or supporting the Government of Russia through his positions on the Supervisory Board of the Alfa Group Consortium and the Board of Directors of ABH Holdings S.A., owner of Russia’s largest privately owned bank 'Alfa-Bank (Russia)’, and Chairman of the Supervisory Board of A1 Investment Holding S. A., entities which are carrying on business in sectors of strategic significance to the Government of Russia. KHAN is also a close associate of Vladimir Putin who has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,21/04/2022,21/04/2022,21/04/2022,15310 +KHAN,Dilawar,Khan,Zain,,,,,,,05/02/1981,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +KHAN,Dilawar,Khan,Zain,,,,,,,01/01/1972,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +KHAN,Faizullah,,,,,Haji,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,,,,,Haji,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,,,,,Haji,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,,,,,Haji,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,,,,,Haji,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,,,,,Haji,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,,,,,Haji,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,,,,,Haji,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,,,,,Haji,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,,,,,Haji,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,,,,,Haji,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,,,,,Haji,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,Noorzai,Akhtar,Mohammed,Mira,,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,Noorzai,Akhtar,Mohammed,Mira,,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,Noorzai,Akhtar,Mohammed,Mira,,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,Noorzai,Akhtar,Mohammed,Mira,,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,Noorzai,Akhtar,Mohammed,Mira,,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,Noorzai,Akhtar,Mohammed,Mira,,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,Noorzai,Akhtar,Mohammed,Mira,,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,Noorzai,Akhtar,Mohammed,Mira,,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,Noorzai,Akhtar,Mohammed,Mira,,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,Noorzai,Akhtar,Mohammed,Mira,,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,Noorzai,Akhtar,Mohammed,Mira,,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Faizullah,Noorzai,Akhtar,Mohammed,Mira,,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +KHAN,Farhan,,,,,,,,,05/02/1981,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +KHAN,Farhan,,,,,,,,,01/01/1972,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +KHAN,German,Borissovich,,,,,Герман Бориссович ХАН,,,24/10/1961,Kyiv,Ukraine,(1) Israel (2) Russia,,,,,"(1) Member of Supervisory Board, DEA Deutsche Erdoel AG (2) Co-founder and Member of Board of Directors, LetterOne Group",,,,,,,,,"(UK Sanctions List Ref):RUS0666 (UK Statement of Reasons):German Borisovich KHAN, hereafter KHAN, is a prominent Russian businessman. KHAN is obtaining a benefit from and/or supporting the Government of Russia through his positions on the Supervisory Board of the Alfa Group Consortium and the Board of Directors of ABH Holdings S.A., owner of Russia’s largest privately owned bank 'Alfa-Bank (Russia)’, and Chairman of the Supervisory Board of A1 Investment Holding S. A., entities which are carrying on business in sectors of strategic significance to the Government of Russia, KHAN is also a close associate of Vladimir Putin who has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,18/03/2022,14617 +KHAN,Guerman,,,,,,,,,24/10/1961,Kyiv,Ukraine,(1) Israel (2) Russia,,,,,"(1) Member of Supervisory Board, DEA Deutsche Erdoel AG (2) Co-founder and Member of Board of Directors, LetterOne Group",,,,,,,,,"(UK Sanctions List Ref):RUS0666 (UK Statement of Reasons):German Borisovich KHAN, hereafter KHAN, is a prominent Russian businessman. KHAN is obtaining a benefit from and/or supporting the Government of Russia through his positions on the Supervisory Board of the Alfa Group Consortium and the Board of Directors of ABH Holdings S.A., owner of Russia’s largest privately owned bank 'Alfa-Bank (Russia)’, and Chairman of the Supervisory Board of A1 Investment Holding S. A., entities which are carrying on business in sectors of strategic significance to the Government of Russia, KHAN is also a close associate of Vladimir Putin who has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,18/03/2022,14617 +KHAN,Rao,,,,,,,,,01/01/1959,,Pakistan,Pakistan,,,,,"Former Senior Superintendent of Police (SSP) in Malir District, Karachi",,,,,,Punjab,,Pakistan,"(UK Sanctions List Ref):GHR0061 (UK Statement of Reasons):Anwar Ahmed Khan (a.k.a. Rao Anwar Khan) is the former Senior Superintendent of Police (SSP) in Malir District, Pakistan. In his role as SSP Malir, Khan was responsible for numerous staged police encounters in which hundreds of individuals were extra-judicially killed by police, including the murder of Naqeebullah Mehsud in 2018. Khan is therefore responsible for serious violations of the right to life. (Gender):Male",Individual,Primary name variation,,Global Human Rights,10/12/2020,10/12/2020,16/07/2021,14013 +KHAN,Abid,,,,,,,,,00/00/1982,"Giyan District, Paktika Province",Afghanistan,,,,,,,,,,,,,,,(UK Sanctions List Ref):AFG0136 (UN Ref):TAi.170 Senior member of the Haqqani Network (HQN) (TE.H.12.12.) as of 2013. Provided critical facilitation support to drivers and vehicles transporting HQN ammunition. Also involved in the group’s recruiting efforts as of 2011. Father’s name is Bakhta Jan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,31/07/2014,31/07/2014,01/02/2021,13145 +KHAN,German,Borisovich,,,,,Герман Борисович ХАН,,,24/10/1961,Kyiv,Ukraine,(1) Israel (2) Russia,,,,,"(1) Member of Supervisory Board, DEA Deutsche Erdoel AG (2) Co-founder and Member of Board of Directors, LetterOne Group",,,,,,,,,"(UK Sanctions List Ref):RUS0666 (UK Statement of Reasons):German Borisovich KHAN, hereafter KHAN, is a prominent Russian businessman. KHAN is obtaining a benefit from and/or supporting the Government of Russia through his positions on the Supervisory Board of the Alfa Group Consortium and the Board of Directors of ABH Holdings S.A., owner of Russia’s largest privately owned bank 'Alfa-Bank (Russia)’, and Chairman of the Supervisory Board of A1 Investment Holding S. A., entities which are carrying on business in sectors of strategic significance to the Government of Russia, KHAN is also a close associate of Vladimir Putin who has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,18/03/2022,14617 +KHAN,MUSTAFA,HAJJI,MUHAMMAD,,,,مصطفى حجي محمد خان,,,00/08/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +KHAN,MUSTAFA,HAJJI,MUHAMMAD,,,,مصطفى حجي محمد خان,,,00/09/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +KHAN,MUSTAFA,HAJJI,MUHAMMAD,,,,مصطفى حجي محمد خان,,,00/00/1976,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +KHAN SAYYID,Ezatullah,Haqqani,,,,Maulavi,عزت الله حقاني خان سيد,,,00/00/1957,"Alingar District, Laghman Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Planning under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0049 (UN Ref):TAi.064 Member of the Taliban Peshawar Shura as of 2008. Believed to be in Afghanistan/ Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7132 +KHANSARI,Majid,,,,,,,,,,,,Iran,,,,,Managing Director of KEC,,,,,,,,,(UK Sanctions List Ref):INU0028 (UK Statement of Reasons):Managing Director of UN designated Kalaye Electric Company (KEC).,Individual,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12237 +KHAPSIROKOV,Murat,Krym-Gerievich,,,,,Мурат Крым-Гериевич ХАПСИРОКОВ,,,26/01/1978,"Karachaevsk, Karachay-Cherkess Autonomous District",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0937 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14888 +KHARBOUTLI,Mohammed,Zahir,,,,,,,,,Damascus,Syria,Syria,,,,,Former Electricity Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0170 (UK Statement of Reasons):Former Electricity Minister. As a former Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13403 +KHARBOUTLI,Mohammed,Zuhair,,,,,,,,,Damascus,Syria,Syria,,,,,Former Electricity Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0170 (UK Statement of Reasons):Former Electricity Minister. As a former Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population. (Gender):Male",Individual,Primary name,,Syria,14/11/2016,31/12/2020,31/12/2020,13403 +KHARBUTLI,Mohammmad,Zuhair,,,,,,,,,Damascus,Syria,Syria,,,,,Former Electricity Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0170 (UK Statement of Reasons):Former Electricity Minister. As a former Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13403 +KHARCHENKO,Ekaterina,Vladimirovna,,,,,Харченко Екатерина Владимировна,,,11/08/1977,Kursk,Russia,Russia,731156379,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0580 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14525 +KHARICHEV,Alexander,Dmitrievich,,,,,Александр Дмитрович ХАРИЧЕВ,Cyrillic,Russian,,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1616 (UK Statement of Reasons):Alexander KHARICHEV is an involved person within the meaning of the Russia (Sanctions) (EU Exit) Regulations 2019 because KARICHEV is a head or deputy-head of any public body, federal agency or service subordinate to the President of the Russian Federation, including the Administration of the President of the Russian Federation. Specifically, KARICHEV is Chief of the Presidential Directorate for Supporting Activities of the State Council of the Russian Federation (also known as the Office of the President of the Russian Federation for ensuring the activities of the State Council of the Russian Federation). Therefore, KARICHEV is a person involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine or obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,30/09/2022,15560 +KHARICHEV,Alexander,Dmitrievich,,,,,Олександр Дмитрович ХАРИЧЕВ,Cyrillic,Ukrainian,,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1616 (UK Statement of Reasons):Alexander KHARICHEV is an involved person within the meaning of the Russia (Sanctions) (EU Exit) Regulations 2019 because KARICHEV is a head or deputy-head of any public body, federal agency or service subordinate to the President of the Russian Federation, including the Administration of the President of the Russian Federation. Specifically, KARICHEV is Chief of the Presidential Directorate for Supporting Activities of the State Council of the Russian Federation (also known as the Office of the President of the Russian Federation for ensuring the activities of the State Council of the Russian Federation). Therefore, KARICHEV is a person involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine or obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,30/09/2022,15560 +KHARITONOV,Nikolai,Mikhailovich,,,,,Харитонов Николай Михайлович,,,30/10/1948,"Rezino, Novosibirsk Oblast",Russia,Russia,56154,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0579 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14524 +KHASANOV,Murat,Ruslanovich,,,,,Хасанов Мурат Русланович,,,10/12/1970,"Egerukhay, Adyghe Autonomous Oblast",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0517 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14462 +KHASIS,Lev,Aranovich,,,,,,,,05/06/1966,,,,,,,,Former First Deputy Chairman of the Executive Board of PJSC Sberbank,,,,,,,,,"(UK Sanctions List Ref):RUS1059 (UK Statement of Reasons):Lev Aranovich KHASIS was the former First Deputy Chairman of the Executive Board of PJSC Sberbank, Russia’s largest bank by assets controlled. As a Board member of a state-owned corporation, KHASIS is or has been involved in obtaining a benefit from or supporting the Government of Russia by working as an executive director or equivalent of a Government of Russia-affiliated entity. Sberbank was sanctioned by the UK government on 1 March 2022 on the grounds that it was involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business as a Government of Russia-affiliated entity and in a sector of strategic significance (financial services).",Individual,Primary name variation,,Russia,24/03/2022,24/03/2022,12/07/2022,15002 +KHASIS,Lev,Aronovich,,,,,,,,05/06/1966,,,,,,,,Former First Deputy Chairman of the Executive Board of PJSC Sberbank,,,,,,,,,"(UK Sanctions List Ref):RUS1059 (UK Statement of Reasons):Lev Aranovich KHASIS was the former First Deputy Chairman of the Executive Board of PJSC Sberbank, Russia’s largest bank by assets controlled. As a Board member of a state-owned corporation, KHASIS is or has been involved in obtaining a benefit from or supporting the Government of Russia by working as an executive director or equivalent of a Government of Russia-affiliated entity. Sberbank was sanctioned by the UK government on 1 March 2022 on the grounds that it was involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business as a Government of Russia-affiliated entity and in a sector of strategic significance (financial services).",Individual,Primary name,,Russia,24/03/2022,24/03/2022,12/07/2022,15002 +KHATAIB AL-IMAM AL-BUKHARI,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan/Pakistan border area (previous location),,,"(UK Sanctions List Ref):AQD0063 (UN Ref):QDe.158 Associated with Al-Nusrah Front for the People of the Levant (QDe.137). Committed terrorist attacks in the Syrian Arab Republic. Since 2016 redeployed to Northern Afghanistan to project attacks against Central Asia countries. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6210802 Khan-Shaykhun (53 km south of Idlib, location as at Mar. 2018), Syrian Arab Republic. Idlib, Aleppo and Khama, operation zone, Syrian Arab Republic",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,03/04/2018,29/03/2018,31/12/2020,13624 +KHATAM AL-ANBIYA CONSTRUCTION HEADQUARTERS (KAA),,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0157 (UN Ref):IRe.036 KAA is an IRGC-owned company involved in large scale civil and military construction projects and other engineering activities. It undertakes a significant amount of work on Passive Defense Organization projects. In particular, KAA subsidiaries were heavily involved in the construction of the uranium enrichment site at Qom/Fordow. [Old Reference # E.29.II.7] (Parent company):Islamic Revolutionary Guard Corps (IRGC)",Entity,Primary name,,Iran (Nuclear),24/06/2008,09/06/2010,31/12/2020,10652 +KHATARJI,Abu,al-Bara,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KHATARJI,Bara,,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KHATARJI,Bara,Ahmad,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KHATARJI,Muhammad,,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KHATARJI,Muhammad,Bara,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KHATARJI,Muhammad,Bara,Ahmad,Rushdi,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KHATARJI,Muhammad,Nur,al-Din,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KHATIBA AL-TAWHID WAL-JIHAD (KTJ),,,,,,,Катиба ат-Таухид валь-Джихад,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0377 Khatiba al-Tawhid wal-Jihad (formerly known as Jannat Oshiklari) is a terrorist organization operating under the umbrella of the international terrorist organization Al-Nusrah Front for the People of the Levant (QDe.137). The group mainly operates in the provinces of Hama, Idlib and Ladhiqiyah, in the Syrian Arab Republic, and also conduct operations in Turkey, Kyrgyzstan, Uzbekistan, Russian Federation, Tajikistan, Kazakhstan, Egypt, Afghanistan, Ukraine. The number of fighters of KTJ is about 500. KTJ also cooperates with such terrorist organizations as Khatiba Imam al-Bukhari (QDe.158) and the Islamic Jihad Group (QDe.119).",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,08/03/2022,07/03/2022,08/03/2022,14211 +KHATIBA IMAM AL-BUKHARI,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan/Pakistan border area (previous location),,,"(UK Sanctions List Ref):AQD0063 (UN Ref):QDe.158 Associated with Al-Nusrah Front for the People of the Levant (QDe.137). Committed terrorist attacks in the Syrian Arab Republic. Since 2016 redeployed to Northern Afghanistan to project attacks against Central Asia countries. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6210802 Khan-Shaykhun (53 km south of Idlib, location as at Mar. 2018), Syrian Arab Republic. Idlib, Aleppo and Khama, operation zone, Syrian Arab Republic",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,03/04/2018,29/03/2018,31/12/2020,13624 +KHATIRJI,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0359 Hussam AL-QATIRJI, CEO (EU-designated) Ultimate beneficial owner(s): Hussam AL-QATIRJI, Muhammad Baraa QATERJI (EU-designated) Relatives/business associates/entities or partners/links: Arvada/Arfada Petroleum Company JSC Registered address or each jurisdiction): Mazzah, Damascus, Syria (UK Statement of Reasons):Prominent and influential company operating across multiple sectors of the Syrian economy. By facilitating fuel, arms and ammunition trade towards between the regime and various actors including ISIS (Daesh) under the pretext of importing and exporting food items, supporting militias fighting alongside the regime and taking advantage of its ties with the regime to expand its commercial activity, Al Qatarji Company – whose board is headed by designated person Hossam Qatarji, a member of the Syrian People’s Assembly – supports and benefits from the Syrian regime. (Type of entity):Export. Import. Supplying oil and commodities. Trucking company (Subsidiaries):Arvada/Arfada Petroleum Company JSC",Entity,AKA,,Syria,17/02/2020,31/12/2020,13/05/2022,13822 +KHATIRJI,Abu,al-Bara,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KHATIRJI,Bara,,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KHATIRJI,Bara,Ahmad,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KHATIRJI,Muhammad,,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KHATIRJI,Muhammad,Bara,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KHATIRJI,Muhammad,Bara,Ahmad,Rushdi,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KHATIRJI,Muhammad,Nur,al-Din,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +KHATIRJI GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0359 Hussam AL-QATIRJI, CEO (EU-designated) Ultimate beneficial owner(s): Hussam AL-QATIRJI, Muhammad Baraa QATERJI (EU-designated) Relatives/business associates/entities or partners/links: Arvada/Arfada Petroleum Company JSC Registered address or each jurisdiction): Mazzah, Damascus, Syria (UK Statement of Reasons):Prominent and influential company operating across multiple sectors of the Syrian economy. By facilitating fuel, arms and ammunition trade towards between the regime and various actors including ISIS (Daesh) under the pretext of importing and exporting food items, supporting militias fighting alongside the regime and taking advantage of its ties with the regime to expand its commercial activity, Al Qatarji Company – whose board is headed by designated person Hossam Qatarji, a member of the Syrian People’s Assembly – supports and benefits from the Syrian regime. (Type of entity):Export. Import. Supplying oil and commodities. Trucking company (Subsidiaries):Arvada/Arfada Petroleum Company JSC",Entity,AKA,,Syria,17/02/2020,31/12/2020,13/05/2022,13822 +KHATTAB,,,,,,,,,,00/00/1984,,Iraq,Jordan,(1) K048787 (2) 486298,(1) Issued in Jordan (2) Issued in Jordan,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0149 (UN Ref):QDi.343 A member of Al-Qaida (QDe.004) as of 2012 and a fighter in the Syrian Arab Republic since early 2014. Provided financial, material, and technological support for Al-Qaida, Al-Nusrah Front for the People of the Levant (QDe.137) and Al-Qaida in Iraq (AQI) (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843240. Address country Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,24/03/2021,13194 +KHATTAB,Abou,,,,,,,,,00/00/1977,Binnish,Syria,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0113 (UN Ref):QDi.325 Official spokesman of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and emir of ISIL in Syria, closely associated with Abu Mohammed al-Jawlani (QDi.317) and Abu Bakr al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5809950",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,12/01/2022,13086 +KHATTAB,Anas,Hasan,,,,Amir,,,,07/04/1986,Damascus,Syria,Syria,00351762055,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0139 (UN Ref):QDi.336 Administrative amir of Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818211,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13133 +KHAZIM,Zouhair,,,,,,,,,00/00/1963,Ain al-Tinah,Syria,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0366 (UK Statement of Reasons):Minister of Transport. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2020,31/12/2020,31/12/2020,13982 +KHAZIM,Zuhair,,,,,,,,,00/00/1963,Ain al-Tinah,Syria,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0366 (UK Statement of Reasons):Minister of Transport. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,16/10/2020,31/12/2020,31/12/2020,13982 +KHAZMAT,Amir,,,,,,Амир Хазмат,,,22/10/1974,"Kitaevka, Novoselitskiy District, Stavropol Region",Russia,Russia,,,,,,Akharkho Street,11,Katyr-Yurt,,Achkhoy-Martanovskiy District,Republic of Chechnya,,Russia,(UK Sanctions List Ref):AQD0150 (UN Ref):QDi.396 Wanted by the authorities of the Russian Federation for terrorist crimes. Commands a suicide battalion of Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs (RSRSBCM) (QDe.100). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5966084,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/08/2016,03/08/2016,12/01/2022,13376 +KHEIROU,Ould,,,,,,,,,00/00/1970,Nouakchott,Mauritania,(1) Mauritania. (2) Mali,A1447120,Mali number. Expired on 19 Oct. 2011,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0188 (UN Ref):QDi.315 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Has provided logistical support to the Sahelian group Al Moulathamine, linked with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). International arrest warrant issued by Mauritania. Mother’s name is Tijal Bint Mohamed Dadda. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278393",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12859 +KHEIRULLAH,,,,,,Haji,,,,00/00/1965,"(1) Zumbaleh village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,BP4199631,Pakistan. Expired 25 June 2014. Officially cancelled as of 2013.,5440005229635,Issued in Pakistan. Officially cancelled as of 2013.,,Abdul Manan Chowk,Pashtunabad,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0129 (UN Ref):TAi.163 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan (TAi.162). Belongs to Barakzai tribe. Father’s name is Haji Khudai Nazar. Alternative father’s name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12702 +KHESOUANI,George,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +KHESOUANI,Georges,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +KHESOUANI,Jurj,,,,,,,,,26/09/1946,Yabrud,Syria,(1) Russia. (2) Syria,,,,,Manager of the branch of the Syrian Scientific Studies and Research Centre (SSRCC/CERS) near Jumraya/Jmraiya,Al Jalaa Street,,,,Yabroud,Damascus Province,,,"(UK Sanctions List Ref):SYR0050 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the engineering, construction and oil and gas sectors. He holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. (Gender):Male",Individual,Primary name variation,,Syria,09/03/2015,31/12/2020,31/12/2020,13232 +KHIABANI,Hossein,Modarres,,,,,,,,,,,Iran,,,,,Governor of Sistan-Baluchestan,,,,,,,,,"(UK Sanctions List Ref):IHR0113 (UK Statement of Reasons):Hossein Modarres KHIABANI is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations  in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations  with respect to the right to life and right to freedom of expression and peaceful assembly in Iran through his role as Governor of Sistan-Baluchestan Province and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15633 +KHIMINA,Elena,Ivanovna,,,,,,,,11/09/1953,Moscow,Russia,Russia,,,,,Head of Moscow Tax Office No. 25,,,,,,,,,"(UK Sanctions List Ref):GAC0006 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of state property via a complex scheme involving a fraudulent tax rebate. KHIMINA participated in the serious corruption through her approval of part of the fraudulent tax rebate. She was responsible for and her actions facilitated or provided support for the serious corruption. She also transferred or converted, or facilitated the transfer or conversion of, the proceeds of the serious corruption. (Gender):Female",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14083 +KHIMINA,Yelena,Ivanovna,,,,,Елена Ивановна ХИМИНА,,,11/09/1953,Moscow,Russia,Russia,,,,,Head of Moscow Tax Office No. 25,,,,,,,,,"(UK Sanctions List Ref):GAC0006 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of state property via a complex scheme involving a fraudulent tax rebate. KHIMINA participated in the serious corruption through her approval of part of the fraudulent tax rebate. She was responsible for and her actions facilitated or provided support for the serious corruption. She also transferred or converted, or facilitated the transfer or conversion of, the proceeds of the serious corruption. (Gender):Female",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14083 +KHINSHTEIN,Alexander,Evseevich,,,,,Хинште́йн Алекса́ндр Евсе́евич,,,26/10/1974,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0518 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14463 +KHLEBNIKOV,Viacheslav,Georgievich,,,,,,,,09/07/1967,Tambov,Russia,Russia,,,,,Businessman,,,,,,,,,"(UK Sanctions List Ref):GAC0010 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. KHLEBNIKOV participated in the fraud through his involvement, in particular, in the improper transfer of ownership of the company Makhaon and the submission of applications for fraudulent tax rebates. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14103 +KHLEBNIKOV,Viacheslav,Georgiyevich,,,,,,,,09/07/1967,Tambov,Russia,Russia,,,,,Businessman,,,,,,,,,"(UK Sanctions List Ref):GAC0010 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. KHLEBNIKOV participated in the fraud through his involvement, in particular, in the improper transfer of ownership of the company Makhaon and the submission of applications for fraudulent tax rebates. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14103 +KHLEBNIKOV,Vyacheslav,Georgievich,,,,,Вячеслав Георгиевич ХЛЕБНИКОВ,,,09/07/1967,Tambov,Russia,Russia,,,,,Businessman,,,,,,,,,"(UK Sanctions List Ref):GAC0010 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. KHLEBNIKOV participated in the fraud through his involvement, in particular, in the improper transfer of ownership of the company Makhaon and the submission of applications for fraudulent tax rebates. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14103 +KHLEBNIKOV,Vyacheslav,Georgiyevich,,,,,,,,09/07/1967,Tambov,Russia,Russia,,,,,Businessman,,,,,,,,,"(UK Sanctions List Ref):GAC0010 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. KHLEBNIKOV participated in the fraud through his involvement, in particular, in the improper transfer of ownership of the company Makhaon and the submission of applications for fraudulent tax rebates. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14103 +KHLOUDI,Mohammad,,,,,,,,,,,,Syria,,,,,An engineer at the Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0163 Employee of Scientific Studies and Research Centre (UK Statement of Reasons):Mohammad Darar Khaludi is an engineer at the Syrian Scientific Studies and Research Centre. He is involved in chemical weapons proliferation and delivery. Mohammad Darar Khaludi has been also known to be involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13503 +KHLOUDI,Mohammad,Darar,,,,,,,,,,,Syria,,,,,An engineer at the Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0163 Employee of Scientific Studies and Research Centre (UK Statement of Reasons):Mohammad Darar Khaludi is an engineer at the Syrian Scientific Studies and Research Centre. He is involved in chemical weapons proliferation and delivery. Mohammad Darar Khaludi has been also known to be involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13503 +KHLOUDI,Mohammed,Dirar,,,,,,,,,,,Syria,,,,,An engineer at the Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0163 Employee of Scientific Studies and Research Centre (UK Statement of Reasons):Mohammad Darar Khaludi is an engineer at the Syrian Scientific Studies and Research Centre. He is involved in chemical weapons proliferation and delivery. Mohammad Darar Khaludi has been also known to be involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13503 +KHLYAKINA,Oksana,Vladimirovna,,,,,Оксана Владимировна ХЛЯКИНА,,,28/11/1969,Lipetsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0907 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14858 +KHMARIN,Viktor,Nikolaevich,,,,,Виктор Николаевич Хмарин,,,10/12/1949,St Petersburg,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1423 (UK Statement of Reasons):Viktor KHMARIN (henceforth KHMARIN) is a Russian lawyer and businessman, who is a friend and relative, by marriage, of President Vladimir Putin. KHMARIN has owned a number of businesses including, LLC ""NefteProduktServis"", which operated in the Russia energy industry, a sector of strategic significance to the Government of Russia. Therefore, KHMARIN has obtained a benefit from or supported the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,13/05/2022,13/05/2022,13/05/2022,15384 +KHODAKOVSKII,Aleksandr,Sergeevich,,,,,,,,18/12/1972,Donetsk,,Ukraine,,,,,"Former so-called ""Minister of Security of the Donetsk People's Republic",,,,,,,,,"(UK Sanctions List Ref):RUS0119 Former so-called 'Minister of Security of the Donetsk People's Republic' (UK Statement of Reasons):Former so called ""Minister of Security of People's Republic of Donetsk"". Responsible for the separatist security activities of the ""government of the Donetsk People's Republic"". Remains active in supporting separatist actions or policies (Gender):Male",Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,31/12/2020,13010 +KHODAKOVSKY,Alexander,Sergeevich,,,,,,,,18/12/1972,Donetsk,,Ukraine,,,,,"Former so-called ""Minister of Security of the Donetsk People's Republic",,,,,,,,,"(UK Sanctions List Ref):RUS0119 Former so-called 'Minister of Security of the Donetsk People's Republic' (UK Statement of Reasons):Former so called ""Minister of Security of People's Republic of Donetsk"". Responsible for the separatist security activities of the ""government of the Donetsk People's Republic"". Remains active in supporting separatist actions or policies (Gender):Male",Individual,Primary name,,Russia,12/07/2014,31/12/2020,31/12/2020,13010 +KHODAKOVSKYI,Oleksandr,Serhiyovych,,,,,,,,18/12/1972,Donetsk,,Ukraine,,,,,"Former so-called ""Minister of Security of the Donetsk People's Republic",,,,,,,,,"(UK Sanctions List Ref):RUS0119 Former so-called 'Minister of Security of the Donetsk People's Republic' (UK Statement of Reasons):Former so called ""Minister of Security of People's Republic of Donetsk"". Responsible for the separatist security activities of the ""government of the Donetsk People's Republic"". Remains active in supporting separatist actions or policies (Gender):Male",Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,31/12/2020,13010 +KHODAKOVSKYY,Oleksandr,Serhiyovych,,,,,,,,18/12/1972,Donetsk,,Ukraine,,,,,"Former so-called ""Minister of Security of the Donetsk People's Republic",,,,,,,,,"(UK Sanctions List Ref):RUS0119 Former so-called 'Minister of Security of the Donetsk People's Republic' (UK Statement of Reasons):Former so called ""Minister of Security of People's Republic of Donetsk"". Responsible for the separatist security activities of the ""government of the Donetsk People's Republic"". Remains active in supporting separatist actions or policies (Gender):Male",Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,31/12/2020,13010 +KHOKHLOVA,Olga,Nikolayevna,,,,,Ольга Николаевна Хохло́ва,,,18/11/1957,Murom,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0999 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14950 +KHOMENKO,Sergei,Nikolaevich,,,,,,,,21/09/1966,Yasinovataya (former USSR),Former USSR Currently Ukraine,Belarus,,,,,Deputy Minister of the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0008 (UK Statement of Reasons):Siarhei Khamenka is Deputy Minister of Internal Affairs and Major General of Police. In his role, he is responsible for the actions of the police in Minsk and therefore responsible for the serious human rights violations and abuses against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13933 +KHOMENKO,SIARHEI,MIKALAEVICH,,,,,,,,21/09/1966,Yasinovataya (former USSR),Former USSR Currently Ukraine,Belarus,,,,,Deputy Minister of the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0008 (UK Statement of Reasons):Siarhei Khamenka is Deputy Minister of Internal Affairs and Major General of Police. In his role, he is responsible for the actions of the police in Minsk and therefore responsible for the serious human rights violations and abuses against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13933 +KHOR,Gleb,Yakovlevich,,,,,Хор Глеб Яковлевич,,,08/04/1963,"Belytske , Donetsk Oblast",Ukraine,Russia,530300125,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0581 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14526 +KHORAMABADI,Abdolsamad,,,,,,,,,,,,,,,,,(1) Head of 'Commission to Determine the Instances of Criminal Content'. (2) Deputy Director for Judicial Oversight since 13 October 2013,,,,,,,,,"(UK Sanctions List Ref):IHR0006 (UK Statement of Reasons):Abdolsamad Khoramabadi, as Head of the ‘Commission to Determine the Instances of Criminal Content’, is or has been involved in a governmental organization in charge of online censorship and cyber crime. Under his leadership the Commission defined ‘cybercrime’ by a number of vague categories that criminalize creation and publication of content deemed inappropriate by the regime. He is responsible for repression and the blocking of numerous opposition sites, electronic newspapers, blogs, sites of human rights NGOs and of Google and Gmail since September 2012. He and the Commission actively contributed to the death in detention of the blogger Sattar Beheshti in November 2012. Thus the Commission is directly responsible for systemic violations of human rights, in particular by banning and filtering websites to the general public, and occasionally disabling Internet access altogether. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/03/2013,31/12/2020,16/02/2022,12865 +KHORASAN AMMUNITION AND METALLURGY INDUSTRIES,,,,,,,,,,,,,,,,,,,2nd km of Khalaj Road,end of Seyyedi St,PO Box 91735-549,,,Mashhad,91735,Iran,(UK Sanctions List Ref):INU0041 (UK Statement of Reasons):Involved in the procurement of components for centrifuges. (Phone number):+98 511 3853008. +98 511 3870225 (Type of entity):Enterprise (Parent company):Ammunition and Metallurgy Group. Ammunition Industries Group (AMIG). Defence Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12266 +KHORASAN METALLURGY INDUSTRIES,,,,,,,,,,,,,,,,,,,2nd km of Khalaj Road,end of Seyyedi St,PO Box 91735-549,,,Mashhad,91735,Iran,(UK Sanctions List Ref):INU0041 (UK Statement of Reasons):Involved in the procurement of components for centrifuges. (Phone number):+98 511 3853008. +98 511 3870225 (Type of entity):Enterprise (Parent company):Ammunition and Metallurgy Group. Ammunition Industries Group (AMIG). Defence Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12266 +KHORASAN METALLURGY INDUSTRIES,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0158 (UN Ref):IRe.037 Subsidiary of AMIG which depends on DIO. Involved in the production of centrifuges components. [Old Reference # E.03.III.8] (Parent company):AMMUNITION AND METALLURGY INDUSTRIES GROUP (AMIG). Defence Industries Organisation (DIO),Entity,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,31/12/2020,10448 +KHORASAN METALOGY INDUSTRIES,,,,,,,,,,,,,,,,,,,2nd km of Khalaj Road,end of Seyyedi St,PO Box 91735-549,,,Mashhad,91735,Iran,(UK Sanctions List Ref):INU0041 (UK Statement of Reasons):Involved in the procurement of components for centrifuges. (Phone number):+98 511 3853008. +98 511 3870225 (Type of entity):Enterprise (Parent company):Ammunition and Metallurgy Group. Ammunition Industries Group (AMIG). Defence Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12266 +KHOROSHILOV,Dmitry,Aleksandrovich,,,,,ХОРОШИЛОВ Дмитрий Александрович,Cyrillic,Russian,20/12/1982,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1306 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15258 +KHOROSHILOV,Dmitry,Alexandrovich,,,,,,,,20/12/1982,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1306 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15258 +KHORRAMABADI,,,,,,,,,,,,,,,,,,(1) Head of 'Commission to Determine the Instances of Criminal Content'. (2) Deputy Director for Judicial Oversight since 13 October 2013,,,,,,,,,"(UK Sanctions List Ref):IHR0006 (UK Statement of Reasons):Abdolsamad Khoramabadi, as Head of the ‘Commission to Determine the Instances of Criminal Content’, is or has been involved in a governmental organization in charge of online censorship and cyber crime. Under his leadership the Commission defined ‘cybercrime’ by a number of vague categories that criminalize creation and publication of content deemed inappropriate by the regime. He is responsible for repression and the blocking of numerous opposition sites, electronic newspapers, blogs, sites of human rights NGOs and of Google and Gmail since September 2012. He and the Commission actively contributed to the death in detention of the blogger Sattar Beheshti in November 2012. Thus the Commission is directly responsible for systemic violations of human rights, in particular by banning and filtering websites to the general public, and occasionally disabling Internet access altogether. (Gender):Male",Individual,AKA,,Iran (Human Rights),12/03/2013,31/12/2020,16/02/2022,12865 +KHOTIMSKI,Dmitri,Vladimirovich,,,,,,,,29/06/1973,,Russia,,751600476,Russia,,,(1) Chief Investment Officer Sovcombank (2) Member of the Supervisory Board Sovcombank,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1582 (UK Statement of Reasons):Dimitry Vladimirovich Khotimskiy is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SOVCOMBANK which is carrying on business in the financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely SOVCOMBANK which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15526 +KHOTIMSKI,Sergei,Vladimirovich,,,,,,,,12/04/1978,Moscow,Russia,Russia,716765654,Russia,,,(!) First Deputy Chairman Sovcombank (2) Member of the Supervisory Board Sovcombank,Flat 347,Block B,Victory Square 1,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1583 (UK Statement of Reasons):Sergey Vladimirovich Khotimskiy is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SOVCOMBANK which is carrying on business in the financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely SOVCOMBANK which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15527 +KHOTIMSKIY,Dmitry,Vladimirovich,,,,,Дмитрий Владимирович Хотимский,Cyrillic,Russian,29/06/1973,,Russia,,751600476,Russia,,,(1) Chief Investment Officer Sovcombank (2) Member of the Supervisory Board Sovcombank,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1582 (UK Statement of Reasons):Dimitry Vladimirovich Khotimskiy is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SOVCOMBANK which is carrying on business in the financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely SOVCOMBANK which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15526 +KHOTIMSKIY,Sergey,Vladimirovich,,,,,Сергей Владимирович Хотимский,Cyrillic,Russian,12/04/1978,Moscow,Russia,Russia,716765654,Russia,,,(!) First Deputy Chairman Sovcombank (2) Member of the Supervisory Board Sovcombank,Flat 347,Block B,Victory Square 1,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1583 (UK Statement of Reasons):Sergey Vladimirovich Khotimskiy is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SOVCOMBANK which is carrying on business in the financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely SOVCOMBANK which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15527 +KHOTSENKO,Vitaly,Pavlovich,,,,,Виталий Павлович Хоценко,,,18/03/1986,Dnepropetrovsk,Ukraine,Russia,,,,,Prime Minister of the so-called Donetsk People’s Republic,,,,,,,,,"(UK Sanctions List Ref):RUS1537 (UK Statement of Reasons):Vitaly Pavlovich KHOTSENKO is a Russian official and politician appointed as Prime Minister of the so-called Donetsk People’s Republic in eastern Ukraine in June 2022. KHOTSENKO is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he engages in and provides support for policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15490 +KHOVANSKAYA,Galina,Petrovna,,,,,Хованская Галина Петровна,,,23/08/1943,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0519 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14464 +KHRAIT,Najm,,,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHRAIT,Najm-addeen,,,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHRAIT,Najm-addin,,,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHRAIT,Najm-eddeen,,,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHRAIT,Najm-Eddin,,,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHRAIT,Nejm-addeen,,,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHRAIT,Nejm-addin,,,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHRAIT,Nejm-eddeen,,,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHRAIT,Nejm-eddin,,,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHREIT,Najm,Al,Deen,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHREIT,Najm-addeen,,,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHREIT,Najm-addin,,,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHREIT,Najm-eddeen,,,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHREIT,Najm-Eddin,,,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHREIT,Nejm-addeen,,,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHREIT,Nejm-addin,,,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHREIT,Nejm-eddeen,,,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHREIT,Nejm-eddin,,,,,,,,,,,,,,,,,Former State Minister,,,,,,,,,(UK Sanctions List Ref):SYR0187 (UK Statement of Reasons):Former minister within the regime appointed after May 2011. Shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12787 +KHRENIN,Viktar,Gienadzjevich,,,,,,,,01/08/1971,"Novogroduk, Grodno Region",Belarus,Belarus,,,,,Minister of Defence,Ministry of Defence of the Republic of Belarus,1,Kommunisticheskaya St.,Minsk,,,220034,Belarus,"(UK Sanctions List Ref):BEL0096 (UK Statement of Reasons):In his position as Minister of Defence of Belarus since 20 January 2020, Viktor Khrenin is responsible for the decision taken by the Command of the Air Forces and Air Defence Forces for the order dispatching military aircraft to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In doing so, Khrenin acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian aviation authorities. This resulted in the forced redirection of flight FR4978, the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner, Sofia Sapega. This politically motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression against civil society and democratic opposition in Belarus. Viktor Khrenin is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,09/08/2021,14113 +KHRENIN,Viktar,Henadzevich,,,,,ХРЭНІН Віктар Генадзьевіч,,,01/08/1971,"Novogroduk, Grodno Region",Belarus,Belarus,,,,,Minister of Defence,Ministry of Defence of the Republic of Belarus,1,Kommunisticheskaya St.,Minsk,,,220034,Belarus,"(UK Sanctions List Ref):BEL0096 (UK Statement of Reasons):In his position as Minister of Defence of Belarus since 20 January 2020, Viktor Khrenin is responsible for the decision taken by the Command of the Air Forces and Air Defence Forces for the order dispatching military aircraft to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In doing so, Khrenin acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian aviation authorities. This resulted in the forced redirection of flight FR4978, the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner, Sofia Sapega. This politically motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression against civil society and democratic opposition in Belarus. Viktor Khrenin is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,09/08/2021,14113 +KHRENIN,Viktor,Gennadevich,,,,,ХРЕНИН Виктор Геннадьевич,,,01/08/1971,"Novogroduk, Grodno Region",Belarus,Belarus,,,,,Minister of Defence,Ministry of Defence of the Republic of Belarus,1,Kommunisticheskaya St.,Minsk,,,220034,Belarus,"(UK Sanctions List Ref):BEL0096 (UK Statement of Reasons):In his position as Minister of Defence of Belarus since 20 January 2020, Viktor Khrenin is responsible for the decision taken by the Command of the Air Forces and Air Defence Forces for the order dispatching military aircraft to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In doing so, Khrenin acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian aviation authorities. This resulted in the forced redirection of flight FR4978, the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner, Sofia Sapega. This politically motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression against civil society and democratic opposition in Belarus. Viktor Khrenin is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name,,Belarus,21/06/2021,21/06/2021,09/08/2021,14113 +KHRYAKOV,Alexander,,,,,,,,,06/11/1958,Donetsk,,Ukraine,,,,,Former so-called “Minister of Security of the Donetsk People’s Republic” .,,,,,,,,,(UK Sanctions List Ref):RUS0120 Former so-called 'Prime Minister of the Council of Ministers of the Luhansk People's Republic'. Continues activities of supporting LNR separatist structures. (UK Statement of Reasons):Former so-called 'Information and Mass Communications Minister' of the 'Donetsk People's Republic'. Currently a member of the so-called 'People's Council of the 'Donetsk People's Republic'. Responsible for the pro-separatist propaganda activities of the 'government' of the 'Donetsk People's Republic'. Continues active support to the separatist actions in Eastern Ukraine. (Gender):Male,Individual,Primary name,,Russia,12/07/2014,31/12/2020,16/09/2022,13012 +KHRYAKOV,Alexander,Vitalievich,,,,,Александр Витальевич ХРЯКОВ,,Russian,06/11/1958,Donetsk,,Ukraine,,,,,Former so-called “Minister of Security of the Donetsk People’s Republic” .,,,,,,,,,(UK Sanctions List Ref):RUS0120 Former so-called 'Prime Minister of the Council of Ministers of the Luhansk People's Republic'. Continues activities of supporting LNR separatist structures. (UK Statement of Reasons):Former so-called 'Information and Mass Communications Minister' of the 'Donetsk People's Republic'. Currently a member of the so-called 'People's Council of the 'Donetsk People's Republic'. Responsible for the pro-separatist propaganda activities of the 'government' of the 'Donetsk People's Republic'. Continues active support to the separatist actions in Eastern Ukraine. (Gender):Male,Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,16/09/2022,13012 +KHRYAKOV,Aleksandr,Vitalievich,,,,,,,,06/11/1958,Donetsk,,Ukraine,,,,,Former so-called “Minister of Security of the Donetsk People’s Republic” .,,,,,,,,,(UK Sanctions List Ref):RUS0120 Former so-called 'Prime Minister of the Council of Ministers of the Luhansk People's Republic'. Continues activities of supporting LNR separatist structures. (UK Statement of Reasons):Former so-called 'Information and Mass Communications Minister' of the 'Donetsk People's Republic'. Currently a member of the so-called 'People's Council of the 'Donetsk People's Republic'. Responsible for the pro-separatist propaganda activities of the 'government' of the 'Donetsk People's Republic'. Continues active support to the separatist actions in Eastern Ukraine. (Gender):Male,Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,16/09/2022,13012 +KHRYAKOV,Oleksandr,Vitaliyovych,,,,,Олександр Віталійович ХРЯКОВ,,Ukrainian,06/11/1958,Donetsk,,Ukraine,,,,,Former so-called “Minister of Security of the Donetsk People’s Republic” .,,,,,,,,,(UK Sanctions List Ref):RUS0120 Former so-called 'Prime Minister of the Council of Ministers of the Luhansk People's Republic'. Continues activities of supporting LNR separatist structures. (UK Statement of Reasons):Former so-called 'Information and Mass Communications Minister' of the 'Donetsk People's Republic'. Currently a member of the so-called 'People's Council of the 'Donetsk People's Republic'. Responsible for the pro-separatist propaganda activities of the 'government' of the 'Donetsk People's Republic'. Continues active support to the separatist actions in Eastern Ukraine. (Gender):Male,Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,16/09/2022,13012 +KHUBEZOV,Dmitry,Anatolievich,,,,,Хубезов Дмитрий Анатольевич,,,20/12/1971,Ryazan,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0520 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14465 +KHUDAI NAZAR,KHAIRULLAH,BARAKZAI,,,,Haji,خيرالله بارکزی خدای نظر,,,00/00/1965,"(1) Zumbaleh village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,BP4199631,Pakistan. Expired 25 June 2014. Officially cancelled as of 2013.,5440005229635,Issued in Pakistan. Officially cancelled as of 2013.,,Abdul Manan Chowk,Pashtunabad,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0129 (UN Ref):TAi.163 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan (TAi.162). Belongs to Barakzai tribe. Father’s name is Haji Khudai Nazar. Alternative father’s name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12702 +KHUDAI RAHIM,Mohammed Qasim,Mir Wali,,,,Haji,محمد قاسم میر ولی خدايرحيم,,,00/00/1975,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Room number 33,5th Floor Sarafi Market,,,Kandahar City,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +KHUDAI RAHIM,Mohammed Qasim,Mir Wali,,,,Haji,محمد قاسم میر ولی خدايرحيم,,,00/00/1975,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Safaar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +KHUDAI RAHIM,Mohammed Qasim,Mir Wali,,,,Haji,محمد قاسم میر ولی خدايرحيم,,,00/00/1975,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Wesh,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +KHUDAI RAHIM,Mohammed Qasim,Mir Wali,,,,Haji,محمد قاسم میر ولی خدايرحيم,,,00/00/1976,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Wesh,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +KHUDAI RAHIM,Mohammed Qasim,Mir Wali,,,,Haji,محمد قاسم میر ولی خدايرحيم,,,00/00/1976,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Safaar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +KHUDAI RAHIM,Mohammed Qasim,Mir Wali,,,,Haji,محمد قاسم میر ولی خدايرحيم,,,00/00/1976,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Room number 33,5th Floor Sarafi Market,,,Kandahar City,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +KHUDAIDAD,MOHAMMAD NAIM,BARICH,,,,Mullah,محمد نعيم بريخ خدايداد,,,00/00/1975,"(1) Lakhi village, Hazarjuft area, Garmsir District, Helmand Province (2) Laki village, Garmsir District, Helmand Province (3) Lakari village, Garmsir District, Helmand Province (4) Darvishan, Garmsir District, Helmand Province (5) De Luy Wiyalah village, Garmsir District, Helmand Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan (5) Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation under the Taliban,,,,,,,,,(UK Sanctions List Ref):AFG0015 (UN Ref):TAi.013 Member of the Taliban Military Commission as at mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7354 +KHUDAVERDYAN,Tigran,Oganesovich,,,,,ХУДАВЕРДЯН Тигран Органесович,Cyrillic,Russian,28/12/1981,Yerevan,Armenia,Armenia,,,,,Former Executive Director & Deputy CEO at Yandex NV,,,,,,,,,"(UK Sanctions List Ref):RUS1034 (UK Statement of Reasons):Tigran Oganesovich Khudaverdyan was the Executive Director & Deputy CEO at Yandex, a leading Russian technology company, until March 2022. Khudaverdyan therefore has been involved in obtaining a benefit from or supporting the Government of Russia, as director of an entity carrying on business in a sector of strategic significance to the Government of Russia – namely, the Russian information, communications and digital technologies sector.  (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14971 +KHUDOUR,Mohamed,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHUDOUR,Mohammad,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHUDOUR,Mohammed,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHUDOUR,Muhammad,,,,,,,,,,Lattakia,,,,,,,Commander of the 3rd Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0157 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12475 +KHUDR,Khudr,,,,,,,,,,,,,,,,,Head of the Latakia branch of the General Intelligence Directorate.,,,,,,,,,(UK Sanctions List Ref):SYR0126 (UK Statement of Reasons):Head of the Latakia branch of the General Intelligence Directorate. Responsible for the torture of opponents in custody. (Gender):Male,Individual,Primary name,,Syria,24/07/2012,31/12/2020,31/12/2020,12715 +KHULOUDI,Mohammad,,,,,,,,,,,,Syria,,,,,An engineer at the Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0163 Employee of Scientific Studies and Research Centre (UK Statement of Reasons):Mohammad Darar Khaludi is an engineer at the Syrian Scientific Studies and Research Centre. He is involved in chemical weapons proliferation and delivery. Mohammad Darar Khaludi has been also known to be involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13503 +KHULOUDI,Mohammad,Darar,,,,,,,,,,,Syria,,,,,An engineer at the Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0163 Employee of Scientific Studies and Research Centre (UK Statement of Reasons):Mohammad Darar Khaludi is an engineer at the Syrian Scientific Studies and Research Centre. He is involved in chemical weapons proliferation and delivery. Mohammad Darar Khaludi has been also known to be involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13503 +KHULOUDI,Mohammed,Dirar,,,,,,,,,,,Syria,,,,,An engineer at the Scientific Studies and Research Centre,,,,,,,,,"(UK Sanctions List Ref):SYR0163 Employee of Scientific Studies and Research Centre (UK Statement of Reasons):Mohammad Darar Khaludi is an engineer at the Syrian Scientific Studies and Research Centre. He is involved in chemical weapons proliferation and delivery. Mohammad Darar Khaludi has been also known to be involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13503 +KHUSNULLIN,Marat,Shakirzyanovich,,,,,ХУСНУЛЛИН Марат Шакирзянович,Cyrillic,Russian,09/08/1966,Kazan,Russia,Russia,,,,,"Deputy Prime Minister, Russia",,,,,,,,,"(UK Sanctions List Ref):RUS0691 (UK Statement of Reasons):MARAT SHAKIRZYANOVICH KHUSNULLIN, hereafter KHUSNULLIN, is the Deputy Prime Minister of Russia for Construction and Regional Development. In this capacity, he is responsible for and/or providing support for and/or promoting Russian governmental policies on construction and development in Crimea. KHUSNULLIN is, therefore, responsible for and/or providing support for and/or promoting actions and policies which undermine or threaten the territorial integrity, sovereignty and independence of Ukraine or which destabilise Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14642 +KHUWAYT,Khuwayt,,,,,,,,,00/00/1965,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +KHUWAYT,Khuwayt,,,,,,,,,00/00/1966,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +KHUWAYT,Khuwayt,,,,,,,,,00/00/1967,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +KHUWAYT,Khuwayt,,,,,,,,,00/00/1968,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +KHUWAYT,Khuwayt,,,,,,,,,00/00/1969,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +KHUWAYT,Mullah,,,,,,,,,00/00/1965,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +KHUWAYT,Mullah,,,,,,,,,00/00/1966,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +KHUWAYT,Mullah,,,,,,,,,00/00/1967,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +KHUWAYT,Mullah,,,,,,,,,00/00/1968,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +KHUWAYT,Mullah,,,,,,,,,00/00/1969,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +KHVOROSTIAN,Svetlana,Vadimovna,,,,,ХВОРОСТЯН Светлана Вадимовна,Cyrillic,Russian,07/03/1990,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1274 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15226 +KHVOROSTYAN,Svetlana,Vadimovna,,,,,,,,07/03/1990,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1274 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15226 +KIASATI,Morteza,,,,,,,,,,,,,,,,,"Judge of the Ahwaz Revolutionary Court, Branch 4",,,,,,,,,"(UK Sanctions List Ref):IHR0066 (UK Statement of Reasons):Judge of the Ahwaz Revolutionary Court, Branch 4, imposed death sentences on four Arab political prisoners, Taha Heidarian, Abbas Heidarian, Abd al-Rahman Heidarian (three brothers) and Ali Sharifi. They were arrested, tortured and hanged without due process. These cases and the lack of due process were referenced in a report dated 13 September 2012 by the UN Special Rapporteur on human rights in Iran, the UN Secretary General's report on Iran of 22 August 2012.",Individual,Primary name,,Iran (Human Rights),12/03/2013,31/12/2020,31/12/2020,12850 +KIB,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan/Pakistan border area (previous location),,,"(UK Sanctions List Ref):AQD0063 (UN Ref):QDe.158 Associated with Al-Nusrah Front for the People of the Levant (QDe.137). Committed terrorist attacks in the Syrian Arab Republic. Since 2016 redeployed to Northern Afghanistan to project attacks against Central Asia countries. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6210802 Khan-Shaykhun (53 km south of Idlib, location as at Mar. 2018), Syrian Arab Republic. Idlib, Aleppo and Khama, operation zone, Syrian Arab Republic",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,03/04/2018,29/03/2018,31/12/2020,13624 +KIBIS,Boris,Borisovich,,,,,,,,20/11/1977,,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0012 (UK Statement of Reasons):Boris Borisovich Kibis was an investigator at the Russian Interior Ministry in 2012, at the time of the posthumous trial of Sergei Magnitsky. In this role, he concealed evidence relating to the mistreatment of Magnitsky, which contributed significantly to his death on 16 November 2009, by supporting the actions of his predecessor Oleg Silchenko and the ‘team’ of investigators who were involved in that conduct. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13868 +KIDYAEV,Viktor,Borisovich,,,,,Виктор Борисович Кидяев,,,09/07/1956,Zhukovka,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0420 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14365 +KIEC,,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,(UK Sanctions List Ref):DPR0058 (UK Statement of Reasons):The Korea International Exhibition Corporation has assisted entities in the evasion of sanctions by hosting the Pyongyang International Trade Fair which provides designated entities with the opportunity to breach UN sanctions by continuing economic activity.,Entity,AKA,,Democratic People's Republic of Korea,16/10/2017,31/12/2020,31/12/2020,13550 +KILCHEVSKY,Vitaly,Fridrikhovich,,,,Colonel,КИЛЬЧЕВСКИЙ Виталий Фридрихович,Cyrillic,Russian,31/10/1978,Patashnya,Belarus,Belarus,,,,,Deputy Commander of the Armament Forces and Head of Armaments of Western Operational Command,,,,,,,,,"(UK Sanctions List Ref):RUS0741 (UK Statement of Reasons):Colonel Vitaly Fridrikhovich KILCHEVSKY has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being involved in the command of Belarusian forces who were involved in a joint exercise with the Russian military ahead of Russia’s invasion of Ukraine which: (1) threatened Ukraine; and (2) provided cover for Russian military preparations to invade Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14692 +KIM,Chang,Hyok,,,,,,,,29/04/1963,North Hamgyong,North Korea,North Korea,472130058,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0018 Associations with Pan Systems, Reconnaissance General Bureau, Glocom, International Golden Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Kim Chang Hyok has been identified by the UN Panel of Experts as the representative of Pan Systems Pyongyang in Malaysia. Pan Systems Pyongyang has been designated by the European Union for assisting in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related materiel to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. Established multiple accounts in Malaysia in the name of front companies of ‘Glocom’, itself a front company of designated entity Pan Systems Pyongyang. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13593 +KIM,Chol,Nam,,,,,,,,19/02/1970,,,North Korea,563120238,,,,"(1) President of Korea Kumsan Trading Corporation (2) Former Director, Dandong Office of Sobaeksu United Corp.",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0019 Associations with KOMID, Korea Sobaeksu United Corporation, Namhung Trading Corporation, and Namchongang Trading Corporation (UK Statement of Reasons):President of Korea Kumsan Trading Corporation, a company that procures supplies for General Bureau of Atomic Energy and serves as a cash route to DPRK. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,03/03/2022,13588 +KIM,Chun,Sam,,,,,,,,,,,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0020 (UK Statement of Reasons):Lieutenant General, former member of the Central Military Commission of the Workers' Party of Korea, which is the key body for national defence matters in the DPRK. Former Director of the Operations Department of the Military Headquarters of the Korean People’s Army and first vice chief of the Military Headquarters. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,19/01/2021,13362 +KIM,Chun,Sop,,,,,,,,,,,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0021 (UK Statement of Reasons):Former Director of the Munitions Industry Department. Former member of the National Defence Commission which is now reformed into the State Affairs Commission (SAC), which is a key body for national defence matters in the DPRK. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. At photo session for those who contributed to successful SLBM test in May 2015. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13363 +KIM,Chun-Sam,,,,,Lieutenant General,,,,,,,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0020 (UK Statement of Reasons):Lieutenant General, former member of the Central Military Commission of the Workers' Party of Korea, which is the key body for national defence matters in the DPRK. Former Director of the Operations Department of the Military Headquarters of the Korean People’s Army and first vice chief of the Military Headquarters. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,19/01/2021,13362 +KIM,Chun-Sop,,,,,,,,,,,,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0021 (UK Statement of Reasons):Former Director of the Munitions Industry Department. Former member of the National Defence Commission which is now reformed into the State Affairs Commission (SAC), which is a key body for national defence matters in the DPRK. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. At photo session for those who contributed to successful SLBM test in May 2015. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13363 +KIM,Hyok,Chan,,,,Diplomat,,,,09/06/1970,,,North Korea,563410191,,,,Secretary DPRK Embassy Luanda,,,,,,,,Angola,"(UK Sanctions List Ref):DPR0040 Associations with Green Pine. (UK Statement of Reasons):Secretary, DPRK Embassy Luanda. Kim Hyok Chan has served as a representative of Green Pine, a UN listed entity, including negotiating contracts for the refurbishment of Angolan naval vessels in violation of the prohibitions imposed by United Nations Security Council Resolutions. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,16/10/2017,31/12/2020,31/12/2020,13549 +KIM,Il,Su,,,,,,,,02/09/1965,Pyongyang,North Korea,North Korea,,,,,Manager in the reinsurance department of Korea National Insurance Corporation (KNIC) Headquarters in Pyongyang,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0022 Associations with Korean National Insurance Corporation (KNIC) (UK Statement of Reasons):Manager in the reinsurance department of Korea National Insurance Corporation (KNIC) based in the headquarters in Pyongyang and former authorised chief representative of KNIC in Hamburg, acting on behalf of KNIC or at its direction. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,03/07/2015,31/12/2020,31/12/2020,13255 +KIM,Il-Su,,,,,,,,,02/09/1965,Pyongyang,North Korea,North Korea,,,,,Manager in the reinsurance department of Korea National Insurance Corporation (KNIC) Headquarters in Pyongyang,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0022 Associations with Korean National Insurance Corporation (KNIC) (UK Statement of Reasons):Manager in the reinsurance department of Korea National Insurance Corporation (KNIC) based in the headquarters in Pyongyang and former authorised chief representative of KNIC in Hamburg, acting on behalf of KNIC or at its direction. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,03/07/2015,31/12/2020,31/12/2020,13255 +KIM,James,,,,,,,,,29/04/1963,North Hamgyong,North Korea,North Korea,472130058,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0018 Associations with Pan Systems, Reconnaissance General Bureau, Glocom, International Golden Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Kim Chang Hyok has been identified by the UN Panel of Experts as the representative of Pan Systems Pyongyang in Malaysia. Pan Systems Pyongyang has been designated by the European Union for assisting in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related materiel to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. Established multiple accounts in Malaysia in the name of front companies of ‘Glocom’, itself a front company of designated entity Pan Systems Pyongyang. (Gender):Male",Individual,AKA,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13593 +KIM,Jong,Gak,,,,,,,,20/07/1941,Pyongyang,North Korea,North Korea,,,,,"Rector, Military University of Kim Il-Sung",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0041 Vice Marshal in the Korean People’s Army, Rector of the Military University of Kim Il-Sung, former Minister of the People's Armed Forces, former member of the Central Military Commission of the Workers’ Party of Korea, which is a key body for national defence matters in the DPRK. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. Former Director of the General Political Department of the Korean People’s Army. Former Member of the Central Military Commission of the Workers Party of Korea. Responsible for supporting or promoting the DPRK's nuclear-related, ballistic-missile-related or other weapons of mass destruction related programmes. (UK Statement of Reasons):Vice Marshal in the Korean People’s Army, Rector of the Military University of Kim Il-Sung, former member of the Central Military Commission of the Workers’ Party of Korea, which is a key body for national defence matters in the DPRK. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. (Gender):Male",Individual,AKA,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13364 +KIM,Jong-Gak,,,,,Vice Marshal,,,,20/07/1941,Pyongyang,North Korea,North Korea,,,,,"Rector, Military University of Kim Il-Sung",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0041 Vice Marshal in the Korean People’s Army, Rector of the Military University of Kim Il-Sung, former Minister of the People's Armed Forces, former member of the Central Military Commission of the Workers’ Party of Korea, which is a key body for national defence matters in the DPRK. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. Former Director of the General Political Department of the Korean People’s Army. Former Member of the Central Military Commission of the Workers Party of Korea. Responsible for supporting or promoting the DPRK's nuclear-related, ballistic-missile-related or other weapons of mass destruction related programmes. (UK Statement of Reasons):Vice Marshal in the Korean People’s Army, Rector of the Military University of Kim Il-Sung, former member of the Central Military Commission of the Workers’ Party of Korea, which is a key body for national defence matters in the DPRK. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13364 +KIM,Kyong,Hui,,,,General,,,,06/05/1981,Pyongyang,North Korea,North Korea,,,,,General in the Korean People’s Army,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0055 Association with Tcheul Hy Djang, Yong Nam Kim and Su Gwang Kim (UK Statement of Reasons):Kim Kyong Hui has been involved together with her husband Kim Su Gwang, her father-in-law Kim Yong Nam and her mother-in-law Djang Tcheul Hy in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She received several bank transfers from her husband Kim Su Gwang and father-in-law Kim Yong Nam, and transferred money to accounts outside the European Union in her name or the name of her mother-in-law, Djang Tcheul Hy. (Gender):Female",Individual,Primary name,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,04/03/2022,13665 +KIM,Pyong,Chol,,,,,,,,,,,North Korea,,,,,,,,,,,,,Malaysia,"(UK Sanctions List Ref):DPR0023 Associations with Pan Systems, Reconnaissance General Bureau, Glocom, International Golden Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Kim Pyong Chol has been identified by the UN Panel of Experts as a DPRK national operating Pan Systems Pyongyang. Pan Systems Pyongyang has been designated by the European Union for assisting in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related material to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13600 +KIM,Pyong,Chol,,,,,,,,,,,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0023 Associations with Pan Systems, Reconnaissance General Bureau, Glocom, International Golden Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Kim Pyong Chol has been identified by the UN Panel of Experts as a DPRK national operating Pan Systems Pyongyang. Pan Systems Pyongyang has been designated by the European Union for assisting in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related material to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13600 +KIM,Pyong,Chol,,,,,,,,,,,North Korea,,,,,,,,,,,,,Singapore,"(UK Sanctions List Ref):DPR0023 Associations with Pan Systems, Reconnaissance General Bureau, Glocom, International Golden Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Kim Pyong Chol has been identified by the UN Panel of Experts as a DPRK national operating Pan Systems Pyongyang. Pan Systems Pyongyang has been designated by the European Union for assisting in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related material to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13600 +KIM,Rak,Gyom,,,,,,,,,,,North Korea,,,,,(1) Former Commander Strategic Forces (2) Workers’ Party of Korea (WPK) Central Committee member,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0042 (UK Statement of Reasons):Four Star General, former Commander of the Strategic Forces (a.k.a. Strategic Rocket Forces) which now reportedly command four strategic and tactical missile units, including the KN08 (ICBM) Brigade. He has been replaced by Col. General Kim Jong Gil, who appeared as Strategic Force commander in 10/10/20 Workers Party of Korea (WPK) parade. Although no longer Commander of the Strategic Forces, Kim oversaw the development and testing of DPRK’s missile programme over many years, and should continue to be held accountable for these activities. Presently, he remains a member of the Workers’ Party of Korea (WPK) Central Committee. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,03/03/2022,13365 +KIM,Rak,Kyom,,,,General,,,,,,,North Korea,,,,,(1) Former Commander Strategic Forces (2) Workers’ Party of Korea (WPK) Central Committee member,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0042 (UK Statement of Reasons):Four Star General, former Commander of the Strategic Forces (a.k.a. Strategic Rocket Forces) which now reportedly command four strategic and tactical missile units, including the KN08 (ICBM) Brigade. He has been replaced by Col. General Kim Jong Gil, who appeared as Strategic Force commander in 10/10/20 Workers Party of Korea (WPK) parade. Although no longer Commander of the Strategic Forces, Kim oversaw the development and testing of DPRK’s missile programme over many years, and should continue to be held accountable for these activities. Presently, he remains a member of the Workers’ Party of Korea (WPK) Central Committee. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,03/03/2022,13365 +KIM,Rak-Gyom,,,,,,,,,,,,North Korea,,,,,(1) Former Commander Strategic Forces (2) Workers’ Party of Korea (WPK) Central Committee member,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0042 (UK Statement of Reasons):Four Star General, former Commander of the Strategic Forces (a.k.a. Strategic Rocket Forces) which now reportedly command four strategic and tactical missile units, including the KN08 (ICBM) Brigade. He has been replaced by Col. General Kim Jong Gil, who appeared as Strategic Force commander in 10/10/20 Workers Party of Korea (WPK) parade. Although no longer Commander of the Strategic Forces, Kim oversaw the development and testing of DPRK’s missile programme over many years, and should continue to be held accountable for these activities. Presently, he remains a member of the Workers’ Party of Korea (WPK) Central Committee. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,03/03/2022,13365 +KIM,Ryak,Gyom,,,,,,,,,,,North Korea,,,,,(1) Former Commander Strategic Forces (2) Workers’ Party of Korea (WPK) Central Committee member,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0042 (UK Statement of Reasons):Four Star General, former Commander of the Strategic Forces (a.k.a. Strategic Rocket Forces) which now reportedly command four strategic and tactical missile units, including the KN08 (ICBM) Brigade. He has been replaced by Col. General Kim Jong Gil, who appeared as Strategic Force commander in 10/10/20 Workers Party of Korea (WPK) parade. Although no longer Commander of the Strategic Forces, Kim oversaw the development and testing of DPRK’s missile programme over many years, and should continue to be held accountable for these activities. Presently, he remains a member of the Workers’ Party of Korea (WPK) Central Committee. (Gender):Male",Individual,AKA,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,03/03/2022,13365 +KIM,Son-Gwang,,,,,,,,,18/08/1976,Pyongyang,North Korea,North Korea,,,,,"Diplomat, DPRK Embassy Belarus",,,,,,,,Belarus,"(UK Sanctions List Ref):DPR0056 Association with Tcheul Hy Djang, Yong Nam Kim and Kyong Hui Kim (UK Statement of Reasons):Kim Su Gwang has been identified by the UN Panel of Experts as an agent of the Reconnaissance General Bureau, an entity which has been designated by the United Nations. He and his father Kim Yong Nam have been identified by the Panel of Experts as engaging in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. KIM Su Gwang has opened multiple bank accounts in several EU Member States, including under family members’ names. He has been involved in various large bank transfers to bank accounts in the European Union or to accounts outside the European Union while working as a diplomat, including to accounts in the name of his spouse Kim Kyong Hui. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,03/03/2022,13664 +KIM,Son-Kwang,,,,,,,,,18/08/1976,Pyongyang,North Korea,North Korea,,,,,"Diplomat, DPRK Embassy Belarus",,,,,,,,Belarus,"(UK Sanctions List Ref):DPR0056 Association with Tcheul Hy Djang, Yong Nam Kim and Kyong Hui Kim (UK Statement of Reasons):Kim Su Gwang has been identified by the UN Panel of Experts as an agent of the Reconnaissance General Bureau, an entity which has been designated by the United Nations. He and his father Kim Yong Nam have been identified by the Panel of Experts as engaging in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. KIM Su Gwang has opened multiple bank accounts in several EU Member States, including under family members’ names. He has been involved in various large bank transfers to bank accounts in the European Union or to accounts outside the European Union while working as a diplomat, including to accounts in the name of his spouse Kim Kyong Hui. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,03/03/2022,13664 +KIM,Sou-Gwang,,,,,,,,,18/08/1976,Pyongyang,North Korea,North Korea,,,,,"Diplomat, DPRK Embassy Belarus",,,,,,,,Belarus,"(UK Sanctions List Ref):DPR0056 Association with Tcheul Hy Djang, Yong Nam Kim and Kyong Hui Kim (UK Statement of Reasons):Kim Su Gwang has been identified by the UN Panel of Experts as an agent of the Reconnaissance General Bureau, an entity which has been designated by the United Nations. He and his father Kim Yong Nam have been identified by the Panel of Experts as engaging in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. KIM Su Gwang has opened multiple bank accounts in several EU Member States, including under family members’ names. He has been involved in various large bank transfers to bank accounts in the European Union or to accounts outside the European Union while working as a diplomat, including to accounts in the name of his spouse Kim Kyong Hui. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,03/03/2022,13664 +KIM,Soukwang,,,,,,,,,18/08/1976,Pyongyang,North Korea,North Korea,,,,,"Diplomat, DPRK Embassy Belarus",,,,,,,,Belarus,"(UK Sanctions List Ref):DPR0056 Association with Tcheul Hy Djang, Yong Nam Kim and Kyong Hui Kim (UK Statement of Reasons):Kim Su Gwang has been identified by the UN Panel of Experts as an agent of the Reconnaissance General Bureau, an entity which has been designated by the United Nations. He and his father Kim Yong Nam have been identified by the Panel of Experts as engaging in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. KIM Su Gwang has opened multiple bank accounts in several EU Member States, including under family members’ names. He has been involved in various large bank transfers to bank accounts in the European Union or to accounts outside the European Union while working as a diplomat, including to accounts in the name of his spouse Kim Kyong Hui. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,03/03/2022,13664 +KIM,Sou-Kwang,,,,,,,,,18/08/1976,Pyongyang,North Korea,North Korea,,,,,"Diplomat, DPRK Embassy Belarus",,,,,,,,Belarus,"(UK Sanctions List Ref):DPR0056 Association with Tcheul Hy Djang, Yong Nam Kim and Kyong Hui Kim (UK Statement of Reasons):Kim Su Gwang has been identified by the UN Panel of Experts as an agent of the Reconnaissance General Bureau, an entity which has been designated by the United Nations. He and his father Kim Yong Nam have been identified by the Panel of Experts as engaging in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. KIM Su Gwang has opened multiple bank accounts in several EU Member States, including under family members’ names. He has been involved in various large bank transfers to bank accounts in the European Union or to accounts outside the European Union while working as a diplomat, including to accounts in the name of his spouse Kim Kyong Hui. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,03/03/2022,13664 +KIM,Su,Gwang,,,,Diplomat,,,,18/08/1976,Pyongyang,North Korea,North Korea,,,,,"Diplomat, DPRK Embassy Belarus",,,,,,,,Belarus,"(UK Sanctions List Ref):DPR0056 Association with Tcheul Hy Djang, Yong Nam Kim and Kyong Hui Kim (UK Statement of Reasons):Kim Su Gwang has been identified by the UN Panel of Experts as an agent of the Reconnaissance General Bureau, an entity which has been designated by the United Nations. He and his father Kim Yong Nam have been identified by the Panel of Experts as engaging in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. KIM Su Gwang has opened multiple bank accounts in several EU Member States, including under family members’ names. He has been involved in various large bank transfers to bank accounts in the European Union or to accounts outside the European Union while working as a diplomat, including to accounts in the name of his spouse Kim Kyong Hui. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,03/03/2022,13664 +KIM,Su-Gwang,,,,,,,,,18/08/1976,Pyongyang,North Korea,North Korea,,,,,"Diplomat, DPRK Embassy Belarus",,,,,,,,Belarus,"(UK Sanctions List Ref):DPR0056 Association with Tcheul Hy Djang, Yong Nam Kim and Kyong Hui Kim (UK Statement of Reasons):Kim Su Gwang has been identified by the UN Panel of Experts as an agent of the Reconnaissance General Bureau, an entity which has been designated by the United Nations. He and his father Kim Yong Nam have been identified by the Panel of Experts as engaging in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. KIM Su Gwang has opened multiple bank accounts in several EU Member States, including under family members’ names. He has been involved in various large bank transfers to bank accounts in the European Union or to accounts outside the European Union while working as a diplomat, including to accounts in the name of his spouse Kim Kyong Hui. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,03/03/2022,13664 +KIM,Su-Kwang,,,,,,,,,18/08/1976,Pyongyang,North Korea,North Korea,,,,,"Diplomat, DPRK Embassy Belarus",,,,,,,,Belarus,"(UK Sanctions List Ref):DPR0056 Association with Tcheul Hy Djang, Yong Nam Kim and Kyong Hui Kim (UK Statement of Reasons):Kim Su Gwang has been identified by the UN Panel of Experts as an agent of the Reconnaissance General Bureau, an entity which has been designated by the United Nations. He and his father Kim Yong Nam have been identified by the Panel of Experts as engaging in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. KIM Su Gwang has opened multiple bank accounts in several EU Member States, including under family members’ names. He has been involved in various large bank transfers to bank accounts in the European Union or to accounts outside the European Union while working as a diplomat, including to accounts in the name of his spouse Kim Kyong Hui. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,03/03/2022,13664 +KIM,Sung,Su,,,,,,,,,,,North Korea,,,,,,,,,,,,,China,"(UK Sanctions List Ref):DPR0024 Associations with Pan Systems, Reconnaissance General Bureau, Glocom, International Golden Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Kim Sung Su been identified by the UN Panel of Experts as representative of Pan Systems Pyongyang in China. Pan Systems Pyongyang has been designated by the European Union for assisting in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related material to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13599 +KIM,Tcheul-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,China,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,AKA,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +KIM,Tcheul-hy,,,,,,,,,11/05/1950,Kangwon,North Korea,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0010 Associations with Kim Yong Nam, Kim Su Gwang, and Kim Kyong Hui (UK Statement of Reasons):Djang Tcheul Hy has been involved together with her husband Kim Yong Nam, her son Kim Su Gwang and her daughter-in-law Kim Kyong Hui in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. She was the owner of several bank accounts in the European Union which were opened by her son Kim Su Gwang in her name. She was also involved in several bank transfers from accounts from her daughter-in-law KIM Kyong Hui to bank accounts outside the European Union. (Gender):Female",Individual,AKA,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,31/12/2020,13663 +KIM,Tong,Un,,,,,,,,,,,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0025 (UK Statement of Reasons):Former director of Office 39 of the Central Committee of the Workers’ Party of Korea which is involved in proliferation financing. In 2011, reportedly in charge of Office 38 to raise funds for the leadership and elites. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11032 +KIM,Tong-Un,,,,,,,,,,,,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0025 (UK Statement of Reasons):Former director of Office 39 of the Central Committee of the Workers’ Party of Korea which is involved in proliferation financing. In 2011, reportedly in charge of Office 38 to raise funds for the leadership and elites. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11032 +KIM,Won,Hong,,,,,,,,07/01/1945,Pyongyang,North Korea,North Korea,745310010,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0043 (UK Statement of Reasons):General, Former First Deputy Director of the General Political Department of the Korean People's Army. Director of the State Security Department. Minister of State Security. Member of the Central Military Commission of the Workers’ Party of Korea and National Defence Commission which was a key body for national defence matters in the DPRK before it was reformed into the State Affairs Commission (SAC), which are the key bodies for national defence matters in the DPRK. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13366 +KIM,Won-Hong,,,,,General,,,,07/01/1945,Pyongyang,North Korea,North Korea,745310010,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0043 (UK Statement of Reasons):General, Former First Deputy Director of the General Political Department of the Korean People's Army. Director of the State Security Department. Minister of State Security. Member of the Central Military Commission of the Workers’ Party of Korea and National Defence Commission which was a key body for national defence matters in the DPRK before it was reformed into the State Affairs Commission (SAC), which are the key bodies for national defence matters in the DPRK. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13366 +KIM,Yong,Chol,,,,Lieutenant General,,,,00/00/1946,Pyongan-Pukto,North Korea,North Korea,,,,,Vice Chairman of the Workers Party of Korea,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0044 Former Commander of Reconnaissance General Bureau (RGB). Promoted to United Front Department director in May 2016. (UK Statement of Reasons):Elected member of the Workers’ Party of Korea Central Military Commission, of the Politburo and State Affairs Commission of the Democratic People's Republic of Korea and Workers’ Party of Korea Central Committee, Vice Chairman for Inter-Korean Relations. Former commander of Reconnaissance General Bureau (RGB), an entity sanctioned by the United Nations Security Council. Former United Front Department director. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,21/12/2011,31/12/2020,04/03/2022,12439 +KIM,Yong,Nam,,,,,,,,02/12/1947,Sinuju,North Korea,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0057 Assocation with Tcheul Hy Djang, Su Gwang Kim and Kyong Hui Kim (UK Statement of Reasons):Kim Yong Nam has been identified by the Panel of Experts as an agent of the Reconnaissance General Bureau, an entity which has been designated by the United Nations. He and his son KIM Su Gwang have been identified by the Panel of Experts as engaging in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. KIM Yong Nam has opened various current and savings accounts in the European Union and has been involved in various large bank transfers to bank accounts in the European Union or to accounts outside the European Union while working as a diplomat, including to accounts in the name of his son KIM Su Gwang and daughter-in-law KIM Kyong Hui. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,04/03/2022,13662 +KIM,Yong-Chol,,,,,,,,,00/00/1946,Pyongan-Pukto,North Korea,North Korea,,,,,Vice Chairman of the Workers Party of Korea,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0044 Former Commander of Reconnaissance General Bureau (RGB). Promoted to United Front Department director in May 2016. (UK Statement of Reasons):Elected member of the Workers’ Party of Korea Central Military Commission, of the Politburo and State Affairs Commission of the Democratic People's Republic of Korea and Workers’ Party of Korea Central Committee, Vice Chairman for Inter-Korean Relations. Former commander of Reconnaissance General Bureau (RGB), an entity sanctioned by the United Nations Security Council. Former United Front Department director. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,21/12/2011,31/12/2020,04/03/2022,12439 +KIM,Yong-Gon,,,,,,,,,02/12/1947,Sinuju,North Korea,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0057 Assocation with Tcheul Hy Djang, Su Gwang Kim and Kyong Hui Kim (UK Statement of Reasons):Kim Yong Nam has been identified by the Panel of Experts as an agent of the Reconnaissance General Bureau, an entity which has been designated by the United Nations. He and his son KIM Su Gwang have been identified by the Panel of Experts as engaging in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. KIM Yong Nam has opened various current and savings accounts in the European Union and has been involved in various large bank transfers to bank accounts in the European Union or to accounts outside the European Union while working as a diplomat, including to accounts in the name of his son KIM Su Gwang and daughter-in-law KIM Kyong Hui. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,04/03/2022,13662 +KIM,Yong-Nam,,,,,,,,,02/12/1947,Sinuju,North Korea,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0057 Assocation with Tcheul Hy Djang, Su Gwang Kim and Kyong Hui Kim (UK Statement of Reasons):Kim Yong Nam has been identified by the Panel of Experts as an agent of the Reconnaissance General Bureau, an entity which has been designated by the United Nations. He and his son KIM Su Gwang have been identified by the Panel of Experts as engaging in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. KIM Yong Nam has opened various current and savings accounts in the European Union and has been involved in various large bank transfers to bank accounts in the European Union or to accounts outside the European Union while working as a diplomat, including to accounts in the name of his son KIM Su Gwang and daughter-in-law KIM Kyong Hui. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,04/03/2022,13662 +KIM,Young-Cheol,,,,,,,,,00/00/1946,Pyongan-Pukto,North Korea,North Korea,,,,,Vice Chairman of the Workers Party of Korea,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0044 Former Commander of Reconnaissance General Bureau (RGB). Promoted to United Front Department director in May 2016. (UK Statement of Reasons):Elected member of the Workers’ Party of Korea Central Military Commission, of the Politburo and State Affairs Commission of the Democratic People's Republic of Korea and Workers’ Party of Korea Central Committee, Vice Chairman for Inter-Korean Relations. Former commander of Reconnaissance General Bureau (RGB), an entity sanctioned by the United Nations Security Council. Former United Front Department director. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,21/12/2011,31/12/2020,04/03/2022,12439 +KIM,Young-Chol,,,,,,,,,00/00/1946,Pyongan-Pukto,North Korea,North Korea,,,,,Vice Chairman of the Workers Party of Korea,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0044 Former Commander of Reconnaissance General Bureau (RGB). Promoted to United Front Department director in May 2016. (UK Statement of Reasons):Elected member of the Workers’ Party of Korea Central Military Commission, of the Politburo and State Affairs Commission of the Democratic People's Republic of Korea and Workers’ Party of Korea Central Committee, Vice Chairman for Inter-Korean Relations. Former commander of Reconnaissance General Bureau (RGB), an entity sanctioned by the United Nations Security Council. Former United Front Department director. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,21/12/2011,31/12/2020,04/03/2022,12439 +KIM,Young-Chul,,,,,,,,,00/00/1946,Pyongan-Pukto,North Korea,North Korea,,,,,Vice Chairman of the Workers Party of Korea,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0044 Former Commander of Reconnaissance General Bureau (RGB). Promoted to United Front Department director in May 2016. (UK Statement of Reasons):Elected member of the Workers’ Party of Korea Central Military Commission, of the Politburo and State Affairs Commission of the Democratic People's Republic of Korea and Workers’ Party of Korea Central Committee, Vice Chairman for Inter-Korean Relations. Former commander of Reconnaissance General Bureau (RGB), an entity sanctioned by the United Nations Security Council. Former United Front Department director. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,21/12/2011,31/12/2020,04/03/2022,12439 +KIM,Young-Nam,,,,,,,,,02/12/1947,Sinuju,North Korea,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0057 Assocation with Tcheul Hy Djang, Su Gwang Kim and Kyong Hui Kim (UK Statement of Reasons):Kim Yong Nam has been identified by the Panel of Experts as an agent of the Reconnaissance General Bureau, an entity which has been designated by the United Nations. He and his son KIM Su Gwang have been identified by the Panel of Experts as engaging in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. KIM Yong Nam has opened various current and savings accounts in the European Union and has been involved in various large bank transfers to bank accounts in the European Union or to accounts outside the European Union while working as a diplomat, including to accounts in the name of his son KIM Su Gwang and daughter-in-law KIM Kyong Hui. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,04/03/2022,13662 +KIMO,,,,,,,,,,21/10/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Bertesi Number 27,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +KIMO,,,,,,,,,,21/10/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Plebiscito Number 3,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +KIMO,,,,,,,,,,21/11/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Bertesi Number 27,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +KIMO,,,,,,,,,,21/11/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Plebiscito Number 3,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +"KINGLY WON INTERNATIONAL CO., LTD",,,,,,,,,,,,,,,,,,,,,Trust Company Complex,Ajeltake Road,Ajeltake Island,Majuro,,Marshall Islands,"(UK Sanctions List Ref):DPR0143 (UN Ref):KPe.060 In 2017, Tsang Yung Yuan (aka Neil Tsang) and Kingly Won attempted to engage in an oil deal valued at over $1 million with a petroleum company in a third country to illicitly transfer to the DPRK. Kingly Won acted as a broker for that petroleum company and a Chinese company that reached out to Kingly Won to purchase marine oil on its behalf.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13631 +KINLOSS PROPERTY LIMITED,,,,,,,,,,,,,,,,,,,Woodbourne Hall,PO Box 3162,Road Town,,Tortola,British Virgin Islands,,,"(UK Sanctions List Ref):LIB0016 Based on British Virgin Islands (UK Statement of Reasons):Subsidiary of the Libyan Arab Foreign Investment Company, which is itself a subsidiary of the Libyan Investment Authority. (Business Reg No):1534407 (BVI)",Entity,Primary name,,Libya,14/04/2011,31/12/2020,19/01/2021,11769 +KIRAM,MUHAMMED,REZA,LAHAMAN,,,,,,,03/03/1990,"Zamboanga City, Zamboanga del Sur",Philippines,Philippines,(1) XX3966391 (2) EC3524065,(1) Philippines. Issued on 25 February 2015 by the Department of Foreign Affairs of Philippines. Expiration date 24 February 2020 (2) Philippines,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0263 (UN Ref):QDi.418 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: height: 156cm; weight: 60 kg (as at Sep. 2016); eye colour: black; hair colour: black; build: medium; high cheekbones. Speaks Tagalog, English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244385. Philippines (previous address)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13710 +KIRAM,MUHAMMED,REZA,LAHAMAN,,,,,,,03/03/1990,"Zamboanga City, Zamboanga del Sur",Philippines,Philippines,(1) XX3966391 (2) EC3524065,(1) Philippines. Issued on 25 February 2015 by the Department of Foreign Affairs of Philippines. Expiration date 24 February 2020 (2) Philippines,,,,96 IlangIlang,,Sarmiento Subdivision,Panabo,Davao City,Eastern Mindanao,,Philippines,"(UK Sanctions List Ref):AQD0263 (UN Ref):QDi.418 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: height: 156cm; weight: 60 kg (as at Sep. 2016); eye colour: black; hair colour: black; build: medium; high cheekbones. Speaks Tagalog, English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244385. Philippines (previous address)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13710 +KIRAM,MUHAMMED,REZA,LAHAMAN,,,,,,,03/03/1990,"Zamboanga City, Zamboanga del Sur",Philippines,Philippines,(1) XX3966391 (2) EC3524065,(1) Philippines. Issued on 25 February 2015 by the Department of Foreign Affairs of Philippines. Expiration date 24 February 2020 (2) Philippines,,,,Brgy Recodo,,,,Zamboanga City,Western Mindanao,,Philippines,"(UK Sanctions List Ref):AQD0263 (UN Ref):QDi.418 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: height: 156cm; weight: 60 kg (as at Sep. 2016); eye colour: black; hair colour: black; build: medium; high cheekbones. Speaks Tagalog, English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244385. Philippines (previous address)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13710 +KIRILLOVA,Anastasiya,Sergeyevna,,,,,КИРИЛЛОВА Анастасия Сергеевна,Cyrillic,Russian,31/12/1986,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0793 (UK Statement of Reasons):Anastasiya Sergeyevna KIRILLOVA (hereafter KIRILLOVA) is a founder of InfoRos, an organisation linked to the Government of Russia which spreads disinformation. In her role with InfoRos KIRILLOVA has provided support for and promoted actions and policies which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Phone number):+7 (495) 718-84-11 (Email address):kirillova@inforos.ru (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14744 +KIRIYENKO,Sergei,Vladilenovich,,,,,,,,26/07/1962,Sukhumi,,Russia,,,,,First Deputy Chief of Staff of the Presidential Executive Office,,,,,,,,,"(UK Sanctions List Ref):CHW0012 (UK Statement of Reasons):As First Deputy Chief of Staff of the Presidential Executive Office of the Russian Federation, Sergei Kiriyenko is responsible for domestic affairs. The Presidential Office is a state body within Russia that provides support for the President’s work, monitors the implementation of the President’s decisions, and has responsibility for governmental policy and the regime’s most important actions domestically. Russian opposition leader Alexey Navalny was the victim of an attempted assassination during his August 2020 visit to Siberia, in which a chemical weapon—a toxic nerve agent of the Novichok group—was used. The activities and movements of Alexei Navalny during his journey to Siberia, from where he intended to return to Moscow on 20th August 2020 were closely monitored by the authorities of the Russian Federation. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny was a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. Given the role of the state within the attack, and the scale of the operation against Navalny, it is reasonable to conclude that the poisoning of Alexey Navalny was only possible with the consent of the Presidential Executive Office. (Gender):Male",Individual,Primary name,,Chemical Weapons,15/10/2020,02/01/2021,19/01/2021,13970 +KIRIYENKO,Vladimir,Sergeevich,,,,,КИРИЕНКО Владимир Сергеевич,Cyrillic,Russian,27/05/1983,Nizhny Novogorad,Russia,Russia,,,,,CEO of VK,Nesivizhsky Pereulok 12 Bld 1 Flat 16,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0782 (UK Statement of Reasons):Vladimir Sergeevich KIRIYENKO (hereafter KIRIYENKO) is the Chief Executive Officer (CEO) of VK, an internet group and parent company of Russia’s biggest social media network. KIRIYENKO is a member of and associated with VK which is supporting the Government of Russia by carrying on business in the Russian information, communications and digital technologies sector, a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14733 +KIRYANOV,Artem,Yurievich,,,,,Кирьянов Артем Юрьевич,,,12/01/1977,Veliky Novgorod,Russia,Russia,620233099,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0553 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14498 +KISEL,Sergey,Aleksandrovich,,,,Lieutenant General,КИСЕЛЬ Сергей Александрович,,,27/03/1971,Kzyl-Orda,Kazakhstan,Russia,,,,,"Commander 1st Guards Tank Army, Western Military District",Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0832 (UK Statement of Reasons):Lieutenant General Sergey Aleksandrovich KISEL is a member of the Armed Forces of the Russian Federation, he currently holds the position of Commander of the 1st Guards Tank Army of the Western Military District. He is considered to have been either in direct command of and/ or to have substantial influence regarding the deployment of Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14783 +KISELEV,Dmitrii,Konstantinovich,,,,,,,,26/04/1954,Moscow,Russia,Russia,,,,,Head of the Russian Federal State News Agency 'Rossiya Segodnya'.,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0001 (UK Statement of Reasons):Appointed by Presidential Decree on 9 December 2013 Head of the Russian Federal State news agency ""Rossiya Segodnya"". Central figure of the Russian government propaganda supporting the illegal annexation of Crimea and in promoting policies and actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,21/03/2014,31/12/2020,16/09/2022,12944 +KISELEV,Dmitry,Konstantinovich,,,,,,,,26/04/1954,Moscow,Russia,Russia,,,,,Head of the Russian Federal State News Agency 'Rossiya Segodnya'.,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0001 (UK Statement of Reasons):Appointed by Presidential Decree on 9 December 2013 Head of the Russian Federal State news agency ""Rossiya Segodnya"". Central figure of the Russian government propaganda supporting the illegal annexation of Crimea and in promoting policies and actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,21/03/2014,31/12/2020,16/09/2022,12944 +KISELEV,Mikhail,Sergeevich,,,,,Киселёв Михаил Сергеевич,,,18/06/1986,Novoselovo,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0421 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14366 +KISELYOV,Dmitrii,Konstantinovich,,,,,,,,26/04/1954,Moscow,Russia,Russia,,,,,Head of the Russian Federal State News Agency 'Rossiya Segodnya'.,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0001 (UK Statement of Reasons):Appointed by Presidential Decree on 9 December 2013 Head of the Russian Federal State news agency ""Rossiya Segodnya"". Central figure of the Russian government propaganda supporting the illegal annexation of Crimea and in promoting policies and actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,21/03/2014,31/12/2020,16/09/2022,12944 +KISELYOV,Dmitry,Konstantinovich,,,,,,,,26/04/1954,Moscow,Russia,Russia,,,,,Head of the Russian Federal State News Agency 'Rossiya Segodnya'.,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0001 (UK Statement of Reasons):Appointed by Presidential Decree on 9 December 2013 Head of the Russian Federal State news agency ""Rossiya Segodnya"". Central figure of the Russian government propaganda supporting the illegal annexation of Crimea and in promoting policies and actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,21/03/2014,31/12/2020,16/09/2022,12944 +KISHKINOV,Vitaliy,Mikhaylovich,,,,,КИШКИНОВ Виталий Михайлович,Cyrillic,Russian,07/01/1983,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1275 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15227 +KISHKINOV,Vitaly,Mikhailovich,,,,,,,,07/01/1983,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1275 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15227 +KISHU MARU,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0103 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK vessel M/V PAEK MA was involved in ship-to-ship transfer operations for oil in mid-January 2018. Listed as asset of Paekma Shipping Co (a.k.a First Oil JV Co Ltd) (OFSI ID: 13640, UN Reference Number: UN Ref KPe.069) (IMO number):9066978 (Flag of ship):North Korea (Previous flags):Panama. South Korea (Type of ship):Oil tanker (Tonnage of ship):1181 (Length of ship):77 (Year built):1993",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13654 +KISLOV,Andrey,Igoryevich,,,,,КИСЛОВ Андрей Игоревич,,,29/08/1958,Kuibyshev,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0990 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14941 +KISLYAK,Sergei,Ivanovich,,,,,Серге́й Ива́нович Кисля́к,,,07/09/1950,Moscow,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0880 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14831 +KISLYAKOV,Mikhail,Leonidovich,,,,,Михаил Леонидович Кисляков,,,18/11/1975,Krasnoye,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0422 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14367 +KIVA,Ilya,,,,,,Киви Іллі Володимировича,,,02/06/1977,Poltava,Ukraine,Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1361 (UK Statement of Reasons):Ilya KIVA is a former member of the Ukrainian parliament (Verkhovna Rada) who has provided support for and promoted Russia’s invasion of Ukraine. KIVA is therefore an involved person who provides support for or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,21/04/2022,21/04/2022,14/06/2022,15312 +KIZEEV,Mikhail,Vladimirovich,,,,,Михаил Владимирович Кизеев,,,31/03/1978,Ivanovo,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0423 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14368 +KKBC,,,,,,,,,,,,,,,,,,,Jungson-dong,Sungri Street,,,Central District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0155 (UN Ref):KPe.025 KKBC provides financial services in support to Tanchon Commercial Bank and Korea Hyoksin Trading Corporation, a subordinate of the Korea Ryonbong General Corporation. Tanchon Commercial Bank has used KKBC to facilitate funds transfers likely amounting to millions of dollars, including transfers involving Korea Mining Development Corporation related funds.",Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,31/12/2020,12452 +KLIMOV,Andrei,Akardyevich,,,,,Андрей Аркадьевич КЛИМОВ,,,09/11/1954,Molotov,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0889 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14840 +KLISHAS,Andrei,Aleksandrovich,,,,,,,,09/11/1972,"Sverflovsk, Ekaterinburg",Russian Federation,Russia,,,,,Chair of Federation Council Committee on Constitutional Legislation and State Building,,,,,,,,,"(UK Sanctions List Ref):RUS0002 (UK Statement of Reasons):Chair of the Federation Council Committee on Constitutional Legislation and State Building. On 1 March 2014, Klishas publicly supported, in the Federation Council, the deployment of Russian forces in Ukraine. In public statements Klishas sought to justify a Russian military intervention in Ukraine by claiming that the ""Ukrainian President supports the appeal of the Crimean authorities to the President of the Russian Federation on landing an all-emcompassing assistance in defence of the citizens of Crimea"". (Gender):Male",Individual,Primary name,,Russia,18/03/2014,31/12/2020,16/09/2022,12914 +KLISHIN,Mikhail,Alekseevich,,,,,Михаил Алексеевич Клишин,,,09/10/1954,St Petersburg,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1460 (UK Statement of Reasons):Mikhail Alekseevich KLISHIN is a member of the Board of Directors of JSC SOGAZ - a major Russian reinsurance company which services sectors of strategic importance to the Russian Government. SOGAZ, which was designated by the United Kingdom for the purposes of an asset freeze on the 15th of March 2022, operates in the Russian financial services sectors. KLISHIN is also a director of Russian financial services firm ZEST. As a director of entities carrying on business in a sector of strategic significance to the Government of Russia, KLISHIN has obtained a benefit from or supported the Government of Russia. JSC SOGAZ insured the construction of the railway infrastructure connecting the bridge over the Kerch Strait and the Port of Taman and reinsured the construction of the bridge over the Kerch Strait between the Russian mainland and the Crimean peninsula. In doing so, SOGAZ supported the illegally annexed Crimean peninsula into the Russian Federation which in turn further undermined the territorial integrity, sovereignty and independence of Ukraine. Therefore, KLISHIN, as a director of SOGAZ, has been responsible for, engaged in, provided support for, or promoted any policies or actions which have destabilised and undermined the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/05/2022,13/05/2022,13/05/2022,15385 +KLOBUKOV,Viacheslav,Sergeevich,,,,Colonel,Вячеслав Сергеевич КЛОБУКОВ,Cyrillic,Russian,19/11/1978,,,Russia,8001 142195,,F-703443,,Colonel of the 64th Separate Motorised Rifle Brigade of the 35th Combined Arms Army of the Russian Federation,14 Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS1475 (UK Statement of Reasons):Colonel Viacheslav Sergeevich KLOBUKOV is a member of the Armed Forces of the Russian Federation, he currently holds the position of Colonel within 64th Motor Rifle Brigade. He is deemed to have been either in direct command of or in a position to hold considerable situational awareness of troops involved in the killing of civilians in the Kyiv suburb of Bucha during the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,16/06/2022,16/06/2022,09/08/2022,15408 +KLUKIN,Mikhail,Vasilyevich,,,,,,,,22/09/1977,Kirov,Russia,(1) Cyprus (2) Russia,K00299010,Cyprus,,,Member of the Supervisory Board Sovcombank,1st Krasnoarmeyskiy per. 4 flat 187,Mytishi,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1584 (UK Statement of Reasons):Mikhail Vasilyevich Klyukin is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SOVCOMBANK which is carrying on business in the financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely SOVCOMBANK which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15528 +KLYUEV,Dmitriy,Vladislovovich,,,,,,,,10/08/1967,Moscow,Russia,Russia,,,,,Owner of Universal Savings Bank,,,,,,,,,"(UK Sanctions List Ref):GAC0012 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. KLYUEV participated in the fraud through his involvement, in particular in planning the fraud, and through his ownership of Universal Savings Bank. He was responsible for, and his actions facilitated or provided support for, the serious corruption. He also transferred or converted, or facilitated the transfer or conversion of, the proceeds of the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,20/05/2022,14091 +KLYUEV,Dmitry,Vladislavovich,,,,,Дмитрий Владиславович КЛЮЕВ,,,10/08/1967,Moscow,Russia,Russia,,,,,Owner of Universal Savings Bank,,,,,,,,,"(UK Sanctions List Ref):GAC0012 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. KLYUEV participated in the fraud through his involvement, in particular in planning the fraud, and through his ownership of Universal Savings Bank. He was responsible for, and his actions facilitated or provided support for, the serious corruption. He also transferred or converted, or facilitated the transfer or conversion of, the proceeds of the serious corruption. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,20/05/2022,14091 +KLYUKIN,Mikhail,Vasilyevich,,,,,Михаил Васильевич Клюкин,Cyrillic,Russian,22/09/1977,Kirov,Russia,(1) Cyprus (2) Russia,K00299010,Cyprus,,,Member of the Supervisory Board Sovcombank,1st Krasnoarmeyskiy per. 4 flat 187,Mytishi,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1584 (UK Statement of Reasons):Mikhail Vasilyevich Klyukin is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SOVCOMBANK which is carrying on business in the financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely SOVCOMBANK which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15528 +KNIAGININ,Vladimir,Nikolaeyevich,,,,,,,,20/01/1961,Saint Petersburg,Russia,Russia,,,,,Vice Governor of Saint Petersburg,,,,,,,,,"(UK Sanctions List Ref):RUS0849 (UK Statement of Reasons):Vladimir Nikolayevich KNYAGININ is Vice Governor of Saint Petersburg for the Administration of Saint Petersburg, a public body subordinate to the Government of Russia. As Vice Governor, KNYAGININ is or has been involved in obtaining a benefit from or supporting the Government of Russia as a Director or equivalent of a Government of Russia-affiliated entity. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,13/05/2022,14800 +KNIAGININ,Vladimir,Nikolayevich,,,,,,,,20/01/1961,Saint Petersburg,Russia,Russia,,,,,Vice Governor of Saint Petersburg,,,,,,,,,"(UK Sanctions List Ref):RUS0849 (UK Statement of Reasons):Vladimir Nikolayevich KNYAGININ is Vice Governor of Saint Petersburg for the Administration of Saint Petersburg, a public body subordinate to the Government of Russia. As Vice Governor, KNYAGININ is or has been involved in obtaining a benefit from or supporting the Government of Russia as a Director or equivalent of a Government of Russia-affiliated entity. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,13/05/2022,14800 +KNYAGININ,Vladimir,Nikolayevich,,,,,КНЯГИНИН Владимир Николаевич,,,20/01/1961,Saint Petersburg,Russia,Russia,,,,,Vice Governor of Saint Petersburg,,,,,,,,,"(UK Sanctions List Ref):RUS0849 (UK Statement of Reasons):Vladimir Nikolayevich KNYAGININ is Vice Governor of Saint Petersburg for the Administration of Saint Petersburg, a public body subordinate to the Government of Russia. As Vice Governor, KNYAGININ is or has been involved in obtaining a benefit from or supporting the Government of Russia as a Director or equivalent of a Government of Russia-affiliated entity. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,13/05/2022,14800 +KNYAGININ,Vladimir,Nikolayevich,,,,,КНЯГИНИН Владимир Николаевич,,,,Saint Petersburg,Russia,Russia,,,,,Vice Governor of Saint Petersburg,,,,,,,,,"(UK Sanctions List Ref):RUS0849 (UK Statement of Reasons):Vladimir Nikolayevich KNYAGININ is Vice Governor of Saint Petersburg for the Administration of Saint Petersburg, a public body subordinate to the Government of Russia. As Vice Governor, KNYAGININ is or has been involved in obtaining a benefit from or supporting the Government of Russia as a Director or equivalent of a Government of Russia-affiliated entity. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,13/05/2022,14800 +KNYRIK,Konstantin,Sergeyevich,,,,Mr,КНЫРИК Константин Сергеевич,Cyrillic,Russian,14/08/1989,Bakhichisaray,Russia,(1) Russia (2) Ukraine,,,,,Director and co-founder of NewsFront,,,,,,,,,"(UK Sanctions List Ref):RUS0705 (UK Statement of Reasons):Konstantin KNYRIK (hereafter referred to as KNYRIK) is the co-founder of Newsfront. Newsfront is a Russian news organisation known for publishing disinformation about the war against Ukraine, thus supporting and promoting actions which destabilise Ukraine. As a Director, co-founder, and contributor to Newsfront, KNYRIK is both engaging in, supporting and promoting policies and/or actions which destabilise Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,27/05/2022,14656 +KNYSH,Maxim,Gennadievich,,,,,КНЫШ Максим Геннадьевич,Cyrillic,Russian,27/05/1983,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1249 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15201 +KNYSH,Maxim,Gennadyevich,,,,,,,,27/05/1983,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1249 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15201 +KOAN MARU,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0106 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK crude oil tanker M/V NAM SAN 8 is believed to have been involved in ship-to-ship transfer operations for oil. Listed as asset of Hapjanggang Shipping Corp (OFSI ID: 13629, UN Reference Number: UN Ref KPe.058) (IMO number):8122347 (Current owners):Hapjanggang Shipping Corp (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):1914 (Length of ship):91 (Year built):1982",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13657 +KOBETS,Alexkandr,Yuryevich,,,,,Александр Юрэвйч Кобетс,,,27/09/1959,Kherson,Ukraine,Ukraine,,,,,Head of Kherson Military-Civilian Administration,,,,,,,,,"(UK Sanctions List Ref):RUS1562 (UK Statement of Reasons):Aleksandr Yuryevic KOBETS is a Ukrainian official appointed Head of the Kherson Military-Civilian Administration by Russia following its occupation of the Kherson region in southern Ukraine on 26 April 2022. KOBETS is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because in this role he engages in and provides support for policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.   (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15506 +KOBETS,Oleksandr,Yuriiyovich,,,,,,,,27/09/1959,Kherson,Ukraine,Ukraine,,,,,Head of Kherson Military-Civilian Administration,,,,,,,,,"(UK Sanctions List Ref):RUS1562 (UK Statement of Reasons):Aleksandr Yuryevic KOBETS is a Ukrainian official appointed Head of the Kherson Military-Civilian Administration by Russia following its occupation of the Kherson region in southern Ukraine on 26 April 2022. KOBETS is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because in this role he engages in and provides support for policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.   (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15506 +KOBTSEVA,Olga,Anatolievna,,,,,,,,06/09/1966,Rubizhne,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1276 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15228 +KOBTSEVA,Olga,Anatolyevna,,,,,КОБЦЕВА Ольга Анатольевна,Cyrillic,Russian,06/09/1966,Rubizhne,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1276 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15228 +KOCHANOVA,Natalia,Ivanovna,,,,,Наталля Iванаўна КАЧАНАВА,,,25/09/1960,"Polotsk, Vitebsk/Viciebsk Oblast",Former USSR (now Belarus),Belarus,,,,,Chair of the Council of the Republic of the National Assembly of Belarus,,,,,,,,,(UK Sanctions List Ref):BEL0080 (UK Statement of Reasons):Natalia Kochanova is responsible for overseeing the organisation of the flawed Presidential elections on 9 August 2020 and has defended the authorities’ violent and repressive response to the subsequent peaceful demonstrations. Her leadership role is also responsible for supporting the decisions of the President in the field of domestic policy. (Gender):Female,Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14028 +KOCHANOVA,Natallia,Ivanauna,,,,,Наталья Ивановна КОЧАНОВА,,,25/09/1960,"Polotsk, Vitebsk/Viciebsk Oblast",Former USSR (now Belarus),Belarus,,,,,Chair of the Council of the Republic of the National Assembly of Belarus,,,,,,,,,(UK Sanctions List Ref):BEL0080 (UK Statement of Reasons):Natalia Kochanova is responsible for overseeing the organisation of the flawed Presidential elections on 9 August 2020 and has defended the authorities’ violent and repressive response to the subsequent peaceful demonstrations. Her leadership role is also responsible for supporting the decisions of the President in the field of domestic policy. (Gender):Female,Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14028 +KOCHIEV,Robert,Ivanovich,,,,,Кочиев Роберт Иванович,,,16/03/1966,Tskhinvali,Georgia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0424 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14369 +KOFMAN,Aleksander,Igorevich,,,,,,,,30/08/1977,"Makivka, Donetsk Oblast",Ukraine,Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0003 (UK Statement of Reasons):Former so-called “Foreign Minister” and so-called ‘First deputy speaker’ of the ‘Parliament’ of the so called ‘Donetsk People's Republic’. Stood as a candidate in the so called illegal ‘elections’ of 2 November 2014 to the post of the Head of the so called ‘Donetsk People's Republic’. These elections are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13174 +KOFMAN,Aleksandr,Igorevich,,,,,,,,30/08/1977,"Makivka, Donetsk Oblast",Ukraine,Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0003 (UK Statement of Reasons):Former so-called “Foreign Minister” and so-called ‘First deputy speaker’ of the ‘Parliament’ of the so called ‘Donetsk People's Republic’. Stood as a candidate in the so called illegal ‘elections’ of 2 November 2014 to the post of the Head of the so called ‘Donetsk People's Republic’. These elections are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name,,Russia,02/12/2014,31/12/2020,16/09/2022,13174 +KOFMAN,Alexander,Igorevich,,,,,Александр Игоревич КОФМАН,,,30/08/1977,"Makivka, Donetsk Oblast",Ukraine,Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0003 (UK Statement of Reasons):Former so-called “Foreign Minister” and so-called ‘First deputy speaker’ of the ‘Parliament’ of the so called ‘Donetsk People's Republic’. Stood as a candidate in the so called illegal ‘elections’ of 2 November 2014 to the post of the Head of the so called ‘Donetsk People's Republic’. These elections are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13174 +KOFMAN,Oleksandr,,,,,,,,,30/08/1977,"Makivka, Donetsk Oblast",Ukraine,Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0003 (UK Statement of Reasons):Former so-called “Foreign Minister” and so-called ‘First deputy speaker’ of the ‘Parliament’ of the so called ‘Donetsk People's Republic’. Stood as a candidate in the so called illegal ‘elections’ of 2 November 2014 to the post of the Head of the so called ‘Donetsk People's Republic’. These elections are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,AKA,,Russia,02/12/2014,31/12/2020,16/09/2022,13174 +KOFMAN,Oleksandr,Igorovich,,,,,Олександр Iгорович КОФМАН,,,30/08/1977,"Makivka, Donetsk Oblast",Ukraine,Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0003 (UK Statement of Reasons):Former so-called “Foreign Minister” and so-called ‘First deputy speaker’ of the ‘Parliament’ of the so called ‘Donetsk People's Republic’. Stood as a candidate in the so called illegal ‘elections’ of 2 November 2014 to the post of the Head of the so called ‘Donetsk People's Republic’. These elections are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13174 +KOGAN,Alexander,Borisovich,,,,,Александр Борисович Коган,,,26/02/1969,Orsk,Russia,Russia,732111097,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0554 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14499 +KOGOGIN,Sergey,Anatolyevich,,,,,Сергей Анатольевич Когогин,,,16/11/1957,"Bolshie Klyuchi village, Zelenodolsk Region, the Republic of Tatarstan",Russia,Russia,,,,,Director General of PJSC “KAMAZ”,,,,,,,,,"(UK Sanctions List Ref):RUS1124 (UK Statement of Reasons):Sergey Kogogin is the Director General of Kamaz PJSC, which produces heavy vehicles used, inter alia, by the Russian military. Kogogin has therefore been involved in obtaining a benefit from or supporting the Government of Russia by working as a director of a company carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian defence sector. (Gender):Male",Individual,Primary name,,Russia,06/04/2022,06/04/2022,06/04/2022,15070 +KOGOGINA,Alfia,Gumarovna,,,,,Альфия Гумаровна Когогина,,,22/02/1968,Zelenodolsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0668 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14619 +KOLBIN,Sergei,Nikolayevich,,,,,Сергей Николаевич Колбин,,,29/10/1969,Penza,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS1008 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14959 +KOLBIN,Vladimir,Petrovich,,,,,Владимир Петрович Колбин,,,,,Russia,Russia,,,,,Director,,,,,,,,,"(UK Sanctions List Ref):RUS1425 (UK Statement of Reasons):Vladimir Petrovich Kolbin (hereafter KOLBIN) is a Russian businessman and General Director of Gelendzhik Seaport LLC. Gelendzhik Seaport LLC is a company that has invested heavily into the infrastructure of the Gelendzhik Seaport. It is therefore a company that is carrying on business in a sector of strategic significance to the Government of Russia, namely the transport sector. KOLBIN is an individual who is carrying on business in a sector of strategic significance to the Government of Russia, through his position as General Director. KOLBIN is therefore obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,13/05/2022,13/05/2022,13/05/2022,15387 +KOLEROV,Modest,Alexeyevich,,,,,КОЛЕРОВ Модест Алексеевич,Cyrillic,Russian,04/12/1963,Kimovsk,Russia,,,,,,Co-founder and editor-in-chief of the REGNUM portal,,,,,,,,,"(UK Sanctions List Ref):RUS0761 (UK Statement of Reasons):As co-founder and editor-in-chief of the REGNUM portal, Kolerov has consistently promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14712 +KOLESNIK,Andrei,Ivanovich,,,,,Андрей Иванович Колесник,,,26/02/1960,Kaliningrad,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0425 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14370 +KOLESNIKOV,Denis,Sergeevich,,,,,КОЛЕСНИКОВ Денис Сергеевич,Cyrillic,Russian,01/06/1980,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1277 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15229 +KOLESNIKOV,Oleg,Alekseevich,,,,,Олег Алексеевич Колесников,,,11/09/1968,Krasnogorsk,Russia,Russia,756186942,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0555 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14500 +KOLOKOLTSEV,Vladimir,Alexandrovich,,,,Interior Minister,КОЛОКОЛЬЦЕВ Владимир,Cyrillic,Russian,11/05/1961,Nizhniy Lomov,Russia,Russia,,,,,Permanent member of the Russian Security Council.,,,,,,,,,"(UK Sanctions List Ref):RUS0727 (UK Statement of Reasons):Vladimir Alexandrovich KOLOKOLTSEV is a member of the Russian Security Council (RSC). At an extraordinary meeting of the RSC on 21 February 2022, KOLOKOLTSEV spoke in favour of a proposal to recognise Donetsk and Luhansk as independent republics. KOLOKOLTSEV has therefore been responsible for, provided support for, or promoted a policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14678 +KOLOMEYTSEV,Nikolay,Vasilievich,,,,,Коломейцев Николай Васильевич,,,01/09/1956,Babaevsky district,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0426 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14371 +KOLTSOV,Anton,Viktorovich,,,,,Антон Викторович Кольцов,Cyrillic,Russian,24/06/1973,Cherepovets,Russia,Russian,,,,,So-called 'Head of Government' in temporarily controlled territory of Zaphorizhzhia,,,,,,,,,"(UK Sanctions List Ref):RUS1619 (UK Statement of Reasons):Anton Viktorovich KOLTSOV is the so-called “Head” of the Russian-installed administration in Russian-occupied Zaporizhzhia Region. As a result of this, KOLTSOV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he is or has engaged in, and/or provided support for, policies or actions which destabilise Ukraine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15563 +KOLUDAROVA,Olga,,,,,,Ольга Колударова,Cyrillic,Russian,16/12/1983,Izhevsk,Russia,,,,,,Minister of Education and Science of the so-called Donetsk People’s Republic,,,,,,,,,"(UK Sanctions List Ref):RUS1569 (UK Statement of Reasons):KOLUDAROVA is the Minister of Education and Science of the so-called Donetsk People’s Republic. KOLUDAROVA is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because she engages in and provides support for policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15513 +KOLUNOV,Sergey,Vladimirovich,,,,,Сергей Владимирович Колунов,,,22/03/1973,Kazan,Russia,,752050900,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0556 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14501 +KOMANOV,Viktor,Alekseevich,,,,,Виктор Алексеевич Команов,Cyrillic,Russian,00/00/1973,,,Russia,,,,,(1) Member of Gazprombank’s Management Board (2) Deputy Chairman of Gazprombank’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1609 (UK Statement of Reasons):Viktor Alekseevich Komanov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15553 +KOMAROV,Igor,Anatolyevich,,,,,КОМАРОВ Игорь Анатольевич,Cyrillic,Russian,25/05/1964,"Engels, Saratov region",Russia,Russia,,,,,"Presidential Envoy to the Volga Federal District, Member of the Russian Security Council",,,,,,,,,"(UK Sanctions List Ref):RUS1047 (UK Statement of Reasons):Igor Anatolyevich KOMAROV is a Member of the Security Council of the Russian Federation. As a Member of the Security Council, KOMAROV is or has been responsible for, engaged in, provided support for or promoted policies or actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,24/03/2022,24/03/2022,09/05/2022,14990 +KOMID,,,,,,,,,,,,,,,,,,,,,,,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0157 (UN Ref):KPe.001 Primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons.,Entity,AKA,,Democratic People's Republic of Korea,27/04/2009,24/04/2009,31/12/2020,10892 +KOMNOV,Dmitri,,,,,,,,,17/05/1977,Moscow,Russia,Russia,,,,,former head of Butyrka Detention Centre,,,,,,,,,"(UK Sanctions List Ref):GHR0008 (UK Statement of Reasons):Lieutenant Colonel Dmitriy Komnov was the head of Butyrka detention centre where Sergei Magnitsky was detained between 25 July and 16 November 2009. He was responsible for Magnitsky’s mistreatment in detention including poor conditions of detention and the denial of, or failure to provide, adequate medical care, which contributed significantly to his death. Komnov was also involved in concealing evidence of that mistreatment, including providing false or misleading information to the Public Oversight Commission for Human Rights Observance in Moscow Detention Centres. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13862 +KOMNOV,Dmitriy,,,,,,,,,17/05/1977,Moscow,Russia,Russia,,,,,former head of Butyrka Detention Centre,,,,,,,,,"(UK Sanctions List Ref):GHR0008 (UK Statement of Reasons):Lieutenant Colonel Dmitriy Komnov was the head of Butyrka detention centre where Sergei Magnitsky was detained between 25 July and 16 November 2009. He was responsible for Magnitsky’s mistreatment in detention including poor conditions of detention and the denial of, or failure to provide, adequate medical care, which contributed significantly to his death. Komnov was also involved in concealing evidence of that mistreatment, including providing false or misleading information to the Public Oversight Commission for Human Rights Observance in Moscow Detention Centres. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13862 +KOMOTSKY,Boris,Olegovich,,,,,Комоцкий Борис Олегович,,,31/01/1956,Potsdam,Germany,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0427 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14372 +KONASHENKOV,Igor,Yevgenyevich,,,,Major General,КОНАШЕНКОВ Игорь Евгеньевич,Cyrillic,Russian,15/05/1966,Chisinau,Moldova,Russia,,,,,Head of the Department of Information and Mass Communications of the Ministry of Defence of the Russian Federation,14 Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS1342 (UK Statement of Reasons):Major General Igor Yevgenyevich KONASHENKOV is a member of the Armed Forces of the Russian Federation, he currently holds the position of Head of the Department of Information and Mass Communications of the Ministry of Defence of the Russian Federation. In this position he is used to heavily promote the Kremlin’s view of the war in Ukraine. There are therefore reasonable grounds to suspect he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15293 +KONDRASHOV,Igor,,,,,,,,,,,,,,,,,Director of the Legal Department at Sberbank,,,,,,,,,"(UK Sanctions List Ref):RUS1600 (UK Statement of Reasons):Igor Kondrashov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK). (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15544 +KONDRATENKO,Aleksey,Nikolayevich,,,,,Алексей Николаевич КОНДРАТЕНКО,,,16/12/1969,Art. Plastunovskaya,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0888 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14839 +KONDRATENKO,Maxim,Dmitrievich,,,,,КОНДРАТЕНКО Максим Дмитриевич,Cyrillic,Russian,13/07/1973,Samara,Russia,Russia,,,,,Member of VTB Bank Management Board,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0850 (UK Statement of Reasons):Maxim KONDRATENKO is a member of VTB Bank’s Management Board.  VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, KONDRATENKO obtains a financial benefit from VTB Bank, therefore KONDRATENKO is an involved person on the basis of his membership of and association with VTB Bank. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14801 +KONDRATYUK,Nikolai,Fyodorovna,,,,,Николай Фёдорович КОНДРАТЮК,,,07/11/1957,,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS1010 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14961 +KONIG,Emilie,Samra,,,,,,,,09/12/1984,Ploemeur,France,France,05AT521433,"French. Issued on 30/11/2005 by the sous-prefecture of police of Lorient, France.",(1) 050456101445 (2) 0205561020089,"(1) French national identity card. Issued on 19/05/2005 by the sous-prefecture of police of Lorient, France (2) French identity card. Issued on 30 May 2002 under name Emilie Edwige Konig",,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0167 (UN Ref):QDi.340 French terrorist fighter who travelled to Syria and joined Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Active in radicalizing and propagating Al-Qaida’s (QDe.004) ideology through the Internet. Incites violent activities against France. French arrest warrant issued on 12 Jun. 2015 by a magistrate of the anti-terrorism division of the Prosecutor’s Office in Paris for her participation in a terrorist criminal association. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818236. Address country Syria , located in since 2013.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,12/01/2022,13137 +KONIG,EMILIE,EDWIGE,,,,,,,,09/12/1984,Ploemeur,France,France,05AT521433,"French. Issued on 30/11/2005 by the sous-prefecture of police of Lorient, France.",(1) 050456101445 (2) 0205561020089,"(1) French national identity card. Issued on 19/05/2005 by the sous-prefecture of police of Lorient, France (2) French identity card. Issued on 30 May 2002 under name Emilie Edwige Konig",,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0167 (UN Ref):QDi.340 French terrorist fighter who travelled to Syria and joined Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Active in radicalizing and propagating Al-Qaida’s (QDe.004) ideology through the Internet. Incites violent activities against France. French arrest warrant issued on 12 Jun. 2015 by a magistrate of the anti-terrorism division of the Prosecutor’s Office in Paris for her participation in a terrorist criminal association. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818236. Address country Syria , located in since 2013.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,12/01/2022,13137 +KONONOV,Vladimir,Petrovich,,,,,,,,14/10/1974,"Gorskoe, Luhansk Oblast",Ukraine,Ukraine,,,,,Former so-called 'Defence Minister' of 'Donetsk People's Republic',,,,,,,,,"(UK Sanctions List Ref):RUS0004 (UK Statement of Reasons):As of 14 August 2014, he replaced Igor Strelkov/Girkin as the so-called ‘Defence minister’ of the ‘Donetsk People’s Republic’. He has reportedly commanded a division of separatist fighters in Donetsk since April 2014 and has promised to solve the strategic task of repelling Ukraine’s military aggression. Kononov has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Dismissed as so-called ‘Defence minister’ in October 2018. Chief of the Directorate for Social Assistance to Retired Servicemen, under the so called ‘Head of the Donetsk People’s Republic’. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,16/09/2022,13092 +KONONOV,Volodymyr,Petrovych,,,,,,,,14/10/1974,"Gorskoe, Luhansk Oblast",Ukraine,Ukraine,,,,,Former so-called 'Defence Minister' of 'Donetsk People's Republic',,,,,,,,,"(UK Sanctions List Ref):RUS0004 (UK Statement of Reasons):As of 14 August 2014, he replaced Igor Strelkov/Girkin as the so-called ‘Defence minister’ of the ‘Donetsk People’s Republic’. He has reportedly commanded a division of separatist fighters in Donetsk since April 2014 and has promised to solve the strategic task of repelling Ukraine’s military aggression. Kononov has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Dismissed as so-called ‘Defence minister’ in October 2018. Chief of the Directorate for Social Assistance to Retired Servicemen, under the so called ‘Head of the Donetsk People’s Republic’. (Gender):Male",Individual,Primary name variation,,Russia,12/09/2014,31/12/2020,16/09/2022,13092 +KONONOV,Vladimir,Mikhailovich,,,,,Кононов Владимир Михайлович,,,13/03/1958,Novosibirsk,Russia,Russia,511834383,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0557 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14502 +KONOV,Dmitry,Vladimirovich,,,,,,,,02/09/1970,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0784 (UK Statement of Reasons):Dmitriy Vladimirovich KONOV was a member of the Board of Directors of SIBUR Holding, a major petrochemicals company headquartered in Moscow, until March 2022. KONOV therefore has been involved in obtaining a benefit from or supporting the Government of Russia as an executive director or equivalent of an entity which has been carrying on business in a sector of strategic significance to the Government of Russia (chemicals).",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14735 +KONSTANTINOV,Vladimir,Andreevich,,,,,Владимир Андреевич КОНСТАНТИНОВ,,,19/11/1956,"(1) Vladimirovka (a.k.a. Vladimirovca), Slobozia Region (2) Bogomol",(1) Moldova (2) Moldova,Russia,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0005 (UK Statement of Reasons):As speaker of the Supreme Council of the Autonomous republic of Crimea, Konstantinov played a relevant role in the decisions taken by the ""Supreme Council"" concerning the ""referendum"" against territorial integrity of Ukraine and called on voters to cast their votes in favour of Crimean independence in the ""referendum"" of 16 March 2014. He was one of the co-signatories of the ""treaty on Crimea's accession to the Russian Federation"" of 18 March 2014. Since 17 March 2014,""Chairman"" of the ""State Council"" of the so-called ""Republic of Crimea"". (Gender):Male",Individual,Primary name,,Russia,18/03/2014,31/12/2020,16/09/2022,12923 +KONSTANTINOV,Volodymyr,Andriyovych,,,,,Володимир Андрійович КОНСТАНТIНОВ,,,19/11/1956,"(1) Vladimirovka (a.k.a. Vladimirovca), Slobozia Region (2) Bogomol",(1) Moldova (2) Moldova,Russia,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0005 (UK Statement of Reasons):As speaker of the Supreme Council of the Autonomous republic of Crimea, Konstantinov played a relevant role in the decisions taken by the ""Supreme Council"" concerning the ""referendum"" against territorial integrity of Ukraine and called on voters to cast their votes in favour of Crimean independence in the ""referendum"" of 16 March 2014. He was one of the co-signatories of the ""treaty on Crimea's accession to the Russian Federation"" of 18 March 2014. Since 17 March 2014,""Chairman"" of the ""State Council"" of the so-called ""Republic of Crimea"". (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12923 +KONY,,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Ali,Mohammed,,,,,,,,00/00/1994,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +KONY,Ali,Mohammed,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +KONY,Ali,Mohammed,,,,,,,,00/00/1995,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +KONY,Ali,Mohammed,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +KONY,Josef,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Josef,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Joseph,Rao,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,Salim,Saleh,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +KONY,Salim,Saleh,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +KONY,Salim,Saleh,,,,,,,,00/00/1991,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +KONY,Salim,Saleh,,,,,,,,00/00/1991,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +KONY,Salim,Saleh,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +KONY,Salim,Saleh,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +KONY,ALI,,,,,,,,,00/00/1994,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,Primary name,,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +KONY,ALI,,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,Primary name,,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +KONY,ALI,,,,,,,,,00/00/1995,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,Primary name,,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +KONY,ALI,,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,Primary name,,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +KONY,JOSEPH,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,JOSEPH,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +KONY,SALIM,,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,Primary name,,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +KONY,SALIM,,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,Primary name,,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +KONY,SALIM,,,,,,,,,00/00/1991,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,Primary name,,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +KONY,SALIM,,,,,,,,,00/00/1991,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,Primary name,,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +KONY,SALIM,,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,Primary name,,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +KONY,SALIM,,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,Primary name,,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +KONYUK,Aleksandr,Vladimirovich,,,,,,,,11/07/1960,Hrodna/Grodno,,Belarus,,,,,Prosecutor General,,,,,,,,,(UK Sanctions List Ref):BEL0032 (UK Statement of Reasons):Aliaksandr Kanyuk was the Prosecutor General of the Republic of Belarus for nine years up until 9 September 2020. Kanyuk was responsible for the use of criminal proceedings to disqualify opposition candidates ahead of the 2020 presidential election and to prevent persons from joining the Coordination Council launched by the opposition as a means to challenge the election result. (Gender):Male,Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13951 +KONYUK,Alexander,Vladimirovich,,,,,,,,11/07/1960,Hrodna/Grodno,,Belarus,,,,,Prosecutor General,,,,,,,,,(UK Sanctions List Ref):BEL0032 (UK Statement of Reasons):Aliaksandr Kanyuk was the Prosecutor General of the Republic of Belarus for nine years up until 9 September 2020. Kanyuk was responsible for the use of criminal proceedings to disqualify opposition candidates ahead of the 2020 presidential election and to prevent persons from joining the Coordination Council launched by the opposition as a means to challenge the election result. (Gender):Male,Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13951 +KONYUK,ALIAKSANDR,ULADZIMIRAVICH,,,,,,,,11/07/1960,Hrodna/Grodno,,Belarus,,,,,Prosecutor General,,,,,,,,,(UK Sanctions List Ref):BEL0032 (UK Statement of Reasons):Aliaksandr Kanyuk was the Prosecutor General of the Republic of Belarus for nine years up until 9 September 2020. Kanyuk was responsible for the use of criminal proceedings to disqualify opposition candidates ahead of the 2020 presidential election and to prevent persons from joining the Coordination Council launched by the opposition as a means to challenge the election result. (Gender):Male,Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13951 +KOPYL,Oleg,Nikolayevich,,,,Colonel,КОПЫЛЬ Олег Николаевич,Cyrillic,,,,,Belarus,,,,,First Deputy Commander of the Department for Ideological Work - Ministry of Defence,,,,,,,,,"(UK Sanctions List Ref):RUS0749 (UK Statement of Reasons):Colonel Oleg Nikolayevich KOPYL has been involved in engaging in and providing support for policies and actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely the Government of Belarus’s policy of support for Russia’s invasion of Ukraine, and the involvement of the Belarusian military in a joint exercise with the Russian military ahead of Russia’s invasion of Ukraine which: (1) threatened Ukraine; and (2) provided cover for Russian military preparations to invade Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14700 +KORE KURYONGGANG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0169 (UN Ref):KPe.008 Korea Tangun Trading Corporation is subordinate to DPRK’s Second Academy of Natural Sciences and is primarily responsible for the procurement of commodities and technologies to support DPRK’s defense research and development programs, including, but not limited to, WMD and delivery system programs and procurement, including materials that are controlled or prohibited under relevant multilateral control regimes. (Parent company):DPRK's Second Academy of Natural Sciences",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10913 +KOREA ACHIM SHIPPING CO,,,,,,,,,,,,,,,,,,,,,,Sochang-dong,Chung-guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0144 (UN Ref):KPe.061 Registered owner of DPRK tanker CHON MA SAN. DPRK-flagged CHON MA SAN prepared for likely ship-to-ship transfer operations in late January 2018. The master of the DPRK-flagged motor tanker YU JONG 2 reported on 18 November 2017 to an unidentified DPRK-based controller that the vessel was avoiding a storm in advance of a ship-to-ship transfer. The master suggested that the YU JONG 2 load fuel oil before the DPRK-flagged tanker CHON MA SAN since the CHON MA SAN’s larger size was better suited to conduct ship-to-ship transfers in a storm. After the CHON MA SAN loaded fuel oil from a vessel, the YU JONG 2 loaded 1,168 kiloliters of fuel oil on 19 November 2017 through a ship-to-ship transfer operation. IMO number: 5936312.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13632 +KOREA ANSAN SHIPPING COMPANY,,,,,,,,,,,,,,,,,,,,,,Pyongchon 1-dong,Pyongchon-guyok,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0145 (UN Ref):KPe.062 Registered owner of DPRK tanker AN SAN 1 believed to have been involved in ship-to-ship transfer operations for oil. IMO number: 5676084.,Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13633 +KOREA ANSAN SHPG CO,,,,,,,,,,,,,,,,,,,,,,Pyongchon 1-dong,Pyongchon-guyok,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0145 (UN Ref):KPe.062 Registered owner of DPRK tanker AN SAN 1 believed to have been involved in ship-to-ship transfer operations for oil. IMO number: 5676084.,Entity,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13633 +KOREA ANSAN SHPG COMPANY,,,,,,,,,,,,,,,,,,,,,,Pyongchon 1-dong,Pyongchon-guyok,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0145 (UN Ref):KPe.062 Registered owner of DPRK tanker AN SAN 1 believed to have been involved in ship-to-ship transfer operations for oil. IMO number: 5676084.,Entity,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13633 +KOREA CHANGGWANG CREDIT BANK,,,,,,,,,,,,,,,,,,,Saemul 1-Dong,,,,Pyongchon District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0195 (UN Ref):KPe.003 Main DPRK financial entity for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons.",Entity,AKA,,Democratic People's Republic of Korea,27/04/2009,24/04/2009,31/12/2020,10894 +KOREA COMPLEX EQUIPMENT IMPORT CORPORATION,,,,,,,,,,,,,,,,,,,Rakwon-dong,,,,Pothonggang District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0146 (UN Ref):KPe.019 Korea Ryonbong General Corporation is the parent company of Korea Complex Equipment Import Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country’s military-related sales.,Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,30/11/2016,31/12/2020,12443 +KOREA DAERYONGGANG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Chilgol,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +KOREA DAERYONGGANG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,Sengujadong 11-2/(or Kwangbok-dong),,,,Mangyongdae District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +KOREA DAESONG BANK,,,,,,,,,,,,,,,,,,,,,Segori-dong,Gyongheung,St. Potonggang District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0147 (UN Ref):KPe.035 Daesong Bank is owned and controlled by Office 39 of the Korea Workers’ Party. SWIFT/BIC: KDBKKPPY,Entity,Primary name,,Democratic People's Republic of Korea,23/12/2010,30/11/2016,31/12/2020,11286 +KOREA DAESONG GENERAL TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,Pulgan Gori Dong 1,Potonggang District,Pyongyang City,,North Korea,"(UK Sanctions List Ref):DPR0148 (UN Ref):KPe.042 Korea Daesong General Trading Corporation is affiliated with Office 39 through minerals (gold) exports, metals, machinery, agricultural products, ginseng, jewelry, and light industry products. (Phone number):(1) +850-2-18111-8208 (2) Fax: +850-2-381-4432 (Email address):daesong@star-co.net.kp",Entity,Primary name,,Democratic People's Republic of Korea,23/12/2010,30/11/2016,02/08/2022,11287 +KOREA DAESONG TRADING COMPANY,,,,,,,,,,,,,,,,,,,,,,Pulgan Gori Dong 1,Potonggang District,Pyongyang City,,North Korea,"(UK Sanctions List Ref):DPR0148 (UN Ref):KPe.042 Korea Daesong General Trading Corporation is affiliated with Office 39 through minerals (gold) exports, metals, machinery, agricultural products, ginseng, jewelry, and light industry products. (Phone number):(1) +850-2-18111-8208 (2) Fax: +850-2-381-4432 (Email address):daesong@star-co.net.kp",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,30/11/2016,02/08/2022,11287 +KOREA DAESONG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,Pulgan Gori Dong 1,Potonggang District,Pyongyang City,,North Korea,"(UK Sanctions List Ref):DPR0148 (UN Ref):KPe.042 Korea Daesong General Trading Corporation is affiliated with Office 39 through minerals (gold) exports, metals, machinery, agricultural products, ginseng, jewelry, and light industry products. (Phone number):(1) +850-2-18111-8208 (2) Fax: +850-2-381-4432 (Email address):daesong@star-co.net.kp",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,30/11/2016,02/08/2022,11287 +KOREA FOREIGN INSURANCE COMPANY,,,,,,,,,,,,,,,,,,,,,,,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0168 (UN Ref):KPe.048 The Korean National Insurance Company is a DPRK financial and insurance company and is affiliated with Office 39.,Entity,AKA,,Democratic People's Republic of Korea,28/04/2016,05/08/2017,31/12/2020,13355 +KOREA FOREIGN TECHNICAL TRADE CENTER,,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,(UK Sanctions List Ref):DPR0149 (UN Ref):KPe.037 Korea Foreign Technical Trade Center is a DPRK firm trading in coal. DPRK generates a significant share of the funds needed to finance its nuclear and ballistic missile programs by mining natural resources and selling those resources abroad.,Entity,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,31/12/2020,13428 +KOREA HENGJIN TRADING COMPANY,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0150 (UN Ref):KPe.011 The Korea Heungjin Trading Company is used by KOMID for trading purposes. We suspect it has been involved in supplying missile-related goods to Iran’s Shahid Hemmat Industrial Group (SHIG). Heungjin has been associated with KOMID, and, more specifically, KOMID’s procurement office. Heungjin has been used to procure an advanced digital controller with applications in missile design. KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. The Security Council designated SHIG in resolution 1737 (2006) as an entity involved in Iran’s ballistic missile programme.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11283 +KOREA HENJIN TRADING CO.,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0150 (UN Ref):KPe.011 The Korea Heungjin Trading Company is used by KOMID for trading purposes. We suspect it has been involved in supplying missile-related goods to Iran’s Shahid Hemmat Industrial Group (SHIG). Heungjin has been associated with KOMID, and, more specifically, KOMID’s procurement office. Heungjin has been used to procure an advanced digital controller with applications in missile design. KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. The Security Council designated SHIG in resolution 1737 (2006) as an entity involved in Iran’s ballistic missile programme.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11283 +KOREA HEUNGJIN TRADING COMPANY,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0150 (UN Ref):KPe.011 The Korea Heungjin Trading Company is used by KOMID for trading purposes. We suspect it has been involved in supplying missile-related goods to Iran’s Shahid Hemmat Industrial Group (SHIG). Heungjin has been associated with KOMID, and, more specifically, KOMID’s procurement office. Heungjin has been used to procure an advanced digital controller with applications in missile design. KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. The Security Council designated SHIG in resolution 1737 (2006) as an entity involved in Iran’s ballistic missile programme.",Entity,Primary name,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11283 +KOREA HYOKSIN EXPORT AND IMPORT CORPORATION,,,,,,,,,,,,,,,,,,,,,,Rakwon-dong,Pothonggang District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0151 (UN Ref):KPe.006 A DPRK company based in Pyongyang that is subordinate to Korea Ryonbong General Corporation (designated by the Committee in April 2009) and is involved in the development of WMD. (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,31/12/2020,10911 +KOREA HYOKSIN TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,Rakwon-dong,Pothonggang District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0151 (UN Ref):KPe.006 A DPRK company based in Pyongyang that is subordinate to Korea Ryonbong General Corporation (designated by the Committee in April 2009) and is involved in the development of WMD. (Parent company):Korea Ryonbong General Corporation,Entity,Primary name,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,31/12/2020,10911 +KOREA INTERNATIONAL CHEMICAL JOINT VENTURE COMPANY,,,,,,,,,,,,,,,,,,,,,,,Hamhung,South Hamgyong Province,,North Korea,(UK Sanctions List Ref):DPR0152 (UN Ref):KPe.039 Korea International Chemical Joint Venture Company is a subsidiary of Korea Ryonbong General Corporation – DPRK’s defense conglomerate specializing in acquisition for DPRK defense industries and support to Pyongyang’s military related sales – and has engaged in proliferation-related transactions. (Parent company):Korea Ryonbong General Corporation,Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,30/11/2016,31/12/2020,12444 +KOREA INTERNATIONAL CHEMICAL JOINT VENTURE COMPANY,,,,,,,,,,,,,,,,,,,,,,,Man gyongdae-kuyok,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0152 (UN Ref):KPe.039 Korea International Chemical Joint Venture Company is a subsidiary of Korea Ryonbong General Corporation – DPRK’s defense conglomerate specializing in acquisition for DPRK defense industries and support to Pyongyang’s military related sales – and has engaged in proliferation-related transactions. (Parent company):Korea Ryonbong General Corporation,Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,30/11/2016,31/12/2020,12444 +KOREA INTERNATIONAL CHEMICAL JOINT VENTURE COMPANY,,,,,,,,,,,,,,,,,,,,,,,Mangyungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0152 (UN Ref):KPe.039 Korea International Chemical Joint Venture Company is a subsidiary of Korea Ryonbong General Corporation – DPRK’s defense conglomerate specializing in acquisition for DPRK defense industries and support to Pyongyang’s military related sales – and has engaged in proliferation-related transactions. (Parent company):Korea Ryonbong General Corporation,Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,30/11/2016,31/12/2020,12444 +KOREA INTERNATIONAL EXHIBITION CORPORATION,,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,(UK Sanctions List Ref):DPR0058 (UK Statement of Reasons):The Korea International Exhibition Corporation has assisted entities in the evasion of sanctions by hosting the Pyongyang International Trade Fair which provides designated entities with the opportunity to breach UN sanctions by continuing economic activity.,Entity,Primary name,,Democratic People's Republic of Korea,16/10/2017,31/12/2020,31/12/2020,13550 +KOREA KUMRYONG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):DPR0153 (UN Ref):KPe.014 Used as an alias by the Korea Mining Development Trading Corporation (KOMID) to carry out procurement activities. KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. (Parent company):The Korea Mining Development Corporation (KOMID),Entity,Primary name,,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12857 +KOREA KUMSAN TRADING CORPORATION,,,,,,,,,,,,,,,,,,,Haeun 2-dong,Pyogchon District,,,,Pyongyang City/Mangyongdae,,North Korea,"(UK Sanctions List Ref):DPR0154 (UN Ref):KPe.044 Korea Kumsan Trading Corporation is owned or controlled by, or acting or purporting to act for or on behalf of, directly or indirectly, the General Bureau of Atomic Energy, which oversees the DPRK’s nuclear programme (Phone number):(1) +850-2-18111-8550. (2) Fax: +850-2-381-4410/4416. (Email address):mhs-ip@star-co.net.kp",Entity,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13485 +KOREA KWANGSON BANKING CORPORATION (KKBC),,,,,,,,,,,,,,,,,,,Jungson-dong,Sungri Street,,,Central District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0155 (UN Ref):KPe.025 KKBC provides financial services in support to Tanchon Commercial Bank and Korea Hyoksin Trading Corporation, a subordinate of the Korea Ryonbong General Corporation. Tanchon Commercial Bank has used KKBC to facilitate funds transfers likely amounting to millions of dollars, including transfers involving Korea Mining Development Corporation related funds.",Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,31/12/2020,12452 +KOREA KWANGSONG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,Rakwon-dong,Pothonggang District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0156 (UN Ref):KPe.026 The Korea Ryongbong General Corporation is the parent company of Korea Kwangsong Trading Corporation. (Parent company):The Korea Ryongbong General Corporation,Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,31/12/2020,12445 +KOREA MINING DEVELOPMENT TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0157 (UN Ref):KPe.001 Primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons.,Entity,Primary name,,Democratic People's Republic of Korea,27/04/2009,24/04/2009,31/12/2020,10892 +KOREA MIRAE SHIPPING CO. LTD,,,,,,,,,,,,,,,,,,,Dongheung-dong Changgwang Street,Chung-Ku,PO Box 125,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0181 (UN Ref):KPe.020 Ocean Maritime Management Company, Limited is the operator/manager of the following vessels with IMO Number: (a) Chol Ryong (Ryong Gun Bong) 8606173, (b) Chong Bong (Greenlight) (Blue Nouvelle) 8909575, (c) Chong Rim 2 8916293, (d) Hoe Ryong 9041552, (e) Hu Chang (O Un Chong Nyon) 8330815, (f) Hui Chon (Hwang Gum San 2) 8405270, (g) Ji Hye San (Hyok Sin 2) 8018900, (h) Kang Gye (Pi Ryu Gang) 8829593, (i) Mi Rim 8713471, (j) Mi Rim 2 9361407, (k) Rang (Po Thong Gang) 8829555, (l) Ra Nam 2 8625545, (m) Ra Nam 3 9314650, (n) Ryo Myong 8987333, (o) Ryong Rim (Jon Jin 2) 8018912, (p) Se Pho (Rak Won 2) 8819017, (q) Songjin (Jang Ja San Chong Nyon Ho) 8133530, (r) South Hill 2 8412467,(s) Tan Chon (Ryon Gang 2) 7640378, (t) Thae Pyong San (Petrel 1) 9009085, (u) Tong Hung San (Chong Chon Gang) 7937317, (v) Tong Hung 8661575. It played a key role in arranging the shipment of concealed cargo of arms and related materiel from Cuba to the DPRK in July 2013. As such, Ocean Maritime Management Company, Limited contributed to activities prohibited by the resolutions, namely the arms embargo imposed by resolution 1718 (2006), as modified by resolution 1874 (2009), and contributed to the evasion of the measures imposed by these resolutions. International Maritime Organization (IMO) Number: 1790183.",Entity,AKA,,Democratic People's Republic of Korea,16/10/2014,28/07/2014,02/08/2022,13143 +KOREA MIRAE SHIPPING CO. LTD,,,,,,,,,,,,,,,,,,,Donghung Dong,Central District,PO Box 120,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0181 (UN Ref):KPe.020 Ocean Maritime Management Company, Limited is the operator/manager of the following vessels with IMO Number: (a) Chol Ryong (Ryong Gun Bong) 8606173, (b) Chong Bong (Greenlight) (Blue Nouvelle) 8909575, (c) Chong Rim 2 8916293, (d) Hoe Ryong 9041552, (e) Hu Chang (O Un Chong Nyon) 8330815, (f) Hui Chon (Hwang Gum San 2) 8405270, (g) Ji Hye San (Hyok Sin 2) 8018900, (h) Kang Gye (Pi Ryu Gang) 8829593, (i) Mi Rim 8713471, (j) Mi Rim 2 9361407, (k) Rang (Po Thong Gang) 8829555, (l) Ra Nam 2 8625545, (m) Ra Nam 3 9314650, (n) Ryo Myong 8987333, (o) Ryong Rim (Jon Jin 2) 8018912, (p) Se Pho (Rak Won 2) 8819017, (q) Songjin (Jang Ja San Chong Nyon Ho) 8133530, (r) South Hill 2 8412467,(s) Tan Chon (Ryon Gang 2) 7640378, (t) Thae Pyong San (Petrel 1) 9009085, (u) Tong Hung San (Chong Chon Gang) 7937317, (v) Tong Hung 8661575. It played a key role in arranging the shipment of concealed cargo of arms and related materiel from Cuba to the DPRK in July 2013. As such, Ocean Maritime Management Company, Limited contributed to activities prohibited by the resolutions, namely the arms embargo imposed by resolution 1718 (2006), as modified by resolution 1874 (2009), and contributed to the evasion of the measures imposed by these resolutions. International Maritime Organization (IMO) Number: 1790183.",Entity,AKA,,Democratic People's Republic of Korea,16/10/2014,28/07/2014,02/08/2022,13143 +KOREA MYONGDOK SHIPPING CO,,,,,,,,,,,,,,,,,,,Chilgol 2-dong,,,,Mangyongdae-guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0158 (UN Ref):KPe.063 Registered owner of the YU PHYONG 5. In late November 2017, the YU PHYONG 5 conducted a ship-to-ship transfer of 1,721 metric tons of fuel oil. IMO number: 5985863",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13634 +KOREA NATIONAL INSURANCE CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0168 (UN Ref):KPe.048 The Korean National Insurance Company is a DPRK financial and insurance company and is affiliated with Office 39.,Entity,AKA,,Democratic People's Republic of Korea,28/04/2016,05/08/2017,31/12/2020,13355 +KOREA PUGANG MINING AND MACHINERY CORPORATION LTD,,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0059 (UK Statement of Reasons):Subsidiary of Korea Ryonbong General Corporation (entity designated by the United Nations 24.4.2009); operates facilities for the production of aluminium powder, which can be used in missiles. (Parent company):Korea Ryongbong General Corporation",Entity,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11041 +KOREA PUGANG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,Rakwon-dong,Pothonggang District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0159 (UN Ref):KPe.038 Korea Pugang Trading Corporation is owned by the Korea Ryonbong General Corporation, DPRK’s defense conglomerate specializing in acquisition for DPRK defense industries and support to Pyongyang’s military related sales. (Parent company):Korea Ryonbong General Corporation",Entity,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,31/12/2020,13429 +KOREA RUNGRADO GENERAL TRADING CORPORATION,,,,,,,,,,,,,,,,,,,Segori-dong,Pothonggang District,,,Pyongyang,,,North Korea,(UK Sanctions List Ref):DPR0060 (UK Statement of Reasons):Korea Rungrado General Trading Corporation has assisted in violating sanctions imposed by the United Nations Security Council Resolutions through the sale of Scud missiles to Egypt. (Phone number):+850-2-18111-3818022. +850-2-3814507 (Email address):rrd@co.chesin.com,Entity,Primary name,,Democratic People's Republic of Korea,16/10/2017,31/12/2020,31/12/2020,13551 +KOREA RYENHA MACHINERY J/V CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Mangungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +KOREA RYENHA MACHINERY J/V CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Mangyongdae District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +KOREA RYENHA MACHINERY J/V CORPORATION,,,,,,,,,,,,,,,,,,,,,,Tongan-dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +KOREA RYONBONG GENERAL CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Pot'onggang District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0160 (UN Ref):KPe.002 Defense conglomerate specializing in acquisition for DPRK defense industries and support to that country’s military-related sales.,Entity,Primary name,,Democratic People's Republic of Korea,27/04/2009,24/04/2009,31/12/2020,10893 +KOREA RYONBONG GENERAL CORPORATION,,,,,,,,,,,,,,,,,,,,,,Rakwon-dong,Pothonggang District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0160 (UN Ref):KPe.002 Defense conglomerate specializing in acquisition for DPRK defense industries and support to that country’s military-related sales.,Entity,Primary name,,Democratic People's Republic of Korea,27/04/2009,24/04/2009,31/12/2020,10893 +KOREA R'YONGWANG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,Rakwon-Dong,Pothonggang District,,,Pyongyang,,,North Korea,"(UK Sanctions List Ref):DPR0062 (UK Statement of Reasons):Subsidiary of Korea Ryonbong General Corporation (entity designated by the United Nations, 24 April 2009). (Parent company):Korea Ryongbong General Corporation",Entity,AKA,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11042 +KOREA RYONHA MACHINERY JOINT VENTURE CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Mangungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +KOREA RYONHA MACHINERY JOINT VENTURE CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Mangyongdae District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +KOREA RYONHA MACHINERY JOINT VENTURE CORPORATION,,,,,,,,,,,,,,,,,,,,,,Tongan-dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +KOREA SAMJONG SHIPPING,,,,,,,,,,,,,,,,,,,,,,Tonghung-dong,Chung-guyok,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0162 (UN Ref):KPe.064 Registered owner of DPRK tankers SAM JONG 1 and SAM JONG 2. Both vessels are believed to have imported refined petroleum to DPRK in violation of UN sanctions in late January 2018. IMO number: 5954061,Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13635 +KOREA SAMMA SHIPPING CO,,,,,,,,,,,,,,,,,,,,,,Rakrang 3-dong,Rakrang-guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0163 (UN Ref):KPe.065 A DPRK-flagged tanker, SAM MA 2 owned by Korea Samma Shipping Company, conducted a ship-to-ship transfer of oil and fabricated documents in mid-October 2017, loading almost 1,600 metric tons of fuel oil in one transaction. The ship master was instructed to erase SAMMA SHIPPING and the Korean words found on the ship’s seal and instead put “Hai Xin You 606” to mask its identity as a DPRK vessel.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13636 +KOREA SAMMA SHPG CO,,,,,,,,,,,,,,,,,,,,,,Rakrang 3-dong,Rakrang-guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0163 (UN Ref):KPe.065 A DPRK-flagged tanker, SAM MA 2 owned by Korea Samma Shipping Company, conducted a ship-to-ship transfer of oil and fabricated documents in mid-October 2017, loading almost 1,600 metric tons of fuel oil in one transaction. The ship master was instructed to erase SAMMA SHIPPING and the Korean words found on the ship’s seal and instead put “Hai Xin You 606” to mask its identity as a DPRK vessel.",Entity,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13636 +KOREA TAESONG TRADING COMPANY,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0164 (UN Ref):KPe.041 Korea Taesong Trading Company has acted on behalf of KOMID in dealings with Syria.,Entity,Primary name,,Democratic People's Republic of Korea,23/12/2010,30/11/2016,31/12/2020,11284 +KOREA TEARYONGGANG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Chilgol,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +KOREA TEARYONGGANG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,Sengujadong 11-2/(or Kwangbok-dong),,,,Mangyongdae District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +KOREA TRADING BANK,,,,,,,,,,,,,,,,,,,,,FTB Building,Jungsong-dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0134 (UN Ref):KPe.047 Foreign Trade Bank is a state-owned bank and acts as the DPRK’s primary foreign exchange bank and has provided key financial support to the Korea Kwangson Banking Corporation. SWIFT/BIC: FTBDKPPY.,Entity,AKA,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,02/08/2022,13536 +KOREA UNITED DEVELOPMENT BANK,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0165 (UN Ref):KPe.033 Korea United Development Bank operates in the financial services industry of the DPRK economy. SWIFT/BIC: KUDBKPPY,Entity,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,31/12/2020,13425 +KOREA YONBONG GENERAL CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Pot'onggang District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0160 (UN Ref):KPe.002 Defense conglomerate specializing in acquisition for DPRK defense industries and support to that country’s military-related sales.,Entity,AKA,,Democratic People's Republic of Korea,27/04/2009,24/04/2009,31/12/2020,10893 +KOREA YONBONG GENERAL CORPORATION,,,,,,,,,,,,,,,,,,,,,,Rakwon-dong,Pothonggang District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0160 (UN Ref):KPe.002 Defense conglomerate specializing in acquisition for DPRK defense industries and support to that country’s military-related sales.,Entity,AKA,,Democratic People's Republic of Korea,27/04/2009,24/04/2009,31/12/2020,10893 +KOREA YUJONG SHIPPING CO LTD,,,,,,,,,,,,,,,,,,,Puksong 2-dong,,,,Pyongchon-guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0166 (UN Ref):KPe.066 Registered owner of the DPRK tanker YU JONG 2, which loaded 1,168 kiloliters of fuel oil on 19 November 2017 through a ship-to-ship transfer operation.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13637 +KOREAN COMMITTEE FOR SPACE TECHNOLOGY,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0167 (UN Ref):KPe.012 The Korean Committee for Space Technology (KCST) orchestrated the DPRK’s launches on 13 April 2012 and 12 December 2012 via the satellite control center and Sohae launch area.,Entity,Primary name,,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12847 +KOREAN EXPORT JOINT VENTURE,,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):CYB0004 (UK Statement of Reasons):The Lazarus Group was responsible for relevant cyber activity that resulted in data interference which directly or indirectly caused, or is intended to cause, economic loss to, or prejudice to the commercial interests of, those affected by the activity through stealing money from Bangladesh Bank, attempting to steal money from Vietnam Tien Phong Bank and targeting the Polish Financial Conduct Authority information systems. Through the WannaCry attack they undermined the integrity of the United Kingdom through interfering with an information system so that it prevented the provision of essential healthcare services to the population. (Type of entity):Company (Subsidiaries):Reconnaissance General Bureau",Entity,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13910 +KOREAN NATIONAL INSURANCE CORPORATION (KNIC),,,,,,,,,,,,,,,,,,,,,,,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0168 (UN Ref):KPe.048 The Korean National Insurance Company is a DPRK financial and insurance company and is affiliated with Office 39.,Entity,Primary name,,Democratic People's Republic of Korea,28/04/2016,05/08/2017,31/12/2020,13355 +KOREAN PEOPLE'S ARMY,,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0061 (UK Statement of Reasons):The Korean People’s Army includes the Strategic Rocket Force, which controls the DPRK’s nuclear and conventional strategic missile units. The Strategic Rocket Force has been listed by the United Nations Security Council Resolution 2356 (2017).",Entity,Primary name,,Democratic People's Republic of Korea,16/10/2017,31/12/2020,31/12/2020,13548 +KOREAN RYENGWANG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,Rakwon-Dong,Pothonggang District,,,Pyongyang,,,North Korea,"(UK Sanctions List Ref):DPR0062 (UK Statement of Reasons):Subsidiary of Korea Ryonbong General Corporation (entity designated by the United Nations, 24 April 2009). (Parent company):Korea Ryongbong General Corporation",Entity,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11042 +KOREAN TANGUN TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0169 (UN Ref):KPe.008 Korea Tangun Trading Corporation is subordinate to DPRK’s Second Academy of Natural Sciences and is primarily responsible for the procurement of commodities and technologies to support DPRK’s defense research and development programs, including, but not limited to, WMD and delivery system programs and procurement, including materials that are controlled or prohibited under relevant multilateral control regimes. (Parent company):DPRK's Second Academy of Natural Sciences",Entity,Primary name,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10913 +KORNET,Igor,Aleksandrovich,,,,,КОРНЕТ Игорь Александрович,Cyrillic,Russian,29/04/1973,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1159 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15111 +KORNET,Igor,Alexandrovich,,,,,,,,29/04/1973,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1159 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15111 +KORNIENKO,Alexey,Viktorovich,,,,,Алексей Викторович Корниенко,,,22/07/1976,Namangan,Uzbekistan,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0428 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14373 +KOROBOVA,Olga,Vladimirovna,,,,,Ольга Владимировна Коробова,,,15/09/1978,Zarya,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0678 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14629 +KOROLYOV,Sergei,Borisovich,,,,General of the Army,КОРОЛЕВ Сергей Борисович,Cyrillic,Russian,25/07/1962,Frunze,Kyrgyzstan,Russia,,,,,First Deputy Director of the FSB of the Russian Federation,2 Bolshaya,Lubyanka Street,,,,Moscow,107031,Russia,"(UK Sanctions List Ref):RUS1344 (UK Statement of Reasons):General of the Army Sergei Borisovich KOROLYOV is a military official of the Russian Federation, he currently holds the position of First Deputy Director of the Federal Security Service (FSB) of the Russian Federation. He is considered to be or have been either in direct command of or in a position to hold considerable situational awareness of operatives involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15295 +KOROLYUK,Maxim,Vitalievich,,,,,КОРОЛЮК Максим Витальевич,Cyrillic,Russian,22/12/1982,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1250 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15202 +KOROLYUK,Maxim,Vitalyevich,,,,,,,,22/12/1982,,,,,,,,,97 Artema St,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1250 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15202 +KOROTCHENKO,Igor,Yurievich,,,,,Игорь Юрьевич КОРОТЧЕНКО,Cyrillic,Russian,15/02/1960,Riga,Latvia,Russia,,,,,(1) Chairman of the Public Council under the Ministry of Defence of the Russian Federation (2) Editor-in-Chief of the National Defence magazine (3) Director of the Centre for Analysis of the World Arms Trade (4) Military rank - Reserve Colonel,,,,,,,,,"(UK Sanctions List Ref):RUS1348 (UK Statement of Reasons):Igor Yuryevich KOROTCHENKO (hereafter KOROTCHENKO) is the Editor-in-Chief of Russia’s National Defence magazine and a former officer in Russia’s Air Force. He is also the director of the Centre for the Analysis of the World’s Arms Trade. KOROTCHENKO has given numerous interviews and statements where he has supported or promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,21/04/2022,21/04/2022,14/06/2022,15299 +KOROTKIY,Alexander,Vladimirovich,,,,,КОРОТКИЙ Александр Владимирович,Cyrillic,Russian,13/03/1925,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1209 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15161 +KOROTKY,Alexander,Vladimirovich,,,,,,,,13/03/1925,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1209 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15161 +KORYO BANK,,,,,,,,,,,,,,,,,,,Koryo Bank Building,Pulgun Street,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0170 (UN Ref):KPe.045 Koryo Bank operates in the financial services industry in the DPRK’s economy and is associated with Office 38 and Office 39 of the KWP,Entity,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13486 +KORYO CREDIT DEVELOPMENT BANK,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0171 (UN Ref):KPe.049 Koryo Credit Development Bank operates in the financial services industry in the DPRK’s economy.,Entity,Primary name,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13537 +KORYO GLOBAL CREDIT BANK,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0171 (UN Ref):KPe.049 Koryo Credit Development Bank operates in the financial services industry in the DPRK’s economy.,Entity,AKA,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13537 +KORYO GLOBAL TRUST BANK,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0171 (UN Ref):KPe.049 Koryo Credit Development Bank operates in the financial services industry in the DPRK’s economy.,Entity,AKA,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13537 +KOSACHEV,Konstantin,Iosifovich,,,,,Константин Иосифович Косачев,,,17/09/1962,Moscow Oblast,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0879 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14830 +KOSHA,Ismail,,,,,,,,,00/00/1978,"Ghorveh, Kurdistan",Iran,Iran,,,,,Governor of Kurdistan,,,,,,,,,"(UK Sanctions List Ref):IHR0114 (UK Statement of Reasons):Esmaeil KOUSHA is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and right to freedom of expression and peaceful assembly in Iran in his role as Governor of Kurdistan and in the suppression of protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15634 +KOSHELEV,Vladimir,Alekseevich,,,,,Кошелев Владимир Алексеевич,,,01/10/1974,Samara (formerly Kuibyshev),Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0429 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14374 +KOSHLAF,,,,,,,,,,02/12/1985,Zawiya,Libya,Libya,C17HLRL3,Issued in Zawiya on 30 Dec 2015,,,(1) Commander of the Shuhada al-Nasr brigade (2) Head of the Petrol Refinery Guard of Zawiya’s refinery,,,,,,Zawiya,,Libya,"(UK Sanctions List Ref):LIB0055 (UN Ref):LYi.025 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13675 +KOSIKHINA,Natalya,Vladimirovna,,,,,Наталия Владимировна Косихина,,,08/07/1972,"Danilov, Yaroslavl",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS1012 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14963 +KOSTENKO,Elena,Nikolaevna,,,,,КОСТЕНКО Елена Николаевна,Cyrillic,Russian,13/11/1968,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1156 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15108 +KOSTENKO,Irina,Anatolievna,,,,,КОСТЕНКО Ирина Анатольевна,Cyrillic,Russian,04/04/1974,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1251 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15203 +KOSTENKO,Irina,Anatolyevna,,,,,,,,04/04/1974,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1251 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15203 +KOSTENKO,Natalya,Vasilievna,,,,,Наталья Васильевна Костенко,,,09/08/1980,Malotenginskaya,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0430 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14375 +KOSTENOK,Igor,Vladimirovich,,,,,Игорь ВЛАДИМИРОВИЧ Костенок,,,15/03/1961,"Vodyanske, Dobropillia Rayon, Donetsk oblast",Ukrainian SSR (now Ukraine),Ukraine,,,,,(1) Former so-called 'Minister' of Education' of the 'Donetsk People's Republic' (2) Currently working for the Donetsk Academy of Management and Civil Service under the so called ‘Head of the Donetsk People’s Republic’,,,,,,,,,"(UK Sanctions List Ref):RUS0006 (UK Statement of Reasons):Former so-called “Minister of Education” of the “Donetsk People’s Republic”. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Currently working for the Donetsk Academy of Management and Civil Service under the so called ‘Head of the Donetsk People’s Republic’. (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,26/09/2022,13180 +KOSTENOK,Ihor,Vladymyrovych,,,,,Ігор ВЛАДИМИРОВИЧ Костенок,,,15/03/1961,"Vodyanske, Dobropillia Rayon, Donetsk oblast",Ukrainian SSR (now Ukraine),Ukraine,,,,,(1) Former so-called 'Minister' of Education' of the 'Donetsk People's Republic' (2) Currently working for the Donetsk Academy of Management and Civil Service under the so called ‘Head of the Donetsk People’s Republic’,,,,,,,,,"(UK Sanctions List Ref):RUS0006 (UK Statement of Reasons):Former so-called “Minister of Education” of the “Donetsk People’s Republic”. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Currently working for the Donetsk Academy of Management and Civil Service under the so called ‘Head of the Donetsk People’s Republic’. (Gender):Male",Individual,Primary name,,Russia,02/12/2014,31/12/2020,26/09/2022,13180 +KOSTIN,Andrei,,,,,,,,,21/09/1956,Moscow,Russia,Russia,,,,,(1) President of VTB Bank (PJSC) (2) Chairman of VTB Bank (PJSC) Management Board (3) Member of the Supervisory Council of VTB Bank (PJSC) (4) Chairman of the Strategy and Corporate Governance Committee,,,,,,,,,"(UK Sanctions List Ref):RUS0267 (UK Statement of Reasons):Andrei Leonidovich KOSTIN (hereafter KOSTIN) is a prominent Russian businessman and banker, with close links to Vladimir Putin. KOSTIN holds a role equivalent to executive director as the President of VTB Bank (PJSC) and Chairman of VTB Bank (PJSC) Management Board. VTB Bank (PJSC) is owned or controlled directly or indirectly by the Government of Russia because the Russian Federal Agency for State Property Management owns 60.9% of ordinary shares within it; VTB Bank is therefore a Government of Russia-affiliated entity. KOSTIN therefore is or has been involved in supporting the Government of Russia through his role working as a director (whether executive or non-executive), trustee, or equivalent as President of VTB Bank (PJSC) and Chairman of VTB Bank (PJSC) Management Board. VTB Bank (PJSC) is a Government of Russia-affiliated entity, and/or is an entity that is carrying on business in the Russian financial services sector, a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,10/03/2022,10/03/2022,10/03/2022,14217 +KOSTIN,Andrei,Leonidovich,,,,Mr,Андрей Леонидович КОСТИН,,,21/09/1956,Moscow,Russia,Russia,,,,,(1) President of VTB Bank (PJSC) (2) Chairman of VTB Bank (PJSC) Management Board (3) Member of the Supervisory Council of VTB Bank (PJSC) (4) Chairman of the Strategy and Corporate Governance Committee,,,,,,,,,"(UK Sanctions List Ref):RUS0267 (UK Statement of Reasons):Andrei Leonidovich KOSTIN (hereafter KOSTIN) is a prominent Russian businessman and banker, with close links to Vladimir Putin. KOSTIN holds a role equivalent to executive director as the President of VTB Bank (PJSC) and Chairman of VTB Bank (PJSC) Management Board. VTB Bank (PJSC) is owned or controlled directly or indirectly by the Government of Russia because the Russian Federal Agency for State Property Management owns 60.9% of ordinary shares within it; VTB Bank is therefore a Government of Russia-affiliated entity. KOSTIN therefore is or has been involved in supporting the Government of Russia through his role working as a director (whether executive or non-executive), trustee, or equivalent as President of VTB Bank (PJSC) and Chairman of VTB Bank (PJSC) Management Board. VTB Bank (PJSC) is a Government of Russia-affiliated entity, and/or is an entity that is carrying on business in the Russian financial services sector, a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,10/03/2022,10/03/2022,10/03/2022,14217 +KOSTIN,Andrey,,,,,,,,,21/09/1956,Moscow,Russia,Russia,,,,,(1) President of VTB Bank (PJSC) (2) Chairman of VTB Bank (PJSC) Management Board (3) Member of the Supervisory Council of VTB Bank (PJSC) (4) Chairman of the Strategy and Corporate Governance Committee,,,,,,,,,"(UK Sanctions List Ref):RUS0267 (UK Statement of Reasons):Andrei Leonidovich KOSTIN (hereafter KOSTIN) is a prominent Russian businessman and banker, with close links to Vladimir Putin. KOSTIN holds a role equivalent to executive director as the President of VTB Bank (PJSC) and Chairman of VTB Bank (PJSC) Management Board. VTB Bank (PJSC) is owned or controlled directly or indirectly by the Government of Russia because the Russian Federal Agency for State Property Management owns 60.9% of ordinary shares within it; VTB Bank is therefore a Government of Russia-affiliated entity. KOSTIN therefore is or has been involved in supporting the Government of Russia through his role working as a director (whether executive or non-executive), trustee, or equivalent as President of VTB Bank (PJSC) and Chairman of VTB Bank (PJSC) Management Board. VTB Bank (PJSC) is a Government of Russia-affiliated entity, and/or is an entity that is carrying on business in the Russian financial services sector, a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,10/03/2022,10/03/2022,10/03/2022,14217 +KOSTIN,Andrey,Leonidovich,,,,,,,,21/09/1956,Moscow,Russia,Russia,,,,,(1) President of VTB Bank (PJSC) (2) Chairman of VTB Bank (PJSC) Management Board (3) Member of the Supervisory Council of VTB Bank (PJSC) (4) Chairman of the Strategy and Corporate Governance Committee,,,,,,,,,"(UK Sanctions List Ref):RUS0267 (UK Statement of Reasons):Andrei Leonidovich KOSTIN (hereafter KOSTIN) is a prominent Russian businessman and banker, with close links to Vladimir Putin. KOSTIN holds a role equivalent to executive director as the President of VTB Bank (PJSC) and Chairman of VTB Bank (PJSC) Management Board. VTB Bank (PJSC) is owned or controlled directly or indirectly by the Government of Russia because the Russian Federal Agency for State Property Management owns 60.9% of ordinary shares within it; VTB Bank is therefore a Government of Russia-affiliated entity. KOSTIN therefore is or has been involved in supporting the Government of Russia through his role working as a director (whether executive or non-executive), trustee, or equivalent as President of VTB Bank (PJSC) and Chairman of VTB Bank (PJSC) Management Board. VTB Bank (PJSC) is a Government of Russia-affiliated entity, and/or is an entity that is carrying on business in the Russian financial services sector, a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,10/03/2022,10/03/2022,10/03/2022,14217 +KOSTOMAROV,Aleksandr,Konstantinovich,,,,,Александр Костомаров Константинович,Cyrillic,Russian,13/05/1977,Chelyabinsk,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1627 (UK Statement of Reasons):ALEKSANDR KOSTOMAROV is the First Deputy Head of the Administration of the Head of the so-called Donetsk People's Republic. KOSTOMAROV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he engages in and provides support for policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,02/11/2022,15571 +KOSTRUBITSKIY,Alexei,Alekandrovich,,,,,КОСТРУБИЦКИЙ Алексей Александрович,Cyrillic,Russian,24/08/1978,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1144 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15096 +KOSTRUBITSKY,Aleksey,Aleksandrovich,,,,,,,,24/08/1978,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1144 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15096 +KOSTYUKOV,Igor,Olegovich,,,,,Игорь Олегович КОСТЮКОВ,,,21/02/1961,Amur Oblast,,Russia,,,,,Head of the Main Directorate of the General Staff of the Armed Forces of the Russian Federation (GRU/GU). Head of the Russian General Staff's Main Intelligence Department (GRU) of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):CHW0009 and CYB0011 Listed under the Chemical Weapons and Cyber sanctions regimes. (UK Statement of Reasons):Igor Olegovich Kostyukov, given his senior leadership role as First Deputy Head of the GRU (a.k.a. GU) at that time, is responsible for the possession, transport and use in Salisbury during the weekend of 4 March 2018 of the toxic nerve agent “Novichok” by officers from the GRU. Igor Kostyukov is the Head of the Russian General Staff’s Main Intelligence Department (GRU), and was previously First Deputy Head. In this capacity, Igor Kostyukov is responsible for cyber attacks carried out by the 85th Main Centre of Special Services (GTsSS), also referred to as Field Post Number 26165, APT28, Fancy Bear, Sofacy Group, Pawn Storm, Strontium. These attacks include the cyber attack against the German federal parliament (Deutscher Bundestag) in April and May 2015. The cyber attack against the German federal parliament (Deutscher Bundestag) targeted the parliament’s information system and affected its operation for several days. A significant amount of data was stolen and e-mail accounts of several MPs as well as Chancellor Angela Merkel were affected. (Gender):Male",Individual,Primary name,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13748 +KOSTYUKOV,Igor,Olegovich,,,,,Игорь Олегович КОСТЮКОВ,,,21/02/1961,Amur Oblast,,Russia,,,,,Head of the Main Directorate of the General Staff of the Armed Forces of the Russian Federation (GRU/GU). Head of the Russian General Staff's Main Intelligence Department (GRU) of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):CHW0009 and CYB0011 Listed under the Chemical Weapons and Cyber sanctions regimes. (UK Statement of Reasons):Igor Olegovich Kostyukov, given his senior leadership role as First Deputy Head of the GRU (a.k.a. GU) at that time, is responsible for the possession, transport and use in Salisbury during the weekend of 4 March 2018 of the toxic nerve agent “Novichok” by officers from the GRU. Igor Kostyukov is the Head of the Russian General Staff’s Main Intelligence Department (GRU), and was previously First Deputy Head. In this capacity, Igor Kostyukov is responsible for cyber attacks carried out by the 85th Main Centre of Special Services (GTsSS), also referred to as Field Post Number 26165, APT28, Fancy Bear, Sofacy Group, Pawn Storm, Strontium. These attacks include the cyber attack against the German federal parliament (Deutscher Bundestag) in April and May 2015. The cyber attack against the German federal parliament (Deutscher Bundestag) targeted the parliament’s information system and affected its operation for several days. A significant amount of data was stolen and e-mail accounts of several MPs as well as Chancellor Angela Merkel were affected. (Gender):Male",Individual,Primary name,,Cyber,23/10/2020,31/12/2020,31/12/2020,13748 +KOSTYUKOV,Igor,Olegovich,,,,,Игорь Олегович КОСТЮКОВ,,,21/01/1961,Amur Oblast,,Russia,,,,,Head of the Main Directorate of the General Staff of the Armed Forces of the Russian Federation (GRU/GU). Head of the Russian General Staff's Main Intelligence Department (GRU) of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):CHW0009 and CYB0011 Listed under the Chemical Weapons and Cyber sanctions regimes. (UK Statement of Reasons):Igor Olegovich Kostyukov, given his senior leadership role as First Deputy Head of the GRU (a.k.a. GU) at that time, is responsible for the possession, transport and use in Salisbury during the weekend of 4 March 2018 of the toxic nerve agent “Novichok” by officers from the GRU. Igor Kostyukov is the Head of the Russian General Staff’s Main Intelligence Department (GRU), and was previously First Deputy Head. In this capacity, Igor Kostyukov is responsible for cyber attacks carried out by the 85th Main Centre of Special Services (GTsSS), also referred to as Field Post Number 26165, APT28, Fancy Bear, Sofacy Group, Pawn Storm, Strontium. These attacks include the cyber attack against the German federal parliament (Deutscher Bundestag) in April and May 2015. The cyber attack against the German federal parliament (Deutscher Bundestag) targeted the parliament’s information system and affected its operation for several days. A significant amount of data was stolen and e-mail accounts of several MPs as well as Chancellor Angela Merkel were affected. (Gender):Male",Individual,Primary name,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13748 +KOSTYUKOV,Igor,Olegovich,,,,,Игорь Олегович КОСТЮКОВ,,,21/01/1961,Amur Oblast,,Russia,,,,,Head of the Main Directorate of the General Staff of the Armed Forces of the Russian Federation (GRU/GU). Head of the Russian General Staff's Main Intelligence Department (GRU) of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):CHW0009 and CYB0011 Listed under the Chemical Weapons and Cyber sanctions regimes. (UK Statement of Reasons):Igor Olegovich Kostyukov, given his senior leadership role as First Deputy Head of the GRU (a.k.a. GU) at that time, is responsible for the possession, transport and use in Salisbury during the weekend of 4 March 2018 of the toxic nerve agent “Novichok” by officers from the GRU. Igor Kostyukov is the Head of the Russian General Staff’s Main Intelligence Department (GRU), and was previously First Deputy Head. In this capacity, Igor Kostyukov is responsible for cyber attacks carried out by the 85th Main Centre of Special Services (GTsSS), also referred to as Field Post Number 26165, APT28, Fancy Bear, Sofacy Group, Pawn Storm, Strontium. These attacks include the cyber attack against the German federal parliament (Deutscher Bundestag) in April and May 2015. The cyber attack against the German federal parliament (Deutscher Bundestag) targeted the parliament’s information system and affected its operation for several days. A significant amount of data was stolen and e-mail accounts of several MPs as well as Chancellor Angela Merkel were affected. (Gender):Male",Individual,Primary name,,Cyber,23/10/2020,31/12/2020,31/12/2020,13748 +KOTE,Alexanda,,,,,,,,,13/12/1983,London,United Kingdom,United Kingdom,094477324,United Kingdom. Issued on 5 March 2005.,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0130 (UN Ref):QDi.408 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Physical description: eye colour: dark brown; hair colour: black; complexion: dark. Distinguishing marks: beard. Ethnic background: Ghanaian Cypriot. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116608",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13511 +KOTEY,Alexe,,,,,,,,,13/12/1983,London,United Kingdom,United Kingdom,094477324,United Kingdom. Issued on 5 March 2005.,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0130 (UN Ref):QDi.408 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Physical description: eye colour: dark brown; hair colour: black; complexion: dark. Distinguishing marks: beard. Ethnic background: Ghanaian Cypriot. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116608",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13511 +KOTEY,ALEXANDA,AMON,,,,,,,,13/12/1983,London,United Kingdom,United Kingdom,094477324,United Kingdom. Issued on 5 March 2005.,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0130 (UN Ref):QDi.408 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Physical description: eye colour: dark brown; hair colour: black; complexion: dark. Distinguishing marks: beard. Ethnic background: Ghanaian Cypriot. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116608",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13511 +KOTI CORP,,,,,,,,,,,,,,,,,,,,,,,,Panama City,,Panama,"(UK Sanctions List Ref):DPR0172 (UN Ref):KPe.067 Ship manager and commercial manager of the Panama-flagged vessel KOTI, which conducted ship-to-ship transfers of likely petroleum product to the DPRK-flagged KUM UN SAN 3 on 9 December 2017. IMO number: 5982254.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13638 +KOTKIN,Sergey,Nikolaevich,,,,,Сергей Николаевич Коткин,,,11/03/1956,Nenets Autonomous Okrug,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0431 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14376 +KOTS,Alexander,Igorevich,,,,,Александр Игоревич Коц,,,03/09/1978,Sakhalin Oblast,Russia,Russia,,,,,Journalist,,,,,,,,,"(UK Sanctions List Ref):RUS1377 (UK Statement of Reasons):Alexander Igorevich KOTS (hereafter KOTS) is a Russian journalist and special correspondent for Komsomolskaya Pravda (KP). Through his reporting with KP since Russia invaded Ukraine, KOTS has promoted and supported the actions of the Russian army in invading Ukraine, and has actively sought to legitimise the justifications that the Russian government has provided for the invasion. Therefore, KOTS is involved in engaging in, providing support for, and promoting the policies and actions which destabilises Ukraine and undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,04/05/2022,15334 +KOUFA,Amadou,,,,,,,,,00/00/1958,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0364 (UN Ref):QDi.425 Founder of the Katiba Macina of Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159), executive of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Eye colour: brown. Hair colour: dark. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/02/2020,04/02/2020,31/12/2020,13812 +KOUFA,Hamadou,,,,,,,,,00/00/1958,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0364 (UN Ref):QDi.425 Founder of the Katiba Macina of Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159), executive of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Eye colour: brown. Hair colour: dark. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/02/2020,04/02/2020,31/12/2020,13812 +KOUFA,Hamadoun,,,,,,,,,00/00/1958,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0364 (UN Ref):QDi.425 Founder of the Katiba Macina of Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159), executive of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Eye colour: brown. Hair colour: dark. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/02/2020,04/02/2020,31/12/2020,13812 +KOUFFA,Amadou,,,,,,,,,00/00/1958,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0364 (UN Ref):QDi.425 Founder of the Katiba Macina of Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159), executive of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Eye colour: brown. Hair colour: dark. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/02/2020,04/02/2020,31/12/2020,13812 +KOUFFA,Hamadou,,,,,,,,,00/00/1958,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0364 (UN Ref):QDi.425 Founder of the Katiba Macina of Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159), executive of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Eye colour: brown. Hair colour: dark. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/02/2020,04/02/2020,31/12/2020,13812 +KOUFFA,Hamadoun,,,,,,,,,00/00/1958,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0364 (UN Ref):QDi.425 Founder of the Katiba Macina of Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159), executive of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Eye colour: brown. Hair colour: dark. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/02/2020,04/02/2020,31/12/2020,13812 +KOUMKAL,,,,,,,,,,29/01/1971,Roubaix,France,France,,,,,,,,,,,,,France,(UK Sanctions List Ref):AQD0217 (UN Ref):QDi.095 In custody in France as of May 2004. Sentenced to 25 years imprisonment in France in 2007. His sentence is due to end on 13 Jul. 2023 and his unconditional detention to end on 13 Aug. 2020. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4531664,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,11/02/2022,7797 +KOUMTAMADJ,Martin,,,,,,,,,05/10/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Am Dafock,Vakaga prefecture,,,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,Primary name,,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +KOUMTAMADJ,Martin,,,,,,,,,05/10/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,Primary name,,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +KOUMTAMADJ,Martin,,,,,,,,,03/03/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,Primary name,,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +KOUMTAMADJ,Martin,,,,,,,,,03/03/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Am Dafock,Vakaga prefecture,,,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,Primary name,,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +KOUMTAMADJI,Martin,Nadingar,,,,,,,,05/10/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +KOUMTAMADJI,Martin,Nadingar,,,,,,,,05/10/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Am Dafock,Vakaga prefecture,,,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +KOUMTAMADJI,Martin,Nadingar,,,,,,,,03/03/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Am Dafock,Vakaga prefecture,,,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +KOUMTAMADJI,Martin,Nadingar,,,,,,,,03/03/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +KOUSHA,Esmaeil,Zarei,,,,,,,,00/00/1978,"Ghorveh, Kurdistan",Iran,Iran,,,,,Governor of Kurdistan,,,,,,,,,"(UK Sanctions List Ref):IHR0114 (UK Statement of Reasons):Esmaeil KOUSHA is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and right to freedom of expression and peaceful assembly in Iran in his role as Governor of Kurdistan and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15634 +KOVAL,Oleg,Valerievich,,,,,,,,29/09/1974,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1308 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15260 +KOVAL,Oleg,Valeryevich,,,,,КОВАЛЬ Олег Валерьевич,Cyrillic,Russian,29/09/1974,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1308 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15260 +KOVALCHUK,Mikhail,Valentinovich,,,,,,,,,,,,,,,,Member of Sberbank’s Supervisory Board,,,,,,,,,"(UK Sanctions List Ref):RUS1596 (UK Statement of Reasons):Mikhail Valentinovich Kovalchuk is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a director, manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK). (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,28/09/2022,15540 +KOVALCHUK,Yuri,Valentinovich,,,,,,,,25/07/1951,Leningrad (St Petersburg),Russia,Russia,,,,,Major shareholder of Bank Rossiya and the National Media Group,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0007 (UK Statement of Reasons):Mr Kovalchuk is a long-time acquaintance of President Putin and co-founder of the so called Ozero Dacha, a cooperative society bringing together an influential group of individuals around President Putin. This includes close association to other involved persons. As the chairman and largest shareholder of Bank Rossiya, which is a key stakeholder in the National Media Group, Kovalchuk has actively supported actions which are undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. This includes National Media Group support of Russian policy which is destabilising Ukraine; the formation of bank branches and provision of insurance and investment throughout Crimea and Sevastopol; and support to military activities and the formation of major transport links. Through these actions Kovalchuk is providing financial services and economic resources which are contributing to the destabilisation of Ukraine and undermining the territorial integrity of Ukraine, thereby consolidating the integration of Crimea into the Russian Federation. (Gender):Male",Individual,Primary name variation,,Russia,31/07/2014,31/12/2020,16/09/2022,13075 +KOVALCHUK,Yuriy,Valentinovich,,,,,Юрий Валентинович Ковальчук,,,25/07/1951,Leningrad (St Petersburg),Russia,Russia,,,,,Major shareholder of Bank Rossiya and the National Media Group,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0007 (UK Statement of Reasons):Mr Kovalchuk is a long-time acquaintance of President Putin and co-founder of the so called Ozero Dacha, a cooperative society bringing together an influential group of individuals around President Putin. This includes close association to other involved persons. As the chairman and largest shareholder of Bank Rossiya, which is a key stakeholder in the National Media Group, Kovalchuk has actively supported actions which are undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. This includes National Media Group support of Russian policy which is destabilising Ukraine; the formation of bank branches and provision of insurance and investment throughout Crimea and Sevastopol; and support to military activities and the formation of major transport links. Through these actions Kovalchuk is providing financial services and economic resources which are contributing to the destabilisation of Ukraine and undermining the territorial integrity of Ukraine, thereby consolidating the integration of Crimea into the Russian Federation. (Gender):Male",Individual,Primary name,,Russia,31/07/2014,31/12/2020,16/09/2022,13075 +KOVALCHUK,Yury,Valentinovich,,,,,,,,25/07/1951,Leningrad (St Petersburg),Russia,Russia,,,,,Major shareholder of Bank Rossiya and the National Media Group,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0007 (UK Statement of Reasons):Mr Kovalchuk is a long-time acquaintance of President Putin and co-founder of the so called Ozero Dacha, a cooperative society bringing together an influential group of individuals around President Putin. This includes close association to other involved persons. As the chairman and largest shareholder of Bank Rossiya, which is a key stakeholder in the National Media Group, Kovalchuk has actively supported actions which are undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. This includes National Media Group support of Russian policy which is destabilising Ukraine; the formation of bank branches and provision of insurance and investment throughout Crimea and Sevastopol; and support to military activities and the formation of major transport links. Through these actions Kovalchuk is providing financial services and economic resources which are contributing to the destabilisation of Ukraine and undermining the territorial integrity of Ukraine, thereby consolidating the integration of Crimea into the Russian Federation. (Gender):Male",Individual,Primary name variation,,Russia,31/07/2014,31/12/2020,16/09/2022,13075 +KOVALCHUK,Boris,Yurievich,,,,,Бори́с Ю́рьевич Ковальчу́к,Cyrillic,Russian,01/12/1977,Leningrad,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0851 (UK Statement of Reasons):There are reasonable grounds to suspect that Boris KOVALCHUK is associated with Yuri KOVALCHUK. Boris KOVALCHUK is the son of Yuri KOVALCHUK (RUS0007). Yuri KOVALCHUK has been designated by the UK since 31 December 2020 (updated 18/12/2021) and is a long-time acquaintance of President Putin. He is a co-founder of the so-called Ozero Dacha, a cooperative society bringing together an influential group of individuals around President Putin. He is the chairman and largest shareholder of Bank Rossiya, of which he owned around 38% in 2013, and which is considered the personal bank of Senior Officials of the Russian Federation. Since the illegal annexation of Crimea, Bank Rossiya has opened branches across Crimea and Sevastopol, thereby consolidating their integration into the Russian Federation. Furthermore, Bank Rossiya has important stakes in the National Media Group which in turn controls television stations which actively support the Russian government’s policies of destabilisation of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14802 +KOVALCHUK,Gennady,Evgenievich,,,,,КОВАЛЬЧУК Геннадий Евгеньевич,Cyrillic,Russian,16/09/1969,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1252 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15204 +KOVALCHUK,Gennady,Yevgenyevich,,,,,,,,16/09/1969,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1252 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15204 +KOVALCHUK,Kira,Valentinovna,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):RUS0852 (UK Statement of Reasons):There are reasonable grounds to suspect that Kira KOVALCHUK is closely associated with KIRILL KOVALCHUCK (RUS0853) as his wife. KIRILL KOVALCHUK is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019.,Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14803 +KOVALCHUK,Kirill,Mikhailovich,,,,,Кирилл Михайлович КОВАЛЬЧУК,Cyrillic,Russian,22/12/1968,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0853 (UK Statement of Reasons):KIRILL KOVALCHUK, was Chairman of the Board of Directors and then President of National Media Group (NMG), a Government of Russia-affiliated entity. There are reasonable grounds to suspect that he is an involved person pursuant to regulation 6(4)(d)(i) of the Russian Regulations 2019 in that he is or has been involved in obtaining a benefit from or supporting the Government of Russia as the Federal Agency for State Property management, a Government of Russia-affiliated entity, is listed as part owner of National Media Group (NMG).",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14804 +KOVALCHUK,Sergey,Alexandrovich,,,,,КОВАЛЬЧУК Сергей Александрович,Cyrillic,Russian,27/01/1966,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1253 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15205 +KOVALCHUK,Stepan,Kirillovich,,,,,Степан Кириллович КОВАЛЬЧУК,Cyrillic,Russian,03/05/1994,,,Russia,644557612,,,,,,,,,,,,,(UK Sanctions List Ref):RUS0854 (UK Statement of Reasons):There are reasonable grounds to suspect that Stepan KOVALCHUK is closely associated with KIRILL KOVALCHUCK (RUS0853) as his son. KIRILL KOVALCHUK is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019.,Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14805 +KOVALCHUK,Tatyana,Aleksandrovna,,,,,Татьяна Александровна КОВАЛЬЧУК,Cyrillic,Russian,,,,,51N0128733,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0855 (UK Statement of Reasons):Tatyana KOVALCHUK is the wife of Yuri KOVALCHUK (RUS0007). Yuri KOVALCHUK is an “involved person” under the Russia (Sanctions) (EU Exit) Regulations 2019. As his wife, she is “associated with” Yuri KOVALCHUK as there are reasonable grounds to suspect that she has obtained a financial and other material benefit from her husband. Accordingly, there are reasonable grounds to suspect that she is herself an “involved person” under the Russia (Sanctions) (EU Exit) Regulations 2019",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14806 +KOVALENKO,Aleksandra,Sergeevna,,,,,КОВАЛЕНКО Александра Сергеевна,Cyrillic,Russian,06/09/1988,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1278 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15230 +KOVALENKO,Alexandra,Sergeevna,,,,,,,,06/09/1988,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1278 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15230 +KOVALEVA,Polina,,,,,,,,,04/06/1995,,,Russia,,,,,,22 Hollandgreen Place,,,,,London,,United Kingdom,(UK Sanctions List Ref):RUS1101 (UK Statement of Reasons):Polina KOVALEVA is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 as she is associated with Russian Foreign Minister Sergei Viktorovich LAVROV and Russian businessman Oleg Vladimirovich DERIPASKA. Sergei Viktorovich LAVROV and Oleg Vladimirovich DERIPASKA are “involved” persons under the Russia (Sanctions) (EU Exit) Regulation 2019. (Gender):Female,Individual,Primary name,,Russia,24/03/2022,24/03/2022,04/07/2022,15030 +KOVITIDI,Olga,Fedorovna,,,,,,,,07/05/1962,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukrainian SSR (now Ukraine),Ukraine,,,,,"(1) Member, formerly the Russian Federation Council from the annexed Autonomous Republic of Crimea (2) Member of the Federation Council Committee on Constitutional Legislation and Stage Building",,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0008 (UK Statement of Reasons):Member of the former Russian Federation Council from the annexed Autonomous Republic of Crimea. Now a member of the Federation Council Committee on Constitutional Legislation and Stage Building. (Gender):Female,Individual,Primary name,,Russia,29/04/2014,31/12/2020,16/09/2022,12954 +KOVPAK,Lev,Igorevich,,,,,Ковпак Лев Игоревич,,,23/10/1978,Pervouralsk,Russia,Russia,1417961. 2107168. 728269902,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0591 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14536 +KOVTUN,Dmitry,Vadimovich,,,,,Дмитрий Вадимович Ковтун,,,25/09/1965,Moscow,Russia,Russia,,,,,General Director of Global Project LLC,Apartment no. 150,Golubinskay Street,,,,Moscow,117463,Russia,"(UK Sanctions List Ref):GHR0083 Subject to an Anti-Terrorism, Crime and Security Act 2001 (ATCSA) freezing order from 2016 – 2022. (UK Statement of Reasons):Dmitry Kovtun is a former member of the Russian military. He was one of the two individuals found to be responsible by the Litvinenko Inquiry for the killing of Alexander Litvinenko through deliberate poisoning with polonium 210 in November 2006. This action constitutes a serious violation of the right to life. It is probable that this action was carried out under the direction of the Federal Security Service of the Russian Federation (FSB). (Gender):Male",Individual,Primary name,,Global Human Rights,13/01/2022,13/01/2022,17/01/2022,13311 +KOVTUN,Dmitry,Vadimovich,,,,,Дмитрий Вадимович Ковтун,,,25/09/1969,Moscow,Russia,Russia,,,,,General Director of Global Project LLC,Apartment no. 150,Golubinskay Street,,,,Moscow,117463,Russia,"(UK Sanctions List Ref):GHR0083 Subject to an Anti-Terrorism, Crime and Security Act 2001 (ATCSA) freezing order from 2016 – 2022. (UK Statement of Reasons):Dmitry Kovtun is a former member of the Russian military. He was one of the two individuals found to be responsible by the Litvinenko Inquiry for the killing of Alexander Litvinenko through deliberate poisoning with polonium 210 in November 2006. This action constitutes a serious violation of the right to life. It is probable that this action was carried out under the direction of the Federal Security Service of the Russian Federation (FSB). (Gender):Male",Individual,Primary name,,Global Human Rights,13/01/2022,13/01/2022,17/01/2022,13311 +KOVTYRIN,Alexander,Vladimirovich,,,,,КОВТЫРИН Александр Владимирович,Cyrillic,Russian,10/10/1977,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1254 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15206 +KOZAK,Dmitry,Nikolayevich,,,,,,,,07/11/1958,"Bandurovo, Kirovograd",,Russia,,,,,(1) Former Deputy Prime Minister (2) Deputy Chief of Staff to the Presidential Executive Office and de facto chief Russian negotiator on Ukraine,,,,,,,,,(UK Sanctions List Ref):RUS0009 (UK Statement of Reasons):Former Deputy Prime Minister. Responsible for overseeing the integration of the annexed Autonomous Republic of Crimea into the Russian Federation. Deputy Chief of Staff of the Presidential Executive Office of the Russian Federation. (Gender):Male,Individual,Primary name,,Russia,29/04/2014,31/12/2020,16/09/2022,12950 +KOZENKO,Andrei,Dmitrievich,,,,,,,,03/08/1981,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukrainian SSR (now Ukraine),Ukraine,,,,,Current or Former Member of the State of Duma,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0010 (UK Statement of Reasons):Current or Former Member of the State Duma, elected from the illegally annexed Autonomous Republic of Crimea. Former member of the Duma Committee on Financial Markets and coordinator of the Interparliamentary Group on interaction with Parliament of the People's Republic of Bangladesh. In March 2014 Kozenko was appointed as Deputy Chairperson of the State Council of the socalled “Republic of Crimea”. For his involvement in the annexation process he has been awarded with a medal “For the defence of Republic of Crimea” by the local “authorities”. (Gender):Male",Individual,Primary name,,Russia,09/11/2016,31/12/2020,16/09/2022,13393 +KOZHANOVA,Irina,Andreyevna,,,,,Ирина Андреевна КОЖАНОВА,,,07/06/1987,Smolensk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0992 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14943 +KOZHIN,Vladimir,Igorevich,,,,,Владимир Игоревич КОЖИН,,,28/02/1959,"Troitsk, Chelyabinsk Region",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0936 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14887 +KOZITSYN,Nikolai,Ivanovich,,,,,,,,06/10/1956,"Djerzjinsk, Donetsk",,Ukraine,,,,,Commander of Cossack Forces,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0011 (UK Statement of Reasons):Commander of Cossack forces. Responsible for commanding separatists in Eastern Ukraine fighting against the Ukrainian government forces. Remains active in supporting separatist actions or policies. (Gender):Male,Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,31/12/2020,13018 +KOZITSYN,Nikolai,Ivanovich,,,,,,,,20/06/1956,"Djerzjinsk, Donetsk",,Ukraine,,,,,Commander of Cossack Forces,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0011 (UK Statement of Reasons):Commander of Cossack forces. Responsible for commanding separatists in Eastern Ukraine fighting against the Ukrainian government forces. Remains active in supporting separatist actions or policies. (Gender):Male,Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,31/12/2020,13018 +KOZITSYN,Nikolay,Ivanovich,,,,,"КОЗИЦЫН, НИКОЛАЙ ИВАНОВИЧ.",,,06/10/1956,"Djerzjinsk, Donetsk",,Ukraine,,,,,Commander of Cossack Forces,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0011 (UK Statement of Reasons):Commander of Cossack forces. Responsible for commanding separatists in Eastern Ukraine fighting against the Ukrainian government forces. Remains active in supporting separatist actions or policies. (Gender):Male,Individual,Primary name,,Russia,12/07/2014,31/12/2020,31/12/2020,13018 +KOZITSYN,Nikolay,Ivanovich,,,,,"КОЗИЦЫН, НИКОЛАЙ ИВАНОВИЧ.",,,20/06/1956,"Djerzjinsk, Donetsk",,Ukraine,,,,,Commander of Cossack Forces,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0011 (UK Statement of Reasons):Commander of Cossack forces. Responsible for commanding separatists in Eastern Ukraine fighting against the Ukrainian government forces. Remains active in supporting separatist actions or policies. (Gender):Male,Individual,Primary name,,Russia,12/07/2014,31/12/2020,31/12/2020,13018 +KOZLOV,Ivanovich,Sergey,,,,,"КОЗЛОВ, Иванович Сергей",Cyrillic,Russian,07/11/1963,,,Ukraine,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1154 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15106 +KOZLOVSKY,Alexander,Nikolaevich,,,,,Козловский Александр Николаевич,,,05/05/1973,Velikiye Luki,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0432 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14377 +KOZURA,Oleg,Grigorievich,,,,,,,,30/12/1965,"(1) Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol. (2) Zaporozhye",(1) Ukraine (2) Ukraine,Ukraine,,,,,Was the acting Head of the Federal Migration Service office for Sevastopol when and after it was transferred from the Ukrainian government to the Russian government following the Crimean annexation.,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0013 (UK Statement of Reasons):Former Head of the Federal Migration Service office for Sevastopol. Responsible for the systematic and expedited issuance of Russian passports for the residents of Sevastopol. Since October 2016, Chief of Staff of the Legislative Assembly of Sevastopol. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12969 +KOZURA,Oleg,Grigorievich,,,,,,,,19/12/1962,"(1) Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol. (2) Zaporozhye",(1) Ukraine (2) Ukraine,Ukraine,,,,,Was the acting Head of the Federal Migration Service office for Sevastopol when and after it was transferred from the Ukrainian government to the Russian government following the Crimean annexation.,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0013 (UK Statement of Reasons):Former Head of the Federal Migration Service office for Sevastopol. Responsible for the systematic and expedited issuance of Russian passports for the residents of Sevastopol. Since October 2016, Chief of Staff of the Legislative Assembly of Sevastopol. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12969 +KOZYAKOV,Sergey,Yurievich,,,,,,,,29/09/1982,,,Ukraine,,,,,Former So-called “Minister of Justice” of the “Luhansk People’s Republic”,,,,,,,,,"(UK Sanctions List Ref):RUS0012 (UK Statement of Reasons):In his former capacity as so-called “Head of the Luhansk Central Election Commission” he was responsible for organising the so-called “elections of 2 November 2014 in the “Luhansk People’s Republic”. The “elections” were in breach of Ukrainian law and therefore illegal. Between October 2015 and December 2017 he was appointed as so-called “Minister of Justice” of the “Luhansk People’s Republic”. In taking on and acting in these capacities, and in organising the illegal “elections”, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and further destabilised Ukraine. Continues to support and legitimise separatist policies in co-operation with separatist authorities. (Gender):Male",Individual,Primary name,,Russia,02/12/2014,31/12/2020,16/09/2022,13170 +KOZYTSIN,Nikolai,Ivanovich,,,,,,,,06/10/1956,"Djerzjinsk, Donetsk",,Ukraine,,,,,Commander of Cossack Forces,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0011 (UK Statement of Reasons):Commander of Cossack forces. Responsible for commanding separatists in Eastern Ukraine fighting against the Ukrainian government forces. Remains active in supporting separatist actions or policies. (Gender):Male,Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,31/12/2020,13018 +KOZYTSIN,Nikolai,Ivanovich,,,,,,,,20/06/1956,"Djerzjinsk, Donetsk",,Ukraine,,,,,Commander of Cossack Forces,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0011 (UK Statement of Reasons):Commander of Cossack forces. Responsible for commanding separatists in Eastern Ukraine fighting against the Ukrainian government forces. Remains active in supporting separatist actions or policies. (Gender):Male,Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,31/12/2020,13018 +KOZYTSIN,Nikolay,Ivanovich,,,,,,,,06/10/1956,"Djerzjinsk, Donetsk",,Ukraine,,,,,Commander of Cossack Forces,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0011 (UK Statement of Reasons):Commander of Cossack forces. Responsible for commanding separatists in Eastern Ukraine fighting against the Ukrainian government forces. Remains active in supporting separatist actions or policies. (Gender):Male,Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,31/12/2020,13018 +KOZYTSIN,Nikolay,Ivanovich,,,,,,,,20/06/1956,"Djerzjinsk, Donetsk",,Ukraine,,,,,Commander of Cossack Forces,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0011 (UK Statement of Reasons):Commander of Cossack forces. Responsible for commanding separatists in Eastern Ukraine fighting against the Ukrainian government forces. Remains active in supporting separatist actions or policies. (Gender):Male,Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,31/12/2020,13018 +KOZYURA,Oleg,Grigorievich,,,,,"КОЗЮРА, ОЛЕГ ГРИГОРЬЕВИЧ.",,,30/12/1965,"(1) Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol. (2) Zaporozhye",(1) Ukraine (2) Ukraine,Ukraine,,,,,Was the acting Head of the Federal Migration Service office for Sevastopol when and after it was transferred from the Ukrainian government to the Russian government following the Crimean annexation.,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0013 (UK Statement of Reasons):Former Head of the Federal Migration Service office for Sevastopol. Responsible for the systematic and expedited issuance of Russian passports for the residents of Sevastopol. Since October 2016, Chief of Staff of the Legislative Assembly of Sevastopol. (Gender):Male",Individual,Primary name,,Russia,12/05/2014,31/12/2020,16/09/2022,12969 +KOZYURA,Oleg,Grigorievich,,,,,"КОЗЮРА, ОЛЕГ ГРИГОРЬЕВИЧ.",,,19/12/1962,"(1) Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol. (2) Zaporozhye",(1) Ukraine (2) Ukraine,Ukraine,,,,,Was the acting Head of the Federal Migration Service office for Sevastopol when and after it was transferred from the Ukrainian government to the Russian government following the Crimean annexation.,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0013 (UK Statement of Reasons):Former Head of the Federal Migration Service office for Sevastopol. Responsible for the systematic and expedited issuance of Russian passports for the residents of Sevastopol. Since October 2016, Chief of Staff of the Legislative Assembly of Sevastopol. (Gender):Male",Individual,Primary name,,Russia,12/05/2014,31/12/2020,16/09/2022,12969 +KOZYURA,Oleh,Hryhorovych,,,,,,,,30/12/1965,"(1) Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol. (2) Zaporozhye",(1) Ukraine (2) Ukraine,Ukraine,,,,,Was the acting Head of the Federal Migration Service office for Sevastopol when and after it was transferred from the Ukrainian government to the Russian government following the Crimean annexation.,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0013 (UK Statement of Reasons):Former Head of the Federal Migration Service office for Sevastopol. Responsible for the systematic and expedited issuance of Russian passports for the residents of Sevastopol. Since October 2016, Chief of Staff of the Legislative Assembly of Sevastopol. (Gender):Male",Individual,AKA,,Russia,12/05/2014,31/12/2020,16/09/2022,12969 +KOZYURA,Oleh,Hryhorovych,,,,,,,,19/12/1962,"(1) Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol. (2) Zaporozhye",(1) Ukraine (2) Ukraine,Ukraine,,,,,Was the acting Head of the Federal Migration Service office for Sevastopol when and after it was transferred from the Ukrainian government to the Russian government following the Crimean annexation.,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0013 (UK Statement of Reasons):Former Head of the Federal Migration Service office for Sevastopol. Responsible for the systematic and expedited issuance of Russian passports for the residents of Sevastopol. Since October 2016, Chief of Staff of the Legislative Assembly of Sevastopol. (Gender):Male",Individual,AKA,,Russia,12/05/2014,31/12/2020,16/09/2022,12969 +KPA UNIT 586,,,,,,,,,,,,,,,,,,,,,,,Hyongjesan-Guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0188 (UN Ref):KPe.031 The Reconnaissance General Bureau is the DPRK's premiere intelligence organization, created in early 2009 by the merger of existing intelligence organizations from the Korean Workers' Party, the Operations Department and Office 35, and the Reconnaissance Bureau of the Korean People's Army. The Reconnaissance General Bureau trades in conventional arms and controls the DPRK conventional arms firm Green Pine Associated Corporation. (Subsidiaries):Green Pine Associated Corporation",Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,31/12/2020,12448 +KPA UNIT 586,,,,,,,,,,,,,,,,,,,,,,,Nungrado,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0188 (UN Ref):KPe.031 The Reconnaissance General Bureau is the DPRK's premiere intelligence organization, created in early 2009 by the merger of existing intelligence organizations from the Korean Workers' Party, the Operations Department and Office 35, and the Reconnaissance Bureau of the Korean People's Army. The Reconnaissance General Bureau trades in conventional arms and controls the DPRK conventional arms firm Green Pine Associated Corporation. (Subsidiaries):Green Pine Associated Corporation",Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,31/12/2020,12448 +KRAMARENKO,Artem,Aleksandrovich,,,,,,,,13/01/1980,Pavlov Khutor,Russia,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1135 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15087 +KRAMARENKO,Artem,Alexandrovich,,,,,КРАМАРЕНКО Артем Александрович,Cyrillic,Russian,13/01/1980,Pavlov Khutor,Russia,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1135 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15087 +KRANARK LLC,,,,,,,Кранарк ООО,Cyrillic,Russian,,,,,,,,,,14 Professor Kachalova st.,,,,,St. Petersburg,192019,Russia,"(UK Sanctions List Ref):RUS1438 OGRN: 1137847171846; KPP: 781101001 (UK Statement of Reasons):KRANARK LLC rents and sells machinery for construction and other works. In particular, it has provided equipment for the construction of the Zvezda shipbuilding complex, a strategically important project for the Government of Russia. KRANARK LLC therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the construction sector. (Phone number):7 (812) 365 5050 (Website):www.kranark.ru (Email address):info@kranarark.ru (Type of entity):Limited Liability Company (Business Reg No):Tax Identification Number: INN: 7811550230",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15366 +KRANS,Maksim,Iosifovich,,,,,КРАНС Максим Иосифович,Cyrillic,Russian,08/03/1950,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0795 (UK Statement of Reasons):Maksim Iosifovich KRANS (hereafter KRANS) is an editor and contributor at InfoRos, an organisation linked to the Government of Russia which spreads disinformation. Through InfoRos, KRANS has provided support for and promoted actions and policies which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14746 +KRASHENINNIKOV,Pavel,Vladimirovich,,,,,Павел Владимирович Крашенинников,,,21/06/1964,Polevskoy,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0433 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14378 +KRASNOSHTANOV,Anton,Alekseevich,,,,,Антон Алексеевич Красноштанов,,,10/06/1986,Irkutsk city,Russia,Russia,637008563,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0558 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14503 +KRASNOV,Igor,Viktorovich,,,,,КРАСНОВ Игорь Викторович,Cyrillic,Russian,24/12/1975,Arkhangelsk,Russia,Russia,,,,,Prosecutor General and Member of the Russian Security Council,6-3 Michurinsky Prospekt,,,,,,,,"(UK Sanctions List Ref):RUS0842 (UK Statement of Reasons):Igor Viktorovich KRASNOV is a member of the Russian Security Council (RSC) and Russia’s Prosecutor General. The RSC has been involved actively in decision-making about Russian policy towards Ukraine. On 21 February 2022, the RSC supported a proposal to recognise Donetsk and Luhansk as independent republics. As a member of the RSC, KRASNOV is, or has been, responsible for, engaged in, provided support for or promoted policies or actions which destabilised Ukraine and undermined or threatened the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14793 +KRASOV,Andrey,Leonidovich,,,,,Андрей Леонидович Красов,,,27/01/1967,"Zemlyanka, Novosergievsky district",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0434 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14379 +KRASOVSKIY,Maksim,Borisovich,,,,,КРАСОВСКИЙ Максим Борисович,Cyrillic,Russian,28/01/1970,,,Russia,4514985443,Russian passport,,,Editor at InfoRos,,,,,,,,,"(UK Sanctions List Ref):RUS0796 (UK Statement of Reasons):Maksim Borisovich KRASOVSKIY (hereafter KRASOVSKIY) is an editor at InfoRos, an organisation linked to the Government of Russia which spreads disinformation. In his role as an editor at InfoRos, KRASOVSKIY has  provided support for and promoted actions and policies which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14747 +KRASOVSKY,Anton,Vyacheslavovich,,,,,КРАСОВСКИЙ Антон Вячеславович,Cyrillic,Russian,18/07/1975,Podolsk,Russia,Russia,,,,,"(1) Activist (2) Journalist (3) Political scientist (4) Host of a talk show named ""The Antonyms"" on RT (5) Director of broadcasting at RT",,,,,,,,,"(UK Sanctions List Ref):RUS0764 (UK Statement of Reasons):As a prominent TV presenter in Russia, Anton Krasovsky has provided support for and promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14715 +KRATOV,Dimitri,Borisovich,,,,,,,,19/07/1964,,,Russia,,,,,Chief medical officer/deputy head - Butyrka Prison,,,,,,,,,"(UK Sanctions List Ref):GHR0001 (UK Statement of Reasons):Dmitry Borisovich Kratov, who was the chief medical officer and deputy head of Butyrka Prison where Magnitsky was detained until shortly before his death on 16 November 2009, was responsible for the mistreatment of Sergei Magnitsky, including by failing to ensure the proper administration of medical care, which contributed significantly to his death. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13852 +KRATOV,Dmitry,Borisovich,,,,,,,,19/07/1964,,,Russia,,,,,Chief medical officer/deputy head - Butyrka Prison,,,,,,,,,"(UK Sanctions List Ref):GHR0001 (UK Statement of Reasons):Dmitry Borisovich Kratov, who was the chief medical officer and deputy head of Butyrka Prison where Magnitsky was detained until shortly before his death on 16 November 2009, was responsible for the mistreatment of Sergei Magnitsky, including by failing to ensure the proper administration of medical care, which contributed significantly to his death. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13852 +KRAVCHENKO,Elena,Valerievna,,,,,Елена Кравченко,,,22/02/1983,,,Ukraine,,,,,"(1) Chairperson of the so-called Luhansk Sverdlovsk (2) Ekaterinburg, Sverdlovsk People’s Republic Central Election Commission Oblast, RSFSR",,,,,,,,,"(UK Sanctions List Ref):RUS0014 (UK Statement of Reasons):Chairperson' of the 'Central Electoral Commission' of the so-called 'Luhansk People's Republic.' In this capacity, she participated in the organisation of the so-called 'elections' of 11 November 2018 in the so-called 'Luhansk People's Republic"", and thereby actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Female",Individual,Primary name,,Russia,10/12/2018,31/12/2020,16/09/2022,13722 +KRAVCHENKO,Elena,Valeryevna,,,,,,,,22/02/1983,,,Ukraine,,,,,"(1) Chairperson of the so-called Luhansk Sverdlovsk (2) Ekaterinburg, Sverdlovsk People’s Republic Central Election Commission Oblast, RSFSR",,,,,,,,,"(UK Sanctions List Ref):RUS0014 (UK Statement of Reasons):Chairperson' of the 'Central Electoral Commission' of the so-called 'Luhansk People's Republic.' In this capacity, she participated in the organisation of the so-called 'elections' of 11 November 2018 in the so-called 'Luhansk People's Republic"", and thereby actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,10/12/2018,31/12/2020,16/09/2022,13722 +KRAVCHENKO,Olena,Valeriyivna,,,,,,,,22/02/1983,,,Ukraine,,,,,"(1) Chairperson of the so-called Luhansk Sverdlovsk (2) Ekaterinburg, Sverdlovsk People’s Republic Central Election Commission Oblast, RSFSR",,,,,,,,,"(UK Sanctions List Ref):RUS0014 (UK Statement of Reasons):Chairperson' of the 'Central Electoral Commission' of the so-called 'Luhansk People's Republic.' In this capacity, she participated in the organisation of the so-called 'elections' of 11 November 2018 in the so-called 'Luhansk People's Republic"", and thereby actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,10/12/2018,31/12/2020,16/09/2022,13722 +KRAVCHENKO,Vladimir,Kasimirovich,,,,,Владимир Казимирович КРАВЧЕНКО,,,12/06/1964,Malinovka,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0995 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14946 +KRAVCHENKO,Denis,Borisovich,,,,,Денис Борисович Кравченко,,,17/04/1976,Volgograd,Russia,Russia,620115920. 530944739,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0592 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14537 +KRAVETS,Vitaly,Vladimirovich,,,,,КРАВЕЦ Виталий Владимирович,Cyrillic,Russian,07/04/1975,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1174 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15126 +KRAVTSOVA,Olga,Alexandrovna,,,,,"КРАВЦОВА, Ольга Александровна",Cyrillic,Russian,19/02/1972,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1255 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15207 +KRECHETOV,Andrei,Alexandrovich,,,,,,,,22/09/1981,,,Russia,,,,,Investigator for the Ministry of Internal Affairs in Russia,,,,,,,,,"(UK Sanctions List Ref):GHR0018 (UK Statement of Reasons):Andrei Aleksandrovich Krechetov was an officer in the Tax Crimes Department in the Moscow directorate of the Interior Ministry and was involved in the mistreatment of Sergei Magnitsky whilst in detention, which contributed significantly to his death. Krechetov was part of the ‘team’ of investigators, led by Artem Kuznetsov, the Deputy Head of the Tax Crimes Department, who were allegedly involved in the initial fraud exposed by Sergei Magnitsky and who falsified evidence to justify his arrest and detention. As part of this investigation team, Andrei Krechetov facilitated the mistreatment of Sergei Magnitsky in custody which was designed to force Magnitsky to retract his earlier testimony. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13877 +KREKAR,Mullah,,,,,,,,,07/07/1956,"Olaqloo Sharbajer, Al-Sulaymaniyah Governorate",Iraq,Iraq,,,0075258,Ration card number,,Heimdalsgate 36-V,,,,,Oslo,,Norway,(UK Sanctions List Ref):AQD0270 (UN Ref):QDi.226 Mother’s name: Masouma Abd al-Rahman. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1453897,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/12/2006,07/12/2006,31/12/2020,8970 +KREKAR,Mullah,,,,,,,,,17/06/1963,"Olaqloo Sharbajer, Al-Sulaymaniyah Governorate",Iraq,Iraq,,,0075258,Ration card number,,Heimdalsgate 36-V,,,,,Oslo,,Norway,(UK Sanctions List Ref):AQD0270 (UN Ref):QDi.226 Mother’s name: Masouma Abd al-Rahman. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1453897,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/12/2006,07/12/2006,31/12/2020,8970 +KREMLEVA,Irina,Vladimirovna,,,,,Ирина Владимировна КРЕМЛЕВА,Cyrillic,Russian,25/04/1968,,,Russia,,,,,Member of OTKRITIE Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1637 (UK Statement of Reasons):Irina Vladimirovna Kremleva is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by (1) working as a director, manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Bank Otkritie Financial Corporation PJSC which carries on business in the Russian financial services sector; (2) working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely Bank Otkritie Financial Corporation PJSC. (Gender):Female",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15581 +KRESS,Viktor,Melkhiorovich,,,,,Виктор Мельхиорович Кресс,,,16/11/1948,"Vlasovo-Dvorino, Kostroma region",Russia,Russia,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,,103426,Russia,"(UK Sanctions List Ref):RUS1367 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,04/05/2022,04/05/2022,04/05/2022,15344 +KRIERENKO,Alexander,Valerievich,,,,,,,,14/10/1993,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1279 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15231 +KRIVETS,Aleksandr,,,,,Colonel,"КРИВЕЦ, Александр",Cyrillic,,,,,Belarus,,,,,Commander Lida Airbase,,,,,,,,,"(UK Sanctions List Ref):RUS0712 (UK Statement of Reasons):Colonel Alexander Krivets BAF has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being in command of Lida Airbase, which has hosted Russian Military Aircraft used for attacks on Ukrainian targets during the current invasion. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14663 +KRIVONOSOV,Sergey,Vladimirovich,,,,,Сергей Владимирович Кривоносов,,,29/05/1971,Rostov-on-Don,Russia,Russia,727710685,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0559 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14504 +KRIVORUCHKO,Aleksei,Yurievich,,,,,,,,17/07/1975,Stavropol,Russia,Russia,,,,,Deputy Minister of Defence of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):CHW0016 (UK Statement of Reasons):Aleksei Krivoruchko is the Deputy Minister in the Ministry of Defence of the Russian Federation. In this capacity, he has overall responsibility for armaments. This includes the overisight of the Ministry’s stocks of weapons and military equipment. This includes the oversight of the Ministry’s stocks of weapons and military equipment. The Russian Ministry of Defence took on the responsibility for the chemical weapons stocks inherited from the Soviet Union and their safe storage until their destruction could be completed. The Russian Ministry of Defence has overall responsibility for the safe storage and destruction of chemical weapons. Russian opposition leader Alexey Navalny was the victim of an attempted assassination during his August 2020 visit to Siberia, in which a chemical weapon—a toxic nerve agent of the Novichok group—was used. Given the use of such chemical weapons in the territory of the Russian Federation and the evidence of the continued involvement of the Russian MoD in the Novichok programme, this could only be on account of intent by the Ministry of Defence and its political leadership. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny was a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. Given Aleksei Krivoruchko’s senior role in the Russian military, the evidence suggests that he is responsible for the preparation and use of chemical weapons in the attempted assassination of Alexey Navalny. (Gender):Male",Individual,Primary name,,Chemical Weapons,15/10/2020,05/01/2021,18/03/2022,13974 +KRIVORUCHKO,Alexei,Yurievich,,,,,,,,17/07/1975,Stavropol,Russia,Russia,,,,,Deputy Minister of Defence of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):CHW0016 (UK Statement of Reasons):Aleksei Krivoruchko is the Deputy Minister in the Ministry of Defence of the Russian Federation. In this capacity, he has overall responsibility for armaments. This includes the overisight of the Ministry’s stocks of weapons and military equipment. This includes the oversight of the Ministry’s stocks of weapons and military equipment. The Russian Ministry of Defence took on the responsibility for the chemical weapons stocks inherited from the Soviet Union and their safe storage until their destruction could be completed. The Russian Ministry of Defence has overall responsibility for the safe storage and destruction of chemical weapons. Russian opposition leader Alexey Navalny was the victim of an attempted assassination during his August 2020 visit to Siberia, in which a chemical weapon—a toxic nerve agent of the Novichok group—was used. Given the use of such chemical weapons in the territory of the Russian Federation and the evidence of the continued involvement of the Russian MoD in the Novichok programme, this could only be on account of intent by the Ministry of Defence and its political leadership. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny was a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. Given Aleksei Krivoruchko’s senior role in the Russian military, the evidence suggests that he is responsible for the preparation and use of chemical weapons in the attempted assassination of Alexey Navalny. (Gender):Male",Individual,Primary name variation,,Chemical Weapons,15/10/2020,05/01/2021,18/03/2022,13974 +KRIVORUCHKO,Alexey,Yurievich,,,,,,,,17/07/1975,Stavropol,Russia,Russia,,,,,Deputy Minister of Defence of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):CHW0016 (UK Statement of Reasons):Aleksei Krivoruchko is the Deputy Minister in the Ministry of Defence of the Russian Federation. In this capacity, he has overall responsibility for armaments. This includes the overisight of the Ministry’s stocks of weapons and military equipment. This includes the oversight of the Ministry’s stocks of weapons and military equipment. The Russian Ministry of Defence took on the responsibility for the chemical weapons stocks inherited from the Soviet Union and their safe storage until their destruction could be completed. The Russian Ministry of Defence has overall responsibility for the safe storage and destruction of chemical weapons. Russian opposition leader Alexey Navalny was the victim of an attempted assassination during his August 2020 visit to Siberia, in which a chemical weapon—a toxic nerve agent of the Novichok group—was used. Given the use of such chemical weapons in the territory of the Russian Federation and the evidence of the continued involvement of the Russian MoD in the Novichok programme, this could only be on account of intent by the Ministry of Defence and its political leadership. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny was a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. Given Aleksei Krivoruchko’s senior role in the Russian military, the evidence suggests that he is responsible for the preparation and use of chemical weapons in the attempted assassination of Alexey Navalny. (Gender):Male",Individual,Primary name variation,,Chemical Weapons,15/10/2020,05/01/2021,18/03/2022,13974 +KRIVORUCHKO,Aleksey,,,,,,,,,25/08/1977,Moscow,Russia,Russia,,,,,Judge at Tverskoi District Court,,,,,,,,,"(UK Sanctions List Ref):GHR0024 (UK Statement of Reasons):Aleksey Krivoruchko, as a Judge at Moscow’s Tverskoi District Court, was involved in decisions to extend the detention of Sergei Magnitsky, and in particular on 14 September 2009, shortly before his death. In this capacity, Krivoruchko facilitated the mistreatment / denial of medical care to Sergei Magnitsky, which contributed significantly to his death. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,16/02/2022,13886 +KRIVORUCHKO,Aleksey,Yurevich,,,,,КРИВОРУЧКО Алексей Юрьевич,,,17/07/1975,Stavropol,Russia,Russia,,,,,Deputy Minister of Defence of the Russian Federation,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0797 (UK Statement of Reasons):State Councillor of the Russian Federation, 1st Class Alexey Yurievich KRIVORUCHKO is a Deputy Minister of Defence of the Armed Forces of the Russian Federation. He is considered to have been either in direct command of, or otherwise have had involvement in, responsibility for, or influence over deployment of Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14748 +KRIVORUCHKO,Alex,,,,,,,,,25/08/1977,Moscow,Russia,Russia,,,,,Judge at Tverskoi District Court,,,,,,,,,"(UK Sanctions List Ref):GHR0024 (UK Statement of Reasons):Aleksey Krivoruchko, as a Judge at Moscow’s Tverskoi District Court, was involved in decisions to extend the detention of Sergei Magnitsky, and in particular on 14 September 2009, shortly before his death. In this capacity, Krivoruchko facilitated the mistreatment / denial of medical care to Sergei Magnitsky, which contributed significantly to his death. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,16/02/2022,13886 +KRIVORUCHKO,Alexei,,,,,,,,,25/08/1977,Moscow,Russia,Russia,,,,,Judge at Tverskoi District Court,,,,,,,,,"(UK Sanctions List Ref):GHR0024 (UK Statement of Reasons):Aleksey Krivoruchko, as a Judge at Moscow’s Tverskoi District Court, was involved in decisions to extend the detention of Sergei Magnitsky, and in particular on 14 September 2009, shortly before his death. In this capacity, Krivoruchko facilitated the mistreatment / denial of medical care to Sergei Magnitsky, which contributed significantly to his death. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,16/02/2022,13886 +KRIVOSHEEV,Andrei,Evgenievich,,,,,,,,02/12/1981,Volgograd,Russia,Belarus,,,,,"(1) Head of the State Union of Journalists (BUJ) (2) Political commentator, National State TV and Radio Company “Belteleradio” (BTRC)",Belarusian Union of Journalists,48a Surganova Street,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0114 (UK Statement of Reasons):A Senior Political Commentator for the National State TV and Radio Company “Belteleradio” (BTRC) Andrey Evgenievich KRIVOSHEYEV is one of the most vocal and influential members of the Belarusian state propaganda machine in the broadcast media. Further, in his role as Head of the pro-regime State Union of Journalists (BUJ) KRIVOSHEYEV is a close supporter of President of Belarus, Alexander Lukashenko, and a key player in the regime's propaganda and censorship apparatus. KRIVOSHEYEV has actively supported Lukashenko and his regime throughout the flawed election process surrounding the 9 August 2020 Presidential election. KRIVOSHEYEV therefore is or has been involved in undermining the rule of law in Belarus and repressing of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14157 +KRIVOSHEEV,Andrey,Evgenievich,,,,,,,,02/12/1981,Volgograd,Russia,Belarus,,,,,"(1) Head of the State Union of Journalists (BUJ) (2) Political commentator, National State TV and Radio Company “Belteleradio” (BTRC)",Belarusian Union of Journalists,48a Surganova Street,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0114 (UK Statement of Reasons):A Senior Political Commentator for the National State TV and Radio Company “Belteleradio” (BTRC) Andrey Evgenievich KRIVOSHEYEV is one of the most vocal and influential members of the Belarusian state propaganda machine in the broadcast media. Further, in his role as Head of the pro-regime State Union of Journalists (BUJ) KRIVOSHEYEV is a close supporter of President of Belarus, Alexander Lukashenko, and a key player in the regime's propaganda and censorship apparatus. KRIVOSHEYEV has actively supported Lukashenko and his regime throughout the flawed election process surrounding the 9 August 2020 Presidential election. KRIVOSHEYEV therefore is or has been involved in undermining the rule of law in Belarus and repressing of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14157 +KRIVOSHEEV,Andrei,,,,,,,,,02/12/1981,Volgograd,Russia,Belarus,,,,,"(1) Head of the State Union of Journalists (BUJ) (2) Political commentator, National State TV and Radio Company “Belteleradio” (BTRC)",Belarusian Union of Journalists,48a Surganova Street,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0114 (UK Statement of Reasons):A Senior Political Commentator for the National State TV and Radio Company “Belteleradio” (BTRC) Andrey Evgenievich KRIVOSHEYEV is one of the most vocal and influential members of the Belarusian state propaganda machine in the broadcast media. Further, in his role as Head of the pro-regime State Union of Journalists (BUJ) KRIVOSHEYEV is a close supporter of President of Belarus, Alexander Lukashenko, and a key player in the regime's propaganda and censorship apparatus. KRIVOSHEYEV has actively supported Lukashenko and his regime throughout the flawed election process surrounding the 9 August 2020 Presidential election. KRIVOSHEYEV therefore is or has been involved in undermining the rule of law in Belarus and repressing of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14157 +KRIVOSHEYEV,Andrei,Evgenievich,,,,,,,,02/12/1981,Volgograd,Russia,Belarus,,,,,"(1) Head of the State Union of Journalists (BUJ) (2) Political commentator, National State TV and Radio Company “Belteleradio” (BTRC)",Belarusian Union of Journalists,48a Surganova Street,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0114 (UK Statement of Reasons):A Senior Political Commentator for the National State TV and Radio Company “Belteleradio” (BTRC) Andrey Evgenievich KRIVOSHEYEV is one of the most vocal and influential members of the Belarusian state propaganda machine in the broadcast media. Further, in his role as Head of the pro-regime State Union of Journalists (BUJ) KRIVOSHEYEV is a close supporter of President of Belarus, Alexander Lukashenko, and a key player in the regime's propaganda and censorship apparatus. KRIVOSHEYEV has actively supported Lukashenko and his regime throughout the flawed election process surrounding the 9 August 2020 Presidential election. KRIVOSHEYEV therefore is or has been involved in undermining the rule of law in Belarus and repressing of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14157 +KRIVOSHEYEV,Andrei,Yevgenievich,,,,,,,,02/12/1981,Volgograd,Russia,Belarus,,,,,"(1) Head of the State Union of Journalists (BUJ) (2) Political commentator, National State TV and Radio Company “Belteleradio” (BTRC)",Belarusian Union of Journalists,48a Surganova Street,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0114 (UK Statement of Reasons):A Senior Political Commentator for the National State TV and Radio Company “Belteleradio” (BTRC) Andrey Evgenievich KRIVOSHEYEV is one of the most vocal and influential members of the Belarusian state propaganda machine in the broadcast media. Further, in his role as Head of the pro-regime State Union of Journalists (BUJ) KRIVOSHEYEV is a close supporter of President of Belarus, Alexander Lukashenko, and a key player in the regime's propaganda and censorship apparatus. KRIVOSHEYEV has actively supported Lukashenko and his regime throughout the flawed election process surrounding the 9 August 2020 Presidential election. KRIVOSHEYEV therefore is or has been involved in undermining the rule of law in Belarus and repressing of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14157 +KRIVOSHEYEV,Andrey,Evgenievich,,,,,Андрей Евгеньевич КРИВОШЕЕВ,,,02/12/1981,Volgograd,Russia,Belarus,,,,,"(1) Head of the State Union of Journalists (BUJ) (2) Political commentator, National State TV and Radio Company “Belteleradio” (BTRC)",Belarusian Union of Journalists,48a Surganova Street,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0114 (UK Statement of Reasons):A Senior Political Commentator for the National State TV and Radio Company “Belteleradio” (BTRC) Andrey Evgenievich KRIVOSHEYEV is one of the most vocal and influential members of the Belarusian state propaganda machine in the broadcast media. Further, in his role as Head of the pro-regime State Union of Journalists (BUJ) KRIVOSHEYEV is a close supporter of President of Belarus, Alexander Lukashenko, and a key player in the regime's propaganda and censorship apparatus. KRIVOSHEYEV has actively supported Lukashenko and his regime throughout the flawed election process surrounding the 9 August 2020 Presidential election. KRIVOSHEYEV therefore is or has been involved in undermining the rule of law in Belarus and repressing of civil society and democratic opposition. (Gender):Male",Individual,Primary name,,Belarus,02/12/2021,02/12/2021,18/03/2022,14157 +KRIYERENKO,Aleksandr,Valeryevich,,,,,КРИЕРЕНКО Александр Валерьевич,Cyrillic,Russian,14/10/1993,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1279 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15231 +KRONSHTADT,,,,,,,,,,,,,,,,,,,Andropov Ave,18k9,Descartes Business Center,,,Moscow,115432,Russia,"(UK Sanctions List Ref):RUS1078 (UK Statement of Reasons):KRONSHTADT is a Russian entity manufacturing unmanned aviation vehicles for military use, which is therefore obtaining a benefit from or supporting the Government of Russia by carrying on business in the Russian defence sector, a sector of strategic significance to the Government of Russia. (Phone number):+7 (495) 7483577 (Website):kronshtadt.ru (Email address):uav@kronshtadt.ru",Entity,Primary name,,Russia,24/03/2022,24/03/2022,14/06/2022,15021 +KRONSTADT,,,,,,,,,,,,,,,,,,,Andropov Ave,18k9,Descartes Business Center,,,Moscow,115432,Russia,"(UK Sanctions List Ref):RUS1078 (UK Statement of Reasons):KRONSHTADT is a Russian entity manufacturing unmanned aviation vehicles for military use, which is therefore obtaining a benefit from or supporting the Government of Russia by carrying on business in the Russian defence sector, a sector of strategic significance to the Government of Russia. (Phone number):+7 (495) 7483577 (Website):kronshtadt.ru (Email address):uav@kronshtadt.ru",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,14/06/2022,15021 +KRUGLY,Vladimir,Igorevich,,,,,Владимир Игоревич КРУГЛЫЙ,,,27/05/1955,Oryol,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0915 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14866 +KRUPKO,Ivan,Ivanovich,,,,Governor,КРУПКО Иван Иванович,Cyrillic,Russian,23/07/1974,Burdevichi,Belarus,Belarus,,,,,Chairman of the Gomel Regional Executive Committee,,,,,,,,,"(UK Sanctions List Ref):RUS0722 (UK Statement of Reasons):Ivan Ivanovich KRUPKO is Chairman of the Regional Executive Committee of the region of Gomel which has hosted the presence of Russian military forces prior to and during the invasion of Ukraine. In this role KRUPKO is or has been involved in providing support for, or promoting any policy or action which destabilises Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14673 +KRYUKOVA,Julia,Mikhailovna,,,,,КРЮКОВА Юлия Михайловна,Cyrillic,Russian,28/05/1978,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1256 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15208 +KRYUKOVA,Yulia,Mikhailovna,,,,,,,,28/05/1978,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1256 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15208 +KRYVASHEYEU,Andrei,Evgenievich,,,,,,,,02/12/1981,Volgograd,Russia,Belarus,,,,,"(1) Head of the State Union of Journalists (BUJ) (2) Political commentator, National State TV and Radio Company “Belteleradio” (BTRC)",Belarusian Union of Journalists,48a Surganova Street,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0114 (UK Statement of Reasons):A Senior Political Commentator for the National State TV and Radio Company “Belteleradio” (BTRC) Andrey Evgenievich KRIVOSHEYEV is one of the most vocal and influential members of the Belarusian state propaganda machine in the broadcast media. Further, in his role as Head of the pro-regime State Union of Journalists (BUJ) KRIVOSHEYEV is a close supporter of President of Belarus, Alexander Lukashenko, and a key player in the regime's propaganda and censorship apparatus. KRIVOSHEYEV has actively supported Lukashenko and his regime throughout the flawed election process surrounding the 9 August 2020 Presidential election. KRIVOSHEYEV therefore is or has been involved in undermining the rule of law in Belarus and repressing of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14157 +KRYVASHEYEU,Andrey,Evgenievich,,,,,,,,02/12/1981,Volgograd,Russia,Belarus,,,,,"(1) Head of the State Union of Journalists (BUJ) (2) Political commentator, National State TV and Radio Company “Belteleradio” (BTRC)",Belarusian Union of Journalists,48a Surganova Street,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0114 (UK Statement of Reasons):A Senior Political Commentator for the National State TV and Radio Company “Belteleradio” (BTRC) Andrey Evgenievich KRIVOSHEYEV is one of the most vocal and influential members of the Belarusian state propaganda machine in the broadcast media. Further, in his role as Head of the pro-regime State Union of Journalists (BUJ) KRIVOSHEYEV is a close supporter of President of Belarus, Alexander Lukashenko, and a key player in the regime's propaganda and censorship apparatus. KRIVOSHEYEV has actively supported Lukashenko and his regime throughout the flawed election process surrounding the 9 August 2020 Presidential election. KRIVOSHEYEV therefore is or has been involved in undermining the rule of law in Belarus and repressing of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14157 +KRYVASHEYEU,Andrei,,,,,,,,,02/12/1981,Volgograd,Russia,Belarus,,,,,"(1) Head of the State Union of Journalists (BUJ) (2) Political commentator, National State TV and Radio Company “Belteleradio” (BTRC)",Belarusian Union of Journalists,48a Surganova Street,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0114 (UK Statement of Reasons):A Senior Political Commentator for the National State TV and Radio Company “Belteleradio” (BTRC) Andrey Evgenievich KRIVOSHEYEV is one of the most vocal and influential members of the Belarusian state propaganda machine in the broadcast media. Further, in his role as Head of the pro-regime State Union of Journalists (BUJ) KRIVOSHEYEV is a close supporter of President of Belarus, Alexander Lukashenko, and a key player in the regime's propaganda and censorship apparatus. KRIVOSHEYEV has actively supported Lukashenko and his regime throughout the flawed election process surrounding the 9 August 2020 Presidential election. KRIVOSHEYEV therefore is or has been involved in undermining the rule of law in Belarus and repressing of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14157 +KRYVASHEYEU,Andrei,Yauhenavich,,,,,Андрэй Яўгенавіч КРЫВАШЭЕЎ,,,02/12/1981,Volgograd,Russia,Belarus,,,,,"(1) Head of the State Union of Journalists (BUJ) (2) Political commentator, National State TV and Radio Company “Belteleradio” (BTRC)",Belarusian Union of Journalists,48a Surganova Street,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0114 (UK Statement of Reasons):A Senior Political Commentator for the National State TV and Radio Company “Belteleradio” (BTRC) Andrey Evgenievich KRIVOSHEYEV is one of the most vocal and influential members of the Belarusian state propaganda machine in the broadcast media. Further, in his role as Head of the pro-regime State Union of Journalists (BUJ) KRIVOSHEYEV is a close supporter of President of Belarus, Alexander Lukashenko, and a key player in the regime's propaganda and censorship apparatus. KRIVOSHEYEV has actively supported Lukashenko and his regime throughout the flawed election process surrounding the 9 August 2020 Presidential election. KRIVOSHEYEV therefore is or has been involved in undermining the rule of law in Belarus and repressing of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14157 +KRYVASHEYEU,Andrei,Yawhenavich,,,,,,,,02/12/1981,Volgograd,Russia,Belarus,,,,,"(1) Head of the State Union of Journalists (BUJ) (2) Political commentator, National State TV and Radio Company “Belteleradio” (BTRC)",Belarusian Union of Journalists,48a Surganova Street,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0114 (UK Statement of Reasons):A Senior Political Commentator for the National State TV and Radio Company “Belteleradio” (BTRC) Andrey Evgenievich KRIVOSHEYEV is one of the most vocal and influential members of the Belarusian state propaganda machine in the broadcast media. Further, in his role as Head of the pro-regime State Union of Journalists (BUJ) KRIVOSHEYEV is a close supporter of President of Belarus, Alexander Lukashenko, and a key player in the regime's propaganda and censorship apparatus. KRIVOSHEYEV has actively supported Lukashenko and his regime throughout the flawed election process surrounding the 9 August 2020 Presidential election. KRIVOSHEYEV therefore is or has been involved in undermining the rule of law in Belarus and repressing of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14157 +KRYVASHEYEV,Andrei,Evgenievich,,,,,,,,02/12/1981,Volgograd,Russia,Belarus,,,,,"(1) Head of the State Union of Journalists (BUJ) (2) Political commentator, National State TV and Radio Company “Belteleradio” (BTRC)",Belarusian Union of Journalists,48a Surganova Street,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0114 (UK Statement of Reasons):A Senior Political Commentator for the National State TV and Radio Company “Belteleradio” (BTRC) Andrey Evgenievich KRIVOSHEYEV is one of the most vocal and influential members of the Belarusian state propaganda machine in the broadcast media. Further, in his role as Head of the pro-regime State Union of Journalists (BUJ) KRIVOSHEYEV is a close supporter of President of Belarus, Alexander Lukashenko, and a key player in the regime's propaganda and censorship apparatus. KRIVOSHEYEV has actively supported Lukashenko and his regime throughout the flawed election process surrounding the 9 August 2020 Presidential election. KRIVOSHEYEV therefore is or has been involved in undermining the rule of law in Belarus and repressing of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14157 +KRYVASHEYEV,Andrey,Evgenievich,,,,,,,,02/12/1981,Volgograd,Russia,Belarus,,,,,"(1) Head of the State Union of Journalists (BUJ) (2) Political commentator, National State TV and Radio Company “Belteleradio” (BTRC)",Belarusian Union of Journalists,48a Surganova Street,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0114 (UK Statement of Reasons):A Senior Political Commentator for the National State TV and Radio Company “Belteleradio” (BTRC) Andrey Evgenievich KRIVOSHEYEV is one of the most vocal and influential members of the Belarusian state propaganda machine in the broadcast media. Further, in his role as Head of the pro-regime State Union of Journalists (BUJ) KRIVOSHEYEV is a close supporter of President of Belarus, Alexander Lukashenko, and a key player in the regime's propaganda and censorship apparatus. KRIVOSHEYEV has actively supported Lukashenko and his regime throughout the flawed election process surrounding the 9 August 2020 Presidential election. KRIVOSHEYEV therefore is or has been involved in undermining the rule of law in Belarus and repressing of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,18/03/2022,14157 +KUBRAKOU,Ivan,Uladzimiravich,,,,,"КУБРАКОЎ, Iван Уладзiмiравiч",,,05/05/1975,"Malinovka village, Mogilev Oblast",Former USSR now Belarus,Belarus,,,,,(1) Head of the Main Internal Affairs Di­rectorate of the Minsk City Executive Committee (2) Major General of Police,Ministry of Internal Affairs of the Republic of Belarus,4 Gorodskoi Val Street,Minsk,,,,220030,Belarus,"(UK Sanctions List Ref):BEL0014 (UK Statement of Reasons):In his position as Minister of Defence of Belarus since 20 January 2020, Viktor Khrenin is responsible for the decision taken by the Command of the Air Forces and Air Defence Forces for the order dispatching military aircraft to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In doing so, Khrenin acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian aviation authorities. This resulted in the forced redirection of flight FR4978, the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner, Sofia Sapega. This politically motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression against civil society and democratic opposition in Belarus. Viktor Khrenin is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,05/05/2020,31/12/2020,09/08/2021,13936 +KUBRAKOU,Ivan,Vladimirovich,,,,,"КУБРАКОВ, Иван Владимирович",,,05/05/1975,"Malinovka village, Mogilev Oblast",Former USSR now Belarus,Belarus,,,,,(1) Head of the Main Internal Affairs Di­rectorate of the Minsk City Executive Committee (2) Major General of Police,Ministry of Internal Affairs of the Republic of Belarus,4 Gorodskoi Val Street,Minsk,,,,220030,Belarus,"(UK Sanctions List Ref):BEL0014 (UK Statement of Reasons):In his position as Minister of Defence of Belarus since 20 January 2020, Viktor Khrenin is responsible for the decision taken by the Command of the Air Forces and Air Defence Forces for the order dispatching military aircraft to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In doing so, Khrenin acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian aviation authorities. This resulted in the forced redirection of flight FR4978, the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner, Sofia Sapega. This politically motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression against civil society and democratic opposition in Belarus. Viktor Khrenin is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name,,Belarus,05/05/2020,31/12/2020,09/08/2021,13936 +KUBRAKOV,Ivan,Uladzimiravich,,,,,,,,05/05/1975,"Malinovka village, Mogilev Oblast",Former USSR now Belarus,Belarus,,,,,(1) Head of the Main Internal Affairs Di­rectorate of the Minsk City Executive Committee (2) Major General of Police,Ministry of Internal Affairs of the Republic of Belarus,4 Gorodskoi Val Street,Minsk,,,,220030,Belarus,"(UK Sanctions List Ref):BEL0014 (UK Statement of Reasons):In his position as Minister of Defence of Belarus since 20 January 2020, Viktor Khrenin is responsible for the decision taken by the Command of the Air Forces and Air Defence Forces for the order dispatching military aircraft to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In doing so, Khrenin acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian aviation authorities. This resulted in the forced redirection of flight FR4978, the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner, Sofia Sapega. This politically motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression against civil society and democratic opposition in Belarus. Viktor Khrenin is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,05/05/2020,31/12/2020,09/08/2021,13936 +KUBRAKOV,Ivan,Vladimirovich,,,,,,,,05/05/1975,"Malinovka village, Mogilev Oblast",Former USSR now Belarus,Belarus,,,,,(1) Head of the Main Internal Affairs Di­rectorate of the Minsk City Executive Committee (2) Major General of Police,Ministry of Internal Affairs of the Republic of Belarus,4 Gorodskoi Val Street,Minsk,,,,220030,Belarus,"(UK Sanctions List Ref):BEL0014 (UK Statement of Reasons):In his position as Minister of Defence of Belarus since 20 January 2020, Viktor Khrenin is responsible for the decision taken by the Command of the Air Forces and Air Defence Forces for the order dispatching military aircraft to intercept passenger flight FR4978 and compel its landing at Minsk airport, without proper justification, on 23 May 2021. In doing so, Khrenin acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian aviation authorities. This resulted in the forced redirection of flight FR4978, the detention of the aircraft, its passengers and the crew, and the arrest of opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner, Sofia Sapega. This politically motivated decision was aimed at arresting and detaining opposition journalist Protasevich and Sapega and constitutes a form of repression against civil society and democratic opposition in Belarus. Viktor Khrenin is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,05/05/2020,31/12/2020,09/08/2021,13936 +KUCHI,Ahmed Jan,,,,,,,,,00/00/1963,"Barlach Village, Qareh Bagh District, Ghazni Province",Afghanistan,,,,,,Official of the Ministry of Finance during the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0125 (UN Ref):TAi.159 Key commander of the Haqqani Network (TAe.012), which is based in Afghanistan/Pakistan border area. Acts as deputy, spokesperson and advisor for Haqqani Network senior leader Sirajuddin Jallaloudine Haqqani (TAi.144). Liaises with the Taliban Supreme Council. Has travelled abroad. Liaises with and provides Taliban commanders in Ghazni Province, Afghanistan, with money, weapons, communications equipment and supplies. Reportedly deceased as of 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12457 +KUCHMENT,Mikhail,Lvovich,,,,,Михаил Львович Кучмент,Cyrillic,Russia,28/08/1973,,,Russia,756767859,Russia,,,Head of the Supervisory Board of SOVCOMBANK,Demiana Bednogo Street,23,block 1,flat 40,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1021 (UK Statement of Reasons):Mikhail Lvovich KUCHMENT is the head of the Supervisory Board of SOVCOMBANK. In his role, KUCHMENT is a member of and associated with SOVCOMBANK. SOVCOMBANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15352 +KUCHUKOV,Ilgam,Gaffarovich,,,,,Ильгам Гаффарович КУЧУКОВ,Cyrillic,Russian,00/00/1977,,Russia,,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS1062 (UK Statement of Reasons):Ilgam Kuchukov [“Kuchukov”] is a member of the Management Board of Public Joint Stock Company Rosneft Oil Company [“Rosneft”], a Russian oil company. Rosneft is a Government of Russia-affiliated entity as the Government of Russia owns a minority interest in Rosneft via the state-owned company JSC Roseneftgaz. As a member of Rosneft’s Management Board, Kuchukov is a member of or associated with Rosneft, which is carrying on business as a Government of Russia-affiliated entity. (Gender):Male",Individual,Primary name,,Russia,24/03/2022,24/03/2022,12/07/2022,15005 +KUDA,,,,,,,,,,12/02/1969,Shurugwi,Zimbabwe,(1) South Africa. (2) Zimbabwe.,(1) EN183928. (2) FN920256. (3) VUK491921,(1) Zimbabwe. (2) Zimbabwe. (3) Canada.,29135894Z66,,,4 Luna Road,,,,Borrowdale,Harare,,Zimbabwe,"(UK Sanctions List Ref):GAC0023 (UK Statement of Reasons):Kudakwashe Regimond Tagwirei profited or otherwise benefitted from the misappropriation of property when his company, Sakunda Holdings, redeemed Government of Zimbabwe Treasury Bills at up to ten times their official value. This meant that Sakunda Holdings and Tagwirei, as its CEO and owner, profited significantly at the expense of macroeconomic stability in Zimbabwe. (Gender):Male",Individual,AKA,,Global Anti-Corruption,22/07/2021,22/07/2021,22/07/2021,14126 +KUDRYAVTSEV,Nikolay,,,,,,,,,,,,,,,,,Member of Sberbank’s Supervisory Board,,,,,,,,,"(UK Sanctions List Ref):RUS1597 (UK Statement of Reasons):Nikolay Kudryavtsev is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a director, manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK). (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15541 +KUDSIYEH,Abd,Al-Fatah,,,,,,,,00/00/1953,Hama,Syria,Syria,D0005788,Diplomatic,,,Deputy Director of National Security Bureau of the Ba’ath Party,,,,,,,,,(UK Sanctions List Ref):SYR0001 Former Director of Syrian Military Intelligence. Former Director of Syrian Air Force Intelligence. (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces. Deputy Director of the National Security Bureau of the Ba’ath Party. Former Head of Syrian Military Intelligence Directorate. Involved in violent repression of the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11902 +KUDSIYEH,Abdel-Fatah,,,,,,,,,00/00/1953,Hama,Syria,Syria,D0005788,Diplomatic,,,Deputy Director of National Security Bureau of the Ba’ath Party,,,,,,,,,(UK Sanctions List Ref):SYR0001 Former Director of Syrian Military Intelligence. Former Director of Syrian Air Force Intelligence. (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces. Deputy Director of the National Security Bureau of the Ba’ath Party. Former Head of Syrian Military Intelligence Directorate. Involved in violent repression of the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11902 +KUDSIYEH,Abdulfatah,,,,,,,,,00/00/1953,Hama,Syria,Syria,D0005788,Diplomatic,,,Deputy Director of National Security Bureau of the Ba’ath Party,,,,,,,,,(UK Sanctions List Ref):SYR0001 Former Director of Syrian Military Intelligence. Former Director of Syrian Air Force Intelligence. (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces. Deputy Director of the National Security Bureau of the Ba’ath Party. Former Head of Syrian Military Intelligence Directorate. Involved in violent repression of the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11902 +KUKARSKY,Dmitry,Leonidovich,,,,,КУКАРСКИЙ Дмитрий Леонидович,Cyrillic,Russian,20/01/1982,Antipino,Russia,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1280 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15232 +KUKPANG KWAHAK-WON,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0189 (UN Ref):KPe.018 The Second Academy of Natural Sciences is a national-level organization responsible for research and development of the DPRK’s advanced weapons systems, including missiles and probably nuclear weapons. The Second Academy of Natural Sciences uses a number of subordinate organizations to obtain technology, equipment, and information from overseas, including Tangun Trading Corporation, for use in the DPRK’s missile and probably nuclear weapons programs. Tangun Trading Corporation was designated by the Committee in July 2009 and is primarily responsible for the procurement of commodities and technologies to support DPRK’s defense research and development programs, including, but not limited to, weapons of mass destruction and delivery system programs and procurement, including materials that are controlled or prohibited under relevant multilateral control regimes. (Subsidiaries):Tangun Trading Corporation",Entity,AKA,,Democratic People's Republic of Korea,23/04/2013,07/03/2013,31/12/2020,12871 +KULAZHIN,Vladimir,Vladimirovich,,,,Major General,КУЛАЖИН Владимир Владимирович,Cyrillic,Russian,,,,Belarus,,,,,Deputy Commander North-Western Operational Command,,,,,,,,,"(UK Sanctions List Ref):RUS0745 (UK Statement of Reasons):Major General Vladimir Vladimirovich KULAZHIN has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being involved in the command of Belarusian forces who were involved in a joint exercise with the Russian military ahead of Russia’s invasion of Ukraine which: (1) threatened Ukraine; and (2) provided cover for Russian military preparations to invade Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14696 +KULBATSKAYA,Klavdia,Yurievna,,,,,КУЛЬБАЦКАЯ Клавдия Юрьевна,Cyrillic,Russian,30/03/1967,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1257 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15209 +KULESHOV,Aleksander,,,,,,,,,,,,,,,,,Member of Sberbank’s Supervisory Board,,,,,,,,,"(UK Sanctions List Ref):RUS1598 (UK Statement of Reasons):Aleksander Kuleshov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a director, manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK). (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15542 +KULIK,Vadim,Valerievich,,,,,КУЛИК Вадим Валерьевич,,,14/08/1972,,,Russia,,,,,Deputy President and Chairman of VTB Bank Management Board,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0856 (UK Statement of Reasons):Vadim KULIK is a member of VTB Bank’s Management Board. VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, KULIK obtains a financial benefit from VTB Bank, therefore KULIK is an involved person on the basis of his membership of and association with VTB Bank. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14807 +KULIKOV,Valery,Vladimirovich,,,,,,,,01/09/1956,Zaporozhye,Ukrainian SSR (now Ukraine),Russia,,,,,(1) Former Deputy Commander of the Black Sea Fleet (2) A deputy of the Legislative Assembly of the city of Sevastopol,,,,,,,,,"(UK Sanctions List Ref):RUS0015 (UK Statement of Reasons):Former Deputy-Commander of the Black Sea Fleet, Rear Admiral. Responsible for commanding Russian forces that have occupied Ukrainian sovereign territory. On 26 September 2017, with a Decree of the President of the Russian Federation, he was dismissed from this post and from military service. He then became a member of the Federation Council of Russian Federation, representing the annexed City of Sevastopol. Since September 2020, he is a deputy of the Legislative Assembly of the city of Sevastopol. (Gender):Male",Individual,Primary name,,Russia,21/03/2014,31/12/2020,16/09/2022,12940 +KULIKOV,Dmitry,Yevgenevich,,,,,КУЛИКОВ Дмитрий Евгеньевич,Cyrillic,Russian,18/11/1967,Shakhtersk,Ukraine,,,,,,(1) Presenter of ‘Who is Against?’ on Russia-1 (2) Presenter on Vesti radio (3) Academic and political scientist,,,,,,,,,"(UK Sanctions List Ref):RUS1038 (UK Statement of Reasons):Dmitry Kulikov is a prominent TV presenter and public intellectual in Russia.  In broadcasts and interviews he has promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.  (Email address):dkulikov@gmail.com",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14975 +KULIKOV,Sergey,Alexandrovich,,,,,,,,09/04/1976,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0780 (UK Statement of Reasons):Sergey Alexandrovich KULIKOV has been Head and Chairman of the Management Board at Rusnano, a Russian investment entity affiliated to the Government of Russia. In his position, KULIKOV was working as a director or equivalent in a Government of Russia-affiliated entity.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14731 +KULIKOVSKIKH,Nina,Germanovna,,,,,Нина Германовна КУЛИКОВСКИХ,,,05/02/1961,Vyazma,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0922 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14873 +KUMANOVA,Svetlana,Anatolievna,,,,,КУМАНОВА Светлана Анатольевна,Cyrillic,Russian,01/11/1966,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1183 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15135 +KUMANOVA,Svetlana,Anatolyevna,,,,,,,,01/11/1966,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1183 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15135 +KUMBA,Gabriel,Amisi,,,,,,,,28/05/1964,Malela,Congo (Democratic Republic),Congo (Democratic Republic),,,1-64-87-77512-30,Military,"Former Deputy Chief of Staff of the Congolese Armed Forces (FARDC), with responsibility for operations and intelligence",22,avenue Mbsenseke,,Ma Campagne,Ngaliema,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0002 (UK Statement of Reasons):As Commander of the 1st Defence Zone of Congolese Army (FARDC) Gabriel KUMBA was officially responsible for FARDC forces who took part in the disproportionate use of force and violent repression in September 2016 in Kinshasa. In this capacity, Gabriel KUMBA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC. There are reasonable grounds to conclude that KUMBA was an “involved person” given that matters within reg (6)(2) occurred within the territory (First Defence Zone) for which he was the FARDC Commander and thus bore responsibility for.  (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13433 +KU'MHAERYONG COMPANY LTD,,,,,,,,,,,,,,,,,,,,,,,Nungrado,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +KU'MHAERYONG COMPANY LTD,,,,,,,,,,,,,,,,,,,Rakrang No. 1,Rakrang District,Mangyongdae District,,Chilgol-1 dong,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +KU'MHAERYONG COMPANY LTD,,,,,,,,,,,,,,,,,,,Reconnaissance General Bureau Headquarters,,,,Hyongjesan-Guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +KUMIN,Vadim,Valentinovich,,,,,Кумин Вадим Валентинович,,,01/01/1973,Chelyabinsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0435 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14380 +KUMKAL,,,,,,,,,,29/01/1971,Roubaix,France,France,,,,,,,,,,,,,France,(UK Sanctions List Ref):AQD0217 (UN Ref):QDi.095 In custody in France as of May 2004. Sentenced to 25 years imprisonment in France in 2007. His sentence is due to end on 13 Jul. 2023 and his unconditional detention to end on 13 Aug. 2020. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4531664,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,11/02/2022,7797 +KUNI,Amid,Husain,,,,,,,,,,,,,,,,"(1) Former Ambassador to Niger. (2) Former Governor of Ghat, South Libya",,,,,,,,Libya,"(UK Sanctions List Ref):LIB0028 (UN Ref):LYi.005 Formerly Ambassador to Niger for 17 years. Also listed by the UN pursuant to paragraph 15 of resolution 1970 (Travel Ban). (UK Statement of Reasons):As a former Governor of Ghat (South Libya) and Ambassador to Niger, Al Kuni was associated with the Qadhafi regime. Al Kuni was also involved in activities which threaten the peace, security, stability of Libya or undermines its transition to a democratic, peaceful and independent country, mercenaries to fight for the Qadhafi regime in order to implement the repressive policies of that regime.",Individual,AKA,,Libya,14/04/2011,31/12/2020,10/02/2022,11773 +KUOL,Santino,Deng,,,,,,,,09/11/1962,,South Sudan,,,,,,Commander of the third Infantry Division Sudan People’s Liberation Army,,,,,,,,,"(UK Sanctions List Ref):SSU0008 (UN Ref):SSi.004 Has led and directed military actions against opposition forces and conducted confrontational troop movements in violation of the CoHA. During May 2015, forces under his command killed children, women and old men, burned property, and stole livestock as they advanced through Unity State towards Thorjath oil field. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879071",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,31/12/2020,13021 +KUPRIN,Anton,Valerevich,,,,,Антон Валерьевич КУПРИН,Cyrillic,Russian,,,,,,,,,"Captain 1st rank, commander of the cruiser ""Moskva""",,,,,,,,,"(UK Sanctions List Ref):RUS1346 (UK Statement of Reasons):Anton Valerevich KUPRIN (hereafter KUPRIN) as a member of the Armed Forces of the Russian Federation holding or having held the position of Captain 1st rank, commander of the cruiser ""Moskva"", is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because KUPRIN has provided support for, and/or promoted policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15297 +KUPRIYANYUK,Vladimir,Nikolaevich,,,,Major General,"КУПРИЯНЮК, Владимир Николаевич",Cyrillic,Russian,11/07/1972,Kamenyuki,Belarus,Belarus,,,,,Chief of Staff – Western Operational Command,,,,,,,,,"(UK Sanctions List Ref):RUS0714 (UK Statement of Reasons):Major General Vladimir Nikolaevich KUPRIYANYUK is the Chief of Staff of the Western Operational Command of the Belarus armed forces. There are reasonable grounds to suspect that he participated in joint exercises with the Russian military ahead of Russia’s invasion of Ukraine. Therefore, he has been involved in engaging or providing support for policies and actions that destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14665 +KURASHOV,Denis,Sergeevich,,,,,Денис Сергеевич КУРАШОВ,Cyrillic,Russian,31/05/1978,,Russia,Russian,,,,,Deputy Minister of Communications of the so-called Donetsk People's Republic,,,,,,,,,"(UK Sanctions List Ref):RUS1623 (UK Statement of Reasons):Denis Sergeevich KURASHOV is a Russian official serving as Deputy Minister of Communications of the so-called Donetsk People’s Republic. KURASHOV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he engages in and provides support for policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,28/09/2022,15567 +KURBANOV,Andrei,Boevich,,,,Colonel,Андрей Боевич КУРБАНОВ,Cyrillic,Russian,07/01/1970,,Russia,Russia,4615 949409,,У-184386,,Colonel of the 64th Separate Motorised Rifle Brigade of the 35th Combined Arms Army of the Russian Federation,14 Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS1474 (UK Statement of Reasons):Colonel Andrei Boevich KURBANOV is a Colonel in the 64th Motor Rifle Brigade of the Armed Forces of the Russian Federation. He is deemed to have been either in direct command of and/or in a position to hold considerable situational awareness of troops involved in the killing of civilians in the Kyiv suburb of Bucha in March 2022. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,16/06/2022,16/06/2022,09/08/2022,15407 +KURBANOV,Rizvan,Daniyalovich,,,,,Курбанов Ризван Даниялович,,,03/01/1961,Buynaksk,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0436 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14381 +KURCHENKO,Sergiy,Vitaliyovich,,,,,Сергій Віталійович Курченко,,Ukrainian,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Serhiy,Vitalyovych,,,,,Сергій Віталійович Курченко,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Sergey,Vitaliiovych,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Sergey,Vitalijovich,,,,,Сергей Витальевич Курченко,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Sergey,Vitaliyovych,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Sergey,Vitalyovych,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Sergii,Vitaliiovych,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Sergii,Vitalijovich,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Sergii,Vitaliyovych,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Sergii,Vitalyovych,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Sergij,Vitaliiovych,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Sergij,Vitalijovich,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Sergij,Vitaliyovych,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Sergij,Vitalyovych,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Serhii,Vitaliiovych,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Serhii,Vitalijovich,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Serhii,Vitaliyovych,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Serhii,Vitalyovych,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Serhiy,Vitaliiovych,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Serhiy,Vitalijovich,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURCHENKO,Serhiy,Vitaliyovych,,,,,,,,21/09/1985,Kharkiv,Former USSR Currently Ukraine,Ukraine,,,,,Businessman Founder/Owner of the group of companies Gas Ukraine 2009,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0230 (UK Statement of Reasons):Kurchenko facilitated the supply of oil from Russian companies to their Crimea-based subsidiaries in the first year of Russian occupied Crimea, enabling the Russian companies to bypass EU sanctions. He bought and operated Ukrainian assets in the occupied Donbas. He controlled coal exports to Russia and abroad from the occupied Donbas. These activities provided material support to the separatist groups in the Donbas and to the Russian occupation of Crimea, destabilising Ukraine and undermining Ukrainian sovereignty and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,26/09/2022,12906 +KURDISH TALIBAN,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0032 (UN Ref):QDe.098 The founder is Najmuddin Faraj Ahmad (QDi.226). Associated with Al-Qaida in Iraq (QDe.115). Located and primarily active in northern Iraq but maintains a presence in western and central Iraq. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282119,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2003,24/02/2003,31/12/2020,7021 +KURDISTAN FREEDOM FALCONS,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0042 (UK Statement of Reasons):The Kurdistan Freedom Hawks (TAK) is a Kurdish nationalist group that uses violence to pursue its goal of an independent Kurdish state in south eastern Turkey. They have claimed responsibility for numerous terrorist attacks, and are believed to have links to the Kurdistan Workers Party (PKK a proscribed terrorist organisation).",Entity,AKA,,Counter-Terrorism (International),05/02/2007,31/12/2020,31/12/2020,9025 +KURDISTAN FREEDOM HAWKS,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0042 (UK Statement of Reasons):The Kurdistan Freedom Hawks (TAK) is a Kurdish nationalist group that uses violence to pursue its goal of an independent Kurdish state in south eastern Turkey. They have claimed responsibility for numerous terrorist attacks, and are believed to have links to the Kurdistan Workers Party (PKK a proscribed terrorist organisation).",Entity,AKA,,Counter-Terrorism (International),05/02/2007,31/12/2020,31/12/2020,9025 +KURDISTAN SUPPORTERS OF ISLAM,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0032 (UN Ref):QDe.098 The founder is Najmuddin Faraj Ahmad (QDi.226). Associated with Al-Qaida in Iraq (QDe.115). Located and primarily active in northern Iraq but maintains a presence in western and central Iraq. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282119,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2003,24/02/2003,31/12/2020,7021 +KURDISTAN WORKERS' PARTY,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0036 (UK Statement of Reasons):The PKK is a Kurdish terrorist organisation, proscribed by the UK, the EU and NATO, which was formed in the late 1970s and has claimed responsibility for numerous terrorist attacks, mainly against Turkish state security forces but also civilians. Its attacks are mainly carried out in Turkey’s largely Kurdish southeast. Cooperation exists between the PKK in Turkey and other Kurdish armed groups in the region situated along the Öcalan axis of support. These like-minded groups identify as being under the cross-border umbrella of the Kurdistan Communities Union (KCK).",Entity,AKA,,Counter-Terrorism (International),02/11/2001,31/12/2020,11/03/2022,7231 +KURENKOV,Alexander,Pavlovich,,,,,КУРЕНКОВ Александр Павлович,Cyrillic,Russian,01/06/1962,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1178 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15130 +KURINNY,Alexey,Vladimirovich,,,,,Куринный Алексей Владимирович,,,18/01/1974,Tskhinvali,Georgia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0437 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14382 +KURYAN,Dmitry,,,,,,Дмитрий Александрович КУРЯН,,,03/10/1974,,,,,,,,"Head of the Department of Law Enforcement of the Main Directorate for the Protection of Law and Order, in the Ministry of Internal Affairs",,,,,,,,,"(UK Sanctions List Ref):BEL0072 (UK Statement of Reasons):Dzmitry Kuryan is a Police Colonel, and Head of the Department of Law Enforcement of the Main Directorate for the Protection of Law and Order, in the Ministry of Internal Affairs. In this role, Kuryan is responsible for the repression and intimidation of peaceful protesters in the wake of the 2020 presidential election, in particular with arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/03/2022,14045 +KURYAN,Dmitry,Aleksandrovich,,,,,,,,03/10/1974,,,,,,,,"Head of the Department of Law Enforcement of the Main Directorate for the Protection of Law and Order, in the Ministry of Internal Affairs",,,,,,,,,"(UK Sanctions List Ref):BEL0072 (UK Statement of Reasons):Dzmitry Kuryan is a Police Colonel, and Head of the Department of Law Enforcement of the Main Directorate for the Protection of Law and Order, in the Ministry of Internal Affairs. In this role, Kuryan is responsible for the repression and intimidation of peaceful protesters in the wake of the 2020 presidential election, in particular with arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/03/2022,14045 +KURYAN,Dzmitry,Aleksandrovich,,,,,Дзмiтрый Аляксандравiч КУРЯН,,,03/10/1974,,,,,,,,"Head of the Department of Law Enforcement of the Main Directorate for the Protection of Law and Order, in the Ministry of Internal Affairs",,,,,,,,,"(UK Sanctions List Ref):BEL0072 (UK Statement of Reasons):Dzmitry Kuryan is a Police Colonel, and Head of the Department of Law Enforcement of the Main Directorate for the Protection of Law and Order, in the Ministry of Internal Affairs. In this role, Kuryan is responsible for the repression and intimidation of peaceful protesters in the wake of the 2020 presidential election, in particular with arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/03/2022,14045 +KURYONGGANG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0169 (UN Ref):KPe.008 Korea Tangun Trading Corporation is subordinate to DPRK’s Second Academy of Natural Sciences and is primarily responsible for the procurement of commodities and technologies to support DPRK’s defense research and development programs, including, but not limited to, WMD and delivery system programs and procurement, including materials that are controlled or prohibited under relevant multilateral control regimes. (Parent company):DPRK's Second Academy of Natural Sciences",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10913 +KUSAIKO,Tatyana,Alekseevna,,,,,Кусайко Татьяна Алексеевна,,,15/01/1960,Poltava,Ukraine,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0438 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14383 +KUSHAKOV,Mikhail,Nikolaevich,,,,,КУШАКОВ Михаил Николаевич,Cyrillic,Russian,23/11/1958,,Moldova,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1143 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15095 +KUSHNAREV,Vitaly,Vasilievich,,,,,Виталий Васильевич Кушнарёв,,,01/05/1975,Tatsinsky District,Russia,Russia,760414101,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0560 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14505 +KUSOMAN,Ami,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +KUSOMAN,Izza,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +KUSOV,Ivan,,,,,,Иван кусов,,Russian,00/00/1987,Semipalatinsk,Kazakhstan,Russia,,,,,So-called ‘Minister of Education and Science’,,,,,,,,,"(UK Sanctions List Ref):RUS1568 (UK Statement of Reasons):Ivan KUSOV is an involved person within the meaning of the Russia (Sanctions) (EU Exit) Regulations 2019 because he is the so-called Minister of Education and Science for the non-government controlled area of Ukraine known as the Luhansk People’s Republic. Through this role, KUSOV is or has engaged in policies or actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15512 +KUTEPOV,Andrey,Viktorovich,,,,,Андрей Викторович Кутепов,,,06/04/1971,Leningrad/St Petersburg,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS1007 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14958 +KUVSHINNIKOV,Oleg,Aleksandrovich,,,,,Оле́г Алекса́ндрович Кувши́нников,,,02/02/1965,,,Russia,,,,,Governor of Vologda Region,,,,,,,,,"(UK Sanctions List Ref):RUS1525 (UK Statement of Reasons):Oleg Aleksandrovich KUVSHINNIKOV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because KUVSHINNIKOV is a regional governor. Specifically, KUVSHINNIKOV is Governor of Vologda Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15478 +KUYVASHEV,Yevgeny,Vladmirovich,,,,,Евгений Владимирович Куйвашев,,,16/03/1971,,,Russia,,,,,Governor of Sverdlovsk Region,,,,,,,,,"(UK Sanctions List Ref):RUS1512 (UK Statement of Reasons):Yevgeny Vladmirovich KUYVASHEV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because KUYVASHEV is a regional governor. Specifically, KUYVASHEV is Governor of Sverdlovsk Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15450 +KUZMICH,Tatiana,,,,,,,,,10/04/1968,,,Ukraine,,,,,(1) Member of the ‘Salvation Committee for Peace and Order’ in Kherson (2) Former deputy Mayor of Kherson,,,,,,,,,"(UK Sanctions List Ref):RUS1472 (UK Statement of Reasons):There are reasonable grounds to suspect Tetiana KUZMICH of participation in the so-called ‘Salvation Committee for Peace and Order’ and therefore that she is, or has been involved in providing support for and promoting policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,16/06/2022,16/06/2022,09/08/2022,15415 +KUZMICH,Tatyana,,,,,,,,,10/04/1968,,,Ukraine,,,,,(1) Member of the ‘Salvation Committee for Peace and Order’ in Kherson (2) Former deputy Mayor of Kherson,,,,,,,,,"(UK Sanctions List Ref):RUS1472 (UK Statement of Reasons):There are reasonable grounds to suspect Tetiana KUZMICH of participation in the so-called ‘Salvation Committee for Peace and Order’ and therefore that she is, or has been involved in providing support for and promoting policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,16/06/2022,16/06/2022,09/08/2022,15415 +KUZMICH,Tetiana,,,,,,Тетяна КУЗЬМИЧ,Cyrillic,Ukrainian,10/04/1968,,,Ukraine,,,,,(1) Member of the ‘Salvation Committee for Peace and Order’ in Kherson (2) Former deputy Mayor of Kherson,,,,,,,,,"(UK Sanctions List Ref):RUS1472 (UK Statement of Reasons):There are reasonable grounds to suspect Tetiana KUZMICH of participation in the so-called ‘Salvation Committee for Peace and Order’ and therefore that she is, or has been involved in providing support for and promoting policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,16/06/2022,16/06/2022,09/08/2022,15415 +KUZMICH,Tetyana,,,,,,,,,10/04/1968,,,Ukraine,,,,,(1) Member of the ‘Salvation Committee for Peace and Order’ in Kherson (2) Former deputy Mayor of Kherson,,,,,,,,,"(UK Sanctions List Ref):RUS1472 (UK Statement of Reasons):There are reasonable grounds to suspect Tetiana KUZMICH of participation in the so-called ‘Salvation Committee for Peace and Order’ and therefore that she is, or has been involved in providing support for and promoting policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,16/06/2022,16/06/2022,09/08/2022,15415 +KUZMICHEV,Alexey,Viktorovich,,,,,Алексей Викторович КУЗЬМИЧЁВ,Cyrillic,Russian,15/10/1962,Kirov,Russia,,,,,,Member of the Supervisory Board of Alfa Group Consortium,,,,,,,,,"(UK Sanctions List Ref):RUS1029 (UK Statement of Reasons):Alexey Viktorovich KUZMICHEV (hereafter KUZMICHEV) was involved in obtaining a benefit from or supporting the Government of Russia through his positions as the co-founder and a member of the Supervisory Board of the Russian-based investment consortium the Alfa Group, a consortium of businesses which includes ABH Holdings SA, which is the holding company for Alfa-Bank Russia (Russia’s largest privately owned bank) and Alfa-Bank Ukraine. Alfa Bank is active in the financial services sector - a sector of strategic significance to the Government of Russia, meaning that KUZMICHEV has derived a benefit from or supported the Government of Russia. KUZMICHEV has also been involved in destabilising Ukraine through Alfa Bank Russia doing business in the unrecognized republics in the east of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14966 +KUZMIN,Dmitry,Gennadyevich,,,,,Дмитрий Геннадьевич КУЗЬМИН,,,28/06/1975,Berezovsky,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0973 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14924 +KUZMIN,Konstantin,Alexandrovich,,,,,КУЗЬМИН Константин Александрович,Cyrillic,Russian,28/11/1976,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1258 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15210 +KUZMIN,Mikhail,Vladimirovich,,,,,Михаил Владимирович Кузьмин,,,05/08/1955,Yekaterinburg (formerly Sverdlovsk),Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0439 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14384 +KUZNETSOV,Stanislav,Konstantinovich,,,,,,,,25/07/1962,Leipzig,Germany,Russia,,,,,Deputy Chairman of Sberbank’s Executive Board,,,,,,,,,"(UK Sanctions List Ref):RUS1590 (UK Statement of Reasons):Stanislav Konstantinovich Kuznetsov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a director, manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK). (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15534 +KUZNETSOV,Artem,Konstantinovich,,,,,Артëм Константинович КУЗНЕЦОВ,,,28/02/1975,Baku,"Former USSR, now Azerbaijan",Russia,,,,,"(1) Deputy Division Head, Tax Crimes Department of the Moscow Branch of the Interior Ministry in 2007. (2) After Magnitsky’s death he was promoted to the Interior Ministry’s Economic Security Department.",,,,,,,,,"(UK Sanctions List Ref):GAC0001 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. KUZNETSOV participated in the fraud through his involvement, in particular, in seizing documents used to secure the fraudulent tax rebate. He interfered in judicial processes and benefited financially from the proceeds of the serious corruption. His actions facilitated or provided support for serious corruption. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14092 +KUZNETSOV,Artyom,Konstantinovich,,,,,,,,28/02/1975,Baku,"Former USSR, now Azerbaijan",Russia,,,,,"(1) Deputy Division Head, Tax Crimes Department of the Moscow Branch of the Interior Ministry in 2007. (2) After Magnitsky’s death he was promoted to the Interior Ministry’s Economic Security Department.",,,,,,,,,"(UK Sanctions List Ref):GAC0001 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. KUZNETSOV participated in the fraud through his involvement, in particular, in seizing documents used to secure the fraudulent tax rebate. He interfered in judicial processes and benefited financially from the proceeds of the serious corruption. His actions facilitated or provided support for serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14092 +KUZNETSOV,Vladislav,Garievich,,,,,Владислав Гариевич Кузнецов,,,18/03/1969,Moscow,Russia,Russia,,,,,So-called ‘First Deputy Chairman’ of the so-called ‘Luhansk People’s Republic’,,,,,,,,,"(UK Sanctions List Ref):RUS1538 (UK Statement of Reasons):Vladislav Garievich KUZNETSOV is an involved person under the Russia (Sanctions)(EU Exit) Regulations 2019 because as the so-called ‘First Deputy Chairman’ of the so-called ‘Luhansk People’s Republic’ he is responsible for, engages in and provides support for policies and action which have and are destabilizing Ukraine, and undermining or threatening the territorial integrity, sovereignty or independence of Ukraine (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15491 +KUZNETSOV,Andrey,Anatolievich,,,,,Кузнецов Андрей Анатольевич,,,29/05/1972,Nizhnyaya Tura,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0441 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14386 +KUZNETSOV,Dmitry,Vadimovich,,,,,Кузнецов Дмитрий Вадимович,,,05/03/1975,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0440 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14385 +KUZNETSOVA,Anna,Yurievna,,,,,А́нна Ю́рьевна Кузнецо́ва,,,03/01/1982,Penza,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0442 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14387 +KUZNETSOV-KRASOVSKY,Anton,Vyacheslavovich,,,,,,,,18/07/1975,Podolsk,Russia,Russia,,,,,"(1) Activist (2) Journalist (3) Political scientist (4) Host of a talk show named ""The Antonyms"" on RT (5) Director of broadcasting at RT",,,,,,,,,"(UK Sanctions List Ref):RUS0764 (UK Statement of Reasons):As a prominent TV presenter in Russia, Anton Krasovsky has provided support for and promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14715 +KUZOVLEV,,,,,,,,,,07/01/1967,"Michurinsk, Tambov oblast",Russia,Russia,,,,,(1) Former so-called 'Commander in Chief of the People's Militia of the Luhansk People's Republic' (2) Former Commander of 8th Army of the Russian Armed Force,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0105 (UK Statement of Reasons):Former so-called Commander in Chief of the People’s Militia of the ‘Lugansk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Former Commander of 8th Army of the Russian Armed Force. Chief of Staff and First Deputy Commander of the Russian Southern Military District. (Gender):Male",Individual,AKA,,Russia,16/02/2015,31/12/2020,31/12/2020,13206 +KUZOVLIOV,,,,,,,,,,07/01/1967,"Michurinsk, Tambov oblast",Russia,Russia,,,,,(1) Former so-called 'Commander in Chief of the People's Militia of the Luhansk People's Republic' (2) Former Commander of 8th Army of the Russian Armed Force,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0105 (UK Statement of Reasons):Former so-called Commander in Chief of the People’s Militia of the ‘Lugansk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Former Commander of 8th Army of the Russian Armed Force. Chief of Staff and First Deputy Commander of the Russian Southern Military District. (Gender):Male",Individual,AKA,,Russia,16/02/2015,31/12/2020,31/12/2020,13206 +KVITKA,Ivan,Ivanovich,,,,,Иван Иванович Квитка,,,04/05/1967,Kalach,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0443 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14388 +KWANG IL,HYON,,,,,,,,,27/05/1961,,,,,,,,Department Director for Scientific Development at the National Aerospace Development Administration,,,,,,,,,(UK Sanctions List Ref):DPR0213 (UN Ref):KPi.015,Individual,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13326 +KWANG-IL,KIM,,,,,,,,,01/09/1969,,,,PS381420397,Issued in Democratic People's Republic of Korea,,,Tanchon Commercial Bank (TCB) official,,,,,,,,,"(UK Sanctions List Ref):DPR0229 (UN Ref):KPi.009 Kim Kwang-il is a Tanchon Commercial Bank (TCB) official. In this capacity, he has facilitated transactions for TCB and the Korea Mining Development Trading Corporation (KOMID). Tanchon was designated by the Committee in April 2009 as the main DPRK financial entity responsible for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons. KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12846 +KYAGULANYI,Alilabaki,,,,,,,,,00/00/1965,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +KYAGULANYI,Alilabaki,,,,,,,,,01/01/1964,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +KYAGULANYI,David,,,,,,,,,00/00/1965,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +KYAGULANYI,David,,,,,,,,,01/01/1964,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +KYAW,Ba,,,,,Staff Sergeant,,,,,,,Myanmar,,,,,Staff Sergeant in the 564th Light Infantry Battalion (LIB) of Myanmar Armed Forces (Tatmadaw),,,,,,,,,"(UK Sanctions List Ref):MYA0010 (UK Statement of Reasons):Staff Sergeant Ba Kyaw of the 546th Light Infantry Brigade of the Myanmar Armed Forces (Tatmadaw) is responsible, through his role as Staff Sergeant, for the commission of and involvement in, serious human rights violations, the repression of the civilian population and actions that threaten the peace, stability or security of Myanmar, in Rakhine State, specifically in and around Maung Nu village in August 2017. These actions include unlawful killings, torture, sexual violence, systematic burning of Rohingya houses and buildings and other inhumane acts. (Gender):Male",Individual,Primary name,,Myanmar,24/12/2018,29/04/2021,11/11/2022,13733 +KYAW,Maung,Maung,,,,,,,,23/07/1964,,Myanmar,Myanmar,,,,,(1) Commander-in-Chief of Air Force (2) Member of State Administration Council,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0020 Air Force Serial BAF1925 (UK Statement of Reasons):On 1 February 2021 the Myanmar military (Tatmadaw), led by Commander-in-Chief Min Aung Hlaing, staged a coup in Myanmar. As part of the coup, Vice-President Swe declared a state of emergency on 1 February transferring the legislative, executive and judicial powers of the state to Min Aung Hlaing. On 2 February, the Tatmadaw established the State Administration Council (SAC), which is chaired by Hlaing, in order to run the functions of the state. General Maung Maung Kyaw was appointed to the SAC on 2 February. The Myanmar security forces have committed serious human rights violations since 1 February 2021: killing a protestor, restricting freedom of assembly and expression including through restricting internet access, arbitrary arrest and detention of opposition leaders and opponents of the coup. The SAC has adopted legislation violating the right to privacy and the right not to be subject to arbitrary detention in Myanmar. As a member of the SAC, Maung Maung Kyaw shares responsibility with its other members for the exercise of state functions since 2 February 2021, including legislation violating human rights, and for the serious human rights violations committed by the Myanmar security forces. As a member of the SAC, General Maung Maung Kyaw is associated with Commander in Chief General Min Aung Hlaing who is a designated person under the Myanmar (Sanctions) Regulations 2021 in respect of actions related to the February 2021 coup. (Gender):Male",Individual,Primary name,,Myanmar,25/02/2021,29/04/2021,11/11/2022,14060 +KYEI NILAR COMPANY LTD,,,,,,,,,,,,,,,,,,,"Room.201, Building (C)",Takhatho Yeikmon Housing,New University Avenue Road,Bahan,,Yangon,,Myanmar,"(UK Sanctions List Ref):MYA0055 (UK Statement of Reasons):The Myanmar Security Forces have a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. In 2017, the Myanmar Security Forces murdered, raped and tortured thousands of Rohingya during the Rakhine clearance operations. 740,000 Rohingya were forced over the border into Bangladesh. Star Sapphire Trading Company Limited has been responsible for the brokering of deals for military goods, including Unmanned Aerial Vehicles (UAVs). Therefore, Star Sapphire Trading Company Limited has been involved in the supply of restricted goods to Myanmar, which have likely been used in military operations. Star Sapphire Trading Company Limited contributed funds to the Myanmar Security Forces in 2017, at fundraising events for the Rakhine clearance operations held by Commander in Chief, Min Aung Hlaing. Star Sapphire Trading Company Limited has therefore made funds and economic resources available to or for the benefit of the Myanmar Security Forces, which could have contributed to serious human rights violations and repression of the civilian population in Myanmar. (Phone number):+95 1 551 536 (Website):www.starsapphiregroup.com",Entity,Primary name variation,,Myanmar,24/08/2022,24/08/2022,24/08/2022,15496 +KYONG HWAN,MUN,,,,,,,,,22/08/1967,,,North Korea,,,381120660,expires 25 March 2016,Overseas Bank of East Land representative,,,,,,,,,(UK Sanctions List Ref):DPR0248 (UN Ref):KPi.071 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13566 +KYONG IL,KIM,,,,,,,,,01/08/1979,,,North Korea,836210029,,,,Kim Kyong Il is a Foreign Trade Bank deputy chief representative in Libya,,,,,,,,Libya,(UK Sanctions List Ref):DPR0230 (UN Ref):KPi.067 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13562 +KYONG OK,KIM,,,,,,,,,00/00/1937,,,North Korea,,,,,"Vice Director of the Organization and Guidance Department, which directs key personnel appointments for the Workers’ Party of Korea and the DPRK’s military",,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0231 (UN Ref):KPi.045,Individual,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,16/02/2022,13475 +KYONG OK,KIM,,,,,,,,,00/00/1938,,,North Korea,,,,,"Vice Director of the Organization and Guidance Department, which directs key personnel appointments for the Workers’ Party of Korea and the DPRK’s military",,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0231 (UN Ref):KPi.045,Individual,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,16/02/2022,13475 +KYO'NG-HWAN,Mun,,,,,,,,,22/08/1967,,,North Korea,,,381120660,expires 25 March 2016,Overseas Bank of East Land representative,,,,,,,,,(UK Sanctions List Ref):DPR0248 (UN Ref):KPi.071 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13566 +KYO'NG-IL,Kim,,,,,,,,,01/08/1979,,,North Korea,836210029,,,,Kim Kyong Il is a Foreign Trade Bank deputy chief representative in Libya,,,,,,,,Libya,(UK Sanctions List Ref):DPR0230 (UN Ref):KPi.067 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13562 +KY'ONG-SU,RA,,,,,,,,,04/06/1954,,,North Korea,645120196,,,,Tanchon Commercial Bank (TCB) official,,,,,,,,,"(UK Sanctions List Ref):DPR0259 (UN Ref):KPi.008 Ra Ky'ong-Su is a Tanchon Commercial Bank (TCB) official. In this capacity he has facilitated transactions for TCB. Tanchon was designated by the Committee in April 2009 as the main DPRK financial entity responsible for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,19/02/2013,22/01/2013,02/08/2022,12845 +KYU,KIM,,,,,,,,,30/07/1968,,,North Korea,,,,,Korea Mining Development Trading Corporation (KOMID) External Affairs Officer,,,,,,,,,(UK Sanctions List Ref):DPR0232 (UN Ref):KPi.022,Individual,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13333 +KYUNG-SU,Ra,,,,,,,,,04/06/1954,,,North Korea,645120196,,,,Tanchon Commercial Bank (TCB) official,,,,,,,,,"(UK Sanctions List Ref):DPR0259 (UN Ref):KPi.008 Ra Ky'ong-Su is a Tanchon Commercial Bank (TCB) official. In this capacity he has facilitated transactions for TCB. Tanchon was designated by the Committee in April 2009 as the main DPRK financial entity responsible for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons. (Gender):Male",Individual,AKA,Good quality,Democratic People's Republic of Korea,19/02/2013,22/01/2013,02/08/2022,12845 +LAABOUDI,MORAD,,,,,,,,,26/02/1993,,Morocco,Morocco,UZ6430184,,CD595054,,,,,,,,,,Turkey,"(UK Sanctions List Ref):AQD0251 (UN Ref):QDi.383 Facilitator for travel of foreign terrorist fighters to join Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), in Syrian Arab Republic. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930723",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13316 +LAAGOUB,ABDELKADER,,,,,,عبد القادر لاغوب,,,23/04/1966,Casablanca,Morocco,Morocco,D-379312,Morocco number,(1) LGBBLK66D23Z330U (2) DE-473900,(1) Italian fiscal code (2) Moroccan national identity card,,Number 4,Via Europa,Paderno Ponchielli,,,Cremona,,Italy,(UK Sanctions List Ref):AQD0098 (UN Ref):QDi.190 Father’s name is Mamoune Mohamed. Mother’s name is Fatna Ahmed. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,01/08/2005,29/07/2005,31/12/2020,8685 +LAAICO,,,,,,,,,,,,,,,,,,,,,,,,Janzour,76351,Libya,"(UK Sanctions List Ref):LIB0001 (UK Statement of Reasons):Subsidiary of the Libyan Investment Authority. Associated with Muammar Qadhafi and involved with associated persons. (Phone number):00 218 (21) 4890146. 00 218 (21) 4890586. 00 218 (21) 4891867. 00 218 (21) 4892613. 00 218 (21) 4893800 (Website):https://www.laico.ly/compny-overview (Email address):info@laaico.com (Parent company):Libyan Investment Authority, designated in UNSCR 1970.",Entity,AKA,,Libya,22/03/2011,31/12/2020,31/12/2020,11710 +LAAICO,,,,,,,,,,,,,,,,,,,,,,,,Tripoli,81370,Libya,"(UK Sanctions List Ref):LIB0001 (UK Statement of Reasons):Subsidiary of the Libyan Investment Authority. Associated with Muammar Qadhafi and involved with associated persons. (Phone number):00 218 (21) 4890146. 00 218 (21) 4890586. 00 218 (21) 4891867. 00 218 (21) 4892613. 00 218 (21) 4893800 (Website):https://www.laico.ly/compny-overview (Email address):info@laaico.com (Parent company):Libyan Investment Authority, designated in UNSCR 1970.",Entity,AKA,,Libya,22/03/2011,31/12/2020,31/12/2020,11710 +LABELLA,Omar,,,,,,,,,04/10/1972,"Sitio Banga Maiti, Barangay Tranghawan, Lambunao, Iloilo",Philippines,Philippines,(1) MM611523 (2) EE947317 (3) P421967,(1) Philippines number (2004) (2) Philippines number 2000-2001 (3) Philippines number (1995-1997),,,,10th Avenue,,,,,Caloocan City,,Philippines,(UK Sanctions List Ref):AQD0296 (UN Ref):QDi.247 Spiritual leader of the Rajah Solaiman Movement (QDe.128). Associated with Khadafi Abubakar Janjalani (deceased). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10667 +LABOLA,Ali,Mohammed,,,,,,,,00/00/1994,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LABOLA,Ali,Mohammed,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LABOLA,Ali,Mohammed,,,,,,,,00/00/1995,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LABOLA,Ali,Mohammed,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LABOLO,Ali,Mohammad,,,,,,,,00/00/1994,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LABOLO,Ali,Mohammad,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LABOLO,Ali,Mohammad,,,,,,,,00/00/1995,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LABOLO,Ali,Mohammad,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LAGUNOVICH,Andrei,Aliaksandravich,,,,,,,,,,,Belarus,,,,,"Judge of the Sovetsky district court in Gomel/Homel/Homyel, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0093 (UK Statement of Reasons):Andrei Lahunovich is a Judge of the Sovetsky District Court in Gomel. In his position he was responsible for numerous politically motivated rulings against journalists and activists who were taking part in protests. He therefore bears responsibility for undermining the rule of law and through his actions as a judge, he has contributed to the repression of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14017 +LAGUNOVICH,Andrey,Alexandrovich,,,,,,,,,,,Belarus,,,,,"Judge of the Sovetsky district court in Gomel/Homel/Homyel, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0093 (UK Statement of Reasons):Andrei Lahunovich is a Judge of the Sovetsky District Court in Gomel. In his position he was responsible for numerous politically motivated rulings against journalists and activists who were taking part in protests. He therefore bears responsibility for undermining the rule of law and through his actions as a judge, he has contributed to the repression of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14017 +LAHBOUS,MOHAMED,,,,,,محمد لحبوس,,,00/00/1978,,Mali,Mali,,,,,,,,,,,,,Mali,(UK Sanctions List Ref):AQD0240 (UN Ref):QDi.319 Member of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5720103,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/11/2013,24/10/2013,31/12/2020,12886 +LAHUNOVICH,Andrei,Aliaksandravich,,,,,Андрэй Аляксандравiч ЛАГУНОВIЧ,,,,,,Belarus,,,,,"Judge of the Sovetsky district court in Gomel/Homel/Homyel, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0093 (UK Statement of Reasons):Andrei Lahunovich is a Judge of the Sovetsky District Court in Gomel. In his position he was responsible for numerous politically motivated rulings against journalists and activists who were taking part in protests. He therefore bears responsibility for undermining the rule of law and through his actions as a judge, he has contributed to the repression of civil society and democratic opposition. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14017 +LAHUNOVICH,Andrey,Alexandrovich,,,,,Андрей Александрович ЛАГУНОВИЧ,,,,,,Belarus,,,,,"Judge of the Sovetsky district court in Gomel/Homel/Homyel, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0093 (UK Statement of Reasons):Andrei Lahunovich is a Judge of the Sovetsky District Court in Gomel. In his position he was responsible for numerous politically motivated rulings against journalists and activists who were taking part in protests. He therefore bears responsibility for undermining the rule of law and through his actions as a judge, he has contributed to the repression of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14017 +LAICO,,,,,,,,,,,,,,,,,,,,,,,,Janzour,76351,Libya,"(UK Sanctions List Ref):LIB0001 (UK Statement of Reasons):Subsidiary of the Libyan Investment Authority. Associated with Muammar Qadhafi and involved with associated persons. (Phone number):00 218 (21) 4890146. 00 218 (21) 4890586. 00 218 (21) 4891867. 00 218 (21) 4892613. 00 218 (21) 4893800 (Website):https://www.laico.ly/compny-overview (Email address):info@laaico.com (Parent company):Libyan Investment Authority, designated in UNSCR 1970.",Entity,AKA,,Libya,22/03/2011,31/12/2020,31/12/2020,11710 +LAICO,,,,,,,,,,,,,,,,,,,,,,,,Tripoli,81370,Libya,"(UK Sanctions List Ref):LIB0001 (UK Statement of Reasons):Subsidiary of the Libyan Investment Authority. Associated with Muammar Qadhafi and involved with associated persons. (Phone number):00 218 (21) 4890146. 00 218 (21) 4890586. 00 218 (21) 4891867. 00 218 (21) 4892613. 00 218 (21) 4893800 (Website):https://www.laico.ly/compny-overview (Email address):info@laaico.com (Parent company):Libyan Investment Authority, designated in UNSCR 1970.",Entity,AKA,,Libya,22/03/2011,31/12/2020,31/12/2020,11710 +LAJNAT UL MASA EIDATUL AFGHANIA,,,,,,,,,,,,,,,,,,,Cheprahar Hadda,Mia Omar Sabaqah School,,,,Jalalabad,,Afghanistan,(UK Sanctions List Ref):AQD0004 (UN Ref):QDe.069 Associated with the Revival of Islamic Heritage Society (QDe.070). Abu Bakr al-Jaziri (QDi.058) served as finance chief of ASC. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235582,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,12/01/2022,6940 +LAJNAT UL MASA EIDATUL AFGHANIA,,,,,,,,,,,,,,,,,,,Headquarters – G.T. Road (probably Grand Trunk Road),near Pushtoon Garhi Pabbi,,,,Peshawar,,Pakistan,(UK Sanctions List Ref):AQD0004 (UN Ref):QDe.069 Associated with the Revival of Islamic Heritage Society (QDe.070). Abu Bakr al-Jaziri (QDi.058) served as finance chief of ASC. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235582,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,12/01/2022,6940 +LAKAY,,,,,,,,,,12/03/1966,"Sangandaan, Caloocan City",Philippines,Philippines,AA780554,,,,,"50, Purdue Street",,,,Cubao,Quezon City,,Philippines,(UK Sanctions List Ref):AQD0195 (UN Ref):QDi.244 Founder and leader of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1523805,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10664 +LAKHAL,MOHAMED,,,,,,محمد لكحل,,,05/02/1969,(1) Tripoli (2) Tunis,(1) Libya (2) Tunisia,Tunisia,,,W374031,Issue date: 11/04/2011,,,,,,,,,,(UK Sanctions List Ref):AQD0241 (UN Ref):QDi.062 Professor of Chemistry. Deported from Italy to Tunisia on 27 Aug. 2006. Legally changed family name from Aouani to Lakhal in 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7087 +LAKHAL,MOHAMED,,,,,,محمد لكحل,,,05/02/1970,(1) Tripoli (2) Tunis,(1) Libya (2) Tunisia,Tunisia,,,W374031,Issue date: 11/04/2011,,,,,,,,,,(UK Sanctions List Ref):AQD0241 (UN Ref):QDi.062 Professor of Chemistry. Deported from Italy to Tunisia on 27 Aug. 2006. Legally changed family name from Aouani to Lakhal in 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7087 +LAKHVI,ZAKI-UR-REHMAN,,,,,,,,,30/12/1960,Okara,Pakistan,Pakistan,,,61101-9618232-1,,,Barahkoh,P.O. DO,,,,Tehsil and District Islamabad,,Pakistan,(UK Sanctions List Ref):AQD0342 (UN Ref):QDi.264 Chief of operations of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543499. Pakistan (location as at May 2008),Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9216 +LAKHVI,ZAKI-UR-REHMAN,,,,,,,,,30/12/1960,Okara,Pakistan,Pakistan,,,61101-9618232-1,,,Chak No. 18/IL,Rinala Khurd,Tehsil Rinala Khurd,,,District Okara,,Pakistan,(UK Sanctions List Ref):AQD0342 (UN Ref):QDi.264 Chief of operations of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543499. Pakistan (location as at May 2008),Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9216 +LAKVI,Zaki,Ur-Rehman,,,,,,,,30/12/1960,Okara,Pakistan,Pakistan,,,61101-9618232-1,,,Barahkoh,P.O. DO,,,,Tehsil and District Islamabad,,Pakistan,(UK Sanctions List Ref):AQD0342 (UN Ref):QDi.264 Chief of operations of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543499. Pakistan (location as at May 2008),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9216 +LAKVI,Zaki,Ur-Rehman,,,,,,,,30/12/1960,Okara,Pakistan,Pakistan,,,61101-9618232-1,,,Chak No. 18/IL,Rinala Khurd,Tehsil Rinala Khurd,,,District Okara,,Pakistan,(UK Sanctions List Ref):AQD0342 (UN Ref):QDi.264 Chief of operations of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543499. Pakistan (location as at May 2008),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9216 +LAKVI,Zakir,Rehman,,,,,,,,30/12/1960,Okara,Pakistan,Pakistan,,,61101-9618232-1,,,Barahkoh,P.O. DO,,,,Tehsil and District Islamabad,,Pakistan,(UK Sanctions List Ref):AQD0342 (UN Ref):QDi.264 Chief of operations of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543499. Pakistan (location as at May 2008),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9216 +LAKVI,Zakir,Rehman,,,,,,,,30/12/1960,Okara,Pakistan,Pakistan,,,61101-9618232-1,,,Chak No. 18/IL,Rinala Khurd,Tehsil Rinala Khurd,,,District Okara,,Pakistan,(UK Sanctions List Ref):AQD0342 (UN Ref):QDi.264 Chief of operations of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543499. Pakistan (location as at May 2008),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9216 +LALA,Loi,,,,,Haji,,,,15/10/1963,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +LALA,Loi,,,,,Haji,,,,14/02/1973,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +LALA,Loi,,,,,Haji,,,,00/00/1967,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +LALA,Loi,,,,,Haji,,,,00/00/1957,"(1) Kandahar Province. (2) Yatimchai village, Musa Qala District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0116 (UN Ref):TAi.148 Has managed a drug trafficking network in Helmand Province, Afghanistan. Has regularly traveled to Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,11/02/2022,11274 +LALA AKHUND,Abdul Razaq,Akhund,,,,Mullah,عبد الرزاق آخوند لا لا آخوند,,,00/00/1958,"Spin Boldak District, Kandahar Province (area bordering Chaman District, Quetta, Pakistan)",Afghanistan,Afghanistan,,,,,(1) Minister of Interior Affairs under the Taliban regime (2) Chief of Kabul Police under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0044 (UN Ref):TAi.053 Member of Taliban Supreme Council as at June 2008. Deputy of Mullah Mohammed Omar (TAi.004) as at Mar. 2010. Member of the Supervision Commission of the Taliban as of mid-2013. Involved in drug trafficking. Believed to be in Afghanistan/ Pakistan border area. Belongs to Achekzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6914 +LALOBO,Ali,,,,,,,,,00/00/1994,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LALOBO,Ali,,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LALOBO,Ali,,,,,,,,,00/00/1995,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LALOBO,Ali,,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LALOBO,Ali,Bashir,,,,,,,,00/00/1994,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LALOBO,Ali,Bashir,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LALOBO,Ali,Bashir,,,,,,,,00/00/1995,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LALOBO,Ali,Bashir,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LALOBO,Ali,Mohammed,,,,,,,,00/00/1994,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LALOBO,Ali,Mohammed,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LALOBO,Ali,Mohammed,,,,,,,,00/00/1995,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LALOBO,Ali,Mohammed,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +LAMEIKIN,Dmitry,Viktorovich,,,,,Ламейкин Дмитрий Викторович,,,27/02/1977,Krasnodar,Russia,Russia,512058098,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0561 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14506 +LANTRATOVA,Yana,Valerievna,,,,,Лантратова Яна Валерьевна,,,14/12/1988,St Petersburg (formerly Leningrad),Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0444 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14389 +LAP GREEN HOLDING COMPANY,,,,,,,,,,,,,,,,,,,9th Floor,Ebene Tower,52,Cybercity,,Ebene,,Mauritius,"(UK Sanctions List Ref):LIB0011 (UK Statement of Reasons):A subsidiary of the Libyan African Investment Portfolio, which is itself a subsidiary of the Libyan Investment Authority.",Entity,AKA,,Libya,14/04/2011,31/12/2020,31/12/2020,11753 +LAP GREEN NETWORKS,,,,,,,,,,,,,,,,,,,9th Floor,Ebene Tower,52,Cybercity,,Ebene,,Mauritius,"(UK Sanctions List Ref):LIB0011 (UK Statement of Reasons):A subsidiary of the Libyan African Investment Portfolio, which is itself a subsidiary of the Libyan Investment Authority.",Entity,Primary name,,Libya,14/04/2011,31/12/2020,31/12/2020,11753 +LAP GREENN,,,,,,,,,,,,,,,,,,,9th Floor,Ebene Tower,52,Cybercity,,Ebene,,Mauritius,"(UK Sanctions List Ref):LIB0011 (UK Statement of Reasons):A subsidiary of the Libyan African Investment Portfolio, which is itself a subsidiary of the Libyan Investment Authority.",Entity,AKA,,Libya,14/04/2011,31/12/2020,31/12/2020,11753 +LAPIN,Aleksander,Pavlovich,,,,Colonel General,ЛАПИН Александр Павлович,,,01/01/1964,Kazan,Russia,Russia,,,,,Commander Central Military District,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0829 (UK Statement of Reasons):Colonel General Aleksandr Pavlovich LAPIN is a member of the Armed Forces of the Russian Federation, he currently holds the position of Commander of the Central Military District. He is considered to have been in direct command of and/ or to have otherwise been involved in the deployment of Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14780 +LAPSHOV,Pavel,,,,,,,,,07/07/1976,,Russia,Russia,726615040,(Expiry: 01 Nov 2023),,,Head of the Organised Crime and Corruption Directorate in the Investigative Committee in the Ministry of the Interior in Russia,,,,,,,,,"(UK Sanctions List Ref):GHR0023 (UK Statement of Reasons):Pavel Lapshov was the Head of the Investigative Department of the Ministry of Internal Affairs in December 2011 after Sergei Magnitsky’s death in detention on 16 November 2009. In this role, Lapshov was responsible for the investigation into the mistreatment and death of Sergei Magnitsky in detention and intentionally or recklessly failed to fulfil that responsibility, in particular by concealing evidence of the circumstances surrounding his death. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13884 +LAPTEVA,Lesya,Mikhaylovna,,,,,,,,11/03/1976,Dzhambul/Jambul/Taraz,Kazakhstan,Ukraine,,,,,"Former 'Minister of Education, Science, Culture and Religion' of the so-called 'Luhansk People's Republic'.",,,,,,,,,"(UK Sanctions List Ref):RUS0016 (UK Statement of Reasons):Former ""Minister of Education, Science Culture and Religion"" of the so-called 'Lugansk People's Republic'. In taking on and acting in this capacity, Lapteva has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Female",Individual,Primary name,,Russia,02/12/2014,31/12/2020,16/09/2022,13178 +LAPTEVA,Lesya,Mikhaylovna,,,,,Леся Михайловна ЛАПТЕВА,,,11/03/1976,Dzhambul/Jambul/Taraz,Kazakhstan,Ukraine,,,,,"Former 'Minister of Education, Science, Culture and Religion' of the so-called 'Luhansk People's Republic'.",,,,,,,,,"(UK Sanctions List Ref):RUS0016 (UK Statement of Reasons):Former ""Minister of Education, Science Culture and Religion"" of the so-called 'Lugansk People's Republic'. In taking on and acting in this capacity, Lapteva has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13178 +LAPTIEVA,Lesya,Mykhaylivna,,,,,Леся Михайлiвна ЛАПТЄВА,,,11/03/1976,Dzhambul/Jambul/Taraz,Kazakhstan,Ukraine,,,,,"Former 'Minister of Education, Science, Culture and Religion' of the so-called 'Luhansk People's Republic'.",,,,,,,,,"(UK Sanctions List Ref):RUS0016 (UK Statement of Reasons):Former ""Minister of Education, Science Culture and Religion"" of the so-called 'Lugansk People's Republic'. In taking on and acting in this capacity, Lapteva has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13178 +LARIJANI,Amoli,,,,,,,,,12/03/1961,Najaf,Iraq,,,,,,(1) Chair of the Expediency Council (since Dec 2018) (2) Member of the Assembly of Experts (since 1999),,,,,,,,,"(UK Sanctions List Ref):IHR0074 Former Head of the Judiciary (2009 – 2019). (UK Statement of Reasons):Head of the Judiciary. The Head of the Judiciary is required to consent to and sign off every qisas (retribution), hodoud (crimes against God) and ta'zirat (crimes against the state) punishment. This includes sentences attracting the death penalty, floggings and amputations. In this regard, he has personally signed off numerous death penalty sentences, contravening international standards, including stoning, executions by suspension strangulation, execution of juveniles, and public executions such as those where prisoners have been hung from bridges in front of crowds of thousands. Therefore, he has contributed to a high number of executions. He has also permitted corporal punishment sentences such as amputations and the dripping of acid into the eyes of the convicted. Since Sadeq Larijani took office, arbitrary arrests of political prisoners, human rights defenders and minorities have increased markedly. Sadeq Larijani also bears responsibility for systemic failures in the Iranian judicial process to respect the right to a fair trial. (Gender):Male",Individual,AKA,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12649 +LARIJANI,Amoli,,,,,,,,,00/00/1960,Najaf,Iraq,,,,,,(1) Chair of the Expediency Council (since Dec 2018) (2) Member of the Assembly of Experts (since 1999),,,,,,,,,"(UK Sanctions List Ref):IHR0074 Former Head of the Judiciary (2009 – 2019). (UK Statement of Reasons):Head of the Judiciary. The Head of the Judiciary is required to consent to and sign off every qisas (retribution), hodoud (crimes against God) and ta'zirat (crimes against the state) punishment. This includes sentences attracting the death penalty, floggings and amputations. In this regard, he has personally signed off numerous death penalty sentences, contravening international standards, including stoning, executions by suspension strangulation, execution of juveniles, and public executions such as those where prisoners have been hung from bridges in front of crowds of thousands. Therefore, he has contributed to a high number of executions. He has also permitted corporal punishment sentences such as amputations and the dripping of acid into the eyes of the convicted. Since Sadeq Larijani took office, arbitrary arrests of political prisoners, human rights defenders and minorities have increased markedly. Sadeq Larijani also bears responsibility for systemic failures in the Iranian judicial process to respect the right to a fair trial. (Gender):Male",Individual,AKA,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12649 +LARIJANI,Amoli,,,,,,,,,00/08/1961,Najaf,Iraq,,,,,,(1) Chair of the Expediency Council (since Dec 2018) (2) Member of the Assembly of Experts (since 1999),,,,,,,,,"(UK Sanctions List Ref):IHR0074 Former Head of the Judiciary (2009 – 2019). (UK Statement of Reasons):Head of the Judiciary. The Head of the Judiciary is required to consent to and sign off every qisas (retribution), hodoud (crimes against God) and ta'zirat (crimes against the state) punishment. This includes sentences attracting the death penalty, floggings and amputations. In this regard, he has personally signed off numerous death penalty sentences, contravening international standards, including stoning, executions by suspension strangulation, execution of juveniles, and public executions such as those where prisoners have been hung from bridges in front of crowds of thousands. Therefore, he has contributed to a high number of executions. He has also permitted corporal punishment sentences such as amputations and the dripping of acid into the eyes of the convicted. Since Sadeq Larijani took office, arbitrary arrests of political prisoners, human rights defenders and minorities have increased markedly. Sadeq Larijani also bears responsibility for systemic failures in the Iranian judicial process to respect the right to a fair trial. (Gender):Male",Individual,AKA,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12649 +LARIJANI,Sadegh,,,,,,,,,12/03/1961,Najaf,Iraq,,,,,,(1) Chair of the Expediency Council (since Dec 2018) (2) Member of the Assembly of Experts (since 1999),,,,,,,,,"(UK Sanctions List Ref):IHR0074 Former Head of the Judiciary (2009 – 2019). (UK Statement of Reasons):Head of the Judiciary. The Head of the Judiciary is required to consent to and sign off every qisas (retribution), hodoud (crimes against God) and ta'zirat (crimes against the state) punishment. This includes sentences attracting the death penalty, floggings and amputations. In this regard, he has personally signed off numerous death penalty sentences, contravening international standards, including stoning, executions by suspension strangulation, execution of juveniles, and public executions such as those where prisoners have been hung from bridges in front of crowds of thousands. Therefore, he has contributed to a high number of executions. He has also permitted corporal punishment sentences such as amputations and the dripping of acid into the eyes of the convicted. Since Sadeq Larijani took office, arbitrary arrests of political prisoners, human rights defenders and minorities have increased markedly. Sadeq Larijani also bears responsibility for systemic failures in the Iranian judicial process to respect the right to a fair trial. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12649 +LARIJANI,Sadegh,,,,,,,,,00/00/1960,Najaf,Iraq,,,,,,(1) Chair of the Expediency Council (since Dec 2018) (2) Member of the Assembly of Experts (since 1999),,,,,,,,,"(UK Sanctions List Ref):IHR0074 Former Head of the Judiciary (2009 – 2019). (UK Statement of Reasons):Head of the Judiciary. The Head of the Judiciary is required to consent to and sign off every qisas (retribution), hodoud (crimes against God) and ta'zirat (crimes against the state) punishment. This includes sentences attracting the death penalty, floggings and amputations. In this regard, he has personally signed off numerous death penalty sentences, contravening international standards, including stoning, executions by suspension strangulation, execution of juveniles, and public executions such as those where prisoners have been hung from bridges in front of crowds of thousands. Therefore, he has contributed to a high number of executions. He has also permitted corporal punishment sentences such as amputations and the dripping of acid into the eyes of the convicted. Since Sadeq Larijani took office, arbitrary arrests of political prisoners, human rights defenders and minorities have increased markedly. Sadeq Larijani also bears responsibility for systemic failures in the Iranian judicial process to respect the right to a fair trial. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12649 +LARIJANI,Sadegh,,,,,,,,,00/08/1961,Najaf,Iraq,,,,,,(1) Chair of the Expediency Council (since Dec 2018) (2) Member of the Assembly of Experts (since 1999),,,,,,,,,"(UK Sanctions List Ref):IHR0074 Former Head of the Judiciary (2009 – 2019). (UK Statement of Reasons):Head of the Judiciary. The Head of the Judiciary is required to consent to and sign off every qisas (retribution), hodoud (crimes against God) and ta'zirat (crimes against the state) punishment. This includes sentences attracting the death penalty, floggings and amputations. In this regard, he has personally signed off numerous death penalty sentences, contravening international standards, including stoning, executions by suspension strangulation, execution of juveniles, and public executions such as those where prisoners have been hung from bridges in front of crowds of thousands. Therefore, he has contributed to a high number of executions. He has also permitted corporal punishment sentences such as amputations and the dripping of acid into the eyes of the convicted. Since Sadeq Larijani took office, arbitrary arrests of political prisoners, human rights defenders and minorities have increased markedly. Sadeq Larijani also bears responsibility for systemic failures in the Iranian judicial process to respect the right to a fair trial. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12649 +LARIJANI,Sadeq,,,,,,صادق اردشیر لاریجانی‎‎,,,12/03/1961,Najaf,Iraq,,,,,,(1) Chair of the Expediency Council (since Dec 2018) (2) Member of the Assembly of Experts (since 1999),,,,,,,,,"(UK Sanctions List Ref):IHR0074 Former Head of the Judiciary (2009 – 2019). (UK Statement of Reasons):Head of the Judiciary. The Head of the Judiciary is required to consent to and sign off every qisas (retribution), hodoud (crimes against God) and ta'zirat (crimes against the state) punishment. This includes sentences attracting the death penalty, floggings and amputations. In this regard, he has personally signed off numerous death penalty sentences, contravening international standards, including stoning, executions by suspension strangulation, execution of juveniles, and public executions such as those where prisoners have been hung from bridges in front of crowds of thousands. Therefore, he has contributed to a high number of executions. He has also permitted corporal punishment sentences such as amputations and the dripping of acid into the eyes of the convicted. Since Sadeq Larijani took office, arbitrary arrests of political prisoners, human rights defenders and minorities have increased markedly. Sadeq Larijani also bears responsibility for systemic failures in the Iranian judicial process to respect the right to a fair trial. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12649 +LARIJANI,Sadeq,,,,,,صادق اردشیر لاریجانی‎‎,,,00/00/1960,Najaf,Iraq,,,,,,(1) Chair of the Expediency Council (since Dec 2018) (2) Member of the Assembly of Experts (since 1999),,,,,,,,,"(UK Sanctions List Ref):IHR0074 Former Head of the Judiciary (2009 – 2019). (UK Statement of Reasons):Head of the Judiciary. The Head of the Judiciary is required to consent to and sign off every qisas (retribution), hodoud (crimes against God) and ta'zirat (crimes against the state) punishment. This includes sentences attracting the death penalty, floggings and amputations. In this regard, he has personally signed off numerous death penalty sentences, contravening international standards, including stoning, executions by suspension strangulation, execution of juveniles, and public executions such as those where prisoners have been hung from bridges in front of crowds of thousands. Therefore, he has contributed to a high number of executions. He has also permitted corporal punishment sentences such as amputations and the dripping of acid into the eyes of the convicted. Since Sadeq Larijani took office, arbitrary arrests of political prisoners, human rights defenders and minorities have increased markedly. Sadeq Larijani also bears responsibility for systemic failures in the Iranian judicial process to respect the right to a fair trial. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12649 +LARIJANI,Sadeq,,,,,,صادق اردشیر لاریجانی‎‎,,,00/08/1961,Najaf,Iraq,,,,,,(1) Chair of the Expediency Council (since Dec 2018) (2) Member of the Assembly of Experts (since 1999),,,,,,,,,"(UK Sanctions List Ref):IHR0074 Former Head of the Judiciary (2009 – 2019). (UK Statement of Reasons):Head of the Judiciary. The Head of the Judiciary is required to consent to and sign off every qisas (retribution), hodoud (crimes against God) and ta'zirat (crimes against the state) punishment. This includes sentences attracting the death penalty, floggings and amputations. In this regard, he has personally signed off numerous death penalty sentences, contravening international standards, including stoning, executions by suspension strangulation, execution of juveniles, and public executions such as those where prisoners have been hung from bridges in front of crowds of thousands. Therefore, he has contributed to a high number of executions. He has also permitted corporal punishment sentences such as amputations and the dripping of acid into the eyes of the convicted. Since Sadeq Larijani took office, arbitrary arrests of political prisoners, human rights defenders and minorities have increased markedly. Sadeq Larijani also bears responsibility for systemic failures in the Iranian judicial process to respect the right to a fair trial. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12649 +LARIJANI,Sadeq,Ardeshir,,,,,,,,12/03/1961,Najaf,Iraq,,,,,,(1) Chair of the Expediency Council (since Dec 2018) (2) Member of the Assembly of Experts (since 1999),,,,,,,,,"(UK Sanctions List Ref):IHR0074 Former Head of the Judiciary (2009 – 2019). (UK Statement of Reasons):Head of the Judiciary. The Head of the Judiciary is required to consent to and sign off every qisas (retribution), hodoud (crimes against God) and ta'zirat (crimes against the state) punishment. This includes sentences attracting the death penalty, floggings and amputations. In this regard, he has personally signed off numerous death penalty sentences, contravening international standards, including stoning, executions by suspension strangulation, execution of juveniles, and public executions such as those where prisoners have been hung from bridges in front of crowds of thousands. Therefore, he has contributed to a high number of executions. He has also permitted corporal punishment sentences such as amputations and the dripping of acid into the eyes of the convicted. Since Sadeq Larijani took office, arbitrary arrests of political prisoners, human rights defenders and minorities have increased markedly. Sadeq Larijani also bears responsibility for systemic failures in the Iranian judicial process to respect the right to a fair trial. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12649 +LARIJANI,Sadeq,Ardeshir,,,,,,,,00/00/1960,Najaf,Iraq,,,,,,(1) Chair of the Expediency Council (since Dec 2018) (2) Member of the Assembly of Experts (since 1999),,,,,,,,,"(UK Sanctions List Ref):IHR0074 Former Head of the Judiciary (2009 – 2019). (UK Statement of Reasons):Head of the Judiciary. The Head of the Judiciary is required to consent to and sign off every qisas (retribution), hodoud (crimes against God) and ta'zirat (crimes against the state) punishment. This includes sentences attracting the death penalty, floggings and amputations. In this regard, he has personally signed off numerous death penalty sentences, contravening international standards, including stoning, executions by suspension strangulation, execution of juveniles, and public executions such as those where prisoners have been hung from bridges in front of crowds of thousands. Therefore, he has contributed to a high number of executions. He has also permitted corporal punishment sentences such as amputations and the dripping of acid into the eyes of the convicted. Since Sadeq Larijani took office, arbitrary arrests of political prisoners, human rights defenders and minorities have increased markedly. Sadeq Larijani also bears responsibility for systemic failures in the Iranian judicial process to respect the right to a fair trial. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12649 +LARIJANI,Sadeq,Ardeshir,,,,,,,,00/08/1961,Najaf,Iraq,,,,,,(1) Chair of the Expediency Council (since Dec 2018) (2) Member of the Assembly of Experts (since 1999),,,,,,,,,"(UK Sanctions List Ref):IHR0074 Former Head of the Judiciary (2009 – 2019). (UK Statement of Reasons):Head of the Judiciary. The Head of the Judiciary is required to consent to and sign off every qisas (retribution), hodoud (crimes against God) and ta'zirat (crimes against the state) punishment. This includes sentences attracting the death penalty, floggings and amputations. In this regard, he has personally signed off numerous death penalty sentences, contravening international standards, including stoning, executions by suspension strangulation, execution of juveniles, and public executions such as those where prisoners have been hung from bridges in front of crowds of thousands. Therefore, he has contributed to a high number of executions. He has also permitted corporal punishment sentences such as amputations and the dripping of acid into the eyes of the convicted. Since Sadeq Larijani took office, arbitrary arrests of political prisoners, human rights defenders and minorities have increased markedly. Sadeq Larijani also bears responsibility for systemic failures in the Iranian judicial process to respect the right to a fair trial. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12649 +LASER SCIENCE AND TECHNOLOGY NATIONAL LABORATORY,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0102 (UK Statement of Reasons):An entity that has supplied materials for use in gas centrifuge component production, and has been directly involved in construction planning for one of Iran's uranium enrichment sites. Fomerly known as Paya Partov. (Phone number):(1) +98 21 88373421 (2) +98 21 88638214 (Website):www.payapartov.com (Email address):service@payapartov.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11556 +LASHKAR E TAYYABA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +LASHKAR I JHANGVI,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0064 (UN Ref):QDe.096 Based primarily in Pakistan’s Punjab region and in the city of Karachi. Active in Pakistan although banned as at 2010. Review pursuant to Security Council resolution 2161 (2014) was concluded on 23 Dec. 2016. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282017,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,03/02/2003,03/02/2003,12/01/2022,7242 +LASHKAR-E-TAYYIBA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +LASHKAR-E-TOIBA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +LASHKAR-I-TAIBA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +LASKAR 99,,,,,,,,,,,,,,,,,,,JI. Semenromo number 58,04/XV Ngruki,Cemani,Grogol,Sukoharjo,Jawa Tengah,,Indonesia,"(UK Sanctions List Ref):AQD0060 (UN Ref):QDe.133 A group affiliated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), that has perpetrated attacks in Indonesia. Founded and led by Abu Bakar Ba'asyir (QDi.217). Established on 27 Jul. 2008 in Solo, Indonesia. Had been associated with Jemmah Islamiya (JI) (QDe.092). Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 June 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Website: http://ansharuttauhid.com/ INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282133 (Phone number):0271-2167285 (Email address):info@ansharuttauhid.com",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,23/03/2012,12/03/2012,12/01/2022,12553 +LASYAKIN,Alexander,Mikhailovich,,,,,,,,21/07/1957,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0040 (UK Statement of Reasons):Lasyakin is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13956 +LASYAKIN,Alexsander,Mikhailovich,,,,,,,,21/07/1957,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0040 (UK Statement of Reasons):Lasyakin is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13956 +LASYAKIN,Aliaksandr,Mikhailavich,,,,,Аляксандр Міхайлавіч ЛАСЯКІН,,,21/07/1957,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0040 (UK Statement of Reasons):Lasyakin is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,31/12/2020,13956 +LAURENT,Nkunda,Mihigo,,,,,,,,06/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +LAURENT,Nkunda,Mihigo,,,,,,,,02/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +LAVA,,,,,,,,,,15/01/1970,"Grozny, Chechen Republic",Russia,(1) Russia. (2) Georgia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0266 (UN Ref):QDi.406 Associated with Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116583",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13517 +LAVILLA,Mile,D,,,,,,,,04/10/1972,"Sitio Banga Maiti, Barangay Tranghawan, Lambunao, Iloilo",Philippines,Philippines,(1) MM611523 (2) EE947317 (3) P421967,(1) Philippines number (2004) (2) Philippines number 2000-2001 (3) Philippines number (1995-1997),,,,10th Avenue,,,,,Caloocan City,,Philippines,(UK Sanctions List Ref):AQD0296 (UN Ref):QDi.247 Spiritual leader of the Rajah Solaiman Movement (QDe.128). Associated with Khadafi Abubakar Janjalani (deceased). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10667 +LAVILLA,Omar,,,,,,,,,04/10/1972,"Sitio Banga Maiti, Barangay Tranghawan, Lambunao, Iloilo",Philippines,Philippines,(1) MM611523 (2) EE947317 (3) P421967,(1) Philippines number (2004) (2) Philippines number 2000-2001 (3) Philippines number (1995-1997),,,,10th Avenue,,,,,Caloocan City,,Philippines,(UK Sanctions List Ref):AQD0296 (UN Ref):QDi.247 Spiritual leader of the Rajah Solaiman Movement (QDe.128). Associated with Khadafi Abubakar Janjalani (deceased). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10667 +LAVILLA,Ramo,,,,,,,,,04/10/1972,"Sitio Banga Maiti, Barangay Tranghawan, Lambunao, Iloilo",Philippines,Philippines,(1) MM611523 (2) EE947317 (3) P421967,(1) Philippines number (2004) (2) Philippines number 2000-2001 (3) Philippines number (1995-1997),,,,10th Avenue,,,,,Caloocan City,,Philippines,(UK Sanctions List Ref):AQD0296 (UN Ref):QDi.247 Spiritual leader of the Rajah Solaiman Movement (QDe.128). Associated with Khadafi Abubakar Janjalani (deceased). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10667 +LAVILLA,Reuben,,,,,,,,,04/10/1972,"Sitio Banga Maiti, Barangay Tranghawan, Lambunao, Iloilo",Philippines,Philippines,(1) MM611523 (2) EE947317 (3) P421967,(1) Philippines number (2004) (2) Philippines number 2000-2001 (3) Philippines number (1995-1997),,,,10th Avenue,,,,,Caloocan City,,Philippines,(UK Sanctions List Ref):AQD0296 (UN Ref):QDi.247 Spiritual leader of the Rajah Solaiman Movement (QDe.128). Associated with Khadafi Abubakar Janjalani (deceased). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10667 +LAVILLA,Reymund,,,,,,,,,04/10/1972,"Sitio Banga Maiti, Barangay Tranghawan, Lambunao, Iloilo",Philippines,Philippines,(1) MM611523 (2) EE947317 (3) P421967,(1) Philippines number (2004) (2) Philippines number 2000-2001 (3) Philippines number (1995-1997),,,,10th Avenue,,,,,Caloocan City,,Philippines,(UK Sanctions List Ref):AQD0296 (UN Ref):QDi.247 Spiritual leader of the Rajah Solaiman Movement (QDe.128). Associated with Khadafi Abubakar Janjalani (deceased). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10667 +"LAVILLA, JR",Ruben,Pestano,,,,Sheik,,,,04/10/1972,"Sitio Banga Maiti, Barangay Tranghawan, Lambunao, Iloilo",Philippines,Philippines,(1) MM611523 (2) EE947317 (3) P421967,(1) Philippines number (2004) (2) Philippines number 2000-2001 (3) Philippines number (1995-1997),,,,10th Avenue,,,,,Caloocan City,,Philippines,(UK Sanctions List Ref):AQD0296 (UN Ref):QDi.247 Spiritual leader of the Rajah Solaiman Movement (QDe.128). Associated with Khadafi Abubakar Janjalani (deceased). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10667 +LAVLINSKIY,Eugene,,,,,,,,,07/07/1975,Il'inka,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0763 (UK Statement of Reasons):As a prominent writer and Russian media commentator, Yevgeniy Nikolaevich Prilepin is a vocal supporter of Russian intervention in Ukraine.  In numerous articles, broadcasts and interviews he has promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,AKA,,Russia,15/03/2022,15/03/2022,09/05/2022,14714 +LAVLINSKIY,Yevgeny,,,,,,,,,07/07/1975,Il'inka,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0763 (UK Statement of Reasons):As a prominent writer and Russian media commentator, Yevgeniy Nikolaevich Prilepin is a vocal supporter of Russian intervention in Ukraine.  In numerous articles, broadcasts and interviews he has promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,AKA,,Russia,15/03/2022,15/03/2022,09/05/2022,14714 +LAVRENOV,Evgenij,Evgenievich,,,,,ЛАВРЕНОВ Евгений Евгеньевич,Cyrillic,Russian,05/12/1979,Nikopol,Ukraine,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1138 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15090 +LAVRENOV,Evgeniy,Evgenievich,,,,,,,,05/12/1979,Nikopol,Ukraine,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1138 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15090 +LAVRINENKO,Alexey,Fedorovich,,,,,Алексей Фёдорович Лавриненко,,,20/08/1955,Nikolina Balka,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0445 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14390 +LAVROV,Sergei,,,,,,,,,21/03/1950,Moscow,Russia,Russia,,,,,Foreign Minister of the Russian Federation,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0252 (UK Statement of Reasons):Sergei Viktorovich Lavrov, hereafter Lavrov, is the Russian Foreign Minister. He is a member of Russia's Security Council. As such, he is a senior member of the Government of Russia, and a key decision-maker. He is thereby involved in its attempts to destabilise Ukraine and undermining and threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,25/02/2022,25/02/2022,25/02/2022,14197 +LAVROV,Sergei,Viktorovich,,,,,Сергей Викторович Лавров,,,21/03/1950,Moscow,Russia,Russia,,,,,Foreign Minister of the Russian Federation,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0252 (UK Statement of Reasons):Sergei Viktorovich Lavrov, hereafter Lavrov, is the Russian Foreign Minister. He is a member of Russia's Security Council. As such, he is a senior member of the Government of Russia, and a key decision-maker. He is thereby involved in its attempts to destabilise Ukraine and undermining and threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,25/02/2022,25/02/2022,25/02/2022,14197 +LAVROV,Sergey,,,,,,,,,21/03/1950,Moscow,Russia,Russia,,,,,Foreign Minister of the Russian Federation,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0252 (UK Statement of Reasons):Sergei Viktorovich Lavrov, hereafter Lavrov, is the Russian Foreign Minister. He is a member of Russia's Security Council. As such, he is a senior member of the Government of Russia, and a key decision-maker. He is thereby involved in its attempts to destabilise Ukraine and undermining and threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,25/02/2022,25/02/2022,25/02/2022,14197 +LAVROV,Sergey,Viktorovich,,,,,,,,21/03/1950,Moscow,Russia,Russia,,,,,Foreign Minister of the Russian Federation,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0252 (UK Statement of Reasons):Sergei Viktorovich Lavrov, hereafter Lavrov, is the Russian Foreign Minister. He is a member of Russia's Security Council. As such, he is a senior member of the Government of Russia, and a key decision-maker. He is thereby involved in its attempts to destabilise Ukraine and undermining and threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,25/02/2022,25/02/2022,25/02/2022,14197 +LAVROVA,Maria,Aleksandrovna,,,,,"ЛАВРОВА, Мария Александровна",Cyrillic,Russian,04/04/1950,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1328 (UK Statement of Reasons):Maria Aleksandrovna LAVROVA is the wife of and is closely associated with Sergei Viktorovich LAVROV, the Foreign Minister of Russia. Sergei Viktorovich LAVROV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,14/06/2022,15284 +LAVROVA,Yekaterina,Sergeyevna,,,,,"ЛАВРОВА, Екатерина Сергеевна",,,03/04/1983,New York,United States,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1130 (UK Statement of Reasons):Yekaterina Sergeyevna VINOKUROVA is closely associated with Sergei Viktorovich LAVROV, the Foreign Minister of Russia who is her father. Sergei Viktorovich LAVROV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,08/04/2022,08/04/2022,27/05/2022,15080 +LAYTH,Umm,,,,,,,,,11/05/1994,"Glasgow, Scotland",United Kingdom,United Kingdom,720134834,British. Issued 27.06.2012. Expires 27.06.2022.,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0145 (UN Ref):QDi.356 Recruiter for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic, and a key figure in the the Al-Khanssaa brigade, a female ISIL brigade established in Al-Raqqa to enforce ISIL’s interpretation of Sharia law. Sex: female. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897334. Syrian Arab Republic, as at Nov. 2013 (Gender):Female",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13285 +LAYTH,Umm,,,,,,,,,11/05/1994,"Glasgow, Scotland",United Kingdom,United Kingdom,720134834,British. Issued 27.06.2012. Expires 27.06.2022.,,,,,,,,,,,United Kingdom,"(UK Sanctions List Ref):AQD0145 (UN Ref):QDi.356 Recruiter for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic, and a key figure in the the Al-Khanssaa brigade, a female ISIL brigade established in Al-Raqqa to enforce ISIL’s interpretation of Sharia law. Sex: female. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897334. Syrian Arab Republic, as at Nov. 2013 (Gender):Female",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13285 +LAZHAR,,,,,,,,,,20/11/1975,Sfax,Tunisia,Tunisia,P182583,Tunisian. Issued on 13 September 2003. Expired on 12 September 2007,05258253,,,No.2,89th Street,Zehrouni,,,Tunis,,Tunisia,"(UK Sanctions List Ref):AQD0129 (UN Ref):QDi.150 Sentenced to six years and ten months of imprisonment for membership of a terrorist association by the Appeal Court of Milan, Italy, on 7 Feb. 2008. Imprisoned in Sfax Prison on 5 June 2007 pursuant to an order issued by the Appeals Tribunal in Tunisia for joining an organization linked to terrorist crimes (case No.9301/207). Sentenced to two years and 15 days’ imprisonment and released on 18 June 2008.U Considered a fugitive from justice by the Italian authorities as at Jul. 2008. Under administrative control measure in Tunisia as at 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1419776",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,11/02/2022,7875 +LAZUTKINA,Yuliya,Viktorovna,,,,,Юлия Викторовна ЛАЗУТКИНА,,,03/11/1981,Koltovskoye,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0986 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14937 +LE GROUPE SALAFISTE POUR LA PREDICATION ET LE COMBAT GSPC,,,,,,,Le Groupe Salafiste pour La Prédication et le Combat GSPC,,,,,,,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,FKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +LE GROUPE SALAFISTE POUR LA PREDICATION ET LE COMBAT GSPC,,,,,,,Le Groupe Salafiste pour La Prédication et le Combat GSPC,,,,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,FKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +LE GROUPE SALAFISTE POUR LA PREDICATION ET LE COMBAT GSPC,,,,,,,Le Groupe Salafiste pour La Prédication et le Combat GSPC,,,,,,,,,,,,,,,,,,,Mauritania,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,FKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +LE GROUPE SALAFISTE POUR LA PREDICATION ET LE COMBAT GSPC,,,,,,,Le Groupe Salafiste pour La Prédication et le Combat GSPC,,,,,,,,,,,,,,,,,,,Morocco,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,FKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +LE GROUPE SALAFISTE POUR LA PREDICATION ET LE COMBAT GSPC,,,,,,,Le Groupe Salafiste pour La Prédication et le Combat GSPC,,,,,,,,,,,,,,,,,,,Niger,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,FKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +LE GROUPE SALAFISTE POUR LA PREDICATION ET LE COMBAT GSPC,,,,,,,Le Groupe Salafiste pour La Prédication et le Combat GSPC,,,,,,,,,,,,,,,,,,,Tunisia,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,FKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +LE MAROCAIN,Abderrahmane,,,,,,,,,25/05/1983,,,Morocco,V06359364,Morocco number,AB704306,Morocco identity card,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0359 (UN Ref):QDi.423 Member of Al Qaida in the Islamic Maghreb (AQIM) (QDe.014), Ansar Eddine (QDe.135), and Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159). Physical description: height: 185 cm; weight: 80 kg INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2019,14/08/2019,31/12/2020,13789 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1959,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1960,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,18/09/1964,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/00/1965,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/08/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/07/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,01/01/1961,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE MESSIE SANGLANT,,,,,,,,,,00/04/1963,"(1) Palaro Village, Palaro Parish, Omoro County, Gulu District (2) Odek, Omoro, Gulu (3) Atyak",(1) Uganda (2) Uganda (3)Uganda,,,,,,Commander of the Lord’s Resistance Army,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0010 (UN Ref):CFi.009 Kony is the founder and leader of the Lord’s Resistance Army (LRA) (CFe.002). Under his leadership, the LRA has engaged in the abduction, killing, and mutilation of thousands of civilians across Central Africa. The LRA has been responsible for kidnapping, displacing, committing sexual violence against, and killing hundreds of individuals across CAR, and has looted and destroyed civilian property. Father’s name is Luizi Obol. Mother’s name is Nora Obol. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Central African Republic,12/03/2016,07/03/2016,01/02/2021,13344 +LE PARA,Abderrezak,,,,,,,,,01/01/1968,(1) Kef Rih (2) Guelma,(1) Algeria (2) Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0303 (UN Ref):QDi.152 In detention in Algeria since Oct. 2004. Former member of the GSPC listed as The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. El Para (combat name), Abderrezak Le Para (combat name).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/12/2003,04/12/2003,16/02/2022,7890 +LE PARA,Abderrezak,,,,,,,,,24/04/1968,(1) Kef Rih (2) Guelma,(1) Algeria (2) Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0303 (UN Ref):QDi.152 In detention in Algeria since Oct. 2004. Former member of the GSPC listed as The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. El Para (combat name), Abderrezak Le Para (combat name).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/12/2003,04/12/2003,16/02/2022,7890 +LEADER (HONG KONG) INTERNATIONAL,,,,,,,,,,,,,,,,,,,"LM-873, RM B",14/F,Wah Hen Commercial Centre,383 Hennessy Road,Wanchai,Hong Kong Special Administrative Region,,,(UK Sanctions List Ref):DPR0173 (UN Ref):KPe.017 Facilitates shipments on behalf of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Hong Kong company registration number 1177053. (Phone number):Hong Kong Special Administrative Region,Entity,Primary name,,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12848 +LEADER (HONG KONG) INTERNATIONAL TRADING LIMITED,,,,,,,,,,,,,,,,,,,"LM-873, RM B",14/F,Wah Hen Commercial Centre,383 Hennessy Road,Wanchai,Hong Kong Special Administrative Region,,,(UK Sanctions List Ref):DPR0173 (UN Ref):KPe.017 Facilitates shipments on behalf of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Hong Kong company registration number 1177053. (Phone number):Hong Kong Special Administrative Region,Entity,AKA,,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12848 +LEADER INTERNATIONAL TRADING LIMITED,,,,,,,,,,,,,,,,,,,"LM-873, RM B",14/F,Wah Hen Commercial Centre,383 Hennessy Road,Wanchai,Hong Kong Special Administrative Region,,,(UK Sanctions List Ref):DPR0173 (UN Ref):KPe.017 Facilitates shipments on behalf of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Hong Kong company registration number 1177053. (Phone number):Hong Kong Special Administrative Region,Entity,AKA,,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12848 +LEBACHIR,Mohamed,,,,,,,,,04/06/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +LEBACHIR,Mohamed,,,,,,,,,13/11/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +LEBACHIR,Mohamed,,,,,,,,,11/08/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +LEBACHIR,Mohamed,,,,,,,,,04/04/1969,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +LEBACHIR,Mohamed,,,,,,,,,04/04/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +LEBACHIR,Mohamed,,,,,,,,,14/01/1968,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +LEBEDEV,Igor,Vladimirovich,,,,,Лебедев Игорь Владимирович,,,27/09/1972,"Rudny, Kostanai Region",Kazakh SSR,Russia,,,,,"Former Deputy Speaker, State Duma",,,,,,,,,"(UK Sanctions List Ref):RUS0017 (UK Statement of Reasons):Deputy Speaker, State Duma. On March 2014 he voted in favour of the draft Federal Constitutional Law 'on the acceptance into the Russian Federation of the Republic of Crimea and the formation within the Russian Federation of new federal subjects - the republic of Crimea and the City of Federal Status Sevastopol. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,26/09/2022,13111 +LEBEDEV,Oleg,Vladimirovich,,,,,,,,21/03/1964,Moscow,Russia,Russia,,,,,"Former First Deputy Chairman of the Committee on Relations with CIS Countries, Eurasian Integration and Links with Compatriots of the State Duma",,,,,,,,,"(UK Sanctions List Ref):RUS0018 (UK Statement of Reasons):Former member of the State Duma and former First Deputy Chairman of the Committee on Relations with CIS Countries, Eurasian Integration and Links with Compatriots of the State Duma. On 20 March 2014 he voted in favour of the draft Federal Constitutional Law ‘on the acceptance into the Russian Federation of the Republic of Crimea and the formation within the Russian Federation of new federal subjects - the republic of Crimea and the City of Federal Status Sevastopol’. Remains active in supporting separatist policies. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,31/12/2020,13109 +LEBEDEV,Dmitri,,,,,,,,,30/03/1968,Leningrad/St Petersburg,Russia,Russia,,,,,"Chairman of Board of Directors, Bank Rossiya",,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0272 (UK Statement of Reasons):DMITRI ALEKSEEVICH LEBEDEV, hereafter LEBEDEV, is the Chairman of the Board of Directors at Bank Rossiya and Managing Director and Co-Chairman of the Board of Management of ABR Management, and a member of Board of Directors of SOGAZ JSC, (both of whom are affiliates of Bank Rossiya), one of Russia's largest insurers. As Chairman of the Board of Directors at Bank Rossiya and a Member of the Board of Directors at SOGAZ, he is involved in carrying on business in a sector (financial services) of strategic significance to the Russian Government. Bank Rossiya is a Russian bank privately owned by elite Russian billionaires with direct links to Vladimir Putin. Since the annexation of Crimea, Bank Rossiya has opened branches across Crimea and Sevastopol, and provided travel cards for the public to travel across the peninsula thereby supporting the integration of Crimea and Sevastopol into the Russian Federation through the financial system. Bank Rossiya has also contributed to the provision of insurance and investment throughout Crimea and Sevastopol and services to support military capability and major transport links. SOGAZ JSC, the largest insurer in the Russian corporate sector, insured the construction of the railway infrastructure connecting the bridge over the Kerch Strait and the Port of Taman and reinsured the construction of the bridge over the Kerch Strait between the Russian mainland and the Crimean peninsula. In doing so, SOGAZ supported the illegally annexed Crimean peninsula into the Russian Federation which in turn further undermined the territorial integrity, sovereignty and independence of Ukraine. LEBEDEV therefore is involved in carrying on business in a sector of strategic significance to the Russian Government, has obtained a benefit from or is supporting the Russian Government by working as a director or equivalent of a company which carries on business in sectors of strategic significance (financial services) to the Government of Russia, and has supported activities which destabilise Ukraine and undermine and threaten its sovereignty, independence and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,10/03/2022,10/03/2022,15/03/2022,14215 +LEBEDEV,Dmitri,Alekseevich,,,,,Дмитрий Алексеевич ЛЕБЕДЕВ,,,30/03/1968,Leningrad/St Petersburg,Russia,Russia,,,,,"Chairman of Board of Directors, Bank Rossiya",,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0272 (UK Statement of Reasons):DMITRI ALEKSEEVICH LEBEDEV, hereafter LEBEDEV, is the Chairman of the Board of Directors at Bank Rossiya and Managing Director and Co-Chairman of the Board of Management of ABR Management, and a member of Board of Directors of SOGAZ JSC, (both of whom are affiliates of Bank Rossiya), one of Russia's largest insurers. As Chairman of the Board of Directors at Bank Rossiya and a Member of the Board of Directors at SOGAZ, he is involved in carrying on business in a sector (financial services) of strategic significance to the Russian Government. Bank Rossiya is a Russian bank privately owned by elite Russian billionaires with direct links to Vladimir Putin. Since the annexation of Crimea, Bank Rossiya has opened branches across Crimea and Sevastopol, and provided travel cards for the public to travel across the peninsula thereby supporting the integration of Crimea and Sevastopol into the Russian Federation through the financial system. Bank Rossiya has also contributed to the provision of insurance and investment throughout Crimea and Sevastopol and services to support military capability and major transport links. SOGAZ JSC, the largest insurer in the Russian corporate sector, insured the construction of the railway infrastructure connecting the bridge over the Kerch Strait and the Port of Taman and reinsured the construction of the bridge over the Kerch Strait between the Russian mainland and the Crimean peninsula. In doing so, SOGAZ supported the illegally annexed Crimean peninsula into the Russian Federation which in turn further undermined the territorial integrity, sovereignty and independence of Ukraine. LEBEDEV therefore is involved in carrying on business in a sector of strategic significance to the Russian Government, has obtained a benefit from or is supporting the Russian Government by working as a director or equivalent of a company which carries on business in sectors of strategic significance (financial services) to the Government of Russia, and has supported activities which destabilise Ukraine and undermine and threaten its sovereignty, independence and territorial integrity. (Gender):Male",Individual,Primary name,,Russia,10/03/2022,10/03/2022,15/03/2022,14215 +LEBEDEV,Dmitri,Alekseyevich,,,,,,,,30/03/1968,Leningrad/St Petersburg,Russia,Russia,,,,,"Chairman of Board of Directors, Bank Rossiya",,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0272 (UK Statement of Reasons):DMITRI ALEKSEEVICH LEBEDEV, hereafter LEBEDEV, is the Chairman of the Board of Directors at Bank Rossiya and Managing Director and Co-Chairman of the Board of Management of ABR Management, and a member of Board of Directors of SOGAZ JSC, (both of whom are affiliates of Bank Rossiya), one of Russia's largest insurers. As Chairman of the Board of Directors at Bank Rossiya and a Member of the Board of Directors at SOGAZ, he is involved in carrying on business in a sector (financial services) of strategic significance to the Russian Government. Bank Rossiya is a Russian bank privately owned by elite Russian billionaires with direct links to Vladimir Putin. Since the annexation of Crimea, Bank Rossiya has opened branches across Crimea and Sevastopol, and provided travel cards for the public to travel across the peninsula thereby supporting the integration of Crimea and Sevastopol into the Russian Federation through the financial system. Bank Rossiya has also contributed to the provision of insurance and investment throughout Crimea and Sevastopol and services to support military capability and major transport links. SOGAZ JSC, the largest insurer in the Russian corporate sector, insured the construction of the railway infrastructure connecting the bridge over the Kerch Strait and the Port of Taman and reinsured the construction of the bridge over the Kerch Strait between the Russian mainland and the Crimean peninsula. In doing so, SOGAZ supported the illegally annexed Crimean peninsula into the Russian Federation which in turn further undermined the territorial integrity, sovereignty and independence of Ukraine. LEBEDEV therefore is involved in carrying on business in a sector of strategic significance to the Russian Government, has obtained a benefit from or is supporting the Russian Government by working as a director or equivalent of a company which carries on business in sectors of strategic significance (financial services) to the Government of Russia, and has supported activities which destabilise Ukraine and undermine and threaten its sovereignty, independence and territorial integrity. (Gender):Male",Individual,Primary name variation,,Russia,10/03/2022,10/03/2022,15/03/2022,14215 +LEBEDEV,Igor,Vladimirovych,,,,,,,,27/09/1972,"Rudny, Kostanai Region",Kazakh SSR,Russia,,,,,"Former Deputy Speaker, State Duma",,,,,,,,,"(UK Sanctions List Ref):RUS0017 (UK Statement of Reasons):Deputy Speaker, State Duma. On March 2014 he voted in favour of the draft Federal Constitutional Law 'on the acceptance into the Russian Federation of the Republic of Crimea and the formation within the Russian Federation of new federal subjects - the republic of Crimea and the City of Federal Status Sevastopol. (Gender):Male",Individual,Primary name variation,,Russia,12/09/2014,31/12/2020,26/09/2022,13111 +LEBEDEV,Vladimir,Albertovich,,,,,Владимир Альбертович ЛЕБЕДЕВ,,,23/04/1962,"Navahrudak,",Belarus,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0911 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14862 +LEBEDEV,Evgeny,Viktorovich,,,,,Евгений Викторович Лебедев,,,12/12/1957,Bor,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0446 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14391 +LEBEDEV,Oleg,Alexandrovich,,,,,Лебедев Олег Александрович,,,12/10/1976,Tula,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0447 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14392 +LECHKHADZHIEV,Ruslan,Abdulvakhievich,,,,,Лечхаджиев Руслан Абдулвахиевич,,,02/07/1965,,,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0288 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14233 +LEDKOV,Grigory,Petrovich,,,,,Григорий Петрович Ледков,,,26/03/1969,"Naryan-Mar, Nenets",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS1005 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14956 +LENKEVICH,Vyacheslav,Aleksandrovich,,,,Colonel,ЛЕНКЕВИЧ Вячеслав Александрович,Cyrillic,Russian,04/06/1977,,,Belarus,,,,,Deputy Commander Logistics Troops and Head of Logistics North-Western Operational Command,,,,,,,,,"(UK Sanctions List Ref):RUS0747 (UK Statement of Reasons):Colonel Vyacheslav Aleksandrovich LENKEVICH has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being involved in the command of Belarusian forces who were involved in a joint exercise with the Russian military ahead of Russia’s invasion of Ukraine which: (1) threatened Ukraine; and (2) provided cover for Russian military preparations to invade Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14698 +LEO,,,,,,,,,,19/12/1969,"Bagac, Bagamanok, Catanduanes",Philippines,Philippines,,,,,,Concepcion,,,,Zaragosa,Nueva Ecija,,Philippines,"(UK Sanctions List Ref):AQD0287 (UN Ref):QDi.245 Member of the Rajah Solaiman Movement (QDe.128), Abu Sayyaf Group (QDe.001) and Jemaah Islamiyah (QDe.092). Father's name is Honorio Devera. Mother's name is Fausta Abogne. In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10665 +LEON,Manzi,,,,,,,,,00/00/1953,"(1) Kigali. (2) Rushashi, (Northern Province)",(1) Rwanda. (2) Rwanda,Rwanda,,,,,FDLR-FOCA Chief of Staff,FDLR HQ,at Kikoma forest,Bogoyi,Walikale,North Kivu,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0047 (UN Ref):CDi.013 FDLR-FOCA Chief of Staff, in charge of administration. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270747 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,03/12/2010,01/12/2010,31/12/2020,11279 +LEON,Manzi,,,,,,,,,00/00/1954,"(1) Kigali. (2) Rushashi, (Northern Province)",(1) Rwanda. (2) Rwanda,Rwanda,,,,,FDLR-FOCA Chief of Staff,FDLR HQ,at Kikoma forest,Bogoyi,Walikale,North Kivu,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0047 (UN Ref):CDi.013 FDLR-FOCA Chief of Staff, in charge of administration. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270747 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,03/12/2010,01/12/2010,31/12/2020,11279 +LEONOV,Yury,Vladimirovich,,,,,ЛЕОНОВ Юрий Владимирович,Cyrillic,Russian,01/04/1980,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1259 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15211 +LEONOV,Oleg,Yurievich,,,,,Леонов Олег Юрьевич,,,10/09/1970,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0448 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14393 +LEONOV,Sergey,Dmitrievich,,,,,Леонов Сергей Дмитриевич,,,09/05/1983,Tula,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0287 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14232 +LEONTYEV,Mikhail,Vladimirovich,,,,,Михаил Владимирович Леонтьев,,,12/10/1958,Moscow,Russia,Russia,,,,,Presenter on Channel One,,,,,,,,,"(UK Sanctions List Ref):RUS1374 (UK Statement of Reasons):Mikhail LEONTYEV (henceforth LEONTYEV) is the presenter of the Odnaki television show on Channel One, a television channel controlled by the Government of Russia. In this role, LEONTYEV has supported and promoted policies which have destabilised, and undermined the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,04/05/2022,15331 +LEPA,Roman,Nikolaevich,,,,,"ЛЕПА, Роман Николаевич",Cyrillic,Russian,03/06/1974,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1260 (UK Statement of Reasons):Designated for the purposes of an asset freeze and a travel ban under the Russia (Sanctions) (EU Exit) Regulations 2019. The designation is made as a designation by name under the urgent procedure. The relevant provision by reference to which the Minister considers that condition B is met is the European Union’s Council Decision 2014/145/CFSP (as amended) concerning restrictive measures in respect of actions undermining or threatening the territorial integrity, sovereignty and independence of Ukraine, and Council Regulation (EU) No 269/2014. The purposes of this provision correspond or are similar to the purposes of the UK’s Russia (Sanctions) (EU Exit) Regulations 2019, which have as their purposes to encourage Russia to cease actions destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. The Minister considers that it is in the public interest to designate (condition C). (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15212 +LEPA,Roman,Nikolayevich,,,,,,,,03/06/1974,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1260 (UK Statement of Reasons):Designated for the purposes of an asset freeze and a travel ban under the Russia (Sanctions) (EU Exit) Regulations 2019. The designation is made as a designation by name under the urgent procedure. The relevant provision by reference to which the Minister considers that condition B is met is the European Union’s Council Decision 2014/145/CFSP (as amended) concerning restrictive measures in respect of actions undermining or threatening the territorial integrity, sovereignty and independence of Ukraine, and Council Regulation (EU) No 269/2014. The purposes of this provision correspond or are similar to the purposes of the UK’s Russia (Sanctions) (EU Exit) Regulations 2019, which have as their purposes to encourage Russia to cease actions destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. The Minister considers that it is in the public interest to designate (condition C). (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15212 +LES ENTURBANNES,,,,,,,Les Enturbannés,,,,,,,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0007 (UN Ref):QDe.140 Founded in 2012 as a splinter group of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). On 20 Aug. 2013, Al Moulathamoun merged with the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134) and established Al Mourabitoun (QDe.141). Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and led by Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,16/06/2014,02/06/2014,31/12/2020,12984 +LES ENTURBANNES,,,,,,,Les Enturbannés,,,,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0007 (UN Ref):QDe.140 Founded in 2012 as a splinter group of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). On 20 Aug. 2013, Al Moulathamoun merged with the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134) and established Al Mourabitoun (QDe.141). Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and led by Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,16/06/2014,02/06/2014,31/12/2020,12984 +LES ENTURBANNES,,,,,,,Les Enturbannés,,,,,,,,,,,,,,,,,,,Niger,"(UK Sanctions List Ref):AQD0007 (UN Ref):QDe.140 Founded in 2012 as a splinter group of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). On 20 Aug. 2013, Al Moulathamoun merged with the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134) and established Al Mourabitoun (QDe.141). Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and led by Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,16/06/2014,02/06/2014,31/12/2020,12984 +LES SENTINELLES,,,,,,,,,,,,,,,,,,,,,,,,,,Mali,(UK Sanctions List Ref):AQD0008 (UN Ref):QDe.141 Founded on 20 Aug. 2013 as result of a merger between Al Moulathamoun (QDe.140) and the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and led by Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,16/06/2014,02/06/2014,31/12/2020,12985 +LES SIGNATAIRES PAR LE SANG,,,,,,,,,,,,,,,,,,,,,,,,,,Mali,(UK Sanctions List Ref):AQD0006 (UN Ref):QDe.139 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and led by Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,16/06/2014,02/06/2014,31/12/2020,12983 +LESUN,Anatoly,Fedorovich,,,,,Лесун Анатолий Фёдорович,,,27/02/1959,"Parichi, Gomel Region",Belarus,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0619 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14564 +LET,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +LEVANTINE MUJAHIDEEN ON THE BATTLEFIELDS OF JIHAD - SUB-UNIT NAME,,,,,,,مجاهدو الشام في ساحات الجهاد,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +LEVANTINE MUJAHIDEEN ON THE BATTLEFIELDS OF JIHAD - SUB-UNIT NAME,,,,,,,مجاهدو الشام في ساحات الجهاد,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +LEVCHENKO,Sergey,Georgievich,,,,,Левченко Сергей Георгиевич,,,02/11/1953,Novosibirsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0286 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14231 +LEVICHEV,Nikolai,Vladimirovich,,,,,,,,28/05/1953,"Pushkin, St Petersburg",Russia,Russia,,,,,"(1) Former member of the State Duma of the Russian Federation (2) former Deputy Speaker, State Duma (3) Currently a member of the Central Election Commission",,,,,,,,Russia,"(UK Sanctions List Ref):RUS0019 (UK Statement of Reasons):Former member of the State Duma. Former Deputy Speaker, State Duma. On 20 March 2014 he voted in favour of the draft Federal Constitutional Law ‘on the acceptance into the Russian Federation of the Republic of Crimea and the formation within the Russian Federation of new federal subjects- the republic of Crimea and the City of Federal Status Sevastopol’. Currently a member of the Central Election Commission. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,31/12/2020,13112 +LEVIN,Dmitrii,Olegovich,,,,,Дмитрий Олегович ЛЕВИН,Cyrillic,Russian,27/08/1965,,,Russia,,,,,First Deputy Chairman of OTKRITIE BANK Management Board,Apt. 5,H.3-14,Glazovsky Pereulok,,,Moscow,119002,Russia,"(UK Sanctions List Ref):RUS1392 Linked To: PUBLIC JOINT STOCK COMPANY BANK FINANCIAL CORPORATION OTKRITIE (UK Statement of Reasons):Dmitriy Olegovich LEVIN is the First Deputy Chairman of the Management Board of OTKRITIE BANK. In his role, LEVIN is a member of and associated with OTKRITIE BANK. OTKRITIE BANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Male",Individual,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15359 +LEVIN,Dmitriy,Olegovich,,,,,,,,27/08/1965,,,Russia,,,,,First Deputy Chairman of OTKRITIE BANK Management Board,Apt. 5,H.3-14,Glazovsky Pereulok,,,Moscow,119002,Russia,"(UK Sanctions List Ref):RUS1392 Linked To: PUBLIC JOINT STOCK COMPANY BANK FINANCIAL CORPORATION OTKRITIE (UK Statement of Reasons):Dmitriy Olegovich LEVIN is the First Deputy Chairman of the Management Board of OTKRITIE BANK. In his role, LEVIN is a member of and associated with OTKRITIE BANK. OTKRITIE BANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15359 +LEVIN,Dmitry,Olegovich,,,,,,,,27/08/1965,,,Russia,,,,,First Deputy Chairman of OTKRITIE BANK Management Board,Apt. 5,H.3-14,Glazovsky Pereulok,,,Moscow,119002,Russia,"(UK Sanctions List Ref):RUS1392 Linked To: PUBLIC JOINT STOCK COMPANY BANK FINANCIAL CORPORATION OTKRITIE (UK Statement of Reasons):Dmitriy Olegovich LEVIN is the First Deputy Chairman of the Management Board of OTKRITIE BANK. In his role, LEVIN is a member of and associated with OTKRITIE BANK. OTKRITIE BANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Male",Individual,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15359 +LI,Jong-Su,,,,,,,,,,,,North Korea,,,,,Commander in Chief of the Korean Navy,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0049 (UK Statement of Reasons):Admiral of the Korean People's Army. Former member of the Central Military Commission of the Workers’ Party of Korea, which is a key body for national defence matters in DPRK. Commander in Chief of the Korean Navy, which is involved in the development of ballistic missile-related programmes and in the development of the nuclear capacities of the DPRK naval forces. As such, responsible for is, or has been, involved in the facilitation of any of the DPRK’s military programmes. (Gender):Male",Individual,AKA,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13369 +LIBERATION OF AL-SHAM COMMISSION,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +LIBERATION OF AL-SHAM COMMISSION,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +LIBERATION OF THE LEVANT ORGANISATION TAHRIR AL-SHAM,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +LIBERATION OF THE LEVANT ORGANISATION TAHRIR AL-SHAM,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +LIBERATION TIGERS OF TAMIL EELAM (LTTE),,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0037 (UK Statement of Reasons):The Liberation Tigers of Tamil Eelam (LTTE) are responsible for the commission, preparation and instigation of acts of terrorism including suicide attacks and assassinations, in pursuit of their political objective of a separate Tamil state in Sri Lanka.",Entity,Primary name,,Counter-Terrorism (International),02/11/2001,31/12/2020,31/12/2020,7126 +LIBYAN AFRICA INVESTMENT PORTFOLIO,,,,,,,,,,,,,,,,,,,Jamahiriya Street,LAP Building,PO Box 91330,,,Tripoli,,Libya,"(UK Sanctions List Ref):LIB0037 (UN Ref):LYe.002 Listed pursuant to paragraph 17 of resolution 1973, as modified on 16 September pursuant to paragraph 15 of resolution 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5526095",Entity,Primary name,,Libya,17/03/2011,17/03/2011,31/12/2020,11663 +LIBYAN AGRICULTURAL BANK,,,,,,,,,,,,,,,,,,,Al Jumhouria Street,East Junzour,Al Gheran,,,Tripoli,,Libya,(UK Sanctions List Ref):LIB0006 (UK Statement of Reasons):Libyan subsidiary of the Central Bank of Libya. Owned or controlled directly or indirectly (within the meaning regulation 7) by a person who is or has been so involved. (Phone number):(1) 218 213330927 (2) 218 213331533 (3) 218 213333541 (4) 218 213333542 (5) 218 213333543 (6) 218 213333544 (7) 218 213333545 (8) 218 213338366 (9) 218 214870586 (10) 218 214870714 (11) 218214870745 (12) 218214870747 (13) 218214870767 (14) 218214870777 (Email address):agbank@agribankly.org (Parent company):Libyan subsidiary of the Central Bank of Libya.,Entity,Primary name,,Libya,14/04/2011,31/12/2020,10/02/2022,11745 +LIBYAN AGRICULTURAL BANK,,,,,,,,,,,,,,,,,,,El Ghayran Area,Ganzor El Sharqya,PO Box 1100,,,Tripoli,,Libya,(UK Sanctions List Ref):LIB0006 (UK Statement of Reasons):Libyan subsidiary of the Central Bank of Libya. Owned or controlled directly or indirectly (within the meaning regulation 7) by a person who is or has been so involved. (Phone number):(1) 218 213330927 (2) 218 213331533 (3) 218 213333541 (4) 218 213333542 (5) 218 213333543 (6) 218 213333544 (7) 218 213333545 (8) 218 213338366 (9) 218 214870586 (10) 218 214870714 (11) 218214870745 (12) 218214870747 (13) 218214870767 (14) 218214870777 (Email address):agbank@agribankly.org (Parent company):Libyan subsidiary of the Central Bank of Libya.,Entity,Primary name,,Libya,14/04/2011,31/12/2020,10/02/2022,11745 +LIBYAN ARAB AFRICAN INVESTMENT COMPANY,,,,,,,,,,,,,,,,,,,,,,,,Janzour,76351,Libya,"(UK Sanctions List Ref):LIB0001 (UK Statement of Reasons):Subsidiary of the Libyan Investment Authority. Associated with Muammar Qadhafi and involved with associated persons. (Phone number):00 218 (21) 4890146. 00 218 (21) 4890586. 00 218 (21) 4891867. 00 218 (21) 4892613. 00 218 (21) 4893800 (Website):https://www.laico.ly/compny-overview (Email address):info@laaico.com (Parent company):Libyan Investment Authority, designated in UNSCR 1970.",Entity,Primary name,,Libya,22/03/2011,31/12/2020,31/12/2020,11710 +LIBYAN ARAB AFRICAN INVESTMENT COMPANY,,,,,,,,,,,,,,,,,,,,,,,,Tripoli,81370,Libya,"(UK Sanctions List Ref):LIB0001 (UK Statement of Reasons):Subsidiary of the Libyan Investment Authority. Associated with Muammar Qadhafi and involved with associated persons. (Phone number):00 218 (21) 4890146. 00 218 (21) 4890586. 00 218 (21) 4891867. 00 218 (21) 4892613. 00 218 (21) 4893800 (Website):https://www.laico.ly/compny-overview (Email address):info@laaico.com (Parent company):Libyan Investment Authority, designated in UNSCR 1970.",Entity,Primary name,,Libya,22/03/2011,31/12/2020,31/12/2020,11710 +LIBYAN FOREIGN INVESTMENT COMPANY (LFIC),,,,,,,,,,,,,,,,,,,1 Fateh Tower Office,No 99 22nd Floor,Borgaida Street,,,Tripoli,1103,Libya,"(UK Sanctions List Ref):LIB0038 (UN Ref):LYe.001 Listed pursuant to paragraph 17 of resolution 1973, as modified on 16 September pursuant to paragraph 15 of resolution 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5526075",Entity,AKA,,Libya,17/03/2011,17/03/2011,19/01/2021,11666 +LIBYAN INVESTMENT AUTHORITY,,,,,,,,,,,,,,,,,,,1 Fateh Tower Office,No 99 22nd Floor,Borgaida Street,,,Tripoli,1103,Libya,"(UK Sanctions List Ref):LIB0038 (UN Ref):LYe.001 Listed pursuant to paragraph 17 of resolution 1973, as modified on 16 September pursuant to paragraph 15 of resolution 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5526075",Entity,Primary name,,Libya,17/03/2011,17/03/2011,19/01/2021,11666 +LIBYAN ISLAMIC FIGHTING GROUP,,,,,,,الجماعة الاسلامية المقاتلة الليبية,,,,,,,,,,,,,,,,,,,Libya,(UK Sanctions List Ref):AQD0066 (UN Ref):QDe.011 Members in Afghanistan merged with Al-Qaida (QDe.004) in Nov. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281977,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7249 +LIBYAN JAMAHIRYA BROADCASTING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):LIB0004 (UK Statement of Reasons):Associated with Muammar Qadhafi and his regime. Involved in activities carried out on behalf of the former regime of Muammar Qadhafi, implementing public incitement to hatred and violence through participation in disinformation campaigns. (Phone number):+218 21 3402107. +218 21 4445926. 00 21 4445900 (Website):http://www.ljbc.net (Email address):info@ljbc.net",Entity,Primary name,,Libya,22/03/2011,31/12/2020,31/12/2020,11713 +LIBYAN SOCIETY,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0051 (UN Ref):QDe.119 Founded and led by Najmiddin Kamolitdinovich Jalolov (deceased) and Suhayl Fatilloevich Buranov (deceased). Associated with the Islamic Movement of Uzbekistan (QDe.010) and Emarat Kavkaz (QDe.131). Active in the Afghanistan/Pakistan border area, Central Asia, South Asia region and some European States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278465",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,06/06/2005,01/06/2005,31/12/2020,8652 +LICHACHOW,Vitali,Viktorovich,,,,,Лихачев Виталий Викторович,,,22/02/1964,Volograd,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0684 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14635 +LIFG,,,,,,,,,,,,,,,,,,,,,,,,,,Libya,(UK Sanctions List Ref):AQD0066 (UN Ref):QDe.011 Members in Afghanistan merged with Al-Qaida (QDe.004) in Nov. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281977,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7249 +"LIMITED LIABILITY COMPANY ""EXTERNAL ECONOMIC ASSOCIATION"" TECHNOPROMEXPORT""",,,,,,,,,,,,,,,,,,,Novyi Arbat str.,15,building 2,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0186 Names of Director(s). Management: Chief: Sergey Topor-Gilka (DG of OAO ""TPE"" and also of OOO TPE) (UK Statement of Reasons):Owner of the gas turbines originally supplied by Siemens Gas Turbine Technologies OOO to OAO ‘VO TPE’ for exclusive use in Taman, Southern Russia. OOO ‘VO TPE’ assumed ownership of the gas turbines and transferred the gas turbines to be installed in Crimea. This contributes to establishing an independent power supply for Crimea and Sevastopol as a means of supporting their separation from Ukraine, and undermines the territorial integrity, sovereignty and independence of Ukraine. (Website):http://tpe-vo.ru/ (Business Reg No):1147746527279 dated 27/07/1992. Tax ID: 7701863782e",Entity,AKA,,Russia,04/08/2017,31/12/2020,26/09/2022,13525 +LIMITED LIABILITY COMPANY ATLANT S,,,,,,,,,,,,,,,,,,,et 1 pom 1 kom 17,dom 20,ulitsa Pleshcheyeva,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1079 (UK Statement of Reasons):LIMITED LIABILITY COMPANY ""BIBIREVOREAALESTATE"" is a real estate company. LLC “BIBIREVOREAALESTATE” is owned or controlled directly or indirectly (within the meaning of regulation 7) by Andrey Sergeevich PUCHKOV a person who is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019.",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,12/07/2022,15022 +LIMITED LIABILITY COMPANY BELINVEST-ENGINEERING,,,,,,,БЕЛИНВЕСТ-инжиниринг,Cyrillic,Russian,,,,,,,,,,office 10,2 Melnikaite Str,,,,Minsk,,Belarus,(UK Sanctions List Ref):BEL0124 (UK Statement of Reasons):LLC Belinvest-Engineering is an involved person under The Republic of Belarus (Sanctions) (EU Exit) 2019 regulations because it is or has been obtaining a benefit from or supporting the Government of Belarus by carrying on business in a sector of strategic importance to the Government of Belarus. (Phone number):(1) +375 17 342-11-72 (2) +375 17 342-11-42 (3) +375 29 314-11-14 (Website):https://bieng.by/ (Email address):bi-eng@mail.ru,Entity,Primary name,,Belarus,24/03/2022,24/03/2022,12/07/2022,14983 +LIMITED LIABILITY COMPANY BELINVEST-ENGINEERING,,,,,,,Белинвестинжиниринг,Cyrillic,Russian,,,,,,,,,,office 10,2 Melnikaite Str,,,,Minsk,,Belarus,(UK Sanctions List Ref):BEL0124 (UK Statement of Reasons):LLC Belinvest-Engineering is an involved person under The Republic of Belarus (Sanctions) (EU Exit) 2019 regulations because it is or has been obtaining a benefit from or supporting the Government of Belarus by carrying on business in a sector of strategic importance to the Government of Belarus. (Phone number):(1) +375 17 342-11-72 (2) +375 17 342-11-42 (3) +375 29 314-11-14 (Website):https://bieng.by/ (Email address):bi-eng@mail.ru,Entity,Primary name variation,,Belarus,24/03/2022,24/03/2022,12/07/2022,14983 +LIMITED LIABILITY COMPANY BIBIREVOREAALESTATE,,,,,,,,,,,,,,,,,,,et 1 pom 1 kom 17,dom 20,ulitsa Pleshcheyeva,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1079 (UK Statement of Reasons):LIMITED LIABILITY COMPANY ""BIBIREVOREAALESTATE"" is a real estate company. LLC “BIBIREVOREAALESTATE” is owned or controlled directly or indirectly (within the meaning of regulation 7) by Andrey Sergeevich PUCHKOV a person who is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019.",Entity,Primary name,,Russia,24/03/2022,24/03/2022,12/07/2022,15022 +LIMITED LIABILITY COMPANY FEODOSIA ENTERPRISE OF OIL,,,,,,,,,,,,,,,,,,,28 Kirova Street,,,,Kerch,The Autonomous Republic of Crimea and the city of Sevastopol,298312,Ukraine,"(UK Sanctions List Ref):RUS0199 Name of Director(s). Management: Andrei Vladimirovich Vasiliev (Director). Sergey Beym (Owner) (UK Statement of Reasons):The ""Parliament of Crimea"" adopted resolution No 1757-6/14 on 17 March 2014 ""on nationalisation of some companies belonging to the Ukrainian Ministries of Infrastructure of Agriculture"" and Resolution No 1865-6/14 on 26 March 2014 ""on State-owned Enterprise ""Crimean Sea Port"" declaring the appropriation of assets belonging to several State Enterprises which were merged into the ""State Unitary Enterprise of the Crimean Republic ""Crimean Sea Ports"". Those enterprises were thus effectively confiscated by the Crimean ""authorities"" and the ""Crimean Sea Ports"" has benefitted from the illegal transfer of their ownership. (Website):http:/crimeaport.com/ (Parent company):Chernomorneftegaz (also subject to Sanctions). Feodosia Trade Port. Gosgidrographia and Port-Terminal. Kerch Ferry Crossing. Kerch Fish Port. Kerch Trade Port. Yalta Trade Port. Yevpatoria Trade Port (Business Reg No):USREOU code 3482347",Entity,AKA,,Russia,16/09/2017,31/12/2020,31/12/2020,13544 +LIMITED LIABILITY COMPANY 'FOREIGN ECONOMIC ASSOCIATION' 'TECHNOPROMEXPORT',,,,,,,,,,,,,,,,,,,Novyi Arbat str.,15,building 2,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0186 Names of Director(s). Management: Chief: Sergey Topor-Gilka (DG of OAO ""TPE"" and also of OOO TPE) (UK Statement of Reasons):Owner of the gas turbines originally supplied by Siemens Gas Turbine Technologies OOO to OAO ‘VO TPE’ for exclusive use in Taman, Southern Russia. OOO ‘VO TPE’ assumed ownership of the gas turbines and transferred the gas turbines to be installed in Crimea. This contributes to establishing an independent power supply for Crimea and Sevastopol as a means of supporting their separation from Ukraine, and undermines the territorial integrity, sovereignty and independence of Ukraine. (Website):http://tpe-vo.ru/ (Business Reg No):1147746527279 dated 27/07/1992. Tax ID: 7701863782e",Entity,AKA,,Russia,04/08/2017,31/12/2020,26/09/2022,13525 +LIMITED LIABILITY COMPANY INSPIRA INVEST A,,,,,,,,,,,,,,,,,,,et 1 pom 2 kom 28-1 of 1,dom 9,ulitsa Leninskaya Sloboda,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1080 (UK Statement of Reasons):LLC SANPROPERTY is a real estate company. LLC SANPROPERTY is owned or controlled directly or indirectly (within the meaning of regulation 7) by Andrey Sergeevich PUCHKOV, a person who is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019.",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,12/07/2022,15023 +LIMITIED LIABILITY COMPANY SANPROPERTY,,,,,,,,,,,,,,,,,,,et 1 pom 2 kom 28-1 of 1,dom 9,ulitsa Leninskaya Sloboda,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1080 (UK Statement of Reasons):LLC SANPROPERTY is a real estate company. LLC SANPROPERTY is owned or controlled directly or indirectly (within the meaning of regulation 7) by Andrey Sergeevich PUCHKOV, a person who is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019.",Entity,Primary name,,Russia,24/03/2022,24/03/2022,12/07/2022,15023 +L'INSTITUT SUPERIEUR DES SCIENCES APPLIQUEES ET DE TECHNOLOGIE (ISSAT),,,,,,,,,,,,,,,,,,,,,,PO Box 31983,Barzeh District,Damascus,,Syria,"(UK Sanctions List Ref):SYR0307 Research, Sciences, Chemical Weapons (UK Statement of Reasons):Affiliated to and a subsidiary of the Syrian Scientific Studies and Research Centre (SSRC) which is a designated entity involved in the development and proliferation of chemical weapons in Syria. HIAST provides training and support to the SSRC and is therefore also responsible for the repression of the civilian population. (Website):https://hiast.edu.sy/en/contact-us (Type of entity):Government Entity and Higher Institute (Subsidiaries):SSRC, Barzeh Street, PO Box 4470 (Parent company):SSRC, Barzeh Street, PO Box 4470",Entity,AKA,,Syria,23/07/2014,31/12/2020,13/05/2022,13032 +L'INSTITUT SUPERIEUR DES SCIENCES APPLIQUEES ET DE TECHNOLOGIE (ISSAT),,,,,,,,,,,,,,,,,,,,,,,,Location of entity headquarters: Damascus,,,"(UK Sanctions List Ref):SYR0307 Research, Sciences, Chemical Weapons (UK Statement of Reasons):Affiliated to and a subsidiary of the Syrian Scientific Studies and Research Centre (SSRC) which is a designated entity involved in the development and proliferation of chemical weapons in Syria. HIAST provides training and support to the SSRC and is therefore also responsible for the repression of the civilian population. (Website):https://hiast.edu.sy/en/contact-us (Type of entity):Government Entity and Higher Institute (Subsidiaries):SSRC, Barzeh Street, PO Box 4470 (Parent company):SSRC, Barzeh Street, PO Box 4470",Entity,AKA,,Syria,23/07/2014,31/12/2020,13/05/2022,13032 +LIOKHI,Pavel,Mikalaevich,,,,,Павел Мiкалаевiч ЛЁГКI,,,30/05/1972,Baranavichy,former USSR (now Belarus),Belarus,,,,,First Deputy Minister of Information,,,,,,,,,"(UK Sanctions List Ref):BEL0073 (UK Statement of Reasons):In his leadership position as First Deputy Minister of Information, Pavel Liokhi is responsible for the repression of civil society, and in particular the Ministry of Information decision to cut off access to independent websites and limit internet access in Belarus in the wake of the 2020 presidential election, as a tool of repression of civil society, peaceful demonstrators and journalists. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14030 +LIOKHI,Pavel,Nikolaevich,,,,,Павел Николаевич ЛЁГКИЙ,,,30/05/1972,Baranavichy,former USSR (now Belarus),Belarus,,,,,First Deputy Minister of Information,,,,,,,,,"(UK Sanctions List Ref):BEL0073 (UK Statement of Reasons):In his leadership position as First Deputy Minister of Information, Pavel Liokhi is responsible for the repression of civil society, and in particular the Ministry of Information decision to cut off access to independent websites and limit internet access in Belarus in the wake of the 2020 presidential election, as a tool of repression of civil society, peaceful demonstrators and journalists. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14030 +LISITSYN,Anatoly,Ivanovich,,,,,Лисицын Анатолий Иванович,,,26/06/1947,"Bolshiye Smenki, Sonkovsky District",Russia,Russia,600374314,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0562 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14507 +LISOBEY,Yaroslav,Igorevich,,,,,ЛИСОБЕЙ Ярослав Игоревич,Cyrillic,Russian,24/01/1988,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1261 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15213 +LISOVSKY,Sergey,Fyodorovich,,,,,Лисовский Сергей Федорович,,,25/04/1960,Moscow,Russia,,100076310. 6885616. 14622,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0656 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14601 +LISTOEV,Andrey,Viktorovich,,,,,,,,06/02/1967,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1281 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15233 +LITSOEV,Andrei,Viktorovich,,,,,ЛИСТОЕВ Андрей Викторович,Cyrillic,Russian,06/02/1967,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1281 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15233 +LITVINA,Alena,Vasileuna,,,,,Анатоль Аляксандравiч СIВАК,,,,,,Belarus,,,,,"Judge of the Leninsky district court in Mogilev, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0087 (UK Statement of Reasons):Alena Litvina is a Judge of the Leninsky District Court in Mogilev. In her position she was responsible for numerous politically motivated rulings against journalists and activists for taking part in protests. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition. (Gender):Female",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14018 +LITVINA,Elena,Vasilevna,,,,,Елена Васильевна ЛИТВИНА,,,,,,Belarus,,,,,"Judge of the Leninsky district court in Mogilev, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0087 (UK Statement of Reasons):Alena Litvina is a Judge of the Leninsky District Court in Mogilev. In her position she was responsible for numerous politically motivated rulings against journalists and activists for taking part in protests. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition. (Gender):Female",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14018 +LITVINOV,Boris,Alekseevich,,,,,,,,13/01/1954,Dzerzhynsk (Donetsk Oblast),Ukraine,(1) Russia. (2) Ukraine,,,,,Former member of the State Duma of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS0020 (UK Statement of Reasons):Former member of the so-called 'People's Council' and former chairman of the so-called 'Supreme Council' of the so-called 'Donetsk People's Republic' who was at the source of policies and the organisation of the illegal 'referendum' leading to the proclamation of the so-called 'Donetsk People's Republic', which constituted a breach of the territorial integrity, sovereignty and unity of Ukraine. Remains active in supporting separatist actions and policies. Current leader of the Communist Party of DNR. (Gender):Male",Individual,Primary name,,Russia,31/07/2014,31/12/2020,31/12/2020,13070 +LITVINOVA,Larisa,Anatolievna,,,,,,,,18/11/1963,,,Russia,,,,,,,,,,,,,,(UK Sanctions List Ref):GHR0010 (UK Statement of Reasons):Larisa Anatolievna Litvinova was head of the therapeutic ward at Butyrka Prison where Sergei Magnitsky was detained between 25 July and 16 November 2009. She was involved in the mistreatment of Sergei Magnitsky by failing to ensure the proper administration of medical care to him during this period causing him considerable suffering and contributing significantly to his death. (Gender):Female,Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13865 +LIWA SHUHADA AL-YARMOUK,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0058 (UN Ref):QDe.155 Joined the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in May 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116594",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13510 +LJ,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0064 (UN Ref):QDe.096 Based primarily in Pakistan’s Punjab region and in the city of Karachi. Active in Pakistan although banned as at 2010. Review pursuant to Security Council resolution 2161 (2014) was concluded on 23 Dec. 2016. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282017,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,03/02/2003,03/02/2003,12/01/2022,7242 +LLC COMMERCIAL BANK – INTERNATIONAL SETTLEMENTS BANK,,,,,,,OOO Коммерческий банк «Международный Расчетный Банк»,Cyrillic,Russian,,,,,,,,,,"20, Stalin Street",,,,,Tskhinvali,,Georgia,"(UK Sanctions List Ref):RUS1578 (UK Statement of Reasons):LLC Commercial Bank – International Settlements Bank is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because it provides financial services, or makes available funds, economic resources, goods or technology, that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Type of entity):Limited Liability Company (Business Reg No):1069800001852",Entity,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15522 +LLC MILITARY INDUSTRIAL COMPANY,,,,,,,ООО Военно-промышленная компания,Cyrillic,Russian,,,,,,,,,,"Floor 3, Room 1",15/8 Rochdelskaya St.,,,,Moscow,123376,Russia,"(UK Sanctions List Ref):RUS1357 (UK Statement of Reasons):LLC Military Industrial Company is a manufacturer of armoured vehicles which have been used by Russian military forces in territorial Ukraine. LLC Military Industrial Company has therefore made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, and in doing so has also contributed to the Russian defence sector, a sector of strategic significance to the Government of Russia. (Phone number):+7 (495) 662-10-57 (Website):https://milindcom.ru (Email address):secrvpk@milindcom.ru",Entity,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15306 +LLC SANPROPERTI,,,,,,,,,,,,,,,,,,,et 1 pom 2 kom 28-1 of 1,dom 9,ulitsa Leninskaya Sloboda,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1080 (UK Statement of Reasons):LLC SANPROPERTY is a real estate company. LLC SANPROPERTY is owned or controlled directly or indirectly (within the meaning of regulation 7) by Andrey Sergeevich PUCHKOV, a person who is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019.",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,12/07/2022,15023 +LLC SYNESIS,,,,,,,ООО “Синезис”,Cyrillic,Russian,,,,,,,,,,20B Platonova street,,,,,Minsk,220005,Belarus,"(UK Sanctions List Ref):BEL0065 (UK Statement of Reasons):LLC Synesis (“Synesis”), including through its former wholly-owned subsidiary, LLC 24x7 Panoptes (“Panoptes”), has supplied the Kipod Technology (“Kipod”) to the Republic of Belarus for use with the “Republican System for Monitoring Public Safety” (“RSMPS”), which is a video surveillance and monitoring system. The RSMPS is used by the Belarus Ministry of Internal Affairs, as the State body authorised to coordinate the use of the RSMPS, and law enforcement agencies, including by security and police units. Kipod is a key part of the RSMPS. The RSMPS, relying on Kipod, has provided the Ministry of Internal Affairs and law enforcement agencies with the capability inter alia, to track down civil society and pro-democracy activists, in order to repress them. Further, that capability has been so used. For example, following the elections on 9 August 2020, Nikolay Dedok, a civil society activist who was in hiding was tracked down by the RSMPS using the Kipod system. He was subsequently detained and tortured. Synesis has therefore been involved in the commission of a serious human rights violation or abuse in Belarus and/or the repression of civil society or democratic opposition in Belarus as Synesis has been responsible for and/or has provided support for, either or both such activities; and/or that Synesis has been involved in the supply to Belarus of technology which could contribute to either or both such activities. (Phone number):00375 1 72 40 36 50 (Website):https://synesis.partners  (Email address):S@synesis.y  (Type of entity):Software Company (Business Reg No):(1) (УНН/ИНН): 190950894 (Belarus) (2) 7704734000/770301001 (Russia)",Entity,Primary name,,Belarus,18/12/2020,31/12/2020,07/07/2022,14039 +LLC SYNESIS,,,,,,,ООО “Синезис”,Cyrillic,Russian,,,,,,,,,,Mantulinskaya 24,,,,,Moscow,123100,Russia,"(UK Sanctions List Ref):BEL0065 (UK Statement of Reasons):LLC Synesis (“Synesis”), including through its former wholly-owned subsidiary, LLC 24x7 Panoptes (“Panoptes”), has supplied the Kipod Technology (“Kipod”) to the Republic of Belarus for use with the “Republican System for Monitoring Public Safety” (“RSMPS”), which is a video surveillance and monitoring system. The RSMPS is used by the Belarus Ministry of Internal Affairs, as the State body authorised to coordinate the use of the RSMPS, and law enforcement agencies, including by security and police units. Kipod is a key part of the RSMPS. The RSMPS, relying on Kipod, has provided the Ministry of Internal Affairs and law enforcement agencies with the capability inter alia, to track down civil society and pro-democracy activists, in order to repress them. Further, that capability has been so used. For example, following the elections on 9 August 2020, Nikolay Dedok, a civil society activist who was in hiding was tracked down by the RSMPS using the Kipod system. He was subsequently detained and tortured. Synesis has therefore been involved in the commission of a serious human rights violation or abuse in Belarus and/or the repression of civil society or democratic opposition in Belarus as Synesis has been responsible for and/or has provided support for, either or both such activities; and/or that Synesis has been involved in the supply to Belarus of technology which could contribute to either or both such activities. (Phone number):00375 1 72 40 36 50 (Website):https://synesis.partners  (Email address):S@synesis.y  (Type of entity):Software Company (Business Reg No):(1) (УНН/ИНН): 190950894 (Belarus) (2) 7704734000/770301001 (Russia)",Entity,Primary name,,Belarus,18/12/2020,31/12/2020,07/07/2022,14039 +LLC VOENNO-PROMYSHLENNAYA KOMPANIYA,,,,,,,ООО Военно-промышленная компания,Cyrillic,Russian,,,,,,,,,,"Floor 3, Room 1",15/8 Rochdelskaya St.,,,,Moscow,123376,Russia,"(UK Sanctions List Ref):RUS1357 (UK Statement of Reasons):LLC Military Industrial Company is a manufacturer of armoured vehicles which have been used by Russian military forces in territorial Ukraine. LLC Military Industrial Company has therefore made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, and in doing so has also contributed to the Russian defence sector, a sector of strategic significance to the Government of Russia. (Phone number):+7 (495) 662-10-57 (Website):https://milindcom.ru (Email address):secrvpk@milindcom.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15306 +LLC ZALIV SHIPYARD,,,,,,,,,,,,,,,,,,,,,,,,"Location of entity headquarters, ""Republic of Crimea",,,"(UK Sanctions List Ref):RUS0179 (UK Statement of Reasons):JSC Zaliv Shipyard actively participated in the construction of new railway approaches to the Kerch Bridge, connecting Russian to the illegally annexed Crimean peninsula. Therefore, it is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Phone number):(1) +7 (36561) 33055 (2) +7 (36561) 33501 (3) +7 (36561) 33527 (4) +7 (36561) 34002 (5) +7 (36561) 37858 (6) +7 (861) 2033829 (7) +7 (861) 2033896 (8) + (812) 612-06-12 (Email address):(1) press@zalivkerch.com (2) sess@zalivkerch.com (3) uzis@zalivkerch.com (Type of entity):Shipyard (joint stock company)",Entity,Primary name variation,,Russia,31/07/2018,31/12/2020,16/09/2022,13702 +LLC ZALIV SHIPYARD,,,,,,,,,,,,,,,,,,,,,4,Tankistov Street,Kerch,The Autonomous Republic of Crimea and the city of Sevastopol,298310,Ukraine,"(UK Sanctions List Ref):RUS0179 (UK Statement of Reasons):JSC Zaliv Shipyard actively participated in the construction of new railway approaches to the Kerch Bridge, connecting Russian to the illegally annexed Crimean peninsula. Therefore, it is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Phone number):(1) +7 (36561) 33055 (2) +7 (36561) 33501 (3) +7 (36561) 33527 (4) +7 (36561) 34002 (5) +7 (36561) 37858 (6) +7 (861) 2033829 (7) +7 (861) 2033896 (8) + (812) 612-06-12 (Email address):(1) press@zalivkerch.com (2) sess@zalivkerch.com (3) uzis@zalivkerch.com (Type of entity):Shipyard (joint stock company)",Entity,Primary name variation,,Russia,31/07/2018,31/12/2020,16/09/2022,13702 +LOBACH,Tatyana,Georgievna,,,,,Лобач Татьяна Георгиевна,,,08/01/1974,Khmelnitsky,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0681 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14632 +LOGARCHEO AG,,,,,,,,,,,,,,,,,,,Chemin du Carmel,1661 Le Paquier-Montbarry,,,,,,Switzerland,(UK Sanctions List Ref):IRQ0053 (UN Ref):IQe.200 Federal No.: CH-2 17-0-431-423-3 (Switzerland),Entity,FKA,,Iraq,05/05/2004,26/04/2004,31/12/2020,8283 +LOGARCHEO S.A.,,,,,,,,,,,,,,,,,,,Chemin du Carmel,1661 Le Paquier-Montbarry,,,,,,Switzerland,(UK Sanctions List Ref):IRQ0053 (UN Ref):IQe.200 Federal No.: CH-2 17-0-431-423-3 (Switzerland),Entity,Primary name,,Iraq,05/05/2004,26/04/2004,31/12/2020,8283 +LOGINOV,Vyacheslav,Yurievich,,,,,Логинов Вячеслав Юрьевич,,,09/01/1979,Poyarkovo,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0449 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14394 +LOGUNOV,Oleg,,,,,,,,,04/02/1962,Irkutsk Region,Russia,Russia,624041562,(expired 22 April 2010),,,"Former Deputy Head of the Investigative Committee, Russian Ministry of the Interior",Yuzhnobutovskaya street 61-52,,,,,Moscow,117042,Russia,"(UK Sanctions List Ref):GHR0013 (UK Statement of Reasons):Oleg Logunov, as the Deputy Head of the Investigative Committee of the Russian Interior Ministry, was involved in the mistreatment of Sergei Magnitsky, which contributed significantly to his death on 16 November 2009. Lugunov was part of a ‘team’ of investigators who failed to investigate complaints made by Magnitsky about his mistreatment and provided support to subordinates who were directly involved in that conduct. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,30/09/2020,13870 +LOOR,Ivan,Ivanovich,,,,,Лоор Иван Иванович,,,11/12/1955,"Kamensky, Rostov",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0289 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14234 +LOPEZ,Chico,,,,,,,,,17/09/1950,,Nicaragua,Nicaragua,C0915261,Nicaragua,,,(1) Treasurer of Sandinista Party (2) Minister (Advisory) of Production and Trade,,,,,,,,Nicaragua,"(UK Sanctions List Ref):GAC0022 (UK Statement of Reasons):LOPEZ CENTENO was a high-ranking public official and Vice President of state-owned ALBANISA. He has been involved in serious corruption by presiding over misappropriation during his leadership whereby public funds were diverted to fake companies, or inflated projects. He has been responsible for serious corruption, and facilitated or supported it. This deprived the Nicaraguan state and its citizens of vital resources for development. (Gender):Male",Individual,AKA,,Global Anti-Corruption,26/04/2021,26/04/2021,20/05/2022,14090 +LOPEZ CENTENO,Jose,Francisco,,,,,Jose Francisco LÓPEZ CENTENO,,,17/09/1950,,Nicaragua,Nicaragua,C0915261,Nicaragua,,,(1) Treasurer of Sandinista Party (2) Minister (Advisory) of Production and Trade,,,,,,,,Nicaragua,"(UK Sanctions List Ref):GAC0022 (UK Statement of Reasons):LOPEZ CENTENO was a high-ranking public official and Vice President of state-owned ALBANISA. He has been involved in serious corruption by presiding over misappropriation during his leadership whereby public funds were diverted to fake companies, or inflated projects. He has been responsible for serious corruption, and facilitated or supported it. This deprived the Nicaraguan state and its citizens of vital resources for development. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,20/05/2022,14090 +LORD'S RESISTANCE ARMY,,,,,,,,,,,,,,,,,,,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,Primary name,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE ARMY,,,,,,,,,,,,,,,,,,,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,Primary name,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE ARMY,,,,,,,,,,,,,,,,,,,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,Primary name,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE ARMY,,,,,,,,,,,,,,,,,,,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,Primary name,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE ARMY,,,,,,,,,,,,,,,,,,,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,Primary name,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE ARMY,,,,,,,,,,,,,,,,,,,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,Primary name,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE ARMY,,,,,,,,,,,,,,,,,,,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,Primary name,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE MOVEMENT (LRM),,,,,,,,,,,,,,,,,,,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE MOVEMENT (LRM),,,,,,,,,,,,,,,,,,,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE MOVEMENT (LRM),,,,,,,,,,,,,,,,,,,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE MOVEMENT (LRM),,,,,,,,,,,,,,,,,,,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE MOVEMENT (LRM),,,,,,,,,,,,,,,,,,,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE MOVEMENT (LRM),,,,,,,,,,,,,,,,,,,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE MOVEMENT (LRM),,,,,,,,,,,,,,,,,,,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE MOVEMENT/ARMY (LRM/A),,,,,,,,,,,,,,,,,,,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE MOVEMENT/ARMY (LRM/A),,,,,,,,,,,,,,,,,,,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE MOVEMENT/ARMY (LRM/A),,,,,,,,,,,,,,,,,,,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE MOVEMENT/ARMY (LRM/A),,,,,,,,,,,,,,,,,,,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE MOVEMENT/ARMY (LRM/A),,,,,,,,,,,,,,,,,,,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE MOVEMENT/ARMY (LRM/A),,,,,,,,,,,,,,,,,,,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORD'S RESISTANCE MOVEMENT/ARMY (LRM/A),,,,,,,,,,,,,,,,,,,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LORENZANA,Felipe,ALEJOS,,,,,,,,03/10/1984,,,Guatemala,,,,,Deputy and Vice President of the Board of Directors of the Congress of Guatemala.,,,,,,,,,"(UK Sanctions List Ref):GAC0021 (UK Statement of Reasons):ALEJOS LORENZANA is a Deputy and Vice President of the Board of Directors of the Congress of Guatemala. He has been involved in serious corruption using his position to attract clients with the offer of expediting the refund of tax credits in exchange for bribes, and benefitting from commission charges He is responsible for, and facilitated or provided support for, and benefitted from, serious corruption. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14089 +LOSYAKIN,Alexander,Mikhailovich,,,,,,,,21/07/1957,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0040 (UK Statement of Reasons):Lasyakin is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13956 +LOSYAKIN,Alexsander,Mikhailovich,,,,,,,,21/07/1957,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0040 (UK Statement of Reasons):Lasyakin is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13956 +LOSYAKIN,Aliaksandr,Mikhailavich,,,,,,,,21/07/1957,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0040 (UK Statement of Reasons):Lasyakin is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13956 +LOTSMANOV,Dmitriy,Nikolaevich,,,,,Лоцманов Дмитрий Николаевич,,,03/02/1975,"Armavir, Krasnodar",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0671 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14622 +LOUCA,,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,AKA,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LOUCA,Housam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LOUCA,Houssam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LOUCA,Husam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LOUCA,Hussam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LOUKA,,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,AKA,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LOUKA,Housam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LOUKA,Houssam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LOUKA,Husam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LOUKA,Hussam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LOUNICI,Jamal,,,,,,,,,01/02/1962,Algiers,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0163 (UN Ref):QDi.155 Father's name is Abdelkader. Mother's name is Djohra Birouch. Returned from France to Algeria where he resides since Sep. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4525545,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/01/2004,16/01/2004,31/12/2020,7997 +LOUNICI,DJAMEL,,,,,,جمال لونيسي,,,01/02/1962,Algiers,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0163 (UN Ref):QDi.155 Father's name is Abdelkader. Mother's name is Djohra Birouch. Returned from France to Algeria where he resides since Sep. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4525545,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,19/01/2004,16/01/2004,31/12/2020,7997 +LOUQA,,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,AKA,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LOUQA,Housam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LOUQA,Houssam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LOUQA,Husam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LOUQA,Hussam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LOWETH,Michael,Makue,,,,,,,,00/00/1947,,South Sudan,(1) Kenya (2) South Sudan (3) Sudan,,,,,"(1) Acting Governor of Southern Leich State (2) Government Spokesperson (3) Minister for Information and Broadcasting (4) Minister of Information, Broadcast, Telecommunication and Postal Services",,,,,,,,,"(UK Sanctions List Ref):SSU0001 (UK Statement of Reasons):Michael Makuei Leuth has held the position of Minister for Information and Broadcasting since 2013 and has been the public spokesman for the government delegation to the Intergovernmental Authority on Development (IGAD) peace talks. Makuei has obstructed the political process in South Sudan, in particular by obstructing the implementation of the Agreement on the Resolution of the Conflict in South Sudan (ARCSS) of August 2015 through inflammatory public statements and obstructing the work of the ARCSS Joint Monitoring Evaluation Committee and the establishment of the ARCSS Transitional Justice Institutions. He has also obstructed the operations of the UN's Regional Protection Force (RPF). Makuei is also responsible for serious violations of human rights, including restrictions on freedom of expression. Since the Revitalised ARCSS was signed (R-ARCSS) in September 2018, Makuei has continued to undermine the prospects for peace in South Sudan. (Gender):Male",Individual,Primary name variation,,South Sudan,03/02/2018,31/12/2020,03/03/2022,13610 +LOZITSKY,Aleksandr,,,,,Lieutenant Colonel,ЛОЗИЦКИЙ Александр Витальевич,Cyrillic,,21/12/1971,,,Belarus,,,,,Commander Unit 65408 Luninets Airbase,,,,,,,,,"(UK Sanctions List Ref):RUS0719 (UK Statement of Reasons):Lieutenant Colonel Aleksandr Vitalievich LOZITSKY is a member of the Armed Forces of Belarus, he currently holds the position of Commander Unit 65408 Luninets Airbase. In this position he is deemed to have been either in direct command of or in a position to hold considerable situational awareness of troops involved in the Russian invasion of Ukraine through the facilitation of Russian freedom of movement into the north of Ukraine. He is also deemed to be in a position that provides logistical support to the Armed Forces of the Russian Federation in their ongoing military operations in Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14670 +LRA,,,,,,,,,,,,,,,,,,,,,,,,Basse-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LRA,,,,,,,,,,,,,,,,,,,,,,,,Bas-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LRA,,,,,,,,,,,,,,,,,,,,,,,,Haute-Kotto,,Central African Republic,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LRA,,,,,,,,,,,,,,,,,,,,,,,,Haut-Mbomou,,Central African Republic,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LRA,,,,,,,,,,,,,,,,,,,,,,,,Haut-Uolo,,Congo (Democratic Republic),"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LRA,,,,,,,,,,,,,,,,,,,,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LRA,,,,,,,,,,,,,,,,,,,,,,,,Vakaga,,Central African Republic,"(UK Sanctions List Ref):CAF0002 (UN Ref):CFe.002 (UK Statement of Reasons):Emerged in northern Uganda in the 1980s. Has engaged in the abduction, killing and mutilation of thousands of civilians in Central Africa, including hundreds in the Central African Republic. The leader is Joseph Kony (CFi.009). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5932344",Entity,AKA,,Central African Republic,12/03/2016,07/03/2016,31/12/2020,13345 +LUBANGA,THOMAS,,,,,,,,,,Ituri,Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0058 (UN Ref):CDi.007 Arrested in Kinshasa in March 2005 for UPC/L involvement in human rights abuses violations. Transferred to the ICC on 17 March 2006. Convicted by the ICC in March 2012 and sentenced to 14 years in prison. On 1 December 2014, ICC appeals judges upheld Lubanga’s conviction and sentence. Transferred to a prison facility in the DRC on 19 December 2015 to serve out his sentence of imprisonment. He was released on 15 March 2020 after having served his ICC sentence. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8738 +LUCENA RAMIREZ,Tibisay,,,,,President,Tibisay Lucena Ramírez,,,26/04/1959,,,Venezuela,,,,,(1) Minister of University Education (since Oct 2021) (2) Former President of the National Electoral Council (CNE) (3) Former Rector of the National Experimental University of the Arts (UNEARTE),,,,,,Caracas,,Venezuela,"(UK Sanctions List Ref):VEN0017 President of the National Electoral Council (UK Statement of Reasons):Currently Minister of University Education and former President of the National Electoral Council (Consejo Nacional Electoral – CNE). As CNE President between April 2006 – June 2020, her actions and policies have undermined democracy and the rule of law in Venezuela, including by failing to ensure that the CNE remains an impartial and independent institution in accordance with the Venezuelan Constitution thereby facilitating the establishment of the Constituent Assembly and the re-election of Nicolás Maduro in May 2018 through presidential elections that were neither free nor fair. (Gender):Female",Individual,Primary name,,Venezuela,22/01/2018,31/12/2020,28/01/2022,13582 +LUETH,Michael,Makuei,,,,Minister,,,,00/00/1947,,South Sudan,(1) Kenya (2) South Sudan (3) Sudan,,,,,"(1) Acting Governor of Southern Leich State (2) Government Spokesperson (3) Minister for Information and Broadcasting (4) Minister of Information, Broadcast, Telecommunication and Postal Services",,,,,,,,,"(UK Sanctions List Ref):SSU0001 (UK Statement of Reasons):Michael Makuei Leuth has held the position of Minister for Information and Broadcasting since 2013 and has been the public spokesman for the government delegation to the Intergovernmental Authority on Development (IGAD) peace talks. Makuei has obstructed the political process in South Sudan, in particular by obstructing the implementation of the Agreement on the Resolution of the Conflict in South Sudan (ARCSS) of August 2015 through inflammatory public statements and obstructing the work of the ARCSS Joint Monitoring Evaluation Committee and the establishment of the ARCSS Transitional Justice Institutions. He has also obstructed the operations of the UN's Regional Protection Force (RPF). Makuei is also responsible for serious violations of human rights, including restrictions on freedom of expression. Since the Revitalised ARCSS was signed (R-ARCSS) in September 2018, Makuei has continued to undermine the prospects for peace in South Sudan. (Gender):Male",Individual,Primary name,,South Sudan,03/02/2018,31/12/2020,03/03/2022,13610 +LUETH MAKUEI,Michael,Makuei,,,,,,,,00/00/1947,,South Sudan,(1) Kenya (2) South Sudan (3) Sudan,,,,,"(1) Acting Governor of Southern Leich State (2) Government Spokesperson (3) Minister for Information and Broadcasting (4) Minister of Information, Broadcast, Telecommunication and Postal Services",,,,,,,,,"(UK Sanctions List Ref):SSU0001 (UK Statement of Reasons):Michael Makuei Leuth has held the position of Minister for Information and Broadcasting since 2013 and has been the public spokesman for the government delegation to the Intergovernmental Authority on Development (IGAD) peace talks. Makuei has obstructed the political process in South Sudan, in particular by obstructing the implementation of the Agreement on the Resolution of the Conflict in South Sudan (ARCSS) of August 2015 through inflammatory public statements and obstructing the work of the ARCSS Joint Monitoring Evaluation Committee and the establishment of the ARCSS Transitional Justice Institutions. He has also obstructed the operations of the UN's Regional Protection Force (RPF). Makuei is also responsible for serious violations of human rights, including restrictions on freedom of expression. Since the Revitalised ARCSS was signed (R-ARCSS) in September 2018, Makuei has continued to undermine the prospects for peace in South Sudan. (Gender):Male",Individual,Primary name variation,,South Sudan,03/02/2018,31/12/2020,03/03/2022,13610 +'LUGANSKAYA NARODNAYA RESPUBLIKA' (LNR),,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0182 Names of Directors(s). Management: Associated with Aleksey Karyakin (who signed the Novorossiya declaration). Mr Vasyl Nikitin responsible for the separatist ""governmental"" activities of the so called ""government of the People's Republic of Luhansk"". Gennadiy Nikolaivych Tsyplakov was active before becoming ""Prime Minister of the so-called ""Lugansk People's Republic"". (UK Statement of Reasons):The so called ‘Lugansk People's Republic’ was established on 27 April 2014. Responsible for organising the illegal referendum on May 11 2014, and made a declaration of independence on May 12 2014. On 22 May 2014, the so called ‘People's Republics’ of Donetsk and Lugansk created the so called ‘Federal State of Novorossiya’. The so called “Lugansk People’s Republic” took part in ‘elections’ on 11 November 2018. Holding any kind of elections without Ukraine’s consent is a clear violation of the country’s sovereignty. This is in breach of Ukrainian constitutional law, and, as a consequence, of international law, thus undermining the territorial integrity, sovereignty and independence of Ukraine. It is also involved in the recruitment to the separatist ‘Army of Southeast’ and other illegal armed separatist groups, thus undermining the stability or security of Ukraine. (Website):https://glava-Inr.su/content/konstituciya, https://glava.lnr.info (Type of entity):Enterprise",Entity,AKA,,Russia,25/07/2014,31/12/2020,16/09/2022,13047 +LUGANSKIY EKONOMICHESKIY SOYUZ,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0183 (UK Statement of Reasons):Luhansk Economic Union is a ‘social organisation’ that presented candidates in the illegal so-called ‘elections’ of the so-called ‘Lugansk People’s Republic’ on 2 November 2014. The organisation nominated candidate, Oleg Akimov, to be ‘Head’ of the so-called ‘Lugansk People’s Republic’. These ‘elections’ are in breach of Ukrainian law and therefore illegal.",Entity,AKA,,Russia,02/12/2014,31/12/2020,31/12/2020,13187 +LUGMAAN,Abu,,,,,,,,,18/02/1989,Bonn,Germany,(1) Germany (2) Algeria,,,5802098444,"Germany national identity card number, issued in Bonn, Germany on 15 Apr. 2010, expired on 14 Apr. 2016",,,,,,,,,,"(UK Sanctions List Ref):AQD0169 (UN Ref):QDi.403 German foreign terrorist fighter for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: eye colour: brown; hair colour: black; height: 178cm; weight: 80kg. European arrest warrant issued by the investigating judge of the German Federal Supreme Court on 13 Aug. 2014. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6104049 (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,19/06/2017,16/06/2017,31/12/2020,13490 +LUGOVOI,Andrey,Konstantinovich,,,,,,,,19/10/1966,Baku,Azerbaijan,Russia,0608109,,,,Member of Parliament (Russian Duma),Soloviniya Proezd,16-1-247,,,,Moscow,117593,Russia,"(UK Sanctions List Ref):GHR0084 Subject to an Anti-Terrorism, Crime and Security Act 2001 (ATCSA) freezing order from 2016 – 2022. (UK Statement of Reasons):Andrey Lugovoy is a former member of the Russian military and currently serves in the Russian Parliament. He was one of the two individuals found to be responsible by the Litvinenko Inquiry for the killing of Alexander Litvinenko through deliberate poisoning with polonium 210 in November 2006. This action constitutes a serious violation of the right to life. It is probable that this action was carried out under the direction of the Federal Security Service of the Russian Federation (FSB). (Gender):Male",Individual,Primary name variation,,Global Human Rights,13/01/2022,13/01/2022,17/01/2022,13310 +LUGOVOY,Andrey,Konstantinovich,,,,,Андрей Константинович Луговой,,,19/10/1966,Baku,Azerbaijan,Russia,0608109,,,,Member of Parliament (Russian Duma),Soloviniya Proezd,16-1-247,,,,Moscow,117593,Russia,"(UK Sanctions List Ref):GHR0084 Subject to an Anti-Terrorism, Crime and Security Act 2001 (ATCSA) freezing order from 2016 – 2022. (UK Statement of Reasons):Andrey Lugovoy is a former member of the Russian military and currently serves in the Russian Parliament. He was one of the two individuals found to be responsible by the Litvinenko Inquiry for the killing of Alexander Litvinenko through deliberate poisoning with polonium 210 in November 2006. This action constitutes a serious violation of the right to life. It is probable that this action was carried out under the direction of the Federal Security Service of the Russian Federation (FSB). (Gender):Male",Individual,Primary name,,Global Human Rights,13/01/2022,13/01/2022,17/01/2022,13310 +LUHANSK ECONOMIC UNION,,,,,,,Луганский экономический союз,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0183 (UK Statement of Reasons):Luhansk Economic Union is a ‘social organisation’ that presented candidates in the illegal so-called ‘elections’ of the so-called ‘Lugansk People’s Republic’ on 2 November 2014. The organisation nominated candidate, Oleg Akimov, to be ‘Head’ of the so-called ‘Lugansk People’s Republic’. These ‘elections’ are in breach of Ukrainian law and therefore illegal.",Entity,Primary name,,Russia,02/12/2014,31/12/2020,31/12/2020,13187 +LUHANSK PEOPLE’S REPUBLIC,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0182 Names of Directors(s). Management: Associated with Aleksey Karyakin (who signed the Novorossiya declaration). Mr Vasyl Nikitin responsible for the separatist ""governmental"" activities of the so called ""government of the People's Republic of Luhansk"". Gennadiy Nikolaivych Tsyplakov was active before becoming ""Prime Minister of the so-called ""Lugansk People's Republic"". (UK Statement of Reasons):The so called ‘Lugansk People's Republic’ was established on 27 April 2014. Responsible for organising the illegal referendum on May 11 2014, and made a declaration of independence on May 12 2014. On 22 May 2014, the so called ‘People's Republics’ of Donetsk and Lugansk created the so called ‘Federal State of Novorossiya’. The so called “Lugansk People’s Republic” took part in ‘elections’ on 11 November 2018. Holding any kind of elections without Ukraine’s consent is a clear violation of the country’s sovereignty. This is in breach of Ukrainian constitutional law, and, as a consequence, of international law, thus undermining the territorial integrity, sovereignty and independence of Ukraine. It is also involved in the recruitment to the separatist ‘Army of Southeast’ and other illegal armed separatist groups, thus undermining the stability or security of Ukraine. (Website):https://glava-Inr.su/content/konstituciya, https://glava.lnr.info (Type of entity):Enterprise",Entity,AKA,,Russia,25/07/2014,31/12/2020,16/09/2022,13047 +LUKA,,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,AKA,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LUKA,Housam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LUKA,Houssam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LUKA,Husam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LUKA,Hussam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LUKASHENKA,Aleksandr,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKA,Aleksandr,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKA,Aleksandr,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKA,Aleksandr,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKA,Aleksandr,Grogorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKA,Aleksandr,Grogorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKA,Aleksandr,Grogorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKA,Aleksandr,Grogorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKA,Aleksandr,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKA,Aleksandr,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKA,Aleksandr,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKA,Aleksandr,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKA,Alexander,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKA,Alexander,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKA,Alexander,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKA,Alexander,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKA,Alexander,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKA,Alexander,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKA,Alexander,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKA,Alexander,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKA,Alexander,Ryhorovich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKA,Alexander,Ryhorovich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKA,Aliaksandr,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKA,Aliaksandr,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKA,Aliaksandr,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKA,Aliaksandr,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKA,Aliaksandr,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKA,Aliaksandr,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKA,Aliaksandr,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKA,Aliaksandr,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKA,Aleksandrovich,,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,13/04/2022,13919 +LUKASHENKA,Aleksandrovich,,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13919 +LUKASHENKA,Viktar,Aleksandrovich,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13919 +LUKASHENKA,Viktar,Aleksandrovich,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,13/04/2022,13919 +LUKASHENKA,Viktar,Aliaksandravich,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13919 +LUKASHENKA,Viktar,Aliaksandravich,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,13/04/2022,13919 +LUKASHENKA,Viktor,Aliaksandravich,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13919 +LUKASHENKA,Viktor,Aliaksandravich,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,13/04/2022,13919 +LUKASHENKA,Viktar,,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,13/04/2022,13919 +LUKASHENKA,Viktar,,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13919 +LUKASHENKO,Aleksandr,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKO,Aleksandr,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKO,Aleksandr,Grogorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKO,Aleksandr,Grogorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKO,Aleksandr,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKO,Aleksandr,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKO,Alexander,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKO,Alexander,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKO,Alexander,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKO,Alexander,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKO,Alexander,Ryhorovich,,,,,"ЛУКАШЭНКА, Аляксандр Рыгоравіч",,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKO,Alexander,Ryhorovich,,,,,"ЛУКАШЭНКА, Аляксандр Рыгоравіч",,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKO,Aliaksandr,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKO,Aliaksandr,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKO,Aliaksandr,Ryhoravich,,,,,"ЛУКАШЕНКО, Александр Григорьевич",,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKO,Aliaksandr,Ryhoravich,,,,,"ЛУКАШЕНКО, Александр Григорьевич",,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKO,Aliaksandr,Ryhoravich,,,,,"ЛУКАШЕНКО, Александр Григорьевич",,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKO,Aliaksandr,Ryhoravich,,,,,"ЛУКАШЕНКО, Александр Григорьевич",,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKO,Viktor,Aliaksandravich,,,,,"ЛУКАШЭНКА, Віктар Аляксандравіч",,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name,,Belarus,06/11/2020,31/12/2020,13/04/2022,13919 +LUKASHENKO,Viktor,Aliaksandravich,,,,,"ЛУКАШЭНКА, Віктар Аляксандравіч",,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name,,Global Human Rights,29/09/2020,29/09/2020,13/04/2022,13919 +LUKASHENKO,Aleksandr,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKO,Aleksandr,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKO,Aleksandr,Grogorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKO,Aleksandr,Grogorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKO,Aleksandr,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKO,Aleksandr,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKO,Aleksandrovich,,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13919 +LUKASHENKO,Aleksandrovich,,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,13/04/2022,13919 +LUKASHENKO,Alexander,Grigorievich,,,,,"ЛУКАШЭНКА, Аляксандр Рыгоравіч",,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKO,Alexander,Grigorievich,,,,,"ЛУКАШЭНКА, Аляксандр Рыгоравіч",,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKO,Alexander,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKO,Alexander,Ryhoravich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKO,Aliaksandr,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13918 +LUKASHENKO,Aliaksandr,Grigorievich,,,,,,,,30/08/1954,"Kopys, Vitebsk/Viciebsk district",Belarus,Belarus,,,,,President of Belarus,Independence Palace,Prospekte Pobeditelei,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0045 and GHR0050 Listed under the Global Human Rights and Belarus sanctions regimes. (UK Statement of Reasons):Alexander Lukashenko is the President of Belarus. He has held near absolute authority in his 26 years in power and maintains close control over the security apparatus of the State. This authority has remained in place since the 9 August 2020 Presidential election and he is ultimately responsible for the violence against protestors and journalists and the Lukashenko regime’s campaign to repress civil society and democratic opposition, and undermine the rule of law, that has followed the disputed election result in Belarus. Lukashenko has not called out violence and has expressed support for security services. Alexander Lukashenko has therefore been responsible for serious violations of human rights, the repression of civil society or democratic opposition in Belarus, or other actions, policies or activities which undermine democracy or the rule of law in Belarus following 9 August 2020, and has been involved in promoting such activities. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13918 +LUKASHENKO,Viktar,Aleksandrovich,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13919 +LUKASHENKO,Viktar,Aleksandrovich,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,13/04/2022,13919 +LUKASHENKO,Viktar,Aliaksandravich,,,,,"ЛУКАШЕНКО, Виктор Александрович",,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13919 +LUKASHENKO,Viktar,Aliaksandravich,,,,,"ЛУКАШЕНКО, Виктор Александрович",,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,13/04/2022,13919 +LUKASHENKO,Viktor,Aleksandrovich,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13919 +LUKASHENKO,Viktor,Aleksandrovich,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,13/04/2022,13919 +LUKASHENKO,Viktar,,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,13/04/2022,13919 +LUKASHENKO,Viktar,,,,,,,,,28/11/1975,Mohilev/Mogilev/Mahiliou,Belarus,Belarus,,,,,(1) President of the National Olympic Committee of the Republic of Belarus (2) former National Security Advisor to the President,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0047 and GHR0051 Listed under the Belarus and Global Human Rights sanctions regimes. Son of the President. (UK Statement of Reasons):Viktor Lukashenko is the former National Security Adviser to the President of Belarus and a former member of the Security Council of Belarus. In these roles, he oversaw law enforcement and the security services and was therefore responsible for the serious human rights violations perpetrated against protestors and journalists following the Presidential election on 9 August 2020. Since February 2021, Viktor Lukashenko has been the President of the National Olympic Committee of the Republic of Belarus (NOC). Prior to this, he was the First Vice President of the NOC. The International Olympic Committee has adopted measures against the NOC for not appropriately protecting athletes from reprisals against them for protesting the 9 August 2020 elections and subsequent violent suppression of peaceful protests. Viktor Lukashenko is therefore responsible for supporting the Lukashenko regime in its repression of civil society or democratic opposition or other actions, policies or activities which undermine democracy or the rule of law in Belarus. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,13/04/2022,13919 +LUKASHEVICH,Vadim,Anatolyevich,,,,Colonel,ЛУКАШЕВИЧ Вадим Анатольевич,Cyrillic,,,,,Belarus,,,,,Head of the Information Department of the Main Directorate for Ideological Work of the Ministry of Defence,,,,,,,,,"(UK Sanctions List Ref):RUS0751 (UK Statement of Reasons):As Head of the Information Department of the Main Directorate for Ideological Work of the Ministry of Defence of Belarus, Vadim Anatolyevich LUKASHEVICH is or has been involved in providing support or promoting actions and policies destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/07/2022,14702 +LUKYANENKO,Valerii,Vasilyevich,,,,,КУЛИК Вадим Валерьевич,Cyrillic,Russian,00/00/1955,Novosibirsk region,Russia,Russia,,,,,Deputy President and Chairman of VTB Bank Management Board,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0857 (UK Statement of Reasons):Valerii LUKYANENKO is a member of VTB Bank’s Management Board. VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, LUKYANENKO obtains a financial benefit from VTB Bank, therefore LUKYANENKO is an involved person on the basis of his membership of and association with VTB Bank. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14808 +LUKYANENKO,Valery,,,,,,,,,00/00/1955,Novosibirsk region,Russia,Russia,,,,,Deputy President and Chairman of VTB Bank Management Board,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0857 (UK Statement of Reasons):Valerii LUKYANENKO is a member of VTB Bank’s Management Board. VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, LUKYANENKO obtains a financial benefit from VTB Bank, therefore LUKYANENKO is an involved person on the basis of his membership of and association with VTB Bank. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14808 +LUKYANOVICH,Andrei,,,,,Colonel,"ЛУКЬЯНОВИЧ, Андрей",Cyrillic,Russian,,,,Belarus,,,,,Deputy Commander of the Air Force and Air Defence Forces,,,,,,,,,"(UK Sanctions List Ref):RUS0711 (UK Statement of Reasons):Colonel Andrei LUKYANOVICH has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely being involved in the command of the Air Force and Air Defence Forces which have hosted Russian air assets and allowed its facilities to be used by Russia in launching attacks on Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14662 +LUMONDE,,,,,,,,,,00/00/1977,,,Uganda,,,,,Overall leader of the Allied Democratic Forces (ADF) (CDe.001),,,,Kajuju camp of Medina II,Beni territory,North Kivu,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0059 (UN Ref):CDi.036 Longtime member of the ADF (CDe.001), Baluku used to be the second in command to ADF founder Jamil Mukulu (CDi.015) until he took over after FARDC military operation Sukola I in 2014.",Individual,AKA,Low quality,Democratic Republic of the Congo,07/02/2020,06/02/2020,31/12/2020,13813 +LUMU,,,,,,,,,,00/00/1977,,,Uganda,,,,,Overall leader of the Allied Democratic Forces (ADF) (CDe.001),,,,Kajuju camp of Medina II,Beni territory,North Kivu,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0059 (UN Ref):CDi.036 Longtime member of the ADF (CDe.001), Baluku used to be the second in command to ADF founder Jamil Mukulu (CDi.015) until he took over after FARDC military operation Sukola I in 2014.",Individual,AKA,Low quality,Democratic Republic of the Congo,07/02/2020,06/02/2020,31/12/2020,13813 +LUQA,Housam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LUQA,Houssam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LUQA,Husam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LUQA,Hussam,,,,,,,,,00/00/1964,Damascus,Syria,Syria,,,,,Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0092 (UK Statement of Reasons):Since April 2012, was head of the Homs branch of the Political Security Directorate (succeeded Brig. Gen. Nasr al-Ali). Since 03.12.2018, head of the Political Security Directorate. Since 2019, Head of the General Security Directorate. Responsible for the torture of opponents in custody. (Gender):Male",Individual,Primary name,,Syria,24/07/2012,31/12/2020,13/05/2022,12718 +LUQMAN,Abu,,,,,,,,,00/00/1973,"Sahl Village, Raqqa Province",Syria,Syria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0132 (UN Ref):QDi.384 A leader of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). As of Jun, 2015, al-Shawakh was the ISIL governor of Aleppo. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13317 +LUQMAN,Abu,,,,,,,,,18/01/1967,"Welling, London",United Kingdom,United Kingdom,516384722,Expire date: 06/06/2023. Issue date: 06/05/2013,,,,,,,,,London,,United Kingdom,"(UK Sanctions List Ref):AQD0143 (UN Ref):QDi.419 Pledged allegiance to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115) in July 2014. Imprisoned in the United Kingdom in September 2014 with a tentative release in October 2018 and subsequently released on licence in October 2018 which expires in July 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,16/10/2018,15/10/2018,31/12/2020,13714 +LUSTENKO,Andrey,Yurievich,,,,,ЛУСТЕНКО Андрей Юрьевич,Cyrillic,Russian,16/06/1975,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1162 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15114 +LUTSKY,Igor,Vladimirovich,,,,,Игорь Владимирович ЛУЦКИЙ,,,31/10/1972,"Stolin, Brest Oblast",former USSR (now Belarus),Belarus,,,,,Minster of Information of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0074 (UK Statement of Reasons):In his leadership position as Minister of Information, Ihar Lutsky is responsible for the repression of civil society, and in particular the Ministry of Information decision to cut off access to independent websites and limit internet access in Belarus in the wake of the 2020 presidential election, as a tool of repression of civil society, peaceful demonstrators and journalists. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14031 +LUTSKY,Ihar,Uladzimiravich,,,,,Iгар Уладзiмiравiч ЛУЦКI,,,31/10/1972,"Stolin, Brest Oblast",former USSR (now Belarus),Belarus,,,,,Minster of Information of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0074 (UK Statement of Reasons):In his leadership position as Minister of Information, Ihar Lutsky is responsible for the repression of civil society, and in particular the Ministry of Information decision to cut off access to independent websites and limit internet access in Belarus in the wake of the 2020 presidential election, as a tool of repression of civil society, peaceful demonstrators and journalists. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14031 +LUUMU,Nicolas,,,,,,,,,00/00/1965,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +LUUMU,Nicolas,,,,,,,,,01/01/1964,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +LUYOYO,Ferdinand,Ilunga,,,,Commander-in-Chief,,,,08/03/1973,Lubumbashi,Congo (Democratic Republic),Congo (Democratic Republic),OB0260335,"iss 15 April 2011, exp 14 April 2016",,,"(1) Former Commander in Chief, Legion Nationale d’Intervention (LENI), (2) Co-ordinator, Anti-Riot Police (PNC), (3) Former Commander of the unit responsible for the protection of institutions and high-ranking officials (PNC), (4) President of the Congolese Boxing Federation",Avenue des Orangiers No 2,,,,commune de las Gombe,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0003 (UK Statement of Reasons):As Former Commander of the anti-riot body Légion Nationale d'Intervention (LENI) of the Congolese National Police (PNC), Ferdinand Ilunga LUYOYO was responsible for disproportionate use of force and violent repression in September 2016 in Kinshasa. In this capacity, Ferdinand Ilunga LUYOYO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC. There are reasonable grounds to conclude that LUYOYO was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was in the role outlined above and therefore bore responsibility for the human rights violations committed by the PNC and LENI.  (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13434 +LVOVA-BELOVA,Maria,Alekseevna,,,,,Мария Алексеевна Львова-Белова,,,25/10/1984,Penza,Russia,Russia,,,,,Commissioner for Children’s Rights under the President of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS1478 (UK Statement of Reasons):Maria Lvova-Belova (henceforth Lvova-Belova) is an involved person under the Russia (Sanctions)(EU Exit) Regulation 2019 because she is responsible for, and provides support for, policies or actions which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine, in her role as the Commissioner for Children’s Rights under the President of the Russian Federation. (Gender):Female",Individual,Primary name,,Russia,16/06/2022,16/06/2022,16/06/2022,15411 +LWIN,Thura,San,,,,Brigadier General,,,,17/03/1959,,,Myanmar,,,,,Commander of the Border Guard Police,,,,,,,,,"(UK Sanctions List Ref):MYA0007 (UK Statement of Reasons):Brigadier General Thura San Lwin, Commander of the Border Guard Police. He was commander of the BGP in Rakhine, during the most intense months of the Rohingya ‘clearance operations’, which commenced on 25 August 2017 and were at their most intense during the following two months. Thura San Lwin, directly and through his position of command, is responsible for overseeing the commission of serious human rights violations committed against the Rohingya in Rakhine State, including physical abuse, torture and sexual violence against and detention of Rohingya people. (Gender):Male",Individual,Primary name,,Myanmar,26/06/2018,29/04/2021,11/11/2022,13692 +LYABIKHOV,Roman,Mikhailovich,,,,,Лябихов Роман Михайлович,,,07/05/1973,"Severodvinsk, Arkhangelsk",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0290 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14235 +LYAGIN,Roman,Viktorovich,,,,,"ЛЯГИН, РОМАН ВИКТОРОВИЧ",,,30/05/1980,Donetsk,Ukraine,Ukraine,,,,,"(1) Former head of the 'Donetsk People's Republic' Central Electoral Commission (2) Former ""Minister of Labour and Social Policy""",In detention in Ukraine,,,,,,,,"(UK Sanctions List Ref):RUS0021 (UK Statement of Reasons):Former Head of the ‘Donetsk People's Republic’ Central Electoral Commission. Actively organised the referendum on 11 May 2014 on the self-determination of the ‘Donetsk People's Republic’. Former ""Minister of Labour and Social Policy"". (Gender):Male",Individual,Primary name,,Russia,12/05/2014,31/12/2020,16/09/2022,12975 +LYDIA,,,,,,,,,,00/00/1973,Bigogwe,Rwanda,Congo (Democratic Republic),,,,,(1) Former Chief of Staff in CNDP (2) Former CNDP military commander,,,,,,The Hague,,Netherlands,"(UK Sanctions List Ref):DRC0025 (UN Ref):CDi.030 Born in Rwanda, he moved to Nyamitaba,Masisi territory, North Kivu, when he was a child. Nominated FARDC Brigadier-General by Presidential Decree on 11 December 2004, following Ituri peace agreements. Formerly Chief of Staff in CNDP and became CNDP military commander since the arrest of Laurent Nkunda in January 2009. Since January 2009, de facto Deputy Commander of consecutive anti-FDLR operations ‘Umoja Wetu’, ‘Kimia II’, and ‘Amani Leo’ in North and South Kivu. Entered Rwanda in March 2013, and voluntarily surrender to ICC officials in Kigali on March 22. Transferred to the ICC in The Hague, Netherlands. On 9 June 2014, ICC confirmed 13 charges of war crimes and five charges of crimes against humanity against him; the trial started in September 2015. On 8 July 2019, the ICC found him guilty of 18 counts of war crimes and crimes against humanity, committed in Ituri in 2002-2003. On 7 November 2019, he was sentenced to a total of 30 years imprisonment. He has appealed both his conviction and sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,18/02/2021,8736 +LYDIA,,,,,,,,,,00/00/1974,Bigogwe,Rwanda,Congo (Democratic Republic),,,,,(1) Former Chief of Staff in CNDP (2) Former CNDP military commander,,,,,,The Hague,,Netherlands,"(UK Sanctions List Ref):DRC0025 (UN Ref):CDi.030 Born in Rwanda, he moved to Nyamitaba,Masisi territory, North Kivu, when he was a child. Nominated FARDC Brigadier-General by Presidential Decree on 11 December 2004, following Ituri peace agreements. Formerly Chief of Staff in CNDP and became CNDP military commander since the arrest of Laurent Nkunda in January 2009. Since January 2009, de facto Deputy Commander of consecutive anti-FDLR operations ‘Umoja Wetu’, ‘Kimia II’, and ‘Amani Leo’ in North and South Kivu. Entered Rwanda in March 2013, and voluntarily surrender to ICC officials in Kigali on March 22. Transferred to the ICC in The Hague, Netherlands. On 9 June 2014, ICC confirmed 13 charges of war crimes and five charges of crimes against humanity against him; the trial started in September 2015. On 8 July 2019, the ICC found him guilty of 18 counts of war crimes and crimes against humanity, committed in Ituri in 2002-2003. On 7 November 2019, he was sentenced to a total of 30 years imprisonment. He has appealed both his conviction and sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,18/02/2021,8736 +LYONGAKSAN GENERAL TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Pot'onggang District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0160 (UN Ref):KPe.002 Defense conglomerate specializing in acquisition for DPRK defense industries and support to that country’s military-related sales.,Entity,FKA,,Democratic People's Republic of Korea,27/04/2009,24/04/2009,31/12/2020,10893 +LYONGAKSAN GENERAL TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,Rakwon-dong,Pothonggang District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0160 (UN Ref):KPe.002 Defense conglomerate specializing in acquisition for DPRK defense industries and support to that country’s military-related sales.,Entity,FKA,,Democratic People's Republic of Korea,27/04/2009,24/04/2009,31/12/2020,10893 +LYSENKO,Roman,Grigorievich,,,,,,,,13/08/1962,Alchevsk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Russia,"(UK Sanctions List Ref):RUS1282 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15234 +LYSENKO,Roman,Grigoryevich,,,,,ЛЫСЕНКО Роман Григорьевич,Cyrillic,Russian,13/08/1962,Alchevsk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Russia,"(UK Sanctions List Ref):RUS1282 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15234 +LYUBARSKY,Roman,Valerievich,,,,,Любарский Роман Валерьевич,,,16/07/1980,"Arzamas-16, Gorky",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0450 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14395 +M. BABAIE INDUSTRIES,,,,,,,,,,,,,,,,,,,,,,,P.O.Box 16535-76,Tehran,16548,Iran,"(UK Sanctions List Ref):INU0159 (UN Ref):IRe.038 Subordinate to Shahid Ahmad Kazemi Industries Group (formally the Air Defense Missile Industries Group) of Iran's Aerospace Industries Organization (AIO). AIO controls the missile organizations Shahid Hemmat Industrial Group (SHIG) and the Shahid Bakeri Industrial Group (SBIG), both of which were designated in resolution 1737 (2006). [Old Reference # E.29.I.8] (Parent company):Air Defense Missile Industries Group. Areospace Industries Organisation (AIO). Shahid Ahmad Kazemi Industries Group",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11158 +M/V CHON MYONG 1,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0096 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V CHON MYONG 1 conducted a ship-to-ship transfer, likely for oil, in late December 2017. Listed as asset of Chonmyong Shipping Co (OFSI ID: 13627, UN Ref KPe.056) (IMO number):8712362 (Current owners):Chonmyong Shipping Co (Flag of ship):North Korea (Previous flags):Togo (Type of ship):Oil tanker (Tonnage of ship):1220 (Length of ship):82 (Year built):1987",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13647 +M23,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):DRC0020 (UN Ref):CDe.006 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5277973 (Email address):mouvementdu23mars1@gmail.com,Entity,Primary name,,Democratic Republic of the Congo,23/01/2013,31/12/2012,19/01/2021,12841 +MAAA SYNERGY,,,,,,,,,,,,,,,,,,,Batu Caves,,,,,Selangor,,Malaysia,(UK Sanctions List Ref):INU0089 (UK Statement of Reasons):Involved in procurement for designated entities that support Iran’s nuclear activities. (Type of entity):Procurement,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11944 +MAAA SYNERGY SDN. BHD.,,,,,,,,,,,,,,,,,,,Batu Caves,,,,,Selangor,,Malaysia,(UK Sanctions List Ref):INU0089 (UK Statement of Reasons):Involved in procurement for designated entities that support Iran’s nuclear activities. (Type of entity):Procurement,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11944 +MAALA,Ibrahim,,,,,,,,,,,,Syria,,,,,Head of Branch 285 (Damascus) of the General Intelligence Directorate.,,,,,,,,,(UK Sanctions List Ref):SYR0098 (UK Statement of Reasons):Head of branch 285 (Damascus) of the General Intelligence Directorate (replaced Brig. Gen. Hussam Fendi at end 2011). Responsible for the torture of opponents in custody. (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12716 +MAALA,Mohamed,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Mohamed,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Mohamed,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Mohamed,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Mohamed,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Mohamed,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Mohammad,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Mohammad,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Mohammad,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Mohammad,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Mohammad,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Mohammad,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Mohammed,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Mohammed,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Mohammed,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Mohammed,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Mohammed,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Mohammed,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Muhammad,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Muhammad,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Muhammad,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Muhammad,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Muhammad,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MAALA,Muhammad,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'ALA,Ibrahim,,,,,,,,,,,,Syria,,,,,Head of Branch 285 (Damascus) of the General Intelligence Directorate.,,,,,,,,,(UK Sanctions List Ref):SYR0098 (UK Statement of Reasons):Head of branch 285 (Damascus) of the General Intelligence Directorate (replaced Brig. Gen. Hussam Fendi at end 2011). Responsible for the torture of opponents in custody. (Gender):Male,Individual,Primary name,,Syria,24/07/2012,31/12/2020,31/12/2020,12716 +MAALE,Ibrahim,,,,,,,,,,,,Syria,,,,,Head of Branch 285 (Damascus) of the General Intelligence Directorate.,,,,,,,,,(UK Sanctions List Ref):SYR0098 (UK Statement of Reasons):Head of branch 285 (Damascus) of the General Intelligence Directorate (replaced Brig. Gen. Hussam Fendi at end 2011). Responsible for the torture of opponents in custody. (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12716 +MAALLA,Mohamed,,,,,,,,,00/00/1960,Jableh,,,,,,,Head of Syrian Military Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0172 (UK Statement of Reasons):Former head of the Syrian Military Intelligence (SMI), Branch 293 (Internal Affairs), since April 2015. Responsible for repression and violence against the civilian population in Damascus/Damascus countryside. Former Deputy Head of Political Security (2012), Officer of the Syrian Republican Guard and Vice-Director of the Political Security Directorate. Former Head of Military Police, Member of the National Security Bureau. (Gender):Male",Individual,Primary name variation,,Syria,29/05/2015,31/12/2020,31/12/2020,13252 +MAALLA,Muhamad,,,,,,,,,00/00/1960,Jableh,,,,,,,Head of Syrian Military Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0172 (UK Statement of Reasons):Former head of the Syrian Military Intelligence (SMI), Branch 293 (Internal Affairs), since April 2015. Responsible for repression and violence against the civilian population in Damascus/Damascus countryside. Former Deputy Head of Political Security (2012), Officer of the Syrian Republican Guard and Vice-Director of the Political Security Directorate. Former Head of Military Police, Member of the National Security Bureau. (Gender):Male",Individual,Primary name variation,,Syria,29/05/2015,31/12/2020,31/12/2020,13252 +MAALLA,Muhammad,,,,,,,,,00/00/1960,Jableh,,,,,,,Head of Syrian Military Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0172 (UK Statement of Reasons):Former head of the Syrian Military Intelligence (SMI), Branch 293 (Internal Affairs), since April 2015. Responsible for repression and violence against the civilian population in Damascus/Damascus countryside. Former Deputy Head of Political Security (2012), Officer of the Syrian Republican Guard and Vice-Director of the Political Security Directorate. Former Head of Military Police, Member of the National Security Bureau. (Gender):Male",Individual,Primary name variation,,Syria,29/05/2015,31/12/2020,31/12/2020,13252 +MA'AN,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0132 (UK Statement of Reasons):Presidential Guard. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,31/12/2020,12420 +MAAROUF,Mohamed,,,,,,,,,,,,,,,,,Commander of the 45th Regiment,,,,,,,,,(UK Sanctions List Ref):SYR0158 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs.,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12470 +MAARUF,Mohamed,,,,,,,,,,,,,,,,,Commander of the 45th Regiment,,,,,,,,,(UK Sanctions List Ref):SYR0158 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs.,Individual,Primary name,,Syria,24/01/2012,31/12/2020,31/12/2020,12470 +MABANZA,Myrna,Adijul,,,,,,,,11/07/1991,,,Philippines,,,(1) 73320881AG1191MAM20000 (2) 200801087 (3) 140000900032,(1) Voter ID (2) Student ID (3) Other ID,,,,,,,Basilan Province,,Philippines,"(UK Sanctions List Ref):AQD0269 (UN Ref):QDi.413 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Gender: female. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229910",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,11/02/2022,13677 +MABANZA,Myrna,Adijul,,,,,,,,11/07/1991,,,Philippines,,,(1) 73320881AG1191MAM20000 (2) 200801087 (3) 140000900032,(1) Voter ID (2) Student ID (3) Other ID,,,,,,,Daina,,Saudi Arabia,"(UK Sanctions List Ref):AQD0269 (UN Ref):QDi.413 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Gender: female. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229910",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,11/02/2022,13677 +MABANZA,Myrna,Adijul,,,,,,,,11/07/1991,,,Philippines,,,(1) 73320881AG1191MAM20000 (2) 200801087 (3) 140000900032,(1) Voter ID (2) Student ID (3) Other ID,,,,,,,Jeddah,,Saudi Arabia,"(UK Sanctions List Ref):AQD0269 (UN Ref):QDi.413 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Gender: female. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229910",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,11/02/2022,13677 +MABANZA,Myrna,Adijul,,,,,,,,11/07/1991,,,Philippines,,,(1) 73320881AG1191MAM20000 (2) 200801087 (3) 140000900032,(1) Voter ID (2) Student ID (3) Other ID,,,,,,,Zamboanga City,,Philippines,"(UK Sanctions List Ref):AQD0269 (UN Ref):QDi.413 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Gender: female. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229910",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,11/02/2022,13677 +MABANZA,Myrna,Ajilul,,,,,,,,11/07/1991,,,Philippines,,,(1) 73320881AG1191MAM20000 (2) 200801087 (3) 140000900032,(1) Voter ID (2) Student ID (3) Other ID,,,,,,,Basilan Province,,Philippines,"(UK Sanctions List Ref):AQD0269 (UN Ref):QDi.413 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Gender: female. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229910",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,11/02/2022,13677 +MABANZA,Myrna,Ajilul,,,,,,,,11/07/1991,,,Philippines,,,(1) 73320881AG1191MAM20000 (2) 200801087 (3) 140000900032,(1) Voter ID (2) Student ID (3) Other ID,,,,,,,Daina,,Saudi Arabia,"(UK Sanctions List Ref):AQD0269 (UN Ref):QDi.413 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Gender: female. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229910",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,11/02/2022,13677 +MABANZA,Myrna,Ajilul,,,,,,,,11/07/1991,,,Philippines,,,(1) 73320881AG1191MAM20000 (2) 200801087 (3) 140000900032,(1) Voter ID (2) Student ID (3) Other ID,,,,,,,Jeddah,,Saudi Arabia,"(UK Sanctions List Ref):AQD0269 (UN Ref):QDi.413 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Gender: female. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229910",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,11/02/2022,13677 +MABANZA,Myrna,Ajilul,,,,,,,,11/07/1991,,,Philippines,,,(1) 73320881AG1191MAM20000 (2) 200801087 (3) 140000900032,(1) Voter ID (2) Student ID (3) Other ID,,,,,,,Zamboanga City,,Philippines,"(UK Sanctions List Ref):AQD0269 (UN Ref):QDi.413 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Gender: female. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229910",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,11/02/2022,13677 +MABANZA,MYRNA,AJIJUL,,,,,,,,11/07/1991,,,Philippines,,,(1) 73320881AG1191MAM20000 (2) 200801087 (3) 140000900032,(1) Voter ID (2) Student ID (3) Other ID,,,,,,,Basilan Province,,Philippines,"(UK Sanctions List Ref):AQD0269 (UN Ref):QDi.413 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Gender: female. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229910",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,11/02/2022,13677 +MABANZA,MYRNA,AJIJUL,,,,,,,,11/07/1991,,,Philippines,,,(1) 73320881AG1191MAM20000 (2) 200801087 (3) 140000900032,(1) Voter ID (2) Student ID (3) Other ID,,,,,,,Daina,,Saudi Arabia,"(UK Sanctions List Ref):AQD0269 (UN Ref):QDi.413 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Gender: female. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229910",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,11/02/2022,13677 +MABANZA,MYRNA,AJIJUL,,,,,,,,11/07/1991,,,Philippines,,,(1) 73320881AG1191MAM20000 (2) 200801087 (3) 140000900032,(1) Voter ID (2) Student ID (3) Other ID,,,,,,,Jeddah,,Saudi Arabia,"(UK Sanctions List Ref):AQD0269 (UN Ref):QDi.413 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Gender: female. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229910",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,11/02/2022,13677 +MABANZA,MYRNA,AJIJUL,,,,,,,,11/07/1991,,,Philippines,,,(1) 73320881AG1191MAM20000 (2) 200801087 (3) 140000900032,(1) Voter ID (2) Student ID (3) Other ID,,,,,,,Zamboanga City,,Philippines,"(UK Sanctions List Ref):AQD0269 (UN Ref):QDi.413 Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Gender: female. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6229910",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,19/06/2018,18/06/2018,11/02/2022,13677 +MABRAK,Yazid,,,,,,,,,07/02/1969,Annaba,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0117 (UN Ref):QDi.389 A leader of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930738,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13322 +MACDONALD,Bryan,,,,,,,,,29/02/1980,Dublin,Republic of Ireland,Republic of Ireland,PU6598399,,,,Journalist,,,,,,,,,"(UK Sanctions List Ref):RUS1378 (UK Statement of Reasons):Brian MCDONALD is head of Russia Desk for the English language edition of RT (formerly Russia Today). RT is owned or controlled by ANO TV-NOVOSTI, which is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business as a Government of Russia-affiliated entity and carrying on business in a strategically significant sector to the Government of Russia. ANO TV-NOVOSTI was designated by the United Kingdom on 31 March 2022. Therefore, as an employee of RT, MCDONALD is a member of, or associated with, a person involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, or obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,04/05/2022,04/05/2022,02/11/2022,15335 +MACHANGA LTD,,,,,,,,,,,,,,,,,,,,,,Plot 55A,Upper Kololo Terrace,Kampala,,Uganda,"(UK Sanctions List Ref):DRC0021 (UN Ref):CDe.007 Gold export company (Directors: Mr. Rajendra Kumar Vaya and Mr. Hirendra M. Vaya). In 2010, assets belonging to Machanga, held in the account of Emirates Gold, were frozen by Bank of Nova Scotia Mocatta (UK). The owners of Machanga have remained involved in purchasing gold from eastern DRC. Machanga Ltd last filed an annual return in 2004 and was listed as “status inactive” according to the authorities of the Republic of Uganda. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9067 +MACPAR MAKINA,,,,,,,,,,,,,,,,,,,Istasyon MH,Sehitler cad,Guldeniz Sit,Number 79/2,Tuzla,Istanbul,34930,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA,,,,,,,,,,,,,,,,,,,Prof. Hifzi Ozcan Cad.,Tasarim Kent Sit.,No. 33 B Blk,D.19,Kadikoy,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA,,,,,,,,,,,,,,,,,,,No 39,Alvand Street,Argentina Square,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA,,,,,,,,,,,,,,,,,,,Sehidler Caddesi,No 79/2,,,Tuzla,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA A.S.,,,,,,,,,,,,,,,,,,,Istasyon MH,Sehitler cad,Guldeniz Sit,Number 79/2,Tuzla,Istanbul,34930,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA A.S.,,,,,,,,,,,,,,,,,,,Prof. Hifzi Ozcan Cad.,Tasarim Kent Sit.,No. 33 B Blk,D.19,Kadikoy,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA A.S.,,,,,,,,,,,,,,,,,,,No 39,Alvand Street,Argentina Square,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA A.S.,,,,,,,,,,,,,,,,,,,Sehidler Caddesi,No 79/2,,,Tuzla,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SAN VE TIC,,,,,,,,,,,,,,,,,,,Istasyon MH,Sehitler cad,Guldeniz Sit,Number 79/2,Tuzla,Istanbul,34930,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SAN VE TIC,,,,,,,,,,,,,,,,,,,Prof. Hifzi Ozcan Cad.,Tasarim Kent Sit.,No. 33 B Blk,D.19,Kadikoy,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SAN VE TIC,,,,,,,,,,,,,,,,,,,No 39,Alvand Street,Argentina Square,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SAN VE TIC,,,,,,,,,,,,,,,,,,,Sehidler Caddesi,No 79/2,,,Tuzla,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SAN VE TIC AS,,,,,,,,,,,,,,,,,,,Istasyon MH,Sehitler cad,Guldeniz Sit,Number 79/2,Tuzla,Istanbul,34930,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SAN VE TIC AS,,,,,,,,,,,,,,,,,,,Prof. Hifzi Ozcan Cad.,Tasarim Kent Sit.,No. 33 B Blk,D.19,Kadikoy,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SAN VE TIC AS,,,,,,,,,,,,,,,,,,,No 39,Alvand Street,Argentina Square,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SAN VE TIC AS,,,,,,,,,,,,,,,,,,,Sehidler Caddesi,No 79/2,,,Tuzla,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SAN. VE TIC. LTD. STI.,,,,,,,,,,,,,,,,,,,Istasyon MH,Sehitler cad,Guldeniz Sit,Number 79/2,Tuzla,Istanbul,34930,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SAN. VE TIC. LTD. STI.,,,,,,,,,,,,,,,,,,,Prof. Hifzi Ozcan Cad.,Tasarim Kent Sit.,No. 33 B Blk,D.19,Kadikoy,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SAN. VE TIC. LTD. STI.,,,,,,,,,,,,,,,,,,,No 39,Alvand Street,Argentina Square,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SAN. VE TIC. LTD. STI.,,,,,,,,,,,,,,,,,,,Sehidler Caddesi,No 79/2,,,Tuzla,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SAN. VE TICARET A.S.,,,,,,,,,,,,,,,,,,,Istasyon MH,Sehitler cad,Guldeniz Sit,Number 79/2,Tuzla,Istanbul,34930,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SAN. VE TICARET A.S.,,,,,,,,,,,,,,,,,,,Prof. Hifzi Ozcan Cad.,Tasarim Kent Sit.,No. 33 B Blk,D.19,Kadikoy,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SAN. VE TICARET A.S.,,,,,,,,,,,,,,,,,,,No 39,Alvand Street,Argentina Square,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SAN. VE TICARET A.S.,,,,,,,,,,,,,,,,,,,Sehidler Caddesi,No 79/2,,,Tuzla,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SANAYI VE TICARET LTD.,,,,,,,,,,,,,,,,,,,Istasyon MH,Sehitler cad,Guldeniz Sit,Number 79/2,Tuzla,Istanbul,34930,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SANAYI VE TICARET LTD.,,,,,,,,,,,,,,,,,,,Prof. Hifzi Ozcan Cad.,Tasarim Kent Sit.,No. 33 B Blk,D.19,Kadikoy,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SANAYI VE TICARET LTD.,,,,,,,,,,,,,,,,,,,No 39,Alvand Street,Argentina Square,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SANAYI VE TICARET LTD.,,,,,,,,,,,,,,,,,,,Sehidler Caddesi,No 79/2,,,Tuzla,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SANAYI VE TICARET LTD. STI.,,,,,,,,,,,,,,,,,,,Istasyon MH,Sehitler cad,Guldeniz Sit,Number 79/2,Tuzla,Istanbul,34930,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SANAYI VE TICARET LTD. STI.,,,,,,,,,,,,,,,,,,,Prof. Hifzi Ozcan Cad.,Tasarim Kent Sit.,No. 33 B Blk,D.19,Kadikoy,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SANAYI VE TICARET LTD. STI.,,,,,,,,,,,,,,,,,,,No 39,Alvand Street,Argentina Square,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SANAYI VE TICARET LTD. STI.,,,,,,,,,,,,,,,,,,,Sehidler Caddesi,No 79/2,,,Tuzla,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SANYI TICARET,,,,,,,,,,,,,,,,,,,Istasyon MH,Sehitler cad,Guldeniz Sit,Number 79/2,Tuzla,Istanbul,34930,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SANYI TICARET,,,,,,,,,,,,,,,,,,,Prof. Hifzi Ozcan Cad.,Tasarim Kent Sit.,No. 33 B Blk,D.19,Kadikoy,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SANYI TICARET,,,,,,,,,,,,,,,,,,,No 39,Alvand Street,Argentina Square,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINA SANYI TICARET,,,,,,,,,,,,,,,,,,,Sehidler Caddesi,No 79/2,,,Tuzla,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINE SAN. VE TIC. LTD.,,,,,,,,,,,,,,,,,,,Istasyon MH,Sehitler cad,Guldeniz Sit,Number 79/2,Tuzla,Istanbul,34930,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINE SAN. VE TIC. LTD.,,,,,,,,,,,,,,,,,,,Prof. Hifzi Ozcan Cad.,Tasarim Kent Sit.,No. 33 B Blk,D.19,Kadikoy,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINE SAN. VE TIC. LTD.,,,,,,,,,,,,,,,,,,,No 39,Alvand Street,Argentina Square,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MACPAR MAKINE SAN. VE TIC. LTD.,,,,,,,,,,,,,,,,,,,Sehidler Caddesi,No 79/2,,,Tuzla,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MADA TRANSPORT,,,,,,,,,,,,,,,,,,,P.O. Box 9525,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,,,Syria,"(UK Sanctions List Ref):SYR0311 Transport (UK Statement of Reasons):Economic entity financing the regime. Associated with Cham Holding and Rami Makhlouf. A subsidiary company of Cham Holding, which is controlled by Rami Makhlouf; largest holding company in Syria, benefiting from and supporting the regime. (Phone number):+963 11 99 62 (Type of entity):Private (Subsidiaries):Cham Holding (parent), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525 (Parent company):Parent and branches",Entity,Primary name,,Syria,05/09/2011,31/12/2020,14/02/2022,12062 +MADANI,Diya' al-Rahman,,,,,,,,,00/00/1960,"(1) Paliran village, Namakab District, Takhar Province. (2) Taluqan City, Takhar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Logar Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0080 (UN Ref):TAi.102 Involved in drug trafficking. Taliban member responsible for military affairs in Takhar province, Afghanistan, as of May 2007. Facilitated fund raising in the Gulf on behalf of the Taliban since 2003. Also facilitated meetings between Taliban officials and wealthy supporters and arranged for more than a dozen individuals to travel to Kabul, Afghanistan, for suicide attacks. Believed to be in the Gulf region. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7258 +MADANI,Zaia u Rahman,,,,,,,,,00/00/1960,"(1) Paliran village, Namakab District, Takhar Province. (2) Taluqan City, Takhar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Logar Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0080 (UN Ref):TAi.102 Involved in drug trafficking. Taliban member responsible for military affairs in Takhar province, Afghanistan, as of May 2007. Facilitated fund raising in the Gulf on behalf of the Taliban since 2003. Also facilitated meetings between Taliban officials and wealthy supporters and arranged for more than a dozen individuals to travel to Kabul, Afghanistan, for suicide attacks. Believed to be in the Gulf region. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7258 +MADANI,Ziaurrahman,,,,,,,,,00/00/1960,"(1) Paliran village, Namakab District, Takhar Province. (2) Taluqan City, Takhar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Logar Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0080 (UN Ref):TAi.102 Involved in drug trafficking. Taliban member responsible for military affairs in Takhar province, Afghanistan, as of May 2007. Facilitated fund raising in the Gulf on behalf of the Taliban since 2003. Also facilitated meetings between Taliban officials and wealthy supporters and arranged for more than a dozen individuals to travel to Kabul, Afghanistan, for suicide attacks. Believed to be in the Gulf region. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7258 +MADANI,ZIA-UR-RAHMAN,,,,,Maulavi,ضیا الرحمان مدنی,,,00/00/1960,"(1) Paliran village, Namakab District, Takhar Province. (2) Taluqan City, Takhar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Logar Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0080 (UN Ref):TAi.102 Involved in drug trafficking. Taliban member responsible for military affairs in Takhar province, Afghanistan, as of May 2007. Facilitated fund raising in the Gulf on behalf of the Taliban since 2003. Also facilitated meetings between Taliban officials and wealthy supporters and arranged for more than a dozen individuals to travel to Kabul, Afghanistan, for suicide attacks. Believed to be in the Gulf region. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7258 +MADAYEV,Lova,,,,,,,,,15/01/1970,"Grozny, Chechen Republic",Russia,(1) Russia. (2) Georgia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0266 (UN Ref):QDi.406 Associated with Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116583",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13517 +MADAYEV,Murad,Akhmedovich,,,,,,,,15/01/1970,"Grozny, Chechen Republic",Russia,(1) Russia. (2) Georgia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0266 (UN Ref):QDi.406 Associated with Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116583",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13517 +MADJI,Martin,Koumta,,,,,,,,05/10/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +MADJI,Martin,Koumta,,,,,,,,05/10/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Am Dafock,Vakaga prefecture,,,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +MADJI,Martin,Koumta,,,,,,,,03/03/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Am Dafock,Vakaga prefecture,,,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +MADJI,Martin,Koumta,,,,,,,,03/03/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +MAEI,,,,,,,,,,,,,,,,,,,Haeun-2-dong,,,,Pyongchon District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0175 (UN Ref):KPe.027 The Ministry of Atomic Energy Industry was created in 2013 for the purpose of modernizing the DPRK’s atomic energy industry to increase the production of nuclear materials, improve their quality, and further develop an independent DPRK nuclear industry. As such, the MAEI is known to be a critical player in the DPRK’s development of nuclear weapons and is in charge of day-to-day operation of the country’s nuclear weapons program, and under it are other nuclear-related organizations. Under this ministry are a number of nuclear-related organizations and research centers, as well as two committees: an Isotope Application Committee and a Nuclear Energy Committee. The MAEI also directs a nuclear research center at Yongbyun, the site of the DPRK's known plutonium facilities. Furthermore, in the 2015 Panel of Experts (POE) report, the POE stated that Ri Je-son, a former director of the GBAE who was designated by the Committee established pursuant to resolution 1718 (2006) in 2009 for engagement in or support for nuclear related programs, was appointed as head of the MAEI on April 9, 2014.",Entity,AKA,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13342 +MAHAJAR,Sanaullah,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,Primary name variation,,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MAHAJAR,Sanaullah,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,Kunduz,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,Primary name variation,,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MAHAJAR,Shahab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MAHAJAR,Shahab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,Kunduz,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MAHAJAR,Shihab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MAHAJAR,Shihab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,Kunduz,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MAHALLA,Mohamed,,,,,,,,,00/00/1960,Jableh,,,,,,,Head of Syrian Military Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0172 (UK Statement of Reasons):Former head of the Syrian Military Intelligence (SMI), Branch 293 (Internal Affairs), since April 2015. Responsible for repression and violence against the civilian population in Damascus/Damascus countryside. Former Deputy Head of Political Security (2012), Officer of the Syrian Republican Guard and Vice-Director of the Political Security Directorate. Former Head of Military Police, Member of the National Security Bureau. (Gender):Male",Individual,Primary name variation,,Syria,29/05/2015,31/12/2020,31/12/2020,13252 +MAHALLA,Muhamad,,,,,,,,,00/00/1960,Jableh,,,,,,,Head of Syrian Military Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0172 (UK Statement of Reasons):Former head of the Syrian Military Intelligence (SMI), Branch 293 (Internal Affairs), since April 2015. Responsible for repression and violence against the civilian population in Damascus/Damascus countryside. Former Deputy Head of Political Security (2012), Officer of the Syrian Republican Guard and Vice-Director of the Political Security Directorate. Former Head of Military Police, Member of the National Security Bureau. (Gender):Male",Individual,Primary name,,Syria,29/05/2015,31/12/2020,31/12/2020,13252 +MAHALLA,Muhammad,,,,,,,,,00/00/1960,Jableh,,,,,,,Head of Syrian Military Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0172 (UK Statement of Reasons):Former head of the Syrian Military Intelligence (SMI), Branch 293 (Internal Affairs), since April 2015. Responsible for repression and violence against the civilian population in Damascus/Damascus countryside. Former Deputy Head of Political Security (2012), Officer of the Syrian Republican Guard and Vice-Director of the Political Security Directorate. Former Head of Military Police, Member of the National Security Bureau. (Gender):Male",Individual,Primary name variation,,Syria,29/05/2015,31/12/2020,31/12/2020,13252 +MAHAMAT,Ali,Darassa,,,,,,,,22/09/1978,"Kabo, Ouham Prefecture",Central African Republic,Central African Republic,,,10978000004482,,Founder and leader of the Unité pour la Paix en Centrafrique (UPC),,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0016 (UN Ref):CFi.015 Ali Darassa founded and still leads the Central African Republic (CAR)-based militia group Unité pour la Paix en Centrafrique (UPC), which has killed, tortured, raped, and displaced civilians, committed a large number of abuses of human rights and violations of international humanitarian law, and engaged in arms trafficking, illegal taxation activities, and warfare against CAR defence and security forces, as well as other militias, since its creation in 2014. In December 2020, he played a leading role in the creation of the Coalition des patriotes pour le changement (CPC) that took up arms to oppose the elections and attempted to enter the capital Bangui, in violation of the commitments made by the UPC under the Accord politique pour la paix et la reconciliation (APPR) signed on 6 February 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals (Gender):Male",Individual,AKA,Good quality,Central African Republic,22/12/2021,21/12/2021,22/12/2021,14168 +MAHAMAT,Omar,,,,,,,,,05/10/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +MAHAMAT,Omar,,,,,,,,,05/10/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Am Dafock,Vakaga prefecture,,,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +MAHAMAT,Omar,,,,,,,,,03/03/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Am Dafock,Vakaga prefecture,,,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +MAHAMAT,Omar,,,,,,,,,03/03/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +MAHAMOUD,BASHIR,MOHAMED,,,,,,,,00/00/1979,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,Primary name,,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MAHAMOUD,BASHIR,MOHAMED,,,,,,,,00/00/1980,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,Primary name,,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MAHAMOUD,BASHIR,MOHAMED,,,,,,,,00/00/1981,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,Primary name,,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MAHAMOUD,BASHIR,MOHAMED,,,,,,,,00/00/1982,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,Primary name,,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MAHDI,ADIL,ABDALLAH,,,,,عادل عبد الله مهدي,,,00/00/1945,al-Dur,,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0113 (UN Ref):IQi.052,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7618 +MAHLA,Mohamed,,,,,,,,,00/00/1960,Jableh,,,,,,,Head of Syrian Military Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0172 (UK Statement of Reasons):Former head of the Syrian Military Intelligence (SMI), Branch 293 (Internal Affairs), since April 2015. Responsible for repression and violence against the civilian population in Damascus/Damascus countryside. Former Deputy Head of Political Security (2012), Officer of the Syrian Republican Guard and Vice-Director of the Political Security Directorate. Former Head of Military Police, Member of the National Security Bureau. (Gender):Male",Individual,Primary name variation,,Syria,29/05/2015,31/12/2020,31/12/2020,13252 +MAHLA,Muhamad,,,,,,,,,00/00/1960,Jableh,,,,,,,Head of Syrian Military Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0172 (UK Statement of Reasons):Former head of the Syrian Military Intelligence (SMI), Branch 293 (Internal Affairs), since April 2015. Responsible for repression and violence against the civilian population in Damascus/Damascus countryside. Former Deputy Head of Political Security (2012), Officer of the Syrian Republican Guard and Vice-Director of the Political Security Directorate. Former Head of Military Police, Member of the National Security Bureau. (Gender):Male",Individual,Primary name variation,,Syria,29/05/2015,31/12/2020,31/12/2020,13252 +MAHLA,Muhammad,,,,,,,,,00/00/1960,Jableh,,,,,,,Head of Syrian Military Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0172 (UK Statement of Reasons):Former head of the Syrian Military Intelligence (SMI), Branch 293 (Internal Affairs), since April 2015. Responsible for repression and violence against the civilian population in Damascus/Damascus countryside. Former Deputy Head of Political Security (2012), Officer of the Syrian Republican Guard and Vice-Director of the Political Security Directorate. Former Head of Military Police, Member of the National Security Bureau. (Gender):Male",Individual,Primary name variation,,Syria,29/05/2015,31/12/2020,31/12/2020,13252 +MAHMOOD,AQSA,,,,,,,,,11/05/1994,"Glasgow, Scotland",United Kingdom,United Kingdom,720134834,British. Issued 27.06.2012. Expires 27.06.2022.,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0145 (UN Ref):QDi.356 Recruiter for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic, and a key figure in the the Al-Khanssaa brigade, a female ISIL brigade established in Al-Raqqa to enforce ISIL’s interpretation of Sharia law. Sex: female. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897334. Syrian Arab Republic, as at Nov. 2013 (Gender):Female",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13285 +MAHMOOD,AQSA,,,,,,,,,11/05/1994,"Glasgow, Scotland",United Kingdom,United Kingdom,720134834,British. Issued 27.06.2012. Expires 27.06.2022.,,,,,,,,,,,United Kingdom,"(UK Sanctions List Ref):AQD0145 (UN Ref):QDi.356 Recruiter for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic, and a key figure in the the Al-Khanssaa brigade, a female ISIL brigade established in Al-Raqqa to enforce ISIL’s interpretation of Sharia law. Sex: female. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897334. Syrian Arab Republic, as at Nov. 2013 (Gender):Female",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13285 +MAHMOUD,Abdel,Hamid,,,,Colonel,,,,00/00/1957,"al-Awja, near Tikrit",Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0065 (UN Ref):IQi.004,Individual,AKA,Good quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7619 +MAHMOUD,Abdul-Salam,Fajr,,,,,عبد السلام فجر محمود,,,,,,Syria,,,,,Director Investigation Section of the Air Intelligence Branch at Al-Mezzeh Military Airport,,,,,,,,,(UK Sanctions List Ref):SYR0142 (UK Statement of Reasons):Head of the Investigation Section at the Air Intelligence Branch at Al-Mezzeh Military Airport. Responsible for the torture of opponents in custody. (Gender):Male,Individual,Primary name,,Syria,24/07/2012,31/12/2020,13/05/2022,12711 +MAHMOUD,Adnan,Hasan,,,,Ambassador,,,,00/00/1966,Tartous,Syria,Syria,,,,,Syrian Ambassador to Iran,,,,,,,,,"(UK Sanctions List Ref):SYR0073 (UK Statement of Reasons):Syrian Ambassador to Iran. Former Minister of Information in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,26/09/2011,31/12/2020,13/05/2022,12150 +MAHMOUD,Bahaziq,,,,,,,,,00/00/1943,,India,Saudi Arabia,,,4-6032-0048-1,Saudi Arabian NI,,,,,,,,,,(UK Sanctions List Ref):AQD0221 (UN Ref):QDi.266 Financier of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Has served as the leader of Lashkar-e-Tayyiba in Saudi Arabia. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543496,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9218 +MAHMOUD,Bahaziq,,,,,,,,,00/00/1944,,India,Saudi Arabia,,,4-6032-0048-1,Saudi Arabian NI,,,,,,,,,,(UK Sanctions List Ref):AQD0221 (UN Ref):QDi.266 Financier of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Has served as the leader of Lashkar-e-Tayyiba in Saudi Arabia. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543496,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9218 +MAHMOUD,Bahaziq,,,,,,,,,17/08/1943,,India,Saudi Arabia,,,4-6032-0048-1,Saudi Arabian NI,,,,,,,,,,(UK Sanctions List Ref):AQD0221 (UN Ref):QDi.266 Financier of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Has served as the leader of Lashkar-e-Tayyiba in Saudi Arabia. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543496,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9218 +MAHMOUD,Bashir,Mohamed,,,,,,,,00/00/1979,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MAHMOUD,Bashir,Mohamed,,,,,,,,00/00/1980,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MAHMOUD,Bashir,Mohamed,,,,,,,,00/00/1981,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MAHMOUD,Bashir,Mohamed,,,,,,,,00/00/1982,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MAHMOUDZADEH,Ebrahim,,,,,,,,,,,,,,,,,(1) Former Managing Director of Iran Electronic Industries (2) Head of Management Board of Iran Telecommunications,,,,,,,,,"(UK Sanctions List Ref):INU0007 (UK Statement of Reasons):Former Managing Director of Iran Electronic Industries, a wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO) (Gender):Male",Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10640 +MAHMUD,,,,,,,,,,03/09/1962,Makassar,Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0335 (UN Ref):QDi.123 At large as at Dec. 2003. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424789,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7834 +MAHMUD,Abid,Hamid,Bid,Hamid,,,,,,00/00/1957,"al-Awja, near Tikrit",Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0065 (UN Ref):IQi.004,Individual,AKA,Good quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7619 +MAHMUD,Khalid,,,,,,,,,00/08/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +MAHMUD,Khalid,,,,,,,,,00/09/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +MAHMUD,Khalid,,,,,,,,,00/00/1976,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +MAHMUD,Wajeeh,,,,,,,,,,,,,,,,,Commander 18th Armoured Division,,,,,,,,,"(UK Sanctions List Ref):SYR0236 (UK Statement of Reasons):Mahmud is a Major General of the Syrian Army, and Commander of the 18th Armoured Division. Responsible for the violence against protestors in Homs. Accordingly, he is a person who is or has been involved in violently repressing the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,13/05/2022,12223 +MAHMUD,Wajih,,,,,,,,,,,,,,,,,Commander 18th Armoured Division,,,,,,,,,"(UK Sanctions List Ref):SYR0236 (UK Statement of Reasons):Mahmud is a Major General of the Syrian Army, and Commander of the 18th Armoured Division. Responsible for the violence against protestors in Homs. Accordingly, he is a person who is or has been involved in violently repressing the civilian population in Syria. (Gender):Male",Individual,Primary name,,Syria,15/11/2011,31/12/2020,13/05/2022,12223 +MAHMUDZADEH,Ebrahim,,,,,,,,,,,,,,,,,(1) Former Managing Director of Iran Electronic Industries (2) Head of Management Board of Iran Telecommunications,,,,,,,,,"(UK Sanctions List Ref):INU0007 (UK Statement of Reasons):Former Managing Director of Iran Electronic Industries, a wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO) (Gender):Male",Individual,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10640 +MAHRI,MOHAMED,BEN,AHMED,,,,,,,01/01/1979,Tabankort,Mali,Mali,(1) AA00272627 (2) AA0263957 (3) AA0344148,(1) - . (2) - . (3) issued on 21 March 2019 (date of expiration: 20 March 2024),,,,,,,,,Bamako,,Mali,"(UK Sanctions List Ref):MAL0007 (UN Ref):MLi.007 Mohamed Ben Ahmed Mahri is a businessman from the Arab Lehmar community in Gao region who previously collaborated with the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,Mali,20/12/2019,10/07/2019,10/10/2022,13802 +MAHRUKAT COMPANY,,,,,,,,,,,,,,,,,,,Petroleum building,Al Adawi st.,,,,Headquarters: Damascus,,Syria,(UK Sanctions List Ref):SYR0312 Location of entity headquarters: Damascus (UK Statement of Reasons):State-owned oil company. Provides financial support to the Syrian regime. (Phone number):+963-11-44451348. +963-11-4451349 (Website):http://www.mahrukat.gov.sy/indexeng.php (Email address):mahrukat@net.sy,Entity,Primary name,,Syria,26/03/2012,31/12/2020,31/12/2020,12645 +MAHSOULI,Sadeq,,,,,,,,,00/00/1959,Oroumieh,Iran,,,,,,(1) Advisor to Former President Mahmoud Ahmadinejad (2) Secretary General of the Perseverance Front (3) Current member of the Expediency Council,,,,,,,,,"(UK Sanctions List Ref):IHR0075 (UK Statement of Reasons):Minister of the Interior until August 2009. As Interior Minister, Mahsouli had authority over all police forces, interior ministry security agents, and plainclothes agents. The forces under his direction were responsible for attacks on the dormitories of Tehran University on 14 June 2009 and the torture of students in the basement of the Ministry (the notorious basement level 4). Other protestors were severely abused at the Kahrizak Detention Centre, which was operated by police under Mahsouli's control. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12189 +MAHSOULI,Sadeq,,,,,,,,,00/00/1960,Oroumieh,Iran,,,,,,(1) Advisor to Former President Mahmoud Ahmadinejad (2) Secretary General of the Perseverance Front (3) Current member of the Expediency Council,,,,,,,,,"(UK Sanctions List Ref):IHR0075 (UK Statement of Reasons):Minister of the Interior until August 2009. As Interior Minister, Mahsouli had authority over all police forces, interior ministry security agents, and plainclothes agents. The forces under his direction were responsible for attacks on the dormitories of Tehran University on 14 June 2009 and the torture of students in the basement of the Ministry (the notorious basement level 4). Other protestors were severely abused at the Kahrizak Detention Centre, which was operated by police under Mahsouli's control. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12189 +MAHSUD,Abdul Aziz,,,,,,,,,00/00/1969,"Sheykhan Village, Pirkowti Area, Orgun District, Paktika Province",Afghanistan,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0121 (UN Ref):TAi.155 Key commander in the Haqqani Network (TAe.012) under Sirajuddin Jallaloudine Haqqani (TAi.144). Taliban Shadow Governor for Orgun District, Paktika Province as of early 2010. Operated a training camp for nonAfghan fighters in Paktika Province. Has been involved in the transport of weapons to Afghanistan. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12156 +MAHSULI,Sadeq,,,,,,,,,00/00/1959,Oroumieh,Iran,,,,,,(1) Advisor to Former President Mahmoud Ahmadinejad (2) Secretary General of the Perseverance Front (3) Current member of the Expediency Council,,,,,,,,,"(UK Sanctions List Ref):IHR0075 (UK Statement of Reasons):Minister of the Interior until August 2009. As Interior Minister, Mahsouli had authority over all police forces, interior ministry security agents, and plainclothes agents. The forces under his direction were responsible for attacks on the dormitories of Tehran University on 14 June 2009 and the torture of students in the basement of the Ministry (the notorious basement level 4). Other protestors were severely abused at the Kahrizak Detention Centre, which was operated by police under Mahsouli's control. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12189 +MAHSULI,Sadeq,,,,,,,,,00/00/1960,Oroumieh,Iran,,,,,,(1) Advisor to Former President Mahmoud Ahmadinejad (2) Secretary General of the Perseverance Front (3) Current member of the Expediency Council,,,,,,,,,"(UK Sanctions List Ref):IHR0075 (UK Statement of Reasons):Minister of the Interior until August 2009. As Interior Minister, Mahsouli had authority over all police forces, interior ministry security agents, and plainclothes agents. The forces under his direction were responsible for attacks on the dormitories of Tehran University on 14 June 2009 and the torture of students in the basement of the Ministry (the notorious basement level 4). Other protestors were severely abused at the Kahrizak Detention Centre, which was operated by police under Mahsouli's control. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12189 +MAIDANOV,Denis,Vasilievich,,,,,Майданов Денис Васильевич,,,17/02/1976,"Balakovo, Saratov",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0291 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14236 +MAIMAITI,Maimaitiming,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +MAIMAITI,Maimaitiming,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +MAIMAITI,Maiumaitimin,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +MAIMAITI,Maiumaitimin,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +MAIN CENTRE FOR SPECIAL TECHNOLOGIES (GTSST) OF THE MAIN DIRECTORATE OF THE GENERAL STAFF OF THE ARMED FORCES OF THE RUSSIAN FEDERATION (GU/GRU) ('SANDWORM'),,,,,,,,,,,,,,,,,,,22 Kirova Street,,,,,Moscow,,Russia,"(UK Sanctions List Ref):CYB0009 (UK Statement of Reasons):The Main Centre for Special Technologies (GTsST) of the Russian General Staff Main Intelligence Directorate (GRU), also known by its field post number ‘74455’ and “Sandworm” by industry, was responsible for cyber attacks which disrupted critical national infrastructure in Ukraine, cutting off the electricity grid. The perpetrators were directly responsible for relevant cyber activity by carrying out information system interference intended to undermine integrity, prosperity and security of the Ukraine. These cyber attacks originated in Russia and were unauthorised (Type of entity):Department within Government/Military Unit (Parent company):Russian Ministry of Defence",Entity,Primary name,,Cyber,31/07/2020,31/12/2020,31/12/2020,13911 +MAIN ECONOMIC DEPARTMENT OF THE ADMINISTRATIVE AFFAIRS OFFICE OF THE PRESIDENT OF THE REPUBLIC OF BELARUS (GHU),,,,,,,,,,,,,,,,,,,Miasnakova str. 37,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0064 (UK Statement of Reasons):The Main Economic Department of the Administrative Affairs Office of the President of the Republic of Belarus (GHU) is the largest operator on the non-residential real estate market in Belarus. GHU provides revenue and logistical support for the Belarusian regime and therefore directly supports the regime’s repressive actions. GHU’s former Director, Viktor Sheiman was one of the longest standing members of Lukashenko’s inner circle, and took part in preparations of the fraudulent Presidential elections, being responsible for security of polling stations. GHU acts at the direction of Valery Ivanov, who has supported or promoted the undermining of democracy by the Lukashenka regime in his role as the Head of the President Property Management Directorate. (Website):http://ghu.by (Type of entity):Public",Entity,Primary name,,Belarus,18/12/2020,31/12/2020,18/03/2022,14037 +MAIOROVA,Yulia,Mikhailovna,,,,,,,,23/04/1979,Moscow,Russia,Russia,622264502,as of 2006,,,Lawyer,,,,,,,,,"(UK Sanctions List Ref):GAC0014 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. MAYOROVA participated in the fraud through her involvement, in particular, in court processes based on fraudulent claims for damages, as the lawyer representing Makhaon. Her actions facilitated or provided support for the serious corruption. (Gender):Female",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14095 +MAIOROVA,Yuliya,Mikhaylovna,,,,,,,,23/04/1979,Moscow,Russia,Russia,622264502,as of 2006,,,Lawyer,,,,,,,,,"(UK Sanctions List Ref):GAC0014 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. MAYOROVA participated in the fraud through her involvement, in particular, in court processes based on fraudulent claims for damages, as the lawyer representing Makhaon. Her actions facilitated or provided support for the serious corruption. (Gender):Female",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14095 +MAJID,Vahid,Mohammad,Naser,,,,,,,15/08/1964,Isfahan,Iran,Iran,,,3874409929,,Head of the Iranian Cyber Police,,,,,,,,,"(UK Sanctions List Ref):IHR0115 (UK Statement of Reasons):Vahid Mohammad Naser Majid is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to freedom of expression and peaceful assembly in Iran in his role as Head of the Cyber Police force and in the suppression of protests.",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15635 +MAJOR,,,,,,,,,,00/00/1973,Bigogwe,Rwanda,Congo (Democratic Republic),,,,,(1) Former Chief of Staff in CNDP (2) Former CNDP military commander,,,,,,The Hague,,Netherlands,"(UK Sanctions List Ref):DRC0025 (UN Ref):CDi.030 Born in Rwanda, he moved to Nyamitaba,Masisi territory, North Kivu, when he was a child. Nominated FARDC Brigadier-General by Presidential Decree on 11 December 2004, following Ituri peace agreements. Formerly Chief of Staff in CNDP and became CNDP military commander since the arrest of Laurent Nkunda in January 2009. Since January 2009, de facto Deputy Commander of consecutive anti-FDLR operations ‘Umoja Wetu’, ‘Kimia II’, and ‘Amani Leo’ in North and South Kivu. Entered Rwanda in March 2013, and voluntarily surrender to ICC officials in Kigali on March 22. Transferred to the ICC in The Hague, Netherlands. On 9 June 2014, ICC confirmed 13 charges of war crimes and five charges of crimes against humanity against him; the trial started in September 2015. On 8 July 2019, the ICC found him guilty of 18 counts of war crimes and crimes against humanity, committed in Ituri in 2002-2003. On 7 November 2019, he was sentenced to a total of 30 years imprisonment. He has appealed both his conviction and sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,18/02/2021,8736 +MAJOR,,,,,,,,,,00/00/1974,Bigogwe,Rwanda,Congo (Democratic Republic),,,,,(1) Former Chief of Staff in CNDP (2) Former CNDP military commander,,,,,,The Hague,,Netherlands,"(UK Sanctions List Ref):DRC0025 (UN Ref):CDi.030 Born in Rwanda, he moved to Nyamitaba,Masisi territory, North Kivu, when he was a child. Nominated FARDC Brigadier-General by Presidential Decree on 11 December 2004, following Ituri peace agreements. Formerly Chief of Staff in CNDP and became CNDP military commander since the arrest of Laurent Nkunda in January 2009. Since January 2009, de facto Deputy Commander of consecutive anti-FDLR operations ‘Umoja Wetu’, ‘Kimia II’, and ‘Amani Leo’ in North and South Kivu. Entered Rwanda in March 2013, and voluntarily surrender to ICC officials in Kigali on March 22. Transferred to the ICC in The Hague, Netherlands. On 9 June 2014, ICC confirmed 13 charges of war crimes and five charges of crimes against humanity against him; the trial started in September 2015. On 8 July 2019, the ICC found him guilty of 18 counts of war crimes and crimes against humanity, committed in Ituri in 2002-2003. On 7 November 2019, he was sentenced to a total of 30 years imprisonment. He has appealed both his conviction and sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,18/02/2021,8736 +MAJORY LLP,,,,,,,,,,,,,,,,,,,C/O Law & Tax International Solutions,25 City Road,,,,London,EC1Y 1AA,United Kingdom,"(UK Sanctions List Ref):RUS1117 (UK Statement of Reasons):MAJORY LLP (hereafter MAJORY) is a Limited Liability Partnership which acts as a front company for the procurement of equipment for the Government of Russia. MAJORY is therefore associated with a person that is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business as a Government of Russia-affiliated entity. Furthermore, MAJORY makes available goods or technology to a person that in turn makes available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Phone number):+44 2045 77 15 39 (Website):www.majory.co.uk (Email address):info@majory.co.uk (Type of entity):Limited liability partnership (Business Reg No):OC400827",Entity,Primary name,,Russia,31/03/2022,31/03/2022,20/07/2022,15066 +MAK,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0067 (UN Ref):QDe.012 Absorbed into Al-Qaida (QDe.004). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282030,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7263 +MAKABURI,,,,,,,,,,00/00/1962,,Kenya,,,,,,,,,,,Majengo area,Mombasa,,Kenya,(UK Sanctions List Ref):SOM0012 (UN Ref):SOi.012,Individual,AKA,Good quality,Somalia,16/10/2012,23/08/2012,16/02/2022,12737 +MAKABURI,,,,,,,,,,00/00/1967,,Kenya,,,,,,,,,,,Majengo area,Mombasa,,Kenya,(UK Sanctions List Ref):SOM0012 (UN Ref):SOi.012,Individual,AKA,Good quality,Somalia,16/10/2012,23/08/2012,16/02/2022,12737 +MAKAROV,Igor,Viktorovich,,,,,МАКАРОВ Игорь Викторович,Cyrillic,Russian,05/04/1962,,Turkmenistan,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1642 Transport sanction: where transport sanctions apply, a ship owned, controlled, chartered or operated by a designated person is prohibited from entering a port in the UK, may be given a movement or a port entry direction, can be detained, and will be refused permission to register on the UK Ship Register or have its existing registration terminated. Similarly, an aircraft owned, chartered or operated by a designated person is prohibited from overflying or landing in the UK, may be given a movement direction, can be detained or moved to a specified airport, and will be refused permission to register on the CAA Aircraft Register or have its existing registration terminated. (UK Statement of Reasons):Igor Viktorovich MAKAROV (hereafter MAKAROV) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 on the basis of the following grounds: (1) MAKAROV is and has been involved in supporting the Government of Russia by working as a director or equivalent through his role as President of ARETI International Group, an entity operating in the Russian energy sector - a sector of strategic significance to the Government of Russia (2) MAKAROV is and has been involved in supporting the Government of Russia by owning or controlling directly or indirectly ARETI International Group, an entity operating in the Russian energy sector - a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15586 +MAKAROV,Kirill,Borisovich,,,,,МАКАРОВ Кирилл Борисович,Cyrillic,Russian,06/11/1995,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1185 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15137 +MAKAROV,Andrey,Mikhailovich,,,,,Макаров Андрей Михайлович,,,22/07/1954,Moscow,Russia,Russia,726457392. 753337929. 707067,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0593 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14538 +MAKAROV,Vyacheslav,Serafimovich,,,,,Макаров Вячеслав Серафимович,,,07/05/1955,"Krutchenskaya Baygora, Lipetsk",Russia,Russia,600720136,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0274 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14219 +MAKEEVA,Olga,Alexandrovna,,,,,МАКЕЕВА Ольга Александровна,Cyrillic,Russian,21/11/1974,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1173 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15125 +MAKENGA,Emmanuel,Sultani,,,,,,,,25/12/1973,Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,Military leader of the Mouvement du 23 Mars (M23) group operating in the Democratic Republic of the Congo,,,,,,,,,(UK Sanctions List Ref):DRC0056 (UN Ref):CDi.008 A military leader of the Mouvement du 23 Mars (M23) group operating in the Democratic Republic of the Congo. In Uganda as of late 2014. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272833 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,28/02/2013,12/11/2012,20/01/2021,12812 +MAKENGA,Sultani,,,,,Colonel,,,,25/12/1973,Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,Military leader of the Mouvement du 23 Mars (M23) group operating in the Democratic Republic of the Congo,,,,,,,,,(UK Sanctions List Ref):DRC0056 (UN Ref):CDi.008 A military leader of the Mouvement du 23 Mars (M23) group operating in the Democratic Republic of the Congo. In Uganda as of late 2014. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272833 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,28/02/2013,12/11/2012,20/01/2021,12812 +MAKENGA,Sultani,,,,,,,,,25/12/1973,Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,Military leader of the Mouvement du 23 Mars (M23) group operating in the Democratic Republic of the Congo,,,,,,,,,(UK Sanctions List Ref):DRC0056 (UN Ref):CDi.008 A military leader of the Mouvement du 23 Mars (M23) group operating in the Democratic Republic of the Congo. In Uganda as of late 2014. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272833 (Gender):Male,Individual,Primary name,,Democratic Republic of the Congo,28/02/2013,12/11/2012,20/01/2021,12812 +MAKEYEV STATE MISSILE CENTER,,,,,,,,,,,,,,,,,,,1 Turgoyakskoye Highway,Chelyabinsk region,,,,Miass,456300,Russia,"(UK Sanctions List Ref):RUS1081 (UK Statement of Reasons):MAKEYEV STATE MISSILE CENTER, a subsidiary of Russian State space agency Roscosmos, is an entity obtaining a benefit from or supporting the Government of Russia by carrying on business in the Russian defence sector, a sector of strategic significance to the Government of Russia. (Phone number):+7 (3513) 28-63-33 (Website):makeyev.ru (Email address):src@makeyev.ru (Parent company):Roscosmos",Entity,Primary name,,Russia,24/03/2022,24/03/2022,14/06/2022,15024 +MAKEYEVA,Olga,Alexandrovna,,,,,,,,21/11/1974,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1173 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15125 +MAKHLOUF,Ehab,,,,,,,,,21/01/1973,Damascus,Syria,Syria,N002848852,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0099 Business interest; Vice Chairman of Syriatel, co-owner of SIUST, shareholder in RAMAK Construction Co, works for Makhlouf Finance Group. Family Status: Maternal cousin of Bashar al-Assad, President of Syria. Son of Mohammed Makhlouf and brother of Hafez and Rami, twin brother of Iyab Makhlouf (UK Statement of Reasons):Leading businessman operating in Syria. Ihab Makhlouf is Vice President of, and shareholder in Syriatel, the leading mobile telephone operator in Syria. He also has business interests in several other Syrian companies and entities, including Ramak Construction Co and Syrian International Private University for Science and Technology (SIUST). As Vice President of Syriatel, which transfers a significant part of its profits to the Syrian government by way of its licensing contract, Ihab Makhlouf is also directly supporting the Syrian regime. He is an influential member of the Makhlouf family and closely connected to the Assad family; cousin of President Bashar al-Assad. (Gender):Male",Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,31/12/2020,11937 +MAKHLOUF,Eyad,Mohamad,,,,,,,,21/01/1973,Damascus,Syria,Syria,N001820740,,,,Officer in the General Intelligence directorate (GID).,,,,,,,,,"(UK Sanctions List Ref):SYR0106 Maternal cousin of Bashar al-Assad, President of Syria. Son of Mohammed Makhlouf and brother of Hafez and Rami, twin brother of Ihab Makhlouf. Business Interests: executive in Riyad Isa Development Corporation. (UK Statement of Reasons):Member of the Makhlouf family; son of Mohammed Makhlouf, brother of Hafez and Rami and twin brother of Ihab Makhlouf; maternal cousin of President Bashar al-Assad. Member of the Syrian security and intelligence services in post after May 2011. An officer in the GID involved in violence against the civilian population in Syria. (Gender):Male",Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,19/05/2022,11934 +MAKHLOUF,Hafez,,,,,,,,,02/04/1971,Damascus,Syria,Syria,2246,Diplomatic,,,Former Regional Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0060 Links to Rami Makhlouf, Bashar Asad (UK Statement of Reasons):Former Colonel and Head of Unit in General Intelligence Directorate, Damascus Branch in post after May 2011. Member of the Makhlouf family; Cousin of President Bashar Al-Assad. (Gender):Male",Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11903 +MAKHLOUF,Hafiz,,,,,,حافظ مخلوف,,,02/04/1971,Damascus,Syria,Syria,2246,Diplomatic,,,Former Regional Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0060 Links to Rami Makhlouf, Bashar Asad (UK Statement of Reasons):Former Colonel and Head of Unit in General Intelligence Directorate, Damascus Branch in post after May 2011. Member of the Makhlouf family; Cousin of President Bashar Al-Assad. (Gender):Male",Individual,Primary name,,Syria,10/05/2011,31/12/2020,31/12/2020,11903 +MAKHLOUF,Hussein,,,,,,,,,00/00/1964,Lattakia,Syria,Syria,,,,,Minister of Local Administration and Environment,,,,,,,,,"(UK Sanctions List Ref):SYR0096 Cousin to Rami Makhlouf (listed 9 May 2011) and relative of President Bashar al Asad (listed 23 May 2011) (UK Statement of Reasons):Minister of local Administration and environment. Former Governor of Damascus Governorate. As a Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population. Cousin of Rami Makhlouf. (Gender):Male",Individual,Primary name,,Syria,14/11/2016,31/12/2020,31/12/2020,13397 +MAKHLOUF,Iehab,,,,,,,,,21/01/1973,Damascus,Syria,Syria,N002848852,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0099 Business interest; Vice Chairman of Syriatel, co-owner of SIUST, shareholder in RAMAK Construction Co, works for Makhlouf Finance Group. Family Status: Maternal cousin of Bashar al-Assad, President of Syria. Son of Mohammed Makhlouf and brother of Hafez and Rami, twin brother of Iyab Makhlouf (UK Statement of Reasons):Leading businessman operating in Syria. Ihab Makhlouf is Vice President of, and shareholder in Syriatel, the leading mobile telephone operator in Syria. He also has business interests in several other Syrian companies and entities, including Ramak Construction Co and Syrian International Private University for Science and Technology (SIUST). As Vice President of Syriatel, which transfers a significant part of its profits to the Syrian government by way of its licensing contract, Ihab Makhlouf is also directly supporting the Syrian regime. He is an influential member of the Makhlouf family and closely connected to the Assad family; cousin of President Bashar al-Assad. (Gender):Male",Individual,Primary name variation,,Syria,24/05/2011,31/12/2020,31/12/2020,11937 +MAKHLOUF,Ihab,,,,,,,,,21/01/1973,Damascus,Syria,Syria,N002848852,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0099 Business interest; Vice Chairman of Syriatel, co-owner of SIUST, shareholder in RAMAK Construction Co, works for Makhlouf Finance Group. Family Status: Maternal cousin of Bashar al-Assad, President of Syria. Son of Mohammed Makhlouf and brother of Hafez and Rami, twin brother of Iyab Makhlouf (UK Statement of Reasons):Leading businessman operating in Syria. Ihab Makhlouf is Vice President of, and shareholder in Syriatel, the leading mobile telephone operator in Syria. He also has business interests in several other Syrian companies and entities, including Ramak Construction Co and Syrian International Private University for Science and Technology (SIUST). As Vice President of Syriatel, which transfers a significant part of its profits to the Syrian government by way of its licensing contract, Ihab Makhlouf is also directly supporting the Syrian regime. He is an influential member of the Makhlouf family and closely connected to the Assad family; cousin of President Bashar al-Assad. (Gender):Male",Individual,Primary name,,Syria,24/05/2011,31/12/2020,31/12/2020,11937 +MAKHLOUF,Iyad,,,,,,,,,21/01/1973,Damascus,Syria,Syria,N001820740,,,,Officer in the General Intelligence directorate (GID).,,,,,,,,,"(UK Sanctions List Ref):SYR0106 Maternal cousin of Bashar al-Assad, President of Syria. Son of Mohammed Makhlouf and brother of Hafez and Rami, twin brother of Ihab Makhlouf. Business Interests: executive in Riyad Isa Development Corporation. (UK Statement of Reasons):Member of the Makhlouf family; son of Mohammed Makhlouf, brother of Hafez and Rami and twin brother of Ihab Makhlouf; maternal cousin of President Bashar al-Assad. Member of the Syrian security and intelligence services in post after May 2011. An officer in the GID involved in violence against the civilian population in Syria. (Gender):Male",Individual,Primary name,,Syria,24/05/2011,31/12/2020,19/05/2022,11934 +MAKHLOUF,Rami,,,,,,رامي مخلوف,,,10/07/1969,Damascus,Syria,,454224,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0204 Business interests: Interests in Syriatel, Cham Holding, Ramak Development and Humanitarian Projects LLC and Al Mashreq Investment Fund (UK Statement of Reasons):Leading businessman operating in Syria. He has furnished financing and support to the Syrian regime, through his business interests. He is an influential member of the Makhlouf family and closely connected to the Assad family; cousin of President Bashar al-Assad. (Gender):Male",Individual,Primary name,,Syria,10/05/2011,31/12/2020,13/05/2022,11913 +MAKHLOUF,Talal,,,,,,,,,01/12/1958,,,,,,,,Former Commander of the Republican Guard,,,,,,,,,(UK Sanctions List Ref):SYR0229 (UK Statement of Reasons):Former commander of the 105th Brigade of the Republican Guards. Former commander general of the Republican Guards. Current commander of the 2nd Corps. Member of the Syrian Armed Forces of the rank of Major General in post after May 2011. Military official involved in the violence in Damascus. (Gender):Male,Individual,Primary name,,Syria,02/12/2011,31/12/2020,13/05/2022,12418 +MAKHLUF,,,,,,,,,,01/12/1958,,,,,,,,Former Commander of the Republican Guard,,,,,,,,,(UK Sanctions List Ref):SYR0229 (UK Statement of Reasons):Former commander of the 105th Brigade of the Republican Guards. Former commander general of the Republican Guards. Current commander of the 2nd Corps. Member of the Syrian Armed Forces of the rank of Major General in post after May 2011. Military official involved in the violence in Damascus. (Gender):Male,Individual,AKA,,Syria,02/12/2011,31/12/2020,13/05/2022,12418 +MAKHLUF,Hafez,,,,,,,,,02/04/1971,Damascus,Syria,Syria,2246,Diplomatic,,,Former Regional Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0060 Links to Rami Makhlouf, Bashar Asad (UK Statement of Reasons):Former Colonel and Head of Unit in General Intelligence Directorate, Damascus Branch in post after May 2011. Member of the Makhlouf family; Cousin of President Bashar Al-Assad. (Gender):Male",Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11903 +MAKHLUF,Hafiz,,,,,,,,,02/04/1971,Damascus,Syria,Syria,2246,Diplomatic,,,Former Regional Head of the General Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0060 Links to Rami Makhlouf, Bashar Asad (UK Statement of Reasons):Former Colonel and Head of Unit in General Intelligence Directorate, Damascus Branch in post after May 2011. Member of the Makhlouf family; Cousin of President Bashar Al-Assad. (Gender):Male",Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11903 +MAKHLUF,Hussein,,,,,,,,,00/00/1964,Lattakia,Syria,Syria,,,,,Minister of Local Administration and Environment,,,,,,,,,"(UK Sanctions List Ref):SYR0096 Cousin to Rami Makhlouf (listed 9 May 2011) and relative of President Bashar al Asad (listed 23 May 2011) (UK Statement of Reasons):Minister of local Administration and environment. Former Governor of Damascus Governorate. As a Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population. Cousin of Rami Makhlouf. (Gender):Male",Individual,AKA,,Syria,14/11/2016,31/12/2020,31/12/2020,13397 +MAKHLUF,Talal,,,,,,,,,01/12/1958,,,,,,,,Former Commander of the Republican Guard,,,,,,,,,(UK Sanctions List Ref):SYR0229 (UK Statement of Reasons):Former commander of the 105th Brigade of the Republican Guards. Former commander general of the Republican Guards. Current commander of the 2nd Corps. Member of the Syrian Armed Forces of the rank of Major General in post after May 2011. Military official involved in the violence in Damascus. (Gender):Male,Individual,Primary name variation,,Syria,02/12/2011,31/12/2020,13/05/2022,12418 +MAKHMOUD,Mahmoud,Al-Khateeb,,,,,,,,,,,,,,,,Head of Investigative Branch of the Political Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0139 (UK Statement of Reasons):As Head of the Investigative Branch of the Political Security Directorate, responsible for detention and torture of detainees. (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12479 +MAKHMOUD,Mahmoud,Al-Khatib,,,,,,,,,,,,,,,,Head of Investigative Branch of the Political Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0139 (UK Statement of Reasons):As Head of the Investigative Branch of the Political Security Directorate, responsible for detention and torture of detainees. (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12479 +MAKHMOUD,Mahmoud,Al-Khattib,,,,,,,,,,,,,,,,Head of Investigative Branch of the Political Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0139 (UK Statement of Reasons):As Head of the Investigative Branch of the Political Security Directorate, responsible for detention and torture of detainees. (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12479 +MAKHMOUD,Makhmoud,Al-Khateeb,,,,,,,,,,,,,,,,Head of Investigative Branch of the Political Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0139 (UK Statement of Reasons):As Head of the Investigative Branch of the Political Security Directorate, responsible for detention and torture of detainees. (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12479 +MAKHMOUD,Makhmoud,Al-Khatib,,,,,,,,,,,,,,,,Head of Investigative Branch of the Political Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0139 (UK Statement of Reasons):As Head of the Investigative Branch of the Political Security Directorate, responsible for detention and torture of detainees. (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12479 +MAKHMOUD,Makhmoud,Al-Khattib,,,,,,,,,,,,,,,,Head of Investigative Branch of the Political Security Directorate,,,,,,,,,"(UK Sanctions List Ref):SYR0139 (UK Statement of Reasons):As Head of the Investigative Branch of the Political Security Directorate, responsible for detention and torture of detainees. (Gender):Male",Individual,Primary name,,Syria,24/01/2012,31/12/2020,31/12/2020,12479 +MAKHMUDOV,Iskander,Kakhramonovich,,,,,Искандер Кахрамонович МАХМУДОВ,Cyrillic,Russian,05/12/1963,,,,,,,,President of Ural Mining and Metallurgical Company (UMMC),,,,,,,,,"(UK Sanctions List Ref):RUS1643 Transport sanction: where transport sanctions apply, a ship owned, controlled, chartered or operated by a designated person is prohibited from entering a port in the UK, may be given a movement or a port entry direction, can be detained, and will be refused permission to register on the UK Ship Register or have its existing registration terminated. Similarly, an aircraft owned, chartered or operated by a designated person is prohibited from overflying or landing in the UK, may be given a movement direction, can be detained or moved to a specified airport, and will be refused permission to register on the CAA Aircraft Register or have its existing registration terminated. (UK Statement of Reasons):Iskander Kakhramonovich MAKHMUDOV (hereafter MAKHMUDOV) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 on the basis of the following grounds: (1) MAKHMUDOV is and has been involved in obtaining a benefit from or supporting the Government of Russia through his role as President of Ural Mining and Metallurgical Company (UMMC) by working as a manager or equivalent at an entity carrying on business in the Russian extractives sector, a sector of strategic significance to the Government of Russia. (2) MAKHMUDOV has been involved in obtaining a benefit from or supporting the Government of Russia through owning or controlling directly or indirectly Ural Mining and Metallurgical Company (UMMC), an entity carrying on business in the Russian extractives sector, a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,28/09/2022,15587 +MAKHTAB AL-KHIDAMAT,,,,,,,مكتب الخدمات,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0067 (UN Ref):QDe.012 Absorbed into Al-Qaida (QDe.004). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282030,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7263 +MAKIEV,Zurab,Gayozovich,,,,,Макиев Зураб Гайозович,,,30/06/1976,Tbilisi,Georgia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0452 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14397 +MAKIN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0160 (UN Ref):IRe.039 Owned or controlled by or acting on behalf of KAA, and is a subsidiary of KAA. [Old Reference # E.29.II.8] (Parent company):Khatam al-Anbiya (KAA)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11142 +MAKKAWI,Muhamad,Ibrahim,,,,,,,,11/04/1963,Monufia Governate,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0312 (UN Ref):QDi.001 Responsible for Usama bin Laden’s (deceased) security. Hair: Dark. Eyes: Dark. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681065 click here,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7424 +MAKKAWI,Muhamad,Ibrahim,,,,,,,,11/04/1960,Monufia Governate,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0312 (UN Ref):QDi.001 Responsible for Usama bin Laden’s (deceased) security. Hair: Dark. Eyes: Dark. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681065 click here,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7424 +MAKOL,GABRIEL,JOK RIAK,,,,Lieutenant General,,,,01/01/1966,,Sudan,South Sudan,D00008623,South Sudan number,M6600000258472,,Chief of Defence Forces. Former Sudan People’s Liberation Army’s (SPLA) Sector One Commander,,,,,,Unity State,,South Sudan,"(UK Sanctions List Ref):SSU0002 (UN Ref):SSi.001 Appointed as Chief of Defence Forces on 2 May 2018. Commanded SPLA Sector One, which operates primarily within Unity State, since January 2013. In his position as the SPLA Sector One commander, he has expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement. The SPLA is a South Sudanese military entity that has engaged in actions that have extended the conflict in South Sudan, including breaches of the January 2014 Cessation of Hostilities Agreement and the May 9, 2014 Agreement to Resolve the Crisis in South Sudan, which was a re-commitment to the CoHA and has obstructed the activities of IGAD’s Monitoring and Verification Mechanism. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879060",Individual,Primary name,,South Sudan,10/07/2015,01/07/2015,31/12/2020,13263 +MAKOL,GABRIEL,JOK RIAK,,,,Lieutenant General,,,,01/01/1966,,Sudan,South Sudan,D00008623,South Sudan number,M6600000258472,,Chief of Defence Forces. Former Sudan People’s Liberation Army’s (SPLA) Sector One Commander,Wau,,,,,Western Bahr El Ghazal,,South Sudan,"(UK Sanctions List Ref):SSU0002 (UN Ref):SSi.001 Appointed as Chief of Defence Forces on 2 May 2018. Commanded SPLA Sector One, which operates primarily within Unity State, since January 2013. In his position as the SPLA Sector One commander, he has expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement. The SPLA is a South Sudanese military entity that has engaged in actions that have extended the conflict in South Sudan, including breaches of the January 2014 Cessation of Hostilities Agreement and the May 9, 2014 Agreement to Resolve the Crisis in South Sudan, which was a re-commitment to the CoHA and has obstructed the activities of IGAD’s Monitoring and Verification Mechanism. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879060",Individual,Primary name,,South Sudan,10/07/2015,01/07/2015,31/12/2020,13263 +MAKPA,,,,,,,,,,,,,,,,,,,Istasyon MH,Sehitler cad,Guldeniz Sit,Number 79/2,Tuzla,Istanbul,34930,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MAKPA,,,,,,,,,,,,,,,,,,,Prof. Hifzi Ozcan Cad.,Tasarim Kent Sit.,No. 33 B Blk,D.19,Kadikoy,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MAKPA,,,,,,,,,,,,,,,,,,,No 39,Alvand Street,Argentina Square,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MAKPA,,,,,,,,,,,,,,,,,,,Sehidler Caddesi,No 79/2,,,Tuzla,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0090 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industries Group (SHIG) through front companies. (Phone number):(1) +90 216 395 84 11 (2) +90 216 572 65 82 (3) +98 21 88 79 51 (4) 03 2165726582 (Website):(1) cagriduransoy@gmail.com kuntayduransoy@macpar.net (2) mani@macpar.net (3) miladjafari@gmail.com (Email address):cagriduransoy@gmail.com. kuntayduransoy@macpar.net. mani@macpar.net. miladjafari@gmail.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12259 +MAKSHAKOV,Stanislav,Valentinovich,,,,Colonel,,,,00/00/1966,,,,,,,,"Deputy Director, Criminalistics Institute, FSB.",,,,,,,,,"(UK Sanctions List Ref):CHW0023 (UK Statement of Reasons):Stanislav Makshakov is a deputy director in the FSB's Criminalistics Institute - Military Unit 34435. There are reasonable grounds to suspect that the Federal Security Service of the Russian Federation was involved in the attempted assassination of Alexey Navalny using a toxic nerve agent. Evidence including phone records suggest that Stanislav Makshakov was the commander of the team of operatives involved in the use of chemical weapon in the attempted assassination of Alexey Navalny. As Deputy Director he is responsible for and/or engaged in, provided support for or promoted the activities conducted by this unit in the FSB. Alternatively, he is associated with those who did. This designation is part of a package of designations targeting the FSB team involved. Russian opposition leader Alexey Navalny was the victim of an attempted assassination during his August 2020 visit to Siberia, in which a chemical weapon - a toxic nerve agent of the Novichok group - was used. The activities and movements of Alexey Navalny during his journey to Siberia, from where he intended to return to Moscow on 20th August 2020, were closely monitored by the Federal Security Service of the Russian Federation. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny is a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack.",Individual,Primary name,,Chemical Weapons,20/08/2021,20/08/2021,20/08/2021,14137 +MAKSIMENKO,Vladimir,Ilich,,,,,МАКСИМЕНКО Владимир Ильич,Cyrillic,Russian,21/07/1954,,,Russia,,,770305249797,Russian taxpayer ID,"Editor in chief, Strategic Culture Foundation",,,,,,,,,"(UK Sanctions List Ref):RUS1104 (UK Statement of Reasons):Vladimir Ilich MAKSIMENKO (hereafter MAKSIMENKO) is editor of the Strategic Culture Foundation (SCF), an organisation affiliated with the Government of Russia which spreads disinformation. In his role as editor and as a contributor to SCF, MAKSIMENKO has provided support for and promoted actions and policies which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,31/03/2022,31/03/2022,09/05/2022,15051 +MAKSIMOV,Alexander,Alexandrovich,,,,,Максимов Александр Александрович,,,15/11/1946,"Zlatoust, Chelyabinsk",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0292 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14237 +MAKUEI,Michael,,,,,,,,,00/00/1947,,South Sudan,(1) Kenya (2) South Sudan (3) Sudan,,,,,"(1) Acting Governor of Southern Leich State (2) Government Spokesperson (3) Minister for Information and Broadcasting (4) Minister of Information, Broadcast, Telecommunication and Postal Services",,,,,,,,,"(UK Sanctions List Ref):SSU0001 (UK Statement of Reasons):Michael Makuei Leuth has held the position of Minister for Information and Broadcasting since 2013 and has been the public spokesman for the government delegation to the Intergovernmental Authority on Development (IGAD) peace talks. Makuei has obstructed the political process in South Sudan, in particular by obstructing the implementation of the Agreement on the Resolution of the Conflict in South Sudan (ARCSS) of August 2015 through inflammatory public statements and obstructing the work of the ARCSS Joint Monitoring Evaluation Committee and the establishment of the ARCSS Transitional Justice Institutions. He has also obstructed the operations of the UN's Regional Protection Force (RPF). Makuei is also responsible for serious violations of human rights, including restrictions on freedom of expression. Since the Revitalised ARCSS was signed (R-ARCSS) in September 2018, Makuei has continued to undermine the prospects for peace in South Sudan. (Gender):Male",Individual,Primary name variation,,South Sudan,03/02/2018,31/12/2020,03/03/2022,13610 +MAKUEI,Michael,Makuei,Lueth,,,,,,,00/00/1947,,South Sudan,(1) Kenya (2) South Sudan (3) Sudan,,,,,"(1) Acting Governor of Southern Leich State (2) Government Spokesperson (3) Minister for Information and Broadcasting (4) Minister of Information, Broadcast, Telecommunication and Postal Services",,,,,,,,,"(UK Sanctions List Ref):SSU0001 (UK Statement of Reasons):Michael Makuei Leuth has held the position of Minister for Information and Broadcasting since 2013 and has been the public spokesman for the government delegation to the Intergovernmental Authority on Development (IGAD) peace talks. Makuei has obstructed the political process in South Sudan, in particular by obstructing the implementation of the Agreement on the Resolution of the Conflict in South Sudan (ARCSS) of August 2015 through inflammatory public statements and obstructing the work of the ARCSS Joint Monitoring Evaluation Committee and the establishment of the ARCSS Transitional Justice Institutions. He has also obstructed the operations of the UN's Regional Protection Force (RPF). Makuei is also responsible for serious violations of human rights, including restrictions on freedom of expression. Since the Revitalised ARCSS was signed (R-ARCSS) in September 2018, Makuei has continued to undermine the prospects for peace in South Sudan. (Gender):Male",Individual,Primary name variation,,South Sudan,03/02/2018,31/12/2020,03/03/2022,13610 +MALA,Mohamed,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Mohamed,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Mohamed,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Mohamed,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Mohamed,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Mohamed,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Mohammad,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Mohammad,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Mohammad,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Mohammad,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Mohammad,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Mohammad,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Mohammed,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Mohammed,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Mohammed,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Mohammed,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Mohammed,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Mohammed,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Muhammad,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Muhammad,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Muhammad,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Muhammad,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Muhammad,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALA,Muhammad,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohamed,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohamed,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohamed,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohamed,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohamed,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohamed,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohammad,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohammad,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohammad,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohammad,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohammad,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohammad,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohammed,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohammed,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohammed,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohammed,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohammed,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Mohammed,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Muhammad,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Muhammad,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Muhammad,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Muhammad,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Muhammad,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MA'LA,Muhammad,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MALAKHOVA,Svetlana,Anatolievna,,,,,МАЛАХОВА Светлана Анатольевна,Cyrillic,Russian,27/08/1964,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1163 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15115 +MALEK ASHTAR UNIVERSITY,,,,,,,,,,,,,,,,,,,,,,,Corner of Imam Ali Highway and Babaei Highway,Tehran,,Iran,(UK Sanctions List Ref):INU0161 (UN Ref):IRe.040 Subordinate of the DTRSC within MODAFL. This includes research groups previously falling under the Physics Research Center (PHRC). IAEA inspectors have not been allowed to interview staff or see documents under the control of this organization to resolve the outstanding issue of the possible military dimension to Iran's nuclear programme. [Old Reference # E.29.I.9] (Parent company):DTRSC. Ministry of Defence and Armed Force Logistics (MODAFL),Entity,Primary name,,Iran (Nuclear),24/06/2008,09/06/2010,31/12/2020,10653 +MALEKI,Mojtaba,,,,,,,,,,"Kuhdasht, Lorestan",Iran,,,,,,Deputy head of the Ministry of Justice in the Khorasan Razavi province.,,,,,,,,,"(UK Sanctions List Ref):IHR0065 (UK Statement of Reasons):Deputy head of the Ministry of Justice in the Khorasan Razavi province. Former prosecutor of Kermanshah. Has played a role in the high number of death sentences being passed in Iran, including prosecuting the cases of seven prisoners convicted of drug trafficking who were hanged on the same day on 3 January 2010 in Kermanshah's central prison. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12190 +MALEKI,Sardar,Azizollah,,,,,,,,,,Iran,Iran,,,,,Law Enforcement Force Gilan provincial commander,,,,,,,,,"(UK Sanctions List Ref):IHR0104 (UK Statement of Reasons):Azizollah MALEKI is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for serious violations with respect to the right to life and the right to freedom of expression and peaceful assembly in Iran through his role as Law Enforcement Force (LEF) provincial commander in Gilan and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15624 +MALEKI,NASER,,,,,,,,,00/00/1960,,,Iran,A0003039,Issued in Iran.,003511785,Issued in Iran.,"Head of Shahid Hemmat Industrial Group (SHIG), which is designated under resolution 1737 (2006) for its role in Iran's ballistic missile programme (designated under IRe.067). MODAFL official overseeing work on the Shahab-3 ballistic missile programme, Iran's long range ballistic missile currently in service.",,,,,,,,,"(UK Sanctions List Ref):INU0211 (UN Ref):IRi.022 [Old Reference # I.47.C.7] (UK Statement of Reasons):As Head of Shahid Hemmat Industrial Group (SHIG) and Managing Director of the Oil Industry Pension Investment Company (OPIC), Naser MALEKI is or has been involved in a relevant nuclear activity and is a member of, or associated with, a person who is or has been so involved for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9055 +MALEKI,NASER,,,,,,,,,,,,Iran,A0003039,Issued in Iran.,003511785,Issued in Iran.,"Head of Shahid Hemmat Industrial Group (SHIG), which is designated under resolution 1737 (2006) for its role in Iran's ballistic missile programme (designated under IRe.067). MODAFL official overseeing work on the Shahab-3 ballistic missile programme, Iran's long range ballistic missile currently in service.",,,,,,,,,"(UK Sanctions List Ref):INU0211 (UN Ref):IRi.022 [Old Reference # I.47.C.7] (UK Statement of Reasons):As Head of Shahid Hemmat Industrial Group (SHIG) and Managing Director of the Oil Industry Pension Investment Company (OPIC), Naser MALEKI is or has been involved in a relevant nuclear activity and is a member of, or associated with, a person who is or has been so involved for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9055 +MALIKI,Azizullah,,,,,,,,,,,Iran,Iran,,,,,Law Enforcement Force Gilan provincial commander,,,,,,,,,"(UK Sanctions List Ref):IHR0104 (UK Statement of Reasons):Azizollah MALEKI is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for serious violations with respect to the right to life and the right to freedom of expression and peaceful assembly in Iran through his role as Law Enforcement Force (LEF) provincial commander in Gilan and in the suppression of protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15624 +MALIKOVA,Dina,Rinatovna,,,,,,,,00/00/1975,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1050 (UK Statement of Reasons):Dina Rinatovna MALIKOVA is President and Chair of the board of the Russian Regional Development Bank. In this role she is or has been involved in obtaining a benefit from, or supporting, the Government of Russia by working as a director or equivalent in a sector of strategic significance to the Government of Russia (the Russian financial services sector).",Individual,Primary name,,Russia,24/03/2022,24/03/2022,24/05/2022,14993 +MALKEVICH,Alexander,Alexandrovich,,,,,Александр Александрович МАЛЬКЕВИЧ,Cyrillic,Russian,14/07/1975,St Petersburg,Russia,Russia,717637093,,781005202108,,(1) First Deputy Chairman of the Public Chamber of the Russian Federation for the Development of the Information Community (2) General Director of the Saint Petersburg TV channel,,,,,,,,,"(UK Sanctions List Ref):RUS1388 (UK Statement of Reasons):Alexander Alexandrovich MALKEVICH is the General Director of the St Petersburg TV Channel and a member of the Civic Chamber of the Russian Federation. In these roles he has provided support for and promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine and supported the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15321 +MALKOV,Alexander,Viktorovich,,,,,МАЛЬКОВ Александр Викторович,Cyrillic,Russian,18/07/1953,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1186 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15138 +MALOFEEV,Konstantin,Valerevich,,,,,,,,03/07/1974,"Puschino, Moscow region",Russia,Russia,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0022 (UK Statement of Reasons):Mr Malofeev is closely linked to Ukrainian separatists in Eastern Ukraine and Crimea. He is a former employer of Mr Borodai, so-called Prime Minister of the so-called ‘Donetsk People's Republic’ and met with Mr Aksyonov, so-called Prime Minister of the so-called ‘Republic of Crimea’, during the period of the Crimean annexation process. The Ukrainian Government has opened a criminal investigation into his alleged material and financial support to separatists. In addition, he gave a number of public statements supporting the annexation of Crimea and the incorporation of Ukraine into Russia and notably stated in June 2014 that 'You can't incorporate the whole of Ukraine into Russia. The East (of Ukraine) maybe.' Therefore, Mr Malofeev is acting in support of the destabilisation of Eastern Ukraine. (Gender):Male",Individual,Primary name,,Russia,31/07/2014,31/12/2020,14/02/2022,13073 +MALOFEYEV,Konstantin,,,,,,Константин Малофеев,,,19/05/1960,"Ignatovo, Vologodsk Oblast",USSR (now Russian Federation),Russia,,,,,Member of the Supreme Council of the United Russia Party,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0051 Graduated in 1982 from Leningrad State University. Advisor to the Duma’s speaker, Vyacheslav Volodin (UK Statement of Reasons):Former member of the State Duma and former Chair of the Duma Constitutional Law Committee. Responsible for facilitating the adoption of legislation on the annexation of Crimea and Sevastopol into the Russian Federation. Advisor to the Duma Speaker, Volodin. Former member of the Supreme Council of the United Russia party. (Gender):Male",Individual,AKA,,Russia,12/05/2014,31/12/2020,31/12/2020,12967 +MALONG,Bol,,,,,,,,,00/00/1962,(1) Kotido (2) Malualkon,(1) Uganda (2) South Sudan,(1) South Sudan (2) Uganda,(1) S00004370 (2) D00001369 (3) 003606 (4) 00606 (5) B002606 (6) DA025963,(1) South Sudan (2) South Sudan (3) Sudan (4) Sudan (5) Sudan (6) Uganda,,,"(1) Former Governor, Northern Bahr el-Ghazal State (2) Former Chief of Staff of the Sudan People’s Liberation Army (SPLA)",,,,,,,,,"(UK Sanctions List Ref):SSU0006 (UN Ref):SSi.008 As Chief of General Staff of the SPLA, Malong expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement and breaches of the 2015 Agreement on the Resolution of the Conflict in South Sudan (ARCSS). He reportedly directed efforts to kill opposition leader Riek Machar. He ordered SPLA units to prevent the transport of humanitarian supplies. Under Malong’s leadership, the SPLA attacked civilians, schools and hospitals; forced the displacement of civilians; carried out enforced disappearances; arbitrarily detained civilians; and conducted acts of torture, and rape. He mobilized the Mathiang Anyoor Dinka tribal militia, which uses child soldiers. Under his leadership, the SPLA restricted UNMISS, the Joint Monitoring and Evaluation Commission (JMEC), and CTSAMM access to sites to investigate and document abuses.",Individual,AKA,Good quality,South Sudan,18/07/2018,13/07/2018,12/01/2022,13699 +MALONG,Bol,,,,,,,,,04/12/1960,(1) Kotido (2) Malualkon,(1) Uganda (2) South Sudan,(1) South Sudan (2) Uganda,(1) S00004370 (2) D00001369 (3) 003606 (4) 00606 (5) B002606 (6) DA025963,(1) South Sudan (2) South Sudan (3) Sudan (4) Sudan (5) Sudan (6) Uganda,,,"(1) Former Governor, Northern Bahr el-Ghazal State (2) Former Chief of Staff of the Sudan People’s Liberation Army (SPLA)",,,,,,,,,"(UK Sanctions List Ref):SSU0006 (UN Ref):SSi.008 As Chief of General Staff of the SPLA, Malong expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement and breaches of the 2015 Agreement on the Resolution of the Conflict in South Sudan (ARCSS). He reportedly directed efforts to kill opposition leader Riek Machar. He ordered SPLA units to prevent the transport of humanitarian supplies. Under Malong’s leadership, the SPLA attacked civilians, schools and hospitals; forced the displacement of civilians; carried out enforced disappearances; arbitrarily detained civilians; and conducted acts of torture, and rape. He mobilized the Mathiang Anyoor Dinka tribal militia, which uses child soldiers. Under his leadership, the SPLA restricted UNMISS, the Joint Monitoring and Evaluation Commission (JMEC), and CTSAMM access to sites to investigate and document abuses.",Individual,AKA,Good quality,South Sudan,18/07/2018,13/07/2018,12/01/2022,13699 +MALONG,Bol,,,,,,,,,12/04/1960,(1) Kotido (2) Malualkon,(1) Uganda (2) South Sudan,(1) South Sudan (2) Uganda,(1) S00004370 (2) D00001369 (3) 003606 (4) 00606 (5) B002606 (6) DA025963,(1) South Sudan (2) South Sudan (3) Sudan (4) Sudan (5) Sudan (6) Uganda,,,"(1) Former Governor, Northern Bahr el-Ghazal State (2) Former Chief of Staff of the Sudan People’s Liberation Army (SPLA)",,,,,,,,,"(UK Sanctions List Ref):SSU0006 (UN Ref):SSi.008 As Chief of General Staff of the SPLA, Malong expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement and breaches of the 2015 Agreement on the Resolution of the Conflict in South Sudan (ARCSS). He reportedly directed efforts to kill opposition leader Riek Machar. He ordered SPLA units to prevent the transport of humanitarian supplies. Under Malong’s leadership, the SPLA attacked civilians, schools and hospitals; forced the displacement of civilians; carried out enforced disappearances; arbitrarily detained civilians; and conducted acts of torture, and rape. He mobilized the Mathiang Anyoor Dinka tribal militia, which uses child soldiers. Under his leadership, the SPLA restricted UNMISS, the Joint Monitoring and Evaluation Commission (JMEC), and CTSAMM access to sites to investigate and document abuses.",Individual,AKA,Good quality,South Sudan,18/07/2018,13/07/2018,12/01/2022,13699 +MALONG,Bol,,,,,,,,,01/01/1962,(1) Kotido (2) Malualkon,(1) Uganda (2) South Sudan,(1) South Sudan (2) Uganda,(1) S00004370 (2) D00001369 (3) 003606 (4) 00606 (5) B002606 (6) DA025963,(1) South Sudan (2) South Sudan (3) Sudan (4) Sudan (5) Sudan (6) Uganda,,,"(1) Former Governor, Northern Bahr el-Ghazal State (2) Former Chief of Staff of the Sudan People’s Liberation Army (SPLA)",,,,,,,,,"(UK Sanctions List Ref):SSU0006 (UN Ref):SSi.008 As Chief of General Staff of the SPLA, Malong expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement and breaches of the 2015 Agreement on the Resolution of the Conflict in South Sudan (ARCSS). He reportedly directed efforts to kill opposition leader Riek Machar. He ordered SPLA units to prevent the transport of humanitarian supplies. Under Malong’s leadership, the SPLA attacked civilians, schools and hospitals; forced the displacement of civilians; carried out enforced disappearances; arbitrarily detained civilians; and conducted acts of torture, and rape. He mobilized the Mathiang Anyoor Dinka tribal militia, which uses child soldiers. Under his leadership, the SPLA restricted UNMISS, the Joint Monitoring and Evaluation Commission (JMEC), and CTSAMM access to sites to investigate and document abuses.",Individual,AKA,Good quality,South Sudan,18/07/2018,13/07/2018,12/01/2022,13699 +MALONG,Paul,,,,,,,,,00/00/1962,(1) Kotido (2) Malualkon,(1) Uganda (2) South Sudan,(1) South Sudan (2) Uganda,(1) S00004370 (2) D00001369 (3) 003606 (4) 00606 (5) B002606 (6) DA025963,(1) South Sudan (2) South Sudan (3) Sudan (4) Sudan (5) Sudan (6) Uganda,,,"(1) Former Governor, Northern Bahr el-Ghazal State (2) Former Chief of Staff of the Sudan People’s Liberation Army (SPLA)",,,,,,,,,"(UK Sanctions List Ref):SSU0006 (UN Ref):SSi.008 As Chief of General Staff of the SPLA, Malong expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement and breaches of the 2015 Agreement on the Resolution of the Conflict in South Sudan (ARCSS). He reportedly directed efforts to kill opposition leader Riek Machar. He ordered SPLA units to prevent the transport of humanitarian supplies. Under Malong’s leadership, the SPLA attacked civilians, schools and hospitals; forced the displacement of civilians; carried out enforced disappearances; arbitrarily detained civilians; and conducted acts of torture, and rape. He mobilized the Mathiang Anyoor Dinka tribal militia, which uses child soldiers. Under his leadership, the SPLA restricted UNMISS, the Joint Monitoring and Evaluation Commission (JMEC), and CTSAMM access to sites to investigate and document abuses.",Individual,AKA,Good quality,South Sudan,18/07/2018,13/07/2018,12/01/2022,13699 +MALONG,Paul,,,,,,,,,04/12/1960,(1) Kotido (2) Malualkon,(1) Uganda (2) South Sudan,(1) South Sudan (2) Uganda,(1) S00004370 (2) D00001369 (3) 003606 (4) 00606 (5) B002606 (6) DA025963,(1) South Sudan (2) South Sudan (3) Sudan (4) Sudan (5) Sudan (6) Uganda,,,"(1) Former Governor, Northern Bahr el-Ghazal State (2) Former Chief of Staff of the Sudan People’s Liberation Army (SPLA)",,,,,,,,,"(UK Sanctions List Ref):SSU0006 (UN Ref):SSi.008 As Chief of General Staff of the SPLA, Malong expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement and breaches of the 2015 Agreement on the Resolution of the Conflict in South Sudan (ARCSS). He reportedly directed efforts to kill opposition leader Riek Machar. He ordered SPLA units to prevent the transport of humanitarian supplies. Under Malong’s leadership, the SPLA attacked civilians, schools and hospitals; forced the displacement of civilians; carried out enforced disappearances; arbitrarily detained civilians; and conducted acts of torture, and rape. He mobilized the Mathiang Anyoor Dinka tribal militia, which uses child soldiers. Under his leadership, the SPLA restricted UNMISS, the Joint Monitoring and Evaluation Commission (JMEC), and CTSAMM access to sites to investigate and document abuses.",Individual,AKA,Good quality,South Sudan,18/07/2018,13/07/2018,12/01/2022,13699 +MALONG,Paul,,,,,,,,,12/04/1960,(1) Kotido (2) Malualkon,(1) Uganda (2) South Sudan,(1) South Sudan (2) Uganda,(1) S00004370 (2) D00001369 (3) 003606 (4) 00606 (5) B002606 (6) DA025963,(1) South Sudan (2) South Sudan (3) Sudan (4) Sudan (5) Sudan (6) Uganda,,,"(1) Former Governor, Northern Bahr el-Ghazal State (2) Former Chief of Staff of the Sudan People’s Liberation Army (SPLA)",,,,,,,,,"(UK Sanctions List Ref):SSU0006 (UN Ref):SSi.008 As Chief of General Staff of the SPLA, Malong expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement and breaches of the 2015 Agreement on the Resolution of the Conflict in South Sudan (ARCSS). He reportedly directed efforts to kill opposition leader Riek Machar. He ordered SPLA units to prevent the transport of humanitarian supplies. Under Malong’s leadership, the SPLA attacked civilians, schools and hospitals; forced the displacement of civilians; carried out enforced disappearances; arbitrarily detained civilians; and conducted acts of torture, and rape. He mobilized the Mathiang Anyoor Dinka tribal militia, which uses child soldiers. Under his leadership, the SPLA restricted UNMISS, the Joint Monitoring and Evaluation Commission (JMEC), and CTSAMM access to sites to investigate and document abuses.",Individual,AKA,Good quality,South Sudan,18/07/2018,13/07/2018,12/01/2022,13699 +MALONG,Paul,,,,,,,,,01/01/1962,(1) Kotido (2) Malualkon,(1) Uganda (2) South Sudan,(1) South Sudan (2) Uganda,(1) S00004370 (2) D00001369 (3) 003606 (4) 00606 (5) B002606 (6) DA025963,(1) South Sudan (2) South Sudan (3) Sudan (4) Sudan (5) Sudan (6) Uganda,,,"(1) Former Governor, Northern Bahr el-Ghazal State (2) Former Chief of Staff of the Sudan People’s Liberation Army (SPLA)",,,,,,,,,"(UK Sanctions List Ref):SSU0006 (UN Ref):SSi.008 As Chief of General Staff of the SPLA, Malong expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement and breaches of the 2015 Agreement on the Resolution of the Conflict in South Sudan (ARCSS). He reportedly directed efforts to kill opposition leader Riek Machar. He ordered SPLA units to prevent the transport of humanitarian supplies. Under Malong’s leadership, the SPLA attacked civilians, schools and hospitals; forced the displacement of civilians; carried out enforced disappearances; arbitrarily detained civilians; and conducted acts of torture, and rape. He mobilized the Mathiang Anyoor Dinka tribal militia, which uses child soldiers. Under his leadership, the SPLA restricted UNMISS, the Joint Monitoring and Evaluation Commission (JMEC), and CTSAMM access to sites to investigate and document abuses.",Individual,AKA,Good quality,South Sudan,18/07/2018,13/07/2018,12/01/2022,13699 +MALUK,,,,,,Haji,,,,00/00/1957,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +MALUK,,,,,,Haji,,,,00/00/1957,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +MALUK,,,,,,Haji,,,,00/00/1960,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +MALUK,,,,,,Haji,,,,00/00/1960,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +MALUK,,,,,,Haji,,,,01/01/1963,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +MALUK,,,,,,Haji,,,,01/01/1963,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +MALY,Pavel,Georgievich,,,,,МАЛЫЙ Павел Георгиевич,Cyrillic,Russian,05/11/1968,Debaltseve,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1283 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15235 +MALYHIN,Aleksandr,Sergeevich,,,,,,,,11/01/1981,,,Ukraine,,,,,"Former Head of the ""Lugansk People's Republic"" Central Election Commission",,,,,,,,,(UK Sanctions List Ref):RUS0023 Former Head of the 'Luhansk People's Republic' Central Electoral Commission. Remains active in supporting separatist policies. (UK Statement of Reasons):Former head of the 'Lugansk People's Republic' Central Electoral Commission. Activley organised the referendum on 11 May 2014 on the self-determination of the 'Lugansk People's Republic'. Remains active in supporting separatist policies. (Gender):Male,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12976 +MALYHIN,Alexander,Sergeevich,,,,,Александр Сергеевич МАЛЫХИН,,,11/01/1981,,,Ukraine,,,,,"Former Head of the ""Lugansk People's Republic"" Central Election Commission",,,,,,,,,(UK Sanctions List Ref):RUS0023 Former Head of the 'Luhansk People's Republic' Central Electoral Commission. Remains active in supporting separatist policies. (UK Statement of Reasons):Former head of the 'Lugansk People's Republic' Central Electoral Commission. Activley organised the referendum on 11 May 2014 on the self-determination of the 'Lugansk People's Republic'. Remains active in supporting separatist policies. (Gender):Male,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12976 +MALYHIN,Ikejsabdr,Serguyovch,,,,,,,,11/01/1981,,,Ukraine,,,,,"Former Head of the ""Lugansk People's Republic"" Central Election Commission",,,,,,,,,(UK Sanctions List Ref):RUS0023 Former Head of the 'Luhansk People's Republic' Central Electoral Commission. Remains active in supporting separatist policies. (UK Statement of Reasons):Former head of the 'Lugansk People's Republic' Central Electoral Commission. Activley organised the referendum on 11 May 2014 on the self-determination of the 'Lugansk People's Republic'. Remains active in supporting separatist policies. (Gender):Male,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12976 +MALYHIN,Oleksandr,Sergiyovych,,,,,,,,11/01/1981,,,Ukraine,,,,,"Former Head of the ""Lugansk People's Republic"" Central Election Commission",,,,,,,,,(UK Sanctions List Ref):RUS0023 Former Head of the 'Luhansk People's Republic' Central Electoral Commission. Remains active in supporting separatist policies. (UK Statement of Reasons):Former head of the 'Lugansk People's Republic' Central Electoral Commission. Activley organised the referendum on 11 May 2014 on the self-determination of the 'Lugansk People's Republic'. Remains active in supporting separatist policies. (Gender):Male,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12976 +MALYHIN,Oleksandr,Serhiyovych,,,,,,,,11/01/1981,,,Ukraine,,,,,"Former Head of the ""Lugansk People's Republic"" Central Election Commission",,,,,,,,,(UK Sanctions List Ref):RUS0023 Former Head of the 'Luhansk People's Republic' Central Electoral Commission. Remains active in supporting separatist policies. (UK Statement of Reasons):Former head of the 'Lugansk People's Republic' Central Electoral Commission. Activley organised the referendum on 11 May 2014 on the self-determination of the 'Lugansk People's Republic'. Remains active in supporting separatist policies. (Gender):Male,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12976 +MALYKHIN,Aleksandr,Sergeevich,,,,,,,,11/01/1981,,,Ukraine,,,,,"Former Head of the ""Lugansk People's Republic"" Central Election Commission",,,,,,,,,(UK Sanctions List Ref):RUS0023 Former Head of the 'Luhansk People's Republic' Central Electoral Commission. Remains active in supporting separatist policies. (UK Statement of Reasons):Former head of the 'Lugansk People's Republic' Central Electoral Commission. Activley organised the referendum on 11 May 2014 on the self-determination of the 'Lugansk People's Republic'. Remains active in supporting separatist policies. (Gender):Male,Individual,Primary name,,Russia,12/05/2014,31/12/2020,16/09/2022,12976 +MALYKHIN,Alexander,Sergeevich,,,,,,,,11/01/1981,,,Ukraine,,,,,"Former Head of the ""Lugansk People's Republic"" Central Election Commission",,,,,,,,,(UK Sanctions List Ref):RUS0023 Former Head of the 'Luhansk People's Republic' Central Electoral Commission. Remains active in supporting separatist policies. (UK Statement of Reasons):Former head of the 'Lugansk People's Republic' Central Electoral Commission. Activley organised the referendum on 11 May 2014 on the self-determination of the 'Lugansk People's Republic'. Remains active in supporting separatist policies. (Gender):Male,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12976 +MALYKHIN,Ikejsabdr,Serguyovch,,,,,Икейсабдр Сергеевич МАЛЫХИН,,,11/01/1981,,,Ukraine,,,,,"Former Head of the ""Lugansk People's Republic"" Central Election Commission",,,,,,,,,(UK Sanctions List Ref):RUS0023 Former Head of the 'Luhansk People's Republic' Central Electoral Commission. Remains active in supporting separatist policies. (UK Statement of Reasons):Former head of the 'Lugansk People's Republic' Central Electoral Commission. Activley organised the referendum on 11 May 2014 on the self-determination of the 'Lugansk People's Republic'. Remains active in supporting separatist policies. (Gender):Male,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12976 +MALYKHIN,Oleksandr,Sergiyovych,,,,,Олександр Сергiйович МАЛИХIН,,,11/01/1981,,,Ukraine,,,,,"Former Head of the ""Lugansk People's Republic"" Central Election Commission",,,,,,,,,(UK Sanctions List Ref):RUS0023 Former Head of the 'Luhansk People's Republic' Central Electoral Commission. Remains active in supporting separatist policies. (UK Statement of Reasons):Former head of the 'Lugansk People's Republic' Central Electoral Commission. Activley organised the referendum on 11 May 2014 on the self-determination of the 'Lugansk People's Republic'. Remains active in supporting separatist policies. (Gender):Male,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12976 +MALYKHIN,Oleksandr,Serhiyovych,,,,,Oлександр Сергеевич МАЛЫХИН,,,11/01/1981,,,Ukraine,,,,,"Former Head of the ""Lugansk People's Republic"" Central Election Commission",,,,,,,,,(UK Sanctions List Ref):RUS0023 Former Head of the 'Luhansk People's Republic' Central Electoral Commission. Remains active in supporting separatist policies. (UK Statement of Reasons):Former head of the 'Lugansk People's Republic' Central Electoral Commission. Activley organised the referendum on 11 May 2014 on the self-determination of the 'Lugansk People's Republic'. Remains active in supporting separatist policies. (Gender):Male,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12976 +MALYSHEV,Mikhail,Grigoryevich,,,,,,,,10/10/1955,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0024 (UK Statement of Reasons):Chair of the Crimea Electoral Commission. Responsible for administering the Crimean 'referendum'. Responsible under the Russian system for signing referendum results. In the capacity of Chair of the Crimea Electoral Commission he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented politics that undermine the territorial integrity, sovereignty and independence of Ukraine (Gender):Male",Individual,Primary name,,Russia,21/03/2014,31/12/2020,14/02/2022,12933 +MALYSHEV,Mykhalyo,,,,,,,,,10/10/1955,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0024 (UK Statement of Reasons):Chair of the Crimea Electoral Commission. Responsible for administering the Crimean 'referendum'. Responsible under the Russian system for signing referendum results. In the capacity of Chair of the Crimea Electoral Commission he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented politics that undermine the territorial integrity, sovereignty and independence of Ukraine (Gender):Male",Individual,Primary name variation,,Russia,21/03/2014,31/12/2020,14/02/2022,12933 +MALYSHEV,Mykhaylo,Hryhorovych,,,,,,,,10/10/1955,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0024 (UK Statement of Reasons):Chair of the Crimea Electoral Commission. Responsible for administering the Crimean 'referendum'. Responsible under the Russian system for signing referendum results. In the capacity of Chair of the Crimea Electoral Commission he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented politics that undermine the territorial integrity, sovereignty and independence of Ukraine (Gender):Male",Individual,AKA,,Russia,21/03/2014,31/12/2020,14/02/2022,12933 +MAMAEV,Valentin,Gennadyevich,,,,,Валентин Геннадьевич МАМАЕВ,Cyrillic,Russian,00/00/1976,,,,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS1065 (UK Statement of Reasons):Valentin Mamaev [“Mamaev”] is a member of the Management Board of Public Joint Stock Company Rosneft Oil Company [“Rosneft”], a Russian oil company. Rosneft is a Government of Russia-affiliated entity as the Government of Russia owns a minority interest in Rosneft via the state-owned company JSC Roseneftgaz. As a member of Rosneft’s Management Board, Mamaev is a member of or associated with Rosneft, which is carrying on business as a Government of Russia-affiliated entity. (Gender):Male",Individual,Primary name,,Russia,24/03/2022,24/03/2022,12/07/2022,15008 +MAMAKOVA,Aelita,Leonidovna,,,,,Мамакова Аэлита Леонидовна,Cyrillic,Russian,01/11/1988,,,Russia,,,OGRNIP: 321547600026521 TIN: 041104686952,,Responsible for soliciting financial donations from readers to SouthFront and publishing material,Prospekt Nikolskiy,Dom 2,Kvartira 71,Rabochiy poselok Kolkovo,,Oblast Novosibirskaya,630559,,"(UK Sanctions List Ref):RUS1501 (UK Statement of Reasons):Aelita Leonidovna MAMAKOVA is a key individual associated with the disinformation website SouthFront, and has provided financial services to maintain their operations. SouthFront is a website which has spread disinformation relating to Ukraine and promoted the Government of Russia’s false narrative about the Russian invasion of Ukraine. Through her association and the provision of financial services to SouthFront, MAMAKOVA is therefore involved in supporting and promoting policies and actions which destabilise Ukraine and undermine and threaten the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,04/07/2022,04/07/2022,04/07/2022,15441 +MAMAKOWA,Aelita,,,,,,,,,01/11/1988,,,Russia,,,OGRNIP: 321547600026521 TIN: 041104686952,,Responsible for soliciting financial donations from readers to SouthFront and publishing material,Prospekt Nikolskiy,Dom 2,Kvartira 71,Rabochiy poselok Kolkovo,,Oblast Novosibirskaya,630559,,"(UK Sanctions List Ref):RUS1501 (UK Statement of Reasons):Aelita Leonidovna MAMAKOVA is a key individual associated with the disinformation website SouthFront, and has provided financial services to maintain their operations. SouthFront is a website which has spread disinformation relating to Ukraine and promoted the Government of Russia’s false narrative about the Russian invasion of Ukraine. Through her association and the provision of financial services to SouthFront, MAMAKOVA is therefore involved in supporting and promoting policies and actions which destabilise Ukraine and undermine and threaten the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,04/07/2022,04/07/2022,04/07/2022,15441 +MAMAYEV,Valentin,Gennadyevich,,,,,,,,00/00/1976,,,,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS1065 (UK Statement of Reasons):Valentin Mamaev [“Mamaev”] is a member of the Management Board of Public Joint Stock Company Rosneft Oil Company [“Rosneft”], a Russian oil company. Rosneft is a Government of Russia-affiliated entity as the Government of Russia owns a minority interest in Rosneft via the state-owned company JSC Roseneftgaz. As a member of Rosneft’s Management Board, Mamaev is a member of or associated with Rosneft, which is carrying on business as a Government of Russia-affiliated entity. (Gender):Male",Individual,Primary name variation,,Russia,24/03/2022,24/03/2022,12/07/2022,15008 +MAMLOUK,Ali,,,,,,,,,19/02/1946,Damascus,Syria,Syria,983,Diplomatic,,,(1) Director of Syrian National Security Bureau (2) Former Head of Syrian Intelligence Directorate,,,,,,,,,(UK Sanctions List Ref):SYR0015 (UK Statement of Reasons):Director of the National Security Bureau. Former Head of Syrian Intelligence Directorate (GID) involved in violence against demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,14/02/2022,11901 +MAMLUK,Ali,,,,,Major General,,,,19/02/1946,Damascus,Syria,Syria,983,Diplomatic,,,(1) Director of Syrian National Security Bureau (2) Former Head of Syrian Intelligence Directorate,,,,,,,,,(UK Sanctions List Ref):SYR0015 (UK Statement of Reasons):Director of the National Security Bureau. Former Head of Syrian Intelligence Directorate (GID) involved in violence against demonstrators. (Gender):Male,Individual,Primary name,,Syria,10/05/2011,31/12/2020,14/02/2022,11901 +MAMONTOV,Arcady,Viktorovich,,,,,,,,26/05/1962,Novosibirsk,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0765 (UK Statement of Reasons):Arkady Viktorovich Mamontov is a prominent television presenter and film maker in Russia. In numerous broadcasts and interviews he has promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14716 +MAMONTOV,Arkady,Viktorovich,,,,,МАМОНТОВ Аркадий Викторович,Cyrillic,Russian,26/05/1962,Novosibirsk,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0765 (UK Statement of Reasons):Arkady Viktorovich Mamontov is a prominent television presenter and film maker in Russia. In numerous broadcasts and interviews he has promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14716 +MAMSUROV,Taimuraz,Dzhambekovich,,,,,Таймураз Дзамбекович МАМСУРОВ,,,13/04/1954,Belsan,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0881 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14832 +MAN GON,RI,,,,,,,,,29/10/1945,,,,PO381230469,Date of Expiration: 6.4.2016,,,Minister of the Munitions Industry Department,,,,,,,,,(UK Sanctions List Ref):DPR0265 (UN Ref):KPi.026,Individual,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13336 +MANAA,Fares,Mohammed,,,,,,,,08/02/1965,Sadah,Yemen,,00514146,"Issued in Sanaa, Yemen",1417576,"ID card. Issued in Al-Amana, Yemen on 7 Jan 1996",,,,,,,,,,(UK Sanctions List Ref):SOM0008 (UN Ref):SOi.008,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11095 +MANA'A,Faris,,,,,,,,,08/02/1965,Sadah,Yemen,,00514146,"Issued in Sanaa, Yemen",1417576,"ID card. Issued in Al-Amana, Yemen on 7 Jan 1996",,,,,,,,,,(UK Sanctions List Ref):SOM0008 (UN Ref):SOi.008,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11095 +MANA'A,FARES,MOHAMMED,,,,,,,,08/02/1965,Sadah,Yemen,,00514146,"Issued in Sanaa, Yemen",1417576,"ID card. Issued in Al-Amana, Yemen on 7 Jan 1996",,,,,,,,,,(UK Sanctions List Ref):SOM0008 (UN Ref):SOi.008,Individual,Primary name,,Somalia,28/04/2010,12/04/2010,31/12/2020,11095 +MANAN,Abdul,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0104 (UN Ref):QDi.018 Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010.Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019.INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423806,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6897 +MANDRO,Kawa,,,,,,,,,20/08/1973,Bunia,Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0045 (UN Ref):CDi.009 Placed in prison in Bunia in April 2005 for sabotage of the Ituri peace process. Arrested by Congolese authorities in October 2005, acquitted by the Court of Appeal in Kisangani, subsequently transferred to the judicial authorities in Kinshasa on new charges of crimes against humanity, war crimes, murder, aggravated assault and battery. In August 2014, a DRC military court in Kisangani convicted him of war crimes and crimes against humanity, sentenced him to nine years in prison, and ordered him to pay approximately $85,000 to his victims. He served his sentence and resides in Uganda as of May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272933. Address country Uganda (as of May 2016). (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8708 +MANDRO,Kawa,Panga,,,,,,,,20/08/1973,Bunia,Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0045 (UN Ref):CDi.009 Placed in prison in Bunia in April 2005 for sabotage of the Ituri peace process. Arrested by Congolese authorities in October 2005, acquitted by the Court of Appeal in Kisangani, subsequently transferred to the judicial authorities in Kinshasa on new charges of crimes against humanity, war crimes, murder, aggravated assault and battery. In August 2014, a DRC military court in Kisangani convicted him of war crimes and crimes against humanity, sentenced him to nine years in prison, and ordered him to pay approximately $85,000 to his victims. He served his sentence and resides in Uganda as of May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272933. Address country Uganda (as of May 2016). (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8708 +MANDRO,Yves,Khawa,Panga,,,,,,,20/08/1973,Bunia,Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0045 (UN Ref):CDi.009 Placed in prison in Bunia in April 2005 for sabotage of the Ituri peace process. Arrested by Congolese authorities in October 2005, acquitted by the Court of Appeal in Kisangani, subsequently transferred to the judicial authorities in Kinshasa on new charges of crimes against humanity, war crimes, murder, aggravated assault and battery. In August 2014, a DRC military court in Kisangani convicted him of war crimes and crimes against humanity, sentenced him to nine years in prison, and ordered him to pay approximately $85,000 to his victims. He served his sentence and resides in Uganda as of May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272933. Address country Uganda (as of May 2016). (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8708 +MANDRO,KHAWA,PANGA,,,,,,,,20/08/1973,Bunia,Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0045 (UN Ref):CDi.009 Placed in prison in Bunia in April 2005 for sabotage of the Ituri peace process. Arrested by Congolese authorities in October 2005, acquitted by the Court of Appeal in Kisangani, subsequently transferred to the judicial authorities in Kinshasa on new charges of crimes against humanity, war crimes, murder, aggravated assault and battery. In August 2014, a DRC military court in Kisangani convicted him of war crimes and crimes against humanity, sentenced him to nine years in prison, and ordered him to pay approximately $85,000 to his victims. He served his sentence and resides in Uganda as of May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272933. Address country Uganda (as of May 2016). (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8708 +MANEX,,,,,,,,,,19/12/1969,"Bagac, Bagamanok, Catanduanes",Philippines,Philippines,,,,,,Concepcion,,,,Zaragosa,Nueva Ecija,,Philippines,"(UK Sanctions List Ref):AQD0287 (UN Ref):QDi.245 Member of the Rajah Solaiman Movement (QDe.128), Abu Sayyaf Group (QDe.001) and Jemaah Islamiyah (QDe.092). Father's name is Honorio Devera. Mother's name is Fausta Abogne. In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10665 +MANGOK,MARIAL,CHANUONG,YOL,,,,,,,01/01/1960,"Yirol, Lakes State",South Sudan,South Sudan,R00005943,South Sudan,,,"(1) Major General in the Sudan People's Liberation Army (2) Commander, of the South Sudanese Presidential Guard Unit",,,,,,,,,"(UK Sanctions List Ref):SSU0005 (UN Ref):SSi.005 His Presidential Guard led the slaughter of Nuer civilians in and around Juba, many who were buried in mass graves. One such grave was purported to contain 200-300 civilians. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/72684667",Individual,Primary name,,South Sudan,10/07/2015,01/07/2015,31/12/2020,13266 +MANGUE,Teodoro,Nguema,Obiang,,,Vice President,,,,25/06/1968,Malabo,Equatorial Guinea,Equatorial Guinea,,,,,Vice President,,,,,,Malabo,,Equatorial Guinea,"(UK Sanctions List Ref):GAC0024 (UK Statement of Reasons):Teodoro Nguema Obiang Mangue has been involved in the misappropriation of significant amounts of public assets from Equatorial Guinea as well as bribery, to fund a lavish lifestyle in various countries abroad including the United States and France, where he held assets which were vastly disproportionate in value by comparison to his official salary as an Equatorial Guinean government minister. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,22/07/2021,22/07/2021,08/02/2022,14127 +MANSHAH,Muhammad,Ashraf,,,,,,,,01/03/1965,Faisalabad,Pakistan,Pakistan,(1) AT0712501 (2) A-374184,(1) Pakistan issued on 12 Mar. 2008 (expired 11 Mar 2013) (2) Pakistan,(1) 6110125312507 (2) 24492025390,(1) Pakistan (2) Pakistan,,,,,,,,,,(UK Sanctions List Ref):AQD0184 (UN Ref):QDi.265 Chief of finance of Lashkar-e-Tayyiba (QDe.118). His father’s name is Noor Muhammad. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543491,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,11/02/2022,9217 +MANSHAH,Muhammad,Ashraf,,,,,,,,00/00/1955,Faisalabad,Pakistan,Pakistan,(1) AT0712501 (2) A-374184,(1) Pakistan issued on 12 Mar. 2008 (expired 11 Mar 2013) (2) Pakistan,(1) 6110125312507 (2) 24492025390,(1) Pakistan (2) Pakistan,,,,,,,,,,(UK Sanctions List Ref):AQD0184 (UN Ref):QDi.265 Chief of finance of Lashkar-e-Tayyiba (QDe.118). His father’s name is Noor Muhammad. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543491,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,11/02/2022,9217 +MANSOOR,Akhtar,Muhammad,,,,,,,,00/00/1960,"Band-e-Timur village, Maiwand District, Kandahar Province",Afghanistan,Afghanistan,SE-011697,"Afghanistan number, issued on 25 Jan. 1988, issued in Kabul, Afghanistan (expired on 23 Feb. 2000)",,,Minister of Civil Aviation and Transportation under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0014 (UN Ref):TAi.011 Involved in drug trafficking as of 2011, primarily through Gerd-e-Jangal, Afghanistan. Active in the provinces of Khost, Paktia and Paktika, Afghanistan as of May 2007. Taliban ""Governor"" of Kandahar as of May 2007. Deputy to Mullah Abdul Ghani Baradar (TAi.024) in the Taliban Supreme Council as of 2009. Taliban official responsible for four southern provinces of Afghanistan. Following the arrest of Mullah Baradar in February 2010 he was temporarily-in-charge of the Taliban Supreme Council. Believed to be in Afghanistan/Pakistan border area. Belongs to Ishaqzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. Reportedly killed in May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7269 +MANSOOR,Akhtar,Muhammad,,,,,,,,00/00/1966,"Band-e-Timur village, Maiwand District, Kandahar Province",Afghanistan,Afghanistan,SE-011697,"Afghanistan number, issued on 25 Jan. 1988, issued in Kabul, Afghanistan (expired on 23 Feb. 2000)",,,Minister of Civil Aviation and Transportation under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0014 (UN Ref):TAi.011 Involved in drug trafficking as of 2011, primarily through Gerd-e-Jangal, Afghanistan. Active in the provinces of Khost, Paktia and Paktika, Afghanistan as of May 2007. Taliban ""Governor"" of Kandahar as of May 2007. Deputy to Mullah Abdul Ghani Baradar (TAi.024) in the Taliban Supreme Council as of 2009. Taliban official responsible for four southern provinces of Afghanistan. Following the arrest of Mullah Baradar in February 2010 he was temporarily-in-charge of the Taliban Supreme Council. Believed to be in Afghanistan/Pakistan border area. Belongs to Ishaqzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. Reportedly killed in May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7269 +MANSOOR,Abdul Latif,,,,,,,,,00/00/1968,"(1) Garda Saray District, Paktia Province. (2) Zurmat District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Agriculture under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0011 (UN Ref):TAi.007 Taliban Shadow Governor for Logar Province as of late 2012. Believed to be in Afghanistan/Pakistan border area. Belongs to Sahak tribe (Ghilzai). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7270 +MANSOUR,Abdallah,,,,,,,,,08/07/1954,,,,B/014924,expired end 2013,,,"Former close collaborator of Colonel Qadhafi’s, senior role in security services and former director of radio and television",,,,,,,,,(UK Sanctions List Ref):LIB0025 (UK Statement of Reasons):Former senior role in security services and director of radio and television. Involved in activities carried out on behalf of the former regime of Muammar Qadhafi implementing or connected to the repressive policies of that regime. (Gender):Male,Individual,Primary name,,Libya,22/03/2011,31/12/2020,10/02/2022,11708 +MANSUDAE ART STUDIO,,,,,,,,,,,,,,,,,,,Yanggakdo International Hotel,RYUS,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0174 (UN Ref):KPe.050 Mansudae Overseas Project Group of Companies engaged in, facilitated, or was responsible for the exportation of workers from the DPRK to other nations for construction-related activities including for statues and monuments to generate revenue for the Government of the DPRK or the Workers’ Party of Korea. The Mansudae Overseas Project Group of Companies has been reported to conduct business in countries in Africa and Southeast Asia including Algeria, Angola, Botswana, Benin, Cambodia, Chad, the Democratic Republic of the Congo, Equatorial Guinea, Malaysia, Mozambique, Madagascar, Namibia, Syria, Togo, and Zimbabwe.",Entity,AKA,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,02/08/2022,13538 +MANSUDAE OVERSEAS PROJECT GROUP OF COMPANIES,,,,,,,,,,,,,,,,,,,Yanggakdo International Hotel,RYUS,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0174 (UN Ref):KPe.050 Mansudae Overseas Project Group of Companies engaged in, facilitated, or was responsible for the exportation of workers from the DPRK to other nations for construction-related activities including for statues and monuments to generate revenue for the Government of the DPRK or the Workers’ Party of Korea. The Mansudae Overseas Project Group of Companies has been reported to conduct business in countries in Africa and Southeast Asia including Algeria, Angola, Botswana, Benin, Cambodia, Chad, the Democratic Republic of the Congo, Equatorial Guinea, Malaysia, Mozambique, Madagascar, Namibia, Syria, Togo, and Zimbabwe.",Entity,Primary name,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,02/08/2022,13538 +MANSUR,Salim,,,,,,,,,20/02/1962,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,17 Tamoz,,,,,"Mosul, previous address",,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +MANSUR,Salim,,,,,,,,,20/02/1962,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,Tel Afar – Al-Saad,,,,,Mosul,,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +MANSUR,Salim,,,,,,,,,00/00/1959,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,Tel Afar – Al-Saad,,,,,Mosul,,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +MANSUR,Salim,,,,,,,,,00/00/1959,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,17 Tamoz,,,,,"Mosul, previous address",,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +MANSUR,Abdul Latif,,,,,Maulavi,عبد اللطيف منصور,,,00/00/1968,"(1) Garda Saray District, Paktia Province. (2) Zurmat District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Agriculture under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0011 (UN Ref):TAi.007 Taliban Shadow Governor for Logar Province as of late 2012. Believed to be in Afghanistan/Pakistan border area. Belongs to Sahak tribe (Ghilzai). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7270 +MANUILOV,Evgeny,Vladimirovich,,,,,,,,05/01/1967,"Bilovodsk Raion, Luhansk region",Ukrainian SSR (now Ukraine),Ukraine,,,,,So-called Minister of Budget (Finance) of the so-called People's Republic of Lugansk,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0025 (UK Statement of Reasons):So called 'Minister of Finance' of the so called 'Luhansk People's Republic'. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and further destabilised Ukraine. (Gender):Male",Individual,Primary name,,Russia,16/02/2015,31/12/2020,31/12/2020,13209 +MANUYLOV,Evgeny,Vladimirovich,,,,,,,,05/01/1967,"Bilovodsk Raion, Luhansk region",Ukrainian SSR (now Ukraine),Ukraine,,,,,So-called Minister of Budget (Finance) of the so-called People's Republic of Lugansk,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0025 (UK Statement of Reasons):So called 'Minister of Finance' of the so called 'Luhansk People's Republic'. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and further destabilised Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,31/12/2020,13209 +MANUYLOV,Yevhen,Volodymyrovych,,,,,,,,05/01/1967,"Bilovodsk Raion, Luhansk region",Ukrainian SSR (now Ukraine),Ukraine,,,,,So-called Minister of Budget (Finance) of the so-called People's Republic of Lugansk,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0025 (UK Statement of Reasons):So called 'Minister of Finance' of the so called 'Luhansk People's Republic'. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and further destabilised Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,31/12/2020,13209 +MANZI,Leo,,,,,,,,,00/00/1953,"(1) Kigali. (2) Rushashi, (Northern Province)",(1) Rwanda. (2) Rwanda,Rwanda,,,,,FDLR-FOCA Chief of Staff,FDLR HQ,at Kikoma forest,Bogoyi,Walikale,North Kivu,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0047 (UN Ref):CDi.013 FDLR-FOCA Chief of Staff, in charge of administration. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270747 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,03/12/2010,01/12/2010,31/12/2020,11279 +MANZI,Leo,,,,,,,,,00/00/1954,"(1) Kigali. (2) Rushashi, (Northern Province)",(1) Rwanda. (2) Rwanda,Rwanda,,,,,FDLR-FOCA Chief of Staff,FDLR HQ,at Kikoma forest,Bogoyi,Walikale,North Kivu,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0047 (UN Ref):CDi.013 FDLR-FOCA Chief of Staff, in charge of administration. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270747 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,03/12/2010,01/12/2010,31/12/2020,11279 +MARCHENKO,Evgeniy,Evgenievich,,,,,Марченко Евгений Евгеньевич,,,17/07/1972,Penza,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0454 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14399 +MARDANOV,Ruslan,Raisovich,,,,,МАРДАНОВ Руслан Раисович,Cyrillic,Russian,22/09/1980,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1284 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15236 +MARDANSHIN,Rafael,Mirkhatimovich,,,,,Марданшин Рафаэль Мирхатимович,,,24/12/1961,Bashkortostan,Russia,Russia,711294688,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0563 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14508 +MARDINI,Mohamad,Amer,,,,,,,,00/00/1959,Damascus,Syria,Syria,,,,,Former Minister for Higher Education,,,,,,,,,(UK Sanctions List Ref):SYR0156 (UK Statement of Reasons):Mohamad Amer Mardini is a former government minister within the Assad regime appointed after May 2011. He shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,22/10/2014,31/12/2020,31/12/2020,13149 +MARDINI,Mohamed,Amer,,,,,,,,00/00/1959,Damascus,Syria,Syria,,,,,Former Minister for Higher Education,,,,,,,,,(UK Sanctions List Ref):SYR0156 (UK Statement of Reasons):Mohamad Amer Mardini is a former government minister within the Assad regime appointed after May 2011. He shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,31/12/2020,13149 +MARDINI,Mohammad,Amer,,,,,,,,00/00/1959,Damascus,Syria,Syria,,,,,Former Minister for Higher Education,,,,,,,,,(UK Sanctions List Ref):SYR0156 (UK Statement of Reasons):Mohamad Amer Mardini is a former government minister within the Assad regime appointed after May 2011. He shares responsibility for the violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,31/12/2020,13149 +MARFINA,Zhanna,Viktorovna,,,,,МАРФИНА Жанна Викторовна,Cyrillic,Russian,31/01/1974,Bile,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1285 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15237 +MARGOSHVILI,Murad,Iraklievich,,,,,,,,15/01/1970,"Grozny, Chechen Republic",Russia,(1) Russia. (2) Georgia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0266 (UN Ref):QDi.406 Associated with Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116583",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13517 +MARGOSHVILI,Zurab,Iraklievich,,,,,,,,15/01/1970,"Grozny, Chechen Republic",Russia,(1) Russia. (2) Georgia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0266 (UN Ref):QDi.406 Associated with Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116583",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13517 +MARINE INDUSTRIES,,,,,,,,,,,,,,,,,,,44 Sharif St.,"Hoveyzeh, Korramshahr",North Sohrevardi Ave,,,,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,Primary name,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 19585 348,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,Primary name,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES,,,,,,,,,,,,,,,,,,,Pasdaran Avenue.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,Primary name,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,Primary name,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,Primary name,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES FACTORY,,,,,,,,,,,,,,,,,,,44 Sharif St.,"Hoveyzeh, Korramshahr",North Sohrevardi Ave,,,,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES FACTORY,,,,,,,,,,,,,,,,,,,P.O. Box 19585 348,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES FACTORY,,,,,,,,,,,,,,,,,,,Pasdaran Avenue.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES FACTORY,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES FACTORY,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,44 Sharif St.,"Hoveyzeh, Korramshahr",North Sohrevardi Ave,,,,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,P.O. Box 19585 348,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,Pasdaran Avenue.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,44 Sharif St.,"Hoveyzeh, Korramshahr",North Sohrevardi Ave,,,,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,P.O. Box 19585 348,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,Pasdaran Avenue.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARINE INDUSTRIES ORGANIZATION,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MARIO CO,Augusto,,,,,General,,,,,,,Guinea Bissau,,,,,(1) Former Army Chief of Staff (2) President of National Defence Institute,,,,,,,,,(UK Sanctions List Ref):GUB0010 (UK Statement of Reasons):Member of the ‘Military Command’ which has assumed responsibility for the coup d’état of 12 April 2012. (Gender):Male,Individual,Primary name,,Guinea-Bissau,04/05/2012,31/12/2020,10/03/2022,12666 +MARIO-CO,Augusto,,,,,,,,,,,,Guinea Bissau,,,,,(1) Former Army Chief of Staff (2) President of National Defence Institute,,,,,,,,,(UK Sanctions List Ref):GUB0010 (UK Statement of Reasons):Member of the ‘Military Command’ which has assumed responsibility for the coup d’état of 12 April 2012. (Gender):Male,Individual,Primary name variation,,Guinea-Bissau,04/05/2012,31/12/2020,10/03/2022,12666 +MARITIME ADMINISTRATIVE BUREAU,,,,,,,,,,,,,,,,,,,,,,Ryonhwa-Dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0063 (UK Statement of Reasons):The Maritime Administrative Bureau has assisted in the evasion of sanctions imposed by the United Nations Security Council including by renaming and re-registering assets of designated entities and providing false documentation to vessels subject to United Nations sanctions. (Phone number):+850 2 381 4410. +850-2-18111 ex 8059 (Website):www.ma.gov.kp (Email address):mab@silibanki.net.kp,Entity,Primary name,,Democratic People's Republic of Korea,16/10/2017,31/12/2020,31/12/2020,13552 +MARITIME ADMINISTRATIVE BUREAU,,,,,,,,,,,,,,,,,,,PO BOX 416,,,,,,,,(UK Sanctions List Ref):DPR0063 (UK Statement of Reasons):The Maritime Administrative Bureau has assisted in the evasion of sanctions imposed by the United Nations Security Council including by renaming and re-registering assets of designated entities and providing false documentation to vessels subject to United Nations sanctions. (Phone number):+850 2 381 4410. +850-2-18111 ex 8059 (Website):www.ma.gov.kp (Email address):mab@silibanki.net.kp,Entity,Primary name,,Democratic People's Republic of Korea,16/10/2017,31/12/2020,31/12/2020,13552 +MARKELOV,Viktor,Aleksandrovich,,,,,Виктор Александрович МАРКЕЛОВ,,,15/12/1957,"Leninskoye village, Uzganskiy District, Osh region","Former USSR, now Kyrgyzstan",Russia,,,,,Businessman,,,,,,,,,"(UK Sanctions List Ref):GAC0011 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. MARKELOV participated in the fraud through his involvement, in particular, in the improper transfer of ownership of the company Parfenion and the submission of applications for fraudulent tax rebates. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14104 +MARKELOV,Viktor,Alexandrovich,,,,,,,,15/12/1957,"Leninskoye village, Uzganskiy District, Osh region","Former USSR, now Kyrgyzstan",Russia,,,,,Businessman,,,,,,,,,"(UK Sanctions List Ref):GAC0011 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. MARKELOV participated in the fraud through his involvement, in particular, in the improper transfer of ownership of the company Parfenion and the submission of applications for fraudulent tax rebates. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14104 +MARKHAEV,Vyacheslav,Mikhailovich,,,,,Мархаев Вячеслав Михайлович,,,01/06/1955,"Bokhansky District, Irkutsk",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0294 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14239 +MARKOV,Marat,Sergeevich,,,,,Марат Сергеевич Марков,,,00/00/1969,"Luninets, Brest region",Belarus,Belarus,,,,,Chairman of the Management of the Second National Television Channel (ONT),,,,,,,,,"(UK Sanctions List Ref):BEL0104 (UK Statement of Reasons):In his position as Chairman of the Second National Television Station (ONT), Marat Markov is responsible for the programming and editorial decisions of the station, including the decision to record and broadcast an ‘interview’ with the detained opposition activist and civil society actor Roman Protasevich, widely believed to be filmed under duress and with Protasevich showing signs of ill treatment. This action is directly linked to the politically motivated decision to divert Ryanair flight FR4978 to Minsk airport on 23 May 2021 without proper justification, aimed at arresting and detaining opposition journalist and civil society actor Protasevich and Protasevich’s partner, Sofia Sapega and is a form of repression against civil society and democratic opposition in Belarus. Marat Markov is therefore responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name,,Belarus,21/06/2021,21/06/2021,21/06/2021,14121 +MARKOV,Andrey,Pavlovich,,,,,Марков Андрей Павлович,,,30/06/1972,Belgorod,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0293 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14238 +MARKOV,Evgeny,Vladimirovich,,,,,Марков Евгений Владимирович,,,08/11/1973,"Abatskoye, Tyumen",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0453 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14398 +MAROU SANAT,,,,,,,,,,,,,,,,,,,9,Ground Floor,Zohre Street,Mofateh Street,,Tehran,,Iran,(UK Sanctions List Ref):INU0091 (UK Statement of Reasons):Involved in the procurement of specialist materials that have direct application in the Iranian nuclear programme. (Phone number):+98 21 88306714 (Type of entity):Procurement,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11554 +MAROU SANAT,,,,,,,,,,,,,,,,,,,Bld. No. 11,Zohreh St.,Mofateh Ave.,,,Tehran,,Iran,(UK Sanctions List Ref):INU0091 (UK Statement of Reasons):Involved in the procurement of specialist materials that have direct application in the Iranian nuclear programme. (Phone number):+98 21 88306714 (Type of entity):Procurement,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11554 +MAROU SANAT,,,,,,,,,,,,,,,,,,,North Dr. Moftah Street,Zahra Street,Placard 9,Ground floor,,Tehran,,Iran,(UK Sanctions List Ref):INU0091 (UK Statement of Reasons):Involved in the procurement of specialist materials that have direct application in the Iranian nuclear programme. (Phone number):+98 21 88306714 (Type of entity):Procurement,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11554 +MAROU SANAT ENGINEERING COMPANY,,,,,,,,,,,,,,,,,,,9,Ground Floor,Zohre Street,Mofateh Street,,Tehran,,Iran,(UK Sanctions List Ref):INU0091 (UK Statement of Reasons):Involved in the procurement of specialist materials that have direct application in the Iranian nuclear programme. (Phone number):+98 21 88306714 (Type of entity):Procurement,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11554 +MAROU SANAT ENGINEERING COMPANY,,,,,,,,,,,,,,,,,,,Bld. No. 11,Zohreh St.,Mofateh Ave.,,,Tehran,,Iran,(UK Sanctions List Ref):INU0091 (UK Statement of Reasons):Involved in the procurement of specialist materials that have direct application in the Iranian nuclear programme. (Phone number):+98 21 88306714 (Type of entity):Procurement,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11554 +MAROU SANAT ENGINEERING COMPANY,,,,,,,,,,,,,,,,,,,North Dr. Moftah Street,Zahra Street,Placard 9,Ground floor,,Tehran,,Iran,(UK Sanctions List Ref):INU0091 (UK Statement of Reasons):Involved in the procurement of specialist materials that have direct application in the Iranian nuclear programme. (Phone number):+98 21 88306714 (Type of entity):Procurement,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11554 +MA'ROUF,Mohamed,,,,,,,,,,,,,,,,,Commander of the 45th Regiment,,,,,,,,,(UK Sanctions List Ref):SYR0158 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs.,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12470 +MAROUFI,Hossein,,,,,,حسین مروفی,,Persian,,,,,,,,,Deputy Co-ordinator of Mobilization of the Islamic Revolutionary Guard Corps (IRGC)Sistan and Baluchistan Province,,,,,,,,,"(UK Sanctions List Ref):IHR0106 (UK Statement of Reasons):Hossein MAROUFI is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and the right to freedom of expression and peaceful assembly in Iran through his role as the Deputy Co-ordinator of Mobilization of the Islamic Revolutionary Guard Corps (IRGC) in Sistan and Baluchistan Province and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15626 +MARQUEZ MONSALVE,Jorge,Elieser,,,,,,,,20/02/1971,Caracas,Venezuela,Venezuela,,,V-8714253,,(1) Director General of CONATEL (2) Minister of the Office of the Presidency (3) Brigadier General of the National Guard,,,,,,,,Venezuela,"(UK Sanctions List Ref):VEN0031 (UK Statement of Reasons):Director General of CONATEL, Minister of the Office of the Presidency, and a National Guard Brigadier General. As Director General of CONATEL, Venezuela’s telecommunications regulator, Marquez Monsalve has repeatedly repressed civil society and violated freedom of expression, thereby undermining democracy in Venezuela, by shutting down radio stations, blocking news portals online, and taking television channels off air. This has been done by CONATEL, led by Marquez Monsalve, in order to support the Maduro regime, stifle opposition, and hide corruption. (Gender):Male",Individual,Primary name,,Venezuela,30/06/2020,31/12/2020,28/01/2022,13846 +MARTINI,Mohammad,Rami,Radwan,,,,,,,00/00/1970,Aleppo,Syria,Syria,,,,,Minister of Tourism,,,,,,,,,"(UK Sanctions List Ref):SYR0348 Relatives/business associates or partners/links to listed individuals: Bashar Asad (UK Statement of Reasons):Minister of Tourism. Appointed in November 2018. As Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,04/03/2019,31/12/2020,31/12/2020,13772 +MARTYNOV,Sergey,Alexandrovich,,,,,Сергей Александрович МАРТЫНОВ,,,22/08/1959,Gorky,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0949 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14900 +MARTYNOV,Yury,Igorevich,,,,,МАРТЫНОВ Юрий Игоревич,Cyrillic,Russian,22/06/1969,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1187 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15139 +MARTYR BEHESHTI UNIVERSITY,,,,,,,,,,,,,,,,,,,P.O. Box 19395/4716,,,,,Tehran,19834,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +MARTYR BEHESHTI UNIVERSITY,,,,,,,,,,,,,,,,,,,Shahid Beheshti University,,,,Evin,Tehran,1983963113,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +MA'RUF,Mohamed,,,,,,,,,,,,,,,,,Commander of the 45th Regiment,,,,,,,,,(UK Sanctions List Ref):SYR0158 (UK Statement of Reasons):Commander of military operations in Homs. Gave orders to shoot protestors in Homs.,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12470 +MA'RUF,TAHA,MUHYI-AL-DIN,,,,,طه محي الدين معروف,,,00/00/1924,Sulaymaniyah,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0085 (UN Ref):IQi.024,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7617 +MARZOOK,Mousa,Abu,Mohammed,,,,,,,09/02/1951,Gaza,Egypt,,92/664,Egypt,,,Senior Hamas Official,,,,,,,,,"(UK Sanctions List Ref):CTI0017 (UK Statement of Reasons):Mr Marzouk is a senior Hamas official and has been the deputy leader of Hamas since 1997. He has publicly represented the proscribed military wing of Hamas. He has been involved in terrorist financing and has defended Hamas’ terrorist activity, including the targeting of civilians. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),24/03/2004,31/12/2020,15/03/2022,7888 +MARZOUK,Musa,Abu,,,,Doctor,,,,09/02/1951,Gaza,Egypt,,92/664,Egypt,,,Senior Hamas Official,,,,,,,,,"(UK Sanctions List Ref):CTI0017 (UK Statement of Reasons):Mr Marzouk is a senior Hamas official and has been the deputy leader of Hamas since 1997. He has publicly represented the proscribed military wing of Hamas. He has been involved in terrorist financing and has defended Hamas’ terrorist activity, including the targeting of civilians. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),24/03/2004,31/12/2020,15/03/2022,7888 +MARZUK,Musa,Abu,,,,,,,,09/02/1951,Gaza,Egypt,,92/664,Egypt,,,Senior Hamas Official,,,,,,,,,"(UK Sanctions List Ref):CTI0017 (UK Statement of Reasons):Mr Marzouk is a senior Hamas official and has been the deputy leader of Hamas since 1997. He has publicly represented the proscribed military wing of Hamas. He has been involved in terrorist financing and has defended Hamas’ terrorist activity, including the targeting of civilians. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),24/03/2004,31/12/2020,15/03/2022,7888 +MASA,Sha'afiq,,,,,,,,,,,,,,,,,Head of Branch 215 (Damascus) of the army's intelligence service,,,,,,,,,(UK Sanctions List Ref):SYR0220 (UK Statement of Reasons):Head of Branch 215 (Damascus) of the army's intelligence service. Responsible for the torture of detained opponents. Involved in repressive actions against civilians (Gender):Male,Individual,Primary name,,Syria,24/07/2012,31/12/2020,31/12/2020,12705 +MASA,Shafik,,,,,,,,,,,,,,,,,Head of Branch 215 (Damascus) of the army's intelligence service,,,,,,,,,(UK Sanctions List Ref):SYR0220 (UK Statement of Reasons):Head of Branch 215 (Damascus) of the army's intelligence service. Responsible for the torture of detained opponents. Involved in repressive actions against civilians (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12705 +MASA,Shafiq,,,,,,,,,,,,,,,,,Head of Branch 215 (Damascus) of the army's intelligence service,,,,,,,,,(UK Sanctions List Ref):SYR0220 (UK Statement of Reasons):Head of Branch 215 (Damascus) of the army's intelligence service. Responsible for the torture of detained opponents. Involved in repressive actions against civilians (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12705 +MASHAURI,Julius,Elius,,,,,,,,00/00/1965,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +MASHAURI,Julius,Elius,,,,,,,,01/01/1964,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +MASHKAUTSAN,Semen,Alekseevich,,,,,Семен Алексеевич Машкауцан,Cyrillic,Russian,02/03/1990,Chelyabinsk,Russia,Russia,,,,,So-called Deputy Prime Minister of Kherson,,,,,,,,,"(UK Sanctions List Ref):RUS1617 (UK Statement of Reasons):Semen MASHKAUTSAN is an “involved person” under the Russia (Sanctions) (EU Exit) Regulations 2019 because: he is, and has been, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine by engaging in, providing support for and promoting policies and actions which destabilise Ukraine and undermine and threaten the territorial integrity, sovereignty or independence of Ukraine, namely as the so-called Deputy Prime Minister for the temporarily controlled territory of Kherson.   (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15561 +MASHPRIBORINTORG WAVE,,,,,,,,,,,,,,,,,,,4A Plekhanova Street,"Unit XII, Floor 2",,,,Moscow,111123,Russia,"(UK Sanctions List Ref):RUS1440 OGRN 1027739824683 (UK Statement of Reasons):MPI VOLNA LLC is involved in supporting the Government of Russia by carrying on business in a sector of strategic significance, namely the electronics sector. (Phone number):7 495 223-47-72 (Website):https://www.mpi-volna.ru/ (Email address):general@mpi-volna.ru (Type of entity):Limited Liability Company (Business Reg No):Tax Identification Number: INN 7706001520",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15363 +MASHPRIBORINTORG WAVE,,,,,,,,,,,,,,,,,,,29 Entuziastov Highway,Balashikha,,,,Moskovskaya Oblast,143907,Russia,"(UK Sanctions List Ref):RUS1440 OGRN 1027739824683 (UK Statement of Reasons):MPI VOLNA LLC is involved in supporting the Government of Russia by carrying on business in a sector of strategic significance, namely the electronics sector. (Phone number):7 495 223-47-72 (Website):https://www.mpi-volna.ru/ (Email address):general@mpi-volna.ru (Type of entity):Limited Liability Company (Business Reg No):Tax Identification Number: INN 7706001520",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15363 +MASHPRIBORINTORG-VOLNA,,,,,,,Машприборинторг-Волна,Cyrillic,Russian,,,,,,,,,,4A Plekhanova Street,"Unit XII, Floor 2",,,,Moscow,111123,Russia,"(UK Sanctions List Ref):RUS1440 OGRN 1027739824683 (UK Statement of Reasons):MPI VOLNA LLC is involved in supporting the Government of Russia by carrying on business in a sector of strategic significance, namely the electronics sector. (Phone number):7 495 223-47-72 (Website):https://www.mpi-volna.ru/ (Email address):general@mpi-volna.ru (Type of entity):Limited Liability Company (Business Reg No):Tax Identification Number: INN 7706001520",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15363 +MASHPRIBORINTORG-VOLNA,,,,,,,Машприборинторг-Волна,Cyrillic,Russian,,,,,,,,,,29 Entuziastov Highway,Balashikha,,,,Moskovskaya Oblast,143907,Russia,"(UK Sanctions List Ref):RUS1440 OGRN 1027739824683 (UK Statement of Reasons):MPI VOLNA LLC is involved in supporting the Government of Russia by carrying on business in a sector of strategic significance, namely the electronics sector. (Phone number):7 495 223-47-72 (Website):https://www.mpi-volna.ru/ (Email address):general@mpi-volna.ru (Type of entity):Limited Liability Company (Business Reg No):Tax Identification Number: INN 7706001520",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15363 +MASHPRIBORINTORG-VOLNA LLC,,,,,,,ООО Машприборинторг-Волна,Cyrillic,Russian,,,,,,,,,,4A Plekhanova Street,"Unit XII, Floor 2",,,,Moscow,111123,Russia,"(UK Sanctions List Ref):RUS1440 OGRN 1027739824683 (UK Statement of Reasons):MPI VOLNA LLC is involved in supporting the Government of Russia by carrying on business in a sector of strategic significance, namely the electronics sector. (Phone number):7 495 223-47-72 (Website):https://www.mpi-volna.ru/ (Email address):general@mpi-volna.ru (Type of entity):Limited Liability Company (Business Reg No):Tax Identification Number: INN 7706001520",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15363 +MASHPRIBORINTORG-VOLNA LLC,,,,,,,ООО Машприборинторг-Волна,Cyrillic,Russian,,,,,,,,,,29 Entuziastov Highway,Balashikha,,,,Moskovskaya Oblast,143907,Russia,"(UK Sanctions List Ref):RUS1440 OGRN 1027739824683 (UK Statement of Reasons):MPI VOLNA LLC is involved in supporting the Government of Russia by carrying on business in a sector of strategic significance, namely the electronics sector. (Phone number):7 495 223-47-72 (Website):https://www.mpi-volna.ru/ (Email address):general@mpi-volna.ru (Type of entity):Limited Liability Company (Business Reg No):Tax Identification Number: INN 7706001520",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15363 +MASHTALYAR,Oleg,Alexandrovich,,,,,Олег Александрович Машталяр,Cyrillic,Russian,28/09/1971,,,Russia,717545622,Russia,,,Vice Chairman of the Management Board of SOVCOMBANK,,,,,,,,,"(UK Sanctions List Ref):RUS1022 (UK Statement of Reasons):Oleg Alexandrovich MASHTALYAR is a Vice Chairman of the Management Board of SOVCOMBANK. In his role, MASHTALYAR is a member of and associated with SOVCOMBANK. SOVCOMBANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15353 +MASLI,Hamid,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,,,,,,Reportedly located in Waziristan,,,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +MASLI,Hamid,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,"Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan",,,,,,,Pakistan,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +MASLOV,Igor,Venediktovich,,,,Colonel,Игорь Венедиктович МАСЛОВ,Cyrillic,Russian,18/10/1960,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1310 (UK Statement of Reasons):Igor Maslov is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 in that he has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine as the Head of the Directorate of the Presidential Administration of the Russian Federation for Interregional and Cultural Relations with Foreign Countries. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15262 +MASSA,Sha'afiq,,,,,,,,,,,,,,,,,Head of Branch 215 (Damascus) of the army's intelligence service,,,,,,,,,(UK Sanctions List Ref):SYR0220 (UK Statement of Reasons):Head of Branch 215 (Damascus) of the army's intelligence service. Responsible for the torture of detained opponents. Involved in repressive actions against civilians (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12705 +MASSA,Shafik,,,,,,,,,,,,,,,,,Head of Branch 215 (Damascus) of the army's intelligence service,,,,,,,,,(UK Sanctions List Ref):SYR0220 (UK Statement of Reasons):Head of Branch 215 (Damascus) of the army's intelligence service. Responsible for the torture of detained opponents. Involved in repressive actions against civilians (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12705 +MASSA,Shafiq,,,,,,,,,,,,,,,,,Head of Branch 215 (Damascus) of the army's intelligence service,,,,,,,,,(UK Sanctions List Ref):SYR0220 (UK Statement of Reasons):Head of Branch 215 (Damascus) of the army's intelligence service. Responsible for the torture of detained opponents. Involved in repressive actions against civilians (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,31/12/2020,12705 +MATALY,MOHAMED,OULD,,,,,,,,00/00/1958,,,Mali,(1) D9011156 (2) AA0260156,(1) - . (2) issued on 3 August 2018 (date of expiration: 2 August 2023,,,Member of Parliament,Golf Rue 708 Door 345,,,,,Gao,,Mali,"(UK Sanctions List Ref):MAL0008 (UN Ref):MLi.008 Mohamed Ould Mataly is the former Mayor of Bourem and current Member of Parliament for Bourem’s constituency, part of the Rassamblement pour le Mali (RPM, President Ibrahim Boubacar Keita’s political party). He is from the Lehmar Arab community and an influential member of the pro-governmental wing of the Mouvement Arabe de l’Azawad (MAA), associated to the Plateforme des mouvements du 14 juin 2014 d’Alger (Plateforme) coalition. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,Mali,20/12/2019,10/07/2019,10/10/2022,13803 +MATALY,MOHAMED,OULD,,,,,,,,00/00/1958,,,Mali,(1) D9011156 (2) AA0260156,(1) - . (2) issued on 3 August 2018 (date of expiration: 2 August 2023,,,Member of Parliament,Almoustarat,,,,,Gao,,Mali,"(UK Sanctions List Ref):MAL0008 (UN Ref):MLi.008 Mohamed Ould Mataly is the former Mayor of Bourem and current Member of Parliament for Bourem’s constituency, part of the Rassamblement pour le Mali (RPM, President Ibrahim Boubacar Keita’s political party). He is from the Lehmar Arab community and an influential member of the pro-governmental wing of the Mouvement Arabe de l’Azawad (MAA), associated to the Plateforme des mouvements du 14 juin 2014 d’Alger (Plateforme) coalition. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,Mali,20/12/2019,10/07/2019,10/10/2022,13803 +MATANGA,Godwin,,,,,,,,,05/02/1962,Chipinge,Zimbabwe,Zimbabwe,ZL042663,,,,Commissioner General of the Zimbabwe Republic Police,,,,,,Harare,,Zimbabwe,"(UK Sanctions List Ref):ZIM0006 (UK Statement of Reasons):There are reasonable grounds to suspect that Godwin Matanga bears responsibility for serious human rights violations committed by the police and military during the crackdown on post-election protests in August 2018, which resulted in six civilian deaths, by virtue of his position as Commissioner General of the Zimbabwe Republic Police Force based in Harare at the relevant time. Those actions undermined the rule of law in Zimbabwe. (Gender):Male",Individual,Primary name,,Zimbabwe,01/02/2021,01/02/2021,01/02/2021,14054 +MATI,MOHAMMADULLAH,,,,,Maulavi,محمد الله مطيع,,,00/00/1961,"Arghandab District, Kandahar Province",Afghanistan,Afghanistan,,,,,Minister of Public Works under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0052 (UN Ref):TAi.068 Lost one leg in 1980s. Interim leader of Taliban Supreme Council from February to April 2010. In charge of recruitment activities as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Isakzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7277 +MATIN,ALLAH DAD,,,,,Mullah,الله داد متین,,,00/00/1953,"Kadani village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,(1) Minister of Urban Development under the Taliban regime (2) President of Central Bank (Da Afghanistan Bank) under the Taliban regime (3) Head of Ariana Afghan Airlines under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0021 (UN Ref):TAi.021 One foot lost in landmine explosion. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,31/01/2001,01/02/2021,6953 +MATIN,ALLAH DAD,,,,,Mullah,الله داد متین,,,00/00/1960,"Kadani village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,(1) Minister of Urban Development under the Taliban regime (2) President of Central Bank (Da Afghanistan Bank) under the Taliban regime (3) Head of Ariana Afghan Airlines under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0021 (UN Ref):TAi.021 One foot lost in landmine explosion. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,31/01/2001,01/02/2021,6953 +MATIULLAH,,,,,,Mullah,مطيع الله,,,00/00/1973,"Daman District, Kandahar Province",Afghanistan,Afghanistan,,,,,"Director, Kabul Custom House under the Taliban regime",,,,,,,,,(UK Sanctions List Ref):AFG0020 (UN Ref):TAi.020 Works on recruitment for the Taliban movement as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7278 +MATKIN,Aleh,Uladzimiravich,,,,,"МАТКИН , Олег Владимирович",,,,,,,,,,,(1) Former Head of Penal Correction Department in the Ministry of Internal Affairs (2) First Deputy Chief of Staff of Internal Troops and Chief of Staff of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0025 (UK Statement of Reasons):Matkin is the former Head of the Penal Correction Department that has authority over Ministry of Internal Affairs (MoIA) detention facilities. In this position, he is responsible for the inhumane and degrading treatment, amounting to serious human rights violations, including torture, carried out in the detention facilities following the elections of 9 August (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13947 +MATKIN,Oleg,Vladimirovitch,,,,,"МАТКІН, Алег Уладзіміравіч",,,,,,,,,,,(1) Former Head of Penal Correction Department in the Ministry of Internal Affairs (2) First Deputy Chief of Staff of Internal Troops and Chief of Staff of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0025 (UK Statement of Reasons):Matkin is the former Head of the Penal Correction Department that has authority over Ministry of Internal Affairs (MoIA) detention facilities. In this position, he is responsible for the inhumane and degrading treatment, amounting to serious human rights violations, including torture, carried out in the detention facilities following the elections of 9 August (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13947 +MATRUS,Igor,Viktorovich,,,,,МАТРУС Игорь Викторович,Cyrillic,Russian,27/01/1981,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1188 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15140 +MATSA (MOHANDESI TOSEH SOKHT ATOMI COMPANY),,,,,,,,,,,,,,,,,,,90,Fathi Shaghaghi Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0092 (UK Statement of Reasons):An Iranian company which has been contracted by UN designated Kalaye Electric Company to provide design and engineering services across the nuclear fuel cycle, including at Natanz Fuel Enrichment Plant. (Type of entity):Engineering",Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12260 +MATSA (MOHANDESI TOSEH SOKHT ATOMI COMPANY),,,,,,,,,,,,,,,,,,,27,Alvand Avenue,37th Street,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0092 (UK Statement of Reasons):An Iranian company which has been contracted by UN designated Kalaye Electric Company to provide design and engineering services across the nuclear fuel cycle, including at Natanz Fuel Enrichment Plant. (Type of entity):Engineering",Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12260 +MATTOCK CONSTRUCT,,,,,,,,,,,,,,,,,,,P.O. Box 35202,Industrial Zone,Al-Qadam Road,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +MATTOCK CONSTRUCT,,,,,,,,,,,,,,,,,,,P.O. Box: 1149,Rural Damascus: Adra,Industrial Zone,next to Teshreen Mill,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +MATUQ,MATUQ,MOHAMMED,,,,,,,,00/00/1956,Khoms,Libya,,,,,,Secretary for Utilities,,,,,,,,,"(UK Sanctions List Ref):LIB0054 (UN Ref):LYi.008 Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze). Believed status/location: , believed captured. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525795",Individual,Primary name,,Libya,03/03/2011,26/02/2011,31/12/2020,11659 +MATVEEV,Aleksei,Anatolievich,,,,,,,,00/00/1963,Leningrad,Russia,Russia,,,,,Member of Gazprombank’s Management Board. Deputy Chairman of Gazprombank’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1610 (UK Statement of Reasons):Alexey Anatolyevich Matveev is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15554 +MATVEEV,Alexey,Anatolyevich,,,,,Алексей Анатольевич Матвеев,Cyrillic,Russian,00/00/1963,Leningrad,Russia,Russia,,,,,Member of Gazprombank’s Management Board. Deputy Chairman of Gazprombank’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1610 (UK Statement of Reasons):Alexey Anatolyevich Matveev is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15554 +MATVEEV,Mikhail,Nikolaevich,,,,,Матвеев Михаил Николаевич,,,13/05/1968,Dnepropetrovsk,Ukraine,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0295 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14240 +MATVEYCHEV,Oleg,Anatolyevich,,,,,,,,01/02/1970,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0723 (UK Statement of Reasons):Oleg Anatolyevich Matveychev is a deputy in the State Duma of the Russian Federation and vocal supporter of the Government of Russia in Russian media. In articles and interviews he has promoted policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,15/03/2022,14674 +MATVIYENKO,Valentina,Ivanovna,,,,,,,,07/04/1949,"Shepetovka, Khmelnitskyi (Kamenets-Podolsky) region",Ukrainian SSR (now Ukraine),,,,,,Speaker of the Federation Council of Russian Federation,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0026 (UK Statement of Reasons):Speaker of the Federation Council. On 1 March 2014, publicly supported in the Federation Council the deployment of Russian forces in Ukraine. (Gender):Female",Individual,Primary name,,Russia,21/03/2014,31/12/2020,31/12/2020,12943 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Chaghi,Chaghi District,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Cholmon Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Flat number 4,Furqan Centre,Jamaluddin Afghani Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Gerd-e-Jangal,Chaghi District,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Haji Ghulam Nabi Market,Lashkar Gar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Hazar Joft,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Ismat Bazaar,Marjah District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Lakri City,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Lashkar Gar Bazaar,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Main Bazaar,Safar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Money Exchange Market,Lashkar Gar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Munsafi Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,"Office number 4, 2nd Floor",Muslim Plaza Building,Doctor Banu Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Safar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,"Shop number 1, 1st Floor",Kadari Place,Abdul Samad Khan Street (next to Fatima Jena Road),,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Shop number 1584,Furqan (Fahr Khan) Centre,Chalhor Mal Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,"Shop number 25, 5th Floor",Sarafi Market,,Kandahar City,Kandahar District,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,"Suite number 8, 4th Floor",Sarafi Market,District number 1,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAULAWI AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Zaranj,,,,,Nimruz Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MAWAS,Jawdat,Salbi,,,,,جودت صلبي مواس,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0145 (UK Statement of Reasons):Jawdat Salbi Mawas holds the rank of Major General, a senior officer in the Syrian Artillery and Missile Directorate of the Syrian Armed Forces, in post after May 2011. As a senior ranking officer of the Syrian Artillery and Missile Directorate, he is responsible for violent repression against the civilian population, including the use of missiles and chemical weapons by Brigades under his command in highly populated civilian areas in 2013 in Ghouta. (Gender):Male",Individual,Primary name,,Syria,28/10/2016,31/12/2020,31/12/2020,13382 +MAWAS,Jawdat,Salibi,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0145 (UK Statement of Reasons):Jawdat Salbi Mawas holds the rank of Major General, a senior officer in the Syrian Artillery and Missile Directorate of the Syrian Armed Forces, in post after May 2011. As a senior ranking officer of the Syrian Artillery and Missile Directorate, he is responsible for violent repression against the civilian population, including the use of missiles and chemical weapons by Brigades under his command in highly populated civilian areas in 2013 in Ghouta. (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13382 +MAWWAS,Jawdat,Salbi,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0145 (UK Statement of Reasons):Jawdat Salbi Mawas holds the rank of Major General, a senior officer in the Syrian Artillery and Missile Directorate of the Syrian Armed Forces, in post after May 2011. As a senior ranking officer of the Syrian Artillery and Missile Directorate, he is responsible for violent repression against the civilian population, including the use of missiles and chemical weapons by Brigades under his command in highly populated civilian areas in 2013 in Ghouta. (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13382 +MAWWAS,Jawdat,Salibi,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0145 (UK Statement of Reasons):Jawdat Salbi Mawas holds the rank of Major General, a senior officer in the Syrian Artillery and Missile Directorate of the Syrian Armed Forces, in post after May 2011. As a senior ranking officer of the Syrian Artillery and Missile Directorate, he is responsible for violent repression against the civilian population, including the use of missiles and chemical weapons by Brigades under his command in highly populated civilian areas in 2013 in Ghouta. (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13382 +MAWWAZ,Jawdat,Salbi,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0145 (UK Statement of Reasons):Jawdat Salbi Mawas holds the rank of Major General, a senior officer in the Syrian Artillery and Missile Directorate of the Syrian Armed Forces, in post after May 2011. As a senior ranking officer of the Syrian Artillery and Missile Directorate, he is responsible for violent repression against the civilian population, including the use of missiles and chemical weapons by Brigades under his command in highly populated civilian areas in 2013 in Ghouta. (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13382 +MAWWAZ,Jawdat,Salibi,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0145 (UK Statement of Reasons):Jawdat Salbi Mawas holds the rank of Major General, a senior officer in the Syrian Artillery and Missile Directorate of the Syrian Armed Forces, in post after May 2011. As a senior ranking officer of the Syrian Artillery and Missile Directorate, he is responsible for violent repression against the civilian population, including the use of missiles and chemical weapons by Brigades under his command in highly populated civilian areas in 2013 in Ghouta. (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13382 +MAXIMENKO,Vladimir,,,,,,,,,21/07/1954,,,Russia,,,770305249797,Russian taxpayer ID,"Editor in chief, Strategic Culture Foundation",,,,,,,,,"(UK Sanctions List Ref):RUS1104 (UK Statement of Reasons):Vladimir Ilich MAKSIMENKO (hereafter MAKSIMENKO) is editor of the Strategic Culture Foundation (SCF), an organisation affiliated with the Government of Russia which spreads disinformation. In his role as editor and as a contributor to SCF, MAKSIMENKO has provided support for and promoted actions and policies which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name variation,,Russia,31/03/2022,31/03/2022,09/05/2022,15051 +MAYALEH,Adeeb,,,,,,,,,15/05/1955,Bassir,Syria,(1) France. (2) Syria,,,,,(1) Former Governor of the Central Bank of Syria (2) Former Economy and Foreign Trade Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0066 (UK Statement of Reasons):Former Governor and Chairman of the Board of Directors of the Central Bank of Syria. Adib Mayaleh controlled the Syrian banking sector and managed the Syrian money supply through the issue and withdrawal of bank notes and control of the Foreign Exchange rate value of the Syrian Pound. Through his role at the Central Bank of Syria, Adib Mayaleh provided economic and financial support to the Syrian regime. Former Minister of Economy and Foreign Trade in power after May 2011. (Gender):Male",Individual,Primary name variation,,Syria,15/05/2012,31/12/2020,31/12/2020,12670 +MAYALEH,Adib,,,,,,,,,15/05/1955,Bassir,Syria,(1) France. (2) Syria,,,,,(1) Former Governor of the Central Bank of Syria (2) Former Economy and Foreign Trade Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0066 (UK Statement of Reasons):Former Governor and Chairman of the Board of Directors of the Central Bank of Syria. Adib Mayaleh controlled the Syrian banking sector and managed the Syrian money supply through the issue and withdrawal of bank notes and control of the Foreign Exchange rate value of the Syrian Pound. Through his role at the Central Bank of Syria, Adib Mayaleh provided economic and financial support to the Syrian regime. Former Minister of Economy and Foreign Trade in power after May 2011. (Gender):Male",Individual,Primary name,,Syria,15/05/2012,31/12/2020,31/12/2020,12670 +MAYARD,Andre,,,,,,André Mayard,,,15/05/1955,Bassir,Syria,(1) France. (2) Syria,,,,,(1) Former Governor of the Central Bank of Syria (2) Former Economy and Foreign Trade Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0066 (UK Statement of Reasons):Former Governor and Chairman of the Board of Directors of the Central Bank of Syria. Adib Mayaleh controlled the Syrian banking sector and managed the Syrian money supply through the issue and withdrawal of bank notes and control of the Foreign Exchange rate value of the Syrian Pound. Through his role at the Central Bank of Syria, Adib Mayaleh provided economic and financial support to the Syrian regime. Former Minister of Economy and Foreign Trade in power after May 2011. (Gender):Male",Individual,AKA,,Syria,15/05/2012,31/12/2020,31/12/2020,12670 +MAYCHOU,Ali,,,,,,علي ما يشو,,,25/05/1983,,,Morocco,V06359364,Morocco number,AB704306,Morocco identity card,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0359 (UN Ref):QDi.423 Member of Al Qaida in the Islamic Maghreb (AQIM) (QDe.014), Ansar Eddine (QDe.135), and Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159). Physical description: height: 185 cm; weight: 80 kg INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,15/08/2019,14/08/2019,31/12/2020,13789 +MAYER,David,,,,,,Давид Майер,,,04/07/1980,"Vedeno Village, Vedenskiy District, Republic of Chechnya",Russia,Russia,9600133195,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0127 (UN Ref):QDi.365 As at Aug. 2015, one of the leaders of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), commanding directly 130 militants. Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899829. Address country Syria, located in as at August 2015",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13300 +MAYER,David,,,,,,Давид Майер,,,04/07/1980,"Vedeno Village, Vedenskiy District, Republic of Chechnya",Russia,Russia,9600133195,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0127 (UN Ref):QDi.365 As at Aug. 2015, one of the leaders of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), commanding directly 130 militants. Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899829. Address country Syria, located in as at August 2015",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13300 +MAYOROV,Aleksey,Petrovich,,,,,Алексей Петрович МАЙОРОВ,,,29/12/1961,Klimovsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0945 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14896 +MAYOROVA,Yulia,Mikhailovna,,,,,Юлия Михаиловна МАЙОРОВА,,,23/04/1979,Moscow,Russia,Russia,622264502,as of 2006,,,Lawyer,,,,,,,,,"(UK Sanctions List Ref):GAC0014 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. MAYOROVA participated in the fraud through her involvement, in particular, in court processes based on fraudulent claims for damages, as the lawyer representing Makhaon. Her actions facilitated or provided support for the serious corruption. (Gender):Female",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14095 +MAYOROVA,Yuliya,Mikhaylovna,,,,,,,,23/04/1979,Moscow,Russia,Russia,622264502,as of 2006,,,Lawyer,,,,,,,,,"(UK Sanctions List Ref):GAC0014 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. MAYOROVA participated in the fraud through her involvement, in particular, in court processes based on fraudulent claims for damages, as the lawyer representing Makhaon. Her actions facilitated or provided support for the serious corruption. (Gender):Female",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14095 +MAYU,JIBRIL,ABDULKARIM,IBRAHIM,,,,,,,01/01/1967,"Nile District, El-Fasher, North Darfur",,Sudan,,,(1) 192-3238459-9. (2) 302581.,(1) - (2) Certificate of nationality acquired through birth.,National Movement for Reform and Development (NMRD) Field Commander,,,,,,"Tine, Resides in Tine, on the Sudanese side of the border with Chad",,Sudan,(UK Sanctions List Ref):SUD0004 (UN Ref):SDi.004,Individual,Primary name,,Sudan,26/05/2006,25/04/2006,31/12/2020,8837 +MAYYALEH,Adeeb,,,,,,,,,15/05/1955,Bassir,Syria,(1) France. (2) Syria,,,,,(1) Former Governor of the Central Bank of Syria (2) Former Economy and Foreign Trade Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0066 (UK Statement of Reasons):Former Governor and Chairman of the Board of Directors of the Central Bank of Syria. Adib Mayaleh controlled the Syrian banking sector and managed the Syrian money supply through the issue and withdrawal of bank notes and control of the Foreign Exchange rate value of the Syrian Pound. Through his role at the Central Bank of Syria, Adib Mayaleh provided economic and financial support to the Syrian regime. Former Minister of Economy and Foreign Trade in power after May 2011. (Gender):Male",Individual,Primary name variation,,Syria,15/05/2012,31/12/2020,31/12/2020,12670 +MAYYALEH,Adib,,,,,,,,,15/05/1955,Bassir,Syria,(1) France. (2) Syria,,,,,(1) Former Governor of the Central Bank of Syria (2) Former Economy and Foreign Trade Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0066 (UK Statement of Reasons):Former Governor and Chairman of the Board of Directors of the Central Bank of Syria. Adib Mayaleh controlled the Syrian banking sector and managed the Syrian money supply through the issue and withdrawal of bank notes and control of the Foreign Exchange rate value of the Syrian Pound. Through his role at the Central Bank of Syria, Adib Mayaleh provided economic and financial support to the Syrian regime. Former Minister of Economy and Foreign Trade in power after May 2011. (Gender):Male",Individual,Primary name variation,,Syria,15/05/2012,31/12/2020,31/12/2020,12670 +MAZENGO,David,Amos,,,,,,,,00/00/1965,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +MAZENGO,David,Amos,,,,,,,,01/01/1964,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +MAZEPIN,Dmitry,Arkadievich,,,,,МАЗЕПИН Дмитрий Аркадьевич,Cyrillic,Russian,18/04/1968,"Minsk, Byelorussian SSR, Soviet Union (now – Belarus)",Russia (now Belarus),Russia,,,,,General Director of JSC UCC Uralchem,,,,,,,,,"(UK Sanctions List Ref):RUS0776 (UK Statement of Reasons):Dmitry Arkadievich MAZEPIN is a member of the Board of Directors for Uralchem Group (a large producer of mineral fertilizer and other chemicals) and CEO of Uralchem JSC. MAZEPIN is or has been involved in obtaining a benefit from or supporting the Government of Russia as a Director or equivalent of an entity carrying on business in the chemical sector – a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14727 +MAZEPIN,Nikita,Dmitrievich,,,,,МАЗЕПИН Никита Дмитриевич,Cyrillic,Russian,02/03/1999,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0785 (UK Statement of Reasons):Nikita Dmitrievich MAZEPIN is the son of Dmitry Arkadievich MAZEPIN (RUS0776). Nikita Dmitrievich MAEZPIN is therefore associated with and has obtained a financial benefit or other material benefit from Dmitry Arkadievich MAZEPIN. Dmitry Arkadievich MAZEPIN is a member of the Board of Directors for Uralchem Group (a large producer of mineral fertilizer and other chemicals) and CEO of Uralchem JSC. MAZEPIN is or has been involved in obtaining a benefit from or supporting the Government of Russia as a Director or equivalent of an entity carrying on business in the chemical sector – a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14736 +MAZHARI,ABDUL QUDDUS,,,,,Maulavi,عبد القدوس مظهری,,,00/00/1970,Kunduz Province,Afghanistan,Afghanistan,SE 012820,(Afghan). Issued on 4 Nov 2000,,,"Education Attache, Taliban Consulate General, Peshawar, Pakistan",Kushal Khan Mena,District Number 5,,,,Kabul,,Afghanistan,(UK Sanctions List Ref):AFG0103 (UN Ref):TAi.135 Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7296 +MAZ-HARI,Akhtar,Mohammad,,,,,,,,00/00/1970,Kunduz Province,Afghanistan,Afghanistan,SE 012820,(Afghan). Issued on 4 Nov 2000,,,"Education Attache, Taliban Consulate General, Peshawar, Pakistan",Kushal Khan Mena,District Number 5,,,,Kabul,,Afghanistan,(UK Sanctions List Ref):AFG0103 (UN Ref):TAi.135 Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7296 +MAZHUGA,Alexander,Georgievich,,,,,Мажуга Александр Георгиевич,,,06/08/1980,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0451 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14396 +MAZIO,Ozia,,,,,,,,,06/06/1949,Ariwara,Congo (Democratic Republic),Congo (Democratic Republic),,,,,Former president of the Fédération des entreprises congolaises (FEC) in Aru territory,,,,,,,,,"(UK Sanctions List Ref):DRC0027 (UN Ref):CDi.027 While president of the Fédération des entreprises congolaises (FEC) in Aru territory, Dieudonné Ozia Mazio is believed to have died in Ariwara on 23 September 2008. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275495 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8705 +MAZLOOM,Fazel,Mohammad,,,,,,,,00/00/1963,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +MAZLOOM,Fazel,Mohammad,,,,,,,,00/00/1964,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +MAZLOOM,Fazel,Mohammad,,,,,,,,00/00/1965,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +MAZLOOM,Fazel,Mohammad,,,,,,,,00/00/1966,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +MAZLOOM,Fazel,Mohammad,,,,,,,,00/00/1967,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +MAZLOOM,Fazel,Mohammad,,,,,,,,00/00/1968,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +MAZLOOM,FAZL,MOHAMMAD,,,,Mullah,فضل محمد مظلوم,,,00/00/1963,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +MAZLOOM,FAZL,MOHAMMAD,,,,Mullah,فضل محمد مظلوم,,,00/00/1964,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +MAZLOOM,FAZL,MOHAMMAD,,,,Mullah,فضل محمد مظلوم,,,00/00/1965,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +MAZLOOM,FAZL,MOHAMMAD,,,,Mullah,فضل محمد مظلوم,,,00/00/1966,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +MAZLOOM,FAZL,MOHAMMAD,,,,Mullah,فضل محمد مظلوم,,,00/00/1967,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +MAZLOOM,FAZL,MOHAMMAD,,,,Mullah,فضل محمد مظلوم,,,00/00/1968,Uruzgan,Afghanistan,Afghanistan,,,,,Deputy Chief of Army Staff of the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0023 (UN Ref):TAi.023 Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7281 +MBAH ZUL,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Gebang,Kecamatan Masaran,Kabupaten Sragen,,,Jawa Tengah,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +MBAH ZUL,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Taman Fajar,Kecamatan Probolinggo,Kabupaten Lampung Timur,,,Lampung,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +MBARUSHIMANA,CALLIXTE,,,,,,,,,24/07/1963,"Ndusu/Ruhengeri, Northern Province",Rwanda,Rwanda,,,,,Re-elected Executive Secretary of FDLR,,,,,,,,,(UK Sanctions List Ref):DRC0026 (UN Ref):CDi.010 Arrested in Paris on 3 October 2010 under ICC warrant for war crimes and crimes against humanity committed by FDLR troops in the Kivus in 2009. Transferred to The Hague on 25 January 2011 and released by the ICC in late 2011. Elected FDLR Executive Secretary on 29 Nov. 2014 for a five-year term. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5224649 (Gender):Male,Individual,Primary name,,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10672 +M'BETIBANGUI,Oumar,Younous,,,,,,,,02/04/1970,,,Sudan,D00000898,(CAR Diplomatic). Issued on 11 April 2013. Valid until 10 April 2018.,,,Former Séléka General,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0007 (UN Ref):CFi.006 Is a diamond smuggler and a three-star general of the Séléka and close confident of former CAR interim president Michel Djotodia. Physical description: hair colour: black; height: 180cm; belongs to the Fulani ethnic group. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as at 11 October 2015 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Phone number):+236 75507560,Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13273 +M'BETIBANGUI,Oumar,Younous,,,,,,,,02/04/1970,,,Sudan,D00000898,(CAR Diplomatic). Issued on 11 April 2013. Valid until 10 April 2018.,,,Former Séléka General,,,,,,Bria,,Central African Republic,(UK Sanctions List Ref):CAF0007 (UN Ref):CFi.006 Is a diamond smuggler and a three-star general of the Séléka and close confident of former CAR interim president Michel Djotodia. Physical description: hair colour: black; height: 180cm; belongs to the Fulani ethnic group. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as at 11 October 2015 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Phone number):+236 75507560,Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13273 +M'BETIBANGUI,Oumar,Younous,,,,,,,,02/04/1970,,,Sudan,D00000898,(CAR Diplomatic). Issued on 11 April 2013. Valid until 10 April 2018.,,,Former Séléka General,,,,,Tullus,Southern Darfur,,Sudan,(UK Sanctions List Ref):CAF0007 (UN Ref):CFi.006 Is a diamond smuggler and a three-star general of the Séléka and close confident of former CAR interim president Michel Djotodia. Physical description: hair colour: black; height: 180cm; belongs to the Fulani ethnic group. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as at 11 October 2015 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Phone number):+236 75507560,Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13273 +MCDONALD,Brian,,,,,,,,,29/02/1980,Dublin,Republic of Ireland,Republic of Ireland,PU6598399,,,,Journalist,,,,,,,,,"(UK Sanctions List Ref):RUS1378 (UK Statement of Reasons):Brian MCDONALD is head of Russia Desk for the English language edition of RT (formerly Russia Today). RT is owned or controlled by ANO TV-NOVOSTI, which is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business as a Government of Russia-affiliated entity and carrying on business in a strategically significant sector to the Government of Russia. ANO TV-NOVOSTI was designated by the United Kingdom on 31 March 2022. Therefore, as an employee of RT, MCDONALD is a member of, or associated with, a person involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, or obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,02/11/2022,15335 +MCMI,,,,,,,,,,,,,,,,,,,P.O. Box 35202,Industrial Zone,Al-Qadam Road,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +MCMI,,,,,,,,,,,,,,,,,,,P.O. Box: 1149,Rural Damascus: Adra,Industrial Zone,next to Teshreen Mill,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +MCST JSC,,,,,,,AO МЦСТ,Cyrillic,Russian,,,,,,,,,,51 Leninsky prospect,,,,,Moscow,119049,Russia,"(UK Sanctions List Ref):RUS1441 KPP 773601001 (UK Statement of Reasons):MCST JSC is an involved person under the Russia (EU Exit) (Sanctions) Regulations 2019 on the basis that it is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the information, communications, and digital technologies sector, a sector of strategic significance to the Government of Russia. (Phone number):7 (495) 363 96 65 (Website):Mcst.ru (Business Reg No):Tax Identification Number: INN 7736053886",Entity,Primary name,,Russia,04/05/2022,04/05/2022,02/09/2022,15361 +MCST LEBEDEV,,,,,,,,,,,,,,,,,,,51 Leninsky prospect,,,,,Moscow,119049,Russia,"(UK Sanctions List Ref):RUS1441 KPP 773601001 (UK Statement of Reasons):MCST JSC is an involved person under the Russia (EU Exit) (Sanctions) Regulations 2019 on the basis that it is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the information, communications, and digital technologies sector, a sector of strategic significance to the Government of Russia. (Phone number):7 (495) 363 96 65 (Website):Mcst.ru (Business Reg No):Tax Identification Number: INN 7736053886",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,02/09/2022,15361 +MEBRAK,Yazid,,,,,,,,,07/02/1969,Annaba,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0117 (UN Ref):QDi.389 A leader of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930738,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13322 +MEC,,,,,,,,,,,,,,,,,,,Strand Rd.,Near Thakhin Mya Park,Ayeyar Waddy Ward,,Ahlone,Yangon,,Myanmar,"(UK Sanctions List Ref):GHR0081 Names of Director(s)/Management: Lt Gen (retired) Nyo Saw (Former QMG – retired in 2020); Maj Gen Moe Myint Htun (Army COS); Rear Admiral Moe Aung (Navy COS); Lt Gen Htun Aung (Air Force COS); Brig Gen Aung Kyaw Hoe (Defence Perm Sec); Aung Lin Tun (Htun); Maj Gen Aung Zay Ya; Khin Maung Soe; Maj Gen Maung Maung Myint; Brig Gen Thaik Soe; Thant Swe; Thant Zin; Maj Gen Thaw Lwin; Thein Toe; Maj Gen Zaw Lwin Oo; Zin Min Htet; Aung Min; Htun Htun Oo; Myo Thant; Win Lwin. Ultimate beneficial owner(s): Myanmar senior military leadership, units and battalions. (UK Statement of Reasons):Myanmar Economic Corporation (MEC) is a major Myanmar conglomerate, which in practice is owned and governed by, and for the benefit of, the Myanmar Ministry of Defence (MoD). The Tatmadaw who are responsible for serious human rights violations against the population of Myanmar, including the 2021 coup d'etat and violence against ethnic minorities, is under the command of the MoD. Also several former and serving member of the Tatmadaw are directors of MEC. There are therefore reasonable grounds to suspect that MEC is associated with the Tatmadaw. Further or alternatively, there are reasonable grounds to suspect that MEC made funds available to the Tatmadaw by directly contributing to a fundraising event aimed at providing financial support for the Tatmadaw during the 2017 ‘clearance operations’ against the Rohingya. These “clearance operations” resulted in serious human rights violations, including mass unlawful killing, torture, systematic rape and targeted sexual violence. (Type of entity):Military Holding Company (Subsidiaries):Agro Pack Co., Ltd.; Aung Myint Mo Min Securities. Ahlone International Port Terminal 1. Amber International Company Ltd.. Anhydrous Ethanol Plant (Taungzinaye). Aung Myint Moh Min Insurance Company Ltd.. Aung Zayya Oo Co., Ltd.. Bagwa Gone Company Ltd.. Bagwa Gone Gems Company Ltd.. Cannery. Cement plant (Myaingglay). Coal Mine (Maw Taung). Coal Mine and Power Plant (Mai Khot). Container Transport and Port Clearance Yard (Ywama) Cotton Ginning Factory (Myitthar). Dagon Beverages Company Ltd.. Dagon Dairy Farm, Dairy Factory and Cannery (Pyinmabin). Dagon FC Company Ltd.;. Dagon Rum Factory (Shwe Pyi Thar). Disposable Syringe Factory (Hwambi). Galvanized Iron Sheet Factory (Than Hlyin). Gas plant (Botahthaung). Gas plant (Mandalay). Gems Extraction Mine (Mine Shu – Loi Saung Htauk). Glass Factory (Than Hlyin). Golden Majestic Star Mobile Company Limited. Granite Mine and Processing Plant (Balin). GSM Mobil Phone (438,000) Allocation (Ayeyarwadi Division). Gypsum Mine and Transportation Plant (Htone Bo). High Tension Steel Bolts, Nuts and Washers Manufacturing Plant (Ywama). Hteedan Port (Kyeemyindine). Indoor Skydiving. Innwa Bank Ltd. Jade Extraction Mine (Lone Khin – Hpakan). Kan Thar Yar International Specialist Hospital. Marble mine and processing plant (Mandalay). Myanmar Economic Corporation Telecommunication (MECTel). Myanmar Mobile Money Services Company Ltd.. Myanmar Mobile Money Services Company Ltd.;. Myanmar Sigma Cable Wire Factory (Hlaing Thar Yar);. Mytel Wallet International Myanmar Company. Nan Myaing Coffee (Pyin Oo Lwin); Okkala Golf Resort. Nay Pyi Taw Ye Pyar Drinking Water Plant (Naypyitaw). No. 1 Steel Rolling Mill in Kyauk Swae Kyowe on site of Pinpet Iron Ore Mine. No. 2 Steel Mill and Fabrication Shop (Myaungdagar). No. 3 Steel Mill 3 (Ywama). Oxygen Plant (Mindama). Paper Factory (Myainggalay). Printing Factory (Yangon). Refractory Plant (Aung Lan). Remote sensing ground station. Rice Mills and Rice Storage (Hteedan Port). Sandaku Myint Mo Co., Ltd.. Ship Breaking Yard (Thilawa). Star High Co., Ltd.. Star High Group Company Ltd. Sugar Mill (Du Yin Gabo). Sugar mill (Kanbalu). Sugar Mill (Kanhla). Tea factory (Kan Yeik Thar). Tea powder and tea mix factory (Pyinmabin). Tristar Tyre Manufacturing Company Ltd. Tyre Retreading Plant (Ywama). Virgin Coconut Oil Factory (Pathein). Wolfram Mine (Dawei)",Entity,AKA,,Global Human Rights,01/04/2021,01/04/2021,11/11/2022,14081 +MECHANIC INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,Abali Road/Azmayesh Junction,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0093 (UK Statement of Reasons):Entity subordinate to Iran's Aerospace Industries Organisation (AIO),Entity,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10654 +MECHANIC INDUSTRIES ORGANISATION,,,,,,,,,,,,,,,,,,,Abali Road/Azmayesh Junction,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0093 (UK Statement of Reasons):Entity subordinate to Iran's Aerospace Industries Organisation (AIO),Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10654 +MECHANICAL CONSTRUCTION FACTORY,,,,,,,,,,,,,,,,,,,P.O. Box 35202,Industrial Zone,Al-Qadam Road,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +MECHANICAL CONSTRUCTION FACTORY,,,,,,,,,,,,,,,,,,,P.O. Box 35202,Industrial Zone,Al-Qadam Road,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,Primary name,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +MECHANICAL CONSTRUCTION FACTORY,,,,,,,,,,,,,,,,,,,P.O. Box: 1149,Rural Damascus: Adra,Industrial Zone,next to Teshreen Mill,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,Primary name,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +MECHANICAL CONSTRUCTION FACTORY,,,,,,,,,,,,,,,,,,,P.O. Box: 1149,Rural Damascus: Adra,Industrial Zone,next to Teshreen Mill,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +MECHANICAL INDUSTRIES COMPLEX,,,,,,,,,,,,,,,,,,,Abali Road/Azmayesh Junction,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0093 (UK Statement of Reasons):Entity subordinate to Iran's Aerospace Industries Organisation (AIO),Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10654 +MECHANICAL INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,Abali Road/Azmayesh Junction,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0093 (UK Statement of Reasons):Entity subordinate to Iran's Aerospace Industries Organisation (AIO),Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10654 +MECHANICAL INDUSTRY,,,,,,,,,,,,,,,,,,,Abali Road/Azmayesh Junction,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0093 (UK Statement of Reasons):Entity subordinate to Iran's Aerospace Industries Organisation (AIO),Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10654 +MED WAVE SHIPPING,,,,,,,,,,,,,,,,,,,Adel Al-Hojrat building number 3,"First Floor opposite Swefieh, Mall-Swfieh",PO Box 850880,,,Amman,11185,Jordan,"(UK Sanctions List Ref):LIB0070 (UK Statement of Reasons):There are reasonable grounds to suspect that Med Waves Shipping, a maritime company, has owned and operated a vessel transporting military equipment to Libya in violation of the UN arms embargo established in UNSCR 1970 (2011). By assisting the contravention or circumvention UNSCR 1970 (2011), Med Wave Shipping was involved in an activity which threatens the peace, stability and security of Libya, and undermines its transition to a democratic, peaceful and independent country. (Phone number):96265865550. 96265868550. 962787000000 (Email address):operation@medwave.co (Type of entity):Shipping company",Entity,Primary name,,Libya,21/09/2020,31/12/2020,31/12/2020,13917 +MEDVEDCHUK,Viktor,Volodymyrovich,,,,,Виктор Владимирович Медведчук,Cyrillic,Russian,07/08/1954,"Pochyot, Krasnoyarsk Krain",Russia,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1331 (UK Statement of Reasons):Viktor Volodymyrovich MEDVEDCHUK (hereafter MEDVEDCHUK) is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019. MEDVEDCHUK is associated with a person who is and has been involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine, namely Vladimir Putin.  MEDVEDCHUK has been engaging in actions or policies that destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15289 +MEDVEDCHUK,Viktor,Volodymyrovich,,,,,Віктор Володимирович Медведчук,Cyrillic,Ukrainian,07/08/1954,"Pochyot, Krasnoyarsk Krain",Russia,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1331 (UK Statement of Reasons):Viktor Volodymyrovich MEDVEDCHUK (hereafter MEDVEDCHUK) is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019. MEDVEDCHUK is associated with a person who is and has been involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine, namely Vladimir Putin.  MEDVEDCHUK has been engaging in actions or policies that destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,02/08/2022,15289 +MEDVEDEV,Dmitry,Anatolyevich,,,,Vice Chairman,МЕДВЕДЕВ Дмитрий Анатольевич,Cyrillic,Russian,14/09/1965,St Petersburg,Russia,Russia,,,,,(1) Vice Chairman of the Security Council of Russia (2) Permanent member of the Russian Security Council,,,,,,,,,"(UK Sanctions List Ref):RUS0725 (UK Statement of Reasons):Dmitry Anatolyevich MEDVEDEV is Vice President of the Russian Security Council (RSC). At an extraordinary meeting of the RSC on 21 February 2022, MEDVEDEV spoke in favour of a proposal to recognise Donetsk and Luhansk as independent republics. MEDVEDEV has therefore been responsible for, provided support for, or promoted a policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14676 +MEDVEDEV,Vladimir,Anatolievich,,,,,МЕДВЕДЕВ Владимир Анатольевич,Cyrillic,Russian,27/10/1980,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1189 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15141 +MEDVEDEV,Vladimir,Anatolyevich,,,,,,,,27/10/1980,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1189 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15141 +MEGATRADE,,,,,,,,,,,,,,,,,,,PO Box 5966,Aleppo Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0314 (UK Statement of Reasons):Acts as a proxy for the Scientific Studies and Research Centre (SSRC), which is listed. (Phone number):+963000000000",Entity,Primary name,,Syria,16/10/2012,31/12/2020,14/02/2022,12799 +MEHBANG SANA,,,,,,,,,,,,,,,,,,,No 15,Eighth Street,Pakistan Avenue,Shahid Beheshti Avenue,,Tehran,,Iran,(UK Sanctions List Ref):INU0099 (UK Statement of Reasons):Has been involved in procurement of materials that are controlled and have direct applications in the manufacture of centrifuges for Iran's uranium enrichment programme. (Phone number):+98 21 88 73 77 53 (Website):www.pooyawave.com (Email address):info@pooyawave.com (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11541 +MEHL,,,,,,,,,,,,,,,,,,,189/191 Mahaban Doola Road,Corner of 50th Street,,,,Yangon,,Myanmar,"(UK Sanctions List Ref):GHR0080 Names of Director(s)/Management: Commander-in-Chief Senior General Min Aung; Deputy Commander-in-Chief U Soe Win; Lt General Hsan Oo; Lt General Mya Tun Oo; Admiral Tin Aung San; General Maung Maung Kyaw; Lt General (retired) Nyo Saw; Maj General Khin Maung Than; Maj General Moe Myint Htun; Read Admiral Moe Aung; Lt General Htun Aung; Lt General Min Naung; Lt General Aung Lin Dwe; Big General (Ret) Kyaw Htin; Major Ni Aung; Big General (Ret) Kyaw Myo Win; Maj (Retired) Ming Khine; Colonel Myint Swe; Lt General Aye Win; Ultimate beneficial owner(s): Myanmar senior military leadership, units and battalions. (UK Statement of Reasons):Myanmar Economic Holdings Limited (MEHL) is a major Myanmar conglomerate, owned by the Myanmar military and its current and former personnel. Min Aung Hlaing, Myanmar’s Commander in Chief, is the Chair of MEHL’s ‘patron group’, along with other senior ranking Tatmadaw officers. In 2017, MEHL directly contributed to a series of fundraising events, which provided financial support for the Tatmadaw personnel engaged in “clearance operations” against the Rohingya. There are reasonable grounds to suspect that part or all of these funds contributed to operations that resulted in serious human rights violations, including mass unlawful killings, torture, systematic rape and other forms of targeted sexual violence by the Tatmadaw committed in Rakhine State in 2017. In view of the circumstances including the close connections between MEHL and senior members of the Tatmadaw, there are reasonable grounds to suspect that MEHL knew or had reasonable cause to suspect that the funds would or may contribute to the serious human rights violations committed. Further or alternatively, MEHL is associated with the Commander in Chief and Deputy Commander in Chief of the Tatmadaw in view of their connections to MEHL including their positions on the patron group. (Type of entity):Military Holding Company (Subsidiaries):Adipati Agricultural Produce Trading Ltd. ASHOK (Gems and Jewellery) Co., Ltd. (alternate spelling: Thawka). Aung Thitsa Oo General Insurance Company Limited. Aung Thitsa Oo Life Insurance Company Limited. Bandoola Transportation Company Inc. Berger Paints Manufacturing Limited. Bo Aung Kyaw Terminal. Cancri (Gems and Jewellery) Co., Ltd. (alternate spelling: Phu Sha Star). Da Na Theiddi Kyal (Jewellery) Co., Ltd. (alternate spelling: Da Na Theiddihi Star and Danatheidi Star (Gems and Jewellery) Co., Ltd). Du Won Kyal (Jewellery) Co., Ltd. (alternate spelling: Du Won Star and Du Won Star (Gems & Jewellery) Co., Ltd.). Hawk Star (Gems and Jewellery) Co., Ltd. (alternate spellings: Thine Ngat Kyal (Jewellery) Co., Ltd. and Thein Nget Star). Hlaing Inland Terminal and Logistics Co., Ltd.. Inndagaw Industrial Complex; Kanpauk Oil Palm Estate and Palm Oil Mill Project (KOPP). Kayah State Mineral Production Company Ltd. Kone Yar Thi Star (alternate spelling: Aquarii (Gems & Jewellery) Co., Ltd.. Lann Pyi Marine Company Ltd; Larbathakedi Micro Finance Service Association Inc.. Lyrae (Gems and Jewellery) Co., Ltd. (alternate spelling: Saung Tar Yar Star). Mon Hsu Jewellery Co., Ltd. (alternate spelling: Mine Shu). Myanmar Imperial Jade (Gems & Jewellery) Co., Ltd.. Myanmar Land and Development Ltd. Myanmar Rubber Wood Co., Ltd.. Myanmar Ruby Enterprise (Gems & Jewellery) Co., Ltd.. Myanmar Tharkaung Finance Co., Ltd.. Myawaddy Agricultural Services Col, Ltd. Myawaddy Bank Ltd.. Myawaddy Clean Drinking Water Service. Myawaddy Trading Ltd; Myawaddy Travels and Tours Co., Ltd.. Myawady Football Club. Nawadae Hotel and Tourism Ltd.. Ngwe Pin Lei Livestock Breedings and Fisheries Co., Ltd.. Ngwe Pin Lei Premium Marine Products Co., Ltd.. Ngwe Pinlae Industrial Zone. Pone Nyet (Gems and Jewellery) Co., Ltd. (alternate spelling: Pone Nyat and One Nyat (Jewellery) Co., Ltd.). Pyinmabin Industrial Zone. Sabai (Jewellery) Co., Ltd. (alternate spellings: Sabae (Gems and Jewellery) Co., Ltd., and Jasmine). Seik Ta Ya Kyal (Jewellery) Co., Ltd. (alternate spellings: Si Tra Star, Seik Tra Star and Seiktra Star (Gems and Jewellery) Co., Ltd.). Shwe Gandamar International Trading Ltd. Shwe Innwa Gems (Business Reg No):156387282",Entity,AKA,,Global Human Rights,25/03/2021,25/03/2021,11/11/2022,14080 +MEHR BANK,,,,,,,,,,,,,,,,,,,204 Taleghani Ave.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0038 (UK Statement of Reasons):Mehr Bank provides financial services to the IRGC and was created to serve the Basij (Phone number):021 22770001 9 (Website):www.mebank.ir (Email address):request@mehr fci.ir (Type of entity):Enterprise (Parent company):(1) Basij Cooperative Foundation (BCF) (2) Bank Sepah,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11582 +MEHR FCI,,,,,,,,,,,,,,,,,,,204 Taleghani Ave.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0038 (UK Statement of Reasons):Mehr Bank provides financial services to the IRGC and was created to serve the Basij (Phone number):021 22770001 9 (Website):www.mebank.ir (Email address):request@mehr fci.ir (Type of entity):Enterprise (Parent company):(1) Basij Cooperative Foundation (BCF) (2) Bank Sepah,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11582 +MEHR FINANCE AND CREDIT INSTITUTE,,,,,,,,,,,,,,,,,,,204 Taleghani Ave.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0038 (UK Statement of Reasons):Mehr Bank provides financial services to the IRGC and was created to serve the Basij (Phone number):021 22770001 9 (Website):www.mebank.ir (Email address):request@mehr fci.ir (Type of entity):Enterprise (Parent company):(1) Basij Cooperative Foundation (BCF) (2) Bank Sepah,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11582 +MEHR FINANCE AND CREDIT INSTITUTION,,,,,,,,,,,,,,,,,,,204 Taleghani Ave.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0038 (UK Statement of Reasons):Mehr Bank provides financial services to the IRGC and was created to serve the Basij (Phone number):021 22770001 9 (Website):www.mebank.ir (Email address):request@mehr fci.ir (Type of entity):Enterprise (Parent company):(1) Basij Cooperative Foundation (BCF) (2) Bank Sepah,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11582 +MEHR INTEREST-FREE BANK,,,,,,,,,,,,,,,,,,,204 Taleghani Ave.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0038 (UK Statement of Reasons):Mehr Bank provides financial services to the IRGC and was created to serve the Basij (Phone number):021 22770001 9 (Website):www.mebank.ir (Email address):request@mehr fci.ir (Type of entity):Enterprise (Parent company):(1) Basij Cooperative Foundation (BCF) (2) Bank Sepah,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11582 +MEHSUD,Noor,Wali,,,,,,,,26/06/1978,Gurguray,Pakistan,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0362 (UN Ref):QDi.427 Leader of Tehrik-e Taliban Pakistan (TTP) (QDe.132). INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,17/07/2020,16/07/2020,31/12/2020,13901 +MEKDAD,Faisal,,,,,,,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +MEKDAD,Faycal,,,,,,Fayçal,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +MEKDAD,Fayssal,,,,,,,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +MELIAD,Farah,,,,,,,,,05/11/1980,Sydney,Australia,Australia,M2719127,Australia,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0010 (UK Statement of Reasons):Farah Meliad has been found guilty of having participated in the bombing of Burgas Airport, which killed 6 people and injured 32 others. He is associated with the terrorist group Hizballah. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),23/12/2016,31/12/2020,16/06/2022,13443 +MELIKYAN,Gennady,Georgiyevich,,,,,,,,,,,,,,,,Deputy Chairman of Sberbank’s Supervisory Board,,,,,,,,,"(UK Sanctions List Ref):RUS1595 (UK Statement of Reasons):Gennady Georgiyevich Melikyan is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a director, manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK). (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15539 +MELLI UNIVERSITY,,,,,,,,,,,,,,,,,,,P.O. Box 19395/4716,,,,,Tehran,19834,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +MELLI UNIVERSITY,,,,,,,,,,,,,,,,,,,Shahid Beheshti University,,,,Evin,Tehran,1983963113,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +MELNICHENKO,Andrey,Igorevich,,,,,Андрей Игоревич МЕЛЬНИЧЕНКО,Cyrillic,Russian,08/03/1972,Gomel,Belarus,,,,773600437377,Personal Tax Number,,,,,,,,,,"(UK Sanctions List Ref):RUS0774 (UK Statement of Reasons):Andrey Igorevich MELNICHENKO is a Russian businessman. As the founder and former owner of Moscow-headquartered coal/energy company SUEK and Swiss headquartered fertiliser producer, EuroChem, MELNICHENKO obtained a benefit from or supported the Government of Russia. SUEK and EuroChem are carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian chemical sector (EuroChem) and the energy sector (SUEK).",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14725 +MELNIK,Raman,Ivanavich,,,,,"МЕЛЬНIК, Раман Iванавiч",,,29/05/1964,,,,,,,,Head of Main Directorate of Law and Order Protection and Prevention at the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0049 (UK Statement of Reasons):In his leadership position as Head of Main Department of Law and Order Protection and Prevention at the Ministry of Internal Affairs, Raman Melnik is responsible for the repression and intimidation campaign against peaceful protesters in the wake of the 2020 presidential election, in particular with arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name,,Belarus,06/11/2020,31/12/2020,31/12/2020,13986 +MELNIK,Roman,Ivanovich,,,,,"МЕЛЬНИК, Роман Иванович",,,29/05/1964,,,,,,,,Head of Main Directorate of Law and Order Protection and Prevention at the Ministry of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):BEL0049 (UK Statement of Reasons):In his leadership position as Head of Main Department of Law and Order Protection and Prevention at the Ministry of Internal Affairs, Raman Melnik is responsible for the repression and intimidation campaign against peaceful protesters in the wake of the 2020 presidential election, in particular with arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13986 +MELNIKOV,Ivan,Ivanovich,,,,,,,,07/08/1950,Bogoroditsk,Russia,Russia,,,,,"First Deputy Speaker, State Duma",,,,,,,,Russia,"(UK Sanctions List Ref):RUS0028 (UK Statement of Reasons):First Deputy Speaker, State Duma. On 20 March 2014 he voted in favour of the draft Federal Constitutional Law 'on the acceptance into the Russian Federation of the Republic of Crimea and the formation within the Russian Federation of new federal subjects - the republic of Crimea and the City of Federal Status Sevastopol'. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,31/12/2020,13110 +MEMETI,Memetiming,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +MEMETI,Memetiming,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +MEMON,Dawood,Ibrahim,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +MEMON,Dawood,Ibrahim,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +MEMON,Dawood,Ibrahim,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +MENDOZA JOVER,Juan,Jose,,,,Vice President of the Supreme Court of Justice (TSJ),,,,11/03/1969,Trujillo,Venezuela,Venezuela,,,V-9499372,,(1) Second Vice President of the Supreme Court of Justice (TSJ – Tribunal Supremo de Justicia) (2) Former President of the Constitutional Chamber,,,,,,,,Venezuela,"(UK Sanctions List Ref):VEN0030 (UK Statement of Reasons):Second Vice President of the Supreme Court of Justice and former President of the Constitutional Chamber. As Vice President of the Supreme Court of Justice (TSJ), there are reasonable grounds to suspect that Mendoza Jover has been involved in repeatedly undermining democracy and the rule of law in Venezuela. The TSJ deprived the legitimate governing body, the National Assembly (AN), of its constitutional powers through several rulings, including through nullifying decisions of the National Assembly Board, nullifying the Democratic Transition Act, and stripping immunity from members of Parliament. Mendoza Jover has sat as a judge for these decisions, and bears responsibility for these grave attacks on democracy. (Gender):Male",Individual,Primary name,,Venezuela,30/06/2020,31/12/2020,28/01/2022,13845 +MENUPASS,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CYB0003 (UK Statement of Reasons):Huaying Haitai, known in cyber security circles as APT10 (Advanced Persistent Threat 10), Red Apollo, CVNX, Stone Panda, MenuPass and Potassium, was involved in relevant cyber activity Operation Cloud Hopper, one of the most significant and widespread cyber instructions to date. They conducted data interference through the theft of intellectual property and sensitive commercial data over many years. Huaying Haitai targeted companies across six continents and sectors banking and finance, government, aviation, space, and satellite technology, manufacturing technology, medical, oil and gas, mining, communications technology, computer processing technology, and defence technology. This activity undermined the prosperity of the United Kingdom and countries other than the United Kingdom (Website):huayinghaitai.com (Type of entity):Company",Entity,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13909 +MENYAILO,Sergei,Ivanovich,,,,,,,,22/08/1960,"Alagir, North-Ossetian Autonomous SSR",Russian Soviet Federative Socialist Republic (RSFSR),Ukraine,,,,,(1) Former Plenipotentiary Representative of the President of the Russian Federation (2) Head of the North Ossetia-Alania Republic (3) Former Governor of Sevastopol,,,,,,,,,(UK Sanctions List Ref):RUS0029 (UK Statement of Reasons):Former Governor of the Ukrainian annexed city of Sevastopol. Currently Acting Head of the North Ossetia-Alania Republic. (Gender):Male,Individual,Primary name,,Russia,29/04/2014,31/12/2020,16/09/2022,12953 +MENYAILO,Sergei,Ivanovich,,,,,,,,22/08/1960,Alagir,Russia,Russia,,,,,Head of the Republic of North Ossetia-Alania (formerly Plenipotentiary Representative of the President of the Russian Federation in the Siberian Federal District),,,,,,,,,"(UK Sanctions List Ref):CHW0013 (UK Statement of Reasons):Currently Head of the Republic of North Ossetia-Alania. Sergei Menyailo was until April 2021 the Plenipotentiary Representative of the President of the Russian Federation in the Siberian Federal District and, therefore, responsible for ensuring the implementation of the constitutional powers of the President, including the implementation by public authorities of domestic and foreign policy of the state in the federal district of Siberia. The activities and movements of Alexey Navalny during his journey to Siberia, from where he intended to return to Moscow on 20th August, were closely monitored by the authorities of the Russian Federation. The poisoning of Alexey Navalny took place at Tomsk Bogashevo airport in Siberia. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny was a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. Given the scale of the operation involved, it is reasonable to conclude that the poisoning was only possible with the consent of the Presidential Office. Given his senior leadership role in the Siberian Federal District, Sergei Menyailo bears responsibility for the providing support for the preparation and use of chemical weapons in the attempted assassination of Alexey Navalny in Tomsk, Siberia. (Gender):Male",Individual,Primary name,,Chemical Weapons,15/10/2020,03/01/2021,18/03/2022,13971 +MEQDAD,Faisal,,,,,,,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +MEQDAD,Faycal,,,,,,Fayçal,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +MEQDAD,Fayssal,,,,,,,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +MERA'I,,,,,,,,,,02/01/1972,El Gharbia Governorate,Egypt,Egypt,,,,,,Via Cilea 40,,,,,Milan,,Italy,(UK Sanctions List Ref):AQD0289 (UN Ref):QDi.142 Sentenced to ten years of imprisonment by the Court of first instance of Milan on 21 Sep. 2006. In custody in Italy. Due for release on 6 Jan. 2012. Subject to expulsion from Italy after serving the sentence. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1418994.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7865 +MERCURY LLC,,,,,,,,,,,,,,,,,,,"Leninsky Prospekt, Dom 137,","Building , Local 2, Room 5,",,,,Moscow,,Russia,(UK Sanctions List Ref):SYR0387 (UK Statement of Reasons):Mercury LLC operates in the oil and gas industry in Syria and is therefore involved in supporting or benefiting from the Syrian regime. The company is associated with Yevgeny Prigozhin who is a person who is or has been so involved. (Type of entity):Limited Liability Company (LLC),Entity,Primary name,,Syria,29/06/2022,29/06/2022,29/06/2022,15435 +MERI,,,,,,,,,,,,,,,,,,,1st Zapadny Proezd 12/1,,,,,Zelenograd,124460,Russia,"(UK Sanctions List Ref):RUS1405 Organization Established Date 03 Sep 1964. Government Gazette Number 92611467 (Russia) (UK Statement of Reasons):The Molecular Electronics Research Institute is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the electronics sector. (Website):https://www.niime.ru (Business Reg No):1117746568829 (Russia). Tax ID No. 7735579027 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15325 +MERI,,,,,,,,,,,,,,,,,,,d. 6 str. 1,ul. Akademika Valieva,,,Zelenograd,Moscow,124460,Russia,"(UK Sanctions List Ref):RUS1405 Organization Established Date 03 Sep 1964. Government Gazette Number 92611467 (Russia) (UK Statement of Reasons):The Molecular Electronics Research Institute is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the electronics sector. (Website):https://www.niime.ru (Business Reg No):1117746568829 (Russia). Tax ID No. 7735579027 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15325 +MERLIN,,,,,,,,,,29/01/1971,Roubaix,France,France,,,,,,,,,,,,,France,(UK Sanctions List Ref):AQD0217 (UN Ref):QDi.095 In custody in France as of May 2004. Sentenced to 25 years imprisonment in France in 2007. His sentence is due to end on 13 Jul. 2023 and his unconditional detention to end on 13 Aug. 2020. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4531664,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,11/02/2022,7797 +METAL CONSTRUCTION & MECHANIC INDUSTRY CO,,,,,,,,,,,,,,,,,,,P.O. Box 35202,Industrial Zone,Al-Qadam Road,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +METAL CONSTRUCTION & MECHANIC INDUSTRY CO,,,,,,,,,,,,,,,,,,,P.O. Box: 1149,Rural Damascus: Adra,Industrial Zone,next to Teshreen Mill,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +METAL CONSTRUCTIONS AND MECHANICAL INDUSTRIES COMPANY,,,,,,,,,,,,,,,,,,,P.O. Box 35202,Industrial Zone,Al-Qadam Road,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +METAL CONSTRUCTIONS AND MECHANICAL INDUSTRIES COMPANY,,,,,,,,,,,,,,,,,,,P.O. Box: 1149,Rural Damascus: Adra,Industrial Zone,next to Teshreen Mill,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +METALIC CONSTRUCTIONS AND MECHANICAL INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,P.O. Box 35202,Industrial Zone,Al-Qadam Road,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +METALIC CONSTRUCTIONS AND MECHANICAL INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,P.O. Box: 1149,Rural Damascus: Adra,Industrial Zone,next to Teshreen Mill,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +METALLIC CONSTRUCTION AND MECHANICAL INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,P.O. Box 35202,Industrial Zone,Al-Qadam Road,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +METALLIC CONSTRUCTION AND MECHANICAL INDUSTRIES CO.,,,,,,,,,,,,,,,,,,,P.O. Box: 1149,Rural Damascus: Adra,Industrial Zone,next to Teshreen Mill,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +METALOGY INDUSTRY OF KHORASAN,,,,,,,,,,,,,,,,,,,2nd km of Khalaj Road,end of Seyyedi St,PO Box 91735-549,,,Mashhad,91735,Iran,(UK Sanctions List Ref):INU0041 (UK Statement of Reasons):Involved in the procurement of components for centrifuges. (Phone number):+98 511 3853008. +98 511 3870225 (Type of entity):Enterprise (Parent company):Ammunition and Metallurgy Group. Ammunition Industries Group (AMIG). Defence Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12266 +METELEV,Artem,Pavlovich,,,,,Метелев Артем Павлович,,,11/08/1993,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0455 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14400 +METFAZ,,,,,,,,,,,,,,,,,,,44,190th Street West,,,,Tehran,16539-75751,,(UK Sanctions List Ref):INU0105 (UK Statement of Reasons):An entity associated with MODAFL that has carried out research into technologies with an application in Iran's nuclear programme. (Type of entity):Import/Export,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12263 +METSHIN,Aidar,Raisovich,,,,,Метшин Айдар Раисович,,,27/08/1963,Nizhnekamsk,Russia,,730338534. 604751385,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0277 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14222 +MEZHDUNARODNYJ BLAGOTVORITEL'NYL FOND,,,,,,,,,,,,,,,,,,,,,,,,,,Bangladesh,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +MEZHDUNARODNYJ BLAGOTVORITEL'NYL FOND,,,,,,,,,,,,,,,,,,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +MEZHDUNARODNYJ BLAGOTVORITEL'NYL FOND,,,,,,,,,,,,,,,,,,,,,,,,Gaza Strip,,,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +MEZHDUNARODNYJ BLAGOTVORITEL'NYL FOND,,,,,,,,,,,,,,,,,,,20-24 Branford Place,Suite 705,,,Newark,New Jersey,67102,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +MEZHDUNARODNYJ BLAGOTVORITEL'NYL FOND,,,,,,,,,,,,,,,,,,,8820 Mobile Avenue,IA,Oak Lawn,,,Illinois,60453,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +MEZHDUNARODNYJ BLAGOTVORITEL'NYL FOND,,,,,,,,,,,,,,,,,,,9838 S. Roberts Road,Suite 1W,,,Palos Hills,Illinois,60465,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +MEZHDUNARODNYJ BLAGOTVORITEL'NYL FOND,,,,,,,,,,,,,,,,,,,PO Box 1937,,,,,Khartoum,,Sudan,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +MEZHDUNARODNYJ BLAGOTVORITEL'NYL FOND,,,,,,,,,,,,,,,,,,,PO Box 548,,,,Worth,Illinois,60482,United States,(UK Sanctions List Ref):AQD0038 (UN Ref):QDe.093 Employer Identification Number (United States of America): 36-3823186. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/11/2002,21/11/2002,16/02/2022,6961 +MID,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0177 (UN Ref):KPe.028 The Munitions Industry Department is involved in key aspects of the DPRK's missile program. MID is responsible for overseeing the development of the DPRK's ballistic missiles, including the Taepo Dong-2.The MID oversees the DPRK's weapons production and R&D programs, including the DPRK's ballistic missile program. The Second Economic Committee and the Second Academy of Natural Sciences – also designated in August 2010 – are subordinate to the MID. The MID in recent years has worked to develop the KN08 road-mobile ICBM. The MID oversees the DPRK’s nuclear program. The Nuclear Weapons Institute is subordinate to the MID. (Subsidiaries):The Nuclear Weapons Institute",Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,31/12/2020,12447 +MIDDLE EAST RAAD AUTOMATION,,,,,,,,,,,,,,,,,,,Unit 1,No 35,Bouali Sina Sharghi,Chehel Sotoun Street,Fatemi Square,Tehran,,Iran,"(UK Sanctions List Ref):INU0103 (UK Statement of Reasons):A company involved in procurement of inverters for Iran's uranium enrichment programme. (Phone number):+98 21 88957781 (Website):www.raadiran.com, www.raadiran.ir (Email address):info@raadiran.ir. tehran.raad@yahoo.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11544 +MIDDLE EAST RAAD AUTOMATION CO.,,,,,,,,,,,,,,,,,,,Unit 1,No 35,Bouali Sina Sharghi,Chehel Sotoun Street,Fatemi Square,Tehran,,Iran,"(UK Sanctions List Ref):INU0103 (UK Statement of Reasons):A company involved in procurement of inverters for Iran's uranium enrichment programme. (Phone number):+98 21 88957781 (Website):www.raadiran.com, www.raadiran.ir (Email address):info@raadiran.ir. tehran.raad@yahoo.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11544 +MIDDLE EAST TIDEWATER COMPANY,,,,,,,,,,,,,,,,,,,No. 80,Tidewater Building,Vozara Street,Saie Park,,Tehran,,Iran,(UK Sanctions List Ref):INU0045 (UK Statement of Reasons):Owned or controlled by the IRGC. (Type of entity):Port operator,Entity,AKA,,Iran (Nuclear),24/01/2012,31/12/2020,31/12/2020,12460 +MIGHTY,,,,,,,,,,19/07/1981,Cebu City,Philippines,Philippines,,,,,,,,,,Atimonana,Quezon Province,,Philippines,(UK Sanctions List Ref):AQD0161 (UN Ref):QDi.242 Member of the Rajah Solaiman Movement (QDe.128). Father's name is Amorsolo Jarabata Pareja. Mother's name is Leonila Cambaya Rosalejos. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10662 +MIHOLAP,Dmitry,Anatolievich,,,,Colonel,МИХОЛАП Дмитрий Анатольевич,Cyrillic,Russian,28/12/1974,Bukino,Belarus,Belarus,,,,,Deputy Commander of the Air Force and Air Defence Forces,,,,,,,,,"(UK Sanctions List Ref):RUS0735 (UK Statement of Reasons):Colonel Dmitry Anatolievich MIHOLAP is a member of the Armed Forces of Belarus, he currently holds the position of Deputy Commander of the Air Force and Air Defence Forces. In this position he is deemed to have been either in direct command of or in a position to hold considerable situational awareness of troops involved in the Russian invasion of Ukraine through the facilitation of Russian freedom of movement into the north of Ukraine. He is also deemed to be in a position that provides logistical support to the Armed Forces of the Russian Federation in their ongoing military operations in Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14686 +MIHOUB,Qusay,,,,,,,,,00/00/1961,,,,,,,,Head of Derra branch of Air-Force Intelligence Service,,,,,,,,,(UK Sanctions List Ref):SYR0199 (UK Statement of Reasons):Former Head of the Deraa branch of the air force intelligence service (sent from Damascus to Deraa at the start of demonstrations there). Responsible for the torture of opponents in custody as well as violence against the Syrian population.,Individual,Primary name,,Syria,24/07/2012,31/12/2020,31/12/2020,12713 +MIKE,Umangis,,,,,,,,,20/07/1966,Central Java,Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0331 (UN Ref):QDi.294 Senior member of Jemaah Islamiyah (QDe.092) involved in planning and funding multiple terrorist attacks in the Philippines and Indonesia. Provided training to Abu Sayyaf Group (QDe.001). Convicted for his role in the 2002 Bali bombings and sentenced to 20 years in prison in Jun. 2012. Remains in custody in Indonesia as at May 2015. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173385,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,12/01/2022,12021 +MIKHAILOV,Sergei,,,,,,Сергей МИХАЙЛОВ,,,17/03/1971,,,Russia,,,,,Director General of the Russian News Agency TASS,,,,,,,,,"(UK Sanctions List Ref):RUS1387 (UK Statement of Reasons):Sergey Vladimirovich MIKHAILOV (hereafter MIKHAILOV) is the Director General of the TASS news agency, a Government of Russia-affiliated entity. As such, he is involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,04/05/2022,04/05/2022,24/06/2022,15320 +MIKHAILOV,Sergey,Patrovich,,,,,Сергей Петрович МИХАЙЛОВ,,,22/05/1965,Nerchinsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0963 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14914 +MIKHAILOV,Sergey,Vladimirovich,,,,,Сергей МИХАЙЛОВ,Cyrillic,Russian,17/03/1971,,,Russia,,,,,Director General of the Russian News Agency TASS,,,,,,,,,"(UK Sanctions List Ref):RUS1387 (UK Statement of Reasons):Sergey Vladimirovich MIKHAILOV (hereafter MIKHAILOV) is the Director General of the TASS news agency, a Government of Russia-affiliated entity. As such, he is involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,24/06/2022,15320 +MIKHAILOVA,Yulia,Valentinovna,,,,,МИХАЙЛОВА Юлия Валентиновна,Cyrillic,Russian,14/06/1991,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1190 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15142 +MIKHAILOVA,Yulia,Valentinovna,,,,,МИХАЙЛОВА Юлия Валентиновна,Cyrillic,Russian,14/07/1991,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1190 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15142 +MIKHAYLOV,Yevgeniy,Eduardovich,,,,,,,,17/03/1963,Arkhangelsk,Russia,Ukraine,,,,,Former so-called 'Minister of the Council of Ministers',,,,,,,,,"(UK Sanctions List Ref):RUS0030 (UK Statement of Reasons):Former so-called “Minister of the Council of Ministers” (Head of the administration for governmental affairs) of the “Donetsk People’s Republic”. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name,,Russia,02/12/2014,31/12/2020,31/12/2020,13179 +MIKHEEV,Alexander,Alexandrovich,,,,,Александр Александрович Михеев,Cyrillic,Russian,18/11/1961,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1030 (UK Statement of Reasons):Alexander MIKHEEV is the CEO and General Director of Rosboronexport, a company owned by the state-owned defence conglomerate Rostec. Rosboronexport is an importer and exporter of Russian weapons. As the CEO and Director General of Rosboronexport, MIKHEEV is obtaining a benefit from or supporting the Government of Russia by working as an executive director of a Government of Russia-affiliated entity.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14967 +MIKHELSON,Leonid,Viktorovich,,,,,,,,11/08/1955,Kaspiysk,Russia,(1) Russia (2) Israel,,,,,"(1) Chairman of the Management Board and Board Member of the Board of Directors, Novatek PJSC (2) Chairman of the Board of Directors, PAO Sibur",,,,,,,,,"(UK Sanctions List Ref):RUS1126 (UK Statement of Reasons):Leonid Viktorovich MIKHELSON is a prominent businessman whose significant business interests in the Russian energy and chemical sectors make him currently one of Russia’s richest men. Through his directorships and major shareholdings in the companies Novatek PJSC and PAO Sibur, MIKHELSON continues to obtain a benefit from and/or continues to support the Government of Russia by working as a director (whether executive or non-executive), trustee, or equivalent, of entities carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian energy and chemicals sectors. (Gender):Male",Individual,Primary name,,Russia,06/04/2022,06/04/2022,06/04/2022,15073 +MIKHEYEV,Aleksandr,Alekandrovich,,,,,,,,18/11/1961,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1030 (UK Statement of Reasons):Alexander MIKHEEV is the CEO and General Director of Rosboronexport, a company owned by the state-owned defence conglomerate Rostec. Rosboronexport is an importer and exporter of Russian weapons. As the CEO and Director General of Rosboronexport, MIKHEEV is obtaining a benefit from or supporting the Government of Russia by working as an executive director of a Government of Russia-affiliated entity.",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,04/07/2022,14967 +MIKHOVICH,Maxim,Yakovlevich,,,,,"МИХОВИЧ, Миксим Яковлевич",,,,,,Belarus,,,,,Head of OMON (‘Special Purpose Police Detachment’) in Brest,,,,,,,,,"(UK Sanctions List Ref):BEL0024 (UK Statement of Reasons):Maxim Mikhovich is Commander of the Special Purpose Police Unit of Brest (OMON). In his role as Commander, Mikhovich bears responsibility for the actions of OMON officers in Brest. Mikhovich is therefore responsible for the serious human rights violations that were carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment of peaceful demonstrators. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,31/12/2020,13946 +MIKLASHEVICH,Petr,Petrovich,,,,,"МИКЛАШЕВИЧ, Петр Петрович",,,18/10/1954,Minsk Oblast,Former USSR Now Belarus,Belarus,,,,,Chairman of the Constitutional Court of the Republic of Belarus,,,,,,,,,(UK Sanctions List Ref):BEL0051 (UK Statement of Reasons):Pyotr Miklashevich was first appointed Chairman of the Constitutional Court in Belarus in February 2008. In this role in August 2020 he has led the Constitutional Court to legitimise the flawed election of President Lukashenko. He is therefore responsible for supporting the repression of civil society and the democratic opposition and has undermined democracy and the rule of law in Belarus. (Gender):Male,Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13996 +MIKLASHEVICH,Pyotr,Piatrovich,,,,,"МІКЛАШЭВІЧ, Пётр Пятровіч",,,18/10/1954,Minsk Oblast,Former USSR Now Belarus,Belarus,,,,,Chairman of the Constitutional Court of the Republic of Belarus,,,,,,,,,(UK Sanctions List Ref):BEL0051 (UK Statement of Reasons):Pyotr Miklashevich was first appointed Chairman of the Constitutional Court in Belarus in February 2008. In this role in August 2020 he has led the Constitutional Court to legitimise the flawed election of President Lukashenko. He is therefore responsible for supporting the repression of civil society and the democratic opposition and has undermined democracy and the rule of law in Belarus. (Gender):Male,Individual,Primary name,,Belarus,06/11/2020,31/12/2020,31/12/2020,13996 +MIKRON,,,,,,,,,,,,,,,,,,,1st Zapadny Proezd 12/1,,,,,Zelenograd,124460,Russia,"(UK Sanctions List Ref):RUS1404 Organization Established Date 13 Jan 1994; Government Gazette Number 07589295 (Russia) (UK Statement of Reasons):JOINT STOCK COMPANY MIKRON is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is the largest Russian manufacturer and exporter of microelectronics.  The company received tax benefits to produce the domestic chip for Russia’s National Payment Card System, which was developed following previous sanctions on Russia. Therefore, JOINT STOCK COMPANY MIKRON is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian electronics sector. (Website):https://en.mikron.ru/ (Business Reg No):1027700073466 (Russia). Tax ID No. 7735007358 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15324 +MIKRON,,,,,,,,,,,,,,,,,,,d. 6 str. 1,ul. Akademika Valieva,,,Zelenograd,Moscow,124460,Russia,"(UK Sanctions List Ref):RUS1404 Organization Established Date 13 Jan 1994; Government Gazette Number 07589295 (Russia) (UK Statement of Reasons):JOINT STOCK COMPANY MIKRON is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is the largest Russian manufacturer and exporter of microelectronics.  The company received tax benefits to produce the domestic chip for Russia’s National Payment Card System, which was developed following previous sanctions on Russia. Therefore, JOINT STOCK COMPANY MIKRON is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian electronics sector. (Website):https://en.mikron.ru/ (Business Reg No):1027700073466 (Russia). Tax ID No. 7735007358 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15324 +MIKRON JSC,,,,,,,,,,,,,,,,,,,1st Zapadny Proezd 12/1,,,,,Zelenograd,124460,Russia,"(UK Sanctions List Ref):RUS1404 Organization Established Date 13 Jan 1994; Government Gazette Number 07589295 (Russia) (UK Statement of Reasons):JOINT STOCK COMPANY MIKRON is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is the largest Russian manufacturer and exporter of microelectronics.  The company received tax benefits to produce the domestic chip for Russia’s National Payment Card System, which was developed following previous sanctions on Russia. Therefore, JOINT STOCK COMPANY MIKRON is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian electronics sector. (Website):https://en.mikron.ru/ (Business Reg No):1027700073466 (Russia). Tax ID No. 7735007358 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15324 +MIKRON JSC,,,,,,,,,,,,,,,,,,,d. 6 str. 1,ul. Akademika Valieva,,,Zelenograd,Moscow,124460,Russia,"(UK Sanctions List Ref):RUS1404 Organization Established Date 13 Jan 1994; Government Gazette Number 07589295 (Russia) (UK Statement of Reasons):JOINT STOCK COMPANY MIKRON is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is the largest Russian manufacturer and exporter of microelectronics.  The company received tax benefits to produce the domestic chip for Russia’s National Payment Card System, which was developed following previous sanctions on Russia. Therefore, JOINT STOCK COMPANY MIKRON is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian electronics sector. (Website):https://en.mikron.ru/ (Business Reg No):1027700073466 (Russia). Tax ID No. 7735007358 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15324 +MILAD,Abdurahman,Salem,Ibrahim,,,,,,,27/07/1986,Tripoli,Libya,Libya,G52FYPRL,"Libya, issued on 8 May 2014 (Date of expiration: 7 May 2022)",,,Commander of the Coast Guard in Zawiya,Zawiya,,,,,,,Libya,"(UK Sanctions List Ref):LIB0039 (UN Ref):LYi.026 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Good quality,Libya,08/06/2018,07/06/2018,30/04/2021,13676 +MILAD,Osama,,,,,,,,,04/04/1976,Tripoli,Libya,Libya,,,,,Manager of Al Nasr Detention Centre in Zawiyah,,,,,,Zawiyah,,Libya,"(UK Sanctions List Ref):LIB0075 (UN Ref):LYi.029 As de factor manager of the Al Nasr detention centre the person concerned has directly, and/or through subordinates engaged in or provided support to acts that violate applicable international human rights law, or acts that consistute human rights abuses in Libya. The person concerned has acted for or on behalf of or at the direction of two listed individuals intrinsically linked to the human trafficking activities of the Zawiyah network, namely Mohamed Kashlaf (LYi.025) and Abdulrahman al Milad (LYi.026). For years, the Al Nasr detention centre in Zawiyah has been singled out in public and in confidential reports describing the plight of migrants and asylum seekers in Libya, including torture, sexual and gender-based violence and human trafficking. Humanitarian organisations and victims of trafficking have consistently identified the person concerned as the de facto manager of the detention centre. Three individuals who had been working in the Al Nasr detention centre were served prison sentences for torturing migrants in the detention centre. (Gender):Male",Individual,AKA,Good quality,Libya,26/10/2021,25/10/2021,26/10/2021,14142 +MILAD,Osama,,,,,,,,,04/04/1976,Tripoli,Libya,Libya,,,,,Manager of Al Nasr Detention Centre in Zawiyah,,,,,,Zawiyah,,Libya,"(UK Sanctions List Ref):LIB0075 (UN Ref):LYi.029 As de factor manager of the Al Nasr detention centre the person concerned has directly, and/or through subordinates engaged in or provided support to acts that violate applicable international human rights law, or acts that consistute human rights abuses in Libya. The person concerned has acted for or on behalf of or at the direction of two listed individuals intrinsically linked to the human trafficking activities of the Zawiyah network, namely Mohamed Kashlaf (LYi.025) and Abdulrahman al Milad (LYi.026). For years, the Al Nasr detention centre in Zawiyah has been singled out in public and in confidential reports describing the plight of migrants and asylum seekers in Libya, including torture, sexual and gender-based violence and human trafficking. Humanitarian organisations and victims of trafficking have consistently identified the person concerned as the de facto manager of the detention centre. Three individuals who had been working in the Al Nasr detention centre were served prison sentences for torturing migrants in the detention centre. (Gender):Male",Individual,AKA,Good quality,Libya,26/10/2021,25/10/2021,26/10/2021,14142 +MILAD,Rahman,Salim,,,,,,,,27/07/1986,Tripoli,Libya,Libya,G52FYPRL,"Libya, issued on 8 May 2014 (Date of expiration: 7 May 2022)",,,Commander of the Coast Guard in Zawiya,Zawiya,,,,,,,Libya,"(UK Sanctions List Ref):LIB0039 (UN Ref):LYi.026 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,30/04/2021,13676 +MILCHAKOV,Alexey,Yurevich,,,,,,,,30/04/1991,St. Petersburg,,Russia,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0031 (UK Statement of Reasons):Commander of the ‘Rusich’ unit, an armed separatist group involved in the fighting in eastern Ukraine. In this capacity, he has actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. He was also involved in the construction of the Kerch Bridge from Russia to the illegally annexed Autonomous Republic of Crimea. Therefore he has supported the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,16/02/2015,31/12/2020,31/12/2020,13200 +MILCHAKOV,Alexey,Yurevich,,,,,,,,30/04/1991,St. Petersburg,,Russia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):RUS0031 (UK Statement of Reasons):Commander of the ‘Rusich’ unit, an armed separatist group involved in the fighting in eastern Ukraine. In this capacity, he has actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. He was also involved in the construction of the Kerch Bridge from Russia to the illegally annexed Autonomous Republic of Crimea. Therefore he has supported the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,16/02/2015,31/12/2020,31/12/2020,13200 +MILHIM,Kifah,,,,,,,,,,,,,,,,,Deputy Head of the Military Intelligence Division,,,,,,,,,(UK Sanctions List Ref):SYR0127 (UK Statement of Reasons):Former battalion Commander in the 4th Division. Appointed deputy head of the Military Intelligence Division in July 2015. Head of the Military Intelligence Directorate since March 2019 and the main individual responsible for the violent repression committed by the Military Intelligence Directorate ( Branch 248) throughout 2011 and 2012.Responsible for the crackdown on the civilian population in Deir ez-Zor. (Gender):Male,Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,31/12/2020,12222 +MILIHOUSE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0315 (UK Statement of Reasons):Public works company controlled by Riyad Shalish [aka Riyad Chaliche] and Ministry of Defence; provides funding to the regime. (Type of entity):Partially owned by Riyad Chaliche (member of Assad family). Partially state-owned,Entity,AKA,,Syria,24/06/2011,31/12/2020,31/12/2020,12011 +MILITARY HOUSING ESTABLISHMENT,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0315 (UK Statement of Reasons):Public works company controlled by Riyad Shalish [aka Riyad Chaliche] and Ministry of Defence; provides funding to the regime. (Type of entity):Partially owned by Riyad Chaliche (member of Assad family). Partially state-owned,Entity,Primary name,,Syria,24/06/2011,31/12/2020,31/12/2020,12011 +MILITARY INTELLIGENCE DIRECTORATE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0316 Business Sector: Security Agency (UK Statement of Reasons):Syrian Government agency directly involved in repression.,Entity,Primary name,,Syria,24/08/2011,31/12/2020,31/12/2020,12056 +MILITARY SUPPLIES INDUSTRY DEPARTMENT,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0177 (UN Ref):KPe.028 The Munitions Industry Department is involved in key aspects of the DPRK's missile program. MID is responsible for overseeing the development of the DPRK's ballistic missiles, including the Taepo Dong-2.The MID oversees the DPRK's weapons production and R&D programs, including the DPRK's ballistic missile program. The Second Economic Committee and the Second Academy of Natural Sciences – also designated in August 2010 – are subordinate to the MID. The MID in recent years has worked to develop the KN08 road-mobile ICBM. The MID oversees the DPRK’s nuclear program. The Nuclear Weapons Institute is subordinate to the MID. (Subsidiaries):The Nuclear Weapons Institute",Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,31/12/2020,12447 +MILLER,Alexei,,,,,,,,,31/01/1962,Leningrad/St Petersburg,Russia,Russia,,,,,(1) Deputy Chairman of the Board of Directors (2) Chairman of the Management Committee of GAZPROM,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0268 (UK Statement of Reasons):ALEXEI BORISOVICH MILLER, hereafter MILLER, is a prominent Russian businessman with close personal ties to Vladimir Putin. In 2001, Putin appointed MILLER to the position of CEO of GAZPROM, Russia's largest energy producer, and was re-appointed for a further 5-year term in 2021. As CEO of GAZPROM, whose majority shareholder is the Government of Russia, MILLER is involved in carrying on business in a sector (energy) of strategic significance to the Russian Government. GAZPROM has also provided deliveries of liquefied petroleum gas to Crimea which was annexed illegally by Russia in 2014. MILLER therefore is involved in carrying on a business in a sector of strategic significance to the Government of Russia, has obtained a financial benefit from the Government of Russia, and has supported activities which undermine and/or threaten the sovereignty, independence and territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,10/03/2022,10/03/2022,10/03/2022,14216 +MILLER,Alexei,Borisovich,,,,,Алексей Борисович МИЛЛЕР,,,31/01/1962,Leningrad/St Petersburg,Russia,Russia,,,,,(1) Deputy Chairman of the Board of Directors (2) Chairman of the Management Committee of GAZPROM,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0268 (UK Statement of Reasons):ALEXEI BORISOVICH MILLER, hereafter MILLER, is a prominent Russian businessman with close personal ties to Vladimir Putin. In 2001, Putin appointed MILLER to the position of CEO of GAZPROM, Russia's largest energy producer, and was re-appointed for a further 5-year term in 2021. As CEO of GAZPROM, whose majority shareholder is the Government of Russia, MILLER is involved in carrying on business in a sector (energy) of strategic significance to the Russian Government. GAZPROM has also provided deliveries of liquefied petroleum gas to Crimea which was annexed illegally by Russia in 2014. MILLER therefore is involved in carrying on a business in a sector of strategic significance to the Government of Russia, has obtained a financial benefit from the Government of Russia, and has supported activities which undermine and/or threaten the sovereignty, independence and territorial integrity of Ukraine. (Gender):Male",Individual,Primary name,,Russia,10/03/2022,10/03/2022,10/03/2022,14216 +MILLER,Alexey,,,,,,,,,31/01/1962,Leningrad/St Petersburg,Russia,Russia,,,,,(1) Deputy Chairman of the Board of Directors (2) Chairman of the Management Committee of GAZPROM,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0268 (UK Statement of Reasons):ALEXEI BORISOVICH MILLER, hereafter MILLER, is a prominent Russian businessman with close personal ties to Vladimir Putin. In 2001, Putin appointed MILLER to the position of CEO of GAZPROM, Russia's largest energy producer, and was re-appointed for a further 5-year term in 2021. As CEO of GAZPROM, whose majority shareholder is the Government of Russia, MILLER is involved in carrying on business in a sector (energy) of strategic significance to the Russian Government. GAZPROM has also provided deliveries of liquefied petroleum gas to Crimea which was annexed illegally by Russia in 2014. MILLER therefore is involved in carrying on a business in a sector of strategic significance to the Government of Russia, has obtained a financial benefit from the Government of Russia, and has supported activities which undermine and/or threaten the sovereignty, independence and territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,10/03/2022,10/03/2022,10/03/2022,14216 +MILLIM TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,,,,,Mangungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +MILLIM TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,,,,,Mangyongdae District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +MILLIM TECHNOLOGY COMPANY,,,,,,,,,,,,,,,,,,,,,,Tongan-dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +MILONOV,Vitaly,Valentinovich,,,,,Милонов Виталий Валентинович,,,23/01/1974,St.Petersburg,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0456 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14401 +MILYUTINA,Irina,Nikolayevna,,,,,МИЛЮТИНА Ирина Николаевна,Cyrillic,Russian,00/00/1973,,,,,,,,"Head of the Management Committee Administration Deputy Chairman of the Management Committee, Gazprom PJSC",,,,,,,,,"(UK Sanctions List Ref):RUS1067 (UK Statement of Reasons):Irina Nikolayevna MILYUTINA (hereafter MILYUTINA) is Head of the Management Committee Administration and Deputy Chairman of the Management Committee of Gazprom PJSC, a Russian global energy corporation. MILYUTINA is a member of and associated with Gazprom, which is supporting the Government of Russia by carrying on business as a Government of Russia-affiliated entity, as Gazprom is owned or controlled by the Government of Russia via its majority shareholding. Gazprom is also carrying on a business in the Russian energy sector, a sector of strategic significance to the Government of Russia.",Individual,Primary name,,Russia,24/03/2022,24/03/2022,14/06/2022,15010 +MIN,Son,,,,,,,,,20/05/1980,,,North Korea,,,,,KOMID Official,,,,,,,,,(UK Sanctions List Ref):DPR0273 (UN Ref):KPi.031 Son Jong Hyok is a KOMID official that has conducted business in Sudan on behalf of KOMID’s interests.,Individual,AKA,Good quality,Democratic People's Republic of Korea,09/12/2016,30/11/2016,31/12/2020,13416 +MININ,Alexei,Veleryevich,,,,,,,,27/05/1972,Perm Oblast,Russia,Russia,120017582,,,,HUMINT Support (GRU),,,,,,Moscow,,Russia,(UK Sanctions List Ref):CYB0005 (UK Statement of Reasons):Alexey Valeryevich Minin was part of a team of intelligence officers of the Russian General Staff Main Intelligence Directorate (GRU) unit known as field post number 26165 that attempted to gain unauthorised access to the information systems of the Organisation for the Prohibition of Chemical Weapons (OPCW) in April 2018. The Netherlands authorities disrupted the cyber attack before it was successful. This attempted relevant cyber activity was intended to undermine the independence or effective functioning of an international organisation. (Gender):Male,Individual,Primary name,,Cyber,31/07/2020,31/12/2020,31/12/2020,13905 +MININ,Alexey,Valeryevich,,,,,,,,27/05/1972,Perm Oblast,Russia,Russia,120017582,,,,HUMINT Support (GRU),,,,,,Moscow,,Russia,(UK Sanctions List Ref):CYB0005 (UK Statement of Reasons):Alexey Valeryevich Minin was part of a team of intelligence officers of the Russian General Staff Main Intelligence Directorate (GRU) unit known as field post number 26165 that attempted to gain unauthorised access to the information systems of the Organisation for the Prohibition of Chemical Weapons (OPCW) in April 2018. The Netherlands authorities disrupted the cyber attack before it was successful. This attempted relevant cyber activity was intended to undermine the independence or effective functioning of an international organisation. (Gender):Male,Individual,Primary name variation,,Cyber,31/07/2020,31/12/2020,31/12/2020,13905 +MINISTRY OF ATOMIC ENERGY INDUSTRY,,,,,,,,,,,,,,,,,,,Haeun-2-dong,,,,Pyongchon District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0175 (UN Ref):KPe.027 The Ministry of Atomic Energy Industry was created in 2013 for the purpose of modernizing the DPRK’s atomic energy industry to increase the production of nuclear materials, improve their quality, and further develop an independent DPRK nuclear industry. As such, the MAEI is known to be a critical player in the DPRK’s development of nuclear weapons and is in charge of day-to-day operation of the country’s nuclear weapons program, and under it are other nuclear-related organizations. Under this ministry are a number of nuclear-related organizations and research centers, as well as two committees: an Isotope Application Committee and a Nuclear Energy Committee. The MAEI also directs a nuclear research center at Yongbyun, the site of the DPRK's known plutonium facilities. Furthermore, in the 2015 Panel of Experts (POE) report, the POE stated that Ri Je-son, a former director of the GBAE who was designated by the Committee established pursuant to resolution 1718 (2006) in 2009 for engagement in or support for nuclear related programs, was appointed as head of the MAEI on April 9, 2014.",Entity,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13342 +MINISTRY OF DEFENCE,,,,,,,وزارة الدفاع,,,,,,,,,,,,Umayyad Square,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0317 Business Sector: Military. Names of Director(s): Field Marshal Bashar al Asad, President of Syrian Arab Republic, Commander in Chief of the army and armed forces. Lieutenant General Ali Abdullah Ayyub, Minister of Defence, Deputy Commander in Chief of the army and armed forces. (UK Statement of Reasons):Syrian government branch directly involved in repression. (Phone number):+963-11-7770700 (Type of entity):Government department (Subsidiaries):Aerial Defence. Air Force. Civil Defence Forces. Coastal Defence. Ground Forces. Internal Security Forces. Navy. Popular Army. Syrian Arab Army",Entity,Primary name,,Syria,26/06/2012,31/12/2020,31/12/2020,12691 +MINISTRY OF DEFENCE AND ARMED FORCES LOGISTICS,,,,,,,وزارت دفاع و پشتیبانی نیروهای مسلح,,,,,,,,,,,,Ferdowsi Avenue,Sarhang Sakhaei Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0039 (UK Statement of Reasons):Responsible for Iran’s defence research, development and manufacturing programmes, including support to missile and nuclear programmes. (Type of entity):Government Ministry",Entity,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10655 +MINISTRY OF DEFENCE AND ARMED FORCES LOGISTICS,,,,,,,وزارت دفاع و پشتیبانی نیروهای مسلح,,,,,,,,,,,,PO Box 11365 8439,Pasdaran Ave.,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0039 (UK Statement of Reasons):Responsible for Iran’s defence research, development and manufacturing programmes, including support to missile and nuclear programmes. (Type of entity):Government Ministry",Entity,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10655 +MINISTRY OF DEFENCE AND ARMED FORCES LOGISTICS,,,,,,,وزارت دفاع و پشتیبانی نیروهای مسلح,,,,,,,,,,,,Sargord Sakhaei Ave.,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0039 (UK Statement of Reasons):Responsible for Iran’s defence research, development and manufacturing programmes, including support to missile and nuclear programmes. (Type of entity):Government Ministry",Entity,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10655 +MINISTRY OF DEFENCE AND ARMED FORCES LOGISTICS,,,,,,,وزارت دفاع و پشتیبانی نیروهای مسلح,,,,,,,,,,,,"West side of Dabestan Street,",Abbas Abad District,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0039 (UK Statement of Reasons):Responsible for Iran’s defence research, development and manufacturing programmes, including support to missile and nuclear programmes. (Type of entity):Government Ministry",Entity,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10655 +MINISTRY OF DEFENSE AND SUPPORT FOR ARMED FORCES LOGISTICS,,,,,,,,,,,,,,,,,,,Ferdowsi Avenue,Sarhang Sakhaei Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0039 (UK Statement of Reasons):Responsible for Iran’s defence research, development and manufacturing programmes, including support to missile and nuclear programmes. (Type of entity):Government Ministry",Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10655 +MINISTRY OF DEFENSE AND SUPPORT FOR ARMED FORCES LOGISTICS,,,,,,,,,,,,,,,,,,,PO Box 11365 8439,Pasdaran Ave.,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0039 (UK Statement of Reasons):Responsible for Iran’s defence research, development and manufacturing programmes, including support to missile and nuclear programmes. (Type of entity):Government Ministry",Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10655 +MINISTRY OF DEFENSE AND SUPPORT FOR ARMED FORCES LOGISTICS,,,,,,,,,,,,,,,,,,,Sargord Sakhaei Ave.,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0039 (UK Statement of Reasons):Responsible for Iran’s defence research, development and manufacturing programmes, including support to missile and nuclear programmes. (Type of entity):Government Ministry",Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10655 +MINISTRY OF DEFENSE AND SUPPORT FOR ARMED FORCES LOGISTICS,,,,,,,,,,,,,,,,,,,"West side of Dabestan Street,",Abbas Abad District,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0039 (UK Statement of Reasons):Responsible for Iran’s defence research, development and manufacturing programmes, including support to missile and nuclear programmes. (Type of entity):Government Ministry",Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10655 +MINISTRY OF DEFENSE LOGISTICS EXPORT,,,,,,,,,,,,,,,,,,,,,,,P.O.Box 16315-189,Tehran,,Iran,"(UK Sanctions List Ref):INU0162 (UN Ref):IRe.042 MODLEX sells Iranian-produced arms to customers around the world in contravention of resolution 1747 (2007), which prohibits Iran from selling arms or related materiel. [Old Reference # E.29.I.10]",Entity,Primary name,,Iran (Nuclear),24/06/2008,09/06/2010,31/12/2020,10656 +MINISTRY OF DEFENSE LOGISTICS EXPORT,,,,,,,,,,,,,,,,,,,,,,Located on the west side of Dabestan Street,Abbas Abad District,Tehran,,Iran,"(UK Sanctions List Ref):INU0162 (UN Ref):IRe.042 MODLEX sells Iranian-produced arms to customers around the world in contravention of resolution 1747 (2007), which prohibits Iran from selling arms or related materiel. [Old Reference # E.29.I.10]",Entity,Primary name,,Iran (Nuclear),24/06/2008,09/06/2010,31/12/2020,10656 +MINISTRY OF INTERIOR,,,,,,,,,,,,,,,,,,,Merjeh Square,,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0318 Government Ministry (UK Statement of Reasons):Syrian government branch directly involved in repression. (Phone number):+963-11-2210404. +963-11-2219400. +963-11-2219401. +963-11-2220220,Entity,Primary name,,Syria,26/06/2012,31/12/2020,31/12/2020,12692 +MINISTRY OF PEOPLE'S SECURITY CORRECTIONAL (MPS) BUREAU,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,,"(UK Sanctions List Ref):GHR0049 No details regarding the Head of MPS Correctional Bureau are available. The Minister of People’s Security, who we understand to have been Kim Jong Ho since December 2019 (although DPRK sources have not confirmed he still holds that position), is assumed to have responsibility for MPS Correctional Bureau. (UK Statement of Reasons):As the entity responsible for running prison camps in the DPRK, the Ministry of People’s Security Correctional Bureau is involved in the murder, torture and subjection to forced labour of people held in those camps. (Type of entity):Government (Parent company):Is the Parent company",Entity,Primary name,,Global Human Rights,06/07/2020,06/07/2020,30/09/2020,13900 +MINISTRY OF PEOPLE'S SECURITY CORRECTIONAL MANAGEMENT BUREAU,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,,"(UK Sanctions List Ref):GHR0049 No details regarding the Head of MPS Correctional Bureau are available. The Minister of People’s Security, who we understand to have been Kim Jong Ho since December 2019 (although DPRK sources have not confirmed he still holds that position), is assumed to have responsibility for MPS Correctional Bureau. (UK Statement of Reasons):As the entity responsible for running prison camps in the DPRK, the Ministry of People’s Security Correctional Bureau is involved in the murder, torture and subjection to forced labour of people held in those camps. (Type of entity):Government (Parent company):Is the Parent company",Entity,AKA,,Global Human Rights,06/07/2020,06/07/2020,30/09/2020,13900 +MINISTRY OF PEOPLE'S SECURITY PRISON BUREAU,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,,"(UK Sanctions List Ref):GHR0049 No details regarding the Head of MPS Correctional Bureau are available. The Minister of People’s Security, who we understand to have been Kim Jong Ho since December 2019 (although DPRK sources have not confirmed he still holds that position), is assumed to have responsibility for MPS Correctional Bureau. (UK Statement of Reasons):As the entity responsible for running prison camps in the DPRK, the Ministry of People’s Security Correctional Bureau is involved in the murder, torture and subjection to forced labour of people held in those camps. (Type of entity):Government (Parent company):Is the Parent company",Entity,AKA,,Global Human Rights,06/07/2020,06/07/2020,30/09/2020,13900 +MINISTRY OF PUBLIC SECURITY CORRECTIONAL BUREAU,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,,"(UK Sanctions List Ref):GHR0049 No details regarding the Head of MPS Correctional Bureau are available. The Minister of People’s Security, who we understand to have been Kim Jong Ho since December 2019 (although DPRK sources have not confirmed he still holds that position), is assumed to have responsibility for MPS Correctional Bureau. (UK Statement of Reasons):As the entity responsible for running prison camps in the DPRK, the Ministry of People’s Security Correctional Bureau is involved in the murder, torture and subjection to forced labour of people held in those camps. (Type of entity):Government (Parent company):Is the Parent company",Entity,AKA,,Global Human Rights,06/07/2020,06/07/2020,30/09/2020,13900 +MINISTRY OF PUBLIC SECURITY CORRECTIONAL MANAGEMENT BUREAU,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,,"(UK Sanctions List Ref):GHR0049 No details regarding the Head of MPS Correctional Bureau are available. The Minister of People’s Security, who we understand to have been Kim Jong Ho since December 2019 (although DPRK sources have not confirmed he still holds that position), is assumed to have responsibility for MPS Correctional Bureau. (UK Statement of Reasons):As the entity responsible for running prison camps in the DPRK, the Ministry of People’s Security Correctional Bureau is involved in the murder, torture and subjection to forced labour of people held in those camps. (Type of entity):Government (Parent company):Is the Parent company",Entity,AKA,,Global Human Rights,06/07/2020,06/07/2020,30/09/2020,13900 +MINISTRY OF PUBLIC SECURITY PRISON BUREAU,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,,"(UK Sanctions List Ref):GHR0049 No details regarding the Head of MPS Correctional Bureau are available. The Minister of People’s Security, who we understand to have been Kim Jong Ho since December 2019 (although DPRK sources have not confirmed he still holds that position), is assumed to have responsibility for MPS Correctional Bureau. (UK Statement of Reasons):As the entity responsible for running prison camps in the DPRK, the Ministry of People’s Security Correctional Bureau is involved in the murder, torture and subjection to forced labour of people held in those camps. (Type of entity):Government (Parent company):Is the Parent company",Entity,AKA,,Global Human Rights,06/07/2020,06/07/2020,30/09/2020,13900 +MINISTRY OF STATE SECURITY BUREAU 7,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,,"(UK Sanctions List Ref):GHR0048 No details regarding the Head of MSS Bureau 7 are available. The Minister of State Security, who we understand to have been Jong Kyong Thaek since 2017 (although DPRK sources have not confirmed he still holds that position), is assumed to have responsibility for MSS Bureau 7. (UK Statement of Reasons):As the entity responsible for running the DPRK's political prison camps, MSS Bureau 7 is involved in the widespread serious human rights violations committed against prisoners in those camps by camp guards and other DPRK officials. These violations include murder, torture and enslavement. (Type of entity):Government (Parent company):Is the Parent company",Entity,Primary name,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13899 +MINISTRY OF THE PEOPLE'S ARMED FORCES (MPAF),,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0176 (UN Ref):KPe.054 The Ministry of the People’s Armed Forces manages the general administrative and logistical needs of the Korean People’s Army,Entity,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13575 +MINOTOR-SERVICE ENTERPRISE,,,,,,,Минотор-Сервис,Cyrillic,Russian,,,,,,,,,,40 Radialnaya Street,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0122 (UK Statement of Reasons):Minotor-Service Enterprise is supporting the government of Belarus by operating in a sector of strategic significance, namely the defence sector.",Entity,Primary name,,Belarus,24/03/2022,24/03/2022,12/07/2022,14981 +MINSK WHEEL TRACTOR PLANT,,,,,,,,,,,,,,,,,,,150 Partizanski ave,,,,,,220021,Belarus,"(UK Sanctions List Ref):RUS1093 (UK Statement of Reasons):Designated for the purposes of an asset freeze under the Russia (Sanctions) (EU Exit) Regulations 2019. The designation is made as a designation by name under the urgent procedure. The relevant provision by reference to which the Minister considers that condition B is met is the Autonomous Sanctions Regulations 2011 in respect of Australia’s Ukraine and Russia sanctions regimes. The purposes of this provision correspond or are similar to the purposes of the UK’s Russia (Sanctions) (EU Exit) Regulations 2019, which have as their purposes to encourage Russia to cease actions destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. The Minister considers that it is in the public interest to designate (condition C).",Entity,Primary name,,Russia,24/03/2022,24/03/2022,24/03/2022,15036 +MIO,,,,,,,,,,,,,,,,,,,44 Sharif St.,"Hoveyzeh, Korramshahr",North Sohrevardi Ave,,,,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MIO,,,,,,,,,,,,,,,,,,,P.O. Box 19585 348,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MIO,,,,,,,,,,,,,,,,,,,Pasdaran Avenue.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MIO,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MIO,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +MIPT,,,,,,,МФТИ,,,,,,,,,,,,9 Institutskiy per.,,,,,Dolgoprudny,141701,Russia,"(UK Sanctions List Ref):RUS1431 OGRN: 115047008196; KPP: 500801010 (UK Statement of Reasons):Moscow Institute of Physics and Technology (MIPT) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because it is or has been obtaining a benefit from or supporting the Government of Russia, by carrying on business as a Government of Russia-affiliated entity. (Business Reg No):Tax Identification Number: INN: 5008000788",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15374 +MIQDAD,Faisal,,,,,,,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +MIQDAD,Faycal,,,,,,Fayçal,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +MIQDAD,Fayssal,,,,,,,,,05/02/1954,Daraa,Syria,Syria,,,,,Minister of Foreign Affairs and Expatriates,,,,,,,,,(UK Sanctions List Ref):SYR0376 (UK Statement of Reasons):Minister of Foreign Affairs and Expatriates. Appointed in November 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,13/05/2022,14069 +MIR HEJAZI,Ali,,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,AKA,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIR HEJAZI,Ali,,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIR HEJAZI,Ali,Asqar,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIR HEJAZI,Asghar,,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIR HEJAZI,Asghar,Sadegh,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIR LUGANSCHINE,,,,,,,,,,,,,,,,,,,Karl Marx Street 7,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS0188 Director: Igor Plotnitsky (subject to sanctions) (UK Statement of Reasons):This public ‘organisation’ presented candidates in the so called ‘elections’ of the so called ‘Luhansk People's Republic’ on 2nd November 2014. These ‘elections’ are in breach of Ukrainian law and therefore illegal. In participating formally in the illegal ‘elections’ it has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. This movement was headed by Igor PLOTNITSKY who is also subject to sanctions. (Website):https://mir-lug.info/",Entity,AKA,,Russia,02/12/2014,31/12/2020,31/12/2020,13184 +MIRHEJAZI,Ali,Asqar,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,AKA,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIRHEJAZI,Ali,Asqar,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIRHEJAZI,Asghar,,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,AKA,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIRHEJAZI,Asghar,,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIRHEJAZI,Asghar,Sadegh,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,AKA,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIRHEJAZI,Asghar,Sadegh,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIR-HEJAZI,Ali,,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,AKA,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIR-HEJAZI,Ali,,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIR-HEJAZI,Ali,Asqar,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIR-HEJAZI,Asghar,,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIR-HEJAZI,Sadegh,,,,,Asghar,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIR-HEJAZI RUHANI,Ali,,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,AKA,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIR-HEJAZI RUHANI,Ali,,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIR-HEJAZI RUHANI,Ali,Asqar,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIR-HEJAZI RUHANI,Asghar,,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIR-HEJAZI RUHANI,Asghar,Sadegh,,,,,,,,08/09/1946,Esfahan,Iran,,,,,,Deputy Chief of the Supreme Leader’s Office and Head of Security,,,,,,,,,"(UK Sanctions List Ref):IHR0013 (UK Statement of Reasons):Part of the Supreme Leader's inner circle, one of those responsible for planning the suppression of protests which has been implemented since 2009, and associated with those responsible for suppressing the protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12650 +MIRONOV,Sergei,Mikhailovich,,,,,,,,14/02/1953,"Pushkin, Leningrad Region",Russia,Russia,,,,,Member of the Council of the State Duma,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0032 (UK Statement of Reasons):Member of the Council of the State Duma. Leader of Fair Russian faction in the Duma of the Russian Federation. Initiator of the bill allowing Russian Federation to admit in its composition, under the pretext of protection of Russian citizens, territories of a foreign country without a consent of that country or of an international treaty. (Gender):Male",Individual,Primary name,,Russia,18/03/2014,31/12/2020,16/09/2022,12919 +MIROSHNITCHENKO,Denis,Nikolaevitch,,,,,,,,08/12/1987,,,Ukraine,,,,,Chairperson of the so-called Luhansk People's Council,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0033 (UK Statement of Reasons):Chairperson' of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, he actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name,,Russia,10/12/2018,31/12/2020,31/12/2020,13725 +MIRZA,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0273 (UK Statement of Reasons):Mirza is a USD$52.7 million joint venture between Damascus Cham Holding and Talas Group. Through its participation in the luxury development Marota City, Mirza supports and / or benefits from the Syrian regime. (Type of entity):Construction. Joint Venture. Private Joint Stock Company",Entity,Primary name,,Syria,22/01/2019,31/12/2020,31/12/2020,13767 +MIRZAEI,Ahmed,,,,,,,,,02/09/1957,,,Iran,,,,,Head of the Tehran division of Iran’s Morality Police,,,,,,,,,(UK Sanctions List Ref):IHR0091 (UK Statement of Reasons):Haj Ahmad Mirzaei as the Head of the Tehran division of Iran’s Morality Police is or has been involved in the commission of serious human rights violations or abuse in Iran. The Morality Police enforce Iran’s Islamic dress requirements and are known to use unreasonable force against individuals they deem to be non-compliant. In this role Mirzaei is responsible for and promotes violations of the right to liberty and security and the right to freedom of expression. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15596 +MIRZAEI,Haj,Ahmad,,,,,حاج احمد میرزا,Persian,Persian/Farsi,02/09/1957,,,Iran,,,,,Head of the Tehran division of Iran’s Morality Police,,,,,,,,,(UK Sanctions List Ref):IHR0091 (UK Statement of Reasons):Haj Ahmad Mirzaei as the Head of the Tehran division of Iran’s Morality Police is or has been involved in the commission of serious human rights violations or abuse in Iran. The Morality Police enforce Iran’s Islamic dress requirements and are known to use unreasonable force against individuals they deem to be non-compliant. In this role Mirzaei is responsible for and promotes violations of the right to liberty and security and the right to freedom of expression. (Gender):Male,Individual,Primary name,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15596 +MIRZAEI,Hajahmad,,,,,,,,,02/09/1957,,,Iran,,,,,Head of the Tehran division of Iran’s Morality Police,,,,,,,,,(UK Sanctions List Ref):IHR0091 (UK Statement of Reasons):Haj Ahmad Mirzaei as the Head of the Tehran division of Iran’s Morality Police is or has been involved in the commission of serious human rights violations or abuse in Iran. The Morality Police enforce Iran’s Islamic dress requirements and are known to use unreasonable force against individuals they deem to be non-compliant. In this role Mirzaei is responsible for and promotes violations of the right to liberty and security and the right to freedom of expression. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15596 +MIRZAEI,Morteza,,,,,,,,,,Khorram Abad in Lorestan province,Iran,Iran,,,,,Commander in chief of the police in Mazandaran province: The Law Enforcement Force of Islamic Republic of Iran (LEF),,,,,,,,,"(UK Sanctions List Ref):IHR0101 (UK Statement of Reasons):Morteza MIRZAI is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to, the right to freedom of expression and peaceful assembly, and the right to life in Iran through his role as Law Enforcement Force (LEF) Commander in chief of the police in Mazandaran province and in the suppression of protests.",Individual,Primary name variation,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15621 +MIRZAI,Morteza,,,,,,مرتضی میرزایی,,Persian,,Khorram Abad in Lorestan province,Iran,Iran,,,,,Commander in chief of the police in Mazandaran province: The Law Enforcement Force of Islamic Republic of Iran (LEF),,,,,,,,,"(UK Sanctions List Ref):IHR0101 (UK Statement of Reasons):Morteza MIRZAI is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to, the right to freedom of expression and peaceful assembly, and the right to life in Iran through his role as Law Enforcement Force (LEF) Commander in chief of the police in Mazandaran province and in the suppression of protests.",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15621 +MIRZAYI,Hajj,Ahmad,,,,,,,,02/09/1957,,,Iran,,,,,Head of the Tehran division of Iran’s Morality Police,,,,,,,,,(UK Sanctions List Ref):IHR0091 (UK Statement of Reasons):Haj Ahmad Mirzaei as the Head of the Tehran division of Iran’s Morality Police is or has been involved in the commission of serious human rights violations or abuse in Iran. The Morality Police enforce Iran’s Islamic dress requirements and are known to use unreasonable force against individuals they deem to be non-compliant. In this role Mirzaei is responsible for and promotes violations of the right to liberty and security and the right to freedom of expression. (Gender):Male,Individual,Primary name variation,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15596 +MISHAAL,Khalid,,,,,,,,,00/00/1956,"Silwad, Ramallah, West Bank (Palestinian Authority)",Occupied Palestinian Territories,,,,,,Senior Hamas Official,,,,,,,,,"(UK Sanctions List Ref):CTI0019 (UK Statement of Reasons):Khalid Mishaal was the leader of Hamas from 2004 until 2014 and maintains a leadership role in the Shura Council of Hamas. He has directed the group’s violent attacks, including the targeting of civilians. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),24/03/2004,31/12/2020,31/12/2020,7887 +MISHKIN,Alexander,Yevgeniyevich,,,,Colonel,Александр Евгеньевич МИШКИН,,,13/07/1979,(1) Loyga (2) Kotlas,(1) Russia (2) Russia,Russia,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):CHW0010 (UK Statement of Reasons):GRU Officer Alexander Mishkin (a.k.a. Alexander Petrov) possessed, transported and then, during the weekend of 4 March 2018, in Salisbury, used a toxic nerve agent (“Novichok”). On 5 September 2018, the UK Crown Prosecution Service charged Alexander Petrov for conspiracy to murder Sergei Skripal; for the attempted murder of Sergei Skripal, Yulia Skripal and Nick Bailey; for the use and possession of Novichok contrary to the Chemical Weapons Act; and for causing grievous bodily harm with intent to Yulia Skripal and Nick Bailey.",Individual,Primary name,,Chemical Weapons,21/01/2019,01/01/2021,18/03/2022,13744 +MISHUSTIN,Mikhail,Vladimirovich,,,,Prime Minister,МИСУСТИН Михаил Владимирович,Cyrillic,Russian,03/03/1966,Lobnya,Russia,Russia,,,,,Permanent member of the Russian Security Council,,,,,,,,,"(UK Sanctions List Ref):RUS0726 (UK Statement of Reasons):Mikhail Vladimirovich MISHUSTIN is Chairman of the Government of the Russian Federation and a permanent member of the Russian Security Council (RSC). At an extraordinary meeting of the RSC on 21 February 2022, MISHUSTIN spoke in favour of a proposal to recognise Donetsk and Luhansk as independent republics. MISHUSTIN has therefore been responsible for, provided support for, or promoted a policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14677 +MISKINE,Abdoulaye,,,,,,,,,05/10/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +MISKINE,Abdoulaye,,,,,,,,,05/10/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Am Dafock,Vakaga prefecture,,,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +MISKINE,Abdoulaye,,,,,,,,,03/03/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Am Dafock,Vakaga prefecture,,,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +MISKINE,Abdoulaye,,,,,,,,,03/03/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +MISKINE,Abdoullaye,,,,,,,,,05/10/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +MISKINE,Abdoullaye,,,,,,,,,05/10/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Am Dafock,Vakaga prefecture,,,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +MISKINE,Abdoullaye,,,,,,,,,03/03/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Am Dafock,Vakaga prefecture,,,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +MISKINE,Abdoullaye,,,,,,,,,03/03/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +MIT,,,,,,,,,,,,,,,,,,,,,,,,,,Indonesia,"(UK Sanctions List Ref):AQD0071 (UN Ref):QDe.150 Terrorist group linked to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), Jemaah Islamiyah (JI) (QDe.092), and Jemmah Anshorut Tauhid (JAT) (QDe.133). Operates in Java and Sulawesi, Indonesia and also active in Indonesia’s eastern provinces. Its former leader was Abu Wardah, a.k.a. Santoso (deceased). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5919482",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,12/01/2022,13304 +MITIN,Sergey,Gerasimovich,,,,,Сергей Герасимович МИТИН,,,14/06/1951,Nizhny Novgorod,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0912 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14863 +MIYA WIN,,,,,,,,,,,,,,,,,,,KOKKINE RESIDENCE STREET,"NO.12/B,SHWE TAUNG KYAR (2) WARD",BAHAN TOWNSHIP,,,YANGON REGION,11201,Myanmar,"(UK Sanctions List Ref):MYA0038 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. Miya Win International Ltd is responsible for ongoing activity in brokering deals for the supply and upkeep of aircraft for the Myanmar Air Force. Evidence indicates that Miya Win International Ltd has been involved this activity since at least 2017 and has continued to support the Myanmar Security Forces since the coup in February 2021. Miya Win International Ltd has therefore been involved in the supply of dual-use goods to the Myanmar Air Force; and has been involved in the supply of restricted goods which could contribute to serious human rights violations. Further and/or additionally Miya Win International Ltd contributed funds to the Myanmar Security Forces in 2017, at two fundraising events held by Commander-in-Chief Min Aung Hlaing during the Rakhine clearance operations. There are reasonable grounds to suspect that these funds contributed to serious human rights violations and ethnic cleansing against the Rohingya. (Phone number):1548827 (Email address):info@miyawin.com (Type of entity):Company (Business Reg No):101907457",Entity,Primary name,,Myanmar,25/03/2022,25/03/2022,25/03/2022,15048 +MIYA WIN,,,,,,,,,,,,,,,,,,,3RD STREET,THIT SAR HOUSING,NO.3/401,(8) WARD,SOUTH OKKALAPATOWNSHIP,YANGON REGION,11091,Myanmar,"(UK Sanctions List Ref):MYA0038 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. Miya Win International Ltd is responsible for ongoing activity in brokering deals for the supply and upkeep of aircraft for the Myanmar Air Force. Evidence indicates that Miya Win International Ltd has been involved this activity since at least 2017 and has continued to support the Myanmar Security Forces since the coup in February 2021. Miya Win International Ltd has therefore been involved in the supply of dual-use goods to the Myanmar Air Force; and has been involved in the supply of restricted goods which could contribute to serious human rights violations. Further and/or additionally Miya Win International Ltd contributed funds to the Myanmar Security Forces in 2017, at two fundraising events held by Commander-in-Chief Min Aung Hlaing during the Rakhine clearance operations. There are reasonable grounds to suspect that these funds contributed to serious human rights violations and ethnic cleansing against the Rohingya. (Phone number):1548827 (Email address):info@miyawin.com (Type of entity):Company (Business Reg No):101907457",Entity,Primary name,,Myanmar,25/03/2022,25/03/2022,25/03/2022,15048 +MIYA WIN INTERNATIONAL LIMITED,,,,,,,,,,,,,,,,,,,KOKKINE RESIDENCE STREET,"NO.12/B,SHWE TAUNG KYAR (2) WARD",BAHAN TOWNSHIP,,,YANGON REGION,11201,Myanmar,"(UK Sanctions List Ref):MYA0038 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. Miya Win International Ltd is responsible for ongoing activity in brokering deals for the supply and upkeep of aircraft for the Myanmar Air Force. Evidence indicates that Miya Win International Ltd has been involved this activity since at least 2017 and has continued to support the Myanmar Security Forces since the coup in February 2021. Miya Win International Ltd has therefore been involved in the supply of dual-use goods to the Myanmar Air Force; and has been involved in the supply of restricted goods which could contribute to serious human rights violations. Further and/or additionally Miya Win International Ltd contributed funds to the Myanmar Security Forces in 2017, at two fundraising events held by Commander-in-Chief Min Aung Hlaing during the Rakhine clearance operations. There are reasonable grounds to suspect that these funds contributed to serious human rights violations and ethnic cleansing against the Rohingya. (Phone number):1548827 (Email address):info@miyawin.com (Type of entity):Company (Business Reg No):101907457",Entity,Primary name variation,,Myanmar,25/03/2022,25/03/2022,25/03/2022,15048 +MIYA WIN INTERNATIONAL LIMITED,,,,,,,,,,,,,,,,,,,3RD STREET,THIT SAR HOUSING,NO.3/401,(8) WARD,SOUTH OKKALAPATOWNSHIP,YANGON REGION,11091,Myanmar,"(UK Sanctions List Ref):MYA0038 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. Miya Win International Ltd is responsible for ongoing activity in brokering deals for the supply and upkeep of aircraft for the Myanmar Air Force. Evidence indicates that Miya Win International Ltd has been involved this activity since at least 2017 and has continued to support the Myanmar Security Forces since the coup in February 2021. Miya Win International Ltd has therefore been involved in the supply of dual-use goods to the Myanmar Air Force; and has been involved in the supply of restricted goods which could contribute to serious human rights violations. Further and/or additionally Miya Win International Ltd contributed funds to the Myanmar Security Forces in 2017, at two fundraising events held by Commander-in-Chief Min Aung Hlaing during the Rakhine clearance operations. There are reasonable grounds to suspect that these funds contributed to serious human rights violations and ethnic cleansing against the Rohingya. (Phone number):1548827 (Email address):info@miyawin.com (Type of entity):Company (Business Reg No):101907457",Entity,Primary name variation,,Myanmar,25/03/2022,25/03/2022,25/03/2022,15048 +MIZAN MACHINERY,,,,,,,,,,,,,,,,,,,,,,,P.O. Box 16595-365,Tehran,,Iran,"(UK Sanctions List Ref):INU0163 (UN Ref):IRe.043 Owned or controlled by, or acts on behalf of, SHIG. [Old Reference # E.29.I.11] (Parent company):Shahid Hemmat Industrial Group (SHIG)",Entity,AKA,,Iran (Nuclear),24/06/2008,09/06/2010,31/12/2020,10657 +MIZINTSEV,Mikhail,Yevgenyevich,,,,,Михаил Евгеньевич Мизинцев,,,10/09/1962,Averinskaya,Russia,Russia,,,,,Chief of the National Defence Command and Control Centre,,,,,,,,,"(UK Sanctions List Ref):RUS1112 (UK Statement of Reasons):Colonel General Mikhail Yevgenyevich MIZINTSEV is a member of the Armed Forces of the Russian Federation and currently holds the position of Chief of the National Defence Command and Control Centre. In his position as the Chief of the National Defence Command and Control Centre, MIZINTSEV has full operational overview of all Russian Armed Forces activity worldwide. In Ukraine, MIZINTSEV has been responsible for planning and executing the siege and bombardment of Mariupol. MIZINTSEV is therefore a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,31/03/2022,31/03/2022,31/03/2022,15059 +MIZULINA,Elena,Borisovna,,,,,Елена Мизулина,,,09/12/1954,"Bui, Kostroma Region",Russia,Russia,,,,,Former Deputy in the State Duma. Member of Federation Council from Omsk region; Deputy Chairman of the Federation Committee on Constitutional Legislation and State Building.,,,,,,,,,"(UK Sanctions List Ref):RUS0034 (UK Statement of Reasons):Former Deputy in the State Duma. Originator and co-sponsor of legislative proposals in Russia that would have allowed regions of other countries to join Russia without their central authorities' prior agreement. As of September 2015, a Member of the Federation Council from Omsk Region. Currently Deputy Chairman of the Federation Council Committee on Constitutional Legislation and State Building. (Gender):Female",Individual,Primary name,,Russia,21/03/2014,31/12/2020,31/12/2020,12941 +MJN,,,,,,,,,,,,,,,,,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +MJN,,,,,,,,,,,,,,,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +MJN,,,,,,,,,,,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +MLAMBA,Jules,Mateso,,,,,,,,01/01/1966,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +MLAMBA,Jules,Mateso,,,,,,,,00/00/1967,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +MLAMBA,Jules,Mateso,,,,,,,,28/08/1966,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +MNDOIANTS,Sergey,Achotovich,,,,,Сергей Ашотович МНДОЯНЦ,Cyrillic,Russian,21/09/1961,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1322 (UK Statement of Reasons):Serguey Achotovich MNDOIANTS has been involved in obtaining a benefit from or supporting the Government of Russia by working as a manager or equivalent for Sistema JSFC, a conglomerate which has business interests in the Russian energy and information, communications and digital technologies sectors, which are sectors of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,02/08/2022,15280 +MNDOIANTS,Serguey,Achotovich,,,,,Сергей Ашотович МНДОЯНЦ,Cyrillic,Russian,21/09/1961,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1322 (UK Statement of Reasons):Serguey Achotovich MNDOIANTS has been involved in obtaining a benefit from or supporting the Government of Russia by working as a manager or equivalent for Sistema JSFC, a conglomerate which has business interests in the Russian energy and information, communications and digital technologies sectors, which are sectors of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15280 +MOALLA,Mohamed,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Mohamed,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Mohamed,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Mohamed,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Mohamed,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Mohamed,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Mohammad,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Mohammad,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Mohammad,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Mohammad,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Mohammad,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Mohammad,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Mohammed,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Mohammed,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Mohammed,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Mohammed,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Mohammed,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Mohammed,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Muhammad,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Muhammad,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Muhammad,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Muhammad,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Muhammad,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOALLA,Muhammad,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MOASER,,,,,,,,,,,,,,,,,,,1139/1 Unit 104 Gol Building,Gol Alley,North Side of Sae,Vali Asr Avenue,PO Box 19395-6439,Tehran,,,(UK Sanctions List Ref):INU0087 (UK Statement of Reasons):Has been involved in purchasing equipment and materials which have direct applications in the Iranian nuclear programme. (Phone number):(1) +98 21 2226 2312 (2) 98 21 22 92 29 74 (Website):(1) www.karanir.com (2) www.iranyell.com/company/16170/KARANIR_CO,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12257 +MOATASSAM,,,,,,,,,,00/00/1976,Tripoli,Libya,Libya,B/001897,(Libyan),,,National Security Adviser,,,,,,,,,"(UK Sanctions List Ref):LIB0059 (UN Ref):LYi.014 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban,Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on 20 October 2011. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525915",Individual,AKA,Low quality,Libya,27/02/2011,26/02/2011,18/02/2021,11639 +MOATASSAM,,,,,,,,,,05/02/1974,Tripoli,Libya,Libya,B/001897,(Libyan),,,National Security Adviser,,,,,,,,,"(UK Sanctions List Ref):LIB0059 (UN Ref):LYi.014 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban,Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on 20 October 2011. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525915",Individual,AKA,Low quality,Libya,27/02/2011,26/02/2011,18/02/2021,11639 +MOBIN TRUST CONSORTIUM,,,,,,,,,,,,,,,,,,,No. 70 Yasaman Str.,North Dibaji Str.,Farmanieh Ave,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +MOBIN TRUST CONSORTIUM,,,,,,,,,,,,,,,,,,,Pasadaran Av.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +MOCHTAR,Yasin,Mahmud,,,,,,,,03/09/1962,Makassar,Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0335 (UN Ref):QDi.123 At large as at Dec. 2003. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424789,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7834 +MODAFL,,,,,,,,,,,,,,,,,,,Ferdowsi Avenue,Sarhang Sakhaei Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0039 (UK Statement of Reasons):Responsible for Iran’s defence research, development and manufacturing programmes, including support to missile and nuclear programmes. (Type of entity):Government Ministry",Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10655 +MODAFL,,,,,,,,,,,,,,,,,,,PO Box 11365 8439,Pasdaran Ave.,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0039 (UK Statement of Reasons):Responsible for Iran’s defence research, development and manufacturing programmes, including support to missile and nuclear programmes. (Type of entity):Government Ministry",Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10655 +MODAFL,,,,,,,,,,,,,,,,,,,Sargord Sakhaei Ave.,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0039 (UK Statement of Reasons):Responsible for Iran’s defence research, development and manufacturing programmes, including support to missile and nuclear programmes. (Type of entity):Government Ministry",Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10655 +MODAFL,,,,,,,,,,,,,,,,,,,"West side of Dabestan Street,",Abbas Abad District,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0039 (UK Statement of Reasons):Responsible for Iran’s defence research, development and manufacturing programmes, including support to missile and nuclear programmes. (Type of entity):Government Ministry",Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10655 +MODERN TECHNOLOGIES,,,,,,,,,,,,,,,,,,,PO Box 8032,,,,,Sharjah,,United Arab Emirates,"(UK Sanctions List Ref):INU0095 (UK Statement of Reasons):Involved in procurement and supply of restricted goods, in contravention of sanctions. (Phone number):+971 6 557 2051 (Fax): +971 6 557 2051 (Website):(1) bmmaaran@gmail.com (2) modernte@eim.ae (3) modernte@emirates.net.ae",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11945 +MODERN TECHNOLOGIES CO.,,,,,,,,,,,,,,,,,,,PO Box 8032,,,,,Sharjah,,United Arab Emirates,"(UK Sanctions List Ref):INU0095 (UK Statement of Reasons):Involved in procurement and supply of restricted goods, in contravention of sanctions. (Phone number):+971 6 557 2051 (Fax): +971 6 557 2051 (Website):(1) bmmaaran@gmail.com (2) modernte@eim.ae (3) modernte@emirates.net.ae",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11945 +MODERN TECHNOLOGIES FZC,,,,,,,,,,,,,,,,,,,PO Box 8032,,,,,Sharjah,,United Arab Emirates,"(UK Sanctions List Ref):INU0095 (UK Statement of Reasons):Involved in procurement and supply of restricted goods, in contravention of sanctions. (Phone number):+971 6 557 2051 (Fax): +971 6 557 2051 (Website):(1) bmmaaran@gmail.com (2) modernte@eim.ae (3) modernte@emirates.net.ae",Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11945 +MODLEX,,,,,,,,,,,,,,,,,,,,,,,P.O.Box 16315-189,Tehran,,Iran,"(UK Sanctions List Ref):INU0162 (UN Ref):IRe.042 MODLEX sells Iranian-produced arms to customers around the world in contravention of resolution 1747 (2007), which prohibits Iran from selling arms or related materiel. [Old Reference # E.29.I.10]",Entity,AKA,,Iran (Nuclear),24/06/2008,09/06/2010,31/12/2020,10656 +MODLEX,,,,,,,,,,,,,,,,,,,,,,Located on the west side of Dabestan Street,Abbas Abad District,Tehran,,Iran,"(UK Sanctions List Ref):INU0162 (UN Ref):IRe.042 MODLEX sells Iranian-produced arms to customers around the world in contravention of resolution 1747 (2007), which prohibits Iran from selling arms or related materiel. [Old Reference # E.29.I.10]",Entity,AKA,,Iran (Nuclear),24/06/2008,09/06/2010,31/12/2020,10656 +MODSAF,,,,,,,,,,,,,,,,,,,Ferdowsi Avenue,Sarhang Sakhaei Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0039 (UK Statement of Reasons):Responsible for Iran’s defence research, development and manufacturing programmes, including support to missile and nuclear programmes. (Type of entity):Government Ministry",Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10655 +MODSAF,,,,,,,,,,,,,,,,,,,PO Box 11365 8439,Pasdaran Ave.,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0039 (UK Statement of Reasons):Responsible for Iran’s defence research, development and manufacturing programmes, including support to missile and nuclear programmes. (Type of entity):Government Ministry",Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10655 +MODSAF,,,,,,,,,,,,,,,,,,,Sargord Sakhaei Ave.,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0039 (UK Statement of Reasons):Responsible for Iran’s defence research, development and manufacturing programmes, including support to missile and nuclear programmes. (Type of entity):Government Ministry",Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10655 +MODSAF,,,,,,,,,,,,,,,,,,,"West side of Dabestan Street,",Abbas Abad District,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0039 (UK Statement of Reasons):Responsible for Iran’s defence research, development and manufacturing programmes, including support to missile and nuclear programmes. (Type of entity):Government Ministry",Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10655 +MOGHADAM,Saeid,Hashemi,,,,Director General of Intelligence,,,,06/08/1962,Tehran,Iran,Iran,,Iranian,,,(1) Deputy Minister (2) Iranian Ministry of Intelligence and Security (Internal Security Directorate),,,,,,,,,"(UK Sanctions List Ref):CTI0008 (UK Statement of Reasons):As Director General of Intelligence in the Internal Security Directorate of Iran’s Ministry of Intelligence and Security (MOIS), Saeid Hashemi Moghadam was involved in the foiled terrorist attack against a meeting of the Iranian exiles in Villepinte in June 2018. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),09/01/2019,31/12/2020,11/03/2022,13741 +MOGHADAM,Saeid,Hashemi,,,,,,,,06/08/1962,Tehran,Iran,Iran,,Iranian,,,(1) Deputy Minister (2) Iranian Ministry of Intelligence and Security (Internal Security Directorate),,,,,,,,,"(UK Sanctions List Ref):CTI0008 (UK Statement of Reasons):As Director General of Intelligence in the Internal Security Directorate of Iran’s Ministry of Intelligence and Security (MOIS), Saeid Hashemi Moghadam was involved in the foiled terrorist attack against a meeting of the Iranian exiles in Villepinte in June 2018. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),09/01/2019,31/12/2020,11/03/2022,13741 +MOGHISEH,Mohammad,,,,,,,,,,,,,,,,,"Judge, Head of Tehran Revolutionary Court, branch 28",,,,,,,,,"(UK Sanctions List Ref):IHR0055 (UK Statement of Reasons):Judge, Head of Tehran Revolutionary Court, branch 28. Also considered responsible for condemnations of members of the Baha'i community. He has dealt with post-election cases. He issued long prison sentences during unfair trials for social, political activists and journalists and several death sentences for protesters and social and political activists. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11796 +MOGHISSEH,Mohammad,,,,,,,,,,,,,,,,,"Judge, Head of Tehran Revolutionary Court, branch 28",,,,,,,,,"(UK Sanctions List Ref):IHR0055 (UK Statement of Reasons):Judge, Head of Tehran Revolutionary Court, branch 28. Also considered responsible for condemnations of members of the Baha'i community. He has dealt with post-election cases. He issued long prison sentences during unfair trials for social, political activists and journalists and several death sentences for protesters and social and political activists. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11796 +MOHABAK,Mohamad,Dhafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MOHABAK,Mohamad,Zafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MOHABAK,Mohamed,Dhafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MOHABAK,Mohamed,Zafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MOHABAK,Mohammad,Dhafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MOHABAK,Mohammad,Zafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MOHABAK,Mohammed,Dhafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MOHABAK,Mohammed,Zafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MOHABBAK,Mohamad,Dhafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MOHABBAK,Mohamad,Zafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MOHABBAK,Mohamed,Dhafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MOHABBAK,Mohamed,Zafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MOHABBAK,Mohammad,Dhafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MOHABBAK,Mohammad,Zafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MOHABBAK,Mohammed,Dhafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MOHABBAK,Mohammed,Zafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MOHAJIR,Sanaullah,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,Primary name variation,,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MOHAJIR,Sanaullah,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,Kunduz,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,Primary name variation,,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MOHAJIR,Shahab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MOHAJIR,Shahab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,Kunduz,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MOHAJIR,Shihab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MOHAJIR,Shihab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,Kunduz,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MOHAMED,,,,,,,,,,,,,,,,,,"Head of Operations Branch, Political Security Directorate",,,,,,,,,"(UK Sanctions List Ref):SYR0153 (UK Statement of Reasons):There are reasonable grounds to suspect that while Head of the Operations Branch of the Political Security Directorate, Mohamed Heikmat Ibrahim was responsible for the detention of protestors, and as such, that he has been involved in the repression of the civilian population in Syria as a member of the security and intelligence services. (Gender):Male",Individual,AKA,,Syria,24/01/2012,31/12/2020,13/05/2022,12480 +MOHAMED,Aboud,Rogo,,,,,,,,11/11/1960,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +MOHAMED,Aboud,Rogo,,,,,,,,11/11/1967,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +MOHAMED,Aboud,Rogo,,,,,,,,11/11/1969,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +MOHAMED,Aboud,Rogo,,,,,,,,01/01/1969,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +MOHAMED,Djaafar,Abou,,,,,جعفر ابو محمد,,,00/00/1972,"Faidh El Batma, Djelfa",Algeria,Algeria,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0326 (UN Ref):QDi.280 Convicted in absentia by Algerian tribunal on 28 Mar. 1996. Algerian international arrest warrant number 04/09 of 6 Jun. 2009 issued by the Tribunal of Sidi Mhamed, Algiers, Algeria. Algerian extradition request number 2307/09 of 3 Sep. 2009, presented to Malian authorities. Father’s name was Benazouz Nail. Mother’s name is Belkheiri Oum El Kheir. Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/05/2010,22/04/2010,31/12/2020,11097 +MOHAMED,Djaafar,Abou,,,,,جعفر ابو محمد,,,00/00/1976,"Faidh El Batma, Djelfa",Algeria,Algeria,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0326 (UN Ref):QDi.280 Convicted in absentia by Algerian tribunal on 28 Mar. 1996. Algerian international arrest warrant number 04/09 of 6 Jun. 2009 issued by the Tribunal of Sidi Mhamed, Algiers, Algeria. Algerian extradition request number 2307/09 of 3 Sep. 2009, presented to Malian authorities. Father’s name was Benazouz Nail. Mother’s name is Belkheiri Oum El Kheir. Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/05/2010,22/04/2010,31/12/2020,11097 +MOHAMED,Gamel,,,,,,,,,29/05/1966,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Egypt,Tunisia,L723315,"Issue date: 05/05/1998, expiry date: 04/05/2003",,,,Corso XXII Marzo Number 39,,,,,Milan,,Italy,(UK Sanctions List Ref):AQD0189 (UN Ref):QDi.143 In prison in Italy until 6 Feb. 2026. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7874 +MOHAMED,Gamel,,,,,,,,,25/05/1966,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Egypt,Tunisia,L723315,"Issue date: 05/05/1998, expiry date: 04/05/2003",,,,Corso XXII Marzo Number 39,,,,,Milan,,Italy,(UK Sanctions List Ref):AQD0189 (UN Ref):QDi.143 In prison in Italy until 6 Feb. 2026. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7874 +MOHAMED,Gamel,,,,,,,,,09/05/1986,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Egypt,Tunisia,L723315,"Issue date: 05/05/1998, expiry date: 04/05/2003",,,,Corso XXII Marzo Number 39,,,,,Milan,,Italy,(UK Sanctions List Ref):AQD0189 (UN Ref):QDi.143 In prison in Italy until 6 Feb. 2026. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7874 +MOHAMMAD,,,,,,,,,,19/07/1981,Cebu City,Philippines,Philippines,,,,,,,,,,Atimonana,Quezon Province,,Philippines,(UK Sanctions List Ref):AQD0161 (UN Ref):QDi.242 Member of the Rajah Solaiman Movement (QDe.128). Father's name is Amorsolo Jarabata Pareja. Mother's name is Leonila Cambaya Rosalejos. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10662 +MOHAMMAD,Ghul,,,,,Haji,,,,00/00/1975,"(1) Lakhi village, Hazarjuft area, Garmsir District, Helmand Province (2) Laki village, Garmsir District, Helmand Province (3) Lakari village, Garmsir District, Helmand Province (4) Darvishan, Garmsir District, Helmand Province (5) De Luy Wiyalah village, Garmsir District, Helmand Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan (5) Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation under the Taliban,,,,,,,,,(UK Sanctions List Ref):AFG0015 (UN Ref):TAi.013 Member of the Taliban Military Commission as at mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7354 +MOHAMMAD,Gul,,,,,,,,,00/00/1975,"(1) Lakhi village, Hazarjuft area, Garmsir District, Helmand Province (2) Laki village, Garmsir District, Helmand Province (3) Lakari village, Garmsir District, Helmand Province (4) Darvishan, Garmsir District, Helmand Province (5) De Luy Wiyalah village, Garmsir District, Helmand Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan (5) Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation under the Taliban,,,,,,,,,(UK Sanctions List Ref):AFG0015 (UN Ref):TAi.013 Member of the Taliban Military Commission as at mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7354 +MOHAMMAD,Gul,,,,,Mawlawi,,,,00/00/1975,"(1) Lakhi village, Hazarjuft area, Garmsir District, Helmand Province (2) Laki village, Garmsir District, Helmand Province (3) Lakari village, Garmsir District, Helmand Province (4) Darvishan, Garmsir District, Helmand Province (5) De Luy Wiyalah village, Garmsir District, Helmand Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan (5) Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation under the Taliban,,,,,,,,,(UK Sanctions List Ref):AFG0015 (UN Ref):TAi.013 Member of the Taliban Military Commission as at mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7354 +MOHAMMAD,,Khair,,,,Haji,,,,00/00/1965,"(1) Zumbaleh village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,BP4199631,Pakistan. Expired 25 June 2014. Officially cancelled as of 2013.,5440005229635,Issued in Pakistan. Officially cancelled as of 2013.,,Abdul Manan Chowk,Pashtunabad,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0129 (UN Ref):TAi.163 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan (TAi.162). Belongs to Barakzai tribe. Father’s name is Haji Khudai Nazar. Alternative father’s name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12702 +MOHAMMAD,Nazar,,,,,,,,,00/00/1954,"Malaghi Village, Kunduz District, Kunduz Province",Afghanistan,Afghanistan,,,,,(1) Mayor of Kunduz City (2) Acting Governor of Kunduz Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0078 (UN Ref):TAi.100 Alternative title: Sar Muallim. Reconciled after the fall of the Taliban regime, and assumed duties under the new Government on district level in Kunduz Province. Confirmed assassinated by Taliban on 9 November 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7298 +MOHAMMAD,Nik,,,,,,,,,00/00/1957,"Zangi Abad village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Commerce under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0019 (UN Ref):TAi.019 Leads a commission to register enemies of the Taliban as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7299 +MOHAMMAD,Saleh,,,,,,,,,00/00/1962,"Nalghan village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,,Daman District,,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0117 (UN Ref):TAi.149 Has run an organized smuggling network in Kandahar and Helmand provinces, Afghanistan. Previously operated heroin processing laboratories in Band-e Temur, Kandahar Province, Afghanistan. Has owned a car dealership in Mirwais Mena, Dand District in Kandahar Province, Afghanistan. Released from custody in Afghanistan in February 2014. Linked by marriage to Mullah Ubaidullah Akhund Yar Mohammad Akhund (TAi.022). Belongs to Kakar tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,01/02/2021,11275 +MOHAMMAD,Saleh,,,,,,,,,00/00/1961,"Nalghan village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,,Daman District,,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0117 (UN Ref):TAi.149 Has run an organized smuggling network in Kandahar and Helmand provinces, Afghanistan. Previously operated heroin processing laboratories in Band-e Temur, Kandahar Province, Afghanistan. Has owned a car dealership in Mirwais Mena, Dand District in Kandahar Province, Afghanistan. Released from custody in Afghanistan in February 2014. Linked by marriage to Mullah Ubaidullah Akhund Yar Mohammad Akhund (TAi.022). Belongs to Kakar tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,15/11/2010,04/11/2010,01/02/2021,11275 +MOHAMMAD,Wali,,,,,,,,,00/00/1968,"(1) Garda Saray District, Paktia Province. (2) Zurmat District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Agriculture under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0011 (UN Ref):TAi.007 Taliban Shadow Governor for Logar Province as of late 2012. Believed to be in Afghanistan/Pakistan border area. Belongs to Sahak tribe (Ghilzai). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7270 +MOHAMMAD EWAZ,Mohammad Wali,,,,,Maulavi,محمد ولی محمد عوض,,,00/00/1965,"(1) Jelawur village, Arghandab District, Kandahar Province. (2) Siyachoy village, Panjwai District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Ministry of Preventing Vice and Propagating Virtue under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0059 (UN Ref):TAi.078 Reportedly deceased in December 2006 and buried in Panjwai District, Kandahar Province, Afghanistan. Belonged to Ghilzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7537 +MOHAMMAD ISHAK,Abdul Manan,,,,,Maulavi,عبدالمنان محمد اسحاق,,,00/00/1940,"Siyachoy village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,"(1) First Secretary, Taliban Embassy, Riyadh, Saudi Arabia (2) Commercial Attache, Taliban Embassy, Abu Dhabi, United Arab Emirates",,,,,,,,,(UK Sanctions List Ref):AFG0095 (UN Ref):TAi.122 Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6910 +MOHAMMAD ISHAK,Abdul Manan,,,,,Maulavi,عبدالمنان محمد اسحاق,,,00/00/1941,"Siyachoy village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,"(1) First Secretary, Taliban Embassy, Riyadh, Saudi Arabia (2) Commercial Attache, Taliban Embassy, Abu Dhabi, United Arab Emirates",,,,,,,,,(UK Sanctions List Ref):AFG0095 (UN Ref):TAi.122 Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6910 +MOHAMMAD JAN,Abdul Kabir,,,,,Maulavi,عبد الکبیر محمد جان,,,00/00/1963,"(1) Baghlan Jadid District, Baghlan Province (2) Pul-e-Khumri",Afghanistan,Afghanistan,,,,,"(1) Second Deputy, Economic Affairs, Council of Ministers under the Taliban regime (2) Governor of Nangarhar Province under the Taliban regime (3) Head of Eastern Zone under the Taliban regime",,,,,,,,,"(UK Sanctions List Ref):AFG0007 (UN Ref):TAi.003 Active in terrorist operations in Eastern Afghanistan. Collects money from drug traffickers. Believed to be in Afghanistan/Pakistan border area. Member of the Taliban Supreme Council as at 2009. Family is originally from Neka District, Paktia Province, Afghanistan. Responsible for attack on Afghan parliamentarians in November 2007 in Baghlan; owns land in central Baghlan Province. Belongs to Zadran tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,11/02/2022,6909 +MOHAMMAD KARIM,Abdullah,Hamad,,,,Maulavi,عبد الله حماد ﻤﺤﻤﺪ ﻛﺮﻴﻡ,,,00/00/1972,"Darweshan village, Hazar Juft area, Garmser District, Helmand Province",Afghanistan,Afghanistan,D000857,(Afghan). Issued on 20 Nov 1997,300786,(Afghan) (tazkira),"Consul General, Taliban Consulate General, Quetta, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0109 (UN Ref):TAi.141 Believed to be in Afghanistan/Pakistan border area. Belongs to Baloch ethnic group. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,11/02/2022,7329 +MOHAMMAD MASOOD,Mohammad,Sarwar,Siddiqmal,,,,محمد سرور صدیق مل ﻤﺣﻤﺩ ﻤﺴﻌﻮﺩ,,,00/00/1963,"Jani Khel District, Paktia Province",Afghanistan,Afghanistan,,,19657,(Afghan) (tazkira),"Third Secretary, Taliban Embassy, Islamabad, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0096 (UN Ref):TAi.126 Belongs to Mangal tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7455 +MOHAMMAD WALI,,,,,,,,,,00/00/1965,"(1) Jelawur village, Arghandab District, Kandahar Province. (2) Siyachoy village, Panjwai District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Ministry of Preventing Vice and Propagating Virtue under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0059 (UN Ref):TAi.078 Reportedly deceased in December 2006 and buried in Panjwai District, Kandahar Province, Afghanistan. Belonged to Ghilzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7537 +MOHAMMAD YAQOUB,,,,,,Maulavi,محمد يعقوب,,,00/00/1966,"(1) Janda District, Ghazni Province. (2) Shahjoi District, Zabul Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Head of Bakhtar Information Agency (BIA) under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0043 (UN Ref):TAi.052 Family is originally from Zabul, but settled later in Helmand. Member of the Taliban Supreme Council and spokesperson for Mullah Mohammed Omar (TAi.004) as of 2007. Believed to be in Afghanistan/Pakistan border area. Belongs to Kharoti tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7550 +MOHAMMADALOO,Beik,,,,,,,,,05/05/1964,Sargh,Iran,,,,,,Deputy Minister of Defence,,,,,,,,,(UK Sanctions List Ref):INU0020 (UK Statement of Reasons):MODAFL Deputy Minister of Defence for Supplies and Logistics. (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10641 +MOHAMMADALOO,Beik,,,,,,,,,00/00/1961,Sargh,Iran,,,,,,Deputy Minister of Defence,,,,,,,,,(UK Sanctions List Ref):INU0020 (UK Statement of Reasons):MODAFL Deputy Minister of Defence for Supplies and Logistics. (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10641 +MOHAMMADI,Aziz,,,,,,,,,00/00/1948,,,,,,,,Judge at the Tehran Provincial Criminal Court,,,,,,,,,"(UK Sanctions List Ref):IHR0022 (UK Statement of Reasons):Judge at the Tehran Provincial Criminal Court. He was involved in several trials of demonstrators, inter alia, that of Abdol-Reza Ghanbari, a teacher arrested in January 2010 and sentenced to death for his political activities. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,16/02/2022,12198 +MOHAMMADI,Mohammad,,,,,,,,,,,,Iran,,,,,Former Managing Director of MATSA,,,,,,,,,(UK Sanctions List Ref):INU0029 (UK Statement of Reasons):Former Managing Director of Mohandesi Toseh Sokht Atomi Company (MATSA),Individual,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12240 +MOHAMMADI,Noorullah,Aziz,,,,,,,,00/00/1948,,,,,,,,Judge at the Tehran Provincial Criminal Court,,,,,,,,,"(UK Sanctions List Ref):IHR0022 (UK Statement of Reasons):Judge at the Tehran Provincial Criminal Court. He was involved in several trials of demonstrators, inter alia, that of Abdol-Reza Ghanbari, a teacher arrested in January 2010 and sentenced to death for his political activities. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,16/02/2022,12198 +MOHAMMADI,MOHAMMAD SHAFIQ,,,,,Maulavi,محمد شفیق محمدی,,,00/00/1948,"Tirin Kot District, Uruzgan Province",Afghanistan,Afghanistan,,,,,"(1) Governor of Khost Province under the Taliban regime (2) Governor General of Paktia, Paktika, Khost and Ghazni Provinces under the Taliban regime",,,,,,,,,(UK Sanctions List Ref):AFG0077 (UN Ref):TAi.099 Supervises two military training centers of the Taliban as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7303 +MOHAMMADIAN,Abbas,Ali,,,,,,,,,,,Iran,,,,,Law Enforcement Force Chief of Police in Alborz Province,,,,,,,,,"(UK Sanctions List Ref):IHR0105 (UK Statement of Reasons):Abbas Ali MOHAMMADIAN is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations  in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and the right to freedom of expression and peaceful assembly through his role as Law Enforcement Force (LEF) Chief of Police in Alborz Province and in the suppression of recent protests in Iran. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15625 +MOHAMMADLOO,Beyk,,,,,,,,,05/05/1964,Sargh,Iran,,,,,,Deputy Minister of Defence,,,,,,,,,(UK Sanctions List Ref):INU0020 (UK Statement of Reasons):MODAFL Deputy Minister of Defence for Supplies and Logistics. (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10641 +MOHAMMADLOO,Beyk,,,,,,,,,00/00/1961,Sargh,Iran,,,,,,Deputy Minister of Defence,,,,,,,,,(UK Sanctions List Ref):INU0020 (UK Statement of Reasons):MODAFL Deputy Minister of Defence for Supplies and Logistics. (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10641 +MOHAMMADLOU,Beik,,,,,,,,,05/05/1964,Sargh,Iran,,,,,,Deputy Minister of Defence,,,,,,,,,(UK Sanctions List Ref):INU0020 (UK Statement of Reasons):MODAFL Deputy Minister of Defence for Supplies and Logistics. (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10641 +MOHAMMADLOU,Beik,,,,,,,,,00/00/1961,Sargh,Iran,,,,,,Deputy Minister of Defence,,,,,,,,,(UK Sanctions List Ref):INU0020 (UK Statement of Reasons):MODAFL Deputy Minister of Defence for Supplies and Logistics. (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10641 +MOHAMMADLOU,Beyk,,,,,,,,,05/05/1964,Sargh,Iran,,,,,,Deputy Minister of Defence,,,,,,,,,(UK Sanctions List Ref):INU0020 (UK Statement of Reasons):MODAFL Deputy Minister of Defence for Supplies and Logistics. (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10641 +MOHAMMADLOU,Beyk,,,,,,,,,00/00/1961,Sargh,Iran,,,,,,Deputy Minister of Defence,,,,,,,,,(UK Sanctions List Ref):INU0020 (UK Statement of Reasons):MODAFL Deputy Minister of Defence for Supplies and Logistics. (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10641 +MOHAMMADLU,Beik,,,,,,,,,05/05/1964,Sargh,Iran,,,,,,Deputy Minister of Defence,,,,,,,,,(UK Sanctions List Ref):INU0020 (UK Statement of Reasons):MODAFL Deputy Minister of Defence for Supplies and Logistics. (Gender):Male,Individual,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10641 +MOHAMMADLU,Beik,,,,,,,,,00/00/1961,Sargh,Iran,,,,,,Deputy Minister of Defence,,,,,,,,,(UK Sanctions List Ref):INU0020 (UK Statement of Reasons):MODAFL Deputy Minister of Defence for Supplies and Logistics. (Gender):Male,Individual,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10641 +MOHAMMADLU,Beuk,,,,,,,,,05/05/1964,Sargh,Iran,,,,,,Deputy Minister of Defence,,,,,,,,,(UK Sanctions List Ref):INU0020 (UK Statement of Reasons):MODAFL Deputy Minister of Defence for Supplies and Logistics. (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10641 +MOHAMMADLU,Beuk,,,,,,,,,00/00/1961,Sargh,Iran,,,,,,Deputy Minister of Defence,,,,,,,,,(UK Sanctions List Ref):INU0020 (UK Statement of Reasons):MODAFL Deputy Minister of Defence for Supplies and Logistics. (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10641 +MOHAMMED,Abu,,,,,,,,,19/06/1951,Giza,Egypt,Egypt,(1) 1084010 (2) 19820215,(1) Egyptian (2) - .,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0126 (UN Ref):QDi.006 Leader of Al-Qaida (QDe.004). Former operational and military leader of Egyptian Islamic Jihad (QDe.003), was a close associate of Usama Bin Laden (deceased). Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487197",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7016 +MOHAMMED,Abu,Mohammed,Abubakar,bin,,,,,,00/00/1969,"Shekau Village, Yobe State",Nigeria,Nigeria,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0118 (UN Ref):QDi.322 Member of the Kanuri tribe. Physical description: eye colour: black; hair colour: black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138). Under Shekau’s leadership, Boko Haram has been responsible for a series of major terrorist attacks. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,08/07/2014,26/06/2014,31/12/2020,13006 +MOHAMMED,Abu,Muhammed,Abubakar,bi,,,,,,00/00/1969,"Shekau Village, Yobe State",Nigeria,Nigeria,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0118 (UN Ref):QDi.322 Member of the Kanuri tribe. Physical description: eye colour: black; hair colour: black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138). Under Shekau’s leadership, Boko Haram has been responsible for a series of major terrorist attacks. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,08/07/2014,26/06/2014,31/12/2020,13006 +MOHAMMED,Ali,,,,,,,,,00/00/1994,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +MOHAMMED,Ali,,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +MOHAMMED,Ali,,,,,,,,,00/00/1995,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +MOHAMMED,Ali,,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +MOHAMMED,Bashir,Mahmud,,,,,,,,00/00/1979,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MOHAMMED,Bashir,Mahmud,,,,,,,,00/00/1980,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MOHAMMED,Bashir,Mahmud,,,,,,,,00/00/1981,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MOHAMMED,Bashir,Mahmud,,,,,,,,00/00/1982,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MOHAMMED,Khalid,Sheikh,,,,,,,,01/03/1964,Balochistan,Pakistan,Pakistan,488555,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0011 (UK Statement of Reasons):Khalid Sheikh Mohammed is an Islamist extremist who was involved in the planning of the 9/11 attacks on the US. (Gender):Male,Individual,Primary name,,Counter-Terrorism (International),12/10/2001,31/12/2020,31/12/2020,6994 +MOHAMMED,Khalid,Sheikh,,,,,,,,14/04/1964,Balochistan,Pakistan,Pakistan,488555,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0011 (UK Statement of Reasons):Khalid Sheikh Mohammed is an Islamist extremist who was involved in the planning of the 9/11 attacks on the US. (Gender):Male,Individual,Primary name,,Counter-Terrorism (International),12/10/2001,31/12/2020,31/12/2020,6994 +MOHAMMED,Nur,Al Deen,Abu,,,,,,,19/06/1951,Giza,Egypt,Egypt,(1) 1084010 (2) 19820215,(1) Egyptian (2) - .,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0126 (UN Ref):QDi.006 Leader of Al-Qaida (QDe.004). Former operational and military leader of Egyptian Islamic Jihad (QDe.003), was a close associate of Usama Bin Laden (deceased). Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487197",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7016 +MOHAMMED,Omar,Uthman,,,,,,,,00/00/1961,Mosul,Iraq,Iraq,,,0094195,Ration card.,,,,,,,,,,"(UK Sanctions List Ref):AQD0271 (UN Ref):QDi.012 Joined Al-Qaida in 1996 and was at that time an important liaison to the Taliban in Afghanistan. Received money from Ansar al-Islam (QDe.098) in order to conduct attacks in Kirkuk and Ninveh in Iraq during spring and summer of 2005. Al-Qaida senior official. In custody of the United States of America, as of Aug. 2014. Father’s name: Abd al-Razzaq Abd al-Baqi. Mother’s name: Nadira Ayoub Asaad. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1475995 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6923 +MOHAMMED,Shariff,Omar,,,,,,,,01/08/1970,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +MOHAMMED,Shariff,Omar,,,,,,,,13/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +MOHAMMED,Shariff,Omar,,,,,,,,14/04/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +MOHAMMED,Shariff,Omar,,,,,,,,14/03/1974,Zanzibar,Tanzania,Tanzania,,,,,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0125 (UN Ref):QDi.028 Apprehended in July 2004 and in custody for trial in the United States of America, as at October 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6925 +MOHAMMED,ABOUD,ROGO,,,,,,,,11/11/1960,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,Primary name,,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +MOHAMMED,ABOUD,ROGO,,,,,,,,11/11/1967,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,Primary name,,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +MOHAMMED,ABOUD,ROGO,,,,,,,,11/11/1969,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,Primary name,,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +MOHAMMED,ABOUD,ROGO,,,,,,,,01/01/1969,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,Primary name,,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +MOHAMOUD,Bashir,Mohamed,,,,,,,,00/00/1979,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MOHAMOUD,Bashir,Mohamed,,,,,,,,00/00/1980,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MOHAMOUD,Bashir,Mohamed,,,,,,,,00/00/1981,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MOHAMOUD,Bashir,Mohamed,,,,,,,,00/00/1982,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MOHAMUD,Bashir,Mohamed,,,,,,,,00/00/1979,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MOHAMUD,Bashir,Mohamed,,,,,,,,00/00/1980,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MOHAMUD,Bashir,Mohamed,,,,,,,,00/00/1981,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MOHAMUD,Bashir,Mohamed,,,,,,,,00/00/1982,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MOHANDESI HEDAYAT CONTROL PAYA,,,,,,,,,,,,,,,,,,,No 15,Eighth Street,Pakistan Avenue,Shahid Beheshti Avenue,,Tehran,,Iran,(UK Sanctions List Ref):INU0099 (UK Statement of Reasons):Has been involved in procurement of materials that are controlled and have direct applications in the manufacture of centrifuges for Iran's uranium enrichment programme. (Phone number):+98 21 88 73 77 53 (Website):www.pooyawave.com (Email address):info@pooyawave.com (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11541 +MOHANDESI TARH VA TOSEH MARO SANAT COMPANY,,,,,,,,,,,,,,,,,,,9,Ground Floor,Zohre Street,Mofateh Street,,Tehran,,Iran,(UK Sanctions List Ref):INU0091 (UK Statement of Reasons):Involved in the procurement of specialist materials that have direct application in the Iranian nuclear programme. (Phone number):+98 21 88306714 (Type of entity):Procurement,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11554 +MOHANDESI TARH VA TOSEH MARO SANAT COMPANY,,,,,,,,,,,,,,,,,,,Bld. No. 11,Zohreh St.,Mofateh Ave.,,,Tehran,,Iran,(UK Sanctions List Ref):INU0091 (UK Statement of Reasons):Involved in the procurement of specialist materials that have direct application in the Iranian nuclear programme. (Phone number):+98 21 88306714 (Type of entity):Procurement,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11554 +MOHANDESI TARH VA TOSEH MARO SANAT COMPANY,,,,,,,,,,,,,,,,,,,North Dr. Moftah Street,Zahra Street,Placard 9,Ground floor,,Tehran,,Iran,(UK Sanctions List Ref):INU0091 (UK Statement of Reasons):Involved in the procurement of specialist materials that have direct application in the Iranian nuclear programme. (Phone number):+98 21 88306714 (Type of entity):Procurement,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11554 +MOHMAD,Akhter,,,,,,,,,00/00/1963,"(1) Kandahar City, Kandahar Province. (2) Khwaja Malik village, Arghandab District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,(1) OR 1961825. (2) TR024417,"(1) Afghanistan. Issued in name of Akhtar Mohmad, son of Noor Mohmad, born in 1965 in Kandahar. Issued 4 Feb 2003 by Afghan Consulate in Quetta, Pakistan. Expired 2 Feb 2006 (2) Issued under the name of Haji Gulab Gul, son of Haji Hazrat Gul, born in 1955 in Logar, Afghanistan. Issued on 20/12/2003 by Central Passport Department in Kabul, Afghanistan. Expired 29 December 2006.",,,Deputy Minister of Foreign Affairs under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0032 (UN Ref):TAi.034 Believed to be in Afghanistan/Pakistan border area. Member of the Taliban Supreme Council as of May 2007. Member of the Financial Commission of the Taliban Council. Responsible for logistics for the Taliban and also active as a businessman in his personal capacity as at mid-2013. Belongs to Alizai tribe. Brother of Atiqullah Wali Mohammad (TAi.070). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6908 +MOHSENI-EJEI,Gholam-Hossein,,,,,,,,,00/00/1956,"Ejiyeh, Isfahan",Iran,,,,,,(1) Former Prosecutor General of Iran (2) Deputy Head and spokesman of the Judiciary (3) Member of the Expediency Council (4) Former Minister of Intelligence (5) Chief Justice of Iran,,,,,,,,,"(UK Sanctions List Ref):IHR0032 (UK Statement of Reasons):Former Prosecutor General of Iran and Deputy Head and spokesman of the Judiciary. Former Intelligence minister during the 2009 elections. While he was Intelligence minister during the 2009 election, intelligence agents under his command were responsible for detention, torture and extraction of false confessions under pressure from hundreds of activists, journalists, dissidents, and reformist politicians. In addition, political figures were coerced into making false confessions under unbearable interrogations, which included torture, abuse, blackmail, and the threatening of family members. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,16/06/2022,11797 +MOKLIS,YUNOS,UMPARA,,,,,,,,07/07/1966,Lanao del Sur,Philippines,Philippines,,,,,,,,,,,,,Philippines,"(UK Sanctions List Ref):AQD0338 (UN Ref):QDi.126 Sentenced to life without parole in the Philippines on 23 Jan. 2009 for his involvement in the bombings of 30 Dec. 2000 in Manila, the Philippines. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427252. Philippines, remains incarcerated as of May 2017",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7835 +"MOLECULAR ELECTRONICS RESEARCH INSTITUTE, JOINT STOCK COMPANY",,,,,,,Научно-исследовательский институт молекулярной электроники,Cyrillic,Russian,,,,,,,,,,1st Zapadny Proezd 12/1,,,,,Zelenograd,124460,Russia,"(UK Sanctions List Ref):RUS1405 Organization Established Date 03 Sep 1964. Government Gazette Number 92611467 (Russia) (UK Statement of Reasons):The Molecular Electronics Research Institute is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the electronics sector. (Website):https://www.niime.ru (Business Reg No):1117746568829 (Russia). Tax ID No. 7735579027 (Russia)",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15325 +"MOLECULAR ELECTRONICS RESEARCH INSTITUTE, JOINT STOCK COMPANY",,,,,,,Научно-исследовательский институт молекулярной электроники,Cyrillic,Russian,,,,,,,,,,d. 6 str. 1,ul. Akademika Valieva,,,Zelenograd,Moscow,124460,Russia,"(UK Sanctions List Ref):RUS1405 Organization Established Date 03 Sep 1964. Government Gazette Number 92611467 (Russia) (UK Statement of Reasons):The Molecular Electronics Research Institute is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the electronics sector. (Website):https://www.niime.ru (Business Reg No):1117746568829 (Russia). Tax ID No. 7735579027 (Russia)",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15325 +MONCADA LAU,Nestor,,,,,,Néstor Moncada Lau,,,02/03/1954,,,,,,,,Personal advisor to the President of Nicaragua on national security matters,,,,,,,,Nicaragua,"(UK Sanctions List Ref):NIC0006 (UK Statement of Reasons):Moncada Lau holds several unofficial positions in Ortega’s regime. He is the custodian of the Sandinista National Liberation Front. He also acts as the liaison between Ortega and the chief of the National Police, as well as with paramilitary groups and intelligence activities. In these roles, he has been involved in serious violations of human rights in Nicaragua through the National Police’s disproportionate use of force in relation to the 2018 protests, including extrajudicial killings, violating the right to life, the right to freedom of assembly and the right to freedom of expression. He is also involved in paramilitary groups murdering and arbitrarily detaining protesters, violating the right to life, the right to freedom of assembly and the right to freedom of expression. (Gender):Male",Individual,Primary name,,Nicaragua,05/05/2020,31/12/2020,31/12/2020,13837 +MOOR,Alexander,Viktorovich,,,,,Александр Викторович Моор,,,06/01/1974,,,Russia,,,,,Governor of Tyumen Region,,,,,,,,,"(UK Sanctions List Ref):RUS1508 (UK Statement of Reasons):Alexander Viktorovich MOOR is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because MOOR is a regional governor. Specifically, MOOR is Governor of Tyumen Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15446 +MOOYOKBANK,,,,,,,,,,,,,,,,,,,,,FTB Building,Jungsong-dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0134 (UN Ref):KPe.047 Foreign Trade Bank is a state-owned bank and acts as the DPRK’s primary foreign exchange bank and has provided key financial support to the Korea Kwangson Banking Corporation. SWIFT/BIC: FTBDKPPY.,Entity,AKA,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,02/08/2022,13536 +MORA SALCEDO,Farik,Karin,,,,,,,,,,Venezuela,Venezuela,,,V-8608523,,Prosecutor,,,,,,,,,"(UK Sanctions List Ref):VEN0032 (UK Statement of Reasons):There are reasonable grounds to suspect that Venezuelan Prosecutor Farik Karin Mora Salcedo has engaged in conduct relevant to a listing under the following criteria: (a) natural persons responsible for serious human rights violations or abuses or the repression of civil society and democratic opposition in Venezuela. (b) natural persons whose action, policies or activities otherwise undermine democracy or the rule of law in Venezuela. There is reliable evidence that Mora is directly responsible for issuing the arbitrary arrests of Parliamentarians, with Parliamentary Immunity. There is a considerable amount of diverse evidence reporting Mora as the prosecutor for at least four people with Parliamentary Immunity – Requesens, Borges, Alban, and Marrero, making him responsible by virtue of his position for undermining democracy and the rule of law, and repressing democratic opposition. Mora was the prosecutor for the case of Fernando Alban, where the defendant died under suspicious circumstances. There is reliable evidence that Mora participated in Alban’s autopsy, saw visible signs of torture, and announced an incorrect cause of death to cover this up. According to multiple allegations, some first-hand accounts, he has been witness to the torture of multiple prisoners, some of whom he was prosecutor for. There are thus reasonable grounds to suspect that Mora consented or acquiesced to such acts, and therefore bears responsibility for the serious human rights violation of torture. (Gender):Male",Individual,Primary name,,Venezuela,30/06/2020,31/12/2020,31/12/2020,13847 +MORADI,Ali,Reza,,,,,علیرضا مدری,,Persian,,,Iran,Iran,,,,,"Police Chief of Sanandaj City, The Law Enforcement Force of Islamic Republic of Iran (LEF)",,,,,,,,,"(UK Sanctions List Ref):IHR0100 (UK Statement of Reasons):Ali-Reza Moradi, is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for serious violations with respect to the right to life in Iran, and the right to freedom of expression and peaceful assembly through his role as Law Enforcement Force (LEF) Police Chief of Sanandaj City and in the suppression of recent protests.",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15620 +MORALITY POLICE,,,,,,,,,,,,,,,,,,,Vozara Street,corner of 25th Street,District 6,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0085 (UK Statement of Reasons):The Morality Police are or have been involved in the commission of serious human rights violations in Iran, including being responsible for, engaging in and promoting violations of the right to liberty and security and the right to freedom of expression through their enforcement of mandatory dress codes for women, including the use of unreasonable force against individuals they deem to be non-compliant. (Type of entity):State Religious Police Force",Entity,Primary name,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15598 +MORALITY SECURITY POLICE,,,,,,,پلیس امنیت اخلاقی,Persian,Persian/Farsi,,,,,,,,,,Vozara Street,corner of 25th Street,District 6,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0085 (UK Statement of Reasons):The Morality Police are or have been involved in the commission of serious human rights violations in Iran, including being responsible for, engaging in and promoting violations of the right to liberty and security and the right to freedom of expression through their enforcement of mandatory dress codes for women, including the use of unreasonable force against individuals they deem to be non-compliant. (Type of entity):State Religious Police Force",Entity,Primary name variation,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15598 +MORALITY SECURITY POLICE,,,,,,,Polīs-e Amnīyat-e Akhlāqī,Persian,Persian/Farsi,,,,,,,,,,Vozara Street,corner of 25th Street,District 6,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0085 (UK Statement of Reasons):The Morality Police are or have been involved in the commission of serious human rights violations in Iran, including being responsible for, engaging in and promoting violations of the right to liberty and security and the right to freedom of expression through their enforcement of mandatory dress codes for women, including the use of unreasonable force against individuals they deem to be non-compliant. (Type of entity):State Religious Police Force",Entity,Primary name variation,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15598 +MORALITY SECURITY POLICE,,,,,,,Polis-e Amniyat-e Akhlaqi,Persian,Persian/Farsi,,,,,,,,,,Vozara Street,corner of 25th Street,District 6,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0085 (UK Statement of Reasons):The Morality Police are or have been involved in the commission of serious human rights violations in Iran, including being responsible for, engaging in and promoting violations of the right to liberty and security and the right to freedom of expression through their enforcement of mandatory dress codes for women, including the use of unreasonable force against individuals they deem to be non-compliant. (Type of entity):State Religious Police Force",Entity,Primary name variation,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15598 +MORDASCHOV,Alexey,Alexandrovich,,,,,,,,26/09/1965,"Cherepovets, Vologda region",Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0770 (UK Statement of Reasons):Alexey Alexandrovich MORDASHOV is the Chairman of the Board of Directors of, and is the majority shareholder in, steel and mining company PAO Severstal, Russia’s fourth-largest steel producer by tonnage. As such, MORDASHOV is or has been involved in obtaining a benefit from or supporting the Government of Russia, by owning or controlling directly or indirectly an entity carrying on business in a sector of strategic significance to the Government of Russia – the Russian extractives sector. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,04/07/2022,14721 +MORDASCHOV,Alexey,Alexandrovits,,,,,МОРДАШОВ Алексей Александрович,Cyrillic,Russian,26/09/1965,"Cherepovets, Vologda region",Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0770 (UK Statement of Reasons):Alexey Alexandrovich MORDASHOV is the Chairman of the Board of Directors of, and is the majority shareholder in, steel and mining company PAO Severstal, Russia’s fourth-largest steel producer by tonnage. As such, MORDASHOV is or has been involved in obtaining a benefit from or supporting the Government of Russia, by owning or controlling directly or indirectly an entity carrying on business in a sector of strategic significance to the Government of Russia – the Russian extractives sector. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14721 +MORENENTS,Aleksei,Sergeyvich,,,,,,,,31/07/1977,Moermanskaya Oblast,Russia,Russia,100135556,,,,Cyber Operator (GRU),,,,,,Moscow,,Russia,(UK Sanctions List Ref):CYB0006 (UK Statement of Reasons):Aleksei Sergeyvich Morenets was part of a team of intelligence officers of the Russian General Staff Main Intelligence Directorate (GRU) unit known as field post number 26165 that attempted to gain unauthorised access to the information systems of the Organisation for the Prohibition of Chemical Weapons (OPCW) in April 2018. The Netherlands authorities disrupted the cyber attack before it was successful. This attempted relevant cyber activity was intended to undermine the independence or effective functioning of an international organisation. (Gender):Male,Individual,Primary name,,Cyber,31/07/2020,31/12/2020,31/12/2020,13906 +MORENO BRIONES,Fidel,Antonio,,,,Secretary General,,,,26/02/1974,Esteli,Nicaragua,Nicaragua,,,161-260274-0001T,,Secretary General of the Managua Mayor’s Office,,,,,,,,Nicaragua,"(UK Sanctions List Ref):NIC0009 (UK Statement of Reasons):Fidel Antonio Moreno Briones has been the Secretary General of the Managua Mayor’s Office since 2007. He is also the Organisation Secretary of the Sandinista National Liberation Front (FSLN). There are reasonable grounds to suspect that in his role as Secretary General he is responsible for undermining democracy and the rule of law, repression of civil society and the democratic opposition and for human rights violations. (Gender):Male",Individual,Primary name,,Nicaragua,15/11/2021,15/11/2021,15/11/2021,14147 +MORENO PEREZ,Maikel,Jose,,,,,Maikel José Moreno Pérez,,,12/12/1965,,,Venezuela,,,,,President of the Supreme Court of Justice,,,,,,Caracas,,Venezuela,"(UK Sanctions List Ref):VEN0004 President of the Supreme Court of Justice (UK Statement of Reasons):President, and former Vice President, of the Supreme Court of Justice of Venezuela (Tribunal Supremo de Justicia). In these roles, he has supported and facilitated the Government's actions and policies which have undermined democracy and the rule of law in Venezuela, and is responsible for actions and statements that haveusurped the authority of the National Assembly. (Gender):Male",Individual,Primary name,,Venezuela,22/01/2018,31/12/2020,31/12/2020,13584 +MORENO REYES,Xavier,Antonio,,,,,,,,,,,,,,,,Secretary General of National Electoral Council,,,,,,,,,"(UK Sanctions List Ref):VEN0015 Secretary General of National Electoral Council (UK Statement of Reasons):Secretary General of the National Electoral Council (CNE). Responsible for signing off CNE decisions which have undermined democracy in Venezuela, including facilitating the establishment of the Constituent Assembly and manipulation of the electoral process. (Gender):Male",Individual,Primary name,,Venezuela,26/06/2018,31/12/2020,28/01/2022,13696 +MOROCCAN ISLAMIC COMBATANT GROUP,,,,,,,الجماعة الاسلامية المغربية المقاتلة,,,,,,,,,,,,,,,,,,,Morocco,(UK Sanctions List Ref):AQD0068 (UN Ref):QDe.089 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282051,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,11/10/2002,10/10/2002,31/12/2020,7149 +MOROZOV,Igor,Nikolayevich,,,,,Игорь Николаевич МОРОЗОВ,,,10/12/1956,Spassk-Ryazansky,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0988 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14939 +MOROZOV,Oleg,Viktorovich,,,,,МОРОЗОВ Олег Викторович,,,05/11/1953,Kazan,Russia,Russia,[00]37125,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0275 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14220 +MOROZOV,Sergey,Ivanovich,,,,,Морозов Сергей Иванович,,,06/09/1959,Ulyanovsk,Russia,,644286444. 644813919. 653850525. 602602505,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0594 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14539 +MORTAZAVI,Amir,,,,,,,,,,,,,,,,,(1) Deputy Head of the Unit for Social Affairs and Crime Prevention at the judiciary in the province of Khorasan-Razavi (2) Former Deputy Prosecutor of Mashhad,,,,,,,,,"(UK Sanctions List Ref):IHR0020 (UK Statement of Reasons):Deputy head of the Unit for Social Affairs and Crime Prevention at the judiciary in the province of Khorasan-Razavi. Deputy Prosecutor of Mashhad until at least 2015. Trials under his prosecution have been conducted summarily and inside closed session, without adherence to basic rights of the accused. As execution rulings were issued en masse, death sentences were issued without proper observance of fair hearing procedures. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11790 +MORTAZAVI,Saeed,,,,,,,,,00/00/1967,"Meybod, Yazd",Iran,,,,,,,,,,,,,,,"(UK Sanctions List Ref):IHR0076 (1) Former Head of Anti-Smuggling Taskforce (2) Former Head of Social Security Organisation (3) Former Prosecutor General of Tehran 2003-2009 (4) Former Prosecutor General of Tehran until August 2009 (UK Statement of Reasons):Former Prosecutor General of Tehran until August 2009. As Tehran Prosecutor General, he issued a blanket order used for the detention of hundreds of activists, journalists and students. In January 2010 a parliamentary investigation held him directly responsible for the detention of three prisoners who subsequently died in custody. He was suspended from office in August 2010 after an investigation by the Iranian judiciary into his role in the deaths of the three men detained on his orders following the election. In November 2014, his role in the deaths of detainees was officially recognised by the Iranian authorities. He was acquitted by an Iranian Court on 19 August 2015, on charges connected to the torture and deaths of three young men at the Kahrizak detention centre in 2009. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,28/01/2022,11798 +MORTAZAVI,Said,,,,,,,,,00/00/1967,"Meybod, Yazd",Iran,,,,,,,,,,,,,,,"(UK Sanctions List Ref):IHR0076 (1) Former Head of Anti-Smuggling Taskforce (2) Former Head of Social Security Organisation (3) Former Prosecutor General of Tehran 2003-2009 (4) Former Prosecutor General of Tehran until August 2009 (UK Statement of Reasons):Former Prosecutor General of Tehran until August 2009. As Tehran Prosecutor General, he issued a blanket order used for the detention of hundreds of activists, journalists and students. In January 2010 a parliamentary investigation held him directly responsible for the detention of three prisoners who subsequently died in custody. He was suspended from office in August 2010 after an investigation by the Iranian judiciary into his role in the deaths of the three men detained on his orders following the election. In November 2014, his role in the deaths of detainees was officially recognised by the Iranian authorities. He was acquitted by an Iranian Court on 19 August 2015, on charges connected to the torture and deaths of three young men at the Kahrizak detention centre in 2009. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,28/01/2022,11798 +MORTAZAVI,Seyyed,Amir,,,,,,,,,,,,,,,,(1) Deputy Head of the Unit for Social Affairs and Crime Prevention at the judiciary in the province of Khorasan-Razavi (2) Former Deputy Prosecutor of Mashhad,,,,,,,,,"(UK Sanctions List Ref):IHR0020 (UK Statement of Reasons):Deputy head of the Unit for Social Affairs and Crime Prevention at the judiciary in the province of Khorasan-Razavi. Deputy Prosecutor of Mashhad until at least 2015. Trials under his prosecution have been conducted summarily and inside closed session, without adherence to basic rights of the accused. As execution rulings were issued en masse, death sentences were issued without proper observance of fair hearing procedures. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11790 +MORTAZAVI,Seyyed,Solat,,,,,,,,00/00/1967,Farsan Tchar Mahal-o-Bakhtiari (South),Iran,,,,,,"(1) Former Director of the Tehran branch of the Foundation Astan Qods Razavi, until November 2019 (2) Former mayor of Mashad. Former Deputy Interior Minister for Political Affairs (3) Head of the Iranian Election Committee for the parliamentarian elections in 2012 and for the presidential elections in 2013 (4) Vice President for Executive Affairs",,,,,,,,,"(UK Sanctions List Ref):IHR0082 (UK Statement of Reasons):Former mayor of the second largest city of Iran, Mashad, where public executions regularly happen. Former Deputy Interior Minister for Political Affairs, appointed in 2009. In this capacity, he was responsible for directing repression of persons who spoke up in defence of their legitimate rights, including freedom of expression. Later appointed as Head of the Iranian Election Committee for the parliamentarian elections in 2012 and for the presidential elections in 2013. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12653 +MORTAZAVI,Seyyed,Solat,,,,,,,,00/00/1961,Farsan Tchar Mahal-o-Bakhtiari (South),Iran,,,,,,"(1) Former Director of the Tehran branch of the Foundation Astan Qods Razavi, until November 2019 (2) Former mayor of Mashad. Former Deputy Interior Minister for Political Affairs (3) Head of the Iranian Election Committee for the parliamentarian elections in 2012 and for the presidential elections in 2013 (4) Vice President for Executive Affairs",,,,,,,,,"(UK Sanctions List Ref):IHR0082 (UK Statement of Reasons):Former mayor of the second largest city of Iran, Mashad, where public executions regularly happen. Former Deputy Interior Minister for Political Affairs, appointed in 2009. In this capacity, he was responsible for directing repression of persons who spoke up in defence of their legitimate rights, including freedom of expression. Later appointed as Head of the Iranian Election Committee for the parliamentarian elections in 2012 and for the presidential elections in 2013. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12653 +MORTAZAVI,Seyyed,Solat,,,,,,,,,Farsan Tchar Mahal-o-Bakhtiari (South),Iran,,,,,,"(1) Former Director of the Tehran branch of the Foundation Astan Qods Razavi, until November 2019 (2) Former mayor of Mashad. Former Deputy Interior Minister for Political Affairs (3) Head of the Iranian Election Committee for the parliamentarian elections in 2012 and for the presidential elections in 2013 (4) Vice President for Executive Affairs",,,,,,,,,"(UK Sanctions List Ref):IHR0082 (UK Statement of Reasons):Former mayor of the second largest city of Iran, Mashad, where public executions regularly happen. Former Deputy Interior Minister for Political Affairs, appointed in 2009. In this capacity, he was responsible for directing repression of persons who spoke up in defence of their legitimate rights, including freedom of expression. Later appointed as Head of the Iranian Election Committee for the parliamentarian elections in 2012 and for the presidential elections in 2013. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12653 +MORTAZAVI,Syed,Amir,,,,,,,,,,,,,,,,(1) Deputy Head of the Unit for Social Affairs and Crime Prevention at the judiciary in the province of Khorasan-Razavi (2) Former Deputy Prosecutor of Mashhad,,,,,,,,,"(UK Sanctions List Ref):IHR0020 (UK Statement of Reasons):Deputy head of the Unit for Social Affairs and Crime Prevention at the judiciary in the province of Khorasan-Razavi. Deputy Prosecutor of Mashhad until at least 2015. Trials under his prosecution have been conducted summarily and inside closed session, without adherence to basic rights of the accused. As execution rulings were issued en masse, death sentences were issued without proper observance of fair hearing procedures. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11790 +MOSCOW CENTRE OF SPARC TECHNOLOGIES JSC,,,,,,,Московский центр SPARC-технологий,Cyrillic,Russian,,,,,,,,,,51 Leninsky prospect,,,,,Moscow,119049,Russia,"(UK Sanctions List Ref):RUS1441 KPP 773601001 (UK Statement of Reasons):MCST JSC is an involved person under the Russia (EU Exit) (Sanctions) Regulations 2019 on the basis that it is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the information, communications, and digital technologies sector, a sector of strategic significance to the Government of Russia. (Phone number):7 (495) 363 96 65 (Website):Mcst.ru (Business Reg No):Tax Identification Number: INN 7736053886",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,02/09/2022,15361 +MOSCOW INDUSTRIAL BANK PJSCB,,,,,,,,,,,,,,,,,,,Ordzhonikidze Street 5,,,,,Moscow,115419,Russia,"(UK Sanctions List Ref):RUS1492 Organization Established Date 22 Nov 1990 (UK Statement of Reasons):JOINT STOCK COMPANY MOSCOW INDUSTRIAL BANK is a Russian commercial bank. It is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian financial services sector. (Website):http://www.minbank.ru (Type of entity):Financial Institution (Subsidiaries):Agropromyshlenny Kompleks Voronezhski OOO Anninskii Elevator OOO Auditkonsalt OOO Belinveststroi OOO Dve Stolitsy OOO Kontrakt OOO Ladoga OOO Nekommercheskaya Organizatsiya Fond Khimicheskoe Razoruzhenie I Konversiya Azovskaya Zernovaya Kompaniya OOO Ekspluatiruyushchaya Kompaniya Tsentr OOO (Business Reg No):SWIFT/BIC MINNRUMM BIK (RU) 044525600 Tax ID No. 7725039953 (Russia) Government Gazette Number 09317135 (Russia) Legal Entity Number 2534006SJ05GGKETEY75 (Russia) Registration Number 1027739179160 (Russia)",Entity,Primary name variation,,Russia,29/06/2022,29/06/2022,29/06/2022,15429 +MOSCOW INSTITUTE OF PHYSICS AND TECHNOLOGY,,,,,,,Московский Физико-Технический институт,Cyrillic,Russian,,,,,,,,,,9 Institutskiy per.,,,,,Dolgoprudny,141701,Russia,"(UK Sanctions List Ref):RUS1431 OGRN: 115047008196; KPP: 500801010 (UK Statement of Reasons):Moscow Institute of Physics and Technology (MIPT) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because it is or has been obtaining a benefit from or supporting the Government of Russia, by carrying on business as a Government of Russia-affiliated entity. (Business Reg No):Tax Identification Number: INN: 5008000788",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15374 +MOSHKIN,Vladimir,Evgenievich,,,,,МОШКИН Владимир Евгеньевич,Cyrillic,Russian,25/06/1980,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1191 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15143 +MOSHKIN,Vladimir,Yevgenyevich,,,,,,,,25/06/1980,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1191 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15143 +MOSHKOVICH,Vadim,Nikolaevich,,,,,Вадим Николаевич Мошкович,Cyrillic,Russian,06/04/1967,Moscow,Russia,Russia,,,773100682469,Tax Identification Number (TIN),,,,,,,,,,"(UK Sanctions List Ref):RUS0781 (UK Statement of Reasons):Vadim Nikolaevich MOSHKOVICH is the founder and former Chairman of the Board of Directors of the Rusagro group of companies. Through his role in Rusagro, MOSHKOVICH is or has been involved in obtaining a benefit or supporting the Government of Russia by working as a director (whether executive or non-executive) or equivalent of an entity carrying on business in a sector of economic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14732 +MOSINA,Anna,Mikhailovna,,,,,,,,27/10/1957,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1286 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15238 +MOSINA,Anna,Mikhaylovna,,,,,МОСИНА Анна Михайловна,Cyrillic,Russian,27/10/1957,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1286 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15238 +MOSKOVSKI INDUSTRIALNY BANK PUBLICHNOE AKTSIONERNOE OBSHCHESTVO,,,,,,,,,,,,,,,,,,,Ordzhonikidze Street 5,,,,,Moscow,115419,Russia,"(UK Sanctions List Ref):RUS1492 Organization Established Date 22 Nov 1990 (UK Statement of Reasons):JOINT STOCK COMPANY MOSCOW INDUSTRIAL BANK is a Russian commercial bank. It is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian financial services sector. (Website):http://www.minbank.ru (Type of entity):Financial Institution (Subsidiaries):Agropromyshlenny Kompleks Voronezhski OOO Anninskii Elevator OOO Auditkonsalt OOO Belinveststroi OOO Dve Stolitsy OOO Kontrakt OOO Ladoga OOO Nekommercheskaya Organizatsiya Fond Khimicheskoe Razoruzhenie I Konversiya Azovskaya Zernovaya Kompaniya OOO Ekspluatiruyushchaya Kompaniya Tsentr OOO (Business Reg No):SWIFT/BIC MINNRUMM BIK (RU) 044525600 Tax ID No. 7725039953 (Russia) Government Gazette Number 09317135 (Russia) Legal Entity Number 2534006SJ05GGKETEY75 (Russia) Registration Number 1027739179160 (Russia)",Entity,Primary name variation,,Russia,29/06/2022,29/06/2022,29/06/2022,15429 +MOSKOVSKIJ INDUSTRIALNYJ BANK PJSCB,,,,,,,,,,,,,,,,,,,Ordzhonikidze Street 5,,,,,Moscow,115419,Russia,"(UK Sanctions List Ref):RUS1492 Organization Established Date 22 Nov 1990 (UK Statement of Reasons):JOINT STOCK COMPANY MOSCOW INDUSTRIAL BANK is a Russian commercial bank. It is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian financial services sector. (Website):http://www.minbank.ru (Type of entity):Financial Institution (Subsidiaries):Agropromyshlenny Kompleks Voronezhski OOO Anninskii Elevator OOO Auditkonsalt OOO Belinveststroi OOO Dve Stolitsy OOO Kontrakt OOO Ladoga OOO Nekommercheskaya Organizatsiya Fond Khimicheskoe Razoruzhenie I Konversiya Azovskaya Zernovaya Kompaniya OOO Ekspluatiruyushchaya Kompaniya Tsentr OOO (Business Reg No):SWIFT/BIC MINNRUMM BIK (RU) 044525600 Tax ID No. 7725039953 (Russia) Government Gazette Number 09317135 (Russia) Legal Entity Number 2534006SJ05GGKETEY75 (Russia) Registration Number 1027739179160 (Russia)",Entity,Primary name variation,,Russia,29/06/2022,29/06/2022,29/06/2022,15429 +MOSKOVSKY INDUSTRIALNY BANK,,,,,,,,,,,,,,,,,,,Ordzhonikidze Street 5,,,,,Moscow,115419,Russia,"(UK Sanctions List Ref):RUS1492 Organization Established Date 22 Nov 1990 (UK Statement of Reasons):JOINT STOCK COMPANY MOSCOW INDUSTRIAL BANK is a Russian commercial bank. It is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian financial services sector. (Website):http://www.minbank.ru (Type of entity):Financial Institution (Subsidiaries):Agropromyshlenny Kompleks Voronezhski OOO Anninskii Elevator OOO Auditkonsalt OOO Belinveststroi OOO Dve Stolitsy OOO Kontrakt OOO Ladoga OOO Nekommercheskaya Organizatsiya Fond Khimicheskoe Razoruzhenie I Konversiya Azovskaya Zernovaya Kompaniya OOO Ekspluatiruyushchaya Kompaniya Tsentr OOO (Business Reg No):SWIFT/BIC MINNRUMM BIK (RU) 044525600 Tax ID No. 7725039953 (Russia) Government Gazette Number 09317135 (Russia) Legal Entity Number 2534006SJ05GGKETEY75 (Russia) Registration Number 1027739179160 (Russia)",Entity,Primary name variation,,Russia,29/06/2022,29/06/2022,29/06/2022,15429 +MOSKVICHEV,Evgeny,Sergeevich,,,,,МОСКВИЧЕВ Евгений Сергеевич,,,28/09/1957,"Kozinki, Bryansk",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0620 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14565 +MOSLEHI,Haidar,,,,,,,,,00/00/1956,Isfahan,Iran,,,,,,(1) Deputy Head of the Political and Ideological Office of the Supreme Leader (2) Former Minister of Intelligence,,,,,,,,,"(UK Sanctions List Ref):IHR0037 (UK Statement of Reasons):Former Minister of Intelligence (2009-2013). Under his leadership, the Ministry of Intelligence continued the practices of widespread arbitrary detention and persecution of protesters and dissidents. The Ministry of Intelligence runs Ward 209 of Evin Prison, where many activists have been held on account of their peaceful activities in opposition to the government in power. Interrogators from the Ministry of Intelligence have subjected prisoners in Ward 209 to beatings and mental and sexual abuse. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12202 +MOSLEHI,Heidar,,,,,,,,,00/00/1956,Isfahan,Iran,,,,,,(1) Deputy Head of the Political and Ideological Office of the Supreme Leader (2) Former Minister of Intelligence,,,,,,,,,"(UK Sanctions List Ref):IHR0037 (UK Statement of Reasons):Former Minister of Intelligence (2009-2013). Under his leadership, the Ministry of Intelligence continued the practices of widespread arbitrary detention and persecution of protesters and dissidents. The Ministry of Intelligence runs Ward 209 of Evin Prison, where many activists have been held on account of their peaceful activities in opposition to the government in power. Interrogators from the Ministry of Intelligence have subjected prisoners in Ward 209 to beatings and mental and sexual abuse. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12202 +MOSLEHI,Heydar,,,,,,,,,00/00/1956,Isfahan,Iran,,,,,,(1) Deputy Head of the Political and Ideological Office of the Supreme Leader (2) Former Minister of Intelligence,,,,,,,,,"(UK Sanctions List Ref):IHR0037 (UK Statement of Reasons):Former Minister of Intelligence (2009-2013). Under his leadership, the Ministry of Intelligence continued the practices of widespread arbitrary detention and persecution of protesters and dissidents. The Ministry of Intelligence runs Ward 209 of Evin Prison, where many activists have been held on account of their peaceful activities in opposition to the government in power. Interrogators from the Ministry of Intelligence have subjected prisoners in Ward 209 to beatings and mental and sexual abuse. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12202 +MOSTAFA,Damel,,,,,,,,,22/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Damel,,,,,,,,,26/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Damel,,,,,,,,,,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Damel,,,,,,,,,26/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Damel,,,,,,,,,28/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Damel,,,,,,,,,31/12/1979,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Damel,,,,,,,,,10/06/1982,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Djamal,,,,,,,,,22/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Djamal,,,,,,,,,26/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Djamal,,,,,,,,,,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Djamal,,,,,,,,,26/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Djamal,,,,,,,,,28/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Djamal,,,,,,,,,31/12/1979,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Djamal,,,,,,,,,10/06/1982,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Djamel,,,,,,,,,22/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Djamel,,,,,,,,,26/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Djamel,,,,,,,,,,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Djamel,,,,,,,,,26/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Djamel,,,,,,,,,28/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Djamel,,,,,,,,,31/12/1979,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Djamel,,,,,,,,,10/06/1982,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOSTAFA,Mostafa,Kamel,,,,,,,,15/04/1958,Alexandria,Egypt,United Kingdom,,,,,,,,,,,,,United States,(UK Sanctions List Ref):AQD0252 (UN Ref):QDi.067 Extradited from the United Kingdom to the United States of America on 5 Oct. 2012. Convicted on terrorism charges by a court in the United States of America in May 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/04/2002,24/04/2002,31/12/2020,6930 +MOSTAFA,MOHAMED,AMIN,,,,,,,,11/10/1975,Kirkuk,Iraq,Iraq,,,,,,Via Della Martinella 132,,,,,Parma,,Italy,(UK Sanctions List Ref):AQD0237 (UN Ref):QDi.147 Under administrative control measure in Italy scheduled to expire on 15 Jan. 2012. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424267. Italy (Domicile),Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7868 +"MOSTOTREST, PAO",,,,,,,,,,,,,,,,,,,6 Barklaya Street,Bld. 5,,,,Moscow,121087,Russia,"(UK Sanctions List Ref):RUS0190 Business Sector: construction. Names of Director(s)/Management: Alexander N Poderegin, General Director Ultimate beneficial owner(s): Used to belong to Igor Rotenberg, but now belongs to Arkady Rotenberg, who has been sanctioned by the EU since 23/02/2015, and who is a long-time acquaintance of President Putin; who has developed his fortune during President Putin's tenure, and has been favoured by Russian decision-makers in the award of important contracts by the Russian State or by State-owned enterprises. (UK Statement of Reasons):Mostotrest has actively participated in the construction of the Kerch Bridge through its State contract for the maintenance of the Bridge, connecting Russia to the illegally annexed Crimean Peninsula. Furthermore, it is owned by an individual (Arkady Rotenberg) that is already designated for his actions undermining Ukrainian sovereignty. Therefore, the company is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity sovereignty and independence of Ukraine. (Phone number):+7(495)669-77-11 Fax. +7(495)669-79-99 (Email address):mostro@mostro.ru (Type of entity):Large infrastructure construction company",Entity,AKA,,Russia,31/07/2018,31/12/2020,16/09/2022,13701 +MOSTOTREST; OPEN JOINT STOCK COMPANY 'MOSTOTREST',,,,,,,,,,,,,,,,,,,6 Barklaya Street,Bld. 5,,,,Moscow,121087,Russia,"(UK Sanctions List Ref):RUS0190 Business Sector: construction. Names of Director(s)/Management: Alexander N Poderegin, General Director Ultimate beneficial owner(s): Used to belong to Igor Rotenberg, but now belongs to Arkady Rotenberg, who has been sanctioned by the EU since 23/02/2015, and who is a long-time acquaintance of President Putin; who has developed his fortune during President Putin's tenure, and has been favoured by Russian decision-makers in the award of important contracts by the Russian State or by State-owned enterprises. (UK Statement of Reasons):Mostotrest has actively participated in the construction of the Kerch Bridge through its State contract for the maintenance of the Bridge, connecting Russia to the illegally annexed Crimean Peninsula. Furthermore, it is owned by an individual (Arkady Rotenberg) that is already designated for his actions undermining Ukrainian sovereignty. Therefore, the company is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity sovereignty and independence of Ukraine. (Phone number):+7(495)669-77-11 Fax. +7(495)669-79-99 (Email address):mostro@mostro.ru (Type of entity):Large infrastructure construction company",Entity,AKA,,Russia,31/07/2018,31/12/2020,16/09/2022,13701 +MOTAQI,Amir Khan,,,,,Mullah,امیر خان متقی,,,00/00/1968,"(1) Shin Kalai village, Nad-e-Ali District, Helmand Province. (2) Zurmat District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,(1) Minister of Education under the Taliban regime. (2) Taliban representative in UN-led talks under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0026 (UN Ref):TAi.026 Member of the Taliban Supreme Council as at June 2007. Believed to be in Afghanistan/Pakistan border area. Belongs to Sulaimankhel tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,25/01/2001,01/02/2021,7307 +MOTLAGH,Bahram,Hosseini,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):IHR0024 (UK Statement of Reasons):Former Head of the Army Command and General Staff College (DAFOOS). Former Head of the IRGC’s Seyyed al-Shohada Corps, Tehran Province. The Seyyed al-Shohada Corps played a key role in organising the repression of protests in 2009. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,28/01/2022,11783 +MOTMAEN,ABDULHAI,,,,,Maulavi,عبدالحی مطمئن,,,00/00/1973,"(1) Shinkalai village, Nad-e-Ali District, Helmand Province. (2) Zabul Province",(1) Afghanistan (2) Afghanistan,Afghanistan,OA462456,Afghanistan. Issued under the name Abdul Haq on 31 Jan 2012 (11-11-1390),,,(1) Director of the Information and Culture Department in Kandahar Province under the Taliban regime (2) Spokesperson of the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0042 (UN Ref):TAi.051 Family is originally from Zabul, but settled later in Helmand. Member of the Taliban Supreme Council and spokesperson for Mullah Mohammed Omar (TAi.004) as of 2007. Believed to be in Afghanistan/Pakistan border area. Belongs to Kharoti tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7309 +MOTONO,Kalev,,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MOTONO,Kalev,Katanga,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MOTONO,Kalev,Mutondo,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MOUAYYAD,Mohammad,Mouti',,,,,,,,01/01/1968,"Jericho, Idlib",,Syria,,,,,Former State Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0254 (UK Statement of Reasons):Former State Minister in power after May 2011 (appointed 27.8.2014). As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,22/10/2014,31/12/2020,19/01/2021,13159 +MOUAYYAD,Mohammad,Muti'a,,,,,,,,01/01/1968,"Jericho, Idlib",,Syria,,,,,Former State Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0254 (UK Statement of Reasons):Former State Minister in power after May 2011 (appointed 27.8.2014). As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,19/01/2021,13159 +MOUCHAWEH,Loubana,,,,,,,,,00/00/1955,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0361 (UK Statement of Reasons):Culture Minister. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Female",Individual,Primary name,,Syria,16/10/2020,31/12/2020,31/12/2020,13977 +MOUCHAWEH,Lubana,,,,,,,,,00/00/1955,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0361 (UK Statement of Reasons):Culture Minister. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Female",Individual,Primary name variation,,Syria,16/10/2020,31/12/2020,31/12/2020,13977 +MOUHADJIR,Abou,,,,,,ابو مهاجر,,,00/00/1972,"Faidh El Batma, Djelfa",Algeria,Algeria,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0326 (UN Ref):QDi.280 Convicted in absentia by Algerian tribunal on 28 Mar. 1996. Algerian international arrest warrant number 04/09 of 6 Jun. 2009 issued by the Tribunal of Sidi Mhamed, Algiers, Algeria. Algerian extradition request number 2307/09 of 3 Sep. 2009, presented to Malian authorities. Father’s name was Benazouz Nail. Mother’s name is Belkheiri Oum El Kheir. Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/05/2010,22/04/2010,31/12/2020,11097 +MOUHADJIR,Abou,,,,,,ابو مهاجر,,,00/00/1976,"Faidh El Batma, Djelfa",Algeria,Algeria,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0326 (UN Ref):QDi.280 Convicted in absentia by Algerian tribunal on 28 Mar. 1996. Algerian international arrest warrant number 04/09 of 6 Jun. 2009 issued by the Tribunal of Sidi Mhamed, Algiers, Algeria. Algerian extradition request number 2307/09 of 3 Sep. 2009, presented to Malian authorities. Father’s name was Benazouz Nail. Mother’s name is Belkheiri Oum El Kheir. Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/05/2010,22/04/2010,31/12/2020,11097 +MOULDI,Hamroui,Kamel,ben,,,,,,,21/10/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Bertesi Number 27,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +MOULDI,Hamroui,Kamel,ben,,,,,,,21/10/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Plebiscito Number 3,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +MOULDI,Hamroui,Kamel,ben,,,,,,,21/11/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Bertesi Number 27,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +MOULDI,Hamroui,Kamel,ben,,,,,,,21/11/1977,(1) Beja (2) -,(1) Tunisia (2) Morocco,Tunisia,P229856,"Issue date: 01/11/2002, expiry date: 31/10/2007",,,,Via Plebiscito Number 3,Cremona,,,,,,Italy,"(UK Sanctions List Ref):AQD0211 (UN Ref):QDi.140 Mother’s name is Khamisah al-Kathiri. Subject to a decree of expulsion, suspended on 17 Apr. 2007 by the European Court of Human Rights. Re-arrested in Italy on 20 May 2008. Deported from Italy to Tunisia on 6 May 2015. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7878 +MOULHEM,Kifah,,,,,,,,,,,,,,,,,Deputy Head of the Military Intelligence Division,,,,,,,,,(UK Sanctions List Ref):SYR0127 (UK Statement of Reasons):Former battalion Commander in the 4th Division. Appointed deputy head of the Military Intelligence Division in July 2015. Head of the Military Intelligence Directorate since March 2019 and the main individual responsible for the violent repression committed by the Military Intelligence Directorate ( Branch 248) throughout 2011 and 2012.Responsible for the crackdown on the civilian population in Deir ez-Zor. (Gender):Male,Individual,Primary name,,Syria,15/11/2011,31/12/2020,31/12/2020,12222 +MOULHIM,Kifah,,,,,,,,,,,,,,,,,Deputy Head of the Military Intelligence Division,,,,,,,,,(UK Sanctions List Ref):SYR0127 (UK Statement of Reasons):Former battalion Commander in the 4th Division. Appointed deputy head of the Military Intelligence Division in July 2015. Head of the Military Intelligence Directorate since March 2019 and the main individual responsible for the violent repression committed by the Military Intelligence Directorate ( Branch 248) throughout 2011 and 2012.Responsible for the crackdown on the civilian population in Deir ez-Zor. (Gender):Male,Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,31/12/2020,12222 +MOUQATEL,Abou,,,,,,,,,01/08/1983,Paris,France,(1) France. (2) Tunisia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0157 (UN Ref):QDi.375 French-Tunisian foreign terrorist fighter for Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897328.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,12/01/2022,13289 +MOUSSAVI,Seyed,Mohammad,Bagher,,,,,,,,,,,,,,,"Ahwaz Revolutionary Court judge, Branch 2",,,,,,,,,"(UK Sanctions List Ref):IHR0077 (UK Statement of Reasons):Ahwaz Revolutionary Court judge, Branch 2, imposed death sentences on five Ahwazi Arabs, Mohammad Ali Amouri, Hashem Sha'bani Amouri, Hadi Rashedi, Sayed Jaber Alboshoka, Sayed Mokhtar Alboshoka, on 17 March 2012 for ‘activities against national security’ and ‘enmity against God’. The sentences were upheld by Iran's Supreme Court on 9 January 2013. The five were arrested without charge for over a year, tortured and sentenced without due process. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/03/2013,31/12/2020,31/12/2020,12851 +MOUSTFA,Fjamel,,,,,,,,,22/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOUSTFA,Fjamel,,,,,,,,,26/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOUSTFA,Fjamel,,,,,,,,,,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOUSTFA,Fjamel,,,,,,,,,26/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOUSTFA,Fjamel,,,,,,,,,28/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOUSTFA,Fjamel,,,,,,,,,31/12/1979,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOUSTFA,Fjamel,,,,,,,,,10/06/1982,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOUSTFA,DJAMEL,,,,,,جمال مصطفى,,,22/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOUSTFA,DJAMEL,,,,,,جمال مصطفى,,,26/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOUSTFA,DJAMEL,,,,,,جمال مصطفى,,,,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOUSTFA,DJAMEL,,,,,,جمال مصطفى,,,26/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOUSTFA,DJAMEL,,,,,,جمال مصطفى,,,28/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOUSTFA,DJAMEL,,,,,,جمال مصطفى,,,31/12/1979,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOUSTFA,DJAMEL,,,,,,جمال مصطفى,,,10/06/1982,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MOUVEMENT DU 23 MARS,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):DRC0020 (UN Ref):CDe.006 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5277973 (Email address):mouvementdu23mars1@gmail.com,Entity,AKA,,Democratic Republic of the Congo,23/01/2013,31/12/2012,19/01/2021,12841 +MOUVEMENT POUR L'UNIFICATION ET LE JIHAD EN AFRIQUE DE L'OUEST (MUJAO),,,,,,,حركة التوحيد والجهاد في غرب إفريقيا,,,,,,,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0069 (UN Ref):QDe.134 Associated with The Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282020,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,12/12/2012,05/12/2012,12/01/2022,12829 +MOUVEMENT POUR L'UNIFICATION ET LE JIHAD EN AFRIQUE DE L'OUEST (MUJAO),,,,,,,حركة التوحيد والجهاد في غرب إفريقيا,,,,,,,,,,,,,,,,,,,Mali,(UK Sanctions List Ref):AQD0069 (UN Ref):QDe.134 Associated with The Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282020,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,12/12/2012,05/12/2012,12/01/2022,12829 +MOVASAGHNIA,Mohammad,Reza,,,,,,,,,,,,,,,,Former Director of SAIG,,,,,,,,Iran,"(UK Sanctions List Ref):INU0030 (UK Statement of Reasons):Former Head of Samen Al A'Emmeh Industries Group (SAIG), also known as the Cruise Missile Industry Group. (Gender):Male",Individual,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11164 +"MOVEMENT ""NOVOROSSIYA"" OF IGOR GIRKIN",,,,,,,Движение ‘Новороссия’ Игоря СТРЕЛКОВА,,,,,,,,,,,,"Occupies several rooms in the former Ptitsyn-Zalogina estate near the Taganskaya metro station (in Moscow, Russia)",,,,,,,,"(UK Sanctions List Ref):RUS0184 Management: Igor Srelkov Girking (subject to sanctions) (UK Statement of Reasons):The Movement “Novorossiya”/”New Russia” was established in November 2014 in Russia and is headed by Russian officer Igor Girkin a.k.a. Strelkov (identified as a staff member of the Main Intelligence Directorate of the General Staff of the Armed Forces of the Russian Federation (GRU)). Girkin is a defendant in the case of the shooting down of flight MH17 over Eastern Ukraine in 2014 that led to the death of 289 on board, including 196 Dutch nationals. The Dutch prosecutor is demanding life sentences for all defendants. According to its stated objectives, the Movement aims to provide all-round, effective assistance to “Novorossiya”, including by helping militia fighting in Eastern Ukraine, thereby supporting actions undermining the territorial integrity, sovereignty and independence of Ukraine. Associated with a person listed for undermining the territorial integrity of Ukraine. (Website):http://novorossia.pro (Type of entity):Public Movement",Entity,Primary name,,Russia,16/02/2015,31/12/2020,16/09/2022,13226 +"MOVEMENT ""NOVOROSSIYA"" OF IGOR STRELKOV",,,,,,,,,,,,,,,,,,,"Occupies several rooms in the former Ptitsyn-Zalogina estate near the Taganskaya metro station (in Moscow, Russia)",,,,,,,,"(UK Sanctions List Ref):RUS0184 Management: Igor Srelkov Girking (subject to sanctions) (UK Statement of Reasons):The Movement “Novorossiya”/”New Russia” was established in November 2014 in Russia and is headed by Russian officer Igor Girkin a.k.a. Strelkov (identified as a staff member of the Main Intelligence Directorate of the General Staff of the Armed Forces of the Russian Federation (GRU)). Girkin is a defendant in the case of the shooting down of flight MH17 over Eastern Ukraine in 2014 that led to the death of 289 on board, including 196 Dutch nationals. The Dutch prosecutor is demanding life sentences for all defendants. According to its stated objectives, the Movement aims to provide all-round, effective assistance to “Novorossiya”, including by helping militia fighting in Eastern Ukraine, thereby supporting actions undermining the territorial integrity, sovereignty and independence of Ukraine. Associated with a person listed for undermining the territorial integrity of Ukraine. (Website):http://novorossia.pro (Type of entity):Public Movement",Entity,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13226 +MOVEMENT NOVOROSSIYA OF IGNOR STRELKOV,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0175 Movement Novorossia of Igor Strelkov (UK Statement of Reasons):On 24 May 2014, the so-called “People’s Republics’ of Donetsk and Lugansk” signed an agreement on the creation of the unrecognised so-called ‘Federal State of Novorossiya’. This is in breach of Ukrainian constitutional law, thus threatening the territorial integrity, sovereignty and independence of Ukraine. (Website):(1) https://novorussia.su/official, https://novopressa.ru/ (2) https://novorussia-tv.ru/ (3) https://novorussia.today/ (4) http://novorossiia.ru/ (5) https://www.novorosinform.org/",Entity,AKA,,Russia,25/07/2014,31/12/2020,16/09/2022,13050 +MOVEMENT OF ISLAMIC HOLY WAR,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0047 (UN Ref):QDe.130 Was established in Afghanistan in 1980. In 1993, Harakat-ul Jihad Islami merged with Harakat ul-Mujahidin (QDe.008) to form Harakat ul-Ansar. In 1997, Harakat-ul Jihad Islami split from Harakat ul-Ansar and resumed using its former name. Operations are in India, Pakistan and Afghanistan. Banned in Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282215",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,06/09/2010,06/08/2010,31/12/2020,11270 +MOYO,Isaac,,,,,,,,,,,,Zimbabwe,,,,,"Director General, Central Intelligence Organisation (CIO)",,,,,,,,,"(UK Sanctions List Ref):ZIM0007 (UK Statement of Reasons):There are reasonable grounds to suspect that Isaac Moyo, as Director General of the Central Intelligence Organisation (CIO), has been responsible for acts that constitute serious human rights violations in the context of the heavy crackdown on protests in January 2019 by state security forces. There are also reasonable grounds to suspect that in directing ECONET to suspend all internet services in January 2019, which order the High Court subsequently ruled as illegal, Isaac Moyo has also been involved in other actions that undermined the rule of law in Zimbabwe. (Gender):Male",Individual,Primary name,,Zimbabwe,01/02/2021,01/02/2021,01/02/2021,14055 +MOZAFARI,Abolghassem,,,,,,,,,,,,,,,,,IRGC Officer,,,,,,,,,"(UK Sanctions List Ref):INU0001 (UK Statement of Reasons):Former Head of Khatam al-Anbiya Construction Headquarters, part of the IRGC and IRGC officer. (Gender):Male",Individual,Primary name variation,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12275 +MOZAFARI-SHAMS,Abolqasem,,,,,,,,,,,,,,,,,IRGC Officer,,,,,,,,,"(UK Sanctions List Ref):INU0001 (UK Statement of Reasons):Former Head of Khatam al-Anbiya Construction Headquarters, part of the IRGC and IRGC officer. (Gender):Male",Individual,Primary name variation,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12275 +MOZHILOVSKY,Igor,Vladimirovich,,,,Major General,МОЖИЛОВСКИЙ Игорь Владимирович,Cyrillic,,28/02/1971,Dubrovno,Belarus,Belarus,,,,,Assistant Minister of Defence for Military Economics and Finance,,,,,,,,,"(UK Sanctions List Ref):RUS0731 (UK Statement of Reasons):As Assistant to the Minister of Defence for Military Economics and Finance and member of the Armed Forces of Belarus, Major General Igor Vladimirovich MOZHILOVSKY is or has been involved in engaging or providing support for an action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine, namely, facilitating the movement of Russian troops across Belarus and providing logistical support to the Armed Forces of the Russian Federation in their ongoing military operations in Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14682 +MPAF,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0176 (UN Ref):KPe.054 The Ministry of the People’s Armed Forces manages the general administrative and logistical needs of the Korean People’s Army,Entity,AKA,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13575 +MPAMO,Douglas,Iruta,,,,,,,,28/12/1965,"(1) Bashali, Masisi. (2) Goma. (3) Uvira",(1) Congo (Democratic Republic). (2) Congo (Democratic Republic). (3) Congo (Democratic Republic).,Congo (Democratic Republic),,,,,,,,,,,Gisenyi,,Rwanda,(UK Sanctions List Ref):DRC0039 (UN Ref):CDi.011 No known occupation since two of the planes managed by Great Lakes Business Company (GLBC) crashed. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272813 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8711 +MPAMO,Douglas,Iruta,,,,,,,,29/12/1965,"(1) Bashali, Masisi. (2) Goma. (3) Uvira",(1) Congo (Democratic Republic). (2) Congo (Democratic Republic). (3) Congo (Democratic Republic).,Congo (Democratic Republic),,,,,,,,,,,Gisenyi,,Rwanda,(UK Sanctions List Ref):DRC0039 (UN Ref):CDi.011 No known occupation since two of the planes managed by Great Lakes Business Company (GLBC) crashed. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272813 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8711 +MPAMO,IRUTA DOUGLAS,,,,,,,,,28/12/1965,"(1) Bashali, Masisi. (2) Goma. (3) Uvira",(1) Congo (Democratic Republic). (2) Congo (Democratic Republic). (3) Congo (Democratic Republic).,Congo (Democratic Republic),,,,,,,,,,,Gisenyi,,Rwanda,(UK Sanctions List Ref):DRC0039 (UN Ref):CDi.011 No known occupation since two of the planes managed by Great Lakes Business Company (GLBC) crashed. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272813 (Gender):Male,Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8711 +MPAMO,IRUTA DOUGLAS,,,,,,,,,29/12/1965,"(1) Bashali, Masisi. (2) Goma. (3) Uvira",(1) Congo (Democratic Republic). (2) Congo (Democratic Republic). (3) Congo (Democratic Republic).,Congo (Democratic Republic),,,,,,,,,,,Gisenyi,,Rwanda,(UK Sanctions List Ref):DRC0039 (UN Ref):CDi.011 No known occupation since two of the planes managed by Great Lakes Business Company (GLBC) crashed. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272813 (Gender):Male,Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8711 +MPANO,,,,,,,,,,28/12/1965,"(1) Bashali, Masisi. (2) Goma. (3) Uvira",(1) Congo (Democratic Republic). (2) Congo (Democratic Republic). (3) Congo (Democratic Republic).,Congo (Democratic Republic),,,,,,,,,,,Gisenyi,,Rwanda,(UK Sanctions List Ref):DRC0039 (UN Ref):CDi.011 No known occupation since two of the planes managed by Great Lakes Business Company (GLBC) crashed. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272813 (Gender):Male,Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8711 +MPANO,,,,,,,,,,29/12/1965,"(1) Bashali, Masisi. (2) Goma. (3) Uvira",(1) Congo (Democratic Republic). (2) Congo (Democratic Republic). (3) Congo (Democratic Republic).,Congo (Democratic Republic),,,,,,,,,,,Gisenyi,,Rwanda,(UK Sanctions List Ref):DRC0039 (UN Ref):CDi.011 No known occupation since two of the planes managed by Great Lakes Business Company (GLBC) crashed. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272813 (Gender):Male,Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8711 +MPI VOLNA LLC,,,,,,,ООО МПИ-Волна,Cyrillic,Russian,,,,,,,,,,4A Plekhanova Street,"Unit XII, Floor 2",,,,Moscow,111123,Russia,"(UK Sanctions List Ref):RUS1440 OGRN 1027739824683 (UK Statement of Reasons):MPI VOLNA LLC is involved in supporting the Government of Russia by carrying on business in a sector of strategic significance, namely the electronics sector. (Phone number):7 495 223-47-72 (Website):https://www.mpi-volna.ru/ (Email address):general@mpi-volna.ru (Type of entity):Limited Liability Company (Business Reg No):Tax Identification Number: INN 7706001520",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15363 +MPI VOLNA LLC,,,,,,,ООО МПИ-Волна,Cyrillic,Russian,,,,,,,,,,29 Entuziastov Highway,Balashikha,,,,Moskovskaya Oblast,143907,Russia,"(UK Sanctions List Ref):RUS1440 OGRN 1027739824683 (UK Statement of Reasons):MPI VOLNA LLC is involved in supporting the Government of Russia by carrying on business in a sector of strategic significance, namely the electronics sector. (Phone number):7 495 223-47-72 (Website):https://www.mpi-volna.ru/ (Email address):general@mpi-volna.ru (Type of entity):Limited Liability Company (Business Reg No):Tax Identification Number: INN 7706001520",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15363 +MSHAWEH,Loubana,,,,,,,,,00/00/1955,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0361 (UK Statement of Reasons):Culture Minister. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Female",Individual,Primary name variation,,Syria,16/10/2020,31/12/2020,31/12/2020,13977 +MSHAWEH,Lubana,,,,,,,,,00/00/1955,Damascus,Syria,Syria,,,,,Former Minister of Culture,,,,,,,,,"(UK Sanctions List Ref):SYR0129 (UK Statement of Reasons):There are reasonable grounds to suspect that Lubana Mushaweh is or has been involved in the repression of the civilian population and/or supported or benefitted from the Syrian regime while in the capacity of Minister of Culture (initially from 2013 and presently since her re-appointment to this role in August 2021). Further, given her re-appointment, she remains associated with other members of the regime. (Gender):Female",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12778 +MSHAWEH,Lubana,,,,,,,,,00/00/1955,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0361 (UK Statement of Reasons):Culture Minister. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Female",Individual,Primary name variation,,Syria,16/10/2020,31/12/2020,31/12/2020,13977 +MSHAWEH,Lubanah,,,,,,,,,00/00/1955,Damascus,Syria,Syria,,,,,Former Minister of Culture,,,,,,,,,"(UK Sanctions List Ref):SYR0129 (UK Statement of Reasons):There are reasonable grounds to suspect that Lubana Mushaweh is or has been involved in the repression of the civilian population and/or supported or benefitted from the Syrian regime while in the capacity of Minister of Culture (initially from 2013 and presently since her re-appointment to this role in August 2021). Further, given her re-appointment, she remains associated with other members of the regime. (Gender):Female",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12778 +MSHAWWEHY,Lubana,,,,,,,,,00/00/1955,Damascus,Syria,Syria,,,,,Former Minister of Culture,,,,,,,,,"(UK Sanctions List Ref):SYR0129 (UK Statement of Reasons):There are reasonable grounds to suspect that Lubana Mushaweh is or has been involved in the repression of the civilian population and/or supported or benefitted from the Syrian regime while in the capacity of Minister of Culture (initially from 2013 and presently since her re-appointment to this role in August 2021). Further, given her re-appointment, she remains associated with other members of the regime. (Gender):Female",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12778 +MSHAWWEHY,Lubanah,,,,,,,,,00/00/1955,Damascus,Syria,Syria,,,,,Former Minister of Culture,,,,,,,,,"(UK Sanctions List Ref):SYR0129 (UK Statement of Reasons):There are reasonable grounds to suspect that Lubana Mushaweh is or has been involved in the repression of the civilian population and/or supported or benefitted from the Syrian regime while in the capacity of Minister of Culture (initially from 2013 and presently since her re-appointment to this role in August 2021). Further, given her re-appointment, she remains associated with other members of the regime. (Gender):Female",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12778 +MTFZC,,,,,,,,,,,,,,,,,,,PO Box 8032,,,,,Sharjah,,United Arab Emirates,"(UK Sanctions List Ref):INU0095 (UK Statement of Reasons):Involved in procurement and supply of restricted goods, in contravention of sanctions. (Phone number):+971 6 557 2051 (Fax): +971 6 557 2051 (Website):(1) bmmaaran@gmail.com (2) modernte@eim.ae (3) modernte@emirates.net.ae",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11945 +MUADZ,Abu,,,,,,,,,15/05/1972,"Punta, Santa Ana, Manila",Philippines,Philippines,,,,,,Ma. Bautista,,,Punta,Santa Ana,Manila,3111,Philippines,(UK Sanctions List Ref):AQD0293 (UN Ref):QDi.246 Member of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). Father's name is Fernando Rafael Dellosa. Mother's name is Editha Parado Cain. In detention in the Philippines as of Jan. 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10666 +MUALA,Mohamed,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Mohamed,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Mohamed,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Mohamed,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Mohamed,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Mohamed,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Mohammad,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Mohammad,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Mohammad,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Mohammad,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Mohammad,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Mohammad,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Mohammed,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Mohammed,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Mohammed,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Mohammed,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Mohammed,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Mohammed,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Muhammad,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Muhammad,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Muhammad,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Muhammad,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Muhammad,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALA,Muhammad,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MUALLA,Mohamed,,,,,,,,,00/00/1960,Jableh,,,,,,,Head of Syrian Military Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0172 (UK Statement of Reasons):Former head of the Syrian Military Intelligence (SMI), Branch 293 (Internal Affairs), since April 2015. Responsible for repression and violence against the civilian population in Damascus/Damascus countryside. Former Deputy Head of Political Security (2012), Officer of the Syrian Republican Guard and Vice-Director of the Political Security Directorate. Former Head of Military Police, Member of the National Security Bureau. (Gender):Male",Individual,Primary name variation,,Syria,29/05/2015,31/12/2020,31/12/2020,13252 +MUALLA,Muhamad,,,,,,,,,00/00/1960,Jableh,,,,,,,Head of Syrian Military Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0172 (UK Statement of Reasons):Former head of the Syrian Military Intelligence (SMI), Branch 293 (Internal Affairs), since April 2015. Responsible for repression and violence against the civilian population in Damascus/Damascus countryside. Former Deputy Head of Political Security (2012), Officer of the Syrian Republican Guard and Vice-Director of the Political Security Directorate. Former Head of Military Police, Member of the National Security Bureau. (Gender):Male",Individual,Primary name variation,,Syria,29/05/2015,31/12/2020,31/12/2020,13252 +MUALLA,Muhammad,,,,,,,,,00/00/1960,Jableh,,,,,,,Head of Syrian Military Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0172 (UK Statement of Reasons):Former head of the Syrian Military Intelligence (SMI), Branch 293 (Internal Affairs), since April 2015. Responsible for repression and violence against the civilian population in Damascus/Damascus countryside. Former Deputy Head of Political Security (2012), Officer of the Syrian Republican Guard and Vice-Director of the Political Security Directorate. Former Head of Military Police, Member of the National Security Bureau. (Gender):Male",Individual,Primary name variation,,Syria,29/05/2015,31/12/2020,31/12/2020,13252 +MU'ALLA,Badi',,,,,,بديع المعلا,,,00/00/1961,"Bistuwir, Jablah",Syria,Syria,,,,,Commander of Syrian Arab Air Force 63rd Brigade,,,,,,,,,"(UK Sanctions List Ref):SYR0025 (UK Statement of Reasons):Holds the rank of Brigadier General, a senior officer and Commander of 63rd Brigade of the Syrian Air Force, in post after May 2011. Operates in the chemical weapons proliferation sector and, as Commander of the 63rd Brigade during the period investigated by the Joint Investigative Mechanism (JIM), is responsible for the violent repression against the civilian population through the use of chemical weapons by the 63rd Brigade in Talmenes (21 April 2014), Qmenas (16 March 2015) and Sarmin (16 March 2015). (Gender):Male",Individual,Primary name,,Syria,21/03/2017,31/12/2020,31/12/2020,13453 +MUAMAR,Abu,,,,,,,,,03/09/1962,Makassar,Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0335 (UN Ref):QDi.123 At large as at Dec. 2003. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424789,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7834 +MUATASIMBLLAH,,,,,,,,,,00/00/1976,Tripoli,Libya,Libya,B/001897,(Libyan),,,National Security Adviser,,,,,,,,,"(UK Sanctions List Ref):LIB0059 (UN Ref):LYi.014 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban,Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on 20 October 2011. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525915",Individual,AKA,Low quality,Libya,27/02/2011,26/02/2011,18/02/2021,11639 +MUATASIMBLLAH,,,,,,,,,,05/02/1974,Tripoli,Libya,Libya,B/001897,(Libyan),,,National Security Adviser,,,,,,,,,"(UK Sanctions List Ref):LIB0059 (UN Ref):LYi.014 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban,Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on 20 October 2011. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525915",Individual,AKA,Low quality,Libya,27/02/2011,26/02/2011,18/02/2021,11639 +MUATASMBLLA,,,,,,,,,,00/00/1976,Tripoli,Libya,Libya,B/001897,(Libyan),,,National Security Adviser,,,,,,,,,"(UK Sanctions List Ref):LIB0059 (UN Ref):LYi.014 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban,Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on 20 October 2011. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525915",Individual,AKA,Low quality,Libya,27/02/2011,26/02/2011,18/02/2021,11639 +MUATASMBLLA,,,,,,,,,,05/02/1974,Tripoli,Libya,Libya,B/001897,(Libyan),,,National Security Adviser,,,,,,,,,"(UK Sanctions List Ref):LIB0059 (UN Ref):LYi.014 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban,Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on 20 October 2011. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525915",Individual,AKA,Low quality,Libya,27/02/2011,26/02/2011,18/02/2021,11639 +MUAZ,Al Zawahry Aiman,Mohamed,Rabi,Abdel,,,,,,19/06/1951,Giza,Egypt,Egypt,(1) 1084010 (2) 19820215,(1) Egyptian (2) - .,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0126 (UN Ref):QDi.006 Leader of Al-Qaida (QDe.004). Former operational and military leader of Egyptian Islamic Jihad (QDe.003), was a close associate of Usama Bin Laden (deceased). Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487197",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7016 +MUBARAK AL-BATHALI,Mubarak,Mushakhas,Sanad,,,,مبارك مشخص سند مبارك البذال,,,01/10/1961,,Kuwait,Kuwait,(1) 101856740 (2) 002955916,"(1) Kuwait number, issued on 12 May 2005 (and expired on 11 May 2007) (2) Kuwait number",261122400761,Kuwait,,,,,,,Al-Salibekhat area,,Kuwait,"(UK Sanctions List Ref):AQD0258 (UN Ref):QDi.238 Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518768. Address country Kuwait, (residence as at March 2009)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/01/2008,16/01/2008,31/12/2020,9226 +MUBAROK,,,,,,,,,,03/09/1962,Makassar,Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0335 (UN Ref):QDi.123 At large as at Dec. 2003. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424789,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7834 +MUBAROK,Muhamad,,,,,,,,,03/09/1962,Makassar,Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0335 (UN Ref):QDi.123 At large as at Dec. 2003. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424789,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7834 +MUCCHAD,,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +MUCCHAD,,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +MUCCHAD,,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +MUDACUMURA,,,,,,General,,,,00/00/1954,"Cellule Ferege, Gatumba, sector Kibilira commune, Gisenyi Prefecture",Rwanda,Rwanda,,,,,FDLR-FOCA Commander and FDLR-FOCA Lieutenant General,,,,,,North Kivu Province,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0057 (UN Ref):CDi.012 The International Criminal Court issued an arrest warrant for Mudacumura on 12 July 2012 for nine counts of war crimes, including attacking civilians, murder, mutilation, cruel treatment, rape, torture, destruction of property, pillaging and outrages against personal dignity, allegedly committed between 2009 and 2010 in the DRC. (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8714 +MUDACUMURA,SYLVESTRE,,,,,,,,,00/00/1954,"Cellule Ferege, Gatumba, sector Kibilira commune, Gisenyi Prefecture",Rwanda,Rwanda,,,,,FDLR-FOCA Commander and FDLR-FOCA Lieutenant General,,,,,,North Kivu Province,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0057 (UN Ref):CDi.012 The International Criminal Court issued an arrest warrant for Mudacumura on 12 July 2012 for nine counts of war crimes, including attacking civilians, murder, mutilation, cruel treatment, rape, torture, destruction of property, pillaging and outrages against personal dignity, allegedly committed between 2009 and 2010 in the DRC. (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8714 +MUDDARIS,Abdullah,,,,,,,,,04/10/1972,"Sitio Banga Maiti, Barangay Tranghawan, Lambunao, Iloilo",Philippines,Philippines,(1) MM611523 (2) EE947317 (3) P421967,(1) Philippines number (2004) (2) Philippines number 2000-2001 (3) Philippines number (1995-1997),,,,10th Avenue,,,,,Caloocan City,,Philippines,(UK Sanctions List Ref):AQD0296 (UN Ref):QDi.247 Spiritual leader of the Rajah Solaiman Movement (QDe.128). Associated with Khadafi Abubakar Janjalani (deceased). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10667 +MUDDE,Samuel,Peter,,,,,,,,14/10/1946,(1) Mouila (2) Izo,(1) Gabon (2) South Sudan,(1) Central African Republic. (2) South Sudan,D00002264,"Issued on 11 Jun. 2013. Issued by the Minister of Foreign Affairs, in Juba, South Sudan. Expires on 11 Jun. 2017. Diplomatic passport issued under name Samuel Peter Mudde.",M4800002143743,Personal number on passport,,,,,,,Bangui,,Central African Republic,(UK Sanctions List Ref):CAF0003 (UN Ref):CFi.001 Mother’s name is Martine Kofio. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Central African Republic (since his return from Uganda in December 2019),Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12998 +MUDDE,Samuel,Peter,,,,,,,,16/12/1948,(1) Mouila (2) Izo,(1) Gabon (2) South Sudan,(1) Central African Republic. (2) South Sudan,D00002264,"Issued on 11 Jun. 2013. Issued by the Minister of Foreign Affairs, in Juba, South Sudan. Expires on 11 Jun. 2017. Diplomatic passport issued under name Samuel Peter Mudde.",M4800002143743,Personal number on passport,,,,,,,Bangui,,Central African Republic,(UK Sanctions List Ref):CAF0003 (UN Ref):CFi.001 Mother’s name is Martine Kofio. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Central African Republic (since his return from Uganda in December 2019),Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12998 +MUDIR,,,,,,Haji,,,,00/00/1961,"Zurmat District, Paktia Province",Afghanistan,Afghanistan,,,,,(1) Director of Administrative Affairs under the Taliban regime. (2) Minister of Finance under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0009 (UN Ref):TAi.005 Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Low quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7022 +MUFLEH,Mohammad,,,,,,,,,,,,Syria,,,,,Head of Military Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0166 (UK Statement of Reasons):Head of Syrian Military Intelligence in the town of Hama, involved in the crackdown on demonstrators (Gender):Male",Individual,Primary name,,Syria,02/08/2011,31/12/2020,31/12/2020,12026 +MUGARAGU,LEODOMIR,,,,,,,,,00/00/1953,"(1) Kigali. (2) Rushashi, (Northern Province)",(1) Rwanda. (2) Rwanda,Rwanda,,,,,FDLR-FOCA Chief of Staff,FDLR HQ,at Kikoma forest,Bogoyi,Walikale,North Kivu,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0047 (UN Ref):CDi.013 FDLR-FOCA Chief of Staff, in charge of administration. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270747 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,03/12/2010,01/12/2010,31/12/2020,11279 +MUGARAGU,LEODOMIR,,,,,,,,,00/00/1954,"(1) Kigali. (2) Rushashi, (Northern Province)",(1) Rwanda. (2) Rwanda,Rwanda,,,,,FDLR-FOCA Chief of Staff,FDLR HQ,at Kikoma forest,Bogoyi,Walikale,North Kivu,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0047 (UN Ref):CDi.013 FDLR-FOCA Chief of Staff, in charge of administration. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270747 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,03/12/2010,01/12/2010,31/12/2020,11279 +MUHABAK,Mohamad,Dhafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MUHABAK,Mohamad,Zafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MUHABAK,Mohamed,Dhafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MUHABAK,Mohamed,Zafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MUHABAK,Mohammad,Dhafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MUHABAK,Mohammad,Zafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MUHABAK,Mohammed,Dhafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MUHABAK,Mohammed,Zafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MUHABBAK,Mohamad,Dhafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MUHABBAK,Mohamad,Zafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MUHABBAK,Mohamed,Dhafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MUHABBAK,Mohamed,Zafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MUHABBAK,Mohammad,Dhafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MUHABBAK,Mohammad,Zafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MUHABBAK,Mohammed,Dhafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MUHABBAK,Mohammed,Zafer,,,,,,,,00/00/1945,Aleppo,,Syria,,,,,Former Minister of Economy and Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0253 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12773 +MUHAJER,Sanaullah,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,Primary name variation,,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MUHAJER,Sanaullah,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,Kunduz,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,Primary name variation,,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MUHAJER,Shahab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MUHAJER,Shahab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,Kunduz,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MUHAJER,Shihab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MUHAJER,Shihab,,,,,,,,,28/10/1994,,Afghanistan,Afghanistan,,,,,ISIL-K Leader,,,,,,Kunduz,,Afghanistan,"(UK Sanctions List Ref):AQD0374 (UN Ref):QDi.431 Sanaullah Ghafari, also known as Shahab al-Muhajir, is the overall emir of ISIL-K. He was appointed by the ISIS core to lead ISIL-K in June 2020. Ghafari is responsible for approving all ISIL-K operations throughout Afghanistan and arranging funding to conduct operations. As the leader of ISIL-K, he has been responsible for multiple terrorist attacks resulting in hundreds of deaths in 2021.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/12/2021,21/12/2021,16/02/2022,14169 +MUHAJIR,Musa,,,,,,,,,15/04/1982,,Somalia,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0016 (UN Ref):SOi.017,Individual,AKA,Good quality,Somalia,09/03/2018,08/03/2018,31/12/2020,13619 +MUHAJIR,Musa,,,,,,,,,15/04/1982,,Somalia,Somalia,,,,,,,,,,,Mombasa,,Kenya,(UK Sanctions List Ref):SOM0016 (UN Ref):SOi.017,Individual,AKA,Good quality,Somalia,09/03/2018,08/03/2018,31/12/2020,13619 +MUHALLA,Mohamed,,,,,,,,,00/00/1960,Jableh,,,,,,,Head of Syrian Military Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0172 (UK Statement of Reasons):Former head of the Syrian Military Intelligence (SMI), Branch 293 (Internal Affairs), since April 2015. Responsible for repression and violence against the civilian population in Damascus/Damascus countryside. Former Deputy Head of Political Security (2012), Officer of the Syrian Republican Guard and Vice-Director of the Political Security Directorate. Former Head of Military Police, Member of the National Security Bureau. (Gender):Male",Individual,Primary name variation,,Syria,29/05/2015,31/12/2020,31/12/2020,13252 +MUHALLA,Muhamad,,,,,,,,,00/00/1960,Jableh,,,,,,,Head of Syrian Military Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0172 (UK Statement of Reasons):Former head of the Syrian Military Intelligence (SMI), Branch 293 (Internal Affairs), since April 2015. Responsible for repression and violence against the civilian population in Damascus/Damascus countryside. Former Deputy Head of Political Security (2012), Officer of the Syrian Republican Guard and Vice-Director of the Political Security Directorate. Former Head of Military Police, Member of the National Security Bureau. (Gender):Male",Individual,Primary name variation,,Syria,29/05/2015,31/12/2020,31/12/2020,13252 +MUHALLA,Muhammad,,,,,,,,,00/00/1960,Jableh,,,,,,,Head of Syrian Military Intelligence,,,,,,,,,"(UK Sanctions List Ref):SYR0172 (UK Statement of Reasons):Former head of the Syrian Military Intelligence (SMI), Branch 293 (Internal Affairs), since April 2015. Responsible for repression and violence against the civilian population in Damascus/Damascus countryside. Former Deputy Head of Political Security (2012), Officer of the Syrian Republican Guard and Vice-Director of the Political Security Directorate. Former Head of Military Police, Member of the National Security Bureau. (Gender):Male",Individual,Primary name variation,,Syria,29/05/2015,31/12/2020,31/12/2020,13252 +MUHAMADMUHTAR,,,,,,,Мухамадмухтар,,,09/03/1981,"Iki-Burul Village, Iki-Burulskiy District, Republic of Kalmykia",Russia,Russia,8208 No. 555627,"(Russian). Issued by Leninskiy Office, Directorate of the Federal Migration Service of the Russian Federation for the Republic of Dagestan.",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0297 (UN Ref):QDi.398 Led a group of over 160 terrorist fighters, which operates in the Republics of Dagestan, Chechnya and Ingushetia, Russian Federation. Killed on 3 December 2016 in Makhachkala, the Republic of Dagestan, Russian Federation. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5993047 (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,16/12/2016,12/12/2016,12/01/2022,13440 +MUHAMMAD,Aboud,Rogo,,,,,,,,11/11/1960,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +MUHAMMAD,Aboud,Rogo,,,,,,,,11/11/1967,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +MUHAMMAD,Aboud,Rogo,,,,,,,,11/11/1969,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +MUHAMMAD,Aboud,Rogo,,,,,,,,01/01/1969,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +MUHAMMAD,Abu,,,,,,,,,24/09/1959,Al-Khitan area,Kuwait,Kuwait,(1) 101423404 (2) 2541451 (3) 002327881,(1) - (2) Kuwait number valid until 16 Feb. 2017 (3) Kuwait number,259092401188,Kuwait,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0210 (UN Ref):QDi.237 Previously listed between 16 Jan. 2008 and 3 Jan. 2014 (amended on 1 Jul. 2008, 23 Jul. 2008, 25 Jan. 2010). Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518755. Address country Kuwait, residence as at March 2009 and at December 2013",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,03/01/2014,31/12/2020,9225 +MUHAMMAD,Abu,,,,,,Абу Мухаммад,,,09/03/1981,"Iki-Burul Village, Iki-Burulskiy District, Republic of Kalmykia",Russia,Russia,8208 No. 555627,"(Russian). Issued by Leninskiy Office, Directorate of the Federal Migration Service of the Russian Federation for the Republic of Dagestan.",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0297 (UN Ref):QDi.398 Led a group of over 160 terrorist fighters, which operates in the Republics of Dagestan, Chechnya and Ingushetia, Russian Federation. Killed on 3 December 2016 in Makhachkala, the Republic of Dagestan, Russian Federation. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5993047 (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,16/12/2016,12/12/2016,12/01/2022,13440 +MUHAMMAD,Akhtar,Mohammad,Mansour,Khan,,,,,,00/00/1960,"Band-e-Timur village, Maiwand District, Kandahar Province",Afghanistan,Afghanistan,SE-011697,"Afghanistan number, issued on 25 Jan. 1988, issued in Kabul, Afghanistan (expired on 23 Feb. 2000)",,,Minister of Civil Aviation and Transportation under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0014 (UN Ref):TAi.011 Involved in drug trafficking as of 2011, primarily through Gerd-e-Jangal, Afghanistan. Active in the provinces of Khost, Paktia and Paktika, Afghanistan as of May 2007. Taliban ""Governor"" of Kandahar as of May 2007. Deputy to Mullah Abdul Ghani Baradar (TAi.024) in the Taliban Supreme Council as of 2009. Taliban official responsible for four southern provinces of Afghanistan. Following the arrest of Mullah Baradar in February 2010 he was temporarily-in-charge of the Taliban Supreme Council. Believed to be in Afghanistan/Pakistan border area. Belongs to Ishaqzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. Reportedly killed in May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7269 +MUHAMMAD,Akhtar,Mohammad,Mansour,Khan,,,,,,00/00/1966,"Band-e-Timur village, Maiwand District, Kandahar Province",Afghanistan,Afghanistan,SE-011697,"Afghanistan number, issued on 25 Jan. 1988, issued in Kabul, Afghanistan (expired on 23 Feb. 2000)",,,Minister of Civil Aviation and Transportation under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0014 (UN Ref):TAi.011 Involved in drug trafficking as of 2011, primarily through Gerd-e-Jangal, Afghanistan. Active in the provinces of Khost, Paktia and Paktika, Afghanistan as of May 2007. Taliban ""Governor"" of Kandahar as of May 2007. Deputy to Mullah Abdul Ghani Baradar (TAi.024) in the Taliban Supreme Council as of 2009. Taliban official responsible for four southern provinces of Afghanistan. Following the arrest of Mullah Baradar in February 2010 he was temporarily-in-charge of the Taliban Supreme Council. Believed to be in Afghanistan/Pakistan border area. Belongs to Ishaqzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. Reportedly killed in May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7269 +MUHAMMAD,Allah,,,,,,,,,00/00/1957,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +MUHAMMAD,Allah,,,,,,,,,00/00/1957,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +MUHAMMAD,Allah,,,,,,,,,00/00/1960,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +MUHAMMAD,Allah,,,,,,,,,00/00/1960,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +MUHAMMAD,Allah,,,,,,,,,01/01/1963,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +MUHAMMAD,Allah,,,,,,,,,01/01/1963,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +MUHAMMAD,Hussein,,,,,,,,,00/00/1965,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +MUHAMMAD,Hussein,,,,,,,,,01/01/1964,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +MUHAMMAD,Mustafa,,,,,,,,,00/08/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +MUHAMMAD,Mustafa,,,,,,,,,00/09/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +MUHAMMAD,Mustafa,,,,,,,,,00/00/1976,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +MUHAMMAD,ALLAH DAD,TAYEB,WALI,,,(1) Mullah (2) Haji,الله داد طیب ولی محمد,,,00/00/1963,"(1) Ghorak District, Kandahar Province. (2) Nesh District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Deputy Minister of Communication under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0018 (UN Ref):TAi.016 Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Deceased as of November 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7483 +MUHAMMAD JAMAL GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +MUHAMMAD JAMAL GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +MUHAMMAD JAMAL GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +MUHAMMAD JAMAL NETWORK,,,,,,,شبكة محمد جمال,,,,,,,,,,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +MUHAMMAD JAMAL NETWORK,,,,,,,شبكة محمد جمال,,,,,,,,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +MUHAMMAD JAMAL NETWORK,,,,,,,شبكة محمد جمال,,,,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0070 (UN Ref):QDe.136 Terrorist and paramilitary group established by Muhammad Jamal al Kashif (QDi.318) in 2011 and linked to Al-Qaida (QDe.004), Aiman al-Zawahiri (QDi.006), and the leadership of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Funded and supported by AQAP. Multiple terrorist training camps in Egypt and Libya. Reportedly acquiring weapons, conducting training and establishing terrorist groups in the Sinai, Egypt. Training suicide bombers, foreign fighters and planning terrorist attacks in Egypt, Libya and elsewhere as of Sep. 2013. MJN members were reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5719715",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,31/12/2020,12885 +MUHAMMAD JUMA,Najibullah,,,,,Maulavi,نجيب الله محمد جمعه,,,00/00/1958,"Zere Kohi area, Shindand District, Farah Province",Afghanistan,Afghanistan,000737,(Afghan). Issued 20 Oct 1996,,,"Consul General, Taliban Consulate General, Peshawar, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0101 (UN Ref):TAi.132 Member of Taliban Peshawar Military Council as at 2010. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7356 +MUHAMMADI GUL,Mohammad,Moslim,Haqqani,,,Maulavi,محمد مسلم حقانى محمدی گل,,,00/00/1965,"Gawargan village, Pul-e-Khumri District, Baghlan Province",Afghanistan,Afghanistan,,,1136,(Afghan) (tazkira),(1) Deputy Minister of Haj and Religious Affairs under the Taliban regime (2) Deputy Minister of Higher Education under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0057 (UN Ref):TAi.073 Ethnic Pashtun from Baghlan Province. Believed to be in Afghanistan/Pakistan border area. Speaks fluent English, Urdu and Arabic. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7169 +MUHELISI,,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +MUHELISI,,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +MUHINDO,Akili,,,,,,,,,10/11/1972,,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) DRC Armed Forces (FARDC) General, Commander of the 31st Brigade (2) FARDC Brigadier General",,,,,,,,,"(UK Sanctions List Ref):DRC0051 (UN Ref):CDi.032 Muhindo Akili Mundos is an FARDC General, Commander of the 31st Brigade. He was appointed commander of the FARDC’s Operational Sector in the areas of Beni and Lubero, including Operation Sukola I against the Allied Democratic Forces (ADF) in September 2014. He remained in that position until June 2015. He is also a threat to the peace, stability and security of the DRC under UNSCR 2293 paragraph 7(e). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6194813",Individual,AKA,Good quality,Democratic Republic of the Congo,02/02/2018,01/02/2018,19/01/2021,13604 +MUJAAHIDIIN YOUTH MOVEMENT,,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +MUJAHID,MOHAMMED,YAHYA,,,,,,,,12/03/1961,"Lahore, Punjab Province",Pakistan,Pakistan,,,35404-1577309-9,,,,,,,,,,,(UK Sanctions List Ref):AQD0247 (UN Ref):QDi.272 Associated with Lashkar-e-Tayyiba (QDe.118). In detention as at June 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578066,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10907 +MUJAHIDEEN YOUTH MOVEMENT (MYM),,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +MUJAHIDIN AL-SHABAAB MOVEMENT,,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +MUJAHIDIN INDONESIA BARAT MIB,,,,,,,,,,,,,,,,,,,,,,,,,,Indonesia,"(UK Sanctions List Ref):AQD0071 (UN Ref):QDe.150 Terrorist group linked to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), Jemaah Islamiyah (JI) (QDe.092), and Jemmah Anshorut Tauhid (JAT) (QDe.133). Operates in Java and Sulawesi, Indonesia and also active in Indonesia’s eastern provinces. Its former leader was Abu Wardah, a.k.a. Santoso (deceased). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5919482",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,12/01/2022,13304 +MUJAHIDIN INDONESIA TIMOR,,,,,,,,,,,,,,,,,,,,,,,,,,Indonesia,"(UK Sanctions List Ref):AQD0071 (UN Ref):QDe.150 Terrorist group linked to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), Jemaah Islamiyah (JI) (QDe.092), and Jemmah Anshorut Tauhid (JAT) (QDe.133). Operates in Java and Sulawesi, Indonesia and also active in Indonesia’s eastern provinces. Its former leader was Abu Wardah, a.k.a. Santoso (deceased). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5919482",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,12/01/2022,13304 +MUJAHIDIN INDONESIAN TIMUR,,,,,,,,,,,,,,,,,,,,,,,,,,Indonesia,"(UK Sanctions List Ref):AQD0071 (UN Ref):QDe.150 Terrorist group linked to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), Jemaah Islamiyah (JI) (QDe.092), and Jemmah Anshorut Tauhid (JAT) (QDe.133). Operates in Java and Sulawesi, Indonesia and also active in Indonesia’s eastern provinces. Its former leader was Abu Wardah, a.k.a. Santoso (deceased). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5919482",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,12/01/2022,13304 +MUJAHIDIN OF EASTERN INDONESIA,,,,,,,,,,,,,,,,,,,,,,,,,,Indonesia,"(UK Sanctions List Ref):AQD0071 (UN Ref):QDe.150 Terrorist group linked to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), Jemaah Islamiyah (JI) (QDe.092), and Jemmah Anshorut Tauhid (JAT) (QDe.133). Operates in Java and Sulawesi, Indonesia and also active in Indonesia’s eastern provinces. Its former leader was Abu Wardah, a.k.a. Santoso (deceased). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5919482",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,12/01/2022,13304 +MUJAHIDIN OF WESTERN INDONESIA,,,,,,,,,,,,,,,,,,,,,,,,,,Indonesia,"(UK Sanctions List Ref):AQD0071 (UN Ref):QDe.150 Terrorist group linked to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), Jemaah Islamiyah (JI) (QDe.092), and Jemmah Anshorut Tauhid (JAT) (QDe.133). Operates in Java and Sulawesi, Indonesia and also active in Indonesia’s eastern provinces. Its former leader was Abu Wardah, a.k.a. Santoso (deceased). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5919482",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,12/01/2022,13304 +MUJAHIDIN YOUTH MOVEMENT,,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +MUJIB,Abdul,,,,,,,,,15/09/1973,"24 Paraiso Street, Barangay Poblacion, Mandaluyong City",Philippines,Philippines,,,,,,Barangay Mangayao,,,,Tagkawayan,Quezon,,Philippines,(UK Sanctions List Ref):AQD0295 (UN Ref):QDi.248 Member of the Rajah Solaiman Movement (QDe.128). Arrested by the Philippines authorities on 14 Mar. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10668 +MUJIB,Abdul,,,,,,,,,15/09/1973,"24 Paraiso Street, Barangay Poblacion, Mandaluyong City",Philippines,Philippines,,,,,,Barangay Tigib,,,,Ayungon,Negros Oriental,,Philippines,(UK Sanctions List Ref):AQD0295 (UN Ref):QDi.248 Member of the Rajah Solaiman Movement (QDe.128). Arrested by the Philippines authorities on 14 Mar. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10668 +MUJYAMBERE,LEOPOLD,,,,,,,,,00/00/1966,Kigali,Rwanda,Rwanda,,,,,FDLR-FOCA Chief of Staff. FDLR-FOCA Interim Deputy Commander,,,,,,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0048 (UN Ref):CDi.014 Became acting FDLR-FOCA Deputy Commander in 2014. Captured in Goma, DRC by Congolese security services in early May 2016 and transferred to Kinshasa. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5224709 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,04/03/2009,03/03/2009,21/01/2021,10679 +MUJYAMBERE,LEOPOLD,,,,,,,,,17/03/1962,Kigali,Rwanda,Rwanda,,,,,FDLR-FOCA Chief of Staff. FDLR-FOCA Interim Deputy Commander,,,,,,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0048 (UN Ref):CDi.014 Became acting FDLR-FOCA Deputy Commander in 2014. Captured in Goma, DRC by Congolese security services in early May 2016 and transferred to Kinshasa. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5224709 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,04/03/2009,03/03/2009,21/01/2021,10679 +MUKAVOZCHYK,Andrei,Mikalaevich,,,,,,,,13/06/1963,Novosibirsk,Russia,Belarus,(1) MP 3413113 (2) MP 2387911,,,,"Political Observer, Belarus Segodnya (Belarus Today)",Belarus Segodnya,10a Khmelnitskogo St,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0115 (UK Statement of Reasons):Andrei Nikolaevich MUKOVOZCHYK is a propagandist of the Lukashenko regime. He is a journalist publishing in “Belarus Segodnya"", the official (state-owned) newspaper of the Presidential Administration. His published opinions/articles are one of the main mouthpieces of state propaganda and include death threats against those who oppose the regime as well as belittling and discrediting independent journalists and opposition supporters who seek to demonstrate evidence of serious human rights violations committed by the regime. His journalism is specifically endorsed by the Lukashenko regime as it is the subject of several state sponsored awards. MUKOVOZCHYK therefore is or has been involved in repressing civil society and democratic opposition in Belarus and for serious human rights violations in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,16/02/2022,14158 +MUKAVOZCHYK,Andrei,Mikalaievich,,,,,Андрэй Міĸалаевіч МУКАВОЗЧЫК,,,13/06/1963,Novosibirsk,Russia,Belarus,(1) MP 3413113 (2) MP 2387911,,,,"Political Observer, Belarus Segodnya (Belarus Today)",Belarus Segodnya,10a Khmelnitskogo St,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0115 (UK Statement of Reasons):Andrei Nikolaevich MUKOVOZCHYK is a propagandist of the Lukashenko regime. He is a journalist publishing in “Belarus Segodnya"", the official (state-owned) newspaper of the Presidential Administration. His published opinions/articles are one of the main mouthpieces of state propaganda and include death threats against those who oppose the regime as well as belittling and discrediting independent journalists and opposition supporters who seek to demonstrate evidence of serious human rights violations committed by the regime. His journalism is specifically endorsed by the Lukashenko regime as it is the subject of several state sponsored awards. MUKOVOZCHYK therefore is or has been involved in repressing civil society and democratic opposition in Belarus and for serious human rights violations in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,16/02/2022,14158 +MUKHAMETSHIN,Farit,Mubarakshevich,,,,,Фарит Мубаракшевич МУХАМЕТШИН,,,31/01/1947,Tartarstan,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0920 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14871 +MUKHTAR,Shaykh,,,,,,,,,10/07/1977,Hargeysa,Somalia,Somalia,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0005 (UN Ref):SOi.004,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11091 +MUKOVOZCHIK,Andrei,Nikolaevich,,,,,Андрей Ниĸолаевич МУКОВОЗЧИК,,,13/06/1963,Novosibirsk,Russia,Belarus,(1) MP 3413113 (2) MP 2387911,,,,"Political Observer, Belarus Segodnya (Belarus Today)",Belarus Segodnya,10a Khmelnitskogo St,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0115 (UK Statement of Reasons):Andrei Nikolaevich MUKOVOZCHYK is a propagandist of the Lukashenko regime. He is a journalist publishing in “Belarus Segodnya"", the official (state-owned) newspaper of the Presidential Administration. His published opinions/articles are one of the main mouthpieces of state propaganda and include death threats against those who oppose the regime as well as belittling and discrediting independent journalists and opposition supporters who seek to demonstrate evidence of serious human rights violations committed by the regime. His journalism is specifically endorsed by the Lukashenko regime as it is the subject of several state sponsored awards. MUKOVOZCHYK therefore is or has been involved in repressing civil society and democratic opposition in Belarus and for serious human rights violations in Belarus. (Gender):Male",Individual,Primary name,,Belarus,02/12/2021,02/12/2021,16/02/2022,14158 +MUKOVOZCHIK,Andrey,Nikolaevich,,,,,,,,13/06/1963,Novosibirsk,Russia,Belarus,(1) MP 3413113 (2) MP 2387911,,,,"Political Observer, Belarus Segodnya (Belarus Today)",Belarus Segodnya,10a Khmelnitskogo St,,,,Minsk,220013,Belarus,"(UK Sanctions List Ref):BEL0115 (UK Statement of Reasons):Andrei Nikolaevich MUKOVOZCHYK is a propagandist of the Lukashenko regime. He is a journalist publishing in “Belarus Segodnya"", the official (state-owned) newspaper of the Presidential Administration. His published opinions/articles are one of the main mouthpieces of state propaganda and include death threats against those who oppose the regime as well as belittling and discrediting independent journalists and opposition supporters who seek to demonstrate evidence of serious human rights violations committed by the regime. His journalism is specifically endorsed by the Lukashenko regime as it is the subject of several state sponsored awards. MUKOVOZCHYK therefore is or has been involved in repressing civil society and democratic opposition in Belarus and for serious human rights violations in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,02/12/2021,02/12/2021,16/02/2022,14158 +MUKULU,JAMIL,,,,,,,,,00/00/1965,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +MUKULU,JAMIL,,,,,,,,,01/01/1964,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +MU'LA,Mohamed,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Mohamed,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Mohamed,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Mohamed,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Mohamed,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Mohamed,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Mohammad,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Mohammad,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Mohammad,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Mohammad,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Mohammad,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Mohammad,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Mohammed,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Mohammed,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Mohammed,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Mohammed,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Mohammed,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Mohammed,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Muhammad,Yahia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Muhammad,Yahiya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Muhammad,Yahya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Muhammad,Yehya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Muhammad,Yihia,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MU'LA,Muhammad,Yihya,,,,,,,,00/00/1951,,Syria,,,,,,Former Minister of Higher Education,,,,,,,,,"(UK Sanctions List Ref):SYR0149 (UK Statement of Reasons):Former Minister of Higher Education within the Assad regime appointed after May 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12771 +MULHEM,Kifah,,,,,,,,,,,,,,,,,Deputy Head of the Military Intelligence Division,,,,,,,,,(UK Sanctions List Ref):SYR0127 (UK Statement of Reasons):Former battalion Commander in the 4th Division. Appointed deputy head of the Military Intelligence Division in July 2015. Head of the Military Intelligence Directorate since March 2019 and the main individual responsible for the violent repression committed by the Military Intelligence Directorate ( Branch 248) throughout 2011 and 2012.Responsible for the crackdown on the civilian population in Deir ez-Zor. (Gender):Male,Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,31/12/2020,12222 +MULHIM,Kifah,,,,,,,,,,,,,,,,,Deputy Head of the Military Intelligence Division,,,,,,,,,(UK Sanctions List Ref):SYR0127 (UK Statement of Reasons):Former battalion Commander in the 4th Division. Appointed deputy head of the Military Intelligence Division in July 2015. Head of the Military Intelligence Directorate since March 2019 and the main individual responsible for the violent repression committed by the Military Intelligence Directorate ( Branch 248) throughout 2011 and 2012.Responsible for the crackdown on the civilian population in Deir ez-Zor. (Gender):Male,Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,31/12/2020,12222 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Chaghi,Chaghi District,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Cholmon Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Flat number 4,Furqan Centre,Jamaluddin Afghani Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Gerd-e-Jangal,Chaghi District,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Haji Ghulam Nabi Market,Lashkar Gar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Hazar Joft,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Ismat Bazaar,Marjah District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Lakri City,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Lashkar Gar Bazaar,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Main Bazaar,Safar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Money Exchange Market,Lashkar Gar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Munsafi Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,"Office number 4, 2nd Floor",Muslim Plaza Building,Doctor Banu Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Safar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,"Shop number 1, 1st Floor",Kadari Place,Abdul Samad Khan Street (next to Fatima Jena Road),,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Shop number 1584,Furqan (Fahr Khan) Centre,Chalhor Mal Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,"Shop number 25, 5th Floor",Sarafi Market,,Kandahar City,Kandahar District,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,"Suite number 8, 4th Floor",Sarafi Market,District number 1,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULLAH AHMED SHAH HAWALA,,,,,,,,,,,,,,,,,,,Zaranj,,,,,Nimruz Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +MULTIMAT DOMESTIC AND FOREIGN TRADE MARKETING LTD.,,,,,,,,,,,,,,,,,,,Bagdat Caddesi,Burc Sitesi,Number 117 A Blok D.2,Feneryolu Kadkoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT DOMESTIC AND FOREIGN TRADE MARKETING LTD.,,,,,,,,,,,,,,,,,,,Feneryolu Bagdat Cad. Burc Apt. No. 117,,,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT DOMESTIC AND FOREIGN TRADE MARKETING LTD.,,,,,,,,,,,,,,,,,,,Number 39,Alvand St.,1st Floor,Argentine Square,,Tehran,,Iran,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT IC VE DIS TIC. PAZ. LTD. STI.,,,,,,,,,,,,,,,,,,,Bagdat Caddesi,Burc Sitesi,Number 117 A Blok D.2,Feneryolu Kadkoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT IC VE DIS TIC. PAZ. LTD. STI.,,,,,,,,,,,,,,,,,,,Feneryolu Bagdat Cad. Burc Apt. No. 117,,,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT IC VE DIS TIC. PAZ. LTD. STI.,,,,,,,,,,,,,,,,,,,Number 39,Alvand St.,1st Floor,Argentine Square,,Tehran,,Iran,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT IC VE DIS TICARET PAZARLAMA LIMITED SIRKETI,,,,,,,,,,,,,,,,,,,Bagdat Caddesi,Burc Sitesi,Number 117 A Blok D.2,Feneryolu Kadkoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT IC VE DIS TICARET PAZARLAMA LIMITED SIRKETI,,,,,,,,,,,,,,,,,,,Feneryolu Bagdat Cad. Burc Apt. No. 117,,,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT IC VE DIS TICARET PAZARLAMA LIMITED SIRKETI,,,,,,,,,,,,,,,,,,,Number 39,Alvand St.,1st Floor,Argentine Square,,Tehran,,Iran,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT IMPORT AND EXPORT,,,,,,,,,,,,,,,,,,,Bagdat Caddesi,Burc Sitesi,Number 117 A Blok D.2,Feneryolu Kadkoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT IMPORT AND EXPORT,,,,,,,,,,,,,,,,,,,Feneryolu Bagdat Cad. Burc Apt. No. 117,,,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT IMPORT AND EXPORT,,,,,,,,,,,,,,,,,,,Number 39,Alvand St.,1st Floor,Argentine Square,,Tehran,,Iran,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT LC VE DIS TICARET PAZARLAMA LIMITED SIRKETI,,,,,,,,,,,,,,,,,,,Bagdat Caddesi,Burc Sitesi,Number 117 A Blok D.2,Feneryolu Kadkoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT LC VE DIS TICARET PAZARLAMA LIMITED SIRKETI,,,,,,,,,,,,,,,,,,,Feneryolu Bagdat Cad. Burc Apt. No. 117,,,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT LC VE DIS TICARET PAZARLAMA LIMITED SIRKETI,,,,,,,,,,,,,,,,,,,Number 39,Alvand St.,1st Floor,Argentine Square,,Tehran,,Iran,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT LTD.,,,,,,,,,,,,,,,,,,,Bagdat Caddesi,Burc Sitesi,Number 117 A Blok D.2,Feneryolu Kadkoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT LTD.,,,,,,,,,,,,,,,,,,,Feneryolu Bagdat Cad. Burc Apt. No. 117,,,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT LTD.,,,,,,,,,,,,,,,,,,,Number 39,Alvand St.,1st Floor,Argentine Square,,Tehran,,Iran,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT TEHRAN,,,,,,,,,,,,,,,,,,,Bagdat Caddesi,Burc Sitesi,Number 117 A Blok D.2,Feneryolu Kadkoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT TEHRAN,,,,,,,,,,,,,,,,,,,Feneryolu Bagdat Cad. Burc Apt. No. 117,,,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT TEHRAN,,,,,,,,,,,,,,,,,,,Number 39,Alvand St.,1st Floor,Argentine Square,,Tehran,,Iran,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT TRADING COMPANY,,,,,,,,,,,,,,,,,,,Bagdat Caddesi,Burc Sitesi,Number 117 A Blok D.2,Feneryolu Kadkoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT TRADING COMPANY,,,,,,,,,,,,,,,,,,,Feneryolu Bagdat Cad. Burc Apt. No. 117,,,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULTIMAT TRADING COMPANY,,,,,,,,,,,,,,,,,,,Number 39,Alvand St.,1st Floor,Argentine Square,,Tehran,,Iran,"(UK Sanctions List Ref):INU0096 (UK Statement of Reasons):A company run by Milad Jafari who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3640997 (2) +90 216 3646945 (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12262 +MULUMBU BOSHAB,Evariste,,,,,,,,,12/01/1956,(1) Kasai Occidentale Province (2) Teke-Kalamba,(1) Congo (Democratic Republic) (2) Congo (Democratic Republic),Congo (Democratic Republic),DP 0000003,"(Congo, Democratic Republic of the) issued 21.12.2015 expiry 20.12.2020.",,,(1) Deputy Prime Minister (2) Minister of Interior and Security (individual) [DRCONGO] (3) Vice Prime Minister (4) A senator in Kasai,Avenue du Rail 5,,,,Ngaliema,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0008 Schengen visa expired on 5.1.2017 (UK Statement of Reasons):In his capacity as Vice Prime Minister and Minister of Interior and Security from December 2014 to December 2016, Evariste BOSHAB was officially responsible for the police and security services and coordinating the work of provincial governors. In this capacity, he was responsible for arrests of activists and opposition members, as well as disproportionate use of force, including between September 2016 and December 2016 in response to demonstrations in Kinshasa, which resulted in a large number of civilians being killed or injured by security services. There are reasonable grounds to conclude that BOSHAB was an “involved person” given that matters within reg (6)(2) occurred in Kinshasa while he was Minister of Interior and Security and therefore bore responsibility for the human rights violations committed by the security forces and police he commanded and influenced. It can therefore be inferred that Evariste BOSHAB was involved in planning, directing, or committing acts that constitute serious human rights violations in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13459 +MUN CHOL,KIM,,,,,,,,,25/03/1957,,,North Korea,,,,,Representative for Korea United Development Bank,,,,,,,,,(UK Sanctions List Ref):DPR0233 (UN Ref):KPi.060,Individual,Primary name,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13533 +MUN IL,PAK,,,,,,,,,01/01/1965,,,North Korea,563335509,expires 27 August 2018,,,Pak Mun Il is an overseas official of Korea Daesong Bank,,,,,,,,,(UK Sanctions List Ref):DPR0256 (UN Ref):KPi.079 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13569 +MUN KIL,KANG,,,,,,,,,,,,North Korea,PS 472330208,Date of Expiration: 4.7.2017,,,,,,,,,,,Democratic People's Republic of Korea,"(UK Sanctions List Ref):DPR0223 (UN Ref):KPi.019 Kang Mun Kil has conducted nuclear procurement activities as a representative of Namchongang, also known as Namhung.",Individual,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13330 +MUN SAN,SON,,,,,,,,,23/01/1951,,,,,,,,Director-General of External Affairs Bureau of General Bureau of Atomic Energy (GBAE),,,,,,,,,(UK Sanctions List Ref):DPR0274 (UN Ref):KPi.039,Individual,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,31/12/2020,13424 +MUNAKATA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0106 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK crude oil tanker M/V NAM SAN 8 is believed to have been involved in ship-to-ship transfer operations for oil. Listed as asset of Hapjanggang Shipping Corp (OFSI ID: 13629, UN Reference Number: UN Ref KPe.058) (IMO number):8122347 (Current owners):Hapjanggang Shipping Corp (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):1914 (Length of ship):91 (Year built):1982",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13657 +MUNAKATA MARU NO.5,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0106 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK crude oil tanker M/V NAM SAN 8 is believed to have been involved in ship-to-ship transfer operations for oil. Listed as asset of Hapjanggang Shipping Corp (OFSI ID: 13629, UN Reference Number: UN Ref KPe.058) (IMO number):8122347 (Current owners):Hapjanggang Shipping Corp (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):1914 (Length of ship):91 (Year built):1982",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13657 +MUNANDAR,ARIS,,,,,,,,,00/00/1962,"Sambi, Boyolali, Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0147 (UN Ref):QDi.119 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446715,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/09/2003,09/09/2003,31/12/2020,7840 +MUNANDAR,ARIS,,,,,,,,,00/00/1963,"Sambi, Boyolali, Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0147 (UN Ref):QDi.119 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446715,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/09/2003,09/09/2003,31/12/2020,7840 +MUNANDAR,ARIS,,,,,,,,,00/00/1964,"Sambi, Boyolali, Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0147 (UN Ref):QDi.119 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446715,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/09/2003,09/09/2003,31/12/2020,7840 +MUNANDAR,ARIS,,,,,,,,,00/00/1965,"Sambi, Boyolali, Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0147 (UN Ref):QDi.119 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446715,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/09/2003,09/09/2003,31/12/2020,7840 +MUNANDAR,ARIS,,,,,,,,,00/00/1966,"Sambi, Boyolali, Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0147 (UN Ref):QDi.119 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446715,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/09/2003,09/09/2003,31/12/2020,7840 +MUNANDAR,ARIS,,,,,,,,,00/00/1967,"Sambi, Boyolali, Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0147 (UN Ref):QDi.119 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446715,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/09/2003,09/09/2003,31/12/2020,7840 +MUNANDAR,ARIS,,,,,,,,,00/00/1968,"Sambi, Boyolali, Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0147 (UN Ref):QDi.119 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446715,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/09/2003,09/09/2003,31/12/2020,7840 +MUNANDAR,ARIS,,,,,,,,,01/01/1971,"Sambi, Boyolali, Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0147 (UN Ref):QDi.119 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446715,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/09/2003,09/09/2003,31/12/2020,7840 +MUN-CH'O'L,Kim,,,,,,,,,25/03/1957,,,North Korea,,,,,Representative for Korea United Development Bank,,,,,,,,,(UK Sanctions List Ref):DPR0233 (UN Ref):KPi.060,Individual,AKA,Good quality,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13533 +MUNDOS,Charles,Muhindo,Akili,,,,,,,10/11/1972,,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) DRC Armed Forces (FARDC) General, Commander of the 31st Brigade (2) FARDC Brigadier General",,,,,,,,,"(UK Sanctions List Ref):DRC0051 (UN Ref):CDi.032 Muhindo Akili Mundos is an FARDC General, Commander of the 31st Brigade. He was appointed commander of the FARDC’s Operational Sector in the areas of Beni and Lubero, including Operation Sukola I against the Allied Democratic Forces (ADF) in September 2014. He remained in that position until June 2015. He is also a threat to the peace, stability and security of the DRC under UNSCR 2293 paragraph 7(e). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6194813",Individual,AKA,Good quality,Democratic Republic of the Congo,02/02/2018,01/02/2018,19/01/2021,13604 +MUNDOS,Muhindo,,,,,,,,,10/11/1972,,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) DRC Armed Forces (FARDC) General, Commander of the 31st Brigade (2) FARDC Brigadier General",,,,,,,,,"(UK Sanctions List Ref):DRC0051 (UN Ref):CDi.032 Muhindo Akili Mundos is an FARDC General, Commander of the 31st Brigade. He was appointed commander of the FARDC’s Operational Sector in the areas of Beni and Lubero, including Operation Sukola I against the Allied Democratic Forces (ADF) in September 2014. He remained in that position until June 2015. He is also a threat to the peace, stability and security of the DRC under UNSCR 2293 paragraph 7(e). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6194813",Individual,AKA,Good quality,Democratic Republic of the Congo,02/02/2018,01/02/2018,19/01/2021,13604 +MUNDOS,MUHINDO,AKILI,,,,,,,,10/11/1972,,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) DRC Armed Forces (FARDC) General, Commander of the 31st Brigade (2) FARDC Brigadier General",,,,,,,,,"(UK Sanctions List Ref):DRC0051 (UN Ref):CDi.032 Muhindo Akili Mundos is an FARDC General, Commander of the 31st Brigade. He was appointed commander of the FARDC’s Operational Sector in the areas of Beni and Lubero, including Operation Sukola I against the Allied Democratic Forces (ADF) in September 2014. He remained in that position until June 2015. He is also a threat to the peace, stability and security of the DRC under UNSCR 2293 paragraph 7(e). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6194813",Individual,Primary name,,Democratic Republic of the Congo,02/02/2018,01/02/2018,19/01/2021,13604 +MUN-IL,Pak,,,,,,,,,01/01/1965,,,North Korea,563335509,expires 27 August 2018,,,Pak Mun Il is an overseas official of Korea Daesong Bank,,,,,,,,,(UK Sanctions List Ref):DPR0256 (UN Ref):KPi.079 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13569 +MUNITIONS INDUSTRY DEPARTMENT,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0177 (UN Ref):KPe.028 The Munitions Industry Department is involved in key aspects of the DPRK's missile program. MID is responsible for overseeing the development of the DPRK's ballistic missiles, including the Taepo Dong-2.The MID oversees the DPRK's weapons production and R&D programs, including the DPRK's ballistic missile program. The Second Economic Committee and the Second Academy of Natural Sciences – also designated in August 2010 – are subordinate to the MID. The MID in recent years has worked to develop the KN08 road-mobile ICBM. The MID oversees the DPRK’s nuclear program. The Nuclear Weapons Institute is subordinate to the MID. (Subsidiaries):The Nuclear Weapons Institute",Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,31/12/2020,12447 +MUNSHA,Muhammad,Ashraf,,,,,,,,01/03/1965,Faisalabad,Pakistan,Pakistan,(1) AT0712501 (2) A-374184,(1) Pakistan issued on 12 Mar. 2008 (expired 11 Mar 2013) (2) Pakistan,(1) 6110125312507 (2) 24492025390,(1) Pakistan (2) Pakistan,,,,,,,,,,(UK Sanctions List Ref):AQD0184 (UN Ref):QDi.265 Chief of finance of Lashkar-e-Tayyiba (QDe.118). His father’s name is Noor Muhammad. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543491,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,11/02/2022,9217 +MUNSHA,Muhammad,Ashraf,,,,,,,,00/00/1955,Faisalabad,Pakistan,Pakistan,(1) AT0712501 (2) A-374184,(1) Pakistan issued on 12 Mar. 2008 (expired 11 Mar 2013) (2) Pakistan,(1) 6110125312507 (2) 24492025390,(1) Pakistan (2) Pakistan,,,,,,,,,,(UK Sanctions List Ref):AQD0184 (UN Ref):QDi.265 Chief of finance of Lashkar-e-Tayyiba (QDe.118). His father’s name is Noor Muhammad. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543491,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,11/02/2022,9217 +MUPENZI,,,,,,Other,,,,00/00/1954,"Cellule Ferege, Gatumba, sector Kibilira commune, Gisenyi Prefecture",Rwanda,Rwanda,,,,,FDLR-FOCA Commander and FDLR-FOCA Lieutenant General,,,,,,North Kivu Province,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0057 (UN Ref):CDi.012 The International Criminal Court issued an arrest warrant for Mudacumura on 12 July 2012 for nine counts of war crimes, including attacking civilians, murder, mutilation, cruel treatment, rape, torture, destruction of property, pillaging and outrages against personal dignity, allegedly committed between 2009 and 2010 in the DRC. (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8714 +MUPOMPA,Alex,Kande,,,,Governor,,,,23/09/1950,Kananga,Congo (Democratic Republic),(1) Belgium (2) Congo (Democratic Republic),OP0024910,21 March 2016 to 20 March 2021,,,"Governor, Kasai Central",Ave Bumba No 1,,,,Kinshasa,Ngaliena,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0009 (UK Statement of Reasons):As Governor of Kasai Central until October 2017, Alex Kande MUPOMPA has been responsible for the disproportionate use of force, violent repression and extrajudicial killings committed by security forces and the PNC in Kasai Central from August 2016, including killings on the territory of Dibaya in February 2017. As a senior provincial government official, Alex Kande MUPOMPA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13461 +MUPOMPA,Alex,Kande,,,,Governor,,,,23/09/1950,Kananga,Congo (Democratic Republic),(1) Belgium (2) Congo (Democratic Republic),OP0024910,21 March 2016 to 20 March 2021,,,"Governor, Kasai Central",Messidorlaan 217/25,,,,,1180 Uccle,,Belgium,"(UK Sanctions List Ref):DRC0009 (UK Statement of Reasons):As Governor of Kasai Central until October 2017, Alex Kande MUPOMPA has been responsible for the disproportionate use of force, violent repression and extrajudicial killings committed by security forces and the PNC in Kasai Central from August 2016, including killings on the territory of Dibaya in February 2017. As a senior provincial government official, Alex Kande MUPOMPA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13461 +MUPOMPA,Alexandre,Kande,,,,,,,,23/09/1950,Kananga,Congo (Democratic Republic),(1) Belgium (2) Congo (Democratic Republic),OP0024910,21 March 2016 to 20 March 2021,,,"Governor, Kasai Central",Ave Bumba No 1,,,,Kinshasa,Ngaliena,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0009 (UK Statement of Reasons):As Governor of Kasai Central until October 2017, Alex Kande MUPOMPA has been responsible for the disproportionate use of force, violent repression and extrajudicial killings committed by security forces and the PNC in Kasai Central from August 2016, including killings on the territory of Dibaya in February 2017. As a senior provincial government official, Alex Kande MUPOMPA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13461 +MUPOMPA,Alexandre,Kande,,,,,,,,23/09/1950,Kananga,Congo (Democratic Republic),(1) Belgium (2) Congo (Democratic Republic),OP0024910,21 March 2016 to 20 March 2021,,,"Governor, Kasai Central",Messidorlaan 217/25,,,,,1180 Uccle,,Belgium,"(UK Sanctions List Ref):DRC0009 (UK Statement of Reasons):As Governor of Kasai Central until October 2017, Alex Kande MUPOMPA has been responsible for the disproportionate use of force, violent repression and extrajudicial killings committed by security forces and the PNC in Kasai Central from August 2016, including killings on the territory of Dibaya in February 2017. As a senior provincial government official, Alex Kande MUPOMPA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13461 +MUQTI,Fihiruddin,,,,,,,,,17/08/1958,"(1) Tirpas-Selong Village, East Lombok (2) Korleko-Lombok Timur",(1) Indonesia (2) Indonesia,Indonesia,,,3603251708570001,,,Jalan Nakula,Komplek Witana Harja III Blok C 106-107,,,,Tangerang,,Indonesia,(UK Sanctions List Ref):AQD0235 (UN Ref):QDi.086 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,6894 +MUQTI,Fihiruddin,,,,,,,,,17/08/1957,"(1) Tirpas-Selong Village, East Lombok (2) Korleko-Lombok Timur",(1) Indonesia (2) Indonesia,Indonesia,,,3603251708570001,,,Jalan Nakula,Komplek Witana Harja III Blok C 106-107,,,,Tangerang,,Indonesia,(UK Sanctions List Ref):AQD0235 (UN Ref):QDi.086 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,6894 +MUQTI,Fikiruddin,,,,,,,,,17/08/1958,"(1) Tirpas-Selong Village, East Lombok (2) Korleko-Lombok Timur",(1) Indonesia (2) Indonesia,Indonesia,,,3603251708570001,,,Jalan Nakula,Komplek Witana Harja III Blok C 106-107,,,,Tangerang,,Indonesia,(UK Sanctions List Ref):AQD0235 (UN Ref):QDi.086 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,6894 +MUQTI,Fikiruddin,,,,,,,,,17/08/1957,"(1) Tirpas-Selong Village, East Lombok (2) Korleko-Lombok Timur",(1) Indonesia (2) Indonesia,Indonesia,,,3603251708570001,,,Jalan Nakula,Komplek Witana Harja III Blok C 106-107,,,,Tangerang,,Indonesia,(UK Sanctions List Ref):AQD0235 (UN Ref):QDi.086 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,6894 +MURAD,Abdul,Hakim,al Hashim,,,,,,,11/04/1968,,Kuwait,Pakistan,(1) 665334 (2) 917739,(1) Pakistani. Issued in Kuwait (2) Pakistani. Issued in Pakistan on 8 August 1991. Expired on 7 August 1996.,,,,,,,,,,,,(UK Sanctions List Ref):AQD0102 (UN Ref):QDi.120 Mother's name is Aminah Ahmad Sher al-Baloushi. In custody of the United States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/09/2003,09/09/2003,31/12/2020,7843 +MURAD,Abdul Hakim,Ali,al-Hashem,,,,,,,11/04/1968,,Kuwait,Pakistan,(1) 665334 (2) 917739,(1) Pakistani. Issued in Kuwait (2) Pakistani. Issued in Pakistan on 8 August 1991. Expired on 7 August 1996.,,,,,,,,,,,,(UK Sanctions List Ref):AQD0102 (UN Ref):QDi.120 Mother's name is Aminah Ahmad Sher al-Baloushi. In custody of the United States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/09/2003,09/09/2003,31/12/2020,7843 +MURAD,Abdul Hakim,Ali,Hashim,,,,,,,11/04/1968,,Kuwait,Pakistan,(1) 665334 (2) 917739,(1) Pakistani. Issued in Kuwait (2) Pakistani. Issued in Pakistan on 8 August 1991. Expired on 7 August 1996.,,,,,,,,,,,,(UK Sanctions List Ref):AQD0102 (UN Ref):QDi.120 Mother's name is Aminah Ahmad Sher al-Baloushi. In custody of the United States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/09/2003,09/09/2003,31/12/2020,7843 +MURAD,Abdul Hakim,Hasim,,,,,,,,11/04/1968,,Kuwait,Pakistan,(1) 665334 (2) 917739,(1) Pakistani. Issued in Kuwait (2) Pakistani. Issued in Pakistan on 8 August 1991. Expired on 7 August 1996.,,,,,,,,,,,,(UK Sanctions List Ref):AQD0102 (UN Ref):QDi.120 Mother's name is Aminah Ahmad Sher al-Baloushi. In custody of the United States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/09/2003,09/09/2003,31/12/2020,7843 +MURAD,ABDUL HAKIM,,,,,,عبد الحكيم مراد,,,11/04/1968,,Kuwait,Pakistan,(1) 665334 (2) 917739,(1) Pakistani. Issued in Kuwait (2) Pakistani. Issued in Pakistan on 8 August 1991. Expired on 7 August 1996.,,,,,,,,,,,,(UK Sanctions List Ref):AQD0102 (UN Ref):QDi.120 Mother's name is Aminah Ahmad Sher al-Baloushi. In custody of the United States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/09/2003,09/09/2003,31/12/2020,7843 +MURADOV,Georgiy,L'Vovich,,,,,Георгий Мурадов,,,19/11/1954,Kochmes,Komi ASSR (now Russian Federation),Russia,,,,,So-called 'Deputy Prime Minister of Crimea' Other Information: He is plenipotentiary representative of Crimea to President Putin.,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0035 (UK Statement of Reasons):So called ""Deputy Prime Minister"" of Crimea and Plenipotentiary Representative of Crimea to President Putin. Georgi L'vivich Muradov has played an important role in consolidating Russian institutional control over Crimea since the illegal annexation. He has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,31/12/2020,13099 +MURADOV,Georgy,,,,,,,,,19/11/1954,Kochmes,Komi ASSR (now Russian Federation),Russia,,,,,So-called 'Deputy Prime Minister of Crimea' Other Information: He is plenipotentiary representative of Crimea to President Putin.,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0035 (UK Statement of Reasons):So called ""Deputy Prime Minister"" of Crimea and Plenipotentiary Representative of Crimea to President Putin. Georgi L'vivich Muradov has played an important role in consolidating Russian institutional control over Crimea since the illegal annexation. He has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,12/09/2014,31/12/2020,31/12/2020,13099 +MURADOV,Rustam,Usmanovich,,,,Lieutenant General,МУРАДОВ Рустам Усманович,,,21/03/1973,Chinar,Russia,Russia,,,,,Deputy Commander Southern Military District,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0768 (UK Statement of Reasons):Lieutenant General Rustam Usmanovich MURADOV is a member of the Armed Forces of the Russian Federation, he currently holds the position of Deputy Commander Southern Military District. He is considered to have been in direct command of and/or to have otherwise been involved in the deployment of Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is therefore a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14719 +MURANOV,Alexander,Yurievich,,,,,,,,14/07/1958,,,(1) Armenia (2) Russia,,,,,(1) Member of Gazprombank’s Management Board (2) Deputy Chairman of Gazprombank’s Management Board,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1611 (UK Statement of Reasons):Alexander Yuryevich Muranov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15555 +MURANOV,Alexander,Yuryevich,,,,,Александр Юрьевич Муранов,Cyrillic,Russian,14/07/1958,,,(1) Armenia (2) Russia,,,,,(1) Member of Gazprombank’s Management Board (2) Deputy Chairman of Gazprombank’s Management Board,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1611 (UK Statement of Reasons):Alexander Yuryevich Muranov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15555 +MURATOV,Sergey,Nikolayevich,,,,,Сергей Николаевич Муратов,,,13/01/1964,Shchuchye,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0976 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14927 +MURILLO DE ORTEGA,Rosario,Maria,,,,,,,,22/06/1951,Managua,Nicaragua,Nicaragua,A00000106,,,,(1) Chief Spokesperson for the Government of Nicaragua (2) First Lady of the Nation (2) Vice President,,,,,El Carmen,Managua,,Nicaragua,"(UK Sanctions List Ref):NIC0007 (UK Statement of Reasons):Rosario MURILLO is the Vice President of Nicaragua, First Lady of Nicaragua, government spokesperson and leader of the Sandinista Youth. According to the President of Nicaragua, Daniel Ortega, Rosario MURILLO shares power equally with him - the Constitution allows the President to delegate any duties to his Vice President. There are reasonable grounds to suspect that, in her position as Vice President, MURILLO had authority over and knowledge of: the state-backed repression of political demonstrations and activities; repression of civilians including through her leadership of the Sandinista Youth wing; and the discrediting of independent journalists and the exclusion of candidates from the electoral process. She is therefore responsible for undermining democracy and the rule of law, repression of civil society and the democratic opposition, and for human rights violations. (Gender):Female",Individual,AKA,,Nicaragua,15/11/2021,15/11/2021,15/11/2021,14145 +MURILLO ZAMBRANA,Rosario,Maria,,,,,,,,22/06/1951,Managua,Nicaragua,Nicaragua,A00000106,,,,(1) Chief Spokesperson for the Government of Nicaragua (2) First Lady of the Nation (2) Vice President,,,,,El Carmen,Managua,,Nicaragua,"(UK Sanctions List Ref):NIC0007 (UK Statement of Reasons):Rosario MURILLO is the Vice President of Nicaragua, First Lady of Nicaragua, government spokesperson and leader of the Sandinista Youth. According to the President of Nicaragua, Daniel Ortega, Rosario MURILLO shares power equally with him - the Constitution allows the President to delegate any duties to his Vice President. There are reasonable grounds to suspect that, in her position as Vice President, MURILLO had authority over and knowledge of: the state-backed repression of political demonstrations and activities; repression of civilians including through her leadership of the Sandinista Youth wing; and the discrediting of independent journalists and the exclusion of candidates from the electoral process. She is therefore responsible for undermining democracy and the rule of law, repression of civil society and the democratic opposition, and for human rights violations. (Gender):Female",Individual,Primary name,,Nicaragua,15/11/2021,15/11/2021,15/11/2021,14145 +MURSHID,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Gebang,Kecamatan Masaran,Kabupaten Sragen,,,Jawa Tengah,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +MURSHID,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Taman Fajar,Kecamatan Probolinggo,Kabupaten Lampung Timur,,,Lampung,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +MURWANASHYAKA,IGNACE,,,,,Doctor,,,,14/05/1963,"(1) Butera (2) Ngoma, Butare",(1) Rwanda (2) Rwanda,Rwanda,,,,,President of the FDLR,,,,,,,,Germany,(UK Sanctions List Ref):DRC0036 (UN Ref):CDi.016 Reported to have died in prison in Germany on 16 April 2019. Arrested by German authorities on 17 November 2009 and found guilty by a German court on 28 September 2015 of leadership of a foreign terrorist group and aiding in war crimes. Received a 13-year sentence and is in prison in Germany as of June 2016. Re-elected FDLR President on 29 November 2014 for a five-year term. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male,Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,31/12/2020,8713 +MUSA,,,,,,,,,,00/00/1977,,,Uganda,,,,,Overall leader of the Allied Democratic Forces (ADF) (CDe.001),,,,Kajuju camp of Medina II,Beni territory,North Kivu,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0059 (UN Ref):CDi.036 Longtime member of the ADF (CDe.001), Baluku used to be the second in command to ADF founder Jamil Mukulu (CDi.015) until he took over after FARDC military operation Sukola I in 2014.",Individual,AKA,Low quality,Democratic Republic of the Congo,07/02/2020,06/02/2020,31/12/2020,13813 +MUSA KALIM HAWALA,,,,,,,,,,,,,,,,,,,,,,,Chaman,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +MUSA KALIM HAWALA,,,,,,,,,,,,,,,,,,,,,,,Zahedan,Zabol Province,,Iran,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +MUSA KALIM HAWALA,,,,,,,,,,,,,,,,,,,Chaghi Bazaar,,,,Chaghi,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +MUSA KALIM HAWALA,,,,,,,,,,,,,,,,,,,Dr Barno Road,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +MUSA KALIM HAWALA,,,,,,,,,,,,,,,,,,,Gereshk District,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +MUSA KALIM HAWALA,,,,,,,,,,,,,,,,,,,Haji Mohammed Plaza,Tol Aram Road,near Jamaluddin Afghani Road,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +MUSA KALIM HAWALA,,,,,,,,,,,,,,,,,,,Kandahari Bazaar,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +MUSA KALIM HAWALA,,,,,,,,,,,,,,,,,,,Lashkar Gah,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +MUSA KALIM HAWALA,,,,,,,,,,,,,,,,,,,Room number 33,5th Floor,Sarafi Market,,Kandahar city,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +MUSA KALIM HAWALA,,,,,,,,,,,,,,,,,,,Safaar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +MUSA KALIM HAWALA,,,,,,,,,,,,,,,,,,,Shop number 4,Azizi Bank,Haji Muhammad Isa Market,Wesh,Spin Boldak,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +MUSA KALIM HAWALA,,,,,,,,,,,,,,,,,,,Zaranj District,,,,,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +MUSAB,Abu,,,,,,,,,18/03/1966,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,"Basilan, previous location until 2016",,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +MUSAB,Abu,,,,,,,,,18/03/1966,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,Lanao del Sur,,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +MUSAB,Abu,,,,,,,,,10/03/1967,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,Lanao del Sur,,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +MUSAB,Abu,,,,,,,,,10/03/1967,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,"Basilan, previous location until 2016",,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +MUSAB,Abu,,,,,,,,,28/08/1971,Oran,Algeria,Algeria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):CTI0020 (UK Statement of Reasons):Rabah Tahari has been the leader of Kateeba Al Kawthar (KaK), a terrorist organisation linked to Al Qaida, since 2013. Tahari has travelled for the purposes of terrorism and is accused of recruiting and training foreign terrorist fighters. (Gender):Male",Individual,AKA,,Counter-Terrorism (International),16/07/2018,31/12/2020,31/12/2020,13697 +MUSALLI,Abd-al-Hamid,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,,,,,,Reportedly located in Waziristan,,,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +MUSALLI,Abd-al-Hamid,,,,,,,,,00/00/1976,(1) Darnah (2) Danar,(1) Libya (2) Libya,Libya,,,,,,"Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan",,,,,,,Pakistan,(UK Sanctions List Ref):AQD0095 (UN Ref):QDi.320 Leader and trainer of an Al-Qaida electronics and explosives workshop producing improvised explosive device components. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5757961,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/12/2013,26/11/2013,31/12/2020,12890 +MUSATOV,Ivan,Mikhailovich,,,,,Мусатов Иван Михайлович,,,14/02/1976,Rakvere,Estonia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0457 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14402 +MUSAVI-TABAR,Seyyed,Reza,,,,,,,,00/00/1964,,,,,,,,Former head of the Revolutionary Prosecution of Shiraz.,,,,,,,,,"(UK Sanctions List Ref):IHR0081 (UK Statement of Reasons):Former head of the Revolutionary Prosecution of Shiraz. Responsible for illegal arrests and ill treatment of political activists, journalists, human rights defenders, Baha'is and prisoners of conscience, who were harassed, tortured, interrogated and denied access to lawyers and due process. Musavi-Tabar signed judicial orders in the notorious No 100 Detention Centre (a male prison), including an order to detain female Baha'i prisoner Raha Sabet for three years in solitary confinement. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/03/2013,31/12/2020,28/01/2022,12856 +MUSAVI-TABAR,Seyyed,Reza,,,,,,,,,,,,,,,,Former head of the Revolutionary Prosecution of Shiraz.,,,,,,,,,"(UK Sanctions List Ref):IHR0081 (UK Statement of Reasons):Former head of the Revolutionary Prosecution of Shiraz. Responsible for illegal arrests and ill treatment of political activists, journalists, human rights defenders, Baha'is and prisoners of conscience, who were harassed, tortured, interrogated and denied access to lawyers and due process. Musavi-Tabar signed judicial orders in the notorious No 100 Detention Centre (a male prison), including an order to detain female Baha'i prisoner Raha Sabet for three years in solitary confinement. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/03/2013,31/12/2020,28/01/2022,12856 +MUSCAB,Abu,,,,,,,,,00/00/1979,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MUSCAB,Abu,,,,,,,,,00/00/1980,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MUSCAB,Abu,,,,,,,,,00/00/1981,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MUSCAB,Abu,,,,,,,,,00/00/1982,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +MUSENYERI,,,,,,,,,,00/00/1966,Kigali,Rwanda,Rwanda,,,,,FDLR-FOCA Chief of Staff. FDLR-FOCA Interim Deputy Commander,,,,,,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0048 (UN Ref):CDi.014 Became acting FDLR-FOCA Deputy Commander in 2014. Captured in Goma, DRC by Congolese security services in early May 2016 and transferred to Kinshasa. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5224709 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,21/01/2021,10679 +MUSENYERI,,,,,,,,,,17/03/1962,Kigali,Rwanda,Rwanda,,,,,FDLR-FOCA Chief of Staff. FDLR-FOCA Interim Deputy Commander,,,,,,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0048 (UN Ref):CDi.014 Became acting FDLR-FOCA Deputy Commander in 2014. Captured in Goma, DRC by Congolese security services in early May 2016 and transferred to Kinshasa. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5224709 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,21/01/2021,10679 +MUSHARAF,,,,,,Professor,,,,00/00/1965,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +MUSHARAF,,,,,,Professor,,,,01/01/1964,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +MUSHAWEH,Lubana,,,,,,,,,00/00/1955,Damascus,Syria,Syria,,,,,Former Minister of Culture,,,,,,,,,"(UK Sanctions List Ref):SYR0129 (UK Statement of Reasons):There are reasonable grounds to suspect that Lubana Mushaweh is or has been involved in the repression of the civilian population and/or supported or benefitted from the Syrian regime while in the capacity of Minister of Culture (initially from 2013 and presently since her re-appointment to this role in August 2021). Further, given her re-appointment, she remains associated with other members of the regime. (Gender):Female",Individual,Primary name,,Syria,16/10/2012,31/12/2020,13/05/2022,12778 +MUSHAWEH,Lubanah,,,,,,,,,00/00/1955,Damascus,Syria,Syria,,,,,Former Minister of Culture,,,,,,,,,"(UK Sanctions List Ref):SYR0129 (UK Statement of Reasons):There are reasonable grounds to suspect that Lubana Mushaweh is or has been involved in the repression of the civilian population and/or supported or benefitted from the Syrian regime while in the capacity of Minister of Culture (initially from 2013 and presently since her re-appointment to this role in August 2021). Further, given her re-appointment, she remains associated with other members of the regime. (Gender):Female",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12778 +MUSHAWWEH,Lubana,,,,,,,,,00/00/1955,Damascus,Syria,Syria,,,,,Former Minister of Culture,,,,,,,,,"(UK Sanctions List Ref):SYR0129 (UK Statement of Reasons):There are reasonable grounds to suspect that Lubana Mushaweh is or has been involved in the repression of the civilian population and/or supported or benefitted from the Syrian regime while in the capacity of Minister of Culture (initially from 2013 and presently since her re-appointment to this role in August 2021). Further, given her re-appointment, she remains associated with other members of the regime. (Gender):Female",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12778 +MUSHAWWEH,Lubanah,,,,,,,,,00/00/1955,Damascus,Syria,Syria,,,,,Former Minister of Culture,,,,,,,,,"(UK Sanctions List Ref):SYR0129 (UK Statement of Reasons):There are reasonable grounds to suspect that Lubana Mushaweh is or has been involved in the repression of the civilian population and/or supported or benefitted from the Syrian regime while in the capacity of Minister of Culture (initially from 2013 and presently since her re-appointment to this role in August 2021). Further, given her re-appointment, she remains associated with other members of the regime. (Gender):Female",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12778 +MUSHTAQ,Qari,,,,,,,,,00/00/1977,"Chak number 36/DNB, Rajkan, Madina Colony, Bahawalpur District, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0224 (UN Ref):QDi.296 Physical description: 5 feet 2 inches; 157,4 cm. Name of father: Ali Muhammad. Mati ur-Rehman is the chief operational commander of Lashkar i Jhangvi (LJ) (QDe.096). Associated with Harakat-ul Jihad Islami (QDe.130). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4674457",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,02/09/2011,22/08/2011,31/12/2020,12038 +MUSLIM,,,,,,,Муслим,,,07/09/1975,"Chegem-1 Village, Chegemskiy District, Republic of Kabardino-Balkaria",Russia,Russia,622641887,Russian foreign travel passport number,8304661431,Russian Federation national passport,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0343 (UN Ref):QDi.367 As at Aug. 2015, one of the leaders of the Army of Emigrants and Supporters (QDe.148). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899831. Syria, located in as at Aug. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13302 +MUSLIM,,,,,,,Муслим,,,07/09/1975,"Chegem-1 Village, Chegemskiy District, Republic of Kabardino-Balkaria",Russia,Russia,622641887,Russian foreign travel passport number,8304661431,Russian Federation national passport,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0343 (UN Ref):QDi.367 As at Aug. 2015, one of the leaders of the Army of Emigrants and Supporters (QDe.148). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899831. Syria, located in as at Aug. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13302 +MUSLIM,,,,,,,,,,15/01/1970,"Grozny, Chechen Republic",Russia,(1) Russia. (2) Georgia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0266 (UN Ref):QDi.406 Associated with Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116583",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13517 +MUSONI,IO,,,,,,,,,06/04/1961,"Mugambazi, Kigali",Rwanda,Rwanda,,,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0055 (UN Ref):CDi.017 Arrested by German authorities on 17 November 2009, found guilty in a German court on 28 September 2015 of leadership of a foreign terrorist group, and received an 8-year sentence. Musoni was released from prison immediately after the trial, having served over 5 years of his sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272354 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9065 +MUSONI,IO,,,,,,,,,04/06/1961,"Mugambazi, Kigali",Rwanda,Rwanda,,,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0055 (UN Ref):CDi.017 Arrested by German authorities on 17 November 2009, found guilty in a German court on 28 September 2015 of leadership of a foreign terrorist group, and received an 8-year sentence. Musoni was released from prison immediately after the trial, having served over 5 years of his sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272354 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9065 +MUSONI,STRATON,,,,,,,,,06/04/1961,"Mugambazi, Kigali",Rwanda,Rwanda,,,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0055 (UN Ref):CDi.017 Arrested by German authorities on 17 November 2009, found guilty in a German court on 28 September 2015 of leadership of a foreign terrorist group, and received an 8-year sentence. Musoni was released from prison immediately after the trial, having served over 5 years of his sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272354 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9065 +MUSONI,STRATON,,,,,,,,,04/06/1961,"Mugambazi, Kigali",Rwanda,Rwanda,,,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0055 (UN Ref):CDi.017 Arrested by German authorities on 17 November 2009, found guilty in a German court on 28 September 2015 of leadership of a foreign terrorist group, and received an 8-year sentence. Musoni was released from prison immediately after the trial, having served over 5 years of his sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272354 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,30/03/2007,29/03/2007,31/12/2020,9065 +MUSTAFA,,,,,,,,,,22/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MUSTAFA,,,,,,,,,,26/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MUSTAFA,,,,,,,,,,,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MUSTAFA,,,,,,,,,,26/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MUSTAFA,,,,,,,,,,28/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MUSTAFA,,,,,,,,,,31/12/1979,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MUSTAFA,,,,,,,,,,10/06/1982,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MUSTAFA,Djamel,,,,,,,,,22/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MUSTAFA,Djamel,,,,,,,,,26/08/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MUSTAFA,Djamel,,,,,,,,,,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MUSTAFA,Djamel,,,,,,,,,26/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MUSTAFA,Djamel,,,,,,,,,28/09/1973,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MUSTAFA,Djamel,,,,,,,,,31/12/1979,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MUSTAFA,Djamel,,,,,,,,,10/06/1982,"(1) Tiaret (2) Maskara (3) Mahdia (4) Mascara (5) Algiers (6) Mehdia, Tiaret province (7) -",(1) to (6) Algeria (7) Morocco,Algeria,,,(1) 20645897 (2) -,"(1) Counterfeit Danish driving licence. Made out to Ali Barkani, DOB: 22/08/1973, Morocco. (2) Algerian birth certificate. Issued for Djamel Mostefa, born on 25 September 1973 in Mehdia, Tiaret province, Algeria.",,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0164 (UN Ref):QDi.129 Father's name is Djelalli Moustfa. Mother's name is Kadeja Mansore. Deported from Germany to Algeria in Sep. 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424350,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/09/2003,23/09/2003,11/02/2022,7860 +MUSTAFA,Mustafa,Kamel,,,,,,,,15/04/1958,Alexandria,Egypt,United Kingdom,,,,,,,,,,,,,United States,(UK Sanctions List Ref):AQD0252 (UN Ref):QDi.067 Extradited from the United Kingdom to the United States of America on 5 Oct. 2012. Convicted on terrorism charges by a court in the United States of America in May 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/04/2002,24/04/2002,31/12/2020,6930 +MUSTAFA,Salim,Mansur,,,,,,,,20/02/1962,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,Tel Afar – Al-Saad,,,,,Mosul,,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +MUSTAFA,Salim,Mansur,,,,,,,,20/02/1962,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,17 Tamoz,,,,,"Mosul, previous address",,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +MUSTAFA,Salim,Mansur,,,,,,,,00/00/1959,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,17 Tamoz,,,,,"Mosul, previous address",,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +MUSTAFA,Salim,Mansur,,,,,,,,00/00/1959,"(1) Baghdad (2) Tel Afar, Nineveh Province",(1) Iraq (2) Iraq,Iraq,A6489694,Iraq. Issued on 2 September 2013. Expires 31 August 2021.,(1) 00813602 (2) 300397,(1) Iraq identity card. Issued on 18 September 2011 (2) Certificate of Iraqi nationality. Issued on 25 June 2013,,Tel Afar – Al-Saad,,,,,Mosul,,Iraq,"(UK Sanctions List Ref):AQD0308 (UN Ref):QDi.411 Finance “emir” for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: hair colour: black; eye colour: honey; height: 170 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202729",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13615 +MUSTAFA BAKRI,ALI,SAYYID,MUHAMED,,,,على السيد محمد مصطفى بكري,,,18/04/1966,Beni-Suef,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0133 (UN Ref):QDi.196 Member of the Shura Council of Al-Qaida (QDe.004) and Egyptian Islamic Jihad (QDe.003). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8719 +MUSTAPHA,Kamel,Mustapha,,,,,,,,15/04/1958,Alexandria,Egypt,United Kingdom,,,,,,,,,,,,,United States,(UK Sanctions List Ref):AQD0252 (UN Ref):QDi.067 Extradited from the United Kingdom to the United States of America on 5 Oct. 2012. Convicted on terrorism charges by a court in the United States of America in May 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/04/2002,24/04/2002,31/12/2020,6930 +MUSTAPHA,Mustapha,Kamel,,,,,,,,15/04/1958,Alexandria,Egypt,United Kingdom,,,,,,,,,,,,,United States,(UK Sanctions List Ref):AQD0252 (UN Ref):QDi.067 Extradited from the United Kingdom to the United States of America on 5 Oct. 2012. Convicted on terrorism charges by a court in the United States of America in May 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,19/04/2002,24/04/2002,31/12/2020,6930 +MUTEBUSI,Jules,,,,,,,,,00/00/1964,"Minembwe, South Kivu",Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0044 (UN Ref):CDi.018 Former FARDC Deputy Military Regional Commander of 10th Military Region in April 2004, dismissed for indiscipline. In December 2007, he was arrested by Rwandan authorities when he tried to cross the border into the DRC. Reported to have died in Kigali on 9 May 2014. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272093 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8709 +MUTEBUTSI,,,,,,Colonel,,,,00/00/1964,"Minembwe, South Kivu",Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0044 (UN Ref):CDi.018 Former FARDC Deputy Military Regional Commander of 10th Military Region in April 2004, dismissed for indiscipline. In December 2007, he was arrested by Rwandan authorities when he tried to cross the border into the DRC. Reported to have died in Kigali on 9 May 2014. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272093 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8709 +MUTEBUTSI,JULES,,,,,,,,,00/00/1964,"Minembwe, South Kivu",Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0044 (UN Ref):CDi.018 Former FARDC Deputy Military Regional Commander of 10th Military Region in April 2004, dismissed for indiscipline. In December 2007, he was arrested by Rwandan authorities when he tried to cross the border into the DRC. Reported to have died in Kigali on 9 May 2014. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272093 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8709 +MUTEBUZI,Jules,,,,,,,,,00/00/1964,"Minembwe, South Kivu",Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0044 (UN Ref):CDi.018 Former FARDC Deputy Military Regional Commander of 10th Military Region in April 2004, dismissed for indiscipline. In December 2007, he was arrested by Rwandan authorities when he tried to cross the border into the DRC. Reported to have died in Kigali on 9 May 2014. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272093 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8709 +MUTHANA,Abdul,,,,,,,,,29/04/1994,"Heath, Cardiff",United Kingdom,United Kingdom,210804241,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0272 (UN Ref):QDi.358 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Wanted by the authorities of the United Kingdom. Physical description: hair colour: brown/black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897336. Address country Syrian Arab Republic, as at Nov. 2013, UK (previous address).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13286 +MUTHANA,Abdul,,,,,,,,,29/04/1994,"Heath, Cardiff",United Kingdom,United Kingdom,210804241,,,,,,,,,,,,United Kingdom,"(UK Sanctions List Ref):AQD0272 (UN Ref):QDi.358 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Wanted by the authorities of the United Kingdom. Physical description: hair colour: brown/black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897336. Address country Syrian Arab Republic, as at Nov. 2013, UK (previous address).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13286 +MUTHANA,Abu,,,,,,,,,29/04/1994,"Heath, Cardiff",United Kingdom,United Kingdom,210804241,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0272 (UN Ref):QDi.358 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Wanted by the authorities of the United Kingdom. Physical description: hair colour: brown/black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897336. Address country Syrian Arab Republic, as at Nov. 2013, UK (previous address).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13286 +MUTHANA,Abu,,,,,,,,,29/04/1994,"Heath, Cardiff",United Kingdom,United Kingdom,210804241,,,,,,,,,,,,United Kingdom,"(UK Sanctions List Ref):AQD0272 (UN Ref):QDi.358 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Wanted by the authorities of the United Kingdom. Physical description: hair colour: brown/black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897336. Address country Syrian Arab Republic, as at Nov. 2013, UK (previous address).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13286 +MUTHANA,Abu,Al-Yemeni,,,,,,,,29/04/1994,"Heath, Cardiff",United Kingdom,United Kingdom,210804241,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0272 (UN Ref):QDi.358 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Wanted by the authorities of the United Kingdom. Physical description: hair colour: brown/black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897336. Address country Syrian Arab Republic, as at Nov. 2013, UK (previous address).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13286 +MUTHANA,Abu,Al-Yemeni,,,,,,,,29/04/1994,"Heath, Cardiff",United Kingdom,United Kingdom,210804241,,,,,,,,,,,,United Kingdom,"(UK Sanctions List Ref):AQD0272 (UN Ref):QDi.358 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Wanted by the authorities of the United Kingdom. Physical description: hair colour: brown/black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897336. Address country Syrian Arab Republic, as at Nov. 2013, UK (previous address).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13286 +MUTHANA,Nasir,,,,,,,,,29/04/1994,"Heath, Cardiff",United Kingdom,United Kingdom,210804241,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0272 (UN Ref):QDi.358 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Wanted by the authorities of the United Kingdom. Physical description: hair colour: brown/black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897336. Address country Syrian Arab Republic, as at Nov. 2013, UK (previous address).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13286 +MUTHANA,Nasir,,,,,,,,,29/04/1994,"Heath, Cardiff",United Kingdom,United Kingdom,210804241,,,,,,,,,,,,United Kingdom,"(UK Sanctions List Ref):AQD0272 (UN Ref):QDi.358 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Wanted by the authorities of the United Kingdom. Physical description: hair colour: brown/black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897336. Address country Syrian Arab Republic, as at Nov. 2013, UK (previous address).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13286 +MUTHANA,ASEEL,,,,,,,,,22/11/1996,Cardiff,United Kingdom,United Kingdom,516088643,British. Issued on 7.1.2014. Expires on 7.1.2024,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0148 (UN Ref):QDi.357 Foreign terrorist fighter with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Wanted by the authorities of the United Kingdom. Physical description: hair colour: brown/black. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897335. Address country Syria , as at Feb. 2014",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,30/09/2015,31/12/2020,13297 +MUTHANA,ASEEL,,,,,,,,,22/11/1996,Cardiff,United Kingdom,United Kingdom,516088643,British. Issued on 7.1.2014. Expires on 7.1.2024,,,,,,,,,,,United Kingdom,"(UK Sanctions List Ref):AQD0148 (UN Ref):QDi.357 Foreign terrorist fighter with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Wanted by the authorities of the United Kingdom. Physical description: hair colour: brown/black. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897335. Address country Syria , as at Feb. 2014",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,30/09/2015,31/12/2020,13297 +MUTHANA,NASSER,AHMED,,,,,,,,29/04/1994,"Heath, Cardiff",United Kingdom,United Kingdom,210804241,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0272 (UN Ref):QDi.358 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Wanted by the authorities of the United Kingdom. Physical description: hair colour: brown/black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897336. Address country Syrian Arab Republic, as at Nov. 2013, UK (previous address).",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13286 +MUTHANA,NASSER,AHMED,,,,,,,,29/04/1994,"Heath, Cardiff",United Kingdom,United Kingdom,210804241,,,,,,,,,,,,United Kingdom,"(UK Sanctions List Ref):AQD0272 (UN Ref):QDi.358 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Wanted by the authorities of the United Kingdom. Physical description: hair colour: brown/black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897336. Address country Syrian Arab Republic, as at Nov. 2013, UK (previous address).",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13286 +MUTHANNA,Abu,,,,,,,,,29/04/1994,"Heath, Cardiff",United Kingdom,United Kingdom,210804241,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0272 (UN Ref):QDi.358 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Wanted by the authorities of the United Kingdom. Physical description: hair colour: brown/black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897336. Address country Syrian Arab Republic, as at Nov. 2013, UK (previous address).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13286 +MUTHANNA,Abu,,,,,,,,,29/04/1994,"Heath, Cardiff",United Kingdom,United Kingdom,210804241,,,,,,,,,,,,United Kingdom,"(UK Sanctions List Ref):AQD0272 (UN Ref):QDi.358 Foreign terrorist fighter with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), in the Syrian Arab Republic. Wanted by the authorities of the United Kingdom. Physical description: hair colour: brown/black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5897336. Address country Syrian Arab Republic, as at Nov. 2013, UK (previous address).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,28/09/2015,31/12/2020,13286 +MUTOID,Kalev,,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUTOID,Kalev,Katanga,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUTOID,Kalev,Mutondo,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUTOMBO,Kalev,,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUTOMBO,Kalev,Katanga,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUTOMBO,Kalev,Mutondo,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUTOND,Kalev,,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUTOND,Kalev,Katanga,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUTOND,Kalev,Mutondo,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUTONDO,Kalev,,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUTONDO,Kalev,Katanga,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUTONDO,Kalev,Mutondo,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUTREB,Maher,Abdulaziz,,,,,,,,23/05/1971,Makkah,Saudi Arabia,Saudi Arabia,D088677,,,,Intelligence Officer,,,,,,Riyadh,,Saudi Arabia,"(UK Sanctions List Ref):GHR0042 (UK Statement of Reasons):Maher Abdulaziz Mutreb held the position of Intelligence Officer in Saudi Arabia. He was directly involved in carrying out the unlawful killing of Jamal Khashoggi at the Saudi Consulate in Istanbul on 2 October 2018, as part of the 15 man team sent to Turkey by Saudi authorities. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13893 +MUTTAQI,Amir Khan,,,,,,,,,00/00/1968,"(1) Shin Kalai village, Nad-e-Ali District, Helmand Province. (2) Zurmat District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,(1) Minister of Education under the Taliban regime. (2) Taliban representative in UN-led talks under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0026 (UN Ref):TAi.026 Member of the Taliban Supreme Council as at June 2007. Believed to be in Afghanistan/Pakistan border area. Belongs to Sulaimankhel tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,25/01/2001,01/02/2021,7307 +MUTUND,Kalev,,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUTUND,Kalev,Katanga,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUTUND,Kalev,Mutondo,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUTUNDO,Kalev,,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUTUNDO,Kalev,Katanga,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUTUNDO,Kalev,Mutondo,,,,,,,,03/03/1957,,,Congo (Democratic Republic),DB0004470,Issued 08/01/2012. Expires 07/06/2017,,,"Head (formally Administrator-General), National Intelligence Service (known by its French acronym ANR)",,,,,,,,,"(UK Sanctions List Ref):DRC0013 (UK Statement of Reasons):As head of the National Intelligence Service (ANR) until February 2019, Kalev MUTONDO was involved in and responsible for the arbitrary arrest, detention and mistreatment of opposition members, civil society activists and others. Kalev MUTONDO was therefore involved in planning, directing, or committing acts that constitute serious human rights violations or abuses in DRC. In May 2019, he signed a declaration of past and future loyalty to Joseph Kabila. Until early 2021, he held the position of political adviser to the Prime Minister. He is alleged to still have influence on some parts of the security forces. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13467 +MUZAINI,Ahmed,Abdullah,,,,,,,,,,,Saudi Arabia,,,,,Military Attaché,,,,,,,,,(UK Sanctions List Ref):GHR0039 (UK Statement of Reasons):Ahmad Abdullah Al Muzaini held the position of Military Attaché at the Saudi Consulate in Istanbul. He was a senior official who facilitated the unlawful killing of Jamal Khashoggi in Istanbul on 2 October 2018. (Gender):Male,Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13890 +MWISSA,GUIDON,SHIMIRAY,,,,,,,,13/03/1980,"Kigoma, Walikale",Congo (Democratic Republic),,,,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0035 (UN Ref):CDi.033 Graduated secondary school humanités sociales in Mpofi; joined the armed group commanded by She Kasikila at the age of 16; integrated the FARDC with Kasikila, becoming his battalion S3; injured in 2007, thereafter joining Mai Mai Simba under then-commander “Mando;” participated in the creation of the NDC in 2008, becoming the deputy commander in charge of the Aigle Lemabé Brigade. He is also a threat to the peace, stability and security of the DRC under UNSCR 2293 paragraph 7(g). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6194814",Individual,Primary name,,Democratic Republic of the Congo,02/02/2018,01/02/2018,31/12/2020,13605 +MYANMAR CHEMICAL & MACHINERY CO,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):MYA0043 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations in Myanmar for decades. Myanmar Chemical and Machinery Co Ltd (MCM) has provided support for the military’s activities in its role as an importer and broker of arms imports to Myanmar. It has acted as a key source of weapons and commercial support for the junta. MCM, has therefore, been involved in the supply of restricted goods and/or restricted technology, which could have contributed to serious human rights violations. Further and/or alternatively, MCM owned and/or controlled by and/or associated with Aung Hlaing Oo, who has played a personal role in brokering arms deals from Eastern Europe through his personal and commercial connections. (Type of entity):Company",Entity,Primary name,,Myanmar,25/03/2022,25/03/2022,25/03/2022,15050 +MYANMAR ECONOMIC CORPORATION,,,,,,,,,,,,,,,,,,,Strand Rd.,Near Thakhin Mya Park,Ayeyar Waddy Ward,,Ahlone,Yangon,,Myanmar,"(UK Sanctions List Ref):GHR0081 Names of Director(s)/Management: Lt Gen (retired) Nyo Saw (Former QMG – retired in 2020); Maj Gen Moe Myint Htun (Army COS); Rear Admiral Moe Aung (Navy COS); Lt Gen Htun Aung (Air Force COS); Brig Gen Aung Kyaw Hoe (Defence Perm Sec); Aung Lin Tun (Htun); Maj Gen Aung Zay Ya; Khin Maung Soe; Maj Gen Maung Maung Myint; Brig Gen Thaik Soe; Thant Swe; Thant Zin; Maj Gen Thaw Lwin; Thein Toe; Maj Gen Zaw Lwin Oo; Zin Min Htet; Aung Min; Htun Htun Oo; Myo Thant; Win Lwin. Ultimate beneficial owner(s): Myanmar senior military leadership, units and battalions. (UK Statement of Reasons):Myanmar Economic Corporation (MEC) is a major Myanmar conglomerate, which in practice is owned and governed by, and for the benefit of, the Myanmar Ministry of Defence (MoD). The Tatmadaw who are responsible for serious human rights violations against the population of Myanmar, including the 2021 coup d'etat and violence against ethnic minorities, is under the command of the MoD. Also several former and serving member of the Tatmadaw are directors of MEC. There are therefore reasonable grounds to suspect that MEC is associated with the Tatmadaw. Further or alternatively, there are reasonable grounds to suspect that MEC made funds available to the Tatmadaw by directly contributing to a fundraising event aimed at providing financial support for the Tatmadaw during the 2017 ‘clearance operations’ against the Rohingya. These “clearance operations” resulted in serious human rights violations, including mass unlawful killing, torture, systematic rape and targeted sexual violence. (Type of entity):Military Holding Company (Subsidiaries):Agro Pack Co., Ltd.; Aung Myint Mo Min Securities. Ahlone International Port Terminal 1. Amber International Company Ltd.. Anhydrous Ethanol Plant (Taungzinaye). Aung Myint Moh Min Insurance Company Ltd.. Aung Zayya Oo Co., Ltd.. Bagwa Gone Company Ltd.. Bagwa Gone Gems Company Ltd.. Cannery. Cement plant (Myaingglay). Coal Mine (Maw Taung). Coal Mine and Power Plant (Mai Khot). Container Transport and Port Clearance Yard (Ywama) Cotton Ginning Factory (Myitthar). Dagon Beverages Company Ltd.. Dagon Dairy Farm, Dairy Factory and Cannery (Pyinmabin). Dagon FC Company Ltd.;. Dagon Rum Factory (Shwe Pyi Thar). Disposable Syringe Factory (Hwambi). Galvanized Iron Sheet Factory (Than Hlyin). Gas plant (Botahthaung). Gas plant (Mandalay). Gems Extraction Mine (Mine Shu – Loi Saung Htauk). Glass Factory (Than Hlyin). Golden Majestic Star Mobile Company Limited. Granite Mine and Processing Plant (Balin). GSM Mobil Phone (438,000) Allocation (Ayeyarwadi Division). Gypsum Mine and Transportation Plant (Htone Bo). High Tension Steel Bolts, Nuts and Washers Manufacturing Plant (Ywama). Hteedan Port (Kyeemyindine). Indoor Skydiving. Innwa Bank Ltd. Jade Extraction Mine (Lone Khin – Hpakan). Kan Thar Yar International Specialist Hospital. Marble mine and processing plant (Mandalay). Myanmar Economic Corporation Telecommunication (MECTel). Myanmar Mobile Money Services Company Ltd.. Myanmar Mobile Money Services Company Ltd.;. Myanmar Sigma Cable Wire Factory (Hlaing Thar Yar);. Mytel Wallet International Myanmar Company. Nan Myaing Coffee (Pyin Oo Lwin); Okkala Golf Resort. Nay Pyi Taw Ye Pyar Drinking Water Plant (Naypyitaw). No. 1 Steel Rolling Mill in Kyauk Swae Kyowe on site of Pinpet Iron Ore Mine. No. 2 Steel Mill and Fabrication Shop (Myaungdagar). No. 3 Steel Mill 3 (Ywama). Oxygen Plant (Mindama). Paper Factory (Myainggalay). Printing Factory (Yangon). Refractory Plant (Aung Lan). Remote sensing ground station. Rice Mills and Rice Storage (Hteedan Port). Sandaku Myint Mo Co., Ltd.. Ship Breaking Yard (Thilawa). Star High Co., Ltd.. Star High Group Company Ltd. Sugar Mill (Du Yin Gabo). Sugar mill (Kanbalu). Sugar Mill (Kanhla). Tea factory (Kan Yeik Thar). Tea powder and tea mix factory (Pyinmabin). Tristar Tyre Manufacturing Company Ltd. Tyre Retreading Plant (Ywama). Virgin Coconut Oil Factory (Pathein). Wolfram Mine (Dawei)",Entity,Primary name,,Global Human Rights,01/04/2021,01/04/2021,11/11/2022,14081 +MYANMAR ECONOMIC HOLDINGS LIMITED,,,,,,,,,,,,,,,,,,,189/191 Mahaban Doola Road,Corner of 50th Street,,,,Yangon,,Myanmar,"(UK Sanctions List Ref):GHR0080 Names of Director(s)/Management: Commander-in-Chief Senior General Min Aung; Deputy Commander-in-Chief U Soe Win; Lt General Hsan Oo; Lt General Mya Tun Oo; Admiral Tin Aung San; General Maung Maung Kyaw; Lt General (retired) Nyo Saw; Maj General Khin Maung Than; Maj General Moe Myint Htun; Read Admiral Moe Aung; Lt General Htun Aung; Lt General Min Naung; Lt General Aung Lin Dwe; Big General (Ret) Kyaw Htin; Major Ni Aung; Big General (Ret) Kyaw Myo Win; Maj (Retired) Ming Khine; Colonel Myint Swe; Lt General Aye Win; Ultimate beneficial owner(s): Myanmar senior military leadership, units and battalions. (UK Statement of Reasons):Myanmar Economic Holdings Limited (MEHL) is a major Myanmar conglomerate, owned by the Myanmar military and its current and former personnel. Min Aung Hlaing, Myanmar’s Commander in Chief, is the Chair of MEHL’s ‘patron group’, along with other senior ranking Tatmadaw officers. In 2017, MEHL directly contributed to a series of fundraising events, which provided financial support for the Tatmadaw personnel engaged in “clearance operations” against the Rohingya. There are reasonable grounds to suspect that part or all of these funds contributed to operations that resulted in serious human rights violations, including mass unlawful killings, torture, systematic rape and other forms of targeted sexual violence by the Tatmadaw committed in Rakhine State in 2017. In view of the circumstances including the close connections between MEHL and senior members of the Tatmadaw, there are reasonable grounds to suspect that MEHL knew or had reasonable cause to suspect that the funds would or may contribute to the serious human rights violations committed. Further or alternatively, MEHL is associated with the Commander in Chief and Deputy Commander in Chief of the Tatmadaw in view of their connections to MEHL including their positions on the patron group. (Type of entity):Military Holding Company (Subsidiaries):Adipati Agricultural Produce Trading Ltd. ASHOK (Gems and Jewellery) Co., Ltd. (alternate spelling: Thawka). Aung Thitsa Oo General Insurance Company Limited. Aung Thitsa Oo Life Insurance Company Limited. Bandoola Transportation Company Inc. Berger Paints Manufacturing Limited. Bo Aung Kyaw Terminal. Cancri (Gems and Jewellery) Co., Ltd. (alternate spelling: Phu Sha Star). Da Na Theiddi Kyal (Jewellery) Co., Ltd. (alternate spelling: Da Na Theiddihi Star and Danatheidi Star (Gems and Jewellery) Co., Ltd). Du Won Kyal (Jewellery) Co., Ltd. (alternate spelling: Du Won Star and Du Won Star (Gems & Jewellery) Co., Ltd.). Hawk Star (Gems and Jewellery) Co., Ltd. (alternate spellings: Thine Ngat Kyal (Jewellery) Co., Ltd. and Thein Nget Star). Hlaing Inland Terminal and Logistics Co., Ltd.. Inndagaw Industrial Complex; Kanpauk Oil Palm Estate and Palm Oil Mill Project (KOPP). Kayah State Mineral Production Company Ltd. Kone Yar Thi Star (alternate spelling: Aquarii (Gems & Jewellery) Co., Ltd.. Lann Pyi Marine Company Ltd; Larbathakedi Micro Finance Service Association Inc.. Lyrae (Gems and Jewellery) Co., Ltd. (alternate spelling: Saung Tar Yar Star). Mon Hsu Jewellery Co., Ltd. (alternate spelling: Mine Shu). Myanmar Imperial Jade (Gems & Jewellery) Co., Ltd.. Myanmar Land and Development Ltd. Myanmar Rubber Wood Co., Ltd.. Myanmar Ruby Enterprise (Gems & Jewellery) Co., Ltd.. Myanmar Tharkaung Finance Co., Ltd.. Myawaddy Agricultural Services Col, Ltd. Myawaddy Bank Ltd.. Myawaddy Clean Drinking Water Service. Myawaddy Trading Ltd; Myawaddy Travels and Tours Co., Ltd.. Myawady Football Club. Nawadae Hotel and Tourism Ltd.. Ngwe Pin Lei Livestock Breedings and Fisheries Co., Ltd.. Ngwe Pin Lei Premium Marine Products Co., Ltd.. Ngwe Pinlae Industrial Zone. Pone Nyet (Gems and Jewellery) Co., Ltd. (alternate spelling: Pone Nyat and One Nyat (Jewellery) Co., Ltd.). Pyinmabin Industrial Zone. Sabai (Jewellery) Co., Ltd. (alternate spellings: Sabae (Gems and Jewellery) Co., Ltd., and Jasmine). Seik Ta Ya Kyal (Jewellery) Co., Ltd. (alternate spellings: Si Tra Star, Seik Tra Star and Seiktra Star (Gems and Jewellery) Co., Ltd.). Shwe Gandamar International Trading Ltd. Shwe Innwa Gems (Business Reg No):156387282",Entity,AKA,,Global Human Rights,25/03/2021,25/03/2021,11/11/2022,14080 +MYANMAR ECONOMIC HOLDINGS PUBLIC COMPANY LTD,,,,,,,,,,,,,,,,,,,189/191 Mahaban Doola Road,Corner of 50th Street,,,,Yangon,,Myanmar,"(UK Sanctions List Ref):GHR0080 Names of Director(s)/Management: Commander-in-Chief Senior General Min Aung; Deputy Commander-in-Chief U Soe Win; Lt General Hsan Oo; Lt General Mya Tun Oo; Admiral Tin Aung San; General Maung Maung Kyaw; Lt General (retired) Nyo Saw; Maj General Khin Maung Than; Maj General Moe Myint Htun; Read Admiral Moe Aung; Lt General Htun Aung; Lt General Min Naung; Lt General Aung Lin Dwe; Big General (Ret) Kyaw Htin; Major Ni Aung; Big General (Ret) Kyaw Myo Win; Maj (Retired) Ming Khine; Colonel Myint Swe; Lt General Aye Win; Ultimate beneficial owner(s): Myanmar senior military leadership, units and battalions. (UK Statement of Reasons):Myanmar Economic Holdings Limited (MEHL) is a major Myanmar conglomerate, owned by the Myanmar military and its current and former personnel. Min Aung Hlaing, Myanmar’s Commander in Chief, is the Chair of MEHL’s ‘patron group’, along with other senior ranking Tatmadaw officers. In 2017, MEHL directly contributed to a series of fundraising events, which provided financial support for the Tatmadaw personnel engaged in “clearance operations” against the Rohingya. There are reasonable grounds to suspect that part or all of these funds contributed to operations that resulted in serious human rights violations, including mass unlawful killings, torture, systematic rape and other forms of targeted sexual violence by the Tatmadaw committed in Rakhine State in 2017. In view of the circumstances including the close connections between MEHL and senior members of the Tatmadaw, there are reasonable grounds to suspect that MEHL knew or had reasonable cause to suspect that the funds would or may contribute to the serious human rights violations committed. Further or alternatively, MEHL is associated with the Commander in Chief and Deputy Commander in Chief of the Tatmadaw in view of their connections to MEHL including their positions on the patron group. (Type of entity):Military Holding Company (Subsidiaries):Adipati Agricultural Produce Trading Ltd. ASHOK (Gems and Jewellery) Co., Ltd. (alternate spelling: Thawka). Aung Thitsa Oo General Insurance Company Limited. Aung Thitsa Oo Life Insurance Company Limited. Bandoola Transportation Company Inc. Berger Paints Manufacturing Limited. Bo Aung Kyaw Terminal. Cancri (Gems and Jewellery) Co., Ltd. (alternate spelling: Phu Sha Star). Da Na Theiddi Kyal (Jewellery) Co., Ltd. (alternate spelling: Da Na Theiddihi Star and Danatheidi Star (Gems and Jewellery) Co., Ltd). Du Won Kyal (Jewellery) Co., Ltd. (alternate spelling: Du Won Star and Du Won Star (Gems & Jewellery) Co., Ltd.). Hawk Star (Gems and Jewellery) Co., Ltd. (alternate spellings: Thine Ngat Kyal (Jewellery) Co., Ltd. and Thein Nget Star). Hlaing Inland Terminal and Logistics Co., Ltd.. Inndagaw Industrial Complex; Kanpauk Oil Palm Estate and Palm Oil Mill Project (KOPP). Kayah State Mineral Production Company Ltd. Kone Yar Thi Star (alternate spelling: Aquarii (Gems & Jewellery) Co., Ltd.. Lann Pyi Marine Company Ltd; Larbathakedi Micro Finance Service Association Inc.. Lyrae (Gems and Jewellery) Co., Ltd. (alternate spelling: Saung Tar Yar Star). Mon Hsu Jewellery Co., Ltd. (alternate spelling: Mine Shu). Myanmar Imperial Jade (Gems & Jewellery) Co., Ltd.. Myanmar Land and Development Ltd. Myanmar Rubber Wood Co., Ltd.. Myanmar Ruby Enterprise (Gems & Jewellery) Co., Ltd.. Myanmar Tharkaung Finance Co., Ltd.. Myawaddy Agricultural Services Col, Ltd. Myawaddy Bank Ltd.. Myawaddy Clean Drinking Water Service. Myawaddy Trading Ltd; Myawaddy Travels and Tours Co., Ltd.. Myawady Football Club. Nawadae Hotel and Tourism Ltd.. Ngwe Pin Lei Livestock Breedings and Fisheries Co., Ltd.. Ngwe Pin Lei Premium Marine Products Co., Ltd.. Ngwe Pinlae Industrial Zone. Pone Nyet (Gems and Jewellery) Co., Ltd. (alternate spelling: Pone Nyat and One Nyat (Jewellery) Co., Ltd.). Pyinmabin Industrial Zone. Sabai (Jewellery) Co., Ltd. (alternate spellings: Sabae (Gems and Jewellery) Co., Ltd., and Jasmine). Seik Ta Ya Kyal (Jewellery) Co., Ltd. (alternate spellings: Si Tra Star, Seik Tra Star and Seiktra Star (Gems and Jewellery) Co., Ltd.). Shwe Gandamar International Trading Ltd. Shwe Innwa Gems (Business Reg No):156387282",Entity,Primary name,,Global Human Rights,25/03/2021,25/03/2021,11/11/2022,14080 +MYANMAR GEMS ENTERPRISE (MGE),,,,,,,,,,,,,,,,,,,Myanmar Gems Enterprise,No.70-072,Yarza Thingaha Road,Thapyaygone Ward,Zabuthiri Township,Naypyitaw,,Myanmar,"(UK Sanctions List Ref):MYA0024 (UK Statement of Reasons):The Myanmar military seized power from civilian leaders on 1 February in a coup d’état and established a military junta. Since then all state institutions have come under the control of the State Administration Council (SAC), who oversee the governance and expenditure of ministries. The SAC/military junta undermines democracy and, together with the Myanmar Security Forces, is responsible for the repression of the civilian population. Myanmar Gems Enterprise is a state-owned enterprise which operates under the Ministry of Natural Resources and Environmental Conservation (MONREC) and provides funding directly to the Ministry of Planning and Finance (MOPF). There are reasonable grounds to suspect that MGE, is under the control of, and/or is associated with, the SAC via its subservient relationship with MONREC; Further or alternatively, there are reasonable grounds to suspect that MGE makes available funds or economic resources, to the SAC/military junta that could contribute to undermining democracy and repressing the civilian population. Further or alternatively MGE is also associated with the military through its joint venture partnerships and close links to military companies, for which it grants favourable mining rights and permits. MGE also runs and controls gems emporiums, which are attended by and benefit the military and their companies. (Phone number):(+)9509262597027 (Email address):Famouswin599@gmail.com (Type of entity):Public/State Owned (Parent company):State Owned Enterprise (SOE)",Entity,Primary name,,Myanmar,17/05/2021,17/05/2021,11/11/2022,14108 +MYANMAR NEW ERA TRADING COMPANY LIMITED,,,,,,,,,,,,,,,,,,,AUNG CHAN THAR (2) QUARTER,THANLYIN TOWNSHIP,NO. (B/193),BO MYINT S,,YANGON REGION,,Myanmar,"(UK Sanctions List Ref):MYA0049 (UK Statement of Reasons):The Myanmar Armed Forces have a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. Myanmar New Era Trading Ltd has been responsible for the supply of parts and upkeep of aircraft for the Myanmar Armed Forces. Therefore, Myanmar New Era Trading Ltd has been involved in the supply of restricted goods to Myanmar. (Type of entity):Private Company (Business Reg No):101544478",Entity,Primary name,,Myanmar,16/06/2022,16/06/2022,16/06/2022,15403 +MYANMAR PEARL ENTERPRISE (MPE),,,,,,,,,,,,,,,,,,,90 Kanbe Street,,,,Yankin Township,Yangon,,Myanmar,"(UK Sanctions List Ref):MYA0026 (UK Statement of Reasons):The Myanmar military seized power from civilian leaders on 1 February in a coup d’état and established a military junta. Since then all state institutions have come under the control of the State Administration Council (SAC), who oversee the governance and expenditure of ministries. The SAC/military junta undermines democracy and, together with the Myanmar Security Forces, is responsible for the repression of the civilian population. Myanmar Pearl Enterprise is a state-owned enterprise which operates under the Ministry of Natural Resources and Environmental Conservation (MONREC) and provides funding directly to the Ministry of Planning and Finance (MOPF). There are reasonable grounds to suspect that MPE, is under the control of, and/or is associated with, the SAC via its subservient relationship with MONREC; Further or alternatively, there are reasonable grounds to suspect that MPE makes available funds or economic resources, to the SAC/military junta that could contribute to undermining democracy and repressing the civilian population. Further or alternatively MPE is also associated with the military through its leadership. The Managing Director was also appointed as a Deputy Minister in MONREC by the SAC on 11 March. MPE also runs and controls pearl emporiums, and is involved in gems emporiums, which are attended by and benefit the military and their companies. (Phone number):(+95)09429204434 (Email address):panpapalin@gmail.com (Type of entity):Public/State Owned",Entity,Primary name,,Myanmar,21/06/2021,21/06/2021,11/11/2022,14110 +MYANMAR PEARL ENTERPRISE (MPE),,,,,,,,,,,,,,,,,,,Myanmar Pearl Enterprise,Ministry of Mines,Myanmar Gems Museum,Yazathingha Street,Zabuthri Township,Naypyitaw,,Myanmar,"(UK Sanctions List Ref):MYA0026 (UK Statement of Reasons):The Myanmar military seized power from civilian leaders on 1 February in a coup d’état and established a military junta. Since then all state institutions have come under the control of the State Administration Council (SAC), who oversee the governance and expenditure of ministries. The SAC/military junta undermines democracy and, together with the Myanmar Security Forces, is responsible for the repression of the civilian population. Myanmar Pearl Enterprise is a state-owned enterprise which operates under the Ministry of Natural Resources and Environmental Conservation (MONREC) and provides funding directly to the Ministry of Planning and Finance (MOPF). There are reasonable grounds to suspect that MPE, is under the control of, and/or is associated with, the SAC via its subservient relationship with MONREC; Further or alternatively, there are reasonable grounds to suspect that MPE makes available funds or economic resources, to the SAC/military junta that could contribute to undermining democracy and repressing the civilian population. Further or alternatively MPE is also associated with the military through its leadership. The Managing Director was also appointed as a Deputy Minister in MONREC by the SAC on 11 March. MPE also runs and controls pearl emporiums, and is involved in gems emporiums, which are attended by and benefit the military and their companies. (Phone number):(+95)09429204434 (Email address):panpapalin@gmail.com (Type of entity):Public/State Owned",Entity,Primary name,,Myanmar,21/06/2021,21/06/2021,11/11/2022,14110 +MYANMAR TIMBER ENTERPRISE (MTE),,,,,,,,,,,,,,,,,,,Gyogone Forest Compound,Bayint Naung Road,Insein Township,,,Yangon,,Myanmar,"(UK Sanctions List Ref):MYA0025 (UK Statement of Reasons):The Myanmar military seized power from civilian leaders on 1 February in a coup d’état and established a military junta. Since then all state institutions have come under the control of the State Administration Council (SAC), who oversee the governance and expenditure of ministries. The SAC/military junta undermines democracy and, together with the Myanmar Security Forces, is responsible for the repression of the civilian population. Myanmar Timber Enterprise is a state-owned enterprise which operates under the Ministry of Natural Resources and Environmental Conservation (MONREC) and provides funding directly to the Ministry of Planning and Finance (MOPF). There are reasonable grounds to suspect that MTE, is under the control of, and/or is associated with, the SAC via its subservient relationship with MONREC; Further or alternatively, there are reasonable grounds to suspect that MTE makes available funds or economic resources, to the SAC/military junta that could contribute to undermining democracy and repressing the civilian population. (Phone number):01-3528789 (Email address):Johnsb1985@gmail.com (Type of entity):Public/State Owned",Entity,Primary name,,Myanmar,21/06/2021,21/06/2021,11/11/2022,14109 +MYANMAR TIMBER ENTERPRISE (MTE),,,,,,,,,,,,,,,,,,,No(72/74) Shawe Dagon Pagoda Road,,Dagon Township,,,Yangon,,Myanmar,"(UK Sanctions List Ref):MYA0025 (UK Statement of Reasons):The Myanmar military seized power from civilian leaders on 1 February in a coup d’état and established a military junta. Since then all state institutions have come under the control of the State Administration Council (SAC), who oversee the governance and expenditure of ministries. The SAC/military junta undermines democracy and, together with the Myanmar Security Forces, is responsible for the repression of the civilian population. Myanmar Timber Enterprise is a state-owned enterprise which operates under the Ministry of Natural Resources and Environmental Conservation (MONREC) and provides funding directly to the Ministry of Planning and Finance (MOPF). There are reasonable grounds to suspect that MTE, is under the control of, and/or is associated with, the SAC via its subservient relationship with MONREC; Further or alternatively, there are reasonable grounds to suspect that MTE makes available funds or economic resources, to the SAC/military junta that could contribute to undermining democracy and repressing the civilian population. (Phone number):01-3528789 (Email address):Johnsb1985@gmail.com (Type of entity):Public/State Owned",Entity,Primary name,,Myanmar,21/06/2021,21/06/2021,11/11/2022,14109 +MYANMAR WAR VETERANS ORGANISATION,,,,,,,,,,,,,,,,,,,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0030 (UK Statement of Reasons):The Myanmar War Veterans Organisation (MWVO) is associated with the Tatmadaw which is responsible for serious human rights violations against the population of Myanmar; undermining democracy and repressing the civilian population, in particular during the 2021 coup d'etat and violence against ethnic minorities. The MWVO functions in part as a reserve force for the Tatmadaw and helps shape national defence and security policy. Several high-ranking serving Tatmadaw officers sit on the Central Patron Board. In particular the Commander-in-Chief and Deputy Commander-in-Chief of the Defence Services, both of whom have been involved in serious human rights violations (and designated under the Global Human Rights sanctions regulations) sit on the Central Patron Board of the MWVO. Further or alternatively, the MWVO has promoted and supported the Tatmadaw’s involvement in undermining democracy; violating human rights; and repressing the civilian population. The MWVO organises pro-regime rallies in support of, and to counter international condemnation of the Tatmadaw; and practises people’s militia. Further or alternatively, MWVO is also associated with Myanmar Economic Holdings Ltd (MEHL), a designated entity, through a shared governance structure and financial relationship. (Website):https://www.mwvo.org (Type of entity):Private Company",Entity,Primary name,,Myanmar,10/12/2021,10/12/2021,11/11/2022,14163 +MYCHAYLOV,Yevhen,Eduardovych,,,,,,,,17/03/1963,Arkhangelsk,Russia,Ukraine,,,,,Former so-called 'Minister of the Council of Ministers',,,,,,,,,"(UK Sanctions List Ref):RUS0030 (UK Statement of Reasons):Former so-called “Minister of the Council of Ministers” (Head of the administration for governmental affairs) of the “Donetsk People’s Republic”. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,AKA,,Russia,02/12/2014,31/12/2020,31/12/2020,13179 +MYINT,Aung,,,,,,,,,09/06/1971,,Myanmar,Myanmar,12/YAKANA(N)006981,,,,Honorary Consul of the Republic of Belarus to the Republic of the Union of Myanmar,15 Waizayandar Road,Ngye Kyar Yan Quarters,South Okkalapa Township,,,Yangon,,Myanmar,"(UK Sanctions List Ref):MYA0037 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. As Director of Dynasty International Company Ltd (DICL), Aung Moe Myint has used his commercial and personal position to provide support for these activities in his role as an importer and broker of arms and dual use goods. Through his control of DICL, he has acted as a key source of weapons and commercial support for the junta, including through his close political/commercial ties with Belarus. Aung Moe Myint has therefore been involved in the supply of restricted goods and/or restricted technology, and dual-use goods, which could have contributed to serious human rights violations. Further, and/or alternatively, Dr Aung Moe Myint is associated with the State Administration Council and Myanmar Security Forces, through his role as Honorary Consul of the Republic of Belarus. He has used this position to carry out engagement on behalf of the State Administration Council and/or the Myanmar Security Forces. Further, and/or alternatively, Dr Aung Moe Myint is associated with the military through his extensive links with the former and current junta regimes. (Gender):Male",Individual,Primary name variation,,Myanmar,25/03/2022,25/03/2022,25/03/2022,15045 +MYINT,Aung,,,,,,,,,28/09/1969,,Myanmar,Myanmar,12/YAKANA(N)006981,,,,Honorary Consul of the Republic of Belarus to the Republic of the Union of Myanmar,15 Waizayandar Road,Ngye Kyar Yan Quarters,South Okkalapa Township,,,Yangon,,Myanmar,"(UK Sanctions List Ref):MYA0037 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. As Director of Dynasty International Company Ltd (DICL), Aung Moe Myint has used his commercial and personal position to provide support for these activities in his role as an importer and broker of arms and dual use goods. Through his control of DICL, he has acted as a key source of weapons and commercial support for the junta, including through his close political/commercial ties with Belarus. Aung Moe Myint has therefore been involved in the supply of restricted goods and/or restricted technology, and dual-use goods, which could have contributed to serious human rights violations. Further, and/or alternatively, Dr Aung Moe Myint is associated with the State Administration Council and Myanmar Security Forces, through his role as Honorary Consul of the Republic of Belarus. He has used this position to carry out engagement on behalf of the State Administration Council and/or the Myanmar Security Forces. Further, and/or alternatively, Dr Aung Moe Myint is associated with the military through his extensive links with the former and current junta regimes. (Gender):Male",Individual,Primary name variation,,Myanmar,25/03/2022,25/03/2022,25/03/2022,15045 +MYINT,Aung Moe,,,,,Doctor,,,,09/06/1971,,Myanmar,Myanmar,12/YAKANA(N)006981,,,,Honorary Consul of the Republic of Belarus to the Republic of the Union of Myanmar,15 Waizayandar Road,Ngye Kyar Yan Quarters,South Okkalapa Township,,,Yangon,,Myanmar,"(UK Sanctions List Ref):MYA0037 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. As Director of Dynasty International Company Ltd (DICL), Aung Moe Myint has used his commercial and personal position to provide support for these activities in his role as an importer and broker of arms and dual use goods. Through his control of DICL, he has acted as a key source of weapons and commercial support for the junta, including through his close political/commercial ties with Belarus. Aung Moe Myint has therefore been involved in the supply of restricted goods and/or restricted technology, and dual-use goods, which could have contributed to serious human rights violations. Further, and/or alternatively, Dr Aung Moe Myint is associated with the State Administration Council and Myanmar Security Forces, through his role as Honorary Consul of the Republic of Belarus. He has used this position to carry out engagement on behalf of the State Administration Council and/or the Myanmar Security Forces. Further, and/or alternatively, Dr Aung Moe Myint is associated with the military through his extensive links with the former and current junta regimes. (Gender):Male",Individual,Primary name,,Myanmar,25/03/2022,25/03/2022,25/03/2022,15045 +MYINT,Aung Moe,,,,,Doctor,,,,28/09/1969,,Myanmar,Myanmar,12/YAKANA(N)006981,,,,Honorary Consul of the Republic of Belarus to the Republic of the Union of Myanmar,15 Waizayandar Road,Ngye Kyar Yan Quarters,South Okkalapa Township,,,Yangon,,Myanmar,"(UK Sanctions List Ref):MYA0037 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. As Director of Dynasty International Company Ltd (DICL), Aung Moe Myint has used his commercial and personal position to provide support for these activities in his role as an importer and broker of arms and dual use goods. Through his control of DICL, he has acted as a key source of weapons and commercial support for the junta, including through his close political/commercial ties with Belarus. Aung Moe Myint has therefore been involved in the supply of restricted goods and/or restricted technology, and dual-use goods, which could have contributed to serious human rights violations. Further, and/or alternatively, Dr Aung Moe Myint is associated with the State Administration Council and Myanmar Security Forces, through his role as Honorary Consul of the Republic of Belarus. He has used this position to carry out engagement on behalf of the State Administration Council and/or the Myanmar Security Forces. Further, and/or alternatively, Dr Aung Moe Myint is associated with the military through his extensive links with the former and current junta regimes. (Gender):Male",Individual,Primary name,,Myanmar,25/03/2022,25/03/2022,25/03/2022,15045 +MYM,,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +MYO’NG-HO,Chang,,,,,,,,,04/06/1954,,,North Korea,645120196,,,,Tanchon Commercial Bank (TCB) official,,,,,,,,,"(UK Sanctions List Ref):DPR0259 (UN Ref):KPi.008 Ra Ky'ong-Su is a Tanchon Commercial Bank (TCB) official. In this capacity he has facilitated transactions for TCB. Tanchon was designated by the Committee in April 2009 as the main DPRK financial entity responsible for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons. (Gender):Male",Individual,AKA,Good quality,Democratic People's Republic of Korea,19/02/2013,22/01/2013,02/08/2022,12845 +MYOHYANG SHIPPING CO,,,,,,,,,,,,,,,,,,,Kumsong 3-dong,Mangyongdae-guyok,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0178 (UN Ref):KPe.068 Ship manager of DPRK oil products tanker YU SON, which is believed to have been involved in ship-to-ship transfer operations for oil. IMO number: 5988369.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13639 +MYONG GUK,JON,,,,,,,,,25/08/1976,,,North Korea,(1) 4721202031. (2) 836110035,"(1) - . (2) Diplomatic passport number, which expires on 1 January 2020.",,,Tanchon Commercial Bank Representative in Syria,,,,,,,,,"(UK Sanctions List Ref):DPR0221 (UN Ref):KPi.018 Pursuant to Resolution 2371(2017) the Security Council added the following information: New AKA: Jon Yong Sang with date of birth 25 August 1976 and diplomatic passport number 836110035, which expires on 1 January 2020.",Individual,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,19/01/2021,13329 +MYONG GUK,JON,,,,,,,,,18/10/1976,,,North Korea,(1) 4721202031. (2) 836110035,"(1) - . (2) Diplomatic passport number, which expires on 1 January 2020.",,,Tanchon Commercial Bank Representative in Syria,,,,,,,,,"(UK Sanctions List Ref):DPR0221 (UN Ref):KPi.018 Pursuant to Resolution 2371(2017) the Security Council added the following information: New AKA: Jon Yong Sang with date of birth 25 August 1976 and diplomatic passport number 836110035, which expires on 1 January 2020.",Individual,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,19/01/2021,13329 +MYONG HO,Chang,,,,,,,,,04/06/1954,,,North Korea,645120196,,,,Tanchon Commercial Bank (TCB) official,,,,,,,,,"(UK Sanctions List Ref):DPR0259 (UN Ref):KPi.008 Ra Ky'ong-Su is a Tanchon Commercial Bank (TCB) official. In this capacity he has facilitated transactions for TCB. Tanchon was designated by the Committee in April 2009 as the main DPRK financial entity responsible for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons. (Gender):Male",Individual,AKA,Good quality,Democratic People's Republic of Korea,19/02/2013,22/01/2013,02/08/2022,12845 +MYONG SIN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0101 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V SAM MA 2 imported refined petroleum products in October, early November and mid-November 2017 through multiple ship-to-ship transfers. Listed as asset of Korea Samma Shipping Co (OFSI ID: 13636, UN Reference Number: UN Ref KPe.065) (IMO number):8106496 (Current owners):Korea Samma Shipping (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):962 (Length of ship):70 (Year built):1981",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13652 +MYONG-CHIN,CHANG,,,,,,,,,19/02/1968,,,,,,,,General Manager of the Sohae Satellite Launching Station and head of launch center at which the 13 April and 12 December 2012 launches took place.,,,,,,,,,(UK Sanctions List Ref):DPR0200 (UN Ref):KPi.007 General Manager of the Sohae Satellite Launching Station and head of launch center at which the 13 April and 12 December 2012 launches took place. (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12844 +MYONG-CHIN,CHANG,,,,,,,,,00/00/1965,,,,,,,,General Manager of the Sohae Satellite Launching Station and head of launch center at which the 13 April and 12 December 2012 launches took place.,,,,,,,,,(UK Sanctions List Ref):DPR0200 (UN Ref):KPi.007 General Manager of the Sohae Satellite Launching Station and head of launch center at which the 13 April and 12 December 2012 launches took place. (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12844 +MYONG-CHIN,CHANG,,,,,,,,,00/00/1966,,,,,,,,General Manager of the Sohae Satellite Launching Station and head of launch center at which the 13 April and 12 December 2012 launches took place.,,,,,,,,,(UK Sanctions List Ref):DPR0200 (UN Ref):KPi.007 General Manager of the Sohae Satellite Launching Station and head of launch center at which the 13 April and 12 December 2012 launches took place. (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12844 +MYONG-HO,Chang,,,,,,,,,04/06/1954,,,North Korea,645120196,,,,Tanchon Commercial Bank (TCB) official,,,,,,,,,"(UK Sanctions List Ref):DPR0259 (UN Ref):KPi.008 Ra Ky'ong-Su is a Tanchon Commercial Bank (TCB) official. In this capacity he has facilitated transactions for TCB. Tanchon was designated by the Committee in April 2009 as the main DPRK financial entity responsible for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons. (Gender):Male",Individual,AKA,Good quality,Democratic People's Republic of Korea,19/02/2013,22/01/2013,02/08/2022,12845 +MYONG-JIN,Jang,,,,,,,,,19/02/1968,,,,,,,,General Manager of the Sohae Satellite Launching Station and head of launch center at which the 13 April and 12 December 2012 launches took place.,,,,,,,,,(UK Sanctions List Ref):DPR0200 (UN Ref):KPi.007 General Manager of the Sohae Satellite Launching Station and head of launch center at which the 13 April and 12 December 2012 launches took place. (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12844 +MYONG-JIN,Jang,,,,,,,,,00/00/1965,,,,,,,,General Manager of the Sohae Satellite Launching Station and head of launch center at which the 13 April and 12 December 2012 launches took place.,,,,,,,,,(UK Sanctions List Ref):DPR0200 (UN Ref):KPi.007 General Manager of the Sohae Satellite Launching Station and head of launch center at which the 13 April and 12 December 2012 launches took place. (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12844 +MYONG-JIN,Jang,,,,,,,,,00/00/1966,,,,,,,,General Manager of the Sohae Satellite Launching Station and head of launch center at which the 13 April and 12 December 2012 launches took place.,,,,,,,,,(UK Sanctions List Ref):DPR0200 (UN Ref):KPi.007 General Manager of the Sohae Satellite Launching Station and head of launch center at which the 13 April and 12 December 2012 launches took place. (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,19/02/2013,22/01/2013,31/12/2020,12844 +MYO'NG-KUK,Cho'n,,,,,,,,,25/08/1976,,,North Korea,(1) 4721202031. (2) 836110035,"(1) - . (2) Diplomatic passport number, which expires on 1 January 2020.",,,Tanchon Commercial Bank Representative in Syria,,,,,,,,,"(UK Sanctions List Ref):DPR0221 (UN Ref):KPi.018 Pursuant to Resolution 2371(2017) the Security Council added the following information: New AKA: Jon Yong Sang with date of birth 25 August 1976 and diplomatic passport number 836110035, which expires on 1 January 2020.",Individual,AKA,Good quality,Democratic People's Republic of Korea,05/03/2016,02/03/2016,19/01/2021,13329 +MYO'NG-KUK,Cho'n,,,,,,,,,18/10/1976,,,North Korea,(1) 4721202031. (2) 836110035,"(1) - . (2) Diplomatic passport number, which expires on 1 January 2020.",,,Tanchon Commercial Bank Representative in Syria,,,,,,,,,"(UK Sanctions List Ref):DPR0221 (UN Ref):KPi.018 Pursuant to Resolution 2371(2017) the Security Council added the following information: New AKA: Jon Yong Sang with date of birth 25 August 1976 and diplomatic passport number 836110035, which expires on 1 January 2020.",Individual,AKA,Good quality,Democratic People's Republic of Korea,05/03/2016,02/03/2016,19/01/2021,13329 +MZKT,,,,,,,,,,,,,,,,,,,150 Partizanski ave,,,,,,220021,Belarus,"(UK Sanctions List Ref):RUS1093 (UK Statement of Reasons):Designated for the purposes of an asset freeze under the Russia (Sanctions) (EU Exit) Regulations 2019. The designation is made as a designation by name under the urgent procedure. The relevant provision by reference to which the Minister considers that condition B is met is the Autonomous Sanctions Regulations 2011 in respect of Australia’s Ukraine and Russia sanctions regimes. The purposes of this provision correspond or are similar to the purposes of the UK’s Russia (Sanctions) (EU Exit) Regulations 2019, which have as their purposes to encourage Russia to cease actions destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. The Minister considers that it is in the public interest to designate (condition C).",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,24/03/2022,15036 +MZKT (MINSK WHEEL TRACTOR PLANT),,,,,,,,,,,,,,,,,,,150 Partizanski Avenue,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0066 (UK Statement of Reasons):The Minsk Wheel Tractor Plant (MZKT) is a key part of the Belarusian State Authority for Military Industry (SAMI), which is responsible for implementing the military-technical policy of the state. MZKT produces light armoured vehicles and other vehicles which are used to support the internal control activities of the Lukashenko regime. Subsequently, MZKT bears responsibility for providing support and equipment for police and security forces of the Ministry of Internal Affairs which have contributed to serious human rights violations and the repression of civil society following the August 9 election. (Phone number):00375(17)3301709 (Website):www.mzkt.by, www.voltadefence.com (Email address):link@mzkt.by (Type of entity):State-Owned Enterprise",Entity,Primary name,,Belarus,18/12/2020,31/12/2020,31/12/2020,14044 +N.A. DOLLEZHAL ORDER OF LENIN RESEARCH AND DESIGN INSTITUTE OF POWER ENGINEERING JSC,,,,,,,AO Ордена Ленина Научно-исследовательский и конструкторский институт энерготехники имени Н.А. Доллежаля,Cyrillic,Russian,,,,,,,,,,28 Malaya Krasnoselskaya Street,,,,,Moscow,107140,Russia,"(UK Sanctions List Ref):RUS1442 OGRN: 1097746180740; KPP: 770801001 (UK Statement of Reasons):N.A. Dollezhal Order of Lenin Research and Design Institute of Power Engineering JSC (NIKIET) is one of Russia’s largest nuclear design and research centres specialising in reactor technologies. NIKIET is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian energy and defence sectors. (Phone number):7(499)263 73 37 (Website):https://www.nikiet.ru/ (Email address):nikiet@nikiet.ru (Parent company):Rosatom (Business Reg No):Tax Identification Number: INN: 7708698473",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15357 +N.V. CO,,,,,,,,,,,,,,,,,,,4th floor,No 65,Dr Ghandi St.,Sohravardi Ave.,,Tehran,,Iran,(UK Sanctions List Ref):INU0097 (UK Statement of Reasons):An Islamic Revolutionary Guard Crops (IRGC) front company which has produced weapons parts on its behalf. (Website):www.nvco.com (Email address):(1) H.S@nvco.com (2) H.Sharifi@nvco.com (3) info@nvco.com (4) Marketing@nvco.com (5) Mostafavi@nvco.com (Type of entity):Enterprise,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11240 +N.V. CO,,,,,,,,,,,,,,,,,,,P.O. Box 155671311,,,,,,,Iran,(UK Sanctions List Ref):INU0097 (UK Statement of Reasons):An Islamic Revolutionary Guard Crops (IRGC) front company which has produced weapons parts on its behalf. (Website):www.nvco.com (Email address):(1) H.S@nvco.com (2) H.Sharifi@nvco.com (3) info@nvco.com (4) Marketing@nvco.com (5) Mostafavi@nvco.com (Type of entity):Enterprise,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11240 +NA WALNA,Daba,,,,,,,,,06/06/1966,,,Guinea Bissau,SA000417,Issued 29 October 2003 in Guinea-Bissau. Expires 10 March 2013,,,(1) Lieutenant Colonel (2) Spokesperson of 'Military Command',,,,,,,,,(UK Sanctions List Ref):GUB0016 (UN Ref):GBi.009 Naualna was listed on 18 May 2012 pursuant to paragraph 4 of resolution 2048 (2012) as “Spokesperson of the “Military Command” which has assumed responsibility for the coup d’état of 12 April 2012.” Father’s name is Samba Naualna; Mother’s name is In-Uasne Nanfafe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (UK Statement of Reasons):Spokesperson of the ‘Military Command’ which has assumed responsibility for the coup d'état of 12 April 2012. (Gender):Male,Individual,AKA,Good quality,Guinea-Bissau,04/05/2012,31/12/2020,10/03/2022,12669 +NA WALNA,Daba,,,,,,,,,06/06/1966,,,Guinea Bissau,SA000417,Issued 29 October 2003 in Guinea-Bissau. Expires 10 March 2013,,,(1) Lieutenant Colonel (2) Spokesperson of 'Military Command',,,,,,,,,(UK Sanctions List Ref):GUB0016 (UN Ref):GBi.009 Naualna was listed on 18 May 2012 pursuant to paragraph 4 of resolution 2048 (2012) as “Spokesperson of the “Military Command” which has assumed responsibility for the coup d’état of 12 April 2012.” Father’s name is Samba Naualna; Mother’s name is In-Uasne Nanfafe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (UK Statement of Reasons):Spokesperson of the ‘Military Command’ which has assumed responsibility for the coup d'état of 12 April 2012. (Gender):Male,Individual,AKA,Good quality,Guinea-Bissau,04/05/2012,31/12/2020,10/03/2022,12669 +NABBET CO,,,,,,,,,,,,,,,,,,,Unit 1,No 35,Bouali Sina Sharghi,Chehel Sotoun Street,Fatemi Square,Tehran,,Iran,"(UK Sanctions List Ref):INU0103 (UK Statement of Reasons):A company involved in procurement of inverters for Iran's uranium enrichment programme. (Phone number):+98 21 88957781 (Website):www.raadiran.com, www.raadiran.ir (Email address):info@raadiran.ir. tehran.raad@yahoo.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11544 +NABIULLINA,Elvira,Sakhipzadovna,,,,,Эльвира Сахипзадовна Набиуллина,Cyrillic,,29/10/1963,,,Russia,,,,,Governor of the Central Bank of the Russian Federation,Bank of Russia,12 Neglinnaya Street,,,,Moscow,107016,Russia,(UK Sanctions List Ref):RUS1649 (UK Statement of Reasons):Elvira NABIULLINA is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because NABIULLINA is obtaining a benefit from or supporting the Government of Russia through working for the Government of Russia as Governor of the Central Bank of the Russian Federation. (Gender):Female,Individual,Primary name,,Russia,30/09/2022,30/09/2022,30/09/2022,15593 +NADA,,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0180 (UN Ref):KPe.029 NADA is involved in the DPRK's development of space science and technology, including satellite launches and carrier rockets.",Entity,AKA,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13343 +NADAF,Aatef,,,,,,,,,00/00/1956,Damascus,Syria,Syria,,,,,Former Minister of Trade and Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0077 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Internal Trade and Consumer Protection. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13396 +NADAF,Atef,,,,,,,,,00/00/1956,Damascus,Syria,Syria,,,,,Former Minister of Trade and Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0077 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Internal Trade and Consumer Protection. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13396 +NADAF,Atif,,,,,,,,,00/00/1956,Damascus,Syria,Syria,,,,,Former Minister of Trade and Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0077 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Internal Trade and Consumer Protection. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13396 +NADDAF,Aatef,,,,,,,,,00/00/1956,Damascus,Syria,Syria,,,,,Former Minister of Trade and Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0077 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Internal Trade and Consumer Protection. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13396 +NADDAF,Atef,,,,,,,,,00/00/1956,Damascus,Syria,Syria,,,,,Former Minister of Trade and Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0077 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Internal Trade and Consumer Protection. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,14/11/2016,31/12/2020,31/12/2020,13396 +NADDAF,Atif,,,,,,,,,00/00/1956,Damascus,Syria,Syria,,,,,Former Minister of Trade and Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0077 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Internal Trade and Consumer Protection. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,31/12/2020,13396 +NADEN,Zinaida,Gavrilovna,,,,,НАДЕН Зинаида Гавриловна,Cyrillic,Russian,22/07/1947,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1287 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15239 +NADERI,Ali,Mohammad,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0013 (UK Statement of Reasons):Head of Iran’s Aviation Industries Organisation (IAIO) (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,10/02/2022,10643 +NADERI,Mohammad,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0013 (UK Statement of Reasons):Head of Iran’s Aviation Industries Organisation (IAIO) (Gender):Male,Individual,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,10/02/2022,10643 +NADRA,,,,,,,,,,15/01/1973,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +NADRA,,,,,,,,,,15/01/1974,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +NADRA,,,,,,,,,,31/03/1975,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +NADRE,Daour,,,,,,,,,15/01/1973,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +NADRE,Daour,,,,,,,,,15/01/1974,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +NADRE,Daour,,,,,,,,,31/03/1975,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +NADRE,Dour,,,,,,,,,15/01/1973,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +NADRE,Dour,,,,,,,,,15/01/1974,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +NADRE,Dour,,,,,,,,,31/03/1975,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +NAEEM,Mohammed,Fawaz,,,,,,,,06/06/1969,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,AKA,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +NAEEM,Mohammed,Fawaz,,,,,,,,06/06/1967,Homs,Syria,Syria,2255278,Syria,,,,,,,,,,,Greece,"(UK Sanctions List Ref):CTD0001 Address formerly London, UK, W12 (UK Statement of Reasons):Khaled is assessed to have left the UK and travelled to Syria to engage in Islamist extremist activists on behalf of ISIL. It is assessed that Khaled has been involved in terrorist activity, and would likely seek to provide financial support to ISIL were his designation to lapse. There are reasonable grounds to suspect that Khaled is an involved person as defined by the Counter-Terrorism (Sanctions) (EU Exit) Regulations 2019, and the Treasury considers that the designation remains appropriate. (Gender):Male",Individual,AKA,,Counter-Terrorism (Domestic),09/05/2013,31/12/2020,11/03/2022,12872 +NAGOVITSYN,Vyacheslav,Vladimirovich,,,,,Вячесла́в Влади́мирович Нагови́цын,,,02/03/1956,Glazov,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0870 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14821 +NAIL,TAYEB,,,,,,الطيب ناي,,,00/00/1972,"Faidh El Batma, Djelfa",Algeria,Algeria,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0326 (UN Ref):QDi.280 Convicted in absentia by Algerian tribunal on 28 Mar. 1996. Algerian international arrest warrant number 04/09 of 6 Jun. 2009 issued by the Tribunal of Sidi Mhamed, Algiers, Algeria. Algerian extradition request number 2307/09 of 3 Sep. 2009, presented to Malian authorities. Father’s name was Benazouz Nail. Mother’s name is Belkheiri Oum El Kheir. Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/05/2010,22/04/2010,31/12/2020,11097 +NAIL,TAYEB,,,,,,الطيب ناي,,,00/00/1976,"Faidh El Batma, Djelfa",Algeria,Algeria,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0326 (UN Ref):QDi.280 Convicted in absentia by Algerian tribunal on 28 Mar. 1996. Algerian international arrest warrant number 04/09 of 6 Jun. 2009 issued by the Tribunal of Sidi Mhamed, Algiers, Algeria. Algerian extradition request number 2307/09 of 3 Sep. 2009, presented to Malian authorities. Father’s name was Benazouz Nail. Mother’s name is Belkheiri Oum El Kheir. Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/05/2010,22/04/2010,31/12/2020,11097 +NAIM,Abu,,,,,,,,,00/00/1963,Tripoli,Libya,Libya,(1) 1990/345751. (2) 345741,(1) Libyan (2) Libyan,220334,Libya,,Bab Ben Ghasheer,,,,,Tripoli,,Libya,(UK Sanctions List Ref):AQD0305 (UN Ref):QDi.231 Mother's name is Kalthoum Abdul Salam al-Shaftari. Senior member of Libyan Islamic Fighting Group (QDe.011) and member of Al-Qaida (QDe.004). Review pursuant to Security Council resolution 1822 (2008) was concluded on 24 Nov. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1480002,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,15/06/2007,08/06/2007,31/12/2020,8645 +NAIM,Bahrun,,,,,,,,,06/09/1983,(1) Surakarta (2) Pekalongan,(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,Aleppo,,Syria,"(UK Sanctions List Ref):AQD0259 (UN Ref):QDi.404 Syrian-based Indonesian national who has served in a variety of roles supporting the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116575",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13515 +NAIM,Bahrun,,,,,,,,,06/09/1983,(1) Surakarta (2) Pekalongan,(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0259 (UN Ref):QDi.404 Syrian-based Indonesian national who has served in a variety of roles supporting the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116575",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13515 +NAIM,Mohammad,,,,,,,,,00/00/1975,"(1) Lakhi village, Hazarjuft area, Garmsir District, Helmand Province (2) Laki village, Garmsir District, Helmand Province (3) Lakari village, Garmsir District, Helmand Province (4) Darvishan, Garmsir District, Helmand Province (5) De Luy Wiyalah village, Garmsir District, Helmand Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan (5) Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation under the Taliban,,,,,,,,,(UK Sanctions List Ref):AFG0015 (UN Ref):TAi.013 Member of the Taliban Military Commission as at mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7354 +NAIMULLAH,,,,,,Mullah,,,,00/00/1975,"(1) Lakhi village, Hazarjuft area, Garmsir District, Helmand Province (2) Laki village, Garmsir District, Helmand Province (3) Lakari village, Garmsir District, Helmand Province (4) Darvishan, Garmsir District, Helmand Province (5) De Luy Wiyalah village, Garmsir District, Helmand Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan (5) Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation under the Taliban,,,,,,,,,(UK Sanctions List Ref):AFG0015 (UN Ref):TAi.013 Member of the Taliban Military Commission as at mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7354 +NAING,Tun,,,,,Officer,,,,,,,Myanmar,,,,,Commanding officer of the Border Guard Police (BGP) base in Taung Bazar,,,,,,,,,"(UK Sanctions List Ref):MYA0014 (UK Statement of Reasons):Myanmar Border Guard Police Officer Tun Naing, commanding officer of the Border Guard Police base in Taung Bazar, during the most intense months of the Rohingya ‘clearance operations’, which commenced on 25 August 2017 and were at their most intense during the following two months. Tun Naing directly and through his position of command, is responsible for serious human rights violations committed against ethnic minorities in Rakhine state. This includes physical abuse, torture and sexual violence against and detention of Rohingya people. (Gender):Male",Individual,Primary name,,Myanmar,24/12/2018,29/04/2021,11/11/2022,13734 +NAJEEB,Atef,,,,,,,,,,Jablah,Syria,Syria,,,,,Former Head of the Political Security Directorate in Dara'a.,,,,,,,,,(UK Sanctions List Ref):SYR0023 (UK Statement of Reasons):Former Head of the Political Security Directorate in Dara'a. Involved in violence against demonstrators. Member of the Assad family; cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11911 +NAJEEB,Atej,,,,,,,,,,Jablah,Syria,Syria,,,,,Former Head of the Political Security Directorate in Dara'a.,,,,,,,,,(UK Sanctions List Ref):SYR0023 (UK Statement of Reasons):Former Head of the Political Security Directorate in Dara'a. Involved in violence against demonstrators. Member of the Assad family; cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11911 +NAJEEB,Atif,,,,,,,,,,Jablah,Syria,Syria,,,,,Former Head of the Political Security Directorate in Dara'a.,,,,,,,,,(UK Sanctions List Ref):SYR0023 (UK Statement of Reasons):Former Head of the Political Security Directorate in Dara'a. Involved in violence against demonstrators. Member of the Assad family; cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11911 +NAJERA,Oscar,Ramon,,,,,Oscar Ramón NÁJERA,,,12/12/1950,,Honduras,Honduras,,,,,Congressman,,,,,,,,Honduras,"(UK Sanctions List Ref):GAC0020 (UK Statement of Reasons):Najera is a Congressman in the Honduran Congress. He has been involved in serious corruption using his position to facilitate bribes that supported a major drug trafficking organisation, ‘Los Cachiros’, and which enabled the cartel to evade accountability. Conduct of this nature seriously undermines the rule of law and trust in public institutions in Honduras. He is responsible for, and facilitated or provided support for, serious corruption, and financially benefitted from it. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14088 +NAJIB,Atef,,,,,,,,,,Jablah,Syria,Syria,,,,,Former Head of the Political Security Directorate in Dara'a.,,,,,,,,,(UK Sanctions List Ref):SYR0023 (UK Statement of Reasons):Former Head of the Political Security Directorate in Dara'a. Involved in violence against demonstrators. Member of the Assad family; cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11911 +NAJIB,Atej,,,,,,نجيب عاطف,,,,Jablah,Syria,Syria,,,,,Former Head of the Political Security Directorate in Dara'a.,,,,,,,,,(UK Sanctions List Ref):SYR0023 (UK Statement of Reasons):Former Head of the Political Security Directorate in Dara'a. Involved in violence against demonstrators. Member of the Assad family; cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name,,Syria,10/05/2011,31/12/2020,31/12/2020,11911 +NAJIB,Atif,,,,,,,,,,Jablah,Syria,Syria,,,,,Former Head of the Political Security Directorate in Dara'a.,,,,,,,,,(UK Sanctions List Ref):SYR0023 (UK Statement of Reasons):Former Head of the Political Security Directorate in Dara'a. Involved in violence against demonstrators. Member of the Assad family; cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11911 +NAJJAR,Mostafa,Mohammad,,,,,مصطفى محمد نجّار‎,,,12/02/1956,Tehran,Iran,Iran,,,,,"(1) Former Minister of Defence, 2005-2009 (2) former Minister of Interior, 2009-2013 (3) Senior advisor to the Chief of General Staff of the Armed Forces",,,,,,,,,"(UK Sanctions List Ref):INU0022 (UK Statement of Reasons):Former Iranian Minister of Defence 2005 2009, responsible for all military programmes, including ballistic missiles programmes (Gender):Male",Individual,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10644 +NAJMUDDIN,Faraj,Ahmad,,,,,,,,07/07/1956,"Olaqloo Sharbajer, Al-Sulaymaniyah Governorate",Iraq,Iraq,,,0075258,Ration card number,,Heimdalsgate 36-V,,,,,Oslo,,Norway,(UK Sanctions List Ref):AQD0270 (UN Ref):QDi.226 Mother’s name: Masouma Abd al-Rahman. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1453897,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/12/2006,07/12/2006,31/12/2020,8970 +NAJMUDDIN,Faraj,Ahmad,,,,,,,,17/06/1963,"Olaqloo Sharbajer, Al-Sulaymaniyah Governorate",Iraq,Iraq,,,0075258,Ration card number,,Heimdalsgate 36-V,,,,,Oslo,,Norway,(UK Sanctions List Ref):AQD0270 (UN Ref):QDi.226 Mother’s name: Masouma Abd al-Rahman. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1453897,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/12/2006,07/12/2006,31/12/2020,8970 +NALU,,,,,,,,,,,,,,,,,,,,,,,,North Kivu Province,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0015 (UN Ref):CDe.001 ADF founder and leader, Jamil Mukulu (CDi.015), was arrested in Dar es Salaam, Tanzania in April 2015. He was subsequently extradited to Kampala, Uganda in July 2015. As of June 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial. Seka Baluku (CDi.036) succeeded Jamil Mukulu (CDi.015) as the overall leader of the ADF. As highlighted in several reports from the Group of Experts on the DRC (S/2015/19, S/2015/797, S/2016/1102, S/2017/672, S/2018/531, S/2019/469, S/2019/974, S/2020/482), the ADF, including under Seka Baluku’s leadership, continued to commit the repeated targeting, killing and maiming, rape and other sexual violence, abduction of civilians, including children, as well as attacks on villages and health facilities, in particular in Mamove, Beni territory, on 12 and 24 February 2019, and Mantumbi, Beni territory, on 5 December 2019 and 30 January 2020, as well as the continuous recruitment and use of children during attacks and for forced labour in Beni territory in the DRC since at least 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,FKA,,Democratic Republic of the Congo,09/12/2014,30/06/2014,19/01/2021,13189 +NAM,Kim,Yong,,,,,,,,02/12/1947,Sinuju,North Korea,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0057 Assocation with Tcheul Hy Djang, Su Gwang Kim and Kyong Hui Kim (UK Statement of Reasons):Kim Yong Nam has been identified by the Panel of Experts as an agent of the Reconnaissance General Bureau, an entity which has been designated by the United Nations. He and his son KIM Su Gwang have been identified by the Panel of Experts as engaging in a pattern of deceptive financial practices which could contribute to the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. KIM Yong Nam has opened various current and savings accounts in the European Union and has been involved in various large bank transfers to bank accounts in the European Union or to accounts outside the European Union while working as a diplomat, including to accounts in the name of his son KIM Su Gwang and daughter-in-law KIM Kyong Hui. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/04/2018,31/12/2020,04/03/2022,13662 +NAM CHON GANG CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Chilgol,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +NAM CHON GANG CORPORATION,,,,,,,,,,,,,,,,,,,Sengujadong 11-2/(or Kwangbok-dong),,,,Mangyongdae District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +NAM CHONG GAN TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Chilgol,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +NAM CHONG GAN TRADING CORPORATION,,,,,,,,,,,,,,,,,,,Sengujadong 11-2/(or Kwangbok-dong),,,,Mangyongdae District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +NAM SAN 8,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0106 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK crude oil tanker M/V NAM SAN 8 is believed to have been involved in ship-to-ship transfer operations for oil. Listed as asset of Hapjanggang Shipping Corp (OFSI ID: 13629, UN Reference Number: UN Ref KPe.058) (IMO number):8122347 (Current owners):Hapjanggang Shipping Corp (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):1914 (Length of ship):91 (Year built):1982",Ship,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13657 +NAM UNG,KIM,,,,,,,,,,,,,654110043,,,,Representative for Ilsim International Bank,,,,,,,,,"(UK Sanctions List Ref):DPR0234 (UN Ref):KPi.061 Representative for Ilsim International Bank, which is affiliated with the DPRK military and has a close relationship with the Korea Kwangson Banking Corporation. Ilsim International Bank has attempted to evade United Nations sanctions.",Individual,Primary name,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13534 +NAMCHONGANG TRADING,,,,,,,,,,,,,,,,,,,,,,,Chilgol,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +NAMCHONGANG TRADING,,,,,,,,,,,,,,,,,,,Sengujadong 11-2/(or Kwangbok-dong),,,,Mangyongdae District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +NAMCHONGANG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Chilgol,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,Primary name,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +NAMCHONGANG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,Sengujadong 11-2/(or Kwangbok-dong),,,,Mangyongdae District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,Primary name,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +NAMHUNG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Chilgol,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +NAMHUNG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,Sengujadong 11-2/(or Kwangbok-dong),,,,Mangyongdae District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +NANAI,,,,,,Mawlawi,,,,00/00/1961,"Arghandab District, Kandahar Province",Afghanistan,Afghanistan,,,,,Minister of Public Works under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0052 (UN Ref):TAi.068 Lost one leg in 1980s. Interim leader of Taliban Supreme Council from February to April 2010. In charge of recruitment activities as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Isakzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7277 +NANGIALI,,,,,,,,,,05/02/1981,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +NANGIALI,,,,,,,,,,01/01/1972,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +NAPSO,Yuri,Aisovich,,,,,Напсо Юрий Аисович,,,17/04/1973,"Tuapse, Krasnodar",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0459 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14404 +NAQDI,Mohammad,Reza,,,,,,,,00/00/1952,,,,,,,,(1) Deputy Coordinator of the IRGC (2) Former Deputy Chief of the IRGC for cultural and social affairs (3) Former Commander of the Basij,,,,,,,,,"(UK Sanctions List Ref):IHR0057 (UK Statement of Reasons):Coordinating Deputy to the IRGC Commander, formally Deputy Chief of the IRGC for cultural and social affairs. Also former Commander of the Basij. As commander of the IRGC's Basij Forces, Naqdi was responsible for or complicit in Basij abuses occurring in late 2009, including the violent response to the December 2009 Ashura Day protests, which resulted in up to 15 deaths and the arrests of hundreds of protesters. Prior to his appointment as commander of the Basij in October 2009, Naqdi was the head of the intelligence unit of the Basij responsible for interrogating those arrested during the post-election crackdown. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,28/01/2022,11784 +NAQDI,MOHAMMAD REZA,,,,,,,,,11/02/1949,(1) Najaf (2) Tehran,(1) Iraq (2) Iran,,,,,,(1) Brigadier-General (2) Former Deputy Chief of Armed Forces General Staff for Logistics and Industrial Research (3) Head of State Anti-Smuggling Headquarters (4) Former Deputy Commander of the IRGC for Cultural and Social Affairs (5) Former Commander of Basij Resistance Force,,,,,,,,,"(UK Sanctions List Ref):INU0205 (UN Ref):IRi.026 Engaged in efforts to get round the sanctions imposed by resolutions 1737 (2006) and 1747 (2007). [Old Reference # I.03.I.10] (UK Statement of Reasons):As Deputy Commander of the IRGC for Coordination Affairs, Mohammad Reza NAQDI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He also provided support for or promoted relevant nuclear activity while formerly Deputy Commander for Social and Cultural Affairs and before that, Commander of the Basij Resistance Force, a paramilitary arm of the IRGC.",Individual,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,04/03/2022,10439 +NAQDI,MOHAMMAD REZA,,,,,,,,,11/02/1952,(1) Najaf (2) Tehran,(1) Iraq (2) Iran,,,,,,(1) Brigadier-General (2) Former Deputy Chief of Armed Forces General Staff for Logistics and Industrial Research (3) Head of State Anti-Smuggling Headquarters (4) Former Deputy Commander of the IRGC for Cultural and Social Affairs (5) Former Commander of Basij Resistance Force,,,,,,,,,"(UK Sanctions List Ref):INU0205 (UN Ref):IRi.026 Engaged in efforts to get round the sanctions imposed by resolutions 1737 (2006) and 1747 (2007). [Old Reference # I.03.I.10] (UK Statement of Reasons):As Deputy Commander of the IRGC for Coordination Affairs, Mohammad Reza NAQDI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He also provided support for or promoted relevant nuclear activity while formerly Deputy Commander for Social and Cultural Affairs and before that, Commander of the Basij Resistance Force, a paramilitary arm of the IRGC.",Individual,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,04/03/2022,10439 +NAQDI,MOHAMMAD REZA,,,,,,,,,11/02/1953,(1) Najaf (2) Tehran,(1) Iraq (2) Iran,,,,,,(1) Brigadier-General (2) Former Deputy Chief of Armed Forces General Staff for Logistics and Industrial Research (3) Head of State Anti-Smuggling Headquarters (4) Former Deputy Commander of the IRGC for Cultural and Social Affairs (5) Former Commander of Basij Resistance Force,,,,,,,,,"(UK Sanctions List Ref):INU0205 (UN Ref):IRi.026 Engaged in efforts to get round the sanctions imposed by resolutions 1737 (2006) and 1747 (2007). [Old Reference # I.03.I.10] (UK Statement of Reasons):As Deputy Commander of the IRGC for Coordination Affairs, Mohammad Reza NAQDI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He also provided support for or promoted relevant nuclear activity while formerly Deputy Commander for Social and Cultural Affairs and before that, Commander of the Basij Resistance Force, a paramilitary arm of the IRGC.",Individual,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,04/03/2022,10439 +NAQDI,MOHAMMAD REZA,,,,,,,,,11/02/1961,(1) Najaf (2) Tehran,(1) Iraq (2) Iran,,,,,,(1) Brigadier-General (2) Former Deputy Chief of Armed Forces General Staff for Logistics and Industrial Research (3) Head of State Anti-Smuggling Headquarters (4) Former Deputy Commander of the IRGC for Cultural and Social Affairs (5) Former Commander of Basij Resistance Force,,,,,,,,,"(UK Sanctions List Ref):INU0205 (UN Ref):IRi.026 Engaged in efforts to get round the sanctions imposed by resolutions 1737 (2006) and 1747 (2007). [Old Reference # I.03.I.10] (UK Statement of Reasons):As Deputy Commander of the IRGC for Coordination Affairs, Mohammad Reza NAQDI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He also provided support for or promoted relevant nuclear activity while formerly Deputy Commander for Social and Cultural Affairs and before that, Commander of the Basij Resistance Force, a paramilitary arm of the IRGC.",Individual,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,04/03/2022,10439 +NAQDI,MOHAMMAD REZA,,,,,,,,,,(1) Najaf (2) Tehran,(1) Iraq (2) Iran,,,,,,(1) Brigadier-General (2) Former Deputy Chief of Armed Forces General Staff for Logistics and Industrial Research (3) Head of State Anti-Smuggling Headquarters (4) Former Deputy Commander of the IRGC for Cultural and Social Affairs (5) Former Commander of Basij Resistance Force,,,,,,,,,"(UK Sanctions List Ref):INU0205 (UN Ref):IRi.026 Engaged in efforts to get round the sanctions imposed by resolutions 1737 (2006) and 1747 (2007). [Old Reference # I.03.I.10] (UK Statement of Reasons):As Deputy Commander of the IRGC for Coordination Affairs, Mohammad Reza NAQDI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He also provided support for or promoted relevant nuclear activity while formerly Deputy Commander for Social and Cultural Affairs and before that, Commander of the Basij Resistance Force, a paramilitary arm of the IRGC.",Individual,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,04/03/2022,10439 +NAQDI,MOHAMMAD REZA,,,,,,,,,,(1) Najaf (2) Tehran,(1) Iraq (2) Iran,,,,,,(1) Brigadier-General (2) Former Deputy Chief of Armed Forces General Staff for Logistics and Industrial Research (3) Head of State Anti-Smuggling Headquarters (4) Former Deputy Commander of the IRGC for Cultural and Social Affairs (5) Former Commander of Basij Resistance Force,,,,,,,,,"(UK Sanctions List Ref):INU0205 (UN Ref):IRi.026 Engaged in efforts to get round the sanctions imposed by resolutions 1737 (2006) and 1747 (2007). [Old Reference # I.03.I.10] (UK Statement of Reasons):As Deputy Commander of the IRGC for Coordination Affairs, Mohammad Reza NAQDI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He also provided support for or promoted relevant nuclear activity while formerly Deputy Commander for Social and Cultural Affairs and before that, Commander of the Basij Resistance Force, a paramilitary arm of the IRGC.",Individual,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,04/03/2022,10439 +NAQDI,MOHAMMAD REZA,,,,,,,,,,(1) Najaf (2) Tehran,(1) Iraq (2) Iran,,,,,,(1) Brigadier-General (2) Former Deputy Chief of Armed Forces General Staff for Logistics and Industrial Research (3) Head of State Anti-Smuggling Headquarters (4) Former Deputy Commander of the IRGC for Cultural and Social Affairs (5) Former Commander of Basij Resistance Force,,,,,,,,,"(UK Sanctions List Ref):INU0205 (UN Ref):IRi.026 Engaged in efforts to get round the sanctions imposed by resolutions 1737 (2006) and 1747 (2007). [Old Reference # I.03.I.10] (UK Statement of Reasons):As Deputy Commander of the IRGC for Coordination Affairs, Mohammad Reza NAQDI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He also provided support for or promoted relevant nuclear activity while formerly Deputy Commander for Social and Cultural Affairs and before that, Commander of the Basij Resistance Force, a paramilitary arm of the IRGC.",Individual,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,04/03/2022,10439 +NAQDI,MOHAMMAD REZA,,,,,,,,,,(1) Najaf (2) Tehran,(1) Iraq (2) Iran,,,,,,(1) Brigadier-General (2) Former Deputy Chief of Armed Forces General Staff for Logistics and Industrial Research (3) Head of State Anti-Smuggling Headquarters (4) Former Deputy Commander of the IRGC for Cultural and Social Affairs (5) Former Commander of Basij Resistance Force,,,,,,,,,"(UK Sanctions List Ref):INU0205 (UN Ref):IRi.026 Engaged in efforts to get round the sanctions imposed by resolutions 1737 (2006) and 1747 (2007). [Old Reference # I.03.I.10] (UK Statement of Reasons):As Deputy Commander of the IRGC for Coordination Affairs, Mohammad Reza NAQDI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He also provided support for or promoted relevant nuclear activity while formerly Deputy Commander for Social and Cultural Affairs and before that, Commander of the Basij Resistance Force, a paramilitary arm of the IRGC.",Individual,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,04/03/2022,10439 +NARODNY SOYUZ,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0189 (UK Statement of Reasons):Public ‘organisation’ that presented candidates in the so called ‘elections’ of the so called ‘Luhansk People’s Republic’ 2 November 2014. These elections are in breach of Ukrainian law and therefore illegal. In participating formally in the illegal ‘elections’ it has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine.",Entity,AKA,,Russia,02/12/2014,31/12/2020,31/12/2020,13186 +NAROLIN,Alexander,Vladimirovich,,,,,Александр Владимирович НАРОЛИН,,,27/06/1972,Krasnogvardeisky,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS1011 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14962 +NARYSHKIN,Sergei,Evegenevich,,,,,Сергей Евгеньевич НАРЫШКИН,,,27/10/1954,St Petersburg (formerly Leningrad),Russia,Russia,,,,,,,,,,,,,,(UK Sanctions List Ref):RUS0036 (UK Statement of Reasons):Former Speaker of the State Duma. Publicly supported the deployment of Russian forces in Ukraine. Publicly supported the Russia-Crimea unification treaty and the related federal constitutional law. Currently Director of the Foreign Intelligence Service of the Russian Federation as of October 2016. Permanent member of the Security Council of the Russian Federation. (Gender):Male,Individual,Primary name variation,,Russia,21/03/2014,31/12/2020,31/12/2020,12942 +NARYSHKIN,Sergei,Evgenevich,,,,,,,,27/10/1954,St Petersburg (formerly Leningrad),Russia,Russia,,,,,,,,,,,,,,(UK Sanctions List Ref):RUS0036 (UK Statement of Reasons):Former Speaker of the State Duma. Publicly supported the deployment of Russian forces in Ukraine. Publicly supported the Russia-Crimea unification treaty and the related federal constitutional law. Currently Director of the Foreign Intelligence Service of the Russian Federation as of October 2016. Permanent member of the Security Council of the Russian Federation. (Gender):Male,Individual,Primary name,,Russia,21/03/2014,31/12/2020,31/12/2020,12942 +NARZIEVA,Saodat,,,,,,Соадат НАРЗИЕВА,Cyrillic,Russian,,,Uzbekistan,Russia,,,,,,,,,,,Tashkent,,Uzbekistan,"(UK Sanctions List Ref):RUS1319 (UK Statement of Reasons):Saodat NARZIEVA is the sister of Alisher USMANOV, an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. USMANOV was designated by the UK on 3 March 2022. As an immediate family member of USMANOV and obtaining a financial or other material benefit from USMANOV, Saodat NARZIEVA is associated with an involved person and therefore NARZIEVA is an involved person under the Russia (Sanctions) (EU Exit)Regulations 2019. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15276 +NASERI,Mohammad,Sadegh,,,,,,,,,,,,,,,,Head of the Physics Research Institute,,,,,,,,,(UK Sanctions List Ref):INU0031 (UK Statement of Reasons):Head of the Physics Research Institute (formerly known as the Institute of Applied Physics) (Gender):Male,Individual,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12242 +NASERI,Mohammad,Sadeq,,,,,,,,,,,,,,,,Head of the Physics Research Institute,,,,,,,,,(UK Sanctions List Ref):INU0031 (UK Statement of Reasons):Head of the Physics Research Institute (formerly known as the Institute of Applied Physics) (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12242 +NASERIN VAHID,,,,,,,,,,,,,,,,,,,4th floor,No 65,Dr Ghandi St.,Sohravardi Ave.,,Tehran,,Iran,(UK Sanctions List Ref):INU0097 (UK Statement of Reasons):An Islamic Revolutionary Guard Crops (IRGC) front company which has produced weapons parts on its behalf. (Website):www.nvco.com (Email address):(1) H.S@nvco.com (2) H.Sharifi@nvco.com (3) info@nvco.com (4) Marketing@nvco.com (5) Mostafavi@nvco.com (Type of entity):Enterprise,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11240 +NASERIN VAHID,,,,,,,,,,,,,,,,,,,P.O. Box 155671311,,,,,,,Iran,(UK Sanctions List Ref):INU0097 (UK Statement of Reasons):An Islamic Revolutionary Guard Crops (IRGC) front company which has produced weapons parts on its behalf. (Website):www.nvco.com (Email address):(1) H.S@nvco.com (2) H.Sharifi@nvco.com (3) info@nvco.com (4) Marketing@nvco.com (5) Mostafavi@nvco.com (Type of entity):Enterprise,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11240 +NASERIN VAHID COMPANY,,,,,,,,,,,,,,,,,,,4th floor,No 65,Dr Ghandi St.,Sohravardi Ave.,,Tehran,,Iran,(UK Sanctions List Ref):INU0097 (UK Statement of Reasons):An Islamic Revolutionary Guard Crops (IRGC) front company which has produced weapons parts on its behalf. (Website):www.nvco.com (Email address):(1) H.S@nvco.com (2) H.Sharifi@nvco.com (3) info@nvco.com (4) Marketing@nvco.com (5) Mostafavi@nvco.com (Type of entity):Enterprise,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11240 +NASERIN VAHID COMPANY,,,,,,,,,,,,,,,,,,,P.O. Box 155671311,,,,,,,Iran,(UK Sanctions List Ref):INU0097 (UK Statement of Reasons):An Islamic Revolutionary Guard Crops (IRGC) front company which has produced weapons parts on its behalf. (Website):www.nvco.com (Email address):(1) H.S@nvco.com (2) H.Sharifi@nvco.com (3) info@nvco.com (4) Marketing@nvco.com (5) Mostafavi@nvco.com (Type of entity):Enterprise,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11240 +NASERUDDIN,,,,,,,,,,00/00/1970,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Low quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +NASERUDDIN,,,,,,,,,,00/00/1971,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Low quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +NASERUDDIN,,,,,,,,,,00/00/1972,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Low quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +NASERUDDIN,,,,,,,,,,00/00/1973,"Neka District, Paktika Province",Afghanistan,Afghanistan,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AFG0114 (UN Ref):TAi.146 A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani (TAi.040). Has travelled to Saudi Arabia and the United Arab Emirates to raise funds for the Taliban. Reportedly deceased as of 2013. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Low quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11206 +NASIR,,,,,,Mullah,,,,00/00/1968,"Zurmat District, Paktia Province",Afghanistan,Afghanistan,D 000952,Issued on 7 Jan. 1999. Issued in Afghanistan.,,,"Consul General, Taliban Consulate General, Karachi, Pakistan",,,,,,,,,"(UK Sanctions List Ref):AFG0105 (UN Ref):TAi.137 Taliban member responsible for Ghazni Province, Afghanistan, as of May 2007. Head of an intelligence network. Believed to be in Afghanistan/ Pakistan border area. Belongs to Suleimankheil tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7219 +NASKEVICH,Ivan,Danilavich,,,,,НАСКЕВІЧ Іван Данілавіч,,,25/03/1970,"Cierablicy, Brest Oblast",Former USSR Currently Belarus,Belarus,,,,,Former Chairman of the Investigate Committee of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0054 (UK Statement of Reasons):Ivan Naskevich is the former Chairman of the Investigative Committee of the Republic of Belarus. In his role as Chairman, Naskevich was responsible for the actions of the Investigative Committee, including pursuing criminal investigations against protestors and opposition leaders, and therefore undermining democracy in Belarus. (Gender):Male",Individual,Primary name,,Belarus,06/11/2020,31/12/2020,18/03/2022,13987 +NASKEVICH,Ivan,Danilovich,,,,,НОСКЕВИЧ Иван Данилович,,,25/03/1970,"Cierablicy, Brest Oblast",Former USSR Currently Belarus,Belarus,,,,,Former Chairman of the Investigate Committee of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0054 (UK Statement of Reasons):Ivan Naskevich is the former Chairman of the Investigative Committee of the Republic of Belarus. In his role as Chairman, Naskevich was responsible for the actions of the Investigative Committee, including pursuing criminal investigations against protestors and opposition leaders, and therefore undermining democracy in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,18/03/2022,13987 +NASRI,Haled,,,,,,,,,,,,Syria,,,,,Head of Institute 1000 of the SSRC,,,,,,,,,"(UK Sanctions List Ref):CHW0005 Important employee at Scientific Studies and Research Centre (listed under both the Syria sanctions regime and Chemical Weapons regime). Works under Amr Armanazi and Salam Tohme, both listed under the Syria sanctions regime. (UK Statement of Reasons):Khaled Nasri is the Director of Institute 1000, the division of the Scientific Studies and Research Centre (SSRC) responsible for developing and producing computer and electronic systems for Syria’s chemical weapons programme. As a result of his senior role at SSRC, he is associated with the SSRC. (Gender):Male",Individual,Primary name variation,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13745 +NASRI,Khaled,,,,,,خالد نصري,,,,,,Syria,,,,,Head of Institute 1000 of the SSRC,,,,,,,,,"(UK Sanctions List Ref):CHW0005 Important employee at Scientific Studies and Research Centre (listed under both the Syria sanctions regime and Chemical Weapons regime). Works under Amr Armanazi and Salam Tohme, both listed under the Syria sanctions regime. (UK Statement of Reasons):Khaled Nasri is the Director of Institute 1000, the division of the Scientific Studies and Research Centre (SSRC) responsible for developing and producing computer and electronic systems for Syria’s chemical weapons programme. As a result of his senior role at SSRC, he is associated with the SSRC. (Gender):Male",Individual,Primary name,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13745 +NASRI,Mohammed,Khaled,,,,,محمد خالد نصري,,,,,,Syria,,,,,Head of Institute 1000 of the SSRC,,,,,,,,,"(UK Sanctions List Ref):CHW0005 Important employee at Scientific Studies and Research Centre (listed under both the Syria sanctions regime and Chemical Weapons regime). Works under Amr Armanazi and Salam Tohme, both listed under the Syria sanctions regime. (UK Statement of Reasons):Khaled Nasri is the Director of Institute 1000, the division of the Scientific Studies and Research Centre (SSRC) responsible for developing and producing computer and electronic systems for Syria’s chemical weapons programme. As a result of his senior role at SSRC, he is associated with the SSRC. (Gender):Male",Individual,Primary name variation,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13745 +NASSER,Wafeeq,,,,,,,,,,,,,,,,,Head of Suwayda Regional Branch (Department of Military Intelligence),,,,,,,,,"(UK Sanctions List Ref):SYR0234 (UK Statement of Reasons):As Head of the Suwayda branch of the Department for Military Intelligence, responsible for arbitrary detention and torture of detainees in Suwayda. (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12477 +NASSER,Wafiq,,,,,,,,,,,,,,,,,Head of Suwayda Regional Branch (Department of Military Intelligence),,,,,,,,,"(UK Sanctions List Ref):SYR0234 (UK Statement of Reasons):As Head of the Suwayda branch of the Department for Military Intelligence, responsible for arbitrary detention and torture of detainees in Suwayda. (Gender):Male",Individual,Primary name,,Syria,24/01/2012,31/12/2020,31/12/2020,12477 +NASSERIAN,Mohammad,,,,,,,,,,,,,,,,,"Judge, Head of Tehran Revolutionary Court, branch 28",,,,,,,,,"(UK Sanctions List Ref):IHR0055 (UK Statement of Reasons):Judge, Head of Tehran Revolutionary Court, branch 28. Also considered responsible for condemnations of members of the Baha'i community. He has dealt with post-election cases. He issued long prison sentences during unfair trials for social, political activists and journalists and several death sentences for protesters and social and political activists. (Gender):Male",Individual,AKA,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11796 +NATIONAL (SHAHID BEHESHTI) UNIVERSITY,,,,,,,,,,,,,,,,,,,P.O. Box 19395/4716,,,,,Tehran,19834,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +NATIONAL (SHAHID BEHESHTI) UNIVERSITY,,,,,,,,,,,,,,,,,,,Shahid Beheshti University,,,,Evin,Tehran,1983963113,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +NATIONAL AEROSPACE DEVELOPMENT ADMINISTRATION,,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0180 (UN Ref):KPe.029 NADA is involved in the DPRK's development of space science and technology, including satellite launches and carrier rockets.",Entity,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13343 +NATIONAL DEFENSE ACADEMY,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0189 (UN Ref):KPe.018 The Second Academy of Natural Sciences is a national-level organization responsible for research and development of the DPRK’s advanced weapons systems, including missiles and probably nuclear weapons. The Second Academy of Natural Sciences uses a number of subordinate organizations to obtain technology, equipment, and information from overseas, including Tangun Trading Corporation, for use in the DPRK’s missile and probably nuclear weapons programs. Tangun Trading Corporation was designated by the Committee in July 2009 and is primarily responsible for the procurement of commodities and technologies to support DPRK’s defense research and development programs, including, but not limited to, weapons of mass destruction and delivery system programs and procurement, including materials that are controlled or prohibited under relevant multilateral control regimes. (Subsidiaries):Tangun Trading Corporation",Entity,AKA,,Democratic People's Republic of Korea,23/04/2013,07/03/2013,31/12/2020,12871 +NATIONAL LIBERATION ARMY,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0029 (UK Statement of Reasons):The ELN is a terrorist organisation which is responsible for bombings and armed attacks against the Colombian government and civilians.,Entity,AKA,,Counter-Terrorism (International),02/11/2001,31/12/2020,31/12/2020,7364 +NATIONAL PASSIVE DEFENSE ORGANIZATION,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0101 (UK Statement of Reasons):Involved in the construction of facilities in Iran that could lead to the development of nuclear weapons in, or for use by, Iran. (Phone number):225 17013 (Email address):info@paydarymelli.ir",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,11/03/2022,11214 +NATIONAL RESOURCES DEVELOPMENT AND INVESTMENT CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Nungrado,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +NATIONAL RESOURCES DEVELOPMENT AND INVESTMENT CORPORATION,,,,,,,,,,,,,,,,,,,Rakrang No. 1,Rakrang District,Mangyongdae District,,Chilgol-1 dong,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +NATIONAL RESOURCES DEVELOPMENT AND INVESTMENT CORPORATION,,,,,,,,,,,,,,,,,,,Reconnaissance General Bureau Headquarters,,,,Hyongjesan-Guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +NATIONAL STANDARDS & CALIBRATION LABORATORY,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,,(UK Sanctions List Ref):SYR0319 Manufacturing/Proliferation (UK Statement of Reasons):Affiliated to and a subsidiary of the Syrian Scientific Studies and Research Centre (SSRC) which is already designated. It provides support to the SSRC and is therefore responsible for the violent repression of the civilian population. (Type of entity):Public,Entity,Primary name,,Syria,23/07/2014,31/12/2020,31/12/2020,13033 +NATIONAL STANDARDS & CALIBRATION LABORATORY,,,,,,,,,,,,,,,,,,,,,,,PO Box 4470,,,Syria,(UK Sanctions List Ref):SYR0319 Manufacturing/Proliferation (UK Statement of Reasons):Affiliated to and a subsidiary of the Syrian Scientific Studies and Research Centre (SSRC) which is already designated. It provides support to the SSRC and is therefore responsible for the violent repression of the civilian population. (Type of entity):Public,Entity,Primary name,,Syria,23/07/2014,31/12/2020,31/12/2020,13033 +NATIONAL UNIVERSITY OF IRAN,,,,,,,,,,,,,,,,,,,P.O. Box 19395/4716,,,,,Tehran,19834,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +NATIONAL UNIVERSITY OF IRAN,,,,,,,,,,,,,,,,,,,Shahid Beheshti University,,,,Evin,Tehran,1983963113,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +NATSRI,Haled,,,,,,,,,,,,Syria,,,,,Head of Institute 1000 of the SSRC,,,,,,,,,"(UK Sanctions List Ref):CHW0005 Important employee at Scientific Studies and Research Centre (listed under both the Syria sanctions regime and Chemical Weapons regime). Works under Amr Armanazi and Salam Tohme, both listed under the Syria sanctions regime. (UK Statement of Reasons):Khaled Nasri is the Director of Institute 1000, the division of the Scientific Studies and Research Centre (SSRC) responsible for developing and producing computer and electronic systems for Syria’s chemical weapons programme. As a result of his senior role at SSRC, he is associated with the SSRC. (Gender):Male",Individual,Primary name variation,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13745 +NATSRI,Khaled,,,,,,,,,,,,Syria,,,,,Head of Institute 1000 of the SSRC,,,,,,,,,"(UK Sanctions List Ref):CHW0005 Important employee at Scientific Studies and Research Centre (listed under both the Syria sanctions regime and Chemical Weapons regime). Works under Amr Armanazi and Salam Tohme, both listed under the Syria sanctions regime. (UK Statement of Reasons):Khaled Nasri is the Director of Institute 1000, the division of the Scientific Studies and Research Centre (SSRC) responsible for developing and producing computer and electronic systems for Syria’s chemical weapons programme. As a result of his senior role at SSRC, he is associated with the SSRC. (Gender):Male",Individual,Primary name variation,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13745 +NATSRI,Mohammed,Khaled,,,,,,,,,,,Syria,,,,,Head of Institute 1000 of the SSRC,,,,,,,,,"(UK Sanctions List Ref):CHW0005 Important employee at Scientific Studies and Research Centre (listed under both the Syria sanctions regime and Chemical Weapons regime). Works under Amr Armanazi and Salam Tohme, both listed under the Syria sanctions regime. (UK Statement of Reasons):Khaled Nasri is the Director of Institute 1000, the division of the Scientific Studies and Research Centre (SSRC) responsible for developing and producing computer and electronic systems for Syria’s chemical weapons programme. As a result of his senior role at SSRC, he is associated with the SSRC. (Gender):Male",Individual,Primary name variation,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13745 +NATURAL RESOURCES DEVELOPMENT AND INVESTMENT CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Nungrado,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +NATURAL RESOURCES DEVELOPMENT AND INVESTMENT CORPORATION,,,,,,,,,,,,,,,,,,,Rakrang No. 1,Rakrang District,Mangyongdae District,,Chilgol-1 dong,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +NATURAL RESOURCES DEVELOPMENT AND INVESTMENT CORPORATION,,,,,,,,,,,,,,,,,,,Reconnaissance General Bureau Headquarters,,,,Hyongjesan-Guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +NAUALNA,Daba,,,,,,,,,06/06/1966,,,Guinea Bissau,SA000417,Issued 29 October 2003 in Guinea-Bissau. Expires 10 March 2013,,,(1) Lieutenant Colonel (2) Spokesperson of 'Military Command',,,,,,,,,(UK Sanctions List Ref):GUB0016 (UN Ref):GBi.009 Naualna was listed on 18 May 2012 pursuant to paragraph 4 of resolution 2048 (2012) as “Spokesperson of the “Military Command” which has assumed responsibility for the coup d’état of 12 April 2012.” Father’s name is Samba Naualna; Mother’s name is In-Uasne Nanfafe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (UK Statement of Reasons):Spokesperson of the ‘Military Command’ which has assumed responsibility for the coup d'état of 12 April 2012. (Gender):Male,Individual,Primary name,,Guinea-Bissau,04/05/2012,31/12/2020,10/03/2022,12669 +NAUALNA,Daba,,,,,,,,,06/06/1966,,,Guinea Bissau,SA000417,Issued 29 October 2003 in Guinea-Bissau. Expires 10 March 2013,,,(1) Lieutenant Colonel (2) Spokesperson of 'Military Command',,,,,,,,,(UK Sanctions List Ref):GUB0016 (UN Ref):GBi.009 Naualna was listed on 18 May 2012 pursuant to paragraph 4 of resolution 2048 (2012) as “Spokesperson of the “Military Command” which has assumed responsibility for the coup d’état of 12 April 2012.” Father’s name is Samba Naualna; Mother’s name is In-Uasne Nanfafe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (UK Statement of Reasons):Spokesperson of the ‘Military Command’ which has assumed responsibility for the coup d'état of 12 April 2012. (Gender):Male,Individual,Primary name,,Guinea-Bissau,04/05/2012,31/12/2020,10/03/2022,12669 +NAUCHNO ISSLEDOVATELSKI INSTITUT MOLEKULYARNOI ELEKTRONIKI AO,,,,,,,,,,,,,,,,,,,1st Zapadny Proezd 12/1,,,,,Zelenograd,124460,Russia,"(UK Sanctions List Ref):RUS1405 Organization Established Date 03 Sep 1964. Government Gazette Number 92611467 (Russia) (UK Statement of Reasons):The Molecular Electronics Research Institute is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the electronics sector. (Website):https://www.niime.ru (Business Reg No):1117746568829 (Russia). Tax ID No. 7735579027 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15325 +NAUCHNO ISSLEDOVATELSKI INSTITUT MOLEKULYARNOI ELEKTRONIKI AO,,,,,,,,,,,,,,,,,,,d. 6 str. 1,ul. Akademika Valieva,,,Zelenograd,Moscow,124460,Russia,"(UK Sanctions List Ref):RUS1405 Organization Established Date 03 Sep 1964. Government Gazette Number 92611467 (Russia) (UK Statement of Reasons):The Molecular Electronics Research Institute is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the electronics sector. (Website):https://www.niime.ru (Business Reg No):1117746568829 (Russia). Tax ID No. 7735579027 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15325 +NAUMENKO,Aleksandr,Viktorovich,,,,Major General,Александр Викторович НАУМЕНКО,Cyrillic,Russian,,,,Belarus,,,,,Commander of the Troops of the North-Western Operational Command of Belarus,,,,,,,,,"(UK Sanctions List Ref):RUS0743 (UK Statement of Reasons):Major-General Aleksandr Viktorovich NAUMENKO has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being involved in the command of Belarusian forces who were involved in a joint exercise with the Russian military ahead of Russia’s invasion of Ukraine which: (1) threatened Ukraine; and (2) provided cover for Russian military preparations to invade Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14694 +NAUMETS,Aleksey,Vasilevich,,,,,Алексей Наумец.,,,11/02/1968,,,Russia,,,,,Deputy Chief of Staff of the Airborne Forces,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0037 (UK Statement of Reasons):Major-General of the Russian Army. He was the former commander of the 76th airborne division which has been involved in the Russian military presence on the territory of Ukraine, notably during the illegal annexation of Crimea. Now Deputy Chief of Staff of the Airborne Forces. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,16/09/2022,13114 +NAUMETS,Alexei,,,,,,,,,11/02/1968,,,Russia,,,,,Deputy Chief of Staff of the Airborne Forces,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0037 (UK Statement of Reasons):Major-General of the Russian Army. He was the former commander of the 76th airborne division which has been involved in the Russian military presence on the territory of Ukraine, notably during the illegal annexation of Crimea. Now Deputy Chief of Staff of the Airborne Forces. (Gender):Male",Individual,Primary name variation,,Russia,12/09/2014,31/12/2020,16/09/2022,13114 +NAUMETS,Sergei,Sergeevich,,,,,НАУМЕЦ Сергей Сергеевич,Cyrillic,Russian,13/07/1976,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1147 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15099 +NAUMOV,Uladzimir,Uladzimiravich,,,,,,,,07/02/1956,Smolensk,former USSR Currently Russia,Belarus,,,,,"Former Minister of the Interior of Belarus, 2000-09",,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0001 Received a residence in the Drozdy nonmenklatura district in Minsk from the Presidential Administration. (UK Statement of Reasons):As a Minister of Interior he was responsible for the repression of peaceful demonstrations until his retirement on 6 April 2009 for health reasons. Received a residence in the Drozdy nomenklatura district in Minsk from the Presidential Administration. In October 2014, was awarded the Order “For Merit” III degree by President Lukashenka. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8906 +NAUMOV,Vladimir,Vladimirovich,,,,,,,,07/02/1956,Smolensk,former USSR Currently Russia,Belarus,,,,,"Former Minister of the Interior of Belarus, 2000-09",,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0001 Received a residence in the Drozdy nonmenklatura district in Minsk from the Presidential Administration. (UK Statement of Reasons):As a Minister of Interior he was responsible for the repression of peaceful demonstrations until his retirement on 6 April 2009 for health reasons. Received a residence in the Drozdy nomenklatura district in Minsk from the Presidential Administration. In October 2014, was awarded the Order “For Merit” III degree by President Lukashenka. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8906 +NAUMOV,Stanislav,Alexandrovich,,,,,Наумов Станислав Александрович,,,04/10/1972,"Magnitogorsk, Chelyabinsk",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0460 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14405 +NAUTICAL INDUSTRIES DEPARTMENT,,,,,,,,,,,,,,,,,,,44 Sharif St.,"Hoveyzeh, Korramshahr",North Sohrevardi Ave,,,,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +NAUTICAL INDUSTRIES DEPARTMENT,,,,,,,,,,,,,,,,,,,P.O. Box 19585 348,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +NAUTICAL INDUSTRIES DEPARTMENT,,,,,,,,,,,,,,,,,,,Pasdaran Avenue.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +NAUTICAL INDUSTRIES DEPARTMENT,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +NAUTICAL INDUSTRIES DEPARTMENT,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +NAVAL DEFENCE MISSILE INDUSTRY GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0138 (UN Ref):IRe.010 Production and development of cruise missiles. Responsible for naval missiles including cruise missiles. [Old Reference # E.47.A.7],Entity,AKA,,Iran (Nuclear),24/03/2007,24/03/2007,31/12/2020,9041 +NAVAL INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,44 Sharif St.,"Hoveyzeh, Korramshahr",North Sohrevardi Ave,,,,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +NAVAL INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,P.O. Box 19585 348,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +NAVAL INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,Pasdaran Avenue.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +NAVAL INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +NAVAL INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +NAVAMAU,Vladimir,Vladimirovich,,,,,,,,07/02/1956,Smolensk,former USSR Currently Russia,Belarus,,,,,"Former Minister of the Interior of Belarus, 2000-09",,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0001 Received a residence in the Drozdy nonmenklatura district in Minsk from the Presidential Administration. (UK Statement of Reasons):As a Minister of Interior he was responsible for the repression of peaceful demonstrations until his retirement on 6 April 2009 for health reasons. Received a residence in the Drozdy nomenklatura district in Minsk from the Presidential Administration. In October 2014, was awarded the Order “For Merit” III degree by President Lukashenka. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8906 +NAVKA,Tatiana,Aleksandrovna,,,,,Татьяна Александровна Навка,Cyrillic,Russian,13/04/1975,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):RUS0858 (UK Statement of Reasons):Tatiana Aleksandrovna NAVKA is closely associated with Dmitry Sergeyevich PESKOV through marriage. Dmitry Sergeyevich PESKOV is an involved person under the Russian (Sanctions) (EU Exit) Regulation 2019. (Gender):Female,Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14809 +NAVUMAU,Uladzimir,Uladzimiravich,,,,,,,,07/02/1956,Smolensk,former USSR Currently Russia,Belarus,,,,,"Former Minister of the Interior of Belarus, 2000-09",,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0001 Received a residence in the Drozdy nonmenklatura district in Minsk from the Presidential Administration. (UK Statement of Reasons):As a Minister of Interior he was responsible for the repression of peaceful demonstrations until his retirement on 6 April 2009 for health reasons. Received a residence in the Drozdy nomenklatura district in Minsk from the Presidential Administration. In October 2014, was awarded the Order “For Merit” III degree by President Lukashenka. (Gender):Male",Individual,Primary name,,Belarus,22/05/2006,31/12/2020,18/03/2022,8906 +NAVUMAU,Vladimir,Vladimirovich,,,,,,,,07/02/1956,Smolensk,former USSR Currently Russia,Belarus,,,,,"Former Minister of the Interior of Belarus, 2000-09",,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0001 Received a residence in the Drozdy nonmenklatura district in Minsk from the Presidential Administration. (UK Statement of Reasons):As a Minister of Interior he was responsible for the repression of peaceful demonstrations until his retirement on 6 April 2009 for health reasons. Received a residence in the Drozdy nomenklatura district in Minsk from the Presidential Administration. In October 2014, was awarded the Order “For Merit” III degree by President Lukashenka. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8906 +NAYAZI,Abdul Manan,,,,,,,,,00/00/1968,"(1) Pashtoon Zarghoon District, Herat Province. (2) Sardar village, Kohsan District, Herat Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,(1) Governor of Kabul Province under the Taliban regime (2) Governor of Balk Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0075 (UN Ref):TAi.097 Taliban member responsible for Herat, Farah and Nimroz provinces as at mid-2013. Member of the Taliban Supreme Council and Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe. Involved in transporting suicide bombers to Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,25/01/2001,01/02/2021,7380 +NAYDENKO,Alexey,Alexeyevich,,,,,,,,02/06/1980,Donetsk,,Ukraine,,,,,Deputy Head of the so-called Donetsk People's Republic Central Electoral Commission,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0038 (UK Statement of Reasons):Deputy Chair' of the 'Central Electoral Commission' of the so-called 'Donetsk People's Republic'. In this capacity, he participated in the organisation of the so-called 'elections' of 11 November 2018 in the so-called 'Donetsk People's Republic', and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,10/12/2018,31/12/2020,31/12/2020,13726 +NAYDENKO,Oleksii,Oleksiyovych,,,,,,,,02/06/1980,Donetsk,,Ukraine,,,,,Deputy Head of the so-called Donetsk People's Republic Central Electoral Commission,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0038 (UK Statement of Reasons):Deputy Chair' of the 'Central Electoral Commission' of the so-called 'Donetsk People's Republic'. In this capacity, he participated in the organisation of the so-called 'elections' of 11 November 2018 in the so-called 'Donetsk People's Republic', and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,10/12/2018,31/12/2020,31/12/2020,13726 +NAZARANKA,Yuri,Genadzevich,,,,,,,,17/04/1976,"City of Slonim, Grodno region",Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0009 and GHR0057 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Nazarenko is the Deputy Minister of Internal Affairs and Commander of the Internal Troops. In his roles he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13925 +NAZARANKA,Yuri,Genadzevich,,,,,,,,17/04/1976,"City of Slonim, Grodno region",Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0009 and GHR0057 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Nazarenko is the Deputy Minister of Internal Affairs and Commander of the Internal Troops. In his roles he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13925 +NAZARANKA,Yuri,Gennadievich,,,,,,,,17/04/1976,"City of Slonim, Grodno region",Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0009 and GHR0057 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Nazarenko is the Deputy Minister of Internal Affairs and Commander of the Internal Troops. In his roles he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13925 +NAZARANKA,Yuri,Gennadievich,,,,,,,,17/04/1976,"City of Slonim, Grodno region",Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0009 and GHR0057 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Nazarenko is the Deputy Minister of Internal Affairs and Commander of the Internal Troops. In his roles he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13925 +NAZARANKA,Yuri,Gennadyevich,,,,,,,,17/04/1976,"City of Slonim, Grodno region",Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0009 and GHR0057 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Nazarenko is the Deputy Minister of Internal Affairs and Commander of the Internal Troops. In his roles he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13925 +NAZARANKA,Yuri,Gennadyevich,,,,,,,,17/04/1976,"City of Slonim, Grodno region",Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0009 and GHR0057 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Nazarenko is the Deputy Minister of Internal Affairs and Commander of the Internal Troops. In his roles he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13925 +NAZARENKO,Yuri,Genadzevich,,,,,,,,17/04/1976,"City of Slonim, Grodno region",Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0009 and GHR0057 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Nazarenko is the Deputy Minister of Internal Affairs and Commander of the Internal Troops. In his roles he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13925 +NAZARENKO,Yuri,Genadzevich,,,,,,,,17/04/1976,"City of Slonim, Grodno region",Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0009 and GHR0057 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Nazarenko is the Deputy Minister of Internal Affairs and Commander of the Internal Troops. In his roles he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13925 +NAZARENKO,Yuri,Gennadievich,,,,,"НАЗАРАНКА , Юрый Генадзьевіч",,,17/04/1976,"City of Slonim, Grodno region",Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0009 and GHR0057 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Nazarenko is the Deputy Minister of Internal Affairs and Commander of the Internal Troops. In his roles he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13925 +NAZARENKO,Yuri,Gennadievich,,,,,"НАЗАРАНКА , Юрый Генадзьевіч",,,17/04/1976,"City of Slonim, Grodno region",Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0009 and GHR0057 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Nazarenko is the Deputy Minister of Internal Affairs and Commander of the Internal Troops. In his roles he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13925 +NAZARENKO,Yuri,Gennadyevich,,,,,,,,17/04/1976,"City of Slonim, Grodno region",Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0009 and GHR0057 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Nazarenko is the Deputy Minister of Internal Affairs and Commander of the Internal Troops. In his roles he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,31/12/2020,13925 +NAZARENKO,Yuri,Gennadyevich,,,,,,,,17/04/1976,"City of Slonim, Grodno region",Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0009 and GHR0057 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Nazarenko is the Deputy Minister of Internal Affairs and Commander of the Internal Troops. In his roles he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13925 +NAZARENKO,Yuri,Gennadyevich,,,,,"НАЗАРЕНКО, Юрий Геннадьевич",,,17/04/1976,"City of Slonim, Grodno region",Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0009 and GHR0057 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Nazarenko is the Deputy Minister of Internal Affairs and Commander of the Internal Troops. In his roles he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,31/12/2020,13925 +NAZARENKO,Yuri,Gennadyevich,,,,,"НАЗАРЕНКО, Юрий Геннадьевич",,,17/04/1976,"City of Slonim, Grodno region",Belarus,Belarus,,,,,(1) Deputy Minister of Internal Affairs (2) Commander of Internal Troops of the Ministry of Internal Affairs of Belarus,,,,,,,,Belarus,"(UK Sanctions List Ref):BEL0009 and GHR0057 Listed under the Belarus and Global Human Rights sanctions regimes. (UK Statement of Reasons):Yuri Nazarenko is the Deputy Minister of Internal Affairs and Commander of the Internal Troops. In his roles he is responsible for the actions of the Internal Troops in Minsk and therefore responsible for serious violations of the right not to be subject to cruel, inhuman and degrading treatment or torture of detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Global Human Rights,29/09/2020,29/09/2020,31/12/2020,13925 +NAZAROVA,Natalya,Vasilievna,,,,,Назарова Наталья Васильевна,,,22/12/1953,"Ermakovsky District, Krasnoyarsk",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0458 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14403 +NAZIR,Ahmad,,,,,,,,,00/00/1962,,,Syria,N 011612445,"Issue no. 002-17-L022286, place of issue: Syria",010-3028342,Place of issue: Syria,(1) Co-founder and majority shareholder of Apex Development and Projects LLC (2) Founder of A'ayan Company for Projects and Equipment,,,,,,,,,"(UK Sanctions List Ref):SYR0258 (UK Statement of Reasons):Leading businessperson operating in Syria with significant investments in the construction industry, including a controlling 90% stake in Apex Development and Projects LLC, which has entered into a USD 34,8 million joint venture for the construction of Marota City, a regime-backed luxury residential and commercial development. Through his participation in the Marota City development, Nazir Ahmad JamalEddine benefits from and/or supports the Syrian regime. (Gender):Male",Individual,AKA,,Syria,22/01/2019,31/12/2020,31/12/2020,13753 +NCG,,,,,,,,,,,,,,,,,,,,,,,Chilgol,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +NCG,,,,,,,,,,,,,,,,,,,Sengujadong 11-2/(or Kwangbok-dong),,,,Mangyongdae District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +NCUBE,Owen,,,,,,,,,17/04/1968,,,Zimbabwe,,,,,Former Minister of State for National Security,,,,,,,,,"(UK Sanctions List Ref):ZIM0004 (UK Statement of Reasons):There are reasonable grounds to suspect that Owen Ncube bears responsibility for serious human rights violations, including systematic torture, committed by the security forces in the context of the heavy crackdown on protests in January 2019 by virtue of his position as Minister of State for National Security at the relevant time. There are also reasonable grounds to suspect that in directing ECONET to suspend all internet services in January 2019, which order the High Court subsequently ruled as illegal, Owen Ncube has also been involved in other actions that undermined the rule of law in Zimbabwe. (Gender):Male",Individual,Primary name,,Zimbabwe,01/02/2021,01/02/2021,18/03/2022,14052 +NDJABU,Floribert,,,,,,,,,23/05/1971,,,Congo (Democratic Republic),OB 0243318,Democratic Republic of the Congo number,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0030 (UN Ref):CDi.021 Under house arrest in Kinshasa since March 2005 for FNI involvement in human rights abuses. Transferred to The Hague on 27 March 2011 to testify in the ICC Germain Katanga and Mathieu Ngudjolo trials. Applied for asylum in the Netherlands in May 2011. In October 2012, a Dutch court denied his asylum claim. In July 2014, he was deported from the Netherlands to DRC, where he was placed under arrest. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776373 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8737 +NDJABU,Floribert,Ngabu,,,,,,,,23/05/1971,,,Congo (Democratic Republic),OB 0243318,Democratic Republic of the Congo number,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0030 (UN Ref):CDi.021 Under house arrest in Kinshasa since March 2005 for FNI involvement in human rights abuses. Transferred to The Hague on 27 March 2011 to testify in the ICC Germain Katanga and Mathieu Ngudjolo trials. Applied for asylum in the Netherlands in May 2011. In October 2012, a Dutch court denied his asylum claim. In July 2014, he was deported from the Netherlands to DRC, where he was placed under arrest. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776373 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8737 +NECHAEV,Alexey,Gennadievich,,,,,Нечаев Алексей Геннадьевич,,,30/08/1966,Moscow,Russia,Russia,757318656,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0621 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14566 +NEE. SUMA,Zeinab,,,,,,,,,05/10/1977,Rabat,Morocco,(1) Morocco. (2) The Gambia,,,,,Former First Lady of The Gambia and wife of Yahya Jammeh,,,,,,,,Equatorial Guinea,"(UK Sanctions List Ref):GHR0060 (UK Statement of Reasons):Former President of Gambia Yahya Jammeh was responsible for inciting, promoting and ordering extrajudicial killings; enforced disappearances; kidnappings and torture; as well as wider human rights violations during his tenure as President between 1994 and 2016. Zineb Jammeh is the former “First Lady” of The Gambia and is married to Yahya Jammeh. She is associated with Yahya Jammeh and his regime, and used a charitable foundation and charities as cover for the illicit transfer of funds between herself and the Former President. (Gender):Female",Individual,Primary name variation,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14012 +NEE. SUMA,Zineb,,,,,,,,,05/10/1977,Rabat,Morocco,(1) Morocco. (2) The Gambia,,,,,Former First Lady of The Gambia and wife of Yahya Jammeh,,,,,,,,Equatorial Guinea,"(UK Sanctions List Ref):GHR0060 (UK Statement of Reasons):Former President of Gambia Yahya Jammeh was responsible for inciting, promoting and ordering extrajudicial killings; enforced disappearances; kidnappings and torture; as well as wider human rights violations during his tenure as President between 1994 and 2016. Zineb Jammeh is the former “First Lady” of The Gambia and is married to Yahya Jammeh. She is associated with Yahya Jammeh and his regime, and used a charitable foundation and charities as cover for the illicit transfer of funds between herself and the Former President. (Gender):Female",Individual,Primary name variation,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14012 +NEKRASHEVICH,Andrei,Konstantinovich,,,,Major General,НЕКРАШЕВИЧ Андрей Константинович,Cyrillic,Russian,01/01/1968,Gomel,Belarus,Belarus,,,,,Chief of the Main Directorate of Combat Training of the Armed Forces,,,,,,,,,"(UK Sanctions List Ref):RUS0715 (UK Statement of Reasons):Major General Andrei Konstantinovich NEKRASHEVICH has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being involved in the command of Belarusian forces who were involved in a joint exercise with the Russian military ahead of Russia’s invasion of Ukraine which: (1) threatened Ukraine; and (2) provided cover for Russian military preparations to invade Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14666 +NEKRASOV,Aleksandr,Nikolaevich,,,,,Александр Николаевич Некрасов,,,20/06/1963,Severodvinsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,,103426,Russia,"(UK Sanctions List Ref):RUS1368 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,04/05/2022,04/05/2022,04/05/2022,15345 +NEKRASOVA,Alena,Tsimafeeuna,,,,,,,,26/11/1974,,,Belarus,,,,,Senior Judge of the Zavodsky district court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0092 (UK Statement of Reasons):As a Judge of the Zavodsky district court in Minsk, Elena Nekrasova is responsible for the widespread sentencing of journalists, demonstrators and political activists in politically motivated decisions and without fair and transparent court proceedings. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition. (Gender):Female",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14027 +NEKRASOVA,Elena,Timofeevna,,,,,Алена Цiмафееўна НЯКРАСАВА,,,26/11/1974,,,Belarus,,,,,Senior Judge of the Zavodsky district court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0092 (UK Statement of Reasons):As a Judge of the Zavodsky district court in Minsk, Elena Nekrasova is responsible for the widespread sentencing of journalists, demonstrators and political activists in politically motivated decisions and without fair and transparent court proceedings. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition. (Gender):Female",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14027 +NEMKIN,Anton,Igorevich,,,,,Немкин Антон Игоревич,,,22/08/1983,"Maykop, Adygeya",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0461 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14406 +NEMTSEV,Vladimir,Vladimirovich,,,,,,,,15/11/1971,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,(1) Russia. (2) Ukraine,,,,,"Chair, “Legislative Assembly of Sevastopol”",,,,,,,,,"(UK Sanctions List Ref):RUS0218 (UK Statement of Reasons):Nemtsev became Chair of the “Legislative Assembly” of Sevastopol in September 2019. Nemtsev is also leader of United Russia’s Sevastopol branch and involved in the Russian-organised illegal local elections, which undermined Ukrainian sovereignty. He has also been awarded a medal for the “return of Crimea” from the Russian Defence Ministry, demonstrating his involvement in activities undermining Ukrainian territorial integrity. (Gender):Male",Individual,Primary name,,Russia,28/01/2020,31/12/2020,31/12/2020,13810 +NESTERENKO,Tatyana,Gennadevna,,,,,Татьяна Геннадьевна Нестеренко,Cyrillic,Russian,10/05/1959,Vladivostok,Russia,Russia,,,,,Adviser to the Management Apparatus and member of the Management Board of OTKRITIE BANK,,,,,,,,,"(UK Sanctions List Ref):RUS1393 Linked To: PUBLIC JOINT STOCK COMPANY BANK FINANCIAL CORPORATION OTKRITIE (UK Statement of Reasons):Tatyana Gennadevna NESTERENKO is the Adviser to the management apparatus and member of the Management Board of OTKRITIE BANK. In her role, NESTERENKO is a member of and associated with OTKRITIE BANK. OTKRITIE BANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Female",Individual,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15360 +NESTERENKO,Tatiana,Gennadevna,,,,,Татьяна Геннадьевна Нестеренко,Cyrillic,Russian,10/05/1959,Vladivostok,Russia,Russia,,,,,Adviser to the Management Apparatus and member of the Management Board of OTKRITIE BANK,,,,,,,,,"(UK Sanctions List Ref):RUS1393 Linked To: PUBLIC JOINT STOCK COMPANY BANK FINANCIAL CORPORATION OTKRITIE (UK Statement of Reasons):Tatyana Gennadevna NESTERENKO is the Adviser to the management apparatus and member of the Management Board of OTKRITIE BANK. In her role, NESTERENKO is a member of and associated with OTKRITIE BANK. OTKRITIE BANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15360 +NESTERENKO,Tatiana,Gennadievna,,,,,,,,10/05/1959,Vladivostok,Russia,Russia,,,,,Adviser to the Management Apparatus and member of the Management Board of OTKRITIE BANK,,,,,,,,,"(UK Sanctions List Ref):RUS1393 Linked To: PUBLIC JOINT STOCK COMPANY BANK FINANCIAL CORPORATION OTKRITIE (UK Statement of Reasons):Tatyana Gennadevna NESTERENKO is the Adviser to the management apparatus and member of the Management Board of OTKRITIE BANK. In her role, NESTERENKO is a member of and associated with OTKRITIE BANK. OTKRITIE BANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15360 +NESTERENKO,Tatyana,Gennadievna,,,,,,,,10/05/1959,Vladivostok,Russia,Russia,,,,,Adviser to the Management Apparatus and member of the Management Board of OTKRITIE BANK,,,,,,,,,"(UK Sanctions List Ref):RUS1393 Linked To: PUBLIC JOINT STOCK COMPANY BANK FINANCIAL CORPORATION OTKRITIE (UK Statement of Reasons):Tatyana Gennadevna NESTERENKO is the Adviser to the management apparatus and member of the Management Board of OTKRITIE BANK. In her role, NESTERENKO is a member of and associated with OTKRITIE BANK. OTKRITIE BANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15360 +NESTERENKO,Tatyana,Gennadyevna,,,,,,,,10/05/1959,Vladivostok,Russia,Russia,,,,,Adviser to the Management Apparatus and member of the Management Board of OTKRITIE BANK,,,,,,,,,"(UK Sanctions List Ref):RUS1393 Linked To: PUBLIC JOINT STOCK COMPANY BANK FINANCIAL CORPORATION OTKRITIE (UK Statement of Reasons):Tatyana Gennadevna NESTERENKO is the Adviser to the management apparatus and member of the Management Board of OTKRITIE BANK. In her role, NESTERENKO is a member of and associated with OTKRITIE BANK. OTKRITIE BANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15360 +NEVEROV,Sergei,Ivanovich,,,,,Сергей Неверов,,,20/12/1961,Tashtagol,USSR (now Russian Federation),Russia,,,,,"Deputy Chairman of the State Duma, United Russia faction",,,,,,,,,"(UK Sanctions List Ref):RUS0039 (UK Statement of Reasons):Deputy Chairman of State Duma. Responsible for initiating legislation to integrate the annexed Autonomous Republic of Crimea into the Russian Federation. Member of the State Duma, head of the United Russia faction. (Gender):Male",Individual,Primary name,,Russia,29/04/2014,31/12/2020,16/09/2022,12956 +NEVEROV,Sergey,,,,,,,,,20/12/1961,Tashtagol,USSR (now Russian Federation),Russia,,,,,"Deputy Chairman of the State Duma, United Russia faction",,,,,,,,,"(UK Sanctions List Ref):RUS0039 (UK Statement of Reasons):Deputy Chairman of State Duma. Responsible for initiating legislation to integrate the annexed Autonomous Republic of Crimea into the Russian Federation. Member of the State Duma, head of the United Russia faction. (Gender):Male",Individual,AKA,,Russia,29/04/2014,31/12/2020,16/09/2022,12956 +NEVEROV,Sergey,Nikolaevich,,,,,НЕВЕРОВ Сергей Николаевич,Cyrillic,Russian,,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1171 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15123 +NEVZOROV,Boris,Alexandrovich,,,,,Борис Александрович НЕВЗОРОВ,,,21/09/1955,Michurinsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0886 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14837 +NEW CHAGAI TRADING,,,,,,,,,,,,,,,,,,,,,,,Chaman,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +NEW CHAGAI TRADING,,,,,,,,,,,,,,,,,,,,,,,Zahedan,Zabol Province,,Iran,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +NEW CHAGAI TRADING,,,,,,,,,,,,,,,,,,,Chaghi Bazaar,,,,Chaghi,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +NEW CHAGAI TRADING,,,,,,,,,,,,,,,,,,,Dr Barno Road,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +NEW CHAGAI TRADING,,,,,,,,,,,,,,,,,,,Gereshk District,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +NEW CHAGAI TRADING,,,,,,,,,,,,,,,,,,,Haji Mohammed Plaza,Tol Aram Road,near Jamaluddin Afghani Road,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +NEW CHAGAI TRADING,,,,,,,,,,,,,,,,,,,Kandahari Bazaar,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +NEW CHAGAI TRADING,,,,,,,,,,,,,,,,,,,Lashkar Gah,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +NEW CHAGAI TRADING,,,,,,,,,,,,,,,,,,,Room number 33,5th Floor,Sarafi Market,,Kandahar city,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +NEW CHAGAI TRADING,,,,,,,,,,,,,,,,,,,Safaar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +NEW CHAGAI TRADING,,,,,,,,,,,,,,,,,,,Shop number 4,Azizi Bank,Haji Muhammad Isa Market,Wesh,Spin Boldak,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +NEW CHAGAI TRADING,,,,,,,,,,,,,,,,,,,Zaranj District,,,,,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +NEW DEFENSE RESEARCH ORGANIZATION,,,,,,,,,,,,,,,,,,,"Negarestan 3,",off of Pasdaran Street,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0040 (UK Statement of Reasons):The Organisation of Defensive Innovation and Research (SPND) directly supports Iran's proliferation sensitive nuclear activities. The IAEA has identified SPND with their concerns over possible military dimensions (PMD) to Iran's nuclear programme. SPND is run by UN designated Mohsen Fakhrizadeh and is part of the Ministry of Defence For Armed Forces Logistics (MODAFL) (Type of entity):Enterprise (Subsidiaries):Research Centre for Explosion and Impact (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,31/12/2020,12821 +NEW EASTERN OUTLOOK,,,,,,,Новое восточное обозрение,Cyrillic,Russian,,,,,,,,,,"12, Rozhdestvenka Street, office 111",,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0818 (UK Statement of Reasons):Through its news site and publications online, New Eastern Outlook has spread disinformation which promotes policies and/or actions which destabilise Ukraine, and/or undermine and/or threaten its territorial integrity, and/or sovereignty and/or independence. (Phone number):+7 (495) 624-40-91  (Website):https://ru.journal-neo.org/   (Email address):editor@journal-neo.org (Parent company):Russian Academy of Science’s Institute of Oriental Studies",Entity,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14769 +NEW JIHAD,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0041 (UN Ref):QDe.003 Co-founded by Aiman Muhammed Rabi al-Zawahiri (QDi.006), who was also its military leader. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282058",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7000 +NEW RICH,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0109 Pursuant to paragraphs 8(d) of Security Council resolution 1718 (2006) and 12 of Security Council resolution 2270 (2016) as economic resources of designated entities. DPRK cargo vessel M/V JI SONG 8 is owned by Phyongchon Shipping & Marine and is believed to have been involved in illicit transfers of prohibited DPRK goods. Listed as asset of Phyongchon Shipping & Marine, (OFSI ID: 13641, UN Reference Number: UN Ref KPe.070) (IMO number):8503228 (Current owners):Phyongchon Shipping & Marine (Flag of ship):North Korea (Previous flags):Hong Kong (Type of ship):General Cargo / Multi Purpose (Tonnage of ship):3953 (Length of ship):105 (Year built):1985",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13660 +NEZHDANOVA,Yevgeniya,Vitalyevna,,,,,НЕЖДАНОВА Евгения Витальевна,Cyrillic,Russian,07/05/1981,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0798 (UK Statement of Reasons):Yevgeniya Vitalyevna NEZHDANOVA has been involved in providing support for and promoting actions and policies that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being involved in spreading disinformation and promoting Russian actions in Ukraine. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,05/07/2022,14749 +NGABU,Floribert,Njabu,,,,,,,,23/05/1971,,,Congo (Democratic Republic),OB 0243318,Democratic Republic of the Congo number,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0030 (UN Ref):CDi.021 Under house arrest in Kinshasa since March 2005 for FNI involvement in human rights abuses. Transferred to The Hague on 27 March 2011 to testify in the ICC Germain Katanga and Mathieu Ngudjolo trials. Applied for asylum in the Netherlands in May 2011. In October 2012, a Dutch court denied his asylum claim. In July 2014, he was deported from the Netherlands to DRC, where he was placed under arrest. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776373 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8737 +NGAIKOISSET,Eugene,,,,,,,,,08/10/1967,,,,,,911-10-77,Central African Republic armed forces (FACA) Military identification number,"Former Captain, CAR Naval Forces. Former Captain, CAR Presidential Guard",,,,,,Bangui,,Central African Republic,(UK Sanctions List Ref):CAF0009 (UN Ref):CFi.008 Captain Eugène Barret Ngaïkosset is a former member of former President François Bozizé’s (CFi.001) presidential guard and associated with the anti-Balaka movement. He escaped from jail on 17 May 2015 following his extradition from Brazzaville and created his own anti-balaka faction including former FACA fighters. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13309 +NGAIKOSSE,Eugene,Barret,,,,,,,,08/10/1967,,,,,,911-10-77,Central African Republic armed forces (FACA) Military identification number,"Former Captain, CAR Naval Forces. Former Captain, CAR Presidential Guard",,,,,,Bangui,,Central African Republic,(UK Sanctions List Ref):CAF0009 (UN Ref):CFi.008 Captain Eugène Barret Ngaïkosset is a former member of former President François Bozizé’s (CFi.001) presidential guard and associated with the anti-Balaka movement. He escaped from jail on 17 May 2015 following his extradition from Brazzaville and created his own anti-balaka faction including former FACA fighters. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13309 +NGAIKOSSET,Eugene,,,,,,,,,08/10/1967,,,,,,911-10-77,Central African Republic armed forces (FACA) Military identification number,"Former Captain, CAR Naval Forces. Former Captain, CAR Presidential Guard",,,,,,Bangui,,Central African Republic,(UK Sanctions List Ref):CAF0009 (UN Ref):CFi.008 Captain Eugène Barret Ngaïkosset is a former member of former President François Bozizé’s (CFi.001) presidential guard and associated with the anti-Balaka movement. He escaped from jail on 17 May 2015 following his extradition from Brazzaville and created his own anti-balaka faction including former FACA fighters. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13309 +NGAIKOSSET,EUGENE,BARRET,,,,,EUGÈNE BARRET NGAÏKOSSET,,,08/10/1967,,,,,,911-10-77,Central African Republic armed forces (FACA) Military identification number,"Former Captain, CAR Naval Forces. Former Captain, CAR Presidential Guard",,,,,,Bangui,,Central African Republic,(UK Sanctions List Ref):CAF0009 (UN Ref):CFi.008 Captain Eugène Barret Ngaïkosset is a former member of former President François Bozizé’s (CFi.001) presidential guard and associated with the anti-Balaka movement. He escaped from jail on 17 May 2015 following his extradition from Brazzaville and created his own anti-balaka faction including former FACA fighters. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,Primary name,,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13309 +NGAIKOUESSET,Eugene,,,,,,,,,08/10/1967,,,,,,911-10-77,Central African Republic armed forces (FACA) Military identification number,"Former Captain, CAR Naval Forces. Former Captain, CAR Presidential Guard",,,,,,Bangui,,Central African Republic,(UK Sanctions List Ref):CAF0009 (UN Ref):CFi.008 Captain Eugène Barret Ngaïkosset is a former member of former President François Bozizé’s (CFi.001) presidential guard and associated with the anti-Balaka movement. He escaped from jail on 17 May 2015 following his extradition from Brazzaville and created his own anti-balaka faction including former FACA fighters. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13309 +NGAKOSSET,,,,,,,,,,08/10/1967,,,,,,911-10-77,Central African Republic armed forces (FACA) Military identification number,"Former Captain, CAR Naval Forces. Former Captain, CAR Presidential Guard",,,,,,Bangui,,Central African Republic,(UK Sanctions List Ref):CAF0009 (UN Ref):CFi.008 Captain Eugène Barret Ngaïkosset is a former member of former President François Bozizé’s (CFi.001) presidential guard and associated with the anti-Balaka movement. He escaped from jail on 17 May 2015 following his extradition from Brazzaville and created his own anti-balaka faction including former FACA fighters. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Low quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13309 +NGAKOSSET,Eugene,,,,,,,,,08/10/1967,,,,,,911-10-77,Central African Republic armed forces (FACA) Military identification number,"Former Captain, CAR Naval Forces. Former Captain, CAR Presidential Guard",,,,,,Bangui,,Central African Republic,(UK Sanctions List Ref):CAF0009 (UN Ref):CFi.008 Captain Eugène Barret Ngaïkosset is a former member of former President François Bozizé’s (CFi.001) presidential guard and associated with the anti-Balaka movement. He escaped from jail on 17 May 2015 following his extradition from Brazzaville and created his own anti-balaka faction including former FACA fighters. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13309 +NGARUYE,Baudoin,,,,,Colonel,,,,00/00/1978,"(1) Bibwe. (2) Lusamambo, Lubero territory",(1) Congo (Democratic Republic). (2) Congo (Democratic Republic).,Congo (Democratic Republic),,,1-78-09-44621-80,FARDC ID,Brigadier General,,,,,,Rubavu / Mudende,,Rwanda,"(UK Sanctions List Ref):DRC0024 (UN Ref):CDi.019 Entered the Republic of Rwanda on 16 March 2013. As of late 2014, living in Ngoma camp, Rwanda. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5268954 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,28/02/2013,30/11/2012,16/02/2022,12828 +NGARUYE,Baudoin,,,,,Colonel,,,,01/04/1978,"(1) Bibwe. (2) Lusamambo, Lubero territory",(1) Congo (Democratic Republic). (2) Congo (Democratic Republic).,Congo (Democratic Republic),,,1-78-09-44621-80,FARDC ID,Brigadier General,,,,,,Rubavu / Mudende,,Rwanda,"(UK Sanctions List Ref):DRC0024 (UN Ref):CDi.019 Entered the Republic of Rwanda on 16 March 2013. As of late 2014, living in Ngoma camp, Rwanda. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5268954 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,28/02/2013,30/11/2012,16/02/2022,12828 +NGARUYE WA MYAMURO,Baudoin,,,,,Military Leader of the movement du Mars (M23),,,,00/00/1978,"(1) Bibwe. (2) Lusamambo, Lubero territory",(1) Congo (Democratic Republic). (2) Congo (Democratic Republic).,Congo (Democratic Republic),,,1-78-09-44621-80,FARDC ID,Brigadier General,,,,,,Rubavu / Mudende,,Rwanda,"(UK Sanctions List Ref):DRC0024 (UN Ref):CDi.019 Entered the Republic of Rwanda on 16 March 2013. As of late 2014, living in Ngoma camp, Rwanda. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5268954 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,28/02/2013,30/11/2012,16/02/2022,12828 +NGARUYE WA MYAMURO,Baudoin,,,,,Military Leader of the movement du Mars (M23),,,,01/04/1978,"(1) Bibwe. (2) Lusamambo, Lubero territory",(1) Congo (Democratic Republic). (2) Congo (Democratic Republic).,Congo (Democratic Republic),,,1-78-09-44621-80,FARDC ID,Brigadier General,,,,,,Rubavu / Mudende,,Rwanda,"(UK Sanctions List Ref):DRC0024 (UN Ref):CDi.019 Entered the Republic of Rwanda on 16 March 2013. As of late 2014, living in Ngoma camp, Rwanda. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5268954 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,28/02/2013,30/11/2012,16/02/2022,12828 +NGUDJOLO,Cui,,,,,,,,,08/10/1970,"Bunia, Ituri Province",Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0050 (UN Ref):CDi.020 Arrested by MONUC in Bunia in October 2003. Surrendered by the Government of the DRC to the International Criminal Court on 7 February 2008. Acquitted of all charges by the ICC in December 2012, and the verdict was upheld by the Appeals Chamber on 27 February 2015. Ngudjolo filed a claim for asylum in the Netherlands, but was denied. He was deported to the DRC on 11 May 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776118 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8734 +NGUDJOLO,MATHIEU,CHUI,,,,,,,,08/10/1970,"Bunia, Ituri Province",Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0050 (UN Ref):CDi.020 Arrested by MONUC in Bunia in October 2003. Surrendered by the Government of the DRC to the International Criminal Court on 7 February 2008. Acquitted of all charges by the ICC in December 2012, and the verdict was upheld by the Appeals Chamber on 27 February 2015. Ngudjolo filed a claim for asylum in the Netherlands, but was denied. He was deported to the DRC on 11 May 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776118 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8734 +NIAZI,Abdul Manan,,,,,,,,,00/00/1968,"(1) Pashtoon Zarghoon District, Herat Province. (2) Sardar village, Kohsan District, Herat Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,(1) Governor of Kabul Province under the Taliban regime (2) Governor of Balk Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0075 (UN Ref):TAi.097 Taliban member responsible for Herat, Farah and Nimroz provinces as at mid-2013. Member of the Taliban Supreme Council and Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe. Involved in transporting suicide bombers to Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,25/01/2001,01/02/2021,7380 +NIFANTIEV,Evgeny,Olegovich,,,,,Евгений Олегович Нифантьев,,,14/09/1978,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0466 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14411 +NII MOLEKULYARNOI ELEKTRONIKI I ZAVOD MIKRON PAO,,,,,,,,,,,,,,,,,,,1st Zapadny Proezd 12/1,,,,,Zelenograd,124460,Russia,"(UK Sanctions List Ref):RUS1404 Organization Established Date 13 Jan 1994; Government Gazette Number 07589295 (Russia) (UK Statement of Reasons):JOINT STOCK COMPANY MIKRON is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is the largest Russian manufacturer and exporter of microelectronics.  The company received tax benefits to produce the domestic chip for Russia’s National Payment Card System, which was developed following previous sanctions on Russia. Therefore, JOINT STOCK COMPANY MIKRON is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian electronics sector. (Website):https://en.mikron.ru/ (Business Reg No):1027700073466 (Russia). Tax ID No. 7735007358 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15324 +NII MOLEKULYARNOI ELEKTRONIKI I ZAVOD MIKRON PAO,,,,,,,,,,,,,,,,,,,d. 6 str. 1,ul. Akademika Valieva,,,Zelenograd,Moscow,124460,Russia,"(UK Sanctions List Ref):RUS1404 Organization Established Date 13 Jan 1994; Government Gazette Number 07589295 (Russia) (UK Statement of Reasons):JOINT STOCK COMPANY MIKRON is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is the largest Russian manufacturer and exporter of microelectronics.  The company received tax benefits to produce the domestic chip for Russia’s National Payment Card System, which was developed following previous sanctions on Russia. Therefore, JOINT STOCK COMPANY MIKRON is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian electronics sector. (Website):https://en.mikron.ru/ (Business Reg No):1027700073466 (Russia). Tax ID No. 7735007358 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15324 +NIII6,,,,,,,,,,,,,,,,,,,16a Nagatinskaya Street,,,,,Moscow,,Russia,"(UK Sanctions List Ref):CYB0022 (UK Statement of Reasons):The Central Scientific Research Institute of Chemistry and Mechanics (TsNIIKhM) was responsible for a cyber attack on a petro-chemical company in August 2017. The cyber attack gained remote access to the Safety Instrumented Systems connected to the Industrial Control System of a petrochemical refinery. This shut down the plant for over a week. There is evidence to suggest that the shutdown was inadvertent while TsNIIKhM were attempting to cause a highly dangerous physical consequence through disabling the safety systems, which could have included an explosion. These actions caused economic loss and prejudice to commercial interests and/or was intended to undermine the security and prosperity of a country other than the United Kingdom. (Type of entity):Government-owned technical research institution",Entity,Primary name variation,,Cyber,24/03/2022,24/03/2022,24/03/2022,15044 +NIIME AND MIKRON,,,,,,,,,,,,,,,,,,,1st Zapadny Proezd 12/1,,,,,Zelenograd,124460,Russia,"(UK Sanctions List Ref):RUS1404 Organization Established Date 13 Jan 1994; Government Gazette Number 07589295 (Russia) (UK Statement of Reasons):JOINT STOCK COMPANY MIKRON is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is the largest Russian manufacturer and exporter of microelectronics.  The company received tax benefits to produce the domestic chip for Russia’s National Payment Card System, which was developed following previous sanctions on Russia. Therefore, JOINT STOCK COMPANY MIKRON is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian electronics sector. (Website):https://en.mikron.ru/ (Business Reg No):1027700073466 (Russia). Tax ID No. 7735007358 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15324 +NIIME AND MIKRON,,,,,,,,,,,,,,,,,,,d. 6 str. 1,ul. Akademika Valieva,,,Zelenograd,Moscow,124460,Russia,"(UK Sanctions List Ref):RUS1404 Organization Established Date 13 Jan 1994; Government Gazette Number 07589295 (Russia) (UK Statement of Reasons):JOINT STOCK COMPANY MIKRON is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is the largest Russian manufacturer and exporter of microelectronics.  The company received tax benefits to produce the domestic chip for Russia’s National Payment Card System, which was developed following previous sanctions on Russia. Therefore, JOINT STOCK COMPANY MIKRON is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian electronics sector. (Website):https://en.mikron.ru/ (Business Reg No):1027700073466 (Russia). Tax ID No. 7735007358 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15324 +"NIIME, AO",,,,,,,НИИМЭ,Cyrillic,Russian,,,,,,,,,,1st Zapadny Proezd 12/1,,,,,Zelenograd,124460,Russia,"(UK Sanctions List Ref):RUS1405 Organization Established Date 03 Sep 1964. Government Gazette Number 92611467 (Russia) (UK Statement of Reasons):The Molecular Electronics Research Institute is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the electronics sector. (Website):https://www.niime.ru (Business Reg No):1117746568829 (Russia). Tax ID No. 7735579027 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15325 +"NIIME, AO",,,,,,,НИИМЭ,Cyrillic,Russian,,,,,,,,,,d. 6 str. 1,ul. Akademika Valieva,,,Zelenograd,Moscow,124460,Russia,"(UK Sanctions List Ref):RUS1405 Organization Established Date 03 Sep 1964. Government Gazette Number 92611467 (Russia) (UK Statement of Reasons):The Molecular Electronics Research Institute is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the electronics sector. (Website):https://www.niime.ru (Business Reg No):1117746568829 (Russia). Tax ID No. 7735579027 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15325 +NIKIET JSC,,,,,,,AO НИКИЭТ,Cyrillic,Russian,,,,,,,,,,28 Malaya Krasnoselskaya Street,,,,,Moscow,107140,Russia,"(UK Sanctions List Ref):RUS1442 OGRN: 1097746180740; KPP: 770801001 (UK Statement of Reasons):N.A. Dollezhal Order of Lenin Research and Design Institute of Power Engineering JSC (NIKIET) is one of Russia’s largest nuclear design and research centres specialising in reactor technologies. NIKIET is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian energy and defence sectors. (Phone number):7(499)263 73 37 (Website):https://www.nikiet.ru/ (Email address):nikiet@nikiet.ru (Parent company):Rosatom (Business Reg No):Tax Identification Number: INN: 7708698473",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15357 +NIKITIN,Vasilii,Alexandrovich,,,,,Василий Александрович НИКИТИН,,,25/11/1971,Shargun,Uzbekistan,Uzbekistan,,,,,"(1) Former so-called ""Vice Prime Minister of the Council of Ministers of the Lugansk People's Republic) (2) Former spokesman of the ""Army of the South-East""",,,,,,,,Russia,"(UK Sanctions List Ref):RUS0040 (UK Statement of Reasons):Former so called ""Vice Prime Minister of the Council of Ministers of the People's Republic of Luhansk"" (used to be called ""Prime Minister of the People's Republic of Luhansk"" and former spokesman of the ""Army of the Southeast""). Responsible for the separatist ""governmental"" activities of the so called ""government of the People's Republic of Luhansk"". Responsible for the statement of the Army of the Southeast that the Ukrainian presidential elections in the “people's Republic of Luhansk"" cannot take place due to the ""new"" status of the region. (Gender):Male",Individual,Primary name,,Russia,12/07/2014,31/12/2020,16/09/2022,13014 +NIKITIN,Vasyl,Oleksandrovych,,,,,Василь Олександрович Нiкiтiн,,,25/11/1971,Shargun,Uzbekistan,Uzbekistan,,,,,"(1) Former so-called ""Vice Prime Minister of the Council of Ministers of the Lugansk People's Republic) (2) Former spokesman of the ""Army of the South-East""",,,,,,,,Russia,"(UK Sanctions List Ref):RUS0040 (UK Statement of Reasons):Former so called ""Vice Prime Minister of the Council of Ministers of the People's Republic of Luhansk"" (used to be called ""Prime Minister of the People's Republic of Luhansk"" and former spokesman of the ""Army of the Southeast""). Responsible for the separatist ""governmental"" activities of the so called ""government of the People's Republic of Luhansk"". Responsible for the statement of the Army of the Southeast that the Ukrainian presidential elections in the “people's Republic of Luhansk"" cannot take place due to the ""new"" status of the region. (Gender):Male",Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,16/09/2022,13014 +NIKITIN,Vladimir,Stepanovich,,,,,Владимир Степанович НИКИТИН,,,05/04/1948,Opochka,Russia,Russia,,,,,(1) Member of the Presidium of the Central Committee of the Communist Party of the Russian Federation (2) Chairman of the All-Russian public movement “Russian Lad” (“ РУССКИЙ ЛАД”),,,,,,,,Russia,"(UK Sanctions List Ref):RUS0041 Former member of the State Duma and former First Deputy Chairman of the Committee for CIS Affairs, Eurasian Integration and relations with Compatriots of the State Duma (UK Statement of Reasons):Former member of the State Duma and former First Deputy Chairman of the Committee on Relations with CIS Countries, Eurasian Integration and Relations with Compatriots of the State Duma. On 20 March 2014 he voted in favour of the draft Federal Constitutional Law 'on the acceptance into the Russian Federation of the Republic of Crimea and the formation within the Russian Federation of new federal subjects - the republic of Crimea and the City of Federal Status Sevastopol'. Member of the Presidium of the Central Committee of the Communist Party of the Russian Federation. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,16/09/2022,13108 +NIKITIN,Aleksandr,Valeryevich,,,,,Александр Валерьевич НИКИТИН,,,26/04/1976,Michurinsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0994 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14945 +NIKITIN,Gleb,Sergeyevich,,,,,Глеб Сергеевич Никитин,,,24/08/1977,,,Russia,,,,,Governor of Nizhny Novgorod Region,,,,,,,,,"(UK Sanctions List Ref):RUS1511 (UK Statement of Reasons):Gleb Sergeyevich NIKITIN is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because NIKITIN is a regional governor. Specifically, NIKITIN is Governor of Nizhny Novgorod Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15449 +NIKOLAEV,Viktor,Andreevich,,,,,Виктор Андреевич Николаев,Cyrillic,Russian,16/04/1982,,,Russia,,,,,Deputy Chairman of OTKRITIE BANK Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1394 (UK Statement of Reasons):Viktor Andreevich NIKOLAEV is the Deputy Chairman of the Management Board of OTKRITIE BANK. In his role, NIKOLAEV is a member of and associated with OTKRITIE BANK. OTKRITIE BANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15362 +NIKOLAEV,Viktor,Andreevich,,,,,,,,16/04/1982,,,Russia,,,,,Deputy Chairman of OTKRITIE BANK Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1394 (UK Statement of Reasons):Viktor Andreevich NIKOLAEV is the Deputy Chairman of the Management Board of OTKRITIE BANK. In his role, NIKOLAEV is a member of and associated with OTKRITIE BANK. OTKRITIE BANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Male",Individual,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15362 +NIKOLAEV,Nikolai,Petrovich,,,,,Николай Петрович Николаев,,,02/04/1970,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0462 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14407 +NIKOLAEVA,Victoria,Viktorovna,,,,,Николаева Виктория Викторовна,,,21/11/1962,Vladivostok,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0463 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14408 +NIKOLAYEV,Aisen,Sergeyevich,,,,,Айсен Сергеевич Николаев,,,22/01/1972,,,Russia,,,,,Head of the Republic of Sakha (Yakutia),,,,,,,,,"(UK Sanctions List Ref):RUS1529 (UK Statement of Reasons):Aisen Sergeyevich NIKOLAYEV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because NIKOLAYEV is a regional governor or equivalent. Specifically, NIKOLAYEV is Head of the Republic of Sakha (Yakutia). (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15482 +NIKOLAYEV,Oleg,Alekseyevich,,,,,Олег Алексеевич Николаев,,,10/12/1969,,,Russia,,,,,Head of Chuvashia,,,,,,,,,"(UK Sanctions List Ref):RUS1516 (UK Statement of Reasons):Oleg Alekseyevich NIKOLAYEV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because NIKOLAYEV is a regional governor or equivalent. Specifically, NIKOLAYEV is Head of Chuvashia. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15454 +NIKOLOV,Alexey,Lvovich,,,,,Алексей Львович НИКОЛОВ,,,21/12/1957,Moscow,Russia,Russia,(1) 530308406 (2) 531246870,,,,,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1111 (UK Statement of Reasons):Alexey Lvovich NIKOLOV is an important Russian media figure and the managing director of the Russian broadcast company RT (formerly Russia Today). RT is state-funded by the Russian Government. NIKOLOV is therefore a director of a Government of Russia-affiliated entity which is carrying on business in a of a sector of strategic significance to the Russian Government whose actions are destabilising Ukraine and/or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,31/03/2022,31/03/2022,31/03/2022,15058 +NIKONOROVA,Natalya,Yurevna,,,,,НИКОНОРОВА Наталья Юрьевна,Cyrillic,Russian,28/09/1984,,,Ukraine,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1140 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15092 +NIKONOROVA,Natalya,Yurievna,,,,,,,,28/09/1984,,,Ukraine,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1140 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15092 +NIKONOV,Vyacheslav,Alekseevich,,,,,Никонов Вячеслав Алексеевич,,,06/05/1956,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0687 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14638 +NILOV,Oleg,Anatolievich,,,,,Нилов Олег Анатольевич,,,08/05/1962,"Yasnoye, Kaliningrad",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0464 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14409 +NILOV,Yaroslav,Evgenievich,,,,,Нилов Ярослав Евгеньевич,,,20/03/1982,Chisinau,Moldova,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0465 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14410 +NIRU BATTERY MANUFACTURING COMPANY,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0164 (UN Ref):IRe.045 Subsidiary of DIO. Its role is to manufacture power units for the Iranian military including missile systems. [Old Reference # E.03.III.9] (Parent company):Defence Industries Organisation (DIO),Entity,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,31/12/2020,10449 +NISANOV,God,Semyonovich,,,,,,,,24/04/1972,Krasnaya Sloboda,Azerbaijan,(1) Russia (2) Azerbaijan,,,,,Chairman of the Board of Directors of the Kievskaya Ploshchad,,,,,,,,,"(UK Sanctions List Ref):RUS1644 (UK Statement of Reasons):God Semenovich NISANOV (hereafter NISANOV) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 on the basis of the following grounds: (1) NISANOV is and has been involved in supporting the Government of Russia by owning or controlling, and acting as a director of, an entity which is carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian construction and transport sectors. (2) NISANOV is and has been involved in supporting the Government of Russia by owning or controlling directly or indirectly Kievskaya Ploshchad, which is carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian construction and transport sectors. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,02/11/2022,15588 +NISANOV,David,,,,,,,,,24/04/1972,Krasnaya Sloboda,Azerbaijan,(1) Russia (2) Azerbaijan,,,,,Chairman of the Board of Directors of the Kievskaya Ploshchad,,,,,,,,,"(UK Sanctions List Ref):RUS1644 (UK Statement of Reasons):God Semenovich NISANOV (hereafter NISANOV) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 on the basis of the following grounds: (1) NISANOV is and has been involved in supporting the Government of Russia by owning or controlling, and acting as a director of, an entity which is carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian construction and transport sectors. (2) NISANOV is and has been involved in supporting the Government of Russia by owning or controlling directly or indirectly Kievskaya Ploshchad, which is carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian construction and transport sectors. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,02/11/2022,15588 +NISANOV,God,Semenovich,,,,,Год Семёнович Нисанов,Cyrillic,Russian,24/04/1972,Krasnaya Sloboda,Azerbaijan,(1) Russia (2) Azerbaijan,,,,,Chairman of the Board of Directors of the Kievskaya Ploshchad,,,,,,,,,"(UK Sanctions List Ref):RUS1644 (UK Statement of Reasons):God Semenovich NISANOV (hereafter NISANOV) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 on the basis of the following grounds: (1) NISANOV is and has been involved in supporting the Government of Russia by owning or controlling, and acting as a director of, an entity which is carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian construction and transport sectors. (2) NISANOV is and has been involved in supporting the Government of Russia by owning or controlling directly or indirectly Kievskaya Ploshchad, which is carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian construction and transport sectors. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,02/11/2022,15588 +NJABU,FLORIBERT,NGABU,,,,,,,,23/05/1971,,,Congo (Democratic Republic),OB 0243318,Democratic Republic of the Congo number,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0030 (UN Ref):CDi.021 Under house arrest in Kinshasa since March 2005 for FNI involvement in human rights abuses. Transferred to The Hague on 27 March 2011 to testify in the ICC Germain Katanga and Mathieu Ngudjolo trials. Applied for asylum in the Netherlands in May 2011. In October 2012, a Dutch court denied his asylum claim. In July 2014, he was deported from the Netherlands to DRC, where he was placed under arrest. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776373 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8737 +NKOUMTAMADJI,Martin,,,,,,,,,05/10/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +NKOUMTAMADJI,Martin,,,,,,,,,05/10/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Am Dafock,Vakaga prefecture,,,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +NKOUMTAMADJI,Martin,,,,,,,,,03/03/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Am Dafock,Vakaga prefecture,,,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +NKOUMTAMADJI,Martin,,,,,,,,,03/03/1965,(1) Ndinaba (2) Kobo (3) Kabo,(1) Chad (2) Central African Republic (3) Central African Republic,(1) Chad (2) Central African Republic,(1) 06FBO2262 (2) SA0020249,"(1) CAR diplomatic passport no., issued on 22 Feb. 2007 (expired on 21 Feb. 2012) (2) Congo service passport number, issued on 22 Jan. 2019 (expires on 21 January 2022)",,,President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0014 (UN Ref):CFi.013 Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019). The FDPC signed the Political Agreement for Peace and Reconciliation in the CAR on 6 February 2019 but Martin Koumtamadji remains a threat to the peace, stability and security of the CAR. Ndjamena (since his arrest in November 2019)",Individual,AKA,Good quality,Central African Republic,22/04/2020,20/04/2020,31/12/2020,13833 +N'KRUMAH,,,,,,,,,,26/04/1947,,,Guinea Bissau,DA0002186,(Diplomatic). Issued 30 March 2007 in Guinea-Bissau. Expires 26 August 2013,,,Deputy Chief of Staff of the Armed Forces,,,,,,,,,(UK Sanctions List Ref):GUB0019 (UN Ref):GBi.011 Ture was listed by the UN on 18 May 2012 pursuant to paragraph 4 of resolution 2048 (2012). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5782456 (UK Statement of Reasons):Member of the Military Command which has assumed responsibility for the coup d’etat of 12 April 2012. (Gender):Male,Individual,AKA,Low quality,Guinea-Bissau,04/05/2012,31/12/2020,10/03/2022,12665 +N'KRUMAH,,,,,,,,,,26/04/1947,,,Guinea Bissau,DA0002186,(Diplomatic). Issued 30 March 2007 in Guinea-Bissau. Expires 26 August 2013,,,Deputy Chief of Staff of the Armed Forces,,,,,,,,,(UK Sanctions List Ref):GUB0019 (UN Ref):GBi.011 Ture was listed by the UN on 18 May 2012 pursuant to paragraph 4 of resolution 2048 (2012). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5782456 (UK Statement of Reasons):Member of the Military Command which has assumed responsibility for the coup d’etat of 12 April 2012. (Gender):Male,Individual,AKA,Low quality,Guinea-Bissau,04/05/2012,31/12/2020,10/03/2022,12665 +NKUMBA,Gabriel,Amisi,,,,,,,,28/05/1964,Malela,Congo (Democratic Republic),Congo (Democratic Republic),,,1-64-87-77512-30,Military,"Former Deputy Chief of Staff of the Congolese Armed Forces (FARDC), with responsibility for operations and intelligence",22,avenue Mbsenseke,,Ma Campagne,Ngaliema,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0002 (UK Statement of Reasons):As Commander of the 1st Defence Zone of Congolese Army (FARDC) Gabriel KUMBA was officially responsible for FARDC forces who took part in the disproportionate use of force and violent repression in September 2016 in Kinshasa. In this capacity, Gabriel KUMBA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC. There are reasonable grounds to conclude that KUMBA was an “involved person” given that matters within reg (6)(2) occurred within the territory (First Defence Zone) for which he was the FARDC Commander and thus bore responsibility for.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13433 +NKUNDA,,,,,,General,,,,06/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +NKUNDA,,,,,,General,,,,02/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +NKUNDA,LAURENT,,,,,,,,,06/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +NKUNDA,LAURENT,,,,,,,,,02/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +NKUNDABATWARE,Laurent,,,,,,,,,06/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +NKUNDABATWARE,Laurent,,,,,,,,,02/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +NOAVARAN POOYAMOJ,,,,,,,,,,,,,,,,,,,No 15,Eighth Street,Pakistan Avenue,Shahid Beheshti Avenue,,Tehran,,Iran,(UK Sanctions List Ref):INU0099 (UK Statement of Reasons):Has been involved in procurement of materials that are controlled and have direct applications in the manufacture of centrifuges for Iran's uranium enrichment programme. (Phone number):+98 21 88 73 77 53 (Website):www.pooyawave.com (Email address):info@pooyawave.com (Type of entity):Manufacturing,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11541 +"NOAVARAN POUYA MOWJ CO., LTD.",,,,,,,,,,,,,,,,,,,No 15,Eighth Street,Pakistan Avenue,Shahid Beheshti Avenue,,Tehran,,Iran,(UK Sanctions List Ref):INU0099 (UK Statement of Reasons):Has been involved in procurement of materials that are controlled and have direct applications in the manufacture of centrifuges for Iran's uranium enrichment programme. (Phone number):+98 21 88 73 77 53 (Website):www.pooyawave.com (Email address):info@pooyawave.com (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11541 +NOAVARAN TEJARAT PAYA,,,,,,,,,,,,,,,,,,,No 15,Eighth Street,Pakistan Avenue,Shahid Beheshti Avenue,,Tehran,,Iran,(UK Sanctions List Ref):INU0099 (UK Statement of Reasons):Has been involved in procurement of materials that are controlled and have direct applications in the manufacture of centrifuges for Iran's uranium enrichment programme. (Phone number):+98 21 88 73 77 53 (Website):www.pooyawave.com (Email address):info@pooyawave.com (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11541 +NOMANI,HAMDULLAH,,,,,Maulavi,حمد الله نعمانى,,,00/00/1968,"Sipayaw village, Andar District, Ghazni Province",Afghanistan,Afghanistan,,,,,(1) Minister of Higher Education under the Taliban regime (2) Mayor of Kabul City under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0039 (UN Ref):TAi.044 Member of the Taliban Supreme Council. Believed to be in Afghanistan/ Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7374 +NOMCHONGANG TRADING CO.,,,,,,,,,,,,,,,,,,,,,,,Chilgol,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +NOMCHONGANG TRADING CO.,,,,,,,,,,,,,,,,,,,Sengujadong 11-2/(or Kwangbok-dong),,,,Mangyongdae District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0179 (UN Ref):KPe.004 Namchongang is a DPRK trading company subordinate to the General Bureau of Atomic Energy (GBAE). Namchongang has been involved in the procurement of Japanese origin vacuum pumps that were identified at a DPRK nuclear facility, as well as nuclear-related procurement associated with a German individual. It has further been involved in the purchase of aluminum tubes and other equipment specifically suitable for a uranium enrichment program from the late 1990s. Its representative is a former diplomat who served as DPRK’s representative for the IAEA inspection of the Yongbyon nuclear facilities in 2007. Namchongang's proliferation activities are of grave concern given the DPRK’s past proliferation activities. Telephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687. (Parent company):General Bureau of Atomic Energy (GBAE)",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10909 +NOOR,Faizullah,,,,,Haji,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOOR,Faizullah,,,,,Haji,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOOR,Faizullah,,,,,Haji,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOOR,Faizullah,,,,,Haji,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOOR,Faizullah,,,,,Haji,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOOR,Faizullah,,,,,Haji,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOOR,Faizullah,,,,,Haji,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOOR,Faizullah,,,,,Haji,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOOR,Faizullah,,,,,Haji,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOOR,Faizullah,,,,,Haji,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOOR,Faizullah,,,,,Haji,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOOR,Faizullah,,,,,Haji,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORANI,MOHAMMAD,ALEEM,,,,Mufti,محمد علیم نورانی,,,00/00/1963,Ghazni Province,Afghanistan,Afghanistan,,,,,"First Secretary, Taliban Consulate General, Karachi, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0106 (UN Ref):TAi.138 Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7375 +NOORI,Faizullah,,,,,Haji,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORI,Faizullah,,,,,Haji,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORI,Faizullah,,,,,Haji,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORI,Faizullah,,,,,Haji,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORI,Faizullah,,,,,Haji,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORI,Faizullah,,,,,Haji,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORI,Faizullah,,,,,Haji,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORI,Faizullah,,,,,Haji,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORI,Faizullah,,,,,Haji,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORI,Faizullah,,,,,Haji,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORI,Faizullah,,,,,Haji,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORI,Faizullah,,,,,Haji,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORI,Norullah,,,,,,,,,00/00/1958,"Shahjoe District, Zabul Province",Afghanistan,Afghanistan,,,,,(1) Governor of Balkh Province under the Taliban Regime. (2) Head of Northern Zone under the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0068 (UN Ref):TAi.089 Belongs to Tokhi tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7378 +NOORI,Norullah,,,,,,,,,01/01/1967,"Shahjoe District, Zabul Province",Afghanistan,Afghanistan,,,,,(1) Governor of Balkh Province under the Taliban Regime. (2) Head of Northern Zone under the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0068 (UN Ref):TAi.089 Belongs to Tokhi tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7378 +NOORZAI,Ahmed Shah,,,,,Mullah,,,,01/01/1985,Quetta,Pakistan,Pakistan,NC5140251,"Pakistan number, issued on 23 Oct. 2009. Expires on 22 Oct. 2014, officially cancelled as of 2013",54401-2288025-9,Issued in Pakistan (officially cancelled as of 2013),,,,Quetta,,,,,Pakistan,(UK Sanctions List Ref):AFG0132 (UN Ref):TAi.166 Owns and operates the Roshan Money Exchange (TAe.011). Provided financial services to Ghul Agha Ishakzai (TAi.147) and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/Howwe-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,22/03/2013,26/02/2013,01/02/2021,12863 +NOORZAI,Ahmed Shah,,,,,Mullah,,,,00/00/1981,Quetta,Pakistan,Pakistan,NC5140251,"Pakistan number, issued on 23 Oct. 2009. Expires on 22 Oct. 2014, officially cancelled as of 2013",54401-2288025-9,Issued in Pakistan (officially cancelled as of 2013),,,,Quetta,,,,,Pakistan,(UK Sanctions List Ref):AFG0132 (UN Ref):TAi.166 Owns and operates the Roshan Money Exchange (TAe.011). Provided financial services to Ghul Agha Ishakzai (TAi.147) and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/Howwe-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,22/03/2013,26/02/2013,01/02/2021,12863 +NOORZAI,Faizullah,Khan,,,,Hajji,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Faizullah,Khan,,,,Hajji,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Faizullah,Khan,,,,Hajji,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Faizullah,Khan,,,,Hajji,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Faizullah,Khan,,,,Hajji,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Faizullah,Khan,,,,Hajji,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Faizullah,Khan,,,,Hajji,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Faizullah,Khan,,,,Hajji,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Faizullah,Khan,,,,Hajji,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Faizullah,Khan,,,,Hajji,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Faizullah,Khan,,,,Hajji,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Faizullah,Khan,,,,Hajji,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Malak,,,,,Hajji,حاجى مالك نورزى,,,00/00/1957,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Malak,,,,,Hajji,حاجى مالك نورزى,,,00/00/1957,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Malak,,,,,Hajji,حاجى مالك نورزى,,,00/00/1960,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Malak,,,,,Hajji,حاجى مالك نورزى,,,00/00/1960,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Malak,,,,,Hajji,حاجى مالك نورزى,,,01/01/1963,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Malak,,,,,Hajji,حاجى مالك نورزى,,,01/01/1963,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Malek,,,,,Haji,حاجى مالك نورزى,,,00/00/1957,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Malek,,,,,Haji,حاجى مالك نورزى,,,00/00/1957,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Malek,,,,,Haji,حاجى مالك نورزى,,,00/00/1960,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Malek,,,,,Haji,حاجى مالك نورزى,,,00/00/1960,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Malek,,,,,Haji,حاجى مالك نورزى,,,01/01/1963,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Malek,,,,,Haji,حاجى مالك نورزى,,,01/01/1963,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Malik,,,,,Hajji,حاجى مالك نورزى,,,00/00/1957,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Malik,,,,,Hajji,حاجى مالك نورزى,,,00/00/1957,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Malik,,,,,Hajji,حاجى مالك نورزى,,,00/00/1960,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Malik,,,,,Hajji,حاجى مالك نورزى,,,00/00/1960,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Malik,,,,,Hajji,حاجى مالك نورزى,,,01/01/1963,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Malik,,,,,Hajji,حاجى مالك نورزى,,,01/01/1963,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Pazullah,,,,,Haji,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Pazullah,,,,,Haji,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Pazullah,,,,,Haji,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Pazullah,,,,,Haji,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Pazullah,,,,,Haji,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Pazullah,,,,,Haji,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Pazullah,,,,,Haji,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Pazullah,,,,,Haji,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Pazullah,,,,,Haji,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Pazullah,,,,,Haji,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Pazullah,,,,,Haji,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Pazullah,,,,,Haji,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Abdul Basir,,,,,Haji,عبد البصیر نورزی,,,00/00/1965,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +NOORZAI,Abdul Basir,,,,,Haji,عبد البصیر نورزی,,,00/00/1960,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +NOORZAI,Abdul Basir,,,,,Haji,عبد البصیر نورزی,,,00/00/1963,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +NOORZAI,Basir,,,,,Haji,,,,00/00/1965,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +NOORZAI,Basir,,,,,Haji,,,,00/00/1960,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +NOORZAI,Basir,,,,,Haji,,,,00/00/1963,Baluchistan Province,Pakistan,Afghanistan,AA3829182,Pakistani,5420124679187,Pakistani,,,,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0139 (UN Ref):TAi.173 Owner of Haji Basir and Zarjmil Company Hawala (TAe.014), which provides financial services to Taliban in the region. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,03/08/2015,27/03/2015,01/02/2021,13268 +NOORZAI,FAIZULLAH,KHAN,,,,Haji,فیض الله خان نورزی,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,FAIZULLAH,KHAN,,,,Haji,فیض الله خان نورزی,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,FAIZULLAH,KHAN,,,,Haji,فیض الله خان نورزی,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,FAIZULLAH,KHAN,,,,Haji,فیض الله خان نورزی,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,FAIZULLAH,KHAN,,,,Haji,فیض الله خان نورزی,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,FAIZULLAH,KHAN,,,,Haji,فیض الله خان نورزی,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,FAIZULLAH,KHAN,,,,Haji,فیض الله خان نورزی,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,FAIZULLAH,KHAN,,,,Haji,فیض الله خان نورزی,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,FAIZULLAH,KHAN,,,,Haji,فیض الله خان نورزی,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,FAIZULLAH,KHAN,,,,Haji,فیض الله خان نورزی,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,FAIZULLAH,KHAN,,,,Haji,فیض الله خان نورزی,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,FAIZULLAH,KHAN,,,,Haji,فیض الله خان نورزی,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOORZAI,Mad,Aman,Ustad,,,Mullah,,,,00/00/1970,"Bande Tumur Village, Maiwand District, Kandahar Province",Afghanistan,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0124 (UN Ref):TAi.158 Senior Taliban member as at 2011 with financial duties, including raising funds on behalf of the leadership. Has provided logistical support for Taliban operations and channeled proceeds from drug trafficking to arms purchases. Has acted as secretary to Taliban leader Mullah Mohammed Omar (TAi.004) and as his messenger at senior-level meetings of the Taliban. Also associated with Gul Agha Ishakzai (TAi.147). Member of Mullah Mohammed Omar’s (TAi.004) inner circle during the Taliban regime. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12456 +NOORZAI,MALIK,,,,,Haji,نورزى مالك ح,,,00/00/1957,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,MALIK,,,,,Haji,نورزى مالك ح,,,00/00/1957,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,MALIK,,,,,Haji,نورزى مالك ح,,,00/00/1960,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,MALIK,,,,,Haji,نورزى مالك ح,,,00/00/1960,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,MALIK,,,,,Haji,نورزى مالك ح,,,01/01/1963,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Kalay Rangin,Spin Boldak District,,,,Kandahar province,,Afghanistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,MALIK,,,,,Haji,نورزى مالك ح,,,01/01/1963,"(1) Chaman border town (2) Pishin, Baluchistan Province",(1) Pakistan (2) Pakistan,Afghanistan,FA0157612,Pakistani. Issued: 23/01/2009. Expired: 22/07/2014. Issued under name Allah Muhammad. Officially cancelled as of 2013.,54201-247561-5,Pakistani. Officially cancelled as of 2013.,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0120 (UN Ref):TAi.154 Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai (TAi.153). Father’s name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,21/10/2011,04/10/2011,01/02/2021,12155 +NOORZAI,Mohammad,Aman,Ustad,,,Mullah,,,,00/00/1970,"Bande Tumur Village, Maiwand District, Kandahar Province",Afghanistan,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0124 (UN Ref):TAi.158 Senior Taliban member as at 2011 with financial duties, including raising funds on behalf of the leadership. Has provided logistical support for Taliban operations and channeled proceeds from drug trafficking to arms purchases. Has acted as secretary to Taliban leader Mullah Mohammed Omar (TAi.004) and as his messenger at senior-level meetings of the Taliban. Also associated with Gul Agha Ishakzai (TAi.147). Member of Mullah Mohammed Omar’s (TAi.004) inner circle during the Taliban regime. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12456 +NOREZAI,Faizuulah,Khan,,,,Haji,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOREZAI,Faizuulah,Khan,,,,Haji,,,,00/00/1966,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOREZAI,Faizuulah,Khan,,,,Haji,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOREZAI,Faizuulah,Khan,,,,Haji,,,,00/00/1961,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOREZAI,Faizuulah,Khan,,,,Haji,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOREZAI,Faizuulah,Khan,,,,Haji,,,,00/00/1968,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOREZAI,Faizuulah,Khan,,,,Haji,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOREZAI,Faizuulah,Khan,,,,Haji,,,,00/00/1969,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOREZAI,Faizuulah,Khan,,,,Haji,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOREZAI,Faizuulah,Khan,,,,Haji,,,,00/00/1970,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOREZAI,Faizuulah,Khan,,,,Haji,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Kalay Rangin,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NOREZAI,Faizuulah,Khan,,,,Haji,,,,00/00/1962,"(1) Lowy Kariz, Spin Boldak District, Kandahar Province (2) Kadanay, Spin Boldak District, Kandahar Province (3) Chaman, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,Afghanistan,,,,,,Boghra Road,Miralzei Village,Chaman,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0119 (UN Ref):TAi.153 Prominent Taliban financier. As of mid-2009, supplied weapons, ammunition, explosives and medical equipment to Taliban fighters; and raised funds for the Taliban, and provided training to them, in the Afghanistan/Pakistan border region. Has previously organized and funded Taliban operations in Kandahar Province, Afghanistan. As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai (TAi.154). Father’s name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name variation,,Afghanistan,21/10/2011,04/10/2011,16/02/2022,12154 +NORIEGA FIGUEROA,Jose,Gregorio,,,,,José Gregorio NORIEGA FIGUEROA,,,21/02/1969,,Venezuela,Venezuela,,,V-8348784,,Member of the National Assembly,,,,,,,,,"(UK Sanctions List Ref):VEN0036 (UK Statement of Reasons):Noriega is a National Assembly Deputy (2021-2025) having been re-elected on 6 December 2020 in undemocratic parliamentary elections not recognised as free and fair by the UK. Noriega had previously served as a National Assembly Deputy for the period 2016-2020. There are reasonable grounds to suspect that Noriega, a member of the Venezuelan National Assembly, has been involved in the repression of democratic opposition in Venezuela and other actions, policies, or activities which undermine democracy in Venezuela, by coming to power through fraudulent/illegitimate elections and by his involvement with Operation Alacran. There are also reasonable grounds to suspect he is associated with Nicolas Maduro, a person who is involved in the repression of democratic opposition and otherwise undermining democracy in Venezuela through his involvement in Operation Alacran. Lastly, there are reasonable grounds to suspect that Noriega was acting on behalf of, or at the command of a person (Nicolas Maduro) who is involved in repression of political opposition and other policies which undermine democracy in Venezuela by aiding his attacks and attempts to control the National Assembly. In July 2020, Noriega, helped by the Venezuelan Supreme Court of Justice (Tribunal Supremo de Justicia (TSJ)), illegitimately took over the leadership of the political party Voluntad Popular, thereby further undermining democracy in Venezuela. (Gender):Male",Individual,Primary name,,Venezuela,30/06/2020,31/12/2020,02/08/2022,13851 +NOROV,Erkin,Rakhmatovich,,,,,НОРОВ Эркин Рахматович,Cyrillic,Russian,00/00/1954,Moscow,Russia,Russia,,,,,Member of VTB Bank Management Board,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0859 (UK Statement of Reasons):Erkin NOROV is a member of VTB Bank’s Management Board.  VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, NOROV obtains a financial benefit from VTB Bank, therefore NOROV is an involved person on the basis of his membership of and association with VTB Bank.    (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14810 +NORTH KOREA MARITIME ADMINISTRATION BUREAU,,,,,,,,,,,,,,,,,,,,,,Ryonhwa-Dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0063 (UK Statement of Reasons):The Maritime Administrative Bureau has assisted in the evasion of sanctions imposed by the United Nations Security Council including by renaming and re-registering assets of designated entities and providing false documentation to vessels subject to United Nations sanctions. (Phone number):+850 2 381 4410. +850-2-18111 ex 8059 (Website):www.ma.gov.kp (Email address):mab@silibanki.net.kp,Entity,AKA,,Democratic People's Republic of Korea,16/10/2017,31/12/2020,31/12/2020,13552 +NORTH KOREA MARITIME ADMINISTRATION BUREAU,,,,,,,,,,,,,,,,,,,PO BOX 416,,,,,,,,(UK Sanctions List Ref):DPR0063 (UK Statement of Reasons):The Maritime Administrative Bureau has assisted in the evasion of sanctions imposed by the United Nations Security Council including by renaming and re-registering assets of designated entities and providing false documentation to vessels subject to United Nations sanctions. (Phone number):+850 2 381 4410. +850-2-18111 ex 8059 (Website):www.ma.gov.kp (Email address):mab@silibanki.net.kp,Entity,AKA,,Democratic People's Republic of Korea,16/10/2017,31/12/2020,31/12/2020,13552 +NOSATOV,Alexander,Mihailovich,,,,,,,,27/03/1963,"The Autonomous Republic of Crimea and the city of Sevastopol, Ukraine",Ukrainian SSR (now Ukraine),Ukraine,,,,,"(1) Admiral, and First Deputy Commander in Chief of the Navy (2) Chief of the Navy Man Staff",,,,,,,,,"(UK Sanctions List Ref):RUS0042 Former, Vice-Admiral, acting Commander of the Russian Baltic Fleet (UK Statement of Reasons):Currently Admiral, First Deputy Commander in Chief of the Main Staff and Chief of Navy Main Staff. Former Deputy-Commander of the Black Sea Fleet, Rear Admiral. Responsible for commanding Russian forces that have occupied Ukrainian sovereign territory. (Gender):Male",Individual,Primary name,,Russia,21/03/2014,31/12/2020,16/09/2022,12939 +NOSKEVICH,Ivan,Danilavich,,,,,,,,25/03/1970,"Cierablicy, Brest Oblast",Former USSR Currently Belarus,Belarus,,,,,Former Chairman of the Investigate Committee of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0054 (UK Statement of Reasons):Ivan Naskevich is the former Chairman of the Investigative Committee of the Republic of Belarus. In his role as Chairman, Naskevich was responsible for the actions of the Investigative Committee, including pursuing criminal investigations against protestors and opposition leaders, and therefore undermining democracy in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,18/03/2022,13987 +NOSKEVICH,Ivan,Danilovich,,,,,,,,25/03/1970,"Cierablicy, Brest Oblast",Former USSR Currently Belarus,Belarus,,,,,Former Chairman of the Investigate Committee of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0054 (UK Statement of Reasons):Ivan Naskevich is the former Chairman of the Investigative Committee of the Republic of Belarus. In his role as Chairman, Naskevich was responsible for the actions of the Investigative Committee, including pursuing criminal investigations against protestors and opposition leaders, and therefore undermining democracy in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,18/03/2022,13987 +NOSKOV,Vasiliy,Viktorovich,,,,,Василий Викторович Носков,Cyrillic,Russian,14/07/1993,Novosibirsk,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1577 (UK Statement of Reasons):Vasiliy NOSKOV is an involved person within the meaning of the Russia (Sanctions) (EU Exit) Regulations 2019 because he is the so-called Deputy Minister of Culture, Sports and Youth for the non-government controlled area of Ukraine known as the Luhansk People’s Republic. Through this role, NOSKOV is or has engaged in policies or actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15521 +NOUR,Mohammad,Mehdi,Nejad,,,,,,,,,,,,,,,"(1) Lieutenant General (2) Rector of Malek Ashtar University of Defence Technology (chemistry department, affiliated to MODAFL, has conducted experiments on beryllium) (3) Scientific Adviser to the Minister of Defence",,,,,,,,,"(UK Sanctions List Ref):INU0204 (UN Ref):IRi.027 Deputy Minister of Science, Research and Technology. [Old Reference # I.37.C.7] (UK Statement of Reasons):As former Rector at Malek Ashtar University and currently scientific adviser to the Minister of Defence, Mohammad Mehdi Nejad NOURI is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019 and is associated with a person who is or has been so involved.",Individual,Primary name variation,,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9001 +NOUREDDINE,Drissi,,,,,,,,,30/04/1964,Tunis,Tunisia,Tunisia,L851940,"issue date: 09/09/1998, expiry date: 08/09/2003",,,,Via Plebiscito 3,,,,,Cremona,,Italy,(UK Sanctions List Ref):AQD0277 (UN Ref):QDi.149 Sentenced to six years of imprisonment for international terrorism in 2008. Deported from Italy to Tunisia on 10 Feb. 2013. Inadmissible to the Schengen area. Mother’s name is Khadijah al-Drissi. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,01/04/2021,7879 +NOURI,Ali,Ashraf,,,,,,,,,,,,,,,,IRGC Political Deputy Commander,,,,,,,,,(UK Sanctions List Ref):INU0015 (UK Statement of Reasons):IRGC Political Deputy Commander (Gender):Male,Individual,Primary name,,Iran (Nuclear),24/01/2012,31/12/2020,31/12/2020,12496 +NOURI,Hassan,,,,,,,,,09/02/1960,Damascus,,Syria,,,,,Former Minister of Administrative Development,,,,,,,,,"(UK Sanctions List Ref):SYR0081 (UK Statement of Reasons):Former Minister of Administrative Development in power after May 2011 (appointed 27.8.2014). As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,22/10/2014,31/12/2020,13/05/2022,13153 +NOURI,Mohammad,Mehdi,Nezhad,,,,,,,,,,,,,,,"(1) Lieutenant General (2) Rector of Malek Ashtar University of Defence Technology (chemistry department, affiliated to MODAFL, has conducted experiments on beryllium) (3) Scientific Adviser to the Minister of Defence",,,,,,,,,"(UK Sanctions List Ref):INU0204 (UN Ref):IRi.027 Deputy Minister of Science, Research and Technology. [Old Reference # I.37.C.7] (UK Statement of Reasons):As former Rector at Malek Ashtar University and currently scientific adviser to the Minister of Defence, Mohammad Mehdi Nejad NOURI is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019 and is associated with a person who is or has been so involved.",Individual,Primary name variation,,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9001 +NOURI,,,,,,,,,,,,,,,,,,"(1) Lieutenant General (2) Rector of Malek Ashtar University of Defence Technology (chemistry department, affiliated to MODAFL, has conducted experiments on beryllium) (3) Scientific Adviser to the Minister of Defence",,,,,,,,,"(UK Sanctions List Ref):INU0204 (UN Ref):IRi.027 Deputy Minister of Science, Research and Technology. [Old Reference # I.37.C.7] (UK Statement of Reasons):As former Rector at Malek Ashtar University and currently scientific adviser to the Minister of Defence, Mohammad Mehdi Nejad NOURI is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019 and is associated with a person who is or has been so involved.",Individual,Primary name variation,,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9001 +NOURI,MOHAMMAD,MEHDI,NEJAD,,,,,,,,,,,,,,,"(1) Lieutenant General (2) Rector of Malek Ashtar University of Defence Technology (chemistry department, affiliated to MODAFL, has conducted experiments on beryllium) (3) Scientific Adviser to the Minister of Defence",,,,,,,,,"(UK Sanctions List Ref):INU0204 (UN Ref):IRi.027 Deputy Minister of Science, Research and Technology. [Old Reference # I.37.C.7] (UK Statement of Reasons):As former Rector at Malek Ashtar University and currently scientific adviser to the Minister of Defence, Mohammad Mehdi Nejad NOURI is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019 and is associated with a person who is or has been so involved.",Individual,Primary name,,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9001 +NOVICHKOV,Nikolay,Vladimirovich,,,,,Новичков Николай Владимирович,,,24/12/1974,"Velikovo, Gorokhovetsky District, Vladimir Oblast",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0468 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14413 +NOVIKOV,Dmitry,Georgievich,,,,,Новиков Дмитрий Георгиевич,,,12/09/1969,Khabarovsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0467 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14412 +NOVOZHILOV,Viktor,Feodosyevich,,,,,Виктор Феодосьевич НОВОЖИЛОВ,,,16/02/1965,Belovo,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0965 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14916 +NOVYUKHOV,Aleksandr,Vyacheslavovich,,,,,Александр Вячеславович Новьюхов,,,10/05/1975,"Berezovo, Berezovsky",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS1003 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14954 +NPO IZHBS,,,,,,,НПО ИжБС,Cyrillic,Russian,,,,,,,,,,2 Ordzhonikidze Street,,,,,Udmurt Republic,426063,Russia,"(UK Sanctions List Ref):RUS1429 (UK Statement of Reasons):Izhevsk Unmanned Systems is, or has been, involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the defence sector. (Phone number):7(3412) 655 390 (Website):http://www.izh-bs/ru (Email address):info@izh-bs.ru (Business Reg No):INN - 1831117433 OGRN - 1061831040688",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15376 +NPO IZHMASH,,,,,,,НПО Ижмаш,Cyrillic,Russian,,,,,,,,,,2 Ordzhonikidze Street,,,,,Udmurt Republic,426063,Russia,"(UK Sanctions List Ref):RUS1429 (UK Statement of Reasons):Izhevsk Unmanned Systems is, or has been, involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the defence sector. (Phone number):7(3412) 655 390 (Website):http://www.izh-bs/ru (Email address):info@izh-bs.ru (Business Reg No):INN - 1831117433 OGRN - 1061831040688",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15376 +NPO IZHMASH OAO,,,,,,,,,,,,,,,,,,,3B,Deryabina avenue,,,,Izhevsk,394018,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +NPO IZHMASH OAO,,,,,,,,,,,,,,,,,,,3,Derjabin Pr,,,,Izhevsk,426006,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +NSANZUBUKIRE,FELICIEN,,,,,,,,,00/00/1967,"(1) Kinyinya, Kigali. (2) Murama, Kigali. (3) Rubungo, Kigali",(1) Rwanda. (2) Rwanda. (3) Rwanda.,Rwanda,,,,,FDLR-FOCA Colonel. FDLR-FOCA Subsector Commander,,,,,,South Kivu Province,,Congo (Democratic Republic),(UK Sanctions List Ref):DRC0029 (UN Ref):CDi.023 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5269078 (Gender):Male,Individual,Primary name,,Democratic Republic of the Congo,03/12/2010,01/12/2010,31/12/2020,11277 +NSCL,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,,(UK Sanctions List Ref):SYR0319 Manufacturing/Proliferation (UK Statement of Reasons):Affiliated to and a subsidiary of the Syrian Scientific Studies and Research Centre (SSRC) which is already designated. It provides support to the SSRC and is therefore responsible for the violent repression of the civilian population. (Type of entity):Public,Entity,AKA,,Syria,23/07/2014,31/12/2020,31/12/2020,13033 +NSCL,,,,,,,,,,,,,,,,,,,,,,,PO Box 4470,,,Syria,(UK Sanctions List Ref):SYR0319 Manufacturing/Proliferation (UK Statement of Reasons):Affiliated to and a subsidiary of the Syrian Scientific Studies and Research Centre (SSRC) which is already designated. It provides support to the SSRC and is therefore responsible for the violent repression of the civilian population. (Type of entity):Public,Entity,AKA,,Syria,23/07/2014,31/12/2020,31/12/2020,13033 +NTAGANDA,Bosco,,,,,,,,,00/00/1973,Bigogwe,Rwanda,Congo (Democratic Republic),,,,,(1) Former Chief of Staff in CNDP (2) Former CNDP military commander,,,,,,The Hague,,Netherlands,"(UK Sanctions List Ref):DRC0025 (UN Ref):CDi.030 Born in Rwanda, he moved to Nyamitaba,Masisi territory, North Kivu, when he was a child. Nominated FARDC Brigadier-General by Presidential Decree on 11 December 2004, following Ituri peace agreements. Formerly Chief of Staff in CNDP and became CNDP military commander since the arrest of Laurent Nkunda in January 2009. Since January 2009, de facto Deputy Commander of consecutive anti-FDLR operations ‘Umoja Wetu’, ‘Kimia II’, and ‘Amani Leo’ in North and South Kivu. Entered Rwanda in March 2013, and voluntarily surrender to ICC officials in Kigali on March 22. Transferred to the ICC in The Hague, Netherlands. On 9 June 2014, ICC confirmed 13 charges of war crimes and five charges of crimes against humanity against him; the trial started in September 2015. On 8 July 2019, the ICC found him guilty of 18 counts of war crimes and crimes against humanity, committed in Ituri in 2002-2003. On 7 November 2019, he was sentenced to a total of 30 years imprisonment. He has appealed both his conviction and sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,18/02/2021,8736 +NTAGANDA,Bosco,,,,,,,,,00/00/1974,Bigogwe,Rwanda,Congo (Democratic Republic),,,,,(1) Former Chief of Staff in CNDP (2) Former CNDP military commander,,,,,,The Hague,,Netherlands,"(UK Sanctions List Ref):DRC0025 (UN Ref):CDi.030 Born in Rwanda, he moved to Nyamitaba,Masisi territory, North Kivu, when he was a child. Nominated FARDC Brigadier-General by Presidential Decree on 11 December 2004, following Ituri peace agreements. Formerly Chief of Staff in CNDP and became CNDP military commander since the arrest of Laurent Nkunda in January 2009. Since January 2009, de facto Deputy Commander of consecutive anti-FDLR operations ‘Umoja Wetu’, ‘Kimia II’, and ‘Amani Leo’ in North and South Kivu. Entered Rwanda in March 2013, and voluntarily surrender to ICC officials in Kigali on March 22. Transferred to the ICC in The Hague, Netherlands. On 9 June 2014, ICC confirmed 13 charges of war crimes and five charges of crimes against humanity against him; the trial started in September 2015. On 8 July 2019, the ICC found him guilty of 18 counts of war crimes and crimes against humanity, committed in Ituri in 2002-2003. On 7 November 2019, he was sentenced to a total of 30 years imprisonment. He has appealed both his conviction and sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,18/02/2021,8736 +NTAGENDA,Bosco,,,,,,,,,00/00/1973,Bigogwe,Rwanda,Congo (Democratic Republic),,,,,(1) Former Chief of Staff in CNDP (2) Former CNDP military commander,,,,,,The Hague,,Netherlands,"(UK Sanctions List Ref):DRC0025 (UN Ref):CDi.030 Born in Rwanda, he moved to Nyamitaba,Masisi territory, North Kivu, when he was a child. Nominated FARDC Brigadier-General by Presidential Decree on 11 December 2004, following Ituri peace agreements. Formerly Chief of Staff in CNDP and became CNDP military commander since the arrest of Laurent Nkunda in January 2009. Since January 2009, de facto Deputy Commander of consecutive anti-FDLR operations ‘Umoja Wetu’, ‘Kimia II’, and ‘Amani Leo’ in North and South Kivu. Entered Rwanda in March 2013, and voluntarily surrender to ICC officials in Kigali on March 22. Transferred to the ICC in The Hague, Netherlands. On 9 June 2014, ICC confirmed 13 charges of war crimes and five charges of crimes against humanity against him; the trial started in September 2015. On 8 July 2019, the ICC found him guilty of 18 counts of war crimes and crimes against humanity, committed in Ituri in 2002-2003. On 7 November 2019, he was sentenced to a total of 30 years imprisonment. He has appealed both his conviction and sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,18/02/2021,8736 +NTAGENDA,Bosco,,,,,,,,,00/00/1974,Bigogwe,Rwanda,Congo (Democratic Republic),,,,,(1) Former Chief of Staff in CNDP (2) Former CNDP military commander,,,,,,The Hague,,Netherlands,"(UK Sanctions List Ref):DRC0025 (UN Ref):CDi.030 Born in Rwanda, he moved to Nyamitaba,Masisi territory, North Kivu, when he was a child. Nominated FARDC Brigadier-General by Presidential Decree on 11 December 2004, following Ituri peace agreements. Formerly Chief of Staff in CNDP and became CNDP military commander since the arrest of Laurent Nkunda in January 2009. Since January 2009, de facto Deputy Commander of consecutive anti-FDLR operations ‘Umoja Wetu’, ‘Kimia II’, and ‘Amani Leo’ in North and South Kivu. Entered Rwanda in March 2013, and voluntarily surrender to ICC officials in Kigali on March 22. Transferred to the ICC in The Hague, Netherlands. On 9 June 2014, ICC confirmed 13 charges of war crimes and five charges of crimes against humanity against him; the trial started in September 2015. On 8 July 2019, the ICC found him guilty of 18 counts of war crimes and crimes against humanity, committed in Ituri in 2002-2003. On 7 November 2019, he was sentenced to a total of 30 years imprisonment. He has appealed both his conviction and sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,18/02/2021,8736 +NTAWUNGUKA,PACIFIQUE,,,,,,,,,01/01/1964,"Gaseke, Gisenyi Province",Rwanda,Rwanda,,,,,(1) FDLR-FOCA “SONOKI” Sector Commander (2) FDLR-FOCA Brigadier General. Former commander of the First Division of FOCA,,,,,Rutshuru Territory,North Kivu,,Congo (Democratic Republic),(UK Sanctions List Ref):DRC0053 (UN Ref):CDi.024 Received military training in Egypt. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5269021 (Gender):Male,Individual,Primary name,,Democratic Republic of the Congo,04/03/2009,03/03/2009,19/01/2021,10678 +NTAWUNGULA,Pacifique,,,,,,,,,01/01/1964,"Gaseke, Gisenyi Province",Rwanda,Rwanda,,,,,(1) FDLR-FOCA “SONOKI” Sector Commander (2) FDLR-FOCA Brigadier General. Former commander of the First Division of FOCA,,,,,Rutshuru Territory,North Kivu,,Congo (Democratic Republic),(UK Sanctions List Ref):DRC0053 (UN Ref):CDi.024 Received military training in Egypt. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5269021 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,19/01/2021,10678 +NUMBA BANZA TAMBO,John,,,,,,,,,16/08/1962,(1) Jadotville (2) Kolwezi (3) Likasi,(1) Congo (Democratic Republic) (2) Congo (Democratic Republic) (3) Congo (Democratic Republic),Congo (Democratic Republic),,,,,Inspector General of the Congolese Armed Forces,,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0005 (UK Statement of Reasons):As former Inspector General of the Congolese National Police John NUMBI was notably involved in the campaign of violent intimidation carried out in the context of the March 2016 gubernatorial elections in the four ex-Katangan provinces, and as such is responsible for obstructing a consensual and peaceful solution with a view to holding elections in DRC. From July 2018 to July 2020, John NUMBI was Inspector-General of the Congolese Armed Forces (FARDC). Owing to his role, he bears responsibility for human rights violations committed by the FARDC during that period, such as disproportionate violence against illegal miners from June to July 2019 committed by FARDC troops under his direct authority. John NUMBI was therefore involved in planning, directing or committing acts that constitute serious human rights violations or abuses in the DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13436 +NUMBA BANZA TAMBO,Tambo,,,,,,,,,16/08/1962,(1) Jadotville (2) Kolwezi (3) Likasi,(1) Congo (Democratic Republic) (2) Congo (Democratic Republic) (3) Congo (Democratic Republic),Congo (Democratic Republic),,,,,Inspector General of the Congolese Armed Forces,,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0005 (UK Statement of Reasons):As former Inspector General of the Congolese National Police John NUMBI was notably involved in the campaign of violent intimidation carried out in the context of the March 2016 gubernatorial elections in the four ex-Katangan provinces, and as such is responsible for obstructing a consensual and peaceful solution with a view to holding elections in DRC. From July 2018 to July 2020, John NUMBI was Inspector-General of the Congolese Armed Forces (FARDC). Owing to his role, he bears responsibility for human rights violations committed by the FARDC during that period, such as disproportionate violence against illegal miners from June to July 2019 committed by FARDC troops under his direct authority. John NUMBI was therefore involved in planning, directing or committing acts that constitute serious human rights violations or abuses in the DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13436 +NUMBI,John,,,,,,,,,16/08/1962,(1) Jadotville (2) Kolwezi (3) Likasi,(1) Congo (Democratic Republic) (2) Congo (Democratic Republic) (3) Congo (Democratic Republic),Congo (Democratic Republic),,,,,Inspector General of the Congolese Armed Forces,,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0005 (UK Statement of Reasons):As former Inspector General of the Congolese National Police John NUMBI was notably involved in the campaign of violent intimidation carried out in the context of the March 2016 gubernatorial elections in the four ex-Katangan provinces, and as such is responsible for obstructing a consensual and peaceful solution with a view to holding elections in DRC. From July 2018 to July 2020, John NUMBI was Inspector-General of the Congolese Armed Forces (FARDC). Owing to his role, he bears responsibility for human rights violations committed by the FARDC during that period, such as disproportionate violence against illegal miners from June to July 2019 committed by FARDC troops under his direct authority. John NUMBI was therefore involved in planning, directing or committing acts that constitute serious human rights violations or abuses in the DRC.  (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13436 +NUMBI,Tambo,,,,,,,,,16/08/1962,(1) Jadotville (2) Kolwezi (3) Likasi,(1) Congo (Democratic Republic) (2) Congo (Democratic Republic) (3) Congo (Democratic Republic),Congo (Democratic Republic),,,,,Inspector General of the Congolese Armed Forces,,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0005 (UK Statement of Reasons):As former Inspector General of the Congolese National Police John NUMBI was notably involved in the campaign of violent intimidation carried out in the context of the March 2016 gubernatorial elections in the four ex-Katangan provinces, and as such is responsible for obstructing a consensual and peaceful solution with a view to holding elections in DRC. From July 2018 to July 2020, John NUMBI was Inspector-General of the Congolese Armed Forces (FARDC). Owing to his role, he bears responsibility for human rights violations committed by the FARDC during that period, such as disproportionate violence against illegal miners from June to July 2019 committed by FARDC troops under his direct authority. John NUMBI was therefore involved in planning, directing or committing acts that constitute serious human rights violations or abuses in the DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13436 +NUMBI BANZA NTAMBO,John,,,,,,,,,16/08/1962,(1) Jadotville (2) Kolwezi (3) Likasi,(1) Congo (Democratic Republic) (2) Congo (Democratic Republic) (3) Congo (Democratic Republic),Congo (Democratic Republic),,,,,Inspector General of the Congolese Armed Forces,,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0005 (UK Statement of Reasons):As former Inspector General of the Congolese National Police John NUMBI was notably involved in the campaign of violent intimidation carried out in the context of the March 2016 gubernatorial elections in the four ex-Katangan provinces, and as such is responsible for obstructing a consensual and peaceful solution with a view to holding elections in DRC. From July 2018 to July 2020, John NUMBI was Inspector-General of the Congolese Armed Forces (FARDC). Owing to his role, he bears responsibility for human rights violations committed by the FARDC during that period, such as disproportionate violence against illegal miners from June to July 2019 committed by FARDC troops under his direct authority. John NUMBI was therefore involved in planning, directing or committing acts that constitute serious human rights violations or abuses in the DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13436 +NUMBI BANZA NTAMBO,Tambo,,,,,,,,,16/08/1962,(1) Jadotville (2) Kolwezi (3) Likasi,(1) Congo (Democratic Republic) (2) Congo (Democratic Republic) (3) Congo (Democratic Republic),Congo (Democratic Republic),,,,,Inspector General of the Congolese Armed Forces,,,,,,,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0005 (UK Statement of Reasons):As former Inspector General of the Congolese National Police John NUMBI was notably involved in the campaign of violent intimidation carried out in the context of the March 2016 gubernatorial elections in the four ex-Katangan provinces, and as such is responsible for obstructing a consensual and peaceful solution with a view to holding elections in DRC. From July 2018 to July 2020, John NUMBI was Inspector-General of the Congolese Armed Forces (FARDC). Owing to his role, he bears responsibility for human rights violations committed by the FARDC during that period, such as disproportionate violence against illegal miners from June to July 2019 committed by FARDC troops under his direct authority. John NUMBI was therefore involved in planning, directing or committing acts that constitute serious human rights violations or abuses in the DRC.  (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13436 +NURBAGANDOV,Nurbagand,Magomedovich,,,,,Нурбагандов Нурбаганд Магомедович,,,19/03/1957,"Buskri, Dakhadaevsky district of the Dagestan ASSR",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0469 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14414 +NURGALIEV,Rashid,Gumarovich,,,,,Рашид Гумарович Нургалиев,,,08/10/1956,Zhetikara,Kazakh Soviet Socialist Republic (now Kazakhstan),,,,,,Deputy Speaker of the State Duma of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS0043 (UK Statement of Reasons):Permanent member and Deputy Secretary of the Security Council of the Russian Federation. As a member of the Security Council, which provides advice on and coordinates national security affairs, he was involved in shaping the policy of the Russian government threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,25/07/2014,31/12/2020,31/12/2020,13038 +NURI,Mohammad,Mehdi,Nejad,,,,,,,,,,,,,,,"(1) Lieutenant General (2) Rector of Malek Ashtar University of Defence Technology (chemistry department, affiliated to MODAFL, has conducted experiments on beryllium) (3) Scientific Adviser to the Minister of Defence",,,,,,,,,"(UK Sanctions List Ref):INU0204 (UN Ref):IRi.027 Deputy Minister of Science, Research and Technology. [Old Reference # I.37.C.7] (UK Statement of Reasons):As former Rector at Malek Ashtar University and currently scientific adviser to the Minister of Defence, Mohammad Mehdi Nejad NOURI is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019 and is associated with a person who is or has been so involved.",Individual,Primary name variation,,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9001 +NURI,Mohammad,Mehdi,Nezhad,,,,,,,,,,,,,,,"(1) Lieutenant General (2) Rector of Malek Ashtar University of Defence Technology (chemistry department, affiliated to MODAFL, has conducted experiments on beryllium) (3) Scientific Adviser to the Minister of Defence",,,,,,,,,"(UK Sanctions List Ref):INU0204 (UN Ref):IRi.027 Deputy Minister of Science, Research and Technology. [Old Reference # I.37.C.7] (UK Statement of Reasons):As former Rector at Malek Ashtar University and currently scientific adviser to the Minister of Defence, Mohammad Mehdi Nejad NOURI is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019 and is associated with a person who is or has been so involved.",Individual,Primary name variation,,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9001 +NURI,Nurullah,,,,,Maulavi,نور الله نوری,,,00/00/1958,"Shahjoe District, Zabul Province",Afghanistan,Afghanistan,,,,,(1) Governor of Balkh Province under the Taliban Regime. (2) Head of Northern Zone under the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0068 (UN Ref):TAi.089 Belongs to Tokhi tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7378 +NURI,Nurullah,,,,,Maulavi,نور الله نوری,,,01/01/1967,"Shahjoe District, Zabul Province",Afghanistan,Afghanistan,,,,,(1) Governor of Balkh Province under the Taliban Regime. (2) Head of Northern Zone under the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0068 (UN Ref):TAi.089 Belongs to Tokhi tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7378 +NURISTANI,Rostam,,,,,,,,,00/00/1963,"Dara Kolum, Do Aab District, Nuristan Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Public Works under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0053 (UN Ref):TAi.069 Taliban member responsible for Nuristan Province, Afghanistan, as of May 2007. Belongs to Nuristani tribe. Reportedly deceased in early 2012. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7379 +NURJAMAN,,,,,,,,,,04/04/1964,"Cianjur, West Java",Indonesia,Indonesia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0278 (UN Ref):QDi.087 Senior leader of Jemaah Islamiyah (QDe.092). Brother of Gun Gun Rusman Gunawan (QDi.218). In custody of the United States of America, as of July 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,7156 +NURJAMAN (BIRTH NAME),Encep,,,,,,,,,04/04/1964,"Cianjur, West Java",Indonesia,Indonesia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0278 (UN Ref):QDi.087 Senior leader of Jemaah Islamiyah (QDe.092). Brother of Gun Gun Rusman Gunawan (QDi.218). In custody of the United States of America, as of July 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,7156 +NYAKRASAVA,Alena,Tsimafeeuna,,,,,,,,26/11/1974,,,Belarus,,,,,Senior Judge of the Zavodsky district court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0092 (UK Statement of Reasons):As a Judge of the Zavodsky district court in Minsk, Elena Nekrasova is responsible for the widespread sentencing of journalists, demonstrators and political activists in politically motivated decisions and without fair and transparent court proceedings. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition. (Gender):Female",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14027 +NYAKRASAVA,Elena,Timofeevna,,,,,Елена Тимофеевна НЕКРАСОВА,,,26/11/1974,,,Belarus,,,,,Senior Judge of the Zavodsky district court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0092 (UK Statement of Reasons):As a Judge of the Zavodsky district court in Minsk, Elena Nekrasova is responsible for the widespread sentencing of journalists, demonstrators and political activists in politically motivated decisions and without fair and transparent court proceedings. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition. (Gender):Female",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14027 +NYAKUNI,JAMES,,,,,,,,,,,,Uganda,,,,,,,,,,,,,,(UK Sanctions List Ref):DRC0040 (UN Ref):CDi.025 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776374 (Gender):Male,Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,31/12/2020,8706 +NYAZI,Abdul Manan,,,,,Mullah,عبدالمنان نیازی,,,00/00/1968,"(1) Pashtoon Zarghoon District, Herat Province. (2) Sardar village, Kohsan District, Herat Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,(1) Governor of Kabul Province under the Taliban regime (2) Governor of Balk Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0075 (UN Ref):TAi.097 Taliban member responsible for Herat, Farah and Nimroz provinces as at mid-2013. Member of the Taliban Supreme Council and Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe. Involved in transporting suicide bombers to Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,25/01/2001,01/02/2021,7380 +NZAMBAMWITA,LUCIEN,,,,,,,,,00/00/1966,"Cellule Nyagitabire, Sector Ruvune, Commune Kinyami, Prefecture Byumba",Rwanda,Rwanda,,,,,,,,,,,,,,"(UK Sanctions List Ref):DRC0049 (UN Ref):CDi.034 He is a threat to the peace, stability and security of the DRC under UNSCR 2293 paragraph 7(j). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6194815",Individual,Primary name,,Democratic Republic of the Congo,02/02/2018,01/02/2018,31/12/2020,13606 +NZERI,,,,,,,,,,01/01/1964,"Gaseke, Gisenyi Province",Rwanda,Rwanda,,,,,(1) FDLR-FOCA “SONOKI” Sector Commander (2) FDLR-FOCA Brigadier General. Former commander of the First Division of FOCA,,,,,Rutshuru Territory,North Kivu,,Congo (Democratic Republic),(UK Sanctions List Ref):DRC0053 (UN Ref):CDi.024 Received military training in Egypt. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5269021 (Gender):Male,Individual,AKA,Low quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,19/01/2021,10678 +NZEYIMANA,STANISLAS,,,,,,,,,01/01/1966,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,Primary name,,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +NZEYIMANA,STANISLAS,,,,,,,,,00/00/1967,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,Primary name,,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +NZEYIMANA,STANISLAS,,,,,,,,,28/08/1966,"Mugusa, Butare",Rwanda,Rwanda,,,,,Former Deputy Commander of FDLR-FOCA,,,,,,,,,(UK Sanctions List Ref):DRC0054 (UN Ref):CDi.026 Disappeared while in Tanzania in early 2013. Whereabouts unknown as of June 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275373 (Gender):Male,Individual,Primary name,,Democratic Republic of the Congo,04/03/2009,03/03/2009,31/12/2020,10674 +O,Kuk,Ryol,,,,,,,,00/00/1931,Jilin Province,China,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0045 (UK Statement of Reasons):Former deputy Chairman of the National Defence Commission, which was a key body for national defence matters in the DPRK before it was reformed into the State Affairs Commission (SAC), supervising the acquisition abroad of advanced technology for nuclear and ballistic programmes.  Elected Workers’ Party of Korea Central Committee member in May 2016 at 7th Congress of Workers’ Party of Korea where WPK adopted a decision to continue the DPRK’s nuclear programme. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11034 +O,Kuk-Ryol,,,,,General,,,,00/00/1931,Jilin Province,China,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0045 (UK Statement of Reasons):Former deputy Chairman of the National Defence Commission, which was a key body for national defence matters in the DPRK before it was reformed into the State Affairs Commission (SAC), supervising the acquisition abroad of advanced technology for nuclear and ballistic programmes.  Elected Workers’ Party of Korea Central Committee member in May 2016 at 7th Congress of Workers’ Party of Korea where WPK adopted a decision to continue the DPRK’s nuclear programme. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11034 +OAIS,Hassan,Tahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +OAIS,Hassan,Tahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +OAIS,Hassan,Tahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +OAIS,Hassan,Tahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +"OAO ""VO TECHNOPROMEXPORT""",,,,,,,,,,,,,,,,,,,Novyi Arbat str.,15,building 2,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0185 Names of Director(s). Management: Sergey Topor-Gilka (DG of OAO ""TPE"" and also of OOO TPE) (UK Statement of Reasons):Contracting party with Siemens Gas Turbine Technologies OOO, OAO ‘VO TPE’ purchased gas turbines declared to be destined for a power plant in Taman, Krasnodar region, Russian Federation, and as the contractor was responsible for the transfer of the gas turbines to OOO 'VO TPE' which in turn transferred them to be installed in Crimea. This contributes to establishing an independent power supply for Crimea and Sevastopol as a means of supporting their separation from Ukraine, and undermines the territorial integrity, sovereignty and independence of Ukraine. (Type of entity):Public Joint-Stock (Parent company):Rostech (Business Reg No):1067746244026 dated 27/07/1992. Tax ID: 7705713236",Entity,Primary name,,Russia,04/08/2017,31/12/2020,14/02/2022,13524 +"OAO ""VO TPE""",,,,,,,,,,,,,,,,,,,Novyi Arbat str.,15,building 2,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0185 Names of Director(s). Management: Sergey Topor-Gilka (DG of OAO ""TPE"" and also of OOO TPE) (UK Statement of Reasons):Contracting party with Siemens Gas Turbine Technologies OOO, OAO ‘VO TPE’ purchased gas turbines declared to be destined for a power plant in Taman, Krasnodar region, Russian Federation, and as the contractor was responsible for the transfer of the gas turbines to OOO 'VO TPE' which in turn transferred them to be installed in Crimea. This contributes to establishing an independent power supply for Crimea and Sevastopol as a means of supporting their separation from Ukraine, and undermines the territorial integrity, sovereignty and independence of Ukraine. (Type of entity):Public Joint-Stock (Parent company):Rostech (Business Reg No):1067746244026 dated 27/07/1992. Tax ID: 7705713236",Entity,AKA,,Russia,04/08/2017,31/12/2020,14/02/2022,13524 +OAO TSENTR SUDOREMONTA DALZAVOD,,,,,,,OАО Центр судоремонта Дальзавод,Cyrillic,Russian,,,,,,,,,,"Dalzavodskaya Str., 2",,,,,Vladivostok,690001,Russia,"(UK Sanctions List Ref):RUS1437 KPP 253601001; OGRN 1082536014120 (UK Statement of Reasons):The Dalzavod Ship Repair Centre JSC is an involved person under the Russia (EU) (Sanctions) Regulations 2019 as it is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian defence sector. (Phone number):(1) 8 (423) 2-224-010 (2) 8 (423) 2-220-210 (Website):(1) https://csdalzavod.ru (2) https://dalzavod.vl.ru (Email address):(1) dalzavod@dcss.ru (2) ok@csdalzavod.ru (Type of entity):Non Public Joint Stock Company (Business Reg No):Tax Identification Number: INN 2536210349",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15368 +OBAIDA,Abu,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +OBAIDAH,,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +OBAIDAH,Abu,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +OBAIDULLAH,AHMED SHAH,NOORZAI,,,,Mullah,احمد شاه نورزی عبیدالله,,,01/01/1985,Quetta,Pakistan,Pakistan,NC5140251,"Pakistan number, issued on 23 Oct. 2009. Expires on 22 Oct. 2014, officially cancelled as of 2013",54401-2288025-9,Issued in Pakistan (officially cancelled as of 2013),,,,Quetta,,,,,Pakistan,(UK Sanctions List Ref):AFG0132 (UN Ref):TAi.166 Owns and operates the Roshan Money Exchange (TAe.011). Provided financial services to Ghul Agha Ishakzai (TAi.147) and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/Howwe-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,22/03/2013,26/02/2013,01/02/2021,12863 +OBAIDULLAH,AHMED SHAH,NOORZAI,,,,Mullah,احمد شاه نورزی عبیدالله,,,00/00/1981,Quetta,Pakistan,Pakistan,NC5140251,"Pakistan number, issued on 23 Oct. 2009. Expires on 22 Oct. 2014, officially cancelled as of 2013",54401-2288025-9,Issued in Pakistan (officially cancelled as of 2013),,,,Quetta,,,,,Pakistan,(UK Sanctions List Ref):AFG0132 (UN Ref):TAi.166 Owns and operates the Roshan Money Exchange (TAe.011). Provided financial services to Ghul Agha Ishakzai (TAi.147) and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/Howwe-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,22/03/2013,26/02/2013,01/02/2021,12863 +OBAYDA,Abu,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +OBEIDA,Abu,,,,,,,,,05/02/1969,(1) Tripoli (2) Tunis,(1) Libya (2) Tunisia,Tunisia,,,W374031,Issue date: 11/04/2011,,,,,,,,,,(UK Sanctions List Ref):AQD0241 (UN Ref):QDi.062 Professor of Chemistry. Deported from Italy to Tunisia on 27 Aug. 2006. Legally changed family name from Aouani to Lakhal in 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7087 +OBEIDA,Abu,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +OBEIDA,Abu,,,,,,,,,05/02/1970,(1) Tripoli (2) Tunis,(1) Libya (2) Tunisia,Tunisia,,,W374031,Issue date: 11/04/2011,,,,,,,,,,(UK Sanctions List Ref):AQD0241 (UN Ref):QDi.062 Professor of Chemistry. Deported from Italy to Tunisia on 27 Aug. 2006. Legally changed family name from Aouani to Lakhal in 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7087 +OBEIDA,Youcef,Abu,,,,,,,,07/02/1969,Annaba,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0117 (UN Ref):QDi.389 A leader of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930738,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13322 +OBLITAS RUZZA,Sandra,,,,,,,,,07/06/1969,,Ecuador,Venezuela,,,,,Vice President of National Electoral Council,,,,,,,,,"(UK Sanctions List Ref):VEN0012 Vice President of National Electoral Council (UK Statement of Reasons):Vice President of the National Electoral Council (CNE) and President of the Commission of the Electoral and Civilian Register. Responsible for the CNE’s activities which have undermined democracy, including facilitating the establishment of the Constituent Assembly and manipulation of the electoral process. (Gender):Female",Individual,Primary name,,Venezuela,26/06/2018,31/12/2020,31/12/2020,13690 +OBNOSOV,Boris,Viktorovich,,,,,ОБНОСОВ Борис Викторович,Cyrillic,Russian,26/01/1953,Moscow,Russia,Russia,,,,,Director General of Tactical Missiles Corporation JSC,7 Ilyicha Street,,,,,Korolov,141080,Russia,"(UK Sanctions List Ref):RUS1345 Linked To: TACTICAL MISSILES CORPORATION JSC (UK Statement of Reasons):Boris Viktorovich OBNOSOV is the Director General of Tactical Missiles Corporation JSC, a position he has held since 2003. Tactical Missiles Corporation JSC is a major Russian weapon manufacturer who specialise in missile production for the Armed Forces of the Russian Federation. There are therefore reasonable grounds to suspect he is a person who is a member of a Government of Russia affiliated entity that is carrying on business in a sector of strategic significance (defence). (Gender):Male",Individual,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15296 +OBOL,Simon,Salim,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OBOL,Simon,Salim,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OBOL,Simon,Salim,,,,,,,,00/00/1991,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OBOL,Simon,Salim,,,,,,,,00/00/1991,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OBOL,Simon,Salim,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OBOL,Simon,Salim,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OBOLENSKAYA,Alla,Ivanovna,,,,,ОБОЛЕНСКАЯ Алла Ивановна,Cyrillic,Russian,26/07/1964,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1192 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15144 +OBORONNYE INITSIATIVY,,,,,,,,,,,,,,,,,,,1ST F SKARYNA LANE 18,,,,,Minsk,220131,Belarus,"(UK Sanctions List Ref):RUS1071 (UK Statement of Reasons):As a Belarusian producer of electronic warfare systems supplied to Russia and used in Russian military equipment, OBORONNYE INITSIATIVY has made available goods or technology to persons, including the Russian armed forces, that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine.  (Phone number):+375 17 2883514 (Website):Defin.by (Email address):info@defin.by",Entity,Primary name,,Russia,24/03/2022,24/03/2022,12/07/2022,15014 +OBUKHOV,Sergey,Pavlovich,,,,,Обухов Сергей Павлович,,,05/10/1958,Lviv,Ukraine,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0470 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14415 +"OCEAN MARITIME MANAGEMENT COMPANY, LIMITED (OMM)",,,,,,,,,,,,,,,,,,,Dongheung-dong Changgwang Street,Chung-Ku,PO Box 125,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0181 (UN Ref):KPe.020 Ocean Maritime Management Company, Limited is the operator/manager of the following vessels with IMO Number: (a) Chol Ryong (Ryong Gun Bong) 8606173, (b) Chong Bong (Greenlight) (Blue Nouvelle) 8909575, (c) Chong Rim 2 8916293, (d) Hoe Ryong 9041552, (e) Hu Chang (O Un Chong Nyon) 8330815, (f) Hui Chon (Hwang Gum San 2) 8405270, (g) Ji Hye San (Hyok Sin 2) 8018900, (h) Kang Gye (Pi Ryu Gang) 8829593, (i) Mi Rim 8713471, (j) Mi Rim 2 9361407, (k) Rang (Po Thong Gang) 8829555, (l) Ra Nam 2 8625545, (m) Ra Nam 3 9314650, (n) Ryo Myong 8987333, (o) Ryong Rim (Jon Jin 2) 8018912, (p) Se Pho (Rak Won 2) 8819017, (q) Songjin (Jang Ja San Chong Nyon Ho) 8133530, (r) South Hill 2 8412467,(s) Tan Chon (Ryon Gang 2) 7640378, (t) Thae Pyong San (Petrel 1) 9009085, (u) Tong Hung San (Chong Chon Gang) 7937317, (v) Tong Hung 8661575. It played a key role in arranging the shipment of concealed cargo of arms and related materiel from Cuba to the DPRK in July 2013. As such, Ocean Maritime Management Company, Limited contributed to activities prohibited by the resolutions, namely the arms embargo imposed by resolution 1718 (2006), as modified by resolution 1874 (2009), and contributed to the evasion of the measures imposed by these resolutions. International Maritime Organization (IMO) Number: 1790183.",Entity,Primary name,,Democratic People's Republic of Korea,16/10/2014,28/07/2014,02/08/2022,13143 +"OCEAN MARITIME MANAGEMENT COMPANY, LIMITED (OMM)",,,,,,,,,,,,,,,,,,,Donghung Dong,Central District,PO Box 120,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0181 (UN Ref):KPe.020 Ocean Maritime Management Company, Limited is the operator/manager of the following vessels with IMO Number: (a) Chol Ryong (Ryong Gun Bong) 8606173, (b) Chong Bong (Greenlight) (Blue Nouvelle) 8909575, (c) Chong Rim 2 8916293, (d) Hoe Ryong 9041552, (e) Hu Chang (O Un Chong Nyon) 8330815, (f) Hui Chon (Hwang Gum San 2) 8405270, (g) Ji Hye San (Hyok Sin 2) 8018900, (h) Kang Gye (Pi Ryu Gang) 8829593, (i) Mi Rim 8713471, (j) Mi Rim 2 9361407, (k) Rang (Po Thong Gang) 8829555, (l) Ra Nam 2 8625545, (m) Ra Nam 3 9314650, (n) Ryo Myong 8987333, (o) Ryong Rim (Jon Jin 2) 8018912, (p) Se Pho (Rak Won 2) 8819017, (q) Songjin (Jang Ja San Chong Nyon Ho) 8133530, (r) South Hill 2 8412467,(s) Tan Chon (Ryon Gang 2) 7640378, (t) Thae Pyong San (Petrel 1) 9009085, (u) Tong Hung San (Chong Chon Gang) 7937317, (v) Tong Hung 8661575. It played a key role in arranging the shipment of concealed cargo of arms and related materiel from Cuba to the DPRK in July 2013. As such, Ocean Maritime Management Company, Limited contributed to activities prohibited by the resolutions, namely the arms embargo imposed by resolution 1718 (2006), as modified by resolution 1874 (2009), and contributed to the evasion of the measures imposed by these resolutions. International Maritime Organization (IMO) Number: 1790183.",Entity,Primary name,,Democratic People's Republic of Korea,16/10/2014,28/07/2014,02/08/2022,13143 +OCHERETNAYA,Lyudmila,Aleksandrovna,,,,,,,,06/01/1958,Kaliningrad,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1465 (UK Statement of Reasons):Lyudmila Aleksandrovna OCHERETNAYA (formerly, PUTINA) is the former First Lady of the Russian Federation and ex-wife of Vladimir Putin. There are reasonable grounds to suspect that OCHERETNAYA is a member of, or associated with, a person who is or has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/05/2022,13/05/2022,20/05/2022,15394 +OCHRE POINT,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0100 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK merchant vessel M/V SAM JONG 2 was involved in ship-to-ship transfer operations of oil in late January 2018. Listed as asset of Korea Samjong Shipping (OFSI ID: 13635, UN Reference Number: UN Ref KPe.064) (IMO number):7408873 (Current owners):Korea Samjong Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Oil tanker (Tonnage of ship):1676 (Length of ship):80 (Year built):1975",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13651 +ODNORUKIY,,,,,,,Однорукий,,,04/07/1980,"Vedeno Village, Vedenskiy District, Republic of Chechnya",Russia,Russia,9600133195,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0127 (UN Ref):QDi.365 As at Aug. 2015, one of the leaders of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), commanding directly 130 militants. Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899829. Address country Syria, located in as at August 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13300 +ODNORUKIY,,,,,,,Однорукий,,,04/07/1980,"Vedeno Village, Vedenskiy District, Republic of Chechnya",Russia,Russia,9600133195,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0127 (UN Ref):QDi.365 As at Aug. 2015, one of the leaders of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), commanding directly 130 militants. Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899829. Address country Syria, located in as at August 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13300 +ODUEV,Ramzan,,,,,,Рамзан Одуев,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +ODUEV,Ramzan,,,,,,Рамзан Одуев,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +OFFICE #39,,,,,,,,,,,,,,,,,,,,Changwang Street,,,,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +OFFICE #39,,,,,,,,,,,,,,,,,,,"Second KWP Government Building (Korean – Ch’o’ngsa, Urban Town (Korean-Dong)",,,,Chung Ward,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +OFFICE #39,,,,,,,,,,,,,,,,,,,Chung-Guyok (Central District),Sosong Street,,,Kyongrim-Dong,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +OFFICE 39,,,,,,,,,,,,,,,,,,,,Changwang Street,,,,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +OFFICE 39,,,,,,,,,,,,,,,,,,,"Second KWP Government Building (Korean – Ch’o’ngsa, Urban Town (Korean-Dong)",,,,Chung Ward,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +OFFICE 39,,,,,,,,,,,,,,,,,,,Chung-Guyok (Central District),Sosong Street,,,Kyongrim-Dong,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +OFFICE NO. 39,,,,,,,,,,,,,,,,,,,,Changwang Street,,,,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +OFFICE NO. 39,,,,,,,,,,,,,,,,,,,"Second KWP Government Building (Korean – Ch’o’ngsa, Urban Town (Korean-Dong)",,,,Chung Ward,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +OFFICE NO. 39,,,,,,,,,,,,,,,,,,,Chung-Guyok (Central District),Sosong Street,,,Kyongrim-Dong,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +OFFSHORE INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,44 Sharif St.,"Hoveyzeh, Korramshahr",North Sohrevardi Ave,,,,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +OFFSHORE INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,P.O. Box 19585 348,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +OFFSHORE INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,Pasdaran Avenue.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +OFFSHORE INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +OFFSHORE INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,P.O. Box 19585/777,,,,,Tehran,,,(UK Sanctions List Ref):INU0037 (UK Statement of Reasons):A subsidiary of the Defence Industries Organisation (DIO) and Ministry of Defence and Armed Forces Logistics (MODAFL). (Phone number):88739846. 88767093 (Website):irmig.ir (Email address):info@irmig.ir (Type of entity):Enterprise (Parent company):Defense Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9106 +OGARO,Salim,,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OGARO,Salim,,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OGARO,Salim,,,,,,,,,00/00/1991,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OGARO,Salim,,,,,,,,,00/00/1991,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OGARO,Salim,,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OGARO,Salim,,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OGARO,Salim,Saleh,Obol,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OGARO,Salim,Saleh,Obol,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OGARO,Salim,Saleh,Obol,,,,,,,00/00/1991,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OGARO,Salim,Saleh,Obol,,,,,,,00/00/1991,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OGARO,Salim,Saleh,Obol,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OGARO,Salim,Saleh,Obol,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +OGILETS,Dmitry,Alexandrovich,,,,,ОГИЛЕЦ Дмитрий Александрович,Cyrillic,Russian,09/02/1968,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1193 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15145 +OGLOBLINA,Yulia,Vasilievna,,,,,Оглоблина Юлия Васильевна,,,01/11/1989,"Torbeevo, Mordovia ASSR",Russia (former USSR),Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0471 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,15/03/2022,14416 +OGUL,Leonid,Anatolievich,,,,,Огуль Леонид Анатольевич,,,26/10/1963,Astrakhan,Russia,Russia,100114762,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0564 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14509 +"OJSC ""BELARUSKALI""",,,,,,,"ААТ ""Беларуськалiй""",,,,,,,,,,,,OJSC Belaruskali,5 Korzha Street,,,Soligorsk,Minsk Region,223710,Belarus,"(UK Sanctions List Ref):BEL0111 (UK Statement of Reasons):OJSC BELARUSKALI is one of the world’s largest producers of the key fertilizer ingredient potassium chloride (potash), and is 100% owned by the Belarusian state. As a state-owned enterprise, OJSC BELARUSKALI is a major source of revenue and foreign currency for the Lukashenko regime, including through the transfer of OJSC BELARUSKALI’s profits to the National Development Fund which is directed by Lukashenko. Export duties and taxes generated by OJSC BELARUSKALI account for 8-10% of the total budget of the Government of Belarus, and are therefore critically important in maintaining the regime and enabling its actions. Through the production of potash and its treatment of striking workers during the protests and crackdown in 2020, OJSC BELARUSKALI has helped prop up the authoritarian rule of Lukashenko’s regime. OJSC BELARUSKALI therefore is or has been involved in providing support for the Government of Belarus, which has taken actions to undermine democracy and the rule of law, repress civil society and the democratic opposition, and commit serious human rights violations. (Phone number):(1) +375 (17) 426-37-65 (2) +375 (17) 429-86-08 (3) 375 (17) 429-84-01 (Website):www.kali.by (Email address):belaruskali.office@kali.by (Type of entity):Open Joint Stock Company (OJSC)",Entity,AKA,,Belarus,02/12/2021,02/12/2021,16/02/2022,14154 +"OJSC ""BELARUSKALI""",,,,,,,"ОАО ""Беларуськалий""",,,,,,,,,,,,OJSC Belaruskali,5 Korzha Street,,,Soligorsk,Minsk Region,223710,Belarus,"(UK Sanctions List Ref):BEL0111 (UK Statement of Reasons):OJSC BELARUSKALI is one of the world’s largest producers of the key fertilizer ingredient potassium chloride (potash), and is 100% owned by the Belarusian state. As a state-owned enterprise, OJSC BELARUSKALI is a major source of revenue and foreign currency for the Lukashenko regime, including through the transfer of OJSC BELARUSKALI’s profits to the National Development Fund which is directed by Lukashenko. Export duties and taxes generated by OJSC BELARUSKALI account for 8-10% of the total budget of the Government of Belarus, and are therefore critically important in maintaining the regime and enabling its actions. Through the production of potash and its treatment of striking workers during the protests and crackdown in 2020, OJSC BELARUSKALI has helped prop up the authoritarian rule of Lukashenko’s regime. OJSC BELARUSKALI therefore is or has been involved in providing support for the Government of Belarus, which has taken actions to undermine democracy and the rule of law, repress civil society and the democratic opposition, and commit serious human rights violations. (Phone number):(1) +375 (17) 426-37-65 (2) +375 (17) 429-86-08 (3) 375 (17) 429-84-01 (Website):www.kali.by (Email address):belaruskali.office@kali.by (Type of entity):Open Joint Stock Company (OJSC)",Entity,AKA,,Belarus,02/12/2021,02/12/2021,16/02/2022,14154 +OJSC CONCERN KALASHNIKOV,,,,,,,,,,,,,,,,,,,3B,Deryabina avenue,,,,Izhevsk,394018,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +OJSC CONCERN KALASHNIKOV,,,,,,,,,,,,,,,,,,,3,Derjabin Pr,,,,Izhevsk,426006,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +OJSC IZHMASH,,,,,,,,,,,,,,,,,,,3B,Deryabina avenue,,,,Izhevsk,394018,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +OJSC IZHMASH,,,,,,,,,,,,,,,,,,,3,Derjabin Pr,,,,Izhevsk,426006,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +OJSC KB RADAR-MANAGING COMPANY HOLDING RADAR SYSTEM,,,,,,,,,,,,,,,,,,,64A Partizanskii Prospect,,,,,Minsk,220026,Belarus,"(UK Sanctions List Ref):BEL0125 (UK Statement of Reasons):KB Radar is an Belarussian government affiliated entity, being entirely owned by the Government of Belarus, and operates in a sector of strategic significance, namely the defence sector. (Phone number):+375 17 390-30-91 (Website):https://kbradar.by/ (Email address):info@kbradar.by",Entity,Primary name variation,,Belarus,24/03/2022,24/03/2022,12/07/2022,14984 +OJSC KB RADAR-MANAGING COMPANY HOLDING RADAR SYSTEM,,,,,,,,,,,,,,,,,,,24 Promyshlennaya str,,,,,Minsk,220075,Belarus,"(UK Sanctions List Ref):BEL0125 (UK Statement of Reasons):KB Radar is an Belarussian government affiliated entity, being entirely owned by the Government of Belarus, and operates in a sector of strategic significance, namely the defence sector. (Phone number):+375 17 390-30-91 (Website):https://kbradar.by/ (Email address):info@kbradar.by",Entity,Primary name variation,,Belarus,24/03/2022,24/03/2022,12/07/2022,14984 +OKB TSP,,,,,,,,,,,,,,,,,,,"unit 21, building 1",St. Francis Skaryna 21,,,,Minsk,220076,Belarus,"(UK Sanctions List Ref):RUS1095 (UK Statement of Reasons):As a Belarusian producer of military equipment supplied to Russia, OKB TSP SCIENTIFIC PRODUCTION LLC has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Phone number):+375 17 311-05-69 (Email address):tsp@tspbel.com (Business Reg No):19036 9982 (Belarus)",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,24/06/2022,15038 +OKB TSP SCIENTIFIC PRODUCTION LIMITED LIABILITY COMPANY,,,,,,,,,,,,,,,,,,,"unit 21, building 1",St. Francis Skaryna 21,,,,Minsk,220076,Belarus,"(UK Sanctions List Ref):RUS1095 (UK Statement of Reasons):As a Belarusian producer of military equipment supplied to Russia, OKB TSP SCIENTIFIC PRODUCTION LLC has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Phone number):+375 17 311-05-69 (Email address):tsp@tspbel.com (Business Reg No):19036 9982 (Belarus)",Entity,Primary name,,Russia,24/03/2022,24/03/2022,24/06/2022,15038 +OLEKSANDROVYCH,Maksym,,,,,,,,,06/04/1978,,,Ukraine,,,,,Deputy Head of the so-called Luhansk People’s Republic Central Election Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0139 (UK Statement of Reasons):Deputy Head'of the ‘Central Electoral Commission' of the so-called ‘Luhansk People’s Republic’. In this capacity, he participated in the organisation of the so-called ‘elections’ of 11 November 2018 in the so-called ‘Luhansk People’s Republic’ and thereby actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,10/12/2018,31/12/2020,31/12/2020,13728 +OLYMPIC DESTROYER,,,,,,,,,,,,,,,,,,,22 Kirova Street,,,,,Moscow,,Russia,"(UK Sanctions List Ref):CYB0009 (UK Statement of Reasons):The Main Centre for Special Technologies (GTsST) of the Russian General Staff Main Intelligence Directorate (GRU), also known by its field post number ‘74455’ and “Sandworm” by industry, was responsible for cyber attacks which disrupted critical national infrastructure in Ukraine, cutting off the electricity grid. The perpetrators were directly responsible for relevant cyber activity by carrying out information system interference intended to undermine integrity, prosperity and security of the Ukraine. These cyber attacks originated in Russia and were unauthorised (Type of entity):Department within Government/Military Unit (Parent company):Russian Ministry of Defence",Entity,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13911 +OMAN,Mohammed,,,,,Mullah,,,,00/00/1970,"Bande Tumur Village, Maiwand District, Kandahar Province",Afghanistan,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0124 (UN Ref):TAi.158 Senior Taliban member as at 2011 with financial duties, including raising funds on behalf of the leadership. Has provided logistical support for Taliban operations and channeled proceeds from drug trafficking to arms purchases. Has acted as secretary to Taliban leader Mullah Mohammed Omar (TAi.004) and as his messenger at senior-level meetings of the Taliban. Also associated with Gul Agha Ishakzai (TAi.147). Member of Mullah Mohammed Omar’s (TAi.004) inner circle during the Taliban regime. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12456 +OMAR,Ali,,,,,,,,,04/10/1972,"Sitio Banga Maiti, Barangay Tranghawan, Lambunao, Iloilo",Philippines,Philippines,(1) MM611523 (2) EE947317 (3) P421967,(1) Philippines number (2004) (2) Philippines number 2000-2001 (3) Philippines number (1995-1997),,,,10th Avenue,,,,,Caloocan City,,Philippines,(UK Sanctions List Ref):AQD0296 (UN Ref):QDi.247 Spiritual leader of the Rajah Solaiman Movement (QDe.128). Associated with Khadafi Abubakar Janjalani (deceased). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10667 +OMAR,Chechen,,,,,,,,,11/01/1986,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +OMAR,Chechen,,,,,,,,,00/00/1982,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +OMAR,Hassane,Mahad,,,,,,,,10/04/1979,Garissa,Kenya,,A1180173,Kenya,23446085,,,,,,,,Nairobi,,Kenya,(UK Sanctions List Ref):SOM0009 (UN Ref):SOi.009 Possibly Ethiopian,Individual,AKA,Good quality,Somalia,27/09/2011,28/07/2011,31/12/2020,12029 +OMAR,Mus'ab,Mustafa,Abu al Qassim,,,,مصعب مصطفى ابو القاسم عمر,,,19/01/1983,Sabratha,Libya,Libya,(1) 782633 (2) 540794,(1) Issued on 31 May 2005 (2) Issued on 12 Jan. 2008,,,Leader of a transnational trafficking network,,,,,,,,,"(UK Sanctions List Ref):LIB0058 (UN Ref):LYi.024 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,Primary name,,Libya,08/06/2018,07/06/2018,21/01/2021,13674 +OMAR,Ramzi,,,,,,,,,16/09/1973,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +OMAR,Ramzi,,,,,,,,,01/05/1972,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +OMAR,Ramzi,Mohamed,Abdellah,,,,,,,16/09/1973,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +OMAR,Ramzi,Mohamed,Abdellah,,,,,,,01/05/1972,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +OMAR,Sheik,,,,,,,,,04/10/1972,"Sitio Banga Maiti, Barangay Tranghawan, Lambunao, Iloilo",Philippines,Philippines,(1) MM611523 (2) EE947317 (3) P421967,(1) Philippines number (2004) (2) Philippines number 2000-2001 (3) Philippines number (1995-1997),,,,10th Avenue,,,,,Caloocan City,,Philippines,(UK Sanctions List Ref):AQD0296 (UN Ref):QDi.247 Spiritual leader of the Rajah Solaiman Movement (QDe.128). Associated with Khadafi Abubakar Janjalani (deceased). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10667 +OMAR,HASSAN,MAHAT,,,,Sheikh,,,,10/04/1979,Garissa,Kenya,,A1180173,Kenya,23446085,,,,,,,,Nairobi,,Kenya,(UK Sanctions List Ref):SOM0009 (UN Ref):SOi.009 Possibly Ethiopian,Individual,Primary name,,Somalia,27/09/2011,28/07/2011,31/12/2020,12029 +OMARI,,,,,,,,,,06/06/1949,Ariwara,Congo (Democratic Republic),Congo (Democratic Republic),,,,,Former president of the Fédération des entreprises congolaises (FEC) in Aru territory,,,,,,,,,"(UK Sanctions List Ref):DRC0027 (UN Ref):CDi.027 While president of the Fédération des entreprises congolaises (FEC) in Aru territory, Dieudonné Ozia Mazio is believed to have died in Ariwara on 23 September 2008. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275495 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8705 +OMARI,ABDUL JABBAR,,,,,Mullah,عبدالجبار عمری,,,00/00/1958,Zabul Province,Afghanistan,Afghanistan,,,,,Governor of Baghlan Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0067 (UN Ref):TAi.088 Belongs to Hottak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6907 +OMARI,MOHAMMAD IBRAHIM,,,,,Alhaj,محمد ابراهیم عمری,,,00/00/1958,"Garda Saray, Waza Zadran District, Paktia Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Frontier Affairs under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0037 (UN Ref):TAi.042 Brother of Jalaluddin Haqqani (TAi.040) Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7388 +OMEGA,,,,,,Colonel,,,,01/01/1964,"Gaseke, Gisenyi Province",Rwanda,Rwanda,,,,,(1) FDLR-FOCA “SONOKI” Sector Commander (2) FDLR-FOCA Brigadier General. Former commander of the First Division of FOCA,,,,,Rutshuru Territory,North Kivu,,Congo (Democratic Republic),(UK Sanctions List Ref):DRC0053 (UN Ref):CDi.024 Received military training in Egypt. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5269021 (Gender):Male,Individual,AKA,Low quality,Democratic Republic of the Congo,04/03/2009,03/03/2009,19/01/2021,10678 +OMIDI,Mehrdad,,,,,,,,,,,,,,,,,"Head of section VI of the police, investigation department.",,,,,,,,,"(UK Sanctions List Ref):IHR0050 (UK Statement of Reasons):Head of section VI of the police, investigation department. Former Head of the Intelligence Services within the Iranian Police. Former Head of the Computer Crimes Unit of the Iranian Police. He was responsible for thousands of investigations and indictments of reformists and political opponents using the Internet. He was thus responsible for grave human rights violations in the repression of persons who speak out in defence of their legitimate rights, including freedom of expression during and after the 2009 Green Movement. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,31/12/2020,12191 +OMIDI,Reza,,,,,,,,,,,,,,,,,"Head of section VI of the police, investigation department.",,,,,,,,,"(UK Sanctions List Ref):IHR0050 (UK Statement of Reasons):Head of section VI of the police, investigation department. Former Head of the Intelligence Services within the Iranian Police. Former Head of the Computer Crimes Unit of the Iranian Police. He was responsible for thousands of investigations and indictments of reformists and political opponents using the Internet. He was thus responsible for grave human rights violations in the repression of persons who speak out in defence of their legitimate rights, including freedom of expression during and after the 2009 Green Movement. (Gender):Male",Individual,AKA,,Iran (Human Rights),12/10/2011,31/12/2020,31/12/2020,12191 +OMRAN SAHEL,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0165 (UN Ref):IRe.048 Owned or controlled by Ghorb Nooh. [Old Reference # E.29.II.9] (Parent company):Ghorb Nooh,Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11139 +OMSEN,,,,,,,,,,05/08/1975,Dakar,Senegal,Senegal,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0284 (UN Ref):QDi.342 A leader of an armed group linked to Al-Nusrah Front for the People of the Levant (QDe.137) and a key facilitator for a Syrian foreign terrorist fighter network. Active in terrorist propaganda through the Internet. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13139 +OMSEN,Oumar,,,,,,,,,05/08/1975,Dakar,Senegal,Senegal,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0284 (UN Ref):QDi.342 A leader of an armed group linked to Al-Nusrah Front for the People of the Levant (QDe.137) and a key facilitator for a Syrian foreign terrorist fighter network. Active in terrorist propaganda through the Internet. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13139 +OMURBEKOV,Azatbek,,,,,Lt Col,,,,,,Russia,Russia,,,,,Commanding Officer of the Russian 64th Separate Motorised Rifle Brigade,,,,,,,,,"(UK Sanctions List Ref):RUS1362 (UK Statement of Reasons):Lt Col Azatbek OMURBEKOV is a member of the Armed Forces of the Russian Federation, currently in the position of Commanding Officer of the Russian 64th Separate Motorised Rifle Brigade. OMURBEKOV is considered to be or have been either in direct command of and to have substantial influence regarding the deployment of troops involved in the killing of civilians in the Kyiv suburb of Bucha during the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect OMURBEKOV is an involved person by reason of being responsible for, engaging in, providing support for, or promoting policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,21/04/2022,21/04/2022,21/04/2022,15313 +ONE-P,,,,,,,,,,00/00/1994,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +ONE-P,,,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +ONE-P,,,,,,,,,,00/00/1995,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +ONE-P,,,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Low quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +ONOPKO,Oleg,Vladimirovich,,,,,ОНОПКО Олег Владимирович,Cyrillic,Russian,,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1194 Suspected Date of Birth: 10/10/yyyy (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15146 +ONOS,Hadji,,,,,,,,,07/07/1966,Lanao del Sur,Philippines,Philippines,,,,,,,,,,,,,Philippines,"(UK Sanctions List Ref):AQD0338 (UN Ref):QDi.126 Sentenced to life without parole in the Philippines on 23 Jan. 2009 for his involvement in the bombings of 30 Dec. 2000 in Manila, the Philippines. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427252. Philippines, remains incarcerated as of May 2017",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7835 +OO,Aung Hlaing,,,,,U,,,,,,Myanmar,Myanmar,,,,,CEO of Myanmar Chemical and Machinery Co Ltd,,,,,,,,,"(UK Sanctions List Ref):MYA0042 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. As Managing Director of Myanmar Chemical and Machinery Co Ltd , Aung Hlaing Oo has used his commercial and personal position to provide support for these activities in his role as an importer and broker of arms. Through his control of MCM, he has acted as a key source of weapons and commercial support for the junta, including through his close political/commercial ties with Eastern Europe. Aung Hlaing Oo, has therefore, been involved in the supply of restricted goods and/or technology, which could have contributed to serious human rights violations. Aung Hlaing Oo, is also associated with the Commander in Chief, Min Aung Hlaing. (Gender):Male",Individual,Primary name,,Myanmar,25/03/2022,25/03/2022,25/03/2022,15047 +OO,Mya,Htun,,,,,,,,05/05/1961,,Myanmar,Myanmar,,,,,(1) Minister of Defence (2) State Administration Council Member,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0017 Joined Military 1980. Rapid rise to General 26 August 2016 (Chief of General Staff, Army, Navy and Air Force) (UK Statement of Reasons):Following the coup against the democratically elected government by the Myanmar military (Tatmadaw) on 31 January, General Mya Tun Oo was appointed Minister of Defence on 1 February. The Minister of Defence is responsible for the Tatmadaw, which includes the Army, Navy and Air Force. The Tatmadaw have committed serious human rights violations in Myanmar since 1 February 2021 including prohibiting freedom of assembly, the arbitrary arrest and detention of opposition leaders and opponents of the coup, violence against protesters – including the use of water cannon and rubber and live ammunition - and preventing use of the internet. As the Minister of Defence, General Mya Tun Oo has command responsibility for these violations and can therefore be held responsible for these actions. (Gender):Male",Individual,AKA,,Myanmar,18/02/2021,29/04/2021,11/11/2022,14058 +OO,Mya,Tun,,,,,,,,05/05/1961,,Myanmar,Myanmar,,,,,(1) Minister of Defence (2) State Administration Council Member,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0017 Joined Military 1980. Rapid rise to General 26 August 2016 (Chief of General Staff, Army, Navy and Air Force) (UK Statement of Reasons):Following the coup against the democratically elected government by the Myanmar military (Tatmadaw) on 31 January, General Mya Tun Oo was appointed Minister of Defence on 1 February. The Minister of Defence is responsible for the Tatmadaw, which includes the Army, Navy and Air Force. The Tatmadaw have committed serious human rights violations in Myanmar since 1 February 2021 including prohibiting freedom of assembly, the arbitrary arrest and detention of opposition leaders and opponents of the coup, violence against protesters – including the use of water cannon and rubber and live ammunition - and preventing use of the internet. As the Minister of Defence, General Mya Tun Oo has command responsibility for these violations and can therefore be held responsible for these actions. (Gender):Male",Individual,Primary name,,Myanmar,18/02/2021,29/04/2021,11/11/2022,14058 +OO,Than,,,,,Brigadier General,,,,12/10/1973,,,Myanmar,,,BC 25723,,Commander in the 99th Light Infantry Division of the Myanmar Armed Forces,,,,,,Meikthila,,Myanmar,"(UK Sanctions List Ref):MYA0001 (UK Statement of Reasons):Brigadier General Than Oo, Commander of the 99th Light Infantry Division of the Myanmar Army. Responsible for the repression of the civilian population, actions that threaten the peace, stability or security of Myanmar and serious human rights violations committed against the Rohingya population in Rakhine state. These include unlawful killings and systematic burning of Rohingya houses and buildings. (Gender):Male",Individual,Primary name,,Myanmar,26/06/2018,29/04/2021,11/11/2022,13684 +OO,Thant,Zin,,,,Commander,,,,,,,Myanmar,,,,,Commander of the 8th Security Police Battalion,,,,,,,,,"(UK Sanctions List Ref):MYA0005 (UK Statement of Reasons):Brigadier General Thant Zin Oo was Commander of the paramilitary 8th Security Police Battalion of the Myanmar Army during August and September 2017. As commander, he was responsible for the actions of the 8th Security Police Battalion under his command and therefore responsible for serious human rights violations committed against the Rohingya population in Rakhine state by the 8th Security Police Battalion. These include unlawful killings, repression of the civilian population and systematic burning of Rohingya houses and buildings. (Gender):Male",Individual,Primary name,,Myanmar,26/06/2018,29/04/2021,11/11/2022,13693 +OO,Thida,,,,,(1) Doctor (2) Attorney General,,,,,,Myanmar,Myanmar,,,,,Myanmar Attorney General,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0034 (UK Statement of Reasons):Dr Thida Oo is the sitting Attorney General of Myanmar. She was appointed by the State Administration Council (SAC), following the February 2021 military coup, after her predecessor, U Tun Tun Oo, was forcibly removed from office. She is involved in undermining democracy through the manner of her appointment and her acceptance of the role. She is also, reportedly, responsible for building cases against the Civil Disobedience Movement and Aung San Suu Kyi, which directly undermines the democracy movement. Further, Dr Thida Oo acts on behalf of, or at the direction of, and/or is associated with the SAC (designated under the Myanmar (Sanctions) Regulations 2021). Dr Thida Oo is also associated with the Commander-in-Chief and Chairman of the SAC, Min Aung Hlaing (designated under the Global Human Rights (Sanctions) Regulations 2020 and Myanmar (Sanctions) Regulations 2021. (Gender):Female",Individual,Primary name,,Myanmar,31/01/2022,31/01/2022,11/11/2022,14173 +OO,Thidar,,,,,,,,,,,Myanmar,Myanmar,,,,,Myanmar Attorney General,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0034 (UK Statement of Reasons):Dr Thida Oo is the sitting Attorney General of Myanmar. She was appointed by the State Administration Council (SAC), following the February 2021 military coup, after her predecessor, U Tun Tun Oo, was forcibly removed from office. She is involved in undermining democracy through the manner of her appointment and her acceptance of the role. She is also, reportedly, responsible for building cases against the Civil Disobedience Movement and Aung San Suu Kyi, which directly undermines the democracy movement. Further, Dr Thida Oo acts on behalf of, or at the direction of, and/or is associated with the SAC (designated under the Myanmar (Sanctions) Regulations 2021). Dr Thida Oo is also associated with the Commander-in-Chief and Chairman of the SAC, Min Aung Hlaing (designated under the Global Human Rights (Sanctions) Regulations 2020 and Myanmar (Sanctions) Regulations 2021. (Gender):Female",Individual,Primary name variation,,Myanmar,31/01/2022,31/01/2022,11/11/2022,14173 +OO,Tin,,,,,U,,,,24/11/1952,,Myanmar,Myanmar,,,5/KALATA (NAING) 127084,NRIC,Chair of the Anti-Corruption Commission,No 22,Thanlwin Street,PyinYaWaDy Condominium,No.5 Quarter,Yankin township,Yangon,,Myanmar,"(UK Sanctions List Ref):MYA0036 (UK Statement of Reasons):U Tin Oo is the current Chair of the Anti-Corruption Commission in Myanmar. He was appointed by the State Administration Council (SAC), following the February 2021 military coup. He is involved in undermining democracy through the manner of his appointment and his acceptance of the role. He is also undermining democracy and the rule of law by developing cases, widely regarded as unfounded, against democratically elected officials including Aung San Suu Kyi and President Win Myint. Further, U Tin Oo acts on behalf of, and/or at the direction of, and/or is associated with the SAC whose members are designated under the Myanmar (Sanctions) Regulations 2021. U Tin Oo was appointed by and reports to the Chair of the SAC, Commander-in-Chief, Min Aung Hlaing (designated under the Global Human Rights (Sanctions) Regulations 2020 and Myanmar (Sanctions) Regulations 2021) and is therefore associated with a designated person. (Gender):Male",Individual,Primary name,,Myanmar,31/01/2022,31/01/2022,11/11/2022,14175 +OO,Ye,Win,,,,,,,,03/05/1968,,Myanmar,Myanmar,,,,,Joint Secretary of SAC,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0023 (UK Statement of Reasons):On 1 February 2021 the Myanmar military (Tatmadaw), led by Commander-in-Chief Min Aung Hlaing, staged a coup in Myanmar. As part of the coup, Vice-President Swe declared a state of emergency on 1 February transferring the legislative, executive and judicial powers of the state to Min Aung Hlaing. On 2 February, the Tatmadaw established the State Administration Council (SAC), which is chaired by Hlaing, in order to run the functions of the state. Lt General Ye Win Oo was appointed Joint Secretary of the SAC on 2 February. The Myanmar security forces have committed serious human rights violations since 1 February 2021: killing a protestor, restricting freedom of assembly and expression including through restricting internet access, arbitrary arrest and detention of opposition leaders and opponents of the coup. The SAC has adopted legislation violating the right to privacy and the right not to be subject to arbitrary detention in Myanmar. As a member of the SAC, Oo shares responsibility with its other members for the exercise of state functions since 2 February 2021, including legislation violating human rights, and for the serious human rights violations committed by the Myanmar security forces. As a member of the SAC, Lt Gen Ye Win Oo is associated with Commander in Chief General Min Aung Hlaing who is a designated person under the (Myanmar Sanctions) Regulations 2021 in respect of actions related to the February 2021 coup. (Gender):Male",Individual,Primary name,,Myanmar,25/02/2021,29/04/2021,11/11/2022,14063 +"OOO ""VO TECHNOPROMEXPORT""",,,,,,,,,,,,,,,,,,,Novyi Arbat str.,15,building 2,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0186 Names of Director(s). Management: Chief: Sergey Topor-Gilka (DG of OAO ""TPE"" and also of OOO TPE) (UK Statement of Reasons):Owner of the gas turbines originally supplied by Siemens Gas Turbine Technologies OOO to OAO ‘VO TPE’ for exclusive use in Taman, Southern Russia. OOO ‘VO TPE’ assumed ownership of the gas turbines and transferred the gas turbines to be installed in Crimea. This contributes to establishing an independent power supply for Crimea and Sevastopol as a means of supporting their separation from Ukraine, and undermines the territorial integrity, sovereignty and independence of Ukraine. (Website):http://tpe-vo.ru/ (Business Reg No):1147746527279 dated 27/07/1992. Tax ID: 7701863782e",Entity,Primary name,,Russia,04/08/2017,31/12/2020,26/09/2022,13525 +OOO FORSS TEKNOLOGII,,,,,,,ООО Форсс Технологии,Cyrillic,Russian,,,,,,,,,,"51, lit. E",Magnitogorskaya street,,,,St. Petersburg,195027,Russia,"(UK Sanctions List Ref):RUS1433 OGRN: 1137847075057; KPP: 780601001 (UK Statement of Reasons):Forss Technology LTD is a Russian company providing engineering services in shipbuilding, machine building, electrical technology, instruments manufacturing and high-tech products development. Forss Technology LTD therefore is or has been involved in supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the transport sector. (Phone number):(1) 7 (812) 363-14-67 (2) 7 (812) 363-14-68 (Website):www.forss.tech (Email address):info@forss.su (Business Reg No):Tax Identification Number: INN: 7806496845",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15372 +OOO FORSS TEKNOLOGII,,,,,,,ООО Форсс Технологии,Cyrillic,Russian,,,,,,,,,,"1st floor, Room 1h, 44/117",Bronnistkaya street,Semyonovskii,Admiralteiskii region,,St. Petersburg,190013,Russia,"(UK Sanctions List Ref):RUS1433 OGRN: 1137847075057; KPP: 780601001 (UK Statement of Reasons):Forss Technology LTD is a Russian company providing engineering services in shipbuilding, machine building, electrical technology, instruments manufacturing and high-tech products development. Forss Technology LTD therefore is or has been involved in supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the transport sector. (Phone number):(1) 7 (812) 363-14-67 (2) 7 (812) 363-14-68 (Website):www.forss.tech (Email address):info@forss.su (Business Reg No):Tax Identification Number: INN: 7806496845",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15372 +OOO SMART MARIN,,,,,,,ООО Смарт Марин,Cyrillic,Russian,,,,,,,,,,"51, lit. E",Magnitogorskaya street,,,,St. Petersburg,195027,Russia,"(UK Sanctions List Ref):RUS1433 OGRN: 1137847075057; KPP: 780601001 (UK Statement of Reasons):Forss Technology LTD is a Russian company providing engineering services in shipbuilding, machine building, electrical technology, instruments manufacturing and high-tech products development. Forss Technology LTD therefore is or has been involved in supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the transport sector. (Phone number):(1) 7 (812) 363-14-67 (2) 7 (812) 363-14-68 (Website):www.forss.tech (Email address):info@forss.su (Business Reg No):Tax Identification Number: INN: 7806496845",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15372 +OOO SMART MARIN,,,,,,,ООО Смарт Марин,Cyrillic,Russian,,,,,,,,,,"1st floor, Room 1h, 44/117",Bronnistkaya street,Semyonovskii,Admiralteiskii region,,St. Petersburg,190013,Russia,"(UK Sanctions List Ref):RUS1433 OGRN: 1137847075057; KPP: 780601001 (UK Statement of Reasons):Forss Technology LTD is a Russian company providing engineering services in shipbuilding, machine building, electrical technology, instruments manufacturing and high-tech products development. Forss Technology LTD therefore is or has been involved in supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the transport sector. (Phone number):(1) 7 (812) 363-14-67 (2) 7 (812) 363-14-68 (Website):www.forss.tech (Email address):info@forss.su (Business Reg No):Tax Identification Number: INN: 7806496845",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15372 +OOO 'VO TPE',,,,,,,,,,,,,,,,,,,Novyi Arbat str.,15,building 2,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0186 Names of Director(s). Management: Chief: Sergey Topor-Gilka (DG of OAO ""TPE"" and also of OOO TPE) (UK Statement of Reasons):Owner of the gas turbines originally supplied by Siemens Gas Turbine Technologies OOO to OAO ‘VO TPE’ for exclusive use in Taman, Southern Russia. OOO ‘VO TPE’ assumed ownership of the gas turbines and transferred the gas turbines to be installed in Crimea. This contributes to establishing an independent power supply for Crimea and Sevastopol as a means of supporting their separation from Ukraine, and undermines the territorial integrity, sovereignty and independence of Ukraine. (Website):http://tpe-vo.ru/ (Business Reg No):1147746527279 dated 27/07/1992. Tax ID: 7701863782e",Entity,AKA,,Russia,04/08/2017,31/12/2020,26/09/2022,13525 +OOO VOLGA GROUP,,,,,,,ВОЛГА ГРУП,Cyrillic,Russian,,,,,,,,,,Begovaya St.,Dom 3,Str. 1,,,Moscow,12528,Russia,"(UK Sanctions List Ref):RUS1420 (UK Statement of Reasons):OOO VOLGA GROUP, an investment company, is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because it is owned or controlled directly or indirectly (within the meaning of regulation 7 of the Russia (Sanctions) (EU Exit) Regulations 2019) by a designated person who is or has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, namely Gennadiy Nikolayevich TIMCHENKO. (Business Reg No):Tax ID No. 7718989383 (Russia); Registration Number 1147746803049 (Russia)",Entity,Primary name,,Russia,04/05/2022,04/05/2022,02/09/2022,15367 +OOO VOLGA GROUP,,,,,,,ВОЛГА ГРУП,Cyrillic,Russian,,,,,,,,,,Timura Frunze,House 11,Building 1,"floor 2, unit IV, room 2",,Moscow,,Russia,"(UK Sanctions List Ref):RUS1420 (UK Statement of Reasons):OOO VOLGA GROUP, an investment company, is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because it is owned or controlled directly or indirectly (within the meaning of regulation 7 of the Russia (Sanctions) (EU Exit) Regulations 2019) by a designated person who is or has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, namely Gennadiy Nikolayevich TIMCHENKO. (Business Reg No):Tax ID No. 7718989383 (Russia); Registration Number 1147746803049 (Russia)",Entity,Primary name,,Russia,04/05/2022,04/05/2022,02/09/2022,15367 +OOR,Khaled,Abulabbas,Na,,,,,,,01/06/1972,Ghardaia,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0249 (UN Ref):QDi.136 Father's name is Mohamed. Mother's name is Zohra Chemkha. Member of the Council of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) (AQIM). Head of Al Mouakaoune Biddam (QDe.139), Al Moulathamoun (QDe.140) and Al Mourabitoun (QDe.141). Review pursuant to Security Council resolution 1822 (2008) was concluded on 30 Jul. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4488665",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,11/11/2003,14/04/2022,7881 +"OPEN JOINT STOCK COMPANY ""BELARUSKALI""",,,,,,,"Открытое акционерное общество ""Беларуськалий""",,,,,,,,,,,,OJSC Belaruskali,5 Korzha Street,,,Soligorsk,Minsk Region,223710,Belarus,"(UK Sanctions List Ref):BEL0111 (UK Statement of Reasons):OJSC BELARUSKALI is one of the world’s largest producers of the key fertilizer ingredient potassium chloride (potash), and is 100% owned by the Belarusian state. As a state-owned enterprise, OJSC BELARUSKALI is a major source of revenue and foreign currency for the Lukashenko regime, including through the transfer of OJSC BELARUSKALI’s profits to the National Development Fund which is directed by Lukashenko. Export duties and taxes generated by OJSC BELARUSKALI account for 8-10% of the total budget of the Government of Belarus, and are therefore critically important in maintaining the regime and enabling its actions. Through the production of potash and its treatment of striking workers during the protests and crackdown in 2020, OJSC BELARUSKALI has helped prop up the authoritarian rule of Lukashenko’s regime. OJSC BELARUSKALI therefore is or has been involved in providing support for the Government of Belarus, which has taken actions to undermine democracy and the rule of law, repress civil society and the democratic opposition, and commit serious human rights violations. (Phone number):(1) +375 (17) 426-37-65 (2) +375 (17) 429-86-08 (3) 375 (17) 429-84-01 (Website):www.kali.by (Email address):belaruskali.office@kali.by (Type of entity):Open Joint Stock Company (OJSC)",Entity,Primary name,,Belarus,02/12/2021,02/12/2021,16/02/2022,14154 +"OPEN JOINT STOCK COMPANY ""BELARUSKALI""",,,,,,,"Адкрытае акцыянернае таварыства ""Беларуськалiй""",,,,,,,,,,,,OJSC Belaruskali,5 Korzha Street,,,Soligorsk,Minsk Region,223710,Belarus,"(UK Sanctions List Ref):BEL0111 (UK Statement of Reasons):OJSC BELARUSKALI is one of the world’s largest producers of the key fertilizer ingredient potassium chloride (potash), and is 100% owned by the Belarusian state. As a state-owned enterprise, OJSC BELARUSKALI is a major source of revenue and foreign currency for the Lukashenko regime, including through the transfer of OJSC BELARUSKALI’s profits to the National Development Fund which is directed by Lukashenko. Export duties and taxes generated by OJSC BELARUSKALI account for 8-10% of the total budget of the Government of Belarus, and are therefore critically important in maintaining the regime and enabling its actions. Through the production of potash and its treatment of striking workers during the protests and crackdown in 2020, OJSC BELARUSKALI has helped prop up the authoritarian rule of Lukashenko’s regime. OJSC BELARUSKALI therefore is or has been involved in providing support for the Government of Belarus, which has taken actions to undermine democracy and the rule of law, repress civil society and the democratic opposition, and commit serious human rights violations. (Phone number):(1) +375 (17) 426-37-65 (2) +375 (17) 429-86-08 (3) 375 (17) 429-84-01 (Website):www.kali.by (Email address):belaruskali.office@kali.by (Type of entity):Open Joint Stock Company (OJSC)",Entity,Primary name variation,,Belarus,02/12/2021,02/12/2021,16/02/2022,14154 +"OPEN JOINT STOCK COMPANY 'FOREIGN ECONOMIC ASSOCIATION' ""TECHNOPROMEXPORT""",,,,,,,,,,,,,,,,,,,Novyi Arbat str.,15,building 2,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0185 Names of Director(s). Management: Sergey Topor-Gilka (DG of OAO ""TPE"" and also of OOO TPE) (UK Statement of Reasons):Contracting party with Siemens Gas Turbine Technologies OOO, OAO ‘VO TPE’ purchased gas turbines declared to be destined for a power plant in Taman, Krasnodar region, Russian Federation, and as the contractor was responsible for the transfer of the gas turbines to OOO 'VO TPE' which in turn transferred them to be installed in Crimea. This contributes to establishing an independent power supply for Crimea and Sevastopol as a means of supporting their separation from Ukraine, and undermines the territorial integrity, sovereignty and independence of Ukraine. (Type of entity):Public Joint-Stock (Parent company):Rostech (Business Reg No):1067746244026 dated 27/07/1992. Tax ID: 7705713236",Entity,AKA,,Russia,04/08/2017,31/12/2020,14/02/2022,13524 +OPLOT BATTALION,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0187 Name of Director Aleksandr Zakharchenko (now deceased) and Mikhail Verin (nom de guerre ‘The Fifth’) (UK Statement of Reasons):Armed separatist group which has taken part in combat activity and has actively supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. These actions include occupation of City Hall in Donetsk; an assault assault on the army positions at Krasnohorivka, which took the lives of three Ukrainian soldiers; repulsion of Kiev troops in Donetsk and being reportedly part of the so-called ""1st Army Corps"" of the ""Donetsk People's Republic"". (Website):http://vk.com/oplot_info",Entity,Primary name,,Russia,16/02/2015,31/12/2020,31/12/2020,13223 +OPRISHHENKO,Aleksandr,Aleksandrovich,,,,,ОПРИЩЕНКО Александр Александрович,Cyrillic,Russian,24/04/1976,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1139 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15091 +OPRISHHENKO,Alexander,Alexandrovich,,,,,,,,24/04/1976,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1139 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15091 +ORDENOV,Gennady,Ivanovich,,,,,Геннадий Иванович ОРДЕНОВ,,,04/09/1957,Kalinovka,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0966 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14917 +ORESHKIN,Maksim,Stanislavovich,,,,,Максим Станиславович Орешкин,,,21/07/1982,Moscow,Russia,Russia,,,,,(1) Chairman of the Board of Directors of Channel One (2) Economic Advisor to President of the Russian Federation Vladimir Putin,,,,,,,,,"(UK Sanctions List Ref):RUS1373 (UK Statement of Reasons):Maksim ORESHKIN (henceforth ORESHKIN) is the Chairman of the Board of Directors of Channel One, a television channel controlled by the Government of Russia, as well as an aide to President of the Russian Federation Vladimir Putin. ORESHKIN has therefore obtained a benefit from or supported the Government of Russia by working as a director or equivalent of a Government of Russia-affiliated entity. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,04/05/2022,15330 +ORFALI,Khodr,,,,,,,,,00/00/1956,Deir Ezzor,,,,,,,Former Minister of Economy & Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0125 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. There are reasonable grounds to suspect that Khodr Orfali has been involved in the repression of the civilian population in Syria and/or supported or benefitted from the regime while in this capacity. (Gender):Male,Individual,Primary name,,Syria,24/06/2014,31/12/2020,13/05/2022,12992 +ORFALI,Khud,,,,,,,,,00/00/1956,Deir Ezzor,,,,,,,Former Minister of Economy & Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0125 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. There are reasonable grounds to suspect that Khodr Orfali has been involved in the repression of the civilian population in Syria and/or supported or benefitted from the regime while in this capacity. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12992 +ORFALI,Khudr,,,,,,,,,00/00/1956,Deir Ezzor,,,,,,,Former Minister of Economy & Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0125 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. There are reasonable grounds to suspect that Khodr Orfali has been involved in the repression of the civilian population in Syria and/or supported or benefitted from the regime while in this capacity. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12992 +ORGANISATION FOR TECHNOLOGICAL INDUSTRIES,,,,,,,,,,,,,,,,,,,,,,,PO Box 11037,Damascus,,Syria,"(UK Sanctions List Ref):SYR0320 (UK Statement of Reasons):Subsidiary of the Syrian Ministry of Defence. Organisation for Technological Industries is involved in the production of chemical weapons for the Syrian regime. It is therefore involved in the repression of the Syrian civilian population. As a subsidiary of the Ministry of Defence, it is also associated with a designated entity. (Type of entity):subsidiary of Syrian Government",Entity,Primary name,,Syria,09/03/2015,31/12/2020,13/05/2022,13235 +ORGANISATION GENERALE DU TABAC,,,,,,,,,,,,,,,,,,,General Establishment of Tobacco,Salhieh Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0302 General Establishment of Tobacco, Salhieh Street, Damascus (Designated 15 May 2012). Associations with the Makhlouf Family & therefore Assad (UK Statement of Reasons):Provides financial support to the Syrian regime. The General Organisation of Tobacco is wholly owned by the Syrian state. The profits that the organisation makes, including through the sale of licenses to market foreign brands of tobacco and taxes levied on imports of foreign brands of tobacco are transferred to the Syrian state.",Entity,AKA,,Syria,15/05/2012,31/12/2020,31/12/2020,12673 +ORGANISATION OF DEFENSIVE INNOVATION AND RESEARCH (SPND),,,,,,,,,,,,,,,,,,,"Negarestan 3,",off of Pasdaran Street,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0040 (UK Statement of Reasons):The Organisation of Defensive Innovation and Research (SPND) directly supports Iran's proliferation sensitive nuclear activities. The IAEA has identified SPND with their concerns over possible military dimensions (PMD) to Iran's nuclear programme. SPND is run by UN designated Mohsen Fakhrizadeh and is part of the Ministry of Defence For Armed Forces Logistics (MODAFL) (Type of entity):Enterprise (Subsidiaries):Research Centre for Explosion and Impact (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL),Entity,Primary name,,Iran (Nuclear),24/12/2012,31/12/2020,31/12/2020,12821 +ORGANIZATION AND GUIDANCE DEPARTMENT (OGD),,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0183 (UN Ref):KPe.052 The Organization and Guidance Department is a very powerful body of the Workers' Party of Korea. It directs key personnel appointments for the Workers’ Party of Korea, the DPRK’s military, and the DPRK’s government administration. It also purports to control the political affairs of all of the DPRK and is instrumental in implementing the DPRK’s censorship policies.",Entity,Primary name,,Democratic People's Republic of Korea,12/09/2017,11/09/2017,19/01/2021,13542 +ORGEEVA,Marina,Eduardovna,,,,,Оргеева Марина Эдуардовна,,,21/09/1959,Kaliningrad,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0472 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14417 +ORIENTAL OIL KISH,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0166 (UN Ref):IRe.049 Owned or controlled by, or acts on behalf of, KAA. [Old Reference # E.29.II.10] (Parent company):Khatam al-Anbiya (KAA)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11143 +ORIENTAL REVIEW,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0819 (UK Statement of Reasons):Oriental Review is an online media outlet based in Russia. In numerous articles it has provided support for and promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Website):https://orientalreview.org/ (Email address):Or@orientalreview.org (Type of entity):Online media outlet",Entity,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14770 +ORLOV,Evgeny,,,,,,,,,21/10/1983,"Snezhnoye, Donetsk Region",Ukraine,Ukraine,,,,,"(1) Member of the ""National Council"" of the so-called ""Donetsk People's Republic."" (2) Chairman of the public movement ""Free Donbas""",,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0044 (UK Statement of Reasons):Former member of the ‘National Council’ of the so-called ‘Donetsk's People's Republic’. Former chairman of the public movement ‘Free Donbass’. In taking on and acting in this capacity, he has actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,31/12/2020,13181 +ORLOV,Evgeny,,,,,,,,,10/05/1980,"Snezhnoye, Donetsk Region",Ukraine,Ukraine,,,,,"(1) Member of the ""National Council"" of the so-called ""Donetsk People's Republic."" (2) Chairman of the public movement ""Free Donbas""",,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0044 (UK Statement of Reasons):Former member of the ‘National Council’ of the so-called ‘Donetsk's People's Republic’. Former chairman of the public movement ‘Free Donbass’. In taking on and acting in this capacity, he has actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,31/12/2020,13181 +ORLOV,Yevgeniy,Vyacheslavovich,,,,,Евгений Вячеславович ОРЛОВ,,,21/10/1983,"Snezhnoye, Donetsk Region",Ukraine,Ukraine,,,,,"(1) Member of the ""National Council"" of the so-called ""Donetsk People's Republic."" (2) Chairman of the public movement ""Free Donbas""",,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0044 (UK Statement of Reasons):Former member of the ‘National Council’ of the so-called ‘Donetsk's People's Republic’. Former chairman of the public movement ‘Free Donbass’. In taking on and acting in this capacity, he has actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name,,Russia,02/12/2014,31/12/2020,31/12/2020,13181 +ORLOV,Yevgeniy,Vyacheslavovich,,,,,Евгений Вячеславович ОРЛОВ,,,10/05/1980,"Snezhnoye, Donetsk Region",Ukraine,Ukraine,,,,,"(1) Member of the ""National Council"" of the so-called ""Donetsk People's Republic."" (2) Chairman of the public movement ""Free Donbas""",,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0044 (UK Statement of Reasons):Former member of the ‘National Council’ of the so-called ‘Donetsk's People's Republic’. Former chairman of the public movement ‘Free Donbass’. In taking on and acting in this capacity, he has actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name,,Russia,02/12/2014,31/12/2020,31/12/2020,13181 +ORLOV,Yevhen,Vyacheslavovych,,,,,Євген Орлов.,,,21/10/1983,"Snezhnoye, Donetsk Region",Ukraine,Ukraine,,,,,"(1) Member of the ""National Council"" of the so-called ""Donetsk People's Republic."" (2) Chairman of the public movement ""Free Donbas""",,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0044 (UK Statement of Reasons):Former member of the ‘National Council’ of the so-called ‘Donetsk's People's Republic’. Former chairman of the public movement ‘Free Donbass’. In taking on and acting in this capacity, he has actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,31/12/2020,13181 +ORLOV,Yevhen,Vyacheslavovych,,,,,Євген Орлов.,,,10/05/1980,"Snezhnoye, Donetsk Region",Ukraine,Ukraine,,,,,"(1) Member of the ""National Council"" of the so-called ""Donetsk People's Republic."" (2) Chairman of the public movement ""Free Donbas""",,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0044 (UK Statement of Reasons):Former member of the ‘National Council’ of the so-called ‘Donetsk's People's Republic’. Former chairman of the public movement ‘Free Donbass’. In taking on and acting in this capacity, he has actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,31/12/2020,13181 +ORLOV,Aleksey,Maratovich,,,,,Алексей Маратович Орлов,,,09/10/1961,Elista,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0874 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14825 +ORLOV,Vasily,Aleksandrovich,,,,,Василий Александрович Орлов,,,14/04/1975,,,Russia,,,,,Governor of the Amur Region,,,,,,,,,"(UK Sanctions List Ref):RUS1531 (UK Statement of Reasons):Vasily Aleksandrovich ORLOV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because ORLOV is a regional governor. Specifically, ORLOV is Governor of the Amur Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15484 +ORLOVA,Natalya,Alekseevna,,,,,Наталья Алексеевна Орлова,,,29/08/1969,Rubtsovsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0676 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14627 +ORNELA FERREIRA,Jose,Adelino,,,,Major General,,,,14/12/1964,"Caracas, Distrito Capital",Venezuela,Venezuela,,,V-7087964,,(1) Chief of Staff of the Commander in Chief of the Venezuelan Armed Forces (2) Deputy Minister of Monitoring and Inspection of Government Administration (3) Secretary General of the National Defence Council (SECODENA) (4) Former Second-in-Command of CEOFANB (5) Chief of Staff of CEOFANB,,,,,,,,Venezuela,"(UK Sanctions List Ref):VEN0026 (UK Statement of Reasons):Chief of Staff of the Commander-in-Chief FANB, Deputy Minister of Monitoring and Inspection of Government Administration, and Secretary General of the National Defence Council (SECODENA). José Adelino Ornelas Ferreira has been Second in Command and Chief of Staff of Strategic Command Operations of the Bolivarian National Armed Forces (CEOFANB) since June 2017, having been appointed to the post by Nicolas Maduro. The CEOFANB is the highest point of command in the Venezuelan armed forces. The CEOFANB sets the strategic direction of all strands of the Venezuelan military (Army, Navy, Air Force, and National Guard (GNB)), coordinates them, and implements operations. Since September 2020, Ornelas has been the Chief of the General Staff to the Commander in Chief. There is reliable evidence that the GNB has committed serious human rights violations during Ferreira’s period in charge. A report by OHCHR in 2018 documents incidents of people deprived of their liberty and subjected to cruel, inhuman and degrading treatment and (in many cases possibly) torture, reportedly carried out in part by the GNB. Some of these incidents occurred in the period that Ferreira has held the position of Commander of the CEOFANB. As a commander of the CEOFANB, and Chief of Staff to the Commander in Chief and Strategic Command Operations, and thus in charge of the GNB, there are reasonable grounds to suspect that Ferreira was involved in those acts. There is reliable evidence that the GNB used excessive force against people in the Pemon territory in February 2019, including killing three people, and carried out extrajudicial killings of an alleged terrorist group in El Junquito, Caracas. As a CEOFANB Commander and Chief of Staff at the time, there are reasonable grounds to suspect that Ferreira was involved in those grave human rights violations. Finally, there is reliable evidence that In May 2019 members of the Venezuelan National Guard (GNB), which sits under the command of the CEOFANB, during Ferreira’s time in role, used tear gas to disperse a march of opposition supporters. Due to his role, Ferreira is partially responsible for this repression of civil society and violation of freedom of expression. (Gender):Male",Individual,Primary name variation,,Venezuela,30/06/2020,31/12/2020,02/08/2022,13841 +ORNELAS FERREIRA,Jose,Adelino,,,,,José Adelino Ornelas Ferreira,,,14/12/1964,"Caracas, Distrito Capital",Venezuela,Venezuela,,,V-7087964,,(1) Chief of Staff of the Commander in Chief of the Venezuelan Armed Forces (2) Deputy Minister of Monitoring and Inspection of Government Administration (3) Secretary General of the National Defence Council (SECODENA) (4) Former Second-in-Command of CEOFANB (5) Chief of Staff of CEOFANB,,,,,,,,Venezuela,"(UK Sanctions List Ref):VEN0026 (UK Statement of Reasons):Chief of Staff of the Commander-in-Chief FANB, Deputy Minister of Monitoring and Inspection of Government Administration, and Secretary General of the National Defence Council (SECODENA). José Adelino Ornelas Ferreira has been Second in Command and Chief of Staff of Strategic Command Operations of the Bolivarian National Armed Forces (CEOFANB) since June 2017, having been appointed to the post by Nicolas Maduro. The CEOFANB is the highest point of command in the Venezuelan armed forces. The CEOFANB sets the strategic direction of all strands of the Venezuelan military (Army, Navy, Air Force, and National Guard (GNB)), coordinates them, and implements operations. Since September 2020, Ornelas has been the Chief of the General Staff to the Commander in Chief. There is reliable evidence that the GNB has committed serious human rights violations during Ferreira’s period in charge. A report by OHCHR in 2018 documents incidents of people deprived of their liberty and subjected to cruel, inhuman and degrading treatment and (in many cases possibly) torture, reportedly carried out in part by the GNB. Some of these incidents occurred in the period that Ferreira has held the position of Commander of the CEOFANB. As a commander of the CEOFANB, and Chief of Staff to the Commander in Chief and Strategic Command Operations, and thus in charge of the GNB, there are reasonable grounds to suspect that Ferreira was involved in those acts. There is reliable evidence that the GNB used excessive force against people in the Pemon territory in February 2019, including killing three people, and carried out extrajudicial killings of an alleged terrorist group in El Junquito, Caracas. As a CEOFANB Commander and Chief of Staff at the time, there are reasonable grounds to suspect that Ferreira was involved in those grave human rights violations. Finally, there is reliable evidence that In May 2019 members of the Venezuelan National Guard (GNB), which sits under the command of the CEOFANB, during Ferreira’s time in role, used tear gas to disperse a march of opposition supporters. Due to his role, Ferreira is partially responsible for this repression of civil society and violation of freedom of expression. (Gender):Male",Individual,Primary name,,Venezuela,30/06/2020,31/12/2020,02/08/2022,13841 +ORNELLA FERREIRA,Jose,Adelino,,,,,,,,14/12/1964,"Caracas, Distrito Capital",Venezuela,Venezuela,,,V-7087964,,(1) Chief of Staff of the Commander in Chief of the Venezuelan Armed Forces (2) Deputy Minister of Monitoring and Inspection of Government Administration (3) Secretary General of the National Defence Council (SECODENA) (4) Former Second-in-Command of CEOFANB (5) Chief of Staff of CEOFANB,,,,,,,,Venezuela,"(UK Sanctions List Ref):VEN0026 (UK Statement of Reasons):Chief of Staff of the Commander-in-Chief FANB, Deputy Minister of Monitoring and Inspection of Government Administration, and Secretary General of the National Defence Council (SECODENA). José Adelino Ornelas Ferreira has been Second in Command and Chief of Staff of Strategic Command Operations of the Bolivarian National Armed Forces (CEOFANB) since June 2017, having been appointed to the post by Nicolas Maduro. The CEOFANB is the highest point of command in the Venezuelan armed forces. The CEOFANB sets the strategic direction of all strands of the Venezuelan military (Army, Navy, Air Force, and National Guard (GNB)), coordinates them, and implements operations. Since September 2020, Ornelas has been the Chief of the General Staff to the Commander in Chief. There is reliable evidence that the GNB has committed serious human rights violations during Ferreira’s period in charge. A report by OHCHR in 2018 documents incidents of people deprived of their liberty and subjected to cruel, inhuman and degrading treatment and (in many cases possibly) torture, reportedly carried out in part by the GNB. Some of these incidents occurred in the period that Ferreira has held the position of Commander of the CEOFANB. As a commander of the CEOFANB, and Chief of Staff to the Commander in Chief and Strategic Command Operations, and thus in charge of the GNB, there are reasonable grounds to suspect that Ferreira was involved in those acts. There is reliable evidence that the GNB used excessive force against people in the Pemon territory in February 2019, including killing three people, and carried out extrajudicial killings of an alleged terrorist group in El Junquito, Caracas. As a CEOFANB Commander and Chief of Staff at the time, there are reasonable grounds to suspect that Ferreira was involved in those grave human rights violations. Finally, there is reliable evidence that In May 2019 members of the Venezuelan National Guard (GNB), which sits under the command of the CEOFANB, during Ferreira’s time in role, used tear gas to disperse a march of opposition supporters. Due to his role, Ferreira is partially responsible for this repression of civil society and violation of freedom of expression. (Gender):Male",Individual,Primary name variation,,Venezuela,30/06/2020,31/12/2020,02/08/2022,13841 +ORNELLAS FERREIRA,Jose,Adelino,,,,,,,,14/12/1964,"Caracas, Distrito Capital",Venezuela,Venezuela,,,V-7087964,,(1) Chief of Staff of the Commander in Chief of the Venezuelan Armed Forces (2) Deputy Minister of Monitoring and Inspection of Government Administration (3) Secretary General of the National Defence Council (SECODENA) (4) Former Second-in-Command of CEOFANB (5) Chief of Staff of CEOFANB,,,,,,,,Venezuela,"(UK Sanctions List Ref):VEN0026 (UK Statement of Reasons):Chief of Staff of the Commander-in-Chief FANB, Deputy Minister of Monitoring and Inspection of Government Administration, and Secretary General of the National Defence Council (SECODENA). José Adelino Ornelas Ferreira has been Second in Command and Chief of Staff of Strategic Command Operations of the Bolivarian National Armed Forces (CEOFANB) since June 2017, having been appointed to the post by Nicolas Maduro. The CEOFANB is the highest point of command in the Venezuelan armed forces. The CEOFANB sets the strategic direction of all strands of the Venezuelan military (Army, Navy, Air Force, and National Guard (GNB)), coordinates them, and implements operations. Since September 2020, Ornelas has been the Chief of the General Staff to the Commander in Chief. There is reliable evidence that the GNB has committed serious human rights violations during Ferreira’s period in charge. A report by OHCHR in 2018 documents incidents of people deprived of their liberty and subjected to cruel, inhuman and degrading treatment and (in many cases possibly) torture, reportedly carried out in part by the GNB. Some of these incidents occurred in the period that Ferreira has held the position of Commander of the CEOFANB. As a commander of the CEOFANB, and Chief of Staff to the Commander in Chief and Strategic Command Operations, and thus in charge of the GNB, there are reasonable grounds to suspect that Ferreira was involved in those acts. There is reliable evidence that the GNB used excessive force against people in the Pemon territory in February 2019, including killing three people, and carried out extrajudicial killings of an alleged terrorist group in El Junquito, Caracas. As a CEOFANB Commander and Chief of Staff at the time, there are reasonable grounds to suspect that Ferreira was involved in those grave human rights violations. Finally, there is reliable evidence that In May 2019 members of the Venezuelan National Guard (GNB), which sits under the command of the CEOFANB, during Ferreira’s time in role, used tear gas to disperse a march of opposition supporters. Due to his role, Ferreira is partially responsible for this repression of civil society and violation of freedom of expression. (Gender):Male",Individual,Primary name variation,,Venezuela,30/06/2020,31/12/2020,02/08/2022,13841 +ORPHALY,Khodr,,,,,,,,,00/00/1956,Deir Ezzor,,,,,,,Former Minister of Economy & Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0125 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. There are reasonable grounds to suspect that Khodr Orfali has been involved in the repression of the civilian population in Syria and/or supported or benefitted from the regime while in this capacity. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12992 +ORPHALY,Khud,,,,,,,,,00/00/1956,Deir Ezzor,,,,,,,Former Minister of Economy & Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0125 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. There are reasonable grounds to suspect that Khodr Orfali has been involved in the repression of the civilian population in Syria and/or supported or benefitted from the regime while in this capacity. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12992 +ORPHALY,Khudr,,,,,,,,,00/00/1956,Deir Ezzor,,,,,,,Former Minister of Economy & Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0125 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. There are reasonable grounds to suspect that Khodr Orfali has been involved in the repression of the civilian population in Syria and/or supported or benefitted from the regime while in this capacity. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12992 +OSADCHY,Nikolay,Ivanovich,,,,,Осадчий Николай Иванович,,,08/12/1957,Tuapse,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0473 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14418 +OSEEVSKY,Mikhail,Eduardovich,,,,,,,,30/11/1960,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0778 (UK Statement of Reasons):Mikhail Eduardovich Oseevsky, is or has been President of PJSC Rostelecom, Russia’s largest provider of digital services and solutions. OSEEVSKY is or has been involved in obtaining a benefit from or supporting the Government of Russia as a Director or equivalent of an entity carrying on business in the information, communications and digital technologies sector – a sector of strategic significance to the Government of Russia.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14729 +OSIPOV,Ivan,Vladimirovich,,,,,,,,21/08/1976,,,,,,,,FSB Operative attached to Criminalistics Institute,,,,,,,,,"(UK Sanctions List Ref):CHW0020 (UK Statement of Reasons):Ivan Osipov is an FSB operative in the Criminalistics Institute - Military Unit 34435. Evidence including phone and travel records suggest that Ivan Osipov was one of the operatives involved in the use of a chemical weapon in the attempted assassination of Russian opposition leader Alexey Navalny during his August 2020 visit to Siberia. A chemical weapon - a toxic nerve agent of the Novichok group - was used. Osipov was an operative of the Criminalistics Unit present in Tomsk where Navalny was poisoned. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny is a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. There are reasonable grounds to suspect that Ivan Osipov, in his capacity as an operative in the Federal Security Service of the Russian Federation, was present in Tomsk at the time of the poisoning and was one of the key operatives responsible for the preparation and use of a toxic nerve agent of the Novichok group in the attempted assassination of Alexey Navalny.",Individual,Primary name,,Chemical Weapons,20/08/2021,20/08/2021,20/08/2021,14134 +OSIPOV,Igor,Vladimirovich,,,,Admiral,ОСИПОВ Игорь Владимирович,,,06/03/1973,Novoshumnoye,Kazakhstan,Russia,,,,,"Commander Black Sea Fleet, Navy of the Russian Federation",Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0696 (UK Statement of Reasons):Admiral Igor Vladimirovich OSIPOV is a member of the Armed Forces of the Russian Federation, he currently holds the position of Commander of the Black Sea Fleet. He is considered to have been in direct command of or otherwise involved in the deployment of Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14647 +OSMAN,Mohamed,,,,,,,,,00/00/1969,Tripoli,Libya,Libya,96/184442,Libyan Passport No.,,,,Ghout El Shamal,,,,,Tripoli,,Libya,(UK Sanctions List Ref):AQD0135 (UN Ref):QDi.229 Member of Libyan Islamic Fighting Group (QDe.011). Review pursuant to Security Council resolution 1822 (2008) was concluded on 24 Nov. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1479979,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/06/2007,08/06/2007,31/12/2020,8650 +OSTANINA,Nina,Alexandrovna,,,,,Останина Нина Александровна,,,26/12/1955,Kolpakovo,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0474 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14419 +OSTROVSKIY,Yevgenievich,,,,,,,,,03/09/1979,Krasnodar,Russia,Russia,,,,,Member of VTB Bank Management Board,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0860 (UK Statement of Reasons):Svyatoslav OSTROVSKY is a member of VTB Bank’s Management Board.  VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, OSTROVSKY obtains a financial benefit from VTB Bank, therefore OSTROVSKY is an involved person on the basis of his membership of and association with VTB Bank.  (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14811 +OSTROVSKY,Svyatoslav,Evgenievich,,,,,ОСТРОВСКИЙ Святослав Евгеньевич,Cyrillic,Russian,03/09/1979,Krasnodar,Russia,Russia,,,,,Member of VTB Bank Management Board,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0860 (UK Statement of Reasons):Svyatoslav OSTROVSKY is a member of VTB Bank’s Management Board.  VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, OSTROVSKY obtains a financial benefit from VTB Bank, therefore OSTROVSKY is an involved person on the basis of his membership of and association with VTB Bank.  (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14811 +OTHMAN,Omar,Mohammed,,,,,,,,30/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +OTHMAN,Omar,Mohammed,,,,,,,,13/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +OTHMAN,Othman,Bin,Ahmed,Bin,,,,,,27/05/1979,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +OTHMAN,Othman,Bin,Ahmed,Bin,,,,,,00/00/1973,(1) - (2) Shabwa,(1) Saudi Arabia (2) Yemen,Saudi Arabia,,,1089516791,Saudi Arabia National Identification,,,,,,,,,Yemen,(UK Sanctions List Ref):AQD0283 (UN Ref):QDi.292 Operational commander of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Has been involved in raising funds and stockpiling arms for AQAP operations and activities in Yemen. Known associate of Qasim Yahya Mahdi al-Rimi (QDi.282) and Fahd Mohammed Ahmed al-Quso (deceased). Father’s name is Ahmed Othman Al Omirah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4556107,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2011,16/06/2011,31/12/2020,12012 +OTHMAN,Razan,,,,,,,,,31/01/1977,Governorate of Latakia,Syria,,,,06090034007,,,,,,,,,,,"(UK Sanctions List Ref):SYR0206 (UK Statement of Reasons):She has close personal and financial relations with Rami Makhlouf, cousin of president Bashar Al-Assad and principal financer of the regime, who has been designated. As such, associated with the Syrian regime, and benefiting from it (Gender):Female",Individual,Primary name,,Syria,16/10/2012,31/12/2020,31/12/2020,12791 +OTI,,,,,,,,,,,,,,,,,,,,,,,PO Box 11037,Damascus,,Syria,"(UK Sanctions List Ref):SYR0320 (UK Statement of Reasons):Subsidiary of the Syrian Ministry of Defence. Organisation for Technological Industries is involved in the production of chemical weapons for the Syrian regime. It is therefore involved in the repression of the Syrian civilian population. As a subsidiary of the Ministry of Defence, it is also associated with a designated entity. (Type of entity):subsidiary of Syrian Government",Entity,AKA,,Syria,09/03/2015,31/12/2020,13/05/2022,13235 +OTKE,Anna,Ivanovna,,,,,Анна Ивановна ОТКЕ,,,21/12/1974,Anadyr,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0931 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14882 +OTKRITIE,,,,,,,,,,,,,,,,,,,Street Letnikovskaya Stroenie 4,Building 2,,,,Moscow,115114,Russia,"(UK Sanctions List Ref):RUS0254 (UK Statement of Reasons):Bank Otkritie Financial Corporation PJSC (hereafter 'Otkritie') is the only bank of systematic importance that is owned by the Central Bank of Russia (CBR). Otkritie is the 8th largest bank in Russia with assets of approximately 3.2 trillion Rubles (3% of the total assets in the financial sector). It is supporting and obtaining a benefit from the Government of Russia. Otkritie is owned by the Central Bank of Russia, part of the Government of Russia. It is also carrying on business of economic significance to the Government of Russia. Furthermore, Otkritie is carrying on business in the Russian financial services sector which is a sector of strategic importance to the Government of Russia. (Phone number):+7 (495) 737-73-55 (Website):www.open.ru/en/ (Email address):otkritie@otkritie.ru (Type of entity):Public Joint-Stock Company",Entity,Primary name variation,,Russia,28/02/2022,28/02/2022,28/02/2022,14199 +OTKRYTOE AKTSIONERNOE OBSHCHESTVO NII MOLEKULYARNOY ELECKTRONIKI I ZAVOD MIKRON,,,,,,,,,,,,,,,,,,,1st Zapadny Proezd 12/1,,,,,Zelenograd,124460,Russia,"(UK Sanctions List Ref):RUS1404 Organization Established Date 13 Jan 1994; Government Gazette Number 07589295 (Russia) (UK Statement of Reasons):JOINT STOCK COMPANY MIKRON is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is the largest Russian manufacturer and exporter of microelectronics.  The company received tax benefits to produce the domestic chip for Russia’s National Payment Card System, which was developed following previous sanctions on Russia. Therefore, JOINT STOCK COMPANY MIKRON is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian electronics sector. (Website):https://en.mikron.ru/ (Business Reg No):1027700073466 (Russia). Tax ID No. 7735007358 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15324 +OTKRYTOE AKTSIONERNOE OBSHCHESTVO NII MOLEKULYARNOY ELECKTRONIKI I ZAVOD MIKRON,,,,,,,,,,,,,,,,,,,d. 6 str. 1,ul. Akademika Valieva,,,Zelenograd,Moscow,124460,Russia,"(UK Sanctions List Ref):RUS1404 Organization Established Date 13 Jan 1994; Government Gazette Number 07589295 (Russia) (UK Statement of Reasons):JOINT STOCK COMPANY MIKRON is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is the largest Russian manufacturer and exporter of microelectronics.  The company received tax benefits to produce the domestic chip for Russia’s National Payment Card System, which was developed following previous sanctions on Russia. Therefore, JOINT STOCK COMPANY MIKRON is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian electronics sector. (Website):https://en.mikron.ru/ (Business Reg No):1027700073466 (Russia). Tax ID No. 7735007358 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15324 +OULD AMAR,Ahmad,,,,,,,,,00/00/1977,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1977,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1977,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1977,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1978,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1978,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1978,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1978,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1979,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1979,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1979,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1979,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1980,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1980,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1980,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1980,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1981,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1981,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1981,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1981,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1982,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1982,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1982,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD AMAR,Ahmad,,,,,,,,,00/00/1982,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1977,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1977,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1977,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1977,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1978,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1978,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1978,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1978,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1979,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1979,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1979,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1979,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1980,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1980,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1980,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1980,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1981,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1981,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1981,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1981,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1982,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1982,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1982,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR,ABDERRAHMANE,,,,,,عبد الرحمن ولد العامر,,,00/00/1982,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1977,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1977,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1977,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1977,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1978,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1978,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1978,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1978,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1979,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1979,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1979,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1979,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1980,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1980,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1980,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1980,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1981,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1981,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1981,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1981,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1982,Tabankort,Mali,Mali,,,,,,,,,,,Tabankort,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1982,Tabankort,Mali,Mali,,,,,,,,,,,In Khalil,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1982,Tabankort,Mali,Mali,,,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD EL AMAR OULD SIDAHMED LOUKBEITI,Abderrahmane,,,,,,,,,00/00/1982,Tabankort,Mali,Mali,,,,,,,,,,,Al Moustarat,,Mali,"(UK Sanctions List Ref):AQD0101 (UN Ref):QDi.314 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Member of The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Arrested in April 2005 in Mauritania, escaped from Nouakchott jail on 26 Apr. 2006. Re-arrested in Sep. 2008 in Mali and released on 15 Apr. 2009. Associated with Mokhtar Belmokhtar (QDi.136). Father’s name is Leewemere. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278298",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12860 +OULD MOHAMED EL KHAIRY,Hamada,Ould Mohamed,Lemine,,,,,,,00/00/1970,Nouakchott,Mauritania,(1) Mauritania. (2) Mali,A1447120,Mali number. Expired on 19 Oct. 2011,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0188 (UN Ref):QDi.315 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Has provided logistical support to the Sahelian group Al Moulathamine, linked with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). International arrest warrant issued by Mauritania. Mother’s name is Tijal Bint Mohamed Dadda. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278393",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12859 +OULD MOHAMED EL KHAIRY,Hamada,,,,,,حماده ولد محمد الخيري,,,00/00/1970,Nouakchott,Mauritania,(1) Mauritania. (2) Mali,A1447120,Mali number. Expired on 19 Oct. 2011,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0188 (UN Ref):QDi.315 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Has provided logistical support to the Sahelian group Al Moulathamine, linked with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). International arrest warrant issued by Mauritania. Mother’s name is Tijal Bint Mohamed Dadda. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278393",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12859 +OULD MOHAMED SALEM,Abdarrahmane,ould Mohamed el Houcein,,,,,,,,00/00/1981,,Saudi Arabia,Mauritania,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0093 (UN Ref):QDi.298 Pakistan-based senior Al-Qaida (QDe.004) leader also associated with The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Wanted by Mauritanian authorities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555823,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,28/09/2011,15/09/2011,31/12/2020,12148 +OULD MUHAMMAD SALIM,ABD AL-RAHMAN,OULD MUHAMMAD AL-HUSAYN,,,,,عبد الرحمن ولد محمد الحسين ولد محمد سليم,,,00/00/1981,,Saudi Arabia,Mauritania,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0093 (UN Ref):QDi.298 Pakistan-based senior Al-Qaida (QDe.004) leader also associated with The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Wanted by Mauritanian authorities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555823,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,28/09/2011,15/09/2011,31/12/2020,12148 +OUNI HARZI,ALI,BEN TAHER,BEN FALEH,,,,علي بن الطاھر بن الفالح العوني الحرزي,,,09/03/1986,Ariana,Tunisia,Tunisia,W342058,Tunisian. Issued on 14.3.2011. Expires on 13.3.2016,08705184,Tunisian. Issued on 24.2.2011.,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0131 (UN Ref):QDi.353 Physical description: eye colour: brown; height: 171cm. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Previous occupation: trading agent. A member of Ansar al-Shari’a in Tunisia (QDe.143), active in recruitment of foreign terrorist fighters and arms smuggling. Detained and sentenced to 30 months imprisonment for planning terrorist acts in 2005 in Tunisia. Planned and perpetrated the attack against the Consulate of the United States in Benghazi, Libya on 11 Sep. 2012. Arrest warrant issued by the Tunisian National Guard (as at Mar. 2015). Father’s name is Taher Ouni Harzi, mother’s name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5860630. Address country Syria (located in as at Mar. 2015), Iraq (possible alternative location as at Mar. 2015)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/04/2015,10/04/2015,12/01/2022,13247 +OUNI HARZI,ALI,BEN TAHER,BEN FALEH,,,,علي بن الطاھر بن الفالح العوني الحرزي,,,09/03/1986,Ariana,Tunisia,Tunisia,W342058,Tunisian. Issued on 14.3.2011. Expires on 13.3.2016,08705184,Tunisian. Issued on 24.2.2011.,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0131 (UN Ref):QDi.353 Physical description: eye colour: brown; height: 171cm. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Previous occupation: trading agent. A member of Ansar al-Shari’a in Tunisia (QDe.143), active in recruitment of foreign terrorist fighters and arms smuggling. Detained and sentenced to 30 months imprisonment for planning terrorist acts in 2005 in Tunisia. Planned and perpetrated the attack against the Consulate of the United States in Benghazi, Libya on 11 Sep. 2012. Arrest warrant issued by the Tunisian National Guard (as at Mar. 2015). Father’s name is Taher Ouni Harzi, mother’s name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5860630. Address country Syria (located in as at Mar. 2015), Iraq (possible alternative location as at Mar. 2015)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/04/2015,10/04/2015,12/01/2022,13247 +OUNI HARZI,ALI,BEN TAHER,BEN FALEH,,,,علي بن الطاھر بن الفالح العوني الحرزي,,,09/03/1986,Ariana,Tunisia,Tunisia,W342058,Tunisian. Issued on 14.3.2011. Expires on 13.3.2016,08705184,Tunisian. Issued on 24.2.2011.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0131 (UN Ref):QDi.353 Physical description: eye colour: brown; height: 171cm. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Previous occupation: trading agent. A member of Ansar al-Shari’a in Tunisia (QDe.143), active in recruitment of foreign terrorist fighters and arms smuggling. Detained and sentenced to 30 months imprisonment for planning terrorist acts in 2005 in Tunisia. Planned and perpetrated the attack against the Consulate of the United States in Benghazi, Libya on 11 Sep. 2012. Arrest warrant issued by the Tunisian National Guard (as at Mar. 2015). Father’s name is Taher Ouni Harzi, mother’s name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5860630. Address country Syria (located in as at Mar. 2015), Iraq (possible alternative location as at Mar. 2015)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/04/2015,10/04/2015,12/01/2022,13247 +OUNI HARZI,ALI,BEN TAHER,BEN FALEH,,,,علي بن الطاھر بن الفالح العوني الحرزي,,,09/03/1986,Ariana,Tunisia,Tunisia,W342058,Tunisian. Issued on 14.3.2011. Expires on 13.3.2016,08705184,Tunisian. Issued on 24.2.2011.,,18 Mediterranean Street,Ariana,,,,,,Tunisia,"(UK Sanctions List Ref):AQD0131 (UN Ref):QDi.353 Physical description: eye colour: brown; height: 171cm. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Previous occupation: trading agent. A member of Ansar al-Shari’a in Tunisia (QDe.143), active in recruitment of foreign terrorist fighters and arms smuggling. Detained and sentenced to 30 months imprisonment for planning terrorist acts in 2005 in Tunisia. Planned and perpetrated the attack against the Consulate of the United States in Benghazi, Libya on 11 Sep. 2012. Arrest warrant issued by the Tunisian National Guard (as at Mar. 2015). Father’s name is Taher Ouni Harzi, mother’s name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5860630. Address country Syria (located in as at Mar. 2015), Iraq (possible alternative location as at Mar. 2015)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/04/2015,10/04/2015,12/01/2022,13247 +OUNI HARZI,Tarak,Ben Taher,Ben Faleh,,,,طارق بن الطاھر بن الفالح العوني الحرزي,,,03/05/1982,Tunis,Tunisia,Tunisia,Z050399,Tunisian. Issued on 9.12.2003. Expired on 8.12.2008.,04711809,Tunisian National Identity Card number. Issued on 13.11.2003.,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0320 (UN Ref):QDi.354 Physical description: eye colour: brown; height: 172cm. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Previous occupation: worker. A dangerous and active member of Al Qaida in Iraq (QDe.115) in 2004, also active in facilitating and hosting members of Ansar al-Shari’a in Tunisia (QDe.143) in Syria. Sentenced, in absentia, on 30 October 2007, to 24 years imprisonment for terrorist activities by the Appeals Court of Tunis. Father’s name is Taher Ouni Harzi, mother’s name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5860633. Address country Syria (as at March 2015), Iraq (possibly as at March 2015), (previous location)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/04/2015,10/04/2015,12/01/2022,13248 +OUNI HARZI,Tarak,Ben Taher,Ben Faleh,,,,طارق بن الطاھر بن الفالح العوني الحرزي,,,03/05/1982,Tunis,Tunisia,Tunisia,Z050399,Tunisian. Issued on 9.12.2003. Expired on 8.12.2008.,04711809,Tunisian National Identity Card number. Issued on 13.11.2003.,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0320 (UN Ref):QDi.354 Physical description: eye colour: brown; height: 172cm. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Previous occupation: worker. A dangerous and active member of Al Qaida in Iraq (QDe.115) in 2004, also active in facilitating and hosting members of Ansar al-Shari’a in Tunisia (QDe.143) in Syria. Sentenced, in absentia, on 30 October 2007, to 24 years imprisonment for terrorist activities by the Appeals Court of Tunis. Father’s name is Taher Ouni Harzi, mother’s name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5860633. Address country Syria (as at March 2015), Iraq (possibly as at March 2015), (previous location)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/04/2015,10/04/2015,12/01/2022,13248 +OUNI HARZI,Tarak,Ben Taher,Ben Faleh,,,,طارق بن الطاھر بن الفالح العوني الحرزي,,,03/05/1982,Tunis,Tunisia,Tunisia,Z050399,Tunisian. Issued on 9.12.2003. Expired on 8.12.2008.,04711809,Tunisian National Identity Card number. Issued on 13.11.2003.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0320 (UN Ref):QDi.354 Physical description: eye colour: brown; height: 172cm. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Previous occupation: worker. A dangerous and active member of Al Qaida in Iraq (QDe.115) in 2004, also active in facilitating and hosting members of Ansar al-Shari’a in Tunisia (QDe.143) in Syria. Sentenced, in absentia, on 30 October 2007, to 24 years imprisonment for terrorist activities by the Appeals Court of Tunis. Father’s name is Taher Ouni Harzi, mother’s name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5860633. Address country Syria (as at March 2015), Iraq (possibly as at March 2015), (previous location)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/04/2015,10/04/2015,12/01/2022,13248 +OUNI HARZI,Tarak,Ben Taher,Ben Faleh,,,,طارق بن الطاھر بن الفالح العوني الحرزي,,,03/05/1982,Tunis,Tunisia,Tunisia,Z050399,Tunisian. Issued on 9.12.2003. Expired on 8.12.2008.,04711809,Tunisian National Identity Card number. Issued on 13.11.2003.,,18 Mediterranean Street,Ariana,,,,,,Tunisia,"(UK Sanctions List Ref):AQD0320 (UN Ref):QDi.354 Physical description: eye colour: brown; height: 172cm. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Previous occupation: worker. A dangerous and active member of Al Qaida in Iraq (QDe.115) in 2004, also active in facilitating and hosting members of Ansar al-Shari’a in Tunisia (QDe.143) in Syria. Sentenced, in absentia, on 30 October 2007, to 24 years imprisonment for terrorist activities by the Appeals Court of Tunis. Father’s name is Taher Ouni Harzi, mother’s name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5860633. Address country Syria (as at March 2015), Iraq (possibly as at March 2015), (previous location)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/04/2015,10/04/2015,12/01/2022,13248 +OURJMAN,Mohamed,,,,,,,,,00/00/1966,Damascus,Syria,Syria,,,,,Former Minister of Information,,,,,,,,,"(UK Sanctions List Ref):SYR0167 (UK Statement of Reasons):Former Minister of Information; participated in, benefited from, or otherwise supported the Syrian regime (Gender):Male",Individual,Primary name,,Syria,14/11/2016,31/12/2020,17/02/2022,13400 +OVERSEAS PETROLEUM COMPANY,,,,,,,,,,,,,,,,,,,Dunant Street,Snoubra Sector,,,,Beirut,,Lebanon,(UK Sanctions List Ref):SYR0321 Oil sector (UK Statement of Reasons):Providing support to the Syrian regime and benefitting from the regime by organising covert shipments of oil to the Syrian regime.,Entity,AKA,,Syria,23/07/2014,31/12/2020,31/12/2020,13026 +OVERSEAS PETROLEUM TRADING,,,,,,,,,,,,,,,,,,,Dunant Street,Snoubra Sector,,,,Beirut,,Lebanon,(UK Sanctions List Ref):SYR0321 Oil sector (UK Statement of Reasons):Providing support to the Syrian regime and benefitting from the regime by organising covert shipments of oil to the Syrian regime.,Entity,Primary name,,Syria,23/07/2014,31/12/2020,31/12/2020,13026 +OVERSEAS PETROLEUM TRADING SAL (OFF-SHORE),,,,,,,,,,,,,,,,,,,Dunant Street,Snoubra Sector,,,,Beirut,,Lebanon,(UK Sanctions List Ref):SYR0321 Oil sector (UK Statement of Reasons):Providing support to the Syrian regime and benefitting from the regime by organising covert shipments of oil to the Syrian regime.,Entity,AKA,,Syria,23/07/2014,31/12/2020,31/12/2020,13026 +OVSYANNIKOV,Dmitry,Vladimirovich,,,,,Дмитрий Владимирович Овсянников,,,21/02/1977,Omsk,USSR (now Russian Federation),Russia,,,,,(1) Former Governor of the City of Sevastopol (2) Later Deputy Minister of Trade and Industry of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS0045 (UK Statement of Reasons):Ovsyannikov was the Governor of Sevastopol, appointed as acting Governor of Sevastopol by President Putin in July 2016 and elected in the elections of 10 September 2017, organised by the Russian Federation in the illegally annexed city of Sevastopol. In this capacity, he worked for further integration of the illegally annexed Sevastopol region into the Russian Federation, and was as such responsible for actively supporting or implementing actions or policies which undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. He served until 2019 and was then appointed as Deputy Minister of Industry and Trade of the Russian Federation until April 2020. (Gender):Male",Individual,Primary name,,Russia,21/11/2017,31/12/2020,16/09/2022,13558 +OYUN,Dina,Ivanovna,,,,,Дина Ивановна ОЮН,,,25/06/1963,Kyzyl,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0953 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14904 +OZEROV,Viktor,Aleekseevich,,,,,,,,05/01/1958,"Abakan, Khakassia",Russia,Russia,,,,,(1) Former Chairman of the Security and Defence Committee of the Federation Council of the Russian Federation (2) Former Member of the Federation Council,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0046 (UK Statement of Reasons):Former Chairman of the Security and Defense Committee of the Federation Council of the Russian Federation. On 1 March 2014 Ozerov, on behalf of the Security and Defense Committee of the Federation Council, publicly supported in the Federation Council the deployment of Russian forces in Ukraine. In July 2017, he filed his resignation as the Chairman of the Security and Defence Committee. He is a former member of the Council and is a member of the Committee on internal regulation and parliamentary affairs. On 10 October 2017, with a decree N 372-SF, Ozerov was included in the temporary commission of the Federation Council on protection of state sovereignty and prevention of interference in the internal affairs of the Russian Federation. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12912 +OZEROV,Viktor,Alekseevich,,,,,,,,05/01/1958,"Abakan, Khakassia",Russia,Russia,,,,,(1) Former Chairman of the Security and Defence Committee of the Federation Council of the Russian Federation (2) Former Member of the Federation Council,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0046 (UK Statement of Reasons):Former Chairman of the Security and Defense Committee of the Federation Council of the Russian Federation. On 1 March 2014 Ozerov, on behalf of the Security and Defense Committee of the Federation Council, publicly supported in the Federation Council the deployment of Russian forces in Ukraine. In July 2017, he filed his resignation as the Chairman of the Security and Defence Committee. He is a former member of the Council and is a member of the Committee on internal regulation and parliamentary affairs. On 10 October 2017, with a decree N 372-SF, Ozerov was included in the temporary commission of the Federation Council on protection of state sovereignty and prevention of interference in the internal affairs of the Russian Federation. (Gender):Male",Individual,Primary name,,Russia,18/03/2014,31/12/2020,16/09/2022,12912 +OZIA MAZIO,Dieudonne,,,,,,DIEUDONNÉ OZIA MAZIO,,,06/06/1949,Ariwara,Congo (Democratic Republic),Congo (Democratic Republic),,,,,Former president of the Fédération des entreprises congolaises (FEC) in Aru territory,,,,,,,,,"(UK Sanctions List Ref):DRC0027 (UN Ref):CDi.027 While president of the Fédération des entreprises congolaises (FEC) in Aru territory, Dieudonné Ozia Mazio is believed to have died in Ariwara on 23 September 2008. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275495 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8705 +PAASBAN-E-AHLE-HADIS,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +PAASBAN-E-KASHMIR,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +PAASBAN-I-AHLE-HADITH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +PADSHAH KHAN,SHER MOHAMMAD ABBAS,STANEKZAI,,,,Maulavi,شیر محمد عباس استانکزی پادشاه خان,,,00/00/1963,"Qala-e-Abbas, Shah Mazar area, Baraki Barak District, Logar Province",Afghanistan,Afghanistan,,,,,(1) Deputy Minister of Public Health under the Taliban regime (2) Deputy Minister of Foreign Affairs under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0051 (UN Ref):TAi.067 Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7468 +PAE,Won,Chol,,,,,,,,30/08/1969,Pyongyang,North Korea,North Korea,654310150,Diplomatic Passport,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0026 Associations with Pan Systems, Reconnaissance General Bureau, Glocom, International Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Pae Won Chol has been identified by the UN Panel of Experts as a DPRK national operating Pan Systems Pyongyang. Pan Systems Pyongyang has been designated by the European Union for assisting in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related materiel to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13597 +PAEK,SE BONG,,,,,,,,,21/03/1938,,,North Korea,,,,,(1) Former Chairman of the Second Economic Committee (2) Former member of the National Defense Commission (3) Former Vice Director of Munitions Industry Department (MID),,,,,,,,DPRK,"(UK Sanctions List Ref):DPR0251 (UN Ref):KPi.048 Paek Se Bong is a former Chairman of the Second Economic Committee, a former member of the National Defense Commission, and a former Vice Director of Munitions Industry Department (MID)",Individual,AKA,Good quality,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13478 +PAEK MA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0103 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK vessel M/V PAEK MA was involved in ship-to-ship transfer operations for oil in mid-January 2018. Listed as asset of Paekma Shipping Co (a.k.a First Oil JV Co Ltd) (OFSI ID: 13640, UN Reference Number: UN Ref KPe.069) (IMO number):9066978 (Flag of ship):North Korea (Previous flags):Panama. South Korea (Type of ship):Oil tanker (Tonnage of ship):1181 (Length of ship):77 (Year built):1993",Ship,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13654 +PAEKMA SHIPPING CO,,,,,,,,,,,,,,,,,,,Jongbaek 1-dong,,,,Rakrang-guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0184 (UN Ref):KPe.069 Registered owner of the DPRK tanker PAEK MA, which was involved in ship-to-ship transfer operations for oil in mid-January 2018.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13640 +PAK,Chae-Kyong,,,,,,,,,10/06/1933,North Hamgyong Province,North Korea,North Korea,554410661,,,,Deputy Director Korean People's Armed Forces,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0046 (UK Statement of Reasons):General of the Korean People's Army, Former Deputy Director of the General Political Department of the People’s Armed Forces and former military adviser to late Kim Jong-Il. Present at Kim Jong Un’s inspection of Strategic Rocket Force Command. Member of the Central Committee of the Workers’ Party of Korea. President of the Korean Committee of Veterans against Imperalism (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11036 +PAK,Chae-Kyong,,,,,,,,,00/00/1933,North Hamgyong Province,North Korea,North Korea,554410661,,,,Deputy Director Korean People's Armed Forces,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0046 (UK Statement of Reasons):General of the Korean People's Army, Former Deputy Director of the General Political Department of the People’s Armed Forces and former military adviser to late Kim Jong-Il. Present at Kim Jong Un’s inspection of Strategic Rocket Force Command. Member of the Central Committee of the Workers’ Party of Korea. President of the Korean Committee of Veterans against Imperalism (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11036 +PAK,Chae-Kyong,,,,,,,,,00/00/1934,North Hamgyong Province,North Korea,North Korea,554410661,,,,Deputy Director Korean People's Armed Forces,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0046 (UK Statement of Reasons):General of the Korean People's Army, Former Deputy Director of the General Political Department of the People’s Armed Forces and former military adviser to late Kim Jong-Il. Present at Kim Jong Un’s inspection of Strategic Rocket Force Command. Member of the Central Committee of the Workers’ Party of Korea. President of the Korean Committee of Veterans against Imperalism (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11036 +PAK,Chun,San,,,,,,,,18/12/1953,Pyongyang,North Korea,North Korea,PS472220097,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0027 Associations with Korea National Insurance Corporation (KNIC) (UK Statement of Reasons):Director in the reinsurance department of the Korea National Insurance Corporation (KNIC) based in the headquarters in Pyongyang at least until December 2015 and former authorised chief representative of KNIC in Hamburg, continues to act for or on behalf of KNIC or at its direction. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,03/07/2015,31/12/2020,31/12/2020,13259 +PAK,Chun-San,,,,,,,,,18/12/1953,Pyongyang,North Korea,North Korea,PS472220097,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0027 Associations with Korea National Insurance Corporation (KNIC) (UK Statement of Reasons):Director in the reinsurance department of the Korea National Insurance Corporation (KNIC) based in the headquarters in Pyongyang at least until December 2015 and former authorised chief representative of KNIC in Hamburg, continues to act for or on behalf of KNIC or at its direction. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,03/07/2015,31/12/2020,31/12/2020,13259 +PAK,Daniel,,,,,,,,,23/05/1957,North Hamgyong,North Korea,North Korea,290221242,Diplomatic Passport,,,(1) CEO of the Office in Malaysia of KS Information Technology Corp. (2) DPRK Government official (3) Deputy in the Supreme People’s Assembly of DPRK,,,,,Seri Kembangan,Selangor,43300,Malaysia,"(UK Sanctions List Ref):DPR0028 Associations with Mansudae Overseas Project Group, Reconnaissance General Bureau, MKP Capital of the MKP Group, Ocean Maritime Management, Nice Field International, and Korea Kwangsong Banking Corporation. (UK Statement of Reasons):PAK IN SU has been identified by the UN Panel of Experts as being involved in activities related to the sale of coal and minerals from DRPK in Malaysia in violation of the prohibitions imposed by the United Nations Security Council Resolutions. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,03/03/2022,13602 +PAK,Daniel,,,,,,,,,22/05/1957,North Hamgyong,North Korea,North Korea,290221242,Diplomatic Passport,,,(1) CEO of the Office in Malaysia of KS Information Technology Corp. (2) DPRK Government official (3) Deputy in the Supreme People’s Assembly of DPRK,,,,,Seri Kembangan,Selangor,43300,Malaysia,"(UK Sanctions List Ref):DPR0028 Associations with Mansudae Overseas Project Group, Reconnaissance General Bureau, MKP Capital of the MKP Group, Ocean Maritime Management, Nice Field International, and Korea Kwangsong Banking Corporation. (UK Statement of Reasons):PAK IN SU has been identified by the UN Panel of Experts as being involved in activities related to the sale of coal and minerals from DRPK in Malaysia in violation of the prohibitions imposed by the United Nations Security Council Resolutions. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,03/03/2022,13602 +PAK,In,Su,,,,,,,,23/05/1957,North Hamgyong,North Korea,North Korea,290221242,Diplomatic Passport,,,(1) CEO of the Office in Malaysia of KS Information Technology Corp. (2) DPRK Government official (3) Deputy in the Supreme People’s Assembly of DPRK,,,,,Seri Kembangan,Selangor,43300,Malaysia,"(UK Sanctions List Ref):DPR0028 Associations with Mansudae Overseas Project Group, Reconnaissance General Bureau, MKP Capital of the MKP Group, Ocean Maritime Management, Nice Field International, and Korea Kwangsong Banking Corporation. (UK Statement of Reasons):PAK IN SU has been identified by the UN Panel of Experts as being involved in activities related to the sale of coal and minerals from DRPK in Malaysia in violation of the prohibitions imposed by the United Nations Security Council Resolutions. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,03/03/2022,13602 +PAK,In,Su,,,,,,,,22/05/1957,North Hamgyong,North Korea,North Korea,290221242,Diplomatic Passport,,,(1) CEO of the Office in Malaysia of KS Information Technology Corp. (2) DPRK Government official (3) Deputy in the Supreme People’s Assembly of DPRK,,,,,Seri Kembangan,Selangor,43300,Malaysia,"(UK Sanctions List Ref):DPR0028 Associations with Mansudae Overseas Project Group, Reconnaissance General Bureau, MKP Capital of the MKP Group, Ocean Maritime Management, Nice Field International, and Korea Kwangsong Banking Corporation. (UK Statement of Reasons):PAK IN SU has been identified by the UN Panel of Experts as being involved in activities related to the sale of coal and minerals from DRPK in Malaysia in violation of the prohibitions imposed by the United Nations Security Council Resolutions. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,03/03/2022,13602 +PAK,Jae-Gyong,,,,,General,,,,10/06/1933,North Hamgyong Province,North Korea,North Korea,554410661,,,,Deputy Director Korean People's Armed Forces,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0046 (UK Statement of Reasons):General of the Korean People's Army, Former Deputy Director of the General Political Department of the People’s Armed Forces and former military adviser to late Kim Jong-Il. Present at Kim Jong Un’s inspection of Strategic Rocket Force Command. Member of the Central Committee of the Workers’ Party of Korea. President of the Korean Committee of Veterans against Imperalism (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11036 +PAK,Jae-Gyong,,,,,General,,,,00/00/1933,North Hamgyong Province,North Korea,North Korea,554410661,,,,Deputy Director Korean People's Armed Forces,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0046 (UK Statement of Reasons):General of the Korean People's Army, Former Deputy Director of the General Political Department of the People’s Armed Forces and former military adviser to late Kim Jong-Il. Present at Kim Jong Un’s inspection of Strategic Rocket Force Command. Member of the Central Committee of the Workers’ Party of Korea. President of the Korean Committee of Veterans against Imperalism (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11036 +PAK,Jae-Gyong,,,,,General,,,,00/00/1934,North Hamgyong Province,North Korea,North Korea,554410661,,,,Deputy Director Korean People's Armed Forces,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0046 (UK Statement of Reasons):General of the Korean People's Army, Former Deputy Director of the General Political Department of the People’s Armed Forces and former military adviser to late Kim Jong-Il. Present at Kim Jong Un’s inspection of Strategic Rocket Force Command. Member of the Central Committee of the Workers’ Party of Korea. President of the Korean Committee of Veterans against Imperalism (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11036 +PAK,Jong,Chon,,,,,,,,,,,North Korea,,,,,(1) Chief of the Korean People’s Armed Forces (2) Member of the Presidium of the Politburo of the ruling party’s Central Committee (3) Secretary of the Central Committee (4) Member of the Central Military Commission,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0047 (UK Statement of Reasons):Vice Marshall in the Korean People’s Army, Chief of the Korean People’s Armed Forces, Deputy Chief of Staff and Director of the Firepower Command Department. Chief of the Military Headquarters and Director of the Artillery Command Department. Member of the Central Military Commission of the Workers’ Party of Korea, which is a key body for national defence matters in the DPRK. Member and Secretary of the Presidium of the Politburo of the ruling Party’s Central Committee. In these roles, Pak Jong-Chon has proven to be responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,03/03/2022,13367 +PAK,Jong-Chon,,,,,Vice Marshall,,,,,,,North Korea,,,,,(1) Chief of the Korean People’s Armed Forces (2) Member of the Presidium of the Politburo of the ruling party’s Central Committee (3) Secretary of the Central Committee (4) Member of the Central Military Commission,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0047 (UK Statement of Reasons):Vice Marshall in the Korean People’s Army, Chief of the Korean People’s Armed Forces, Deputy Chief of Staff and Director of the Firepower Command Department. Chief of the Military Headquarters and Director of the Artillery Command Department. Member of the Central Military Commission of the Workers’ Party of Korea, which is a key body for national defence matters in the DPRK. Member and Secretary of the Presidium of the Politburo of the ruling Party’s Central Committee. In these roles, Pak Jong-Chon has proven to be responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,03/03/2022,13367 +PAK UD,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Gebang,Kecamatan Masaran,Kabupaten Sragen,,,Jawa Tengah,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +PAK UD,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Taman Fajar,Kecamatan Probolinggo,Kabupaten Lampung Timur,,,Lampung,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +PAKHOMOV,Sergey,Alexandrovich,,,,,Пахомов Сергей Александрович,,,06/08/1975,Zagorsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0479 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14424 +PAKISTAN RELIEF FOUNDATION,,,,,,,,,,,,,,,,,,,Gulistan-e-Jauhar,Block 12,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0010 (UN Ref):QDe.121 Regional offices in Pakistan: Bahawalpur, Bawalnagar, Gilgit, Islamabad, Mirpur Khas, Tando-Jan-Muhammad. Akhtarabad Medical Camp is in Spin Boldak, Afghanistan. Registered by members of Jaish-i-Mohammed (QDe.019). Associated with Harakat ul-Mujahidin/ HUM (QDe.008), Lashkar I Jhanghvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235573",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,19/08/2005,17/08/2005,31/12/2020,8703 +PAKISTAN RELIEF FOUNDATION,,,,,,,,,,,,,,,,,,,ST-1/A,Gulsahn-e-Iqbal,Block 2,,,Karachi,25300,Pakistan,"(UK Sanctions List Ref):AQD0010 (UN Ref):QDe.121 Regional offices in Pakistan: Bahawalpur, Bawalnagar, Gilgit, Islamabad, Mirpur Khas, Tando-Jan-Muhammad. Akhtarabad Medical Camp is in Spin Boldak, Afghanistan. Registered by members of Jaish-i-Mohammed (QDe.019). Associated with Harakat ul-Mujahidin/ HUM (QDe.008), Lashkar I Jhanghvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235573",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,19/08/2005,17/08/2005,31/12/2020,8703 +PAKISTANI RELIEF FOUNDATION,,,,,,,,,,,,,,,,,,,Gulistan-e-Jauhar,Block 12,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0010 (UN Ref):QDe.121 Regional offices in Pakistan: Bahawalpur, Bawalnagar, Gilgit, Islamabad, Mirpur Khas, Tando-Jan-Muhammad. Akhtarabad Medical Camp is in Spin Boldak, Afghanistan. Registered by members of Jaish-i-Mohammed (QDe.019). Associated with Harakat ul-Mujahidin/ HUM (QDe.008), Lashkar I Jhanghvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235573",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,19/08/2005,17/08/2005,31/12/2020,8703 +PAKISTANI RELIEF FOUNDATION,,,,,,,,,,,,,,,,,,,ST-1/A,Gulsahn-e-Iqbal,Block 2,,,Karachi,25300,Pakistan,"(UK Sanctions List Ref):AQD0010 (UN Ref):QDe.121 Regional offices in Pakistan: Bahawalpur, Bawalnagar, Gilgit, Islamabad, Mirpur Khas, Tando-Jan-Muhammad. Akhtarabad Medical Camp is in Spin Boldak, Afghanistan. Registered by members of Jaish-i-Mohammed (QDe.019). Associated with Harakat ul-Mujahidin/ HUM (QDe.008), Lashkar I Jhanghvi (LJ) (QDe.096) and Lashkar-e-Tayyiba (QDe.118). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235573",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,19/08/2005,17/08/2005,31/12/2020,8703 +PAKISTANI TALIBAN,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0079 (UN Ref):QDe.132 Tehrik-e Taliban is based in the tribal areas along the Afghanistan/Pakistan border. Formed in 2007, its leader is Maulana Fazlullah (QDi.352). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282130",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/08/2011,29/07/2011,31/12/2020,12032 +PAKISTANI TALIBAN,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0079 (UN Ref):QDe.132 Tehrik-e Taliban is based in the tribal areas along the Afghanistan/Pakistan border. Formed in 2007, its leader is Maulana Fazlullah (QDi.352). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282130",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/08/2011,29/07/2011,31/12/2020,12032 +PAKPOUR,Mohammad,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0016 (UK Statement of Reasons):Commander of IRGC Ground Forces (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,31/12/2020,11235 +PAKPUR,Mohammad,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0016 (UK Statement of Reasons):Commander of IRGC Ground Forces (Gender):Male,Individual,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,31/12/2020,11235 +PAKREEV,Vladimir,Gennadievich,,,,,ПАКРЕЕВ Владимир Геннадьевич,Cyrillic,Russian,21/07/1977,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1195 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15147 +PAKREYEV,Vladimir,Gennadyevich,,,,,,,,21/07/1977,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1195 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15147 +PALESTINIAN ISLAMIC JIHAD (PIJ),,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0038 (UK Statement of Reasons):Palestinian Islamic Jihad (PIJ) is a Palestinian Islamist terrorist organization whose has stated that its objective is the destruction of the State of Israel, and which has been responsible for numerous terrorist attacks. PIJ has, through past attacks, demonstrated its willingness to use violence to further its political objectives. The movement has also praised and encouraged violence.",Entity,Primary name,,Counter-Terrorism (International),02/11/2001,31/12/2020,31/12/2020,7396 +PAN SYSTEMS PYONGYANG,,,,,,,,,,,,,,,,,,,Room 818,Pothonggang Hotel,,Ansan-Dong,Pyongchon district,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0064 Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. (UK Statement of Reasons):Pan Systems has assisted in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related materiel to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau, which has been designated by the United Nations.",Entity,Primary name,,Democratic People's Republic of Korea,16/10/2017,31/12/2020,31/12/2020,13553 +PANESH,Kaplan,Mugdinovich,,,,,Панеш Каплан Мугдинович,,,04/09/1974,Adygeysk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0475 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14420 +PANFEROV,Alexei,Valeryevich,,,,,Алексей Валерьевич Панферов,Cyrillic,Russian,30/09/1970,,,Russia,761897623,Russia,,,Deputy Chairman of the Management Board of SOVCOMBANK,,,,,,,,,"(UK Sanctions List Ref):RUS1023 (UK Statement of Reasons):Alexey Valeryevich PANFEROV is the Deputy Chairman of the Management Board of SOVCOMBANK. In his role, PANFEROV is a member of and associated with SOVCOMBANK. SOVCOMBANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Male",Individual,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15354 +PANFEROV,Alexey,Valeryevich,,,,,Алексей Валерьевич Панферов,Cyrillic,Russian,30/09/1970,,,Russia,761897623,Russia,,,Deputy Chairman of the Management Board of SOVCOMBANK,,,,,,,,,"(UK Sanctions List Ref):RUS1023 (UK Statement of Reasons):Alexey Valeryevich PANFEROV is the Deputy Chairman of the Management Board of SOVCOMBANK. In his role, PANFEROV is a member of and associated with SOVCOMBANK. SOVCOMBANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15354 +PANGA,Kawa,,,,,,,,,20/08/1973,Bunia,Congo (Democratic Republic),Congo (Democratic Republic),,,,,,,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0045 (UN Ref):CDi.009 Placed in prison in Bunia in April 2005 for sabotage of the Ituri peace process. Arrested by Congolese authorities in October 2005, acquitted by the Court of Appeal in Kisangani, subsequently transferred to the judicial authorities in Kinshasa on new charges of crimes against humanity, war crimes, murder, aggravated assault and battery. In August 2014, a DRC military court in Kisangani convicted him of war crimes and crimes against humanity, sentenced him to nine years in prison, and ordered him to pay approximately $85,000 to his victims. He served his sentence and resides in Uganda as of May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272933. Address country Uganda (as of May 2016). (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,20/01/2021,8708 +PANGATES INTERNATIONAL CORPS. LTD,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0322 Oil and Gas Sector (UK Statement of Reasons):Pangates acts as an intermediary in the supply of oil to the Syrian regime. Therefore, it is providing support to and benefiting from the Syrian regime. It is also associated with listed Syrian oil company Sytrol.",Entity,Primary name,,Syria,22/10/2014,31/12/2020,31/12/2020,13165 +PANGATES INTERNATIONAL CORPS. LTD,,,,,,,,,,,,,,,,,,,Sharjah Airport International Free Zone,,,,PO Box 8177,,,United Arab Emirates,"(UK Sanctions List Ref):SYR0322 Oil and Gas Sector (UK Statement of Reasons):Pangates acts as an intermediary in the supply of oil to the Syrian regime. Therefore, it is providing support to and benefiting from the Syrian regime. It is also associated with listed Syrian oil company Sytrol.",Entity,Primary name,,Syria,22/10/2014,31/12/2020,31/12/2020,13165 +PANIN,Gennady,Olegovich,,,,,Панин Геннадий Олегович,,,13/06/1981,"Vereya, Moscow oblast",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0476 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14421 +PANKINA,Irina,Alexandrovna,,,,,Панькина Ирина Александровна,,,08/03/1986,"Mayachny, Bashkir ASSR",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0478 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14423 +PANKOV,Nikolai,Aleksandrovich,,,,,,,,02/12/1954,Marino,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1397 (UK Statement of Reasons):Nikolay Aleksandrovich PANKOV is a Deputy Minister of Defence and State Secretary with responsibility for Human Resources and personnel support matters. As such, he provides support for, and has oversight over, Russian armed forces involved in the invasion of Ukraine. In doing so, he has acted to destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty, or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15365 +PANKOV,Nikolay,Aleksandrovich,,,,,Никола́й Александрович Панко́в,Cyrillic,Russian,02/12/1954,Marino,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1397 (UK Statement of Reasons):Nikolay Aleksandrovich PANKOV is a Deputy Minister of Defence and State Secretary with responsibility for Human Resources and personnel support matters. As such, he provides support for, and has oversight over, Russian armed forces involved in the invasion of Ukraine. In doing so, he has acted to destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty, or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15365 +PANKOV,Nikolay,Vasilievich,,,,,Панков Николай Васильевич,,,05/01/1965,"Kavley, Gorky oblast",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0477 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14422 +PANTELEEV,Sergey,Mikhailovich,,,,,Пантелеев Сергей Михайлович,,,04/07/1951,"Zapolye , Babaevsky district , Vologda oblast",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0622 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14567 +PANTUS,Dmitry,Aleksandrovich,,,,,Дмитрий Александрович ПАНТУС,Cyrillic,Russian,06/09/1982,Grodno,Belarus,Belarus,,,,,Chairman of the State Authority for Military Industry of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):RUS1068 (UK Statement of Reasons):Dmitry Aleksandrovich PANTUS is an involved person under the Russia (Sanctions) (EU Exit) 2019. As the Chairman of the State Authority for Military Industry of the Republic of Belarus, he has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,24/03/2022,24/03/2022,12/07/2022,15011 +PANTUS,Dmitry,Aleksandrovich,,,,,Дзмітрый Аляксандравіч ПАНТУС,Cyrillic,Belarusian,06/09/1982,Grodno,Belarus,Belarus,,,,,Chairman of the State Authority for Military Industry of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):RUS1068 (UK Statement of Reasons):Dmitry Aleksandrovich PANTUS is an involved person under the Russia (Sanctions) (EU Exit) 2019. As the Chairman of the State Authority for Military Industry of the Republic of Belarus, he has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,24/03/2022,24/03/2022,12/07/2022,15011 +PANTUS,Dmitry,Aleksandrovich,,,,,Дзмітрый Аляксандравіч ПАНТУС,Cyrillic,Belarusian,06/09/1982,Grodno,Belarus,Belarus,,,,,Chairman of the State Authority for Military Industry of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):RUS1068 (UK Statement of Reasons):Dmitry Aleksandrovich PANTUS is an involved person under the Russia (Sanctions) (EU Exit) 2019. As the Chairman of the State Authority for Military Industry of the Republic of Belarus, he has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,24/03/2022,24/03/2022,12/07/2022,15011 +PANYAEV,Vladimir,,,,,,,,,25/11/1980,Serdobsk,Russia,,,,,,FSB Member,,,,,,,,,"(UK Sanctions List Ref):CHW0019 (UK Statement of Reasons):Vladimir Panyaev is a member of the FSB. Evidence including phone and travel records suggest that Vladimir Panyaev was present during the use of a chemical weapon in the attempted assassination of Russian opposition leader Alexey Navalny during his August 2020 visit to Siberia. A chemical weapon - a toxic nerve agent of the Novichok group - was used. Vladimir Panyaev was an FSB member who was present in Tomsk where Navalny was poisoned. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny is a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. There are reasonable grounds to suspect that Vladimir Panyaev in his capacity as a member of the Federal Security Service of the Russian Federation, was present in Tomsk at the time of the poisoning and was one of the key figures responsible for the preparation and use of a toxic nerve agent of the Novichok group in the attempted assassination of Alexey Navalny.",Individual,Primary name,,Chemical Weapons,20/08/2021,20/08/2021,20/08/2021,14133 +PAO SOVCOMFLOT,,,,,,,ПАО СОВКОМФЛОТ,Cyrillic,Russian,,,,,,,,,,3A Moyka River Embankment,,,,,St Petersburg,191186,Russia,"(UK Sanctions List Ref):RUS1097 (UK Statement of Reasons):SOVCOMFLOT is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia – namely, the energy sector. (Phone number):+7(495) 660-40-00 (Website):(1) sovcomflot.ru (2) www.scf-group.com (Email address):(1) info@scf-group.ru (2) pr@scf-group.ru (3) ir@scf-group.ru (Type of entity):Public Joint Stock Company (Subsidiaries):(1) OOO SCF Arctic (2) SCF Management Services (Cyprus) Ltd (3) PAO Novoship; (4) SCF management Services (St. Petersburg) Ltd (5) Sovcomflot (UK) Ltd (6) SCF Management Services (St. Petersburg) Ltd  subdivision in Yuzhno-Sakhalinsk (7) Sovcomflot (Cyprus) Ltd; (8) SCF Management Services (Novorossiysk) Ltd (9) SCF GEO",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,12/07/2022,15040 +PAPA SIX,,,,,,,,,,06/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +PAPA SIX,,,,,,,,,,02/02/1967,North Kivu/Rutshuru,Congo (Democratic Republic),Congo (Democratic Republic),,,,,"(1) Former RCD-G General (2) Founder of the National Congress for the People’s Defense, Senior Officer for the Rally for Congolese Democracy-Goma (RCD-G) (3) Officer for the Rwandan Patriotic Front (RPF)",,,,,,,,,"(UK Sanctions List Ref):DRC0046 (UN Ref):CDi.022 Former RCD-G General. Founder, National Congress for the People’s Defense, 2006, Senior Officer, Rally for Congolese Democracy-Goma (RCD-G), 1998-2006, Officer Rwandan Patriotic Front (RPF), 1992-1998. Laurent Nkunda was arrested by Rwandan authorities in Rwanda in January 2009 and replaced as the commander of the CNDP. Since then, he has been under house arrest in Kigali, Rwanda. DRC Government’s request to extradite Nkunda for crimes committed in eastern DRC has been refused by Rwanda. In 2010, Nkunda’s appeal for illegal detention was rejected by Rwandan court in Gisenyi, ruling that the matter should be examined by a military court. Nkunda’s lawyers appealed with the Rwandan Military Court. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270703 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8710 +PARCHIN CHEMICAL INDUSTRIES,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0167 (UN Ref):IRe.050 Branch of DIO, which produces ammunition, explosives, as well as solid propellants for rockets and missiles. [Old Reference # E.47.A.4] (Parent company):Defence Industries Organisation (DIO)",Entity,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,31/12/2020,9038 +PAREJA,Johnny,,,,,,,,,19/07/1981,Cebu City,Philippines,Philippines,,,,,,,,,,Atimonana,Quezon Province,,Philippines,(UK Sanctions List Ref):AQD0161 (UN Ref):QDi.242 Member of the Rajah Solaiman Movement (QDe.128). Father's name is Amorsolo Jarabata Pareja. Mother's name is Leonila Cambaya Rosalejos. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10662 +PAREJA,Khalil,,,,,,,,,19/07/1981,Cebu City,Philippines,Philippines,,,,,,,,,,Atimonana,Quezon Province,,Philippines,(UK Sanctions List Ref):AQD0161 (UN Ref):QDi.242 Member of the Rajah Solaiman Movement (QDe.128). Father's name is Amorsolo Jarabata Pareja. Mother's name is Leonila Cambaya Rosalejos. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10662 +PAREJA,DINNO AMOR,ROSALEJOS,,,,,,,,19/07/1981,Cebu City,Philippines,Philippines,,,,,,,,,,Atimonana,Quezon Province,,Philippines,(UK Sanctions List Ref):AQD0161 (UN Ref):QDi.242 Member of the Rajah Solaiman Movement (QDe.128). Father's name is Amorsolo Jarabata Pareja. Mother's name is Leonila Cambaya Rosalejos. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10662 +PARFENOV,Denis,Andreevich,,,,,Парфенов Денис Андреевич,,,22/09/1987,Moscow,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0623 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14568 +PARK,Young,Han,,,,,,,,,,,North Korea,,,,,Director of Beijing New Technology,,,,,,,,Malaysia,"(UK Sanctions List Ref):DPR0029 Associations with Pan Systems, Reconnaissance General Bureau, Glocom, International Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Director of Beijing New Technology which has been identified by the UN Panel of Experts as a front company of KOMID. KOMID was designated by the Sanctions Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Legal representative of Guangcaiweixing Trading Co. Ltd., which was identified by the UN Panel of Experts as the shipper of an intercepted shipment to Eritrea of military-related items in August 2012. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13594 +PARK,Young,Han,,,,,,,,,,,North Korea,,,,,Director of Beijing New Technology,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0029 Associations with Pan Systems, Reconnaissance General Bureau, Glocom, International Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Director of Beijing New Technology which has been identified by the UN Panel of Experts as a front company of KOMID. KOMID was designated by the Sanctions Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Legal representative of Guangcaiweixing Trading Co. Ltd., which was identified by the UN Panel of Experts as the shipper of an intercepted shipment to Eritrea of military-related items in August 2012. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13594 +PARK,Young,Han,,,,,,,,,,,North Korea,,,,,Director of Beijing New Technology,,,,,,,,Singapore,"(UK Sanctions List Ref):DPR0029 Associations with Pan Systems, Reconnaissance General Bureau, Glocom, International Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Director of Beijing New Technology which has been identified by the UN Panel of Experts as a front company of KOMID. KOMID was designated by the Sanctions Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Legal representative of Guangcaiweixing Trading Co. Ltd., which was identified by the UN Panel of Experts as the shipper of an intercepted shipment to Eritrea of military-related items in August 2012. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13594 +PARRA RIVERO,Luis,Eduardo,,,,,,,,07/07/1978,,Venezuela,Venezuela,,,V-14211633,,(1) National Assembly Deputy (2) Vice President of the National Assembly’s Permanent Commission on the Environment (3) Former Deputy of the democratically elected National Assembly of 2015,,,,,,,,,"(UK Sanctions List Ref):VEN0034 (UK Statement of Reasons):Luis Parra Rivero is a National Assembly Deputy (2021-2025) having been re-elected on 6 December 2020 in undemocratic parliamentary elections not recognised as free and fair by the UK. He was appointed Vice President of the National Assembly’s Permanent Commission on the Environment in January 2021. Parra Rivero had previously served as a National Assembly Deputy for the period 2016-2020. There are reasonable grounds to suspect that Parra has been involved in undermining democracy in Venezuela by taking office as NA President on 5 January 2020 under an illegitimate process. The evidence indicates that Parra didn’t have the quorum for a session, the session was not moderated by the previous President of the National Assembly and security forces blocked access to MPs that tried to enter the NA to participate in elections for a new National Assembly board. There are also reasonable grounds to suspect that Parra was involved with Operation Alacran, a scandal in which MPs were bribed, intimidated and coerced by the regime (or deputies co-opted by the regime) to not vote for opposition figurehead Juan Guaidó. There are lastly reasonable grounds to suspect that Parra has been involved in undermining democracy and the rule of law in Venezuela through his involvement in a corruption scandal related to the regime’s Committee of Supply and Demand (CLAP). There are also reasonable grounds to suspect that Parra is associated with person who is involved in undermining democracy in Venezuela (Nicolas Maduro), through aiding Maduro’s attacks on and attempts to control the National Assembly. (Gender):Male",Individual,Primary name,,Venezuela,30/06/2020,31/12/2020,17/02/2022,13849 +PARS AVIATION SERVICES COMPANY,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0168 (UN Ref):IRe.051 Maintains various aircraft, including MI-171, used by IRGC Air Force. [Old Reference # E.47.B.2]",Entity,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,31/12/2020,9047 +PARSHIN,Maxim,Alekseevich,,,,,ПАРШИН Максим Алексеевич,Cyrillic,Russian,03/08/1976,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1196 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they have actively provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,14/06/2022,15148 +PARSHIN,Maxim,Alexeyevich,,,,,,,,03/08/1976,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1196 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they have actively provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,14/06/2022,15148 +PARSHYN,Andrei,,,,,,,,,19/02/1974,,,Belarus,,,3190274A018PB7,,Chairman of the Main Directorate for Combatting Organised Crime and Corruption (GUBOPiK) of the Ministry of the Interior (MVD),211 Skryganova St.,4A,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0117 (UK Statement of Reasons):The Main Directorate for Combatting Organized Crime and Corruption (GUBOPiK) of the MVD plays a leading role in the repression of civil society and democratic opposition in Belarus, including deploying specialised “Attack” units against peaceful protestors and in raids on the homes and offices of journalists, activists and opposition supporters. In his position as Chairman of the GUBOPiK, Andrei PARSHYN is responsible for the inhuman and degrading treatment inflicted on citizens who participated in peaceful protests and for their arbitrary arrest and detention. Numerous testimonies, photo and video evidence indicate that the group under his command beat and arrested peaceful protestors, threatening them with firearms. PARSHYN therefore is or has been involved in undermining democracy and the rule of law in Belarus, repressing of civil society and the democratic opposition, and for serious human rights violations in Belarus. (Phone number):375 29661213 (Gender):Male",Individual,Primary name,,Belarus,02/12/2021,02/12/2021,02/12/2021,14160 +PARTIYA KARKEREN KURDISTANE (PKK),,,,,,,Partiya Karkerên Kurdistanê (PKK),,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0036 (UK Statement of Reasons):The PKK is a Kurdish terrorist organisation, proscribed by the UK, the EU and NATO, which was formed in the late 1970s and has claimed responsibility for numerous terrorist attacks, mainly against Turkish state security forces but also civilians. Its attacks are mainly carried out in Turkey’s largely Kurdish southeast. Cooperation exists between the PKK in Turkey and other Kurdish armed groups in the region situated along the Öcalan axis of support. These like-minded groups identify as being under the cross-border umbrella of the Kurdistan Communities Union (KCK).",Entity,Primary name,,Counter-Terrorism (International),02/11/2001,31/12/2020,11/03/2022,7231 +PARTO SANAAT CO.,,,,,,,,,,,,,,,,,,,"2417, Valiasr Ave.",Next to 14th St.,,,,Tehran,15178,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTO SANAAT CO.,,,,,,,,,,,,,,,,,,,No. 1281 Valiasr Ave.,Next to 14th St.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTO SANAAT CO.,,,,,,,,,,,,,,,,,,,No. 5,Sharabiani Cross Rd.,Asia Blvd.,Sadeghieh Sq.,,Tehran,14877,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTO SANAAT CO.,,,,,,,,,,,,,,,,,,,2nd & 3rd Fl.,No.1281,Corner of 14th Alley,Before Vanak Sq.,Vali-e-Asr St.,Tehran,15178,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTO SANAT CO,,,,,,,,,,,,,,,,,,,"2417, Valiasr Ave.",Next to 14th St.,,,,Tehran,15178,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTO SANAT CO,,,,,,,,,,,,,,,,,,,No. 1281 Valiasr Ave.,Next to 14th St.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTO SANAT CO,,,,,,,,,,,,,,,,,,,No. 5,Sharabiani Cross Rd.,Asia Blvd.,Sadeghieh Sq.,,Tehran,14877,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTO SANAT CO,,,,,,,,,,,,,,,,,,,2nd & 3rd Fl.,No.1281,Corner of 14th Alley,Before Vanak Sq.,Vali-e-Asr St.,Tehran,15178,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTO SANAT COMPANY,,,,,,,,,,,,,,,,,,,"2417, Valiasr Ave.",Next to 14th St.,,,,Tehran,15178,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTO SANAT COMPANY,,,,,,,,,,,,,,,,,,,No. 1281 Valiasr Ave.,Next to 14th St.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTO SANAT COMPANY,,,,,,,,,,,,,,,,,,,No. 5,Sharabiani Cross Rd.,Asia Blvd.,Sadeghieh Sq.,,Tehran,14877,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTO SANAT COMPANY,,,,,,,,,,,,,,,,,,,2nd & 3rd Fl.,No.1281,Corner of 14th Alley,Before Vanak Sq.,Vali-e-Asr St.,Tehran,15178,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTONSANAT,,,,,,,,,,,,,,,,,,,"2417, Valiasr Ave.",Next to 14th St.,,,,Tehran,15178,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTONSANAT,,,,,,,,,,,,,,,,,,,No. 1281 Valiasr Ave.,Next to 14th St.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTONSANAT,,,,,,,,,,,,,,,,,,,No. 5,Sharabiani Cross Rd.,Asia Blvd.,Sadeghieh Sq.,,Tehran,14877,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTONSANAT,,,,,,,,,,,,,,,,,,,2nd & 3rd Fl.,No.1281,Corner of 14th Alley,Before Vanak Sq.,Vali-e-Asr St.,Tehran,15178,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTOSANAT CO.,,,,,,,,,,,,,,,,,,,"2417, Valiasr Ave.",Next to 14th St.,,,,Tehran,15178,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTOSANAT CO.,,,,,,,,,,,,,,,,,,,No. 1281 Valiasr Ave.,Next to 14th St.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTOSANAT CO.,,,,,,,,,,,,,,,,,,,No. 5,Sharabiani Cross Rd.,Asia Blvd.,Sadeghieh Sq.,,Tehran,14877,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTOSANAT CO.,,,,,,,,,,,,,,,,,,,2nd & 3rd Fl.,No.1281,Corner of 14th Alley,Before Vanak Sq.,Vali-e-Asr St.,Tehran,15178,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTOSANAT PJSC.,,,,,,,,,,,,,,,,,,,"2417, Valiasr Ave.",Next to 14th St.,,,,Tehran,15178,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTOSANAT PJSC.,,,,,,,,,,,,,,,,,,,No. 1281 Valiasr Ave.,Next to 14th St.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTOSANAT PJSC.,,,,,,,,,,,,,,,,,,,No. 5,Sharabiani Cross Rd.,Asia Blvd.,Sadeghieh Sq.,,Tehran,14877,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PARTOSANAT PJSC.,,,,,,,,,,,,,,,,,,,2nd & 3rd Fl.,No.1281,Corner of 14th Alley,Before Vanak Sq.,Vali-e-Asr St.,Tehran,15178,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +PASBAN-E-AHLE-HADITH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +PASBAN-E-KASHMIR,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +PASDARAN,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0080 (UK Statement of Reasons):Responsible for Iran's nuclear programme. Has operational control for Iran's ballistic missile programme. Has undertaken procurement attempts to support Iran's ballistic missiles and nuclear programmes. (Type of entity):Military Government,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11238 +PASDARAN,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,AKA,,Syria,24/08/2011,31/12/2020,13/05/2022,11241 +PASDARAN,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,13/05/2022,11241 +PASDARAN INQILAB,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0080 (UK Statement of Reasons):Responsible for Iran's nuclear programme. Has operational control for Iran's ballistic missile programme. Has undertaken procurement attempts to support Iran's ballistic missiles and nuclear programmes. (Type of entity):Military Government,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11238 +PASDARAN-E ENGHELAB-E ISLAMI,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,AKA,,Syria,24/08/2011,31/12/2020,13/05/2022,11241 +PASDARAN-E ENGHELAB-E ISLAMI,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,13/05/2022,11241 +PASDARAN-E-ENQELAB-E-ISLAMI,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0080 (UK Statement of Reasons):Responsible for Iran's nuclear programme. Has operational control for Iran's ballistic missile programme. Has undertaken procurement attempts to support Iran's ballistic missiles and nuclear programmes. (Type of entity):Military Government,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11238 +PASECHNIK,Leonid,Ivanovich,,,,,,,,15/03/1970,"Luhansk, Vorochilovgrad Oblast",Ukrainian SSR (now Ukraine),Ukraine,,,,,Elected leader of the so-called Luhansk People’s Republic,,,,,,,,,"(UK Sanctions List Ref):RUS0047 (UK Statement of Reasons):‘Elected leader’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, and in participating formally as a candidate in the so-called ‘elections’ of 11 November 2018 in the so-called ‘ Luhansk People’s Republic’, he actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,10/12/2018,31/12/2020,31/12/2020,13723 +PASECHNIK,Leonid,Ivanovitch,,,,,,,,15/03/1970,"Luhansk, Vorochilovgrad Oblast",Ukrainian SSR (now Ukraine),Ukraine,,,,,Elected leader of the so-called Luhansk People’s Republic,,,,,,,,,"(UK Sanctions List Ref):RUS0047 (UK Statement of Reasons):‘Elected leader’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, and in participating formally as a candidate in the so-called ‘elections’ of 11 November 2018 in the so-called ‘ Luhansk People’s Republic’, he actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name,,Russia,10/12/2018,31/12/2020,31/12/2020,13723 +PASECHNIK,Leonid,Ivanoych,,,,,,,,15/03/1970,"Luhansk, Vorochilovgrad Oblast",Ukrainian SSR (now Ukraine),Ukraine,,,,,Elected leader of the so-called Luhansk People’s Republic,,,,,,,,,"(UK Sanctions List Ref):RUS0047 (UK Statement of Reasons):‘Elected leader’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, and in participating formally as a candidate in the so-called ‘elections’ of 11 November 2018 in the so-called ‘ Luhansk People’s Republic’, he actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,10/12/2018,31/12/2020,31/12/2020,13723 +PASHAN-E-AHLE HADIS,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0065 (UN Ref):QDe.118 Associated with Hafiz Muhammad Saeed (QDi.263) who is the leader of Lashkar-e-Tayyiba. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282105,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,02/05/2005,02/05/2005,31/12/2020,7241 +PASHCHENKO,Natalia,Alexandrovna,,,,,,,,10/10/1975,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1161 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15113 +PASHCHENKO,Natalya,Alexandrovna,,,,,ПАЩЕНКО Наталья Александровна,Cyrillic,Russian,10/10/1975,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1161 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15113 +PASHKEVICH,Aleksandr,,,,,Major,ПАШКЕВИЧ Александр Михайлович,Cyrillic,Russian,14/07/1977,,,Belarus,,,,,Chief of Staff – Luninets Airbase,,,,,,,,,"(UK Sanctions List Ref):RUS0710 (UK Statement of Reasons):Major Aleksandr Mikhailovich PASHKEVICH is a member of the Armed Forces of Belarus and currently holds, or has held, the position of Chief of Staff of Luninets Airbase. In this position he is deemed to have been either in direct command of or in a position to hold considerable situational awareness of troops involved in the Russian invasion of Ukraine through the facilitation of Russian freedom of movement into the north of Ukraine. He is also deemed to be in a position that provides logistical support to the Armed Forces of the Russian Federation in their ongoing military operations in Ukraine. As such he is a person who is or has been responsible for, engaging in, providing support for, or promoting any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14661 +PASHKOV,Igor,Valentinovich,,,,,ПАШКОВ Игорь Валентинович,Cyrillic,Russian,04/02/1961,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1197 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15149 +PASICHNYK,Leonid,Ivanovich,,,,,,,,15/03/1970,"Luhansk, Vorochilovgrad Oblast",Ukrainian SSR (now Ukraine),Ukraine,,,,,Elected leader of the so-called Luhansk People’s Republic,,,,,,,,,"(UK Sanctions List Ref):RUS0047 (UK Statement of Reasons):‘Elected leader’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, and in participating formally as a candidate in the so-called ‘elections’ of 11 November 2018 in the so-called ‘ Luhansk People’s Republic’, he actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,10/12/2018,31/12/2020,31/12/2020,13723 +PASICHNYK,Leonid,Ivanovitch,,,,,,,,15/03/1970,"Luhansk, Vorochilovgrad Oblast",Ukrainian SSR (now Ukraine),Ukraine,,,,,Elected leader of the so-called Luhansk People’s Republic,,,,,,,,,"(UK Sanctions List Ref):RUS0047 (UK Statement of Reasons):‘Elected leader’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, and in participating formally as a candidate in the so-called ‘elections’ of 11 November 2018 in the so-called ‘ Luhansk People’s Republic’, he actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,10/12/2018,31/12/2020,31/12/2020,13723 +PASICHNYK,Leonid,Ivanoych,,,,,,,,15/03/1970,"Luhansk, Vorochilovgrad Oblast",Ukrainian SSR (now Ukraine),Ukraine,,,,,Elected leader of the so-called Luhansk People’s Republic,,,,,,,,,"(UK Sanctions List Ref):RUS0047 (UK Statement of Reasons):‘Elected leader’ of the so-called ‘Luhansk People’s Republic’. In taking on and acting in this capacity, and in participating formally as a candidate in the so-called ‘elections’ of 11 November 2018 in the so-called ‘ Luhansk People’s Republic’, he actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,10/12/2018,31/12/2020,31/12/2020,13723 +PASLER,Denis,Vladimirovich,,,,,Денис Владимирович Паслер,,,29/10/1978,,,Russia,,,,,Governor of Orenburg Region,,,,,,,,,"(UK Sanctions List Ref):RUS1521 (UK Statement of Reasons):Denis Vladimirovich PASLER is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because PASLER is a regional governor. Specifically, PASLER is Governor of Orenburg Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15463 +PASSIVE DEFENCE ORGANISATION,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0101 (UK Statement of Reasons):Involved in the construction of facilities in Iran that could lead to the development of nuclear weapons in, or for use by, Iran. (Phone number):225 17013 (Email address):info@paydarymelli.ir",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,11/03/2022,11214 +PASSIVE DEFENSE ORGANIZATION,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0101 (UK Statement of Reasons):Involved in the construction of facilities in Iran that could lead to the development of nuclear weapons in, or for use by, Iran. (Phone number):225 17013 (Email address):info@paydarymelli.ir",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,11/03/2022,11214 +PASTOR URBINA,Justo,,,,,,,,,29/01/1956,,,Nicaragua,A0006405,,,,Head of the Nicaraguan National Police’s (NNP’s) Special Operations Department,,,,,,,,Nicaragua,"(UK Sanctions List Ref):NIC0004 (UK Statement of Reasons):Justo Pastor Urbina is Head of the NNP’s Special Operations Department, which has played a central role in the Ortega regime’s repression throughout the country. He has been responsible for orchestrating the repressive actions, violence, acts of torture and other human rights violations by the police against protesters, students and civil society members. (Gender):Male",Individual,Primary name,,Nicaragua,05/05/2020,31/12/2020,31/12/2020,13839 +PATEK,Omar,,,,,,,,,20/07/1966,Central Java,Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0331 (UN Ref):QDi.294 Senior member of Jemaah Islamiyah (QDe.092) involved in planning and funding multiple terrorist attacks in the Philippines and Indonesia. Provided training to Abu Sayyaf Group (QDe.001). Convicted for his role in the 2002 Bali bombings and sentenced to 20 years in prison in Jun. 2012. Remains in custody in Indonesia as at May 2015. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173385,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,12/01/2022,12021 +PA'TEK,,,,,,,,,,20/07/1966,Central Java,Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0331 (UN Ref):QDi.294 Senior member of Jemaah Islamiyah (QDe.092) involved in planning and funding multiple terrorist attacks in the Philippines and Indonesia. Provided training to Abu Sayyaf Group (QDe.001). Convicted for his role in the 2002 Bali bombings and sentenced to 20 years in prison in Jun. 2012. Remains in custody in Indonesia as at May 2015. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173385,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,12/01/2022,12021 +PATEK,UMAR,,,,,,,,,20/07/1966,Central Java,Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0331 (UN Ref):QDi.294 Senior member of Jemaah Islamiyah (QDe.092) involved in planning and funding multiple terrorist attacks in the Philippines and Indonesia. Provided training to Abu Sayyaf Group (QDe.001). Convicted for his role in the 2002 Bali bombings and sentenced to 20 years in prison in Jun. 2012. Remains in custody in Indonesia as at May 2015. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173385,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,12/01/2022,12021 +PATRIARCH KIRILL,,,,,,,,,,20/11/1946,Saint Petersburg,Russia,Russia,,,,,Primate of the Russian Orthodox Church,,,,,,,,,"(UK Sanctions List Ref):RUS1467 (UK Statement of Reasons):Vladimir GUNDYAYEV, known as Patriarch Kirill, is the head of the Russian Orthodox Church. Patriarch Kirill has made multiple public statements in support of the Russian invasion of Ukraine. He therefore engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,AKA,,Russia,16/06/2022,16/06/2022,16/06/2022,15405 +PATRUSHEV,Nikolai,Platonovich,,,,,Николай Платонович Патрушев,,,11/07/1951,Leningrad (St Petersburg),USSR (now Russian Federation),Russia,,,,,Secretary of the Security Council of the Russian Federation Other Information,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0048 (UK Statement of Reasons):Permanent member and Secretary of the Security Council of the Russian Federation. As a member of the Security Council, which provides advice on and coordinates national security affairs, he was involved in shaping the policy of the Russian Government threatening the territorial integrity, sovereignty and independence of Ukraine (Gender):Male",Individual,Primary name,,Russia,25/07/2014,31/12/2020,31/12/2020,13036 +PATRUSHEV,Andrey,Nikolaevich,,,,,Андрей Николаевич Патрушев,Cyrillic,Russian,26/10/1981,Leningrad,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1056 (UK Statement of Reasons):Andrey PATRUSHEV (hereafter PATRUSHEV) is a senior figure in the Russian energy industry and is a former member of the Management Board and Deputy General Director of Gazprom Neft , a subsidiary of Russian energy corporation Gazprom . In this role PATRUSHEV is or has been involved in obtaining a benefit or supporting the Government of Russia by working as a director or equivalent in a sector of strategic significance to the Government of Russia – the energy sector. (Gender):Male",Individual,Primary name,,Russia,24/03/2022,24/03/2022,24/05/2022,14999 +PATRUSHEV,Dmitry,Nikolayevich,,,,,ПАТРУШЕВ Дмитрий Николаевич,Cyrillic,Russian,13/10/1977,Leningrad,Russia,Russia,,,,,Minister of Agriculture,,,,,,,,,"(UK Sanctions List Ref):RUS0826 (UK Statement of Reasons):Dmitry Nikolayevich PATRUSHEV (hereafter PATRUSHEV) is the current Minister of Agriculture of the Russian Federation. He was also on the board of Directors for Gazprom between 2016-2021. The Government of Russia hold a 50% shareholding in Gazprom, making it a government of Russia-affiliated entity. PATRUSHEV, by virtue of his role as a director of a Government of Russia affiliated entity, is therefore an involved person, who has obtained a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14777 +PAULICHENKA,Dmitri,Valerievich,,,,,,,,00/00/1966,Vitebsk,Former USSR Currently Belarus,Belarus,,,,,"Head of ‘Honour’, the Ministry of Interior’s Association of the veterans from special forces from the Minister of Interior",,,,,,,,,"(UK Sanctions List Ref):BEL0002 Initially arrested in connection with Gonchar and Krasovski, he was released the following day, allegedly on Lukashenka’s orders. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Paulichenka is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Paulichenka has been linked to assassinations and kidnappings on behalf of the Government of Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8905 +PAULICHENKA,Dmitriy,Valerievich,,,,,,,,00/00/1966,Vitebsk,Former USSR Currently Belarus,Belarus,,,,,"Head of ‘Honour’, the Ministry of Interior’s Association of the veterans from special forces from the Minister of Interior",,,,,,,,,"(UK Sanctions List Ref):BEL0002 Initially arrested in connection with Gonchar and Krasovski, he was released the following day, allegedly on Lukashenka’s orders. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Paulichenka is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Paulichenka has been linked to assassinations and kidnappings on behalf of the Government of Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8905 +PAULICHENKA,Dmitriy,Valeriyevich,,,,,,,,00/00/1966,Vitebsk,Former USSR Currently Belarus,Belarus,,,,,"Head of ‘Honour’, the Ministry of Interior’s Association of the veterans from special forces from the Minister of Interior",,,,,,,,,"(UK Sanctions List Ref):BEL0002 Initially arrested in connection with Gonchar and Krasovski, he was released the following day, allegedly on Lukashenka’s orders. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Paulichenka is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Paulichenka has been linked to assassinations and kidnappings on behalf of the Government of Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8905 +PAULICHENKA,Dzmitry,,,,,,,,,00/00/1966,Vitebsk,Former USSR Currently Belarus,Belarus,,,,,"Head of ‘Honour’, the Ministry of Interior’s Association of the veterans from special forces from the Minister of Interior",,,,,,,,,"(UK Sanctions List Ref):BEL0002 Initially arrested in connection with Gonchar and Krasovski, he was released the following day, allegedly on Lukashenka’s orders. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Paulichenka is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Paulichenka has been linked to assassinations and kidnappings on behalf of the Government of Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8905 +PAULICHENKA,Dzmitry,Valeriyevich,,,,,,,,00/00/1966,Vitebsk,Former USSR Currently Belarus,Belarus,,,,,"Head of ‘Honour’, the Ministry of Interior’s Association of the veterans from special forces from the Minister of Interior",,,,,,,,,"(UK Sanctions List Ref):BEL0002 Initially arrested in connection with Gonchar and Krasovski, he was released the following day, allegedly on Lukashenka’s orders. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Paulichenka is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Paulichenka has been linked to assassinations and kidnappings on behalf of the Government of Belarus. (Gender):Male",Individual,Primary name,,Belarus,22/05/2006,31/12/2020,18/03/2022,8905 +PAULICHENKO,Dmitri,Valerievich,,,,,,,,00/00/1966,Vitebsk,Former USSR Currently Belarus,Belarus,,,,,"Head of ‘Honour’, the Ministry of Interior’s Association of the veterans from special forces from the Minister of Interior",,,,,,,,,"(UK Sanctions List Ref):BEL0002 Initially arrested in connection with Gonchar and Krasovski, he was released the following day, allegedly on Lukashenka’s orders. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Paulichenka is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Paulichenka has been linked to assassinations and kidnappings on behalf of the Government of Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8905 +PAULICHENKO,Dmitriy,Valerievich,,,,,,,,00/00/1966,Vitebsk,Former USSR Currently Belarus,Belarus,,,,,"Head of ‘Honour’, the Ministry of Interior’s Association of the veterans from special forces from the Minister of Interior",,,,,,,,,"(UK Sanctions List Ref):BEL0002 Initially arrested in connection with Gonchar and Krasovski, he was released the following day, allegedly on Lukashenka’s orders. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Paulichenka is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Paulichenka has been linked to assassinations and kidnappings on behalf of the Government of Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8905 +PAULICHENKO,Dmitriy,Valeriyevich,,,,,,,,00/00/1966,Vitebsk,Former USSR Currently Belarus,Belarus,,,,,"Head of ‘Honour’, the Ministry of Interior’s Association of the veterans from special forces from the Minister of Interior",,,,,,,,,"(UK Sanctions List Ref):BEL0002 Initially arrested in connection with Gonchar and Krasovski, he was released the following day, allegedly on Lukashenka’s orders. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Paulichenka is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Paulichenka has been linked to assassinations and kidnappings on behalf of the Government of Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8905 +PAULICHENKO,Dzmitry,,,,,,,,,00/00/1966,Vitebsk,Former USSR Currently Belarus,Belarus,,,,,"Head of ‘Honour’, the Ministry of Interior’s Association of the veterans from special forces from the Minister of Interior",,,,,,,,,"(UK Sanctions List Ref):BEL0002 Initially arrested in connection with Gonchar and Krasovski, he was released the following day, allegedly on Lukashenka’s orders. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Paulichenka is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Paulichenka has been linked to assassinations and kidnappings on behalf of the Government of Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8905 +PAULICHENKO,Dzmitry,Valeriyevich,,,,,,,,00/00/1966,Vitebsk,Former USSR Currently Belarus,Belarus,,,,,"Head of ‘Honour’, the Ministry of Interior’s Association of the veterans from special forces from the Minister of Interior",,,,,,,,,"(UK Sanctions List Ref):BEL0002 Initially arrested in connection with Gonchar and Krasovski, he was released the following day, allegedly on Lukashenka’s orders. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Paulichenka is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Paulichenka has been linked to assassinations and kidnappings on behalf of the Government of Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8905 +PAULIUCHENKA,Andrei,,,,,,"ПАВЛЮЧЕНКО, Андрей Юрьевич",,,01/08/1971,,,,,,,,Head of Operational-Analytical Center,,,,,,,,,"(UK Sanctions List Ref):BEL0048 (UK Statement of Reasons):In his leadership position as the Head of Operational-Analytical Centre, Andrei Pauliuchenka is responsible for the repression of civil society, notably by interrupting connection to telecommunication networks as a tool of repression of civil society, peaceful demonstrators and journalists. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13991 +PAULIUCHENKA,Andrei,Yurevich,,,,,"ПАЎЛЮЧНКА, Андрэй Юр'евіч",,,01/08/1971,,,,,,,,Head of Operational-Analytical Center,,,,,,,,,"(UK Sanctions List Ref):BEL0048 (UK Statement of Reasons):In his leadership position as the Head of Operational-Analytical Centre, Andrei Pauliuchenka is responsible for the repression of civil society, notably by interrupting connection to telecommunication networks as a tool of repression of civil society, peaceful demonstrators and journalists. (Gender):Male",Individual,Primary name,,Belarus,06/11/2020,31/12/2020,31/12/2020,13991 +PAULYUCHENKA,Andrei,,,,,,,,,01/08/1971,,,,,,,,Head of Operational-Analytical Center,,,,,,,,,"(UK Sanctions List Ref):BEL0048 (UK Statement of Reasons):In his leadership position as the Head of Operational-Analytical Centre, Andrei Pauliuchenka is responsible for the repression of civil society, notably by interrupting connection to telecommunication networks as a tool of repression of civil society, peaceful demonstrators and journalists. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13991 +PAVLENKO,Vladimir,Nikolaevich,,,,,ПАВЛЕНКО Владимир Николаевич,Cyrillic,Russian,14/04/1962,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1131 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15083 +PAVLICHENKO,Dmitri,Valerievich,,,,,,,,00/00/1966,Vitebsk,Former USSR Currently Belarus,Belarus,,,,,"Head of ‘Honour’, the Ministry of Interior’s Association of the veterans from special forces from the Minister of Interior",,,,,,,,,"(UK Sanctions List Ref):BEL0002 Initially arrested in connection with Gonchar and Krasovski, he was released the following day, allegedly on Lukashenka’s orders. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Paulichenka is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Paulichenka has been linked to assassinations and kidnappings on behalf of the Government of Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8905 +PAVLICHENKO,Dmitriy,Valerievich,,,,,,,,00/00/1966,Vitebsk,Former USSR Currently Belarus,Belarus,,,,,"Head of ‘Honour’, the Ministry of Interior’s Association of the veterans from special forces from the Minister of Interior",,,,,,,,,"(UK Sanctions List Ref):BEL0002 Initially arrested in connection with Gonchar and Krasovski, he was released the following day, allegedly on Lukashenka’s orders. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Paulichenka is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Paulichenka has been linked to assassinations and kidnappings on behalf of the Government of Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8905 +PAVLICHENKO,Dmitriy,Valeriyevich,,,,,,,,00/00/1966,Vitebsk,Former USSR Currently Belarus,Belarus,,,,,"Head of ‘Honour’, the Ministry of Interior’s Association of the veterans from special forces from the Minister of Interior",,,,,,,,,"(UK Sanctions List Ref):BEL0002 Initially arrested in connection with Gonchar and Krasovski, he was released the following day, allegedly on Lukashenka’s orders. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Paulichenka is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Paulichenka has been linked to assassinations and kidnappings on behalf of the Government of Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8905 +PAVLICHENKO,Dzmitry,,,,,,,,,00/00/1966,Vitebsk,Former USSR Currently Belarus,Belarus,,,,,"Head of ‘Honour’, the Ministry of Interior’s Association of the veterans from special forces from the Minister of Interior",,,,,,,,,"(UK Sanctions List Ref):BEL0002 Initially arrested in connection with Gonchar and Krasovski, he was released the following day, allegedly on Lukashenka’s orders. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Paulichenka is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Paulichenka has been linked to assassinations and kidnappings on behalf of the Government of Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8905 +PAVLICHENKO,Dzmitry,Valeriyevich,,,,,,,,00/00/1966,Vitebsk,Former USSR Currently Belarus,Belarus,,,,,"Head of ‘Honour’, the Ministry of Interior’s Association of the veterans from special forces from the Minister of Interior",,,,,,,,,"(UK Sanctions List Ref):BEL0002 Initially arrested in connection with Gonchar and Krasovski, he was released the following day, allegedly on Lukashenka’s orders. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Paulichenka is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Paulichenka has been linked to assassinations and kidnappings on behalf of the Government of Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8905 +PAVLICHENKO,Dmitri,Valeriyevich,,,,,,,,00/00/1966,Vitebsk,Former USSR Currently Belarus,Belarus,,,,,"Head of ‘Honour’, the Ministry of Interior’s Association of the veterans from special forces from the Minister of Interior",,,,,,,,,"(UK Sanctions List Ref):BEL0002 Initially arrested in connection with Gonchar and Krasovski, he was released the following day, allegedly on Lukashenka’s orders. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Paulichenka is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Paulichenka has been linked to assassinations and kidnappings on behalf of the Government of Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8905 +PAVLOV,Andrei,Alekseevich,,,,,,,,07/08/1977,,,Russia,,,,,Lawyer,,,,,,,,,"(UK Sanctions List Ref):GAC0007 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. PAVLOV participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the lawyer representing Rilend. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14084 +PAVLOV,Andrei,Alekseyevich,,,,,,,,07/08/1977,,,Russia,,,,,Lawyer,,,,,,,,,"(UK Sanctions List Ref):GAC0007 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. PAVLOV participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the lawyer representing Rilend. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14084 +PAVLOV,Andrei,Alexeevich,,,,,,,,07/08/1977,,,Russia,,,,,Lawyer,,,,,,,,,"(UK Sanctions List Ref):GAC0007 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. PAVLOV participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the lawyer representing Rilend. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14084 +PAVLOV,Andrei,Alexeyevich,,,,,,,,07/08/1977,,,Russia,,,,,Lawyer,,,,,,,,,"(UK Sanctions List Ref):GAC0007 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. PAVLOV participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the lawyer representing Rilend. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14084 +PAVLOV,Andrey,Alekseevich,,,,,,,,07/08/1977,,,Russia,,,,,Lawyer,,,,,,,,,"(UK Sanctions List Ref):GAC0007 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. PAVLOV participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the lawyer representing Rilend. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14084 +PAVLOV,Andrey,Alekseyevich,,,,,Андрей Алексеевич ПАВЛОВ,,,07/08/1977,,,Russia,,,,,Lawyer,,,,,,,,,"(UK Sanctions List Ref):GAC0007 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. PAVLOV participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the lawyer representing Rilend. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14084 +PAVLOV,Andrey,Alexeyevich,,,,,,,,07/08/1977,,,Russia,,,,,Lawyer,,,,,,,,,"(UK Sanctions List Ref):GAC0007 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. PAVLOV participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the lawyer representing Rilend. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14084 +PAVLOVA,Margarita,Nikolayevna,,,,,Маргарита Николаевна ПАВЛОВА,,,22/01/1979,Kichigino,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0896 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14847 +PAVLYUCHENKO,Andrei,Yurevich,,,,,,,,01/08/1971,,,,,,,,Head of Operational-Analytical Center,,,,,,,,,"(UK Sanctions List Ref):BEL0048 (UK Statement of Reasons):In his leadership position as the Head of Operational-Analytical Centre, Andrei Pauliuchenka is responsible for the repression of civil society, notably by interrupting connection to telecommunication networks as a tool of repression of civil society, peaceful demonstrators and journalists. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13991 +PAWN STORM,,,,,,,,,,,,,,,,,,,Komsomol'skiy Prospekt,,,,,20 Moscow,119146,Russia,"(UK Sanctions List Ref):CYB0012 (UK Statement of Reasons):The 85th Main Centre for Special Technologies (GTsSS) of the Russian General Staff of the Armed Forces of the Russian Federation (GRU) - also known by its field post number ‘26165’ and industry nicknames: APT28, Fancy Bear, Sofacy Group, Pawn Storm, Strontium - was involved in illegally accessing the information systems of the German Federal Parliament (Deutscher Bundestag) without permission in April and May 2015. The military intelligence officers of the 85th controlled, directed and took part in this activity, accessing the email accounts of MPs and stealing their data. Their activity interfered with the parliament’s information systems affecting its operation for several days, undermining the exercise of parliamentary functions in Germany. (Type of entity):Department within Government (Parent company):Russian Ministry of Defence",Entity,AKA,,Cyber,23/10/2020,31/12/2020,31/12/2020,13984 +PAYA PARTO,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0102 (UK Statement of Reasons):An entity that has supplied materials for use in gas centrifuge component production, and has been directly involved in construction planning for one of Iran's uranium enrichment sites. Fomerly known as Paya Partov. (Phone number):(1) +98 21 88373421 (2) +98 21 88638214 (Website):www.payapartov.com (Email address):service@payapartov.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11556 +PAYA PARTOV,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0102 (UK Statement of Reasons):An entity that has supplied materials for use in gas centrifuge component production, and has been directly involved in construction planning for one of Iran's uranium enrichment sites. Fomerly known as Paya Partov. (Phone number):(1) +98 21 88373421 (2) +98 21 88638214 (Website):www.payapartov.com (Email address):service@payapartov.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11556 +PAYKIN,Boris,Romanovich,,,,,Пайкин Борис Романович,,,26/03/1965,"Leningrad, now St. Petersburg",Russia,Russia,651224491,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0565 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14510 +PBK,,,,,,,,,,,,,,,,,,,D. 8,"Str. 1, Etaj 12",Nab. Presnenskaya,,,Moscow,123113,Russia,"(UK Sanctions List Ref):RUS1085 (UK Statement of Reasons):RUSSIAN VENTURE COMPANY is a Russian State-owned “fund of funds” created for the development of the Russian venture capital market. There are reasonable grounds to suspect that the RUSSIAN VENTURE COMPANY is or has been involved in obtaining a benefit from or supporting the Government of Russia by, carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):+7 (499) 750-09-11 (Website):https://Rvc.ru",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,24/06/2022,15028 +PCHONKA,Viktor,Pavlovytch,,,,,,,,06/02/1954,"Serhiyivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former General Prosecutor of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0072 He is subject to EU sanctions for misappropriation of state assets (UK Statement of Reasons):Viktor Pshonka was Prosecutor-General of Ukraine during the suppression of the Ukrainian protest movement from 2013-2014. His office was the primary organ for investigating allegations against Ukrainian law enforcement. There are reasonable grounds to suspect that he intentionally or recklessly failed to ensure that his office investigated credible allegations of torture and the illegal use of lethal force by Ukrainian law enforcement, or properly investigated cases of the torture and killings of protesters. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,16/02/2022,12894 +PDO,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0101 (UK Statement of Reasons):Involved in the construction of facilities in Iran that could lead to the development of nuclear weapons in, or for use by, Iran. (Phone number):225 17013 (Email address):info@paydarymelli.ir",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,11/03/2022,11214 +PEACE TO LUHANSK REGION,,,,,,,Мир Луганщине,,,,,,,,,,,,Karl Marx Street 7,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS0188 Director: Igor Plotnitsky (subject to sanctions) (UK Statement of Reasons):This public ‘organisation’ presented candidates in the so called ‘elections’ of the so called ‘Luhansk People's Republic’ on 2nd November 2014. These ‘elections’ are in breach of Ukrainian law and therefore illegal. In participating formally in the illegal ‘elections’ it has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. This movement was headed by Igor PLOTNITSKY who is also subject to sanctions. (Website):https://mir-lug.info/",Entity,Primary name,,Russia,02/12/2014,31/12/2020,31/12/2020,13184 +PECHATNIKOV,Anatolii,Yurievich,,,,,,,,18/08/1969,Moscow,Russia,Russia,,,,,Deputy President and Chairman of VTB Bank Management Board,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0861 (UK Statement of Reasons):Anatolii PECHATNIKOV is a member of VTB Bank’s Management Board. VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, PECHATNIKOV obtains a financial benefit from VTB Bank, therefore PECHATNIKOV is an involved person on the basis of his membership of and association with VTB Bank. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14812 +PECHATNIKOV,Anatolii,Yuryevich,,,,,ПЕЧАТНИКОВ Анатолий Юрьевич,,,18/08/1969,Moscow,Russia,Russia,,,,,Deputy President and Chairman of VTB Bank Management Board,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0861 (UK Statement of Reasons):Anatolii PECHATNIKOV is a member of VTB Bank’s Management Board. VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, PECHATNIKOV obtains a financial benefit from VTB Bank, therefore PECHATNIKOV is an involved person on the basis of his membership of and association with VTB Bank. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14812 +PECHATNIKOV,Anatoly,,,,,,,,,18/08/1969,Moscow,Russia,Russia,,,,,Deputy President and Chairman of VTB Bank Management Board,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0861 (UK Statement of Reasons):Anatolii PECHATNIKOV is a member of VTB Bank’s Management Board. VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, PECHATNIKOV obtains a financial benefit from VTB Bank, therefore PECHATNIKOV is an involved person on the basis of his membership of and association with VTB Bank. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14812 +PECHEGIN,Andrei,,,,,,,,,24/09/1965,,Russia,Russia,,,,,,,,,,,,,,(UK Sanctions List Ref):GHR0017 (UK Statement of Reasons):Andrey Pechegin was Deputy Head of the Division of Supervision of Investigations of the Prosecutor’s Office and he was responsible for the investigation of complaints about the ill-treatment of Sergei Magnitsky in detention. The evidence suggests that Pechegin intentionally or recklessly failed to fulfil that responsibility in that he ignored and denied complaints about the ill-treatment of Magnitsky. (Gender):Male,Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13876 +PECHEGIN,Andrey,Ivanovich,,,,,,,,24/09/1965,,Russia,Russia,,,,,,,,,,,,,,(UK Sanctions List Ref):GHR0017 (UK Statement of Reasons):Andrey Pechegin was Deputy Head of the Division of Supervision of Investigations of the Prosecutor’s Office and he was responsible for the investigation of complaints about the ill-treatment of Sergei Magnitsky in detention. The evidence suggests that Pechegin intentionally or recklessly failed to fulfil that responsibility in that he ignored and denied complaints about the ill-treatment of Magnitsky. (Gender):Male,Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13876 +PEJMAN INDUSTRIAL SERVICES CORPORATION,,,,,,,,,,,,,,,,,,,,,,,P.O.Box 16785-195,Tehran,,Iran,"(UK Sanctions List Ref):INU0169 (UN Ref):IRe.053 Owned or controlled by, or acts on behalf of, SBIG. [Old Reference # E.29.I.14] (Parent company):Shahid Bagheri Industrial Group (SBIG)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11154 +PELLA-MASH LLC,,,,,,,Пелла-Маш ОOO,Cyrillic,Russian,,,,,,,,,,4 Tsentralnaya Street,Kirovski District,Otradnoe,,,Leningradskaya Oblast,187330,Russia,"(UK Sanctions List Ref):RUS1443 (UK Statement of Reasons):Pella-Mash LLC is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in sectors of strategic significance to the Government of Russia, namely the transport and defence sectors. (Business Reg No):Tax Identification Number: INN 4706036197 KPP: 470601001",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15355 +PEOPLE'S UNION,,,,,,,Народный союз,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0189 (UK Statement of Reasons):Public ‘organisation’ that presented candidates in the so called ‘elections’ of the so called ‘Luhansk People’s Republic’ 2 November 2014. These elections are in breach of Ukrainian law and therefore illegal. In participating formally in the illegal ‘elections’ it has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine.",Entity,Primary name,,Russia,02/12/2014,31/12/2020,31/12/2020,13186 +PERENCEVIC,Mihajlo,,,,,,Mihajlo PERENČEVIĆ,,,,,Croatia,Croatia,,,,,President of Velesstroy,,,,,,,,,"(UK Sanctions List Ref):RUS1485 (UK Statement of Reasons):Mihajlo PERENČEVIĆ (hereafter PERENČEVIĆ) is a Croatian businessman and President of the Russian pipeline construction company, Velesstroy. As President, PERENČEVIĆ is working as a director or equivalent for a company that is carrying on business in sectors of strategic significance to the Government of Russia. PERENČEVIĆ owns or controls directly or indirectly Velesstroy because it is reasonable, having regard to all the circumstances, to expect that PERENČEVIĆ would (if PERENČEVIĆ chose to) be able, in most cases or in significant respects, by whatever means and whether directly or indirectly, to achieve the result that affairs of Velesstroy are conducted in accordance with PERENČEVIĆ's wishes. Velesstroy is carrying on business in the Russian construction, energy and extractives sector through their construction of oil and gas pipelines and facilities. PERENČEVIĆ is therefore obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,29/06/2022,29/06/2022,04/07/2022,15424 +PEREVERZEVA,Tatyana,Viktorovna,,,,,ПЕРЕВЕРЗЕВА Татьяна Викторовна,Cyrillic,Russian,20/06/1964,Dontesk,Ukraine,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1137 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15089 +PEREZ,Isaac,Jay,Galang,,,,,,,15/09/1973,"24 Paraiso Street, Barangay Poblacion, Mandaluyong City",Philippines,Philippines,,,,,,Barangay Mangayao,,,,Tagkawayan,Quezon,,Philippines,(UK Sanctions List Ref):AQD0295 (UN Ref):QDi.248 Member of the Rajah Solaiman Movement (QDe.128). Arrested by the Philippines authorities on 14 Mar. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10668 +PEREZ,Isaac,Jay,Galang,,,,,,,15/09/1973,"24 Paraiso Street, Barangay Poblacion, Mandaluyong City",Philippines,Philippines,,,,,,Barangay Tigib,,,,Ayungon,Negros Oriental,,Philippines,(UK Sanctions List Ref):AQD0295 (UN Ref):QDi.248 Member of the Rajah Solaiman Movement (QDe.128). Arrested by the Philippines authorities on 14 Mar. 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10668 +PEREZ OLIVAS,Luis,Alberto,,,,,,,,08/01/1956,Leon,Nicaragua,Nicaragua,C01118568,,,,Head of the Judicial Support Directorate,,,,,,,,Nicaragua,"(UK Sanctions List Ref):NIC0002 (UK Statement of Reasons):As Head of the Judicial Support Directorate, Luis Alberto Perez Olivas is in charge of El Chipote prison. This detention centre has been identified as a place where serious human rights violations occurred and detainees were physically and psychologically tortured during the time Perez Olivas held that role. Therefore there are reasonable grounds to suspect that Perez Olivas has been involved in the violation of the right to freedom from torture and inhuman or degrading treatment or punishment. In August 2018, he was promoted to the rank of Commissioner General in the Nicaraguan National Police (NNP). (Gender):Male",Individual,Primary name,,Nicaragua,05/05/2020,31/12/2020,31/12/2020,13838 +PERGAS ARIA MOVALLED,,,,,,,,,,,,,,,,,,,Suite 1,59 Azadi Ali North Sohrevardi Avenue,,,,Tehran,1576935561,Iran,(UK Sanctions List Ref):INU0053 (UK Statement of Reasons):Known to procure for designated Iran Centrifuge Technology Company (TESA). They have made efforts to procure designated materials which have applications in the Iranian nuclear programme. (Phone number):(1) +9821 8875 1749 (2) +9827 8850 34 36,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12249 +PERMANENT COMMITTEE FOR PASSIVE DEFENSE,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0101 (UK Statement of Reasons):Involved in the construction of facilities in Iran that could lead to the development of nuclear weapons in, or for use by, Iran. (Phone number):225 17013 (Email address):info@paydarymelli.ir",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,11/03/2022,11214 +PERMINOV,Dmitry,Sergeyevich,,,,,Дмитрий Сергеевич ПЕРМИНОВ,,,04/03/1979,Omsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0983 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14934 +PERMINOV,Sergey,Nikolayevich,,,,,Сергей Николаевич ПЕРМИНОВ,,,16/09/1968,Saint Petersburg,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0906 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14857 +PERMINOVA,Yelena,Alekseyevna,,,,,Елена Алексеевна ПЕРМИНОВА,,,05/12/1980,Shatrovsky District,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0904 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14855 +PERSADA,Angga,Dimas,,,,,,,,04/03/1985,Jakarta,Indonesia,Indonesia,W344982,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0142 (UN Ref):QDi.348 Member of Jemaah Islamiyah (QDe.092) and leader of Hilal Ahmar Society Indonesia (HASI) (QDe.147). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5854965,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/03/2015,13/03/2015,31/12/2020,13242 +PERSADHA,Angga,Dimas,,,,,,,,04/03/1985,Jakarta,Indonesia,Indonesia,W344982,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0142 (UN Ref):QDi.348 Member of Jemaah Islamiyah (QDe.092) and leader of Hilal Ahmar Society Indonesia (HASI) (QDe.147). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5854965,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/03/2015,13/03/2015,31/12/2020,13242 +PERSHADA,ANGGA,DIMAS,,,,Secretary General,,,,04/03/1985,Jakarta,Indonesia,Indonesia,W344982,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0142 (UN Ref):QDi.348 Member of Jemaah Islamiyah (QDe.092) and leader of Hilal Ahmar Society Indonesia (HASI) (QDe.147). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5854965,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/03/2015,13/03/2015,31/12/2020,13242 +PERTSEV,Vasily,Anatolievich,,,,,ПЕРЦЕВ Василий Анатольевич,Cyrillic,Russian,09/08/1981,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1198 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15150 +PERTSEV,Vasily,Anatolyevich,,,,,,,,09/08/1981,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1198 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15150 +PERVYSHOV,Evgeny,Alekseevich,,,,,Первышов Евгений Алексеевич,,,04/05/1976,Krasnodar,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0481 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14426 +PESKOV,Dmitry,Sergeyvich,,,,,ПЕСКОВ Дмитрий Сергеевич,Cyrillic,Russian,17/10/1967,Moscow,Russia,Russia,,,,,Press Secretary to Putin,,,,,,,,,"(UK Sanctions List Ref):RUS0753 (UK Statement of Reasons):Dmitry PESKOV is President Putin’s Press Secretary and vocal supporter of the Government of Russia in Russian and international media.  In statements and interviews Dmitry Peskov has promoted policies or actions which destabilize Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14704 +PESKOV,Nikolay,Dmitrievich,,,,,Николай Дмитриевич Песков,Cyrillic,Russian,03/02/1990,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0862 (UK Statement of Reasons):Nikolay Dmitrievich PESKOV is closely associated with Dmitry Sergeyevich PESKOV by virtue of being his son. Dmitry Sergeyevich PESKOV, who has been designated since 15/3/2022, is President Putin’s Press Secretary and vocal supporter of the Government of Russia in Russian and international media, and has promoted policies or actions which destabilize Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14813 +PESKOVA,Elizaveta,Dmitriyevna,,,,,,,,09/01/1998,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):RUS0863 (UK Statement of Reasons):Elizaveta Dmitriyevna PESKOVA is closely associated with Dmitry Sergeyevich PESKOV by virtue of being his daughter. Dmitry Sergeyevich PESKOV is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019. (Gender):Female,Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14814 +PETAYKIN,Alexander,Nikolaevich,,,,,Александр Николаевич ПЕТАЙКИН,Cyrillic,Russian,24/05/1987,Orenburg,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1316 (UK Statement of Reasons):Alexander Nikolaevich PETAYKIN is the owner and general director of road construction firm, Vector. Vector is involved in the implementation of public projects for Orenburg and Bashkortostan regional governments. PETAYKIN has therefore been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia (the Russian construction sector) and as an owner and executive director or equivalent of an entity (Vector) which has been carrying on business in a sector of strategic significance to the Government of Russia (the Russian construction sector). (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15270 +PETINA,Irina,Alexandrovna,,,,,Ирина Александровна ПЕТИНА,,,31/08/1972,Ryazan,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0918 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14869 +PETRASH,Aleksandr,Aleksandrovich,,,,,Аляксандр Аляксандравiч ПЕТРАШ,,,16/05/1988,,,Belarus,,,,,Chairman of the Moskovski District Court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0091 (UK Statement of Reasons):Aleksandr Petrash is the Chairman of the Moskovski District Court in Minsk. In his position, he bears responsibility for numerous politically motivated rulings against those taking part in protests. There are reasonable grounds to suspect this behaviour has continued following the 9 August Presidential elections in Belarus. He therefore bears responsibility for undermining the rule of law and through his actions as a judge, he has contributed to the repression of civil society and democratic opposition. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14016 +PETRASH,Aliaksandr,Aliaksandravich,,,,,Александр Александрович ПЕТРАШ,,,16/05/1988,,,Belarus,,,,,Chairman of the Moskovski District Court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0091 (UK Statement of Reasons):Aleksandr Petrash is the Chairman of the Moskovski District Court in Minsk. In his position, he bears responsibility for numerous politically motivated rulings against those taking part in protests. There are reasonable grounds to suspect this behaviour has continued following the 9 August Presidential elections in Belarus. He therefore bears responsibility for undermining the rule of law and through his actions as a judge, he has contributed to the repression of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14016 +PETROCHEM VALOUR,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0100 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK merchant vessel M/V SAM JONG 2 was involved in ship-to-ship transfer operations of oil in late January 2018. Listed as asset of Korea Samjong Shipping (OFSI ID: 13635, UN Reference Number: UN Ref KPe.064) (IMO number):7408873 (Current owners):Korea Samjong Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Oil tanker (Tonnage of ship):1676 (Length of ship):80 (Year built):1975",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13651 +PETROV,Alexander,,,,,,,,,13/07/1979,(1) Loyga (2) Kotlas,(1) Russia (2) Russia,Russia,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):CHW0010 (UK Statement of Reasons):GRU Officer Alexander Mishkin (a.k.a. Alexander Petrov) possessed, transported and then, during the weekend of 4 March 2018, in Salisbury, used a toxic nerve agent (“Novichok”). On 5 September 2018, the UK Crown Prosecution Service charged Alexander Petrov for conspiracy to murder Sergei Skripal; for the attempted murder of Sergei Skripal, Yulia Skripal and Nick Bailey; for the use and possession of Novichok contrary to the Chemical Weapons Act; and for causing grievous bodily harm with intent to Yulia Skripal and Nick Bailey.",Individual,AKA,,Chemical Weapons,21/01/2019,01/01/2021,18/03/2022,13744 +PETROV,Alexander,Petrovich,,,,,Петров Александр Петрович,,,21/05/1958,"Plishkari, Elovsky district, Perm region",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0482 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14427 +PETROV,Sergey,Valerievich,,,,,Петров Сергей Валериевич,,,19/04/1965,"Volkhov, Leningrad Region",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0484 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14429 +PETROV,Vyacheslav,Anatolievich,,,,,Петров Вячеслав Анатольевич,,,17/08/1969,"Novokuznetsk, Kemerovo Region",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0483 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14428 +PETROV,Yury,Alexandrovich,,,,,Петров Юрий Александрович,,,10/04/1947,"Leningrad, now St. Petersburg",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0485 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14430 +PETRUNIN,Nikolay,Yurievich,,,,,Петрунин Николай Юрьевич,,,27/02/1976,"Vyazniki, Vladimir Region",Russia,,713668437,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0566 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14511 +PETUKHOV,Aleksandr,Yurievich,,,,,,,,17/07/1970,,,Ukraine,,,,,Former Deputy Head of the Sevastopol City Election Commission,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0049 (UK Statement of Reasons):Chief Federal Inspector of the Moscow region. Former Chair of the Sevastopol Electoral Commission. In this capacity he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,14/05/2018,31/12/2020,16/09/2022,13668 +PETUKHOV,Oleksandr,Yuriyovych,,,,,,,,17/07/1970,,,Ukraine,,,,,Former Deputy Head of the Sevastopol City Election Commission,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0049 (UK Statement of Reasons):Chief Federal Inspector of the Moscow region. Former Chair of the Sevastopol Electoral Commission. In this capacity he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13668 +PETUKHOV,Alexander,Yuryevich,,,,,Александр Юрьевич Петухов,,,17/07/1970,,,Ukraine,,,,,Former Deputy Head of the Sevastopol City Election Commission,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0049 (UK Statement of Reasons):Chief Federal Inspector of the Moscow region. Former Chair of the Sevastopol Electoral Commission. In this capacity he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13668 +PEVTSOV,Dmitry,Anatolievich,,,,,Певцов Дмитрий Анатольевич,,,08/07/1963,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0480 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14425 +PEYGANOVICH,Yuri,Mikhailovich,,,,Colonel,ПЕЙГАНОВИЧ Юрий Михайлович,Cyrillic,,,,,Belarus,,,,,Head of Logistics and Deputy Commander of the Air and Air Defence Forces,,,,,,,,,"(UK Sanctions List Ref):RUS0738 (UK Statement of Reasons):Colonel Yuri Mikhailovich PEYGANOVICH has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely being involved in the command of the Air Force and Air Defence Forces which have hosted Russian air assets and allowed its facilities to be used by Russia in launching attacks on Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14689 +PFLP - GENERAL COMMAND,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0039 (UK Statement of Reasons):The Popular Front for the Liberation of Palestine General Command (PFLP-GC) is a nationalist Palestinian organization which was founded in 1968. The PFLP-GC has carried out numerous terrorist attacks in Europe and the Middle East and has repeatedly stated that its aim is establishing a global Islamic state by violent means.,Entity,AKA,,Counter-Terrorism (International),02/11/2001,31/12/2020,18/02/2021,7399 +PHARAOH,,,,,,,,,,00/00/1954,"Cellule Ferege, Gatumba, sector Kibilira commune, Gisenyi Prefecture",Rwanda,Rwanda,,,,,FDLR-FOCA Commander and FDLR-FOCA Lieutenant General,,,,,,North Kivu Province,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0057 (UN Ref):CDi.012 The International Criminal Court issued an arrest warrant for Mudacumura on 12 July 2012 for nine counts of war crimes, including attacking civilians, murder, mutilation, cruel treatment, rape, torture, destruction of property, pillaging and outrages against personal dignity, allegedly committed between 2009 and 2010 in the DRC. (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8714 +PHILLIPS,Graham,William,,,,,,,,26/01/1979,Nottingham,United Kingdom,Britain,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1543 (UK Statement of Reasons):Graham PHILLIPS is a video blogger who has produced and published media content that supports and promotes actions and policies which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty, or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15470 +PHOTON PRO LLP,,,,,,,,,,,,,,,,,,,C/O Law & Tax International Solutions,25 City Road,,,,London,EC1Y 1AA,United Kingdom,"(UK Sanctions List Ref):RUS1116 (UK Statement of Reasons):PHOTON PRO LLP (hereafter PHOTON PRO) is a Limited Liability Partnership which acts as a front company for the procurement of equipment for the Government of Russia. PHOTON PRO is therefore associated with a person that is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business as a Government of Russia-affiliated entity. Furthermore, PHOTON PRO makes available goods or technology to a person that in turn makes available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Phone number):+44 1438 94 08 80 (Website):photon.pro/ (Email address):info@photon.pro (Type of entity):Limited liability partnership (Business Reg No):OC425116",Entity,Primary name,,Russia,31/03/2022,31/03/2022,20/07/2022,15065 +PHYONGCHON SHIPPING & MARINE,,,,,,,,,,,,,,,,,,,,,,Otan-dong,Chung-guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0185 (UN Ref):KPe.070 Registered owner of DPRK tanker JI SONG 6, which is believed to have been involved in ship-to-ship transfer operations of oil in late January 2018. The company also owns vessels JI SONG 8 and WOORY STAR. IMO number: 5878561.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13641 +PHYONGCHON SHIPPING AND MARINE,,,,,,,,,,,,,,,,,,,,,,Otan-dong,Chung-guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0185 (UN Ref):KPe.070 Registered owner of DPRK tanker JI SONG 6, which is believed to have been involved in ship-to-ship transfer operations of oil in late January 2018. The company also owns vessels JI SONG 8 and WOORY STAR. IMO number: 5878561.",Entity,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13641 +PIANOV,Dmitrii,Vasilyevich,,,,,ПЬЯНОВ Дмитрий Васильевич,Cyrillic,Russian,07/12/1977,,Russia,Russia,,,,,Member of VTB Bank Management Board,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0864 (UK Statement of Reasons):Dmitrii PIANOV is a member of VTB Bank’s Management Board.  VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, PIANOV obtains a financial benefit from VTB Bank, therefore PIANOV is an involved person on the basis of his membership of and association with VTB Bank. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,13/05/2022,14815 +PIETRASH,Aleksandr,Aleksandrovich,,,,,,,,16/05/1988,,,Belarus,,,,,Chairman of the Moskovski District Court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0091 (UK Statement of Reasons):Aleksandr Petrash is the Chairman of the Moskovski District Court in Minsk. In his position, he bears responsibility for numerous politically motivated rulings against those taking part in protests. There are reasonable grounds to suspect this behaviour has continued following the 9 August Presidential elections in Belarus. He therefore bears responsibility for undermining the rule of law and through his actions as a judge, he has contributed to the repression of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14016 +PIETRASH,Aliaksandr,Aliaksandravich,,,,,,,,16/05/1988,,,Belarus,,,,,Chairman of the Moskovski District Court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0091 (UK Statement of Reasons):Aleksandr Petrash is the Chairman of the Moskovski District Court in Minsk. In his position, he bears responsibility for numerous politically motivated rulings against those taking part in protests. There are reasonable grounds to suspect this behaviour has continued following the 9 August Presidential elections in Belarus. He therefore bears responsibility for undermining the rule of law and through his actions as a judge, he has contributed to the repression of civil society and democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14016 +PIETYUKHOV,Aleksandr,Yurevich,,,,,,,,17/07/1970,,,Ukraine,,,,,Former Deputy Head of the Sevastopol City Election Commission,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0049 (UK Statement of Reasons):Chief Federal Inspector of the Moscow region. Former Chair of the Sevastopol Electoral Commission. In this capacity he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13668 +PIETYUKHOV,Oleksandr,Yuriyovych,,,,,,,,17/07/1970,,,Ukraine,,,,,Former Deputy Head of the Sevastopol City Election Commission,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0049 (UK Statement of Reasons):Chief Federal Inspector of the Moscow region. Former Chair of the Sevastopol Electoral Commission. In this capacity he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13668 +PILAVOV,Pavel,Aristievich,,,,,ПИЛАВОВ Павел Аристьевич,Cyrillic,Russian,17/02/1969,Alekseyevka,Georgia,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1288 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15240 +PILIPENKO,Olga,Vasilievna,,,,,Пилипенко Ольга Васильевна,,,04/01/1966,Orel,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0487 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14432 +PIMANOV,Aleksei,Viktorovich,,,,,ПИМАНОВ Алексей Викторович,Cyrillic,Russian,09/02/1962,Moscow,Russia,Russia,,,,,(1) Director General of Managing Organisation Creative Association Red Star (2) Head of the Krasnaya Zvezda media holding,126 pr-kt Mira,,,,,Moscow,129164,Russia,"(UK Sanctions List Ref):RUS1347 (UK Statement of Reasons):Aleksei Viktotovich PIMANOV is a prominent Russian media personality and businessman. He is the head of the media holding company Kresnaya Zvezda, owned by the Russian Ministry of Defence. PIMANOV also directed the 2017 Russian film ‘Crimea’ which glorified the illegal annexation of Crimea in 2014. As such he is or has been involved in providing support for and/or promoting any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15298 +PIMANOV,Alexei,,,,,,,,,09/02/1962,Moscow,Russia,Russia,,,,,(1) Director General of Managing Organisation Creative Association Red Star (2) Head of the Krasnaya Zvezda media holding,126 pr-kt Mira,,,,,Moscow,129164,Russia,"(UK Sanctions List Ref):RUS1347 (UK Statement of Reasons):Aleksei Viktotovich PIMANOV is a prominent Russian media personality and businessman. He is the head of the media holding company Kresnaya Zvezda, owned by the Russian Ministry of Defence. PIMANOV also directed the 2017 Russian film ‘Crimea’ which glorified the illegal annexation of Crimea in 2014. As such he is or has been involved in providing support for and/or promoting any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15298 +PIMANOV,Alexey,Viktorovich,,,,,,,,09/02/1962,Moscow,Russia,Russia,,,,,(1) Director General of Managing Organisation Creative Association Red Star (2) Head of the Krasnaya Zvezda media holding,126 pr-kt Mira,,,,,Moscow,129164,Russia,"(UK Sanctions List Ref):RUS1347 (UK Statement of Reasons):Aleksei Viktotovich PIMANOV is a prominent Russian media personality and businessman. He is the head of the media holding company Kresnaya Zvezda, owned by the Russian Ministry of Defence. PIMANOV also directed the 2017 Russian film ‘Crimea’ which glorified the illegal annexation of Crimea in 2014. As such he is or has been involved in providing support for and/or promoting any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15298 +PINCHUK,Andrey,Yurevich,,,,,,,,27/12/1977,"Tiraspol, Republic of Moldova",USSR (now Moldova),Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0050 (UK Statement of Reasons):Former ""State security minister"" of the so-called ""Donetsk People's Republic"". Associated with Vladimir Antyufeyev, who was responsible for the separatist ""governmental"" activities of the so called ""government of the Donetsk People's Republic"". He has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Remains active in supporting separatist actions or policies. Participated in the creation of the “Union of Donbas volunteers”. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,16/09/2022,13095 +PINCHUK,Andriy,Yuriyovych,,,,,,,,27/12/1977,"Tiraspol, Republic of Moldova",USSR (now Moldova),Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0050 (UK Statement of Reasons):Former ""State security minister"" of the so-called ""Donetsk People's Republic"". Associated with Vladimir Antyufeyev, who was responsible for the separatist ""governmental"" activities of the so called ""government of the Donetsk People's Republic"". He has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Remains active in supporting separatist actions or policies. Participated in the creation of the “Union of Donbas volunteers”. (Gender):Male",Individual,Primary name variation,,Russia,12/09/2014,31/12/2020,16/09/2022,13095 +PINCHUK,Sergei,Mikhailovich,,,,Vice-Admiral,ПИНЧУК Сергей Михайлович,,,26/07/1971,Sevastapol,Crimea,Russia,,,,,"COS and First Deputy Commander Black Sea Fleet, Navy of the Russian Federation",Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0766 (UK Statement of Reasons):Vice-Admiral Sergei Mikhailovich PINCHUK is a member of the Armed Forces of the Russian Federation, he currently holds the position of Chief of Staff and First Deputy Commander Black Sea Fleet. He is considered to have been in direct command of and/or to have otherwise been involved in the deployment of Russian Forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14717 +PINSKY,Viktor,Vitalievich,,,,,Пинский Виктор Витальевич,,,06/02/1964,Lida,Belarus,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0488 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14433 +PIR ABASSI,Abbas,,,,,,,,,,,,,,,,,Magistrate of a Criminal Chamber,,,,,,,,,"(UK Sanctions List Ref):IHR0003 Date designated on UK Sanctions List: 31/12/2020. Former Judge, Tehran Revolutionary Court, branch 26. Former Judge, Tehran Revolutionary Court, branch 26. (UK Statement of Reasons):Magistrate of a Criminal chamber. Former Judge, Tehran Revolutionary Court, branch 26. He was in charge of post-election cases, he issued long prison sentences during unfair trials against human rights activists and issued several death sentences for protesters. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11799 +PIR ABASSI,Yahya,,,,,,,,,,,,,,,,,Magistrate of a Criminal Chamber,,,,,,,,,"(UK Sanctions List Ref):IHR0003 Date designated on UK Sanctions List: 31/12/2020. Former Judge, Tehran Revolutionary Court, branch 26. Former Judge, Tehran Revolutionary Court, branch 26. (UK Statement of Reasons):Magistrate of a Criminal chamber. Former Judge, Tehran Revolutionary Court, branch 26. He was in charge of post-election cases, he issued long prison sentences during unfair trials against human rights activists and issued several death sentences for protesters. (Gender):Male",Individual,AKA,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11799 +PIRABASSI,Abbas,,,,,,,,,,,,,,,,,Magistrate of a Criminal Chamber,,,,,,,,,"(UK Sanctions List Ref):IHR0003 Date designated on UK Sanctions List: 31/12/2020. Former Judge, Tehran Revolutionary Court, branch 26. Former Judge, Tehran Revolutionary Court, branch 26. (UK Statement of Reasons):Magistrate of a Criminal chamber. Former Judge, Tehran Revolutionary Court, branch 26. He was in charge of post-election cases, he issued long prison sentences during unfair trials against human rights activists and issued several death sentences for protesters. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11799 +PIR-ABASSI,Abbas,,,,,,,,,,,,,,,,,Magistrate of a Criminal Chamber,,,,,,,,,"(UK Sanctions List Ref):IHR0003 Date designated on UK Sanctions List: 31/12/2020. Former Judge, Tehran Revolutionary Court, branch 26. Former Judge, Tehran Revolutionary Court, branch 26. (UK Statement of Reasons):Magistrate of a Criminal chamber. Former Judge, Tehran Revolutionary Court, branch 26. He was in charge of post-election cases, he issued long prison sentences during unfair trials against human rights activists and issued several death sentences for protesters. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11799 +PIR-ABASSI,Yahya,,,,,,,,,,,,,,,,,Magistrate of a Criminal Chamber,,,,,,,,,"(UK Sanctions List Ref):IHR0003 Date designated on UK Sanctions List: 31/12/2020. Former Judge, Tehran Revolutionary Court, branch 26. Former Judge, Tehran Revolutionary Court, branch 26. (UK Statement of Reasons):Magistrate of a Criminal chamber. Former Judge, Tehran Revolutionary Court, branch 26. He was in charge of post-election cases, he issued long prison sentences during unfair trials against human rights activists and issued several death sentences for protesters. (Gender):Male",Individual,AKA,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11799 +PIRABBASI,Yahya,,,,,,,,,,,,,,,,,Magistrate of a Criminal Chamber,,,,,,,,,"(UK Sanctions List Ref):IHR0003 Date designated on UK Sanctions List: 31/12/2020. Former Judge, Tehran Revolutionary Court, branch 26. Former Judge, Tehran Revolutionary Court, branch 26. (UK Statement of Reasons):Magistrate of a Criminal chamber. Former Judge, Tehran Revolutionary Court, branch 26. He was in charge of post-election cases, he issued long prison sentences during unfair trials against human rights activists and issued several death sentences for protesters. (Gender):Male",Individual,AKA,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11799 +PIROG,Dmitry,Yurievich,,,,,Пирог Дмитрий Юрьевич,,,27/06/1980,Temryuk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0489 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14434 +PIROGOVA,Maria,Vladimirovna,,,,,ПИРОГОВА Мария Владимировна,Cyrillic,Russian,13/05/1993,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1181 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15133 +PIROTTE,Guillaume,,,,,,,,,07/06/1994,Grasse,France,France,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0046 (UK Statement of Reasons):Guillaume Pirotte is a member of the jihadist group Firqatul Ghuraba which is headed by Senegalese national Oumar Diaby. He participated in battles alongside members of Jabhat al Nusra and appeared as an actor in jihadist propaganda. Jabhat al Nusra was disbanded in January 2017. Over the course of the past few years, he has assisted many individuals to travel from France to Syria for the purposes of committing terrorist acts. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),26/11/2019,31/12/2020,31/12/2020,13798 +PISAREVA,Yelena,Vladimirovna,,,,,Елена Владимировна ПИСАРЕВА,,,20/01/1967,Novgorad,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0981 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14932 +PISHRO KHALA AFARIN COMPANY,,,,,,,,,,,,,,,,,,,Unit 5,2nd Floor,No 75,Mehran Afrand St,Sattarkhan St,Tehran,,,(UK Sanctions List Ref):INU0088 (UK Statement of Reasons):Involved in procurement of materials on behalf of an entity directly involved in Iran's restricted weapons related activity (Phone number):66905459 21 0098 (Website):www.vacuumafarin.com (Email address):info@vacuumafarin.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,31/12/2020,12258 +PISKAREV,Vasily,Ivanovich,,,,,Пискарев Василий Иванович,,,08/11/1963,"Shilovka, Kastorensky District, Kursk Region",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0490 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14435 +PIVI,Jean-Claude,,,,,,,,,01/01/1960,,,Guinea,,,,,Minister of Presidential Security,,,,,,,,,(UK Sanctions List Ref):GUC0004 (UK Statement of Reasons):Person identified as responsible for the violent repression and events in Guinea on 28 September 2009 or the aftermath of that violent repression. (Gender):Male,Individual,Primary name,,Guinea,24/12/2009,31/12/2020,31/12/2020,10975 +PIVNENKO,Valentina,Nikolaevna,,,,,Пивненко Валентина Николаевна,,,14/06/1947,"Petrozavodsk, Karelian ASSR",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0486 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14431 +PJSC AEROFLOT,,,,,,,,,,,,,,,,,,,1 Arbat St,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS1444 (UK Statement of Reasons):PJSC Aeroflot is the largest airline in Russia. It is obtaining a benefit from and supporting the Government of Russia by carrying on business in a sector of strategic significance, the transport sector, and as it is owned by the Russian state it is also carrying on business as a Government of Russia-affiliated entity. (Website):https://www.aeroflot.ru/ru-en (Type of entity):Public Joint Stock Company (Subsidiaries):(1) Pobeda Airlines Limited Liability Company (2) Rossiya Airlines Joint-Stock Company (3) Sherotel Joint-Stock Company (4) Aeromar Joint-Stock Company (5) Aeroflot Aviation School, Private Professional Educational Organisation (6) Aeroflot – Finance Limited Liability Company (7) A-Technics Limited Liability Company (Parent company):Federal Agency for State Property Management (Business Reg No):29063984",Entity,Primary name,,Russia,19/05/2022,19/05/2022,19/05/2022,15395 +PJSC 'CHERNOMORNEFTEGAZ',,,,,,,,,,,,,,,,,,,,,,Prospekt Kirov 52,Simferopol,Crimea,295000,,"(UK Sanctions List Ref):RUS0200 (UK Statement of Reasons):On 17.3.2014, the ‘Parliament of Crimea’ adopted a resolution declaring the appropriation of assets belonging to the Chernomorneftegaz enterprise on behalf of the ‘Republic of Crimea’. The enterprise is thus effectively confiscated by the Crimean ‘authorities’. Re-registered on 29.11.2014 as State Unitary Enterprise of the ‘Republic of Crimea’ ‘Chernomorneftegaz’. Founder: The Ministry of Fuel and Energy of the Republic of Crimea. The action of transferring ownership, undermines or threatens the territorial integrity, sovereignty and independence of Ukraine. (Phone number):(1) + 7 (3652) 66-70-00 (2) +7 (3652) 66-78-00",Entity,AKA,,Russia,12/05/2014,31/12/2020,05/05/2022,12979 +PJSC INTEGRAL,,,,,,,,,,,,,,,,,,,121A,Kazintsa I.P. Str.,,,,Minsk,220108,Belarus,"(UK Sanctions List Ref):RUS0262 (UK Statement of Reasons):JSC Integral is a Belarusian defence SOE (state-owned enterprise) that produces semiconductors for military end-users, and supplies parts to both the Belarusian and Russian armed forces. Russian armed forces have been directly involved in the invasion of Ukraine. Belarusian armed forces have supported and enabled the Russian invasion of Ukraine, including by conducting joint military exercises with Russian armed forces which involved the deployment of Russian troops along the border of Belarus with Ukraine, which in turn directly contributed to Russia’s ability to both threaten and attack Ukraine, including from positions in Belarus. JSC Integral therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Phone number):+375-17-253-3562 (Website):https://integral.by/en (Email address):export@integral.by (Type of entity):Public Joint Stock Company (PJSC)",Entity,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14202 +PJSC MIKRON,,,,,,,,,,,,,,,,,,,1st Zapadny Proezd 12/1,,,,,Zelenograd,124460,Russia,"(UK Sanctions List Ref):RUS1404 Organization Established Date 13 Jan 1994; Government Gazette Number 07589295 (Russia) (UK Statement of Reasons):JOINT STOCK COMPANY MIKRON is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is the largest Russian manufacturer and exporter of microelectronics.  The company received tax benefits to produce the domestic chip for Russia’s National Payment Card System, which was developed following previous sanctions on Russia. Therefore, JOINT STOCK COMPANY MIKRON is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian electronics sector. (Website):https://en.mikron.ru/ (Business Reg No):1027700073466 (Russia). Tax ID No. 7735007358 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15324 +PJSC MIKRON,,,,,,,,,,,,,,,,,,,d. 6 str. 1,ul. Akademika Valieva,,,Zelenograd,Moscow,124460,Russia,"(UK Sanctions List Ref):RUS1404 Organization Established Date 13 Jan 1994; Government Gazette Number 07589295 (Russia) (UK Statement of Reasons):JOINT STOCK COMPANY MIKRON is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is the largest Russian manufacturer and exporter of microelectronics.  The company received tax benefits to produce the domestic chip for Russia’s National Payment Card System, which was developed following previous sanctions on Russia. Therefore, JOINT STOCK COMPANY MIKRON is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian electronics sector. (Website):https://en.mikron.ru/ (Business Reg No):1027700073466 (Russia). Tax ID No. 7735007358 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15324 +PJSC MOSTOTREST,,,,,,,ПАО Мостотрест,,,,,,,,,,,,6 Barklaya Street,Bld. 5,,,,Moscow,121087,Russia,"(UK Sanctions List Ref):RUS0190 Business Sector: construction. Names of Director(s)/Management: Alexander N Poderegin, General Director Ultimate beneficial owner(s): Used to belong to Igor Rotenberg, but now belongs to Arkady Rotenberg, who has been sanctioned by the EU since 23/02/2015, and who is a long-time acquaintance of President Putin; who has developed his fortune during President Putin's tenure, and has been favoured by Russian decision-makers in the award of important contracts by the Russian State or by State-owned enterprises. (UK Statement of Reasons):Mostotrest has actively participated in the construction of the Kerch Bridge through its State contract for the maintenance of the Bridge, connecting Russia to the illegally annexed Crimean Peninsula. Furthermore, it is owned by an individual (Arkady Rotenberg) that is already designated for his actions undermining Ukrainian sovereignty. Therefore, the company is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity sovereignty and independence of Ukraine. (Phone number):+7(495)669-77-11 Fax. +7(495)669-79-99 (Email address):mostro@mostro.ru (Type of entity):Large infrastructure construction company",Entity,Primary name,,Russia,31/07/2018,31/12/2020,16/09/2022,13701 +PJSC PROMSVYAZBANK,,,,,,,,,,,,,,,,,,,Building 22,Smirnovskaya Street,10,,,Moscow,109052,Russia,"(UK Sanctions List Ref):RUS0237 (UK Statement of Reasons):PJSC Promsvyazbank (""Promsvyazbank"") is a Russian state owned bank. Its main task is to service the state defence order and to finance defence industry enterprises. In its role as a pivotal bank for the Russian military-industrial complex, including servicing nearly 70% of the state contracts signed by the Defence Ministry as a government customer, Promsvyazbank provides financial services or makes available funds and economic resources that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Phone number):(1) 8 (800) 333 0303 (2) +7 495 787 33 33 (Website):www.psbank.ru",Entity,AKA,,Russia,22/02/2022,22/02/2022,22/02/2022,14184 +PJSC SBERBANK (PUBLIC JOINT-STOCK COMPANY SBERBANK),,,,,,,ПАО Сбербанк,,,,,,,,,,,,19 Vavilova St.,,,,,Moscow,117997,Russia,"(UK Sanctions List Ref):RUS0256 (List of persons named in relation to further restrictions Group ID: 13079. (UK Statement of Reasons):PJSC Sberbank (Public Joint-Stock Company Sberbank) is involved in obtaining a benefit from or supporting the Government of Russia. PJSC Sberbank is Russia’s largest bank by assets controlled, and offers a range of financial services to consumers and business clients. It is a highly significant entity in the Russian financial services sector, a sector of strategic significance to the Government of Russia. The Government of Russia has a controlling share in PJSC Sberbank, meaning that PJSC Sberbank also carries on business as a Government of Russia-affiliated entity. (Phone number):+8 (800) 555-55-50 (Email address):media@Sberbank.ru (Type of entity):(1) Bank (2) Financial Services Company (Business Reg No):1027700132195",Entity,Primary name,,Russia,06/04/2022,06/04/2022,06/04/2022,15076 +PJSC SBERBANK OF RUSSIA,,,,,,,,,,,,,,,,,,,19 Vavilova St.,,,,,Moscow,117997,Russia,"(UK Sanctions List Ref):RUS0256 (List of persons named in relation to further restrictions Group ID: 13079. (UK Statement of Reasons):PJSC Sberbank (Public Joint-Stock Company Sberbank) is involved in obtaining a benefit from or supporting the Government of Russia. PJSC Sberbank is Russia’s largest bank by assets controlled, and offers a range of financial services to consumers and business clients. It is a highly significant entity in the Russian financial services sector, a sector of strategic significance to the Government of Russia. The Government of Russia has a controlling share in PJSC Sberbank, meaning that PJSC Sberbank also carries on business as a Government of Russia-affiliated entity. (Phone number):+8 (800) 555-55-50 (Email address):media@Sberbank.ru (Type of entity):(1) Bank (2) Financial Services Company (Business Reg No):1027700132195",Entity,Primary name variation,,Russia,06/04/2022,06/04/2022,06/04/2022,15076 +PJSC SOVCOMBANK,,,,,,,ПАО Сoвкoмбaнк,,,,,,,,,,,,Tekstilschik Avenue,46 Kostroma,,,,,156000,Russia,"(UK Sanctions List Ref):RUS0255 (UK Statement of Reasons):PJSC SOVCOMBANK is a large and profitable private bank which obtains a benefit from the Russian Government, and/or supports the Russian Government. PJSC SOVCOMBANK has received financing from the Russian Direct Investment Fund and therefore carries on business as a Government of Russia-affiliated entity. It also carries on business of economic significance to the Government of Russia in view of PJSC SOVCOMBANK'S strategic role in the Russian economy. Furthermore, PJSC SOVCOMBANK carries on business in a sector of strategic significance to the Government of Russia as it operates in the Russian financial services sector. (Phone number):+7 (495) 988-00-00 (Website):www.SOVCOMBANK.ru (Type of entity):Public Joint-Stock Company",Entity,Primary name,,Russia,28/02/2022,28/02/2022,28/02/2022,14200 +PJSC SOVCOMFLOT,,,,,,,ПАО СОВКОМФЛОТ,Cyrillic,Russian,,,,,,,,,,3A Moyka River Embankment,,,,,St Petersburg,191186,Russia,"(UK Sanctions List Ref):RUS1097 (UK Statement of Reasons):SOVCOMFLOT is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia – namely, the energy sector. (Phone number):+7(495) 660-40-00 (Website):(1) sovcomflot.ru (2) www.scf-group.com (Email address):(1) info@scf-group.ru (2) pr@scf-group.ru (3) ir@scf-group.ru (Type of entity):Public Joint Stock Company (Subsidiaries):(1) OOO SCF Arctic (2) SCF Management Services (Cyprus) Ltd (3) PAO Novoship; (4) SCF management Services (St. Petersburg) Ltd (5) Sovcomflot (UK) Ltd (6) SCF Management Services (St. Petersburg) Ltd  subdivision in Yuzhno-Sakhalinsk (7) Sovcomflot (Cyprus) Ltd; (8) SCF Management Services (Novorossiysk) Ltd (9) SCF GEO",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,12/07/2022,15040 +PJSC UAC,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0239 (List of persons named in relation to financial and investment restrictions Group ID): 13121. (UK Statement of Reasons):PJSC United Aircraft Corporation (UAC) is a Russian state owned enterprise. It contains all of Russia's major aircraft manufacturing companies and is a major supplier of aircraft to the Russian military. This includes military aircraft that have been used in Crimea. Therefore UAC provides financial services or makes available funds and economic resources that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Type of entity):(1) Public Joint stock company (2) Holding company",Entity,Primary name variation,,Russia,24/02/2022,24/02/2022,06/04/2022,14186 +PJSC UNITED SHIPBUILDING CORPORATION,,,,,,,,,,,,,,,,,,,11,Bolshaya Tatarskaya Street,Bld.B,,,Moscow,115184,Russia,"(UK Sanctions List Ref):RUS0242 (UK Statement of Reasons):Public Joint Stock Company (PJSC) United Shipbuilding Corporation (USC) is a Russian state-owned enterprise. USC is the largest shipbuilding corporation in Russia, uniting shipbuilding, repair and maintenance subsidiaries. This includes the supply of several frigates and other warship classes that have been deployed in Crimea since Russia illegally annexed the region in 2014, and have conducted drills in the Black Sea in 2021. Therefore USC has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. USC also operates in a sector of strategic significance, specifically, the Russian defence sector. As a result USC is involved in benefitting from or supporting the Government of Russia. (Phone number):+7 (495) 617-33-00 (Website):www.aoosk.ru/en (Email address):info@aoosk.ru (Type of entity):(1) Public Joint stock company (2) Holding company",Entity,Primary name variation,,Russia,24/02/2022,24/02/2022,24/02/2022,14189 +PJSC UNITED SHIPBUILDING CORPORATION,,,,,,,,,,,,,,,,,,,St Petersburg – ul. Marat,90,,,,St Petersburg,191119,Russia,"(UK Sanctions List Ref):RUS0242 (UK Statement of Reasons):Public Joint Stock Company (PJSC) United Shipbuilding Corporation (USC) is a Russian state-owned enterprise. USC is the largest shipbuilding corporation in Russia, uniting shipbuilding, repair and maintenance subsidiaries. This includes the supply of several frigates and other warship classes that have been deployed in Crimea since Russia illegally annexed the region in 2014, and have conducted drills in the Black Sea in 2021. Therefore USC has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. USC also operates in a sector of strategic significance, specifically, the Russian defence sector. As a result USC is involved in benefitting from or supporting the Government of Russia. (Phone number):+7 (495) 617-33-00 (Website):www.aoosk.ru/en (Email address):info@aoosk.ru (Type of entity):(1) Public Joint stock company (2) Holding company",Entity,Primary name variation,,Russia,24/02/2022,24/02/2022,24/02/2022,14189 +PJSC USC,,,,,,,,,,,,,,,,,,,11,Bolshaya Tatarskaya Street,Bld.B,,,Moscow,115184,Russia,"(UK Sanctions List Ref):RUS0242 (UK Statement of Reasons):Public Joint Stock Company (PJSC) United Shipbuilding Corporation (USC) is a Russian state-owned enterprise. USC is the largest shipbuilding corporation in Russia, uniting shipbuilding, repair and maintenance subsidiaries. This includes the supply of several frigates and other warship classes that have been deployed in Crimea since Russia illegally annexed the region in 2014, and have conducted drills in the Black Sea in 2021. Therefore USC has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. USC also operates in a sector of strategic significance, specifically, the Russian defence sector. As a result USC is involved in benefitting from or supporting the Government of Russia. (Phone number):+7 (495) 617-33-00 (Website):www.aoosk.ru/en (Email address):info@aoosk.ru (Type of entity):(1) Public Joint stock company (2) Holding company",Entity,Primary name variation,,Russia,24/02/2022,24/02/2022,24/02/2022,14189 +PJSC USC,,,,,,,,,,,,,,,,,,,St Petersburg – ul. Marat,90,,,,St Petersburg,191119,Russia,"(UK Sanctions List Ref):RUS0242 (UK Statement of Reasons):Public Joint Stock Company (PJSC) United Shipbuilding Corporation (USC) is a Russian state-owned enterprise. USC is the largest shipbuilding corporation in Russia, uniting shipbuilding, repair and maintenance subsidiaries. This includes the supply of several frigates and other warship classes that have been deployed in Crimea since Russia illegally annexed the region in 2014, and have conducted drills in the Black Sea in 2021. Therefore USC has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. USC also operates in a sector of strategic significance, specifically, the Russian defence sector. As a result USC is involved in benefitting from or supporting the Government of Russia. (Phone number):+7 (495) 617-33-00 (Website):www.aoosk.ru/en (Email address):info@aoosk.ru (Type of entity):(1) Public Joint stock company (2) Holding company",Entity,Primary name variation,,Russia,24/02/2022,24/02/2022,24/02/2022,14189 +PLAKSIN,Gennadiy,Nikolaevich,,,,,,,,30/08/1961,"Klin, Moscow Region,",Russia,,,,,,Former Chairman of the Universal Savings Bank,,,,,,,,,"(UK Sanctions List Ref):GAC0009 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. PLAKSIN participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Instar LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14086 +PLAKSIN,Gennadiy,Nikolayevich,,,,,,,,30/08/1961,"Klin, Moscow Region,",Russia,,,,,,Former Chairman of the Universal Savings Bank,,,,,,,,,"(UK Sanctions List Ref):GAC0009 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. PLAKSIN participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Instar LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14086 +PLAKSIN,Gennady,Nikolaevich,,,,,Геннадий Николаевич ПЛАКСИН,,,30/08/1961,"Klin, Moscow Region,",Russia,,,,,,Former Chairman of the Universal Savings Bank,,,,,,,,,"(UK Sanctions List Ref):GAC0009 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. PLAKSIN participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Instar LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14086 +PLAKSIN,Gennady,Nikolayevich,,,,,,,,30/08/1961,"Klin, Moscow Region,",Russia,,,,,,Former Chairman of the Universal Savings Bank,,,,,,,,,"(UK Sanctions List Ref):GAC0009 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. PLAKSIN participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Instar LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14086 +PLANAR LLC,,,,,,,ПЛАНАР,Cyrillic,Russian,,,,,,,,,,Likhvintseva St.,76,Udmurtskaya,,,Izhevsk,426034,Russia,"(UK Sanctions List Ref):RUS1086 (UK Statement of Reasons):PLANAR LLC is engaged in the manufacture and supply of electronic components and equipment. As such, it is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the electronics sector, a sector of strategic significance to the Government of Russia.",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,14/06/2022,15029 +PLEKHOV,Aleksandr,Grigorevich,,,,,Александр Григорьевич Плехов,,,26/01/1969,Vitebsk,Belarus,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1459 (UK Statement of Reasons):Aleksandr Grigorevich Plekhov (hereafter PLEKHOV) is a Russian businessman and reportedly an associate of President Vladimir Putin. PLEKHOV is or has been involved in obtaining a benefit from or supporting the Government of Russia as a director of Vital Development Corporation JSC, a Russian biochemical company and producer of COVID-19 testing kits which is carrying on business in a sector of strategic significance and business of economic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,13/05/2022,13/05/2022,13/05/2022,15390 +PLIGIN,Vladimir,Nikolaevich,,,,,Владимир Николаевич ПЛИГИН,,,19/05/1960,"Ignatovo, Vologodsk Oblast",USSR (now Russian Federation),Russia,,,,,Member of the Supreme Council of the United Russia Party,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0051 Graduated in 1982 from Leningrad State University. Advisor to the Duma’s speaker, Vyacheslav Volodin (UK Statement of Reasons):Former member of the State Duma and former Chair of the Duma Constitutional Law Committee. Responsible for facilitating the adoption of legislation on the annexation of Crimea and Sevastopol into the Russian Federation. Advisor to the Duma Speaker, Volodin. Former member of the Supreme Council of the United Russia party. (Gender):Male",Individual,Primary name,,Russia,12/05/2014,31/12/2020,31/12/2020,12967 +PLOTNIKOV,Vladimir,Nikolaevich,,,,,Плотников Владимир Николаевич,,,30/11/1961,"Gusevka, Olkhovsky district, Volgograd region",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0491 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14436 +PLOTNITSKII,Igor,Venediktovich,,,,,,,,24/06/1964,"Kelmentsi, Chernovtsi region",,Russia,,,,,Former “Defence Minister” and former “Head” of the so-called Luhansk People’s Republic,,,,,,Moscow,,Russia,(UK Sanctions List Ref):RUS0052 (UK Statement of Reasons):Former so called 'Defence Minister' and former so-called 'Head' of the 'Luhansk People's Republic' and as such responsible for the separatist 'governmental' activities of the so called 'government of the People's Republic of Luhansk'. Former Special Envoy of the so-called ‘Luhansk People’s Republic’ on Minsk Implementation. (Gender):Male,Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,16/09/2022,13017 +PLOTNITSKY,Igor,Benedictovich,,,,,,,,24/06/1964,"Kelmentsi, Chernovtsi region",,Russia,,,,,Former “Defence Minister” and former “Head” of the so-called Luhansk People’s Republic,,,,,,Moscow,,Russia,(UK Sanctions List Ref):RUS0052 (UK Statement of Reasons):Former so called 'Defence Minister' and former so-called 'Head' of the 'Luhansk People's Republic' and as such responsible for the separatist 'governmental' activities of the so called 'government of the People's Republic of Luhansk'. Former Special Envoy of the so-called ‘Luhansk People’s Republic’ on Minsk Implementation. (Gender):Male,Individual,Primary name,,Russia,12/07/2014,31/12/2020,16/09/2022,13017 +PLOTNYTSKYY,Ihor,Venedyktovych,,,,,,,,24/06/1964,"Kelmentsi, Chernovtsi region",,Russia,,,,,Former “Defence Minister” and former “Head” of the so-called Luhansk People’s Republic,,,,,,Moscow,,Russia,(UK Sanctions List Ref):RUS0052 (UK Statement of Reasons):Former so called 'Defence Minister' and former so-called 'Head' of the 'Luhansk People's Republic' and as such responsible for the separatist 'governmental' activities of the so called 'government of the People's Republic of Luhansk'. Former Special Envoy of the so-called ‘Luhansk People’s Republic’ on Minsk Implementation. (Gender):Male,Individual,Primary name variation,,Russia,12/07/2014,31/12/2020,16/09/2022,13017 +PLYAKIN,Vladimir,Vladimirovich,,,,,Плякин Владимир Владимирович,,,19/09/1981,Kuibyshev,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0492 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14437 +PLYSHEUSKIY,Igar,Anatolievic,,,,,Игорь Анатольевич ПЛЫШЕВСКИЙ,,,19/02/1979,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0041 (UK Statement of Reasons):Igar Plysheuskiy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13957 +PLYSHEUSKIY,Igar,Anatolievich,,,,,,,,19/02/1979,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0041 (UK Statement of Reasons):Igar Plysheuskiy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13957 +PLYSHEUSKIY,Ihor,,,,,,,,,19/02/1979,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0041 (UK Statement of Reasons):Igar Plysheuskiy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13957 +PLYSHEVSKI,Igar,Anatolievic,,,,,,,,19/02/1979,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0041 (UK Statement of Reasons):Igar Plysheuskiy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13957 +PLYSHEVSKI,Igar,Anatolievich,,,,,,,,19/02/1979,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0041 (UK Statement of Reasons):Igar Plysheuskiy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13957 +PLYSHEVSKI,Ihor,,,,,,,,,19/02/1979,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0041 (UK Statement of Reasons):Igar Plysheuskiy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13957 +PLYSHEVSKIY,Igar,Anatolievic,,,,,,,,19/02/1979,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0041 (UK Statement of Reasons):Igar Plysheuskiy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13957 +PLYSHEVSKIY,Igar,Anatolievich,,,,,,,,19/02/1979,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0041 (UK Statement of Reasons):Igar Plysheuskiy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13957 +PLYSHEVSKIY,Ihor,,,,,,,,,19/02/1979,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0041 (UK Statement of Reasons):Igar Plysheuskiy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13957 +PLYSHEVSKY,Igor,Anatolevich,,,,,,,,19/02/1979,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0041 (UK Statement of Reasons):Igar Plysheuskiy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13957 +PMC VAGNER,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1090 (UK Statement of Reasons):The WAGNER GROUP is often described as a Russia-based Private Military Company and is an entity or group that provides military services for financial gain. It has organised the recruitment of, and coordinated and planned operations for, the Wagner Group mercenaries participating in military operations in Ukraine. There are multiple, credible sources which corroborate and support the conclusion that the existence of the organisation known as the Wagner Group is kept purposefully vague and opaque in order to provide a deniable military capability for the Russian State. The WAGNER GROUP is therefore responsible for, engages in, and provides support for actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,27/05/2022,15033 +PMC WAGNER,,,,,,,ЧВК Вагнера,Cyrillic,Russian,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1090 (UK Statement of Reasons):The WAGNER GROUP is often described as a Russia-based Private Military Company and is an entity or group that provides military services for financial gain. It has organised the recruitment of, and coordinated and planned operations for, the Wagner Group mercenaries participating in military operations in Ukraine. There are multiple, credible sources which corroborate and support the conclusion that the existence of the organisation known as the Wagner Group is kept purposefully vague and opaque in order to provide a deniable military capability for the Russian State. The WAGNER GROUP is therefore responsible for, engages in, and provides support for actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,27/05/2022,15033 +PODDUBNY,Evgeny,,,,,,Евгений Поддубный,,,22/08/1983,Belgorod,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1379 (UK Statement of Reasons):Evgeny PODDUBNY is a war correspondent at All-Russian State Television and Radio Broadcasting Company. Through his dissemination of Kremlin propaganda, PODDUBNY has provided support for and promoted Russia’s invasion of Ukraine. PODDUBNY is therefore an involved person who provides support for or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,04/05/2022,15336 +PODLIPAEVA,Svetlana,Nikolaevna,,,,,ПОДЛИПАЕВА Светлана Николаевна,Cyrillic,Russian,16/09/1968,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1167 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15119 +PODLIPANOV,Dmitriy,Viktorovich,,,,,ПОДЛИПАНОВ Дмитрий Викторович,Cyrillic,Russian,28/11/1964,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1148 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15100 +PODOPRIGOROV,Sergei,,,,,,,,,08/01/1974,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0021 (UK Statement of Reasons):Sergei Podoprigorov was a judge at Moscow’s Tverskoi district court. He made two rulings in relation to Sergei Magnitsky: in November 2008 to approve Magnitsky’s arrest and in March 2009 to prolong his detention. In this capacity, Podoprigorov authorised Magnitsky’s detention, prolonging his detention without trial without subjecting to challenge the evidence originally provided to justify Magnitsky’s detention or exploring other factors relevant to the decision. Podoprigorov therefore facilitated the mistreatment and death of Magnitsky by authorising the extension of his detention. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13881 +PODOPRIGOROV,Sergey,,,,,,,,,08/01/1974,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0021 (UK Statement of Reasons):Sergei Podoprigorov was a judge at Moscow’s Tverskoi district court. He made two rulings in relation to Sergei Magnitsky: in November 2008 to approve Magnitsky’s arrest and in March 2009 to prolong his detention. In this capacity, Podoprigorov authorised Magnitsky’s detention, prolonging his detention without trial without subjecting to challenge the evidence originally provided to justify Magnitsky’s detention or exploring other factors relevant to the decision. Podoprigorov therefore facilitated the mistreatment and death of Magnitsky by authorising the extension of his detention. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13881 +PODTYNNAYA,Alla,Arkadievna,,,,,,,,08/06/1953,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1289 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15241 +PODTYNNAYA,Alla,Arkadyevna,,,,,ПОДТЫННАЯ Алла Аркадьевна,Cyrillic,Russian,08/06/1953,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1289 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15241 +POGORELOV,Miroslav,Yureyevich,,,,,Мирослав Погорелов,,,07/06/1968,,,Ukraine,,,,,Deputy Head of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0053 (UK Statement of Reasons):Former Deputy Chair of the Sevastopol Electoral Commission until 2019. In this capacity he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,14/05/2018,31/12/2020,16/09/2022,13669 +POGORELOV,Myroslav,,,,,,,,,07/06/1968,,,Ukraine,,,,,Deputy Head of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0053 (UK Statement of Reasons):Former Deputy Chair of the Sevastopol Electoral Commission until 2019. In this capacity he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13669 +POGORELOV,Myroslav,Oleksandrovych,,,,,,,,07/06/1968,,,Ukraine,,,,,Deputy Head of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0053 (UK Statement of Reasons):Former Deputy Chair of the Sevastopol Electoral Commission until 2019. In this capacity he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13669 +POGORELOV,Miroslav,Aleksandrovich,,,,,,,,07/06/1968,,,Ukraine,,,,,Deputy Head of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0053 (UK Statement of Reasons):Former Deputy Chair of the Sevastopol Electoral Commission until 2019. In this capacity he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13669 +POGORELY,Dmitry,Viktorovich,,,,,Погорелый Дмитрий Викторович,,,04/10/1977,"Nizhnevartovsk, Tyumen Region",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0493 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14438 +POGREBENKOV,Valeriy,Ivanovich,,,,,ПОГРЕБЕНКОВ Валерий Иванович,Cyrillic,Russian,19/07/1947,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0799 (UK Statement of Reasons):Valeriy Ivanovich POGREBENKOV has been involved in providing support for and promoting actions and policies that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being involved in spreading disinformation and promoting Russian actions in Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,05/07/2022,14750 +POHORELOV,Miroslav,Yureyevich,,,,,,,,07/06/1968,,,Ukraine,,,,,Deputy Head of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0053 (UK Statement of Reasons):Former Deputy Chair of the Sevastopol Electoral Commission until 2019. In this capacity he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13669 +POHORELOV,Myroslav,,,,,,,,,07/06/1968,,,Ukraine,,,,,Deputy Head of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0053 (UK Statement of Reasons):Former Deputy Chair of the Sevastopol Electoral Commission until 2019. In this capacity he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13669 +POHORELOV,Myroslav,Oleksandrovych,,,,,,,,07/06/1968,,,Ukraine,,,,,Deputy Head of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0053 (UK Statement of Reasons):Former Deputy Chair of the Sevastopol Electoral Commission until 2019. In this capacity he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13669 +POHORIELOV,Miroslav,Yureyevich,,,,,,,,07/06/1968,,,Ukraine,,,,,Deputy Head of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0053 (UK Statement of Reasons):Former Deputy Chair of the Sevastopol Electoral Commission until 2019. In this capacity he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13669 +POHORIELOV,Myroslav,,,,,,,,,07/06/1968,,,Ukraine,,,,,Deputy Head of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0053 (UK Statement of Reasons):Former Deputy Chair of the Sevastopol Electoral Commission until 2019. In this capacity he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13669 +POHORIELOV,Myroslav,Oleksandrovych,,,,,,,,07/06/1968,,,Ukraine,,,,,Deputy Head of the Sevastopol City Election Commission,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0053 (UK Statement of Reasons):Former Deputy Chair of the Sevastopol Electoral Commission until 2019. In this capacity he participated in the organisation of the Russian presidential elections of 18 March 2018 in the illegally annexed Crimea and Sevastopol, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,14/05/2018,31/12/2020,16/09/2022,13669 +POKINTELITSA,Yuri,Ivanovich,,,,,"ПОКИНТЕЛИЦА, Юрий Иванович",Cyrillic,Russian,21/05/1966,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1199 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15151 +POKLONSKAYA,Natalia,Vladimirovna,,,,,Наталія Поклонська,,,18/03/1980,"(1) Mikhailovka, Voroshilovgrad region (2) Yevpatoria",(1) Ukrainian SSR (now Ukraine) (2) Ukrainian SSR (now Ukraine),(1) Russia (2) Ukraine,,,,,Former Member of the State Duma of the Russian Federation elected from the illegally annexed Autonomous Republic of Crimea,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0054 (UK Statement of Reasons):Member of the State Duma, elected from the illegally annexed Autonomous Republic of Crimea. Former Prosecutor of the so-called ‘Republic of Crimea’. Actively implemented Russia's annexation of Crimea. Currently First Deputy Chairperson of the Committee for International Affairs, member of the Commission on the investigation on foreign interference in the internal affairs of the Russian Federation, member of the Committee for Security and countering corruption of the State Duma of the Russian Federation. (Gender):Female",Individual,Primary name,,Russia,12/05/2014,31/12/2020,16/09/2022,12977 +POKLONSKAYA,Natalya,Vladimirovna,,,,,,,,18/03/1980,"(1) Mikhailovka, Voroshilovgrad region (2) Yevpatoria",(1) Ukrainian SSR (now Ukraine) (2) Ukrainian SSR (now Ukraine),(1) Russia (2) Ukraine,,,,,Former Member of the State Duma of the Russian Federation elected from the illegally annexed Autonomous Republic of Crimea,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0054 (UK Statement of Reasons):Member of the State Duma, elected from the illegally annexed Autonomous Republic of Crimea. Former Prosecutor of the so-called ‘Republic of Crimea’. Actively implemented Russia's annexation of Crimea. Currently First Deputy Chairperson of the Committee for International Affairs, member of the Commission on the investigation on foreign interference in the internal affairs of the Russian Federation, member of the Committee for Security and countering corruption of the State Duma of the Russian Federation. (Gender):Female",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12977 +POLARIS NO.9,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0108 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK cargo vessel M/V WOORY STAR is believed to have been involved in illicit transfers of prohibited DPRK goods. Listed as asset of Phyongchon Shipping & Marine (OFSI ID: 13641, UN Reference Number: UN Ref KPe.070) (IMO number):8408595 (Current owners):Phyongchon Shipping & Marine (Flag of ship):North Korea (Type of ship):General Cargo / Multi Purpose (Tonnage of ship):3154 (Length of ship):89 (Year built):1984",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13659 +POLETAYEV,Vladimir,Vladimirovich,,,,,Владимир Владимирович Полетаев,,,23/05/1975,"Gorno-Altaisk, Altai Territory",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0868 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14819 +POLITICAL SECURITY DIRECTORATE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0323 Security Agency (UK Statement of Reasons):Syrian Government agency directly involved in repression. (Type of entity):Government agency,Entity,Primary name,,Syria,24/08/2011,31/12/2020,31/12/2020,12054 +POLOVYAN,Aleksei,Vladimirovich,,,,,ПОЛОВЯН Алексей Владимирович,Cyrillic,Russian,03/05/1979,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1152 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15104 +POLOVYAN,Alexey,Vladimirovich,,,,,,,,03/05/1979,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1152 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15104 +POLUBOYARINOV,Mikhail,Igorevich,,,,,,,,02/04/1966,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0779 (UK Statement of Reasons):Mikhail Igorevich POLUBOYARINOV was CEO of Aeroflot, Russia’s largest airline up until March 2022 and has been a member of its Board of Directors. In his position as CEO, POLUBOYARINOV was working as a director or equivalent in an entity carrying on business in the transport sector - a sector of strategic significance to the Government of Russia - and therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14730 +POLUYANOVA,Nataliya,Vladimirovna,,,,,Полуянова Наталия Владимировна,,,03/11/1981,Belgorod,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0675 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14626 +POLYAKOV,Andrey,Aleksandrovich,,,,,Андрей Александрович ПОЛЯКОВ,Cyrillic,Russian,00/00/1976,,Russia,Russia,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS1060 (UK Statement of Reasons):Andrey Polyakov [“Polyakov”] is a member of the Management Board of Public Joint Stock Company Rosneft Oil Company [“Rosneft”], a Russian oil company. Rosneft is a Government of Russia-affiliated entity as the Government of Russia owns a minority interest in Rosneft via the state-owned company JSC Roseneftgaz. As a member of Rosneft’s Management Board, Polyakov is a member of or associated with Rosneft, which is carrying on business as a Government of Russia-affiliated entity. (Gender):Male",Individual,Primary name,,Russia,24/03/2022,24/03/2022,12/07/2022,15003 +POLYAKOV,Vladimir,Nikolaevich,,,,,ПОЛЯКОВ Владимир Николаевич,Cyrillic,Russian,07/04/1987,Perevalsk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1290 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15242 +POLYAKOV,Alexander,Alekseevich,,,,,Поляков Александр Алексеевич,,,31/01/1969,"Vishnev, Staroyuryevsky district, Tambov region",Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0494 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14439 +POLYAKOVA,Alla,Viktorovna,,,,,Полякова Алла Викторовна,,,26/11/1970,Ryazan,Russia,,606252473,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0567 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14512 +POLYANSKAYA,Natalia,Alexeyevna,,,,,,,,06/11/1971,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1200 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15152 +POLYANSKAYA,Natalya,Alekseevna,,,,,ПОЛЯНСКАЯ Наталья Алексеевна,Cyrillic,Russian,06/11/1971,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1200 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15152 +POM SU,Jang,,,,,,,,,22/02/1958,,,,836110034,"diplomatic passport number 836110034, which expires on 1 January 2020.",,,Tanchon Commercial Bank Representative in Syria,,,,,,,,,"(UK Sanctions List Ref):DPR0214 (UN Ref):KPi.016 Pursuant to Resolution 2371(2017) the Security Council added the following information: New AKA: Jang Hyon U with date of birth 22 February 1958 and diplomatic passport number 836110034, which expires on 1 January 2020.",Individual,AKA,Good quality,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13327 +POM SU,Jang,,,,,,,,,15/04/1957,,,,836110034,"diplomatic passport number 836110034, which expires on 1 January 2020.",,,Tanchon Commercial Bank Representative in Syria,,,,,,,,,"(UK Sanctions List Ref):DPR0214 (UN Ref):KPi.016 Pursuant to Resolution 2371(2017) the Security Council added the following information: New AKA: Jang Hyon U with date of birth 22 February 1958 and diplomatic passport number 836110034, which expires on 1 January 2020.",Individual,AKA,Good quality,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13327 +PONG NAM,Pak,,,,,,,,,06/05/1969,,,North Korea,,,,,Pak Bong Nam is an overseas Ilsim International Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0252 (UN Ref):KPi.073 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13568 +PONG-NAM,Pak,,,,,,,,,06/05/1969,,,North Korea,,,,,Pak Bong Nam is an overseas Ilsim International Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0252 (UN Ref):KPi.073 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13568 +PONOMARENKO,Alexander,,,,,,ПОНОМАРЕНКО Александр,Cyrillic,Russian,27/10/1964,Belogorsk,Ukraine,Russia,,,,,Chairman of Board of Directors (Sheremetyevo Airport),,,,,,,,Russia,"(UK Sanctions List Ref):RUS0760 (UK Statement of Reasons):Alexander Ponomarenko was elected in 2015 as a non-executive director of the Board of Directors of Sheremetyevo International Airport, the largest airport in Russia. He was subsequently elected as Chairman of the Board of Directors in 2016. He is reported to have a stake in the company which owns nearly 70% of the airport; the Russian State owns the remainder of the capital in the airport. Mr Ponomarenko also plays a strategic role in the running of the airport. Mr Ponomarenko has been a director in an entity carrying on business in a Government of Russia-affiliated entity, in a sector of strategic significance to the Government of Russia. He has therefore been involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,14/06/2022,14711 +PONOMAREV,Arkady,Nikolaevich,,,,,Аркадий Николаевич Пономарёв,,,16/05/1956,Voronezh,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0670 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14621 +PONOMAREV,Viacheslav,Vladimirovich,,,,,,,,02/05/1965,Sloviansk (Donetsk oblast),Ukrainian SSR (now Ukraine),Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0055 (UK Statement of Reasons):Former self-declared ‘People’s Mayor’ of Slaviansk (until 10/06/2014). Ponomariov called on Valdimir Putin to send in Russian troops to protect the city and later asked him to supply weapons. Ponomariav’s men were involved in kidnappings (they captured activist Irma Krat and Simon Ostrovsky, a reporter for Vice News, both were later released, they detained military observers under the OSCE Vienna Document). Remains active in supporting separatist actions and policies. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,14/02/2022,12970 +PONOMARIOV,Viacheslav,,,,,,,,,02/05/1965,Sloviansk (Donetsk oblast),Ukrainian SSR (now Ukraine),Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0055 (UK Statement of Reasons):Former self-declared ‘People’s Mayor’ of Slaviansk (until 10/06/2014). Ponomariov called on Valdimir Putin to send in Russian troops to protect the city and later asked him to supply weapons. Ponomariav’s men were involved in kidnappings (they captured activist Irma Krat and Simon Ostrovsky, a reporter for Vice News, both were later released, they detained military observers under the OSCE Vienna Document). Remains active in supporting separatist actions and policies. (Gender):Male",Individual,Primary name,,Russia,12/05/2014,31/12/2020,14/02/2022,12970 +PONOMARIOV,Vyacheslav,Volodymyrovich,,,,,,,,02/05/1965,Sloviansk (Donetsk oblast),Ukrainian SSR (now Ukraine),Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0055 (UK Statement of Reasons):Former self-declared ‘People’s Mayor’ of Slaviansk (until 10/06/2014). Ponomariov called on Valdimir Putin to send in Russian troops to protect the city and later asked him to supply weapons. Ponomariav’s men were involved in kidnappings (they captured activist Irma Krat and Simon Ostrovsky, a reporter for Vice News, both were later released, they detained military observers under the OSCE Vienna Document). Remains active in supporting separatist actions and policies. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,14/02/2022,12970 +PONOMARYOV,Viacheslav,,,,,,,,,02/05/1965,Sloviansk (Donetsk oblast),Ukrainian SSR (now Ukraine),Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0055 (UK Statement of Reasons):Former self-declared ‘People’s Mayor’ of Slaviansk (until 10/06/2014). Ponomariov called on Valdimir Putin to send in Russian troops to protect the city and later asked him to supply weapons. Ponomariav’s men were involved in kidnappings (they captured activist Irma Krat and Simon Ostrovsky, a reporter for Vice News, both were later released, they detained military observers under the OSCE Vienna Document). Remains active in supporting separatist actions and policies. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,14/02/2022,12970 +PONOMARYOV,Vyacheslav,Volodymyrovich,,,,,,,,02/05/1965,Sloviansk (Donetsk oblast),Ukrainian SSR (now Ukraine),Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0055 (UK Statement of Reasons):Former self-declared ‘People’s Mayor’ of Slaviansk (until 10/06/2014). Ponomariov called on Valdimir Putin to send in Russian troops to protect the city and later asked him to supply weapons. Ponomariav’s men were involved in kidnappings (they captured activist Irma Krat and Simon Ostrovsky, a reporter for Vice News, both were later released, they detained military observers under the OSCE Vienna Document). Remains active in supporting separatist actions and policies. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,14/02/2022,12970 +PONOMARYOV,Valery,Andreevich,,,,,Валерий Андреевич Пономарёв,,,17/08/1959,Tikhoy,Russia,Russia,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,,103426,Russia,"(UK Sanctions List Ref):RUS1369 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,04/05/2022,04/05/2022,04/05/2022,15346 +POOYA WAVE CO.,,,,,,,,,,,,,,,,,,,No 15,Eighth Street,Pakistan Avenue,Shahid Beheshti Avenue,,Tehran,,Iran,(UK Sanctions List Ref):INU0099 (UK Statement of Reasons):Has been involved in procurement of materials that are controlled and have direct applications in the manufacture of centrifuges for Iran's uranium enrichment programme. (Phone number):+98 21 88 73 77 53 (Website):www.pooyawave.com (Email address):info@pooyawave.com (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11541 +POOYA WAVE COMPANY,,,,,,,,,,,,,,,,,,,No 15,Eighth Street,Pakistan Avenue,Shahid Beheshti Avenue,,Tehran,,Iran,(UK Sanctions List Ref):INU0099 (UK Statement of Reasons):Has been involved in procurement of materials that are controlled and have direct applications in the manufacture of centrifuges for Iran's uranium enrichment programme. (Phone number):+98 21 88 73 77 53 (Website):www.pooyawave.com (Email address):info@pooyawave.com (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11541 +POPOV,Anatoly,,,,,,,,,05/12/1974,Novosibirsk,Russia,Russia,,,,,Deputy Chairman of Sberbank’s Executive Board,,,,,,,,,"(UK Sanctions List Ref):RUS1591 (UK Statement of Reasons):Anatoly Leonidovich Popov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a director, manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK). (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15535 +POPOV,Anatoly,Leonidovich,,,,,,,,05/12/1974,Novosibirsk,Russia,Russia,,,,,Deputy Chairman of Sberbank’s Executive Board,,,,,,,,,"(UK Sanctions List Ref):RUS1591 (UK Statement of Reasons):Anatoly Leonidovich Popov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a director, manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK). (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15535 +POPOV,Pavel,Anatolievich,,,,,,,,01/01/1957,Krasnoyarsk,Russia,Russia,,,,,Deputy Minister of Defence of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):CHW0015 (UK Statement of Reasons):Pavel Popov is the Deputy Minister in the Ministry of Defence of the Russian Federation. In this capacity, he has overall responsibility for research activities. This includes the oversight and development of the Ministry’s scientific and technical capabilities, including the development of potential weapons, and modernisation of existing weapons and military equipment. The Russian Ministry of Defence took on the responsibility for the chemical weapons stocks inherited from the Soviet Union and their safe storage until their destruction could be completed. The Russian Ministry of Defence has overall responsibility for the safe storage and destruction of chemical weapons. Russian opposition leader Alexey Navalny was the victim of an attempted assassination during his August 2020 visit to Siberia, in which a chemical weapon—a toxic nerve agent of the Novichok group—was used. Given the use of such chemical weapons in the territory of the Russian Federation and the evidence of the continued involvement of the Russian MoD in the Novichok programme, this could only be on account of intent by the Ministry of Defence and its political leadership, which includes Pavel Popov. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny was a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. Given Pavel Popov’s senior role in the Russian military, the evidence suggests that he is responsible for the preparation and use of chemical weapons in the attempted assassination of Alexey Navalny. (Gender):Male",Individual,Primary name,,Chemical Weapons,15/10/2020,04/01/2021,08/01/2021,13973 +POPOV,Oleg,Nikolaevich,,,,,ПОПОВ Олег Николаевич,Cyrillic,Russian,16/04/1972,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1291 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15243 +POPOV,Pavel,Anatolevich,,,,General of the Army,ПОПОВ Павел Анатольевич,,,01/01/1957,Krasnoyarsk,Russia,Russia,,,,,Deputy Minister of Defence of the Russian Federation,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0800 (UK Statement of Reasons):General of the Army Pavel Anatolyevich POPOV is a member of the Armed Forces of the Russian Federation, he currently holds the position of Deputy Minister of Defence. He is considered to have been in direct command of and/or to wield significant influence over the military invasion of Ukraine by Russian forces. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14751 +POPOV,Evgeny,Georgievich,,,,,Евгений Гео́ргиевич Попов,,,11/09/1978,Vladivostok,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0624 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14569 +POPOVA,Irina,Vasilyevna,,,,,,,,07/08/1966,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1180 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15132 +POPOVA,Irinia,Vasilievna,,,,,ПОПОВА Ирина Васильевна,Cyrillic,Russian,07/08/1966,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1180 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15132 +POPOVICH,Aleksey,Valerievich,,,,,,,,00/00/1987,,,Russia,,,,,Member of Gazprombank’s Management Board,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1612 (UK Statement of Reasons):Alexey Valerievich Popovich is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15556 +POPOVICH,Alexey,Valerievich,,,,,Алексей Валерьевич Попович,Cyrillic,Russian,00/00/1987,,,Russia,,,,,Member of Gazprombank’s Management Board,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1612 (UK Statement of Reasons):Alexey Valerievich Popovich is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15556 +POPULAR CREDIT BANK,,,,,,,,,,,,,,,,,,,Dar Al Muhanisen Building,6th Floor,Maysaloun Street,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0324 Banking (UK Statement of Reasons):State-owned bank. Provides financial support to the regime. (Phone number):+963 11-221-0124 (Fax). +963 11-221-8376. +963 11-222-7604,Entity,Primary name,,Syria,24/01/2012,31/12/2020,31/12/2020,12484 +PORRAS CORTES,Gustavo,Eduardo,,,,President,,,,11/10/1954,Managua,Nicaragua,Nicaragua,,,,,President of the Nicaraguan National Assembly,,,,,,,,Nicaragua,"(UK Sanctions List Ref):NIC0008 (UK Statement of Reasons):Gustavo Eduardo Porras Cortés has been President of the Nicaraguan National Assembly since 2017. During this time, Porras has presided over, introduced, voted for, signed, and publicly advocated for legislation which undermines democracy, violates human rights, and represses civil society and the democratic opposition. He is therefore responsible for undermining democracy and the rule of law, repression of civil society and the democratic opposition and for human rights violations. (Gender):Male",Individual,Primary name,,Nicaragua,15/11/2021,15/11/2021,15/11/2021,14146 +POTANIN,Vladimir,Olegovich,,,,,Владимир Олегович Потанин,,,03/01/1961,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1466 (UK Statement of Reasons):Vladimir Olegovich POTANIN is an involved person as he is obtaining a benefit from or supporting the Government of Russia by owning or controlling Rosbank. Rosbank is carrying on business in the Russian financial services sector, which is a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,29/06/2022,29/06/2022,23/08/2022,15417 +POTASSIUM,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CYB0003 (UK Statement of Reasons):Huaying Haitai, known in cyber security circles as APT10 (Advanced Persistent Threat 10), Red Apollo, CVNX, Stone Panda, MenuPass and Potassium, was involved in relevant cyber activity Operation Cloud Hopper, one of the most significant and widespread cyber instructions to date. They conducted data interference through the theft of intellectual property and sensitive commercial data over many years. Huaying Haitai targeted companies across six continents and sectors banking and finance, government, aviation, space, and satellite technology, manufacturing technology, medical, oil and gas, mining, communications technology, computer processing technology, and defence technology. This activity undermined the prosperity of the United Kingdom and countries other than the United Kingdom (Website):huayinghaitai.com (Type of entity):Company",Entity,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13909 +POZDNIAKOVA,Olga,Valerievna,,,,,,,,30/03/1982,"Shakhty, Rostov Oblast",USSR,Ukraine,,,,,Chairperson of the so-called Donetsk RSFSR People’s Republic Central Election Commission,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0056 (UK Statement of Reasons):Head of the Directorate for Domestic Policy within the administration of the so called ‘Head of the Donetsk People’s Republic’. Former “Chairperson” of the ‘Central Electoral Commission’ of the so-called ‘Donetsk People’s Republic’. In this capacity, she participated in the organisation of the so-called ‘elections’ of 11 November 2018 in the so-called ‘Donetsk People’s Republic’, and thereby actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Female",Individual,Primary name,,Russia,10/12/2018,31/12/2020,14/02/2022,13721 +POZDNYAKOVA,Olga,Valeriyivna,,,,,,,,30/03/1982,"Shakhty, Rostov Oblast",USSR,Ukraine,,,,,Chairperson of the so-called Donetsk RSFSR People’s Republic Central Election Commission,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0056 (UK Statement of Reasons):Head of the Directorate for Domestic Policy within the administration of the so called ‘Head of the Donetsk People’s Republic’. Former “Chairperson” of the ‘Central Electoral Commission’ of the so-called ‘Donetsk People’s Republic’. In this capacity, she participated in the organisation of the so-called ‘elections’ of 11 November 2018 in the so-called ‘Donetsk People’s Republic’, and thereby actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Female",Individual,AKA,,Russia,10/12/2018,31/12/2020,14/02/2022,13721 +POZDNYAKOVA,Olga,Valeryevna,,,,,,,,30/03/1982,"Shakhty, Rostov Oblast",USSR,Ukraine,,,,,Chairperson of the so-called Donetsk RSFSR People’s Republic Central Election Commission,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0056 (UK Statement of Reasons):Head of the Directorate for Domestic Policy within the administration of the so called ‘Head of the Donetsk People’s Republic’. Former “Chairperson” of the ‘Central Electoral Commission’ of the so-called ‘Donetsk People’s Republic’. In this capacity, she participated in the organisation of the so-called ‘elections’ of 11 November 2018 in the so-called ‘Donetsk People’s Republic’, and thereby actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Female",Individual,AKA,,Russia,10/12/2018,31/12/2020,14/02/2022,13721 +PRASONDHA,Angga,Dimas,,,,,,,,04/03/1985,Jakarta,Indonesia,Indonesia,W344982,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0142 (UN Ref):QDi.348 Member of Jemaah Islamiyah (QDe.092) and leader of Hilal Ahmar Society Indonesia (HASI) (QDe.147). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5854965,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/03/2015,13/03/2015,31/12/2020,13242 +PRIGARA,Vadim,Sergeevich,,,,,,,,31/10/1980,,,,,,,,Head of the Molodechno District Police Department,,,,,,,,,"(UK Sanctions List Ref):BEL0075 (UK Statement of Reasons):Lieutenant Colonel Vadzim Prygara, as Head of the District Police Department in Molodechno, is responsible for the repression and intimidation campaign led by the local police force under his command in the wake of the 2020 presidential election, in particular with arbitrary arrests and ill-treatment, including torture of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14050 +PRIGARA,Vadzim,Siarhejevich,,,,,,,,31/10/1980,,,,,,,,Head of the Molodechno District Police Department,,,,,,,,,"(UK Sanctions List Ref):BEL0075 (UK Statement of Reasons):Lieutenant Colonel Vadzim Prygara, as Head of the District Police Department in Molodechno, is responsible for the repression and intimidation campaign led by the local police force under his command in the wake of the 2020 presidential election, in particular with arbitrary arrests and ill-treatment, including torture of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14050 +PRIGOZHIN,Evgeny,,,,,,,,,01/06/1961,Leningrad (St Petersburg),Russia,Russia,40 07 136936,,,,(1) Responsible for and support to the Wagner Group (2) Funder and former director of Internet Research Agency,,,,,,,,,"(UK Sanctions List Ref):LIB0071 (UK Statement of Reasons):Yevgeniy Viktorovich Prigozhin is or has been involved in activities which threaten the peace, stability and security of Libya or undermine its transition to a democratic, peaceful and independent country, through his responsibility and provision of support for the activities in Libya of the organisation known as the Wagner Group. The Wagner Group is a Russia-based private military company but its organisation is purposely opaque to obscure its ownership and in order to provide a deniable military capability for the Russian State. The Wagner Group is or has been operating in Libya in contravention of the United Nations arms embargo established by United Nations Security Council Resolution 1970 (2011) and, through its activities in Libya in support of Khalifa Haftar’s Libyan National Army, threatens the peace, stability and security of Libya or undermines its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,Primary name variation,,Libya,15/10/2020,31/12/2020,26/09/2022,13968 +PRIGOZHIN,Yevgeniy,Viktorovich,,,,Mr,Евгений Викторович ПРИГОЖИН,Cyrillic,Russian,01/06/1961,Leningrad (St Petersburg),Russia,Russia,40 07 136936,,,,(1) Responsible for and support to the Wagner Group (2) Funder and former director of Internet Research Agency,,,,,,,,,"(UK Sanctions List Ref):LIB0071 (UK Statement of Reasons):Yevgeniy Viktorovich Prigozhin is or has been involved in activities which threaten the peace, stability and security of Libya or undermine its transition to a democratic, peaceful and independent country, through his responsibility and provision of support for the activities in Libya of the organisation known as the Wagner Group. The Wagner Group is a Russia-based private military company but its organisation is purposely opaque to obscure its ownership and in order to provide a deniable military capability for the Russian State. The Wagner Group is or has been operating in Libya in contravention of the United Nations arms embargo established by United Nations Security Council Resolution 1970 (2011) and, through its activities in Libya in support of Khalifa Haftar’s Libyan National Army, threatens the peace, stability and security of Libya or undermines its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,Primary name,,Libya,15/10/2020,31/12/2020,26/09/2022,13968 +PRIGOZHIN,Yevgeny,,,,,,,,,01/06/1961,Leningrad (St Petersburg),Russia,Russia,40 07 136936,,,,(1) Responsible for and support to the Wagner Group (2) Funder and former director of Internet Research Agency,,,,,,,,,"(UK Sanctions List Ref):LIB0071 (UK Statement of Reasons):Yevgeniy Viktorovich Prigozhin is or has been involved in activities which threaten the peace, stability and security of Libya or undermine its transition to a democratic, peaceful and independent country, through his responsibility and provision of support for the activities in Libya of the organisation known as the Wagner Group. The Wagner Group is a Russia-based private military company but its organisation is purposely opaque to obscure its ownership and in order to provide a deniable military capability for the Russian State. The Wagner Group is or has been operating in Libya in contravention of the United Nations arms embargo established by United Nations Security Council Resolution 1970 (2011) and, through its activities in Libya in support of Khalifa Haftar’s Libyan National Army, threatens the peace, stability and security of Libya or undermines its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,Primary name variation,,Libya,15/10/2020,31/12/2020,26/09/2022,13968 +PRIGOZHIN,Pavel,Evgenyevich,,,,,ПРИГОЖИН Павел Евгеньевич,Cyrillic,Russian,18/06/1998,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0801 (UK Statement of Reasons):Pavel Evgenyevich PRIGOZHIN is the son of Yevgeniy Viktorovich PRIGOZHIN. Therefore, there are reasonable grounds to suspect that Pavel Evgenyevich PRIGOZHIN is associated with Yevgeniy Viktorovich PRIGOZHIN, and has obtained a financial benefit or other material benefit from Yevgeniy Viktorovich PRIGOZHIN. PRIGOZHIN is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14752 +PRIGOZHINA,Lyubov,Valentinova,,,,,ПРИГОЖИНА Любовь Валентинова,Cyrillic,Russian,26/06/1970,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0701 (UK Statement of Reasons):Lyubov Valentinova PRIGOZHINA is the wife of Yevgeniy Viktorovich PRIGOZHIN. Therefore, there are reasonable grounds to suspect that Lyubov Valentinova PRIGOZHINA is associated with Yevgeniy Viktorovich PRIGOZHIN, and has obtained a financial benefit or other material benefit from Yevgeniy Viktorovich PRIGOZHIN. Yevgeniy Viktorovich PRIGOZHIN is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14652 +PRIGOZHINA,Polina,Evgenievna,,,,,ПРИГОЖИНА Полина Евгеньевна,Cyrillic,Russian,15/08/1992,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0802 (UK Statement of Reasons):Polina Evgenievna PRIGOZHINA is the daughter of Yevgeniy Viktorovich PRIGOZHIN. Therefore, there are reasonable grounds to suspect that Polina Evgenievna PRIGOZHINA is associated with Yevgeniy Viktorovich PRIGOZHIN, and has obtained a financial benefit or other material benefit from Yevgeniy Viktorovich PRIGOZHIN. Yevgeniy Viktorovich PRIGOZHIN is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14753 +PRIGOZHINA,Violetta,Kirovna,,,,,ПРИГОЖИНА Виолетта Кировна,Cyrillic,Russian,00/00/1939,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0700 (UK Statement of Reasons):Violetta Kirovna PRIGOZHINA is the mother of Yevgeniy Viktorovich PRIGOZHIN. Therefore, there are reasonable grounds to suspect that Violetta Kirovna PRIGOZHINA is associated with Yevgeniy Viktorovich PRIGOZHIN, and has obtained a financial benefit or other material benefit from Yevgeniy Viktorovich PRIGOZHIN. Yevgeniy Viktorovich PRIGOZHIN is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14651 +PRILEPIN,Zakhar,,,,,,Прилепин Захар,,,07/07/1975,Il'inka,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0763 (UK Statement of Reasons):As a prominent writer and Russian media commentator, Yevgeniy Nikolaevich Prilepin is a vocal supporter of Russian intervention in Ukraine.  In numerous articles, broadcasts and interviews he has promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,AKA,Good quality,Russia,15/03/2022,15/03/2022,09/05/2022,14714 +PRILEPIN,Yevgeniy,Nikolaevich,,,,,ПРИЛЕПИН Евгений Николаевич,Cyrillic,Russian,07/07/1975,Il'inka,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0763 (UK Statement of Reasons):As a prominent writer and Russian media commentator, Yevgeniy Nikolaevich Prilepin is a vocal supporter of Russian intervention in Ukraine.  In numerous articles, broadcasts and interviews he has promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14714 +PRISENKO,Leonid,Vladimirovich,,,,,ПРИСЕНКО Леонид Владимирович,Cyrillic,Russian,06/07/1961,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1201 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15153 +PRISON BUREAU,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,,"(UK Sanctions List Ref):GHR0048 No details regarding the Head of MSS Bureau 7 are available. The Minister of State Security, who we understand to have been Jong Kyong Thaek since 2017 (although DPRK sources have not confirmed he still holds that position), is assumed to have responsibility for MSS Bureau 7. (UK Statement of Reasons):As the entity responsible for running the DPRK's political prison camps, MSS Bureau 7 is involved in the widespread serious human rights violations committed against prisoners in those camps by camp guards and other DPRK officials. These violations include murder, torture and enslavement. (Type of entity):Government (Parent company):Is the Parent company",Entity,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13899 +PRIZRAK BATTALION 'GHOST' BATTALION,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0191 (UK Statement of Reasons):The Prizrak Brigade is an armed separatist group which has actively supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and further destabilise Ukraine. They form part of the so-called ‘2nd Army Corps’ of the ‘Lugansk People’s Republic’ and are also referred to as the 14th Motorized Rifle Battalion which have taken part in territorial defence in the Luhansk region. (Phone number):+8985 130 9920 (Email address):mail@prizrak.info",Entity,AKA,,Russia,16/02/2015,31/12/2020,31/12/2020,13222 +PRIZRAK BATTALION 'GHOST' BRIGADE,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0191 (UK Statement of Reasons):The Prizrak Brigade is an armed separatist group which has actively supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and further destabilise Ukraine. They form part of the so-called ‘2nd Army Corps’ of the ‘Lugansk People’s Republic’ and are also referred to as the 14th Motorized Rifle Battalion which have taken part in territorial defence in the Luhansk region. (Phone number):+8985 130 9920 (Email address):mail@prizrak.info",Entity,AKA,,Russia,16/02/2015,31/12/2020,31/12/2020,13222 +PRIZRAK BRIGADE,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0191 (UK Statement of Reasons):The Prizrak Brigade is an armed separatist group which has actively supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and further destabilise Ukraine. They form part of the so-called ‘2nd Army Corps’ of the ‘Lugansk People’s Republic’ and are also referred to as the 14th Motorized Rifle Battalion which have taken part in territorial defence in the Luhansk region. (Phone number):+8985 130 9920 (Email address):mail@prizrak.info",Entity,Primary name,,Russia,16/02/2015,31/12/2020,31/12/2020,13222 +PRO-GAIN GROUP CORPORATION,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):DPR0186 (UN Ref):KPe.071 Company owned or controlled by Tsang Yung Yuan and involved in illicit transfers of DPRK coal.,Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13642 +PROKOFIEV,Artyom,Vyacheslavovich,,,,,Прокофьев Артём Вячеславович,,,31/12/1983,Kazan,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0626 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14571 +PROKOFYEV,Yuriy,Anatolyevich,,,,,ПРОКОФЬЕВ Юрий Анатольевич,Cyrillic,Russian,20/02/1939,Mynak,Uzbekistan,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0844 (UK Statement of Reasons):As President of the Strategic Culture Foundation, a Russian online journal that  promotes disinformation about Ukraine, Yuriy PROKOFYEV has supported policies and actions that destabilise Ukraine and undermine its territorial integrity and sovereignty.   (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14795 +PROKOPENKO,Ivan,Pavlovitch,,,,,Иван Павлович Прокопенко,,,28/09/1973,Vinnitsa,Ukraine,Russia,,,,,Head of Russian Penitentiary Service at Matrosskaya Tishina Detention Facility,,,,,,,,,"(UK Sanctions List Ref):GHR0009 (UK Statement of Reasons):Ivan Pavlovitch Prokopenko was the Head of the Russian Penitentiary Service (FSIN) at Matrosskaya Tishina pre-trial detention centre where Magnitsky was detained from 28 November 2008 to 25 July 2009. The FSIN is a federal law enforcement body responsible for the supervision of sentences. Heading the FSIN service at Matrosskaya Tishina, Prokopenko was responsible for the supervision of Magnitsky’s sentence. In this role, Prokopenko facilitated the mistreatment of Sergei Magnitsky by transferring him from Matrosskaya Tishina detention centre to Butyrka Prison, ignoring Magnitsky’s medical needs which could have been provided for at Matrosskaya Tishina, and depriving Magnitsky of important medical care. This unreasonably put Magnitsky’s life in danger and contributed to his death. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13864 +PROKOPENKO,Sergey,Borisovich,,,,,ПРОКОПЕНКО Сергей Борисович,Cyrillic,Russian,20/10/1986,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1182 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15134 +PROKOPIEV,Alexander,Sergeevich,,,,,Александр Сергеевич Прокопье,,,05/08/1986,"Biysk, Altai",Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0625 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14570 +PROKOPIV,German,,,,,,"ПРОКОПИВ, Герман",,,06/07/1993,Prague,Czechia,,,,,,"(1) ""Informal deputy Chairman of the Lugansk Guard (2) Self-identified 'Governor' in the Luhansk Oblast (3) Head of the Luhansk Guard’s youth organisation wing",,,,,,,,,"(UK Sanctions List Ref):RUS0057 (UK Statement of Reasons):Active member of the ""Lugansk Guard"". Took part in the seizure of the building of the Lugansk regional office of the Security Service. Remains an active military fighter of the LNR. (Gender):Male",Individual,Primary name,,Russia,29/04/2014,31/12/2020,31/12/2020,12959 +PROKOPIV,Herman,,,,,,,,,06/07/1993,Prague,Czechia,,,,,,"(1) ""Informal deputy Chairman of the Lugansk Guard (2) Self-identified 'Governor' in the Luhansk Oblast (3) Head of the Luhansk Guard’s youth organisation wing",,,,,,,,,"(UK Sanctions List Ref):RUS0057 (UK Statement of Reasons):Active member of the ""Lugansk Guard"". Took part in the seizure of the building of the Lugansk regional office of the Security Service. Remains an active military fighter of the LNR. (Gender):Male",Individual,Primary name variation,,Russia,29/04/2014,31/12/2020,31/12/2020,12959 +PROMSVYAZBANK PJSC,,,,,,,,,,,,,,,,,,,Building 22,Smirnovskaya Street,10,,,Moscow,109052,Russia,"(UK Sanctions List Ref):RUS0237 (UK Statement of Reasons):PJSC Promsvyazbank (""Promsvyazbank"") is a Russian state owned bank. Its main task is to service the state defence order and to finance defence industry enterprises. In its role as a pivotal bank for the Russian military-industrial complex, including servicing nearly 70% of the state contracts signed by the Defence Ministry as a government customer, Promsvyazbank provides financial services or makes available funds and economic resources that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Phone number):(1) 8 (800) 333 0303 (2) +7 495 787 33 33 (Website):www.psbank.ru",Entity,AKA,,Russia,22/02/2022,22/02/2022,22/02/2022,14184 +PROMTECH-DUBNA JSC,,,,,,,АО Промтех-Дубна,Cyrillic,Russian,,,,,,,,,,14 Nauki Avenue,Dubna,,,,Moscow,141983,Russia,"(UK Sanctions List Ref):RUS1353 (UK Statement of Reasons):Promtech-Dubna JSC is a leading Russian manufacturer of marine, aircraft and spacecraft equipment. They have obtained a benefit from the Government of Russia in the transport sector through their salient role in the Russian transport industry, and their close association to the Government of Russia, and are therefore an involved person. (Phone number):(1) +7 (495) 526 69 68 (2) +7 (495) 526 69 69 (Email address):info@promtech-dubna.ru (Business Reg No):1105010000974",Entity,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15308 +PRONKO,Yuri,Alexandrovich,,,,,,,,02/04/1962,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1166 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15118 +PRONKO,Yuriy,Alexandrovich,,,,,ПРОНЬКО Юрий Александрович,Cyrillic,Russian,02/04/1962,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1166 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15118 +PRONYUSHKIN,Aleksandr,Yuryevich,,,,,Александр Юрьевич ПРОНЮШКИН,,,31/07/1987,Murom,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0927 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14878 +PROPAGANDA AND AGITATION DEPARTMENT (PAD),,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0187 (UN Ref):KPe.053 The Propaganda and Agitation Department has full control over the media, which it uses as a tool to control the public on behalf of the DPRK leadership. The Propaganda and Agitation Department also engages in or is responsible for censorship by the Government of the DPRK, including newspaper and broadcast censorship.",Entity,Primary name,,Democratic People's Republic of Korea,12/09/2017,11/09/2017,31/12/2020,13543 +PROTASOV,Maxim,Alekseevich,,,,,ПРОТАСОВ Максим Алексеевич,Cyrillic,Russian,21/02/1976,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1168 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15120 +PRUSAKOVA,Maria,Nikolaevna,,,,,Прусакова Мария Николаевна,,,04/09/1983,Barnaul,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0278 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14223 +PRYGARA,Vadim,Sergeevich,,,,,Вадим Сергеевич ПРИГАРА,,,31/10/1980,,,,,,,,Head of the Molodechno District Police Department,,,,,,,,,"(UK Sanctions List Ref):BEL0075 (UK Statement of Reasons):Lieutenant Colonel Vadzim Prygara, as Head of the District Police Department in Molodechno, is responsible for the repression and intimidation campaign led by the local police force under his command in the wake of the 2020 presidential election, in particular with arbitrary arrests and ill-treatment, including torture of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14050 +PRYGARA,Vadzim,Siarhejevich,,,,,Вадзiм Сяргеевiч ПРЫГАРА,,,31/10/1980,,,,,,,,Head of the Molodechno District Police Department,,,,,,,,,"(UK Sanctions List Ref):BEL0075 (UK Statement of Reasons):Lieutenant Colonel Vadzim Prygara, as Head of the District Police Department in Molodechno, is responsible for the repression and intimidation campaign led by the local police force under his command in the wake of the 2020 presidential election, in particular with arbitrary arrests and ill-treatment, including torture of peaceful demonstrators as well as intimidation and violence against journalists. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14050 +PSCHONKA,Wiktor,Pawlowytsch,,,,,,,,06/02/1954,"Serhiyivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former General Prosecutor of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0072 He is subject to EU sanctions for misappropriation of state assets (UK Statement of Reasons):Viktor Pshonka was Prosecutor-General of Ukraine during the suppression of the Ukrainian protest movement from 2013-2014. His office was the primary organ for investigating allegations against Ukrainian law enforcement. There are reasonable grounds to suspect that he intentionally or recklessly failed to ensure that his office investigated credible allegations of torture and the illegal use of lethal force by Ukrainian law enforcement, or properly investigated cases of the torture and killings of protesters. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,16/02/2022,12894 +PSHENICHNAYA,Natalia,Anatolyevna,,,,,,,,30/06/1981,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1202 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15154 +PSHENICHNAYA,Natalya,Anatolyevna,,,,,"ПШЕНИЧНАЯ, Наталья Анатольевна",Cyrillic,Russian,30/06/1981,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1202 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15154 +PSHONCA,Victor,Pavlovych,,,,,,,,06/02/1954,"Serhiyivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former General Prosecutor of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0072 He is subject to EU sanctions for misappropriation of state assets (UK Statement of Reasons):Viktor Pshonka was Prosecutor-General of Ukraine during the suppression of the Ukrainian protest movement from 2013-2014. His office was the primary organ for investigating allegations against Ukrainian law enforcement. There are reasonable grounds to suspect that he intentionally or recklessly failed to ensure that his office investigated credible allegations of torture and the illegal use of lethal force by Ukrainian law enforcement, or properly investigated cases of the torture and killings of protesters. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,16/02/2022,12894 +PSHONKA,Viktor,Pavlovich,,,,,Віктор Павлович Пшонка,,,06/02/1954,"Serhiyivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former General Prosecutor of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0072 He is subject to EU sanctions for misappropriation of state assets (UK Statement of Reasons):Viktor Pshonka was Prosecutor-General of Ukraine during the suppression of the Ukrainian protest movement from 2013-2014. His office was the primary organ for investigating allegations against Ukrainian law enforcement. There are reasonable grounds to suspect that he intentionally or recklessly failed to ensure that his office investigated credible allegations of torture and the illegal use of lethal force by Ukrainian law enforcement, or properly investigated cases of the torture and killings of protesters. (Gender):Male",Individual,Primary name,,Global Human Rights,06/03/2014,31/12/2020,16/02/2022,12894 +PSHONKA,Viktor,Pavlovich,,,,,,,,06/02/1954,"Serhiyivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former General Prosecutor of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0072 He is subject to EU sanctions for misappropriation of state assets (UK Statement of Reasons):Viktor Pshonka was Prosecutor-General of Ukraine during the suppression of the Ukrainian protest movement from 2013-2014. His office was the primary organ for investigating allegations against Ukrainian law enforcement. There are reasonable grounds to suspect that he intentionally or recklessly failed to ensure that his office investigated credible allegations of torture and the illegal use of lethal force by Ukrainian law enforcement, or properly investigated cases of the torture and killings of protesters. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,16/02/2022,12894 +PSHONKA,Viktor,Pavlovych,,,,,Пшонка Виктор Павлович,,,06/02/1954,"Serhiyivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former General Prosecutor of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0072 He is subject to EU sanctions for misappropriation of state assets (UK Statement of Reasons):Viktor Pshonka was Prosecutor-General of Ukraine during the suppression of the Ukrainian protest movement from 2013-2014. His office was the primary organ for investigating allegations against Ukrainian law enforcement. There are reasonable grounds to suspect that he intentionally or recklessly failed to ensure that his office investigated credible allegations of torture and the illegal use of lethal force by Ukrainian law enforcement, or properly investigated cases of the torture and killings of protesters. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,16/02/2022,12894 +PSHONKA,Viktor,Pavlovych,,,,,Pshonka Viktor Pavlovȳch,,,06/02/1954,"Serhiyivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former General Prosecutor of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0072 He is subject to EU sanctions for misappropriation of state assets (UK Statement of Reasons):Viktor Pshonka was Prosecutor-General of Ukraine during the suppression of the Ukrainian protest movement from 2013-2014. His office was the primary organ for investigating allegations against Ukrainian law enforcement. There are reasonable grounds to suspect that he intentionally or recklessly failed to ensure that his office investigated credible allegations of torture and the illegal use of lethal force by Ukrainian law enforcement, or properly investigated cases of the torture and killings of protesters. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,16/02/2022,12894 +PSHONKA,Viktor,Pavlovych,,,,,,,,06/02/1954,"Serhiyivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former General Prosecutor of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0072 He is subject to EU sanctions for misappropriation of state assets (UK Statement of Reasons):Viktor Pshonka was Prosecutor-General of Ukraine during the suppression of the Ukrainian protest movement from 2013-2014. His office was the primary organ for investigating allegations against Ukrainian law enforcement. There are reasonable grounds to suspect that he intentionally or recklessly failed to ensure that his office investigated credible allegations of torture and the illegal use of lethal force by Ukrainian law enforcement, or properly investigated cases of the torture and killings of protesters. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,16/02/2022,12894 +PSONKA,Viktor,Pavlovic,,,,,Pšonka Vìktor Pavlovič,,,06/02/1954,"Serhiyivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former General Prosecutor of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0072 He is subject to EU sanctions for misappropriation of state assets (UK Statement of Reasons):Viktor Pshonka was Prosecutor-General of Ukraine during the suppression of the Ukrainian protest movement from 2013-2014. His office was the primary organ for investigating allegations against Ukrainian law enforcement. There are reasonable grounds to suspect that he intentionally or recklessly failed to ensure that his office investigated credible allegations of torture and the illegal use of lethal force by Ukrainian law enforcement, or properly investigated cases of the torture and killings of protesters. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,16/02/2022,12894 +PSONKA,Viktor,Pavlovic,,,,,Pšonka Viktor Pavlovič,,,06/02/1954,"Serhiyivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former General Prosecutor of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0072 He is subject to EU sanctions for misappropriation of state assets (UK Statement of Reasons):Viktor Pshonka was Prosecutor-General of Ukraine during the suppression of the Ukrainian protest movement from 2013-2014. His office was the primary organ for investigating allegations against Ukrainian law enforcement. There are reasonable grounds to suspect that he intentionally or recklessly failed to ensure that his office investigated credible allegations of torture and the illegal use of lethal force by Ukrainian law enforcement, or properly investigated cases of the torture and killings of protesters. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,16/02/2022,12894 +PSONKA,Viktor,Pavlovyc,,,,,Pšonka Viktor Pavlovyč,,,06/02/1954,"Serhiyivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former General Prosecutor of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0072 He is subject to EU sanctions for misappropriation of state assets (UK Statement of Reasons):Viktor Pshonka was Prosecutor-General of Ukraine during the suppression of the Ukrainian protest movement from 2013-2014. His office was the primary organ for investigating allegations against Ukrainian law enforcement. There are reasonable grounds to suspect that he intentionally or recklessly failed to ensure that his office investigated credible allegations of torture and the illegal use of lethal force by Ukrainian law enforcement, or properly investigated cases of the torture and killings of protesters. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,16/02/2022,12894 +PTITSYN,Roman,Viktorovich,,,,,Роман Викторович Птицын,,,09/08/1975,Mayma,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0679 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14630 +"PUBLIC JOINT STOCK COMPANY ""UNITED SHIPBUILDING CORPORATION""",,,,,,,Публичное акционерное общество «Объединённая судостроительная корпорация»,,,,,,,,,,,,11,Bolshaya Tatarskaya Street,Bld.B,,,Moscow,115184,Russia,"(UK Sanctions List Ref):RUS0242 (UK Statement of Reasons):Public Joint Stock Company (PJSC) United Shipbuilding Corporation (USC) is a Russian state-owned enterprise. USC is the largest shipbuilding corporation in Russia, uniting shipbuilding, repair and maintenance subsidiaries. This includes the supply of several frigates and other warship classes that have been deployed in Crimea since Russia illegally annexed the region in 2014, and have conducted drills in the Black Sea in 2021. Therefore USC has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. USC also operates in a sector of strategic significance, specifically, the Russian defence sector. As a result USC is involved in benefitting from or supporting the Government of Russia. (Phone number):+7 (495) 617-33-00 (Website):www.aoosk.ru/en (Email address):info@aoosk.ru (Type of entity):(1) Public Joint stock company (2) Holding company",Entity,Primary name,,Russia,24/02/2022,24/02/2022,24/02/2022,14189 +"PUBLIC JOINT STOCK COMPANY ""UNITED SHIPBUILDING CORPORATION""",,,,,,,Публичное акционерное общество «Объединённая судостроительная корпорация»,,,,,,,,,,,,St Petersburg – ul. Marat,90,,,,St Petersburg,191119,Russia,"(UK Sanctions List Ref):RUS0242 (UK Statement of Reasons):Public Joint Stock Company (PJSC) United Shipbuilding Corporation (USC) is a Russian state-owned enterprise. USC is the largest shipbuilding corporation in Russia, uniting shipbuilding, repair and maintenance subsidiaries. This includes the supply of several frigates and other warship classes that have been deployed in Crimea since Russia illegally annexed the region in 2014, and have conducted drills in the Black Sea in 2021. Therefore USC has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. USC also operates in a sector of strategic significance, specifically, the Russian defence sector. As a result USC is involved in benefitting from or supporting the Government of Russia. (Phone number):+7 (495) 617-33-00 (Website):www.aoosk.ru/en (Email address):info@aoosk.ru (Type of entity):(1) Public Joint stock company (2) Holding company",Entity,Primary name,,Russia,24/02/2022,24/02/2022,24/02/2022,14189 +PUBLIC JOINT STOCK COMPANY “UNITED AIRCRAFT CORPORATION”,,,,,,,Публичное акционерное общество «Объединённая авиастроительная корпорация»,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0239 (List of persons named in relation to financial and investment restrictions Group ID): 13121. (UK Statement of Reasons):PJSC United Aircraft Corporation (UAC) is a Russian state owned enterprise. It contains all of Russia's major aircraft manufacturing companies and is a major supplier of aircraft to the Russian military. This includes military aircraft that have been used in Crimea. Therefore UAC provides financial services or makes available funds and economic resources that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Type of entity):(1) Public Joint stock company (2) Holding company",Entity,Primary name,,Russia,24/02/2022,24/02/2022,06/04/2022,14186 +PUBLIC JOINT STOCK COMPANY INTEGRAL,,,,,,,,,,,,,,,,,,,121A,Kazintsa I.P. Str.,,,,Minsk,220108,Belarus,"(UK Sanctions List Ref):RUS0262 (UK Statement of Reasons):JSC Integral is a Belarusian defence SOE (state-owned enterprise) that produces semiconductors for military end-users, and supplies parts to both the Belarusian and Russian armed forces. Russian armed forces have been directly involved in the invasion of Ukraine. Belarusian armed forces have supported and enabled the Russian invasion of Ukraine, including by conducting joint military exercises with Russian armed forces which involved the deployment of Russian troops along the border of Belarus with Ukraine, which in turn directly contributed to Russia’s ability to both threaten and attack Ukraine, including from positions in Belarus. JSC Integral therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Phone number):+375-17-253-3562 (Website):https://integral.by/en (Email address):export@integral.by (Type of entity):Public Joint Stock Company (PJSC)",Entity,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14202 +PUBLIC JOINT STOCK COMPANY MOSCOW INDUSTRIAL BANK,,,,,,,,,,,,,,,,,,,Ordzhonikidze Street 5,,,,,Moscow,115419,Russia,"(UK Sanctions List Ref):RUS1492 Organization Established Date 22 Nov 1990 (UK Statement of Reasons):JOINT STOCK COMPANY MOSCOW INDUSTRIAL BANK is a Russian commercial bank. It is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian financial services sector. (Website):http://www.minbank.ru (Type of entity):Financial Institution (Subsidiaries):Agropromyshlenny Kompleks Voronezhski OOO Anninskii Elevator OOO Auditkonsalt OOO Belinveststroi OOO Dve Stolitsy OOO Kontrakt OOO Ladoga OOO Nekommercheskaya Organizatsiya Fond Khimicheskoe Razoruzhenie I Konversiya Azovskaya Zernovaya Kompaniya OOO Ekspluatiruyushchaya Kompaniya Tsentr OOO (Business Reg No):SWIFT/BIC MINNRUMM BIK (RU) 044525600 Tax ID No. 7725039953 (Russia) Government Gazette Number 09317135 (Russia) Legal Entity Number 2534006SJ05GGKETEY75 (Russia) Registration Number 1027739179160 (Russia)",Entity,Primary name variation,,Russia,29/06/2022,29/06/2022,29/06/2022,15429 +PUBLIC JOINT STOCK COMPANY 'MOSTOTREST',,,,,,,,,,,,,,,,,,,6 Barklaya Street,Bld. 5,,,,Moscow,121087,Russia,"(UK Sanctions List Ref):RUS0190 Business Sector: construction. Names of Director(s)/Management: Alexander N Poderegin, General Director Ultimate beneficial owner(s): Used to belong to Igor Rotenberg, but now belongs to Arkady Rotenberg, who has been sanctioned by the EU since 23/02/2015, and who is a long-time acquaintance of President Putin; who has developed his fortune during President Putin's tenure, and has been favoured by Russian decision-makers in the award of important contracts by the Russian State or by State-owned enterprises. (UK Statement of Reasons):Mostotrest has actively participated in the construction of the Kerch Bridge through its State contract for the maintenance of the Bridge, connecting Russia to the illegally annexed Crimean Peninsula. Furthermore, it is owned by an individual (Arkady Rotenberg) that is already designated for his actions undermining Ukrainian sovereignty. Therefore, the company is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity sovereignty and independence of Ukraine. (Phone number):+7(495)669-77-11 Fax. +7(495)669-79-99 (Email address):mostro@mostro.ru (Type of entity):Large infrastructure construction company",Entity,AKA,,Russia,31/07/2018,31/12/2020,16/09/2022,13701 +PUBLIC JOINT STOCK COMPANY PROMSVYAZBANK,,,,,,,"ПAO ""Промсвязьбанк""",,,,,,,,,,,,Building 22,Smirnovskaya Street,10,,,Moscow,109052,Russia,"(UK Sanctions List Ref):RUS0237 (UK Statement of Reasons):PJSC Promsvyazbank (""Promsvyazbank"") is a Russian state owned bank. Its main task is to service the state defence order and to finance defence industry enterprises. In its role as a pivotal bank for the Russian military-industrial complex, including servicing nearly 70% of the state contracts signed by the Defence Ministry as a government customer, Promsvyazbank provides financial services or makes available funds and economic resources that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Phone number):(1) 8 (800) 333 0303 (2) +7 495 787 33 33 (Website):www.psbank.ru",Entity,Primary name,,Russia,22/02/2022,22/02/2022,22/02/2022,14184 +PUBLIC JOINT STOCK COMPANY SOVCOMFLOT,,,,,,,Публичное акционерное общество Современный коммерческий флот,Cyrillic,Russian,,,,,,,,,,3A Moyka River Embankment,,,,,St Petersburg,191186,Russia,"(UK Sanctions List Ref):RUS1097 (UK Statement of Reasons):SOVCOMFLOT is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia – namely, the energy sector. (Phone number):+7(495) 660-40-00 (Website):(1) sovcomflot.ru (2) www.scf-group.com (Email address):(1) info@scf-group.ru (2) pr@scf-group.ru (3) ir@scf-group.ru (Type of entity):Public Joint Stock Company (Subsidiaries):(1) OOO SCF Arctic (2) SCF Management Services (Cyprus) Ltd (3) PAO Novoship; (4) SCF management Services (St. Petersburg) Ltd (5) Sovcomflot (UK) Ltd (6) SCF Management Services (St. Petersburg) Ltd  subdivision in Yuzhno-Sakhalinsk (7) Sovcomflot (Cyprus) Ltd; (8) SCF Management Services (Novorossiysk) Ltd (9) SCF GEO",Entity,Primary name,,Russia,24/03/2022,24/03/2022,12/07/2022,15040 +PUBLICHNOE AKSIONERNOE OBSCHESTVO SOVREMENNYY KOMMERCHESKIY FLOT,,,,,,,ПУБЛИЧНОЕ АКЦИОНЕРНОЕ ОБЩЕСТВО СОВРЕМЕННЫЙ КОММЕРЧЕСКИЙ ФЛОТ,Cyrillic,Russian,,,,,,,,,,3A Moyka River Embankment,,,,,St Petersburg,191186,Russia,"(UK Sanctions List Ref):RUS1097 (UK Statement of Reasons):SOVCOMFLOT is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia – namely, the energy sector. (Phone number):+7(495) 660-40-00 (Website):(1) sovcomflot.ru (2) www.scf-group.com (Email address):(1) info@scf-group.ru (2) pr@scf-group.ru (3) ir@scf-group.ru (Type of entity):Public Joint Stock Company (Subsidiaries):(1) OOO SCF Arctic (2) SCF Management Services (Cyprus) Ltd (3) PAO Novoship; (4) SCF management Services (St. Petersburg) Ltd (5) Sovcomflot (UK) Ltd (6) SCF Management Services (St. Petersburg) Ltd  subdivision in Yuzhno-Sakhalinsk (7) Sovcomflot (Cyprus) Ltd; (8) SCF Management Services (Novorossiysk) Ltd (9) SCF GEO",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,12/07/2022,15040 +PUBLICHNOE AKTSIONERNOE OBSCHESTVO MIKRON,,,,,,,,,,,,,,,,,,,1st Zapadny Proezd 12/1,,,,,Zelenograd,124460,Russia,"(UK Sanctions List Ref):RUS1404 Organization Established Date 13 Jan 1994; Government Gazette Number 07589295 (Russia) (UK Statement of Reasons):JOINT STOCK COMPANY MIKRON is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is the largest Russian manufacturer and exporter of microelectronics.  The company received tax benefits to produce the domestic chip for Russia’s National Payment Card System, which was developed following previous sanctions on Russia. Therefore, JOINT STOCK COMPANY MIKRON is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian electronics sector. (Website):https://en.mikron.ru/ (Business Reg No):1027700073466 (Russia). Tax ID No. 7735007358 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15324 +PUBLICHNOE AKTSIONERNOE OBSCHESTVO MIKRON,,,,,,,,,,,,,,,,,,,d. 6 str. 1,ul. Akademika Valieva,,,Zelenograd,Moscow,124460,Russia,"(UK Sanctions List Ref):RUS1404 Organization Established Date 13 Jan 1994; Government Gazette Number 07589295 (Russia) (UK Statement of Reasons):JOINT STOCK COMPANY MIKRON is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is the largest Russian manufacturer and exporter of microelectronics.  The company received tax benefits to produce the domestic chip for Russia’s National Payment Card System, which was developed following previous sanctions on Russia. Therefore, JOINT STOCK COMPANY MIKRON is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian electronics sector. (Website):https://en.mikron.ru/ (Business Reg No):1027700073466 (Russia). Tax ID No. 7735007358 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15324 +PUCHKOV,Andrei,,,,,,,,,23/01/1977,Moscow,Russia,Russia,,,,,First Deputy President and Chairman of VTB Bank Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS0794 (UK Statement of Reasons):Andrey PUCHKOV is a member of VTB Bank’s Management Board. VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, PUCHKOV obtains a financial benefit from VTB Bank, therefore PUCHKOV is an involved person on the basis of his membership of and association with VTB Bank. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14745 +PUCHKOV,Andrey,Sergeevich,,,,,ПУЧКОВ Андрей Сергеевич,,,23/01/1977,Moscow,Russia,Russia,,,,,First Deputy President and Chairman of VTB Bank Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS0794 (UK Statement of Reasons):Andrey PUCHKOV is a member of VTB Bank’s Management Board. VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, PUCHKOV obtains a financial benefit from VTB Bank, therefore PUCHKOV is an involved person on the basis of his membership of and association with VTB Bank. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14745 +PUMPYANSKAYA,Galina,Evgenyevna,,,,,ПУМПЯНСКАЯ Галина Евгеньевна,Cyrillic,Russian,10/02/1966,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0777 (UK Statement of Reasons):Galina Evgenyevna PUMPYANSKAYA is closely associated with Dmitry Alexandrovich PUMPYANSKY through her marriage to him. Dmitry Alexandrovich PUMPYANSKY was until March 2022 the Chairman of the Board of Directors of OAO TMK, the leading provider of specialised oil and gas pipelines in Russia. TMK is carrying on business in a sector of strategic significance to the Government of Russia, the energy sector. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14728 +PUMPYANSKIY,Dmitri,Alexandrovich,,,,,,,,22/03/1964,,,Russia,,,,,"Chairman of the Board of Directors, Tube Metallurgical Company (TMK)",,,,,,,,,"(UK Sanctions List Ref):RUS0775 (UK Statement of Reasons):As the Chairman of the Board of Directors of OAO TMK until March 2022, Dmitry Alexandrovich PUMPYANSKY obtained a benefit from or supported the Government of Russia. OAO TMK is the leading provider of specialised oil and gas pipelines in Russia. TMK is therefore carrying on business in a sector of strategic significance to the Government of Russia, the energy sector. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14726 +PUMPYANSKY,Alexander,Dmitrievich,,,,,ПУМПЯНСКИЙ Александр Дмитриевич,Cyrillic,Russian,16/05/1987,Yekaterinburg,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0772 (UK Statement of Reasons):Alexander Dmitrievich PUMPYANSKY was a member of the Board of Directors of TMK, a Russian manufacturer of pipes for the oil and gas industry. He therefore has been involved in obtaining a benefit from or supporting the Government of Russia by working as a director in a company which is carrying on business in a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14723 +PUMPYANSKY,Dmitry,Alexandrovich,,,,,ПУМПЯНСКИЙ Дмитрий Александрович,Cyrillic,Russian,22/03/1964,,,Russia,,,,,"Chairman of the Board of Directors, Tube Metallurgical Company (TMK)",,,,,,,,,"(UK Sanctions List Ref):RUS0775 (UK Statement of Reasons):As the Chairman of the Board of Directors of OAO TMK until March 2022, Dmitry Alexandrovich PUMPYANSKY obtained a benefit from or supported the Government of Russia. OAO TMK is the leading provider of specialised oil and gas pipelines in Russia. TMK is therefore carrying on business in a sector of strategic significance to the Government of Russia, the energy sector. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14726 +PURGIN,Andriy,Yevgenovych,,,,,,,,25/01/1972,Donetsk,,Ukraine,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0058 Wanted by the Ukrainian authorities for pre-trial investigation on multiple charges related to his activities in Donetsk and alleged terrorist activities. (UK Statement of Reasons):Active participant and organiser of separatist actions, coordinator of actions of the ""Russian Tourists"" in Donetsk. Co-founder of a ""civic Initiative of Donbass for the Eurasian Union"". Former First Deputy Chairman of the Council of Ministers"" Until 4 September 2015 ""Chairman of the ""People's Council of the Donetsk People's Republic"". As of February 2017 deprived from his mandate of member of the ""People's Council of the Donetsk People's Republic"" upon decision of the so-called ""People's Council"". Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name,,Russia,29/04/2014,31/12/2020,31/12/2020,12961 +PURHIN,Andriy,Yevgenovych,,,,,,,,25/01/1972,Donetsk,,Ukraine,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0058 Wanted by the Ukrainian authorities for pre-trial investigation on multiple charges related to his activities in Donetsk and alleged terrorist activities. (UK Statement of Reasons):Active participant and organiser of separatist actions, coordinator of actions of the ""Russian Tourists"" in Donetsk. Co-founder of a ""civic Initiative of Donbass for the Eurasian Union"". Former First Deputy Chairman of the Council of Ministers"" Until 4 September 2015 ""Chairman of the ""People's Council of the Donetsk People's Republic"". As of February 2017 deprived from his mandate of member of the ""People's Council of the Donetsk People's Republic"" upon decision of the so-called ""People's Council"". Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,29/04/2014,31/12/2020,31/12/2020,12961 +PURHIN,Andriy,Yevhenovych,,,,,,,,25/01/1972,Donetsk,,Ukraine,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0058 Wanted by the Ukrainian authorities for pre-trial investigation on multiple charges related to his activities in Donetsk and alleged terrorist activities. (UK Statement of Reasons):Active participant and organiser of separatist actions, coordinator of actions of the ""Russian Tourists"" in Donetsk. Co-founder of a ""civic Initiative of Donbass for the Eurasian Union"". Former First Deputy Chairman of the Council of Ministers"" Until 4 September 2015 ""Chairman of the ""People's Council of the Donetsk People's Republic"". As of February 2017 deprived from his mandate of member of the ""People's Council of the Donetsk People's Republic"" upon decision of the so-called ""People's Council"". Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,29/04/2014,31/12/2020,31/12/2020,12961 +PUSHILIN,Denis,Vladimirovich,,,,,,,,09/05/1981,"Makivka, Donestk Oblast",Ukraine,Ukraine,,,,,(1) So-called 'Head of the Donetsk People's Republic' (2) 'Chairman' of the 'People's Council of the Donetsk People's Republic,,,,,,,,Ukraine,(UK Sanctions List Ref):RUS0059 (UK Statement of Reasons):One of the leaders of the Donetsk People’s Republic. Participated in the seizure and occupation of the regional administration in Donetsk in 2014. Active spokesperson for the separatists. Until 4 September 2015 so-called Deputy Chairman of the “People’s Council” of the so-called “Donetsk People’s Republic”. Since 4 September 2015 “Chairman” of the “People’s Council of the Donetsk People’s Republic”. So-called 'acting Head of the Donetsk People's Republic' after 7 September 2018. So-called 'Head of the Donetsk People's Republic' following the so-called elections of 11 November 2018. (Gender):Male,Individual,Primary name variation,,Russia,29/04/2014,31/12/2020,31/12/2020,12962 +PUSHKIN,Lyubomir,Evgenevich,,,,,ПУШКИН Любомир Евгеньевич,Cyrillic,Russian,27/05/1977,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1203 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15155 +PUSHKIN,Lyubomir,Yevgenyevich,,,,,,,,27/05/1977,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1203 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15155 +PUSHKOV,Alexei,Konstantinovich,,,,,Алексей Константинович ПУШКОВ,,,10/08/1954,Beijing,China,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0960 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14911 +PUSHYLIN,Denis,Volodymyrovych,,,,,,,,09/05/1981,"Makivka, Donestk Oblast",Ukraine,Ukraine,,,,,(1) So-called 'Head of the Donetsk People's Republic' (2) 'Chairman' of the 'People's Council of the Donetsk People's Republic,,,,,,,,Ukraine,(UK Sanctions List Ref):RUS0059 (UK Statement of Reasons):One of the leaders of the Donetsk People’s Republic. Participated in the seizure and occupation of the regional administration in Donetsk in 2014. Active spokesperson for the separatists. Until 4 September 2015 so-called Deputy Chairman of the “People’s Council” of the so-called “Donetsk People’s Republic”. Since 4 September 2015 “Chairman” of the “People’s Council of the Donetsk People’s Republic”. So-called 'acting Head of the Donetsk People's Republic' after 7 September 2018. So-called 'Head of the Donetsk People's Republic' following the so-called elections of 11 November 2018. (Gender):Male,Individual,Primary name variation,,Russia,29/04/2014,31/12/2020,31/12/2020,12962 +PUSHYLIN,Denys,Volodymrovych,,,,,,,,09/05/1981,"Makivka, Donestk Oblast",Ukraine,Ukraine,,,,,(1) So-called 'Head of the Donetsk People's Republic' (2) 'Chairman' of the 'People's Council of the Donetsk People's Republic,,,,,,,,Ukraine,(UK Sanctions List Ref):RUS0059 (UK Statement of Reasons):One of the leaders of the Donetsk People’s Republic. Participated in the seizure and occupation of the regional administration in Donetsk in 2014. Active spokesperson for the separatists. Until 4 September 2015 so-called Deputy Chairman of the “People’s Council” of the so-called “Donetsk People’s Republic”. Since 4 September 2015 “Chairman” of the “People’s Council of the Donetsk People’s Republic”. So-called 'acting Head of the Donetsk People's Republic' after 7 September 2018. So-called 'Head of the Donetsk People's Republic' following the so-called elections of 11 November 2018. (Gender):Male,Individual,Primary name,,Russia,29/04/2014,31/12/2020,31/12/2020,12962 +PUTIN,Vladimir,,,,,,,,,07/10/1952,St Petersburg (then Leningrad),Russia,Russia,,,,,President of the Russian Federation,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0251 (UK Statement of Reasons):Vladimir Vladimirovich Putin is the President of the Russian Federation, carrying ultimate authority for the policy of the Russian government and Russian armed forces. In February 2022, Putin ordered Russian military forces to launch an invasion of Ukraine, undermining and threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,25/02/2022,25/02/2022,25/02/2022,14196 +PUTIN,Vladimir,,,,,,,,,07/10/1952,St Petersburg (then Leningrad),Russia,Russia,,,,,President of the Russian Federation,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0251 (UK Statement of Reasons):Vladimir Vladimirovich Putin is the President of the Russian Federation, carrying ultimate authority for the policy of the Russian government and Russian armed forces. In February 2022, Putin ordered Russian military forces to launch an invasion of Ukraine, undermining and threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,25/02/2022,25/02/2022,25/02/2022,14196 +PUTIN,Igor,Alexandrovich,,,,,игорь александрович путин,,,30/03/1953,St Petersburg,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1424 (UK Statement of Reasons):Igor Alexandrovich PUTIN (hereafter PUTIN) is or has been involved in obtaining a benefit from or supporting the Government of Russia as a director of International Sea Port of Pechenga OJSC. International Sea Port of Pechenga is an entity carrying on business in a sector of strategic significance to the Government of Russia, namely, the transport sector. (Gender):Male",Individual,Primary name,,Russia,13/05/2022,13/05/2022,13/05/2022,15386 +PUTIN,Mikhail,Evgenievich,,,,,михаил евгеньевич путин,,,02/07/1967,Ivanovo,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1461 (UK Statement of Reasons):Mikhail Evgenievich PUTIN (hereafter PUTIN) is a Russian businessman and cousin of President Vladimir Putin. PUTIN is Deputy Chairman of the Management Board of SOGAZ Insurance, and is therefore a member of, or associated with, a company that is: 1. involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine; and 2. involved in carrying on business in a sector of strategic significance to the Government of Russia, namely, the Russian financial services sector. PUTIN is also Deputy Chairman of the Management Board of Gazprom. He is therefore a member of, or associated with, an entity that is carrying on business as a Government of Russia-affiliated entity. (Gender):Male",Individual,Primary name,,Russia,13/05/2022,13/05/2022,13/05/2022,15388 +PUTIN,Roman,Igorevich,,,,,Роман Игоревич Путин,,,10/11/1977,Ryazan,Russia,Russia,,,,,Director,,,,,,,,,"(UK Sanctions List Ref):RUS1463 (UK Statement of Reasons):Roman PUTIN is involved in obtaining a benefit from or supporting the Government of Russia by working as the Chair of the Board of Directors of the MRT Group of Companies LLC, which carries on business in the Russian transport sector, a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,13/05/2022,13/05/2022,13/05/2022,15392 +PUTIN,Vladimir,Vladimirovich,,,,,Владимир Владимирович Путин,,,07/10/1952,St Petersburg (then Leningrad),Russia,Russia,,,,,President of the Russian Federation,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0251 (UK Statement of Reasons):Vladimir Vladimirovich Putin is the President of the Russian Federation, carrying ultimate authority for the policy of the Russian government and Russian armed forces. In February 2022, Putin ordered Russian military forces to launch an invasion of Ukraine, undermining and threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,25/02/2022,25/02/2022,25/02/2022,14196 +PUTINA,Yekaterina,,,,,,"ПУТИНА, Екатерина",Cyrillic,Russian,31/08/1986,Dresden,Germany,Russia,,,503227394158,Taxpayer ID,,,,,,,,,,"(UK Sanctions List Ref):RUS1129 (UK Statement of Reasons):Katerina Vladimirovna TIKHONOVA is widely reported to be the daughter of the President of the Russian Federation, Vladimir Vladimirovich PUTIN, with whom she is closely associated and from whom she has obtained material benefit. PUTIN is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,08/04/2022,08/04/2022,14/06/2022,15079 +PUTINA,Yekaterina,Vladimirovna,,,,,,,,31/08/1986,Dresden,Germany,Russia,,,503227394158,Taxpayer ID,,,,,,,,,,"(UK Sanctions List Ref):RUS1129 (UK Statement of Reasons):Katerina Vladimirovna TIKHONOVA is widely reported to be the daughter of the President of the Russian Federation, Vladimir Vladimirovich PUTIN, with whom she is closely associated and from whom she has obtained material benefit. PUTIN is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,08/04/2022,08/04/2022,14/06/2022,15079 +PUTINA,Lyudmila,Aleksandrovna,,,,,,,,06/01/1958,Kaliningrad,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1465 (UK Statement of Reasons):Lyudmila Aleksandrovna OCHERETNAYA (formerly, PUTINA) is the former First Lady of the Russian Federation and ex-wife of Vladimir Putin. There are reasonable grounds to suspect that OCHERETNAYA is a member of, or associated with, a person who is or has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/05/2022,13/05/2022,20/05/2022,15394 +PUTINA,Maria,,,,,,"ПУТИНА, Мария",Cyrillic,Russian,28/04/1985,Leningrad,Russia,Russia,,,320304191830,Taxpayer ID,,,,,,,,,,"(UK Sanctions List Ref):RUS1128 (UK Statement of Reasons):Maria Vladimirovna VORONSTOVA is widely reported to be the daughter of the President of the Russian Federation Vladimir Vladimirovich PUTIN, with whom she is closely associated and from whom she has obtained a financial benefit or other material benefit. Vladimir Vladimirovich PUTIN is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,08/04/2022,08/04/2022,14/06/2022,15078 +PUTINA,Maria,Vladimirovna,,,,,,,,28/04/1985,Leningrad,Russia,Russia,,,320304191830,Taxpayer ID,,,,,,,,,,"(UK Sanctions List Ref):RUS1128 (UK Statement of Reasons):Maria Vladimirovna VORONSTOVA is widely reported to be the daughter of the President of the Russian Federation Vladimir Vladimirovich PUTIN, with whom she is closely associated and from whom she has obtained a financial benefit or other material benefit. Vladimir Vladimirovich PUTIN is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,08/04/2022,08/04/2022,14/06/2022,15078 +PUTOL,Commander,,,,,,,,,00/00/1955,"Kaunayan, Patikul, Jolo Island",Philippines,Philippines,,,,,,,,,,,Sulu region,,Philippines,(UK Sanctions List Ref):AQD0290 (UN Ref):QDi.208 Physical description: eye colour: black; hair colour: gray; height: 5 feet 6 inches – 168 cm; weight: 140 pounds – 64 kg; build: slight; right arm is amputated above his elbow. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in the kidnapping of its national. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424857,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8788 +PUTOL,Commander,,,,,,,,,00/00/1952,"Kaunayan, Patikul, Jolo Island",Philippines,Philippines,,,,,,,,,,,Sulu region,,Philippines,(UK Sanctions List Ref):AQD0290 (UN Ref):QDi.208 Physical description: eye colour: black; hair colour: gray; height: 5 feet 6 inches – 168 cm; weight: 140 pounds – 64 kg; build: slight; right arm is amputated above his elbow. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in the kidnapping of its national. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424857,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8788 +PUZYRNIKOVA,Natalia,Vladislavovna,,,,,Наталья Владиславовна Пузырникова,Cyrillic,Russian,11/04/1979,,,Russia,,,,,Member of Gazprombank’s Management Board,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1613 (UK Statement of Reasons):Natalia Vladislavovna Puzyrnikova is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Female",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15557 +PYANOV,Dmitrii,Vasilyevich,,,,,,,,07/12/1977,,Russia,Russia,,,,,Member of VTB Bank Management Board,,,,,,Moscow,,,"(UK Sanctions List Ref):RUS0864 (UK Statement of Reasons):Dmitrii PIANOV is a member of VTB Bank’s Management Board.  VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, PIANOV obtains a financial benefit from VTB Bank, therefore PIANOV is an involved person on the basis of his membership of and association with VTB Bank. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,13/05/2022,14815 +PYO’NG-CH’O’L,Min,,,,,,,,,10/08/1948,,,North Korea,,,,,"Member of the Workers' Party of Korea’s Organization and Guidance Department, which directs key personnel appointments for the Workers’ Party of Korea and the DPRK’s military",,,,,,,,North Korea,(UK Sanctions List Ref):DPR0246 (UN Ref):KPi.047 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13489 +PYON,Won,Gun,,,,,,,,13/03/1968,South Phyongan,North Korea,North Korea,(1) 836220035 (2) 745230692 (3) 290220142,(1) Expiry 3 April 2021 (2) Expiry 8 April 2020 (3) -,,,Director of Glocom,,,,,,,,Malaysia,"(UK Sanctions List Ref):DPR0030 Associations with Glocom, International Services Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Director of Glocom, a front company of Pan Systems Pyongyang. Pan System Pyongyang has been designated for assisting in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related materiel to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. Glocom advertises radio communications equipment for military and paramilitary organisations. PYON WON GUN has also been identified by the UN Panel of Experts as a DPRK national operating Pan Systems Pyongyang. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,03/03/2022,13596 +PYON,Won,Gun,,,,,,,,13/03/1968,South Phyongan,North Korea,North Korea,(1) 836220035 (2) 745230692 (3) 290220142,(1) Expiry 3 April 2021 (2) Expiry 8 April 2020 (3) -,,,Director of Glocom,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0030 Associations with Glocom, International Services Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Director of Glocom, a front company of Pan Systems Pyongyang. Pan System Pyongyang has been designated for assisting in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related materiel to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. Glocom advertises radio communications equipment for military and paramilitary organisations. PYON WON GUN has also been identified by the UN Panel of Experts as a DPRK national operating Pan Systems Pyongyang. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,03/03/2022,13596 +PYON,Won,Gun,,,,,,,,13/03/1968,South Phyongan,North Korea,North Korea,(1) 836220035 (2) 745230692 (3) 290220142,(1) Expiry 3 April 2021 (2) Expiry 8 April 2020 (3) -,,,Director of Glocom,,,,,,,,Singapore,"(UK Sanctions List Ref):DPR0030 Associations with Glocom, International Services Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Director of Glocom, a front company of Pan Systems Pyongyang. Pan System Pyongyang has been designated for assisting in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related materiel to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. Glocom advertises radio communications equipment for military and paramilitary organisations. PYON WON GUN has also been identified by the UN Panel of Experts as a DPRK national operating Pan Systems Pyongyang. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,03/03/2022,13596 +PYONG CHUL,RI,,,,,,,,,00/00/1948,,,North Korea,,,,,(1) Alternate Member of the Political Bureau of the Workers’ Party of Korea (2) First Vice Director of the Munitions Industry Department,,,,,,,,North Korea,(UK Sanctions List Ref):DPR0266 (UN Ref):KPi.076 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,02/08/2022,13572 +PYO'NG-CH'O'L,Ri,,,,,,,,,00/00/1948,,,North Korea,,,,,(1) Alternate Member of the Political Bureau of the Workers’ Party of Korea (2) First Vice Director of the Munitions Industry Department,,,,,,,,North Korea,(UK Sanctions List Ref):DPR0266 (UN Ref):KPi.076 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,02/08/2022,13572 +PYRKOVA,Yekaterina,Eduardovna,,,,,,,,22/08/1967,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,(1) Russia. (2) Ukraine,,,,,Secretary of the Sevastopol Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0221 (UK Statement of Reasons):In taking the role of secretary of the Sevastopol City Electoral Commission, Pyrkova organised elections in Sevastopol under Russian law, thereby violating the Constitution and laws of Ukraine and undermining Ukrainian sovereignty and territorial integrity, helping facilitate the integration of Sevastopol into Russia. (Gender):Female",Individual,Primary name,,Russia,28/01/2020,31/12/2020,31/12/2020,13807 +PYZHIK,Yuri,,,,,Colonel,ПЫЖИК Юрий Николаевич,Cyrillic,Russian,,,,Belarus,,,,,Commander of Baranovichi Airbase,,,,,,,,,"(UK Sanctions List Ref):RUS0713 (UK Statement of Reasons):Colonel Yuri Nokolaevich PYZHIK has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being in command of Baranovichi Airbase, which has hosted Russian Military Aircraft during the current invasion. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14664 +QADDOUR,Burhan,,,,,,,,,,,,,,,,,Former Head of Branch 291 (Damascus) of the army’s intelligence service,,,,,,,,,(UK Sanctions List Ref):SYR0034 (UK Statement of Reasons):Former Head of Branch 291 (Damascus) of the army's intelligence service. Responsible for the torture of opponents in custody. (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12706 +QADDOUR,Khaled,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0122 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the telecommunications, oil and plastic industry sectors and close business relations with Maher Al-Assad. He benefits from and provides support to the Syrian regime, through his business activities and association with persons who support and benefit from the regime. In particular, he is an associate of Maher Al-Assad, including through his business activities. (Gender):Male",Individual,Primary name variation,,Syria,27/01/2015,31/12/2020,13/05/2022,12015 +QADDOUR,Khalid,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0122 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the telecommunications, oil and plastic industry sectors and close business relations with Maher Al-Assad. He benefits from and provides support to the Syrian regime, through his business activities and association with persons who support and benefit from the regime. In particular, he is an associate of Maher Al-Assad, including through his business activities. (Gender):Male",Individual,Primary name variation,,Syria,27/01/2015,31/12/2020,13/05/2022,12015 +QADDUR,Burhan,,,,,,,,,,,,,,,,,Former Head of Branch 291 (Damascus) of the army’s intelligence service,,,,,,,,,(UK Sanctions List Ref):SYR0034 (UK Statement of Reasons):Former Head of Branch 291 (Damascus) of the army's intelligence service. Responsible for the torture of opponents in custody. (Gender):Male,Individual,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12706 +QADDUR,Khaled,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0122 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the telecommunications, oil and plastic industry sectors and close business relations with Maher Al-Assad. He benefits from and provides support to the Syrian regime, through his business activities and association with persons who support and benefit from the regime. In particular, he is an associate of Maher Al-Assad, including through his business activities. (Gender):Male",Individual,Primary name variation,,Syria,27/01/2015,31/12/2020,13/05/2022,12015 +QADDUR,Khalid,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0122 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the telecommunications, oil and plastic industry sectors and close business relations with Maher Al-Assad. He benefits from and provides support to the Syrian regime, through his business activities and association with persons who support and benefit from the regime. In particular, he is an associate of Maher Al-Assad, including through his business activities. (Gender):Male",Individual,Primary name,,Syria,27/01/2015,31/12/2020,13/05/2022,12015 +QADHAFI,Almuatesem,Bellah,Muammer,,,,,,,00/00/1976,Tripoli,Libya,Libya,B/001897,(Libyan),,,National Security Adviser,,,,,,,,,"(UK Sanctions List Ref):LIB0059 (UN Ref):LYi.014 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban,Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on 20 October 2011. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525915",Individual,AKA,Good quality,Libya,27/02/2011,26/02/2011,18/02/2021,11639 +QADHAFI,Almuatesem,Bellah,Muammer,,,,,,,05/02/1974,Tripoli,Libya,Libya,B/001897,(Libyan),,,National Security Adviser,,,,,,,,,"(UK Sanctions List Ref):LIB0059 (UN Ref):LYi.014 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban,Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on 20 October 2011. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525915",Individual,AKA,Good quality,Libya,27/02/2011,26/02/2011,18/02/2021,11639 +QADHAFI,Mutassim,Billah,Abuminyar,,,,,,,00/00/1976,Tripoli,Libya,Libya,B/001897,(Libyan),,,National Security Adviser,,,,,,,,,"(UK Sanctions List Ref):LIB0059 (UN Ref):LYi.014 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban,Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on 20 October 2011. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525915",Individual,AKA,Good quality,Libya,27/02/2011,26/02/2011,18/02/2021,11639 +QADHAFI,Mutassim,Billah,Abuminyar,,,,,,,05/02/1974,Tripoli,Libya,Libya,B/001897,(Libyan),,,National Security Adviser,,,,,,,,,"(UK Sanctions List Ref):LIB0059 (UN Ref):LYi.014 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban,Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on 20 October 2011. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525915",Individual,AKA,Good quality,Libya,27/02/2011,26/02/2011,18/02/2021,11639 +QADHAFI,AISHA,MUAMMAR MUHAMMED,ABU MINYAR,,,,,,,01/01/1978,Tripoli,Libya,,(1) 03824970 (2) 215215 (3) 428720 (4) B/011641.,"(1) Oman number, issued on 4 May 2014, issued in Muscat, Oman. Date of expiration: 3 May 2024. (2) Libya Passport number (3) Libya (4) - .",98606612,,,,,,,,,,Oman,"(UK Sanctions List Ref):LIB0047 (UN Ref):LYi.009 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525815",Individual,Primary name,,Libya,27/02/2011,26/02/2011,13/05/2021,11635 +QADHAFI,HANNIBAL,MUAMMAR,,,,,,,,20/09/1975,Tripoli,Libya,,B/002210,(Libya),,,,,,,,,,,Lebanon,"(UK Sanctions List Ref):LIB0051 (UN Ref):LYi.010 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525835. Lebanon (in custody)",Individual,Primary name,,Libya,27/02/2011,26/02/2011,31/12/2020,11636 +QADHAFI,KHAMIS,MUAMMAR,,,,,,,,00/00/1978,Tripoli,Libya,,,,,,,,,,,,,,,"(UK Sanctions List Ref):LIB0053 (UN Ref):LYi.011 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). Believed status/location: deceased. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525855",Individual,Primary name,,Libya,27/02/2011,26/02/2011,31/12/2020,11637 +QADHAFI,MOHAMMED,MUAMMAR,,,,,,,,00/00/1970,Tripoli,Libya,,03824969,Oman. Issued on 4 May 2014,97183904,Oman,,,,,,,,,Oman,"(UK Sanctions List Ref):LIB0056 (UN Ref):LYi.012 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525875",Individual,Primary name,,Libya,03/03/2011,26/02/2011,30/04/2021,11647 +QADHAFI,MUAMMAR,MOHAMMED,ABU MINYAR,,,,,,,00/00/1942,Sirte,Libya,,,,,,(1) Leader of the Revolution (2) Supreme Commander of Armed Forces,,,,,,,,,"(UK Sanctions List Ref):LIB0057 (UN Ref):LYi.013 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). Believed status/location: deceased. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525895",Individual,Primary name,,Libya,27/02/2011,26/02/2011,31/12/2020,11638 +QADHAFI,MUTASSIM,,,,,,,,,00/00/1976,Tripoli,Libya,Libya,B/001897,(Libyan),,,National Security Adviser,,,,,,,,,"(UK Sanctions List Ref):LIB0059 (UN Ref):LYi.014 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban,Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on 20 October 2011. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525915",Individual,Primary name,,Libya,27/02/2011,26/02/2011,18/02/2021,11639 +QADHAFI,MUTASSIM,,,,,,,,,05/02/1974,Tripoli,Libya,Libya,B/001897,(Libyan),,,National Security Adviser,,,,,,,,,"(UK Sanctions List Ref):LIB0059 (UN Ref):LYi.014 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban,Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on 20 October 2011. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525915",Individual,Primary name,,Libya,27/02/2011,26/02/2011,18/02/2021,11639 +QADHAFI,SAADI,,,,,,,,,27/05/1973,Tripoli,Libya,,(1) 014797 (2) 524521 (3) AA862825,"(1) - (2) - (3) Libya number. Issued on 19 May 2021, issued in Tripoli. Expires 18 May 2029.",,,Commander Special Forces,,,,,,,,Libya,(UK Sanctions List Ref):LIB0061 (UN Ref):LYi.015 Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525935,Individual,Primary name,,Libya,03/03/2011,26/02/2011,31/01/2022,11648 +QADHAFI,SAADI,,,,,,,,,01/01/1975,Tripoli,Libya,,(1) 014797 (2) 524521 (3) AA862825,"(1) - (2) - (3) Libya number. Issued on 19 May 2021, issued in Tripoli. Expires 18 May 2029.",,,Commander Special Forces,,,,,,,,Libya,(UK Sanctions List Ref):LIB0061 (UN Ref):LYi.015 Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525935,Individual,Primary name,,Libya,03/03/2011,26/02/2011,31/01/2022,11648 +QADHAFI,SAIF AL-ARAB,,,,,,,,,00/00/1982,Tripoli,Libya,,,,,,,,,,,,,,,(UK Sanctions List Ref):LIB0063 (UN Ref):LYi.016 Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze). Believed status/location: deceased. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525955,Individual,Primary name,,Libya,03/03/2011,26/02/2011,31/12/2020,11649 +QADHAFI,SAIF AL-ISLAM,,,,,,,,,25/06/1972,Tripoli,Libya,,B014995,(Libyan),,,"Director, Qadhafi Foundation",Zintan,,,,,,,Libya,"(UK Sanctions List Ref):LIB0064 (UN Ref):LYi.017 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525975. Libya (Believed status/location: restricted freedom of movement in Zintan, Libya",Individual,Primary name,,Libya,27/02/2011,26/02/2011,18/02/2021,11640 +QADHAFI AL-DAM,Sayyid,Mohammed,,,,,,,,00/00/1948,(1) Sirte (2) -,(1) Libya (2) Egypt,,513519,Libyan,,,,,,,,,,,,"(UK Sanctions List Ref):LIB0029 (UN Ref):LYi.003 Cousin of Muamar Qadhafi. UN Listing pursuant to paragraph 15 of resolution 1970 (Travel Ban). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525735 (UK Statement of Reasons):Involved in activities carried out on behalf of the former regime of Muammar Qadhafi implementing or connected to the repressive policies of that regime, including in the 1980s, Sayyid was involved in the dissident assassination campaign and allegedly responsible for several deaths in Europe. He is also thought to have been involved in arms procurement. (Gender):Male",Individual,Primary name,,Libya,03/03/2011,31/12/2020,16/02/2022,11646 +QADHAFI AL-DAM,Sayyid,Mohammed,,,,,,,,,(1) Sirte (2) -,(1) Libya (2) Egypt,,513519,Libyan,,,,,,,,,,,,"(UK Sanctions List Ref):LIB0029 (UN Ref):LYi.003 Cousin of Muamar Qadhafi. UN Listing pursuant to paragraph 15 of resolution 1970 (Travel Ban). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525735 (UK Statement of Reasons):Involved in activities carried out on behalf of the former regime of Muammar Qadhafi implementing or connected to the repressive policies of that regime, including in the 1980s, Sayyid was involved in the dissident assassination campaign and allegedly responsible for several deaths in Europe. He is also thought to have been involved in arms procurement. (Gender):Male",Individual,Primary name,,Libya,03/03/2011,31/12/2020,16/02/2022,11646 +QADIR,Ahmad,Sheikh,Abdul,,,,,,,,,,,,,,,Former Governor of Quneitra,,,,,,,,,"(UK Sanctions List Ref):SYR0007 (UK Statement of Reasons):Former Governor of Quneitra, associated with and appointed by Bashar al-Assad. Previously Governor of Latakia. Supports and benefits from the regime, including by public support for the Syrian Armed Forces and pro-regime militia. (Gender):Male",Individual,AKA,,Syria,28/10/2016,31/12/2020,31/12/2020,13387 +QADIR,Abdul,,,,,,,,,00/00/1964,"(1) Hisarak District, Nangarhar Province. (2) Surkh Rod District, Nangarhar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,D 000974,Afghanistan number,,,"(1) Head of Taliban Peshawar Financial Commission. (2) Military Attache, Taliban Embassy, Islamabad, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0098 (UN Ref):TAi.128 Financial advisor to Taliban Peshawar Military Council and Head of Taliban Peshawar Financial Commission. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6911 +QADOUR,Burhan,,,,,,برهان قدور,,,,,,,,,,,Former Head of Branch 291 (Damascus) of the army’s intelligence service,,,,,,,,,(UK Sanctions List Ref):SYR0034 (UK Statement of Reasons):Former Head of Branch 291 (Damascus) of the army's intelligence service. Responsible for the torture of opponents in custody. (Gender):Male,Individual,Primary name,,Syria,24/07/2012,31/12/2020,13/05/2022,12706 +QADOUR,Khaled,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0122 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the telecommunications, oil and plastic industry sectors and close business relations with Maher Al-Assad. He benefits from and provides support to the Syrian regime, through his business activities and association with persons who support and benefit from the regime. In particular, he is an associate of Maher Al-Assad, including through his business activities. (Gender):Male",Individual,Primary name variation,,Syria,27/01/2015,31/12/2020,13/05/2022,12015 +QADOUR,Khalid,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0122 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and/or activities in the telecommunications, oil and plastic industry sectors and close business relations with Maher Al-Assad. He benefits from and provides support to the Syrian regime, through his business activities and association with persons who support and benefit from the regime. In particular, he is an associate of Maher Al-Assad, including through his business activities. (Gender):Male",Individual,Primary name variation,,Syria,27/01/2015,31/12/2020,13/05/2022,12015 +QAIDA OF THE JIHAD IN THE LAND OF THE TWO RIVERS,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +QALAF,Fuad,Mohamed,,,,,,,,,,,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +QALAF,Fuad,Mohamed,,,,,,,,,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +QARDASH,Abdullah,,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,Abdullah,,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,Abdullah,,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,Abdullah,,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,Abdullah,,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,Abdullah,,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,Abdullah,,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,Abdullah,,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,Abdullah,,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,Abu,'Abdullah,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,Abu,'Abdullah,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,Abu,'Abdullah,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,Abu,'Abdullah,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,Abu,'Abdullah,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,Abu,'Abdullah,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,Abu,'Abdullah,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,Abu,'Abdullah,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,Abu,'Abdullah,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,al-Hajj,Abdullah,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,al-Hajj,Abdullah,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,al-Hajj,Abdullah,,,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,al-Hajj,Abdullah,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,al-Hajj,Abdullah,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,al-Hajj,Abdullah,,,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,al-Hajj,Abdullah,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,al-Hajj,Abdullah,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARDASH,al-Hajj,Abdullah,,,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +QARIN,Mus'ab,Abu,,,,,,,,19/01/1983,Sabratha,Libya,Libya,(1) 782633 (2) 540794,(1) Issued on 31 May 2005 (2) Issued on 12 Jan. 2008,,,Leader of a transnational trafficking network,,,,,,,,,"(UK Sanctions List Ref):LIB0058 (UN Ref):LYi.024 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Good quality,Libya,08/06/2018,07/06/2018,21/01/2021,13674 +QASEM,Haj,,,,,,,,,11/03/1957,Qom,Iran,,008827,Issued in Iran,,,(1) Brigadier General (2) Commander of Qods force,,,,,,,,,"(UK Sanctions List Ref):INU0212 (UN Ref):IRi.039 Promoted to Major General, retaining his position as Commander of Qods force. [Old Reference # I.47.D.6]",Individual,AKA,Low quality,Iran (Nuclear),24/03/2007,24/03/2007,15/03/2021,9062 +QASEMI,Rostam,,,,,Brigadier General,رستم قاسمی‎,,,05/05/1964,Sargh,Iran,,,,,,(1) Former Minister of Oil (2) Former Commander of Khatam al Anbiya Construction,,,,,,,,,"(UK Sanctions List Ref):INU0036 (UK Statement of Reasons):Former Commander of Khatam al-Anbiya, part of the IRGC, and provided support to the Ministry of Defence and Armed Forces Logistics of Iran as an adviser to the Minister of Defence. (Gender):Male",Individual,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11236 +QASEMI,Rostam,,,,,Brigadier General,رستم قاسمی‎,,,00/00/1961,Sargh,Iran,,,,,,(1) Former Minister of Oil (2) Former Commander of Khatam al Anbiya Construction,,,,,,,,,"(UK Sanctions List Ref):INU0036 (UK Statement of Reasons):Former Commander of Khatam al-Anbiya, part of the IRGC, and provided support to the Ministry of Defence and Armed Forces Logistics of Iran as an adviser to the Minister of Defence. (Gender):Male",Individual,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11236 +QASIM,Muhammad,,,,,,,,,00/00/1975,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Room number 33,5th Floor Sarafi Market,,,Kandahar City,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +QASIM,Muhammad,,,,,,,,,00/00/1975,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Safaar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +QASIM,Muhammad,,,,,,,,,00/00/1975,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Wesh,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +QASIM,Muhammad,,,,,,,,,00/00/1976,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Wesh,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +QASIM,Muhammad,,,,,,,,,00/00/1976,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Safaar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +QASIM,Muhammad,,,,,,,,,00/00/1976,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Room number 33,5th Floor Sarafi Market,,,Kandahar City,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +QASIM,NOORUDDIN,TURABI,MUHAMMAD,,,(1) Mullah (2) Maulavi,نورالدین ترابی محمد قاسم,,,00/00/1963,"(1) Spin Boldak District, Kandahar Province (2) Chora District, Uruzgan Province (3) Dehrawood District, Uruzgan Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Minister of Justice under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0046 (UN Ref):TAi.058 Deputy to Mullah Mohammed Omar (TAi.004). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7527 +QASIM,NOORUDDIN,TURABI,MUHAMMAD,,,(1) Mullah (2) Maulavi,نورالدین ترابی محمد قاسم,,,00/00/1955,"(1) Spin Boldak District, Kandahar Province (2) Chora District, Uruzgan Province (3) Dehrawood District, Uruzgan Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Minister of Justice under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0046 (UN Ref):TAi.058 Deputy to Mullah Mohammed Omar (TAi.004). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7527 +QASIM,NOORUDDIN,TURABI,MUHAMMAD,,,(1) Mullah (2) Maulavi,نورالدین ترابی محمد قاسم,,,00/00/1956,"(1) Spin Boldak District, Kandahar Province (2) Chora District, Uruzgan Province (3) Dehrawood District, Uruzgan Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Minister of Justice under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0046 (UN Ref):TAi.058 Deputy to Mullah Mohammed Omar (TAi.004). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7527 +QASMANI,Mohammad,Arif,,,,,,,,00/00/1944,,Pakistan,Pakistan,,,,,,House No 136,KDA Scheme No 1,Tipu Sultan Road,,,Karachi,,Pakistan,(UK Sanctions List Ref):AQD0146 (UN Ref):QDi.271 Associated with Lashkar-e-Tayyiba (QDe.118) and Al-Qaida (QDe.004). In detention as at June 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578017,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10906 +QASMANI,Muhammad,Arif,,,,,,,,00/00/1944,,Pakistan,Pakistan,,,,,,House No 136,KDA Scheme No 1,Tipu Sultan Road,,,Karachi,,Pakistan,(UK Sanctions List Ref):AQD0146 (UN Ref):QDi.271 Associated with Lashkar-e-Tayyiba (QDe.118) and Al-Qaida (QDe.004). In detention as at June 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578017,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10906 +QASMANI,Muhammad,'Arif,,,,,,,,00/00/1944,,Pakistan,Pakistan,,,,,,House No 136,KDA Scheme No 1,Tipu Sultan Road,,,Karachi,,Pakistan,(UK Sanctions List Ref):AQD0146 (UN Ref):QDi.271 Associated with Lashkar-e-Tayyiba (QDe.118) and Al-Qaida (QDe.004). In detention as at June 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578017,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10906 +QASMANI,ARIF,,,,,,,,,00/00/1944,,Pakistan,Pakistan,,,,,,House No 136,KDA Scheme No 1,Tipu Sultan Road,,,Karachi,,Pakistan,(UK Sanctions List Ref):AQD0146 (UN Ref):QDi.271 Associated with Lashkar-e-Tayyiba (QDe.118) and Al-Qaida (QDe.004). In detention as at June 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578017,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10906 +QASSEM,Haji,,,,,,,,,11/03/1957,Qom,Iran,,008827,Issued in Iran,,,(1) Brigadier General (2) Commander of Qods force,,,,,,,,,"(UK Sanctions List Ref):INU0212 (UN Ref):IRi.039 Promoted to Major General, retaining his position as Commander of Qods force. [Old Reference # I.47.D.6]",Individual,AKA,Low quality,Iran (Nuclear),24/03/2007,24/03/2007,15/03/2021,9062 +QASSEMI,Rostam,,,,,,,,,05/05/1964,Sargh,Iran,,,,,,(1) Former Minister of Oil (2) Former Commander of Khatam al Anbiya Construction,,,,,,,,,"(UK Sanctions List Ref):INU0036 (UK Statement of Reasons):Former Commander of Khatam al-Anbiya, part of the IRGC, and provided support to the Ministry of Defence and Armed Forces Logistics of Iran as an adviser to the Minister of Defence. (Gender):Male",Individual,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11236 +QASSEMI,Rostam,,,,,,,,,00/00/1961,Sargh,Iran,,,,,,(1) Former Minister of Oil (2) Former Commander of Khatam al Anbiya Construction,,,,,,,,,"(UK Sanctions List Ref):INU0036 (UK Statement of Reasons):Former Commander of Khatam al-Anbiya, part of the IRGC, and provided support to the Ministry of Defence and Armed Forces Logistics of Iran as an adviser to the Minister of Defence. (Gender):Male",Individual,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11236 +QATANA,Mohammad,Hassan,,,,,,,,,Damascus,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0370 (UK Statement of Reasons):Minister of Agriculture and Agarian reform. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,06/11/2020,31/12/2020,31/12/2020,14000 +QATARJI,Abu,al-Bara,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATARJI,Bara,,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATARJI,Bara,Ahmad,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATARJI,Muhammad,,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATARJI,Muhammad,Bara,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATARJI,Muhammad,Bara,Ahmad,Rushdi,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATARJI,Muhammad,Nur,al-Din,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATARJI INTERNATIONAL GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0359 Hussam AL-QATIRJI, CEO (EU-designated) Ultimate beneficial owner(s): Hussam AL-QATIRJI, Muhammad Baraa QATERJI (EU-designated) Relatives/business associates/entities or partners/links: Arvada/Arfada Petroleum Company JSC Registered address or each jurisdiction): Mazzah, Damascus, Syria (UK Statement of Reasons):Prominent and influential company operating across multiple sectors of the Syrian economy. By facilitating fuel, arms and ammunition trade towards between the regime and various actors including ISIS (Daesh) under the pretext of importing and exporting food items, supporting militias fighting alongside the regime and taking advantage of its ties with the regime to expand its commercial activity, Al Qatarji Company – whose board is headed by designated person Hossam Qatarji, a member of the Syrian People’s Assembly – supports and benefits from the Syrian regime. (Type of entity):Export. Import. Supplying oil and commodities. Trucking company (Subsidiaries):Arvada/Arfada Petroleum Company JSC",Entity,AKA,,Syria,17/02/2020,31/12/2020,13/05/2022,13822 +QATIRJI,Abu,al-Bara,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATIRJI,Bara,,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATIRJI,Bara,Ahmad,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATIRJI,Muhammad,,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATIRJI,Muhammad,Bara,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATIRJI,Muhammad,Bara,Ahmad,Rushdi,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATIRJI,Muhammad,Nur,al-Din,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATRJI,Abu,al-Bara,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATRJI,Bara,,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATRJI,Bara,Ahmad,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATRJI,Muhammad,,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATRJI,Muhammad,Bara,,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATRJI,Muhammad,Bara,Ahmad,Rushdi,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATRJI,Muhammad,Nur,al-Din,,,,,,,10/11/1976,Raqqah,Syria,Syria,,,11010046398,,,,,,,,,,,"(UK Sanctions List Ref):SYR0375 (UK Statement of Reasons):Prominent and influential businessperson operating across multiple sectors of the Syrian economy. Qatirji supports and benefits from the regime including through enabling, and profiting from, trade deals with the regime in relation to oil and wheat. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14068 +QATTAN,Mohammad,Safwan,,,,,,,,,,,,,,,,SSRC Worker,,,,,,,,,"(UK Sanctions List Ref):SYR0147 Associations with SSRC (UK Statement of Reasons):Mohammad Safwan Katan is an engineer at the Syrian Scientific Studies and Research Centre, a listed entity. He is involved in chemical weapons proliferation and delivery. Mohammad Safwan Katan has been involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13501 +QEKEMAN,Memetiming,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +QEKEMAN,Memetiming,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +QERMAN,,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +QERMAN,,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +QODS AERONAUTICS INDUSTRIES,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0170 (UN Ref):IRe.055 Produces unmanned aerial vehicles (UAVs), parachutes, para-gliders, para-motors, etc. IRGC has boasted of using these products as part of its asymmetric warfare doctrine. [Old Reference # E.47.B.1]",Entity,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,31/12/2020,9046 +QORGAB,,,,,,,,,,00/00/1979,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +QORGAB,,,,,,,,,,00/00/1980,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +QORGAB,,,,,,,,,,00/00/1981,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +QORGAB,,,,,,,,,,00/00/1982,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +QORGAB,Bashir,,,,,,,,,00/00/1979,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +QORGAB,Bashir,,,,,,,,,00/00/1980,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +QORGAB,Bashir,,,,,,,,,00/00/1981,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +QORGAB,Bashir,,,,,,,,,00/00/1982,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +QUARTER MASTER GENERAL OFFICE,,,,,,,,,,,,,,,,,,,Quarter Master General Office,Ministry of Defence,Building 24,,,Naypyitaw,,Myanmar,"(UK Sanctions List Ref):MYA0031 (UK Statement of Reasons):The Quarter Master General Office (QMGO) sits within the Myanmar Ministry of Defence which is responsible for overseeing a campaign of violence and human rights violations across Myanmar, particularly in ethnic areas. Evidence indicates that the QMGO plays a crucial role in procuring equipment for the Myanmar Armed Forces, including ammunition, bombs and jet fuel. This directly enables serious human rights violations, and the repression of the civilian population including peaceful protestors and ethnic minorities. Further and/or alternatively, the QMGO is associated with the Commander-in-Chief (as Chief of the Armed Forces) who is a designated individual. The QMGO also works for the State Administration Council (SAC), as the SAC has control over the Ministry of Defence. In addition, the QMGO is intrinsically linked with Myanmar Economic Corporation, which is designated for funding serious human rights violations. (Type of entity):Public Company",Entity,Primary name,,Myanmar,10/12/2021,10/12/2021,11/11/2022,14164 +QUDDUS,AMINULLAH,AMIN,,,,Maulavi,امین الله امین قدوس,,,00/00/1973,"Loy Karez village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,Governor of Saripul Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0085 (UN Ref):TAi.107 Member of Taliban Supreme Council as at 2011. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7017 +QUDS FORCE,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,13/05/2022,11241 +QUDS FORCE,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,AKA,,Syria,24/08/2011,31/12/2020,13/05/2022,11241 +QUDSIAH,Abd,Al-Fatah,,,,,,,,00/00/1953,Hama,Syria,Syria,D0005788,Diplomatic,,,Deputy Director of National Security Bureau of the Ba’ath Party,,,,,,,,,(UK Sanctions List Ref):SYR0001 Former Director of Syrian Military Intelligence. Former Director of Syrian Air Force Intelligence. (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces. Deputy Director of the National Security Bureau of the Ba’ath Party. Former Head of Syrian Military Intelligence Directorate. Involved in violent repression of the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11902 +QUDSIAH,Abdel-Fatah,,,,,,,,,00/00/1953,Hama,Syria,Syria,D0005788,Diplomatic,,,Deputy Director of National Security Bureau of the Ba’ath Party,,,,,,,,,(UK Sanctions List Ref):SYR0001 Former Director of Syrian Military Intelligence. Former Director of Syrian Air Force Intelligence. (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces. Deputy Director of the National Security Bureau of the Ba’ath Party. Former Head of Syrian Military Intelligence Directorate. Involved in violent repression of the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11902 +QUDSIAH,Abdulfatah,,,,,,,,,00/00/1953,Hama,Syria,Syria,D0005788,Diplomatic,,,Deputy Director of National Security Bureau of the Ba’ath Party,,,,,,,,,(UK Sanctions List Ref):SYR0001 Former Director of Syrian Military Intelligence. Former Director of Syrian Air Force Intelligence. (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces. Deputy Director of the National Security Bureau of the Ba’ath Party. Former Head of Syrian Military Intelligence Directorate. Involved in violent repression of the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11902 +QUDSIYA,Abd,Al-Fatah,,,,,,,,00/00/1953,Hama,Syria,Syria,D0005788,Diplomatic,,,Deputy Director of National Security Bureau of the Ba’ath Party,,,,,,,,,(UK Sanctions List Ref):SYR0001 Former Director of Syrian Military Intelligence. Former Director of Syrian Air Force Intelligence. (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces. Deputy Director of the National Security Bureau of the Ba’ath Party. Former Head of Syrian Military Intelligence Directorate. Involved in violent repression of the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11902 +QUDSIYA,Abdel-Fatah,,,,,,,,,00/00/1953,Hama,Syria,Syria,D0005788,Diplomatic,,,Deputy Director of National Security Bureau of the Ba’ath Party,,,,,,,,,(UK Sanctions List Ref):SYR0001 Former Director of Syrian Military Intelligence. Former Director of Syrian Air Force Intelligence. (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces. Deputy Director of the National Security Bureau of the Ba’ath Party. Former Head of Syrian Military Intelligence Directorate. Involved in violent repression of the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11902 +QUDSIYA,Abdulfatah,,,,,,,,,00/00/1953,Hama,Syria,Syria,D0005788,Diplomatic,,,Deputy Director of National Security Bureau of the Ba’ath Party,,,,,,,,,(UK Sanctions List Ref):SYR0001 Former Director of Syrian Military Intelligence. Former Director of Syrian Air Force Intelligence. (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces. Deputy Director of the National Security Bureau of the Ba’ath Party. Former Head of Syrian Military Intelligence Directorate. Involved in violent repression of the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11902 +QUDSIYAH,Abd,Al-Fatah,,,,,,,,00/00/1953,Hama,Syria,Syria,D0005788,Diplomatic,,,Deputy Director of National Security Bureau of the Ba’ath Party,,,,,,,,,(UK Sanctions List Ref):SYR0001 Former Director of Syrian Military Intelligence. Former Director of Syrian Air Force Intelligence. (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces. Deputy Director of the National Security Bureau of the Ba’ath Party. Former Head of Syrian Military Intelligence Directorate. Involved in violent repression of the civilian population in Syria. (Gender):Male,Individual,Primary name,,Syria,10/05/2011,31/12/2020,31/12/2020,11902 +QUDSIYAH,Abdel-Fatah,,,,,,,,,00/00/1953,Hama,Syria,Syria,D0005788,Diplomatic,,,Deputy Director of National Security Bureau of the Ba’ath Party,,,,,,,,,(UK Sanctions List Ref):SYR0001 Former Director of Syrian Military Intelligence. Former Director of Syrian Air Force Intelligence. (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces. Deputy Director of the National Security Bureau of the Ba’ath Party. Former Head of Syrian Military Intelligence Directorate. Involved in violent repression of the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11902 +QUDSIYAH,Abdulfatah,,,,,,,,,00/00/1953,Hama,Syria,Syria,D0005788,Diplomatic,,,Deputy Director of National Security Bureau of the Ba’ath Party,,,,,,,,,(UK Sanctions List Ref):SYR0001 Former Director of Syrian Military Intelligence. Former Director of Syrian Air Force Intelligence. (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces. Deputy Director of the National Security Bureau of the Ba’ath Party. Former Head of Syrian Military Intelligence Directorate. Involved in violent repression of the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11902 +QUDSIYEH,Abd,Al-Fatah,,,,,,,,00/00/1953,Hama,Syria,Syria,D0005788,Diplomatic,,,Deputy Director of National Security Bureau of the Ba’ath Party,,,,,,,,,(UK Sanctions List Ref):SYR0001 Former Director of Syrian Military Intelligence. Former Director of Syrian Air Force Intelligence. (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces. Deputy Director of the National Security Bureau of the Ba’ath Party. Former Head of Syrian Military Intelligence Directorate. Involved in violent repression of the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11902 +QUDSIYEH,Abdel-Fatah,,,,,,,,,00/00/1953,Hama,Syria,Syria,D0005788,Diplomatic,,,Deputy Director of National Security Bureau of the Ba’ath Party,,,,,,,,,(UK Sanctions List Ref):SYR0001 Former Director of Syrian Military Intelligence. Former Director of Syrian Air Force Intelligence. (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces. Deputy Director of the National Security Bureau of the Ba’ath Party. Former Head of Syrian Military Intelligence Directorate. Involved in violent repression of the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11902 +QUDSIYEH,Abdulfatah,,,,,,,,,00/00/1953,Hama,Syria,Syria,D0005788,Diplomatic,,,Deputy Director of National Security Bureau of the Ba’ath Party,,,,,,,,,(UK Sanctions List Ref):SYR0001 Former Director of Syrian Military Intelligence. Former Director of Syrian Air Force Intelligence. (UK Statement of Reasons):Officer of the rank of Major General in the Syrian Armed Forces. Deputy Director of the National Security Bureau of the Ba’ath Party. Former Head of Syrian Military Intelligence Directorate. Involved in violent repression of the civilian population in Syria. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,31/12/2020,11902 +QUEDAGH,,,,,,,,,,,,,,,,,,,22 Kirova Street,,,,,Moscow,,Russia,"(UK Sanctions List Ref):CYB0009 (UK Statement of Reasons):The Main Centre for Special Technologies (GTsST) of the Russian General Staff Main Intelligence Directorate (GRU), also known by its field post number ‘74455’ and “Sandworm” by industry, was responsible for cyber attacks which disrupted critical national infrastructure in Ukraine, cutting off the electricity grid. The perpetrators were directly responsible for relevant cyber activity by carrying out information system interference intended to undermine integrity, prosperity and security of the Ukraine. These cyber attacks originated in Russia and were unauthorised (Type of entity):Department within Government/Military Unit (Parent company):Russian Ministry of Defence",Entity,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13911 +QUEEN,India,,,,,,,,,00/11/1973,"Bunagana, Rutshuru territory",Congo (Democratic Republic),,,,,,Former M23 Deputy Commander,,,,,,,,Uganda,(UK Sanctions List Ref):DRC0037 (UN Ref):CDi.004 Became M23 deputy commander after the flight of Bosco Taganda’s faction to Rwanda in March 2013. Fled to Uganda in November 2013. In Uganda as of early 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5776081 (Gender):Male,Individual,AKA,Low quality,Democratic Republic of the Congo,28/02/2013,30/11/2012,31/12/2020,12830 +QUL,ABDUL SALAM,HANAFI,ALI MARDAN,,,(1) Mullah (2) Maulavi,عبدالسلام حنفی علی مردان قل,,,00/00/1968,"(1) Darzab District, Faryab Province. (2) Qush Tepa District, Jawzjan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Deputy Minister of Education under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0027 (UN Ref):TAi.027 Taliban member responsible for Jawzjan Province in Northern Afghanistan until 2008. Involved in drug trafficking. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7162 +QUMQUM,Abou,,,,,,,,,00/00/1970,Nouakchott,Mauritania,(1) Mauritania. (2) Mali,A1447120,Mali number. Expired on 19 Oct. 2011,,,,,,,,,Gao,,Mali,"(UK Sanctions List Ref):AQD0188 (UN Ref):QDi.315 Leader of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Has provided logistical support to the Sahelian group Al Moulathamine, linked with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). International arrest warrant issued by Mauritania. Mother’s name is Tijal Bint Mohamed Dadda. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278393",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,04/03/2013,22/02/2013,31/12/2020,12859 +QUREISHI,Seyed,Hojjatollah,,,,Brigadier General,سید حجت الله قریشی,,Persian,,,Iran,Iran,,,,,Head of the Supply and Logistics Division of the Iranian Ministry of Defence,Ferdowsi Avenue,Sarhang Sakhaei Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):RUS1654 (UK Statement of Reasons):Brigadier General Seyed Hojjatollah QUREISHI is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he is involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, through providing goods or technology, that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. QUREISHI is an Iranian Military Officer, who is the key Iranian negotiator in a deal that supplied Russia with Iranian produced UAVs for use in its illegal invasion of Ukraine. (Gender):Male",Individual,Primary name,,Russia,20/10/2022,20/10/2022,20/10/2022,15606 +QURESHI,Abdul Ghaffar,,,,,,,,,00/00/1970,"Turshut village, Wursaj District, Takhar Province",Afghanistan,Afghanistan,D 000933,(Afghan) Issued in Kabul on 13 Sep 1998,55130,(Afghan) (tazkira),"Repatriation Attache, Taliban Embassy, Islamabad, Pakistan",Khairkhana Section,Number 3,,,,Kabul,,Afghanistan,(UK Sanctions List Ref):AFG0100 (UN Ref):TAi.130 Involved in drug trafficking. Belongs to Tajik ethnic group. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7405 +QURESHI,Abdul Ghaffar,,,,,,,,,00/00/1967,"Turshut village, Wursaj District, Takhar Province",Afghanistan,Afghanistan,D 000933,(Afghan) Issued in Kabul on 13 Sep 1998,55130,(Afghan) (tazkira),"Repatriation Attache, Taliban Embassy, Islamabad, Pakistan",Khairkhana Section,Number 3,,,,Kabul,,Afghanistan,(UK Sanctions List Ref):AFG0100 (UN Ref):TAi.130 Involved in drug trafficking. Belongs to Tajik ethnic group. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7405 +RAAD,Tamam,,,,,,,,,00/00/1965,Al-Qusayr,Syria,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0364 (UK Statement of Reasons):Minister of Hydraulic/Water Resources. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2020,31/12/2020,31/12/2020,13980 +RA'AD,Tamam,,,,,,,,,00/00/1965,Al-Qusayr,Syria,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0364 (UK Statement of Reasons):Minister of Hydraulic/Water Resources. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2020,31/12/2020,31/12/2020,13980 +RA'AD,Tammam,,,,,,,,,00/00/1965,Al-Qusayr,Syria,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0364 (UK Statement of Reasons):Minister of Hydraulic/Water Resources. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,16/10/2020,31/12/2020,31/12/2020,13980 +RAAD AUTOMATION CO.,,,,,,,,,,,,,,,,,,,Unit 1,No 35,Bouali Sina Sharghi,Chehel Sotoun Street,Fatemi Square,Tehran,,Iran,"(UK Sanctions List Ref):INU0103 (UK Statement of Reasons):A company involved in procurement of inverters for Iran's uranium enrichment programme. (Phone number):+98 21 88957781 (Website):www.raadiran.com, www.raadiran.ir (Email address):info@raadiran.ir. tehran.raad@yahoo.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11544 +RAAD AUTOMATION COMPANY,,,,,,,,,,,,,,,,,,,Unit 1,No 35,Bouali Sina Sharghi,Chehel Sotoun Street,Fatemi Square,Tehran,,Iran,"(UK Sanctions List Ref):INU0103 (UK Statement of Reasons):A company involved in procurement of inverters for Iran's uranium enrichment programme. (Phone number):+98 21 88957781 (Website):www.raadiran.com, www.raadiran.ir (Email address):info@raadiran.ir. tehran.raad@yahoo.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11544 +RAAD IRAN,,,,,,,,,,,,,,,,,,,Unit 1,No 35,Bouali Sina Sharghi,Chehel Sotoun Street,Fatemi Square,Tehran,,Iran,"(UK Sanctions List Ref):INU0103 (UK Statement of Reasons):A company involved in procurement of inverters for Iran's uranium enrichment programme. (Phone number):+98 21 88957781 (Website):www.raadiran.com, www.raadiran.ir (Email address):info@raadiran.ir. tehran.raad@yahoo.com",Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11544 +RAADIRAN,,,,,,,,,,,,,,,,,,,Unit 1,No 35,Bouali Sina Sharghi,Chehel Sotoun Street,Fatemi Square,Tehran,,Iran,"(UK Sanctions List Ref):INU0103 (UK Statement of Reasons):A company involved in procurement of inverters for Iran's uranium enrichment programme. (Phone number):+98 21 88957781 (Website):www.raadiran.com, www.raadiran.ir (Email address):info@raadiran.ir. tehran.raad@yahoo.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11544 +RABBI,Faisal,,,,,,,,,00/00/1972,"(1) Kohe Safi District, Parwan Province (2) Kapisa Province (3) Nangarhar Province (4) Kabul Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Senior official in Konar Province during the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0123 (UN Ref):TAi.157 Represents and provides financial and logistical support to the Haqqani Network (TAe.012), which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani (TAi.144), Jalaluddin Haqqani (TAi.040), the Haqqani network and the Taliban. Believed to be in Afghanistan/ Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12455 +RABBI,Faisal,,,,,,,,,00/00/1975,"(1) Kohe Safi District, Parwan Province (2) Kapisa Province (3) Nangarhar Province (4) Kabul Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Senior official in Konar Province during the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0123 (UN Ref):TAi.157 Represents and provides financial and logistical support to the Haqqani Network (TAe.012), which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani (TAi.144), Jalaluddin Haqqani (TAi.040), the Haqqani network and the Taliban. Believed to be in Afghanistan/ Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12455 +RABBI,Fazl,,,,,,,,,00/00/1972,"(1) Kohe Safi District, Parwan Province (2) Kapisa Province (3) Nangarhar Province (4) Kabul Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Senior official in Konar Province during the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0123 (UN Ref):TAi.157 Represents and provides financial and logistical support to the Haqqani Network (TAe.012), which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani (TAi.144), Jalaluddin Haqqani (TAi.040), the Haqqani network and the Taliban. Believed to be in Afghanistan/ Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12455 +RABBI,Fazl,,,,,,,,,00/00/1975,"(1) Kohe Safi District, Parwan Province (2) Kapisa Province (3) Nangarhar Province (4) Kabul Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Senior official in Konar Province during the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0123 (UN Ref):TAi.157 Represents and provides financial and logistical support to the Haqqani Network (TAe.012), which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani (TAi.144), Jalaluddin Haqqani (TAi.040), the Haqqani network and the Taliban. Believed to be in Afghanistan/ Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12455 +RABI,Al Zawahry,Aiman,Mohamed,,,,,,,19/06/1951,Giza,Egypt,Egypt,(1) 1084010 (2) 19820215,(1) Egyptian (2) - .,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0126 (UN Ref):QDi.006 Leader of Al-Qaida (QDe.004). Former operational and military leader of Egyptian Islamic Jihad (QDe.003), was a close associate of Usama Bin Laden (deceased). Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487197",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7016 +RABI,Fazal,,,,,,,,,00/00/1972,"(1) Kohe Safi District, Parwan Province (2) Kapisa Province (3) Nangarhar Province (4) Kabul Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Senior official in Konar Province during the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0123 (UN Ref):TAi.157 Represents and provides financial and logistical support to the Haqqani Network (TAe.012), which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani (TAi.144), Jalaluddin Haqqani (TAi.040), the Haqqani network and the Taliban. Believed to be in Afghanistan/ Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12455 +RABI,Fazal,,,,,,,,,00/00/1975,"(1) Kohe Safi District, Parwan Province (2) Kapisa Province (3) Nangarhar Province (4) Kabul Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Senior official in Konar Province during the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0123 (UN Ref):TAi.157 Represents and provides financial and logistical support to the Haqqani Network (TAe.012), which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani (TAi.144), Jalaluddin Haqqani (TAi.040), the Haqqani network and the Taliban. Believed to be in Afghanistan/ Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12455 +RABI,Fazl,,,,,,فضل ربيع,,,00/00/1972,"(1) Kohe Safi District, Parwan Province (2) Kapisa Province (3) Nangarhar Province (4) Kabul Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Senior official in Konar Province during the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0123 (UN Ref):TAi.157 Represents and provides financial and logistical support to the Haqqani Network (TAe.012), which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani (TAi.144), Jalaluddin Haqqani (TAi.040), the Haqqani network and the Taliban. Believed to be in Afghanistan/ Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12455 +RABI,Fazl,,,,,,فضل ربيع,,,00/00/1975,"(1) Kohe Safi District, Parwan Province (2) Kapisa Province (3) Nangarhar Province (4) Kabul Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan,Afghanistan,,,,,Senior official in Konar Province during the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0123 (UN Ref):TAi.157 Represents and provides financial and logistical support to the Haqqani Network (TAe.012), which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani (TAi.144), Jalaluddin Haqqani (TAi.040), the Haqqani network and the Taliban. Believed to be in Afghanistan/ Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12455 +RABIE,Al Zawahry,Aiman,Mohamed,,,,,,,19/06/1951,Giza,Egypt,Egypt,(1) 1084010 (2) 19820215,(1) Egyptian (2) - .,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0126 (UN Ref):QDi.006 Leader of Al-Qaida (QDe.004). Former operational and military leader of Egyptian Islamic Jihad (QDe.003), was a close associate of Usama Bin Laden (deceased). Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487197",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7016 +RABITA TRUST,,,,,,,,,,,,,,,,,,,Room 9a,2nd Floor,Wahdat Road,Education Town,Lahore,,,Pakistan,(UK Sanctions List Ref):AQD0072 (UN Ref):QDe.021 Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235575,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,7407 +RABITA TRUST,,,,,,,,,,,,,,,,,,,Wares Colony,,,,Lahore,,,Pakistan,(UK Sanctions List Ref):AQD0072 (UN Ref):QDe.021 Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235575,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,7407 +RACHID,,,,,,,,,,23/04/1966,Casablanca,Morocco,Morocco,D-379312,Morocco number,(1) LGBBLK66D23Z330U (2) DE-473900,(1) Italian fiscal code (2) Moroccan national identity card,,Number 4,Via Europa,Paderno Ponchielli,,,Cremona,,Italy,(UK Sanctions List Ref):AQD0098 (UN Ref):QDi.190 Father’s name is Mamoune Mohamed. Mother’s name is Fatna Ahmed. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/08/2005,29/07/2005,31/12/2020,8685 +RACHMANOVA,Marina,YUREUNA,,,,,,,,26/09/1970,,,,,,,,Member of the Central Electoral Commision,,,,,,,,,"(UK Sanctions List Ref):BEL0042 (UK Statement of Reasons):Marina Rachmanava is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13965 +RACHMANOVA,Marina,Yurievna,,,,,,,,26/09/1970,,,,,,,,Member of the Central Electoral Commision,,,,,,,,,"(UK Sanctions List Ref):BEL0042 (UK Statement of Reasons):Marina Rachmanava is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13965 +RADAN,Ahmad-Reza,,,,,,,,,00/00/1963,Isfahan,Iran,Iran,,,,,(1) IRGC commander (2) Head of the Police Strategic Studies Centre (3) Deputy Chief of Iran's National Police until June 2014,,,,,,,,,"(UK Sanctions List Ref):IHR0008 (UK Statement of Reasons):Formerly Deputy Chief of Iran's National Police until June 2014.As Deputy Chief of National Police from 2008, Radan was responsible for beatings, murder, and arbitrary arrests and detentions against protestors that were committed by the police forces. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,28/01/2022,11785 +RADIO,Mullah,,,,,,,,,00/00/1974,"Kuza Bandai village, Swat Valley, Khyber Pakhtunkhawa Province",Pakistan,,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0225 (UN Ref):QDi.352 Commander of Tehrik-e Taliban Pakistan (TTP) (QDe.132) since 7 Nov. 2013. Led the local TTP in Pakistan’s northwest valley of Swat from 2007 to 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5859726. Afghanistan / Pakistan border region,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,13/04/2015,07/04/2015,31/12/2020,13246 +RADIO,Mullah,,,,,,,,,00/00/1974,"Kuza Bandai village, Swat Valley, Khyber Pakhtunkhawa Province",Pakistan,,,,,,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0225 (UN Ref):QDi.352 Commander of Tehrik-e Taliban Pakistan (TTP) (QDe.132) since 7 Nov. 2013. Led the local TTP in Pakistan’s northwest valley of Swat from 2007 to 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5859726. Afghanistan / Pakistan border region,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,13/04/2015,07/04/2015,31/12/2020,13246 +RADIOAVIONICA JSC,,,,,,,ОАО Радиоавионика,Cyrillic,Russian,,,,,,,,,,"Troitsky pr., 4, lit. B",,,,,St Petersburg,190005,Russia,"(UK Sanctions List Ref):RUS1428 (UK Statement of Reasons):Radioavionica JSC is a company that carries out Research & Development, production and technological work for the Russian railways and produces reconnaissance, control and communications equipment for Russian military personnel. Radioavionica JSC therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in sectors of strategic significance to the Government of Russia, namely the transport and defence sectors. (Phone number):7 (812) 607 5050 (Website):www.radioavionica.ru (Email address):info@radioavionica.ru",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15377 +RADIOAVTOMATIKA LLC,,,,,,,"Организация ООО ""РАДИОАВТОМАТИКА""",Cyrillic,Russian,,,,,,,,,,ZOLOTOROZHSKY VAL,11/22,,,,Moscow,111033,Russia,"(UK Sanctions List Ref):RUS1082 (UK Statement of Reasons):Radioavtomatika is engaged in the supply of electronic components. As such, it is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the electronics sector, a sector of strategic significance to Government of Russia. (Phone number):(1) +7 (495) 286 99 99 (2) +7 (495) 109 00 22 (Website):Radioautomatic.ru (Email address):(1) info@radioautomatic.ru (2) sale@radioautomatic.ru (Business Reg No):(1) 7725824287 (2) 772201001",Entity,Primary name,,Russia,24/03/2022,24/03/2022,14/06/2022,15025 +RADIOTECHNICAL AND INFORMATION SYSTEMS CONCERN,,,,,,,Радиотехнические и Информационные Системы,Cyrillic,Russian,,,,,,,,,,"8 Marta Street, 10, building 1",,,,,Moscow,127083,Russia,(UK Sanctions List Ref):RUS1354 (UK Statement of Reasons):Radiotechnical and Information Systems Concern is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia - the Russian defence sector. (Phone number):+7 (495) 788-00-07 (Website):https://www.aorti.ru (Email address):inbox@oaorti.ru (Business Reg No):INN: 7713269230,Entity,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15300 +RADJA,,,,,,,,,,00/00/1954,"Cellule Ferege, Gatumba, sector Kibilira commune, Gisenyi Prefecture",Rwanda,Rwanda,,,,,FDLR-FOCA Commander and FDLR-FOCA Lieutenant General,,,,,,North Kivu Province,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0057 (UN Ref):CDi.012 The International Criminal Court issued an arrest warrant for Mudacumura on 12 July 2012 for nine counts of war crimes, including attacking civilians, murder, mutilation, cruel treatment, rape, torture, destruction of property, pillaging and outrages against personal dignity, allegedly committed between 2009 and 2010 in the DRC. (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,21/01/2021,8714 +RAFIUDDIN,Muhammad,,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +RAFIUDDIN,Muhammad,,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,96-06-06 Flat Sri Kota,Bandar Tun Razak,,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,56100,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +RAFIUDDIN,Muhammad,,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,B-3B-19 Glenview Villa,Jalan 49 Off Jalan Kuari,Taman Pinggiran Cheras,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +RAGAB,Abdullah,,,,,,,,,00/00/1963,Tripoli,Libya,Libya,(1) 1990/345751. (2) 345741,(1) Libyan (2) Libyan,220334,Libya,,Bab Ben Ghasheer,,,,,Tripoli,,Libya,(UK Sanctions List Ref):AQD0305 (UN Ref):QDi.231 Mother's name is Kalthoum Abdul Salam al-Shaftari. Senior member of Libyan Islamic Fighting Group (QDe.011) and member of Al-Qaida (QDe.004). Review pursuant to Security Council resolution 1822 (2008) was concluded on 24 Nov. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1480002,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/06/2007,08/06/2007,31/12/2020,8645 +RAGE,Ali,Mohamed,,,,,,,,00/00/1966,,Somalia,Somalia,,,,,Spokesperson of Al-Shabaab,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0020 (UN Ref):SOi.021 Listed pursuant to paragraph 43(a) of resolution 2093 (2013) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the peace and reconciliation process in Somalia, or threaten the Federal Government of Somalia or AMISOM by force.” As a spokesperson for Al-Shabaab, Rage is involved in promulgating and supporting the group’s terrorist activities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals (Gender):Male",Individual,Primary name,,Somalia,21/02/2022,21/02/2022,21/02/2022,14176 +RAGE,Ali,Mohammed,,,,,,,,00/00/1966,,Somalia,Somalia,,,,,Spokesperson of Al-Shabaab,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0020 (UN Ref):SOi.021 Listed pursuant to paragraph 43(a) of resolution 2093 (2013) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the peace and reconciliation process in Somalia, or threaten the Federal Government of Somalia or AMISOM by force.” As a spokesperson for Al-Shabaab, Rage is involved in promulgating and supporting the group’s terrorist activities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals (Gender):Male",Individual,AKA,Good quality,Somalia,21/02/2022,21/02/2022,21/02/2022,14176 +RAGE,Ali,Mohamud,,,,,,,,00/00/1966,,Somalia,Somalia,,,,,Spokesperson of Al-Shabaab,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0020 (UN Ref):SOi.021 Listed pursuant to paragraph 43(a) of resolution 2093 (2013) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the peace and reconciliation process in Somalia, or threaten the Federal Government of Somalia or AMISOM by force.” As a spokesperson for Al-Shabaab, Rage is involved in promulgating and supporting the group’s terrorist activities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals (Gender):Male",Individual,AKA,Good quality,Somalia,21/02/2022,21/02/2022,21/02/2022,14176 +RAH KAR NOVINI,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0104 (UK Statement of Reasons):A department of UN designated Kalaye Electric Company (KEC). Established in late 2006, it was responsible for the construction of the Fuel Enrichment Plant at Fordow (Qom).",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11216 +RAH SAHEL,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0171 (UN Ref):IRe.056 Owned or controlled by, or acting on behalf of, KAA. [Old Reference # E.29.II.11] (Parent company):Khatam al-Anbiya (KAA)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11145 +RAHAB ENGINEERING INSTITUTE,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0172 (UN Ref):IRe.057 Owned or controlled by, or acting on behalf of, KAA and is a subsidiary of KAA. [Old Reference # E.29.II.12] (Parent company):Khatam al-Anbiya (KAA)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11144 +RAHAT LTD.,,,,,,,راحت لمتد,,,,,,,,,,,,,,,,Chaman,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT LTD.,,,,,,,راحت لمتد,,,,,,,,,,,,,,,,Zahedan,Zabol Province,,Iran,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT LTD.,,,,,,,راحت لمتد,,,,,,,,,,,,Chaghi Bazaar,,,,Chaghi,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT LTD.,,,,,,,راحت لمتد,,,,,,,,,,,,Dr Barno Road,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT LTD.,,,,,,,راحت لمتد,,,,,,,,,,,,Gereshk District,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT LTD.,,,,,,,راحت لمتد,,,,,,,,,,,,Haji Mohammed Plaza,Tol Aram Road,near Jamaluddin Afghani Road,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT LTD.,,,,,,,راحت لمتد,,,,,,,,,,,,Kandahari Bazaar,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT LTD.,,,,,,,راحت لمتد,,,,,,,,,,,,Lashkar Gah,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT LTD.,,,,,,,راحت لمتد,,,,,,,,,,,,Room number 33,5th Floor,Sarafi Market,,Kandahar city,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT LTD.,,,,,,,راحت لمتد,,,,,,,,,,,,Safaar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT LTD.,,,,,,,راحت لمتد,,,,,,,,,,,,Shop number 4,Azizi Bank,Haji Muhammad Isa Market,Wesh,Spin Boldak,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT LTD.,,,,,,,راحت لمتد,,,,,,,,,,,,Zaranj District,,,,,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT TRADING COMPANY,,,,,,,,,,,,,,,,,,,,,,,Chaman,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT TRADING COMPANY,,,,,,,,,,,,,,,,,,,,,,,Zahedan,Zabol Province,,Iran,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT TRADING COMPANY,,,,,,,,,,,,,,,,,,,Chaghi Bazaar,,,,Chaghi,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT TRADING COMPANY,,,,,,,,,,,,,,,,,,,Dr Barno Road,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT TRADING COMPANY,,,,,,,,,,,,,,,,,,,Gereshk District,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT TRADING COMPANY,,,,,,,,,,,,,,,,,,,Haji Mohammed Plaza,Tol Aram Road,near Jamaluddin Afghani Road,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT TRADING COMPANY,,,,,,,,,,,,,,,,,,,Kandahari Bazaar,,,,,Quetta,,Pakistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT TRADING COMPANY,,,,,,,,,,,,,,,,,,,Lashkar Gah,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT TRADING COMPANY,,,,,,,,,,,,,,,,,,,Room number 33,5th Floor,Sarafi Market,,Kandahar city,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT TRADING COMPANY,,,,,,,,,,,,,,,,,,,Safaar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT TRADING COMPANY,,,,,,,,,,,,,,,,,,,Shop number 4,Azizi Bank,Haji Muhammad Isa Market,Wesh,Spin Boldak,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHAT TRADING COMPANY,,,,,,,,,,,,,,,,,,,Zaranj District,,,,,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0004 (UN Ref):TAe.013 Rahat Ltd. was used by Taliban leadership to transfer funds originating from external donors and narcotics trafficking to finance Taliban activity as of 2011 and 2012. Owned by Mohammed Qasim Mir Wali Khudai Rahim (TAi.165). Also associated Mohammad Naim Barich Khudaidad (TAi.013). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12814 +RAHIM,Fazel,,,,,,,,,05/01/1974,Kabul,Afghanistan,Afghanistan,R512768,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazel,,,,,,,,,05/01/1974,Kabul,Afghanistan,Afghanistan,R512768,,,,,"A2, City Computer Plaza",Shar-e-Now,,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazel,,,,,,,,,05/01/1974,Kabul,Afghanistan,Afghanistan,R512768,,,,,Microrayan 3rd,Apt. 45,block 21,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazel,,,,,,,,,00/00/1977,Kabul,Afghanistan,Afghanistan,R512768,,,,,Microrayan 3rd,Apt. 45,block 21,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazel,,,,,,,,,00/00/1977,Kabul,Afghanistan,Afghanistan,R512768,,,,,"A2, City Computer Plaza",Shar-e-Now,,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazel,,,,,,,,,00/00/1977,Kabul,Afghanistan,Afghanistan,R512768,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazel,,,,,,,,,00/00/1975,Kabul,Afghanistan,Afghanistan,R512768,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazel,,,,,,,,,00/00/1975,Kabul,Afghanistan,Afghanistan,R512768,,,,,"A2, City Computer Plaza",Shar-e-Now,,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazel,,,,,,,,,00/00/1975,Kabul,Afghanistan,Afghanistan,R512768,,,,,Microrayan 3rd,Apt. 45,block 21,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazel,,,,,,,,,24/01/1973,Kabul,Afghanistan,Afghanistan,R512768,,,,,Microrayan 3rd,Apt. 45,block 21,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazel,,,,,,,,,24/01/1973,Kabul,Afghanistan,Afghanistan,R512768,,,,,"A2, City Computer Plaza",Shar-e-Now,,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazel,,,,,,,,,24/01/1973,Kabul,Afghanistan,Afghanistan,R512768,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazil,,,,,,,,,05/01/1974,Kabul,Afghanistan,Afghanistan,R512768,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazil,,,,,,,,,05/01/1974,Kabul,Afghanistan,Afghanistan,R512768,,,,,"A2, City Computer Plaza",Shar-e-Now,,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazil,,,,,,,,,05/01/1974,Kabul,Afghanistan,Afghanistan,R512768,,,,,Microrayan 3rd,Apt. 45,block 21,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazil,,,,,,,,,00/00/1977,Kabul,Afghanistan,Afghanistan,R512768,,,,,Microrayan 3rd,Apt. 45,block 21,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazil,,,,,,,,,00/00/1977,Kabul,Afghanistan,Afghanistan,R512768,,,,,"A2, City Computer Plaza",Shar-e-Now,,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazil,,,,,,,,,00/00/1977,Kabul,Afghanistan,Afghanistan,R512768,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazil,,,,,,,,,00/00/1975,Kabul,Afghanistan,Afghanistan,R512768,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazil,,,,,,,,,00/00/1975,Kabul,Afghanistan,Afghanistan,R512768,,,,,"A2, City Computer Plaza",Shar-e-Now,,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazil,,,,,,,,,00/00/1975,Kabul,Afghanistan,Afghanistan,R512768,,,,,Microrayan 3rd,Apt. 45,block 21,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazil,,,,,,,,,24/01/1973,Kabul,Afghanistan,Afghanistan,R512768,,,,,Microrayan 3rd,Apt. 45,block 21,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazil,,,,,,,,,24/01/1973,Kabul,Afghanistan,Afghanistan,R512768,,,,,"A2, City Computer Plaza",Shar-e-Now,,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Fazil,,,,,,,,,24/01/1973,Kabul,Afghanistan,Afghanistan,R512768,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,Umar,Mahmud,,,,,,,,16/06/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +RAHIM,Umar,Mahmud,,,,,,,,01/01/1967,"Al-Qaim, Al-Anbar Province",Iraq,Iraq,A4059346,"Iraq. Issued on 29 May 2013 in Baghdad, Iraq. Expires on 27 May 2021.",(1) 00405771 (2) 540763,(1) Iraq national identity card. Issued on 20 May 2013 in Iraq (2) Certificate of Iraqi nationality. Issued on 13 February 1984,,,,,,Al-Qaim,Al-Anbar Province,,Iraq,"(UK Sanctions List Ref):AQD0330 (UN Ref):QDi.412 Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157). Physical description: sex: male, hair colour: black; height: 175 cm. Speaks Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6202733 (Gender):Male",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2018,06/03/2018,31/12/2020,13616 +RAHIM,FAZAL,,,,,,فضل رحيم,,,05/01/1974,Kabul,Afghanistan,Afghanistan,R512768,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,FAZAL,,,,,,فضل رحيم,,,05/01/1974,Kabul,Afghanistan,Afghanistan,R512768,,,,,"A2, City Computer Plaza",Shar-e-Now,,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,FAZAL,,,,,,فضل رحيم,,,05/01/1974,Kabul,Afghanistan,Afghanistan,R512768,,,,,Microrayan 3rd,Apt. 45,block 21,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,FAZAL,,,,,,فضل رحيم,,,00/00/1977,Kabul,Afghanistan,Afghanistan,R512768,,,,,Microrayan 3rd,Apt. 45,block 21,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,FAZAL,,,,,,فضل رحيم,,,00/00/1977,Kabul,Afghanistan,Afghanistan,R512768,,,,,"A2, City Computer Plaza",Shar-e-Now,,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,FAZAL,,,,,,فضل رحيم,,,00/00/1977,Kabul,Afghanistan,Afghanistan,R512768,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,FAZAL,,,,,,فضل رحيم,,,00/00/1975,Kabul,Afghanistan,Afghanistan,R512768,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,FAZAL,,,,,,فضل رحيم,,,00/00/1975,Kabul,Afghanistan,Afghanistan,R512768,,,,,"A2, City Computer Plaza",Shar-e-Now,,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,FAZAL,,,,,,فضل رحيم,,,00/00/1975,Kabul,Afghanistan,Afghanistan,R512768,,,,,Microrayan 3rd,Apt. 45,block 21,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,FAZAL,,,,,,فضل رحيم,,,24/01/1973,Kabul,Afghanistan,Afghanistan,R512768,,,,,Microrayan 3rd,Apt. 45,block 21,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,FAZAL,,,,,,فضل رحيم,,,24/01/1973,Kabul,Afghanistan,Afghanistan,R512768,,,,,"A2, City Computer Plaza",Shar-e-Now,,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIM,FAZAL,,,,,,فضل رحيم,,,24/01/1973,Kabul,Afghanistan,Afghanistan,R512768,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHIMI,Hossein,,,,,Brigadier General,,,,00/00/1964,"Dodhak village, Mahalat, Central province",Iran,Iran,,,,,LEF Tehran Provincial Chief,,,,,,,,,"(UK Sanctions List Ref):IHR0096 (UK Statement of Reasons):Hossein RAHIMI is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life, and right to freedom of expression and peaceful assembly in Iran through his role as the provincial Chief of the Law Enforcement Forces in Tehran and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15616 +RAHIMI,YAR MOHAMMAD,,,,,Mullah,یار محمد رحیمی,,,00/00/1953,"Talugan village, Panjwai District, Kandahar Province",Afghanistan,Afghanistan,,,,,Minister of Communication of the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0017 (UN Ref):TAi.015 Member of Taliban Supreme Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7409 +RAHMAH,Abu,,,,,,,,,10/05/1983,Ben Guerdane,Tunisia,Tunisia,,,08619445,,,Amria Ben Guerdane,,,,,Medenine,,Tunisia,"(UK Sanctions List Ref):AQD0253 (UN Ref):QDi.386 Foreign terrorist fighter facilitator experienced in establishing and securing travel routes. Deeply involved in providing material support to the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) in North Africa. Assisted foreign terrorist fighters’ travel throughout North Africa and to Syrian Arab Republic to join Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Profession: farm worker. Mother's name: Mbarka Helali. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,14/06/2022,13319 +RAHMAN,Abdul,,,,,,,,,02/02/1966,al Aziziyya,Libya,Libya,(1) 203037 (2) 347834(3) 434021161,(1) Libyan. Issued in Tripoli. (2) Libyan. Issued under name Ibrahim Ali Tantoush. Expired on 21 February 2014 (3) South African. Related to alias Abdel Ilah Sabri. Confiscated.,6910275240086,South African. Related to alias Abdel Ilah Sabri. Confiscated.,,,,,,,Tripoli,,Libya,"(UK Sanctions List Ref):AQD0197 (UN Ref):QDi.057 Associated with Afghan Support Committee (ASC) (QDe.069), Revival of Islamic Heritage Society (RIHS)(QDe.070) and the Libyan Islamic Fighting Group (LIFG) (QDe.011). Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446790. Tripoli as at Feb. 2014",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6927 +RAHMAN,Abdul,,,,,,,,,03/03/1990,"Zamboanga City, Zamboanga del Sur",Philippines,Philippines,(1) XX3966391 (2) EC3524065,(1) Philippines. Issued on 25 February 2015 by the Department of Foreign Affairs of Philippines. Expiration date 24 February 2020 (2) Philippines,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0263 (UN Ref):QDi.418 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: height: 156cm; weight: 60 kg (as at Sep. 2016); eye colour: black; hair colour: black; build: medium; high cheekbones. Speaks Tagalog, English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244385. Philippines (previous address)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13710 +RAHMAN,Abdul,,,,,,,,,03/03/1990,"Zamboanga City, Zamboanga del Sur",Philippines,Philippines,(1) XX3966391 (2) EC3524065,(1) Philippines. Issued on 25 February 2015 by the Department of Foreign Affairs of Philippines. Expiration date 24 February 2020 (2) Philippines,,,,96 IlangIlang,,Sarmiento Subdivision,Panabo,Davao City,Eastern Mindanao,,Philippines,"(UK Sanctions List Ref):AQD0263 (UN Ref):QDi.418 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: height: 156cm; weight: 60 kg (as at Sep. 2016); eye colour: black; hair colour: black; build: medium; high cheekbones. Speaks Tagalog, English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244385. Philippines (previous address)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13710 +RAHMAN,Abdul,,,,,,,,,03/03/1990,"Zamboanga City, Zamboanga del Sur",Philippines,Philippines,(1) XX3966391 (2) EC3524065,(1) Philippines. Issued on 25 February 2015 by the Department of Foreign Affairs of Philippines. Expiration date 24 February 2020 (2) Philippines,,,,Brgy Recodo,,,,Zamboanga City,Western Mindanao,,Philippines,"(UK Sanctions List Ref):AQD0263 (UN Ref):QDi.418 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: height: 156cm; weight: 60 kg (as at Sep. 2016); eye colour: black; hair colour: black; build: medium; high cheekbones. Speaks Tagalog, English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244385. Philippines (previous address)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13710 +RAHMAN,Abtol,,,,,,,,,03/03/1990,"Zamboanga City, Zamboanga del Sur",Philippines,Philippines,(1) XX3966391 (2) EC3524065,(1) Philippines. Issued on 25 February 2015 by the Department of Foreign Affairs of Philippines. Expiration date 24 February 2020 (2) Philippines,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0263 (UN Ref):QDi.418 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: height: 156cm; weight: 60 kg (as at Sep. 2016); eye colour: black; hair colour: black; build: medium; high cheekbones. Speaks Tagalog, English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244385. Philippines (previous address)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13710 +RAHMAN,Abtol,,,,,,,,,03/03/1990,"Zamboanga City, Zamboanga del Sur",Philippines,Philippines,(1) XX3966391 (2) EC3524065,(1) Philippines. Issued on 25 February 2015 by the Department of Foreign Affairs of Philippines. Expiration date 24 February 2020 (2) Philippines,,,,96 IlangIlang,,Sarmiento Subdivision,Panabo,Davao City,Eastern Mindanao,,Philippines,"(UK Sanctions List Ref):AQD0263 (UN Ref):QDi.418 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: height: 156cm; weight: 60 kg (as at Sep. 2016); eye colour: black; hair colour: black; build: medium; high cheekbones. Speaks Tagalog, English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244385. Philippines (previous address)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13710 +RAHMAN,Abtol,,,,,,,,,03/03/1990,"Zamboanga City, Zamboanga del Sur",Philippines,Philippines,(1) XX3966391 (2) EC3524065,(1) Philippines. Issued on 25 February 2015 by the Department of Foreign Affairs of Philippines. Expiration date 24 February 2020 (2) Philippines,,,,Brgy Recodo,,,,Zamboanga City,Western Mindanao,,Philippines,"(UK Sanctions List Ref):AQD0263 (UN Ref):QDi.418 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: height: 156cm; weight: 60 kg (as at Sep. 2016); eye colour: black; hair colour: black; build: medium; high cheekbones. Speaks Tagalog, English, Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244385. Philippines (previous address)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13710 +RAHMAN,Aman,Abdul,,,,,,,,05/01/1972,Sumedang,Indonesia,Indonesia,,,,,,Pasir Putih Prison,,,,,Nusa Kambangan Island,,Indonesia,"(UK Sanctions List Ref):AQD0280 (UN Ref):QDi.407 De facto leader for all Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), supporters in Indonesia, despite his incarceration in Indonesia since December 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116589",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13518 +RAHMAN,Fazil,,,,,,,,,05/01/1974,Kabul,Afghanistan,Afghanistan,R512768,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHMAN,Fazil,,,,,,,,,05/01/1974,Kabul,Afghanistan,Afghanistan,R512768,,,,,"A2, City Computer Plaza",Shar-e-Now,,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHMAN,Fazil,,,,,,,,,05/01/1974,Kabul,Afghanistan,Afghanistan,R512768,,,,,Microrayan 3rd,Apt. 45,block 21,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHMAN,Fazil,,,,,,,,,00/00/1977,Kabul,Afghanistan,Afghanistan,R512768,,,,,Microrayan 3rd,Apt. 45,block 21,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHMAN,Fazil,,,,,,,,,00/00/1977,Kabul,Afghanistan,Afghanistan,R512768,,,,,"A2, City Computer Plaza",Shar-e-Now,,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHMAN,Fazil,,,,,,,,,00/00/1977,Kabul,Afghanistan,Afghanistan,R512768,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHMAN,Fazil,,,,,,,,,00/00/1975,Kabul,Afghanistan,Afghanistan,R512768,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHMAN,Fazil,,,,,,,,,00/00/1975,Kabul,Afghanistan,Afghanistan,R512768,,,,,"A2, City Computer Plaza",Shar-e-Now,,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHMAN,Fazil,,,,,,,,,00/00/1975,Kabul,Afghanistan,Afghanistan,R512768,,,,,Microrayan 3rd,Apt. 45,block 21,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHMAN,Fazil,,,,,,,,,24/01/1973,Kabul,Afghanistan,Afghanistan,R512768,,,,,Microrayan 3rd,Apt. 45,block 21,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHMAN,Fazil,,,,,,,,,24/01/1973,Kabul,Afghanistan,Afghanistan,R512768,,,,,"A2, City Computer Plaza",Shar-e-Now,,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHMAN,Fazil,,,,,,,,,24/01/1973,Kabul,Afghanistan,Afghanistan,R512768,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0173 (UN Ref):QDi.303 Was a financial facilitator for the Islamic Movement of Uzbekistan (QDe.010) and Al-Qaida (QDe.004). Was associated with Tohir Abdulkhalilovich Yuldashev. As of late 2010, in custody of . Father’s name is Fazal Ahmad. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681481. Address country, Pakistan border region (previous address)",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,14/03/2012,06/03/2012,12/01/2022,12555 +RAHMAN,Matiur,,,,,,,,,00/00/1977,"Chak number 36/DNB, Rajkan, Madina Colony, Bahawalpur District, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0224 (UN Ref):QDi.296 Physical description: 5 feet 2 inches; 157,4 cm. Name of father: Ali Muhammad. Mati ur-Rehman is the chief operational commander of Lashkar i Jhangvi (LJ) (QDe.096). Associated with Harakat-ul Jihad Islami (QDe.130). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4674457",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,02/09/2011,22/08/2011,31/12/2020,12038 +RAHMAN,Oman,,,,,,,,,05/01/1972,Sumedang,Indonesia,Indonesia,,,,,,Pasir Putih Prison,,,,,Nusa Kambangan Island,,Indonesia,"(UK Sanctions List Ref):AQD0280 (UN Ref):QDi.407 De facto leader for all Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), supporters in Indonesia, despite his incarceration in Indonesia since December 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116589",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13518 +RAHMANI,MOHAMMAD HASAN,,,,,Mullah,محمد حسن رحمانی,,,00/00/1963,"(1) Deh Rawud District, Uruzgan Province (2) Chora District, Uruzgan Province (3) Charchino District, Uruzgan Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Governor of Kandahar Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0074 (UN Ref):TAi.096 Has a prosthetic right leg. Member of Taliban Supreme Council as of mid-2013, acted as deputy of Mullah Mohammed Omar (TAi.004) in Mar. 2010. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. Deceased as of 9 February 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/ en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,16/02/2022,7411 +RAHMAT,Kari,,,,,,,,,00/00/1981,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Batan village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +RAHMAT,Kari,,,,,,,,,00/00/1981,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Kamkai Village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +RAHMAT,Kari,,,,,,,,,00/00/1981,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Surkhel village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +RAHMAT,Kari,,,,,,,,,00/00/1982,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Surkhel village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +RAHMAT,Kari,,,,,,,,,00/00/1982,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Kamkai Village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +RAHMAT,Kari,,,,,,,,,00/00/1982,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Batan village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +RAHMAT,Qari,,,,,,,,,00/00/1981,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Batan village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +RAHMAT,Qari,,,,,,,,,00/00/1981,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Kamkai Village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +RAHMAT,Qari,,,,,,,,,00/00/1981,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Surkhel village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +RAHMAT,Qari,,,,,,,,,00/00/1982,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Surkhel village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +RAHMAT,Qari,,,,,,,,,00/00/1982,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Kamkai Village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +RAHMAT,Qari,,,,,,,,,00/00/1982,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Batan village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +RAHMUN,Muhammad,Khalid,,,,,,,,01/04/1957,Idleb,Syria,Syria,,,,,Minister of Interior,,,,,,,,,"(UK Sanctions List Ref):SYR0346 Relatives/business associates or partners/links to listed individuals: Bashar Asad (UK Statement of Reasons):Minister of Interior. Appointed in November 2018. As Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,04/03/2019,31/12/2020,14/02/2022,13771 +RAINBOW CHASER,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0100 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK merchant vessel M/V SAM JONG 2 was involved in ship-to-ship transfer operations of oil in late January 2018. Listed as asset of Korea Samjong Shipping (OFSI ID: 13635, UN Reference Number: UN Ref KPe.064) (IMO number):7408873 (Current owners):Korea Samjong Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Oil tanker (Tonnage of ship):1676 (Length of ship):80 (Year built):1975",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13651 +RAJABPOUR,Hossein,Sereng,,,,,,,,,,Iran,Iran,,,,,"Basij commander, Bijar city, Kurdistan",,,,,,,,,"(UK Sanctions List Ref):IHR0109 (UK Statement of Reasons):Hossein RAJABPOUR is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life in Iran through his role as Basij commander in Bijar city, Kurdistan and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15629 +RAJABZADEH,Azizollah,,,,,,,,,,,,,,,,,Advisor to the Mayor of Tehran. Former Head of Tehran Disaster Mitigation Organisation (TDMO). Former Head of Tehran Police,,,,,,,,,"(UK Sanctions List Ref):IHR0023 (UK Statement of Reasons):Former Head of Tehran Disaster Mitigation Organisation (TDMO). As Head of Tehran Police until January 2010, he was responsible for violent police attacks on protesters and students. As Commander of the Law Enforcement Forces in the Greater Tehran, Azizollah Rajabzadeh was the highest ranking accused in the case of abuses in Kahrizak Detention Centre in December 2009. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11786 +RAJAH SOLAIMAN ISLAMIC MOVEMENT,,,,,,,,,,,,,,,,,,,Barangay Mal-Ong,,,,Anda,Pangasinan Province,,Philippines,"(UK Sanctions List Ref):AQD0073 (UN Ref):QDe.128 Founded and headed by Hilarion Del Rosario Santos III (QDi.244). Associated with the Abu Sayyaf Group (QDe.001), Jemaah Islamiyah (QDe.092) and Khadafi Abubakar Janjalani (deceased). Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10669 +RAJAH SOLAIMAN ISLAMIC MOVEMENT,,,,,,,,,,,,,,,,,,,"Number 50, Purdue Street",,,,Cubao,Quezon City,,Philippines,"(UK Sanctions List Ref):AQD0073 (UN Ref):QDe.128 Founded and headed by Hilarion Del Rosario Santos III (QDi.244). Associated with the Abu Sayyaf Group (QDe.001), Jemaah Islamiyah (QDe.092) and Khadafi Abubakar Janjalani (deceased). Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10669 +RAJAH SOLAIMAN ISLAMIC MOVEMENT,,,,,,,,,,,,,,,,,,,Sitio Dueg,Barangay Maasin,,,San Clemente,Tarlac Province,,Philippines,"(UK Sanctions List Ref):AQD0073 (UN Ref):QDe.128 Founded and headed by Hilarion Del Rosario Santos III (QDi.244). Associated with the Abu Sayyaf Group (QDe.001), Jemaah Islamiyah (QDe.092) and Khadafi Abubakar Janjalani (deceased). Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10669 +RAJAH SOLAIMAN MOVEMENT,,,,,,,,,,,,,,,,,,,Barangay Mal-Ong,,,,Anda,Pangasinan Province,,Philippines,"(UK Sanctions List Ref):AQD0073 (UN Ref):QDe.128 Founded and headed by Hilarion Del Rosario Santos III (QDi.244). Associated with the Abu Sayyaf Group (QDe.001), Jemaah Islamiyah (QDe.092) and Khadafi Abubakar Janjalani (deceased). Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10669 +RAJAH SOLAIMAN MOVEMENT,,,,,,,,,,,,,,,,,,,"Number 50, Purdue Street",,,,Cubao,Quezon City,,Philippines,"(UK Sanctions List Ref):AQD0073 (UN Ref):QDe.128 Founded and headed by Hilarion Del Rosario Santos III (QDi.244). Associated with the Abu Sayyaf Group (QDe.001), Jemaah Islamiyah (QDe.092) and Khadafi Abubakar Janjalani (deceased). Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10669 +RAJAH SOLAIMAN MOVEMENT,,,,,,,,,,,,,,,,,,,Sitio Dueg,Barangay Maasin,,,San Clemente,Tarlac Province,,Philippines,"(UK Sanctions List Ref):AQD0073 (UN Ref):QDe.128 Founded and headed by Hilarion Del Rosario Santos III (QDi.244). Associated with the Abu Sayyaf Group (QDe.001), Jemaah Islamiyah (QDe.092) and Khadafi Abubakar Janjalani (deceased). Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10669 +RAJAH SOLAIMAN REVOLUTIONARY MOVEMENT,,,,,,,,,,,,,,,,,,,Barangay Mal-Ong,,,,Anda,Pangasinan Province,,Philippines,"(UK Sanctions List Ref):AQD0073 (UN Ref):QDe.128 Founded and headed by Hilarion Del Rosario Santos III (QDi.244). Associated with the Abu Sayyaf Group (QDe.001), Jemaah Islamiyah (QDe.092) and Khadafi Abubakar Janjalani (deceased). Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10669 +RAJAH SOLAIMAN REVOLUTIONARY MOVEMENT,,,,,,,,,,,,,,,,,,,"Number 50, Purdue Street",,,,Cubao,Quezon City,,Philippines,"(UK Sanctions List Ref):AQD0073 (UN Ref):QDe.128 Founded and headed by Hilarion Del Rosario Santos III (QDi.244). Associated with the Abu Sayyaf Group (QDe.001), Jemaah Islamiyah (QDe.092) and Khadafi Abubakar Janjalani (deceased). Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10669 +RAJAH SOLAIMAN REVOLUTIONARY MOVEMENT,,,,,,,,,,,,,,,,,,,Sitio Dueg,Barangay Maasin,,,San Clemente,Tarlac Province,,Philippines,"(UK Sanctions List Ref):AQD0073 (UN Ref):QDe.128 Founded and headed by Hilarion Del Rosario Santos III (QDi.244). Associated with the Abu Sayyaf Group (QDe.001), Jemaah Islamiyah (QDe.092) and Khadafi Abubakar Janjalani (deceased). Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10669 +RAKA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0104 (UK Statement of Reasons):A department of UN designated Kalaye Electric Company (KEC). Established in late 2006, it was responsible for the construction of the Fuel Enrichment Plant at Fordow (Qom).",Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11216 +RAKHMANAVA,Marina,YUREUNA,,,,,Марына Юр'еўна РАХМАНАВА,,,26/09/1970,,,,,,,,Member of the Central Electoral Commision,,,,,,,,,"(UK Sanctions List Ref):BEL0042 (UK Statement of Reasons):Marina Rachmanava is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,31/12/2020,13965 +RAKHMANAVA,Marina,Yurievna,,,,,,,,26/09/1970,,,,,,,,Member of the Central Electoral Commision,,,,,,,,,"(UK Sanctions List Ref):BEL0042 (UK Statement of Reasons):Marina Rachmanava is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13965 +RAKHMANOVA,Marina,YUREUNA,,,,,,,,26/09/1970,,,,,,,,Member of the Central Electoral Commision,,,,,,,,,"(UK Sanctions List Ref):BEL0042 (UK Statement of Reasons):Marina Rachmanava is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13965 +RAKHMANOVA,Marina,Yurievna,,,,,,,,26/09/1970,,,,,,,,Member of the Central Electoral Commision,,,,,,,,,"(UK Sanctions List Ref):BEL0042 (UK Statement of Reasons):Marina Rachmanava is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13965 +RAKHMUKOVA,Elena,Ivanovna,,,,,РАХМУКОВА Елена Ивановна,Cyrillic,Russian,25/09/1956,Antratsyt,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1292 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15244 +RAKITIN,Aleksandr,Vasilievich,,,,,Александр Васильевич Ракитин,,,17/05/1958,Ostrov,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0876 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14827 +RAMADAN,Abdoulaye,Issene,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Nana-Grebizi,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +RAMADAN,Abdoulaye,Issene,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,KM5,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +RAMADAN,Abdoulaye,Issene,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +RAMADAN,Abdoulaye,Issene,,,,,,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndjari,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +RAMADAN,Abdoulaye,Issene,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndjari,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +RAMADAN,Abdoulaye,Issene,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +RAMADAN,Abdoulaye,Issene,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,KM5,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +RAMADAN,Abdoulaye,Issene,,,,,,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Nana-Grebizi,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +RAMADAN,Ramadan,Mahmoud,,,,,رمضان محمود رمضان,,,,,,,,,,,Commander 9th Armoured Division,,,,,,,,,(UK Sanctions List Ref):SYR0203 (UK Statement of Reasons):Ordered troops to shoot protestors in Baniyas and Deraa. (Gender):Male,Individual,Primary name,,Syria,24/01/2012,31/12/2020,13/05/2022,12463 +RAMADANE,Abdoulaye,Issene,,,,,Abdoulaye Ramadane Issène,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Nana-Grebizi,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +RAMADANE,Abdoulaye,Issene,,,,,Abdoulaye Ramadane Issène,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,KM5,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +RAMADANE,Abdoulaye,Issene,,,,,Abdoulaye Ramadane Issène,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +RAMADANE,Abdoulaye,Issene,,,,,Abdoulaye Ramadane Issène,,,00/00/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndjari,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +RAMADANE,Abdoulaye,Issene,,,,,Abdoulaye Ramadane Issène,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndjari,Ndjamena,,Chad,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +RAMADANE,Abdoulaye,Issene,,,,,Abdoulaye Ramadane Issène,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,Ndélé,Bamingui-Bangoran,,,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +RAMADANE,Abdoulaye,Issene,,,,,Abdoulaye Ramadane Issène,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,KM5,Bangui,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +RAMADANE,Abdoulaye,Issene,,,,,Abdoulaye Ramadane Issène,,,01/01/1967,"(1) Ndele, Bamingui-Bangoran (2) Haraze Mangueigne",(1) Central African Republic (2) Chad,(1) Central African Republic. (2) Chad,(1) D00000897 (2) D00004262,"(1) CAR diplomatic passport no., issued on 5 Apr. 2013 (valid until 4 April 2018) (2) CAR diplomatic passport no., issued on 11 Mar. 2014 (expires on 10 March 2019)",103-00653129-22,"Chad national identity card no., issued on 21 Apr. 2009 (expires on 21 April 2019)",(1) President of the Conseil National de Defense et de Securite (CNDS) (2) Military leader of the Front Populaire pour la Renaissance de la Centrafrique,,,,,,Nana-Grebizi,,Central African Republic,"(UK Sanctions List Ref):CAF0013 (UN Ref):CFi.012 Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic’s former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighborhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only. Father’s name is Abdoulaye. Mother’s name is Absita Moussa. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Central African Republic,18/05/2017,17/05/2017,31/12/2020,13458 +RAMAK,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0325 Ultimate beneficial owner: Rami Makhlouf (UK Statement of Reasons):Construction company associated with and partly owned by Rami Makhlouf, and therefore supporting the regime. (Phone number):+963-11-6858111. +963-933-240231",Entity,AKA,,Syria,26/09/2011,31/12/2020,31/12/2020,12069 +RAMAK,,,,,,,,,,,,,,,,,,,Dara'a Highway,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0325 Ultimate beneficial owner: Rami Makhlouf (UK Statement of Reasons):Construction company associated with and partly owned by Rami Makhlouf, and therefore supporting the regime. (Phone number):+963-11-6858111. +963-933-240231",Entity,AKA,,Syria,26/09/2011,31/12/2020,31/12/2020,12069 +RAMAK CONSTRUCTION/S CO.,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0325 Ultimate beneficial owner: Rami Makhlouf (UK Statement of Reasons):Construction company associated with and partly owned by Rami Makhlouf, and therefore supporting the regime. (Phone number):+963-11-6858111. +963-933-240231",Entity,AKA,,Syria,26/09/2011,31/12/2020,31/12/2020,12069 +RAMAK CONSTRUCTION/S CO.,,,,,,,,,,,,,,,,,,,Dara'a Highway,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0325 Ultimate beneficial owner: Rami Makhlouf (UK Statement of Reasons):Construction company associated with and partly owned by Rami Makhlouf, and therefore supporting the regime. (Phone number):+963-11-6858111. +963-933-240231",Entity,AKA,,Syria,26/09/2011,31/12/2020,31/12/2020,12069 +RAMAK CONSTRUCTIONS COMPANY,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0325 Ultimate beneficial owner: Rami Makhlouf (UK Statement of Reasons):Construction company associated with and partly owned by Rami Makhlouf, and therefore supporting the regime. (Phone number):+963-11-6858111. +963-933-240231",Entity,Primary name,,Syria,26/09/2011,31/12/2020,31/12/2020,12069 +RAMAK CONSTRUCTIONS COMPANY,,,,,,,,,,,,,,,,,,,Dara'a Highway,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0325 Ultimate beneficial owner: Rami Makhlouf (UK Statement of Reasons):Construction company associated with and partly owned by Rami Makhlouf, and therefore supporting the regime. (Phone number):+963-11-6858111. +963-933-240231",Entity,Primary name,,Syria,26/09/2011,31/12/2020,31/12/2020,12069 +RAMAK CONTRACTING & TRADING,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0325 Ultimate beneficial owner: Rami Makhlouf (UK Statement of Reasons):Construction company associated with and partly owned by Rami Makhlouf, and therefore supporting the regime. (Phone number):+963-11-6858111. +963-933-240231",Entity,AKA,,Syria,26/09/2011,31/12/2020,31/12/2020,12069 +RAMAK CONTRACTING & TRADING,,,,,,,,,,,,,,,,,,,Dara'a Highway,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0325 Ultimate beneficial owner: Rami Makhlouf (UK Statement of Reasons):Construction company associated with and partly owned by Rami Makhlouf, and therefore supporting the regime. (Phone number):+963-11-6858111. +963-933-240231",Entity,AKA,,Syria,26/09/2011,31/12/2020,31/12/2020,12069 +RAMAK LTD.,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,,"(UK Sanctions List Ref):SYR0325 Ultimate beneficial owner: Rami Makhlouf (UK Statement of Reasons):Construction company associated with and partly owned by Rami Makhlouf, and therefore supporting the regime. (Phone number):+963-11-6858111. +963-933-240231",Entity,AKA,,Syria,26/09/2011,31/12/2020,31/12/2020,12069 +RAMAK LTD.,,,,,,,,,,,,,,,,,,,Dara'a Highway,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0325 Ultimate beneficial owner: Rami Makhlouf (UK Statement of Reasons):Construction company associated with and partly owned by Rami Makhlouf, and therefore supporting the regime. (Phone number):+963-11-6858111. +963-933-240231",Entity,AKA,,Syria,26/09/2011,31/12/2020,31/12/2020,12069 +RAMBO,,,,,,Colonel,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,,The Hague,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Low quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +RAMBO,,,,,,Colonel,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Bimbo,Ombella-Mpoko province,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Low quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +RAMBO,,,,,,Colonel,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Mbaiki,Lobaye Province,,,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Low quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +RAMBOT,,,,,,Colonel,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,,The Hague,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Low quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +RAMBOT,,,,,,Colonel,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Bimbo,Ombella-Mpoko province,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Low quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +RAMBOT,,,,,,Colonel,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Mbaiki,Lobaye Province,,,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Low quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +RAMEZANI,Gholamhosein,,,,,,,,,,,,,,,,,(1) Chief of the Intelligence of the Ministry of Defence since 2011 (2) Former Commander of Intelligence of the Pasdaran Nov 2009 to Mar 2011 (3) Former Deputy Commander of Intelligence of the Pasdaran Mar 2008 to Nov 2009) (4) Former Head of Protection and Intelligence of the Pasdaran Apr 2006 to Mar 2008,,,,,,,,,"(UK Sanctions List Ref):IHR0030 (UK Statement of Reasons):Since 2011 Chief of the Intelligence of the Ministry of Defence. Ramezani has held a number of senior roles in Military Intelligence and security for IRGC including Commander and Deputy Commander of Intelligence of IRGC and Head of Protection and Intelligence. Involved in the suppression of freedom of expression, including by being associated with those responsible for the arrests of bloggers/journalists in 2004, and reported to have had a role in the suppression of the post-election protests in 2009. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12659 +RAMIN,Mohammad-Ali,,,,,,,,,00/00/1954,Dezful,Iran,,,,,,Secretary-General of the World Holocaust Foundation. Former Vice Minister of Culture and Islamic Guidance in charge of the press (Nov 2009 – Dec 2010),,,,,,,,,"(UK Sanctions List Ref):IHR0062 Vice-Minister in charge of the Press up to December 2013. Former Vice Minister of Culture and Islamic Guidance in charge of the press (Nov 2009 – Dec 2010) (UK Statement of Reasons):Secretary-general of the World Holocaust Foundation, established at the International Conference to Review the Global Vision of the Holocaust in 2006, which Ramin was responsible for organising on behalf of the Iranian Government. Main figure responsible for censorship as Vice-Minister in charge of the Press up to December 2013, being directly responsible for the closure of many reforming newspapers (Etemad, Etemad-e Melli, Shargh, etc.), closure of the Independent Press Syndicate and the intimidation or arrest of journalists. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,31/12/2020,12652 +RAMIN,Mohammad-Ali,,,,,,,,,04/02/1954,Dezful,Iran,,,,,,Secretary-General of the World Holocaust Foundation. Former Vice Minister of Culture and Islamic Guidance in charge of the press (Nov 2009 – Dec 2010),,,,,,,,,"(UK Sanctions List Ref):IHR0062 Vice-Minister in charge of the Press up to December 2013. Former Vice Minister of Culture and Islamic Guidance in charge of the press (Nov 2009 – Dec 2010) (UK Statement of Reasons):Secretary-general of the World Holocaust Foundation, established at the International Conference to Review the Global Vision of the Holocaust in 2006, which Ramin was responsible for organising on behalf of the Iranian Government. Main figure responsible for censorship as Vice-Minister in charge of the Press up to December 2013, being directly responsible for the closure of many reforming newspapers (Etemad, Etemad-e Melli, Shargh, etc.), closure of the Independent Press Syndicate and the intimidation or arrest of journalists. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,31/12/2020,12652 +RAMOS VANEGAS,Alba,Luz,,,,President,,,,03/06/1949,Léon,Nicaragua,Nicaragua,A0009864,,,,Magistrate. President of the Supreme Court of Justice of Nicaragua,,,,,,,,Nicaragua,"(UK Sanctions List Ref):NIC0011 (UK Statement of Reasons):Alba Luz Ramos Vanegas is the President of Nicaragua’s Supreme Court of Justice, and sits on the National Council for Judicial Administration and Career. There are reasonable grounds to suspect that in her role as President of the Supreme Court of Justice she has undermined the independence of the judiciary, denying accused parties in the courts a free and fair trial, and permitting and actively encouraging cruel, degrading and inhumane treatment of accused parties. She is responsible for undermining democracy and the rule of law, repression of civil society and the democratic opposition and for human rights violations. (Gender):Female",Individual,Primary name,,Nicaragua,15/11/2021,15/11/2021,15/11/2021,14149 +RANLEY,James,Koang,Chol,,,,,,,00/00/1961,,,South Sudan,R00012098,South Sudan,,,Commander of the Sudan People’s Liberation Army in Opposition (SPLAIO) Special Division,,,,,,,,,"(UK Sanctions List Ref):SSU0003 (UN Ref):SSi.003 Appointed commander of the Sudan People’s Liberation Army in Opposition (SPLA-IO) Special Division in December 2014. His forces have been engaged in attacks against civilians. In February 2014, forces under his command attacked United Nations camps, hospitals, churches, and schools, engaging in widespread rape, torture, and the destruction of property, in an attempt to flush out civilians, soldiers, and policemen allied with the government. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879069",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13265 +RANLEY,Koang,Chuol,,,,,,,,00/00/1961,,,South Sudan,R00012098,South Sudan,,,Commander of the Sudan People’s Liberation Army in Opposition (SPLAIO) Special Division,,,,,,,,,"(UK Sanctions List Ref):SSU0003 (UN Ref):SSi.003 Appointed commander of the Sudan People’s Liberation Army in Opposition (SPLA-IO) Special Division in December 2014. His forces have been engaged in attacks against civilians. In February 2014, forces under his command attacked United Nations camps, hospitals, churches, and schools, engaging in widespread rape, torture, and the destruction of property, in an attempt to flush out civilians, soldiers, and policemen allied with the government. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879069",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13265 +RAPOPORT,Boris,Yakovlevich,,,,,Борис Яковлевич Рапопорт,,,14/08/1967,St Petersburg,Russia,Russia,,,,,Deputy Head of the Presidential Directorate for Supporting Activities of the State Council of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS1573 (UK Statement of Reasons):Boris Yakovlevich RAPOPORT is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he is or has engaged in and provided support for policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15517 +RAPOTA,Grigory,Alexeyevich,,,,,Григорий Алексеевич РАПОТА,,,05/02/1944,Moscow,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0905 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14856 +RASH,,,,,,,,,,19/07/1981,Cebu City,Philippines,Philippines,,,,,,,,,,Atimonana,Quezon Province,,Philippines,(UK Sanctions List Ref):AQD0161 (UN Ref):QDi.242 Member of the Rajah Solaiman Movement (QDe.128). Father's name is Amorsolo Jarabata Pareja. Mother's name is Leonila Cambaya Rosalejos. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10662 +RASHEVSKY,Vladimir,Valerievich,,,,,,,,29/09/1973,Moscow,Russia,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1035 (UK Statement of Reasons):Vladimir Valerievich RASHEVSKY is or has been involved in obtaining a benefit from or supporting the Government of Russia, in that between September 2020 and 15 March 2022 he was Chief Executive Officer of EuroChem, and between 2005 and 2020 Chief Executive Officer of SUEK, and therefore carried on business in sectors of strategic significance to the Government of Russia, namely the Russian chemicals sector (EuroChem) and energy sector (SUEK).",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14972 +RASHID,Humam,Abd-al-Khaliq,,,,,,,,00/00/1945,Ar-Ramadi,Iraq,Iraq,0018061/104,Issued on 12 Sept 1993,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0104 (UN Ref):IQi.043,Individual,AKA,Good quality,Iraq,02/07/2003,27/06/2003,31/12/2020,7574 +RASHIDI AGHDAM,Ali,Ashraf,,,,,,,,,,,,,,,,(1) Deputy Director General for Health and Rehabilitation of the General Directorate of the Prisons of Tehran (2) Former Head of Evin Prison,,,,,,,,,"(UK Sanctions List Ref):IHR0009 (UK Statement of Reasons):Former Head of Evin Prison, appointed in mid-2012. During his tenure, conditions in the prison deteriorated and reports referenced intensified ill-treatment of prisoners. In October 2012, nine female prisoners went on hunger strike in protest of the violation of their rights and violent treatment by prison guards. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/03/2013,31/12/2020,16/02/2022,12849 +RASHKIN,Valery,Fedorovich,,,,,Валерий Фëдoрoвич Рашкин,,,14/03/1955,"Zhilino, Kaliningrad region",Russia,Russia,,,,,First Deputy Chairman of the State Duma Committee on Ethnicity Issues,,,,,,,,,"(UK Sanctions List Ref):RUS0060 (UK Statement of Reasons):Founder of the civil movement ‘Krassnaya Moskva- Red Moscow -Patriotic Front Aid’ which organised public demonstrations supporting separatists, thereby supporting policies which undermine the territorial integrity, sovereignty and independence of Ukraine. As a Member of the State Duma , on 20 March 2014 he voted in favour of the draft Federal Constitutional Law ‘on the acceptance into the Russian Federation of the Republic of Crimea and the formation within the Russian Federation of new federal subjects- the republic of Crimea and the City of Federal Status Sevastopol’. (Gender):Male",Individual,Primary name,,Russia,16/02/2015,31/12/2020,31/12/2020,13217 +RASHNIKOV,Viktor,Filippovich,,,,,РАШНИКОВ Виктор Филиппович,Cyrillic,Russian,13/10/1948,Moscow,Russia,Russia,,,,,Chairman of the Board of Directors at Magnitogorsk Iron & Steel Works (MMK),,,,,,Magnitogorsk,,,"(UK Sanctions List Ref):RUS1028 (UK Statement of Reasons):As Chairman of the Board of Directors, and a majority shareholder, there are reasonable grounds to suspect that Viktor Rashnikov owns or controls Magnitogorsk Iron & Steel Works (MMK). MMK is carrying on business in sectors of strategic significance to the Government of Russia – the extractive and transport sectors. Viktor Rashnikov is therefore involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14965 +RASSALAI,Viachaslau,,,,,,,,,17/10/1981,,,Belarus,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1069 (UK Statement of Reasons):Viachaslau RASSALAI, is an involved person under the Russia (Sanctions) (EU Exit) 2019. As the Deputy Minister of State Authority for Military Industry of the Republic of Belarus (SAMI) he has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine.",Individual,Primary name,,Russia,24/03/2022,24/03/2022,12/07/2022,15012 +RASSALAI,Vyacheslav,,,,,,,,,17/10/1981,,,Belarus,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1069 (UK Statement of Reasons):Viachaslau RASSALAI, is an involved person under the Russia (Sanctions) (EU Exit) 2019. As the Deputy Minister of State Authority for Military Industry of the Republic of Belarus (SAMI) he has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine.",Individual,Primary name variation,,Russia,24/03/2022,24/03/2022,12/07/2022,15012 +RATIN,Muhammad,,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +RATIN,Muhammad,,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,96-06-06 Flat Sri Kota,Bandar Tun Razak,,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,56100,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +RATIN,Muhammad,,,,,,,,,03/06/1966,Negri Sembilan,Malaysia,(1) Malaysia (2) Indonesia,A31142734,Malaysia number. Issued on 6 Nov. 2013. Issued by the Immigration Department of Malaysia. Expiration date 6 Nov. 2015.,660603-05-5267,Malaysia National Identification Card. Issued by National Registration Department of Malaysia. Issued to Mohd Rafi bin Udin,,B-3B-19 Glenview Villa,Jalan 49 Off Jalan Kuari,Taman Pinggiran Cheras,,Kuala Lumpur,Wilayah Persekutuan Kuala Lumpur,,Malaysia,"(UK Sanctions List Ref):AQD0236 (UN Ref):QDi.417 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: eye colour: brown; hair colour: brown; complexion: dark. Speaks Malay, English, limited Arabic. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244376. Address country Malaysia (as at 30 January 2014), Malaysia (as at 6 April 2007), Syria (location since 2014).",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13709 +RATOUCHNIAK,Victor,Ivanovych,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATOUCHNIAK,Viktor,Ivanovic,,,,,Viktor Ivanovič Ratouchniak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATOUCHNIAK,Viktor,Ivanovic,,,,,Vìktor Ìvanovič Ratouchniak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATOUCHNIAK,Viktor,Ivanovich,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATOUCHNIAK,Viktor,Ivanovyc,,,,,Viktor Ivanovyč Ratouchniak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATOUCHNIAK,Viktor,Ivanovych,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATOUCHNIAK,Viktor,Ivanovych,,,,,Viktor Ivanovȳch Ratouchniak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATOUCHNIAK,Viktor,Ivanovytch,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATOUCHNIAK,Wiktor,Iwanowytsch,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUANAK,Viktor,Ivanovyc,,,,,Viktor Ivanovyč Ratušnâk,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAC,Victor,Ivanovych,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAC,Viktor,Ivanovic,,,,,Viktor Ivanovič Ratushniac,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAC,Viktor,Ivanovic,,,,,Vìktor Ìvanovič Ratushniac,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAC,Viktor,Ivanovich,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAC,Viktor,Ivanovyc,,,,,Viktor Ivanovyč Ratushniac,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAC,Viktor,Ivanovych,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAC,Viktor,Ivanovych,,,,,Viktor Ivanovȳch Ratushniac,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAC,Viktor,Ivanovytch,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAC,Wiktor,Iwanowytsch,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAK,Victor,Ivanovych,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAK,Viktor,Ivanovic,,,,,Viktor Ivanovič RATUSHNIAK,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAK,Viktor,Ivanovic,,,,,Vìktor Ìvanovič RATUSHNIAK,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAK,Viktor,Ivanovich,,,,,Ратушняк Виктор Иванович,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAK,Viktor,Ivanovyc,,,,,Viktor Ivanovyč RATUSHNIAK,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAK,Viktor,Ivanovych,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAK,Viktor,Ivanovych,,,,,Viktor Ivanovȳch RATUSHNIAK,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAK,Viktor,Ivanovytch,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNIAK,Wiktor,Iwanowytsch,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNJAK,Victor,Ivanovych,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNJAK,Viktor,Ivanovic,,,,,Viktor Ivanovič Ratushnjak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNJAK,Viktor,Ivanovic,,,,,Vìktor Ìvanovič Ratushnjak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNJAK,Viktor,Ivanovich,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNJAK,Viktor,Ivanovyc,,,,,Viktor Ivanovyč Ratushnjak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNJAK,Viktor,Ivanovych,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNJAK,Viktor,Ivanovych,,,,,Viktor Ivanovȳch Ratushnjak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNJAK,Viktor,Ivanovytch,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNJAK,Wiktor,Iwanowytsch,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNYAK,Victor,Ivanovych,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNYAK,Viktor,Ivanovic,,,,,Viktor Ivanovič Ratushnyak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNYAK,Viktor,Ivanovic,,,,,Vìktor Ìvanovič Ratushnyak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNYAK,Viktor,Ivanovich,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNYAK,Viktor,Ivanovyc,,,,,Viktor Ivanovyč Ratushnyak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNYAK,Viktor,Ivanovych,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNYAK,Viktor,Ivanovych,,,,,Viktor Ivanovȳch Ratushnyak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNYAK,Viktor,Ivanovytch,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSHNYAK,Wiktor,Iwanowytsch,,,,,,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSNAK,Victor,Ivanovych,,,,,Victor Ivanovych Ratušnâk,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSNAK,Viktor,Ivanovic,,,,,Viktor Ivanovič Ratušnâk,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSNAK,Viktor,Ivanovic,,,,,Vìktor Ìvanovič Ratušnâk,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSNAK,Viktor,Ivanovich,,,,,Viktor Ivanovich Ratušnâk,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSNAK,Viktor,Ivanovych,,,,,Viktor Ivanovȳch Ratušnâk,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSNAK,Viktor,Ivanovych,,,,,Viktor Ivanovych Ratušnâk,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSNAK,Viktor,Ivanovytch,,,,,Viktor Ivanovytch Ratušnâk,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSNAK,Wiktor,Iwanowytsch,,,,,Wiktor Iwanowytsch Ratušnâk,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSNJAK,Victor,Ivanovych,,,,,Victor Ivanovych Ratušnjak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSNJAK,Viktor,Ivanovic,,,,,Viktor Ivanovič Ratušnjak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSNJAK,Viktor,Ivanovic,,,,,Vìktor Ìvanovič Ratušnjak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSNJAK,Viktor,Ivanovich,,,,,Viktor Ivanovich Ratušnjak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSNJAK,Viktor,Ivanovyc,,,,,Viktor Ivanovyč Ratušnjak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSNJAK,Viktor,Ivanovych,,,,,Viktor Ivanovȳch Ratušnjak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSNJAK,Viktor,Ivanovych,,,,,Viktor Ivanovych Ratušnjak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSNJAK,Viktor,Ivanovytch,,,,,Viktor Ivanovytch Ratušnjak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RATUSNJAK,Wiktor,Iwanowytsch,,,,,Wiktor Iwanowytsch Ratušnjak,,,16/10/1959,Vinnitsa,Ukraine,Ukraine,,,,,Former Deputy Minister of Internal Affairs,,,,,,,,Russia,"(UK Sanctions List Ref):GHR0073 (UK Statement of Reasons):Viktor Ratushniak, the former Deputy Minister of Internal Affairs in Ukraine, implemented an order on 18 February to clear protesters in Kyiv with the use of firearms, which led directly to the deaths of protesters. As Deputy Minister for Internal Affairs responsible for public security he was in charge of and bore responsibility for the actions of Ukrainian law enforcement and the civilian groups they worked with, who tortured and killed protesters. International human rights institutions concluded that it was Ukrainian government policy to suppress the Maidan protest movement with excessive and lethal force. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12892 +RAUKOU,Andrei,Alekseevich,,,,,Андрей Алексеевич РАВКОВ,,,25/06/1967,"Village of Revyaki, Vitebsk/Viciebsk Oblast",Former USSR Currently Belarus,Belarus,,,,,Former State Secretary of the Security Council (Jan-Sept 2020),,,,,,,,,"(UK Sanctions List Ref):BEL0052 (UK Statement of Reasons):In his former position as State Secretary of the Security Council, Andrei Raukou, is responsible for its coordination of the repression and intimidation campaign carried out by the State apparatus in the wake of the 2020 Presidential elections. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13995 +RAUKOU,Andrei,Aliakseevich,,,,,Андрэй Аляксеевіч РАЎКОЎ,,,25/06/1967,"Village of Revyaki, Vitebsk/Viciebsk Oblast",Former USSR Currently Belarus,Belarus,,,,,Former State Secretary of the Security Council (Jan-Sept 2020),,,,,,,,,"(UK Sanctions List Ref):BEL0052 (UK Statement of Reasons):In his former position as State Secretary of the Security Council, Andrei Raukou, is responsible for its coordination of the repression and intimidation campaign carried out by the State apparatus in the wake of the 2020 Presidential elections. (Gender):Male",Individual,Primary name,,Belarus,06/11/2020,31/12/2020,31/12/2020,13995 +RAVKOV,Andrei,Alekseevich,,,,,,,,25/06/1967,"Village of Revyaki, Vitebsk/Viciebsk Oblast",Former USSR Currently Belarus,Belarus,,,,,Former State Secretary of the Security Council (Jan-Sept 2020),,,,,,,,,"(UK Sanctions List Ref):BEL0052 (UK Statement of Reasons):In his former position as State Secretary of the Security Council, Andrei Raukou, is responsible for its coordination of the repression and intimidation campaign carried out by the State apparatus in the wake of the 2020 Presidential elections. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13995 +RAVKOV,Andrei,Aliakseevich,,,,,,,,25/06/1967,"Village of Revyaki, Vitebsk/Viciebsk Oblast",Former USSR Currently Belarus,Belarus,,,,,Former State Secretary of the Security Council (Jan-Sept 2020),,,,,,,,,"(UK Sanctions List Ref):BEL0052 (UK Statement of Reasons):In his former position as State Secretary of the Security Council, Andrei Raukou, is responsible for its coordination of the repression and intimidation campaign carried out by the State apparatus in the wake of the 2020 Presidential elections. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13995 +RAVUTSKI,Dmitry,Vasilievich,,,,,"РАВУЦКI, Дзмiтрый Васiльевiч",,,,,,Belarus,,,,,"Deputy Head, State Security Committee (KGB), Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0029 (UK Statement of Reasons):DZMITRY VASILIEVICH RAVUTSKI was appointed Deputy Chairman of the State Security Committee (KGB) of Belarus on 20 July 2020. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13950 +RAVUTSKI,DZMITRY,VASILIEVICH,,,,,"РЕУЦКИЙ, Дмитрий Васильевич",,,,,,Belarus,,,,,"Deputy Head, State Security Committee (KGB), Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0029 (UK Statement of Reasons):DZMITRY VASILIEVICH RAVUTSKI was appointed Deputy Chairman of the State Security Committee (KGB) of Belarus on 20 July 2020. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,31/12/2020,13950 +RAWAFED DAMASCUS PRIVATE JOINT STOCK COMPANY,,,,,,,روافد,,,,,,,,,,,,,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0270 (UK Statement of Reasons):Rawafed Damascus Private Joint Stock Company is a USD$48.3 million joint venture between Damascus Cham Holdings, Ramak Development and Humanitarian Projects, Al-Ammar LLC, Timeet Trading LLC (also referred to as Ultimate Trading Co. Ltd.), and Wings Private JSC. Rawafed supports and / or benefits from the Syrian regime, including through its participation in the luxury development Marota City. (Type of entity):Joint Venture. Private Joint Stock Company",Entity,Primary name,,Syria,22/01/2019,31/12/2020,01/02/2021,13764 +RAWAFED TRIBUTARY DAMASCUS PRIVATE JOINT STOCK COMPANY,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0270 (UK Statement of Reasons):Rawafed Damascus Private Joint Stock Company is a USD$48.3 million joint venture between Damascus Cham Holdings, Ramak Development and Humanitarian Projects, Al-Ammar LLC, Timeet Trading LLC (also referred to as Ultimate Trading Co. Ltd.), and Wings Private JSC. Rawafed supports and / or benefits from the Syrian regime, including through its participation in the luxury development Marota City. (Type of entity):Joint Venture. Private Joint Stock Company",Entity,AKA,,Syria,22/01/2019,31/12/2020,01/02/2021,13764 +RAWAFID DAMASCUS PRIVATE JOINT STOCK COMPANY,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0270 (UK Statement of Reasons):Rawafed Damascus Private Joint Stock Company is a USD$48.3 million joint venture between Damascus Cham Holdings, Ramak Development and Humanitarian Projects, Al-Ammar LLC, Timeet Trading LLC (also referred to as Ultimate Trading Co. Ltd.), and Wings Private JSC. Rawafed supports and / or benefits from the Syrian regime, including through its participation in the luxury development Marota City. (Type of entity):Joint Venture. Private Joint Stock Company",Entity,AKA,,Syria,22/01/2019,31/12/2020,01/02/2021,13764 +RAWAFID TRIBUTARY DAMASCUS PRIVATE JOINT STOCK COMPANY,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0270 (UK Statement of Reasons):Rawafed Damascus Private Joint Stock Company is a USD$48.3 million joint venture between Damascus Cham Holdings, Ramak Development and Humanitarian Projects, Al-Ammar LLC, Timeet Trading LLC (also referred to as Ultimate Trading Co. Ltd.), and Wings Private JSC. Rawafed supports and / or benefits from the Syrian regime, including through its participation in the luxury development Marota City. (Type of entity):Joint Venture. Private Joint Stock Company",Entity,AKA,,Syria,22/01/2019,31/12/2020,01/02/2021,13764 +RAYAN,Abu,,,,,,,,,06/09/1983,(1) Surakarta (2) Pekalongan,(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,Aleppo,,Syria,"(UK Sanctions List Ref):AQD0259 (UN Ref):QDi.404 Syrian-based Indonesian national who has served in a variety of roles supporting the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116575",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13515 +RAYAN,Abu,,,,,,,,,06/09/1983,(1) Surakarta (2) Pekalongan,(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0259 (UN Ref):QDi.404 Syrian-based Indonesian national who has served in a variety of roles supporting the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116575",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13515 +RAYHANAH,,,,,,,,,,04/01/1973,Jeddah,Saudi Arabia,Yemen,01055336,Yemen,2054275397,"Saudi Arabia alien registration number, issued on 22 Jul. 1998.",,,,,,,,,,"(UK Sanctions List Ref):AQD0257 (UN Ref):QDi.369 Financial and foreign fighter facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Member of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129) since at least Jun. 2014. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13294 +RAYYAN,Abu,,,,,,,,,06/09/1983,(1) Surakarta (2) Pekalongan,(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,Aleppo,,Syria,"(UK Sanctions List Ref):AQD0259 (UN Ref):QDi.404 Syrian-based Indonesian national who has served in a variety of roles supporting the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116575",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13515 +RAYYAN,Abu,,,,,,,,,06/09/1983,(1) Surakarta (2) Pekalongan,(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0259 (UN Ref):QDi.404 Syrian-based Indonesian national who has served in a variety of roles supporting the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116575",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13515 +RAZVOROTNEVA,Svetlana,Viktorovna,,,,,Разворотнева Светлана Викторовна,,,25/03/1968,Moscow,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0279 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14224 +RAZVOZHAEV,Mikhail,,,,,,,,,30/12/1980,Krasnoyarsk,Russia (USSR),Russia,,,,,Acting “Governor” of Sevastopol,,,,,,,,,"(UK Sanctions List Ref):RUS0231 (UK Statement of Reasons):Razvozhaev was appointed as acting “Governor of Sevastopol” by President Putin in July 2019. In this capacity, he has worked for further integration of the illegally annexed Crimean peninsula into the Russian Federation, including involvement in Russian-organised illegal local elections, and is as such responsible for actively supporting or implementing actions or policies which undermine or threaten the territorial integrity, sovereignty, and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,28/01/2020,31/12/2020,06/09/2022,13811 +RAZVOZHAEV,Mikhail,Vladimirovich,,,,,,,,30/12/1980,Krasnoyarsk,Russia (USSR),Russia,,,,,Acting “Governor” of Sevastopol,,,,,,,,,"(UK Sanctions List Ref):RUS0231 (UK Statement of Reasons):Razvozhaev was appointed as acting “Governor of Sevastopol” by President Putin in July 2019. In this capacity, he has worked for further integration of the illegally annexed Crimean peninsula into the Russian Federation, including involvement in Russian-organised illegal local elections, and is as such responsible for actively supporting or implementing actions or policies which undermine or threaten the territorial integrity, sovereignty, and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,28/01/2020,31/12/2020,06/09/2022,13811 +RAZVOZHAYEV,Mikhail,Vladimirovich,,,,,,,,30/12/1980,Krasnoyarsk,Russia (USSR),Russia,,,,,Acting “Governor” of Sevastopol,,,,,,,,,"(UK Sanctions List Ref):RUS0231 (UK Statement of Reasons):Razvozhaev was appointed as acting “Governor of Sevastopol” by President Putin in July 2019. In this capacity, he has worked for further integration of the illegally annexed Crimean peninsula into the Russian Federation, including involvement in Russian-organised illegal local elections, and is as such responsible for actively supporting or implementing actions or policies which undermine or threaten the territorial integrity, sovereignty, and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,28/01/2020,31/12/2020,06/09/2022,13811 +RDIF,,,,,,,Рфпи,,,,,,,,,,,,Capital City,South Tower,"7th, 8th Floor",8 bld.,1 Presnenskaya nab.,Moscow,123112,Russia,"(UK Sanctions List Ref):RUS0263 (UK Statement of Reasons):The Russian Direct Investment Fund (RDIF) is Russia's sovereign wealth fund. It facilitates co-investments into the Russian economy. RDIF is owned by the Government of Russia. As Russia's sovereign wealth fund, RDIF carries on business of economic significance to the Government of Russia by financing projects of economic and political significance to the Government. RDIF also carries on business in the Russian financial sector, which is a sector of significance to the Government of Russia. (Phone number):(1) +7 (495) 644-34-14 (2) +7 (495) 644-34-11 (Website):www.rdif.ru (Type of entity):Sovereign Wealth Fund",Entity,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14207 +REAL ESTATE BANK OF SYRIA (REB),,,,,,,المصرف العقاري السوري,,,,,,,,,,,,P.O. Box: 2337,Insurance Bldg,Yousef Al-Azmeh Square,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0326 Business. State owned (UK Statement of Reasons):There are reasonable grounds to suspect that Real Estate Bank of Syria is or has been involved in supporting or benefitting from the Syrian regime, in particular through the provision of financial services and making available funds or other economic resources. Further, it is owned or controlled by or otherwise associated with the Syrian regime. In particular, it is or was managed by the brother-in-law of Bashar al-Assad, Mohammad Makhlouf. (Phone number):(1) +963 11 2218602 (2) +963 11 2456777 (Fax): (1) +963 11 2211186 (2) +963 11 2237938 (Website):www.reb.sy (Email address):Publicrelations@reb.sy (Type of entity):State-owned",Entity,Primary name,,Syria,05/09/2011,31/12/2020,13/05/2022,12064 +RECONNAISSANCE GENERAL BUREAU (RGB),,,,,,,,,,,,,,,,,,,,,,,Hyongjesan-Guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0188 (UN Ref):KPe.031 The Reconnaissance General Bureau is the DPRK's premiere intelligence organization, created in early 2009 by the merger of existing intelligence organizations from the Korean Workers' Party, the Operations Department and Office 35, and the Reconnaissance Bureau of the Korean People's Army. The Reconnaissance General Bureau trades in conventional arms and controls the DPRK conventional arms firm Green Pine Associated Corporation. (Subsidiaries):Green Pine Associated Corporation",Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,31/12/2020,12448 +RECONNAISSANCE GENERAL BUREAU (RGB),,,,,,,,,,,,,,,,,,,,,,,Nungrado,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0188 (UN Ref):KPe.031 The Reconnaissance General Bureau is the DPRK's premiere intelligence organization, created in early 2009 by the merger of existing intelligence organizations from the Korean Workers' Party, the Operations Department and Office 35, and the Reconnaissance Bureau of the Korean People's Army. The Reconnaissance General Bureau trades in conventional arms and controls the DPRK conventional arms firm Green Pine Associated Corporation. (Subsidiaries):Green Pine Associated Corporation",Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,31/12/2020,12448 +RED APOLLO,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CYB0003 (UK Statement of Reasons):Huaying Haitai, known in cyber security circles as APT10 (Advanced Persistent Threat 10), Red Apollo, CVNX, Stone Panda, MenuPass and Potassium, was involved in relevant cyber activity Operation Cloud Hopper, one of the most significant and widespread cyber instructions to date. They conducted data interference through the theft of intellectual property and sensitive commercial data over many years. Huaying Haitai targeted companies across six continents and sectors banking and finance, government, aviation, space, and satellite technology, manufacturing technology, medical, oil and gas, mining, communications technology, computer processing technology, and defence technology. This activity undermined the prosperity of the United Kingdom and countries other than the United Kingdom (Website):huayinghaitai.com (Type of entity):Company",Entity,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13909 +REFKE,Taufek,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +REHMAN,Abdul,,,,,,,,,03/10/1965,Mirpur Khas,Pakistan,Pakistan,CV9157521,"Pakistan number, issued on 8 Sep. 2008, expires on 7 Sep. 2013.",44103-5251752-5,Pakistan national identity card number,,,,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0112 (UN Ref):QDi.309 Has provided facilitation and financial services to Al-Qaida (QDe.004). Associated with Harakatul Jihad Islami (QDe.130), Jaish-I-Mohammed (QDe.019), and Al-Akhtar Trust International (QDe.121). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040885",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,31/12/2020,12632 +REHMAN,Mati,ur,,,,,,,,00/00/1977,"Chak number 36/DNB, Rajkan, Madina Colony, Bahawalpur District, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0224 (UN Ref):QDi.296 Physical description: 5 feet 2 inches; 157,4 cm. Name of father: Ali Muhammad. Mati ur-Rehman is the chief operational commander of Lashkar i Jhangvi (LJ) (QDe.096). Associated with Harakat-ul Jihad Islami (QDe.130). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4674457",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,02/09/2011,22/08/2011,31/12/2020,12038 +REHMAN,Matiur,,,,,,,,,00/00/1977,"Chak number 36/DNB, Rajkan, Madina Colony, Bahawalpur District, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0224 (UN Ref):QDi.296 Physical description: 5 feet 2 inches; 157,4 cm. Name of father: Ali Muhammad. Mati ur-Rehman is the chief operational commander of Lashkar i Jhangvi (LJ) (QDe.096). Associated with Harakat-ul Jihad Islami (QDe.130). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4674457",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,02/09/2011,22/08/2011,31/12/2020,12038 +REHMAN,Mati-ur,,,,,,مطیع الرحمن علی محمد,,,00/00/1977,"Chak number 36/DNB, Rajkan, Madina Colony, Bahawalpur District, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0224 (UN Ref):QDi.296 Physical description: 5 feet 2 inches; 157,4 cm. Name of father: Ali Muhammad. Mati ur-Rehman is the chief operational commander of Lashkar i Jhangvi (LJ) (QDe.096). Associated with Harakat-ul Jihad Islami (QDe.130). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4674457",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,02/09/2011,22/08/2011,31/12/2020,12038 +REHMAN,Mohd,Ismail,Abdul,,,Shaikh,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +REHMAN,Mohd,Ismail,Abdul,,,Shaikh,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +REHMAN,Mohd,Ismail,Abdul,,,Shaikh,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +REHMAN,Zakir,,,,,,,,,30/12/1960,Okara,Pakistan,Pakistan,,,61101-9618232-1,,,Barahkoh,P.O. DO,,,,Tehsil and District Islamabad,,Pakistan,(UK Sanctions List Ref):AQD0342 (UN Ref):QDi.264 Chief of operations of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543499. Pakistan (location as at May 2008),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9216 +REHMAN,Zakir,,,,,,,,,30/12/1960,Okara,Pakistan,Pakistan,,,61101-9618232-1,,,Chak No. 18/IL,Rinala Khurd,Tehsil Rinala Khurd,,,District Okara,,Pakistan,(UK Sanctions List Ref):AQD0342 (UN Ref):QDi.264 Chief of operations of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543499. Pakistan (location as at May 2008),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9216 +REHMATULLAH,,,,,,,,,,00/00/1968,"Zurmat District, Paktia Province",Afghanistan,Afghanistan,D 000952,Issued on 7 Jan. 1999. Issued in Afghanistan.,,,"Consul General, Taliban Consulate General, Karachi, Pakistan",,,,,,,,,"(UK Sanctions List Ref):AFG0105 (UN Ref):TAi.137 Taliban member responsible for Ghazni Province, Afghanistan, as of May 2007. Head of an intelligence network. Believed to be in Afghanistan/ Pakistan border area. Belongs to Suleimankheil tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7219 +REMADNA,Abdelhalim,,,,,,,,,02/04/1966,Biskra,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0097 (UN Ref):QDi.075 Deported from Italy to Algeria on 12 Aug. 2006. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Dec. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424786,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2002,03/09/2002,31/12/2020,7416 +REMADNA,ABDELHALIM,HAFED,ABDELFATTAH,,,,عبدالحليم حافظ عبدالفتاح رمادنا,,,02/04/1966,Biskra,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0097 (UN Ref):QDi.075 Deported from Italy to Algeria on 12 Aug. 2006. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Dec. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424786,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/09/2002,03/09/2002,31/12/2020,7416 +REMEZKOV,Alexander,Alexandrovich,,,,,Ремезков Александр Александрович,,,07/04/1962,Urgench,Uzbekistan,,207768,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0628 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14573 +RENE,Merlin,Oliver,Christian,,,,,,,29/01/1971,Roubaix,France,France,,,,,,,,,,,,,France,(UK Sanctions List Ref):AQD0217 (UN Ref):QDi.095 In custody in France as of May 2004. Sentenced to 25 years imprisonment in France in 2007. His sentence is due to end on 13 Jul. 2023 and his unconditional detention to end on 13 Aug. 2020. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4531664,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,11/02/2022,7797 +RENGU,MALEK,REUBEN,RIAK,,,Lieutenant General,,,,01/01/1960,Yei,South Sudan,South Sudan,,,,,Deputy Chief of Defence Staff. Deputy Chief of General Staff for Logistics. Inspector General of the Army,,,,,,,,,"(UK Sanctions List Ref):SSU0004 (UN Ref):SSi.007 As SPLA Deputy Chief of Staff for Logistics, Riak was one of the senior officials of the Government of South Sudan who planned and oversaw an offensive in Unity state in 2015 that resulted in widespread destruction and large population displacement.",Individual,Primary name,,South Sudan,18/07/2018,13/07/2018,31/12/2020,13698 +REQUENA,Gladys,del,Valle,,,Second Vice-President of the National Constituent Assembly,,,,09/11/1952,"Puerto Santo, Sucre",Venezuela,Venezuela,,,V-4114842,,(1) National Assembly Deputy (2) Member of the Preliminary Commission of Electoral Nominations’ Committee (3) Vice President of the Permanent Commission of the Family (4) Former Second Vice-President of the National Constituent Assembly,,,,,,,,Venezuela,"(UK Sanctions List Ref):VEN0027 (UK Statement of Reasons):National Assembly Deputy (2021-26), member of the NA’s Committee of the Preliminary Commission of Electoral Nominations and Vice President of the Permanent Commission of the Family. Former member of the illegitimate National Constituent Assembly since August 2017, and former Second Vice President since October 2018. Her actions as part of the National Constituent Assembly (ANC) including signing the decree that stripped the immunity of the president of the National Assembly (AN) and the interim-president of Venezuela, Juan Guaido, have undermined democracy and rule of law in Venezuela. (Gender):Female",Individual,Primary name,,Venezuela,30/06/2020,31/12/2020,28/01/2022,13842 +RESEARCH CENTRE FOR EXPLOSION AND IMPACT,,,,,,,,,,,,,,,,,,,44,190th Street West,,,,Tehran,16539-75751,,(UK Sanctions List Ref):INU0105 (UK Statement of Reasons):An entity associated with MODAFL that has carried out research into technologies with an application in Iran's nuclear programme. (Type of entity):Import/Export,Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12263 +RESHAD,HABIBULLAH,,,,,Mullah,حبیب الله رشاد,,,00/00/1968,"Waghaz District, Ghazni Province",Afghanistan,Afghanistan,,,,,"Head of Investigation Department, Ministry of Security (Intelligence) under the Taliban regime",,,,,,,,,(UK Sanctions List Ref):AFG0064 (UN Ref):TAi.084 Deputy Head (Intelligence) of the Quetta Military Council as of 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7417 +RESHAD,HABIBULLAH,,,,,Mullah,حبیب الله رشاد,,,00/00/1969,"Waghaz District, Ghazni Province",Afghanistan,Afghanistan,,,,,"Head of Investigation Department, Ministry of Security (Intelligence) under the Taliban regime",,,,,,,,,(UK Sanctions List Ref):AFG0064 (UN Ref):TAi.084 Deputy Head (Intelligence) of the Quetta Military Council as of 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7417 +RESHAD,HABIBULLAH,,,,,Mullah,حبیب الله رشاد,,,00/00/1970,"Waghaz District, Ghazni Province",Afghanistan,Afghanistan,,,,,"Head of Investigation Department, Ministry of Security (Intelligence) under the Taliban regime",,,,,,,,,(UK Sanctions List Ref):AFG0064 (UN Ref):TAi.084 Deputy Head (Intelligence) of the Quetta Military Council as of 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7417 +RESHAD,HABIBULLAH,,,,,Mullah,حبیب الله رشاد,,,00/00/1971,"Waghaz District, Ghazni Province",Afghanistan,Afghanistan,,,,,"Head of Investigation Department, Ministry of Security (Intelligence) under the Taliban regime",,,,,,,,,(UK Sanctions List Ref):AFG0064 (UN Ref):TAi.084 Deputy Head (Intelligence) of the Quetta Military Council as of 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7417 +RESHAD,HABIBULLAH,,,,,Mullah,حبیب الله رشاد,,,00/00/1972,"Waghaz District, Ghazni Province",Afghanistan,Afghanistan,,,,,"Head of Investigation Department, Ministry of Security (Intelligence) under the Taliban regime",,,,,,,,,(UK Sanctions List Ref):AFG0064 (UN Ref):TAi.084 Deputy Head (Intelligence) of the Quetta Military Council as of 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7417 +RESHAD,HABIBULLAH,,,,,Mullah,حبیب الله رشاد,,,00/00/1973,"Waghaz District, Ghazni Province",Afghanistan,Afghanistan,,,,,"Head of Investigation Department, Ministry of Security (Intelligence) under the Taliban regime",,,,,,,,,(UK Sanctions List Ref):AFG0064 (UN Ref):TAi.084 Deputy Head (Intelligence) of the Quetta Military Council as of 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7417 +RESHETNIKOV,Maxim,Gennadyevich,,,,,РЕШЕТНИКОВ Максим Геннадьевич,Cyrillic,Russian,11/07/1979,Perm,Russia,Russia,,,,,(1) Minister of Economic Development of the Russian Federation (2) Member of the Supervisory Council of the VTB Bank (3) Member of the Presidium of the Commission on Scientific and technological Development of the Russian Federation.,,,,,,,,,"(UK Sanctions List Ref):RUS0693 (UK Statement of Reasons):Maxim Gennadyevich RESHETNIKOV, hereafter RESHETNIKOV, is Minister of Economic Development of the Russian Federation. He engaged in the promotion and implementation of a Russian government socio-economic plan for the development of Crimea and Sevastopol, areas illegally annexed by Russia in 2014. Consequently, RESHETNIKOV is or has been responsible for, engaged in, provided support for, or promoted policies and actions which have destabilised Ukraine and undermined or threatened the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14644 +RESHTE-AHMADI,Bahram,,,,,,,,,,,,,,,,,(1) Deputy Head of the Office of Prison Affairs of Tehran Province (2) Judge of an ordinary court of northern Tehran (3) Former Chief of Iran’s National Police (2005-2015) (4) Former Supervisor of Public Prosecution Office in Tehran (5) Former Deputy Prosecutor in Tehran,,,,,,,,,"(UK Sanctions List Ref):IHR0025 (UK Statement of Reasons):Judge of an ordinary court of northern Tehran. Former Supervisor of Public Prosecution Office in Tehran. Deputy Head of the Office of Prison Affairs of Tehran Province. Former Deputy Prosecutor in Tehran until 2013. He ran Evin prosecution centre. Was responsible for the denial of rights, including visits and other prisoner's rights, to human rights defenders and political prisoners. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,31/12/2020,12662 +RESIN,Vladimir,Iosifovich,,,,,Владимир Иосифович Ресин,,,21/02/1936,Minsk,Belarus,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0685 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14636 +RESORT 'NIZHNYAYA OREANDA',,,,,,,,,,,,,,,,,,,House 12,Resort 'Nizhnyaya Oreanda',,,Oreanda,Yalta,298658,,"(UK Sanctions List Ref):RUS0194 (UK Statement of Reasons):The ownership of the entity was transferred contrary to the Ukrainian law. On 21 March 2014, the 'Presidium of the Parliament of Crimea' adopted a decision 'On the questions of creation of the Association of sanatoria and resorts' No 1767-6/14 declaring the appropriation of assets belonging to the resort 'Nizhnyaya Oreanda' on behalf of the 'Republic of Crimea'. The enterprise is thus effectively confiscated by the Crimean 'authorities'. Re-registered on 9 October 2014 as Federal State Budgetary Enterprise 'Sanatorium Nizhnyaya Oreanda' of the Administration of the President of the Russian Federation. (Website):marketing@oreanda-resort.ru",Entity,AKA,,Russia,25/07/2014,31/12/2020,31/12/2020,13058 +REUTSKY,Dmitry,Vasilievich,,,,,,,,,,,Belarus,,,,,"Deputy Head, State Security Committee (KGB), Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0029 (UK Statement of Reasons):DZMITRY VASILIEVICH RAVUTSKI was appointed Deputy Chairman of the State Security Committee (KGB) of Belarus on 20 July 2020. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13950 +REUTSKY,DZMITRY,VASILIEVICH,,,,,,,,,,,Belarus,,,,,"Deputy Head, State Security Committee (KGB), Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0029 (UK Statement of Reasons):DZMITRY VASILIEVICH RAVUTSKI was appointed Deputy Chairman of the State Security Committee (KGB) of Belarus on 20 July 2020. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13950 +REVENKO,Evgeny,Vasilievich,,,,,Ревенко Евгений Васильевич,,,22/05/1972,"Sovetsky, Novosibirsk",Russia,,512340377,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0627 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14572 +REVEROL TORRES,Nestor,Luis,,,,Minister,Néstor Luis Reverol Torres,,,28/10/1964,,,Venezuela,,,,,(1) Minister for Interior Justice and Peace (2) Vice-President of Public Works and Services (3) Executive Secretary of the Electrical General Staff,,,,,,Caracas,,Venezuela,"(UK Sanctions List Ref):VEN0001 (UK Statement of Reasons):Currently Minister for Electrical Energy and Sectoral Vice President of Public Works and Services. There are reasonable grounds to suspect that Reverol Torres, as Interior Minister, was responsible for policing, and parts of the Venezuelan security forces. Under the command of Reverol Torres as Interior Minister, the Bolivarian National Police committed serious human rights violations between April and July 2017, including excessive use of force by security forces, arbitrary arrest and detention, mistreatment and torture in detention, and over 120 deaths between April and August 2017. Further, there are reasonable grounds to suspect that he was also involved in the commission of serious human rights violations as former Commander General of the Bolivian National Guard, including during “Liberation of the People” security operations against suspected gang-members in 2015. He was later promoted to General in Chief within the National Guard. (Gender):Male",Individual,Primary name,,Venezuela,22/01/2018,31/12/2020,28/01/2022,13580 +REVIVAL OF ISLAMIC HERITAGE SOCIETY,,,,,,,جمعية احياء التراث الاسلامي,,,,,,,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0074 (UN Ref):QDe.070 NOTE: Only the Pakistan and Afghanistan offices of this entity are designated. Associated with Abu Bakr al-Jaziri (QDi.058) and Afghan Support Committee (ASC) (QDe.069). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281996,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,7210 +REVIVAL OF ISLAMIC HERITAGE SOCIETY,,,,,,,جمعية احياء التراث الاسلامي,,,,,,,,,,,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0074 (UN Ref):QDe.070 NOTE: Only the Pakistan and Afghanistan offices of this entity are designated. Associated with Abu Bakr al-Jaziri (QDi.058) and Afghan Support Committee (ASC) (QDe.069). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281996,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,7210 +REVIVAL OF ISLAMIC SOCIETY HERITAGE ON THE AFRICAN CONTINENT,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0074 (UN Ref):QDe.070 NOTE: Only the Pakistan and Afghanistan offices of this entity are designated. Associated with Abu Bakr al-Jaziri (QDi.058) and Afghan Support Committee (ASC) (QDe.069). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281996,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,7210 +REVIVAL OF ISLAMIC SOCIETY HERITAGE ON THE AFRICAN CONTINENT,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0074 (UN Ref):QDe.070 NOTE: Only the Pakistan and Afghanistan offices of this entity are designated. Associated with Abu Bakr al-Jaziri (QDi.058) and Afghan Support Committee (ASC) (QDe.069). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281996,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,7210 +REVOLUTIONARY GUARD CORPS,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):LIB0005 (UK Statement of Reasons):Associated with Muammar Qadhafi, involved in activities carried out on behalf of the former regime of Muammar Qadhafi implementing or connected to the repressive policies of that regime, involved in violence against demonstrators.",Entity,Primary name,,Libya,22/03/2011,31/12/2020,31/12/2020,11714 +REVOLUTIONARY GUARDS,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0080 (UK Statement of Reasons):Responsible for Iran's nuclear programme. Has operational control for Iran's ballistic missile programme. Has undertaken procurement attempts to support Iran's ballistic missiles and nuclear programmes. (Type of entity):Military Government,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11238 +REVOLUTIONARY PEOPLE'S LIBERATION FRONT (DHKC),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0027 (UK Statement of Reasons):Devrimci Halk Kurtulus Partisi-Cephesi (DHKP-C) is a Turkish organisation which is committed to achieving its political objectives through violent means. DHKP-C has claimed responsibility for a number of terrorist attacks on the Turkish government and on civilians.,Entity,AKA,,Counter-Terrorism (International),02/11/2001,31/12/2020,21/01/2020,7120 +REVOLUTIONARY PEOPLE'S LIBERATION FRONT/ARMED PROPAGANDA UNITS (DHKC/SPB),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0027 (UK Statement of Reasons):Devrimci Halk Kurtulus Partisi-Cephesi (DHKP-C) is a Turkish organisation which is committed to achieving its political objectives through violent means. DHKP-C has claimed responsibility for a number of terrorist attacks on the Turkish government and on civilians.,Entity,AKA,,Counter-Terrorism (International),02/11/2001,31/12/2020,21/01/2020,7120 +REVOLUTIONARY PEOPLES' LIBERATION PARTY - FRONT (DEVRIMCI HALK KURTULUS PARTISI-CEPHESI) (DHKP-C),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0027 (UK Statement of Reasons):Devrimci Halk Kurtulus Partisi-Cephesi (DHKP-C) is a Turkish organisation which is committed to achieving its political objectives through violent means. DHKP-C has claimed responsibility for a number of terrorist attacks on the Turkish government and on civilians.,Entity,Primary name,,Counter-Terrorism (International),02/11/2001,31/12/2020,21/01/2020,7120 +REVOLUTIONARY PEOPLE'S LIBERATION PARTY (DHKP),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0027 (UK Statement of Reasons):Devrimci Halk Kurtulus Partisi-Cephesi (DHKP-C) is a Turkish organisation which is committed to achieving its political objectives through violent means. DHKP-C has claimed responsibility for a number of terrorist attacks on the Turkish government and on civilians.,Entity,AKA,,Counter-Terrorism (International),02/11/2001,31/12/2020,21/01/2020,7120 +REZA,,,,,,,,,,,,,,,,,,"Head of section VI of the police, investigation department.",,,,,,,,,"(UK Sanctions List Ref):IHR0050 (UK Statement of Reasons):Head of section VI of the police, investigation department. Former Head of the Intelligence Services within the Iranian Police. Former Head of the Computer Crimes Unit of the Iranian Police. He was responsible for thousands of investigations and indictments of reformists and political opponents using the Internet. He was thus responsible for grave human rights violations in the repression of persons who speak out in defence of their legitimate rights, including freedom of expression during and after the 2009 Green Movement. (Gender):Male",Individual,AKA,,Iran (Human Rights),12/10/2011,31/12/2020,31/12/2020,12191 +REZAI,Mortaza,,,,,,,,,00/00/1956,,,,,,,,(1) Brigadier General (2) Deputy Commander of IRGC,,,,,,,,,"(UK Sanctions List Ref):INU0209 (UN Ref):IRi.033 [Old Reference # I.47.D.1] (UK Statement of Reasons):As a Brigadier General of the IRGC, and former Deputy Commander of the IRGC, and Chairman of the IRCG Cooperative Foundation, Morteza REZAIE is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9057 +REZAI,Mortaza,,,,,,,,,,,,,,,,,(1) Brigadier General (2) Deputy Commander of IRGC,,,,,,,,,"(UK Sanctions List Ref):INU0209 (UN Ref):IRi.033 [Old Reference # I.47.D.1] (UK Statement of Reasons):As a Brigadier General of the IRGC, and former Deputy Commander of the IRGC, and Chairman of the IRCG Cooperative Foundation, Morteza REZAIE is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9057 +REZAI,Morteza,,,,,,,,,00/00/1956,,,,,,,,(1) Brigadier General (2) Deputy Commander of IRGC,,,,,,,,,"(UK Sanctions List Ref):INU0209 (UN Ref):IRi.033 [Old Reference # I.47.D.1] (UK Statement of Reasons):As a Brigadier General of the IRGC, and former Deputy Commander of the IRGC, and Chairman of the IRCG Cooperative Foundation, Morteza REZAIE is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9057 +REZAI,Morteza,,,,,,,,,,,,,,,,,(1) Brigadier General (2) Deputy Commander of IRGC,,,,,,,,,"(UK Sanctions List Ref):INU0209 (UN Ref):IRi.033 [Old Reference # I.47.D.1] (UK Statement of Reasons):As a Brigadier General of the IRGC, and former Deputy Commander of the IRGC, and Chairman of the IRCG Cooperative Foundation, Morteza REZAIE is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9057 +REZAIE,Mortaza,,,,,,,,,00/00/1956,,,,,,,,(1) Brigadier General (2) Deputy Commander of IRGC,,,,,,,,,"(UK Sanctions List Ref):INU0209 (UN Ref):IRi.033 [Old Reference # I.47.D.1] (UK Statement of Reasons):As a Brigadier General of the IRGC, and former Deputy Commander of the IRGC, and Chairman of the IRCG Cooperative Foundation, Morteza REZAIE is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9057 +REZAIE,Mortaza,,,,,,,,,,,,,,,,,(1) Brigadier General (2) Deputy Commander of IRGC,,,,,,,,,"(UK Sanctions List Ref):INU0209 (UN Ref):IRi.033 [Old Reference # I.47.D.1] (UK Statement of Reasons):As a Brigadier General of the IRGC, and former Deputy Commander of the IRGC, and Chairman of the IRCG Cooperative Foundation, Morteza REZAIE is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9057 +REZAIE,MORTEZA,,,,,,,,,00/00/1956,,,,,,,,(1) Brigadier General (2) Deputy Commander of IRGC,,,,,,,,,"(UK Sanctions List Ref):INU0209 (UN Ref):IRi.033 [Old Reference # I.47.D.1] (UK Statement of Reasons):As a Brigadier General of the IRGC, and former Deputy Commander of the IRGC, and Chairman of the IRCG Cooperative Foundation, Morteza REZAIE is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9057 +REZAIE,MORTEZA,,,,,,,,,,,,,,,,,(1) Brigadier General (2) Deputy Commander of IRGC,,,,,,,,,"(UK Sanctions List Ref):INU0209 (UN Ref):IRi.033 [Old Reference # I.47.D.1] (UK Statement of Reasons):As a Brigadier General of the IRGC, and former Deputy Commander of the IRGC, and Chairman of the IRCG Cooperative Foundation, Morteza REZAIE is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9057 +REZNIK,Vladislav,Matusovich,,,,,Владислав Матусович Резник,,,17/05/1954,Leningrad/St Petersburg,Russia,,4707312,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0568 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14513 +REZVANMANESH,Ali,,,,,,,,,,,,,,,,,"(1) Deputy prosecutor, province of Karaj, region of Alborz",,,,,,,,,"(UK Sanctions List Ref):IHR0014 (UK Statement of Reasons):As Deputy prosecutor province of Karaj, region of Alborz, he is responsible for grave violation of human rights, including involvement in the execution of a juvenile. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12658 +REZVANMA-NESH,Ali,,,,,,,,,,,,,,,,,"(1) Deputy prosecutor, province of Karaj, region of Alborz",,,,,,,,,"(UK Sanctions List Ref):IHR0014 (UK Statement of Reasons):As Deputy prosecutor province of Karaj, region of Alborz, he is responsible for grave violation of human rights, including involvement in the execution of a juvenile. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,16/02/2022,12658 +RGB,,,,,,,,,,,,,,,,,,,,,,,Hyongjesan-Guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0188 (UN Ref):KPe.031 The Reconnaissance General Bureau is the DPRK's premiere intelligence organization, created in early 2009 by the merger of existing intelligence organizations from the Korean Workers' Party, the Operations Department and Office 35, and the Reconnaissance Bureau of the Korean People's Army. The Reconnaissance General Bureau trades in conventional arms and controls the DPRK conventional arms firm Green Pine Associated Corporation. (Subsidiaries):Green Pine Associated Corporation",Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,31/12/2020,12448 +RGB,,,,,,,,,,,,,,,,,,,,,,,Nungrado,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0188 (UN Ref):KPe.031 The Reconnaissance General Bureau is the DPRK's premiere intelligence organization, created in early 2009 by the merger of existing intelligence organizations from the Korean Workers' Party, the Operations Department and Office 35, and the Reconnaissance Bureau of the Korean People's Army. The Reconnaissance General Bureau trades in conventional arms and controls the DPRK conventional arms firm Green Pine Associated Corporation. (Subsidiaries):Green Pine Associated Corporation",Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,31/12/2020,12448 +RI,Hak,Cheol,,,,,,,,19/01/1963,,,North Korea,(1) 381320634 (2) PS-563410163,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0048 (UK Statement of Reasons):President of Green Pine Associated Corporation (‘Green Pine’). According to the UN Sanctions Committee, Green Pine has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,16/02/2022,13373 +RI,Hak,Cheol,,,,,,,,08/05/1966,,,North Korea,(1) 381320634 (2) PS-563410163,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0048 (UK Statement of Reasons):President of Green Pine Associated Corporation (‘Green Pine’). According to the UN Sanctions Committee, Green Pine has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,16/02/2022,13373 +RI,Hak,Chol,,,,,,,,19/01/1963,,,North Korea,(1) 381320634 (2) PS-563410163,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0048 (UK Statement of Reasons):President of Green Pine Associated Corporation (‘Green Pine’). According to the UN Sanctions Committee, Green Pine has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,16/02/2022,13373 +RI,Hak,Chol,,,,,,,,08/05/1966,,,North Korea,(1) 381320634 (2) PS-563410163,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0048 (UK Statement of Reasons):President of Green Pine Associated Corporation (‘Green Pine’). According to the UN Sanctions Committee, Green Pine has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,16/02/2022,13373 +RI,Hak,Chul,,,,,,,,19/01/1963,,,North Korea,(1) 381320634 (2) PS-563410163,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0048 (UK Statement of Reasons):President of Green Pine Associated Corporation (‘Green Pine’). According to the UN Sanctions Committee, Green Pine has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,16/02/2022,13373 +RI,Hak,Chul,,,,,,,,08/05/1966,,,North Korea,(1) 381320634 (2) PS-563410163,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0048 (UK Statement of Reasons):President of Green Pine Associated Corporation (‘Green Pine’). According to the UN Sanctions Committee, Green Pine has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,16/02/2022,13373 +RI,Jong,Su,,,,,,,,,,,North Korea,,,,,Commander in Chief of the Korean Navy,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0049 (UK Statement of Reasons):Admiral of the Korean People's Army. Former member of the Central Military Commission of the Workers’ Party of Korea, which is a key body for national defence matters in DPRK. Commander in Chief of the Korean Navy, which is involved in the development of ballistic missile-related programmes and in the development of the nuclear capacities of the DPRK naval forces. As such, responsible for is, or has been, involved in the facilitation of any of the DPRK’s military programmes. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13369 +RI,Jong-Su,,,,,Vice Admiral,,,,,,,North Korea,,,,,Commander in Chief of the Korean Navy,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0049 (UK Statement of Reasons):Admiral of the Korean People's Army. Former member of the Central Military Commission of the Workers’ Party of Korea, which is a key body for national defence matters in DPRK. Commander in Chief of the Korean Navy, which is involved in the development of ballistic missile-related programmes and in the development of the nuclear capacities of the DPRK naval forces. As such, responsible for is, or has been, involved in the facilitation of any of the DPRK’s military programmes. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,31/12/2020,13369 +RI,Myong,Su,,,,,,,,20/02/1934,"Myonchon, North Hamgyong",North Korea,North Korea,,,,,"Vice President, Central Military Commission of the Workers' Party of Korea",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0050 (UK Statement of Reasons):Vice Marshall of the Korean People's Army, first vice Commander of the KPA Supreme Command. Until 2018, member of the Central Military Commission of the Korean Workers’ Party and Chief of Staff of the People’s Armed Forces. In this capacity, Ri Myong Su continues to be influential and holds a key position for national defence matters and is responsible for supporting or promoting the DPRK’S nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. Ri is a long time member of the Supreme People's Assembly (SPA); currently the 14th. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,07/04/2017,31/12/2020,31/12/2020,13454 +RI,Myong,Su,,,,,,,,00/00/1937,"Myonchon, North Hamgyong",North Korea,North Korea,,,,,"Vice President, Central Military Commission of the Workers' Party of Korea",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0050 (UK Statement of Reasons):Vice Marshall of the Korean People's Army, first vice Commander of the KPA Supreme Command. Until 2018, member of the Central Military Commission of the Korean Workers’ Party and Chief of Staff of the People’s Armed Forces. In this capacity, Ri Myong Su continues to be influential and holds a key position for national defence matters and is responsible for supporting or promoting the DPRK’S nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. Ri is a long time member of the Supreme People's Assembly (SPA); currently the 14th. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,07/04/2017,31/12/2020,31/12/2020,13454 +RI,Myong,Su,,,,,,,,00/00/1938,"Myonchon, North Hamgyong",North Korea,North Korea,,,,,"Vice President, Central Military Commission of the Workers' Party of Korea",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0050 (UK Statement of Reasons):Vice Marshall of the Korean People's Army, first vice Commander of the KPA Supreme Command. Until 2018, member of the Central Military Commission of the Korean Workers’ Party and Chief of Staff of the People’s Armed Forces. In this capacity, Ri Myong Su continues to be influential and holds a key position for national defence matters and is responsible for supporting or promoting the DPRK’S nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. Ri is a long time member of the Supreme People's Assembly (SPA); currently the 14th. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,07/04/2017,31/12/2020,31/12/2020,13454 +RI,Sin,Song,,,,,,,,,,,North Korea,,,,,,,,,,,,,Malaysia,"(UK Sanctions List Ref):DPR0031 Associations with Pan Systems, Reconnaissance General Bureau, Glocom, International Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Ri Sin Song has been identified by the UN Panel of Experts as a DPRK national operating Pan Systems Pyongyang.  Pan Systems Pyongyang has been designated for assisting in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related material to Eritrea.  Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,03/03/2022,13598 +RI,Sin,Song,,,,,,,,,,,North Korea,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0031 Associations with Pan Systems, Reconnaissance General Bureau, Glocom, International Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Ri Sin Song has been identified by the UN Panel of Experts as a DPRK national operating Pan Systems Pyongyang.  Pan Systems Pyongyang has been designated for assisting in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related material to Eritrea.  Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,03/03/2022,13598 +RI,Sin,Song,,,,,,,,,,,North Korea,,,,,,,,,,,,,Singapore,"(UK Sanctions List Ref):DPR0031 Associations with Pan Systems, Reconnaissance General Bureau, Glocom, International Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Ri Sin Song has been identified by the UN Panel of Experts as a DPRK national operating Pan Systems Pyongyang.  Pan Systems Pyongyang has been designated for assisting in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related material to Eritrea.  Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,03/03/2022,13598 +RIAK,Jock,,,,,,,,,01/01/1966,,Sudan,South Sudan,D00008623,South Sudan number,M6600000258472,,Chief of Defence Forces. Former Sudan People’s Liberation Army’s (SPLA) Sector One Commander,,,,,,Unity State,,South Sudan,"(UK Sanctions List Ref):SSU0002 (UN Ref):SSi.001 Appointed as Chief of Defence Forces on 2 May 2018. Commanded SPLA Sector One, which operates primarily within Unity State, since January 2013. In his position as the SPLA Sector One commander, he has expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement. The SPLA is a South Sudanese military entity that has engaged in actions that have extended the conflict in South Sudan, including breaches of the January 2014 Cessation of Hostilities Agreement and the May 9, 2014 Agreement to Resolve the Crisis in South Sudan, which was a re-commitment to the CoHA and has obstructed the activities of IGAD’s Monitoring and Verification Mechanism. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879060",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13263 +RIAK,Jock,,,,,,,,,01/01/1966,,Sudan,South Sudan,D00008623,South Sudan number,M6600000258472,,Chief of Defence Forces. Former Sudan People’s Liberation Army’s (SPLA) Sector One Commander,Wau,,,,,Western Bahr El Ghazal,,South Sudan,"(UK Sanctions List Ref):SSU0002 (UN Ref):SSi.001 Appointed as Chief of Defence Forces on 2 May 2018. Commanded SPLA Sector One, which operates primarily within Unity State, since January 2013. In his position as the SPLA Sector One commander, he has expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement. The SPLA is a South Sudanese military entity that has engaged in actions that have extended the conflict in South Sudan, including breaches of the January 2014 Cessation of Hostilities Agreement and the May 9, 2014 Agreement to Resolve the Crisis in South Sudan, which was a re-commitment to the CoHA and has obstructed the activities of IGAD’s Monitoring and Verification Mechanism. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879060",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13263 +RIAK,Jok,,,,,,,,,01/01/1966,,Sudan,South Sudan,D00008623,South Sudan number,M6600000258472,,Chief of Defence Forces. Former Sudan People’s Liberation Army’s (SPLA) Sector One Commander,,,,,,Unity State,,South Sudan,"(UK Sanctions List Ref):SSU0002 (UN Ref):SSi.001 Appointed as Chief of Defence Forces on 2 May 2018. Commanded SPLA Sector One, which operates primarily within Unity State, since January 2013. In his position as the SPLA Sector One commander, he has expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement. The SPLA is a South Sudanese military entity that has engaged in actions that have extended the conflict in South Sudan, including breaches of the January 2014 Cessation of Hostilities Agreement and the May 9, 2014 Agreement to Resolve the Crisis in South Sudan, which was a re-commitment to the CoHA and has obstructed the activities of IGAD’s Monitoring and Verification Mechanism. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879060",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13263 +RIAK,Jok,,,,,,,,,01/01/1966,,Sudan,South Sudan,D00008623,South Sudan number,M6600000258472,,Chief of Defence Forces. Former Sudan People’s Liberation Army’s (SPLA) Sector One Commander,Wau,,,,,Western Bahr El Ghazal,,South Sudan,"(UK Sanctions List Ref):SSU0002 (UN Ref):SSi.001 Appointed as Chief of Defence Forces on 2 May 2018. Commanded SPLA Sector One, which operates primarily within Unity State, since January 2013. In his position as the SPLA Sector One commander, he has expanded or extended the conflict in South Sudan through breaches of the Cessation of Hostilities Agreement. The SPLA is a South Sudanese military entity that has engaged in actions that have extended the conflict in South Sudan, including breaches of the January 2014 Cessation of Hostilities Agreement and the May 9, 2014 Agreement to Resolve the Crisis in South Sudan, which was a re-commitment to the CoHA and has obstructed the activities of IGAD’s Monitoring and Verification Mechanism. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879060",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13263 +RIDUAN,Isamuddin,,,,,,,,,04/04/1964,"Cianjur, West Java",Indonesia,Indonesia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0278 (UN Ref):QDi.087 Senior leader of Jemaah Islamiyah (QDe.092). Brother of Gun Gun Rusman Gunawan (QDi.218). In custody of the United States of America, as of July 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,7156 +RIDUAN,NURJAMAN,ISAMUDDIN,,,,,,,,04/04/1964,"Cianjur, West Java",Indonesia,Indonesia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0278 (UN Ref):QDi.087 Senior leader of Jemaah Islamiyah (QDe.092). Brother of Gun Gun Rusman Gunawan (QDi.218). In custody of the United States of America, as of July 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,7156 +RIDWAN,Isamudin,,,,,,,,,04/04/1964,"Cianjur, West Java",Indonesia,Indonesia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0278 (UN Ref):QDi.087 Senior leader of Jemaah Islamiyah (QDe.092). Brother of Gun Gun Rusman Gunawan (QDi.218). In custody of the United States of America, as of July 2007. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/01/2003,28/01/2003,31/12/2020,7156 +RIFKI,TAUFIK,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +RIFQI,Taufik,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +RIFQI,Tawfiq,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +RIHS,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0074 (UN Ref):QDe.070 NOTE: Only the Pakistan and Afghanistan offices of this entity are designated. Associated with Abu Bakr al-Jaziri (QDi.058) and Afghan Support Committee (ASC) (QDe.069). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281996,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,7210 +RIHS,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0074 (UN Ref):QDe.070 NOTE: Only the Pakistan and Afghanistan offices of this entity are designated. Associated with Abu Bakr al-Jaziri (QDi.058) and Afghan Support Committee (ASC) (QDe.069). Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281996,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,7210 +RIMASHEVSKIY,Alexey,Ivanovich,,,,,,,,29/06/1981,,,Belarus,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1070 (UK Statement of Reasons): Aliaksei Ivanavich RYMASHEUSKI is an involved person under the Russia (Sanctions) (EU Exit) 2019. As the Director General of Minsk Wheeled Tractor Plant (MZKT), he has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine.",Individual,Primary name variation,,Russia,24/03/2022,24/03/2022,12/07/2022,15013 +RIMASHEVSKIY,Aliaksei,Ivanavich,,,,,,,,29/06/1981,,,Belarus,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1070 (UK Statement of Reasons): Aliaksei Ivanavich RYMASHEUSKI is an involved person under the Russia (Sanctions) (EU Exit) 2019. As the Director General of Minsk Wheeled Tractor Plant (MZKT), he has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine.",Individual,Primary name variation,,Russia,24/03/2022,24/03/2022,12/07/2022,15013 +RIVERO MARCANO,Sergio,Jose,,,,,Sergio José Rivero Marcano,,,08/11/1964,,,Venezuela,,,,,Inspector General of the Bolivarian National Armed Forces,,,,,,,,,"(UK Sanctions List Ref):VEN0016 Vice President of the Bolivarian Republic of Venezuela (UK Statement of Reasons):General Commander of the Bolivarian National Guard until 16 January 2018. Involved in the repression of civil society and democratic opposition in Venezuela, and responsible for serious human rights violations committed by the Bolivarian National Guard under his command, including the excessive use of force, and the arbitrary detention and abuse of civil society and opposition members. His actions and policies as General Commander of the Bolivarian National Guard, including the Bolivarian National Guard assaulting members of the democratically elected National Assembly and intimidating journalists reporting on the fraudulent elections for the illegitimate Constituent Assembly, have undermined democracy and the rule of law in Venezuela. (Gender):Male",Individual,Primary name,,Venezuela,26/06/2018,31/12/2020,31/12/2020,13680 +RIYADH,,,,,,,,,,01/01/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +RIYADH,,,,,,,,,,01/02/1964,Cairo,Egypt,Egypt,(1) 6487 (2) - (3) 388181,"(1) Egypt number, issued on 30 Jan. 1986 issued under name Muhammad Jamal Abdu (2) Egypt issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif (3) Yemen number issued under name Muhammad Jamal Abd-Al Rahim Al-Kashif",,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0260 (UN Ref):QDi.318 Trained in Afghanistan in the late 1980s with Al-Qaida (QDe.004) to make bombs. Former top military commander of the Egyptian Islamic Jihad (QDe.003). Since 2011, established Muhammad Jamal Network (MJN) (QDe.136) and terrorist training camps in Egypt and Libya. Conducted MJN’s terrorist activities with support from Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Reported to be involved in the attack on the United States Mission in Benghazi, Libya, on 11 Sep. 2012. Headed Nasr City terrorist cell in Egypt in 2012. Linked to Aiman al-Zawahiri (QDi.006) and the leadership of AQAP and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Arrested and imprisoned multiple times by Egyptian authorities since ca. 2000. Released in 2011 but re-arrested by Egyptian authorities in Nov. 2012. Imprisoned in Egypt pending trial as of Sep. 2013. Wife’s name is Samah ‘Ali Al-Dahabani (Yemeni national). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5719795",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/11/2013,21/10/2013,11/02/2022,12884 +RIYADH-AS-SALIHEEN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0075 (UN Ref):QDe.100 Associated with the Islamic International Brigade (IIB) (QDe.099), the Special Purpose Islamic Regiment (SPIR) (QDe.101) and Emarat Kavkaz (QDe.131). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281893",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,31/12/2020,7138 +RIYADUS-SALIKHIN RECONNAISSANCE AND SABOTAGE BATTALION,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0075 (UN Ref):QDe.100 Associated with the Islamic International Brigade (IIB) (QDe.099), the Special Purpose Islamic Regiment (SPIR) (QDe.101) and Emarat Kavkaz (QDe.131). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281893",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,31/12/2020,7138 +RIYADUS-SALIKHIN RECONNAISSANCE AND SABOTAGE BATTALION OF CHECHEN MARTYRS,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0075 (UN Ref):QDe.100 Associated with the Islamic International Brigade (IIB) (QDe.099), the Special Purpose Islamic Regiment (SPIR) (QDe.101) and Emarat Kavkaz (QDe.131). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281893",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,31/12/2020,7138 +RIYADUS-SALIKHIN RECONNAISSANCE AND SABOTAGE BATTALION OF SHAHIDS MARTYRS,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0075 (UN Ref):QDe.100 Associated with the Islamic International Brigade (IIB) (QDe.099), the Special Purpose Islamic Regiment (SPIR) (QDe.101) and Emarat Kavkaz (QDe.131). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281893",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,31/12/2020,7138 +RIZK,Raymond,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0205 (UK Statement of Reasons):Raymond Rizq is an engineer at the Syrian Scientific Studies and Research Centre, involved in chemical weapons proliferation and delivery. He has been involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is associated with the Syrian Scientific Studies and Research Centre, a listed entity (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13505 +RIZQ,Raymond,,,,,,رزق ريمون,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0205 (UK Statement of Reasons):Raymond Rizq is an engineer at the Syrian Scientific Studies and Research Centre, involved in chemical weapons proliferation and delivery. He has been involved in the construction of barrel bombs which have been used against the civilian population in Syria. He is associated with the Syrian Scientific Studies and Research Centre, a listed entity (Gender):Male",Individual,Primary name,,Syria,18/07/2017,31/12/2020,31/12/2020,13505 +ROBI,Al Zawahry,Aiman,Mohamed,,,,,,,19/06/1951,Giza,Egypt,Egypt,(1) 1084010 (2) 19820215,(1) Egyptian (2) - .,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0126 (UN Ref):QDi.006 Leader of Al-Qaida (QDe.004). Former operational and military leader of Egyptian Islamic Jihad (QDe.003), was a close associate of Usama Bin Laden (deceased). Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487197",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7016 +ROCHMAN,OMAN,,,,,Ustadz,,,,05/01/1972,Sumedang,Indonesia,Indonesia,,,,,,Pasir Putih Prison,,,,,Nusa Kambangan Island,,Indonesia,"(UK Sanctions List Ref):AQD0280 (UN Ref):QDi.407 De facto leader for all Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115), supporters in Indonesia, despite his incarceration in Indonesia since December 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116589",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13518 +ROCKET AND SPACE CENTRE PROGRESS JSC,,,,,,,,,,,,,,,,,,,18 Pskovskaya Street,,,,,Samara,443009,Russia,"(UK Sanctions List Ref):RUS1352 (UK Statement of Reasons):Rocket and Space Centre Progress JSC is a developer of space-related vehicles, complexes and systems. Rockets and satellites that have been developed by this entity are used by Russian military forces in their invasion of Ukraine and by the Russian state to show support for their invasion. They have therefore contributed to the destabilising of Ukraine and have undermined or threatened the territorial integrity, sovereignty or independence of Ukraine. (Phone number):+7 (846) 955-1361 (Website):www.samspace.ru (Email address):mail@samspace.ru (Parent company):Roscosmos",Entity,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15307 +RODIKOV,Mikhail,Leonidovich,,,,,Михаил Леонидович Родиков,Cyrillic,Russian,26/01/1958,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1625 (UK Statement of Reasons):Mikhail Leonidovich RODIKOV is a Russian official Russian-installed administration in occupied Kherson, Ukraine. RODIKOV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he is or has been engaged in policies or actions, which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine",Individual,Primary name,,Russia,26/09/2022,26/09/2022,28/09/2022,15569 +RODINA,Victoria,Sergeevna,,,,,Виктория Сергеевна Родина,,,29/10/1989,Kaliningrad,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0629 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14574 +RODKIN,Andrei,Nikolaevich,,,,,,,,23/09/1976,Moscow,Russia,Ukraine,,,,,Moscow Representative of the so- called ‘Donetsk People’s Republic’,,,,,,,,,"(UK Sanctions List Ref):RUS0121 (UK Statement of Reasons):Former Moscow Representative of the ‘Donetsk People’s Republic’. In his statements he has, inter alia, talked about the militia’s readiness to conduct a guerrilla war and their seizure of weapon systems from the Ukrainian armed forces. He has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. One of the former leaders of the ‘Union of Donbas volunteers. One of the former leaders of the ‘Union of Donbas Volunteers’. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,31/12/2020,13097 +RODNINA,Irina,Konstantinovna,,,,,Ирина Константиновна Роднина,,,09/12/1949,Moscow,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0673 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14624 +RODRIGUEZ GOMEZ,Delcy,Eloina,,,,,Delcy Eloina Rodríguez Gómez,,,18/05/1969,,,,,,,,Vice-President of Venezuela,,,,,,,,,"(UK Sanctions List Ref):VEN0010 President of the National Constituent Assembly (UK Statement of Reasons):Vice President of Venezuela, acting Minister of Economy and Finance, former President of the illegitimate Constituent Assembly, and former member of the Presidential Commission for the illegitimate National Constituent Assembly. There are reasonable grounds to suspect that her actions on the Presidential Commission and then as President of the Constituent Assembly have undermined democracy and the rule of law in Venezuela, including usurping the powers of the National Assembly and using them to target the opposition and prevent them taking part in the political process. (Gender):Female",Individual,Primary name,,Venezuela,26/06/2018,31/12/2020,25/03/2021,13687 +ROGASHCHUK,Nikolai,Mikhailovich,,,,,РОГАЩУК Николай Михайлович,Cyrillic,Russian,00/00/1979,Pinsk,Belarus,Belarus,,,,,Assistant to the President of Belarus and Inspector for the Gomel Region,,,,,,,,,"(UK Sanctions List Ref):RUS0717 (UK Statement of Reasons):Nikolai Mikhailovich ROGASHCHUK is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he has been involved in in destabilizing Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, on the basis of having been, and being, involved in engaging in or providing support for policies or actions, which destabilise Ukraine or undermine or threated the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14668 +ROGO,Aboud,Mohammad,,,,,,,,11/11/1960,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +ROGO,Aboud,Mohammad,,,,,,,,11/11/1967,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +ROGO,Aboud,Mohammad,,,,,,,,11/11/1969,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +ROGO,Aboud,Mohammad,,,,,,,,01/01/1969,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +ROGO,Aboud,Mohammed,,,,,,,,11/11/1960,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +ROGO,Aboud,Mohammed,,,,,,,,11/11/1967,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +ROGO,Aboud,Mohammed,,,,,,,,11/11/1969,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +ROGO,Aboud,Mohammed,,,,,,,,01/01/1969,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +ROGO,Aboud,Seif,,,,,,,,11/11/1960,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +ROGO,Aboud,Seif,,,,,,,,11/11/1967,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +ROGO,Aboud,Seif,,,,,,,,11/11/1969,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +ROGO,Aboud,Seif,,,,,,,,01/01/1969,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +ROGO,Sheikh,Aboud,,,,,,,,11/11/1960,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +ROGO,Sheikh,Aboud,,,,,,,,11/11/1967,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +ROGO,Sheikh,Aboud,,,,,,,,11/11/1969,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +ROGO,Sheikh,Aboud,,,,,,,,01/01/1969,Lamu Island,Kenya,,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0011 (UN Ref):SOi.011,Individual,AKA,Good quality,Somalia,16/10/2012,25/07/2012,31/12/2020,12735 +ROGOV,Vladimir,,,,,,Владимир Рогов,,Russian,01/12/1976,Zaporizhzhia,Ukraine,Ukraine,,,,,Member of the so-called Military-Civilian Administration of Russian-occupied Zaporizhzhia Region,,,,,,,,,"(UK Sanctions List Ref):RUS1558 (UK Statement of Reasons):Vladimir ROGOV is a member of the so-called Military-Civilian Administration in Russian-occupied Zaporizhzhia. ROGOV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he is or has engaged in policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15502 +ROGOV,Volodymyr,,,,,,,,,01/12/1976,Zaporizhzhia,Ukraine,Ukraine,,,,,Member of the so-called Military-Civilian Administration of Russian-occupied Zaporizhzhia Region,,,,,,,,,"(UK Sanctions List Ref):RUS1558 (UK Statement of Reasons):Vladimir ROGOV is a member of the so-called Military-Civilian Administration in Russian-occupied Zaporizhzhia. ROGOV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he is or has engaged in policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15502 +ROGOZIN,Dmitry,Olegovich,,,,,,,,21/12/1963,Moscow,,Russia,,,,,"Former Deputy Prime Minister, Russian Federation",,,,,,Moscow,,Russia,(UK Sanctions List Ref):RUS0122 (UK Statement of Reasons):Former Deputy Prime Minister of the Russian Federation in charge of the Defence Industry. Publicly called for the annexation of Crimea. Since 2018 holds the position of General Director in a State corporation. (Gender):Male,Individual,Primary name,,Russia,21/03/2014,31/12/2020,14/02/2022,12935 +ROHIMBERE,Eric,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +ROHIMBERE,Erick,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +ROLDUGIN,Sergei,Pavlovich,,,,,РОЛДУГИН Сергей Павлович,Cyrillic,Russian,28/09/1951,Sakhalin Oblast,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0752 (UK Statement of Reasons):There are reasonable grounds to suspect that Sergei Pavlovich ROLDUGIN is associated with and has obtained other material benefit from President Vladimir Putin (RUS0251) and the Russian state. Sergei Pavlovich ROLDUGIN is a close friend and associate of Vladimir Putin (RUS0251) who has been designated by the UK since 25 February 2022. Vladimir Vladimirovich PUTIN (RUS0251) is the President of the Russian Federation, carrying ultimate authority for the policy of the Russian government and Russian armed forces. In February 2022, Putin ordered Russian military forces to launch an invasion of Ukraine, undermining and threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14703 +ROMANENKO,Roman,Yurievich,,,,,Роман Юрьевич Романенко,,,09/08/1971,"Shchelkovo, Moscow",Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0280 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14225 +ROMANOV,Arkadiy,Yurevich,,,,Vice Admiral,РОМАНОВ Аркадий Юрьевич,Cyrillic,Russian,08/04/1969,Moscow,Russia,Russia,,,,,Deputy Commander of the Black Sea Fleet,14 Kolymazhnyy Pereulok,,,,,MOSCOW,119019,Russia,"(UK Sanctions List Ref):RUS1340 (UK Statement of Reasons):Vice Admiral Arkadiy Yurevich ROMANOV is a member of the Armed Forces of the Russian Federation, he currently holds the position of Deputy Commander of the Black Sea Fleet in the Navy of the Russian Federation. He is considered to have been either in direct command of or in a position to hold considerable situational awareness of troops involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15291 +ROMANOV,Mikhail,Valentinovich,,,,,Михаил Валентинович Романов,,,03/11/1984,Leningrad/St Petersburg,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0597 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14542 +ROMASHKIN,Ruslan,Aleksandrovich,,,,,,,,15/06/1976,"Ruzaevka, Mordovia",Russia,Russia,,,,,Head of Service of the Control Point in the 'Republic of Crimea and City of Sevastopol' of the Federal Security Service of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS0210 (UK Statement of Reasons):Head of the Service of the Control Point in the ""Republic of Crimea and Sevastopol"" of the Federal Security Service of the Russian Federation, 1st rank captain. He actively participated in coordinating the actions of the Russian Federation forces against Ukrainian vessels and their crews on 25 November 2018 and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13783 +ROMASHKIN,Ruslan,Alexandrovich,,,,Captain 1st Rank,,,,15/06/1976,"Ruzaevka, Mordovia",Russia,Russia,,,,,Head of Service of the Control Point in the 'Republic of Crimea and City of Sevastopol' of the Federal Security Service of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS0210 (UK Statement of Reasons):Head of the Service of the Control Point in the ""Republic of Crimea and Sevastopol"" of the Federal Security Service of the Russian Federation, 1st rank captain. He actively participated in coordinating the actions of the Russian Federation forces against Ukrainian vessels and their crews on 25 November 2018 and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2019,31/12/2020,31/12/2020,13783 +ROMBHOT,,,,,,Colonel,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,,The Hague,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Low quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +ROMBHOT,,,,,,Colonel,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Bimbo,Ombella-Mpoko province,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Low quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +ROMBHOT,,,,,,Colonel,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Mbaiki,Lobaye Province,,,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Low quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +ROMBOH,,,,,,Colonel,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,,The Hague,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Low quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +ROMBOH,,,,,,Colonel,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Bimbo,Ombella-Mpoko province,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Low quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +ROMBOH,,,,,,Colonel,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Mbaiki,Lobaye Province,,,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Low quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +ROMBOT,,,,,,Colonel,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,,The Hague,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Low quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +ROMBOT,,,,,,Colonel,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Bimbo,Ombella-Mpoko province,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Low quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +ROMBOT,,,,,,Colonel,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Mbaiki,Lobaye Province,,,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Low quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +ROMEO,Tango,,,,,,,,,00/00/1973,Bigogwe,Rwanda,Congo (Democratic Republic),,,,,(1) Former Chief of Staff in CNDP (2) Former CNDP military commander,,,,,,The Hague,,Netherlands,"(UK Sanctions List Ref):DRC0025 (UN Ref):CDi.030 Born in Rwanda, he moved to Nyamitaba,Masisi territory, North Kivu, when he was a child. Nominated FARDC Brigadier-General by Presidential Decree on 11 December 2004, following Ituri peace agreements. Formerly Chief of Staff in CNDP and became CNDP military commander since the arrest of Laurent Nkunda in January 2009. Since January 2009, de facto Deputy Commander of consecutive anti-FDLR operations ‘Umoja Wetu’, ‘Kimia II’, and ‘Amani Leo’ in North and South Kivu. Entered Rwanda in March 2013, and voluntarily surrender to ICC officials in Kigali on March 22. Transferred to the ICC in The Hague, Netherlands. On 9 June 2014, ICC confirmed 13 charges of war crimes and five charges of crimes against humanity against him; the trial started in September 2015. On 8 July 2019, the ICC found him guilty of 18 counts of war crimes and crimes against humanity, committed in Ituri in 2002-2003. On 7 November 2019, he was sentenced to a total of 30 years imprisonment. He has appealed both his conviction and sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,18/02/2021,8736 +ROMEO,Tango,,,,,,,,,00/00/1974,Bigogwe,Rwanda,Congo (Democratic Republic),,,,,(1) Former Chief of Staff in CNDP (2) Former CNDP military commander,,,,,,The Hague,,Netherlands,"(UK Sanctions List Ref):DRC0025 (UN Ref):CDi.030 Born in Rwanda, he moved to Nyamitaba,Masisi territory, North Kivu, when he was a child. Nominated FARDC Brigadier-General by Presidential Decree on 11 December 2004, following Ituri peace agreements. Formerly Chief of Staff in CNDP and became CNDP military commander since the arrest of Laurent Nkunda in January 2009. Since January 2009, de facto Deputy Commander of consecutive anti-FDLR operations ‘Umoja Wetu’, ‘Kimia II’, and ‘Amani Leo’ in North and South Kivu. Entered Rwanda in March 2013, and voluntarily surrender to ICC officials in Kigali on March 22. Transferred to the ICC in The Hague, Netherlands. On 9 June 2014, ICC confirmed 13 charges of war crimes and five charges of crimes against humanity against him; the trial started in September 2015. On 8 July 2019, the ICC found him guilty of 18 counts of war crimes and crimes against humanity, committed in Ituri in 2002-2003. On 7 November 2019, he was sentenced to a total of 30 years imprisonment. He has appealed both his conviction and sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,18/02/2021,8736 +ROODSARI,Mohammad,Hossein,Shafiei,,,,,,,,,,,,,,,Former MODAFL Deputy for Coordination,,,,,,,,,(UK Sanctions List Ref):INU0012 (UK Statement of Reasons):Former MODAFL Deputy for Coordination (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10645 +ROODSARI,Mohammad,Shafiei,,,,,,,,,,,,,,,,Former MODAFL Deputy for Coordination,,,,,,,,,(UK Sanctions List Ref):INU0012 (UK Statement of Reasons):Former MODAFL Deputy for Coordination (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10645 +RORUIMBERE,Eric,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +RORUIMBERE,Erick,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +ROSGUARDIA CHECHNYA,,,,,,,,,,,,,,,,,,,,,,,Grozny,Republic of Chechnya,,Russia,(UK Sanctions List Ref):GHR0066 (UK Statement of Reasons):Ramzan Kadyrov’s leadership of the Chechen Republic in Russia has been characterised by the systematic persecution of critics of the Chechen authorities and of perceived subversives. This has included the systematic use of murder and CIDT against LGBT Chechens and human rights defenders. There is a considerable and credible body of evidence strongly indicating that the Terek Rapid Response Unit has been heavily involved in the murder and use of CIDT against LGBT Chechens since 2017. (Type of entity):Special Police Unit,Entity,AKA,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14007 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,Chaghi,Chaghi District,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,Cholmon Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,Flat number 4,Furqan Centre,Jamaluddin Afghani Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,Gerd-e-Jangal,Chaghi District,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,Haji Ghulam Nabi Market,Lashkar Gar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,Hazar Joft,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,Ismat Bazaar,Marjah District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,Lakri City,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,Lashkar Gar Bazaar,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,Main Bazaar,Safar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,Money Exchange Market,Lashkar Gar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,Munsafi Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,"Office number 4, 2nd Floor",Muslim Plaza Building,Doctor Banu Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,Safar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,"Shop number 1, 1st Floor",Kadari Place,Abdul Samad Khan Street (next to Fatima Jena Road),,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,Shop number 1584,Furqan (Fahr Khan) Centre,Chalhor Mal Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,"Shop number 25, 5th Floor",Sarafi Market,,Kandahar City,Kandahar District,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,"Suite number 8, 4th Floor",Sarafi Market,District number 1,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN MONEY EXCHANGE,,,,,,,صرافی روشان,,,,,,,,,,,,Zaranj,,,,,Nimruz Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,Primary name,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,Chaghi,Chaghi District,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,Cholmon Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,Flat number 4,Furqan Centre,Jamaluddin Afghani Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,Gerd-e-Jangal,Chaghi District,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,Haji Ghulam Nabi Market,Lashkar Gar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,Hazar Joft,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,Ismat Bazaar,Marjah District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,Lakri City,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,Lashkar Gar Bazaar,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,Main Bazaar,Safar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,Money Exchange Market,Lashkar Gar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,Munsafi Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,"Office number 4, 2nd Floor",Muslim Plaza Building,Doctor Banu Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,Safar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,"Shop number 1, 1st Floor",Kadari Place,Abdul Samad Khan Street (next to Fatima Jena Road),,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,Shop number 1584,Furqan (Fahr Khan) Centre,Chalhor Mal Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,"Shop number 25, 5th Floor",Sarafi Market,,Kandahar City,Kandahar District,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,"Suite number 8, 4th Floor",Sarafi Market,District number 1,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SARAFI,,,,,,,,,,,,,,,,,,,Zaranj,,,,,Nimruz Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,Chaghi,Chaghi District,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,Cholmon Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,Flat number 4,Furqan Centre,Jamaluddin Afghani Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,Gerd-e-Jangal,Chaghi District,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,Haji Ghulam Nabi Market,Lashkar Gar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,Hazar Joft,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,Ismat Bazaar,Marjah District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,Lakri City,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,Lashkar Gar Bazaar,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,Main Bazaar,Safar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,Money Exchange Market,Lashkar Gar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,Munsafi Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,"Office number 4, 2nd Floor",Muslim Plaza Building,Doctor Banu Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,Safar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,"Shop number 1, 1st Floor",Kadari Place,Abdul Samad Khan Street (next to Fatima Jena Road),,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,Shop number 1584,Furqan (Fahr Khan) Centre,Chalhor Mal Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,"Shop number 25, 5th Floor",Sarafi Market,,Kandahar City,Kandahar District,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,"Suite number 8, 4th Floor",Sarafi Market,District number 1,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN SHIRKAT,,,,,,,,,,,,,,,,,,,Zaranj,,,,,Nimruz Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Chaghi,Chaghi District,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Cholmon Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Flat number 4,Furqan Centre,Jamaluddin Afghani Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Gerd-e-Jangal,Chaghi District,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Haji Ghulam Nabi Market,Lashkar Gar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Hazar Joft,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Ismat Bazaar,Marjah District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Lakri City,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Lashkar Gar Bazaar,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Main Bazaar,Safar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Money Exchange Market,Lashkar Gar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Munsafi Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,"Office number 4, 2nd Floor",Muslim Plaza Building,Doctor Banu Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Safar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,"Shop number 1, 1st Floor",Kadari Place,Abdul Samad Khan Street (next to Fatima Jena Road),,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Shop number 1584,Furqan (Fahr Khan) Centre,Chalhor Mal Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,"Shop number 25, 5th Floor",Sarafi Market,,Kandahar City,Kandahar District,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,"Suite number 8, 4th Floor",Sarafi Market,District number 1,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSHAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Zaranj,,,,,Nimruz Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +ROSMACHIN,,,,,,,,,,,,,,,,,,,Haftom Tir Square,South Mofte Avenue,Tour Line No 3/1,,,Tehran,,Iran,(UK Sanctions List Ref):INU0106 (UK Statement of Reasons):Front company of Sad Export Import Company. Has supported entities involved in Iran's nuclear activities through its involvement in an illicit arms transfer aboard M/V Monchegorsk (Type of entity):Export,Entity,Primary name,,Iran (Nuclear),24/01/2012,31/12/2020,31/12/2020,12493 +ROSMACHIN,,,,,,,,,,,,,,,,,,,PO Box 1584864813,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0106 (UK Statement of Reasons):Front company of Sad Export Import Company. Has supported entities involved in Iran's nuclear activities through its involvement in an illicit arms transfer aboard M/V Monchegorsk (Type of entity):Export,Entity,Primary name,,Iran (Nuclear),24/01/2012,31/12/2020,31/12/2020,12493 +ROSMASHIN,,,,,,,,,,,,,,,,,,,Haftom Tir Square,South Mofte Avenue,Tour Line No 3/1,,,Tehran,,Iran,(UK Sanctions List Ref):INU0106 (UK Statement of Reasons):Front company of Sad Export Import Company. Has supported entities involved in Iran's nuclear activities through its involvement in an illicit arms transfer aboard M/V Monchegorsk (Type of entity):Export,Entity,AKA,,Iran (Nuclear),24/01/2012,31/12/2020,31/12/2020,12493 +ROSMASHIN,,,,,,,,,,,,,,,,,,,PO Box 1584864813,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0106 (UK Statement of Reasons):Front company of Sad Export Import Company. Has supported entities involved in Iran's nuclear activities through its involvement in an illicit arms transfer aboard M/V Monchegorsk (Type of entity):Export,Entity,AKA,,Iran (Nuclear),24/01/2012,31/12/2020,31/12/2020,12493 +ROSNEFT AERO,,,,,,,,,,,,,,,,,,,"15, Malaya Kaluzhskaya Str",,,,,Moscow,119071,Russia,"(UK Sanctions List Ref):RUS1040 (UK Statement of Reasons):ROSNEFT AERO is a Russian company selling aviation fuel and other related services to Russian airports. ROSNEFT AERO is therefore carrying on business in a sector of strategic significance to the Government of Russia, the Russian transport sector, thereby obtaining a benefit from or supporting the Government of Russia. ROSNEFT AERO is also a Government of Russia-affiliated entity in which the Government of Russia holds directly or indirectly a minority interest. As a result, ROSNEFT AERO is involved in obtaining a benefit from or supporting the Government of Russia. (Phone number):+7 (499) 517-76-56 (Email address):info@rn-aero.rosneft.ru",Entity,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14977 +ROSSEEV,Mikhail,Nikolaevich,,,,,Михаил Николаевич Россеев,Cyrillic,Russian,06/02/1975,,,Russia,,,,,Member of the Board of Directors of Gazprombank JSC,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1632 (UK Statement of Reasons):Mikhail Nikolaevich Rosseev is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by:(1) working as a director of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a director of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15576 +ROSSEL,Eduard,Ergartovich,,,,,Эдуард Эргартович Россель,,,10/08/1937,Bor,Russia,Russia,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,,103426,Russia,"(UK Sanctions List Ref):RUS1370 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,04/05/2022,04/05/2022,04/05/2022,15347 +ROSSIJSKAJA VENCHURNAJA KOMPANIJA,,,,,,,,,,,,,,,,,,,D. 8,"Str. 1, Etaj 12",Nab. Presnenskaya,,,Moscow,123113,Russia,"(UK Sanctions List Ref):RUS1085 (UK Statement of Reasons):RUSSIAN VENTURE COMPANY is a Russian State-owned “fund of funds” created for the development of the Russian venture capital market. There are reasonable grounds to suspect that the RUSSIAN VENTURE COMPANY is or has been involved in obtaining a benefit from or supporting the Government of Russia by, carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):+7 (499) 750-09-11 (Website):https://Rvc.ru",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,24/06/2022,15028 +ROSSIYA SEGODNYA,,,,,,,,,,,,,,,,,,,4 Zubovsky Boulevard,,,,,Moscow,119021,Russia,"(UK Sanctions List Ref):RUS1103 Internet Services Sanctions: When an individual or entity is designated for the purposes of this measure, social media services, internet access services and application stores must take reasonable steps to prevent users in the UK from accessing content, sites or applications provided by designated individuals or entities. (UK Statement of Reasons):Rossiya Segodnya is a major Russian media organisation established by and receiving financial backing from the Russian state. It is obtaining a benefit from or supporting the Government of Russia by carrying on business as a Government of Russia-affiliated entity and carrying on business in a strategically significant sector to the Government of Russia, namely information, communications and digital technologies. (Phone number):+7 (495) 645 6601 (Website):https://rossiyasegodnya.com (Type of entity):Broadcasting and online media platform (Business Reg No):5137746242937",Entity,Primary name,,Russia,31/03/2022,31/03/2022,04/05/2022,15064 +ROSSOLAI,Vyacheslav,Evgenievich,,,,,,,,17/10/1981,,,Belarus,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1069 (UK Statement of Reasons):Viachaslau RASSALAI, is an involved person under the Russia (Sanctions) (EU Exit) 2019. As the Deputy Minister of State Authority for Military Industry of the Republic of Belarus (SAMI) he has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine.",Individual,Primary name variation,,Russia,24/03/2022,24/03/2022,12/07/2022,15012 +ROSSOLAY,Vyacheslav,,,,,,,,,17/10/1981,,,Belarus,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1069 (UK Statement of Reasons):Viachaslau RASSALAI, is an involved person under the Russia (Sanctions) (EU Exit) 2019. As the Deputy Minister of State Authority for Military Industry of the Republic of Belarus (SAMI) he has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine.",Individual,Primary name variation,,Russia,24/03/2022,24/03/2022,12/07/2022,15012 +ROSTAMI AGHDAM,Ali,Ashraf,,,,,,,,,,,,,,,,(1) Deputy Director General for Health and Rehabilitation of the General Directorate of the Prisons of Tehran (2) Former Head of Evin Prison,,,,,,,,,"(UK Sanctions List Ref):IHR0009 (UK Statement of Reasons):Former Head of Evin Prison, appointed in mid-2012. During his tenure, conditions in the prison deteriorated and reports referenced intensified ill-treatment of prisoners. In October 2012, nine female prisoners went on hunger strike in protest of the violation of their rights and violent treatment by prison guards. (Gender):Male",Individual,AKA,,Iran (Human Rights),12/03/2013,31/12/2020,16/02/2022,12849 +ROSTEC,,,,,,,,,,,,,,,,,,,24 Usacheva Street,,,,,Moscow,119048,Russia,"(UK Sanctions List Ref):RUS0238 Previous name(s): Rostekhnologii [Russian Technologies] (UK Statement of Reasons):Rostec is a major Russian state owned defence conglomerate. It is a major supplier of the Russian military and related enterprises. Rostec and its subsidiaries, provide financial services or makes available funds and economic resources, goods and/or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Phone number):+7(495)2872525 (Website):https://www.rostec.ru (Email address):info@rostec.ru (Type of entity):State Corporation (Business Reg No):1077799030847",Entity,Primary name variation,,Russia,24/02/2022,24/02/2022,24/02/2022,14185 +ROTENBERG,Boris,Romanovich,,,,,Борис Романович Ротенберг,,,01/03/1957,,,(1) Russia (2) Finland,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0246 Other suspected locations: Moscow, Russia (UK Statement of Reasons):Boris Rotenberg, hereafter Rotenberg, is a prominent Russian businessman with close personal ties to Russian President, Vladimir Putin. Rotenberg is a major shareholder of SMP Bank and sits on its Board of Directors. Rotenberg therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by virtue of owning or controlling directly or indirectly"" or ""working as a director"" or ""equivalent"" at SMP Bank which is a Russian Government affiliated-entity which obtains a financial benefit or other material benefit from the Government of Russia and is carrying out business in the finance sector which is a sector of strategic significance to the Government of Russia.",Individual,Primary name,,Russia,22/02/2022,22/02/2022,22/02/2022,14182 +ROTENBERG,Arkady,Romanovich,,,,,Аркадий Романович РОТЕНБЕРГ,,,15/12/1951,Leningrad (St Petersburg),Russian Federation,Russia,,,,,(1) Previous Chairman of House of Prosvescheniye (2) Previous owner of Stroygazmontazh,,,,,,,,,"(UK Sanctions List Ref):RUS1552 (UK Statement of Reasons):Arkady Rotenberg has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine by being responsible for, engaging in, providing support for, or promoting any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine, through the construction of the Kerch Bridge, and a railway line on the bridge, from Russia to the illegally annexed autonomous Republic of Crimea, by Stroygazmontazh, his former company which received a State contract for the construction of the bridge, and a railway line on the bridge, which undermines the territorial integrity, sovereignty and independence of Ukraine. Rotenberg has also been involved in obtaining a benefit from or supporting the Government of Russia by owning or controlling directly or indirectly, Stroygazmontazh, an entity carrying on business in the Russian construction and transport sectors, sectors of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,16/09/2022,16/09/2022,16/09/2022,15498 +ROTENBERG,Boris,Borisovich,,,,,Борис Борисович РОТЕНБЕРГ,Cyrillic,Russian,19/05/1986,St Petersburg,Russia,(1) Finland (2) Russia,,,,,,46 Cadogan Lane,,,,,London,SW1X9DX,United Kingdom,(UK Sanctions List Ref):RUS1121 (UK Statement of Reasons):There are reasonable grounds to suspect that Boris Borisovich ROTENBERG is associated with and has received a financial or other material benefit from Boris Romanovich ROTENBERG. Boris Borisovich ROTENBERG is the son of Boris Romanovich ROTENBERG (RUS0246). Boris Romanovich ROTENBERG is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019.,Individual,Primary name,,Russia,06/04/2022,06/04/2022,14/06/2022,15069 +ROTENBERG,Igor,Arkadyevich,,,,,Игорь Аркадьевич Ротенберг,,,09/09/1974,Leningrad (St Petersburg),Russia,Russia,,,,,(1) Chairman of Board of Directors of National Telematic Systems (2) Shareholder in RT Invest Transport Systems (RTITS),,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0247 (UK Statement of Reasons):Igor Rotenberg is a prominent Russian businessmen with close familial ties to President Putin. Igor Rotenberg is the Chairman of the Board of Directors of National Telematic Systems (NTS). NTS is conducting business in the transport sector, which is of strategic significance to the Government of Russia, and therefore through his role as Chairman of the Board of Directors to NTS, Igor Rotenberg is benefiting from or supporting the Government of Russia. Igor Rotenberg is also a shareholder in RT-Invest Transport Systems (RTITS). RTITS, through the ""Platon"" toll system, is conducting business in the transport sector, which is of strategic significance to the Government of Russia. It is also obtaining a benefit from the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,22/02/2022,22/02/2022,22/02/2022,14183 +ROTENBERG,Karina,,,,,,РОТЕНБЕРГ Карина Юрьевна,Cyrillic,Russian,24/11/1978,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0803 (UK Statement of Reasons):There are reasonable grounds to suspect that Karina ROTENBERG is associated with Boris Romanovich ROTENBERG; Karina ROTENBERG is the wife of Boris Romanovich ROTENBERG (RUS0246). Boris Romanovich ROTENBERG has been designated by the UK since 22/02/2022. Boris Romanovich ROTENBERG is a prominent Russian businessman with close personal ties to Russian President, Vladimir Putin. Boris Romanovich ROTENBERG is a major shareholder of SMP Bank, where he sits on the Board of Directors. Boris Romanovich ROTENBERG therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by virtue of owning or controlling directly or indirectly"" or ""working as a director"" or ""equivalent"" at SMP Bank, a Government of Russia affiliated-entity which obtains a financial benefit or other material benefit from the Government of Russia and is carrying out business in the finance sector which is a sector of strategic significance to the Government of Russia. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14754 +ROTENBERG,Liliya,Arkadyevna,,,,,РОТЕНБЕРГ Лилия Аркадьевна,Cyrillic,Russian,17/04/1978,,,,,,,,,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0804 (UK Statement of Reasons):There are reasonable grounds to suspect that Liliya Arkadyevna ROTENBERG is associated with and has obtained a financial benefit from Arkady Romanovich ROTENBERG (RUS0123) and Igor Arkadyevich ROTENBERG (RUS0247). Liliya Arkadyevna ROTENBERG is the daughter of Arkady Romanovich ROTENBERG (RUS0123) who has been designated by the UK since 31/12/2020 and the sister of Igor Arkadyevich ROTENBERG (RUS0247) who has been designated by the UK since 22/02/2022. Arkady Rotenberg is a prominent Russian businessman who has close personal ties to President Putin. Since March 2014, Rotenberg, or his companies, have received State contracts totalling over USD 7 Billion. In 2015, Rotenberg led the annual list of government contracts in terms of value, after being awarded contracts worth 555 Billion roubles from the Russian Government. Many of these contracts were awarded without formal competitive processes. On 30 January 2015, Prime Minister Dmitry Medvedev signed a decree that awarded to Stroygazmontazh (Rotenberg’s company at the time), a State contract for the construction of the Kerch Bridge from Russia to the illegally annexed Autonomous Republic of Crimea. Through these contracts he has financially benefited from Russian Decision-makers responsible for the annexation of Crimea or the destabilisation of eastern Ukraine. He was the owner of the company Stroygazmontazh until 2019, which has been awarded a State contract for the construction of the Kerch bridge from Russia to the illegally annexed Autonomous Republic of Crimea, therefore consolidating its integration into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. Similarly, in January 2017, Stroygazmontazh was awarded the State contract worth 17 billion roubles for the construction of a railway line on the Kerch bridge, which again further undermines the territorial integrity of Ukraine. Other activities included being the the chairman of the board of directors of the publishing house Prosvescheniye until 2017, which has notably implemented the project ‘To the Children of Russia: Address- Crimea’, a public relations campaign that was designed to persuade Crimean children that they are now Russian citizens living in Russia, and thereby supporting the Russian Government's policy to integrate Crimea into Russia. Igor Arkadyevich ROTENBERG is a prominent Russian businessman with close familial ties to President Putin. Igor Arkadyevich ROTENBERG is the Chairman of the Board of Directors of National Telematic Systems (NTS). NTS is conducting business in the transport sector, which is of strategic significance to the Government of Russia, and therefore through his role as Chairman of the Board of Directors to NTS, Igor Arkadyevich ROTENBERG is benefiting from or supporting the Government of Russia. Igor Arkadyevich ROTENBERG is also a shareholder in RT-Invest Transport Systems (RTITS). RTITS, through the ""Platon"" toll system, is conducting business in the transport sector, which is of strategic significance to the Government of Russia. It is also obtaining a benefit from the Government of Russia. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14755 +ROTENBERG,Liliya,,,,,,,,,17/04/1978,,,,,,,,,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0804 (UK Statement of Reasons):There are reasonable grounds to suspect that Liliya Arkadyevna ROTENBERG is associated with and has obtained a financial benefit from Arkady Romanovich ROTENBERG (RUS0123) and Igor Arkadyevich ROTENBERG (RUS0247). Liliya Arkadyevna ROTENBERG is the daughter of Arkady Romanovich ROTENBERG (RUS0123) who has been designated by the UK since 31/12/2020 and the sister of Igor Arkadyevich ROTENBERG (RUS0247) who has been designated by the UK since 22/02/2022. Arkady Rotenberg is a prominent Russian businessman who has close personal ties to President Putin. Since March 2014, Rotenberg, or his companies, have received State contracts totalling over USD 7 Billion. In 2015, Rotenberg led the annual list of government contracts in terms of value, after being awarded contracts worth 555 Billion roubles from the Russian Government. Many of these contracts were awarded without formal competitive processes. On 30 January 2015, Prime Minister Dmitry Medvedev signed a decree that awarded to Stroygazmontazh (Rotenberg’s company at the time), a State contract for the construction of the Kerch Bridge from Russia to the illegally annexed Autonomous Republic of Crimea. Through these contracts he has financially benefited from Russian Decision-makers responsible for the annexation of Crimea or the destabilisation of eastern Ukraine. He was the owner of the company Stroygazmontazh until 2019, which has been awarded a State contract for the construction of the Kerch bridge from Russia to the illegally annexed Autonomous Republic of Crimea, therefore consolidating its integration into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. Similarly, in January 2017, Stroygazmontazh was awarded the State contract worth 17 billion roubles for the construction of a railway line on the Kerch bridge, which again further undermines the territorial integrity of Ukraine. Other activities included being the the chairman of the board of directors of the publishing house Prosvescheniye until 2017, which has notably implemented the project ‘To the Children of Russia: Address- Crimea’, a public relations campaign that was designed to persuade Crimean children that they are now Russian citizens living in Russia, and thereby supporting the Russian Government's policy to integrate Crimea into Russia. Igor Arkadyevich ROTENBERG is a prominent Russian businessman with close familial ties to President Putin. Igor Arkadyevich ROTENBERG is the Chairman of the Board of Directors of National Telematic Systems (NTS). NTS is conducting business in the transport sector, which is of strategic significance to the Government of Russia, and therefore through his role as Chairman of the Board of Directors to NTS, Igor Arkadyevich ROTENBERG is benefiting from or supporting the Government of Russia. Igor Arkadyevich ROTENBERG is also a shareholder in RT-Invest Transport Systems (RTITS). RTITS, through the ""Platon"" toll system, is conducting business in the transport sector, which is of strategic significance to the Government of Russia. It is also obtaining a benefit from the Government of Russia. (Gender):Female",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14755 +ROTENBERG,Pavel,,,,,,,,,20/02/2000,St Petersburg,Russia,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0805 (UK Statement of Reasons):There are reasonable grounds to suspect that Pavel Arkedyevich ROTENBERG is associated with and has obtained other material benefit from Arkady Romanovich ROTENBERG (RUS0123). Pavel Arkedyevich ROTENBERG is the son of Arkady Romanovich ROTENBERG (RUS0123) who has been designated by the UK since 31/12/2020. Arkady Rotenberg is a prominent Russian businessman who has close personal ties to President Putin. Since March 2014, Rotenberg, or his companies, have received State contracts totalling over USD 7 Billion. In 2015, Rotenberg led the annual list of government contracts in terms of value, after being awarded contracts worth 555 Billion roubles from the Russian Government. Many of these contracts were awarded without formal competitive processes. On 30 January 2015, Prime Minister Dmitry Medvedev signed a decree that awarded to Stroygazmontazh (Rotenberg’s company at the time), a State contract for the construction of the Kerch Bridge from Russia to the illegally annexed Autonomous Republic of Crimea. Through these contracts he has financially benefited from Russian Decision-makers responsible for the annexation of Crimea or the destabilisation of eastern Ukraine. He was the owner of the company Stroygazmontazh until 2019, which has been awarded a State contract for the construction of the Kerch bridge from Russia to the illegally annexed Autonomous Republic of Crimea, therefore consolidating its integration into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. Similarly, in January 2017, Stroygazmontazh was awarded the State contract worth 17 billion roubles for the construction of a railway line on the Kerch bridge, which again further undermines the territorial integrity of Ukraine. Other activities included being the the chairman of the board of directors of the publishing house Prosvescheniye until 2017, which has notably implemented the project ‘To the Children of Russia: Address- Crimea’, a public relations campaign that was designed to persuade Crimean children that they are now Russian citizens living in Russia, and thereby supporting the Russian Government's policy to integrate Crimea into Russia. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14756 +ROTENBERG,Pavel,Arkedyevich,,,,,РОТЕНБЕРГ Павел Аркедьевич,Cyrillic,Russian,20/02/2000,St Petersburg,Russia,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0805 (UK Statement of Reasons):There are reasonable grounds to suspect that Pavel Arkedyevich ROTENBERG is associated with and has obtained other material benefit from Arkady Romanovich ROTENBERG (RUS0123). Pavel Arkedyevich ROTENBERG is the son of Arkady Romanovich ROTENBERG (RUS0123) who has been designated by the UK since 31/12/2020. Arkady Rotenberg is a prominent Russian businessman who has close personal ties to President Putin. Since March 2014, Rotenberg, or his companies, have received State contracts totalling over USD 7 Billion. In 2015, Rotenberg led the annual list of government contracts in terms of value, after being awarded contracts worth 555 Billion roubles from the Russian Government. Many of these contracts were awarded without formal competitive processes. On 30 January 2015, Prime Minister Dmitry Medvedev signed a decree that awarded to Stroygazmontazh (Rotenberg’s company at the time), a State contract for the construction of the Kerch Bridge from Russia to the illegally annexed Autonomous Republic of Crimea. Through these contracts he has financially benefited from Russian Decision-makers responsible for the annexation of Crimea or the destabilisation of eastern Ukraine. He was the owner of the company Stroygazmontazh until 2019, which has been awarded a State contract for the construction of the Kerch bridge from Russia to the illegally annexed Autonomous Republic of Crimea, therefore consolidating its integration into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. Similarly, in January 2017, Stroygazmontazh was awarded the State contract worth 17 billion roubles for the construction of a railway line on the Kerch bridge, which again further undermines the territorial integrity of Ukraine. Other activities included being the the chairman of the board of directors of the publishing house Prosvescheniye until 2017, which has notably implemented the project ‘To the Children of Russia: Address- Crimea’, a public relations campaign that was designed to persuade Crimean children that they are now Russian citizens living in Russia, and thereby supporting the Russian Government's policy to integrate Crimea into Russia. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14756 +ROTENBERG,Roman,,,,,,,,,07/04/1981,,,(1) Russia (2) Finland,,,,,,Beregovaya; Street 6; Apartment 25,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0806 (UK Statement of Reasons):There are reasonable grounds to suspect that Roman Borisovich ROTENBERG is associated with Boris Romanovich ROTENBERG; Roman Borisovich ROTENBERG is the son of Boris Romanovich ROTENBERG (RUS0246). Boris Romanovich ROTENBERG has been designated by the UK since 22/02/2022. Boris Romanovich ROTENBERG is a prominent Russian businessman with close personal ties to Russian President, Vladimir Putin. Boris Romanovich ROTENBERG is a major shareholder of SMP Bank, where he sits on the Board of Directors. Boris Romanovich ROTENBERG therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by virtue of “owning or controlling directly or indirectly"""" or """"working as a director"""" or """"equivalent"""" at SMP Bank, a Government of Russia affiliated-entity which obtains a financial benefit or other material benefit from the Government of Russia and is carrying out business in the finance sector which is a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14757 +ROTENBERG,Roman,Borisovich,,,,,РОТЕНБЕРГ Роман Борисович,Cyrillic,Russian,07/04/1981,,,(1) Russia (2) Finland,,,,,,Beregovaya; Street 6; Apartment 25,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0806 (UK Statement of Reasons):There are reasonable grounds to suspect that Roman Borisovich ROTENBERG is associated with Boris Romanovich ROTENBERG; Roman Borisovich ROTENBERG is the son of Boris Romanovich ROTENBERG (RUS0246). Boris Romanovich ROTENBERG has been designated by the UK since 22/02/2022. Boris Romanovich ROTENBERG is a prominent Russian businessman with close personal ties to Russian President, Vladimir Putin. Boris Romanovich ROTENBERG is a major shareholder of SMP Bank, where he sits on the Board of Directors. Boris Romanovich ROTENBERG therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by virtue of “owning or controlling directly or indirectly"""" or """"working as a director"""" or """"equivalent"""" at SMP Bank, a Government of Russia affiliated-entity which obtains a financial benefit or other material benefit from the Government of Russia and is carrying out business in the finance sector which is a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14757 +ROTENBERG JUNIOR,Boris,,,,,,,,,19/05/1986,St Petersburg,Russia,(1) Finland (2) Russia,,,,,,46 Cadogan Lane,,,,,London,SW1X9DX,United Kingdom,(UK Sanctions List Ref):RUS1121 (UK Statement of Reasons):There are reasonable grounds to suspect that Boris Borisovich ROTENBERG is associated with and has received a financial or other material benefit from Boris Romanovich ROTENBERG. Boris Borisovich ROTENBERG is the son of Boris Romanovich ROTENBERG (RUS0246). Boris Romanovich ROTENBERG is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019.,Individual,Primary name variation,,Russia,06/04/2022,06/04/2022,14/06/2022,15069 +ROTHENBERG,Boris,,,,,,,,,01/03/1957,,,(1) Russia (2) Finland,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0246 Other suspected locations: Moscow, Russia (UK Statement of Reasons):Boris Rotenberg, hereafter Rotenberg, is a prominent Russian businessman with close personal ties to Russian President, Vladimir Putin. Rotenberg is a major shareholder of SMP Bank and sits on its Board of Directors. Rotenberg therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by virtue of owning or controlling directly or indirectly"" or ""working as a director"" or ""equivalent"" at SMP Bank which is a Russian Government affiliated-entity which obtains a financial benefit or other material benefit from the Government of Russia and is carrying out business in the finance sector which is a sector of strategic significance to the Government of Russia.",Individual,Primary name variation,,Russia,22/02/2022,22/02/2022,22/02/2022,14182 +ROTHENBERG,Igor,,,,,,,,,09/09/1974,Leningrad (St Petersburg),Russia,Russia,,,,,(1) Chairman of Board of Directors of National Telematic Systems (2) Shareholder in RT Invest Transport Systems (RTITS),,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0247 (UK Statement of Reasons):Igor Rotenberg is a prominent Russian businessmen with close familial ties to President Putin. Igor Rotenberg is the Chairman of the Board of Directors of National Telematic Systems (NTS). NTS is conducting business in the transport sector, which is of strategic significance to the Government of Russia, and therefore through his role as Chairman of the Board of Directors to NTS, Igor Rotenberg is benefiting from or supporting the Government of Russia. Igor Rotenberg is also a shareholder in RT-Invest Transport Systems (RTITS). RTITS, through the ""Platon"" toll system, is conducting business in the transport sector, which is of strategic significance to the Government of Russia. It is also obtaining a benefit from the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,22/02/2022,22/02/2022,22/02/2022,14183 +ROUGGY,Mohamed,,,,,,,,,01/01/1979,Tabankort,Mali,Mali,(1) AA00272627 (2) AA0263957 (3) AA0344148,(1) - . (2) - . (3) issued on 21 March 2019 (date of expiration: 20 March 2024),,,,,,,,,Bamako,,Mali,"(UK Sanctions List Ref):MAL0007 (UN Ref):MLi.007 Mohamed Ben Ahmed Mahri is a businessman from the Arab Lehmar community in Gao region who previously collaborated with the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,Mali,20/12/2019,10/07/2019,10/10/2022,13802 +ROUGI,Mohammed,,,,,,,,,01/01/1979,Tabankort,Mali,Mali,(1) AA00272627 (2) AA0263957 (3) AA0344148,(1) - . (2) - . (3) issued on 21 March 2019 (date of expiration: 20 March 2024),,,,,,,,,Bamako,,Mali,"(UK Sanctions List Ref):MAL0007 (UN Ref):MLi.007 Mohamed Ben Ahmed Mahri is a businessman from the Arab Lehmar community in Gao region who previously collaborated with the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Mali,20/12/2019,10/07/2019,10/10/2022,13802 +ROUGIE,Mohamed,,,,,,,,,01/01/1979,Tabankort,Mali,Mali,(1) AA00272627 (2) AA0263957 (3) AA0344148,(1) - . (2) - . (3) issued on 21 March 2019 (date of expiration: 20 March 2024),,,,,,,,,Bamako,,Mali,"(UK Sanctions List Ref):MAL0007 (UN Ref):MLi.007 Mohamed Ben Ahmed Mahri is a businessman from the Arab Lehmar community in Gao region who previously collaborated with the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,Mali,20/12/2019,10/07/2019,10/10/2022,13802 +ROUINE,AL-AZHAR,BEN KHALIFA,BEN AHMED,,,,الأزهر بن خليفة بن احمد روين,,,20/11/1975,Sfax,Tunisia,Tunisia,P182583,Tunisian. Issued on 13 September 2003. Expired on 12 September 2007,05258253,,,No.2,89th Street,Zehrouni,,,Tunis,,Tunisia,"(UK Sanctions List Ref):AQD0129 (UN Ref):QDi.150 Sentenced to six years and ten months of imprisonment for membership of a terrorist association by the Appeal Court of Milan, Italy, on 7 Feb. 2008. Imprisoned in Sfax Prison on 5 June 2007 pursuant to an order issued by the Appeals Tribunal in Tunisia for joining an organization linked to terrorist crimes (case No.9301/207). Sentenced to two years and 15 days’ imprisonment and released on 18 June 2008.U Considered a fugitive from justice by the Italian authorities as at Jul. 2008. Under administrative control measure in Tunisia as at 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1419776",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,11/02/2022,7875 +ROUJI,Mohamed,,,,,,,,,01/01/1979,Tabankort,Mali,Mali,(1) AA00272627 (2) AA0263957 (3) AA0344148,(1) - . (2) - . (3) issued on 21 March 2019 (date of expiration: 20 March 2024),,,,,,,,,Bamako,,Mali,"(UK Sanctions List Ref):MAL0007 (UN Ref):MLi.007 Mohamed Ben Ahmed Mahri is a businessman from the Arab Lehmar community in Gao region who previously collaborated with the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,Mali,20/12/2019,10/07/2019,10/10/2022,13802 +ROYAL MIRACLE,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0103 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK vessel M/V PAEK MA was involved in ship-to-ship transfer operations for oil in mid-January 2018. Listed as asset of Paekma Shipping Co (a.k.a First Oil JV Co Ltd) (OFSI ID: 13640, UN Reference Number: UN Ref KPe.069) (IMO number):9066978 (Flag of ship):North Korea (Previous flags):Panama. South Korea (Type of ship):Oil tanker (Tonnage of ship):1181 (Length of ship):77 (Year built):1993",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13654 +RSB GROUP,,,,,,,РСБ-Групп,Cyrillic,Russian,,,,,,,,,,"Building 5 FL 1, POM III K 8 Office 6-6",Dnepropetrovskaya Street,,,,Moscow,117525,Russia,"(UK Sanctions List Ref):RUS1427 OGRN: 1057749205942; KPP: 772601001 (UK Statement of Reasons):The RSB Group is a Russian private military company. It is obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian defence sector. (Phone number):7(495)9840416 (Website):https://rsb-group.org/ (Email address):office@rsb-group.ru (Subsidiaries):Convoy Africa SARL (Business Reg No):Tax Identification Number: INN: 7726531639",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15378 +RSRSBCM,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0075 (UN Ref):QDe.100 Associated with the Islamic International Brigade (IIB) (QDe.099), the Special Purpose Islamic Regiment (SPIR) (QDe.101) and Emarat Kavkaz (QDe.131). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281893",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,31/12/2020,7138 +R-STYLE SOFTLAB,,,,,,,ЭР СТАЙЛ СОФТЛАБ,,,,,,,,,,,,"st. Prishvina, 8",,,,,Moscow,127549,Russia,"(UK Sanctions List Ref):RUS1490 (UK Statement of Reasons):R-STYLE SOFTLAB is an involved person as it is obtaining a benefit from or supporting the Government of Russia  by carrying on business in the Russian information, communications and digital technology sector, which is a sector of strategic significance to the Government of Russia. R-STYLE SOFTLAB is able to undermine sanctions and Russian banks’ exclusion from the SWIFT payment messaging network through its work on implementing a program to modernise the payment infrastructure and exchange of financial data via the Russian Central Bank’s System for Transfer of Financial Messages.  (Phone number):+7 495 796 9310",Entity,Primary name,,Russia,29/06/2022,29/06/2022,29/06/2022,15427 +RUBEN,Malek,,,,,,,,,01/01/1960,Yei,South Sudan,South Sudan,,,,,Deputy Chief of Defence Staff. Deputy Chief of General Staff for Logistics. Inspector General of the Army,,,,,,,,,"(UK Sanctions List Ref):SSU0004 (UN Ref):SSi.007 As SPLA Deputy Chief of Staff for Logistics, Riak was one of the senior officials of the Government of South Sudan who planned and oversaw an offensive in Unity state in 2015 that resulted in widespread destruction and large population displacement.",Individual,AKA,Good quality,South Sudan,18/07/2018,13/07/2018,31/12/2020,13698 +RUDENKO,Miroslav,Vladimirovich,,,,,Мирослав Володимирович РУДЕНКО,,,21/01/1983,Debaltsevo,Ukraine,Ukraine,,,,,(1) Associated with the “Donbass People’s Militia” (2) Member of the so-called “People’s Council of the Donetsk People’s Republic”,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0124 (UK Statement of Reasons):Associated with the ""Donbass People's Militia"". He has, inter alia, stated that they will continue their fighting in the rest of the country. Rudenko has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Member of the so-called ""People's Council of the Donetsk People's Republic"". (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,31/12/2020,13093 +RUDENKO,Myroslav,Volodymyrovych,,,,,,,,21/01/1983,Debaltsevo,Ukraine,Ukraine,,,,,(1) Associated with the “Donbass People’s Militia” (2) Member of the so-called “People’s Council of the Donetsk People’s Republic”,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0124 (UK Statement of Reasons):Associated with the ""Donbass People's Militia"". He has, inter alia, stated that they will continue their fighting in the rest of the country. Rudenko has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Member of the so-called ""People's Council of the Donetsk People's Republic"". (Gender):Male",Individual,Primary name variation,,Russia,12/09/2014,31/12/2020,31/12/2020,13093 +RUDENSKY,Igor,Nikolaevich,,,,,Игорь Николаевич Руденский,,,11/09/1962,"Iksha, Moscow",Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0281 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14226 +RUDSARI,Mohammad,Shafi'i,,,,,,,,,,,,,,,,Former MODAFL Deputy for Coordination,,,,,,,,,(UK Sanctions List Ref):INU0012 (UK Statement of Reasons):Former MODAFL Deputy for Coordination (Gender):Male,Individual,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10645 +RUDSKOI,Sergei,Fedorovich,,,,,,,,02/10/1960,,Ukraine,Russia,,,,,(1) Head of the Main Operations Directorate of the General Staff of the Armed Forces of the Russian Federation (2) First Deputy Chief of the General Staff of the Armed Forces of the Russian Federation (3) Colonel General,,,,,,,,Russia,"(UK Sanctions List Ref):SYR0385 (UK Statement of Reasons):Sergey Fedorovich Rudskoy is Head of the Main Operations Directorate of the General Staff of the Armed Forces of the Russian Federation - First Deputy Chief of the General Staff of the Armed Forces of the Russian Federation, Colonel General since 2015. In this role he has overseen the Russian forces in Syria. As such he has supported the regime and been involved in the violent repression of Syria’s civilian population. (Gender):Male",Individual,Primary name variation,,Syria,29/06/2022,29/06/2022,29/06/2022,15433 +RUDSKOY,Sergey,Fedorovich,,,,Colonel General,Сергей Федорович Рудской,,,02/10/1960,,Ukraine,Russia,,,,,(1) Head of the Main Operations Directorate of the General Staff of the Armed Forces of the Russian Federation (2) First Deputy Chief of the General Staff of the Armed Forces of the Russian Federation (3) Colonel General,,,,,,,,Russia,"(UK Sanctions List Ref):SYR0385 (UK Statement of Reasons):Sergey Fedorovich Rudskoy is Head of the Main Operations Directorate of the General Staff of the Armed Forces of the Russian Federation - First Deputy Chief of the General Staff of the Armed Forces of the Russian Federation, Colonel General since 2015. In this role he has overseen the Russian forces in Syria. As such he has supported the regime and been involved in the violent repression of Syria’s civilian population. (Gender):Male",Individual,Primary name,,Syria,29/06/2022,29/06/2022,29/06/2022,15433 +RUGERERO,Jean-Marie,,,,,,,,,00/00/1960,Bukavu,Congo (Democratic Republic),,,,,,President of the M23,,,,,,Rubavu/Mudende,,Rwanda,"(UK Sanctions List Ref):DRC0042 (UN Ref):CDi.028 Entered the Republic of Rwanda on 16 March 2013. As of 2016, residing in Rwanda. Participated in the creation of a new Congolese political party in June 2016, the Alliance pour le Salut du Peuple (ASP). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5274633 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,23/01/2013,31/12/2012,31/12/2020,12839 +RUGERERO,Jean-Marie,,,,,,,,,09/09/1966,Bukavu,Congo (Democratic Republic),,,,,,President of the M23,,,,,,Rubavu/Mudende,,Rwanda,"(UK Sanctions List Ref):DRC0042 (UN Ref):CDi.028 Entered the Republic of Rwanda on 16 March 2013. As of 2016, residing in Rwanda. Participated in the creation of a new Congolese political party in June 2016, the Alliance pour le Salut du Peuple (ASP). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5274633 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,23/01/2013,31/12/2012,31/12/2020,12839 +RUHERIMBERE,Eric,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +RUHERIMBERE,Erick,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +RUHIMBERE,Eric,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +RUHIMBERE,Erick,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +RUHORHIMBERE,Eric,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +RUHORHIMBERE,Erick,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +RUHORIMBERE,Eric,,,,,Brigadier General,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +RUHORIMBERE,Eric,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +RUHORIMBERE,Erick,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +RUKAVISHIKOVA,Lyudmila,Vasilyevna,,,,,Людмила РУКАВИШИКОВА,Cyrillic,Russian,00/00/1946,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1324 (UK Statement of Reasons):Lyudmila RUKAVISHIKOVA is the mother-in-law of prominent Russian oligarch Sergey CHEMEZOV, with whom she is closely associated and from whom she has obtained a financial benefit or other material benefit. Sergey CHEMEZOV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,24/06/2022,15282 +RUKAVISHNIKOVA,Irina,Valeryevna,,,,,Ирина Валерьевна РУКАВИШНИКОВА,,,02/03/1973,Rostov on Don,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0987 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14938 +RUMULI,,,,,,,,,,00/00/1948,"(1) Musanze District, Northern Province (2) Ruhengeri",(1) Rwanda (2) Rwanda,Rwanda,,,,,1st Vice-President. FDLR Interim President. Major General of the FDLR-FOCA,,,,,,North Kivu Province,,Congo (Democratic Republic),(UK Sanctions List Ref):DRC0032 (UN Ref):CDi.003 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272456 (Gender):Male,Individual,AKA,Low quality,Democratic Republic of the Congo,03/12/2010,01/12/2010,21/01/2021,11276 +RUMULI,Byiringiro,Victor,,,,,,,,00/00/1948,"(1) Musanze District, Northern Province (2) Ruhengeri",(1) Rwanda (2) Rwanda,Rwanda,,,,,1st Vice-President. FDLR Interim President. Major General of the FDLR-FOCA,,,,,,North Kivu Province,,Congo (Democratic Republic),(UK Sanctions List Ref):DRC0032 (UN Ref):CDi.003 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272456 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,03/12/2010,01/12/2010,21/01/2021,11276 +RUMULI,Victor,,,,,,,,,00/00/1948,"(1) Musanze District, Northern Province (2) Ruhengeri",(1) Rwanda (2) Rwanda,Rwanda,,,,,1st Vice-President. FDLR Interim President. Major General of the FDLR-FOCA,,,,,,North Kivu Province,,Congo (Democratic Republic),(UK Sanctions List Ref):DRC0032 (UN Ref):CDi.003 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5272456 (Gender):Male,Individual,AKA,Good quality,Democratic Republic of the Congo,03/12/2010,01/12/2010,21/01/2021,11276 +RUMYANTSEV,Alexander,Grigorievich,,,,,Александр Григорьевич Румянцев,,,12/02/1947,Kirovograd,Ukraine,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0598 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14543 +RUMYANTSEV,Nikita,Gennadievich,,,,,Румянцев Никита Геннадьевич,,,27/04/1988,Balashikha,Russia,Russia,721882578,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0276 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14221 +RUNGRADO TRADING CORPORATION,,,,,,,,,,,,,,,,,,,Segori-dong,Pothonggang District,,,Pyongyang,,,North Korea,(UK Sanctions List Ref):DPR0060 (UK Statement of Reasons):Korea Rungrado General Trading Corporation has assisted in violating sanctions imposed by the United Nations Security Council Resolutions through the sale of Scud missiles to Egypt. (Phone number):+850-2-18111-3818022. +850-2-3814507 (Email address):rrd@co.chesin.com,Entity,AKA,,Democratic People's Republic of Korea,16/10/2017,31/12/2020,31/12/2020,13551 +RUNIGA,JEAN-MARIE LUGERERO,,,,,,,,,00/00/1960,Bukavu,Congo (Democratic Republic),,,,,,President of the M23,,,,,,Rubavu/Mudende,,Rwanda,"(UK Sanctions List Ref):DRC0042 (UN Ref):CDi.028 Entered the Republic of Rwanda on 16 March 2013. As of 2016, residing in Rwanda. Participated in the creation of a new Congolese political party in June 2016, the Alliance pour le Salut du Peuple (ASP). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5274633 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,23/01/2013,31/12/2012,31/12/2020,12839 +RUNIGA,JEAN-MARIE LUGERERO,,,,,,,,,09/09/1966,Bukavu,Congo (Democratic Republic),,,,,,President of the M23,,,,,,Rubavu/Mudende,,Rwanda,"(UK Sanctions List Ref):DRC0042 (UN Ref):CDi.028 Entered the Republic of Rwanda on 16 March 2013. As of 2016, residing in Rwanda. Participated in the creation of a new Congolese political party in June 2016, the Alliance pour le Salut du Peuple (ASP). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5274633 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,23/01/2013,31/12/2012,31/12/2020,12839 +RUNJE,Zeljko,,,,,,Желько Рунье,Cyrillic,Russian,00/00/1954,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1554 (UK Statement of Reasons):Zeljko Runje was a member of the Management Board of Public Joint Stock Company Rosneft Oil Company [“Rosneft”], a Russian oil company. Rosneft is a Government of Russia-affiliated entity as the Government of Russia owns a minority interest in Rosneft via the state-owned company JSC Roseneftgaz. Runje has been involved in obtaining a benefit from or supporting the Government of Russia by working as a manager of a Government of Russia-affiliated entity. (Gender):Male",Individual,Primary name,,Russia,02/08/2022,02/08/2022,02/08/2022,15494 +RUOHIMBERE,Eric,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +RUOHIMBERE,Erick,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +RURIOMBELE RUHANGA,Eric,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +RURIOMBELE RUHANGA,Erick,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +RUSAG,,,,,,,,,,,,,,,,,,,"0 Bld. 2 Presnenskaya Emb. (Moscow City, IQ-quarter Complex)",,,,,Moscow,123112,Russia,(UK Sanctions List Ref):RUS1073 (UK Statement of Reasons):RUSSIAN AGRICULTURAL BANK is a Russian bank. RUSSIAN AGRICULTURAL BANK is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):(1) 7 (495) 777-11-00 (2) 7 (495) 787-7-787 (3) 8 (800) 100-0-100 (Website):(1) http://www.rshb.ru/en/ (2) https://www.rshb.ru/ (Email address):office@rshb.ru,Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,24/05/2022,15016 +RUSAG,,,,,,,,,,,,,,,,,,,"3, Gagarinsky Pereulok",,,,,Moscow,119034,Russia,(UK Sanctions List Ref):RUS1073 (UK Statement of Reasons):RUSSIAN AGRICULTURAL BANK is a Russian bank. RUSSIAN AGRICULTURAL BANK is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):(1) 7 (495) 777-11-00 (2) 7 (495) 787-7-787 (3) 8 (800) 100-0-100 (Website):(1) http://www.rshb.ru/en/ (2) https://www.rshb.ru/ (Email address):office@rshb.ru,Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,24/05/2022,15016 +RUSANOV,Igor,Valerievich,,,,,Игорь Валерьевич Русанов,Cyrillic,Russian,00/04/1970,,,Russia,,,,,(1) Member of Gazprombank’s Management Board (2) Deputy Chairman of Gazprombank’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1614 (UK Statement of Reasons):Igor Valerievich Rusanov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15558 +RUSANOV,Sergey,Georgievich,,,,,Сергей Георгиевич РУСАНОВ,Cyrillic,Russian,29/05/1963,,,Russia,531166608,Russia,,,Member of OTKRITIE Management Board,Marii Ulyanovoy Str. 8 129,,,,,Moscow,117331,Russia,"(UK Sanctions List Ref):RUS1638 (UK Statement of Reasons):Sergey Georgievich Rusanov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by (1) working as a director, manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Bank Otkritie Financial Corporation PJSC which carries on business in the Russian financial services sector; (2) working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely Bank Otkritie Financial Corporation PJSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15582 +RUSANOV,Vladislav,Adolfovich,,,,,РУСАНОВ Владислав Адольфович,Cyrillic,Russian,12/06/1966,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1204 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15156 +RUSCHAK,Vladimir,Mikhailovich,,,,,,,,02/09/1971,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1145 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15097 +RUSDAN,ABU,,,,,,,,,16/08/1960,"Kudus, Central Java",Indonesia,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0116 (UN Ref):QDi.186 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4680925,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,31/12/2020,8635 +RUSDJAN,,,,,,,,,,16/08/1960,"Kudus, Central Java",Indonesia,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0116 (UN Ref):QDi.186 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4680925,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,31/12/2020,8635 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Chaghi,Chaghi District,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Cholmon Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Flat number 4,Furqan Centre,Jamaluddin Afghani Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Gerd-e-Jangal,Chaghi District,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Haji Ghulam Nabi Market,Lashkar Gar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Hazar Joft,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Ismat Bazaar,Marjah District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Lakri City,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Lashkar Gar Bazaar,,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Main Bazaar,Safar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Money Exchange Market,Lashkar Gar,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Munsafi Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,"Office number 4, 2nd Floor",Muslim Plaza Building,Doctor Banu Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Safar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,"Shop number 1, 1st Floor",Kadari Place,Abdul Samad Khan Street (next to Fatima Jena Road),,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Shop number 1584,Furqan (Fahr Khan) Centre,Chalhor Mal Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,"Shop number 25, 5th Floor",Sarafi Market,,Kandahar City,Kandahar District,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,"Suite number 8, 4th Floor",Sarafi Market,District number 1,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHAAN TRADING COMPANY,,,,,,,,,,,,,,,,,,,Zaranj,,,,,Nimruz Province,,Afghanistan,(UK Sanctions List Ref):AFG0002 (UN Ref):TAe.011 Roshan Money Exchange stores and transfers funds to support Taliban military operations and narcotics trade in Afghanistan. Owned by Ahmed Shah Noorzai Obaidullah (TAi.166). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Entities click here,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12704 +RUSHHAK,Vladimir,Mikhailovich,,,,,РУЩАК Владимир Михайлович,Cyrillic,Russian,02/09/1971,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1145 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15097 +RUSHYDRO,,,,,,,РусГидро,Cyrillic,Russian,,,,,,,,,,22 prospect Ispitateley,,,,,Saint-Petersburg,197227,Russia,"(UK Sanctions List Ref):RUS1083 (UK Statement of Reasons):Rushydro is a Russia-based energy producer. As such, it is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the energy sector, a sector of strategic significance to Government of Russia.",Entity,Primary name,,Russia,24/03/2022,24/03/2022,24/06/2022,15026 +RUSJAN,,,,,,,,,,16/08/1960,"Kudus, Central Java",Indonesia,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0116 (UN Ref):QDi.186 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4680925,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,31/12/2020,8635 +RUSSIA BANK,,,,,,,,,,,,,,,,,,,Rastrelli Square,2A,Saint-Petersburg,,,,191124,,"(UK Sanctions List Ref):RUS0232 (UK Statement of Reasons):Bank “Rossiya” is a Russian bank privately owned by elite Russian billionaires with direct links to Putin. Bank “Rossiya” also has important stakes in the National Media Group, which controls television stations which actively support the Russian Government's policies of destabilisation in Ukraine.  Since the annexation of Crimea, Bank “Rossiya” has opened branches across Crimea and Sevastopol, and provided travel cards for the public to travel across the peninsula thereby supporting the integration of Crimea and Sevastopol into the Russian Federation through the financial system.  Bank “Rossiya” has also contributed to the provision of insurance and investment throughout Crimea and Sevastopol and services to support military capability and major transport links.  Bank “Rossiya” therefore is or has been involved in providing financial services, or making available funds, economic resources, goods or technology and  engaging in, providing support for, or promoting any policy or action  that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Website):https://abr.ru/ (Type of entity):Public Joint Stock Company (PJSC) (Business Reg No):License number: 328 INN: 7831000122 OGRN: 1027800000084",Entity,AKA,,Russia,22/02/2022,22/02/2022,22/02/2022,14177 +RUSSIAN AGRICULTURAL BANK,,,,,,,Россельхозбанк,Cyrillic,Russian,,,,,,,,,,"0 Bld. 2 Presnenskaya Emb. (Moscow City, IQ-quarter Complex)",,,,,Moscow,123112,Russia,(UK Sanctions List Ref):RUS1073 (UK Statement of Reasons):RUSSIAN AGRICULTURAL BANK is a Russian bank. RUSSIAN AGRICULTURAL BANK is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):(1) 7 (495) 777-11-00 (2) 7 (495) 787-7-787 (3) 8 (800) 100-0-100 (Website):(1) http://www.rshb.ru/en/ (2) https://www.rshb.ru/ (Email address):office@rshb.ru,Entity,Primary name,,Russia,24/03/2022,24/03/2022,24/05/2022,15016 +RUSSIAN AGRICULTURAL BANK,,,,,,,Россельхозбанк,Cyrillic,Russian,,,,,,,,,,"3, Gagarinsky Pereulok",,,,,Moscow,119034,Russia,(UK Sanctions List Ref):RUS1073 (UK Statement of Reasons):RUSSIAN AGRICULTURAL BANK is a Russian bank. RUSSIAN AGRICULTURAL BANK is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):(1) 7 (495) 777-11-00 (2) 7 (495) 787-7-787 (3) 8 (800) 100-0-100 (Website):(1) http://www.rshb.ru/en/ (2) https://www.rshb.ru/ (Email address):office@rshb.ru,Entity,Primary name,,Russia,24/03/2022,24/03/2022,24/05/2022,15016 +RUSSIAN DIRECT INVESTMENT FUND,,,,,,,Российский фонд прямых инвестиций,,,,,,,,,,,,Capital City,South Tower,"7th, 8th Floor",8 bld.,1 Presnenskaya nab.,Moscow,123112,Russia,"(UK Sanctions List Ref):RUS0263 (UK Statement of Reasons):The Russian Direct Investment Fund (RDIF) is Russia's sovereign wealth fund. It facilitates co-investments into the Russian economy. RDIF is owned by the Government of Russia. As Russia's sovereign wealth fund, RDIF carries on business of economic significance to the Government of Russia by financing projects of economic and political significance to the Government. RDIF also carries on business in the Russian financial sector, which is a sector of significance to the Government of Russia. (Phone number):(1) +7 (495) 644-34-14 (2) +7 (495) 644-34-11 (Website):www.rdif.ru (Type of entity):Sovereign Wealth Fund",Entity,Primary name,,Russia,01/03/2022,01/03/2022,01/03/2022,14207 +RUSSIAN NATIONAL COMMERCIAL BANK,,,,,,,Российский национальный коммерческий банк,,,,,,,,,,,,Naberezhnaja street,34,Simferopol,,,The Autonomous Republic of Crimea and the city of Sevastopol,295000,Ukraine,"(UK Sanctions List Ref):RUS0193 (UK Statement of Reasons):After the illegal annexation of Crimea, Russian National Commercial Bank (RNCB) became fully owned by the so-called 'Republic of Crimea'. In January 2016 became a property of Federal Agency for State Property Management also known as Rosimushchestvo. It has become the dominant player in the market, while it had no presence in Crimea before the annexation. By buying or taking over from branches of retreating banks operating in Crimea, RNBC supported materially and financially the actions of the Russian government to integrate Crimea into the Russian Federation, thus undermining Ukraine's territorial integrity. (Website):http://www.rncb.ru",Entity,Primary name,,Russia,31/07/2014,31/12/2020,05/05/2022,13078 +RUSSIAN RAILWAYS,,,,,,,Российские железные дороги,Cyrillic,Russian,,,,,,,,,,Building 1,Novaya Basmannaya Street 2/1,Basmanny Municipal District,,,Moscow,107174,Russia,"(UK Sanctions List Ref):RUS1084 (UK Statement of Reasons):Russian Railways is, or has been, involved in supporting the Government of Russia as an entity that is carrying on business in the transport sector - a sector of strategic importance to the Government of Russia. By enabling the movement of the Russian Army, combat vehicles and weapons towards the Russian borders with Ukraine, Russian railways is, or has been, providing support for action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine.",Entity,Primary name,,Russia,24/03/2022,24/03/2022,13/05/2022,15027 +RUSSIAN RAILWAYS (RZD) JOINT STOCK COMPANY,,,,,,,,,,,,,,,,,,,Building 1,Novaya Basmannaya Street 2/1,Basmanny Municipal District,,,Moscow,107174,Russia,"(UK Sanctions List Ref):RUS1084 (UK Statement of Reasons):Russian Railways is, or has been, involved in supporting the Government of Russia as an entity that is carrying on business in the transport sector - a sector of strategic importance to the Government of Russia. By enabling the movement of the Russian Army, combat vehicles and weapons towards the Russian borders with Ukraine, Russian railways is, or has been, providing support for action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine.",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,13/05/2022,15027 +RUSSIAN SECURITY SYSTEMS,,,,,,,Российские Системы Безопасности,Cyrillic,Russian,,,,,,,,,,"Building 5 FL 1, POM III K 8 Office 6-6",Dnepropetrovskaya Street,,,,Moscow,117525,Russia,"(UK Sanctions List Ref):RUS1427 OGRN: 1057749205942; KPP: 772601001 (UK Statement of Reasons):The RSB Group is a Russian private military company. It is obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian defence sector. (Phone number):7(495)9840416 (Website):https://rsb-group.org/ (Email address):office@rsb-group.ru (Subsidiaries):Convoy Africa SARL (Business Reg No):Tax Identification Number: INN: 7726531639",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15378 +RUSSIAN VENTURE COMPANY,,,,,,,Российская венчурная компания (РВК),Cyrillic,Russian,,,,,,,,,,D. 8,"Str. 1, Etaj 12",Nab. Presnenskaya,,,Moscow,123113,Russia,"(UK Sanctions List Ref):RUS1085 (UK Statement of Reasons):RUSSIAN VENTURE COMPANY is a Russian State-owned “fund of funds” created for the development of the Russian venture capital market. There are reasonable grounds to suspect that the RUSSIAN VENTURE COMPANY is or has been involved in obtaining a benefit from or supporting the Government of Russia by, carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):+7 (499) 750-09-11 (Website):https://Rvc.ru",Entity,Primary name,,Russia,24/03/2022,24/03/2022,24/06/2022,15028 +RUSTOM,Saqer,,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +RUSTOM,Saqer,Asaad,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +RUSTOM,Saqer,Asad,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +RUSTOM,Saqer,As'ad,,,,,,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +RUSTOM,Saqr,,,,,,صقر رستم,,,,,,Syria,,,,,Head of National Defence Force in Hom,,,,,,,,,"(UK Sanctions List Ref):SYR0355 Linked to Damas Real Estate Development and Investment LLC. (UK Statement of Reasons):Head of local branch of the National Defence Force in Homs (a regime militia-Shabiha). Responsible for its participation in the brutal repression against the civilian population in Syria.. Through his militia, Saqr Rustom is responsible for multiple war profiteering schemes and is therefore benefiting from and supporting the Syrian regime. Associated with designated person Bassam Hassan, his uncle, with whom he established the Damas Real Estate Development and Investment LLC in order to invest in real estate projects. (Gender):Male",Individual,Primary name,,Syria,17/02/2020,31/12/2020,19/05/2022,13818 +RUSYDAN,,,,,,,,,,16/08/1960,"Kudus, Central Java",Indonesia,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0116 (UN Ref):QDi.186 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4680925,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,31/12/2020,8635 +RVC,,,,,,,,,,,,,,,,,,,D. 8,"Str. 1, Etaj 12",Nab. Presnenskaya,,,Moscow,123113,Russia,"(UK Sanctions List Ref):RUS1085 (UK Statement of Reasons):RUSSIAN VENTURE COMPANY is a Russian State-owned “fund of funds” created for the development of the Russian venture capital market. There are reasonable grounds to suspect that the RUSSIAN VENTURE COMPANY is or has been involved in obtaining a benefit from or supporting the Government of Russia by, carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):+7 (499) 750-09-11 (Website):https://Rvc.ru",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,24/06/2022,15028 +RYABTSEVA,Zhanna,Anatolyevna,,,,,Рябцева Жанна Анатольевна,,,08/12/1977,"Upper Dubrovo town, Beloyarsky district, Sverdlovsk region",Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0599 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14544 +RYABUKHIN,Sergey,Nikolayevich,,,,,Сергей Николаевич РЯБУХИН,,,13/11/1954,Volsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0998 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14949 +RYABUSHKIN,Igor,Nikolaevich,,,,,РЯБУШКИН Игорь Николаевич,Cyrillic,Russian,05/05/1970,Rovenky,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1293 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15245 +RYANG,Su,Nyo,,,,,,,,11/08/1959,,Japan,North Korea,(1) 654310149. (2) 199421158.,(1) Expiry 4 Sept 2019 (2) Expiry 30 Dec 2014.,,,Director of Pan Systems Pyongyang,,,,,,,,Malaysia,"(UK Sanctions List Ref):DPR0032 Associations with Pan Systems, Glocom, International Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Director of Pan Systems Pyongyang. Pan Systems Pyongyang has been designated for assisting in the evasion of sanctions imposed by the United National Security Council through the attempted sale of arms and related materiel to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. (Gender):Female",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,03/03/2022,13595 +RYANG,Su,Nyo,,,,,,,,11/08/1959,,Japan,North Korea,(1) 654310149. (2) 199421158.,(1) Expiry 4 Sept 2019 (2) Expiry 30 Dec 2014.,,,Director of Pan Systems Pyongyang,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0032 Associations with Pan Systems, Glocom, International Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Director of Pan Systems Pyongyang. Pan Systems Pyongyang has been designated for assisting in the evasion of sanctions imposed by the United National Security Council through the attempted sale of arms and related materiel to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. (Gender):Female",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,03/03/2022,13595 +RYANG,Su,Nyo,,,,,,,,11/08/1959,,Japan,North Korea,(1) 654310149. (2) 199421158.,(1) Expiry 4 Sept 2019 (2) Expiry 30 Dec 2014.,,,Director of Pan Systems Pyongyang,,,,,,,,Singapore,"(UK Sanctions List Ref):DPR0032 Associations with Pan Systems, Glocom, International Servides Sdn Bhd, and International Global Systems Sdn Bhd (UK Statement of Reasons):Director of Pan Systems Pyongyang. Pan Systems Pyongyang has been designated for assisting in the evasion of sanctions imposed by the United National Security Council through the attempted sale of arms and related materiel to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. (Gender):Female",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,03/03/2022,13595 +RYMASHEUSKI,Alexey,Ivanovich,,,,,,,,29/06/1981,,,Belarus,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1070 (UK Statement of Reasons): Aliaksei Ivanavich RYMASHEUSKI is an involved person under the Russia (Sanctions) (EU Exit) 2019. As the Director General of Minsk Wheeled Tractor Plant (MZKT), he has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine.",Individual,Primary name variation,,Russia,24/03/2022,24/03/2022,12/07/2022,15013 +RYMASHEUSKI,Aliaksei,Ivanavich,,,,,,,,29/06/1981,,,Belarus,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1070 (UK Statement of Reasons): Aliaksei Ivanavich RYMASHEUSKI is an involved person under the Russia (Sanctions) (EU Exit) 2019. As the Director General of Minsk Wheeled Tractor Plant (MZKT), he has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine.",Individual,Primary name,,Russia,24/03/2022,24/03/2022,12/07/2022,15013 +RYOKO,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0102 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V YU JONG 2 was involved in-ship-to ship transfer operations for oil in November 2017. M/V YU JONG 2 was also involved in a ship-to-ship transfer operation, likely for oil, with M/V MIN NING DE YOU 078 on 16 February 2018. Listed as asset of Korea Yujong Shipping Co Ltd (OFSI ID: 13637, UN Reference Number: UN Ref KPe.066) (IMO number):8604917 (Current owners):Korea Yujong Shipping (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):748 (Length of ship):62 (Year built):1986",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13653 +RYOKO MARU NO.8,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0102 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V YU JONG 2 was involved in-ship-to ship transfer operations for oil in November 2017. M/V YU JONG 2 was also involved in a ship-to-ship transfer operation, likely for oil, with M/V MIN NING DE YOU 078 on 16 February 2018. Listed as asset of Korea Yujong Shipping Co Ltd (OFSI ID: 13637, UN Reference Number: UN Ref KPe.066) (IMO number):8604917 (Current owners):Korea Yujong Shipping (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):748 (Length of ship):62 (Year built):1986",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13653 +RYOM,Yong,,,,,Director,,,,,,,North Korea,,,,,Director of the General Bureau of Atomic Energy,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0033 (UK Statement of Reasons):Director of the General Bureau of Atomic Energy (entity designated by the United Nations), in charge of international relations. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11038 +RYONG,KANG,,,,,,,,,21/08/1969,,,North Korea,,,,,Korea Mining Development Trading Corporation (KOMID) Representative in Syria,,,,,,,,,(UK Sanctions List Ref):DPR0224 (UN Ref):KPi.020,Individual,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,31/12/2020,13331 +RYONHA MACHINE TOOL,,,,,,,,,,,,,,,,,,,,,,,Mangungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHA MACHINE TOOL,,,,,,,,,,,,,,,,,,,,,,,Mangyongdae District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHA MACHINE TOOL,,,,,,,,,,,,,,,,,,,,,,Tongan-dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHA MACHINE TOOL CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Mangungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHA MACHINE TOOL CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Mangyongdae District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHA MACHINE TOOL CORPORATION,,,,,,,,,,,,,,,,,,,,,,Tongan-dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHA MACHINERY CORP.,,,,,,,,,,,,,,,,,,,,,,,Mangungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHA MACHINERY CORP.,,,,,,,,,,,,,,,,,,,,,,,Mangyongdae District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHA MACHINERY CORP.,,,,,,,,,,,,,,,,,,,,,,Tongan-dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHA MACHINERY CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Mangungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHA MACHINERY CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Mangyongdae District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHA MACHINERY CORPORATION,,,,,,,,,,,,,,,,,,,,,,Tongan-dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHA MACHINERY JOINT VENTURE CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Mangungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHA MACHINERY JOINT VENTURE CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Mangyongdae District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHA MACHINERY JOINT VENTURE CORPORATION,,,,,,,,,,,,,,,,,,,,,,Tongan-dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHWA MACHINERY JOINT VENTURE CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Mangungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHWA MACHINERY JOINT VENTURE CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Mangyongdae District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHWA MACHINERY JOINT VENTURE CORPORATION,,,,,,,,,,,,,,,,,,,,,,Tongan-dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHWA MACHINERY JV,,,,,,,,,,,,,,,,,,,,,,,Mangungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHWA MACHINERY JV,,,,,,,,,,,,,,,,,,,,,,,Mangyongdae District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYONHWA MACHINERY JV,,,,,,,,,,,,,,,,,,,,,,Tongan-dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +RYOSHO MARU,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0098 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). In late November 2017 the YU PHYONG 5 conducted a ship-to-ship transfer of 1,721 metric tons of fuel oil. Listed as asset of Korea Myongdok Shipping Co - OFSI ID: 13634. UN Reference Number: UN Ref KPe.063 (IMO number):8605026 (Current owners):Korea Myongdok Shipping Co (Flag of ship):North Korea (Previous flags):South Korea (Type of ship):Oil tanker (Tonnage of ship):795 (Length of ship):75 (Year built):1986",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13649 +RYSKIN,Vladimir,Markovich,,,,,Владимир Маркович Рыскин,Cyrillic,Russian,00/00/1961,,,,,,,,(1) Member of Gazprombank’s Management Board (2) Deputy Chairman of Gazprombank’s Management Board,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1615 (UK Statement of Reasons):Vladimir Markovich Ryskin is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15559 +RYUMIN,Andrey,Valerievich,,,,,,,,12/06/1980,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1032 (UK Statement of Reasons):Andrey Valerievich RYUMIN is Director General and Chair of the Management Board at Rosseti PJSC. Rosseti PJSC is carrying on business in a sector of strategic significance to the Government of Russia – the Russian energy sector. RYUMIN, as a Director or equivalent of Rosseti PJSC, is therefore involved in obtaining a benefit from or supporting the Government of Russia.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14969 +RYUNG SENG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0169 (UN Ref):KPe.008 Korea Tangun Trading Corporation is subordinate to DPRK’s Second Academy of Natural Sciences and is primarily responsible for the procurement of commodities and technologies to support DPRK’s defense research and development programs, including, but not limited to, WMD and delivery system programs and procurement, including materials that are controlled or prohibited under relevant multilateral control regimes. (Parent company):DPRK's Second Academy of Natural Sciences",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10913 +RYUNGSENG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0169 (UN Ref):KPe.008 Korea Tangun Trading Corporation is subordinate to DPRK’s Second Academy of Natural Sciences and is primarily responsible for the procurement of commodities and technologies to support DPRK’s defense research and development programs, including, but not limited to, WMD and delivery system programs and procurement, including materials that are controlled or prohibited under relevant multilateral control regimes. (Parent company):DPRK's Second Academy of Natural Sciences",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10913 +RYUNGSONG TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0169 (UN Ref):KPe.008 Korea Tangun Trading Corporation is subordinate to DPRK’s Second Academy of Natural Sciences and is primarily responsible for the procurement of commodities and technologies to support DPRK’s defense research and development programs, including, but not limited to, WMD and delivery system programs and procurement, including materials that are controlled or prohibited under relevant multilateral control regimes. (Parent company):DPRK's Second Academy of Natural Sciences",Entity,AKA,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,02/08/2022,10913 +RYZHANKOU,Maksim,,,,,,,,,00/00/1972,Minsk,Belarus,Belarus,,,,,First Deputy Head of Presidential Administration,,,,,,Minsk,,,"(UK Sanctions List Ref):BEL0103 (UK Statement of Reasons):Maksim Ryzhenkov is the First Deputy Head of the Administration of the President. In this role, Ryzhenkov has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Maksim Ryzhenkov also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14119 +RYZHANKOU,Maxim,,,,,,,,,00/00/1972,Minsk,Belarus,Belarus,,,,,First Deputy Head of Presidential Administration,,,,,,Minsk,,,"(UK Sanctions List Ref):BEL0103 (UK Statement of Reasons):Maksim Ryzhenkov is the First Deputy Head of the Administration of the President. In this role, Ryzhenkov has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Maksim Ryzhenkov also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14119 +RYZHANKOU,Maxim,Uladzimiravich,,,,,,,,00/00/1972,Minsk,Belarus,Belarus,,,,,First Deputy Head of Presidential Administration,,,,,,Minsk,,,"(UK Sanctions List Ref):BEL0103 (UK Statement of Reasons):Maksim Ryzhenkov is the First Deputy Head of the Administration of the President. In this role, Ryzhenkov has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Maksim Ryzhenkov also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14119 +RYZHANKOU,Maxim,Vladimirovich,,,,,,,,00/00/1972,Minsk,Belarus,Belarus,,,,,First Deputy Head of Presidential Administration,,,,,,Minsk,,,"(UK Sanctions List Ref):BEL0103 (UK Statement of Reasons):Maksim Ryzhenkov is the First Deputy Head of the Administration of the President. In this role, Ryzhenkov has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Maksim Ryzhenkov also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14119 +RYZHENKIN,Leonid,Kronidovich,,,,,,,,10/11/1967,,,,722706177,,,,Former deputy general director for infrastructure projects at Strogazmontazh (SGM),,,,,,,,,"(UK Sanctions List Ref):RUS0227 (UK Statement of Reasons):Former deputy general director for infrastructure projects at Stroygazmontazh (SGM) who since 2015 had supervised the construction of the bridge over the Kerch Strait (including the railway part of the bridge) connecting Russia and the illegally annexed Crimean peninsula. Therefore, he supported the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,02/10/2020,31/12/2020,16/09/2022,13927 +RYZHENKOV,Maksim,,,,,,Максім Уладзіміравіч РЫЖАНКОЎ,,,00/00/1972,Minsk,Belarus,Belarus,,,,,First Deputy Head of Presidential Administration,,,,,,Minsk,,,"(UK Sanctions List Ref):BEL0103 (UK Statement of Reasons):Maksim Ryzhenkov is the First Deputy Head of the Administration of the President. In this role, Ryzhenkov has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Maksim Ryzhenkov also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. (Gender):Male",Individual,Primary name,,Belarus,21/06/2021,21/06/2021,21/06/2021,14119 +RYZHENKOV,Maxim,,,,,,Максим Владимирович РЫЖЕНКОВ,,,00/00/1972,Minsk,Belarus,Belarus,,,,,First Deputy Head of Presidential Administration,,,,,,Minsk,,,"(UK Sanctions List Ref):BEL0103 (UK Statement of Reasons):Maksim Ryzhenkov is the First Deputy Head of the Administration of the President. In this role, Ryzhenkov has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Maksim Ryzhenkov also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14119 +RYZHENKOV,Maxim,Uladzimiravich,,,,,,,,00/00/1972,Minsk,Belarus,Belarus,,,,,First Deputy Head of Presidential Administration,,,,,,Minsk,,,"(UK Sanctions List Ref):BEL0103 (UK Statement of Reasons):Maksim Ryzhenkov is the First Deputy Head of the Administration of the President. In this role, Ryzhenkov has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Maksim Ryzhenkov also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14119 +RYZHENKOV,Maxim,Vladimirovich,,,,,,,,00/00/1972,Minsk,Belarus,Belarus,,,,,First Deputy Head of Presidential Administration,,,,,,Minsk,,,"(UK Sanctions List Ref):BEL0103 (UK Statement of Reasons):Maksim Ryzhenkov is the First Deputy Head of the Administration of the President. In this role, Ryzhenkov has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Maksim Ryzhenkov also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14119 +RYZHKOV,Nikolai,Ivanovich,,,,,,,,21/01/1929,"Dyleevka, Donetsk region",Ukrainian SSR (now Ukraine),Russia,,,,,"Member of Committee for Dyleevka, Donetsk, Ukraine federal issues Federal Issues and the North of the Federation Council of the Russian Federation",,,,,,,,Russia,"(UK Sanctions List Ref):RUS0125 Comembers of the Commission to monitor the situation in Ukraine: Vladimir Dzhabarov; Anatoly Lisitsyn, Alexander Weinberg; Mikhail Marchenko; Eugene (Evgeny) Gromyko and Yefgeny Bushmin. (UK Statement of Reasons):Member of the Committee for federal issues, regional politics and the North of the Federation Council of the Russian Federation. On 1 March 2014 Ryzhkov publicly supported in the Federation Council the deployment of Russian forces in Ukraine. (Gender):Male",Individual,Primary name,,Russia,18/03/2014,31/12/2020,31/12/2020,12915 +RYZHKOV,Sergey,Borisovich,,,,Lieutenant General,РЫЖКОВ Сергей Борисович,,,25/10/1968,Voronezh,Russia,Russia,,,,,Commander 41st Combined Arms Army,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0833 (UK Statement of Reasons):Lieutenant General Sergey Borisovich RYZHKOV is a member of the Armed Forces of the Russian Federation, he currently holds the position of Commander of the 41st Combined Arms Army of the Central Military District. He is considered to have been in direct command of and/or otherwise involved in the deployment of Russian forces involved in the Russian invasion of Ukraine. Therefore, there are reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14784 +SAAB HALABI,Tarek,William,,,,,,,,10/09/1963,El Tigre Anzoategui State,Venezuela,Venezuela,,,,,(1) Former Ombudsman (2) Prosecutor General,,,,,,Caracas,,Venezuela,"(UK Sanctions List Ref):VEN0005 Prosecutor General. Former Ombudsman. (UK Statement of Reasons):Venezuelan Attorney General appointed by the Constituent Assembly. In this role and previous roles as Ombudsman and President of the Republican Moral Council, he has undermined democracy and the rule of law in Venezuela by publically supporting actions against opponents of the Government and the withdrawal of competences from the National Assembly. (Gender):Male",Individual,Primary name,,Venezuela,22/01/2018,31/12/2020,31/12/2020,13585 +SAAB MORAN,Alex,Nain,,,,,,,,21/12/1971,Barranquilla,Colombia,(1) Colombia. (2) Venezuela,(1) 085635076. (2) PE085897,(1) Venezuela. (2) Colombia,(1) 21.495.350. (2) 72180017,(1) Venezuela. (2) Colombian,,,,,,,,,Cape Verde,"(UK Sanctions List Ref):GAC0025 (UK Statement of Reasons):Alex Nain Saab Moran engaged in serious corruption in Venezuela through his participation in two of Venezuela’s public programmes: the ‘Local Committees for Supply and Production’ (CLAP) and the Great Housing Scheme Venezuela (Spanish acronym: GMVV). In each case, contracts were improperly granted by public officials to companies owned or controlled by Saab Moran, for the benefit of the official(s) and/or for another person, including Saab Moran himself. In the CLAP programme, basic foodstuffs were provided at highly inflated prices. For GMVV, Saab Moran’s company only delivered a small proportion of the products they had agreed to deliver and for which it had been paid, misappropriating the remainder of the funds. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,22/07/2021,22/07/2021,12/08/2021,14128 +SA'AD,Abdel-Salam,,,,,,,,,00/00/1959,,Syria,Syria,,,,,Former Minister for Health,,,,,,,,,"(UK Sanctions List Ref):SYR0003 (UK Statement of Reasons):Former Minister for Health in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12783 +SA'AD,Rafe'a,Abu,,,,,رافع أبو سعد,,,00/00/1953,Habran (Sweida),Syria,,,,,,State Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0200 (UK Statement of Reasons):Former State Minister. As a former Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population. (Gender):Male",Individual,Primary name,,Syria,14/11/2016,31/12/2020,31/12/2020,13410 +SAAD,Rafe'a,Abu,,,,,,,,00/00/1953,Habran (Sweida),Syria,,,,,,State Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0200 (UK Statement of Reasons):Former State Minister. As a former Government Minister, shares responsibility for the Syrian regime's violent repression of the civilian population. (Gender):Male",Individual,AKA,,Syria,14/11/2016,31/12/2020,31/12/2020,13410 +SAADATI,Mahmoud,,,,,,,,,,Zabol,Iran,Iran,,,,,(1) Former police commander of the Law Enforcement Force in Iran (LEF) in Sistan and Baluchestan Provinces (2) Former police commander of the Law Enforcement Force in Iran (LEF) in Zahedan,,,,,,,,,"(UK Sanctions List Ref):IHR0094 (UK Statement of Reasons):Mahmoud SAADATI is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and the right to freedom of expression and peaceful assembly in Iran in his role as the police commander of the Law Enforcement Force (LEF) in Sistan and Baluchestan province from 3 Oct 2017 to 21 Sep 2020 and in Zahedan from 21 Sep 2020 to 27 Oct 2022 and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15614 +SAAL,FARED,,,,,,,,,18/02/1989,Bonn,Germany,(1) Germany (2) Algeria,,,5802098444,"Germany national identity card number, issued in Bonn, Germany on 15 Apr. 2010, expired on 14 Apr. 2016",,,,,,,,,,"(UK Sanctions List Ref):AQD0169 (UN Ref):QDi.403 German foreign terrorist fighter for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Physical description: eye colour: brown; hair colour: black; height: 178cm; weight: 80kg. European arrest warrant issued by the investigating judge of the German Federal Supreme Court on 13 Aug. 2014. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6104049 (Gender):Male",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,19/06/2017,16/06/2017,31/12/2020,13490 +SAAM KHAN,Amin,Muhammad,Ul Haq,,,,,,,00/00/1960,Nangarhar Province,Afghanistan,Afghanistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0136 (UN Ref):QDi.002 Security coordinator for Usama bin Laden (deceased). Repatriated to Afghanistan in February 2006. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,6944 +SABALAN COMPANY,,,,,,,,,,,,,,,,,,,,,,,Damavand Tehran Highway,Tehran,,Iran,(UK Sanctions List Ref):INU0173 (UN Ref):IRe.058 Sabalan is a cover name for SHIG. [Old Reference # E.29.I.15] (Parent company):Shahid Hemmat Industrial Group (SHIG),Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11155 +SABBAGH,Ziyad,,,,,,,,,00/00/1960,Aleppo,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0369 (UK Statement of Reasons):Minister of Industry. Appointed in August 2020. As a Government Minister shares resposnbility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,06/11/2020,31/12/2020,31/12/2020,13999 +SABER,,,,,,,,,,10/02/1968,"Menzel Jemil, Bizerte",Tunisia,Tunisia,K929139,"Tunisia number, issued on 14 Feb. 1995 (expired on 13 Feb. 2000)",(1) 00319547 (2) SSDSBN68B10Z352F,(1) Issued on 8 Dec. 1994 (2) Italian Fiscal Code,,Ibn Al-Haythman Street,No 6,Manubah,,,Tunis,,Tunisia,(UK Sanctions List Ref):AQD0311 (UN Ref):QDi.064 Mother’s name is Beya Al-Saidani. Deported from Italy to Tunisia on 2 Jun. 2008. Imprisoned in Tunisia in Aug. 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/04/2002,24/04/2002,31/12/2020,7091 +SABERI,Mustafa,Abdollahi,,,,,,,,11/08/1960,,Iran,Iran,D9004878,Iranian,,,Senior Quds Officer,,,,,,,,Iran,"(UK Sanctions List Ref):CTI0001 Links to IRGC5: Soleimani, Shahlai, Shakuri and Arbabsiar. (UK Statement of Reasons):Hamed Abdollahi is a senior commander in the Iranian Revolutionary Guards-Qods Force (IRGC-QF). Mr Abdollahi has been accused of overseeing and coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US, in 2011. (Gender):Male",Individual,AKA,,Counter-Terrorism (International),17/10/2011,31/12/2020,15/03/2022,12205 +SABOUNI,Emad,Abdul-Ghani,,,,,,,,00/00/1964,,,Syria,,,,,Former Minister of Communications and Technology,,,,,,,,,"(UK Sanctions List Ref):SYR0037 (UK Statement of Reasons):Former minister of Telecommunications and Technology. As former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,28/02/2012,31/12/2020,31/12/2020,12506 +SABOUNI,Imad,Abdul Ghani,,,,,,,,00/00/1964,,,Syria,,,,,Former Minister of Communications and Technology,,,,,,,,,"(UK Sanctions List Ref):SYR0037 (UK Statement of Reasons):Former minister of Telecommunications and Technology. As former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,28/02/2012,31/12/2020,31/12/2020,12506 +SABRA,Abd al Kader,,,,,,,,,,,,(1) Lebanon. (2) Syria,,,,,Owner and senior member of numerous political and business organisations.,,,,,,,,,"(UK Sanctions List Ref):SYR0354 Owner of Sabra Maritime Agency, head of the Syrian-Turkish Businessmen Council and founding partner of Phenicia Tourism Company ; president of the Chamber of Maritime Navigation in Syria. Linked to Phoenicia Tourism Company; Sabra Maritime Agency. (UK Statement of Reasons):Leading businessperson operating in Syria with multiple economic interests, especially in the maritime and the tourism sectors. As a major shipping magnate and a close business associate to Rami Makhlouf (regime supporter and cousin of Bashar al-Assad) Adelkader SABRA provides financial and economic support to the Syrian regime, including through offshore companies. Adbulkader SABRA also benefits from his ties to the regime, which allowed him to expand his activities to the real estate sector. He is also involved in money laundering and commercial activities in support to the Syrian regime and its associates. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13819 +SABRA,Abd el Kader,,,,,,,,,,,,(1) Lebanon. (2) Syria,,,,,Owner and senior member of numerous political and business organisations.,,,,,,,,,"(UK Sanctions List Ref):SYR0354 Owner of Sabra Maritime Agency, head of the Syrian-Turkish Businessmen Council and founding partner of Phenicia Tourism Company ; president of the Chamber of Maritime Navigation in Syria. Linked to Phoenicia Tourism Company; Sabra Maritime Agency. (UK Statement of Reasons):Leading businessperson operating in Syria with multiple economic interests, especially in the maritime and the tourism sectors. As a major shipping magnate and a close business associate to Rami Makhlouf (regime supporter and cousin of Bashar al-Assad) Adelkader SABRA provides financial and economic support to the Syrian regime, including through offshore companies. Adbulkader SABRA also benefits from his ties to the regime, which allowed him to expand his activities to the real estate sector. He is also involved in money laundering and commercial activities in support to the Syrian regime and its associates. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13819 +SABRA,Abdelkader,,,,,,,,,,,,(1) Lebanon. (2) Syria,,,,,Owner and senior member of numerous political and business organisations.,,,,,,,,,"(UK Sanctions List Ref):SYR0354 Owner of Sabra Maritime Agency, head of the Syrian-Turkish Businessmen Council and founding partner of Phenicia Tourism Company ; president of the Chamber of Maritime Navigation in Syria. Linked to Phoenicia Tourism Company; Sabra Maritime Agency. (UK Statement of Reasons):Leading businessperson operating in Syria with multiple economic interests, especially in the maritime and the tourism sectors. As a major shipping magnate and a close business associate to Rami Makhlouf (regime supporter and cousin of Bashar al-Assad) Adelkader SABRA provides financial and economic support to the Syrian regime, including through offshore companies. Adbulkader SABRA also benefits from his ties to the regime, which allowed him to expand his activities to the real estate sector. He is also involved in money laundering and commercial activities in support to the Syrian regime and its associates. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13819 +SABRA,Abdul Kader,,,,,,,,,,,,(1) Lebanon. (2) Syria,,,,,Owner and senior member of numerous political and business organisations.,,,,,,,,,"(UK Sanctions List Ref):SYR0354 Owner of Sabra Maritime Agency, head of the Syrian-Turkish Businessmen Council and founding partner of Phenicia Tourism Company ; president of the Chamber of Maritime Navigation in Syria. Linked to Phoenicia Tourism Company; Sabra Maritime Agency. (UK Statement of Reasons):Leading businessperson operating in Syria with multiple economic interests, especially in the maritime and the tourism sectors. As a major shipping magnate and a close business associate to Rami Makhlouf (regime supporter and cousin of Bashar al-Assad) Adelkader SABRA provides financial and economic support to the Syrian regime, including through offshore companies. Adbulkader SABRA also benefits from his ties to the regime, which allowed him to expand his activities to the real estate sector. He is also involved in money laundering and commercial activities in support to the Syrian regime and its associates. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13819 +SABRA,Abdelkader,,,,,,عبد القادر صبره,,,,,,(1) Lebanon. (2) Syria,,,,,Owner and senior member of numerous political and business organisations.,,,,,,,,,"(UK Sanctions List Ref):SYR0354 Owner of Sabra Maritime Agency, head of the Syrian-Turkish Businessmen Council and founding partner of Phenicia Tourism Company ; president of the Chamber of Maritime Navigation in Syria. Linked to Phoenicia Tourism Company; Sabra Maritime Agency. (UK Statement of Reasons):Leading businessperson operating in Syria with multiple economic interests, especially in the maritime and the tourism sectors. As a major shipping magnate and a close business associate to Rami Makhlouf (regime supporter and cousin of Bashar al-Assad) Adelkader SABRA provides financial and economic support to the Syrian regime, including through offshore companies. Adbulkader SABRA also benefits from his ties to the regime, which allowed him to expand his activities to the real estate sector. He is also involved in money laundering and commercial activities in support to the Syrian regime and its associates. (Gender):Male",Individual,Primary name,,Syria,17/02/2020,31/12/2020,14/02/2022,13819 +SABRAH,,,,,,,,,,,,,(1) Lebanon. (2) Syria,,,,,Owner and senior member of numerous political and business organisations.,,,,,,,,,"(UK Sanctions List Ref):SYR0354 Owner of Sabra Maritime Agency, head of the Syrian-Turkish Businessmen Council and founding partner of Phenicia Tourism Company ; president of the Chamber of Maritime Navigation in Syria. Linked to Phoenicia Tourism Company; Sabra Maritime Agency. (UK Statement of Reasons):Leading businessperson operating in Syria with multiple economic interests, especially in the maritime and the tourism sectors. As a major shipping magnate and a close business associate to Rami Makhlouf (regime supporter and cousin of Bashar al-Assad) Adelkader SABRA provides financial and economic support to the Syrian regime, including through offshore companies. Adbulkader SABRA also benefits from his ties to the regime, which allowed him to expand his activities to the real estate sector. He is also involved in money laundering and commercial activities in support to the Syrian regime and its associates. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13819 +SABRAH,Abd al Kader,,,,,,,,,,,,(1) Lebanon. (2) Syria,,,,,Owner and senior member of numerous political and business organisations.,,,,,,,,,"(UK Sanctions List Ref):SYR0354 Owner of Sabra Maritime Agency, head of the Syrian-Turkish Businessmen Council and founding partner of Phenicia Tourism Company ; president of the Chamber of Maritime Navigation in Syria. Linked to Phoenicia Tourism Company; Sabra Maritime Agency. (UK Statement of Reasons):Leading businessperson operating in Syria with multiple economic interests, especially in the maritime and the tourism sectors. As a major shipping magnate and a close business associate to Rami Makhlouf (regime supporter and cousin of Bashar al-Assad) Adelkader SABRA provides financial and economic support to the Syrian regime, including through offshore companies. Adbulkader SABRA also benefits from his ties to the regime, which allowed him to expand his activities to the real estate sector. He is also involved in money laundering and commercial activities in support to the Syrian regime and its associates. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13819 +SABRAH,Abd el Kader,,,,,,,,,,,,(1) Lebanon. (2) Syria,,,,,Owner and senior member of numerous political and business organisations.,,,,,,,,,"(UK Sanctions List Ref):SYR0354 Owner of Sabra Maritime Agency, head of the Syrian-Turkish Businessmen Council and founding partner of Phenicia Tourism Company ; president of the Chamber of Maritime Navigation in Syria. Linked to Phoenicia Tourism Company; Sabra Maritime Agency. (UK Statement of Reasons):Leading businessperson operating in Syria with multiple economic interests, especially in the maritime and the tourism sectors. As a major shipping magnate and a close business associate to Rami Makhlouf (regime supporter and cousin of Bashar al-Assad) Adelkader SABRA provides financial and economic support to the Syrian regime, including through offshore companies. Adbulkader SABRA also benefits from his ties to the regime, which allowed him to expand his activities to the real estate sector. He is also involved in money laundering and commercial activities in support to the Syrian regime and its associates. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13819 +SABRAH,Abdelkader,,,,,,,,,,,,(1) Lebanon. (2) Syria,,,,,Owner and senior member of numerous political and business organisations.,,,,,,,,,"(UK Sanctions List Ref):SYR0354 Owner of Sabra Maritime Agency, head of the Syrian-Turkish Businessmen Council and founding partner of Phenicia Tourism Company ; president of the Chamber of Maritime Navigation in Syria. Linked to Phoenicia Tourism Company; Sabra Maritime Agency. (UK Statement of Reasons):Leading businessperson operating in Syria with multiple economic interests, especially in the maritime and the tourism sectors. As a major shipping magnate and a close business associate to Rami Makhlouf (regime supporter and cousin of Bashar al-Assad) Adelkader SABRA provides financial and economic support to the Syrian regime, including through offshore companies. Adbulkader SABRA also benefits from his ties to the regime, which allowed him to expand his activities to the real estate sector. He is also involved in money laundering and commercial activities in support to the Syrian regime and its associates. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13819 +SABRAH,Abdul Kader,,,,,,,,,,,,(1) Lebanon. (2) Syria,,,,,Owner and senior member of numerous political and business organisations.,,,,,,,,,"(UK Sanctions List Ref):SYR0354 Owner of Sabra Maritime Agency, head of the Syrian-Turkish Businessmen Council and founding partner of Phenicia Tourism Company ; president of the Chamber of Maritime Navigation in Syria. Linked to Phoenicia Tourism Company; Sabra Maritime Agency. (UK Statement of Reasons):Leading businessperson operating in Syria with multiple economic interests, especially in the maritime and the tourism sectors. As a major shipping magnate and a close business associate to Rami Makhlouf (regime supporter and cousin of Bashar al-Assad) Adelkader SABRA provides financial and economic support to the Syrian regime, including through offshore companies. Adbulkader SABRA also benefits from his ties to the regime, which allowed him to expand his activities to the real estate sector. He is also involved in money laundering and commercial activities in support to the Syrian regime and its associates. (Gender):Male",Individual,Primary name variation,,Syria,17/02/2020,31/12/2020,14/02/2022,13819 +SABRI,Abdel,Ilah,,,,,,,,02/02/1966,al Aziziyya,Libya,Libya,(1) 203037 (2) 347834(3) 434021161,(1) Libyan. Issued in Tripoli. (2) Libyan. Issued under name Ibrahim Ali Tantoush. Expired on 21 February 2014 (3) South African. Related to alias Abdel Ilah Sabri. Confiscated.,6910275240086,South African. Related to alias Abdel Ilah Sabri. Confiscated.,,,,,,,Tripoli,,Libya,"(UK Sanctions List Ref):AQD0197 (UN Ref):QDi.057 Associated with Afghan Support Committee (ASC) (QDe.069), Revival of Islamic Heritage Society (RIHS)(QDe.070) and the Libyan Islamic Fighting Group (LIFG) (QDe.011). Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446790. Tripoli as at Feb. 2014",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6927 +SABRI,Dawood,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +SABRI,Dawood,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +SABRI,Dawood,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +SABTINA LTD,,,,,,,,,,,,,,,,,,,530-532 Elder Gate,Elder House,,,,Milton Keynes,,United Kingdom,"(UK Sanctions List Ref):LIB0012 (UK Statement of Reasons):Subsidiary of the Libyan Arab Foreign Investment Company, which is itself a subsidiary of the Libyan Investment Authority. Associated with the Qadhafi regime. (Parent company):Subsidiary of the Libyan Investment Authority (Business Reg No):1794877",Entity,Primary name,,Libya,14/04/2011,31/12/2020,31/12/2020,11765 +SA'D,Abu,,,,,,,,,15/02/1972,,,Qatar,00966737,Qatar number. Expired 16 Feb. 2016.,27263401275,Qatar number,,,,,,,Umm Salal,,Qatar,"(UK Sanctions List Ref):AQD0298 (UN Ref):QDi.382 Qatar-based facilitator who provides financial services to, or in support of, Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896810",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,24/03/2021,13280 +SAD EXPORT IMPORT COMPANY,,,,,,,,,,,,,,,,,,,,,,,P.O.Box 1584864813,Tehran,,Iran,"(UK Sanctions List Ref):INU0174 (UN Ref):IRe.059 Assisted Parchin Chemical Industries and 7th of Tir Industries, designated in resolutions 1747 (2007) and 1737 (2006), in violating paragraph 5 of resolution 1747 (2007). [Old Reference # I.AC.50.20.12.12.(2)]",Entity,Primary name,,Iran (Nuclear),24/01/2012,20/12/2012,31/12/2020,12492 +SAD EXPORT IMPORT COMPANY,,,,,,,,,,,,,,,,,,,,,Haftom Tir Square,South Mofte Avenue,Tour Line No 3/1,Tehran,,Iran,"(UK Sanctions List Ref):INU0174 (UN Ref):IRe.059 Assisted Parchin Chemical Industries and 7th of Tir Industries, designated in resolutions 1747 (2007) and 1737 (2006), in violating paragraph 5 of resolution 1747 (2007). [Old Reference # I.AC.50.20.12.12.(2)]",Entity,Primary name,,Iran (Nuclear),24/01/2012,20/12/2012,31/12/2020,12492 +SAD IMPORT EXPORT COMPANY,,,,,,,,,,,,,,,,,,,,,,,P.O.Box 1584864813,Tehran,,Iran,"(UK Sanctions List Ref):INU0174 (UN Ref):IRe.059 Assisted Parchin Chemical Industries and 7th of Tir Industries, designated in resolutions 1747 (2007) and 1737 (2006), in violating paragraph 5 of resolution 1747 (2007). [Old Reference # I.AC.50.20.12.12.(2)]",Entity,AKA,,Iran (Nuclear),24/01/2012,20/12/2012,31/12/2020,12492 +SAD IMPORT EXPORT COMPANY,,,,,,,,,,,,,,,,,,,,,Haftom Tir Square,South Mofte Avenue,Tour Line No 3/1,Tehran,,Iran,"(UK Sanctions List Ref):INU0174 (UN Ref):IRe.059 Assisted Parchin Chemical Industries and 7th of Tir Industries, designated in resolutions 1747 (2007) and 1737 (2006), in violating paragraph 5 of resolution 1747 (2007). [Old Reference # I.AC.50.20.12.12.(2)]",Entity,AKA,,Iran (Nuclear),24/01/2012,20/12/2012,31/12/2020,12492 +SADEGHI,Mohamed,,,,,,,,,,,,,,,,,(1) Director of the Center to Investigate Organised Crime (2) Technical and Cyber Deputy of the Intelligence Office of the IRGC,,,,,,,,,(UK Sanctions List Ref):IHR0051 (UK Statement of Reasons):Colonel and Deputy of IRGC technical and cyber intelligence and in charge of the centre of analysis and fight against organized crime within the IRGC. Responsible for the arrests and torture of bloggers/journalists. (Gender):Male,Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12660 +SADIQ AL-AHDAL,Mohammad,Hamdi,Mohammad,,,,محمد حمدي محمد صادق الأهدل,,,19/11/1971,Medina,Saudi Arabia,Yemen,541939,"Issue date: 31/07/2000. Issued in Al-Hudaydah, Yemen, in the name of Muhammad Muhammad Abdullah Al-Ahdal",216040,Yemeni identity card number,,Jamal Street,Al-Dahima alley,,,,Al-Hudaydah,,Yemen,(UK Sanctions List Ref):AQD0242 (UN Ref):QDi.020 Responsible for the finances of Al-Qa’ida (QDe.004) in Yemen. Accused of involvement in the attack on the USS Cole in 2000. Arrested in Yemen in Nov. 2003. Sentenced to three years and one month of imprisonment by the specialized criminal court of first instance in Yemen. Released on 25 Dec. 2006 after the completion of his sentence. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6973 +SADOVENKO,Yuriy,Eduardovich,,,,Colonel General,САДОВЕНКО Юрий Эдуардович,,,11/09/1969,Zhytomyr,Ukraine,Russia,,,,,(1) Deputy Minister of Defence of the Russian Federation (2) Head of the office of the Russian Federation Defence Minister,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0820 (UK Statement of Reasons):Colonel General Yuriy Eduardovich SADOVENKO is a member of the Armed Forces of the Russian Federation, he currently holds the position of Deputy Minister of Defence. He is considered to have been in direct command of and/or to have responsibility or influence regarding the deployment of Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14771 +SADRA,,,,,,,,,,,,,,,,,,,Exclusive Road,Bushehr Grazjan Road,5km,,,Bushehr,75179197793,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +SADRA,,,,,,,,,,,,,,,,,,,No. 3 Shafagh St. Dadman Blvd,Qods Square,,,PO Box 14665 495,Tehran,,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +SADRA,,,,,,,,,,,,,,,,,,,Office E 43,Torre E Piso4,Centro Commercial Lido Av,Francisco de Miranda,,Caracas,,Venezuela,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +SADRA,,,,,,,,,,,,,,,,,,,Sadra Building No 3,Shafagh St,Poonak Khavari Blvd,Shahrak Ghods,PO Box 14669 56491,Tehran,,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +SADRA,,,,,,,,,,,,,,,,,,,Zanzabil Mountain Side,Shahid Kalantari Road 24 km,,,,Urmia,4851758674,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +SADRUDDIN,,,,,,,,,,00/00/1968,"(1) Chaman District. (2) Spin Boldak District, Kandahar Province",(1) Pakistan. (2) Afghanistan,Afghanistan,,,,,(1) Vice-Minister of Work and Social Affairs under the Taliban regime (2) Mayor of Kabul City under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0066 (UN Ref):TAi.087 Advisor to the Taliban Supreme Council as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barakzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,25/01/2001,01/02/2021,7435 +SADYGOV,Famil,Kamil Ogly,,,,,Фамиль Камиль Оглы Садыгов,Cyrillic,Russian,03/03/1968,,,Russia,,,,,Member of the Board of Directors of Gazprombank JSC,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1629 (UK Statement of Reasons):Famil Kamil Ogly Sadygov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by:(1) working as a director of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a director of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15573 +SAEED,Hafez,Mohammad,,,,,,,,05/06/1950,"Sargodha, Punjab",Pakistan,Pakistan,,,3520025509842-7,Pakistan,,House No. 116E,Mohalla Johar,Lahore,Tehsil,Lahore City,Lahore District,,Pakistan,"(UK Sanctions List Ref):AQD0183 (UN Ref):QDi.263 Muhammad Saeed is the leader of Lashkar-e-Tayyiba (QDe.118). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543488. Address country Pakistan, location as at May 2008",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9215 +SAEED,Hafiz,,,,,,,,,05/06/1950,"Sargodha, Punjab",Pakistan,Pakistan,,,3520025509842-7,Pakistan,,House No. 116E,Mohalla Johar,Lahore,Tehsil,Lahore City,Lahore District,,Pakistan,"(UK Sanctions List Ref):AQD0183 (UN Ref):QDi.263 Muhammad Saeed is the leader of Lashkar-e-Tayyiba (QDe.118). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543488. Address country Pakistan, location as at May 2008",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9215 +SAEED,Mahmoud,Ibraheem,,,,,,,,00/00/1953,,,Syria,,,,,Former Minister of Transport,,,,,,,,,"(UK Sanctions List Ref):SYR0136 (UK Statement of Reasons):Former Minister of Transport from 2012 to at least 2018. As a former Government Minister, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12774 +SAEED,Muhammad,,,,,,,,,05/06/1950,"Sargodha, Punjab",Pakistan,Pakistan,,,3520025509842-7,Pakistan,,House No. 116E,Mohalla Johar,Lahore,Tehsil,Lahore City,Lahore District,,Pakistan,"(UK Sanctions List Ref):AQD0183 (UN Ref):QDi.263 Muhammad Saeed is the leader of Lashkar-e-Tayyiba (QDe.118). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543488. Address country Pakistan, location as at May 2008",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9215 +SA'EED,Mahmoud,Ibraheem,,,,,,,,00/00/1953,,,Syria,,,,,Former Minister of Transport,,,,,,,,,"(UK Sanctions List Ref):SYR0136 (UK Statement of Reasons):Former Minister of Transport from 2012 to at least 2018. As a former Government Minister, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12774 +SAEED,HAFIZ,MUHAMMAD,,,,,,,,05/06/1950,"Sargodha, Punjab",Pakistan,Pakistan,,,3520025509842-7,Pakistan,,House No. 116E,Mohalla Johar,Lahore,Tehsil,Lahore City,Lahore District,,Pakistan,"(UK Sanctions List Ref):AQD0183 (UN Ref):QDi.263 Muhammad Saeed is the leader of Lashkar-e-Tayyiba (QDe.118). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543488. Address country Pakistan, location as at May 2008",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9215 +SAEEDI,Ali,,,,,,,,,,,,,,,,,(1) Representative of the Guide for the Pasdaran (2) Head of the Political and Ideological Office of the Supreme Leader,,,,,,,,,"(UK Sanctions List Ref):IHR0015 Saeedi is more often referred to as the ‘Representative of the Supreme Leader for the IRGC’. (‘The Guide’ is the Supreme Leader. The Pasdaran refers to the IRGC.) (UK Statement of Reasons):Representative of the Guide for the Pasdaran since 1995 after spending his whole career within the institution of the military, and specifically in the Pasdaran intelligence service. This official role makes him the key figure in the transmission of orders emanating from the Office of the Guide to the Pasdaran's repression apparatus. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12651 +SAEEDI,Shahroudi,Ali,,,,,,,,,,,,,,,,(1) Representative of the Guide for the Pasdaran (2) Head of the Political and Ideological Office of the Supreme Leader,,,,,,,,,"(UK Sanctions List Ref):IHR0015 Saeedi is more often referred to as the ‘Representative of the Supreme Leader for the IRGC’. (‘The Guide’ is the Supreme Leader. The Pasdaran refers to the IRGC.) (UK Statement of Reasons):Representative of the Guide for the Pasdaran since 1995 after spending his whole career within the institution of the military, and specifically in the Pasdaran intelligence service. This official role makes him the key figure in the transmission of orders emanating from the Office of the Guide to the Pasdaran's repression apparatus. (Gender):Male",Individual,AKA,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12651 +SAEEDI,Ali,,,,,,,,,,,,,,,,,(1) Representative of the Guide for the Pasdaran (2) Formerly served in the Intelligence Units of the IRGC (3) Currently heads the Supreme Leader’s own Ideational-Political Office.,,,,,,,,,(UK Sanctions List Ref):INU0008 Saidi is more often referred to as the ‘Representative of the Supreme Leader for the IRGC’. (‘The Guide’ is the Supreme Leader. The Pasdaran refers to the IRGC.) (UK Statement of Reasons):Representative of the Supreme Leader to the IRGC (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/01/2012,31/12/2020,04/03/2022,12497 +SAEEDI,Hojjat,al,Eslam,Ali,,,,,,,,,,,,,,(1) Representative of the Guide for the Pasdaran (2) Formerly served in the Intelligence Units of the IRGC (3) Currently heads the Supreme Leader’s own Ideational-Political Office.,,,,,,,,,(UK Sanctions List Ref):INU0008 Saidi is more often referred to as the ‘Representative of the Supreme Leader for the IRGC’. (‘The Guide’ is the Supreme Leader. The Pasdaran refers to the IRGC.) (UK Statement of Reasons):Representative of the Supreme Leader to the IRGC (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/01/2012,31/12/2020,04/03/2022,12497 +SAEEDI,Shahroudi,Ali,,,,,,,,,,,,,,,,(1) Representative of the Guide for the Pasdaran (2) Formerly served in the Intelligence Units of the IRGC (3) Currently heads the Supreme Leader’s own Ideational-Political Office.,,,,,,,,,(UK Sanctions List Ref):INU0008 Saidi is more often referred to as the ‘Representative of the Supreme Leader for the IRGC’. (‘The Guide’ is the Supreme Leader. The Pasdaran refers to the IRGC.) (UK Statement of Reasons):Representative of the Supreme Leader to the IRGC (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/01/2012,31/12/2020,04/03/2022,12497 +SAEINGP'IL COMPANY,,,,,,,,,,,,,,,,,,,,,,,Nungrado,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +SAEINGP'IL COMPANY,,,,,,,,,,,,,,,,,,,Rakrang No. 1,Rakrang District,Mangyongdae District,,Chilgol-1 dong,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +SAEINGP'IL COMPANY,,,,,,,,,,,,,,,,,,,Reconnaissance General Bureau Headquarters,,,,Hyongjesan-Guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +SAENG PIL TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,Nungrado,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +SAENG PIL TRADING CORPORATION,,,,,,,,,,,,,,,,,,,Rakrang No. 1,Rakrang District,Mangyongdae District,,Chilgol-1 dong,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +SAENG PIL TRADING CORPORATION,,,,,,,,,,,,,,,,,,,Reconnaissance General Bureau Headquarters,,,,Hyongjesan-Guyok,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0136 (UN Ref):KPe.010 Green Pine Associated Corporation (“Green Pine”) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Committee in April 2009 and is the DPRK's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. Green Pine is also responsible for approximately half of the arms and related materiel exported by the DPRK. Green Pine has been identified for sanctions for exporting arms or related material from North Korea. Green Pine specializes in the production of maritime military craft and armaments, such as submarines, military boats and missile systems, and has exported torpedoes and technical assistance to Iranian defence-related firms. Telephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank.com and kndic@co.chesin.com. Address c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok, Pyongyang North Korea.",Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,02/05/2012,31/12/2020,11282 +SAENKO,Sergei,Ivanovich,,,,,Саенко Сергей Иванович,Cyrillic,Russian,25/10/1950,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1108 (UK Statement of Reasons):Sergei SAENKO Ivanovich (hereafter SAENKO) held an editorial position in 2016 and 2017 at the Strategic Culture Foundation (SCF), an “involved person” under the Russia (Sanctions) (EU Exit) Regulations 2019 (RUS1381) for its role in spreading propaganda and disinformation. In this role, SAENKO is or has been involved in providing support for and promoting actions and policies which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,31/03/2022,31/03/2022,15/07/2022,15055 +SAFARI,Mortaza,,,,,,,,,,,,,,,,,Former Commander of IRGC Navy. Rear Admiral,,,,,,,,,"(UK Sanctions List Ref):INU0210 (UN Ref):IRi.035 [Old Reference #I.47.D.4] (UK Statement of Reasons):As former Commander of the IRGC Navy and Deputy head of the Khatam ol-Anbia Central Base for field monitoring and evaluation, Morteza SAFARI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,31/12/2020,9060 +SAFARI,Murtaza,,,,,,,,,,,,,,,,,Former Commander of IRGC Navy. Rear Admiral,,,,,,,,,"(UK Sanctions List Ref):INU0210 (UN Ref):IRi.035 [Old Reference #I.47.D.4] (UK Statement of Reasons):As former Commander of the IRGC Navy and Deputy head of the Khatam ol-Anbia Central Base for field monitoring and evaluation, Morteza SAFARI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,31/12/2020,9060 +SAFARI,Sayd,Ali,,,,,صفری سید علی,,Persian,,,,Iran,,,,,Law Enforcement Force Police Chief of Saqqez,,,,,,,,,"(UK Sanctions List Ref):IHR0098 (UK Statement of Reasons):Sayd Ali SAFARI is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and right to freedom of expression and peaceful assembly in Iran through his role as Law Enforcement Force (LEF) Police Chief of Saqqez and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15618 +SAFARI,Sayyed,Ali,,,,,,,,,,,Iran,,,,,Law Enforcement Force Police Chief of Saqqez,,,,,,,,,"(UK Sanctions List Ref):IHR0098 (UK Statement of Reasons):Sayd Ali SAFARI is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and right to freedom of expression and peaceful assembly in Iran through his role as Law Enforcement Force (LEF) Police Chief of Saqqez and in the suppression of protests. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15618 +SAFARI,MORTEZA,,,,,,,,,,,,,,,,,Former Commander of IRGC Navy. Rear Admiral,,,,,,,,,"(UK Sanctions List Ref):INU0210 (UN Ref):IRi.035 [Old Reference #I.47.D.4] (UK Statement of Reasons):As former Commander of the IRGC Navy and Deputy head of the Khatam ol-Anbia Central Base for field monitoring and evaluation, Morteza SAFARI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,31/12/2020,9060 +SAFAVI,Yahya Raheem,,,,,,,,,00/00/1952,Isfahan,Iran,,,,,,"(1) Commander, IRGC (Pasdaran) (2) Major General",,,,,,,,,"(UK Sanctions List Ref):INU0214 (UN Ref):IRi.036 [Old Reference # I.37.E.1] (UK Statement of Reasons):As senior military adviser to the Supreme Leader, and former Commander in Chief of the IRGC, Yahya Rahim SAFAVI is or has been responsible for, engaging in, providing support for, or promoting, or facilitating, a relevant nuclear activity and is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9006 +SAFAVI,Yahya Raheem,,,,,,,,,,Isfahan,Iran,,,,,,"(1) Commander, IRGC (Pasdaran) (2) Major General",,,,,,,,,"(UK Sanctions List Ref):INU0214 (UN Ref):IRi.036 [Old Reference # I.37.E.1] (UK Statement of Reasons):As senior military adviser to the Supreme Leader, and former Commander in Chief of the IRGC, Yahya Rahim SAFAVI is or has been responsible for, engaging in, providing support for, or promoting, or facilitating, a relevant nuclear activity and is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9006 +SAFAVI,YAHYA RAHIM,,,,,,,,,00/00/1952,Isfahan,Iran,,,,,,"(1) Commander, IRGC (Pasdaran) (2) Major General",,,,,,,,,"(UK Sanctions List Ref):INU0214 (UN Ref):IRi.036 [Old Reference # I.37.E.1] (UK Statement of Reasons):As senior military adviser to the Supreme Leader, and former Commander in Chief of the IRGC, Yahya Rahim SAFAVI is or has been responsible for, engaging in, providing support for, or promoting, or facilitating, a relevant nuclear activity and is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9006 +SAFAVI,YAHYA RAHIM,,,,,,,,,,Isfahan,Iran,,,,,,"(1) Commander, IRGC (Pasdaran) (2) Major General",,,,,,,,,"(UK Sanctions List Ref):INU0214 (UN Ref):IRi.036 [Old Reference # I.37.E.1] (UK Statement of Reasons):As senior military adviser to the Supreme Leader, and former Commander in Chief of the IRGC, Yahya Rahim SAFAVI is or has been responsible for, engaging in, providing support for, or promoting, or facilitating, a relevant nuclear activity and is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9006 +SAFERI,Morteza,,,,,,,,,,,,,,,,,Former Commander of IRGC Navy. Rear Admiral,,,,,,,,,"(UK Sanctions List Ref):INU0210 (UN Ref):IRi.035 [Old Reference #I.47.D.4] (UK Statement of Reasons):As former Commander of the IRGC Navy and Deputy head of the Khatam ol-Anbia Central Base for field monitoring and evaluation, Morteza SAFARI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,31/12/2020,9060 +SAFERI,Murtaza,,,,,,,,,,,,,,,,,Former Commander of IRGC Navy. Rear Admiral,,,,,,,,,"(UK Sanctions List Ref):INU0210 (UN Ref):IRi.035 [Old Reference #I.47.D.4] (UK Statement of Reasons):As former Commander of the IRGC Navy and Deputy head of the Khatam ol-Anbia Central Base for field monitoring and evaluation, Morteza SAFARI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,31/12/2020,9060 +SAFETY EQUIPMENT PROCUREMENT (SEP),,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0175 (UN Ref):IRe.060 AIO front-company, involved in the ballistic missile programme. [Old Reference # E.03.III.11] (Parent company):Aerospace Industries Organisation (AIO)",Entity,Primary name,,Iran (Nuclear),04/03/2008,03/03/2008,31/12/2020,10451 +SAFI,Jawdat,Ibrahim,,,,Brigadier General,,,,,Lattakia,Syria,Syria,,,,,"(1) Commander of the 3rd Corps of the Syrian Army and Head of the Homs Security Committee (2) Commander of 154th Regiment, 4th Division of the Syrian Army (3) Formerly Head of the Political Security Branch in Aleppo and Suweida",,,,,,,,,"(UK Sanctions List Ref):SYR0113 (UK Statement of Reasons):Commander of the 3rd Corps of the Syrian Army with the rank of Brigadier-General and Head of the Homs Security Committee, formerly Commander of the 154th Regiment of the 4th Armoured Division and Head of the Political Security Branch in Aleppo and Suweida. There are reasonable grounds to suspect that he is or has been involved in repressing the civilian population of Syria and supporting or benefiting from the Syrian regime, in particular, in ordering troops to shoot at protestors in and around Damascus, including Mo'adamiyeh, Douma, Abasiyeh, Duma. (Gender):Male",Individual,Primary name,,Syria,24/01/2012,31/12/2020,13/05/2022,12461 +SAFIN,Lenar,Rinatovich,,,,,Ленар Ринатович САФИН,,,11/02/1969,Arsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0882 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14833 +SAFIYE,Hassan,,,,,,,,,00/00/1949,Latakia,,Syria,,,,,Former Minister of Internal Trade and Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0083 (UK Statement of Reasons):Former Minister of Internal Trade and Consumer Protection in power after May 2011 (appointed 27.8.2014). As a former Government Minister, Hassan Safiyeh shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,13/05/2022,13157 +SAFIYEH,Hassan,,,,,,,,,00/00/1949,Latakia,,Syria,,,,,Former Minister of Internal Trade and Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0083 (UK Statement of Reasons):Former Minister of Internal Trade and Consumer Protection in power after May 2011 (appointed 27.8.2014). As a former Government Minister, Hassan Safiyeh shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,22/10/2014,31/12/2020,13/05/2022,13157 +SAHA,,,,,,,,,,,,,,,,,,,Ekbatan City,Karaj Road,Azadi Sq.,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +SAHA,,,,,,,,,,,,,,,,,,,P.O. Box 14155/1449,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +SAHA,,,,,,,,,,,,,,,,,,,P.O. Box 83145/311,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +SAHA,,,,,,,,,,,,,,,,,,,Plant No. 1,opp. Of 2nd Phase of Shahrak e Ekbatan,Karaj Special Road,Mehrabad Airport,,1000 Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +SAHA,,,,,,,,,,,,,,,,,,,Sepabhod Gharani 36,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +SAHA,,,,,,,,,,,,,,,,,,,Special Karaj Road,Mehrabad Airport,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0070 (UK Statement of Reasons):A subsidiary of IAIO within MODAFL. Manufactures, repairs and conducts overhauls of aeroplanes and aircraft engines and procures aviation related parts often of US origin typically via foreign intermediaries. IACI and its subsidiaries have also been detected using a worldwide network of brokers seeking to procure aviation related goods. (Phone number):98 21 6000075 (Fax). 98 21 600816 (Fax). 98 21 6008168 (Fax). 98 21 6035606. 98 21 913319 (Website):www.iaci.ir (Type of entity):Enterprise (Parent company):Iran Aviation Industries Organisation (IAIO) (a subsidiary of MODAFL)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11198 +SAHAB,,,,,,Haji,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +SAHAB,,,,,,Haji,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +SAHAB,,,,,,Haji,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +SAHAB,Qari,,,,,,,,,00/00/1964,"Daraz Village, Jaldak wa Tarnak District, Zabul Province",Afghanistan,Afghanistan,,,,,,Chalo Bawari area,,Quetta City,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0134 (UN Ref):TAi.168 Believed to be in Afghanistan/Pakistan border area. Taliban Shadow Deputy Governor and operational commander in Zabul Province, Afghanistan, responsible for the laying of improvised explosive devices and the organisation of suicide attacks. Physical description: height: 180 cm; weight: approximately 90 kg; build: athletic build; eye colour: brown; hair colour: red; complexion: medium brown. Distinguishing physical marks: large round face, full beard, and walks with a limp due to plastic prosthesis in place of his left lower leg. Ethnic background: Pashtun; Belongs to Tokhi tribe, Barkozai sub-tribe (alternative tribe spelling: Torchi). Barkozai (alternative tribe spelling: Bakorzai, باکورزی (sub-tribe, Kishta Barkorzai (lower Barkorzai) clan. Marital Status: married. Father’s name: Agha Mohammad. Brother’s name: Humdullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,19/03/2014,19/03/2014,01/02/2021,13142 +SAHAB,Qari,,,,,,,,,00/00/1982,,,Afghanistan,,,,,,A Haqqani Madrassa in the Afghanistan/Pakistan border area.,,,,,,,,"(UK Sanctions List Ref):AFG0135 (UN Ref):TAi.169 Senior Haqqani Network (HQN) (TAe.012) member. Closely involved in the group’s military, financial, and propaganda activities. Injured leg. Father’s name is Hajji Meyawar Khan (deceased). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,31/07/2014,31/07/2014,01/02/2021,13144 +SAHAB,Qari,,,,,,,,,00/00/1978,,,Afghanistan,,,,,,A Haqqani Madrassa in the Afghanistan/Pakistan border area.,,,,,,,,"(UK Sanctions List Ref):AFG0135 (UN Ref):TAi.169 Senior Haqqani Network (HQN) (TAe.012) member. Closely involved in the group’s military, financial, and propaganda activities. Injured leg. Father’s name is Hajji Meyawar Khan (deceased). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,31/07/2014,31/07/2014,01/02/2021,13144 +SAHAND ALUMINUM PARTS INDUSTRIAL COMPANY (SAPICO),,,,,,,,,,,,,,,,,,,,,,,Damavand Tehran Highway,Tehran,,Iran,(UK Sanctions List Ref):INU0176 (UN Ref):IRe.061 SAPICO is a cover name for SHIG. [Old Reference # E.29.I.16] (Parent company):Shahid Hemmat Industrial Group (SHIG),Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11156 +SAHEB,Hanafi,,,,,,,,,00/00/1968,"(1) Darzab District, Faryab Province. (2) Qush Tepa District, Jawzjan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Deputy Minister of Education under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0027 (UN Ref):TAi.027 Taliban member responsible for Jawzjan Province in Northern Afghanistan until 2008. Involved in drug trafficking. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7162 +SAHEB,Madani,,,,,,,,,00/00/1960,"(1) Paliran village, Namakab District, Takhar Province. (2) Taluqan City, Takhar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Logar Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0080 (UN Ref):TAi.102 Involved in drug trafficking. Taliban member responsible for military affairs in Takhar province, Afghanistan, as of May 2007. Facilitated fund raising in the Gulf on behalf of the Taliban since 2003. Also facilitated meetings between Taliban officials and wealthy supporters and arranged for more than a dozen individuals to travel to Kabul, Afghanistan, for suicide attacks. Believed to be in the Gulf region. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7258 +SAHEL CONSULTANT ENGINEERS,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0177 (UN Ref):IRe.062 Owned or controlled by Ghorb Nooh. [Old Reference # E.29.II.13] (Parent company):Ghorb Nooh,Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11140 +SAHIB,Hafiz,Mohammad,,,,,,,,05/06/1950,"Sargodha, Punjab",Pakistan,Pakistan,,,3520025509842-7,Pakistan,,House No. 116E,Mohalla Johar,Lahore,Tehsil,Lahore City,Lahore District,,Pakistan,"(UK Sanctions List Ref):AQD0183 (UN Ref):QDi.263 Muhammad Saeed is the leader of Lashkar-e-Tayyiba (QDe.118). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543488. Address country Pakistan, location as at May 2008",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9215 +SAHIB,Shaykh,,,,,,,,,00/00/1943,,India,Saudi Arabia,,,4-6032-0048-1,Saudi Arabian NI,,,,,,,,,,(UK Sanctions List Ref):AQD0221 (UN Ref):QDi.266 Financier of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Has served as the leader of Lashkar-e-Tayyiba in Saudi Arabia. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543496,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9218 +SAHIB,Shaykh,,,,,,,,,00/00/1944,,India,Saudi Arabia,,,4-6032-0048-1,Saudi Arabian NI,,,,,,,,,,(UK Sanctions List Ref):AQD0221 (UN Ref):QDi.266 Financier of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Has served as the leader of Lashkar-e-Tayyiba in Saudi Arabia. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543496,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9218 +SAHIB,Shaykh,,,,,,,,,17/08/1943,,India,Saudi Arabia,,,4-6032-0048-1,Saudi Arabian NI,,,,,,,,,,(UK Sanctions List Ref):AQD0221 (UN Ref):QDi.266 Financier of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Has served as the leader of Lashkar-e-Tayyiba in Saudi Arabia. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543496,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9218 +SAHIB,,,,,,Haji,,,,00/00/1963,"Gardez, Paktia Province",Afghanistan,Afghanistan,,,,,Minister of Information under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0040 (UN Ref):TAi.047 Member of Taliban Supreme Council and member of Taliban Cultural Commission as at 2010. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7209 +SAHIB,Amir,Abdullah,,,,,,,,00/00/1972,Paktika Province,Afghanistan,Afghanistan,,,,,Former Kandahar Province Deputy Taliban Governor,,,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AFG0113 (UN Ref):TAi.145 Has travelled to Kuwait, Saudi Arabia, the Libyan Arab Jamahiriya and the United Arab Emirates to raise funds for the Taliban. Treasurer to Abdul Ghani Baradar Abdul Ahmad Turk (TAi.024). Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,30/07/2010,20/07/2010,01/02/2021,11205 +SAHIB,Haji,Mullah,,,,,,,,00/00/1953,"(1) Baghran District, Helmand Province. (2) Now Zad District, Helmand Province",(1) Afghanistan. (2) Afghanistan,Afghanistan,,,,,Governor of Helmand Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0072 (UN Ref):TAi.094 Member of the Taliban Supreme Council as of 2009. Believed to be in Afghanistan/Pakistan border area. Belongs to Alokozai tribe. Member of Taliban leadership in Helmand Province, Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6905 +SAHIB,Hanafi,,,,,,,,,00/00/1963,"Dara Kolum, Do Aab District, Nuristan Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Public Works under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0053 (UN Ref):TAi.069 Taliban member responsible for Nuristan Province, Afghanistan, as of May 2007. Belongs to Nuristani tribe. Reportedly deceased in early 2012. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7379 +SAHIB,Hottak,,,,,,,,,00/00/1957,Ghazni Province,Afghanistan,Afghanistan,,,,,(1) Deputy (Cultural) Minister of Information and Culture under the Taliban regime. (2) Head of Consular Department of Ministry of Foreign Affairs under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0041 (UN Ref):TAi.049 Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7187 +SAHIRON,Radullan,,,,,,,,,00/00/1955,"Kaunayan, Patikul, Jolo Island",Philippines,Philippines,,,,,,,,,,,Sulu region,,Philippines,(UK Sanctions List Ref):AQD0290 (UN Ref):QDi.208 Physical description: eye colour: black; hair colour: gray; height: 5 feet 6 inches – 168 cm; weight: 140 pounds – 64 kg; build: slight; right arm is amputated above his elbow. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in the kidnapping of its national. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424857,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8788 +SAHIRON,Radullan,,,,,,,,,00/00/1952,"Kaunayan, Patikul, Jolo Island",Philippines,Philippines,,,,,,,,,,,Sulu region,,Philippines,(UK Sanctions List Ref):AQD0290 (UN Ref):QDi.208 Physical description: eye colour: black; hair colour: gray; height: 5 feet 6 inches – 168 cm; weight: 140 pounds – 64 kg; build: slight; right arm is amputated above his elbow. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in the kidnapping of its national. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424857,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8788 +SAHIRON,RADULAN,,,,,,,,,00/00/1955,"Kaunayan, Patikul, Jolo Island",Philippines,Philippines,,,,,,,,,,,Sulu region,,Philippines,(UK Sanctions List Ref):AQD0290 (UN Ref):QDi.208 Physical description: eye colour: black; hair colour: gray; height: 5 feet 6 inches – 168 cm; weight: 140 pounds – 64 kg; build: slight; right arm is amputated above his elbow. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in the kidnapping of its national. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424857,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8788 +SAHIRON,RADULAN,,,,,,,,,00/00/1952,"Kaunayan, Patikul, Jolo Island",Philippines,Philippines,,,,,,,,,,,Sulu region,,Philippines,(UK Sanctions List Ref):AQD0290 (UN Ref):QDi.208 Physical description: eye colour: black; hair colour: gray; height: 5 feet 6 inches – 168 cm; weight: 140 pounds – 64 kg; build: slight; right arm is amputated above his elbow. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in the kidnapping of its national. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424857,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8788 +SAHIRUN,Radulan,,,,,,,,,00/00/1955,"Kaunayan, Patikul, Jolo Island",Philippines,Philippines,,,,,,,,,,,Sulu region,,Philippines,(UK Sanctions List Ref):AQD0290 (UN Ref):QDi.208 Physical description: eye colour: black; hair colour: gray; height: 5 feet 6 inches – 168 cm; weight: 140 pounds – 64 kg; build: slight; right arm is amputated above his elbow. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in the kidnapping of its national. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424857,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8788 +SAHIRUN,Radulan,,,,,,,,,00/00/1952,"Kaunayan, Patikul, Jolo Island",Philippines,Philippines,,,,,,,,,,,Sulu region,,Philippines,(UK Sanctions List Ref):AQD0290 (UN Ref):QDi.208 Physical description: eye colour: black; hair colour: gray; height: 5 feet 6 inches – 168 cm; weight: 140 pounds – 64 kg; build: slight; right arm is amputated above his elbow. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in the kidnapping of its national. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424857,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8788 +SAHRAOUI,NESSIM,BEN ROMDHANE,,,,,نسيم بن رمضان صحراوي,,,03/08/1973,Bizerta,Tunisia,Tunisia,,,,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0276 (UN Ref):QDi.222 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years detention on 20 Nov. 2008. Sentenced in Tunisia to 4 years imprisonment for terrorist activity and in detention in Tunisia as at Jun. 2009. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440724,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8918 +SAID,Mahmoud,Ibraheem,,,,,,,,00/00/1953,,,Syria,,,,,Former Minister of Transport,,,,,,,,,"(UK Sanctions List Ref):SYR0136 (UK Statement of Reasons):Former Minister of Transport from 2012 to at least 2018. As a former Government Minister, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12774 +SAID,Said,,,,,,سعيد سعيد,,,11/12/1955,,,Syria,,,,,"Head of Security, Institute 3000 of the SSRC (a.k.a. Institute 6000 of the SSRC)",,,,,Barzeh,Damascus,,Syria,"(UK Sanctions List Ref):CHW0004 Important employee at Scientific Studies and Research Centre (listed under both the Syria and Chemical Weapons regime). Works under Zuhair Fadhlun (listed under the Syria sanctions regime). (UK Statement of Reasons):Said Said is a member of Institute 3000 a.k.a Institute 6000, the division of the Scientific Studies and Research Centre (SSRC) that is responsible for developing and producing Syria’s chemical weapons. As a result of his role at SSRC, he is associated with the SSRC. (Gender):Male",Individual,Primary name,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13750 +SAID,Said,,,,,,سعيد سعيد,,,11/12/1955,,,Syria,,,,,"Head of Security, Institute 3000 of the SSRC (a.k.a. Institute 6000 of the SSRC)",,,,,Jamraya,Damascus,,Syria,"(UK Sanctions List Ref):CHW0004 Important employee at Scientific Studies and Research Centre (listed under both the Syria and Chemical Weapons regime). Works under Zuhair Fadhlun (listed under the Syria sanctions regime). (UK Statement of Reasons):Said Said is a member of Institute 3000 a.k.a Institute 6000, the division of the Scientific Studies and Research Centre (SSRC) that is responsible for developing and producing Syria’s chemical weapons. As a result of his role at SSRC, he is associated with the SSRC. (Gender):Male",Individual,Primary name,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13750 +SA'ID,,,,,,,,,,00/00/1963,,Lebanon,Lebanon,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0009 (UK Statement of Reasons):Hasan Izz Al-Din is a member of Lebanese Hizballah. He is wanted by the FBI for his involvement in the hijacking of a commercial airliner on 14 June 1985 during which various passengers and crewmembers were assaulted and one US citizen murdered. (Gender):Male,Individual,AKA,,Counter-Terrorism (International),12/10/2001,31/12/2020,11/03/2022,7146 +SA'ID,Mahmoud,Ibraheem,,,,,,,,00/00/1953,,,Syria,,,,,Former Minister of Transport,,,,,,,,,"(UK Sanctions List Ref):SYR0136 (UK Statement of Reasons):Former Minister of Transport from 2012 to at least 2018. As a former Government Minister, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the regime. (Gender):Male",Individual,Primary name,,Syria,16/10/2012,31/12/2020,13/05/2022,12774 +SA'ID,Saeed,,,,,,,,,11/12/1955,,,Syria,,,,,"Head of Security, Institute 3000 of the SSRC (a.k.a. Institute 6000 of the SSRC)",,,,,Barzeh,Damascus,,Syria,"(UK Sanctions List Ref):CHW0004 Important employee at Scientific Studies and Research Centre (listed under both the Syria and Chemical Weapons regime). Works under Zuhair Fadhlun (listed under the Syria sanctions regime). (UK Statement of Reasons):Said Said is a member of Institute 3000 a.k.a Institute 6000, the division of the Scientific Studies and Research Centre (SSRC) that is responsible for developing and producing Syria’s chemical weapons. As a result of his role at SSRC, he is associated with the SSRC. (Gender):Male",Individual,Primary name variation,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13750 +SA'ID,Saeed,,,,,,,,,11/12/1955,,,Syria,,,,,"Head of Security, Institute 3000 of the SSRC (a.k.a. Institute 6000 of the SSRC)",,,,,Jamraya,Damascus,,Syria,"(UK Sanctions List Ref):CHW0004 Important employee at Scientific Studies and Research Centre (listed under both the Syria and Chemical Weapons regime). Works under Zuhair Fadhlun (listed under the Syria sanctions regime). (UK Statement of Reasons):Said Said is a member of Institute 3000 a.k.a Institute 6000, the division of the Scientific Studies and Research Centre (SSRC) that is responsible for developing and producing Syria’s chemical weapons. As a result of his role at SSRC, he is associated with the SSRC. (Gender):Male",Individual,Primary name variation,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13750 +SAIDI,Hojatoleslam,Ali,,,,,,,,,,,,,,,,(1) Representative of the Guide for the Pasdaran (2) Formerly served in the Intelligence Units of the IRGC (3) Currently heads the Supreme Leader’s own Ideational-Political Office.,,,,,,,,,(UK Sanctions List Ref):INU0008 Saidi is more often referred to as the ‘Representative of the Supreme Leader for the IRGC’. (‘The Guide’ is the Supreme Leader. The Pasdaran refers to the IRGC.) (UK Statement of Reasons):Representative of the Supreme Leader to the IRGC (Gender):Male,Individual,Primary name,,Iran (Nuclear),24/01/2012,31/12/2020,04/03/2022,12497 +SAIDI,Shahroudi,Ali,,,,,,,,,,,,,,,,(1) Representative of the Guide for the Pasdaran (2) Head of the Political and Ideological Office of the Supreme Leader,,,,,,,,,"(UK Sanctions List Ref):IHR0015 Saeedi is more often referred to as the ‘Representative of the Supreme Leader for the IRGC’. (‘The Guide’ is the Supreme Leader. The Pasdaran refers to the IRGC.) (UK Statement of Reasons):Representative of the Guide for the Pasdaran since 1995 after spending his whole career within the institution of the military, and specifically in the Pasdaran intelligence service. This official role makes him the key figure in the transmission of orders emanating from the Office of the Guide to the Pasdaran's repression apparatus. (Gender):Male",Individual,AKA,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12651 +SAIDI,Ali,,,,,,,,,,,,,,,,,(1) Representative of the Guide for the Pasdaran (2) Formerly served in the Intelligence Units of the IRGC (3) Currently heads the Supreme Leader’s own Ideational-Political Office.,,,,,,,,,(UK Sanctions List Ref):INU0008 Saidi is more often referred to as the ‘Representative of the Supreme Leader for the IRGC’. (‘The Guide’ is the Supreme Leader. The Pasdaran refers to the IRGC.) (UK Statement of Reasons):Representative of the Supreme Leader to the IRGC (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/01/2012,31/12/2020,04/03/2022,12497 +SAIDI,Hojjat,al,Eslam,Ali,,,,,,,,,,,,,,(1) Representative of the Guide for the Pasdaran (2) Formerly served in the Intelligence Units of the IRGC (3) Currently heads the Supreme Leader’s own Ideational-Political Office.,,,,,,,,,(UK Sanctions List Ref):INU0008 Saidi is more often referred to as the ‘Representative of the Supreme Leader for the IRGC’. (‘The Guide’ is the Supreme Leader. The Pasdaran refers to the IRGC.) (UK Statement of Reasons):Representative of the Supreme Leader to the IRGC (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/01/2012,31/12/2020,04/03/2022,12497 +SAIFUDDIN,,,,,,,,,,14/03/1992,"Ordzhonikidzevskaya village, Sunzhenskiy district, Ingushetia",Russia,Russia,,,,,,,,,,,Mosul,,Iraq,"(UK Sanctions List Ref):AQD0223 (UN Ref):QDi.405 Joined the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115) in September 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116563",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13516 +SAIFUDIN,Muh,,,,,,,,,11/10/1978,,Indonesia,Indonesia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0248 (UN Ref):QDi.416 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: hair colour: black; build: slight. Speaks Indonesian, Arabic and Mindanao dialect. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244333. Syria, location since 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13708 +SAIFUDING,,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +SAIFUDING,,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +SAIFULLAH,Qari,,,,,,,,,00/00/1964,"Daraz Village, Jaldak wa Tarnak District, Zabul Province",Afghanistan,Afghanistan,,,,,,Chalo Bawari area,,Quetta City,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0134 (UN Ref):TAi.168 Believed to be in Afghanistan/Pakistan border area. Taliban Shadow Deputy Governor and operational commander in Zabul Province, Afghanistan, responsible for the laying of improvised explosive devices and the organisation of suicide attacks. Physical description: height: 180 cm; weight: approximately 90 kg; build: athletic build; eye colour: brown; hair colour: red; complexion: medium brown. Distinguishing physical marks: large round face, full beard, and walks with a limp due to plastic prosthesis in place of his left lower leg. Ethnic background: Pashtun; Belongs to Tokhi tribe, Barkozai sub-tribe (alternative tribe spelling: Torchi). Barkozai (alternative tribe spelling: Bakorzai, باکورزی (sub-tribe, Kishta Barkorzai (lower Barkorzai) clan. Marital Status: married. Father’s name: Agha Mohammad. Brother’s name: Humdullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,19/03/2014,19/03/2014,01/02/2021,13142 +SAIID,Mahmoud,Ibraheem,,,,,,,,00/00/1953,,,Syria,,,,,Former Minister of Transport,,,,,,,,,"(UK Sanctions List Ref):SYR0136 (UK Statement of Reasons):Former Minister of Transport from 2012 to at least 2018. As a former Government Minister, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12774 +SAIMAITI,Abdul,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +SAIMAITI,Abdul,,,,,,,,,10/10/1971,"Hetian Area, Xinjiang Uighur Autonomous Region",China,China,,,653225197110100533,Chinese national identity card number,,,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0103 (UN Ref):QDi.268 Overall leader and commander of the Eastern Turkistan Islamic Movement (QDe.088). Involved in fundraising and recruitment for this organization. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1558612 (Gender):Male,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/04/2009,15/04/2009,11/02/2022,10834 +SAIRAN,,,,,,,,,,,,,,,,,,,Hossein Abad/Ardakan Road,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SAIRAN,,,,,,,,,,,,,,,,,,,P.O. Box 18575-365,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SAIRAN,,,,,,,,,,,,,,,,,,,P.O. Box 71265-1589,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SAIRAN,,,,,,,,,,,,,,,,,,,P.O. Box 71365-1174,Eman Khomeini Ave.,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SAIRAN,,,,,,,,,,,,,,,,,,,PO Box 19575 365,Pasdran Ave.,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SAIRAN,,,,,,,,,,,,,,,,,,,Sh. Langari St.,Nobonyad Sq.,Pasdaran Ave.,,,Tehran,19574,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SAIRAN,,,,,,,,,,,,,,,,,,,Shahid Langari Street,Nobonyad Square,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SAIYID,Abdul,Man'am,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0104 (UN Ref):QDi.018 Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010.Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019.INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423806,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6897 +SAJEDI-NIA,Hossein,,,,,,,,,,,,,,,,,Police Operations Deputy Commander.,,,,,,,,,"(UK Sanctions List Ref):IHR0040 (UK Statement of Reasons):Police Operations Deputy Commander. Former head of Tehran Police, former Deputy Chief of Iran's National Police responsible for Police Operations. He is in charge of coordinating, for the Ministry of Interior, repression operations in the Iranian capital. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11787 +SAJIRUN,Radulan,,,,,,,,,00/00/1955,"Kaunayan, Patikul, Jolo Island",Philippines,Philippines,,,,,,,,,,,Sulu region,,Philippines,(UK Sanctions List Ref):AQD0290 (UN Ref):QDi.208 Physical description: eye colour: black; hair colour: gray; height: 5 feet 6 inches – 168 cm; weight: 140 pounds – 64 kg; build: slight; right arm is amputated above his elbow. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in the kidnapping of its national. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424857,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8788 +SAJIRUN,Radulan,,,,,,,,,00/00/1952,"Kaunayan, Patikul, Jolo Island",Philippines,Philippines,,,,,,,,,,,Sulu region,,Philippines,(UK Sanctions List Ref):AQD0290 (UN Ref):QDi.208 Physical description: eye colour: black; hair colour: gray; height: 5 feet 6 inches – 168 cm; weight: 140 pounds – 64 kg; build: slight; right arm is amputated above his elbow. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in the kidnapping of its national. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424857,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8788 +SAKALOUSKI,Ivan,Yurievich,,,,,"СОКОЛОВСКИЙ, Иван Юрьевич",,,,,,,,,,,"Director of the Akrestina detention centre, Minsk",,,,,,,,,"(UK Sanctions List Ref):BEL0026 (UK Statement of Reasons):In his capacity as Director of the Akrestina detention centre in Minsk, Ivan Sakalouski is responsible for the inhumane and degrading treatment, including torture, inflicted on citizens detained in that detention centre in the wake of the 2020 presidential election. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,13/04/2022,13948 +SAKHAROVA,Tatyana,Anatolyevna,,,,,Татьяна Анатольевна Сахарова,,,16/06/1973,Donetsk,Ukraine,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0979 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14930 +SAKHD VA RAH-AN-DA-ZI,,,,,,,,,,,,,,,,,,,PO Box 1516913813,4 East 37th Alley,Alvand Street,Argentina Sq.,,Tehran,,Iran,(UK Sanctions List Ref):INU0120 (UK Statement of Reasons):Company for constructing and commissioning of nuclear power plants. (Phone number):+021 88205095 99 (Website):info@surena gc.com (Email address):www.surena gc.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12269 +SALAEVA,Alla,Leonidovna,,,,,Алла Леонидовна Салаева,,,14/09/1979,Cheboksary,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0282 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14227 +SALAFIST GROUP FOR CALL AND COMBAT,,,,,,,,,,,,,,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,FKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +SALAFIST GROUP FOR CALL AND COMBAT,,,,,,,,,,,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,FKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +SALAFIST GROUP FOR CALL AND COMBAT,,,,,,,,,,,,,,,,,,,,,,,,,,Mauritania,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,FKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +SALAFIST GROUP FOR CALL AND COMBAT,,,,,,,,,,,,,,,,,,,,,,,,,,Morocco,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,FKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +SALAFIST GROUP FOR CALL AND COMBAT,,,,,,,,,,,,,,,,,,,,,,,,,,Niger,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,FKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +SALAFIST GROUP FOR CALL AND COMBAT,,,,,,,,,,,,,,,,,,,,,,,,,,Tunisia,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,FKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +SALAH,Abou,Mohamed,,,,,,,,13/04/1971,"Zeribet El Oued, Wilaya (province) of Biskra",Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0304 (UN Ref):QDi.251 Belongs to the leadership and is in charge of information committee of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Mother’s name is Yamina Soltane. Father’s name is Abdelaziz. Associated with Abdelmalek Droukdel (QDi.232). Arrested in Algeria on 16 Dec. 2012. Incarcerated at the El-Harrach prison in Algiers, as of August 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529206",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,31/12/2020,10692 +SALAH,Zaed,,,,,,,,,,Latakia,Syria,Syria,,,,,Commander of the Syrian Army's 5th Corps,,,,,,,,,"(UK Sanctions List Ref):SYR0380 (UK Statement of Reasons):Major General and since January 2018 Commander of the Syrian Army’s 5th Corps, and previously commanded the Republican Guard’s 30th Division. Responsible for the violent repression of the civilian population by troops under his command, particularly during the increased violence of the Idlib/Hama offensive which began in April 2019. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14073 +SALAH,Zaid,,,,,,زيد صالح,,,,Latakia,Syria,Syria,,,,,Commander of the Syrian Army's 5th Corps,,,,,,,,,"(UK Sanctions List Ref):SYR0380 (UK Statement of Reasons):Major General and since January 2018 Commander of the Syrian Army’s 5th Corps, and previously commanded the Republican Guard’s 30th Division. Responsible for the violent repression of the civilian population by troops under his command, particularly during the increased violence of the Idlib/Hama offensive which began in April 2019. (Gender):Male",Individual,Primary name,,Syria,15/03/2021,15/03/2021,15/03/2021,14073 +SALAH,Egreen,,,,,,,,,,,,,,,,,Libyan Ambassador to Chad,,,,,,,,,"(UK Sanctions List Ref):LIB0076 (UN Ref):LYi.004 (UK Statement of Reasons):Quren Salih Quren Al Qadhafi was the former Libyan ambassador to Chad under the regime of Muammar Qadhafi and there are reasonable grounds to suspect that he has been involved in activities carried out on behalf of the former regime of Muammar Qadhafi implementing or connected to the repressive policies of that regime through his involvement in the procurement and coordination of foreign armed mercenary personnel on behalf of that regime. There are reasonable grounds to suspect this involvement was in violation of the arms embargo imposed under paragraph 9 of United Nations Security Council Resolution 1970. In addition/in the alternative, there are reasonable grounds to suspect that Quren Salih Quren Al Qadhafi’s alleged attempts to spread disinformation in Libya and opposition to the UN and UN-led political process in Libya threatens the peace, stability and security of Libya or which undermines its transition to a democratic, peaceful and independent country. In addition/in the alternative, there are reasonable grounds to suspect that Quren Salih Quren Al Qadhafi is associated with Saif-al Islam Qadhafi and Saadi Qadhafi who are or have been involved in activities carried out on behalf of the former regime of Muammar Qadhafi implementing or connected to the repressive policies of that regime or any other activity which threatens the peace, stability and security of Libya or undermines its transition to a democratic, peaceful and independent country. (Gender):Male",Individual,AKA,,Libya,19/01/2022,18/01/2022,16/02/2022,14172 +SALAHUDIN,,,,,,,,,,18/03/1966,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,"Basilan, previous location until 2016",,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +SALAHUDIN,,,,,,,,,,18/03/1966,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,Lanao del Sur,,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +SALAHUDIN,,,,,,,,,,10/03/1967,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,Lanao del Sur,,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +SALAHUDIN,,,,,,,,,,10/03/1967,"Bulanza, Lantawan, Basilan",Philippines,Philippines,,,,,,,,,,,"Basilan, previous location until 2016",,Philippines,"(UK Sanctions List Ref):AQD0207 (UN Ref):QDi.204 Senior leader of Abu Sayyaf Group (ASG) (QDe.001). Leader of local affiliates of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), in the southern Philippines as of May 2017. Physical description: eye colour: brown; hair colour: brown; height: 5 feet 6 inches – 168 cm; weight: 120 pounds – 54 kg; build: slim; complexion: light-skinned; has facial birthmarks. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Wanted by the Philippines authorities for terrorist offences and by authorities of the United States of America for involvement in terrorist acts. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/12/2005,06/12/2005,31/12/2020,8787 +SALAM,Aisha,Muhammed,Abdul,,,,,,,01/01/1978,Tripoli,Libya,,(1) 03824970 (2) 215215 (3) 428720 (4) B/011641.,"(1) Oman number, issued on 4 May 2014, issued in Muscat, Oman. Date of expiration: 3 May 2024. (2) Libya Passport number (3) Libya (4) - .",98606612,,,,,,,,,,Oman,"(UK Sanctions List Ref):LIB0047 (UN Ref):LYi.009 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5525815",Individual,AKA,Good quality,Libya,27/02/2011,26/02/2011,13/05/2021,11635 +SALAM,Abdul,,,,,,,,,00/00/1975,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Room number 33,5th Floor Sarafi Market,,,Kandahar City,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +SALAM,Abdul,,,,,,,,,00/00/1975,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Safaar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +SALAM,Abdul,,,,,,,,,00/00/1975,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Wesh,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +SALAM,Abdul,,,,,,,,,00/00/1976,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Wesh,Spin Boldak District,,,,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +SALAM,Abdul,,,,,,,,,00/00/1976,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Safaar Bazaar,Garmser District,,,,Helmand Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +SALAM,Abdul,,,,,,,,,00/00/1976,"(1) Minar village, Garmser District, Helmand Province (2) Darweshan Village, Garmser District, Helmand Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,(1) 57388 (2) 665,"(1) (Afghan) (tazkira). Issued in Lashkar Gah District, Helmand Province, Afghanistan (2) (Residential card number), Ayno Maina, Kandahar Province, Afghanistan",,Room number 33,5th Floor Sarafi Market,,,Kandahar City,Kandahar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0131 (UN Ref):TAi.165 Owner of Rahat Ltd. (TAe.013). Involved in the supply of weapons for Taliban, including improvised explosive devices (IED). Arrested in 2012 and in custody in Afghanistan as of January 2013. Associated with Rahat Ltd. (TAe.013). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,AKA,Good quality,Afghanistan,21/12/2012,21/11/2012,01/02/2021,12813 +SALAMA,Adib,,,,,,,,,,,,Syria,,,,,Deputy Director of Air Force Intelligence Directorate in Damascus,,,,,,,,,"(UK Sanctions List Ref):SYR0067 (UK Statement of Reasons):Member of the Syrian security and intelligence services in post after May 2011; Deputy Director of Air Force Intelligence Directorate in Damascus; previously Head of Air Force Intelligence in Aleppo. Member of the Syrian Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011; holds the rank of Major General. Responsible for the violent repression against the civilian population in Syria, through the planning of and involvement in military assaults in Aleppo and authority over the arrest and detention of civilians. (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13380 +SALAMA,Adib,Nimr,,,,,,,,,,,Syria,,,,,Deputy Director of Air Force Intelligence Directorate in Damascus,,,,,,,,,"(UK Sanctions List Ref):SYR0067 (UK Statement of Reasons):Member of the Syrian security and intelligence services in post after May 2011; Deputy Director of Air Force Intelligence Directorate in Damascus; previously Head of Air Force Intelligence in Aleppo. Member of the Syrian Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011; holds the rank of Major General. Responsible for the violent repression against the civilian population in Syria, through the planning of and involvement in military assaults in Aleppo and authority over the arrest and detention of civilians. (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13380 +SALAMA,Mohammed,Adib,,,,,,,,,,,Syria,,,,,Deputy Director of Air Force Intelligence Directorate in Damascus,,,,,,,,,"(UK Sanctions List Ref):SYR0067 (UK Statement of Reasons):Member of the Syrian security and intelligence services in post after May 2011; Deputy Director of Air Force Intelligence Directorate in Damascus; previously Head of Air Force Intelligence in Aleppo. Member of the Syrian Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011; holds the rank of Major General. Responsible for the violent repression against the civilian population in Syria, through the planning of and involvement in military assaults in Aleppo and authority over the arrest and detention of civilians. (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13380 +SALAMAH,Adib,,,,,,,,,,,,Syria,,,,,Deputy Director of Air Force Intelligence Directorate in Damascus,,,,,,,,,"(UK Sanctions List Ref):SYR0067 (UK Statement of Reasons):Member of the Syrian security and intelligence services in post after May 2011; Deputy Director of Air Force Intelligence Directorate in Damascus; previously Head of Air Force Intelligence in Aleppo. Member of the Syrian Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011; holds the rank of Major General. Responsible for the violent repression against the civilian population in Syria, through the planning of and involvement in military assaults in Aleppo and authority over the arrest and detention of civilians. (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13380 +SALAMAH,Adib,Nimr,,,,,,,,,,,Syria,,,,,Deputy Director of Air Force Intelligence Directorate in Damascus,,,,,,,,,"(UK Sanctions List Ref):SYR0067 (UK Statement of Reasons):Member of the Syrian security and intelligence services in post after May 2011; Deputy Director of Air Force Intelligence Directorate in Damascus; previously Head of Air Force Intelligence in Aleppo. Member of the Syrian Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011; holds the rank of Major General. Responsible for the violent repression against the civilian population in Syria, through the planning of and involvement in military assaults in Aleppo and authority over the arrest and detention of civilians. (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13380 +SALAMAH,Mohammed,Adib,,,,,,,,,,,Syria,,,,,Deputy Director of Air Force Intelligence Directorate in Damascus,,,,,,,,,"(UK Sanctions List Ref):SYR0067 (UK Statement of Reasons):Member of the Syrian security and intelligence services in post after May 2011; Deputy Director of Air Force Intelligence Directorate in Damascus; previously Head of Air Force Intelligence in Aleppo. Member of the Syrian Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011; holds the rank of Major General. Responsible for the violent repression against the civilian population in Syria, through the planning of and involvement in military assaults in Aleppo and authority over the arrest and detention of civilians. (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13380 +SALAMEH,Adib,,,,,,,,,,,,Syria,,,,,Deputy Director of Air Force Intelligence Directorate in Damascus,,,,,,,,,"(UK Sanctions List Ref):SYR0067 (UK Statement of Reasons):Member of the Syrian security and intelligence services in post after May 2011; Deputy Director of Air Force Intelligence Directorate in Damascus; previously Head of Air Force Intelligence in Aleppo. Member of the Syrian Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011; holds the rank of Major General. Responsible for the violent repression against the civilian population in Syria, through the planning of and involvement in military assaults in Aleppo and authority over the arrest and detention of civilians. (Gender):Male",Individual,Primary name,,Syria,28/10/2016,31/12/2020,31/12/2020,13380 +SALAMEH,Adib,Nimr,,,,,,,,,,,Syria,,,,,Deputy Director of Air Force Intelligence Directorate in Damascus,,,,,,,,,"(UK Sanctions List Ref):SYR0067 (UK Statement of Reasons):Member of the Syrian security and intelligence services in post after May 2011; Deputy Director of Air Force Intelligence Directorate in Damascus; previously Head of Air Force Intelligence in Aleppo. Member of the Syrian Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011; holds the rank of Major General. Responsible for the violent repression against the civilian population in Syria, through the planning of and involvement in military assaults in Aleppo and authority over the arrest and detention of civilians. (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13380 +SALAMEH,Mohammed,Adib,,,,,,,,,,,Syria,,,,,Deputy Director of Air Force Intelligence Directorate in Damascus,,,,,,,,,"(UK Sanctions List Ref):SYR0067 (UK Statement of Reasons):Member of the Syrian security and intelligence services in post after May 2011; Deputy Director of Air Force Intelligence Directorate in Damascus; previously Head of Air Force Intelligence in Aleppo. Member of the Syrian Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011; holds the rank of Major General. Responsible for the violent repression against the civilian population in Syria, through the planning of and involvement in military assaults in Aleppo and authority over the arrest and detention of civilians. (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13380 +SALARKIA,Mahmoud,,,,,,,,,,,,,,,,,(1) Former Head of the Petrol and Transport commission of the City of Tehran (2) Former Deputy to the Prosecutor General of Tehran during the crackdown of 2009,,,,,,,,,"(UK Sanctions List Ref):IHR0047 (UK Statement of Reasons):Deputy to the Prosecutor-General of Tehran for Prison Affairs during the crackdown of 2009. As Deputy to the Prosecutor-General of Tehran for Prison Affairs he was responsible, by virtue of his senior position, for many of the arrest warrants against innocent, peaceful protesters and activists. Reports show that virtually all those arrested were held incommunicado without access to their lawyer or families, and without charge, for varying lengths of time. He was aware and complicit in allowing and promoting these human rights abuses and has made statements supporting excessive punishments and detentions of individuals, which appear arbitrary. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,28/01/2022,12192 +SALAS,German,Enrique,Rubio,,,,,,,10/12/1963,Bogota,Colombia,Colombia,PE069914,Colombia,79324956,Colombian,,,,,,,,,,"(UK Sanctions List Ref):GAC0026 (UK Statement of Reasons):Alvaro Enrique Pulido Vargas (aka German Enrique Rubio Salas) is a close business associate of Alex Saab. With him, he engaged in serious corruption in Venezuela through his participation in two of Venezuela’s public programmes: the ‘Local Committees for Supply and Production’ (CLAP) and the Great Housing Scheme Venezuela (GMVV). In each case, contracts were improperly granted for the benefit of an official and/or for another person including Pulido Vargas himself. In the CLAP programme, basic foodstuffs were provided at highly inflated prices. For GMVV, Global Construction Fund only delivered a small proportion of the products they had agreed to deliver, misappropriating the remainder of the funds. (Gender):Male",Individual,AKA,,Global Anti-Corruption,22/07/2021,22/07/2021,12/08/2021,14129 +SALAVATI,Abdolghassem,,,,,,ابوالقاسم صلواتی,,,16/07/1967,Tuykersan,Iran,Iran,,,,,,,,,,,,,,"(UK Sanctions List Ref):IHR0004 (UK Statement of Reasons):Judge, Head of Tehran Revolutionary Court, Branch 15. Committing Judge in the Tehran Tribunal. In charge of the post-election cases, he was the judge presiding the ‘show trials’ in summer 2009. He condemned to death two monarchists that appeared in the show trials. He has sentenced more than a hundred political prisoners, human rights activists and demonstrators to lengthy prison sentences. In 2018, reports showed that he continued to hand down similar sentences without proper observance of fair hearing procedures. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11801 +SALAVATI,Abloqasem,,,,,,,,,16/07/1967,Tuykersan,Iran,Iran,,,,,,,,,,,,,,"(UK Sanctions List Ref):IHR0004 (UK Statement of Reasons):Judge, Head of Tehran Revolutionary Court, Branch 15. Committing Judge in the Tehran Tribunal. In charge of the post-election cases, he was the judge presiding the ‘show trials’ in summer 2009. He condemned to death two monarchists that appeared in the show trials. He has sentenced more than a hundred political prisoners, human rights activists and demonstrators to lengthy prison sentences. In 2018, reports showed that he continued to hand down similar sentences without proper observance of fair hearing procedures. (Gender):Male",Individual,AKA,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11801 +SALAVATI,Abolghasem,,,,,,,,,16/07/1967,Tuykersan,Iran,Iran,,,,,,,,,,,,,,"(UK Sanctions List Ref):IHR0004 (UK Statement of Reasons):Judge, Head of Tehran Revolutionary Court, Branch 15. Committing Judge in the Tehran Tribunal. In charge of the post-election cases, he was the judge presiding the ‘show trials’ in summer 2009. He condemned to death two monarchists that appeared in the show trials. He has sentenced more than a hundred political prisoners, human rights activists and demonstrators to lengthy prison sentences. In 2018, reports showed that he continued to hand down similar sentences without proper observance of fair hearing procedures. (Gender):Male",Individual,AKA,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11801 +SALAVATI,Abolghassem,,,,,,,,,16/07/1967,Tuykersan,Iran,Iran,,,,,,,,,,,,,,"(UK Sanctions List Ref):IHR0004 (UK Statement of Reasons):Judge, Head of Tehran Revolutionary Court, Branch 15. Committing Judge in the Tehran Tribunal. In charge of the post-election cases, he was the judge presiding the ‘show trials’ in summer 2009. He condemned to death two monarchists that appeared in the show trials. He has sentenced more than a hundred political prisoners, human rights activists and demonstrators to lengthy prison sentences. In 2018, reports showed that he continued to hand down similar sentences without proper observance of fair hearing procedures. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11801 +SALAVATI,Abolqasem,,,,,,,,,16/07/1967,Tuykersan,Iran,Iran,,,,,,,,,,,,,,"(UK Sanctions List Ref):IHR0004 (UK Statement of Reasons):Judge, Head of Tehran Revolutionary Court, Branch 15. Committing Judge in the Tehran Tribunal. In charge of the post-election cases, he was the judge presiding the ‘show trials’ in summer 2009. He condemned to death two monarchists that appeared in the show trials. He has sentenced more than a hundred political prisoners, human rights activists and demonstrators to lengthy prison sentences. In 2018, reports showed that he continued to hand down similar sentences without proper observance of fair hearing procedures. (Gender):Male",Individual,AKA,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11801 +SALAVATI,Abulghasem,,,,,,,,,16/07/1967,Tuykersan,Iran,Iran,,,,,,,,,,,,,,"(UK Sanctions List Ref):IHR0004 (UK Statement of Reasons):Judge, Head of Tehran Revolutionary Court, Branch 15. Committing Judge in the Tehran Tribunal. In charge of the post-election cases, he was the judge presiding the ‘show trials’ in summer 2009. He condemned to death two monarchists that appeared in the show trials. He has sentenced more than a hundred political prisoners, human rights activists and demonstrators to lengthy prison sentences. In 2018, reports showed that he continued to hand down similar sentences without proper observance of fair hearing procedures. (Gender):Male",Individual,AKA,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11801 +SALAVATI,Abu'l-Qasim,,,,,,,,,16/07/1967,Tuykersan,Iran,Iran,,,,,,,,,,,,,,"(UK Sanctions List Ref):IHR0004 (UK Statement of Reasons):Judge, Head of Tehran Revolutionary Court, Branch 15. Committing Judge in the Tehran Tribunal. In charge of the post-election cases, he was the judge presiding the ‘show trials’ in summer 2009. He condemned to death two monarchists that appeared in the show trials. He has sentenced more than a hundred political prisoners, human rights activists and demonstrators to lengthy prison sentences. In 2018, reports showed that he continued to hand down similar sentences without proper observance of fair hearing procedures. (Gender):Male",Individual,AKA,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11801 +SALAVATSKI HIMICHESKI ZAVOD (SHZ),,,,,,,,,,,,,,,,,,,30 Mologvardeytsev Street,Salavat,Bashkortostan,,,,453256,Russia,"(UK Sanctions List Ref):RUS1077 (UK Statement of Reasons):Joint Stock Company Salavat Chemical Plant (hereafter JSC SALAVAT CHEMICAL PLANT), a subsidiary of Russian State space agency Roscosmos. JSC SALAVAT CHEMICAL PLANT has been and is been involved in obtaining a benefit from or supporting by carrying on business in the Russia chemicals sector a sector of strategic significance to the Government of Russia.",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,24/06/2022,15020 +SALBI,Abdul,Amir,Muhammad,Sa'id,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +SALBI,Abdul,Amir,Muhammad,Sa'id,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +SALBI,Abdul,Amir,Muhammad,Sa'id,,,,,,05/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +SALBI,Abdul,Amir,Muhammad,Sa'id,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +SALBI,Abdul,Amir,Muhammad,Sa'id,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +SALBI,Abdul,Amir,Muhammad,Sa'id,,,,,,01/10/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +SALBI,Abdul,Amir,Muhammad,Sa'id,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,Near Shahid Mazen Mosque and al-Khansa Hospital,,,,,Mosul,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +SALBI,Abdul,Amir,Muhammad,Sa'id,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Idlib,,Syrian Arab Republic,"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +SALBI,Abdul,Amir,Muhammad,Sa'id,,,,,,06/01/1976,(1) Tall’Afar (2) Mosul,(1) Iraq (2) Iraq,Iraq,,,,,,House 110,Street 704,District 704,,,Tall ‘Afar,,Iraq (previous address),"(UK Sanctions List Ref):AQD0370 (UN Ref):QDi.426 Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Mother’s name: Samira Shareef (سمیرة شریف) or Sahra Sharif Abd al-Qader (سھرة شریف عبد القادر). Height 170 cm, right leg amputated. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,22/05/2020,21/05/2020,14/06/2022,13840 +SALDO,Vladimir,,,,,,,,,12/06/1956,,,Ukraine,,,,,Founder of the ‘Salvation Committee for Peace and Order’ in Kherson,,,,,,,,,"(UK Sanctions List Ref):RUS1469 (UK Statement of Reasons):There are reasonable grounds to suspect Volodymir Vasilyovich SALDO of participation in the establishment of the so-called ‘Salvation Committee for Peace and Order’ and therefore that he is or has been involved in providing support for and promoting policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/06/2022,16/06/2022,09/08/2022,15412 +SALDO,Volodymir,Vasilyovich,,,,,Володимир Васильович САЛЬДО,Cyrillic,Russian,12/06/1956,,,Ukraine,,,,,Founder of the ‘Salvation Committee for Peace and Order’ in Kherson,,,,,,,,,"(UK Sanctions List Ref):RUS1469 (UK Statement of Reasons):There are reasonable grounds to suspect Volodymir Vasilyovich SALDO of participation in the establishment of the so-called ‘Salvation Committee for Peace and Order’ and therefore that he is or has been involved in providing support for and promoting policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,16/06/2022,16/06/2022,09/08/2022,15412 +SALEEMI,Hosain,,,,,,,,,,,,,D08531177,issued in Iran (Islamic Republic of),,,"Commander of the Air Force, IRGC (Pasdaran). General",,,,,,,,,"(UK Sanctions List Ref):INU0199 (UN Ref):IRi.038 [Old Reference # I.37.D.1] (UK Statement of Reasons):As Commander in Chief of the IRGC, Hosein SALIMI is or has been involved in providing support for a relevant nuclear activity and is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He was also involved while in his former capacity of commander of the IRGC Air Force.",Individual,AKA,Good quality,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9002 +SALEEMI,Hosein,,,,,,,,,,,,,D08531177,issued in Iran (Islamic Republic of),,,"Commander of the Air Force, IRGC (Pasdaran). General",,,,,,,,,"(UK Sanctions List Ref):INU0199 (UN Ref):IRi.038 [Old Reference # I.37.D.1] (UK Statement of Reasons):As Commander in Chief of the IRGC, Hosein SALIMI is or has been involved in providing support for a relevant nuclear activity and is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He was also involved while in his former capacity of commander of the IRGC Air Force.",Individual,AKA,Good quality,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9002 +SALEEMI,Hossein,,,,,,,,,,,,,D08531177,issued in Iran (Islamic Republic of),,,"Commander of the Air Force, IRGC (Pasdaran). General",,,,,,,,,"(UK Sanctions List Ref):INU0199 (UN Ref):IRi.038 [Old Reference # I.37.D.1] (UK Statement of Reasons):As Commander in Chief of the IRGC, Hosein SALIMI is or has been involved in providing support for a relevant nuclear activity and is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He was also involved while in his former capacity of commander of the IRGC Air Force.",Individual,AKA,Good quality,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9002 +SALEEMI,Husain,,,,,,,,,,,,,D08531177,issued in Iran (Islamic Republic of),,,"Commander of the Air Force, IRGC (Pasdaran). General",,,,,,,,,"(UK Sanctions List Ref):INU0199 (UN Ref):IRi.038 [Old Reference # I.37.D.1] (UK Statement of Reasons):As Commander in Chief of the IRGC, Hosein SALIMI is or has been involved in providing support for a relevant nuclear activity and is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He was also involved while in his former capacity of commander of the IRGC Air Force.",Individual,AKA,Good quality,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9002 +SALEEMI,Hussain,,,,,,,,,,,,,D08531177,issued in Iran (Islamic Republic of),,,"Commander of the Air Force, IRGC (Pasdaran). General",,,,,,,,,"(UK Sanctions List Ref):INU0199 (UN Ref):IRi.038 [Old Reference # I.37.D.1] (UK Statement of Reasons):As Commander in Chief of the IRGC, Hosein SALIMI is or has been involved in providing support for a relevant nuclear activity and is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He was also involved while in his former capacity of commander of the IRGC Air Force.",Individual,AKA,Good quality,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9002 +SALEH,,,,,,,,,,06/06/1963,Gharbia,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0109 (UN Ref):QDi.019 Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6917 +SALEH,Abu,,,,,,,,,19/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +SALEH,Abu,,,,,,,,,18/04/1982,Riyadh,Saudi Arabia,Saudi Arabia,F654645,"Saudi Arabia number. Issue date: 30/04/2005, expiry date: 07/03/2010. Issue date in Hijri Calendar 24/06/1426. Expiry date in Hijri Calendar 21/03/1431.",1028745097,Saudi Arabia civil identification number,,,,,,,,,Yemen,"(UK Sanctions List Ref):AQD0199 (UN Ref):QDi.291 Operative and principal bomb maker of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Believed to be hiding in Yemen as at Mar. 2011. Wanted by Saudi Arabia. Also associated with Nasir 'abd-al-Karim 'Abdullah Al-Wahishi (deceased), Qasim Yahya Mahdi al-Rimi (QDi.282), and Anwar Nasser Abdulla Al-Aulaqi (QDi.283). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4471886",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/04/2011,24/03/2011,11/02/2022,11743 +SALEH,Muhammad,Hameida,,,,,,,,22/09/1988,Alexandria,Egypt,Egypt,,,,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0244 (UN Ref):QDi.387 Member of Al-Qaida (QDe.004). Involved in recruiting suicide bombers to go to Syrian Arab Republic and planning terrorist activities against targets in Europe. Arrested in Cairo, Egypt in 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930736",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13320 +SALEH,Muhammad,Hameida,,,,,,,,22/09/1989,Alexandria,Egypt,Egypt,,,,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0244 (UN Ref):QDi.387 Member of Al-Qaida (QDe.004). Involved in recruiting suicide bombers to go to Syrian Arab Republic and planning terrorist activities against targets in Europe. Arrested in Cairo, Egypt in 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930736",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13320 +SALEH,Salim,,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +SALEH,Salim,,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +SALEH,Salim,,,,,,,,,00/00/1991,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +SALEH,Salim,,,,,,,,,00/00/1991,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +SALEH,Salim,,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +SALEH,Salim,,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +SALEH,Zaed,,,,,,,,,,Latakia,Syria,Syria,,,,,Commander of the Syrian Army's 5th Corps,,,,,,,,,"(UK Sanctions List Ref):SYR0380 (UK Statement of Reasons):Major General and since January 2018 Commander of the Syrian Army’s 5th Corps, and previously commanded the Republican Guard’s 30th Division. Responsible for the violent repression of the civilian population by troops under his command, particularly during the increased violence of the Idlib/Hama offensive which began in April 2019. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14073 +SALEH,Zaid,,,,,,,,,,Latakia,Syria,Syria,,,,,Commander of the Syrian Army's 5th Corps,,,,,,,,,"(UK Sanctions List Ref):SYR0380 (UK Statement of Reasons):Major General and since January 2018 Commander of the Syrian Army’s 5th Corps, and previously commanded the Republican Guard’s 30th Division. Responsible for the violent repression of the civilian population by troops under his command, particularly during the increased violence of the Idlib/Hama offensive which began in April 2019. (Gender):Male",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,15/03/2021,14073 +SALEH,AHMED,ALI,ABDULLAH,,,,أحمد علي عبد الله صالح,,,25/07/1972,,,Yemen,(1) 17979 (2) 02117777 (3) 06070777,(1) Yemeni. Issued under name Ahmed Ali Abdullah Saleh (2) Yemeni. Issued on 8.11.2005 under name Ahmed Ali Abdullah Al-Ahmar (3) Yemeni. Issued on 3.12.2014 under name Ahmed Ali Abdullah Al-Ahmar.,,,,,,,,,,,United Arab Emirates,"(UK Sanctions List Ref):YEM0005 (UN Ref):YEi.005 Has played a key role in facilitating the Houthi military expansion. Has engaged in acts that threaten the peace, security, or stability of Yemen. Ahmed Saleh is the son of the former President of the Republic of Yemen, Ali Abdullah Saleh (YEi.003). Ahmed Ali Abdullah Saleh comes from an area known as Bayt Al-Ahmar, which lies some 20 kilometres southeast of the capital, Sana'a. Diplomatic identity card no.:31/2013/20/003140, issued on 07-07-2013 by the United Arab Emirates’ Ministry of Foreign Affairs under name Ahmed Ali Abdullah Saleh; current status: cancelled. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here (Gender):Male",Individual,Primary name,,Yemen,09/06/2015,14/04/2015,01/02/2021,13254 +SALEH,ALI,ABDULLAH,,,,,علي عبد الله صالح,,,21/03/1945,"(1) Bayt al-Ahmar, Sana’a Governorate (2) Sana’a (3) Sana'a, Sanhan, Al-Rib' al-Sharqi",(1) Yemen (2) Yemen (3) -,Yemen,00016161,Yemen,01010744444,,(1) Former President of the Republic of Yemen (2) President of Yemen’s General People’s Congress party,,,,,,,,,(UK Sanctions List Ref):YEM0003 (UN Ref):YEi.003 Gender [Male]. Status: reportedly deceased. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,Primary name,,Yemen,19/12/2014,07/11/2014,01/02/2021,13192 +SALEH,ALI,ABDULLAH,,,,,علي عبد الله صالح,,,21/03/1946,"(1) Bayt al-Ahmar, Sana’a Governorate (2) Sana’a (3) Sana'a, Sanhan, Al-Rib' al-Sharqi",(1) Yemen (2) Yemen (3) -,Yemen,00016161,Yemen,01010744444,,(1) Former President of the Republic of Yemen (2) President of Yemen’s General People’s Congress party,,,,,,,,,(UK Sanctions List Ref):YEM0003 (UN Ref):YEi.003 Gender [Male]. Status: reportedly deceased. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,Primary name,,Yemen,19/12/2014,07/11/2014,01/02/2021,13192 +SALEH,ALI,ABDULLAH,,,,,علي عبد الله صالح,,,21/03/1942,"(1) Bayt al-Ahmar, Sana’a Governorate (2) Sana’a (3) Sana'a, Sanhan, Al-Rib' al-Sharqi",(1) Yemen (2) Yemen (3) -,Yemen,00016161,Yemen,01010744444,,(1) Former President of the Republic of Yemen (2) President of Yemen’s General People’s Congress party,,,,,,,,,(UK Sanctions List Ref):YEM0003 (UN Ref):YEi.003 Gender [Male]. Status: reportedly deceased. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,Primary name,,Yemen,19/12/2014,07/11/2014,01/02/2021,13192 +SALEH,ALI,ABDULLAH,,,,,علي عبد الله صالح,,,21/03/1947,"(1) Bayt al-Ahmar, Sana’a Governorate (2) Sana’a (3) Sana'a, Sanhan, Al-Rib' al-Sharqi",(1) Yemen (2) Yemen (3) -,Yemen,00016161,Yemen,01010744444,,(1) Former President of the Republic of Yemen (2) President of Yemen’s General People’s Congress party,,,,,,,,,(UK Sanctions List Ref):YEM0003 (UN Ref):YEi.003 Gender [Male]. Status: reportedly deceased. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,Primary name,,Yemen,19/12/2014,07/11/2014,01/02/2021,13192 +SALEH,MOHAMMED,ABDEL-HALIM,HEMAIDA,,,,,,,22/09/1988,Alexandria,Egypt,Egypt,,,,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0244 (UN Ref):QDi.387 Member of Al-Qaida (QDe.004). Involved in recruiting suicide bombers to go to Syrian Arab Republic and planning terrorist activities against targets in Europe. Arrested in Cairo, Egypt in 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930736",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13320 +SALEH,MOHAMMED,ABDEL-HALIM,HEMAIDA,,,,,,,22/09/1989,Alexandria,Egypt,Egypt,,,,,,,,,,,,,Egypt,"(UK Sanctions List Ref):AQD0244 (UN Ref):QDi.387 Member of Al-Qaida (QDe.004). Involved in recruiting suicide bombers to go to Syrian Arab Republic and planning terrorist activities against targets in Europe. Arrested in Cairo, Egypt in 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930736",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13320 +SALEK,ABDULHAI,,,,,Maulavi,عبدالحی سالک,,,00/00/1965,"Awlyatak village, Gardan Masjid area, Chaki Wardak District, Maidan Wardak Province",Afghanistan,Afghanistan,,,,,Governor of Uruzgan Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0086 (UN Ref):TAi.108 Reportedly deceased in North Afghanistan in 1999. Belonged to Wardak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7427 +SALEM,Mohamed,,,,,,,,,00/00/1981,,Saudi Arabia,Mauritania,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0093 (UN Ref):QDi.298 Pakistan-based senior Al-Qaida (QDe.004) leader also associated with The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Wanted by Mauritanian authorities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555823,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/09/2011,15/09/2011,31/12/2020,12148 +SALEM,Ahmed,,,,,,,,,01/02/1948,,,,,,,,General Intelligence Directorate Brigadier General,,,,,,,,,(UK Sanctions List Ref):SYR0247 (UK Statement of Reasons):Brigadier General in the General Intelligence Directorate. (Gender):Male,Individual,AKA,,Syria,24/07/2012,31/12/2020,31/12/2020,12725 +SALEVATI,Abughasem,,,,,,,,,16/07/1967,Tuykersan,Iran,Iran,,,,,,,,,,,,,,"(UK Sanctions List Ref):IHR0004 (UK Statement of Reasons):Judge, Head of Tehran Revolutionary Court, Branch 15. Committing Judge in the Tehran Tribunal. In charge of the post-election cases, he was the judge presiding the ‘show trials’ in summer 2009. He condemned to death two monarchists that appeared in the show trials. He has sentenced more than a hundred political prisoners, human rights activists and demonstrators to lengthy prison sentences. In 2018, reports showed that he continued to hand down similar sentences without proper observance of fair hearing procedures. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,16/02/2022,11801 +SALI,Kipli,,,,,,,,,20/06/1967,"Tulay, Jolo Sulu",Philippines,Philippines,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0309 (UN Ref):QDi.114 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/09/2003,09/09/2003,31/12/2020,7854 +SALIAIEV,Aleksey,Mikhailovich,,,,,,,,04/12/1975,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALIAIEV,Aleksey,Mikhailovich,,,,,,,,22/08/1978,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALIAIEV,Alexei,Mikhailovich,,,,,Саляєв Олексій Михайлович,,,04/12/1975,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALIAIEV,Alexei,Mikhailovich,,,,,Саляєв Олексій Михайлович,,,22/08/1978,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALIAIEV,Oleksii,Mykhailovych,,,,Captain 2nd Rank,Саляев Алексей Михайлович,,,04/12/1975,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALIAIEV,Oleksii,Mykhailovych,,,,Captain 2nd Rank,Саляев Алексей Михайлович,,,22/08/1978,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALIH,Ali,Abdallah,,,,,,,,21/03/1945,"(1) Bayt al-Ahmar, Sana’a Governorate (2) Sana’a (3) Sana'a, Sanhan, Al-Rib' al-Sharqi",(1) Yemen (2) Yemen (3) -,Yemen,00016161,Yemen,01010744444,,(1) Former President of the Republic of Yemen (2) President of Yemen’s General People’s Congress party,,,,,,,,,(UK Sanctions List Ref):YEM0003 (UN Ref):YEi.003 Gender [Male]. Status: reportedly deceased. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13192 +SALIH,Ali,Abdallah,,,,,,,,21/03/1946,"(1) Bayt al-Ahmar, Sana’a Governorate (2) Sana’a (3) Sana'a, Sanhan, Al-Rib' al-Sharqi",(1) Yemen (2) Yemen (3) -,Yemen,00016161,Yemen,01010744444,,(1) Former President of the Republic of Yemen (2) President of Yemen’s General People’s Congress party,,,,,,,,,(UK Sanctions List Ref):YEM0003 (UN Ref):YEi.003 Gender [Male]. Status: reportedly deceased. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13192 +SALIH,Ali,Abdallah,,,,,,,,21/03/1942,"(1) Bayt al-Ahmar, Sana’a Governorate (2) Sana’a (3) Sana'a, Sanhan, Al-Rib' al-Sharqi",(1) Yemen (2) Yemen (3) -,Yemen,00016161,Yemen,01010744444,,(1) Former President of the Republic of Yemen (2) President of Yemen’s General People’s Congress party,,,,,,,,,(UK Sanctions List Ref):YEM0003 (UN Ref):YEi.003 Gender [Male]. Status: reportedly deceased. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13192 +SALIH,Ali,Abdallah,,,,,,,,21/03/1947,"(1) Bayt al-Ahmar, Sana’a Governorate (2) Sana’a (3) Sana'a, Sanhan, Al-Rib' al-Sharqi",(1) Yemen (2) Yemen (3) -,Yemen,00016161,Yemen,01010744444,,(1) Former President of the Republic of Yemen (2) President of Yemen’s General People’s Congress party,,,,,,,,,(UK Sanctions List Ref):YEM0003 (UN Ref):YEi.003 Gender [Male]. Status: reportedly deceased. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Good quality,Yemen,19/12/2014,07/11/2014,01/02/2021,13192 +SALIM,Abu,,,,,,,,,20/01/1960,,Kuwait,Kuwait,1739010,"Kuwait number, issued on 26 May 2003, issued in Kuwait (and expired on 25 May 2008)",,,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0190 (UN Ref):QDi.236 Review pursuant to Security Council resolution 1822 (2008) was concluded on 14 Sep. 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1518790. Address country Kuwait, residence as at Mar. 2009.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/01/2008,16/01/2008,31/12/2020,9224 +SALIM,Ahmad,Fuad,,,,,,,,19/06/1951,Giza,Egypt,Egypt,(1) 1084010 (2) 19820215,(1) Egyptian (2) - .,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0126 (UN Ref):QDi.006 Leader of Al-Qaida (QDe.004). Former operational and military leader of Egyptian Islamic Jihad (QDe.003), was a close associate of Usama Bin Laden (deceased). Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487197",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7016 +SALIM,Ahmed,Fuad,,,,,,,,19/06/1951,Giza,Egypt,Egypt,(1) 1084010 (2) 19820215,(1) Egyptian (2) - .,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0126 (UN Ref):QDi.006 Leader of Al-Qaida (QDe.004). Former operational and military leader of Egyptian Islamic Jihad (QDe.003), was a close associate of Usama Bin Laden (deceased). Believed to be in the Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4487197",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7016 +SALIM,Ali,,,,,,,,,18/04/1966,Beni-Suef,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0133 (UN Ref):QDi.196 Member of the Shura Council of Al-Qaida (QDe.004) and Egyptian Islamic Jihad (QDe.003). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8719 +SALIM,Ammi,,,,,,,,,28/10/1956,,,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0361 (UN Ref):QDi.424 Founding member of Ansar Eddine (QDe.135), operational leader of Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2019,14/08/2019,31/12/2020,13790 +SALIM,Ammi,,,,,,,,,31/12/1952,,,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0361 (UN Ref):QDi.424 Founding member of Ansar Eddine (QDe.135), operational leader of Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2019,14/08/2019,31/12/2020,13790 +SALIM,Ammi,,,,,,,,,01/01/1958,,,Mali,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0361 (UN Ref):QDi.424 Founding member of Ansar Eddine (QDe.135), operational leader of Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2019,14/08/2019,31/12/2020,13790 +SALIM,Julkipli,,,,,,,,,20/06/1967,"Tulay, Jolo Sulu",Philippines,Philippines,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0309 (UN Ref):QDi.114 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/09/2003,09/09/2003,31/12/2020,7854 +SALIM,Okolu,,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +SALIM,Okolu,,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +SALIM,Okolu,,,,,,,,,00/00/1991,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +SALIM,Okolu,,,,,,,,,00/00/1991,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +SALIM,Okolu,,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,,,Central African Republic,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +SALIM,Okolu,,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0012 (UN Ref):CFi.011 Salim Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Salim was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13379 +SALIM,Rif'at,,,,,,,,,21/04/1960,(1) Sharqiyah. (2) Zaqaziq,(1) Egypt (2) Egypt,Egypt,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0341 (UN Ref):QDi.193 Father’s name is Ahmed Ezat Zaki. Member of Egyptian Islamic Jihad (QDe.003). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4514888,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,12/01/2022,8716 +SALIM,Rif'at,,,,,,,,,21/04/1960,(1) Sharqiyah. (2) Zaqaziq,(1) Egypt (2) Egypt,Egypt,,,,,,May be on the Pakistani-Afghan border,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0341 (UN Ref):QDi.193 Father’s name is Ahmed Ezat Zaki. Member of Egyptian Islamic Jihad (QDe.003). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4514888,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,12/01/2022,8716 +SALIMI,Hosain,,,,,,,,,,,,,D08531177,issued in Iran (Islamic Republic of),,,"Commander of the Air Force, IRGC (Pasdaran). General",,,,,,,,,"(UK Sanctions List Ref):INU0199 (UN Ref):IRi.038 [Old Reference # I.37.D.1] (UK Statement of Reasons):As Commander in Chief of the IRGC, Hosein SALIMI is or has been involved in providing support for a relevant nuclear activity and is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He was also involved while in his former capacity of commander of the IRGC Air Force.",Individual,AKA,Good quality,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9002 +SALIMI,Hossein,,,,,,,,,,,,,D08531177,issued in Iran (Islamic Republic of),,,"Commander of the Air Force, IRGC (Pasdaran). General",,,,,,,,,"(UK Sanctions List Ref):INU0199 (UN Ref):IRi.038 [Old Reference # I.37.D.1] (UK Statement of Reasons):As Commander in Chief of the IRGC, Hosein SALIMI is or has been involved in providing support for a relevant nuclear activity and is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He was also involved while in his former capacity of commander of the IRGC Air Force.",Individual,AKA,Good quality,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9002 +SALIMI,Husain,,,,,,,,,,,,,D08531177,issued in Iran (Islamic Republic of),,,"Commander of the Air Force, IRGC (Pasdaran). General",,,,,,,,,"(UK Sanctions List Ref):INU0199 (UN Ref):IRi.038 [Old Reference # I.37.D.1] (UK Statement of Reasons):As Commander in Chief of the IRGC, Hosein SALIMI is or has been involved in providing support for a relevant nuclear activity and is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He was also involved while in his former capacity of commander of the IRGC Air Force.",Individual,AKA,Good quality,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9002 +SALIMI,Hussain,,,,,,,,,,,,,D08531177,issued in Iran (Islamic Republic of),,,"Commander of the Air Force, IRGC (Pasdaran). General",,,,,,,,,"(UK Sanctions List Ref):INU0199 (UN Ref):IRi.038 [Old Reference # I.37.D.1] (UK Statement of Reasons):As Commander in Chief of the IRGC, Hosein SALIMI is or has been involved in providing support for a relevant nuclear activity and is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He was also involved while in his former capacity of commander of the IRGC Air Force.",Individual,AKA,Good quality,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9002 +SALIMI,HOSEIN,,,,,,,,,,,,,D08531177,issued in Iran (Islamic Republic of),,,"Commander of the Air Force, IRGC (Pasdaran). General",,,,,,,,,"(UK Sanctions List Ref):INU0199 (UN Ref):IRi.038 [Old Reference # I.37.D.1] (UK Statement of Reasons):As Commander in Chief of the IRGC, Hosein SALIMI is or has been involved in providing support for a relevant nuclear activity and is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019. He was also involved while in his former capacity of commander of the IRGC Air Force.",Individual,Primary name,,Iran (Nuclear),09/02/2007,23/12/2006,04/03/2022,9002 +SALIWA,Rudi,,,,,,,,,,,,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0140 (UN Ref):IQi.079,Individual,AKA,Good quality,Iraq,07/06/2004,02/06/2004,31/12/2020,8384 +SALMAAN,Abu,,,,,,,,,10/04/1979,Garissa,Kenya,,A1180173,Kenya,23446085,,,,,,,,Nairobi,,Kenya,(UK Sanctions List Ref):SOM0009 (UN Ref):SOi.009 Possibly Ethiopian,Individual,AKA,Good quality,Somalia,27/09/2011,28/07/2011,31/12/2020,12029 +SALMAN,,,,,,,الحسن,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,AKA,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +SALMAN,Abu,,,,,,,,,10/04/1979,Garissa,Kenya,,A1180173,Kenya,23446085,,,,,,,,Nairobi,,Kenya,(UK Sanctions List Ref):SOM0009 (UN Ref):SOi.009 Possibly Ethiopian,Individual,AKA,Good quality,Somalia,27/09/2011,28/07/2011,31/12/2020,12029 +SALMAN,Ameer,,,,,,,,,00/00/1979,Nairobi,Kenya,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0013 (UN Ref):SOi.013,Individual,AKA,Good quality,Somalia,23/10/2014,23/09/2014,31/12/2020,13147 +SALMAN,Mu'alim,,,,,,,,,00/00/1979,Nairobi,Kenya,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0013 (UN Ref):SOi.013,Individual,AKA,Good quality,Somalia,23/10/2014,23/09/2014,31/12/2020,13147 +SALMAN,Muhammad,Da'ud,,,,,,,,25/10/1983,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +SALMAN,Muhammad,Da'ud,,,,,,,,25/10/1983,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Fuad Dawod Farm,,,,Az Zabadani,Damascus,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +SALMAN,Muhammad,Da'ud,,,,,,,,00/00/1977,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Fuad Dawod Farm,,,,Az Zabadani,Damascus,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +SALMAN,Muhammad,Da'ud,,,,,,,,00/00/1977,Baghdad,Iraq,Iraq,284173,Iraq. Expires 21 August 2005,,,,Al-Shahid Street,,,,Al-Mahata Neighbourhood,Az Zabadani,,Syria,(UK Sanctions List Ref):IRQ0145 (UN Ref):IQi.084,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8696 +SALMAN,Qais,Muhammad,,,,,,,,21/10/1971,(1) Al-Owja. (2) Baghdad,(1) Iraq (2) Iraq,Iraq,,,,,,,,,,,Bludan,,Syria,(UK Sanctions List Ref):IRQ0144 (UN Ref):IQi.083,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8695 +SALMAN,Qais,Muhammad,,,,,,,,21/10/1971,(1) Al-Owja. (2) Baghdad,(1) Iraq (2) Iraq,Iraq,,,,,,,,,Mutanabi Area,Al Monsur,Baghdad,,Iraq,(UK Sanctions List Ref):IRQ0144 (UN Ref):IQi.083,Individual,AKA,Good quality,Iraq,29/07/2005,27/07/2005,31/12/2020,8695 +SALMAN,MAALIM,,,,,,,,,00/00/1979,Nairobi,Kenya,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0013 (UN Ref):SOi.013,Individual,Primary name,,Somalia,23/10/2014,23/09/2014,31/12/2020,13147 +SALMANE,,,,,,,,,,03/04/1968,Tunis,Tunisia,Tunisia,M307707,"issue date: 12/04/2000, expiry date: 11/04/2005",,,,Via Masina No 7,,,,,Milan,,Italy,(UK Sanctions List Ref):AQD0230 (UN Ref):QDi.072 Italian Fiscal Code: KMMMHD68D03Z352N. Deported from Italy to Tunisia on 22 July 2005. Serving an eight-year prison term in Tunisia for membership of a terrorist organization abroad as at Jan. 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/09/2002,03/09/2002,31/12/2020,7220 +SALMANE,,,,,,,,,,20/11/1975,Sfax,Tunisia,Tunisia,P182583,Tunisian. Issued on 13 September 2003. Expired on 12 September 2007,05258253,,,No.2,89th Street,Zehrouni,,,Tunis,,Tunisia,"(UK Sanctions List Ref):AQD0129 (UN Ref):QDi.150 Sentenced to six years and ten months of imprisonment for membership of a terrorist association by the Appeal Court of Milan, Italy, on 7 Feb. 2008. Imprisoned in Sfax Prison on 5 June 2007 pursuant to an order issued by the Appeals Tribunal in Tunisia for joining an organization linked to terrorist crimes (case No.9301/207). Sentenced to two years and 15 days’ imprisonment and released on 18 June 2008.U Considered a fugitive from justice by the Italian authorities as at Jul. 2008. Under administrative control measure in Tunisia as at 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1419776",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,11/02/2022,7875 +SALME,Adib,,,,,,,,,,,,Syria,,,,,Deputy Director of Air Force Intelligence Directorate in Damascus,,,,,,,,,"(UK Sanctions List Ref):SYR0067 (UK Statement of Reasons):Member of the Syrian security and intelligence services in post after May 2011; Deputy Director of Air Force Intelligence Directorate in Damascus; previously Head of Air Force Intelligence in Aleppo. Member of the Syrian Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011; holds the rank of Major General. Responsible for the violent repression against the civilian population in Syria, through the planning of and involvement in military assaults in Aleppo and authority over the arrest and detention of civilians. (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13380 +SALME,Adib,Nimr,,,,,,,,,,,Syria,,,,,Deputy Director of Air Force Intelligence Directorate in Damascus,,,,,,,,,"(UK Sanctions List Ref):SYR0067 (UK Statement of Reasons):Member of the Syrian security and intelligence services in post after May 2011; Deputy Director of Air Force Intelligence Directorate in Damascus; previously Head of Air Force Intelligence in Aleppo. Member of the Syrian Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011; holds the rank of Major General. Responsible for the violent repression against the civilian population in Syria, through the planning of and involvement in military assaults in Aleppo and authority over the arrest and detention of civilians. (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13380 +SALME,Mohammed,Adib,,,,,,,,,,,Syria,,,,,Deputy Director of Air Force Intelligence Directorate in Damascus,,,,,,,,,"(UK Sanctions List Ref):SYR0067 (UK Statement of Reasons):Member of the Syrian security and intelligence services in post after May 2011; Deputy Director of Air Force Intelligence Directorate in Damascus; previously Head of Air Force Intelligence in Aleppo. Member of the Syrian Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011; holds the rank of Major General. Responsible for the violent repression against the civilian population in Syria, through the planning of and involvement in military assaults in Aleppo and authority over the arrest and detention of civilians. (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,31/12/2020,13380 +SALONGO,Ali,Mohammed,,,,,,,,00/00/1994,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +SALONGO,Ali,Mohammed,,,,,,,,00/00/1993,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +SALONGO,Ali,Mohammed,,,,,,,,00/00/1995,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +SALONGO,Ali,Mohammed,,,,,,,,00/00/1992,,,,,,,,"Deputy, Lord's Resistance Army",,,,,,Kafia Kingi,,,"(UK Sanctions List Ref):CAF0011 (UN Ref):CFi.010 Ali Kony is a deputy in the Lord’s Resistance Army (LRA) (CFe.002), a designated entity and the son of LRA leader Joseph Kony (CFi.009), a designated individual. Ali was incorporated into the LRA’s leadership hierarchy in 2010. He is part of a group of senior LRA officers who are based with Joseph Kony. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Kafia Kingi, a territory on the border of Sudan and South Sudan whose final status has yet to be determined",Individual,AKA,Good quality,Central African Republic,01/09/2016,23/08/2016,01/02/2021,13378 +SALPAGAROV,Akhmat,Anzorovich,,,,,Ахмат Анзорович САЛПАГАРОВ,,,31/12/1962,Novyi Karachai,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0946 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14897 +SALTI,Muhammad,,,,,,,,,00/00/1945,Safad,Palestine,,,,,,Commander-in-Chief and Chief of Staff of the Palestine Liberation Army,,,,,,,,,"(UK Sanctions List Ref):RUS1548 (UK Statement of Reasons):Muhammed AL-SALTI is the Commander-in-Chief of the Palestine Liberation Army. Muhammed AL-SALTI is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because AL-SALTI has been recruiting Palestinians refugees to fight alongside Russian forces in Ukraine. Therefore, AL SALTI is engaging in and providing support for actions or policies that have which destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/07/2022,26/07/2022,26/07/2022,15476 +SALWWAN,Samir,,,,,,,,,00/00/1963,,Lebanon,Lebanon,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0009 (UK Statement of Reasons):Hasan Izz Al-Din is a member of Lebanese Hizballah. He is wanted by the FBI for his involvement in the hijacking of a commercial airliner on 14 June 1985 during which various passengers and crewmembers were assaulted and one US citizen murdered. (Gender):Male,Individual,AKA,,Counter-Terrorism (International),12/10/2001,31/12/2020,11/03/2022,7146 +SALYAEV,Aleksey,Mikhailovich,,,,,,,,04/12/1975,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALYAEV,Aleksey,Mikhailovich,,,,,,,,22/08/1978,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALYAEV,Alexei,Mikhailovich,,,,,,,,04/12/1975,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALYAEV,Alexei,Mikhailovich,,,,,,,,22/08/1978,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALYAEV,Oleksii,Mykhailovych,,,,,,,,04/12/1975,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALYAEV,Oleksii,Mykhailovych,,,,,,,,22/08/1978,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALYAYEV,Aleksey,Mikhailovich,,,,,,,,04/12/1975,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALYAYEV,Aleksey,Mikhailovich,,,,,,,,22/08/1978,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALYAYEV,Alexei,Mikhailovich,,,,,,,,04/12/1975,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALYAYEV,Alexei,Mikhailovich,,,,,,,,22/08/1978,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALYAYEV,Oleksii,Mykhailovych,,,,,,,,04/12/1975,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALYAYEV,Oleksii,Mykhailovych,,,,,,,,22/08/1978,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Russia,,,,,Commander of the Border Patrol Boat ‘Don’,,,,,,,,,"(UK Sanctions List Ref):RUS0208 (UK Statement of Reasons):Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation, 2nd rank captain. He was in command of the vessel that actively participated in actions of the Russian Federation against Ukrainian vessels and their crew on 25 November 2018 and conducted ramming of the estuary tug, “Yany Kapu”, of the Ukrainian Navy and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13780 +SALYUKOV,Oleg,Leonydovych,,,,General of the Army,САЛЮКОВ Олег Леонидович,,,21/05/1955,Saratov,Russia,Russia,,,,,Commander-in-Chief Ground Forces of the Russian Federation,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0697 (UK Statement of Reasons):General of the Army Oleg Leonydovich SALYUKOV is a member of the Armed Forces of the Russian Federation, he currently holds the position of Commander-in-Chief of the Ground Forces. He is deemed to have been in direct command of, or otherwise involved in the deployment of Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14648 +SAM JONG 1,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0099 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK merchant vessel M/V SAM JONG 1 was involved in ship-to-ship transfer operations of oil in late January 2018. Listed as asset of Korea Samjong Shipping (OFSI ID: 13635, UN Reference Number: UN Ref KPe.064) (IMO number):8405311 (Current owners):Korea Samjong Shipping (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):1038 (Length of ship):70 (Year built):1984",Ship,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13650 +SAM JONG 2,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0100 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK merchant vessel M/V SAM JONG 2 was involved in ship-to-ship transfer operations of oil in late January 2018. Listed as asset of Korea Samjong Shipping (OFSI ID: 13635, UN Reference Number: UN Ref KPe.064) (IMO number):7408873 (Current owners):Korea Samjong Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Oil tanker (Tonnage of ship):1676 (Length of ship):80 (Year built):1975",Ship,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13651 +SAM MA 2,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0101 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V SAM MA 2 imported refined petroleum products in October, early November and mid-November 2017 through multiple ship-to-ship transfers. Listed as asset of Korea Samma Shipping Co (OFSI ID: 13636, UN Reference Number: UN Ref KPe.065) (IMO number):8106496 (Current owners):Korea Samma Shipping (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):962 (Length of ship):70 (Year built):1981",Ship,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13652 +SAM_MA_2,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0101 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V SAM MA 2 imported refined petroleum products in October, early November and mid-November 2017 through multiple ship-to-ship transfers. Listed as asset of Korea Samma Shipping Co (OFSI ID: 13636, UN Reference Number: UN Ref KPe.065) (IMO number):8106496 (Current owners):Korea Samma Shipping (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):962 (Length of ship):70 (Year built):1981",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13652 +SAMA TV,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0275 (UK Statement of Reasons):Previously known as Addounia TV. Sama TV is a telecommunications entity which spreads disinformation and incites violence against the civilian population in Syria. (Phone number):(1) +963-11-5667271 (2) +963-11-5667274 (Website):http://www.addounia.tv (Type of entity):Media. State-owned,Entity,Primary name,,Syria,26/09/2011,31/12/2020,13/05/2022,12151 +SAMAD,Abdul,,,,,,,,,00/00/1977,"Chak number 36/DNB, Rajkan, Madina Colony, Bahawalpur District, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0224 (UN Ref):QDi.296 Physical description: 5 feet 2 inches; 157,4 cm. Name of father: Ali Muhammad. Mati ur-Rehman is the chief operational commander of Lashkar i Jhangvi (LJ) (QDe.096). Associated with Harakat-ul Jihad Islami (QDe.130). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4674457",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,02/09/2011,22/08/2011,31/12/2020,12038 +SAMAD,Abdus,,,,,,,,,17/08/1938,"Jombang, East Java",Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,"(UK Sanctions List Ref):AQD0114 (UN Ref):QDi.217 Formed Jemmah Anshorut Tauhid (JAT) (QDe.133) in 2008. In 2010, arrested for incitement to commit terrorism and fundraising with respect to a training camp in Aceh, Indonesia and sentenced to 15 years in 2011. Ba'asyir was released from prison on 8 January 2021 after serving his sentence in accordance with Indonesian laws and regulations. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 24 November 2020. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1428633",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,07/04/2021,8831 +SAMAN,Abdul,,,,,,,,,00/00/1970,,Afghanistan,Afghanistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AFG0126 (UN Ref):TAi.160 Senior Taliban member responsible for the manufacturing of improvised explosive devices (IED). Involved in recruiting and deploying suicide bombers to conduct attacks in Afghanistan. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,AKA,Good quality,Afghanistan,29/03/2012,02/03/2012,01/02/2021,12556 +SAMAN NASB ZAYENDEH ROOD,,,,,,,,,,,,,,,,,,,Unit 7,3rd Floor,Mehdi Building,Kahorz Blvd,,Esfahan,,Iran,(UK Sanctions List Ref):INU0107 (UK Statement of Reasons):Involved in the Iranian nuclear programme at uranium enrichment facilities in Iran.,Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,31/12/2020,12264 +SAMAN NASBZAINDE ROOD,,,,,,,,,,,,,,,,,,,Unit 7,3rd Floor,Mehdi Building,Kahorz Blvd,,Esfahan,,Iran,(UK Sanctions List Ref):INU0107 (UK Statement of Reasons):Involved in the Iranian nuclear programme at uranium enrichment facilities in Iran.,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,31/12/2020,12264 +SAMAN NUR GOSIL,,,,,,,,,,,,,,,,,,,Roshan Dasht Road,kilometer 20,,,,Isfahan,,Iran,(UK Sanctions List Ref):INU0113 (UK Statement of Reasons):Involved in the production of equipment and parts for the nuclear fuel cycle.,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11220 +SAMAN TOSE'E ASIA (SATA),,,,,,,,,,,,,,,,,,,4th Unit,51 Sane'e St.,N.W. of Jahan Kudak,Africa BLVD.,,Tehran,19699 35145,Iran,"(UK Sanctions List Ref):INU0108 (UK Statement of Reasons):An engineering firm that has been involved in a range of industrial projects in Iran's uranium enrichment programme, including work at the Qom/Fordow Fuel Enrichment Plant. (Phone number):+98 21 8877329",Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,31/12/2020,12265 +SAMATOV,Timur,,,,,,тимур саматов,,Russian,04/04/1992,Kazan,Russia,Russia,,,,,So-called ‘Minister of Industry and Trade’,,,,,,,,,"(UK Sanctions List Ref):RUS1564 (UK Statement of Reasons):Timur SAMATOV is an involved person within the meaning of the Russia (Sanctions) (EU Exit) Regulations 2019 because he is the so-called Minister of Industry and Trade for the non-government controlled area of Ukraine known as the Luhansk People’s Republic. Through this role, SAMATOV is or has engaged in policies or actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15508 +SAMEN INDUSTRIES,,,,,,,,,,,,,,,,,,,2nd km of Khalaj Road,end of Seyyedi St,PO Box 91735-549,,,Mashhad,91735,Iran,(UK Sanctions List Ref):INU0041 (UK Statement of Reasons):Involved in the procurement of components for centrifuges. (Phone number):+98 511 3853008. +98 511 3870225 (Type of entity):Enterprise (Parent company):Ammunition and Metallurgy Group. Ammunition Industries Group (AMIG). Defence Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12266 +SAMI,Abou,,,,,,,,,00/00/1962,,,Syria,,,,,"Deputy to the Vice- President, Faruq Al Shar, head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad",,,,,,,,,"(UK Sanctions List Ref):SYR0219 Linked to Muhammad Nasif Khayrbik and Bashar al-Asad (UK Statement of Reasons):For almost 20 years he has been head of the office of Muhammad Nasif Khayrbik, one of the main security advisers of Bashar al-Assad (and officially deputy to the Vice- President, Faruq Al Shar'). Samir Joumaa's closeness to Bashar al-Assad and Muhammad Nasif Khayrbik means that he is implicated in the policy of repression conducted by the regime against its opponents (Gender):Male",Individual,AKA,,Syria,24/07/2012,31/12/2020,31/12/2020,12731 +SAMI,,,,,,,,,,,,,,,,,,,115 Nezavisimost ave,,,,,Minsk,220114,Belarus,"(UK Sanctions List Ref):RUS1094 (UK Statement of Reasons):As a Belarusian Government agency responsible for weapons development and exports, the State Authority For Military Industry Of The Republic Of Belarus (hereafter SAMI) has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Phone number):(+375-17) 280 91 00",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,24/06/2022,15037 +SAMIA,Abu,,,,,,,,,24/04/1981,,Kuwait,Kuwait,(1) 106261543 (2) 1420529,(1) Kuwaiti (2) Kuwaiti. Issued in Kuwait. Expired on 31 March 2006.,,,,Block 4,Street 13,House No 179,,Al-Riqqa area,Kuwait City,,Kuwait,(UK Sanctions List Ref):AQD0265 (UN Ref):QDi.184 Wanted by the Kuwaiti Security Authorities. Wanted by the Saudi security forces. Fugitive as of Jul. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4484905,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/02/2005,17/02/2005,31/12/2020,8523 +SAMIYAH,Abu,Majid,,,,,,,,24/04/1981,,Kuwait,Kuwait,(1) 106261543 (2) 1420529,(1) Kuwaiti (2) Kuwaiti. Issued in Kuwait. Expired on 31 March 2006.,,,,Block 4,Street 13,House No 179,,Al-Riqqa area,Kuwait City,,Kuwait,(UK Sanctions List Ref):AQD0265 (UN Ref):QDi.184 Wanted by the Kuwaiti Security Authorities. Wanted by the Saudi security forces. Fugitive as of Jul. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4484905,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/02/2005,17/02/2005,31/12/2020,8523 +SAMMA2,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0101 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V SAM MA 2 imported refined petroleum products in October, early November and mid-November 2017 through multiple ship-to-ship transfers. Listed as asset of Korea Samma Shipping Co (OFSI ID: 13636, UN Reference Number: UN Ref KPe.065) (IMO number):8106496 (Current owners):Korea Samma Shipping (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):962 (Length of ship):70 (Year built):1981",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13652 +SAMOKISH,Vladimir,Igorevich,,,,,Владимир Игоревич Самокиш,,,20/09/1975,Tomsk,Russia,,634625416,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0569 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14514 +SAMOKUTYAEV,Alexander,Mikhailovich,,,,,Александр Михайлович Самокутяев,,,13/03/1970,Penza,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0632 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14577 +SAMWOO,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0098 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). In late November 2017 the YU PHYONG 5 conducted a ship-to-ship transfer of 1,721 metric tons of fuel oil. Listed as asset of Korea Myongdok Shipping Co - OFSI ID: 13634. UN Reference Number: UN Ref KPe.063 (IMO number):8605026 (Current owners):Korea Myongdok Shipping Co (Flag of ship):North Korea (Previous flags):South Korea (Type of ship):Oil tanker (Tonnage of ship):795 (Length of ship):75 (Year built):1986",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13649 +SAN,Tin,Aung,,,,,,,,16/10/1960,,Myanmar,Myanmar,,,,,(1) Commander-in-Chief of the Myanmar Navy (2) SAC Member,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0019 (UK Statement of Reasons):On 1 February 2021 the Myanmar military (Tatmadaw), led by Commander-in-Chief Min Aung Hlaing, staged a coup in Myanmar. As part of the coup, Vice-President Swe declared a state of emergency on 1 February transferring the legislative, executive and judicial powers of the state to Min Aung Hlaing. On 2 February, the Tatmadaw established the State Administration Council (SAC), which is chaired by Hlaing, in order to run the functions of the state. General Tin Aung San was appointed to the SAC on 2 February. The Myanmar security forces have committed serious human rights violations since 1 February 2021: killing a protestor, restricting freedom of assembly and expression including through restricting internet access, arbitrary arrest and detention of opposition leaders and opponents of the coup. The SAC has adopted legislation violating the right to privacy and the right not to be subject to arbitrary detention in Myanmar. As a member of the SAC, Tin Aung San shares responsibility with its other members for the exercise of state functions since 2 February 2021, including legislation violating human rights, and for the serious human rights violations committed by the Myanmar security forces. As a member of the SAC, Gen Tin Aung San is associated with Commander in Chief General Min Aung Hlaing who is a designated person under the Myanmar (Sanctions) Regulations 2021 in respect of actions related to the February 2021 coup. (Gender):Male",Individual,Primary name,,Myanmar,25/02/2021,29/04/2021,11/11/2022,14059 +SANAD PROTECTION AND SECURITY SERVICES,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0394 Ahmad Khalil Khalil and Nasser Deeb Deeb (UK Statement of Reasons):Sanad Protection and Security Services is involved in supporting or benefiting the Syrian regime and is directly owned by persons involved in supporting or benefiting the Syrian regime. (Type of entity):Limited Liability Company",Entity,Primary name,,Syria,26/07/2022,26/07/2022,26/07/2022,15466 +SANAEV,Ivan,Vladimirovich,,,,,,,,10/06/1986,Molodohvardiisk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1294 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15246 +SANAM INDUSTRIAL GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0178 (UN Ref):IRe.063 Subordinate to AIO, which has purchased equipment on AIO's behalf for the missile programme. [Old Reference # E.47.A.9] (Parent company):Aerospace Industries Organisation (AIO)",Entity,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,31/12/2020,9044 +SANANI,,,,,,,,,,00/00/1923,"Dai Chopan District, Zabul Province",Afghanistan,Afghanistan,,,,,Head of Dar-ul-Efta (Fatwa Department) of Supreme Court under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0089 (UN Ref):TAi.111 Reportedly deceased in 2001. Belonged to Kakar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010.,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7429 +SANATI DARYAEE IRAN,,,,,,,,,,,,,,,,,,,Exclusive Road,Bushehr Grazjan Road,5km,,,Bushehr,75179197793,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +SANATI DARYAEE IRAN,,,,,,,,,,,,,,,,,,,No. 3 Shafagh St. Dadman Blvd,Qods Square,,,PO Box 14665 495,Tehran,,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +SANATI DARYAEE IRAN,,,,,,,,,,,,,,,,,,,Office E 43,Torre E Piso4,Centro Commercial Lido Av,Francisco de Miranda,,Caracas,,Venezuela,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +SANATI DARYAEE IRAN,,,,,,,,,,,,,,,,,,,Sadra Building No 3,Shafagh St,Poonak Khavari Blvd,Shahrak Ghods,PO Box 14669 56491,Tehran,,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +SANATI DARYAEE IRAN,,,,,,,,,,,,,,,,,,,Zanzabil Mountain Side,Shahid Kalantari Road 24 km,,,,Urmia,4851758674,Iran,(UK Sanctions List Ref):INU0076 (UK Statement of Reasons):Owned or controlled by Khatam al Anbiya Construction Headquarters (Phone number):(1) (021)83362000-88079090 (2) 88073118-88575260 (Website):www.sadra.ir (Email address):web@sadragroup.ir (Parent company):Owned/controlled by Khatam al Anbiya Construction Headquarters,Entity,Primary name variation,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11954 +SANAULLAH,,,,,,,,,,00/00/1970,"Bande Tumur Village, Maiwand District, Kandahar Province",Afghanistan,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0124 (UN Ref):TAi.158 Senior Taliban member as at 2011 with financial duties, including raising funds on behalf of the leadership. Has provided logistical support for Taliban operations and channeled proceeds from drug trafficking to arms purchases. Has acted as secretary to Taliban leader Mullah Mohammed Omar (TAi.004) and as his messenger at senior-level meetings of the Taliban. Also associated with Gul Agha Ishakzai (TAi.147). Member of Mullah Mohammed Omar’s (TAi.004) inner circle during the Taliban regime. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12456 +SANAYE ELECTRONIK E IRAN,,,,,,,,,,,,,,,,,,,Hossein Abad/Ardakan Road,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SANAYE ELECTRONIK E IRAN,,,,,,,,,,,,,,,,,,,P.O. Box 18575-365,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SANAYE ELECTRONIK E IRAN,,,,,,,,,,,,,,,,,,,P.O. Box 71265-1589,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SANAYE ELECTRONIK E IRAN,,,,,,,,,,,,,,,,,,,P.O. Box 71365-1174,Eman Khomeini Ave.,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SANAYE ELECTRONIK E IRAN,,,,,,,,,,,,,,,,,,,PO Box 19575 365,Pasdran Ave.,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SANAYE ELECTRONIK E IRAN,,,,,,,,,,,,,,,,,,,Sh. Langari St.,Nobonyad Sq.,Pasdaran Ave.,,,Tehran,19574,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SANAYE ELECTRONIK E IRAN,,,,,,,,,,,,,,,,,,,Shahid Langari Street,Nobonyad Square,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SANAYE MECHANIC,,,,,,,,,,,,,,,,,,,Abali Road/Azmayesh Junction,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0093 (UK Statement of Reasons):Entity subordinate to Iran's Aerospace Industries Organisation (AIO),Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10654 +SANAYE METOLOGIE IRAN,,,,,,,,,,,,,,,,,,,2nd km of Khalaj Road,end of Seyyedi St,PO Box 91735-549,,,Mashhad,91735,Iran,(UK Sanctions List Ref):INU0041 (UK Statement of Reasons):Involved in the procurement of components for centrifuges. (Phone number):+98 511 3853008. +98 511 3870225 (Type of entity):Enterprise (Parent company):Ammunition and Metallurgy Group. Ammunition Industries Group (AMIG). Defence Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12266 +SANAYE MOKHABERAT IRAN,,,,,,,,,,,,,,,,,,,34 Khorramshar Street,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +SANAYE MOKHABERAT IRAN,,,,,,,,,,,,,,,,,,,Apadana Ave.,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +SANAYE MOKHABERAT IRAN,,,,,,,,,,,,,,,,,,,P.O. Box 15875 4337,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +SANAYE MOKHABERAT IRAN,,,,,,,,,,,,,,,,,,,PO Box 19295 4731,Pasdaran Ave,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +SANAYE MOKHABERAT IRAN,,,,,,,,,,,,,,,,,,,PO Box 19575 131,34 Apadana Ave,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +SANAYE MOKHABERAT IRAN,,,,,,,,,,,,,,,,,,,Shahid Langary St,Nobonyad Square Ave,Pasdaran,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0073 (UK Statement of Reasons):Iran Communications Industries (ICI), a subsidiary of Iran Electronics Industries, produces various items including communication systems, avionics, optics and electro- optics devices, micro-electronics, information technology, test and measurement, telecommunication security, electronic warfare, radar tube manufacture and refurbishment, and missile launchers. ICI is owned or controlled by MODAFL as a subsidiary of Iran Electronic Industries (IEI), and has been involved in the procurement of prohibited goods and technology. (Phone number):+98 21 22827481 (Fax): +98 21 22827481 (Type of entity):Enterprise (Subsidiaries):Hoda Trading (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11201 +SANAYEV,Ivan,Vladimirovich,,,,,САНАЕВ Иван Владимирович,Cyrillic,Russian,10/06/1986,Molodohvardiisk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1294 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15246 +SANDWORM TEAM,,,,,,,,,,,,,,,,,,,22 Kirova Street,,,,,Moscow,,Russia,"(UK Sanctions List Ref):CYB0009 (UK Statement of Reasons):The Main Centre for Special Technologies (GTsST) of the Russian General Staff Main Intelligence Directorate (GRU), also known by its field post number ‘74455’ and “Sandworm” by industry, was responsible for cyber attacks which disrupted critical national infrastructure in Ukraine, cutting off the electricity grid. The perpetrators were directly responsible for relevant cyber activity by carrying out information system interference intended to undermine integrity, prosperity and security of the Ukraine. These cyber attacks originated in Russia and were unauthorised (Type of entity):Department within Government/Military Unit (Parent company):Russian Ministry of Defence",Entity,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13911 +SANHAJI,Abou,Abderahmane,,,,,,,,25/05/1983,,,Morocco,V06359364,Morocco number,AB704306,Morocco identity card,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0359 (UN Ref):QDi.423 Member of Al Qaida in the Islamic Maghreb (AQIM) (QDe.014), Ansar Eddine (QDe.135), and Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM) (QDe.159). Physical description: height: 185 cm; weight: 80 kg INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,15/08/2019,14/08/2019,31/12/2020,13789 +SANKIN,Vladimir,Vladimirovich,,,,,САНКИН Владимир Владимирович,Cyrillic,Russian,07/06/1984,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1295 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15247 +SANLI,Dalokay,,,,,,Dalokay Şanli,,,13/10/1976,Pülümür,Turkey,Turkey,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0012,Individual,Primary name,,Counter-Terrorism (International),23/12/2016,31/12/2020,31/12/2020,13444 +SANNA,Solat,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0032 (UK Statement of Reasons):Known to have provided support to Iran's nuclear programme through senior roles held. (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9100 +SANSRI,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0189 (UN Ref):KPe.018 The Second Academy of Natural Sciences is a national-level organization responsible for research and development of the DPRK’s advanced weapons systems, including missiles and probably nuclear weapons. The Second Academy of Natural Sciences uses a number of subordinate organizations to obtain technology, equipment, and information from overseas, including Tangun Trading Corporation, for use in the DPRK’s missile and probably nuclear weapons programs. Tangun Trading Corporation was designated by the Committee in July 2009 and is primarily responsible for the procurement of commodities and technologies to support DPRK’s defense research and development programs, including, but not limited to, weapons of mass destruction and delivery system programs and procurement, including materials that are controlled or prohibited under relevant multilateral control regimes. (Subsidiaries):Tangun Trading Corporation",Entity,AKA,,Democratic People's Republic of Korea,23/04/2013,07/03/2013,31/12/2020,12871 +SANTOS,Abu,Abdullah,,,,,,,,12/03/1966,"Sangandaan, Caloocan City",Philippines,Philippines,AA780554,,,,,"50, Purdue Street",,,,Cubao,Quezon City,,Philippines,(UK Sanctions List Ref):AQD0195 (UN Ref):QDi.244 Founder and leader of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1523805,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10664 +SANTOS,Ahmad,Islam,,,,,,,,12/03/1966,"Sangandaan, Caloocan City",Philippines,Philippines,AA780554,,,,,"50, Purdue Street",,,,Cubao,Quezon City,,Philippines,(UK Sanctions List Ref):AQD0195 (UN Ref):QDi.244 Founder and leader of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1523805,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10664 +SANTOS,Akmad,,,,,,,,,12/03/1966,"Sangandaan, Caloocan City",Philippines,Philippines,AA780554,,,,,"50, Purdue Street",,,,Cubao,Quezon City,,Philippines,(UK Sanctions List Ref):AQD0195 (UN Ref):QDi.244 Founder and leader of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1523805,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10664 +SANTOS,Faisal,,,,,,,,,12/03/1966,"Sangandaan, Caloocan City",Philippines,Philippines,AA780554,,,,,"50, Purdue Street",,,,Cubao,Quezon City,,Philippines,(UK Sanctions List Ref):AQD0195 (UN Ref):QDi.244 Founder and leader of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1523805,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10664 +SANTOS,HILARION,DEL ROSARIO,,,,Amir,,,,12/03/1966,"Sangandaan, Caloocan City",Philippines,Philippines,AA780554,,,,,"50, Purdue Street",,,,Cubao,Quezon City,,Philippines,(UK Sanctions List Ref):AQD0195 (UN Ref):QDi.244 Founder and leader of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1523805,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10664 +SANTOS III (THIRD),Hilarion,,,,,,,,,12/03/1966,"Sangandaan, Caloocan City",Philippines,Philippines,AA780554,,,,,"50, Purdue Street",,,,Cubao,Quezon City,,Philippines,(UK Sanctions List Ref):AQD0195 (UN Ref):QDi.244 Founder and leader of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1523805,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10664 +SANTOS III (THIRD),Hilarion,Del Rosario,,,,,,,,12/03/1966,"Sangandaan, Caloocan City",Philippines,Philippines,AA780554,,,,,"50, Purdue Street",,,,Cubao,Quezon City,,Philippines,(UK Sanctions List Ref):AQD0195 (UN Ref):QDi.244 Founder and leader of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1523805,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10664 +SANTOSO,Wijijoko,,,,,,,,,14/07/1975,"Rembang, Jawa Tengah",Indonesia,Indonesia,A2823222,"Indonesia. Issued on 28 May 2012. Expires 28 May 2017. Issued under name Wiji Joko Santoso, born 14 July 1975 in Rembang, Jawa Tengah, Indonesia",,,,,,,,,,,,(UK Sanctions List Ref):AQD0332 (UN Ref):QDi.350 Head of the foreign affairs division and key outreach player of Jemaah Islamiyah (QDe.092). Associated with Hilal Ahmar Society Indonesia (HASI) (QDe.147). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5854971,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,21/03/2015,13/03/2015,31/12/2020,13244 +SANTOSO,WIJI,JOKO,,,,,,,,14/07/1975,"Rembang, Jawa Tengah",Indonesia,Indonesia,A2823222,"Indonesia. Issued on 28 May 2012. Expires 28 May 2017. Issued under name Wiji Joko Santoso, born 14 July 1975 in Rembang, Jawa Tengah, Indonesia",,,,,,,,,,,,(UK Sanctions List Ref):AQD0332 (UN Ref):QDi.350 Head of the foreign affairs division and key outreach player of Jemaah Islamiyah (QDe.092). Associated with Hilal Ahmar Society Indonesia (HASI) (QDe.147). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5854971,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/03/2015,13/03/2015,31/12/2020,13244 +SANYATWE,Anselem,Nhamo,,,,Major General,,,,21/01/1956,,,Zimbabwe,290060361Y34,,,,"(1) Zimbabwe Ambassador to Tanzania (2) Formerly Brigadier General, Commander of the Presidential Guard and Tactical Commander of the National Reaction Force (3) Formerly army General",,,,,,,,Tanzania,"(UK Sanctions List Ref):ZIM0005 (UK Statement of Reasons):There are reasonable grounds to suspect that Sanyatwe is responsible for the commission of serious human rights violations by military personnel in the National Reaction Force involved in the crackdown on an opposition protest carried out on 1 August 2018 leading to the deaths of six people by virtue of his role as Tactical Commander of that force at the relevant time. As such, he has undermined the rule of law in Zimbabwe. (Gender):Male",Individual,Primary name,,Zimbabwe,01/02/2021,01/02/2021,18/03/2022,14053 +SAPELIN,Andrey,Yurievich,,,,,САПЕЛИН Андрей Юрьевич,Cyrillic,Russian,00/00/1965,Moscow,Russia,Russia,,,,,"Director, or equivalent, of Novikombank",,,,,,,,,(UK Sanctions List Ref):RUS0865 (UK Statement of Reasons):Andrey Yurievich SAPELIN is on the Board of Directors at Novikombank. Novikombank is operating in a sector of strategic significance to the Government of Russia – the financial services sector. Andrey Yurievich SAPELIN has therefore been involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Male,Individual,Primary name,,Russia,15/03/2022,15/03/2022,14/06/2022,14816 +SAQIB,NOOR MOHAMMAD,,,,,,نور محمد ثاقب,,,00/00/1958,"(1) Bagrami District, Kabul Province. (2) Tarakhel area, Deh Sabz District, Kabul Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Chief Justice of Supreme Court under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0088 (UN Ref):TAi.110 Member of Taliban Supreme Council and Head of Taliban Religious Committee. Belongs to Ahmadzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7431 +SARA,Imad,Abdullah,,,,,عماد عبدالله سارة,,,21/04/1968,Damascus,Syria,Syria,,,,,Former Minister of Information,,,,,,,,,"(UK Sanctions List Ref):SYR0100 (UK Statement of Reasons):Former government minister within the Assad regime, appointed within the cabinet reshuffle in January 2018. (Gender):Male",Individual,Primary name,,Syria,27/02/2018,31/12/2020,13/05/2022,13614 +SARA,Imad,Abullah,,,,,,,,21/04/1968,Damascus,Syria,Syria,,,,,Former Minister of Information,,,,,,,,,"(UK Sanctions List Ref):SYR0100 (UK Statement of Reasons):Former government minister within the Assad regime, appointed within the cabinet reshuffle in January 2018. (Gender):Male",Individual,Primary name variation,,Syria,27/02/2018,31/12/2020,13/05/2022,13614 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,"Ansari Market, 2nd Floor",,,,,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Branch Office 10,"Suite numbers 196-197, 3rd Floor",Khorasan Market,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Branch Office 11,Sarafi Market,,,Zaranj District,Nimroz Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Branch Office 12,Sarafi Market,Wesh,,Spin Boldak District,,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Branch Office 13,Sarafi Market,,,,Farah,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Branch Office 14,,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Branch Office 15,,,,,Zahedan,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Branch Office 16,,,,,Zabul,,Iran,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Branch Office 2,,,,Peshawar,Khyber Paktunkhwa Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Branch Office 3,Moishah Chowk Road,,,Lahore,Punjab Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Branch Office 4,,,,Karachi,Sindh Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Branch Office 5,Larran Road number 2,Chaman,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Branch Office 6,Shop number 237,Shah Zada Market (also known as Sarai Shahzada),Puli Khishti area,Police District 1,Kabul,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Branch Office 7,"Shop numbers 21 and 22, 2nd Floor",Kandahar City Sarafi Market,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Branch Office 8,Gereshk City,Nahr-e Saraj District,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Branch Office 9,Lashkar Gah Bazaar,Lashkar Gah,Lashkar Gah District,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Chaman Central Bazaar,Chaman,Shah Zada Market (also known as Sarai Shahzada),,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Chohar Mir Road,Kandahari Bazaar,,,Quetta City,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,"Haji Ghulam Nabi Market, 2nd Floor",Lashkar Gah District,,,,Helmand Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Kachara Road,Nasrullah Khan Chowk,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Khorasan Market,Shahre Naw,District 5,,Herat City,Herat Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,"New Sarafi Market, 2nd Floor",,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Office number 3,Near Fatima Jinnah Road,Dr. Bano Road,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Room number 1,Abdul Sattar Plaza,Hafiz Saleem Street,Munsafi Road,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Safi Market,,,,Kandahar City,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Shop number 3,Dr. Bano Road,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFI-YI HAJI KHAIRULLAH HAJI SATAR HAJI ESMATULLAH,,,,,,,,,,,,,,,,,,,Wazir Mohammad Road,,,,Quetta,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0001 (UN Ref):TAe.010 Pakistan National Tax Number: 1774308; Pakistan National Tax Number: 0980338; Pakistan National Tax Number: 3187777; Afghan Money Service Provider License Number: 044. Haji Khairullah Haji Sattar Money Exchange was used by Taliban leadership to transfer money to Taliban commanders to fund fighters and operations in Afghanistan as of 2011. Associated with Abdul Sattar Abdul Manan (TAi.162) and Khairullah Barakzai Khudai Nazar (TAi.163). INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesEntities click here (Phone number):(1) +93-202-103386 (2) +93-202-101714 (3) 0202-104748 (4) +93-797-059059 (mobile) (5) +93-702-222222 (mobile) (Email address):helmand_exchange_msp@yahoo.com,Entity,AKA,,Afghanistan,17/07/2012,29/06/2012,11/02/2022,12703 +SARAFRAZ,Haj-agha,,,,,,,,,00/00/1963,Tehran,Iran,Iran,,,,,"(1) Former member of the Supreme Council of Cyber Space (2) Former president of the Islamic Republic of Iran Broadcasting (IRIB) (2014-2016) (3) Former Head of IRIB World Service and press TV, responsible for all programming decisions",,,,,,,,,"(UK Sanctions List Ref):IHR0059 (UK Statement of Reasons):Former member of the Supreme Council of Cyber Space. Former President of the Islamic Republic of Iran Broadcasting (IRIB). Former Head of IRIB World Service and Press TV, responsible for all programming decisions. Closely associated with the state security apparatus. Under his direction Press TV, along with IRIB, has worked with the Iranian security services and prosecutors to broadcast forced confessions of detainees, including that of Iranian-Canadian journalist and film- maker Maziar Bahari, in the weekly programme ‘Iran Today’. Independent broadcast regulator OFCOM fined Press TV in the UK GBP 100 000 for broadcasting Bahari's confession in 2011, which was filmed in prison whilst Bahari was under duress. Sarafraz therefore is associated with violating the right to due process and fair trial. (Gender):Male",Individual,AKA,,Iran (Human Rights),12/03/2013,31/12/2020,28/01/2022,12852 +SARAFRAZ,Haj-agha,,,,,,,,,07/04/1964,Tehran,Iran,Iran,,,,,"(1) Former member of the Supreme Council of Cyber Space (2) Former president of the Islamic Republic of Iran Broadcasting (IRIB) (2014-2016) (3) Former Head of IRIB World Service and press TV, responsible for all programming decisions",,,,,,,,,"(UK Sanctions List Ref):IHR0059 (UK Statement of Reasons):Former member of the Supreme Council of Cyber Space. Former President of the Islamic Republic of Iran Broadcasting (IRIB). Former Head of IRIB World Service and Press TV, responsible for all programming decisions. Closely associated with the state security apparatus. Under his direction Press TV, along with IRIB, has worked with the Iranian security services and prosecutors to broadcast forced confessions of detainees, including that of Iranian-Canadian journalist and film- maker Maziar Bahari, in the weekly programme ‘Iran Today’. Independent broadcast regulator OFCOM fined Press TV in the UK GBP 100 000 for broadcasting Bahari's confession in 2011, which was filmed in prison whilst Bahari was under duress. Sarafraz therefore is associated with violating the right to due process and fair trial. (Gender):Male",Individual,AKA,,Iran (Human Rights),12/03/2013,31/12/2020,28/01/2022,12852 +SARAFRAZ,Mohammad,,,,,,محمد سرافراز,,,00/00/1963,Tehran,Iran,Iran,,,,,"(1) Former member of the Supreme Council of Cyber Space (2) Former president of the Islamic Republic of Iran Broadcasting (IRIB) (2014-2016) (3) Former Head of IRIB World Service and press TV, responsible for all programming decisions",,,,,,,,,"(UK Sanctions List Ref):IHR0059 (UK Statement of Reasons):Former member of the Supreme Council of Cyber Space. Former President of the Islamic Republic of Iran Broadcasting (IRIB). Former Head of IRIB World Service and Press TV, responsible for all programming decisions. Closely associated with the state security apparatus. Under his direction Press TV, along with IRIB, has worked with the Iranian security services and prosecutors to broadcast forced confessions of detainees, including that of Iranian-Canadian journalist and film- maker Maziar Bahari, in the weekly programme ‘Iran Today’. Independent broadcast regulator OFCOM fined Press TV in the UK GBP 100 000 for broadcasting Bahari's confession in 2011, which was filmed in prison whilst Bahari was under duress. Sarafraz therefore is associated with violating the right to due process and fair trial. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/03/2013,31/12/2020,28/01/2022,12852 +SARAFRAZ,Mohammad,,,,,,محمد سرافراز,,,07/04/1964,Tehran,Iran,Iran,,,,,"(1) Former member of the Supreme Council of Cyber Space (2) Former president of the Islamic Republic of Iran Broadcasting (IRIB) (2014-2016) (3) Former Head of IRIB World Service and press TV, responsible for all programming decisions",,,,,,,,,"(UK Sanctions List Ref):IHR0059 (UK Statement of Reasons):Former member of the Supreme Council of Cyber Space. Former President of the Islamic Republic of Iran Broadcasting (IRIB). Former Head of IRIB World Service and Press TV, responsible for all programming decisions. Closely associated with the state security apparatus. Under his direction Press TV, along with IRIB, has worked with the Iranian security services and prosecutors to broadcast forced confessions of detainees, including that of Iranian-Canadian journalist and film- maker Maziar Bahari, in the weekly programme ‘Iran Today’. Independent broadcast regulator OFCOM fined Press TV in the UK GBP 100 000 for broadcasting Bahari's confession in 2011, which was filmed in prison whilst Bahari was under duress. Sarafraz therefore is associated with violating the right to due process and fair trial. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/03/2013,31/12/2020,28/01/2022,12852 +SARAGBA,Alfred,,,,,,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,,The Hague,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +SARAGBA,Alfred,,,,,,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Bimbo,Ombella-Mpoko province,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +SARAGBA,Alfred,,,,,,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Mbaiki,Lobaye Province,,,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +SARAGBA,Alfred,Yekatom,,,,,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,,The Hague,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +SARAGBA,Alfred,Yekatom,,,,,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Bimbo,Ombella-Mpoko province,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +SARAGBA,Alfred,Yekatom,,,,,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Mbaiki,Lobaye Province,,,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +SARAH,Imad,Abdullah,,,,,,,,21/04/1968,Damascus,Syria,Syria,,,,,Former Minister of Information,,,,,,,,,"(UK Sanctions List Ref):SYR0100 (UK Statement of Reasons):Former government minister within the Assad regime, appointed within the cabinet reshuffle in January 2018. (Gender):Male",Individual,Primary name variation,,Syria,27/02/2018,31/12/2020,13/05/2022,13614 +SARAH,Imad,Abullah,,,,,,,,21/04/1968,Damascus,Syria,Syria,,,,,Former Minister of Information,,,,,,,,,"(UK Sanctions List Ref):SYR0100 (UK Statement of Reasons):Former government minister within the Assad regime, appointed within the cabinet reshuffle in January 2018. (Gender):Male",Individual,Primary name variation,,Syria,27/02/2018,31/12/2020,13/05/2022,13614 +SARALIEV,Shamsail,Yunusovich,,,,,Шамсаил Юнусович Саралиев,,,05/11/1973,Grozny,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0633 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14578 +SARANOVA,Julia,Vladimirovna,,,,,Юлия Владимировна Саранова,,,21/10/1988,Volgograd,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0634 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14579 +SARAYAT AL QUDS,,,,,,,,,,,,,,,,,,,,,,,,Idlib Governorate,,Syria,"(UK Sanctions List Ref):AQD0061 (UN Ref):QDe.156 Associated with the Al Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116596 Also suspected to be in Hama Governorate, Syrian Arab Republic",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13509 +SARAYAT AL QUDS,,,,,,,,,,,,,,,,,,,,,,,,Hama Governorate,,Syria,"(UK Sanctions List Ref):AQD0061 (UN Ref):QDe.156 Associated with the Al Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116596 Also suspected to be in Hama Governorate, Syrian Arab Republic",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13509 +SARFADI,Ehsanullah,,,,,,,,,00/00/1963,"Khatak village, Gelan District, Ghazni Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Security (Intelligence) under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0063 (UN Ref):TAi.083 As of mid-2007, he provided support to the Taliban in the form of weapons and money. Believed to be in the Gulf region. Belongs to Taraki tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7123 +SARFADI,Ehsanullah,,,,,,,,,00/00/1962,"Khatak village, Gelan District, Ghazni Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Security (Intelligence) under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0063 (UN Ref):TAi.083 As of mid-2007, he provided support to the Taliban in the form of weapons and money. Believed to be in the Gulf region. Belongs to Taraki tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7123 +SARFIDA,Ehsanullah,,,,,,,,,00/00/1963,"Khatak village, Gelan District, Ghazni Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Security (Intelligence) under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0063 (UN Ref):TAi.083 As of mid-2007, he provided support to the Taliban in the form of weapons and money. Believed to be in the Gulf region. Belongs to Taraki tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7123 +SARFIDA,Ehsanullah,,,,,,,,,00/00/1962,"Khatak village, Gelan District, Ghazni Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Security (Intelligence) under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0063 (UN Ref):TAi.083 As of mid-2007, he provided support to the Taliban in the form of weapons and money. Believed to be in the Gulf region. Belongs to Taraki tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7123 +SARKEES,Nazeera,Farah,,,,,,,,00/00/1962,,,,,,,,Former State Minister for Environmental Affairs,,,,,,,,,"(UK Sanctions List Ref):SYR0190 (UK Statement of Reasons):Former State Minister for Environmental Affairs, in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Female",Individual,Primary name,,Syria,16/10/2012,31/12/2020,31/12/2020,12785 +SARKEES,Nadheera,Farah,,,,,,,,00/00/1962,,,,,,,,Former State Minister for Environmental Affairs,,,,,,,,,"(UK Sanctions List Ref):SYR0190 (UK Statement of Reasons):Former State Minister for Environmental Affairs, in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Female",Individual,AKA,,Syria,16/10/2012,31/12/2020,31/12/2020,12785 +SARKEES,Nadira,Farah,,,,,,,,00/00/1962,,,,,,,,Former State Minister for Environmental Affairs,,,,,,,,,"(UK Sanctions List Ref):SYR0190 (UK Statement of Reasons):Former State Minister for Environmental Affairs, in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Female",Individual,AKA,,Syria,16/10/2012,31/12/2020,31/12/2020,12785 +SARKEES,Nazira,Farah,,,,,,,,00/00/1962,,,,,,,,Former State Minister for Environmental Affairs,,,,,,,,,"(UK Sanctions List Ref):SYR0190 (UK Statement of Reasons):Former State Minister for Environmental Affairs, in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Female",Individual,AKA,,Syria,16/10/2012,31/12/2020,31/12/2020,12785 +SARKIS,Nadheera,Farah,,,,,,,,00/00/1962,,,,,,,,Former State Minister for Environmental Affairs,,,,,,,,,"(UK Sanctions List Ref):SYR0190 (UK Statement of Reasons):Former State Minister for Environmental Affairs, in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Female",Individual,AKA,,Syria,16/10/2012,31/12/2020,31/12/2020,12785 +SARKIS,Nadhira,Farah,,,,,,,,00/00/1962,,,,,,,,Former State Minister for Environmental Affairs,,,,,,,,,"(UK Sanctions List Ref):SYR0190 (UK Statement of Reasons):Former State Minister for Environmental Affairs, in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Female",Individual,AKA,,Syria,16/10/2012,31/12/2020,31/12/2020,12785 +SARKIS,Nazeera,Farah,,,,,,,,00/00/1962,,,,,,,,Former State Minister for Environmental Affairs,,,,,,,,,"(UK Sanctions List Ref):SYR0190 (UK Statement of Reasons):Former State Minister for Environmental Affairs, in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Female",Individual,AKA,,Syria,16/10/2012,31/12/2020,31/12/2020,12785 +SARKIS,Nazira,Farah,,,,,,,,00/00/1962,,,,,,,,Former State Minister for Environmental Affairs,,,,,,,,,"(UK Sanctions List Ref):SYR0190 (UK Statement of Reasons):Former State Minister for Environmental Affairs, in power after May 2011. As a former Government Minister, shares responsibility for the regime's violent repression against the civilian population. (Gender):Female",Individual,AKA,,Syria,16/10/2012,31/12/2020,31/12/2020,12785 +SARYGLAR,Aidyn,Nikolaevich,,,,,Айдын Николаевич Сарыглар,,,22/02/1988,"Saryg-Sep, Tuva",Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0635 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14580 +SASAD IRAN ELECTRONIC INDUSTRIES,,,,,,,,,,,,,,,,,,,Hossein Abad/Ardakan Road,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SASAD IRAN ELECTRONIC INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 18575-365,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SASAD IRAN ELECTRONIC INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 71265-1589,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SASAD IRAN ELECTRONIC INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 71365-1174,Eman Khomeini Ave.,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SASAD IRAN ELECTRONIC INDUSTRIES,,,,,,,,,,,,,,,,,,,PO Box 19575 365,Pasdran Ave.,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SASAD IRAN ELECTRONIC INDUSTRIES,,,,,,,,,,,,,,,,,,,Sh. Langari St.,Nobonyad Sq.,Pasdaran Ave.,,,Tehran,19574,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SASAD IRAN ELECTRONIC INDUSTRIES,,,,,,,,,,,,,,,,,,,Shahid Langari Street,Nobonyad Square,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SASHIRAZ INDUSTRIES,,,,,,,,,,,,,,,,,,,Ayatollah Mirzay e Shiraz Blvd.,Ghasr Aldasht St.,,,,Shiraz,71000,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SASHIRAZ INDUSTRIES,,,,,,,,,,,,,,,,,,,"Hossain Abad Road,",,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SASHIRAZ INDUSTRIES,,,,,,,,,,,,,,,,,,,Mirzaie Shirazi,Fars,71365 1589,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SASHIRAZ INDUSTRIES,,,,,,,,,,,,,,,,,,,Mirzaye Shirazi Blv.,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SASHIRAZ INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 71365 1589,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SATAR,Abdul,,,,,,,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Abdul Satar Food Shop,Ayno Mina 0093,,,,Kandahar Province,,Afghanistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +SATAR,Abdul,,,,,,,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Chaman,,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +SATAR,Abdul,,,,,,,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Kachray Road,Pashtunabad,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +SATAR,Abdul,,,,,,,,,00/00/1964,"(1) Mirmandaw village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,AM5421691,(Pakistan). Expires 11 Aug 2013,(1) 5420250161699. (2) 585629,(1) Issued in Pakistan (2) Issued in Afghanistan,,Nasrullah Khan Chowk,Pashtunabad Area,,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0128 (UN Ref):TAi.162 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Khairullah Barakzai (TAi.163). Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-alManaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12701 +SAULENKO,Oleksandr,,,,,,Александр Сауленко,Cyrillic,Russian,09/05/1962,Kiev,Ukraine,,,,,,Senior position in the Russian installed administration of Berdyansk (in the temporarily controlled territory of Zaporizhzhia Oblast Ukraine),,,,,,,,,"(UK Sanctions List Ref):RUS1575 (UK Statement of Reasons):SAULENKO is an “involved person” under the Russia (Sanctions) (EU Exit) Regulations 2019 because: he is, and has been, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine by engaging in, providing support for and promoting policies and actions which destabilise Ukraine and undermine and threaten the territorial integrity, sovereignty or independence of Ukraine, namely by holding a senior position in the Russian installed administration of Berdyansk (in the temporarily controlled territory of Zaporizhzhia Oblast Ukraine) (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,20/10/2022,15519 +SAUTA,Sergei,Anatolievich,,,,Colonel,САУТА Сергей Анатольевич,Cyrillic,Russian,,,,Belarus,,,,,Head of Legal Support of the Ministry of Defence of Belarus,,,,,,,,,"(UK Sanctions List Ref):RUS0733 (UK Statement of Reasons):Colonel Sergei Anatolievich SAUTA has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, as a member of the Armed Forces of Belarus currently holding the position of Colonel of Justice and Head of Legal Support of the Ministry of Defence. The Armed forces of Belarus were involved in a joint exercise with the Russian military ahead of Russia’s invasion of Ukraine which: (1) threatened Ukraine; and (2) provided cover for Russian military preparations to invade Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14684 +SAVCHENKO,Svetlana,Borisovna,,,,,Светлана Борисовна САВЧЕНКО,,,24/06/1965,Belogorsk,,Ukraine,,,,,"(1) Member of the State Duma, elected from the illegally annexed Autonomous Republic of Crimea (2) Member of the Duma Committee on culture",,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0126 (UK Statement of Reasons):Member of the State Duma, elected from the illegally annexed Autonomous Republic of Crimea. Member of the Duma Committee on Culture. She has been a member of the Supreme Council of the Autonomous Republic of Crimea since 2012 and as of March 2014 supported the integration of the illegally annexed Crimea and Sevastopol into the Russian Federation. In September 2014 Savchenko was elected to the State Council of the so-called ""Republic of Crimea"". She has defended the illegal annexation of Crimea and Sevastopol on numerous occasions in public statements, including interviews published on c-pravda.ru website on 2 April 2016 and 20 August 2016. She has been awarded with Russian State order ""For duties to the motherland"" - II degree in 2014 and with the order ""For loyalty to duty ""by the ""authorities"" of the ""Republic of Crimea"" in 2015. (Gender):Female",Individual,Primary name,,Russia,09/11/2016,31/12/2020,31/12/2020,13394 +SAVCHENKO,Yevgeny,Stepanovich,,,,,Евгений Степанович САВЧЕНКО,,,08/04/1950,Krasnaya Yaruga,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0967 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14918 +SAVCHENKO,Oleg,Vladimirovich,,,,,Олег Владимирович Савченко,,,25/10/1966,Leningrad/St Petersburg,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0600 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14545 +SAVELIEV,Dmitry,Ivanovich,,,,,Дмитрий Иванович Савельев,,,25/05/1971,Novosibirsk,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0630 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14575 +SAVELOV,Vladimir,Vladimirovich,,,,,САВЕЛОВ Владимир Владимирович,Cyrillic,Russian,24/02/1965,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1205 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15157 +SAVELYEV,Oleg,Genrikhovich,,,,,Олег Генрихович Савельев,,,27/10/1965,Leningrad (now St Petersburg),USSR (now Russian Federation),Russia,,,,,Former Minister for Crimean Affairs Federation,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0127 (UK Statement of Reasons):Former Minister for Crimean Affairs. Responsible for the integration of the annexed Autonomous Republic of Crimea into the Russian Federation. Former Deputy Chief of Staff of the Russian Government, responsible for the organisation of the work of the Governmental Commission on socio-economic development of the so-called ""Republic of Crimea"". Former Chief of Staff of the Accounts Chamber of the Russian Federation. Since September 2019 Auditor of the Accounts Chamber of the Russian Federation. (Gender):Male",Individual,Primary name,,Russia,29/04/2014,31/12/2020,31/12/2020,12952 +SAVELYEV,Dmitry,Vladimirovich,,,,,Дмитрий Владимирович САВЕЛЬЕВ,,,08/03/1968,Gorky,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0923 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14874 +SAVELYEV,Vitaly,Gennadyevich,,,,,САВЕЛЬЕВ Виталий Геннадьевич,Cyrillic,Russian,18/01/1954,Tashkent,Russia,Russia,,,,,(1) Member of the Board of Directors of the Russian Railways (2) Minister of Transport of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS0756 (UK Statement of Reasons):Irek Envarovich SAVELYEV is a prominent Russian politician. SAVELYEV is, or has been, involved in obtaining a benefit from or supporting the Government of Russia as a member of the Board of Directors of the state-owned Russian Railways which is an entity carrying on business in the transport sector - a sector of strategic importance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14707 +SAVIN,Aleksandr,Alexandrovich,,,,,Александр Александрович САВИН,,,28/01/1962,Bryansk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0972 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14923 +SAVING BANK,,,,,,,,,,,,,,,,,,,Dar Al Muhanisen Building,6th Floor,Maysaloun Street,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0324 Banking (UK Statement of Reasons):State-owned bank. Provides financial support to the regime. (Phone number):+963 11-221-0124 (Fax). +963 11-221-8376. +963 11-222-7604,Entity,AKA,,Syria,24/01/2012,31/12/2020,31/12/2020,12484 +SAVING BANK,,,,,,,,,,,,,,,,,,,P.O. Box: 5467,Amous Square,Al-Furat St.,Merjah,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0327 Banking (UK Statement of Reasons):There are reasonable grounds to suspect that the Saving Bank is or has been involved in supporting or benefitting from the Syrian regime, in particular through the provision of financial services and making available funds or other economic resources. Further, it is owned or controlled by the state or otherwise associated with the Assad regime. (Phone number):(1) 222 8403 (2) 224 4909 (3) 245 3471 (Email address):post-gm@net.sy. s.bank@scs-net.org (Type of entity):State-owned",Entity,Primary name,,Syria,24/01/2012,31/12/2020,13/05/2022,12485 +SAVITSKAYA,Svetlana,Evgenievna,,,,,Савицкая Светлана Евгеньевна,,,08/08/1948,Moscow,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0631 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14576 +SAVOSTYANOV,Sergey,Vladimirovich,,,,,Сергей Владимирович САВОСТЬЯНОВ,Cyrillic,Russian,22/08/1984,Lyubertsy,Russia,Russia,,,,,Deputy of the Moscow City Duma,,,,,,,,,"(UK Sanctions List Ref):RUS1473 (UK Statement of Reasons):Sergey Vladimirovich SAVOSTYANOV (hereafter SAVOSTYANOV) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because SAVOSTYANOV has provided support for, and/or promoted policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,16/06/2022,16/06/2022,09/08/2022,15416 +SAWAN,Khaled,,,,,,خالد صوان,,,,,,Syria,,,,,Engineer,,,,,,,,,"(UK Sanctions List Ref):SYR0121 (UK Statement of Reasons):Dr Khaled Sawan is an engineer at the Syrian Scientific Studies and Research Centre, which is involved in chemical weapons proliferation and delivery. He has been involved in the construction of barrel bombs which have been used against the civilian population in Syria. He has been associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name,,Syria,18/07/2017,31/12/2020,31/12/2020,13504 +SAWAN,Mayzar,Abdu,,,,,ميزار عبد الصوان,,,00/00/1954,,,,,,,,Commander of the 20th Division of the Syrian Air Force,,,,,,,,,"(UK Sanctions List Ref):SYR0133 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and Commander of the 20th Division of the Syrian Air Force. As a senior officer in the Syrian air force he is responsible for the violent repression against the civilian population including attacks against civilian areas by aircraft operating from airbases under the control of the 20th Division. (Gender):Male",Individual,Primary name,,Syria,18/07/2017,31/12/2020,31/12/2020,13499 +SAWAN,Meezer,,,,,,,,,00/00/1954,,,,,,,,Commander of the 20th Division of the Syrian Air Force,,,,,,,,,"(UK Sanctions List Ref):SYR0133 (UK Statement of Reasons):Holds the rank of Major General, a senior officer and Commander of the 20th Division of the Syrian Air Force. As a senior officer in the Syrian air force he is responsible for the violent repression against the civilian population including attacks against civilian areas by aircraft operating from airbases under the control of the 20th Division. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13499 +SAYED,Mohammad,,,,,,,,,05/06/1950,"Sargodha, Punjab",Pakistan,Pakistan,,,3520025509842-7,Pakistan,,House No. 116E,Mohalla Johar,Lahore,Tehsil,Lahore City,Lahore District,,Pakistan,"(UK Sanctions List Ref):AQD0183 (UN Ref):QDi.263 Muhammad Saeed is the leader of Lashkar-e-Tayyiba (QDe.118). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543488. Address country Pakistan, location as at May 2008",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9215 +SAYED,Sadudin,,,,,,,,,00/00/1968,"(1) Chaman District. (2) Spin Boldak District, Kandahar Province",(1) Pakistan. (2) Afghanistan,Afghanistan,,,,,(1) Vice-Minister of Work and Social Affairs under the Taliban regime (2) Mayor of Kabul City under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0066 (UN Ref):TAi.087 Advisor to the Taliban Supreme Council as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barakzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,25/01/2001,01/02/2021,7435 +SAYED,Toriq,Agha,,,,,,,,00/00/1960,"(1) Kandahar Province. (2) Pishin, Baluchistan Province",(1) Afghanistan. (2) Pakistan,,,,5430312277059,Pakistan. Fraudulently obtained and since cancelled by the Government of Pakistan.,,Pashtunabad,,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0140 (UN Ref):TAi.174 Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of November 2018. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,17/11/2015,02/11/2015,01/02/2021,13306 +SAYED,Toriq,Agha,,,,,,,,00/00/1962,"(1) Kandahar Province. (2) Pishin, Baluchistan Province",(1) Afghanistan. (2) Pakistan,,,,5430312277059,Pakistan. Fraudulently obtained and since cancelled by the Government of Pakistan.,,Pashtunabad,,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0140 (UN Ref):TAi.174 Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of November 2018. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,17/11/2015,02/11/2015,01/02/2021,13306 +SAYED,Toriq,Agha,,,,,,,,00/00/1965,"(1) Kandahar Province. (2) Pishin, Baluchistan Province",(1) Afghanistan. (2) Pakistan,,,,5430312277059,Pakistan. Fraudulently obtained and since cancelled by the Government of Pakistan.,,Pashtunabad,,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0140 (UN Ref):TAi.174 Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of November 2018. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,17/11/2015,02/11/2015,01/02/2021,13306 +SAYEED,Hafiz,Mohammad,,,,,,,,05/06/1950,"Sargodha, Punjab",Pakistan,Pakistan,,,3520025509842-7,Pakistan,,House No. 116E,Mohalla Johar,Lahore,Tehsil,Lahore City,Lahore District,,Pakistan,"(UK Sanctions List Ref):AQD0183 (UN Ref):QDi.263 Muhammad Saeed is the leader of Lashkar-e-Tayyiba (QDe.118). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543488. Address country Pakistan, location as at May 2008",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9215 +SAYEED,Agha,Sia,,,,,,,,00/00/1974,"Maiwand District, Kandahar Province",Afghanistan,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0122 (UN Ref):TAi.156 Senior Taliban official with military and financial responsibilities as at 2011. Leader of the Taliban’s Military Council as of 2010. In 2008 and 2009, served as a Taliban finance officer and distributed money to Taliban commanders in Afghanistan/ Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12454 +SAYID,Hafiz,Mohammad,,,,,,,,05/06/1950,"Sargodha, Punjab",Pakistan,Pakistan,,,3520025509842-7,Pakistan,,House No. 116E,Mohalla Johar,Lahore,Tehsil,Lahore City,Lahore District,,Pakistan,"(UK Sanctions List Ref):AQD0183 (UN Ref):QDi.263 Muhammad Saeed is the leader of Lashkar-e-Tayyiba (QDe.118). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543488. Address country Pakistan, location as at May 2008",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9215 +SAYYED,Ahmad,,,,,,,,,00/00/1965,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0363 (UK Statement of Reasons):Minister of Justice. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,16/10/2020,31/12/2020,31/12/2020,13979 +SAYYED,SADUDDIN,,,,,(1) Maulavi (2) Mullah (3) Alhaj,سعد الدين سيد,,,00/00/1968,"(1) Chaman District. (2) Spin Boldak District, Kandahar Province",(1) Pakistan. (2) Afghanistan,Afghanistan,,,,,(1) Vice-Minister of Work and Social Affairs under the Taliban regime (2) Mayor of Kabul City under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0066 (UN Ref):TAi.087 Advisor to the Taliban Supreme Council as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barakzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,25/01/2001,01/02/2021,7435 +SAZMAN E PAZHOUHESHHAYE NOVIN E DEFA'I,,,,,,,,,,,,,,,,,,,"Negarestan 3,",off of Pasdaran Street,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0040 (UK Statement of Reasons):The Organisation of Defensive Innovation and Research (SPND) directly supports Iran's proliferation sensitive nuclear activities. The IAEA has identified SPND with their concerns over possible military dimensions (PMD) to Iran's nuclear programme. SPND is run by UN designated Mohsen Fakhrizadeh and is part of the Ministry of Defence For Armed Forces Logistics (MODAFL) (Type of entity):Enterprise (Subsidiaries):Research Centre for Explosion and Impact (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,31/12/2020,12821 +SAZMANE SANAYE HAYAI,,,,,,,,,,,,,,,,,,,107 Sepahbod Gharani Avenue,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +SAZMANE SANAYE HAYAI,,,,,,,,,,,,,,,,,,,3th km Karaj Special Road,Aviation Industries Boulevard,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +SAZMANE SANAYE HAYAI,,,,,,,,,,,,,,,,,,,Ave. Sepahbod Gharani PO Box 15815/1775,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +SAZMANE SANAYE HAYAI,,,,,,,,,,,,,,,,,,,Karaj Special Road,Mehrabad Airport,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +SAZMANE SANAYE HAYAI,,,,,,,,,,,,,,,,,,,Sepahbod Gharani 36,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0079 (UK Statement of Reasons):MODAFL organisation responsible for planning and managing Iran's military aviation industry. (Type of entity):Enterprise (Subsidiaries):Fajr Aviation Composite Industries. Ghods/Qods Aviation Industry. Iran Aircraft Industries (ACI)/SAHA/SIA. Iran Aircraft Manufacturing Company/HESA/HASA. Iran Helicopter Support and Renewal(IHSRC)/PANHA. Shahid Basir Industry (Parent company):11203,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11203 +SBERBANK,,,,,,,,,,,,,,,,,,,19 Vavilova St.,,,,,Moscow,117997,Russia,"(UK Sanctions List Ref):RUS0256 (List of persons named in relation to further restrictions Group ID: 13079. (UK Statement of Reasons):PJSC Sberbank (Public Joint-Stock Company Sberbank) is involved in obtaining a benefit from or supporting the Government of Russia. PJSC Sberbank is Russia’s largest bank by assets controlled, and offers a range of financial services to consumers and business clients. It is a highly significant entity in the Russian financial services sector, a sector of strategic significance to the Government of Russia. The Government of Russia has a controlling share in PJSC Sberbank, meaning that PJSC Sberbank also carries on business as a Government of Russia-affiliated entity. (Phone number):+8 (800) 555-55-50 (Email address):media@Sberbank.ru (Type of entity):(1) Bank (2) Financial Services Company (Business Reg No):1027700132195",Entity,Primary name variation,,Russia,06/04/2022,06/04/2022,06/04/2022,15076 +SBERBANK OF RUSSIA,,,,,,,,,,,,,,,,,,,19 Vavilova St.,,,,,Moscow,117997,Russia,"(UK Sanctions List Ref):RUS0256 (List of persons named in relation to further restrictions Group ID: 13079. (UK Statement of Reasons):PJSC Sberbank (Public Joint-Stock Company Sberbank) is involved in obtaining a benefit from or supporting the Government of Russia. PJSC Sberbank is Russia’s largest bank by assets controlled, and offers a range of financial services to consumers and business clients. It is a highly significant entity in the Russian financial services sector, a sector of strategic significance to the Government of Russia. The Government of Russia has a controlling share in PJSC Sberbank, meaning that PJSC Sberbank also carries on business as a Government of Russia-affiliated entity. (Phone number):+8 (800) 555-55-50 (Email address):media@Sberbank.ru (Type of entity):(1) Bank (2) Financial Services Company (Business Reg No):1027700132195",Entity,Primary name variation,,Russia,06/04/2022,06/04/2022,06/04/2022,15076 +SBU,,,,,,,,,,,,,,,,,,,P.O. Box 19395/4716,,,,,Tehran,19834,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +SBU,,,,,,,,,,,,,,,,,,,Shahid Beheshti University,,,,Evin,Tehran,1983963113,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +SCHILER NOVIN CO.,,,,,,,,,,,,,,,,,,,#153,3rd floor,Gheytariyeh Ave.,Opposite Gheytariyeh Park,,Tehran,19389,Iran,(UK Sanctions List Ref):INU0109 (UK Statement of Reasons):Acting on behalf of MODAFL subsidiaries. (Phone number):(1) +98 21 222 11 922 (2) +98 21 222 36 900 (3) +98 21 22236900 (4) +98 912 124 78 (Website):www.khishavand.com (Email address):(1) mohammadreza.alizadeh@schillernovin.ir (2) schniller@dpimail.net,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11218 +SCHILER NOVIN CO.,,,,,,,,,,,,,,,,,,,Gheytariyeh Avenue,no153,3rd Floor,,,Tehran,,Iran,(UK Sanctions List Ref):INU0109 (UK Statement of Reasons):Acting on behalf of MODAFL subsidiaries. (Phone number):(1) +98 21 222 11 922 (2) +98 21 222 36 900 (3) +98 21 22236900 (4) +98 912 124 78 (Website):www.khishavand.com (Email address):(1) mohammadreza.alizadeh@schillernovin.ir (2) schniller@dpimail.net,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11218 +SCHILER NOVIN CO.,,,,,,,,,,,,,,,,,,,"P.O.Box 17665/153, 1938934858,",,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0109 (UK Statement of Reasons):Acting on behalf of MODAFL subsidiaries. (Phone number):(1) +98 21 222 11 922 (2) +98 21 222 36 900 (3) +98 21 22236900 (4) +98 912 124 78 (Website):www.khishavand.com (Email address):(1) mohammadreza.alizadeh@schillernovin.ir (2) schniller@dpimail.net,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11218 +SCHILER NOVIN CO.,,,,,,,,,,,,,,,,,,,PO Box 17665/153 6 19389,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0109 (UK Statement of Reasons):Acting on behalf of MODAFL subsidiaries. (Phone number):(1) +98 21 222 11 922 (2) +98 21 222 36 900 (3) +98 21 22236900 (4) +98 912 124 78 (Website):www.khishavand.com (Email address):(1) mohammadreza.alizadeh@schillernovin.ir (2) schniller@dpimail.net,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11218 +SCHILLER NOVIN,,,,,,,,,,,,,,,,,,,#153,3rd floor,Gheytariyeh Ave.,Opposite Gheytariyeh Park,,Tehran,19389,Iran,(UK Sanctions List Ref):INU0109 (UK Statement of Reasons):Acting on behalf of MODAFL subsidiaries. (Phone number):(1) +98 21 222 11 922 (2) +98 21 222 36 900 (3) +98 21 22236900 (4) +98 912 124 78 (Website):www.khishavand.com (Email address):(1) mohammadreza.alizadeh@schillernovin.ir (2) schniller@dpimail.net,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11218 +SCHILLER NOVIN,,,,,,,,,,,,,,,,,,,Gheytariyeh Avenue,no153,3rd Floor,,,Tehran,,Iran,(UK Sanctions List Ref):INU0109 (UK Statement of Reasons):Acting on behalf of MODAFL subsidiaries. (Phone number):(1) +98 21 222 11 922 (2) +98 21 222 36 900 (3) +98 21 22236900 (4) +98 912 124 78 (Website):www.khishavand.com (Email address):(1) mohammadreza.alizadeh@schillernovin.ir (2) schniller@dpimail.net,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11218 +SCHILLER NOVIN,,,,,,,,,,,,,,,,,,,"P.O.Box 17665/153, 1938934858,",,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0109 (UK Statement of Reasons):Acting on behalf of MODAFL subsidiaries. (Phone number):(1) +98 21 222 11 922 (2) +98 21 222 36 900 (3) +98 21 22236900 (4) +98 912 124 78 (Website):www.khishavand.com (Email address):(1) mohammadreza.alizadeh@schillernovin.ir (2) schniller@dpimail.net,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11218 +SCHILLER NOVIN,,,,,,,,,,,,,,,,,,,PO Box 17665/153 6 19389,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0109 (UK Statement of Reasons):Acting on behalf of MODAFL subsidiaries. (Phone number):(1) +98 21 222 11 922 (2) +98 21 222 36 900 (3) +98 21 22236900 (4) +98 912 124 78 (Website):www.khishavand.com (Email address):(1) mohammadreza.alizadeh@schillernovin.ir (2) schniller@dpimail.net,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11218 +SCHILLER NOVIN CO.,,,,,,,,,,,,,,,,,,,#153,3rd floor,Gheytariyeh Ave.,Opposite Gheytariyeh Park,,Tehran,19389,Iran,(UK Sanctions List Ref):INU0109 (UK Statement of Reasons):Acting on behalf of MODAFL subsidiaries. (Phone number):(1) +98 21 222 11 922 (2) +98 21 222 36 900 (3) +98 21 22236900 (4) +98 912 124 78 (Website):www.khishavand.com (Email address):(1) mohammadreza.alizadeh@schillernovin.ir (2) schniller@dpimail.net,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11218 +SCHILLER NOVIN CO.,,,,,,,,,,,,,,,,,,,Gheytariyeh Avenue,no153,3rd Floor,,,Tehran,,Iran,(UK Sanctions List Ref):INU0109 (UK Statement of Reasons):Acting on behalf of MODAFL subsidiaries. (Phone number):(1) +98 21 222 11 922 (2) +98 21 222 36 900 (3) +98 21 22236900 (4) +98 912 124 78 (Website):www.khishavand.com (Email address):(1) mohammadreza.alizadeh@schillernovin.ir (2) schniller@dpimail.net,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11218 +SCHILLER NOVIN CO.,,,,,,,,,,,,,,,,,,,"P.O.Box 17665/153, 1938934858,",,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0109 (UK Statement of Reasons):Acting on behalf of MODAFL subsidiaries. (Phone number):(1) +98 21 222 11 922 (2) +98 21 222 36 900 (3) +98 21 22236900 (4) +98 912 124 78 (Website):www.khishavand.com (Email address):(1) mohammadreza.alizadeh@schillernovin.ir (2) schniller@dpimail.net,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11218 +SCHILLER NOVIN CO.,,,,,,,,,,,,,,,,,,,PO Box 17665/153 6 19389,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0109 (UK Statement of Reasons):Acting on behalf of MODAFL subsidiaries. (Phone number):(1) +98 21 222 11 922 (2) +98 21 222 36 900 (3) +98 21 22236900 (4) +98 912 124 78 (Website):www.khishavand.com (Email address):(1) mohammadreza.alizadeh@schillernovin.ir (2) schniller@dpimail.net,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11218 +SCIENTIFIC AND PRODUCTION ASSOCIATION IZHEVSK UNMANNED SYSTEMS,,,,,,,НАУЧНО-ПРОИЗВОДСТВЕННОЕ ОБЪЕДИНЕНИЕ ИЖЕВСКИЕ БЕСПИЛОТНЫЕ СИСТЕМЫ,Cyrillic,Russian,,,,,,,,,,2 Ordzhonikidze Street,,,,,Udmurt Republic,426063,Russia,"(UK Sanctions List Ref):RUS1429 (UK Statement of Reasons):Izhevsk Unmanned Systems is, or has been, involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance, namely the defence sector. (Phone number):7(3412) 655 390 (Website):http://www.izh-bs/ru (Email address):info@izh-bs.ru (Business Reg No):INN - 1831117433 OGRN - 1061831040688",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15376 +SCIENTIFIC PRODUCTION ASSOCIATION IZHMASH JOINT STOCK COMPANY,,,,,,,,,,,,,,,,,,,3B,Deryabina avenue,,,,Izhevsk,394018,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +SCIENTIFIC PRODUCTION ASSOCIATION IZHMASH JOINT STOCK COMPANY,,,,,,,,,,,,,,,,,,,3,Derjabin Pr,,,,Izhevsk,426006,Russia,"(UK Sanctions List Ref):RUS1356 Registration ID: 1111832003018 (UK Statement of Reasons):JSC Kalashnikov Concern is a Russian weapons manufacturer which has supplied products used by the Russian army in Ukraine. JSC Kalashnikov Concern has therefore provided goods or technology to a person who is responsible for, engages in, provides support for, or promotes policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. In addition, a Russian state-owned defence conglomerate, Rostec State Corporation, also owns 25% plus one of the shares of JSC Kalashnikov Concern and so they are an involved person through carrying on business as a Government of Russia-affiliated entity. (Phone number):+7 341 250 47 47 (Website):https://kalashnikovgroup.ru/ (Email address):personal@kalashnikovconcern.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15305 +SCIENTIFIC RESEARCH COUNCIL (SRC),,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +SCIENTIFIC RESEARCH COUNCIL (SRC),,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +SCIENTIFIC RESEARCH COUNCIL (SRC),,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +SCIENTIFIC RESEARCH COUNCIL (SRC),,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +SCIENTIFIC RESEARCH INSTITUTE NO 6,,,,,,,,,,,,,,,,,,,16a Nagatinskaya Street,,,,,Moscow,,Russia,"(UK Sanctions List Ref):CYB0022 (UK Statement of Reasons):The Central Scientific Research Institute of Chemistry and Mechanics (TsNIIKhM) was responsible for a cyber attack on a petro-chemical company in August 2017. The cyber attack gained remote access to the Safety Instrumented Systems connected to the Industrial Control System of a petrochemical refinery. This shut down the plant for over a week. There is evidence to suggest that the shutdown was inadvertent while TsNIIKhM were attempting to cause a highly dangerous physical consequence through disabling the safety systems, which could have included an explosion. These actions caused economic loss and prejudice to commercial interests and/or was intended to undermine the security and prosperity of a country other than the United Kingdom. (Type of entity):Government-owned technical research institution",Entity,Primary name variation,,Cyber,24/03/2022,24/03/2022,24/03/2022,15044 +SCIENTIFIC STUDIES AND RESEARCH CENTRE (SSRC),,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,Primary name,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +SCIENTIFIC STUDIES AND RESEARCH CENTRE (SSRC),,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,Primary name,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +SCIENTIFIC STUDIES AND RESEARCH CENTRE (SSRC),,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,Primary name,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +SCIENTIFIC STUDIES AND RESEARCH CENTRE (SSRC),,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,Primary name,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +SCIENTIFIC STUDIES AND RESEARCH COUNCIL,,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +SCIENTIFIC STUDIES AND RESEARCH COUNCIL,,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +SCIENTIFIC STUDIES AND RESEARCH COUNCIL,,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +SCIENTIFIC STUDIES AND RESEARCH COUNCIL,,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +SCIT,,,,,,,,,,,,,,,,,,,Dumar Project,,,,Area 11,Damascus,,Syria,"(UK Sanctions List Ref):SYR0331 (UK Statement of Reasons):Associated with the Organisation for Technological Industries (OTI) and therefore the Syrian Ministry of Defence, which are both designated. Involved in the supply of goods or technology to Syria. (Phone number):+ 963-113141053 (Subsidiaries):Subsidiary of the Organisation for Technological Industries (OTI) and therefore the Syrian Ministry of Defence (Parent company):Syrian Ministry of Defence",Entity,AKA,,Syria,09/03/2015,31/12/2020,13/05/2022,13236 +SCOT',,,,,,,,,,,,,,,,,,,Banias Industrial Area,Latakia Entrance Way,,,P.O. Box 13,Banias,,Syria,"(UK Sanctions List Ref):SYR0332 (UK Statement of Reasons):Syrian state owned oil company. There are reasonable grounds to suspect that it is or has been involved in supporting or benefitting from the Syrian regime in that it provides financial support to the regime, through the supply and sale of crude oil and related products. (Website):www.scot-syria.com (Email address):Email: scot50@scn-net.org",Entity,AKA,,Syria,26/06/2012,31/12/2020,13/05/2022,12696 +SCOTRACO,,,,,,,,,,,,,,,,,,,Banias Industrial Area,Latakia Entrance Way,,,P.O. Box 13,Banias,,Syria,"(UK Sanctions List Ref):SYR0332 (UK Statement of Reasons):Syrian state owned oil company. There are reasonable grounds to suspect that it is or has been involved in supporting or benefitting from the Syrian regime in that it provides financial support to the regime, through the supply and sale of crude oil and related products. (Website):www.scot-syria.com (Email address):Email: scot50@scn-net.org",Entity,AKA,,Syria,26/06/2012,31/12/2020,13/05/2022,12696 +SE BONG,PAEK,,,,,,,,,21/03/1938,,,North Korea,,,,,(1) Former Chairman of the Second Economic Committee (2) Former member of the National Defense Commission (3) Former Vice Director of Munitions Industry Department (MID),,,,,,,,DPRK,"(UK Sanctions List Ref):DPR0251 (UN Ref):KPi.048 Paek Se Bong is a former Chairman of the Second Economic Committee, a former member of the National Defense Commission, and a former Vice Director of Munitions Industry Department (MID)",Individual,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13478 +SE GON,KIM,,,,,,,,,13/11/1969,,,,PD472310104,,,,,,,,,,,,,(UK Sanctions List Ref):DPR0235 (UN Ref):KPi.032 Kim Se Gon works on behalf of the Ministry of Atomic Energy Industry.,Individual,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,31/12/2020,13417 +SECHIN,Igor,,,,,,,,,07/09/1960,Leningrad / St. Petersburg,Russia,Russia,,,,,"(1) Chief Executive Officer (2) Chairman of the Management Board (3) Deputy Chairman of the Board of Directors, Rosneft",,,,,,,,,"(UK Sanctions List Ref):RUS0273 (UK Statement of Reasons):Igor Ivanovich SECHIN (hereafter referred to as SECHIN) is a prominent Russian businessman with close personal ties to Vladimir Putin. SECHIN is Chief Executive Officer, Chairman of the Management Board and Deputy Chairman of the Board of Directors at Rosneft. Rosneft is the leading company in the Russian oil sector and the largest publicly owned oil and gas corporation in the world. Its main shareholder is ROSNEFTEGAZ JSC, which is 100% owned by the Government of Russia. It is therefore a Government of Russia-affiliated entity. Therefore, as a result of his positions above, SECHIN is involved in obtaining a benefit from and supporting the Government of Russia as he holds the position of a director in a Government of Russia-affiliated entity, and one that carries on business in a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,AKA,,Russia,10/03/2022,10/03/2022,10/03/2022,14213 +SECHIN,Igor,Ivanovich,,,,,Игорь Иванович СЕЧИН,,,07/09/1960,Leningrad / St. Petersburg,Russia,Russia,,,,,"(1) Chief Executive Officer (2) Chairman of the Management Board (3) Deputy Chairman of the Board of Directors, Rosneft",,,,,,,,,"(UK Sanctions List Ref):RUS0273 (UK Statement of Reasons):Igor Ivanovich SECHIN (hereafter referred to as SECHIN) is a prominent Russian businessman with close personal ties to Vladimir Putin. SECHIN is Chief Executive Officer, Chairman of the Management Board and Deputy Chairman of the Board of Directors at Rosneft. Rosneft is the leading company in the Russian oil sector and the largest publicly owned oil and gas corporation in the world. Its main shareholder is ROSNEFTEGAZ JSC, which is 100% owned by the Government of Russia. It is therefore a Government of Russia-affiliated entity. Therefore, as a result of his positions above, SECHIN is involved in obtaining a benefit from and supporting the Government of Russia as he holds the position of a director in a Government of Russia-affiliated entity, and one that carries on business in a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,10/03/2022,10/03/2022,10/03/2022,14213 +SECHIN,Ivan,Igorevich,,,,,Иван Игоравич Сечин,Cyrillic,Russian,00/00/1989,,,Russia,,,,,,,,,,,,,,(UK Sanctions List Ref):RUS1063 (UK Statement of Reasons):Ivan Igorevich SECHIN is closely associated with his father Igor Ivanovich Sechin (RUS0273). Igor Ivanovich Sechin is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Male,Individual,Primary name,,Russia,24/03/2022,24/03/2022,12/07/2022,15006 +SECHINA,Marina,Vladimirovna,,,,,"Сечина, Марина Владимировна",Cyrillic,Russian,00/00/1962,,,,,,,,,Residential Complex “Шведский тупик 3”,,,,,Moscow,125009,Russia,"(UK Sanctions List Ref):RUS1033 (UK Statement of Reasons):Marina SECHINA is the majority shareholder of Stankoflot, a company that is a supplier to Rostec Corporation, a Russian state-owned defence manufacturing conglomerate. She has therefore been carrying on business in a sector of strategic significance to the Government of Russia.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,27/05/2022,14970 +SECOND ACADEMY OF NATURAL SCIENCES,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0189 (UN Ref):KPe.018 The Second Academy of Natural Sciences is a national-level organization responsible for research and development of the DPRK’s advanced weapons systems, including missiles and probably nuclear weapons. The Second Academy of Natural Sciences uses a number of subordinate organizations to obtain technology, equipment, and information from overseas, including Tangun Trading Corporation, for use in the DPRK’s missile and probably nuclear weapons programs. Tangun Trading Corporation was designated by the Committee in July 2009 and is primarily responsible for the procurement of commodities and technologies to support DPRK’s defense research and development programs, including, but not limited to, weapons of mass destruction and delivery system programs and procurement, including materials that are controlled or prohibited under relevant multilateral control regimes. (Subsidiaries):Tangun Trading Corporation",Entity,Primary name,,Democratic People's Republic of Korea,23/04/2013,07/03/2013,31/12/2020,12871 +SECOND ACADEMY OF NATURAL SCIENCES RESEARCH INSTITUTE,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0189 (UN Ref):KPe.018 The Second Academy of Natural Sciences is a national-level organization responsible for research and development of the DPRK’s advanced weapons systems, including missiles and probably nuclear weapons. The Second Academy of Natural Sciences uses a number of subordinate organizations to obtain technology, equipment, and information from overseas, including Tangun Trading Corporation, for use in the DPRK’s missile and probably nuclear weapons programs. Tangun Trading Corporation was designated by the Committee in July 2009 and is primarily responsible for the procurement of commodities and technologies to support DPRK’s defense research and development programs, including, but not limited to, weapons of mass destruction and delivery system programs and procurement, including materials that are controlled or prohibited under relevant multilateral control regimes. (Subsidiaries):Tangun Trading Corporation",Entity,AKA,,Democratic People's Republic of Korea,23/04/2013,07/03/2013,31/12/2020,12871 +SECOND ECONOMIC COMMITTEE,,,,,,,,,,,,,,,,,,,,,,,,Kangdong,,North Korea,"(UK Sanctions List Ref):DPR0190 (UN Ref):KPe.032 The Second Economic Committee is involved in key aspects of the DPRK's missile program. The Second Economic Committee is responsible for overseeing the production of the DPRK's ballistic missiles, and directs the activities of KOMID.",Entity,Primary name,,Democratic People's Republic of Korea,23/12/2010,02/03/2016,31/12/2020,11285 +SEDAQAT,Farajollah,,,,,,,,,,,,,,,,,"Assistant Secretary of the General Prison Administration in Tehran. Former Head of Evin’s prison, Tehran until October 2010",,,,,,,,,"(UK Sanctions List Ref):IHR0029 (UK Statement of Reasons):Assistant Secretary of the General Prison Administration in Tehran. Head of Evin’s prison, Tehran until Oct 2010 during which time torture took place. He was warden and threatened and exerted pressure on prisoners numerous times. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11807 +SEDDIQI,ABDUL WALI,,,,,Qari,عبدالولی صدیقی,,,00/00/1974,"Zilzilay village, Andar District, Ghazni Province",Afghanistan,Afghanistan,D 000769,(Afghan). Issued on 2 Feb 1997,,,"Third Secretary, Taliban Consulate General, Peshawar, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0102 (UN Ref):TAi.133 Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6916 +SEDNIT,,,,,,,,,,,,,,,,,,,Komsomol'skiy Prospekt,,,,,20 Moscow,119146,Russia,"(UK Sanctions List Ref):CYB0012 (UK Statement of Reasons):The 85th Main Centre for Special Technologies (GTsSS) of the Russian General Staff of the Armed Forces of the Russian Federation (GRU) - also known by its field post number ‘26165’ and industry nicknames: APT28, Fancy Bear, Sofacy Group, Pawn Storm, Strontium - was involved in illegally accessing the information systems of the German Federal Parliament (Deutscher Bundestag) without permission in April and May 2015. The military intelligence officers of the 85th controlled, directed and took part in this activity, accessing the email accounts of MPs and stealing their data. Their activity interfered with the parliament’s information systems affecting its operation for several days, undermining the exercise of parliamentary functions in Germany. (Type of entity):Department within Government (Parent company):Russian Ministry of Defence",Entity,AKA,,Cyber,23/10/2020,31/12/2020,31/12/2020,13984 +SEDOV,Alexei,Semenovich,,,,,,,,00/00/1954,,,,,,,,Head of FSB 2nd Service,,,,,,,,,"(UK Sanctions List Ref):CHW0024 (UK Statement of Reasons):Alexei Sedov is the Head of the ""2nd Service"" Unit in the Federal Security of the Russian Federation (FSB). There is reasonable grounds to suspect that the Federal Security Service of the Russian Federation was involved in the attempted assassination of Alexey Navalny using a toxic nerve agent. As Head of the ""2nd Service"" Unit, Sedov is responsible for, engaged in, provided support for, or promoted the activities conducted by this unit in the FSB. Alternatively, he is associated with those who did. This designation is part of a further package of designations targeting the FSB operatives directly involved in carrying out the operation. Russian opposition leader Alexey Navalny was the victim of an attempted assassination during his August 2020 visit to Siberia, in which a chemical weapon - a toxic nerve agent of the Novichok group - was used. The activities and movements of Alexey Navalny during his journey to Siberia, from where he intended to return to Moscow on 20th August 2020, were closely monitored by the Federal Security Service of the Russian Federation. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny is a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. (Gender):Male",Individual,Primary name,,Chemical Weapons,20/08/2021,20/08/2021,16/06/2022,14138 +SEDOY,,,,,,,,,,15/01/1970,"Grozny, Chechen Republic",Russia,(1) Russia. (2) Georgia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0266 (UN Ref):QDi.406 Associated with Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116583",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13517 +SEI,,,,,,,,,,,,,,,,,,,Ayatollah Mirzay e Shiraz Blvd.,Ghasr Aldasht St.,,,,Shiraz,71000,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SEI,,,,,,,,,,,,,,,,,,,"Hossain Abad Road,",,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SEI,,,,,,,,,,,,,,,,,,,Mirzaie Shirazi,Fars,71365 1589,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SEI,,,,,,,,,,,,,,,,,,,Mirzaye Shirazi Blv.,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SEI,,,,,,,,,,,,,,,,,,,P.O. Box 71365 1589,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SEIEI MARU,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0110 Pursuant to paragraphs 8(d) of Security Council resolution 1718 (2006) and 12 of Security Council resolution 2270 (2016) as economic resources of designated entities. DPRK cargo vessel M/V HAP JANG GANG 6 is owned by Hapjanggang Shipping Corp and is believed to have been involved in illicit transfers of prohibited DPRK goods. Listed as asset of Hapjanggang Shipping Corp, (OFSI ID: 13629, UN Reference Number: UN Ref KPe.058) (IMO number):9066540 (Current owners):Hapjanggang Shipping Corp (Flag of ship):North Korea (Previous flags):Cambodia (Type of ship):General Cargo / Multi Purpose (Tonnage of ship):1497 (Length of ship):75 (Year built):1993",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13661 +SEIF,Abu,,,,,,,,,14/07/1975,"Rembang, Jawa Tengah",Indonesia,Indonesia,A2823222,"Indonesia. Issued on 28 May 2012. Expires 28 May 2017. Issued under name Wiji Joko Santoso, born 14 July 1975 in Rembang, Jawa Tengah, Indonesia",,,,,,,,,,,,(UK Sanctions List Ref):AQD0332 (UN Ref):QDi.350 Head of the foreign affairs division and key outreach player of Jemaah Islamiyah (QDe.092). Associated with Hilal Ahmar Society Indonesia (HASI) (QDe.147). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5854971,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/03/2015,13/03/2015,31/12/2020,13244 +SELESELAT AL-THAHAB,,,,,,,سلسلة الذهب للصرافة,,,,,,,,,,,,Al-Abbas Street,Karbala,,,,,,Iraq,"(UK Sanctions List Ref):AQD0076 (UN Ref):QDe.154 Money exchange business facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), as of Apr. 2016. Conducted over one hundred financial transfers into ISIL-controlled territory. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116598",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13512 +SELESELAT AL-THAHAB,,,,,,,سلسلة الذهب للصرافة,,,,,,,,,,,,Al-Kadhumi Complex,Al-Harthia,,,,Baghdad,,Iraq,"(UK Sanctions List Ref):AQD0076 (UN Ref):QDe.154 Money exchange business facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), as of Apr. 2016. Conducted over one hundred financial transfers into ISIL-controlled territory. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116598",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13512 +SELEZNEV,Valery,Sergeevich,,,,,Селезнев Валерий Сергеевич,,,05/09/1964,Vladivostok,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0284 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14229 +SELIVANOV,Alexei,Sergeevich,,,,,Алексей Сергеевич Селиванов,,,12/07/1980,Kyiv,Ukraine,Ukraine,,,,,(1) Official in the so-called Ministry of Internal Affairs (2) Deputy Head of Main Directorate,,,,,,,,,"(UK Sanctions List Ref):RUS1559 (UK Statement of Reasons):Alexei Sergeevich SELIVANOV is an official in the Russian-installed administration in occupied Zaporizhzhia. SELIVANOV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he is or has engaged in policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15503 +SELIVANOV,Oleksiy,,,,,,,,,12/07/1980,Kyiv,Ukraine,Ukraine,,,,,(1) Official in the so-called Ministry of Internal Affairs (2) Deputy Head of Main Directorate,,,,,,,,,"(UK Sanctions List Ref):RUS1559 (UK Statement of Reasons):Alexei Sergeevich SELIVANOV is an official in the Russian-installed administration in occupied Zaporizhzhia. SELIVANOV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he is or has engaged in policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15503 +SELIVANOVA,Anastasia,Yurievna,,,,,СЕЛИВАНОВА Анастасия Юрьевна,Cyrillic,Russian,05/08/1983,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1206 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15158 +SELIVANOVA,Anastasia,Yuryevna,,,,,,,,05/08/1983,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1206 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15158 +SELIVERSTOV,Viktor,Valentinovich,,,,,Селиверстов Виктор Валентинович,,,02/08/1954,"Kotovsk, Odessa",Ukraine,,610141292,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0570 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14515 +SELMAN,Ma'alim,,,,,,,,,00/00/1979,Nairobi,Kenya,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0013 (UN Ref):SOi.013,Individual,AKA,Good quality,Somalia,23/10/2014,23/09/2014,31/12/2020,13147 +SELSELAT AL THAHAB FOR MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Al-Abbas Street,Karbala,,,,,,Iraq,"(UK Sanctions List Ref):AQD0076 (UN Ref):QDe.154 Money exchange business facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), as of Apr. 2016. Conducted over one hundred financial transfers into ISIL-controlled territory. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116598",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13512 +SELSELAT AL THAHAB FOR MONEY EXCHANGE,,,,,,,,,,,,,,,,,,,Al-Kadhumi Complex,Al-Harthia,,,,Baghdad,,Iraq,"(UK Sanctions List Ref):AQD0076 (UN Ref):QDe.154 Money exchange business facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), as of Apr. 2016. Conducted over one hundred financial transfers into ISIL-controlled territory. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116598",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13512 +SEMENOV,Dmitrii,Aleksandrovich,,,,,,,,01/06/1977,Moscow,Russia,Russia,,,,,Former ‘Deputy Prime Minister for Finances’ of the ‘Lugansk People’s Republic’,,,,,,,,,"(UK Sanctions List Ref):RUS0128 (UK Statement of Reasons):Former ‘Deputy Prime Minister for Finances’ of the so-called ‘Lugansk People’s Republic’. In taking on and acting in this capacity, has actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,16/09/2022,13176 +SEMIGIN,Gennady,Yurievich,,,,,Семигин Геннадий Юрьевич,,,23/03/1964,"Dunaivtsi, Khmelnytskyi Oblast",Ukraine,,728763012,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0637 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14582 +SEMISOTOV,Nikolai,Petrovich,,,,,Николай Петрович СЕМИСОТОВ,,,02/12/1968,"Sekachi farm, Volgograd region",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0928 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14879 +SEMYONOV,Dmitry,Aleksandrovich,,,,,,,,01/06/1977,Moscow,Russia,Russia,,,,,Former ‘Deputy Prime Minister for Finances’ of the ‘Lugansk People’s Republic’,,,,,,,,,"(UK Sanctions List Ref):RUS0128 (UK Statement of Reasons):Former ‘Deputy Prime Minister for Finances’ of the so-called ‘Lugansk People’s Republic’. In taking on and acting in this capacity, has actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. (Gender):Male",Individual,Primary name,,Russia,02/12/2014,31/12/2020,16/09/2022,13176 +SEMYONOV,Valery,Vladimirovich,,,,,Валерий Владимирович СЕМЁНОВ,,,16/09/1960,Cherkessk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0959 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14910 +SENDERO LUMINOSO (SL),,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0041 (UK Statement of Reasons):The Sendero Luminoso are committed to using violence to achieve their political goals. They have been responsible for numerous terrorist attacks since the 1980s, and continue to perpetrate acts of violence.",Entity,Primary name,,Counter-Terrorism (International),02/11/2001,31/12/2020,31/12/2020,7440 +SENE,Elmir,,,,,,Эльмир Сене,,,04/07/1980,"Vedeno Village, Vedenskiy District, Republic of Chechnya",Russia,Russia,9600133195,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0127 (UN Ref):QDi.365 As at Aug. 2015, one of the leaders of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), commanding directly 130 militants. Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899829. Address country Syria, located in as at August 2015",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13300 +SENE,Elmir,,,,,,Эльмир Сене,,,04/07/1980,"Vedeno Village, Vedenskiy District, Republic of Chechnya",Russia,Russia,9600133195,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0127 (UN Ref):QDi.365 As at Aug. 2015, one of the leaders of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), commanding directly 130 militants. Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899829. Address country Syria, located in as at August 2015",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13300 +SENIN,Vladimir,Borisovich,,,,,Сенин Владимир Борисович,,,17/09/1960,Moscow,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0601 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14546 +SENNA,Sowlat,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0032 (UK Statement of Reasons):Known to have provided support to Iran's nuclear programme through senior roles held. (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9100 +SEPAH COOPERATIVE FOUNDATION,,,,,,,,,,,,,,,,,,,Niayes Highway,Seoul Street,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0059 (UK Statement of Reasons):Bonyad Taavon Sepah, also known as the IRGC Cooperative Foundation, was formed by the commanders of the IRGC to structure the IRGC's investments. It is controlled by the IRGC. Bonyad Taavon Sepah's Board of Trustees is composed of nine members, of whom eight are IRGC members. These officers include the IRGC's Commander in Chief, who is the Chairman of the Board of Trustees, the Supreme Leader's representative to the IRGC , the Basij Commander, the IRGC Ground Forces Commander, the IRGC Air Force Commander, the IRGC Navy Commander, the head of the IRGC Information Security Organisation, a senior IRGC officer from the Armed Forces general staff and a senior IRGC officer from MODAFL. (Type of entity):Foundation (Subsidiaries):Ansar Bank. Mehr Bank",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11580 +SEPAH-E PASDARAN-E ENGHLAB-E ESLAMI,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0080 (UK Statement of Reasons):Responsible for Iran's nuclear programme. Has operational control for Iran's ballistic missile programme. Has undertaken procurement attempts to support Iran's ballistic missiles and nuclear programmes. (Type of entity):Military Government,Entity,Primary name variation,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11238 +SEPAH-E QODS,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,AKA,,Syria,24/08/2011,31/12/2020,13/05/2022,11241 +SEPAH-E QODS,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0082 and SYR0310 Listed under the Iran (Nuclear) and Syria sanctions regimes. Names of Director: Qasem Soleimani (designated 23 June 2011). Ultimate beneficial owner: Iranian Advisory Mission to Syria. (UK Statement of Reasons):Iran’s Islamic Revolutionary Guard Corps (IRGC) Qods Force is responsible for operations outside Iran and is Tehran’s principal foreign policy tool for special operations and support to terrorists and Islamic militants abroad. Hizballah used Qods Force-supplied rockets, anti-ship cruise missiles (ASCMs), man-portable air defense systems (MANPADS), and unmanned aerial vehicles (UAVs) in the 2006 conflict with Israel and benefited from Qods Force training on these systems, according to press reporting. According to a variety of reporting, the Qods Force continues to re-supply and train Hizballah on advanced weaponry, anti-aircraft missiles, and long-range rockets. The Qods Force continues to provide limited lethal support, training, and funding to Taliban fighters in southern and western Afghanistan including small arms, ammunition, mortars, and short-range battlefield rockets. Controlled by the IRGC. (Type of entity):Military (Subsidiaries):IRGC (Parent company):Iranian Revolutionary Guard Corps",Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,13/05/2022,11241 +SEPANIR,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0179 (UN Ref):IRe.064 Owned or controlled by, or acting on behalf of, KAA. [Old Reference # E.29.II.14] (Parent company):Khatam al-Anbiya (KAA)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11146 +SEPARATE ARTILLERY BRIGADE OF THE 1ST ARMY CORPS,,,,,,,,,,,,,,,,,,,,,,,,Location of entity headquarters: A former tourist camp outside Donetsk which has been turned into a base for the Death Battalion,,,"(UK Sanctions List Ref):RUS0180 Part of the so called ""2nd Army Corps of the ""Lugansk People's Republic (Type of entity):Armed Separatist Group",Entity,AKA,,Russia,16/02/2015,31/12/2020,31/12/2020,13224 +SEPASAD ENGINEERING COMPANY,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0180 (UN Ref):IRe.065 Owned or controlled by, or acting on behalf of, KAA.[Old Reference # E.29.II.15] (Parent company):Khatam al-Anbiya (KAA)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11147 +SERBIAN,,,,,,,,,,30/04/1991,St. Petersburg,,Russia,,,,,,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0031 (UK Statement of Reasons):Commander of the ‘Rusich’ unit, an armed separatist group involved in the fighting in eastern Ukraine. In this capacity, he has actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. He was also involved in the construction of the Kerch Bridge from Russia to the illegally annexed Autonomous Republic of Crimea. Therefore he has supported the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,AKA,,Russia,16/02/2015,31/12/2020,31/12/2020,13200 +SERBIAN,,,,,,,,,,30/04/1991,St. Petersburg,,Russia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):RUS0031 (UK Statement of Reasons):Commander of the ‘Rusich’ unit, an armed separatist group involved in the fighting in eastern Ukraine. In this capacity, he has actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. He was also involved in the construction of the Kerch Bridge from Russia to the illegally annexed Autonomous Republic of Crimea. Therefore he has supported the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,AKA,,Russia,16/02/2015,31/12/2020,31/12/2020,13200 +SERDYUKOV,Andrey,Nikolayevich,,,,Colonel General,Андрей Николаевич Сердюков,,,04/03/1962,Rostov Oblast,Russia,Russia,,,,,Commander Airborne Forces of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS1363 (UK Statement of Reasons):Colonel General Andrey SERDYUKOV is the Commander of the Airborne Forces of the Russian Federation. The Russian Airborne Forces have been heavily involved in the ongoing invasion of Ukraine by Russia, including an aerial assault on the city of Kharkiv. As the Airborne Supreme Commander, Colonel General SERDYUKOV has oversight of and directs the actions of the Russian Airborne Forces. There are therefore reasonable grounds to suspect that SERDYUKOV is an involved person, who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,21/04/2022,21/04/2022,21/04/2022,15314 +SEREBRIAKOV,Evgenii,Mikhaylovich,,,,,,,,26/07/1981,Koersk,Russia,Russia,100135555,,,,Cyber Operator (GRU),,,,,,Moscow,,Russia,(UK Sanctions List Ref):CYB0007 (UK Statement of Reasons):Evgenli Mikhaylovich Serebriakov was part of a team of intelligence officers of the Russian General Staff Main Intelligence Directorate (GRU) unit known as field post number 26165 that attempted to gain unauthorised access to the information systems of the Organisation for the Prohibition of Chemical Weapons (OPCW) in April 2018. The Netherlands authorities disrupted the cyber attack before it was successful. This attempted relevant cyber activity was intended to undermine the independence or effective functioning of an international organisation (Gender):Male,Individual,Primary name,,Cyber,31/07/2020,31/12/2020,31/12/2020,13907 +SEREDA,Mikhail,Leonidovich,,,,,Михаил Леонидович Середа,Cyrillic,Russian,09/05/1970,Klintsy,Russia,,,,780602487039,Russian Tax ID,Deputy Chairman of the Board of Directors Gazprombank JSC,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1631 (UK Statement of Reasons):Mikhail Leonidovich Sereda is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by:(1) working as a director of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a director of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15575 +SERGEENKO,Igor,Petrovich,,,,,"СЕРГЯЕНКА, Ігар Пятровіч",,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name,,Belarus,06/11/2020,31/12/2020,04/02/2022,13920 +SERGEENKO,Igor,Petrovich,,,,,"СЕРГЯЕНКА, Ігар Пятровіч",,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13920 +SERGEENKO,Ihar,Petrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13920 +SERGEENKO,Ihar,Petrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13920 +SERGEENKO,Igor,Piatrovich,,,,,"СЕРГЕЕНКО, Игорь Петрович",,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13920 +SERGEENKO,Igor,Piatrovich,,,,,"СЕРГЕЕНКО, Игорь Петрович",,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13920 +SERGEENKO,Ihar,Piatrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13920 +SERGEENKO,Ihar,Piatrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13920 +SERGEYENKO,Igor,Petrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13920 +SERGEYENKO,Igor,Petrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13920 +SERGEYENKO,Igor,Piatrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13920 +SERGEYENKO,Igor,Piatrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13920 +SERGEYENKO,Ihar,Petrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13920 +SERGEYENKO,Ihar,Petrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13920 +SERGEYENKO,Ihar,Piatrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13920 +SERGEYENKO,Ihar,Piatrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13920 +SERGUN,Natalya,Vladimirovna,,,,,"СЕРГУН, Наталья Владимировна",Cyrillic,Russian,20/09/1973,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1296 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15248 +SERGYAENKA,Igor,Piatrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13920 +SERGYAENKA,Igor,Piatrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13920 +SERGYAENKA,Ihar,Piatrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13920 +SERGYAENKA,Ihar,Piatrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13920 +SERGYAENKA,Igor,Petrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13920 +SERGYAENKA,Igor,Petrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13920 +SERGYAENKA,Ihar,Petrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13920 +SERGYAENKA,Ihar,Petrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13920 +SEROV,Sergei,Viktorovich,,,,,"СЕРОВ, Сергей Викторович",Cyrillic,Russian,13/12/1967,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1297 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15249 +SEROV,Sergey,Viktorovich,,,,,,,,13/12/1967,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1297 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15249 +SERYOZHENKO,Alexander,Anatolievich,,,,,СЕРЁЖЕНКО Александр Анатольевич,Cyrillic,Russian,17/03/1965,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1207 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15159 +SERYOZHENKO,Alexander,Anatolyevich,,,,,,,,17/03/1965,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1207 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15159 +SERYSHEV,Anatoly,Anatolyevich,,,,,СЕРЫШЕВ Анатолий Анатольевич,Cyrillic,Russian,19/07/1965,"Koblyakovo, Bratsk District, Irkutsk Region",Russia,Russia,,,,,(1) Presidential Envoy to the Volga Federal District (2) Member of the Russian Security Council,,,,,,,,,"(UK Sanctions List Ref):RUS1048 (UK Statement of Reasons):Anatoly Anatolyevich SERYSHEV is a Member of the Security Council of the Russian Federation and Presidential Envoy to the Siberian Federal District. As a Member of the Security Council, SERYSHEV is or has been responsible for, engaged in, provided support for or promoted policies or actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,24/03/2022,24/03/2022,09/05/2022,14991 +SETA,Abu,,,,,,,,,03/09/1962,Makassar,Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0335 (UN Ref):QDi.123 At large as at Dec. 2003. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424789,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7834 +SETH,Bada,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,,,,,Noorabad,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +SETH,Bada,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,House Nu 37,30th Street- defence,Housing Authority,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +SETH,Bada,,,,,,,,,26/12/1955,"Kher, Ratnagiri, Maharashtra",India,India,(1) A-333602 (2) M110522 (3) R841697 (4) F823692 (5) A501801 (6) K560098 (7) V57865 (8) P537849 (9) A717288 (10) G866537 (11) C-267185 (12) H-123259 (13) G-869537 (14) KC-285901,"(1) India number, issued on 4 Jun. 1985, issued in Bombay, India. Passport subsequently revoked by the Government of India. (2) India number, issued on 13 Nov. 1978, issued in Bombay, India (3) India number, issued on 26 Nov. 1981, issued in Bombay (4) India number, issued on 2 Sep. 1989 by CGI in Jeddah (5) India number, issued on 26 Jul. 1985, issued in Bombay (6) India number, issued on 30 Jul. 1975, issued in Bombay (7) Issued on 3 Oct. 1983, issued in Bombay (8) India number, issued on 30 Jul. 1979, issued in Bombay (9) Issued on 18 Aug. 1985, issued in Dubai (misuse) (10) Pakistan number, issued on 12 Aug. 1991, issued in Rawalpindi (misuse) (11) Issued in Karachi in Jul.1996 (12) Issued in Rawalpindi in Jul. 2001 (13) Issued in Rawalpindi (14) -",,,,White House,"Near Saudi Mosque,",Clifton,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0159 (UN Ref):QDi.135 Father’s name is Sheikh Ibrahim Ali Kaskar, mother’s name is Amina Bi, wife’s name is Mehjabeen Shaikh. International arrest warrant issued by the Government of India. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4520465",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/11/2003,03/11/2003,31/12/2020,7863 +SEVER,,,,,,,Север,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +SEVER,,,,,,,Север,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +SHAABAN,Bouthania,,,,,,,,,00/00/1953,Homs,,Syria,,,,,Political and Media Advisor to the President since July 2008,,,,,,,,,(UK Sanctions List Ref):SYR0033 (UK Statement of Reasons):Political and Media Advisor to the President since July 2008 and as such associated with the violent crackdown on the population. (Gender):Female,Individual,Primary name,,Syria,26/06/2012,31/12/2020,31/12/2020,12690 +SHAABAN,Buthaina,,,,,,,,,00/00/1953,Homs,,Syria,,,,,Political and Media Advisor to the President since July 2008,,,,,,,,,(UK Sanctions List Ref):SYR0033 (UK Statement of Reasons):Political and Media Advisor to the President since July 2008 and as such associated with the violent crackdown on the population. (Gender):Female,Individual,Primary name variation,,Syria,26/06/2012,31/12/2020,31/12/2020,12690 +SHABAAB,,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +SHABAN,Adib,,,,,,,,,00/00/1952,,,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0137 (UN Ref):IQi.076,Individual,AKA,Good quality,Iraq,07/06/2004,02/06/2004,31/12/2020,8383 +SHA'BAN,Adib,,,,,Doctor,,,,00/00/1952,,,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0137 (UN Ref):IQi.076,Individual,AKA,Good quality,Iraq,07/06/2004,02/06/2004,31/12/2020,8383 +SHABUNYA,Victoria,Valerevna,,,,,Виктория Валерьевна ШАБУНЯ,,,27/02/1974,,,Belarus,,,,,"Judge of the Central district court of Minsk, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0090 (UK Statement of Reasons):Victoria Shabunya is a Judge of the Central District Court in Minsk. In her position she is responsible for numerous politically motivated rulings against journalists and activists for taking part in protests. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition. (Gender):Female",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14019 +SHABUNYA,Victoria,Valeryeuna,,,,,Вiкторыя Валер’еўна ШАБУНЯ,,,27/02/1974,,,Belarus,,,,,"Judge of the Central district court of Minsk, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0090 (UK Statement of Reasons):Victoria Shabunya is a Judge of the Central District Court in Minsk. In her position she is responsible for numerous politically motivated rulings against journalists and activists for taking part in protests. She therefore bears responsibility for undermining the rule of law and through her actions as a judge, she has contributed to the repression of civil society and democratic opposition. (Gender):Female",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14019 +SHADARI,Emmanuel,Ramazani,,,,,,,,29/11/1960,Kasongo,Congo (Democratic Republic),Congo (Democratic Republic),,,,,(1) Former Vice Prime Minister (2) Minister of Interior and Security,,,,,,Kinhasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0012 (UK Statement of Reasons):As Vice Prime Minister and Minister of the Interior and Security between December 2016 and February 2018, Ramazani SHADARI was officially responsible for the police and security services and coordinating the work of provincial governors. In this capacity, he was responsible for the arrests of activists and opposition members, as well as brutality and excessive force used by the security services, such as the violent crackdown on members of the Bundu Dia Kongo (BDK) movement in Kongo Central; the repression in Kinshasa over January-February 2017; and disproportionate use of force and violent repression in Kasai provinces. Ramanzani SHADARI was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC. In February 2018, Ramzani SHADARi was named Permanent Secretary of the Parti du Peuple pour la reconstruction et la developpement (PPRD). (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13466 +SHADARI,Ramazani,,,,,,,,,29/11/1960,Kasongo,Congo (Democratic Republic),Congo (Democratic Republic),,,,,(1) Former Vice Prime Minister (2) Minister of Interior and Security,,,,,,Kinhasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0012 (UK Statement of Reasons):As Vice Prime Minister and Minister of the Interior and Security between December 2016 and February 2018, Ramazani SHADARI was officially responsible for the police and security services and coordinating the work of provincial governors. In this capacity, he was responsible for the arrests of activists and opposition members, as well as brutality and excessive force used by the security services, such as the violent crackdown on members of the Bundu Dia Kongo (BDK) movement in Kongo Central; the repression in Kinshasa over January-February 2017; and disproportionate use of force and violent repression in Kasai provinces. Ramanzani SHADARI was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC. In February 2018, Ramzani SHADARi was named Permanent Secretary of the Parti du Peuple pour la reconstruction et la developpement (PPRD). (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13466 +SHADARI MULANDA,Emmanuel,Ramazani,,,,,,,,29/11/1960,Kasongo,Congo (Democratic Republic),Congo (Democratic Republic),,,,,(1) Former Vice Prime Minister (2) Minister of Interior and Security,,,,,,Kinhasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0012 (UK Statement of Reasons):As Vice Prime Minister and Minister of the Interior and Security between December 2016 and February 2018, Ramazani SHADARI was officially responsible for the police and security services and coordinating the work of provincial governors. In this capacity, he was responsible for the arrests of activists and opposition members, as well as brutality and excessive force used by the security services, such as the violent crackdown on members of the Bundu Dia Kongo (BDK) movement in Kongo Central; the repression in Kinshasa over January-February 2017; and disproportionate use of force and violent repression in Kasai provinces. Ramanzani SHADARI was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC. In February 2018, Ramzani SHADARi was named Permanent Secretary of the Parti du Peuple pour la reconstruction et la developpement (PPRD). (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13466 +SHADARI MULANDA,Ramazani,,,,,,,,,29/11/1960,Kasongo,Congo (Democratic Republic),Congo (Democratic Republic),,,,,(1) Former Vice Prime Minister (2) Minister of Interior and Security,,,,,,Kinhasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0012 (UK Statement of Reasons):As Vice Prime Minister and Minister of the Interior and Security between December 2016 and February 2018, Ramazani SHADARI was officially responsible for the police and security services and coordinating the work of provincial governors. In this capacity, he was responsible for the arrests of activists and opposition members, as well as brutality and excessive force used by the security services, such as the violent crackdown on members of the Bundu Dia Kongo (BDK) movement in Kongo Central; the repression in Kinshasa over January-February 2017; and disproportionate use of force and violent repression in Kasai provinces. Ramanzani SHADARI was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC. In February 2018, Ramzani SHADARi was named Permanent Secretary of the Parti du Peuple pour la reconstruction et la developpement (PPRD). (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13466 +SHADARY,Emmanuel,Ramazani,,,,,,,,29/11/1960,Kasongo,Congo (Democratic Republic),Congo (Democratic Republic),,,,,(1) Former Vice Prime Minister (2) Minister of Interior and Security,,,,,,Kinhasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0012 (UK Statement of Reasons):As Vice Prime Minister and Minister of the Interior and Security between December 2016 and February 2018, Ramazani SHADARI was officially responsible for the police and security services and coordinating the work of provincial governors. In this capacity, he was responsible for the arrests of activists and opposition members, as well as brutality and excessive force used by the security services, such as the violent crackdown on members of the Bundu Dia Kongo (BDK) movement in Kongo Central; the repression in Kinshasa over January-February 2017; and disproportionate use of force and violent repression in Kasai provinces. Ramanzani SHADARI was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC. In February 2018, Ramzani SHADARi was named Permanent Secretary of the Parti du Peuple pour la reconstruction et la developpement (PPRD). (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13466 +SHADARY,Ramazani,,,,,,,,,29/11/1960,Kasongo,Congo (Democratic Republic),Congo (Democratic Republic),,,,,(1) Former Vice Prime Minister (2) Minister of Interior and Security,,,,,,Kinhasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0012 (UK Statement of Reasons):As Vice Prime Minister and Minister of the Interior and Security between December 2016 and February 2018, Ramazani SHADARI was officially responsible for the police and security services and coordinating the work of provincial governors. In this capacity, he was responsible for the arrests of activists and opposition members, as well as brutality and excessive force used by the security services, such as the violent crackdown on members of the Bundu Dia Kongo (BDK) movement in Kongo Central; the repression in Kinshasa over January-February 2017; and disproportionate use of force and violent repression in Kasai provinces. Ramanzani SHADARI was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC. In February 2018, Ramzani SHADARi was named Permanent Secretary of the Parti du Peuple pour la reconstruction et la developpement (PPRD). (Gender):Male",Individual,Primary name variation,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13466 +SHADURA,Vadim,Evgenievich,,,,Colonel,ШАДУРА Вадим Евгеньевич,Cyrillic,Russian,,,,Belarus,,,,,Chief of Staff and First Deputy Commander of the North-Western Operational Command,,,,,,,,,"(UK Sanctions List Ref):RUS0744 (UK Statement of Reasons):Colonel Vadim Evgenievich SHADURA has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being involved in the command of Belarusian forces who were involved in a joint exercise with the Russian military ahead of Russia’s invasion of Ukraine which: (1) threatened Ukraine; and (2) provided cover for Russian military preparations to invade Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14695 +SHAFAHI,Ahmad,,,,,,احمد شفاهی,,Persian,,,,Iran,,,,,IRGC Commander Sistan and Baluchistan (Salman Corps),,,,,,,,,"(UK Sanctions List Ref):IHR0107 (UK Statement of Reasons):Ahmad SHAFAHI is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and the right to freedom of expression and peaceful assembly in Iran through his role as commander of the Islamic Revolutionary Guard Corps (IRGC) Salman Corps, the IRGC military unit in Sistan and Baluchistan Province and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15627 +SHAFIQ,ABDUL WAHED,,,,,Maulavi,عبد الواحد شفيق,,,00/00/1968,Nangarhar Province,Afghanistan,Afghanistan,,,,,Deputy Governor of Kabul Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0076 (UN Ref):TAi.098 Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7442 +SHAFIQULLAH,,,,,,Mullah,,,,00/00/1956,"(1) Charmistan village, Tirin Kot District, Uruzgan Province. (2) Marghi village, Nawa District, Ghazni Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Samangan Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0084 (UN Ref):TAi.106 Originally from Ghazni Province, but later lived in Uruzgan. Taliban Shadow Governor for Uruzgan Province as of late 2012. Serves as a member of the Military Commission as of July 2016. Belongs to Hotak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7443 +SHAFIQULLAH,,,,,,Mullah,,,,00/00/1957,"(1) Charmistan village, Tirin Kot District, Uruzgan Province. (2) Marghi village, Nawa District, Ghazni Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Samangan Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0084 (UN Ref):TAi.106 Originally from Ghazni Province, but later lived in Uruzgan. Taliban Shadow Governor for Uruzgan Province as of late 2012. Serves as a member of the Military Commission as of July 2016. Belongs to Hotak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7443 +SHAH,Ahmed,,,,,Haji,,,,01/01/1985,Quetta,Pakistan,Pakistan,NC5140251,"Pakistan number, issued on 23 Oct. 2009. Expires on 22 Oct. 2014, officially cancelled as of 2013",54401-2288025-9,Issued in Pakistan (officially cancelled as of 2013),,,,Quetta,,,,,Pakistan,(UK Sanctions List Ref):AFG0132 (UN Ref):TAi.166 Owns and operates the Roshan Money Exchange (TAe.011). Provided financial services to Ghul Agha Ishakzai (TAi.147) and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/Howwe-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,22/03/2013,26/02/2013,01/02/2021,12863 +SHAH,Ahmed,,,,,Maulawi,,,,01/01/1985,Quetta,Pakistan,Pakistan,NC5140251,"Pakistan number, issued on 23 Oct. 2009. Expires on 22 Oct. 2014, officially cancelled as of 2013",54401-2288025-9,Issued in Pakistan (officially cancelled as of 2013),,,,Quetta,,,,,Pakistan,(UK Sanctions List Ref):AFG0132 (UN Ref):TAi.166 Owns and operates the Roshan Money Exchange (TAe.011). Provided financial services to Ghul Agha Ishakzai (TAi.147) and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/Howwe-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,22/03/2013,26/02/2013,01/02/2021,12863 +SHAH,Ahmed,,,,,Maulawi,,,,00/00/1981,Quetta,Pakistan,Pakistan,NC5140251,"Pakistan number, issued on 23 Oct. 2009. Expires on 22 Oct. 2014, officially cancelled as of 2013",54401-2288025-9,Issued in Pakistan (officially cancelled as of 2013),,,,Quetta,,,,,Pakistan,(UK Sanctions List Ref):AFG0132 (UN Ref):TAi.166 Owns and operates the Roshan Money Exchange (TAe.011). Provided financial services to Ghul Agha Ishakzai (TAi.147) and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/Howwe-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,22/03/2013,26/02/2013,01/02/2021,12863 +SHAH,Ahmed,,,,,Haji,,,,00/00/1981,Quetta,Pakistan,Pakistan,NC5140251,"Pakistan number, issued on 23 Oct. 2009. Expires on 22 Oct. 2014, officially cancelled as of 2013",54401-2288025-9,Issued in Pakistan (officially cancelled as of 2013),,,,Quetta,,,,,Pakistan,(UK Sanctions List Ref):AFG0132 (UN Ref):TAi.166 Owns and operates the Roshan Money Exchange (TAe.011). Provided financial services to Ghul Agha Ishakzai (TAi.147) and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/Howwe-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,22/03/2013,26/02/2013,01/02/2021,12863 +SHAH,Mohammed,,,,,Mullah,,,,01/01/1985,Quetta,Pakistan,Pakistan,NC5140251,"Pakistan number, issued on 23 Oct. 2009. Expires on 22 Oct. 2014, officially cancelled as of 2013",54401-2288025-9,Issued in Pakistan (officially cancelled as of 2013),,,,Quetta,,,,,Pakistan,(UK Sanctions List Ref):AFG0132 (UN Ref):TAi.166 Owns and operates the Roshan Money Exchange (TAe.011). Provided financial services to Ghul Agha Ishakzai (TAi.147) and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/Howwe-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,22/03/2013,26/02/2013,01/02/2021,12863 +SHAH,Mohammed,,,,,Mullah,,,,00/00/1981,Quetta,Pakistan,Pakistan,NC5140251,"Pakistan number, issued on 23 Oct. 2009. Expires on 22 Oct. 2014, officially cancelled as of 2013",54401-2288025-9,Issued in Pakistan (officially cancelled as of 2013),,,,Quetta,,,,,Pakistan,(UK Sanctions List Ref):AFG0132 (UN Ref):TAi.166 Owns and operates the Roshan Money Exchange (TAe.011). Provided financial services to Ghul Agha Ishakzai (TAi.147) and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/Howwe-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,22/03/2013,26/02/2013,01/02/2021,12863 +SHAH,Mullah,Ahmed,,,,Haji,,,,01/01/1985,Quetta,Pakistan,Pakistan,NC5140251,"Pakistan number, issued on 23 Oct. 2009. Expires on 22 Oct. 2014, officially cancelled as of 2013",54401-2288025-9,Issued in Pakistan (officially cancelled as of 2013),,,,Quetta,,,,,Pakistan,(UK Sanctions List Ref):AFG0132 (UN Ref):TAi.166 Owns and operates the Roshan Money Exchange (TAe.011). Provided financial services to Ghul Agha Ishakzai (TAi.147) and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/Howwe-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,22/03/2013,26/02/2013,01/02/2021,12863 +SHAH,Mullah,Ahmed,,,,Haji,,,,00/00/1981,Quetta,Pakistan,Pakistan,NC5140251,"Pakistan number, issued on 23 Oct. 2009. Expires on 22 Oct. 2014, officially cancelled as of 2013",54401-2288025-9,Issued in Pakistan (officially cancelled as of 2013),,,,Quetta,,,,,Pakistan,(UK Sanctions List Ref):AFG0132 (UN Ref):TAi.166 Owns and operates the Roshan Money Exchange (TAe.011). Provided financial services to Ghul Agha Ishakzai (TAi.147) and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/Howwe-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,22/03/2013,26/02/2013,01/02/2021,12863 +SHAH MOHAMMED,AKHTAR,MOHAMMAD,MANSOUR,,,(1) Maulavi (2) Mullah,اختر محمد منصور شاه محمد,,,00/00/1960,"Band-e-Timur village, Maiwand District, Kandahar Province",Afghanistan,Afghanistan,SE-011697,"Afghanistan number, issued on 25 Jan. 1988, issued in Kabul, Afghanistan (expired on 23 Feb. 2000)",,,Minister of Civil Aviation and Transportation under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0014 (UN Ref):TAi.011 Involved in drug trafficking as of 2011, primarily through Gerd-e-Jangal, Afghanistan. Active in the provinces of Khost, Paktia and Paktika, Afghanistan as of May 2007. Taliban ""Governor"" of Kandahar as of May 2007. Deputy to Mullah Abdul Ghani Baradar (TAi.024) in the Taliban Supreme Council as of 2009. Taliban official responsible for four southern provinces of Afghanistan. Following the arrest of Mullah Baradar in February 2010 he was temporarily-in-charge of the Taliban Supreme Council. Believed to be in Afghanistan/Pakistan border area. Belongs to Ishaqzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. Reportedly killed in May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7269 +SHAH MOHAMMED,AKHTAR,MOHAMMAD,MANSOUR,,,(1) Maulavi (2) Mullah,اختر محمد منصور شاه محمد,,,00/00/1966,"Band-e-Timur village, Maiwand District, Kandahar Province",Afghanistan,Afghanistan,SE-011697,"Afghanistan number, issued on 25 Jan. 1988, issued in Kabul, Afghanistan (expired on 23 Feb. 2000)",,,Minister of Civil Aviation and Transportation under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0014 (UN Ref):TAi.011 Involved in drug trafficking as of 2011, primarily through Gerd-e-Jangal, Afghanistan. Active in the provinces of Khost, Paktia and Paktika, Afghanistan as of May 2007. Taliban ""Governor"" of Kandahar as of May 2007. Deputy to Mullah Abdul Ghani Baradar (TAi.024) in the Taliban Supreme Council as of 2009. Taliban official responsible for four southern provinces of Afghanistan. Following the arrest of Mullah Baradar in February 2010 he was temporarily-in-charge of the Taliban Supreme Council. Believed to be in Afghanistan/Pakistan border area. Belongs to Ishaqzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. Reportedly killed in May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7269 +SHAH NAWAZ,Rahmatullah,,,,,Alhaj,رحمت الله شاه نواز,,,00/00/1981,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Batan village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +SHAH NAWAZ,Rahmatullah,,,,,Alhaj,رحمت الله شاه نواز,,,00/00/1981,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Kamkai Village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +SHAH NAWAZ,Rahmatullah,,,,,Alhaj,رحمت الله شاه نواز,,,00/00/1981,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Surkhel village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +SHAH NAWAZ,Rahmatullah,,,,,Alhaj,رحمت الله شاه نواز,,,00/00/1982,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Surkhel village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +SHAH NAWAZ,Rahmatullah,,,,,Alhaj,رحمت الله شاه نواز,,,00/00/1982,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Kamkai Village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +SHAH NAWAZ,Rahmatullah,,,,,Alhaj,رحمت الله شاه نواز,,,00/00/1982,"Shadal (variant Shadaal) Bazaar, Achin District, Nangarhar Province",Afghanistan,Afghanistan,,,,,,Batan village,,,,Achin District,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AFG0138 (UN Ref):TAi.172 Physical description: eye colour brown, hair colour: black, weight: 77-81 kg, height: 178 cm short-to-medium black beard, short black hair. Belongs to Shinwari tribe, Sepahi sub-tribe. A Taliban commander since at least Feb. 2010. Collects taxes and bribes on behalf of the Taliban as of April 2015. Liaises with and provides Taliban operatives in Nangarhar Province, Afghanistan, with information, guidance, housing and weapons and has emplaced improvised explosive devices (IED) and conducted attacks against International Security Assistance Force (ISAF) and Afghan forces. Involved in drug trafficking and operates heroin laboratory in Abdulkhel village, Achin district, Nangarhar province, Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,29/08/2014,21/08/2014,01/02/2021,13090 +SHAHADA,Rafeeq,,,,,,,,,00/00/1956,"Jablah, Latakia Province",,,,,,,Advisor to President Bashar al Assad for strategic questions and military intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0201 (UK Statement of Reasons):Former Head of Syrian Military Intelligence (SMI) Branch 293 (Internal Affairs) in Damascus. Directly involved in repression and violence against the civilian population in Damascus. Advisor to President Bashar Al-Assad for strategic questions and military intelligence. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12042 +SHAHADA,Rafiq,,,,,,,,,00/00/1956,"Jablah, Latakia Province",,,,,,,Advisor to President Bashar al Assad for strategic questions and military intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0201 (UK Statement of Reasons):Former Head of Syrian Military Intelligence (SMI) Branch 293 (Internal Affairs) in Damascus. Directly involved in repression and violence against the civilian population in Damascus. Advisor to President Bashar Al-Assad for strategic questions and military intelligence. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12042 +SHAHADAH,Rafeeq,,,,,,,,,00/00/1956,"Jablah, Latakia Province",,,,,,,Advisor to President Bashar al Assad for strategic questions and military intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0201 (UK Statement of Reasons):Former Head of Syrian Military Intelligence (SMI) Branch 293 (Internal Affairs) in Damascus. Directly involved in repression and violence against the civilian population in Damascus. Advisor to President Bashar Al-Assad for strategic questions and military intelligence. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12042 +SHAHADAH,Rafiq,,,,,,,,,00/00/1956,"Jablah, Latakia Province",,,,,,,Advisor to President Bashar al Assad for strategic questions and military intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0201 (UK Statement of Reasons):Former Head of Syrian Military Intelligence (SMI) Branch 293 (Internal Affairs) in Damascus. Directly involved in repression and violence against the civilian population in Damascus. Advisor to President Bashar Al-Assad for strategic questions and military intelligence. (Gender):Male,Individual,Primary name,,Syria,24/08/2011,31/12/2020,31/12/2020,12042 +SHAHADE,Rafeeq,,,,,,,,,00/00/1956,"Jablah, Latakia Province",,,,,,,Advisor to President Bashar al Assad for strategic questions and military intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0201 (UK Statement of Reasons):Former Head of Syrian Military Intelligence (SMI) Branch 293 (Internal Affairs) in Damascus. Directly involved in repression and violence against the civilian population in Damascus. Advisor to President Bashar Al-Assad for strategic questions and military intelligence. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12042 +SHAHADE,Rafiq,,,,,,,,,00/00/1956,"Jablah, Latakia Province",,,,,,,Advisor to President Bashar al Assad for strategic questions and military intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0201 (UK Statement of Reasons):Former Head of Syrian Military Intelligence (SMI) Branch 293 (Internal Affairs) in Damascus. Directly involved in repression and violence against the civilian population in Damascus. Advisor to President Bashar Al-Assad for strategic questions and military intelligence. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12042 +SHAHADEH,Rafeeq,,,,,,,,,00/00/1956,"Jablah, Latakia Province",,,,,,,Advisor to President Bashar al Assad for strategic questions and military intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0201 (UK Statement of Reasons):Former Head of Syrian Military Intelligence (SMI) Branch 293 (Internal Affairs) in Damascus. Directly involved in repression and violence against the civilian population in Damascus. Advisor to President Bashar Al-Assad for strategic questions and military intelligence. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12042 +SHAHADEH,Rafiq,,,,,,,,,00/00/1956,"Jablah, Latakia Province",,,,,,,Advisor to President Bashar al Assad for strategic questions and military intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0201 (UK Statement of Reasons):Former Head of Syrian Military Intelligence (SMI) Branch 293 (Internal Affairs) in Damascus. Directly involved in repression and violence against the civilian population in Damascus. Advisor to President Bashar Al-Assad for strategic questions and military intelligence. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12042 +SHAHBANDAR,SAMIRA,,,,,,سميرة الشاهبندر,,,00/00/1946,Baghdad,Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0121 (UN Ref):IQi.060,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8258 +SHAHBAZ,Malik,Zafar,Iqbal,,,,,,,04/10/1953,,,Pakistan,DG5149481,"Pakistan. Issued 22.8.2006, expired on 21.8.2011. Passport booklet number A2815665.",(1) 29553654234 (2) 35202-4135948-7,,,Masjid al-Qadesia,4 Lake Road,,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0339 (UN Ref):QDi.308 Senior leader and co-founder of Lashkar-e-Tayyiba (QDe.118) (LeT) who has held various senior leader positions in LeT and its front organization, Jamaat-ud-Dawa (JUD) (listed as an alias of LeT). As of 2010, in charge of LeT/JUD finance department, director of its education department and president of its medical wing. Other title: Professor. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741596",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,11/02/2022,12631 +SHAHED AVIATION INDUSTRIES,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1655 (UK Statement of Reasons):Shahed Aviation Industries is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. Shahed Aviation Industries is involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, through providing goods or technology, that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. Shahed Aviation Industries is an Iranian unmanned aerial vehicle (UAV) manufacturer that has supplied Russia with attack capable UAVs for deployment in their illegal invasion of Ukraine.",Entity,Primary name,,Russia,20/10/2022,20/10/2022,20/10/2022,15607 +SHAHEED BEHESHTI UNIVERSITY,,,,,,,,,,,,,,,,,,,P.O. Box 19395/4716,,,,,Tehran,19834,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +SHAHEED BEHESHTI UNIVERSITY,,,,,,,,,,,,,,,,,,,Shahid Beheshti University,,,,Evin,Tehran,1983963113,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +SHAHEEN,Jamal,Shaaban,,,,,,,,,,,,,,,,(1) Former Minister of State (2) Former Minister for Internal Trade & Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0108 (UK Statement of Reasons):Former State Minister from 2014 to 2015 and Minister for Internal Trade and Consumer Protection from 2015 until July 2016. As a former Government Minister, he has been involved in the regime's repression of the civilian population and supported or benefitted from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12789 +SHAHEEN,Jamal,Sha'ban,,,,,,,,,,,,,,,,(1) Former Minister of State (2) Former Minister for Internal Trade & Consumer Protection,,,,,,,,,"(UK Sanctions List Ref):SYR0108 (UK Statement of Reasons):Former State Minister from 2014 to 2015 and Minister for Internal Trade and Consumer Protection from 2015 until July 2016. As a former Government Minister, he has been involved in the regime's repression of the civilian population and supported or benefitted from the Syrian regime. (Gender):Male",Individual,Primary name,,Syria,16/10/2012,31/12/2020,13/05/2022,12789 +SHAHID AHMAD KAZEMI INDUSTRIAL GROUP (SAKIG),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0111 (UK Statement of Reasons):Entity subordinate to Iran's Aerospace Industries Organisation (AIO) which has developed and produced missiles for Iran's military. (Type of entity):Nuclear,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11219 +SHAHID AHMAD KAZEMI INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0111 (UK Statement of Reasons):Entity subordinate to Iran's Aerospace Industries Organisation (AIO) which has developed and produced missiles for Iran's military. (Type of entity):Nuclear,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11219 +SHAHID BAGHERI INDUSTRIAL GROUP (SBIG),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0181 (UN Ref):IRe.066 Subordinate entity of AIO. [Old Reference # E.37.B.2] (Parent company):Aerospace Industries Organisation (AIO),Entity,Primary name,,Iran (Nuclear),09/02/2007,23/12/2006,31/12/2020,8993 +SHAHID BEHASHTI UNIVERSITY,,,,,,,,,,,,,,,,,,,P.O. Box 19395/4716,,,,,Tehran,19834,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +SHAHID BEHASHTI UNIVERSITY,,,,,,,,,,,,,,,,,,,Shahid Beheshti University,,,,Evin,Tehran,1983963113,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +SHAHID BEHESHTI UNIVERSITY,,,,,,,,,,,,,,,,,,,P.O. Box 19395/4716,,,,,Tehran,19834,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +SHAHID BEHESHTI UNIVERSITY,,,,,,,,,,,,,,,,,,,Shahid Beheshti University,,,,Evin,Tehran,1983963113,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +SHAHID HEMMAT INDUSTRIAL GROUP (SHIG),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0182 (UN Ref):IRe.067 Subordinate entity of AIO. [Old Reference # E.37.B.1] (Parent company):Aerospace Industries Organisation (AIO),Entity,Primary name,,Iran (Nuclear),09/02/2007,23/12/2006,31/12/2020,8992 +SHAHID KARRAZI INDUSTRIES,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0183 (UN Ref):IRe.068 Owned or controlled by, or acts on behalf of, SBIG. [Old Reference # E.29.I.17] (Parent company):Shahid Bagheri Industrial Group (SBIG)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11152 +SHAHID MARTYR BEHESHTI UNIVERSITY,,,,,,,,,,,,,,,,,,,P.O. Box 19395/4716,,,,,Tehran,19834,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +SHAHID MARTYR BEHESHTI UNIVERSITY,,,,,,,,,,,,,,,,,,,Shahid Beheshti University,,,,Evin,Tehran,1983963113,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +SHAHID SATTARI GROUP EQUIPMENT INDUSTRIES,,,,,,,,,,,,,,,,,,,,,,,,Southeast Tehran,,Iran,"(UK Sanctions List Ref):INU0184 (UN Ref):IRe.069 Owned or controlled by, or acts on behalf of, SBIG. [Old Reference # E.29.I.18] (Parent company):Shahid Bagheri Industrial Group (SBIG)",Entity,AKA,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11153 +SHAHID SATTARI INDUSTRIES,,,,,,,,,,,,,,,,,,,,,,,,Southeast Tehran,,Iran,"(UK Sanctions List Ref):INU0184 (UN Ref):IRe.069 Owned or controlled by, or acts on behalf of, SBIG. [Old Reference # E.29.I.18] (Parent company):Shahid Bagheri Industrial Group (SBIG)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11153 +SHAHID SAYYADE SHIRAZI INDUSTRIES (SSSI),,,,,,,,,,,,,,,,,,,Babaei Highway - Next to Niru M.F.G,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0185 (UN Ref):IRe.070 SSSI is owned or controlled by, or acts on behalf of, DIO. [Old Reference # E.29.I.19] (Parent company):Defence Industries Organisation (DIO)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11127 +SHAHID SAYYADE SHIRAZI INDUSTRIES (SSSI),,,,,,,,,,,,,,,,,,,Next To Nirou Battery Mfg.Co,Shahid Babaii Expressway,Nobonyad Square,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0185 (UN Ref):IRe.070 SSSI is owned or controlled by, or acts on behalf of, DIO. [Old Reference # E.29.I.19] (Parent company):Defence Industries Organisation (DIO)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11127 +SHAHID SAYYADE SHIRAZI INDUSTRIES (SSSI),,,,,,,,,,,,,,,,,,,Pasdaran St.,P.O.Box 16765,,,,Tehran,1835,Iran,"(UK Sanctions List Ref):INU0185 (UN Ref):IRe.070 SSSI is owned or controlled by, or acts on behalf of, DIO. [Old Reference # E.29.I.19] (Parent company):Defence Industries Organisation (DIO)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11127 +SHAHIDKHEL,SAID AHMED,,,,,Maulavi,سيد أحمد شهيد خيل,,,00/00/1975,"Spandeh (Espandi ‘Olya) village, Andar District, Ghazni Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Education under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0028 (UN Ref):TAi.028 In July 2003 he was in custody in Kabul, Afghanistan. Released from custody in 2007. Believed to be in Afghanistan/Pakistan border area. Member of the Taliban leadership council as of mid-2013. Belongs to Andar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here",Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7445 +SHAHIDWROR,,,,,,,,,,00/00/1953,"Kadani village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,(1) Minister of Urban Development under the Taliban regime (2) President of Central Bank (Da Afghanistan Bank) under the Taliban regime (3) Head of Ariana Afghan Airlines under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0021 (UN Ref):TAi.021 One foot lost in landmine explosion. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,6953 +SHAHIDWROR,,,,,,,,,,00/00/1960,"Kadani village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,(1) Minister of Urban Development under the Taliban regime (2) President of Central Bank (Da Afghanistan Bank) under the Taliban regime (3) Head of Ariana Afghan Airlines under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0021 (UN Ref):TAi.021 One foot lost in landmine explosion. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,6953 +SHAHJI,Ahmad,,,,,,,,,00/08/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +SHAHJI,Ahmad,,,,,,,,,00/09/1977,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +SHAHJI,Ahmad,,,,,,,,,00/00/1976,"(1) Al-Madinah. (2) Sangrar, Sindh Province",(1) Saudi Arabia. (2) Pakistan,(1) Pakistan. (2) Saudi Arabia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0267 (UN Ref):QDi.306 Al-Qaida (QDe.004) facilitator, courier and operative. As of 2010, facilitated activities for senior Pakistan-based Al-Qaida operatives. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040725",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,12/01/2022,12629 +SHAHLAEE,Abdul-Reza,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,,Kermanshah,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +SHAHLAEE,Abdul-Reza,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,Military Base,Ilam Province,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +SHAHLAI,Abdul,Reza,,,,Deputy Commander IRGC-QF,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,,Kermanshah,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +SHAHLAI,Abdul,Reza,,,,Deputy Commander IRGC-QF,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,Military Base,Ilam Province,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +SHAHLA'I,Abdolreza,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,,Kermanshah,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +SHAHLA'I,Abdolreza,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,Military Base,Ilam Province,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +SHAHVARPOUR,Hassan,,,,,Brigadier General,,,,,"Safi Abad, Dezful",Iran,,,,,,Commander of the Islamic Revolutionary Guard Corps (IRGC) in Khuzestan Province and Deputy Head of the South-west Karbala Headquarters,,,,,,,,,(UK Sanctions List Ref):IHR0088 (UK Statement of Reasons):Hassan Shahvarpour (SHAHVARPOUR) is commander of the Islamic Revolutionary Guard Corps (IRGC) in Khuzestan Province and Deputy of the South West Karbala Headquarters. In this role SHAHVARPOUR is or has been involved in the commission of a serious human rights violation or abuse in Iran through his role in the violent suppression of protests.,Individual,Primary name,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15601 +SHAIKHUTDINOV,Rifat,Gabdulkhakovich,,,,,Шайхутдинов Рифат Габдулхакович,,,23/12/1963,Okha,Russia,,754710335,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0584 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14529 +SHAIMIEV,Airat,Mintimerovich,,,,,ШАЙМИЕВ Айрат Минтимерович,Cyrillic,Russian,07/03/1962,Musliumovo,Russia,,,,166004018441,Russia,,,,,,,,,,"(UK Sanctions List Ref):RUS1657 (UK Statement of Reasons):Airat Mintimerovich Shaimiev (hereafter SHAIMIEV) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 on the basis of the following grounds: (1) SHAIMIEV is and has been involved in obtaining a benefit from or supporting the Government of Russia by working as a director or equivalent of OAO Tatavtodor, a Government of Russia-affiliated entity which is carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian construction and transport sectors. (Gender):Male",Individual,Primary name,,Russia,02/11/2022,02/11/2022,02/11/2022,15608 +SHAKHES BEHBOOD SANAAT,,,,,,,,,,,,,,,,,,,Roshan Dasht Road,kilometer 20,,,,Isfahan,,Iran,(UK Sanctions List Ref):INU0113 (UK Statement of Reasons):Involved in the production of equipment and parts for the nuclear fuel cycle.,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11220 +SHAKHESE BEHBUD SANAT,,,,,,,,,,,,,,,,,,,Roshan Dasht Road,kilometer 20,,,,Isfahan,,Iran,(UK Sanctions List Ref):INU0113 (UK Statement of Reasons):Involved in the production of equipment and parts for the nuclear fuel cycle.,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11220 +SHAKURI,Ali,Gholam,,,,General,,,,00/00/1964,,,,,,,,Deputy Quds Officer,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):CTI0014 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Ali Gholam Shakuri is a deputy Qods officer of the Iranian Revolutionary Guard-Qods Force (IRGC-QF). He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US, in 2011. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),17/10/2011,31/12/2020,31/12/2020,12207 +SHAKURI,Ali,Gholam,,,,General,,,,00/00/1966,,,,,,,,Deputy Quds Officer,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):CTI0014 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Ali Gholam Shakuri is a deputy Qods officer of the Iranian Revolutionary Guard-Qods Force (IRGC-QF). He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US, in 2011. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),17/10/2011,31/12/2020,31/12/2020,12207 +SHAKURI,Ali,Gholam,,,,General,,,,00/00/1965,,,,,,,,Deputy Quds Officer,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):CTI0014 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Ali Gholam Shakuri is a deputy Qods officer of the Iranian Revolutionary Guard-Qods Force (IRGC-QF). He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US, in 2011. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),17/10/2011,31/12/2020,31/12/2020,12207 +SHAKUTIN,Aleksandr,,,,,,,,,12/01/1959,"Bolshoe Babino, Orsha Rayon, Vitebsk region",,Russia,,,,,,Bolshoe Babino,Orsha Rayon,,,,Vitebsk region,,,"(UK Sanctions List Ref):BEL0067 (UK Statement of Reasons):A longstanding associate of Alexander Lukashenko, Alexander Shakutin is a leading owner of private enterprise in Belarus. Shakutin has supported the Lukashenko regime despite the fraudulent election result. There are reasonable grounds to suspect that the support of Shakutin for the regime could be contributing to activities undermining democracy. (Gender):Male",Individual,Primary name variation,,Belarus,18/12/2020,31/12/2020,04/02/2022,14029 +SHAKUTIN,Alexander,Vasilevich,,,,,,,,12/01/1959,"Bolshoe Babino, Orsha Rayon, Vitebsk region",,Russia,,,,,,Bolshoe Babino,Orsha Rayon,,,,Vitebsk region,,,"(UK Sanctions List Ref):BEL0067 (UK Statement of Reasons):A longstanding associate of Alexander Lukashenko, Alexander Shakutin is a leading owner of private enterprise in Belarus. Shakutin has supported the Lukashenko regime despite the fraudulent election result. There are reasonable grounds to suspect that the support of Shakutin for the regime could be contributing to activities undermining democracy. (Gender):Male",Individual,Primary name,,Belarus,18/12/2020,31/12/2020,04/02/2022,14029 +SHALAI,Abd-al Reza,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,,Kermanshah,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +SHALAI,Abd-al Reza,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,Military Base,Ilam Province,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +SHALAI,Abdorreza,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,,Kermanshah,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +SHALAI,Abdorreza,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,Military Base,Ilam Province,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +SHALEESH,Dhu,al-Himma,,,,,,,,00/00/1941,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALEESH,Dhu,al-Himma,,,,,,,,00/00/1956,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALEESH,Dhu,al-Himma,,,,,,,,00/00/1951,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALEESH,Zoulhima,,,,,,,,,00/00/1941,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALEESH,Zoulhima,,,,,,,,,00/00/1956,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALEESH,Zoulhima,,,,,,,,,00/00/1951,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALEESH,Zu,al-Himma,,,,,,,,00/00/1941,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALEESH,Zu,al-Himma,,,,,,,,00/00/1956,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALEESH,Zu,al-Himma,,,,,,,,00/00/1951,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALEESH,Riyad,,,,,,,,,,,,,,,,,Former Director of Military Housing Establishment,,,,,,,,,(UK Sanctions List Ref):SYR0208 (UK Statement of Reasons):Former Director of Military Housing Establishment; provides funding to the regime; first cousin of President Bashar Al-Assad (Gender):Male,Individual,AKA,,Syria,24/06/2011,31/12/2020,13/05/2022,12014 +SHALISH,Dhu,al-Himma,,,,,,,,00/00/1941,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALISH,Dhu,al-Himma,,,,,,,,00/00/1956,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALISH,Dhu,al-Himma,,,,,,,,00/00/1951,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALISH,Zoulhima,,,,,,,,,00/00/1941,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALISH,Zoulhima,,,,,,,,,00/00/1956,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALISH,Zoulhima,,,,,,,,,00/00/1951,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALISH,Zu,al-Himma,,,,,,,,00/00/1941,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALISH,Zu,al-Himma,,,,,,,,00/00/1956,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALISH,Zu,al-Himma,,,,,,,,00/00/1951,"Kerdaha, Latakia",Syria,,,,,,Former Head of Presidential Security,,,,,,,,,(UK Sanctions List Ref):SYR0243 Cousin to Bashar Al Assad (UK Statement of Reasons):Officer of the Syrian security and intelligence services in post after May 2011; Former Head of Presidential Security. Member of the Syrian Armed Forces of the rank of “colonel” and the equivalent or higher in the Syrian armed forces; holds the rank of Major General. Involved in violence against demonstrators. Member of the Assad family: First cousin of President Bashar Al-Assad. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,31/12/2020,12013 +SHALISH,Riyad,,,,,,,,,,,,,,,,,Former Director of Military Housing Establishment,,,,,,,,,(UK Sanctions List Ref):SYR0208 (UK Statement of Reasons):Former Director of Military Housing Establishment; provides funding to the regime; first cousin of President Bashar Al-Assad (Gender):Male,Individual,AKA,,Syria,24/06/2011,31/12/2020,13/05/2022,12014 +SHAM AL-ISLAM,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0045 (UN Ref):QDe.149 Moroccan-led terrorist organization formed in Aug. 2013 and operating in Syrian Arab Republic. Principally composed of foreign terrorist fighters and associated with AI-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5930739,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13323 +SHAM AL-ISLAM MOVEMENT,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0045 (UN Ref):QDe.149 Moroccan-led terrorist organization formed in Aug. 2013 and operating in Syrian Arab Republic. Principally composed of foreign terrorist fighters and associated with AI-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5930739,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,31/12/2020,13323 +SHAM HOLDING,,,,,,,,,,,,,,,,,,,P.O. Box 9525,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,,,Syria,"(UK Sanctions List Ref):SYR0311 Transport (UK Statement of Reasons):Economic entity financing the regime. Associated with Cham Holding and Rami Makhlouf. A subsidiary company of Cham Holding, which is controlled by Rami Makhlouf; largest holding company in Syria, benefiting from and supporting the regime. (Phone number):+963 11 99 62 (Type of entity):Private (Subsidiaries):Cham Holding (parent), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525 (Parent company):Parent and branches",Entity,AKA,,Syria,05/09/2011,31/12/2020,14/02/2022,12062 +SHAM HOLDING,,,,,,,,,,,,,,,,,,,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,P.O. Box 9525,,,,"(UK Sanctions List Ref):SYR0288 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime (Phone number):+963 11 9962 (Type of entity):Investment. Private (Subsidiaries):Cham Holding (parent), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525 (Parent company):Cham Holding",Entity,AKA,,Syria,05/09/2011,31/12/2020,31/12/2020,12063 +SHAM HOLDING,,,,,,,,,,,,,,,,,,,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,P.O. Box 9525,,,,"(UK Sanctions List Ref):SYR0287 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime (Phone number):+963 11 668 14000. +963 11 673 1044. +963 11 9962 (Website):www.chamholding.sy (Email address):info@chamholding.sy (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525",Entity,AKA,,Syria,26/09/2011,31/12/2020,31/12/2020,12152 +SHAM HOLDING COMPANY SAL,,,,,,,,,,,,,,,,,,,P.O. Box 9525,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,,,Syria,"(UK Sanctions List Ref):SYR0311 Transport (UK Statement of Reasons):Economic entity financing the regime. Associated with Cham Holding and Rami Makhlouf. A subsidiary company of Cham Holding, which is controlled by Rami Makhlouf; largest holding company in Syria, benefiting from and supporting the regime. (Phone number):+963 11 99 62 (Type of entity):Private (Subsidiaries):Cham Holding (parent), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525 (Parent company):Parent and branches",Entity,AKA,,Syria,05/09/2011,31/12/2020,14/02/2022,12062 +SHAM HOLDING COMPANY SAL,,,,,,,,,,,,,,,,,,,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,P.O. Box 9525,,,,"(UK Sanctions List Ref):SYR0288 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime (Phone number):+963 11 9962 (Type of entity):Investment. Private (Subsidiaries):Cham Holding (parent), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525 (Parent company):Cham Holding",Entity,AKA,,Syria,05/09/2011,31/12/2020,31/12/2020,12063 +SHAM HOLDING COMPANY SAL,,,,,,,,,,,,,,,,,,,Cham Holding Building,Daraa Highway,Ashrafiyat Sahnaya Rif Dimashq,,P.O. Box 9525,,,,"(UK Sanctions List Ref):SYR0287 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime (Phone number):+963 11 668 14000. +963 11 673 1044. +963 11 9962 (Website):www.chamholding.sy (Email address):info@chamholding.sy (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525",Entity,AKA,,Syria,26/09/2011,31/12/2020,31/12/2020,12152 +SHAMALOV,Nikolay,Terentievich,,,,,,,,24/01/1950,(1) Leningrad (now St Petersburg) (2) Moscow,(1) USSR (now Russian Federation) (2) USSR (now Russian Federation) (3) Belarus,Russia,,,,,,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0129 (UK Statement of Reasons):Mr Shamalov is a co-founder of the so-called Ozero Dacha, a co-operative society bringing together an influential group of individuals around President Putin. He is a significant shareholder of Bank Rossiya. Since the annexation of Crimea, Bank Rossiya has opened branches across Crimea and Sevastopol, thereby consolidating their integration into the Russian Federation. It also has important stakes in the National Media Group, which controls television stations which actively support the Russian Government's policies of destabiliation in Ukraine. It has contributed to the provision of insurance and investment throughout Crimea and Sevastopal and services to support military capability and major transport links. (Gender):Male",Individual,Primary name,,Russia,31/07/2014,31/12/2020,16/09/2022,13074 +SHAMALOV,Kirill,,,,,,,,,22/03/1982,St Petersburg,Russia,Russia,,,,,(1) Deputy Chairman on the Management Board at PAO SIBUR Holding (2) Shareholder at PAO SIBUR Holding (3) Former Vice President at PAO SIBUR Holding (4) Former member of the Board of Directors at PAO Sibur Holding,,,,,,,,,"(UK Sanctions List Ref):RUS0245 (UK Statement of Reasons):Kirill Nikolaevich Shamalov, hereafter Shamalov is a major Russian businessman, with close links to President Putin and the Kremlin. Shamalov is a shareholder and Deputy Chair of the Management Board at PAO SIBUR Holding, hereafter Sibur. Shamalov is or has been involved in obtaining a benefit from or supporting the Government of Russia through his role 'working as a director (whether executive or non-executive), trustee, or equivalent', as Deputy Chairman on the Management Board and as former member of the Board of Directors of Sibur, which is a Government of Russia-affiliated entity which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund or the National Wealth Fund, or which otherwise obtains a financial benefit or other material benefit from the Government of Russia and/or is carrying on business in a sector of strategic significance to the Government of Russia, namely, the Russian chemicals sector. (Gender):Male",Individual,Primary name variation,,Russia,24/02/2022,24/02/2022,24/02/2022,14192 +SHAMALOV,Kirill,Nikolaevich,,,,,Кирилл Николаевич Шамалов,,,22/03/1982,St Petersburg,Russia,Russia,,,,,(1) Deputy Chairman on the Management Board at PAO SIBUR Holding (2) Shareholder at PAO SIBUR Holding (3) Former Vice President at PAO SIBUR Holding (4) Former member of the Board of Directors at PAO Sibur Holding,,,,,,,,,"(UK Sanctions List Ref):RUS0245 (UK Statement of Reasons):Kirill Nikolaevich Shamalov, hereafter Shamalov is a major Russian businessman, with close links to President Putin and the Kremlin. Shamalov is a shareholder and Deputy Chair of the Management Board at PAO SIBUR Holding, hereafter Sibur. Shamalov is or has been involved in obtaining a benefit from or supporting the Government of Russia through his role 'working as a director (whether executive or non-executive), trustee, or equivalent', as Deputy Chairman on the Management Board and as former member of the Board of Directors of Sibur, which is a Government of Russia-affiliated entity which receives, or has received, financing, directly or indirectly, from the Russian Direct Investment Fund or the National Wealth Fund, or which otherwise obtains a financial benefit or other material benefit from the Government of Russia and/or is carrying on business in a sector of strategic significance to the Government of Russia, namely, the Russian chemicals sector. (Gender):Male",Individual,Primary name,,Russia,24/02/2022,24/02/2022,24/02/2022,14192 +SHAMALOV,Nikolai,Terentievich,,,,,,,,24/01/1950,(1) Leningrad (now St Petersburg) (2) Moscow,(1) USSR (now Russian Federation) (2) USSR (now Russian Federation) (3) Belarus,Russia,,,,,,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0129 (UK Statement of Reasons):Mr Shamalov is a co-founder of the so-called Ozero Dacha, a co-operative society bringing together an influential group of individuals around President Putin. He is a significant shareholder of Bank Rossiya. Since the annexation of Crimea, Bank Rossiya has opened branches across Crimea and Sevastopol, thereby consolidating their integration into the Russian Federation. It also has important stakes in the National Media Group, which controls television stations which actively support the Russian Government's policies of destabiliation in Ukraine. It has contributed to the provision of insurance and investment throughout Crimea and Sevastopal and services to support military capability and major transport links. (Gender):Male",Individual,Primary name variation,,Russia,31/07/2014,31/12/2020,16/09/2022,13074 +SHAMALOV,Yuri,Nikolayevich,,,,,Юрий Николаевич Шамалов,,,10/06/1970,St Petersburg,Russia,Russia,,,,,President of Gazfond,,,,,,,,,(UK Sanctions List Ref):RUS1464 (UK Statement of Reasons):Yuri SHAMALOV is the President of Gazfond and he sits on the Board of Directors of Gazprombank SHAMALOV is therefore involved in work as a director or equivalent of entities (Gazfond and Gazprombank) in a sector (finance) of strategic significance to the Russian Government. (Gender):Male,Individual,Primary name,,Russia,13/05/2022,13/05/2022,20/05/2022,15393 +SHAMALOV,Yury,Nikolayevich,,,,,,,,10/06/1970,St Petersburg,Russia,Russia,,,,,President of Gazfond,,,,,,,,,(UK Sanctions List Ref):RUS1464 (UK Statement of Reasons):Yuri SHAMALOV is the President of Gazfond and he sits on the Board of Directors of Gazprombank SHAMALOV is therefore involved in work as a director or equivalent of entities (Gazfond and Gazprombank) in a sector (finance) of strategic significance to the Russian Government. (Gender):Male,Individual,Primary name variation,,Russia,13/05/2022,13/05/2022,20/05/2022,15393 +SHAMALOVA,Ekaterina,Vladimirovna,,,,,,,,31/08/1986,Dresden,Germany,Russia,,,503227394158,Taxpayer ID,,,,,,,,,,"(UK Sanctions List Ref):RUS1129 (UK Statement of Reasons):Katerina Vladimirovna TIKHONOVA is widely reported to be the daughter of the President of the Russian Federation, Vladimir Vladimirovich PUTIN, with whom she is closely associated and from whom she has obtained material benefit. PUTIN is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,08/04/2022,08/04/2022,14/06/2022,15079 +SHAMANOV,Vladimir,Anatolievich,,,,,Владимир Анатольевич ШАМАНОВ,,,15/02/1957,"Barnaul, Altai territory",Russia,Russia,,,,,Chairperson of the Defence Committee of the State Duma of the Russian Federation,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0130 (UK Statement of Reasons):Former Commander of the Russian Airborne Troops, Colonel-General. In his senior position holds responsibility for the deployment of Russian airborne forces in Crimea. Currently Chairperson of the Defence Committee of the State Duma of the Russian Federation. Remains active in implementing Russia’s annexation of Crimea and Sevastopol. (Gender):Male",Individual,Primary name,,Russia,12/05/2014,31/12/2020,31/12/2020,12966 +SHAMMAS,Elias,Hasib,,,,,,,,00/00/1957,Aleppo,,Syria,,,,,Former Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0084 (UK Statement of Reasons):Hassib Elias Shammas is a former State Minister in power after May 2011 (appointed 27.8.2014). As a former Government Minister, he shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12997 +SHAMMAS,Elias,Hassib,,,,,,,,00/00/1957,Aleppo,,Syria,,,,,Former Minister of State,,,,,,,,,"(UK Sanctions List Ref):SYR0084 (UK Statement of Reasons):Hassib Elias Shammas is a former State Minister in power after May 2011 (appointed 27.8.2014). As a former Government Minister, he shares responsibility for the regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,24/06/2014,31/12/2020,13/05/2022,12997 +SHAMMOUT,Abu,,,,,,,,,,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1547 (UK Statement of Reasons):Abu Hani SHAMMOUT has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, overseeing the recruitment of Syrian mercenaries to fight alongside Russia in Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/07/2022,26/07/2022,26/07/2022,15475 +SHAMMOUT,Abu Hani,,,,,,,,,,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1547 (UK Statement of Reasons):Abu Hani SHAMMOUT has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, overseeing the recruitment of Syrian mercenaries to fight alongside Russia in Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15475 +SHAMMOUT,Hani,,,,,,,,,,,,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1547 (UK Statement of Reasons):Abu Hani SHAMMOUT has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, overseeing the recruitment of Syrian mercenaries to fight alongside Russia in Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/07/2022,26/07/2022,26/07/2022,15475 +SHAMMOUT,Issam,,,,,,عصام شموط,,,00/00/1971,Damascus,Syria,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0391 (UK Statement of Reasons):Issam Shammout is involved in supporting and benefiting from the Syrian regime as a prominent person operating or controlling a business in Syria, and is associated with other involved persons. (Gender):Male",Individual,Primary name,,Syria,26/07/2022,26/07/2022,26/07/2022,15458 +SHAMMOUT,Mohammed,Issam,,,,,,,,00/00/1971,Damascus,Syria,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0391 (UK Statement of Reasons):Issam Shammout is involved in supporting and benefiting from the Syrian regime as a prominent person operating or controlling a business in Syria, and is associated with other involved persons. (Gender):Male",Individual,Primary name variation,,Syria,26/07/2022,26/07/2022,26/07/2022,15458 +SHAMMOUT,Muhammad,Issam,,,,,,,,00/00/1971,Damascus,Syria,Syria,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0391 (UK Statement of Reasons):Issam Shammout is involved in supporting and benefiting from the Syrian regime as a prominent person operating or controlling a business in Syria, and is associated with other involved persons. (Gender):Male",Individual,Primary name variation,,Syria,26/07/2022,26/07/2022,26/07/2022,15458 +SHAMS,Abdolghassem,Mozaffari,,,,,,,,,,,,,,,,IRGC Officer,,,,,,,,,"(UK Sanctions List Ref):INU0001 (UK Statement of Reasons):Former Head of Khatam al-Anbiya Construction Headquarters, part of the IRGC and IRGC officer. (Gender):Male",Individual,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12275 +SHAMSEDDIN,Sayed,,,,,,,,,21/09/1969,,,,,,,,(1) Commander of IRGC Khatam al-Anbiya subsidary Qorb-e Qa-em (2) former Deputy Head of AEOI,,,,,,,,,(UK Sanctions List Ref):INU0025 (UK Statement of Reasons):Former Deputy Head of the Atomic Energy Organisation of Iran.,Individual,Primary name variation,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12230 +SHAMSEDDIN,Seyed,,,,,,,,,21/09/1969,,,,,,,,(1) Commander of IRGC Khatam al-Anbiya subsidary Qorb-e Qa-em (2) former Deputy Head of AEOI,,,,,,,,,(UK Sanctions List Ref):INU0025 (UK Statement of Reasons):Former Deputy Head of the Atomic Energy Organisation of Iran.,Individual,Primary name variation,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12230 +SHAMSHIRI,Ali,,,,,'IRGC Brigadier General',,,,,,,,,,,,IRGC Officer,,,,,,,,,"(UK Sanctions List Ref):INU0005 (UK Statement of Reasons):Member of the IRGC. Currently Deputy for Counter-Intelligence, MODAFL, and has held senior roles in MODAFL (Gender):Male",Individual,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10646 +SHAMSUDDIN,,,,,,(1) Maulavi (2) Qari,شمس الدین,,,00/00/1968,"Keshim District, Badakhshan Province",Afghanistan,Afghanistan,,,,,Governor of Wardak (Maidan) Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0081 (UN Ref):TAi.103 Believed to be in Afghanistan/Pakistan/Iran border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7160 +SHAMSUDDIN,Pahlawan,,,,,,,,,00/00/1968,"Keshim District, Badakhshan Province",Afghanistan,Afghanistan,,,,,Governor of Wardak (Maidan) Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0081 (UN Ref):TAi.103 Believed to be in Afghanistan/Pakistan/Iran border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7160 +SHAMS-U-RAHMAN,,,,,,,,,,00/00/1969,"Waka Uzbin village, Sarobi District, Kabul Province",Afghanistan,Afghanistan,,,(1) 2132370 (2) 812673,(1) Afghan national identification card (tazkira) number (2) Afghan national identification card (tazkira) number,Deputy Minister of Agriculture under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0012 (UN Ref):TAi.008 Believed to be in Afghanistan/Pakistan border area. Involved in drug trafficking. Belongs to Ghilzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7532 +SHAMSURRAHMAN,,,,,,,,,,00/00/1969,"Waka Uzbin village, Sarobi District, Kabul Province",Afghanistan,Afghanistan,,,(1) 2132370 (2) 812673,(1) Afghan national identification card (tazkira) number (2) Afghan national identification card (tazkira) number,Deputy Minister of Agriculture under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0012 (UN Ref):TAi.008 Believed to be in Afghanistan/Pakistan border area. Involved in drug trafficking. Belongs to Ghilzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7532 +SHAMSURRAHMAN,Abdurahman,,,,,,,,,00/00/1969,"Waka Uzbin village, Sarobi District, Kabul Province",Afghanistan,Afghanistan,,,(1) 2132370 (2) 812673,(1) Afghan national identification card (tazkira) number (2) Afghan national identification card (tazkira) number,Deputy Minister of Agriculture under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0012 (UN Ref):TAi.008 Believed to be in Afghanistan/Pakistan border area. Involved in drug trafficking. Belongs to Ghilzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7532 +SHANGHAI DONGFENG SHIPPING CO LTD,,,,,,,,,,,,,,,,,,,Room 601,433 Chifeng Lu,,,Hongkou Qu,Shanghai,200083,China,"(UK Sanctions List Ref):DPR0191 (UN Ref):KPe.072 Registered owner, ship and commercial manager of the DONG FENG 6, a vessel that loaded coal at Hamhung, DPRK, on 11 July 2017 for export in violation of UN sanctions.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13643 +SHANGOLE,Fuad,,,,,,,,,,,,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +SHANGOLE,Fuad,,,,,,,,,,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +SHAPSHA,Vladislav,Valeryevich,,,,,Владислав Валерьевич Шапша,,,20/09/1972,,,Russia,,,,,Governor of Kaluga Region,,,,,,,,,"(UK Sanctions List Ref):RUS1527 (UK Statement of Reasons):Vladislav Valeryevich SHAPSHA is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because SHAPSHA is a regional governor. Specifically, SHAPSHA is Governor of Kaluga Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15480 +SHARGUNOV,Sergey,Alexandrovich,,,,,Шаргунов Сергей Александрович,,,12/05/1990,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0528 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14473 +SHARIATI,Seyeed,Hassan,,,,,,,,,,,,,,,,Advisor and Member of the 28th Section of the Supreme Court,,,,,,,,,"(UK Sanctions List Ref):IHR0078 (UK Statement of Reasons):Advisor and Member of the 28th Section of the Supreme Court. Head of Mashhad Judiciary until September 2014. Trials under his supervision have been conducted summarily and inside closed sessions, without adherence to basic rights of the accused, and with reliance on confessions extracted under pressure and torture. As execution rulings were issued en masse, death sentences were issued without proper observance of fair hearing procedures. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11793 +SHARIF,Amar,,,,,,,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +SHARIF,Ammar,,,,,,,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +SHARIF,Ammar,Medhat,,,,,,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +SHARIF TECHNICAL UNIVERSITY,,,,,,,,,,,,,,,,,,,Azadi Ave,11365 8639,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHARIF TECHNICAL UNIVERSITY,,,,,,,,,,,,,,,,,,,Azadi Ave/Street,PO Box 11365 11155,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHARIF TECHNICAL UNIVERSITY,,,,,,,,,,,,,,,,,,,P.O. Box 11155 9466,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHARIF TECHNICAL UNIVERSITY,,,,,,,,,,,,,,,,,,,P.O. Box 11365 9161,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHARIF TECHNICAL UNIVERSITY,,,,,,,,,,,,,,,,,,,P.O. Box 11365 9466,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHARIF TECHNICAL UNIVERSITY,,,,,,,,,,,,,,,,,,,PO Box 11365 8639,Azadi St,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHARIF UNIVERSITY OF TECHNOLOGY,,,,,,,,,,,,,,,,,,,Azadi Ave,11365 8639,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,Primary name,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHARIF UNIVERSITY OF TECHNOLOGY,,,,,,,,,,,,,,,,,,,Azadi Ave/Street,PO Box 11365 11155,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,Primary name,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHARIF UNIVERSITY OF TECHNOLOGY,,,,,,,,,,,,,,,,,,,P.O. Box 11155 9466,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,Primary name,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHARIF UNIVERSITY OF TECHNOLOGY,,,,,,,,,,,,,,,,,,,P.O. Box 11365 9161,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,Primary name,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHARIF UNIVERSITY OF TECHNOLOGY,,,,,,,,,,,,,,,,,,,P.O. Box 11365 9466,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,Primary name,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHARIF UNIVERSITY OF TECHNOLOGY,,,,,,,,,,,,,,,,,,,PO Box 11365 8639,Azadi St,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,Primary name,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHARIFF,Abu,Makaburi,,,,,,,,00/00/1962,,Kenya,,,,,,,,,,,Majengo area,Mombasa,,Kenya,(UK Sanctions List Ref):SOM0012 (UN Ref):SOi.012,Individual,AKA,Good quality,Somalia,16/10/2012,23/08/2012,16/02/2022,12737 +SHARIFF,Abu,Makaburi,,,,,,,,00/00/1967,,Kenya,,,,,,,,,,,Majengo area,Mombasa,,Kenya,(UK Sanctions List Ref):SOM0012 (UN Ref):SOi.012,Individual,AKA,Good quality,Somalia,16/10/2012,23/08/2012,16/02/2022,12737 +SHARIFF,Abubaker,,,,,,,,,00/00/1962,,Kenya,,,,,,,,,,,Majengo area,Mombasa,,Kenya,(UK Sanctions List Ref):SOM0012 (UN Ref):SOi.012,Individual,AKA,Good quality,Somalia,16/10/2012,23/08/2012,16/02/2022,12737 +SHARIFF,Abubaker,,,,,,,,,00/00/1967,,Kenya,,,,,,,,,,,Majengo area,Mombasa,,Kenya,(UK Sanctions List Ref):SOM0012 (UN Ref):SOi.012,Individual,AKA,Good quality,Somalia,16/10/2012,23/08/2012,16/02/2022,12737 +SHARIFI,Malek,Adjar,,,,,,,,,,,,,,,,"Judge at the Supreme Court, head of the 43rd section",,,,,,,,,"(UK Sanctions List Ref):IHR0048 (UK Statement of Reasons):Judge at the Supreme Court, head of the 43rd section. Former Head of East Azerbaidjan Judiciary. He was responsible for Sakineh Mohammadi-Ashtiani's trial. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11802 +SHARONOV,Andrey,Vladimirovich,,,,,,,,,,,,,,,,Vice President at Sberbank,,,,,,,,,"(UK Sanctions List Ref):RUS1599 (UK Statement of Reasons):Andrey Vladimirovich Sharonov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK). (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15543 +SHATOKHIN,Aleksey,,,,,,Шатохін Олексій Володимирович,,,26/01/1971,"Feodosia, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,(1) Russia. (2) Ukraine,,,,,"Head of Service, Kerch City Branch of FSB in Crimea",,,,,,,,,"(UK Sanctions List Ref):RUS0211 (UK Statement of Reasons):Head of the Service of the Kerch Control Point for the Republic of Crimea of the Federal Security Service of the Russian Federation, 2nd rank captain. He participated in coordinating the actions of the Russian Federation forces against Ukrainian vessels and their crews on 25 November 2018 and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13782 +SHATOKHIN,Alexei,Vladimirovich,,,,,,,,26/01/1971,"Feodosia, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,(1) Russia. (2) Ukraine,,,,,"Head of Service, Kerch City Branch of FSB in Crimea",,,,,,,,,"(UK Sanctions List Ref):RUS0211 (UK Statement of Reasons):Head of the Service of the Kerch Control Point for the Republic of Crimea of the Federal Security Service of the Russian Federation, 2nd rank captain. He participated in coordinating the actions of the Russian Federation forces against Ukrainian vessels and their crews on 25 November 2018 and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,31/12/2020,13782 +SHATOKHIN,Oleksii,VOLODYMYROVYCH,,,,Captain 2nd Rank,Шатохин Алексей Владимирович,,,26/01/1971,"Feodosia, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,(1) Russia. (2) Ukraine,,,,,"Head of Service, Kerch City Branch of FSB in Crimea",,,,,,,,,"(UK Sanctions List Ref):RUS0211 (UK Statement of Reasons):Head of the Service of the Kerch Control Point for the Republic of Crimea of the Federal Security Service of the Russian Federation, 2nd rank captain. He participated in coordinating the actions of the Russian Federation forces against Ukrainian vessels and their crews on 25 November 2018 and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2019,31/12/2020,31/12/2020,13782 +SHAWKAT,Bouchra,,,,,,,,,24/10/1960,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0035 Sister to Bashar Al Assad (UK Statement of Reasons):Member of the Assad family; sister of Bashar Al-Assad. Given the close personal relationship and intrinsic financial relationship to the Syrian President Bashar Al-Assad, she benefits from and is associated with the Syrian regime. (Gender):Female",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,31/12/2020,12550 +SHAWKAT,Bushra,,,,,,,,,24/10/1960,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0035 Sister to Bashar Al Assad (UK Statement of Reasons):Member of the Assad family; sister of Bashar Al-Assad. Given the close personal relationship and intrinsic financial relationship to the Syrian President Bashar Al-Assad, she benefits from and is associated with the Syrian regime. (Gender):Female",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,31/12/2020,12550 +SHAYKU,,,,,,,,,,00/00/1969,"Shekau Village, Yobe State",Nigeria,Nigeria,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0118 (UN Ref):QDi.322 Member of the Kanuri tribe. Physical description: eye colour: black; hair colour: black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138). Under Shekau’s leadership, Boko Haram has been responsible for a series of major terrorist attacks. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,08/07/2014,26/06/2014,31/12/2020,13006 +SHCHAPOV,Mikhail,Viktorovich,,,,,Щапов Михаил Викторович,,,20/09/1975,Kirensk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0535 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14480 +SHCHEGLOV,Nikolai,Mikhailovich,,,,,Щеглов Николай Михайлович,,,16/03/1960,Trubchevsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0536 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14481 +SHCHEGOLEV,Igor,Olegovich,,,,,ЩЕГОЛЕВ Игорь Олегович,Cyrillic,Russian,10/11/1965,Vinnitsa,Ukraine,Russia,,,,,(1) Presidential Plenipotentiary Envoy to the Central Federal District (2) Member of the Russian Security Council,,,,,,,,,"(UK Sanctions List Ref):RUS0729 (UK Statement of Reasons):Igor Olegovich SHCHEGOLEV is a member of the Russian Security Council (RSC). At an extraordinary meeting of the RSC on 21 February 2022, SHCHEGOLEV spoke in favour of a proposal to recognise Donetsk and Luhansk as independent republics. SHCHEGOLEV has therefore been responsible for, provided support for, or promoted a policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14680 +SHCHERBAKOV,Sergey,Alekseevich,,,,,Сергій Олексійович,,,02/11/1986,,,Russia,,,,,Commander of the anti-submarine ship ‘Suzdal’,,,,,,,,,"(UK Sanctions List Ref):RUS0212 (UK Statement of Reasons):Commanding officer of the anti-submarine ship ""Suzdalets"" of the Black Sea Fleet of the Russian Federation, 3rd rank captain. He commanded the ship, which participated in the actions of the Russian Federation against Ukrainian ships and their crews on 25 November 2018 and actively participated in the blockade and seizure of tugboat “Yani Kapu”, and armed gunboats “Nikopol” and “Berdyansk”, and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,16/09/2022,13784 +SHCHERBAKOV,Serhii,Oleksiivich,,,,,Сергей Алексеевич Щербаков,,,02/11/1986,,,Russia,,,,,Commander of the anti-submarine ship ‘Suzdal’,,,,,,,,,"(UK Sanctions List Ref):RUS0212 (UK Statement of Reasons):Commanding officer of the anti-submarine ship ""Suzdalets"" of the Black Sea Fleet of the Russian Federation, 3rd rank captain. He commanded the ship, which participated in the actions of the Russian Federation against Ukrainian ships and their crews on 25 November 2018 and actively participated in the blockade and seizure of tugboat “Yani Kapu”, and armed gunboats “Nikopol” and “Berdyansk”, and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2019,31/12/2020,16/09/2022,13784 +SHCHERBAKOV,Alexander,Vladimirovich,,,,,Щербаков Александр Владимирович,,,12/03/1965,Vladivostok,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0537 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14482 +SHEBEL,Luna,,,,,,,,,01/09/1975,Suweida,Syria,Syria,,,,,Media Adviser to President Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0377 (UK Statement of Reasons):Adviser to President Assad and a prominent member of his inner circle. As Media Adviser to the President she supports the Syrian regime, which relies on disinformation and a lack of media freedom to repress the civilian population. She is also associated with the Syrian regime through her role as an adviser. (Gender):Female",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,14/02/2022,14070 +SHEBIL,Luna,,,,,,,,,01/09/1975,Suweida,Syria,Syria,,,,,Media Adviser to President Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0377 (UK Statement of Reasons):Adviser to President Assad and a prominent member of his inner circle. As Media Adviser to the President she supports the Syrian regime, which relies on disinformation and a lack of media freedom to repress the civilian population. She is also associated with the Syrian regime through her role as an adviser. (Gender):Female",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,14/02/2022,14070 +SHEHBAZ,Malik,Zafar,Iqbal,,,,,,,04/10/1953,,,Pakistan,DG5149481,"Pakistan. Issued 22.8.2006, expired on 21.8.2011. Passport booklet number A2815665.",(1) 29553654234 (2) 35202-4135948-7,,,Masjid al-Qadesia,4 Lake Road,,,,Lahore,,Pakistan,"(UK Sanctions List Ref):AQD0339 (UN Ref):QDi.308 Senior leader and co-founder of Lashkar-e-Tayyiba (QDe.118) (LeT) who has held various senior leader positions in LeT and its front organization, Jamaat-ud-Dawa (JUD) (listed as an alias of LeT). As of 2010, in charge of LeT/JUD finance department, director of its education department and president of its medical wing. Other title: Professor. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741596",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,11/02/2022,12631 +SHEHU,,,,,,,,,,00/00/1969,"Shekau Village, Yobe State",Nigeria,Nigeria,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0118 (UN Ref):QDi.322 Member of the Kanuri tribe. Physical description: eye colour: black; hair colour: black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138). Under Shekau’s leadership, Boko Haram has been responsible for a series of major terrorist attacks. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,08/07/2014,26/06/2014,31/12/2020,13006 +SHEIKHNEJAD,Hassan,,,,,,,,,,,Iran,Iran,,,,,Law Enforcement Force Urmia city chief,,,,,,,,,"(UK Sanctions List Ref):IHR0103 (UK Statement of Reasons):Hassan SHEIKHNEJAD, is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he is and has been involved in the commission of serious human rights violations in Iran, namely being responsible for, serious violations with respect to the right to freedom of expression and peaceful assembly and the right to life in Iran through his role as Law Enforcement Force (LEF) Urmia city chief and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15623 +SHEIMAN,Viktar,Uladzimiravich,,,,Former Head of the Management Department of the Presidential Administration,,,,26/05/1958,Hrodna Region,Former USSR Currently Belarus,Belarus,,,,,Head of the Management Department of the President’s Administration,,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0003 Former Secretary of the Security Council and remains Special Assistant/Aid to the President. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Sheiman is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Sheiman was a former Chief of Staff to President Lukashenka. He was appointed to the position of Prosecutor General in 2000 but failed to take any action to investigate the case of the unresolved disappearances. (Gender):Male",Individual,Primary name,,Belarus,22/05/2006,31/12/2020,18/03/2022,8904 +SHEIMAN,Viktor,Uladimiravich,,,,,,,,26/05/1958,Hrodna Region,Former USSR Currently Belarus,Belarus,,,,,Head of the Management Department of the President’s Administration,,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0003 Former Secretary of the Security Council and remains Special Assistant/Aid to the President. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Sheiman is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Sheiman was a former Chief of Staff to President Lukashenka. He was appointed to the position of Prosecutor General in 2000 but failed to take any action to investigate the case of the unresolved disappearances. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8904 +SHEIMAN,Viktor,Ulazimiravich,,,,,,,,26/05/1958,Hrodna Region,Former USSR Currently Belarus,Belarus,,,,,Head of the Management Department of the President’s Administration,,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0003 Former Secretary of the Security Council and remains Special Assistant/Aid to the President. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Sheiman is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Sheiman was a former Chief of Staff to President Lukashenka. He was appointed to the position of Prosecutor General in 2000 but failed to take any action to investigate the case of the unresolved disappearances. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8904 +SHEIMAN,Viktor,Vladimirovich,,,,,,,,26/05/1958,Hrodna Region,Former USSR Currently Belarus,Belarus,,,,,Head of the Management Department of the President’s Administration,,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0003 Former Secretary of the Security Council and remains Special Assistant/Aid to the President. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Sheiman is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Sheiman was a former Chief of Staff to President Lukashenka. He was appointed to the position of Prosecutor General in 2000 but failed to take any action to investigate the case of the unresolved disappearances. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8904 +SHEIN,Andrei,BORISOVICH,,,,Captain 1st Rank,"Шеин, Андрей Борисович",,,10/06/1971,Ivanovskaya Oblast,Russia (USSR),Russia,,,,,"Deputy Head of Department, Head of the Coast Guard of the FSB Border Control in Crimea",,,,,,,,,"(UK Sanctions List Ref):RUS0213 (UK Statement of Reasons):Deputy Head of Border Directorate – Head of Coast Guard Unit of the Federal Security Service of the Russian Federation for “Republic of Crimea and City of Sevastopol.” In this capacity, he actively participated and was in control of operations against Ukrainian ships and their crew during the actions of the Russian Federation against Ukraine on 25 November 2018 and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2019,31/12/2020,31/12/2020,13779 +SHEININ,Artem,,,,,,,,,26/01/1966,Moscow,Russia,,,,,,Presenter of ‘Time Will Tell’ on Russia-1,,,,,,,,,"(UK Sanctions List Ref):RUS1037 (UK Statement of Reasons):Artyom Sheynin is a prominent Russian TV presenter. In numerous broadcasts he has provided support for and promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14974 +SHEININ,Artyom,Grigorievich,,,,,,,,26/01/1966,Moscow,Russia,,,,,,Presenter of ‘Time Will Tell’ on Russia-1,,,,,,,,,"(UK Sanctions List Ref):RUS1037 (UK Statement of Reasons):Artyom Sheynin is a prominent Russian TV presenter. In numerous broadcasts he has provided support for and promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14974 +SHEKA,Ntabo Ntaberi,,,,,,,,,04/04/1976,"Walikale, Walikale territory",Congo (Democratic Republic),Congo (Democratic Republic),,,,,"Commander-in-Chief, Nduma Defence of Congo, Mayi Mayi Sheka group",,,,,Goma,North Kivu,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0052 (UN Ref):CDi.029 He surrendered to MONUSCO on 26 July 2017 and has been since detained by the Congolese authorities. His trial for war crimes, crimes against humanity and participation in an insurrectional movement, before the Military Court in Goma, started in November 2018. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,09/01/2012,28/11/2011,18/02/2021,12438 +SHEKAU,,,,,,,,,,00/00/1969,"Shekau Village, Yobe State",Nigeria,Nigeria,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0118 (UN Ref):QDi.322 Member of the Kanuri tribe. Physical description: eye colour: black; hair colour: black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138). Under Shekau’s leadership, Boko Haram has been responsible for a series of major terrorist attacks. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,08/07/2014,26/06/2014,31/12/2020,13006 +SHEKAU,Abubakar,,,,,,,,,00/00/1969,"Shekau Village, Yobe State",Nigeria,Nigeria,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0118 (UN Ref):QDi.322 Member of the Kanuri tribe. Physical description: eye colour: black; hair colour: black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138). Under Shekau’s leadership, Boko Haram has been responsible for a series of major terrorist attacks. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/07/2014,26/06/2014,31/12/2020,13006 +SHEKAU,Abubakar,Mohammed,,,,,أبو بكر محمد الشكوى,,,00/00/1969,"Shekau Village, Yobe State",Nigeria,Nigeria,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0118 (UN Ref):QDi.322 Member of the Kanuri tribe. Physical description: eye colour: black; hair colour: black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138). Under Shekau’s leadership, Boko Haram has been responsible for a series of major terrorist attacks. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,08/07/2014,26/06/2014,31/12/2020,13006 +SHELOMOV,Mikhail,Lvovich,,,,,Михаил Львович ШЕЛОМОВ,,,07/01/1968,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1375 (UK Statement of Reasons):Mikhail SHELOMOV (henceforth SHELOMOV) is a Russian business owner and the first cousin, once removed, of President of the Russian Federation Vladimir Putin. SHELOMOV, via his firm ""Akcept"" LLC, is a shareholder in Bank Rossiya, which is a key stakeholder in the National Media Group which supports Russian policy which is destabilising Ukraine. Following the annexation of Crimea, Bank Rossiya has expanded its bank branches and provision of insurance throughout Crimea and Sevastopol; and offers support to military activities and the formation of major transport links and cards that allow the public to travel easily around the peninsula. Therefore, Bank Rossiya has supported the consolidation of Crimea into the Russian Federation by integrating the financial system following the annexation of Crimea. SHELOMOV therefore is or has been involved in engaging in, providing support for, or promoting any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. SHELOMOV is also associated with Russian insurance firm SOGAZ, a UK-sanctioned entity which carries on business in the Russian financial services sector, which is a sector of strategic significance to the Government of Russia. SHELOMOV owns ""Akcept"" LLC, which operates in the Russian financial services sector, a sector of strategic significance to the Government of Russia. SHELOMOV is therefore involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,13/05/2022,13/05/2022,13/05/2022,15383 +SHEN ZHONG INTERNATIONAL SHIPPING,,,,,,,,,,,,,,,,,,,Unit 503,5th Floor Silvercord Tower 2,30 Canton Road,Tsim Sha Tsui,Kowloon,Hong Kong,,China,"(UK Sanctions List Ref):DPR0192 (UN Ref):KPe.073 Ship and commercial manager of HAO FAN 2 and HAO FAN 6, St Kitts-Nevis-flagged vessels. The HAO FAN 6 loaded coal at Nampo, DPRK, on 27 August 2017. HAO FAN 2 loaded DPRK coal at Nampo, DPRK, on 3 June 2017.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13644 +SHEPELEU,Alexander,Svyatoslavovich,,,,,"ШЕПЕЛЕВ, Александр Святославович",,,14/10/1975,,,Belarus,,,,,Head of the Department for Safety and Security of the Ministry of Internal Affairs of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0012 (UK Statement of Reasons):Aliaksandr Shepeleu is Head of the Department for Safety and Security of the Ministry of Internal Affairs. In his role as Head of the Department for Safety and Security, he is responsible for the actions of the Public Security Police and therefore bears responsibility for the serious human rights violations that were carried out following the election of 9 August, including torture or cruel, inhuman or degrading treatment or punishment. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13935 +SHEPELEU,Aliaksandr,SVIATASLAVAVICH,,,,,"ШЭПЕЛЕЎ, Аляксандр Святаслававіч",,,14/10/1975,,,Belarus,,,,,Head of the Department for Safety and Security of the Ministry of Internal Affairs of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0012 (UK Statement of Reasons):Aliaksandr Shepeleu is Head of the Department for Safety and Security of the Ministry of Internal Affairs. In his role as Head of the Department for Safety and Security, he is responsible for the actions of the Public Security Police and therefore bears responsibility for the serious human rights violations that were carried out following the election of 9 August, including torture or cruel, inhuman or degrading treatment or punishment. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13935 +SHEPELEV,Aleksandr,Svyataslavavich,,,,,,,,14/10/1975,,,Belarus,,,,,Head of the Department for Safety and Security of the Ministry of Internal Affairs of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0012 (UK Statement of Reasons):Aliaksandr Shepeleu is Head of the Department for Safety and Security of the Ministry of Internal Affairs. In his role as Head of the Department for Safety and Security, he is responsible for the actions of the Public Security Police and therefore bears responsibility for the serious human rights violations that were carried out following the election of 9 August, including torture or cruel, inhuman or degrading treatment or punishment. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13935 +SHEPELEV,Alexander,Svyatoslavovich,,,,,,,,14/10/1975,,,Belarus,,,,,Head of the Department for Safety and Security of the Ministry of Internal Affairs of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0012 (UK Statement of Reasons):Aliaksandr Shepeleu is Head of the Department for Safety and Security of the Ministry of Internal Affairs. In his role as Head of the Department for Safety and Security, he is responsible for the actions of the Public Security Police and therefore bears responsibility for the serious human rights violations that were carried out following the election of 9 August, including torture or cruel, inhuman or degrading treatment or punishment. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13935 +SHEPELEV,Aliaksandr,SVIATASLAVAVICH,,,,,,,,14/10/1975,,,Belarus,,,,,Head of the Department for Safety and Security of the Ministry of Internal Affairs of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0012 (UK Statement of Reasons):Aliaksandr Shepeleu is Head of the Department for Safety and Security of the Ministry of Internal Affairs. In his role as Head of the Department for Safety and Security, he is responsible for the actions of the Public Security Police and therefore bears responsibility for the serious human rights violations that were carried out following the election of 9 August, including torture or cruel, inhuman or degrading treatment or punishment. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13935 +SHEPOTKO,Pavel,Alexandrovich,,,,,ШЕПОТКО Павел Александрович,Cyrillic,Russian,15/04/1986,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1213 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15165 +SHER MOHAMMAD,Hamidullah,Akhund,,,,Mullah,حمید الله آخوند شیر محمد,,,00/00/1972,"(1) Sarpolad village, Washer District, Helmand Province (2) Arghandab District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Head of Ariana Afghan Airlines under the Taliban regime,,,,,,,,Afghanistan,(UK Sanctions List Ref):AFG0092 (UN Ref):TAi.118 Belongs to Ghilzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7159 +SHER MOHAMMAD,Hamidullah,Akhund,,,,Mullah,حمید الله آخوند شیر محمد,,,00/00/1973,"(1) Sarpolad village, Washer District, Helmand Province (2) Arghandab District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Head of Ariana Afghan Airlines under the Taliban regime,,,,,,,,Afghanistan,(UK Sanctions List Ref):AFG0092 (UN Ref):TAi.118 Belongs to Ghilzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7159 +SHEREMET,Mikhail,Sergeyevich,,,,,Михаил Сергеевич ШЕРЕМЕТ,,,23/05/1971,Dzhankoy,,Ukraine,,,,,Member of Russian State Duma elected for Crimea and former so-called ‘First Deputy Prime Minister’ of Crimea.,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0131 (UK Statement of Reasons):Member of the State Duma, elected from the illegally annexed Autonomous Republic of Crimea. Former “First Deputy Prime Minister” of Crimea. Sheremet played a key role in the organisation and implementation of the 16 March referendum in Crimea on unification with Russia. At the time of the referendum, Sheremet reportedly commanded the pro-Moscow “self-defence forces” in Crimea. He has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Elected on 18 September 2016 as a Duma deputy from illegally annexed Crimean Peninsula. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,31/12/2020,13100 +SHERIF,Amar,,,,,,,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +SHERIF,Ammar,,,,,,,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +SHERIF,Ammar,Medhat,,,,,,,,26/06/1969,Lattakia,,Syria,010312413,"Syrian. Issue number 002-15-L093534, date of issue 14 July 2015, place of issue Damascus-Centre, expiry date 13 July 2021",060-10276707,,,,,,,,,,,"(UK Sanctions List Ref):SYR0019 (UK Statement of Reasons):Leading Syrian businessman operating in Syria, active in the banking, insurance, and hospitality sectors. Founding partner of Byblos Bank Syria, major shareholder in Unlimited Hospitality Ltd, and board member of the Solidarity Alliance Insurance Company and the Al-Aqueelah Takaful Insurance Company (Gender):Male",Individual,Primary name variation,,Syria,28/10/2016,31/12/2020,13/05/2022,13385 +SHERKAT SANAYEH ELECTRONICS IRAN,,,,,,,,,,,,,,,,,,,Hossein Abad/Ardakan Road,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SHERKAT SANAYEH ELECTRONICS IRAN,,,,,,,,,,,,,,,,,,,P.O. Box 18575-365,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SHERKAT SANAYEH ELECTRONICS IRAN,,,,,,,,,,,,,,,,,,,P.O. Box 71265-1589,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SHERKAT SANAYEH ELECTRONICS IRAN,,,,,,,,,,,,,,,,,,,P.O. Box 71365-1174,Eman Khomeini Ave.,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SHERKAT SANAYEH ELECTRONICS IRAN,,,,,,,,,,,,,,,,,,,PO Box 19575 365,Pasdran Ave.,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SHERKAT SANAYEH ELECTRONICS IRAN,,,,,,,,,,,,,,,,,,,Sh. Langari St.,Nobonyad Sq.,Pasdaran Ave.,,,Tehran,19574,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SHERKAT SANAYEH ELECTRONICS IRAN,,,,,,,,,,,,,,,,,,,Shahid Langari Street,Nobonyad Square,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0075 (UK Statement of Reasons):Wholly owned subsidiary of MODAFL (and therefore a sister organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian weapons systems. (Phone number):(1) + 98 21 22988006 (2) +98 21 2254 9664 (3) +98 21 2298 8007 (Website):http://www.ieicorp.ir, http://www.ieimil.ir (Email address):info@ieimil.ir (Type of entity):Enterprise (Subsidiaries):AIS Iran Co. Electronic Component Industries (ECI). Iran Electronics Industries Co (Saga). Iranian Electronic Science & Research Institute. Isfahan Optics Industry (SAPA). Security Industry Information Space (SASTOBA). Shiraz Electronics Industries (Sara Shiraz). Telecommunication Industries of Iran (SAMA). The Institute of Isayran Co (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL)",Entity,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10659 +SHERKAT-E GHANISAZI-YE URANIUM.,,,,,,,,,,,,,,,,,,,,Qarqavol Close,20th Street,,,Tehran,,,(UK Sanctions List Ref):INU0066 (UK Statement of Reasons):Known to have production contracts with Iran Centrifuge Technology Company (TESA). (Parent company):(1) Novin Energy (2) TAMAS,Entity,Primary name variation,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12254 +SHERKATE TECHNOLOGY CENTRIFUGE IRAN,,,,,,,,,,,,,,,,,,,156 Golestan Street,Saradr e Jangal,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +SHERKATE TECHNOLOGY CENTRIFUGE IRAN,,,,,,,,,,,,,,,,,,,Khalij e Fars Boulevard,Kilometre 10 of Atomic Energy Road,Rowshan Shahr,Third Moshtaq Street,,Esfahan,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +SHERKATE TECHNOLOGY CENTRIFUGE IRAN,,,,,,,,,,,,,,,,,,,Km. 55th of Tehran-Qazvin Rd.,,,,,Karaj,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +SHERKATE TECHNOLOGY CENTRIFUGE IRAN,,,,,,,,,,,,,,,,,,,No.239,Africa Ave.,Apartment No.12,First Floor,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +SHERKATE TECHNOLOGY CENTRIFUGE IRAN,,,,,,,,,,,,,,,,,,,Northwest of Karaj at Km 55 Qazvin (alt. Ghazvin) Highway,,,,,Haljerd,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +SHERKATE TECHNOLOGY CENTRIFUGE IRAN,,,,,,,,,,,,,,,,,,,Yousef Abad District,No. 1,37th Street,,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +SHERKATE TECHNOLOGY CENTRIFUGE IRAN,,,,,,,,,,,,,,,,,,,No.66,Sarhang Sakhaei St.,Hafez Avenue,,,Tehran,11367,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +SHERKATE TECHNOLOGY CENTRIFUGE IRAN,,,,,,,,,,,,,,,,,,,No.66,Sarhang Sakhaei St.,Hafez Avenue,,,Tehran,(11367),Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +SHERSHNEV,Aleksandr,Leonidovich,,,,Colonel,Александр Леонидович ШЕРШНЕВ,Cyrillic,Russian,14/01/1978,,,Russia,3802 634927,,F-529191,,Colonel of the 64th Separate Motorised Rifle Brigade of the 35th Combined Arms Army of the Russian Federation,14 Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS1477 (UK Statement of Reasons):Colonel Aleksandr Leonidovich SHERSHNEV is a member of the Armed Forces of the Russian Federation, he currently holds the position of Colonel within 64th Separate Motorized Rifle Brigade. We have reasonable grounds to suspect he was either in direct command of, or in a position to hold considerable situational awareness of, troops involved in the killing of civilians in the Kyiv suburb of Bucha during the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,16/06/2022,16/06/2022,09/08/2022,15410 +SHESHENIA,Aleksei,Nikolaevich,,,,,,,,16/04/1971,"Kommunarsk, Voroshilov region","Former USSR, now Ukraine",,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0008 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. SHESHENYA participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Grand-Aktiv LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14085 +SHESHENIA,Aleksei,Nikolayevich,,,,,,,,16/04/1971,"Kommunarsk, Voroshilov region","Former USSR, now Ukraine",,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0008 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. SHESHENYA participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Grand-Aktiv LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14085 +SHESHENIA,Aleksey,Nikolaevich,,,,,,,,16/04/1971,"Kommunarsk, Voroshilov region","Former USSR, now Ukraine",,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0008 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. SHESHENYA participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Grand-Aktiv LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14085 +SHESHENIA,Aleksey,Nikolayevich,,,,,,,,16/04/1971,"Kommunarsk, Voroshilov region","Former USSR, now Ukraine",,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0008 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. SHESHENYA participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Grand-Aktiv LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14085 +SHESHENIA,Alexei,Nikolaevich,,,,,,,,16/04/1971,"Kommunarsk, Voroshilov region","Former USSR, now Ukraine",,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0008 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. SHESHENYA participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Grand-Aktiv LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14085 +SHESHENIA,Alexei,Nikolayevich,,,,,,,,16/04/1971,"Kommunarsk, Voroshilov region","Former USSR, now Ukraine",,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0008 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. SHESHENYA participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Grand-Aktiv LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14085 +SHESHENIA,Alexey,Nikolaevich,,,,,,,,16/04/1971,"Kommunarsk, Voroshilov region","Former USSR, now Ukraine",,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0008 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. SHESHENYA participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Grand-Aktiv LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14085 +SHESHENIA,Alexey,Nikolayevich,,,,,,,,16/04/1971,"Kommunarsk, Voroshilov region","Former USSR, now Ukraine",,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0008 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. SHESHENYA participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Grand-Aktiv LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14085 +SHESHENYA,Aleksei,Nikolaevich,,,,,,,,16/04/1971,"Kommunarsk, Voroshilov region","Former USSR, now Ukraine",,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0008 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. SHESHENYA participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Grand-Aktiv LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14085 +SHESHENYA,Aleksei,Nikolayevich,,,,,,,,16/04/1971,"Kommunarsk, Voroshilov region","Former USSR, now Ukraine",,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0008 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. SHESHENYA participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Grand-Aktiv LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14085 +SHESHENYA,Aleksey,Nikolaevich,,,,,Алексей Николаевич ШЕШЕНЯ,,,16/04/1971,"Kommunarsk, Voroshilov region","Former USSR, now Ukraine",,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0008 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. SHESHENYA participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Grand-Aktiv LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14085 +SHESHENYA,Aleksey,Nikolayevich,,,,,,,,16/04/1971,"Kommunarsk, Voroshilov region","Former USSR, now Ukraine",,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0008 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. SHESHENYA participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Grand-Aktiv LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14085 +SHESHENYA,Alexei,Nikolaevich,,,,,,,,16/04/1971,"Kommunarsk, Voroshilov region","Former USSR, now Ukraine",,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0008 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. SHESHENYA participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Grand-Aktiv LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14085 +SHESHENYA,Alexei,Nikolayevich,,,,,,,,16/04/1971,"Kommunarsk, Voroshilov region","Former USSR, now Ukraine",,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0008 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. SHESHENYA participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Grand-Aktiv LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14085 +SHESHENYA,Alexey,Nikolaevich,,,,,,,,16/04/1971,"Kommunarsk, Voroshilov region","Former USSR, now Ukraine",,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0008 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. SHESHENYA participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Grand-Aktiv LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14085 +SHESHENYA,Alexey,Nikolayevich,,,,,,,,16/04/1971,"Kommunarsk, Voroshilov region","Former USSR, now Ukraine",,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0008 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. SHESHENYA participated in the fraud through his involvement, in particular, in court processes based on fraudulent claims for damages, as the director of Grand-Aktiv LLC. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14085 +SHETAB G.,,,,,,,,,,,,,,,,,,,,,,,West Lavasani,Tehran,9821,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +SHETAB G.,,,,,,,,,,,,,,,,,,,Sa'adat Abaad,Shahrdari Sq. Sarv Building,9th Floor,Unit 5,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +SHETAB G.,,,,,,,,,,,,,,,,,,,No.17,Balooch Alley,Vaezi St,Shariati Ave.,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +SHETAB GAMAN,,,,,,,,,,,,,,,,,,,,,,,West Lavasani,Tehran,9821,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +SHETAB GAMAN,,,,,,,,,,,,,,,,,,,Sa'adat Abaad,Shahrdari Sq. Sarv Building,9th Floor,Unit 5,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +SHETAB GAMAN,,,,,,,,,,,,,,,,,,,No.17,Balooch Alley,Vaezi St,Shariati Ave.,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +SHETAB TRADING,,,,,,,,,,,,,,,,,,,,,,,West Lavasani,Tehran,9821,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +SHETAB TRADING,,,,,,,,,,,,,,,,,,,Sa'adat Abaad,Shahrdari Sq. Sarv Building,9th Floor,Unit 5,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +SHETAB TRADING,,,,,,,,,,,,,,,,,,,No.17,Balooch Alley,Vaezi St,Shariati Ave.,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +SHEVCHENKO,Igor,Sergeivich,,,,,Игорь Шевченко,,,09/02/1979,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Ukraine,,,,,(1) Acting Attorney Sevastopol (2) Former prosecutor of the City of Sevastopol,,,,,,,,,(UK Sanctions List Ref):RUS0132 (UK Statement of Reasons):Former Prosecutor of Sevastopol and as such actively implemented Russia's annexation of Sevastopol. Prosecutor of the Republic of Adygea. (Gender):Male,Individual,Primary name,,Russia,12/05/2014,31/12/2020,16/09/2022,12978 +SHEVCHENKO,Andrei,Anatolyevich,,,,,Андрей Анатольевич ШЕВЧЕНКО,,,29/05/1965,Dimitrovsky,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0984 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14935 +SHEVTSOV,Vadim,Gheorghievici,,,,,,,,19/02/1951,Novosibirsk,Russia,Russia,,,,,Deputy Director General of the State-owned enterprise 'United Engine Corporation',,,,,,Transnistria,,,"(UK Sanctions List Ref):RUS0066 (UK Statement of Reasons):Former ‘Ministry of State Security’ in the separatist region of Transnistria. Since 9 July 2014, he has been the Former first vice-prime minister of Donetsk People's Republic, responsible for security and law enforcement. In his capacity, he is responsible for the separatist ‘governmental’ activities of the so called ‘government of the Donetsk People's Republic’. Board member of the State-owned enterprise 'United Engine Corporation', board member of the State owned JSC Research and Production Enterprise 'Temp' named after F. Korotkov. Remains active in supporting separatist actions and policies. (Gender):Male",Individual,AKA,,Russia,25/07/2014,31/12/2020,14/02/2022,13067 +SHEVTSOV,Vladimir,,,,,,,,,19/02/1951,Novosibirsk,Russia,Russia,,,,,Deputy Director General of the State-owned enterprise 'United Engine Corporation',,,,,,Transnistria,,,"(UK Sanctions List Ref):RUS0066 (UK Statement of Reasons):Former ‘Ministry of State Security’ in the separatist region of Transnistria. Since 9 July 2014, he has been the Former first vice-prime minister of Donetsk People's Republic, responsible for security and law enforcement. In his capacity, he is responsible for the separatist ‘governmental’ activities of the so called ‘government of the Donetsk People's Republic’. Board member of the State-owned enterprise 'United Engine Corporation', board member of the State owned JSC Research and Production Enterprise 'Temp' named after F. Korotkov. Remains active in supporting separatist actions and policies. (Gender):Male",Individual,AKA,,Russia,25/07/2014,31/12/2020,14/02/2022,13067 +SHEVTSOVA,Tatiana,Viktorovna,,,,,ШЕВЦОВА Татьяна Викторовна,,,22/07/1969,Kozelsk,Russia,Russia,,,,,Deputy Minister of Defence of the Russian Federation,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0841 (UK Statement of Reasons):State Councillor of the Russian Federation, 1st Class Tatiana Viktorovna SHEVTSOVA is a Deputy Minister of Defence of the Armed Forces of the Russian Federation. She is considered to have directed, or otherwise have had involvement in, responsibility for or influence over the deployment of forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that she is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14792 +SHEYKIN,Artyom,Gennadievich,,,,,Артем Геннадьевич Шейкин,,,25/03/1980,Belogorsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0964 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14915 +SHEYMAN,Viktar,Uladzimiravich,,,,,,,,26/05/1958,Hrodna Region,Former USSR Currently Belarus,Belarus,,,,,Head of the Management Department of the President’s Administration,,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0003 Former Secretary of the Security Council and remains Special Assistant/Aid to the President. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Sheiman is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Sheiman was a former Chief of Staff to President Lukashenka. He was appointed to the position of Prosecutor General in 2000 but failed to take any action to investigate the case of the unresolved disappearances. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8904 +SHEYMAN,Viktor,Uladimiravich,,,,,,,,26/05/1958,Hrodna Region,Former USSR Currently Belarus,Belarus,,,,,Head of the Management Department of the President’s Administration,,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0003 Former Secretary of the Security Council and remains Special Assistant/Aid to the President. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Sheiman is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Sheiman was a former Chief of Staff to President Lukashenka. He was appointed to the position of Prosecutor General in 2000 but failed to take any action to investigate the case of the unresolved disappearances. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8904 +SHEYMAN,Viktor,Vladimirovich,,,,,,,,26/05/1958,Hrodna Region,Former USSR Currently Belarus,Belarus,,,,,Head of the Management Department of the President’s Administration,,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0003 Former Secretary of the Security Council and remains Special Assistant/Aid to the President. (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Sheiman is associated with other Belarus Officials who have been listed for their involvement in these disappearances. Sheiman was a former Chief of Staff to President Lukashenka. He was appointed to the position of Prosecutor General in 2000 but failed to take any action to investigate the case of the unresolved disappearances. (Gender):Male",Individual,Primary name variation,,Belarus,22/05/2006,31/12/2020,18/03/2022,8904 +SHEYNIN,Artyom,Grigoryevich,,,,,ШЕЙНИН Артем Григорьевич,Cyrillic,Russian,26/01/1966,Moscow,Russia,,,,,,Presenter of ‘Time Will Tell’ on Russia-1,,,,,,,,,"(UK Sanctions List Ref):RUS1037 (UK Statement of Reasons):Artyom Sheynin is a prominent Russian TV presenter. In numerous broadcasts he has provided support for and promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14974 +SHFT,,,,,,,,,,,,,,,,,,,Azadi Ave,11365 8639,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHFT,,,,,,,,,,,,,,,,,,,Azadi Ave/Street,PO Box 11365 11155,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHFT,,,,,,,,,,,,,,,,,,,P.O. Box 11155 9466,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHFT,,,,,,,,,,,,,,,,,,,P.O. Box 11365 9161,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHFT,,,,,,,,,,,,,,,,,,,P.O. Box 11365 9466,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHFT,,,,,,,,,,,,,,,,,,,PO Box 11365 8639,Azadi St,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SHIBIL,Luna,,,,,,,,,01/09/1975,Suweida,Syria,Syria,,,,,Media Adviser to President Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0377 (UK Statement of Reasons):Adviser to President Assad and a prominent member of his inner circle. As Media Adviser to the President she supports the Syrian regime, which relies on disinformation and a lack of media freedom to repress the civilian population. She is also associated with the Syrian regime through her role as an adviser. (Gender):Female",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,14/02/2022,14070 +SHIBL,Luna,,,,,,,,,01/09/1975,Suweida,Syria,Syria,,,,,Media Adviser to President Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0377 (UK Statement of Reasons):Adviser to President Assad and a prominent member of his inner circle. As Media Adviser to the President she supports the Syrian regime, which relies on disinformation and a lack of media freedom to repress the civilian population. She is also associated with the Syrian regime through her role as an adviser. (Gender):Female",Individual,Primary name variation,,Syria,15/03/2021,15/03/2021,14/02/2022,14070 +SHIGABOUTDINOV,Albert,Kashafovich,,,,,,,,12/11/1952,,,,,,165900663762,Russia,,,,,,,,,,"(UK Sanctions List Ref):RUS1658 (UK Statement of Reasons):Albert Kashafovich Shigabutdinov (hereafter SHIGABUTDINOV) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 on the basis of the following grounds: (1) SHIGABUTDINOV is and has been involved in obtaining a benefit from or supporting the Government of Russia by working as a director or other manager, or equivalent, of the AO TAIF group of companies, entities which are carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian energy, financial services and information, communications and digital technologies sectors. (Gender):Male",Individual,Primary name variation,,Russia,02/11/2022,02/11/2022,02/11/2022,15609 +SHIGABUTDINOV,Albert,Kashafovich,,,,,ШИГАБУТДИНОВ Альберт Кашафович,Cyrillic,Russian,12/11/1952,,,,,,165900663762,Russia,,,,,,,,,,"(UK Sanctions List Ref):RUS1658 (UK Statement of Reasons):Albert Kashafovich Shigabutdinov (hereafter SHIGABUTDINOV) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 on the basis of the following grounds: (1) SHIGABUTDINOV is and has been involved in obtaining a benefit from or supporting the Government of Russia by working as a director or other manager, or equivalent, of the AO TAIF group of companies, entities which are carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian energy, financial services and information, communications and digital technologies sectors. (Gender):Male",Individual,Primary name,,Russia,02/11/2022,02/11/2022,02/11/2022,15609 +SHIHABI,Fares,,,,,,,,,07/05/1972,,,Syria,,,,,(1) President of Aleppo Chamber of Industry (2) Vice-chairman of Cham Holding (3) Chairman of the Federation of Chambers of Industry. Appointed in 16 December 2018,,,,,,,,,"(UK Sanctions List Ref):SYR0041 Son of Ahmad Chehabi (UK Statement of Reasons):President of Aleppo Chamber of Industry, Chairman of the Federation of Chambers of Industry since 16.12.2018. Vice-chairman of Cham Holding. Provides economic support to the Syrian regime. Former Member of the Syrian Parliament (2016-2020). (Gender):Male",Individual,Primary name variation,,Syria,05/09/2011,31/12/2020,16/06/2022,12058 +SHIHABI,Fares,,,,,,,,,07/09/1972,,,Syria,,,,,(1) President of Aleppo Chamber of Industry (2) Vice-chairman of Cham Holding (3) Chairman of the Federation of Chambers of Industry. Appointed in 16 December 2018,,,,,,,,,"(UK Sanctions List Ref):SYR0041 Son of Ahmad Chehabi (UK Statement of Reasons):President of Aleppo Chamber of Industry, Chairman of the Federation of Chambers of Industry since 16.12.2018. Vice-chairman of Cham Holding. Provides economic support to the Syrian regime. Former Member of the Syrian Parliament (2016-2020). (Gender):Male",Individual,Primary name variation,,Syria,05/09/2011,31/12/2020,16/06/2022,12058 +SHIHATA,THARWAT,SALAH,,,,,ثروت صالح شحاته,,,29/06/1960,,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0327 (UN Ref):QDi.017 Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,06/12/2001,06/10/2001,31/12/2020,6899 +SHIKISHIMA MARU NO.1,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0109 Pursuant to paragraphs 8(d) of Security Council resolution 1718 (2006) and 12 of Security Council resolution 2270 (2016) as economic resources of designated entities. DPRK cargo vessel M/V JI SONG 8 is owned by Phyongchon Shipping & Marine and is believed to have been involved in illicit transfers of prohibited DPRK goods. Listed as asset of Phyongchon Shipping & Marine, (OFSI ID: 13641, UN Reference Number: UN Ref KPe.070) (IMO number):8503228 (Current owners):Phyongchon Shipping & Marine (Flag of ship):North Korea (Previous flags):Hong Kong (Type of ship):General Cargo / Multi Purpose (Tonnage of ship):3953 (Length of ship):105 (Year built):1985",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13660 +SHIKISHIMA NO.17,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0109 Pursuant to paragraphs 8(d) of Security Council resolution 1718 (2006) and 12 of Security Council resolution 2270 (2016) as economic resources of designated entities. DPRK cargo vessel M/V JI SONG 8 is owned by Phyongchon Shipping & Marine and is believed to have been involved in illicit transfers of prohibited DPRK goods. Listed as asset of Phyongchon Shipping & Marine, (OFSI ID: 13641, UN Reference Number: UN Ref KPe.070) (IMO number):8503228 (Current owners):Phyongchon Shipping & Marine (Flag of ship):North Korea (Previous flags):Hong Kong (Type of ship):General Cargo / Multi Purpose (Tonnage of ship):3953 (Length of ship):105 (Year built):1985",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13660 +SHILKIN,Grigory,Vladimirovich,,,,,Шилкин Григорий Владимирович,,,20/10/1976,Arkhangelsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0530 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14475 +SHINWARI,ABDUL GHAFAR,,,,,Haji,عبدالغفار شینواری,,,29/03/1965,Nangarhar Province,Afghanistan,Afghanistan,D 000763,(Afghan). Issued on 9 Jan 1997,,,"Third Secretary, Taliban Consulate General, Karachi, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0107 (UN Ref):TAi.139 Believed to be in Afghanistan/Pakistan border area. Belongs to Safi tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7449 +SHIPULIN,Anton,Vladimirovich,,,,,Шипулин Антон Владимирович,,,21/08/1987,Tyumen,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0667 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14618 +SHIPYARD ZALIV LLC,,,,,,,,,,,,,,,,,,,,,,,,"Location of entity headquarters, ""Republic of Crimea",,,"(UK Sanctions List Ref):RUS0179 (UK Statement of Reasons):JSC Zaliv Shipyard actively participated in the construction of new railway approaches to the Kerch Bridge, connecting Russian to the illegally annexed Crimean peninsula. Therefore, it is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Phone number):(1) +7 (36561) 33055 (2) +7 (36561) 33501 (3) +7 (36561) 33527 (4) +7 (36561) 34002 (5) +7 (36561) 37858 (6) +7 (861) 2033829 (7) +7 (861) 2033896 (8) + (812) 612-06-12 (Email address):(1) press@zalivkerch.com (2) sess@zalivkerch.com (3) uzis@zalivkerch.com (Type of entity):Shipyard (joint stock company)",Entity,Primary name variation,,Russia,31/07/2018,31/12/2020,16/09/2022,13702 +SHIPYARD ZALIV LLC,,,,,,,,,,,,,,,,,,,,,4,Tankistov Street,Kerch,The Autonomous Republic of Crimea and the city of Sevastopol,298310,Ukraine,"(UK Sanctions List Ref):RUS0179 (UK Statement of Reasons):JSC Zaliv Shipyard actively participated in the construction of new railway approaches to the Kerch Bridge, connecting Russian to the illegally annexed Crimean peninsula. Therefore, it is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine. (Phone number):(1) +7 (36561) 33055 (2) +7 (36561) 33501 (3) +7 (36561) 33527 (4) +7 (36561) 34002 (5) +7 (36561) 37858 (6) +7 (861) 2033829 (7) +7 (861) 2033896 (8) + (812) 612-06-12 (Email address):(1) press@zalivkerch.com (2) sess@zalivkerch.com (3) uzis@zalivkerch.com (Type of entity):Shipyard (joint stock company)",Entity,Primary name variation,,Russia,31/07/2018,31/12/2020,16/09/2022,13702 +SHIRAZ ELECTRONIC IND.,,,,,,,,,,,,,,,,,,,Ayatollah Mirzay e Shiraz Blvd.,Ghasr Aldasht St.,,,,Shiraz,71000,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONIC IND.,,,,,,,,,,,,,,,,,,,"Hossain Abad Road,",,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONIC IND.,,,,,,,,,,,,,,,,,,,Mirzaie Shirazi,Fars,71365 1589,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONIC IND.,,,,,,,,,,,,,,,,,,,Mirzaye Shirazi Blv.,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONIC IND.,,,,,,,,,,,,,,,,,,,P.O. Box 71365 1589,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONIC INDUSTRIES,,,,,,,,,,,,,,,,,,,Ayatollah Mirzay e Shiraz Blvd.,Ghasr Aldasht St.,,,,Shiraz,71000,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONIC INDUSTRIES,,,,,,,,,,,,,,,,,,,"Hossain Abad Road,",,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONIC INDUSTRIES,,,,,,,,,,,,,,,,,,,Mirzaie Shirazi,Fars,71365 1589,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONIC INDUSTRIES,,,,,,,,,,,,,,,,,,,Mirzaye Shirazi Blv.,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONIC INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 71365 1589,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,Ayatollah Mirzay e Shiraz Blvd.,Ghasr Aldasht St.,,,,Shiraz,71000,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,"Hossain Abad Road,",,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,Mirzaie Shirazi,Fars,71365 1589,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,Mirzaye Shirazi Blv.,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONICS INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O. Box 71365 1589,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONICS INDUSTRY CO.,,,,,,,,,,,,,,,,,,,Ayatollah Mirzay e Shiraz Blvd.,Ghasr Aldasht St.,,,,Shiraz,71000,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONICS INDUSTRY CO.,,,,,,,,,,,,,,,,,,,"Hossain Abad Road,",,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONICS INDUSTRY CO.,,,,,,,,,,,,,,,,,,,Mirzaie Shirazi,Fars,71365 1589,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONICS INDUSTRY CO.,,,,,,,,,,,,,,,,,,,Mirzaye Shirazi Blv.,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIRAZ ELECTRONICS INDUSTRY CO.,,,,,,,,,,,,,,,,,,,P.O. Box 71365 1589,,,,,Shiraz,,Iran,"(UK Sanctions List Ref):INU0043 (UK Statement of Reasons):Subsidiary of Iran Electronic Industries. (Phone number):71 644 831. 71 646 253. 71 649 869 (Website):www.sashiraz.co.ir, www.sashirazco.com, www.sashirazcorp.com (Type of entity):Enterprise (Subsidiaries):Shiraz Electronics Research Centre (Parent company):Iran Electronic Industries (a MODAFL subsidiary)",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,31/12/2020,11953 +SHIROKOV,Anatoly,Ivanovich,,,,,Анатолий Иванович ШИРОКОВ,,,29/12/1967,Novosibirsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0908 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14859 +SHISHANI,Akhmad,,,,,,Ахмад Шишани,,,04/07/1980,"Vedeno Village, Vedenskiy District, Republic of Chechnya",Russia,Russia,9600133195,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0127 (UN Ref):QDi.365 As at Aug. 2015, one of the leaders of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), commanding directly 130 militants. Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899829. Address country Syria, located in as at August 2015",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13300 +SHISHANI,Akhmad,,,,,,Ахмад Шишани,,,04/07/1980,"Vedeno Village, Vedenskiy District, Republic of Chechnya",Russia,Russia,9600133195,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0127 (UN Ref):QDi.365 As at Aug. 2015, one of the leaders of the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), commanding directly 130 militants. Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899829. Address country Syria, located in as at August 2015",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13300 +SHISHANI,Omar,,,,,,,,,11/01/1986,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +SHISHANI,Omar,,,,,,,,,00/00/1982,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +SHISHANI,Umar,,,,,,,,,11/01/1986,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +SHISHANI,Umar,,,,,,,,,00/00/1982,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +SHISHKINA,Elena,Nikolaevna,,,,,ШИШКИНА Елена Николаевна,Cyrillic,Russian,19/04/1978,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1208 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15160 +SHISHKINA,Elena,Nikolayevna,,,,,,,,19/04/1978,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1208 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15160 +SHKHAGOSHEV,Adalbi,Lyulevich,,,,,Шхагошев Адальби Люлевич,,,06/06/1967,"Urukh, Kabardino-Balkaria",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0534 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14479 +SHKOLKINA,Nadezhda,Vasilievna,,,,,Школкина Надежда Васильевна,,,12/05/1970,Saransk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0531 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14476 +SHKOLNIK,Aleksandr,Yakovlevich,,,,,Алекса́ндр Я́ковлевич Шко́льник,,,25/03/1964,Nizhny Tagil,Russia,Russia,,,,,Director of Central Museum of the Great Patriotic War,,,,,,,,,"(UK Sanctions List Ref):RUS1380 (UK Statement of Reasons):SHKOLNIK is Director of the Central Museum of the Great Patriotic War and Chairman of the Presidium of the Foundation for Strategic Initiatives of the Victory Museum in Russia. He has used his position as the head of a significant national cultural institution to spread disinformation, including supporting and promoting the Government of Russia’s false narrative that the invasion of Ukraine is an exercise of “de-Nazification”. SHKOLNIK has therefore provided support for or promoted policies and actions which destabilise Ukraine and threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,04/05/2022,15337 +SHKOLNIK,Alexander,Yakovlevich,,,,,,,,25/03/1964,Nizhny Tagil,Russia,Russia,,,,,Director of Central Museum of the Great Patriotic War,,,,,,,,,"(UK Sanctions List Ref):RUS1380 (UK Statement of Reasons):SHKOLNIK is Director of the Central Museum of the Great Patriotic War and Chairman of the Presidium of the Foundation for Strategic Initiatives of the Victory Museum in Russia. He has used his position as the head of a significant national cultural institution to spread disinformation, including supporting and promoting the Government of Russia’s false narrative that the invasion of Ukraine is an exercise of “de-Nazification”. SHKOLNIK has therefore provided support for or promoted policies and actions which destabilise Ukraine and threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,04/05/2022,04/05/2022,04/05/2022,15337 +SHLASH,Mushari,Abd,Aziz,Saleh,,,,,,00/00/1974,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +SHLASH,Mushari,Abd,Aziz,Saleh,,,,,,00/00/1974,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +SHLASH,Mushari,Abd,Aziz,Saleh,,,,,,00/00/1975,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +SHLASH,Mushari,Abd,Aziz,Saleh,,,,,,00/00/1975,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0178 (UN Ref):QDi.277 He is a cousin of Akram Turki Hishan Al Mazidih (QDi.276). Terrorist attack organizer for the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115) as of 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1516793",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,29/03/2010,11/03/2010,31/12/2020,11051 +SHMAT,Kinda,,,,,,,,,00/00/1973,,,Syria,,,,,Former Minister for Social Affairs,,,,,,,,,"(UK Sanctions List Ref):SYR0128 (UK Statement of Reasons):Former Social Affairs Minister in power after May 2011. Former Minister of Social Affairs from at least 2013 to 2015. As a former Government Minister, there are reasonable grounds to suspect that she has been involved in the repression of the civilian population and/or supported or benefitted from the Syrian regime. (Gender):Female",Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12989 +SHMELEV,Dmitry,Vladimirovich,,,,,Дмитрий Владимирович ШМЕЛЕВ,Cyrillic,Russian,00/00/1981,Gelendzhik,Russia,Russia,,,,,Minister of Revenue and Fees of the so-called Donetsk People's Republic,,,,,,,,,"(UK Sanctions List Ref):RUS1620 (UK Statement of Reasons):Dmitry Vladimirovich SHMELEV is a Russian official serving as Minister of Revenue and Fees of the so-called Donetsk People’s Republic. SHMELEV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he engages in and provides support for policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15564 +SHO'A' AVIATION,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0186 (UN Ref):IRe.071 Produces micro-lights which IRGC has claimed it is using as part of its asymmetric warfare doctrine. [Old Reference # E.47.B.3],Entity,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,31/12/2020,9048 +SHOIGU,Sergei,Kuzhugetovich,,,,General of the Army,ШОЙГУ Сергей Кужугетович,Cyrillic,Russian,21/05/1955,Chadan,Russia,Russia,,,,,(1) Minister of Defence of the Russian Federation (2) Member of the Russian Security Council,19 Ulitsa Znamenka,,,,,Moscow,119160,Russia,"(UK Sanctions List Ref):RUS0689 (UK Statement of Reasons):Sergei Kuzhugetovich SHOIGU is Minister of Defence of the Russian Federation and a permanent member of the Russian Security Council (RSC). The RSC has been involved actively in decision-making about Russian policy towards Ukraine. On 21 February 2022, SHOIGU spoke in favour of a proposal to recognise Donetsk and Luhansk as independent republics. As a member of the RSC, SHOIGU has therefore been responsible for, provided support to, or promoted a policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14640 +SHOKHIN,Alexander,Nikolayevich,,,,Professor,Александр Николаевич Шохин,Cyrillic,Russian,25/12/1951,Savinskoye,Russia,,,,,,Head of the Russian Union of Industrialists and Entrepeneurs (RSPP),,,,,,,,,"(UK Sanctions List Ref):RUS1031 (UK Statement of Reasons):Alexander Nikolayevich SHOKHIN is a prominent Russian businessman. SHOKHIN is, or has been, involved in obtaining a benefit from and/or supporting the Government of Russia in his role as a member of the Board of Directors for Mechel PAO – a company operating in a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14968 +SHOLOKHOV,Alexander,Mikhailovich,,,,,Шолохов Александр Михайлович,,,25/01/1962,Moscow,Russia,Russia,759768903,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0585 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14530 +SHONGALE,Fouad,,,,,,,,,,,,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +SHONGALE,Fouad,,,,,,,,,,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +SHONGALE,Fuad,,,,,,,,,,,,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +SHONGALE,Fuad,,,,,,,,,,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +SHONGOLE,Fuad,,,,,,,,,,,,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +SHONGOLE,Fuad,,,,,,,,,,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +SHONGOLE,Fuad,Muhammad,Khalaf,,,,,,,,,,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +SHONGOLE,Fuad,Muhammad,Khalaf,,,,,,,,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +SHOOTER,,,,,,,,,,17/12/1970,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0097 (UK Statement of Reasons):Identified as staff of the Main Intelligence Director of the General Staff of the Armed Forces of the Russian Federation (GRU). He was involved in incidents in Sloviansk. Head of 'Novorussia' public movement. Former 'Ministry of Defence' of the so-called 'Donetsk People's Republic'. Organised on 4 November 2016, a Russian March in Moscow for Russian nationalists who support the separatists in Ukraine. Remains active in supporting separatist activity in Eastern Ukraine. One of the organisers of the 'Russian March' in November 2016. (Gender):Male",Individual,AKA,,Russia,29/04/2014,31/12/2020,16/09/2022,12964 +SHPEROV,Pavel,Valentinovich,,,,,,,,04/07/1971,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukrainian SSR (Ukraine),Ukraine,,,,,"(1) Member of the State Duma, elected from the illegally annexed Autonomous Republic of Crimea (2) Member of Duma Committee on Commonwealth of Independent States (CIS) Affairs, Eurasian Integration and links with compatriots.",,,,,,,,,"(UK Sanctions List Ref):RUS0133 (UK Statement of Reasons):Member of the State Duma, elected from the illegally annexed Autonomous Republic of Crimea. Member of the Duma Committee for CIS Affairs, Eurasian Integration and Relations with Compatriots. By taking an active part in separatist activity – including as a member of the self-defence forces of Crimea - he supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and further destabilise Ukraine. In September 2014 Shperov was elected to the State Council of the so-called 'Republic of Crimea.' He has publicly admitted, including in an interview published on ldpr-rk.rk website on 3 September 2016, his role in the events of 2014 that led to the illegal annexation of Crimea and Sevastopol and in particular his role in the organisation of the illegal referendum of the peninsula. (Gender):Male",Individual,Primary name,,Russia,09/11/2016,31/12/2020,31/12/2020,13395 +SHSHADAH,Rafeeq,,,,,,,,,00/00/1956,"Jablah, Latakia Province",,,,,,,Advisor to President Bashar al Assad for strategic questions and military intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0201 (UK Statement of Reasons):Former Head of Syrian Military Intelligence (SMI) Branch 293 (Internal Affairs) in Damascus. Directly involved in repression and violence against the civilian population in Damascus. Advisor to President Bashar Al-Assad for strategic questions and military intelligence. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12042 +SHSHADAH,Rafiq,,,,,,,,,00/00/1956,"Jablah, Latakia Province",,,,,,,Advisor to President Bashar al Assad for strategic questions and military intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0201 (UK Statement of Reasons):Former Head of Syrian Military Intelligence (SMI) Branch 293 (Internal Affairs) in Damascus. Directly involved in repression and violence against the civilian population in Damascus. Advisor to President Bashar Al-Assad for strategic questions and military intelligence. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12042 +SHUBIN,Alexandr,Vasilievich,,,,,,,,20/05/1972,Luhansk,,Ukraine,,,,,,,,,,,Luhansk,,,"(UK Sanctions List Ref):RUS0134 (UK Statement of Reasons):Former so-called Minister of Justice of the illegal so-called ‘Luhansk People’s Republic’. Former Chairman of the Central Election Commission of the so-called Luhansk People’s Republic since October 2015. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Dismissed as chairman of the 'Central Election Commission' of the so-called 'Luhansk People's Republic' in June 2018. Continues to support and legitimise separatist policies. (Gender):Male",Individual,Primary name,,Russia,16/02/2015,31/12/2020,31/12/2020,13204 +SHUBIN,Igor,Nikolaevich,,,,,Шубин Игорь Николаевич,,,20/12/1955,Perm,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0532 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14477 +SHUGAYEV,Dmitry,Evgenyevich,,,,,Дмитрий Евгеньевич ШУГАЕВ,Cyrillic,Russian,11/08/1965,,,Russia,,,7705513237,,,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1043 (UK Statement of Reasons):Dmitry Evgenyevich SHUGAYEV is the director of the Russian Government affiliated entity, the Federal Service for Military-Technical Cooperation. Through his role as a director, he is or has been involved in providing support to the Russian government, most notably in its war efforts against Ukraine.",Individual,Primary name,,Russia,24/03/2022,24/03/2022,24/06/2022,14986 +SHULEYKO,Yuri,Vitoldovich,,,,,ШУЛЕЙКО Юрий Витольдович,Cyrillic,Russian,00/00/1968,Kozlovshchina,Belarus,Belrus,,,,,Chairman of the Brest Regional Executive Committee,,,,,,,,,"(UK Sanctions List Ref):RUS0721 (UK Statement of Reasons):Yuri Vitoldovich SHULEYKO is Chairman of the Regional Executive Committee of the region of Brest which has hosted the presence of Russian military forces prior to and during the invasion of Ukraine. In this role SHULEYKO is or has been involved in providing support for, or promoting any policy or action which destabilises Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14672 +SHULGIN,Aleksandr,Aleksandrovich,,,,,Александр Александрович Шульгин,Cyrillic,Russian,00/00/1977,Essentuki,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1317 (UK Statement of Reasons):Aleksandr Aleksandrovich SHULGIN is a leading Russian businessman, having been CEO of Russian search engine YANDEX between 2014 to 2017. As such, SHULGIN has been involved in obtaining a benefit from or supporting the Government of Russia as an executive director or equivalent of an entity which has been carrying on business in a sector of strategic significance to the Government of Russia (The Russian information, communications and digital technologies sector). (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15272 +SHULIAKOUSKI,Aleh,Mikalaevich,,,,(1) Head of Brest Regional Department of Internal Affairs (2) Former Colonel of Police,"ШУЛЯКОВСКИЙ, Олег Николаевич",,,26/07/1977,,,Belarus,,,,,(1) Former First Deputy Head of the Department of Internal Affairs of Gomel Homyel Oblast Executive Committee (2) Head of the Criminal Police (3) Head of the Department of the Internal Affairs Directorate of the Brest Regional Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0019 (UK Statement of Reasons):Shuliakouski was the former First Deputy Head of the Department of Internal Affairs of Gomel Oblast Executive Committee. In this role Shuliakouski was responsible for the actions of police officers in Gomel including arbitrary arrests and ill‐treatment, and including torture, of peaceful demonstrators following the election of the 9 August 2020 in Belarus.. Shuliakouski therefore is or has been involved in serious human rights violations in Belarus as well as the repression of civil society and democracy in Belarus. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13941 +SHULIAKOUSKI,Oleg,Nikolaevich,,,,,"ШУЛЯКОЎСКI, Алег Мiкалаевiч",,,26/07/1977,,,Belarus,,,,,(1) Former First Deputy Head of the Department of Internal Affairs of Gomel Homyel Oblast Executive Committee (2) Head of the Criminal Police (3) Head of the Department of the Internal Affairs Directorate of the Brest Regional Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0019 (UK Statement of Reasons):Shuliakouski was the former First Deputy Head of the Department of Internal Affairs of Gomel Oblast Executive Committee. In this role Shuliakouski was responsible for the actions of police officers in Gomel including arbitrary arrests and ill‐treatment, and including torture, of peaceful demonstrators following the election of the 9 August 2020 in Belarus.. Shuliakouski therefore is or has been involved in serious human rights violations in Belarus as well as the repression of civil society and democracy in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13941 +SHULIAKOVSKI,Aleh,Mikalaevich,,,,,,,,26/07/1977,,,Belarus,,,,,(1) Former First Deputy Head of the Department of Internal Affairs of Gomel Homyel Oblast Executive Committee (2) Head of the Criminal Police (3) Head of the Department of the Internal Affairs Directorate of the Brest Regional Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0019 (UK Statement of Reasons):Shuliakouski was the former First Deputy Head of the Department of Internal Affairs of Gomel Oblast Executive Committee. In this role Shuliakouski was responsible for the actions of police officers in Gomel including arbitrary arrests and ill‐treatment, and including torture, of peaceful demonstrators following the election of the 9 August 2020 in Belarus.. Shuliakouski therefore is or has been involved in serious human rights violations in Belarus as well as the repression of civil society and democracy in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13941 +SHULIAKOVSKI,Oleg,Nikolaevich,,,,,,,,26/07/1977,,,Belarus,,,,,(1) Former First Deputy Head of the Department of Internal Affairs of Gomel Homyel Oblast Executive Committee (2) Head of the Criminal Police (3) Head of the Department of the Internal Affairs Directorate of the Brest Regional Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0019 (UK Statement of Reasons):Shuliakouski was the former First Deputy Head of the Department of Internal Affairs of Gomel Oblast Executive Committee. In this role Shuliakouski was responsible for the actions of police officers in Gomel including arbitrary arrests and ill‐treatment, and including torture, of peaceful demonstrators following the election of the 9 August 2020 in Belarus.. Shuliakouski therefore is or has been involved in serious human rights violations in Belarus as well as the repression of civil society and democracy in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13941 +SHUMILIN,Dmitry,Nikolayevich,,,,,Дзмiтрый Мiкалаевiч ШУМIЛIН,,,26/07/1977,,,,,,,,Deputy Head of the Department for Mass Events of the GUVD (Main Department of Internal Affairs) of the Minsk City Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0083 (UK Statement of Reasons):In his position as Deputy Head of the Department for Mass Events of the Main Department of Internal Affairs of the Minsk City Executive Committee, Dzmitry Shumilin bears responsibility for the repression and intimidation led by the local security apparatus in the wake of the 2020 presidential election, in particular the arbitrary arrest and ill-treatment, including torture, of peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14047 +SHUMILIN,Dzmitry,Mikalaevich,,,,,Дмитрий Николаевич ШУМИЛИН,,,26/07/1977,,,,,,,,Deputy Head of the Department for Mass Events of the GUVD (Main Department of Internal Affairs) of the Minsk City Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0083 (UK Statement of Reasons):In his position as Deputy Head of the Department for Mass Events of the Main Department of Internal Affairs of the Minsk City Executive Committee, Dzmitry Shumilin bears responsibility for the repression and intimidation led by the local security apparatus in the wake of the 2020 presidential election, in particular the arbitrary arrest and ill-treatment, including torture, of peaceful demonstrators. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14047 +SHUMILOVA,Yelena,Borisovna,,,,,Елена Борисовна ШУМИЛОВА,,,01/04/1978,Koygorodok,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0948 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14899 +SHUQIB,,,,,,,,,,00/00/1980,"Aki Village, Zadran District, Paktiya Province",Afghanistan,Afghanistan,,,,,,Miram Shah,North Waziristan,,,,Federally Administered Tribal Areas,,Pakistan,"(UK Sanctions List Ref):AFG0127 (UN Ref):TAi.161 Communications assistant to Badruddin Haqqani (deceased). Also coordinates movement of Haqqani insurgents, foreign fighters and weapons in the Afghanistan/Pakistan border area. Belongs to Zadran tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,17/07/2012,27/06/2012,01/02/2021,12700 +SHUVALOV,Evgeny,Igorevich,,,,,ШУВАЛОВ Евгений Игоревич,Cyrillic,Russian,06/05/1993,,Russia,Russia,750758221,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0809 (UK Statement of Reasons):Evgeny Igorovich SHUVALOV is the son of Igor Ivanovich SHUVALOV (RUS0265), who has been designated by the UK since 3 March 2022, with whom he is closely associated and from whom he has obtained a financial benefit or other material benefit. Igor Ivanovich SHUVALOV is Chairman of the Management Board at Vnesheconombank (hereafter referred to as VEB.RF). VEB.RF is a state corporation established by the Government of Russia to function as the national development bank, and is owned or controlled directly by the Government of Russia. It is therefore a Government of Russia-affiliated entity. Therefore, as a result of his position as Chairman of the Management Board at VEB.RF, SHUVALOV is working as a director or equivalent at a Government of Russia-affiliated entity, and is obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,13/05/2022,14760 +SHUVALOV,Igor,,,,,,,,,04/01/1967,Bilibino,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0265 (UK Statement of Reasons):Igor Ivanovich SHUVALOV (hereafter referred to as SHUVALOV) is Chairman of the Management Board at Vnesheconombank (hereafter referred to as VEB.RF). VEB.RF is a state corporation established by the Government of Russia to function as the national development bank, and is owned or controlled directly by the Government of Russia. It is therefore a Government of Russia-affiliated entity. Therefore, as a result of his position as Chairman of the Management Board at VEB.RF, SHUVALOV is working as a director or equivalent at a Government of Russia-affiliated entity, and is obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,03/03/2022,03/03/2022,04/03/2022,14209 +SHUVALOV,Igor,Ivanovich,,,,,ИгорЬ Иванович ШУВАЛОВ,,,04/01/1967,Bilibino,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0265 (UK Statement of Reasons):Igor Ivanovich SHUVALOV (hereafter referred to as SHUVALOV) is Chairman of the Management Board at Vnesheconombank (hereafter referred to as VEB.RF). VEB.RF is a state corporation established by the Government of Russia to function as the national development bank, and is owned or controlled directly by the Government of Russia. It is therefore a Government of Russia-affiliated entity. Therefore, as a result of his position as Chairman of the Management Board at VEB.RF, SHUVALOV is working as a director or equivalent at a Government of Russia-affiliated entity, and is obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,03/03/2022,03/03/2022,04/03/2022,14209 +SHUVALOV,Yevgeny,Igorovich,Zhenya,,,,,,,06/05/1993,,Russia,Russia,750758221,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0809 (UK Statement of Reasons):Evgeny Igorovich SHUVALOV is the son of Igor Ivanovich SHUVALOV (RUS0265), who has been designated by the UK since 3 March 2022, with whom he is closely associated and from whom he has obtained a financial benefit or other material benefit. Igor Ivanovich SHUVALOV is Chairman of the Management Board at Vnesheconombank (hereafter referred to as VEB.RF). VEB.RF is a state corporation established by the Government of Russia to function as the national development bank, and is owned or controlled directly by the Government of Russia. It is therefore a Government of Russia-affiliated entity. Therefore, as a result of his position as Chairman of the Management Board at VEB.RF, SHUVALOV is working as a director or equivalent at a Government of Russia-affiliated entity, and is obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,13/05/2022,14760 +SHUVALOV,Vadim,Nikolaevich,,,,,Шувалов Вадим Николаевич,,,17/02/1958,Kokhma,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0533 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14478 +SHUVALOVA,Maria,Igorevna,,,,,ШУВАЛОВА Мария Игоревна,Cyrillic,Russian,04/08/1998,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0810 (UK Statement of Reasons):Maria Igorevna SHUVALOVA is the daughter of Igor Ivanovich SHUVALOV (RUS0265), who has been designated by the UK since 3 March 2022, with whom she is closely associated and from whom she has obtained a financial benefit or other material benefit. Igor Ivanovich SHUVALOV is Chairman of the Management Board at Vnesheconombank (hereafter referred to as VEB.RF). VEB.RF is a state corporation established by the Government of Russia to function as the national development bank, and is owned or controlled directly by the Government of Russia. It is therefore a Government of Russia-affiliated entity. Therefore, as a result of his position as Chairman of the Management Board at VEB.RF, SHUVALOV is working as a director or equivalent at a Government of Russia-affiliated entity, and is obtaining a benefit from or supporting the Government of Russia. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,13/05/2022,14761 +SHUVALOVA,Olga,Viktorovna,,,,,ШУВАЛОВА Ольга Викторовна,Cyrillic,Russian,27/03/1966,,,Russia,514895091,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0811 (UK Statement of Reasons):Olga Viktorovna SHUVALOVA is the wife of Igor Ivanovich SHUVALOV (RUS0265), who has been designated by the UK since 3 March 2022, with whom she is closely associated and from whom she has obtained a financial benefit or other material benefit. Igor Ivanovich SHUVALOV is Chairman of the Management Board at Vnesheconombank (hereafter referred to as VEB.RF). VEB.RF is a state corporation established by the Government of Russia to function as the national development bank, and is owned or controlled directly by the Government of Russia. It is therefore a Government of Russia-affiliated entity. Therefore, as a result of his position as Chairman of the Management Board at VEB.RF, SHUVALOV is working as a director or equivalent at a Government of Russia-affiliated entity, and is obtaining a benefit from or supporting the Government of Russia. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14762 +SHVED,Andrei,Ivanavich,,,,,Андрей Иванович ШВЕД,,,21/04/1973,"Glushkovichi, Gomel/Homyel Oblast",former USSR (now Belarus),Belarus,,,,,Prosecutor General,,,,,,,,,"(UK Sanctions List Ref):BEL0084 (UK Statement of Reasons):In his position as Prosecutor General of Belarus, Andrei Shved is responsible for the ongoing repression of civil society and democratic opposition, and in particular the launching of numerous criminal proceedings against peaceful demonstrators, opposition leaders and journalists in the wake of the 2020 presidential elections. He has also made public statements declaring participants in ‘unauthorised rallies’ to be terrorists and threatening them with punishment. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14033 +SHVED,Andrei,Ivanovich,,,,,Андрэй Iванавiч ШВЕД,,,21/04/1973,"Glushkovichi, Gomel/Homyel Oblast",former USSR (now Belarus),Belarus,,,,,Prosecutor General,,,,,,,,,"(UK Sanctions List Ref):BEL0084 (UK Statement of Reasons):In his position as Prosecutor General of Belarus, Andrei Shved is responsible for the ongoing repression of civil society and democratic opposition, and in particular the launching of numerous criminal proceedings against peaceful demonstrators, opposition leaders and journalists in the wake of the 2020 presidential elections. He has also made public statements declaring participants in ‘unauthorised rallies’ to be terrorists and threatening them with punishment. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14033 +SHVIDLER,Eugene,Markovich,,,,,,,,23/03/1964,Ufa,Russia,(1) United States (2) United Kingdom,563074219,UK,,,"(1) Former Non-Executive Director, Evraz PLC (2) Former Chairman, Millhouse LLC",,,,,,,,,"(UK Sanctions List Ref):RUS1100 (UK Statement of Reasons):Eugene SHVIDLER is a business partner of Roman Arkadyevich ABRAMOVICH, with whom SHVIDLER has maintained a close relationship for decades and from whom he has obtained financial benefit. SHVIDLER is therefore associated with a person (Roman Arkadyevich ABRAMOVICH) who is involved in obtaining a benefit from or supporting the Government of Russia (1) by owning or controlling directly or indirectly: (i) Evraz plc; and (ii) the following subsidiaries of Evraz plc: JSC Evraz NTMK; PJSC Raspadskaya; JSC Evraz ZSMK; JSC Evraz United Coal Company Yuzhkuzbassugol; and JSC Evraz Kachkanar Mining and Processing Plant; and (2) by carrying on business in sectors of strategic significance to the Government of Russia, namely: extractives, construction, and transport. SHVIDLER is a former non-executive director of Evraz plc. As such, SHVIDLER has been involved in obtaining a benefit from or supporting the Government of Russia through working as a non-executive director of Evraz plc, an entity carrying on business in sectors of strategic significance to the Government of Russia, namely, the Russian extractives sector. (Gender):Male",Individual,Primary name,,Russia,24/03/2022,24/03/2022,11/11/2022,15043 +SHVIDLER,Evgeny,Markovich,,,,,,,,23/03/1964,Ufa,Russia,(1) United States (2) United Kingdom,563074219,UK,,,"(1) Former Non-Executive Director, Evraz PLC (2) Former Chairman, Millhouse LLC",,,,,,,,,"(UK Sanctions List Ref):RUS1100 (UK Statement of Reasons):Eugene SHVIDLER is a business partner of Roman Arkadyevich ABRAMOVICH, with whom SHVIDLER has maintained a close relationship for decades and from whom he has obtained financial benefit. SHVIDLER is therefore associated with a person (Roman Arkadyevich ABRAMOVICH) who is involved in obtaining a benefit from or supporting the Government of Russia (1) by owning or controlling directly or indirectly: (i) Evraz plc; and (ii) the following subsidiaries of Evraz plc: JSC Evraz NTMK; PJSC Raspadskaya; JSC Evraz ZSMK; JSC Evraz United Coal Company Yuzhkuzbassugol; and JSC Evraz Kachkanar Mining and Processing Plant; and (2) by carrying on business in sectors of strategic significance to the Government of Russia, namely: extractives, construction, and transport. SHVIDLER is a former non-executive director of Evraz plc. As such, SHVIDLER has been involved in obtaining a benefit from or supporting the Government of Russia through working as a non-executive director of Evraz plc, an entity carrying on business in sectors of strategic significance to the Government of Russia, namely, the Russian extractives sector. (Gender):Male",Individual,Primary name variation,,Russia,24/03/2022,24/03/2022,11/11/2022,15043 +SHVYTKIN,Yury,Nikolaevich,,,,,Швыткин Юрий Николаевич,,,24/05/1965,Krasnoyarsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0529 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14474 +SHYPITSYN,Andrei,,,,,,Андрій Шипіцин,,,25/12/1969,Astrakhan,Russia (USSR),Russia,,,,,Commander of the Border Patrol Boat ‘Izumrud’,,,,,,,,,"(UK Sanctions List Ref):RUS0214 (UK Statement of Reasons):Commander of the border partrol boat “Izumrud”, 3rd rank captain of the FSB Border Guard Service. He commanded the ship, which participated in the actions of the Russian Federation against Ukrainian ships and their crews on 25 November 2018. This includes actively participation in the blockade of tugboat “Yani Kapu”, firing on the ‘Berdyyansk’ and seizure of Ukrainian boats ‘Yani Kapu’, ‘Nikopol’ and ‘Berdyansk' and detaining their crew and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,15/03/2019,31/12/2020,16/09/2022,13781 +SHYPITSYN,Andrii,,,,,(1) Captain 3rd Rank (2) Captain 2nd Rank,Андрей Шипицин,,,25/12/1969,Astrakhan,Russia (USSR),Russia,,,,,Commander of the Border Patrol Boat ‘Izumrud’,,,,,,,,,"(UK Sanctions List Ref):RUS0214 (UK Statement of Reasons):Commander of the border partrol boat “Izumrud”, 3rd rank captain of the FSB Border Guard Service. He commanded the ship, which participated in the actions of the Russian Federation against Ukrainian ships and their crews on 25 November 2018. This includes actively participation in the blockade of tugboat “Yani Kapu”, firing on the ‘Berdyyansk’ and seizure of Ukrainian boats ‘Yani Kapu’, ‘Nikopol’ and ‘Berdyansk' and detaining their crew and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2019,31/12/2020,16/09/2022,13781 +SIAL,Abdul,Samad,,,,,,,,00/00/1977,"Chak number 36/DNB, Rajkan, Madina Colony, Bahawalpur District, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0224 (UN Ref):QDi.296 Physical description: 5 feet 2 inches; 157,4 cm. Name of father: Ali Muhammad. Mati ur-Rehman is the chief operational commander of Lashkar i Jhangvi (LJ) (QDe.096). Associated with Harakat-ul Jihad Islami (QDe.130). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4674457",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,02/09/2011,22/08/2011,31/12/2020,12038 +SIAL,Samad,,,,,,,,,00/00/1977,"Chak number 36/DNB, Rajkan, Madina Colony, Bahawalpur District, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0224 (UN Ref):QDi.296 Physical description: 5 feet 2 inches; 157,4 cm. Name of father: Ali Muhammad. Mati ur-Rehman is the chief operational commander of Lashkar i Jhangvi (LJ) (QDe.096). Associated with Harakat-ul Jihad Islami (QDe.130). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4674457",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,02/09/2011,22/08/2011,31/12/2020,12038 +SIARHEENKA,Igor,Petrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13920 +SIARHEENKA,Igor,Petrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13920 +SIARHEENKA,Igor,Piatrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13920 +SIARHEENKA,Igor,Piatrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13920 +SIARHEENKA,Ihar,Petrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13920 +SIARHEENKA,Ihar,Petrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13920 +SIARHEENKA,Ihar,Piatrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,04/02/2022,13920 +SIARHEENKA,Ihar,Piatrovich,,,,,,,,14/01/1963,"Stolitsa, Vitebsk/Viciebsk region",Former USSR Currently Belarus,Belarus,,,,,"Chief of Staff to the President of Belarus, also known as Head of the Presidential Administration",,,,,,,,,"(UK Sanctions List Ref):BEL0046 and GHR0052 Listed under the Belarus and Global Human Rights sanctions regimes. Former First Deputy Head of the KGB. Former Head of the KGB of the Mogilev/Mohilev region. (UK Statement of Reasons):Igor Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, including serious human rights violations, the repression of civil society or democratic opposition in Belarus and actions and policies or activities which undermine democracy or the rule of law in Belarus. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to serious human rights violations. Igor Petrovich Sergeenko is the Chief of Staff to the President of Belarus, Alexander Lukashenko, also known as the Head of the Presidential Administration of Belarus. In this role, Sergeenko has significant influence over the Belarusian authorities’ response to the post-election protests, which included subjecting detainees to cruel, inhuman and degrading treatment or torture. Sergeenko also plays an important coordinating role over state bodies, including the working relationship between the President and the Belarusian Ministry of the Interior and its internal security forces, which are responsible for treatment amounting to CIDT or torture of detainees. (Gender):Male",Individual,Primary name variation,,Global Human Rights,29/09/2020,29/09/2020,04/02/2022,13920 +SIBAI,Yaser,,,,,,,,,,,,,,,,,Former Minsiter of Public Works,,,,,,,,,(UK Sanctions List Ref):SYR0239 (UK Statement of Reasons):Former Minister of Public Works. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12776 +SIBAI,Yasser,,,,,,,,,,,,,,,,,Former Minsiter of Public Works,,,,,,,,,(UK Sanctions List Ref):SYR0239 (UK Statement of Reasons):Former Minister of Public Works. As a former Government Minister shares responsibility for the regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,31/12/2020,12776 +SIDDIQMAL,Mohammad,Sarwar,,,,,,,,00/00/1963,"Jani Khel District, Paktia Province",Afghanistan,Afghanistan,,,19657,(Afghan) (tazkira),"Third Secretary, Taliban Embassy, Islamabad, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0096 (UN Ref):TAi.126 Belongs to Mangal tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7455 +SIDI,Souleymane Bi,,,,,,,,,20/07/1962,Bocaranga,Central African Republic,Central African Republic,N°235/MISPAT/DIRCAB/DGPC/DGAEI/SI/SP,(laissez-Passer) issued on 15 Mar. 2019 (issued by the Minister of Interior of the Central African Republic ),,,"President and self-proclaimed “general” of the Retour, Réclamation et Réhabilitation (3R)",,,,,Koui,Ouham-Pendé prefecture,,Central African Republic,"(UK Sanctions List Ref):CAF0015 (UN Ref):CFi.014 Bi Sidi Souleman leads the Central African Republic (CAR)-based militia group Retour, Réclamation, Réhabilitation (3R) which has killed, tortured, raped, and displaced civilians and engaged in arms trafficking, illegal taxation activities, and warfare with other militias since its creation in 2015. Bi Sidi Souleman himself has also participated in torture. On 6 February 2019, 3R signed the Political Agreement for Peace and Reconciliation in the CAR but has engaged in acts violating the Agreement and remains a threat to the peace, stability and security of the CAR. For instance, on 21 May 2019, 3R killed 34 unarmed civilians in three villages, summarily executing adult males. Bi Sidi Souleman openly confirmed to a UN Entity that he had ordered 3R elements to the villages on the date of the attacks, but did not admit to giving the orders for 3R to kill. In December 2020, after having joined a coalition of armed groups established to disrupt the electoral process, Bi Sidi Souleman was reportedly killed during fighting. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Central African Republic,06/08/2020,05/08/2020,25/02/2021,13912 +SIDIKI,,,,,,,,,,20/07/1962,Bocaranga,Central African Republic,Central African Republic,N°235/MISPAT/DIRCAB/DGPC/DGAEI/SI/SP,(laissez-Passer) issued on 15 Mar. 2019 (issued by the Minister of Interior of the Central African Republic ),,,"President and self-proclaimed “general” of the Retour, Réclamation et Réhabilitation (3R)",,,,,Koui,Ouham-Pendé prefecture,,Central African Republic,"(UK Sanctions List Ref):CAF0015 (UN Ref):CFi.014 Bi Sidi Souleman leads the Central African Republic (CAR)-based militia group Retour, Réclamation, Réhabilitation (3R) which has killed, tortured, raped, and displaced civilians and engaged in arms trafficking, illegal taxation activities, and warfare with other militias since its creation in 2015. Bi Sidi Souleman himself has also participated in torture. On 6 February 2019, 3R signed the Political Agreement for Peace and Reconciliation in the CAR but has engaged in acts violating the Agreement and remains a threat to the peace, stability and security of the CAR. For instance, on 21 May 2019, 3R killed 34 unarmed civilians in three villages, summarily executing adult males. Bi Sidi Souleman openly confirmed to a UN Entity that he had ordered 3R elements to the villages on the date of the attacks, but did not admit to giving the orders for 3R to kill. In December 2020, after having joined a coalition of armed groups established to disrupt the electoral process, Bi Sidi Souleman was reportedly killed during fighting. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Central African Republic,06/08/2020,05/08/2020,25/02/2021,13912 +SIDIKI,,,,,,General,,,,20/07/1962,Bocaranga,Central African Republic,Central African Republic,N°235/MISPAT/DIRCAB/DGPC/DGAEI/SI/SP,(laissez-Passer) issued on 15 Mar. 2019 (issued by the Minister of Interior of the Central African Republic ),,,"President and self-proclaimed “general” of the Retour, Réclamation et Réhabilitation (3R)",,,,,Koui,Ouham-Pendé prefecture,,Central African Republic,"(UK Sanctions List Ref):CAF0015 (UN Ref):CFi.014 Bi Sidi Souleman leads the Central African Republic (CAR)-based militia group Retour, Réclamation, Réhabilitation (3R) which has killed, tortured, raped, and displaced civilians and engaged in arms trafficking, illegal taxation activities, and warfare with other militias since its creation in 2015. Bi Sidi Souleman himself has also participated in torture. On 6 February 2019, 3R signed the Political Agreement for Peace and Reconciliation in the CAR but has engaged in acts violating the Agreement and remains a threat to the peace, stability and security of the CAR. For instance, on 21 May 2019, 3R killed 34 unarmed civilians in three villages, summarily executing adult males. Bi Sidi Souleman openly confirmed to a UN Entity that he had ordered 3R elements to the villages on the date of the attacks, but did not admit to giving the orders for 3R to kill. In December 2020, after having joined a coalition of armed groups established to disrupt the electoral process, Bi Sidi Souleman was reportedly killed during fighting. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Central African Republic,06/08/2020,05/08/2020,25/02/2021,13912 +SIDORENKO,Valeriy,Valeryevich,,,,,Валерий Валерьевич Сидоренко,Cyrillic,Russian,22/06/1972,Bishkek,Kyrgyzstan,Russia,,,,,Member of VTB Bank's Supervisory Board,,,,,,,,,"(UK Sanctions List Ref):RUS1641 (UK Statement of Reasons):Valeriy Valeryevich Sidorenko is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by:(1) working as a director or manager of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely VTB Bank PJSC which carries on business in the Russian financial services sector; (2) working as a director or manager of a Government of Russia-affiliated entity, namely VTB Bank PJSC which is owned or controlled directly by the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15585 +SIDORENKO,Valery,Valeryevich,,,,,,,,22/06/1972,Bishkek,Kyrgyzstan,Russia,,,,,Member of VTB Bank's Supervisory Board,,,,,,,,,"(UK Sanctions List Ref):RUS1641 (UK Statement of Reasons):Valeriy Valeryevich Sidorenko is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by:(1) working as a director or manager of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely VTB Bank PJSC which carries on business in the Russian financial services sector; (2) working as a director or manager of a Government of Russia-affiliated entity, namely VTB Bank PJSC which is owned or controlled directly by the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15585 +SIDOROV,Anatoliy,Alekseevich,,,,,,,,02/07/1958,"Siva, Perm region",,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0135 (UK Statement of Reasons):Former Commander of Russia's Western Military District, units of which are deployed in Crimea. He is responsible for part of the Russian military presence in Crimea which is undermining the sovereignty of the Ukraine and assisted the Crimean authorities in preventing public demonstrations against moves towards a referendum and incorporation into Russia. Since November 2015 Chief of the Joint Staff of the Collective Security Treaty organisation (CSTO). (Gender):Male",Individual,Primary name,,Russia,18/03/2014,31/12/2020,31/12/2020,12931 +SIDOROV,Dmitry,Sergeevich,,,,,СИДОРОВ Дмитрий Сергеевич,Cyrillic,Russian,02/09/1989,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1164 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15116 +SIGIDINA,Oksana,Viktorovna,,,,,СИГИДИНА Оксана Викторовна,Cyrillic,Russian,17/08/1976,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1210 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15162 +SIGMA AIRLINES,,,,,,,,,,,,,,,,,,,Markov Str. 11,,,,,Almaty,,Kazakhstan,"(UK Sanctions List Ref):LIB0068 (UK Statement of Reasons):There are reasonable grounds to suspect that Sigma Airlines is a Kazakhstan based air company that operates cargo aircraft transporting military equipment to Libya in violation of the UN arms embargo established in UNSCR 1970 (2011). By assisting the contravention or circumvention UNSCR 1970 (2011), Sigma Airlines was involved in an activity which threatens the peace, stability and security of Libya, and undermines its transition to a democratic, peaceful and independent country. (Phone number):772793000000 (Website):https://airsigma.pro/ (Type of entity):Airline company",Entity,Primary name,,Libya,21/09/2020,31/12/2020,19/01/2021,13915 +SIGMA AVIATION,,,,,,,,,,,,,,,,,,,Markov Str. 11,,,,,Almaty,,Kazakhstan,"(UK Sanctions List Ref):LIB0068 (UK Statement of Reasons):There are reasonable grounds to suspect that Sigma Airlines is a Kazakhstan based air company that operates cargo aircraft transporting military equipment to Libya in violation of the UN arms embargo established in UNSCR 1970 (2011). By assisting the contravention or circumvention UNSCR 1970 (2011), Sigma Airlines was involved in an activity which threatens the peace, stability and security of Libya, and undermines its transition to a democratic, peaceful and independent country. (Phone number):772793000000 (Website):https://airsigma.pro/ (Type of entity):Airline company",Entity,AKA,,Libya,21/09/2020,31/12/2020,19/01/2021,13915 +SIK,Choe,Chun,,,,,,,,12/10/1954,,,,,,,,(1) Former director of the Second Academy of Natural Sciences (SANS). (2) Former head of the DPRK’s long-range missile program.,,,,,,,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0205 (UN Ref):KPi.013 Choe Chun-sik was the director of the Second Academy of Natural Sciences (SANS) and was the head of the DPRK’s long-range missile program.,Individual,AKA,Good quality,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13324 +SIK,Ch'oe,Ch'un,,,,,,,,12/10/1954,,,,,,,,(1) Former director of the Second Academy of Natural Sciences (SANS). (2) Former head of the DPRK’s long-range missile program.,,,,,,,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0205 (UN Ref):KPi.013 Choe Chun-sik was the director of the Second Academy of Natural Sciences (SANS) and was the head of the DPRK’s long-range missile program.,Individual,AKA,Good quality,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13324 +SIKORSKI,Artem,Igorevich,,,,,,,,00/00/1983,"Soligorsk, Minsk region/Oblast",Belarus,Belarus,,,,,Director for the Aviation Department of the Ministry of Transport and Communication,,,,,,,,,"(UK Sanctions List Ref):BEL0101 (UK Statement of Reasons):In his capacity as Director of the Aviation Department at the Ministry of Transport and Communication of the Republic of Belarus, Artsiom Sikorski is responsible for the state management in the sphere of civil aviation and supervision of air traffic control. He is therefore responsible for the forced redirection and landing of Ryanair passenger flight FR4978 at Minsk airport, without proper justification, on 23 May 2021. In doing so, Sikorski acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian Ministry of Defence. These politically motivated decisions were aimed at detaining and arresting the opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega and are a form of repression against civil society and democratic opposition in Belarus. Therefore, Artsiom Sikorski is responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14120 +SIKORSKI,Artsiom,Igaravich,,,,,Арцём Ігаравіч Сікорскі,,,00/00/1983,"Soligorsk, Minsk region/Oblast",Belarus,Belarus,,,,,Director for the Aviation Department of the Ministry of Transport and Communication,,,,,,,,,"(UK Sanctions List Ref):BEL0101 (UK Statement of Reasons):In his capacity as Director of the Aviation Department at the Ministry of Transport and Communication of the Republic of Belarus, Artsiom Sikorski is responsible for the state management in the sphere of civil aviation and supervision of air traffic control. He is therefore responsible for the forced redirection and landing of Ryanair passenger flight FR4978 at Minsk airport, without proper justification, on 23 May 2021. In doing so, Sikorski acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian Ministry of Defence. These politically motivated decisions were aimed at detaining and arresting the opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega and are a form of repression against civil society and democratic opposition in Belarus. Therefore, Artsiom Sikorski is responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name,,Belarus,21/06/2021,21/06/2021,21/06/2021,14120 +SIKORSKIY,Artem,Igorevich,,,,,Артем Игоревич Сикорский,,,00/00/1983,"Soligorsk, Minsk region/Oblast",Belarus,Belarus,,,,,Director for the Aviation Department of the Ministry of Transport and Communication,,,,,,,,,"(UK Sanctions List Ref):BEL0101 (UK Statement of Reasons):In his capacity as Director of the Aviation Department at the Ministry of Transport and Communication of the Republic of Belarus, Artsiom Sikorski is responsible for the state management in the sphere of civil aviation and supervision of air traffic control. He is therefore responsible for the forced redirection and landing of Ryanair passenger flight FR4978 at Minsk airport, without proper justification, on 23 May 2021. In doing so, Sikorski acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian Ministry of Defence. These politically motivated decisions were aimed at detaining and arresting the opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega and are a form of repression against civil society and democratic opposition in Belarus. Therefore, Artsiom Sikorski is responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14120 +SIKORSKIY,Artsiom,Igaravich,,,,,,,,00/00/1983,"Soligorsk, Minsk region/Oblast",Belarus,Belarus,,,,,Director for the Aviation Department of the Ministry of Transport and Communication,,,,,,,,,"(UK Sanctions List Ref):BEL0101 (UK Statement of Reasons):In his capacity as Director of the Aviation Department at the Ministry of Transport and Communication of the Republic of Belarus, Artsiom Sikorski is responsible for the state management in the sphere of civil aviation and supervision of air traffic control. He is therefore responsible for the forced redirection and landing of Ryanair passenger flight FR4978 at Minsk airport, without proper justification, on 23 May 2021. In doing so, Sikorski acted at the direction of Alexander Lukashenko and in conjunction with the Belarusian Ministry of Defence. These politically motivated decisions were aimed at detaining and arresting the opposition journalist and civil society actor Roman Protasevich and Protasevich’s partner Sofia Sapega and are a form of repression against civil society and democratic opposition in Belarus. Therefore, Artsiom Sikorski is responsible for the repression of civil society and democratic opposition in Belarus and so undermined democracy and the rule of law there. (Gender):Male",Individual,Primary name variation,,Belarus,21/06/2021,21/06/2021,21/06/2021,14120 +SILCHENKO,Oleg,F.,,,,,,,,25/06/1977,Samarkand,Uzbekistan,Russia,,,,,Investigator in the Investigative Committee,,,,,,,,,"(UK Sanctions List Ref):GHR0003 (UK Statement of Reasons):Oleg Silchenko was an investigator in the Investigative Committee of the Russian Interior Ministry and was directly involved in the mistreatment of Sergei Magnitsky whilst in detention, which contributed significantly to his death on 16 November 2009. Silchenko made six applications to extend Magnitsky’s detention period (despite his deteriorating medical condition), refused Magnitsky access to his family and engaged in the oppressive questioning and other mistreatment of Magnitsky to pressurise him to retract his allegations of corruption against Interior Ministry officials. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,11/11/2022,13854 +SILSALAT AL DHAB,,,,,,,,,,,,,,,,,,,Al-Abbas Street,Karbala,,,,,,Iraq,"(UK Sanctions List Ref):AQD0076 (UN Ref):QDe.154 Money exchange business facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), as of Apr. 2016. Conducted over one hundred financial transfers into ISIL-controlled territory. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116598",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13512 +SILSALAT AL DHAB,,,,,,,,,,,,,,,,,,,Al-Kadhumi Complex,Al-Harthia,,,,Baghdad,,Iraq,"(UK Sanctions List Ref):AQD0076 (UN Ref):QDe.154 Money exchange business facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), as of Apr. 2016. Conducted over one hundred financial transfers into ISIL-controlled territory. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116598",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13512 +SILSILAH MONEY EXCHANGE COMPANY,,,,,,,,,,,,,,,,,,,Al-Abbas Street,Karbala,,,,,,Iraq,"(UK Sanctions List Ref):AQD0076 (UN Ref):QDe.154 Money exchange business facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), as of Apr. 2016. Conducted over one hundred financial transfers into ISIL-controlled territory. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116598",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13512 +SILSILAH MONEY EXCHANGE COMPANY,,,,,,,,,,,,,,,,,,,Al-Kadhumi Complex,Al-Harthia,,,,Baghdad,,Iraq,"(UK Sanctions List Ref):AQD0076 (UN Ref):QDe.154 Money exchange business facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), as of Apr. 2016. Conducted over one hundred financial transfers into ISIL-controlled territory. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116598",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13512 +SILSILAT MONEY EXCHANGE COMPANY,,,,,,,,,,,,,,,,,,,Al-Abbas Street,Karbala,,,,,,Iraq,"(UK Sanctions List Ref):AQD0076 (UN Ref):QDe.154 Money exchange business facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), as of Apr. 2016. Conducted over one hundred financial transfers into ISIL-controlled territory. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116598",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13512 +SILSILAT MONEY EXCHANGE COMPANY,,,,,,,,,,,,,,,,,,,Al-Kadhumi Complex,Al-Harthia,,,,Baghdad,,Iraq,"(UK Sanctions List Ref):AQD0076 (UN Ref):QDe.154 Money exchange business facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), as of Apr. 2016. Conducted over one hundred financial transfers into ISIL-controlled territory. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116598",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13512 +SILSILET AL THAHAB,,,,,,,,,,,,,,,,,,,Al-Abbas Street,Karbala,,,,,,Iraq,"(UK Sanctions List Ref):AQD0076 (UN Ref):QDe.154 Money exchange business facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), as of Apr. 2016. Conducted over one hundred financial transfers into ISIL-controlled territory. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116598",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13512 +SILSILET AL THAHAB,,,,,,,,,,,,,,,,,,,Al-Kadhumi Complex,Al-Harthia,,,,Baghdad,,Iraq,"(UK Sanctions List Ref):AQD0076 (UN Ref):QDe.154 Money exchange business facilitating the movement of funds on behalf of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), as of Apr. 2016. Conducted over one hundred financial transfers into ISIL-controlled territory. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116598",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13512 +SIMANIENKA,Siarhiej,,,,,,Сяргей Сіманенка,,,02/04/1968,"Kostyukovichi, Mogilyov Region",Belarus,Belarus,,,,,(1) Deputy Minister of Defence for Armament (2) Chief of Armament,Ministry of Defence of the Republic of Belarus,1 Kommunisticheskaya St,,,,Minsk,220034,Belarus,"(UK Sanctions List Ref):RUS0259 (UK Statement of Reasons):As Deputy Minister of Defence for Armament and Chief of Armament of the Belarusian Armed Forces, Major General Sergei Simonenko is an active and senior military leader in Belarus and, as part of the top-level chain of command, is responsible for directing the actions of the Belarusian armed forces, which have supported and enabled Russia’s invasion of Ukraine. The Belarusian armed forces have conducted joint military exercises with Russian armed forces, and also consented to the deployment of Russian troops along the border of Belarus with Ukraine, which has directly contributed to Russia’s ability to both threaten and attack Ukraine, including from positions in Belarus. Simonenko therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14205 +SIMANOVSKY,Leonid,Yakovlevich,,,,,Симановский Леонид Яковлевич,,,19/07/1949,Kuibyshev/Samara,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0638 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14583 +SIMATEC DEVELOPMENT COMPANY,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0117 (UK Statement of Reasons):Simatec Development Company has procured frequency inverters used to power uranium enrichment centrigues for UN designated Kalaye Electric Company (KEC).,Entity,Primary name,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12819 +SIMATIC,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0117 (UK Statement of Reasons):Simatec Development Company has procured frequency inverters used to power uranium enrichment centrigues for UN designated Kalaye Electric Company (KEC).,Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12819 +SIMIGIN,Pavel,Vladimirovich,,,,,Симигин Павел Владимирович,,,26/07/1968,"Komsomolsk-on-Amur, Khabarovsk",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0602 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14547 +SIMONENKO,Sergei,,,,,Major General,Сергей Симоненко,,,02/04/1968,"Kostyukovichi, Mogilyov Region",Belarus,Belarus,,,,,(1) Deputy Minister of Defence for Armament (2) Chief of Armament,Ministry of Defence of the Republic of Belarus,1 Kommunisticheskaya St,,,,Minsk,220034,Belarus,"(UK Sanctions List Ref):RUS0259 (UK Statement of Reasons):As Deputy Minister of Defence for Armament and Chief of Armament of the Belarusian Armed Forces, Major General Sergei Simonenko is an active and senior military leader in Belarus and, as part of the top-level chain of command, is responsible for directing the actions of the Belarusian armed forces, which have supported and enabled Russia’s invasion of Ukraine. The Belarusian armed forces have conducted joint military exercises with Russian armed forces, and also consented to the deployment of Russian troops along the border of Belarus with Ukraine, which has directly contributed to Russia’s ability to both threaten and attack Ukraine, including from positions in Belarus. Simonenko therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,01/03/2022,01/03/2022,01/03/2022,14205 +SIMONYAN,Margarita,Simonovna,,,,,СИМОНЯН Маргарита Симоновна,Cyrillic,Russian,06/04/1980,Krasnodar,Russia,Russia,,,,,"(1) Editor-in-chief, Rossiya Segodnya media group (2) Editor-in-chief, RT",,,,,,,,,"(UK Sanctions List Ref):RUS0702 (UK Statement of Reasons):Margarita Simonyan is the editor of two of Russia’s most significant news organisations.  In numerous broadcasts and interviews she has supported or promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14653 +SIN,Kyu,Nam,,,,,,,,12/09/1972,Pyongyang,North Korea,North Korea,PO472132950,,,,Director in the reinsurance department of Korea National Insurance Corporation (KNIC) Headquarters in Pyongyang,,,,,,,,,"(UK Sanctions List Ref):DPR0034 Associations with Korea National Insurance Corporation (KNIC) (UK Statement of Reasons):Director in the reinsurance department of Korea National Insurance Corporation (KNIC) based in the headquarters in Pyongyang and former authorised representative of KNIC in Hamburg, acting on behalf of KNIC or at its direction. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,03/07/2015,31/12/2020,31/12/2020,13258 +SIN,Kyu-Nam,,,,,Director,,,,12/09/1972,Pyongyang,North Korea,North Korea,PO472132950,,,,Director in the reinsurance department of Korea National Insurance Corporation (KNIC) Headquarters in Pyongyang,,,,,,,,,"(UK Sanctions List Ref):DPR0034 Associations with Korea National Insurance Corporation (KNIC) (UK Statement of Reasons):Director in the reinsurance department of Korea National Insurance Corporation (KNIC) based in the headquarters in Pyongyang and former authorised representative of KNIC in Hamburg, acting on behalf of KNIC or at its direction. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,03/07/2015,31/12/2020,31/12/2020,13258 +SIN HUNG,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0110 Pursuant to paragraphs 8(d) of Security Council resolution 1718 (2006) and 12 of Security Council resolution 2270 (2016) as economic resources of designated entities. DPRK cargo vessel M/V HAP JANG GANG 6 is owned by Hapjanggang Shipping Corp and is believed to have been involved in illicit transfers of prohibited DPRK goods. Listed as asset of Hapjanggang Shipping Corp, (OFSI ID: 13629, UN Reference Number: UN Ref KPe.058) (IMO number):9066540 (Current owners):Hapjanggang Shipping Corp (Flag of ship):North Korea (Previous flags):Cambodia (Type of ship):General Cargo / Multi Purpose (Tonnage of ship):1497 (Length of ship):75 (Year built):1993",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13661 +SINAN,,,,,,,,,,13/10/1976,Pülümür,Turkey,Turkey,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0012,Individual,AKA,,Counter-Terrorism (International),23/12/2016,31/12/2020,31/12/2020,13444 +SINDHI,Abdullah,,,,,,عبدالله السندي,,,03/10/1965,Mirpur Khas,Pakistan,Pakistan,CV9157521,"Pakistan number, issued on 8 Sep. 2008, expires on 7 Sep. 2013.",44103-5251752-5,Pakistan national identity card number,,,,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0112 (UN Ref):QDi.309 Has provided facilitation and financial services to Al-Qaida (QDe.004). Associated with Harakatul Jihad Islami (QDe.130), Jaish-I-Mohammed (QDe.019), and Al-Akhtar Trust International (QDe.121). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040885",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,31/12/2020,12632 +SINDHI,Abdul Rehman,,,,,,عبد الرحمن السيندي,,,03/10/1965,Mirpur Khas,Pakistan,Pakistan,CV9157521,"Pakistan number, issued on 8 Sep. 2008, expires on 7 Sep. 2013.",44103-5251752-5,Pakistan national identity card number,,,,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0112 (UN Ref):QDi.309 Has provided facilitation and financial services to Al-Qaida (QDe.004). Associated with Harakatul Jihad Islami (QDe.130), Jaish-I-Mohammed (QDe.019), and Al-Akhtar Trust International (QDe.121). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040885",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,31/12/2020,12632 +SINDHI,Abdur Rehman,,,,,,عبد الرحمن السيندي,,,03/10/1965,Mirpur Khas,Pakistan,Pakistan,CV9157521,"Pakistan number, issued on 8 Sep. 2008, expires on 7 Sep. 2013.",44103-5251752-5,Pakistan national identity card number,,,,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0112 (UN Ref):QDi.309 Has provided facilitation and financial services to Al-Qaida (QDe.004). Associated with Harakatul Jihad Islami (QDe.130), Jaish-I-Mohammed (QDe.019), and Al-Akhtar Trust International (QDe.121). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040885",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,31/12/2020,12632 +SINDHI,Abdurahman,,,,,,عبد الرحمن السيندي,,,03/10/1965,Mirpur Khas,Pakistan,Pakistan,CV9157521,"Pakistan number, issued on 8 Sep. 2008, expires on 7 Sep. 2013.",44103-5251752-5,Pakistan national identity card number,,,,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0112 (UN Ref):QDi.309 Has provided facilitation and financial services to Al-Qaida (QDe.004). Associated with Harakatul Jihad Islami (QDe.130), Jaish-I-Mohammed (QDe.019), and Al-Akhtar Trust International (QDe.121). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040885",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,31/12/2020,12632 +SINELIN,Mikhail,Anatolyevich,,,,,Михаил Анатолевич СИНЕЛИН,Cyrillic,Russian,24/11/1959,"Reutov, Moscow Oblast",Russia,Russia,,,772805709397,,"(1) Cofounder of Newsfront (2) Deputy Chairman of the State Corporation “Bank for Development and Foreign Economic activity” (3) Fmr. Head of the Secretariat of the First Deputy Prime Minister of the Russian Federation (4) Fmr. First Deputy Chief of Staff of the government of the Russian Federation (5) Fmr. General Director of United Services Company, LLC",,,,,,,,,"(UK Sanctions List Ref):RUS1500 (UK Statement of Reasons):Mikhail SINELIN (hereafter referred to as SINELIN) is the co-founder and 50% shareholder of Newsfront. Newsfront is a Russian news organisation known for publishing disinformation about the war against Ukraine, thus supporting and promoting actions which destabilise Ukraine. By virtue of his role as the co-founder and 50% shareholder of Newsfront, SINELIN is engaged in and/or supporting and/or promoting the company which, through its actions, is involved in destabilising Ukraine. (Gender):Male",Individual,Primary name,,Russia,04/07/2022,04/07/2022,04/07/2022,15440 +SINELSHCHIKOV,Yury,Petrovich,,,,,Синельщиков Юрий Петрович,,,26/09/1947,"Bogucharovo, Aleksinsky district, Tula region",Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0285 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14230 +SINGWANG ECONOMICS AND TRADING GENERAL CORPORATION,,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,(UK Sanctions List Ref):DPR0193 (UN Ref):KPe.036 Singwang Economics and Trading General Corporation is a DPRK firm for trading in coal. DPRK generates a significant share of the money for its nuclear and ballistic missile programs by mining natural resources and selling those resources abroad.,Entity,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,16/09/2022,13427 +SINITSYN,Aleksei,Vladimirovich,,,,,Алексей Владимирович СИНИЦЫН,,,13/01/1976,Kemerovo,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0901 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14852 +SINS AVIA TRADING HOUSE LLC,,,,,,,"ОО ""ТОРГОВЫЙ ДОМ ""СИНС АВИА""",,Russian,,,,,,,,,,"5, литера А",Ulitsa Dzerzhinskogo,Krasnodar,,,Krasnodar Krai,350020,Russia,"(UK Sanctions List Ref):MYA0047 (UK Statement of Reasons):The Myanmar Armed Forces have a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. SINS AVIA Trading House LLC is a Russian company which has responsible for the supply of parts and upkeep of aircraft for the Myanmar Armed Forces since the coup in February 2021. Therefore, SINS AVIA Trading House LLC has been and is involved in the supply of restricted goods to Myanmar. (Phone number):+7 988 247-22-23 (Website):https://cns-aviation.ru/ (Email address):office@cns-aviation.ru (Type of entity):Private Business (Business Reg No):1192375000894",Entity,Primary name,,Myanmar,16/06/2022,16/06/2022,24/06/2022,15401 +SIPYAGIN,Vladimir,Vladimirovich,,,,,Владимир Владимирович Сипягин,,,19/02/1970,Kharkiv,Ukraine,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0686 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14637 +SIRAT,,,,,,,,,,,,,,,,,,,30a Put Mladih Muslimana (ex Pavla Lukaca Street),,,,,Sarajevo,71 000,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +SIRAT,,,,,,,,,,,,,,,,,,,42 Muhameda Hadzijahica,,,,,Sarajevo,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +SIRAT,,,,,,,,,,,,,,,,,,,70 and 53 Strosmajerova Street,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +SIRAT,,,,,,,,,,,,,,,,,,,72 ul. Strossmajerova,,,,,Zenica,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +SIRAT,,,,,,,,,,,,,,,,,,,Zlatnih Ljiljana Street,,,,,Zavidovici,,Bosnia and Herzegovina,(UK Sanctions List Ref):AQD0005 (UN Ref):QDe.107 Registered in Bosnia and Herzegovina as a citizens’ association under the name of “Citizens’ Association for Support and Prevention of lies – Furqan” on 26 Sep. 1997. Al Furqan ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision number 03-054-286/97 dated 8 Nov. 2002). Al Furqan was no longer in existence as at Dec. 2008. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235578,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,12/01/2022,8360 +SIREGAR,Parlin,,,,,,,,,25/04/1957,,Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0285 (UN Ref):QDi.122 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7838 +SIREGAR,Parlin,,,,,,,,,25/04/1967,,Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0285 (UN Ref):QDi.122 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7838 +SIREGAR,Saleh,Parlindungan,,,,,,,,25/04/1957,,Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0285 (UN Ref):QDi.122 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7838 +SIREGAR,Saleh,Parlindungan,,,,,,,,25/04/1967,,Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0285 (UN Ref):QDi.122 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7838 +SIREGAR,PARLINDUNGAN,,,,,,,,,25/04/1957,,Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0285 (UN Ref):QDi.122 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7838 +SIREGAR,PARLINDUNGAN,,,,,,,,,25/04/1967,,Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0285 (UN Ref):QDi.122 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7838 +SIRHAN,Hala,,,,,,ﻫﺎﻟﺔ ﺳﺮﺣﺎﻥ,,,05/01/1953,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0062 (UK Statement of Reasons):Dr Hala Sirhan works with Syrian Military Intelligence at the Syrian Scientific Studies and Research Centre. She operated in Institute 3000, which is involved in chemical weapons proliferation. She is associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Female",Individual,Primary name,,Syria,18/07/2017,31/12/2020,31/12/2020,13508 +SIRHAN,Halah,,,,,,,,,05/01/1953,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0062 (UK Statement of Reasons):Dr Hala Sirhan works with Syrian Military Intelligence at the Syrian Scientific Studies and Research Centre. She operated in Institute 3000, which is involved in chemical weapons proliferation. She is associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Female",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,31/12/2020,13508 +SIROVATKO,Yuriy,Nikolaevich,,,,,СИРОВАТКО Юрий Николаевич,Cyrillic,Russian,17/04/1978,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1153 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15105 +SIROVATKO,Yury,Nikolaevich,,,,,,,,17/04/1978,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1153 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15105 +SITNIKOV,Alexey,Vladimirovich,,,,,Алексей Владимирович Ситников,,,19/06/1971,"Krasnoe-on-Volga, Kostroma region",Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0639 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14584 +SIVAK,Anatol,Aliaksandravich,,,,,Анатоль Аляксандравiч СIВАК,,,19/07/1962,"Zavoit, Narovlya District, Gomel/Homyel Oblast",former USSR (now Belarus),Belarus,,,,,(1) Deputy Prime Minister (2) Former Chairman of the Minsk City Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0086 (UK Statement of Reasons):As Chairman of the Minsk City Executive Committee, Anatoli Sivak was responsible for the repression and intimidation campaign run by the state security apparatus in Minsk under his oversight in the wake of the 2020 presidential election, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. He made numerous public statements criticising peaceful protests taking place in Belarus. In his current leadership position as Deputy Prime Minister he continues to support the repressive activities of the Lukashenko regime. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14021 +SIVAK,Anatoli,Aleksandrovich,,,,,Анатолий Александрович СИВАК,,,19/07/1962,"Zavoit, Narovlya District, Gomel/Homyel Oblast",former USSR (now Belarus),Belarus,,,,,(1) Deputy Prime Minister (2) Former Chairman of the Minsk City Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0086 (UK Statement of Reasons):As Chairman of the Minsk City Executive Committee, Anatoli Sivak was responsible for the repression and intimidation campaign run by the state security apparatus in Minsk under his oversight in the wake of the 2020 presidential election, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. He made numerous public statements criticising peaceful protests taking place in Belarus. In his current leadership position as Deputy Prime Minister he continues to support the repressive activities of the Lukashenko regime. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14021 +SIVAKAU,Iury,Leanidavich,,,,,,,,05/08/1946,"Onory, Sakhalin Region",Belarus,Belarus,,,,,(1) Former Minister of Tourism and Sports (2) Former Minister of Interior (3) Former Deputy Head of the Presidential Administration,,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0004 (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Iury Leanidavich Sivakau was Minister of the Interior at that time and therefore a senior Official in the Government of Belarus. Sivakau was associated with other Belarus Officials who have been listed for their involvement in these disappearances, and helped to establish a “death squad” in 1996 with Vladimir Navumau. (Gender):Male",Individual,Primary name,,Belarus,29/03/2011,31/12/2020,18/03/2022,11723 +SIVAKAU,Yuri,Leonidovich,,,,,,,,05/08/1946,"Onory, Sakhalin Region",Belarus,Belarus,,,,,(1) Former Minister of Tourism and Sports (2) Former Minister of Interior (3) Former Deputy Head of the Presidential Administration,,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0004 (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Iury Leanidavich Sivakau was Minister of the Interior at that time and therefore a senior Official in the Government of Belarus. Sivakau was associated with other Belarus Officials who have been listed for their involvement in these disappearances, and helped to establish a “death squad” in 1996 with Vladimir Navumau. (Gender):Male",Individual,Primary name variation,,Belarus,29/03/2011,31/12/2020,18/03/2022,11723 +SIVAKAU,Yury,Leanidavich,,,,,,,,05/08/1946,"Onory, Sakhalin Region",Belarus,Belarus,,,,,(1) Former Minister of Tourism and Sports (2) Former Minister of Interior (3) Former Deputy Head of the Presidential Administration,,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0004 (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Iury Leanidavich Sivakau was Minister of the Interior at that time and therefore a senior Official in the Government of Belarus. Sivakau was associated with other Belarus Officials who have been listed for their involvement in these disappearances, and helped to establish a “death squad” in 1996 with Vladimir Navumau. (Gender):Male",Individual,Primary name variation,,Belarus,29/03/2011,31/12/2020,18/03/2022,11723 +SIVAKOV,Iury,Leanidavich,,,,,,,,05/08/1946,"Onory, Sakhalin Region",Belarus,Belarus,,,,,(1) Former Minister of Tourism and Sports (2) Former Minister of Interior (3) Former Deputy Head of the Presidential Administration,,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0004 (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Iury Leanidavich Sivakau was Minister of the Interior at that time and therefore a senior Official in the Government of Belarus. Sivakau was associated with other Belarus Officials who have been listed for their involvement in these disappearances, and helped to establish a “death squad” in 1996 with Vladimir Navumau. (Gender):Male",Individual,Primary name variation,,Belarus,29/03/2011,31/12/2020,18/03/2022,11723 +SIVAKOV,Yuri,Leonidovich,,,,,,,,05/08/1946,"Onory, Sakhalin Region",Belarus,Belarus,,,,,(1) Former Minister of Tourism and Sports (2) Former Minister of Interior (3) Former Deputy Head of the Presidential Administration,,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0004 (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Iury Leanidavich Sivakau was Minister of the Interior at that time and therefore a senior Official in the Government of Belarus. Sivakau was associated with other Belarus Officials who have been listed for their involvement in these disappearances, and helped to establish a “death squad” in 1996 with Vladimir Navumau. (Gender):Male",Individual,Primary name variation,,Belarus,29/03/2011,31/12/2020,18/03/2022,11723 +SIVAKOV,Yury,Leanidavich,,,,,,,,05/08/1946,"Onory, Sakhalin Region",Belarus,Belarus,,,,,(1) Former Minister of Tourism and Sports (2) Former Minister of Interior (3) Former Deputy Head of the Presidential Administration,,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0004 (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Iury Leanidavich Sivakau was Minister of the Interior at that time and therefore a senior Official in the Government of Belarus. Sivakau was associated with other Belarus Officials who have been listed for their involvement in these disappearances, and helped to establish a “death squad” in 1996 with Vladimir Navumau. (Gender):Male",Individual,Primary name variation,,Belarus,29/03/2011,31/12/2020,18/03/2022,11723 +SIVAKOV,Yuri,Leonidavich,,,,,,,,05/08/1946,"Onory, Sakhalin Region",Belarus,Belarus,,,,,(1) Former Minister of Tourism and Sports (2) Former Minister of Interior (3) Former Deputy Head of the Presidential Administration,,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0004 (UK Statement of Reasons):Involved in the unresolved disappearances of Yuri Zakharenko, Viktor Gonchar, Anatoly Krasovski and Dmitri Zavadski in Belarus in 1999-2000. Iury Leanidavich Sivakau was Minister of the Interior at that time and therefore a senior Official in the Government of Belarus. Sivakau was associated with other Belarus Officials who have been listed for their involvement in these disappearances, and helped to establish a “death squad” in 1996 with Vladimir Navumau. (Gender):Male",Individual,Primary name variation,,Belarus,29/03/2011,31/12/2020,18/03/2022,11723 +SIVKOVICH,Vladimir,Leonidovich,,,,,"СИВКОВИЧ, Владимир Леонидович",Cyrillic,Russian,17/09/1960,Ostraya Mohyla,Ukraine,Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1053 (UK Statement of Reasons):Vladimir Leonidovich SIVKOVICH is or has been involved in engaging in and providing support for and promoting a policy or action which destabilises Ukraine and undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,24/03/2022,24/03/2022,15/07/2022,14996 +SIVKOVYCH,Volodimir,,,,,,,,,17/09/1960,Ostraya Mohyla,Ukraine,Ukraine,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1053 (UK Statement of Reasons):Vladimir Leonidovich SIVKOVICH is or has been involved in engaging in and providing support for and promoting a policy or action which destabilises Ukraine and undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,24/03/2022,24/03/2022,15/07/2022,14996 +SIVOKONENKO,Yuriy,Viktorovich,,,,,,,,07/08/1957,Stalino City (now Donetsk),Ukraine,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0136 (UK Statement of Reasons):Member of the ‘Parliament’ of the so called ‘Donetsk People's Republic’ and Chairman of the public association Union of Veterans of the Donbass Berkut and a member of the public movement ‘Free Donbass’. Stood as a candidate in the so called ‘elections’ of 2 November 2014 to the post of the Head of the so called ‘Donetsk People's Republic’. These elections are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. He remains a member of the so-called “people’s council of the Donetsk People’s Republic (Gender):Male",Individual,Primary name,,Russia,02/12/2014,31/12/2020,14/02/2022,13173 +SIVOKONENKO,Yury,,,,,,,,,07/08/1957,Stalino City (now Donetsk),Ukraine,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0136 (UK Statement of Reasons):Member of the ‘Parliament’ of the so called ‘Donetsk People's Republic’ and Chairman of the public association Union of Veterans of the Donbass Berkut and a member of the public movement ‘Free Donbass’. Stood as a candidate in the so called ‘elections’ of 2 November 2014 to the post of the Head of the so called ‘Donetsk People's Republic’. These elections are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. He remains a member of the so-called “people’s council of the Donetsk People’s Republic (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,14/02/2022,13173 +SIVOKONENKO,Yuriy,,,,,,,,,07/08/1957,Stalino City (now Donetsk),Ukraine,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0136 (UK Statement of Reasons):Member of the ‘Parliament’ of the so called ‘Donetsk People's Republic’ and Chairman of the public association Union of Veterans of the Donbass Berkut and a member of the public movement ‘Free Donbass’. Stood as a candidate in the so called ‘elections’ of 2 November 2014 to the post of the Head of the so called ‘Donetsk People's Republic’. These elections are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. He remains a member of the so-called “people’s council of the Donetsk People’s Republic (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,14/02/2022,13173 +SKABEYEVA,Olga,Vladimirovna,,,,,СКАБЕЕВА Ольга Владимировна,Cyrillic,Russian,11/12/1984,Volzhsky,Russia,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0759 Yevgeniy Georgievich Popov (Russian: Евгений Георгиевич Попов) - husband (RUS0624) (UK Statement of Reasons):Olga Skabeyeva is a prominent Russian TV presenter. In numerous broadcasts she has provided support for and promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14710 +SKACHKOV,Alexander,Anatolievich,,,,,Александр Анатольевич Скачков,,,21/11/1960,"Erofei Pavlovich, Skovorodinsky district",Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0640 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14585 +SKAKOVSKAYA,Lyudmila,Nikolayevna,,,,,Людмила Николаевна СКАКОВСКАЯ,,,13/11/1961,"Bzhetsk, Tver Region",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0924 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14875 +SKLYAR,Gennady,Ivanovich,,,,,Геннадий Иванович Скляр,,,17/05/1952,"Termez,",Uzbekistan,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0641 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14586 +SKOCH,Andrei,Vladimirovich,,,,,Андрей Владимирович Скоч,,,30/01/1966,"Nikolskoye, Moscow region",Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0669 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14620 +SKOROKHODOV,Valery,Vladimirovich,,,,,СКОРОХОДОВ Валерий Владимирович,Cyrillic,Russian,22/05/1976,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1211 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15163 +SKOROKHODOVA,Natalya,Petrovna,,,,,Наталья Петровна СКОРОХОДОВА,Cyrillic,Russian,25/08/1968,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1109 (UK Statement of Reasons):Natalya Petrovna SKOROKHODOVA is an involved person on the basis that: (1) she has been, and is, a member of, or associated with, the Strategic Culture Foundation (“SCF”), which is itself an involved person on the basis that the SCF has been, and is, providing support for and promoting actions or policies which destabilise Ukraine or undermine or threaten its territorial integrity, sovereignty or independence; and (2) through her work for the SCF, she has provided support for and promoted actions or policies which destabilise Ukraine or undermine or threaten its territorial integrity, sovereignty or independence. (Gender):Female",Individual,Primary name,,Russia,31/03/2022,31/03/2022,20/07/2022,15056 +SKRIVANOV,Dmitry,Stanislavovich,,,,,Скриванов Дмитрий Станиславович,,,15/08/1971,Novocherkassk,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0495 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14440 +SKRUG,Valery,Stepanovich,,,,,Валерий Степанович Скруг,,,20/06/1963,Okno,Ukraine,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0642 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14587 +SKRYPNIK,Konstantin,Evgenievich,,,,,,,,15/04/1974,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1298 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15250 +SKRYPNYK,Konstantin,Evgenevich,,,,,СКРИПНИК Константин Евгеньевич,Cyrillic,Russian,15/04/1974,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1298 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15250 +SKY AVIATOR COMPANY LTD,,,,,,,,,,,,,,,,,,,"NO. (204/2), MYINTHAR 11TH STREET",14/1 WARD,SOUTH OKKALARPA TOWNSHIP,,,YANGON REGION,,Myanmar,"(UK Sanctions List Ref):MYA0050 (UK Statement of Reasons):The Myanmar Armed Forces have a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. Sky Aviator Company Ltd has been responsible for the brokering of deals for the supply of parts and upkeep of aircraft for the Myanmar Armed Forces from Russia since the coup in February 2021. Therefore, Sky Aviator Co Ltd has been and is involved in the supply of restricted goods to Myanmar. (Phone number):18500656 (Email address):skyaviatorcompany@gmail.com (Type of entity):Private Company (Business Reg No):100789450",Entity,Primary name,,Myanmar,16/06/2022,16/06/2022,16/06/2022,15404 +SKY ONE,,,,,,,,,,,,,,,,,,,42,Aung Chan Thar 2nd St.,Aung Myaytharsi Housing (West),Ward (1),Kamaryut,Yangon,,Myanmar,"(UK Sanctions List Ref):MYA0052 (UK Statement of Reasons):The Myanmar Security Forces have a track record of committing serious human rights violations and repression of the civilian population of Myanmar. In 2017, the Myanmar Security Forces murdered, raped and tortured thousands of Rohingya during the Rakhine clearance operations. 740,000 Rohingya were forced over the border into Bangladesh. Sky One Construction Company Limited contributed funds to the Myanmar Security Forces in 2017 at two fundraising events for the Rakhine clearance operations held by Commander in Chief, Min Aung Hlaing. Sky One Construction Company Limited has therefore made funds and economic resources available directly to or for the benefit of the Myanmar Security Forces, which could have contributed to serious human rights violations and repression of the civilian population in Myanmar. (Phone number):09-73007730 (Email address):sky.one220@gmail.com",Entity,AKA,,Myanmar,24/08/2022,24/08/2022,24/08/2022,15495 +SKY ONE CONSTRUCTION,,,,,,,,,,,,,,,,,,,42,Aung Chan Thar 2nd St.,Aung Myaytharsi Housing (West),Ward (1),Kamaryut,Yangon,,Myanmar,"(UK Sanctions List Ref):MYA0052 (UK Statement of Reasons):The Myanmar Security Forces have a track record of committing serious human rights violations and repression of the civilian population of Myanmar. In 2017, the Myanmar Security Forces murdered, raped and tortured thousands of Rohingya during the Rakhine clearance operations. 740,000 Rohingya were forced over the border into Bangladesh. Sky One Construction Company Limited contributed funds to the Myanmar Security Forces in 2017 at two fundraising events for the Rakhine clearance operations held by Commander in Chief, Min Aung Hlaing. Sky One Construction Company Limited has therefore made funds and economic resources available directly to or for the benefit of the Myanmar Security Forces, which could have contributed to serious human rights violations and repression of the civilian population in Myanmar. (Phone number):09-73007730 (Email address):sky.one220@gmail.com",Entity,AKA,,Myanmar,24/08/2022,24/08/2022,24/08/2022,15495 +SKY ONE CONSTRUCTION COMPANY LTD,,,,,,,,,,,,,,,,,,,42,Aung Chan Thar 2nd St.,Aung Myaytharsi Housing (West),Ward (1),Kamaryut,Yangon,,Myanmar,"(UK Sanctions List Ref):MYA0052 (UK Statement of Reasons):The Myanmar Security Forces have a track record of committing serious human rights violations and repression of the civilian population of Myanmar. In 2017, the Myanmar Security Forces murdered, raped and tortured thousands of Rohingya during the Rakhine clearance operations. 740,000 Rohingya were forced over the border into Bangladesh. Sky One Construction Company Limited contributed funds to the Myanmar Security Forces in 2017 at two fundraising events for the Rakhine clearance operations held by Commander in Chief, Min Aung Hlaing. Sky One Construction Company Limited has therefore made funds and economic resources available directly to or for the benefit of the Myanmar Security Forces, which could have contributed to serious human rights violations and repression of the civilian population in Myanmar. (Phone number):09-73007730 (Email address):sky.one220@gmail.com",Entity,Primary name,,Myanmar,24/08/2022,24/08/2022,24/08/2022,15495 +SLAIWAH,Rudi,,,,,,,,,,,,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0140 (UN Ref):IQi.079,Individual,AKA,Good quality,Iraq,07/06/2004,02/06/2004,31/12/2020,8384 +SLAKHO,Adnan,,,,,,عدنان عبده السهني,,,00/00/1955,Damascus,Syria,,,,,,Former Minister for Industry,,,,,,,,,"(UK Sanctions List Ref):SYR0146 (UK Statement of Reasons):Former Minister of Industry within the Assad regime appointed in 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name,,Syria,28/02/2012,31/12/2020,16/06/2022,12508 +SLAKHO,Adnan,Abu,,,,,,,,00/00/1955,Damascus,Syria,,,,,,Former Minister for Industry,,,,,,,,,"(UK Sanctions List Ref):SYR0146 (UK Statement of Reasons):Former Minister of Industry within the Assad regime appointed in 2011. As such, there are reasonable grounds to suspect that he has been involved in the repression of the civilian population in Syria and/or supporting or benefitting from the Syrian regime. (Gender):Male",Individual,Primary name variation,,Syria,28/02/2012,31/12/2020,16/06/2022,12508 +SLAYWAH,Rudi,Untaywan,,,,,,,,,,,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0140 (UN Ref):IQi.079,Individual,AKA,Good quality,Iraq,07/06/2004,02/06/2004,31/12/2020,8384 +SLEWA,ROODI,,,,,,رودي سليــوة,,,,,,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0140 (UN Ref):IQi.079,Individual,Primary name,,Iraq,07/06/2004,02/06/2004,31/12/2020,8384 +SLIZHEUSKIY,Aleh,Leanidavich,,,,,Алег Леанідавіч СЛІЖЭЎСКІ,,,16/08/1972,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0043 (UK Statement of Reasons):Aleh Slizheuskiy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,31/12/2020,13966 +SLIZHEUSKIY,Oleg,Leonidovich,,,,,,,,16/08/1972,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0043 (UK Statement of Reasons):Aleh Slizheuskiy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13966 +SLUTSKI,Leonid,Eduardovich,,,,,Леонид Эдуардович СЛУЦКИЙ,,,04/01/1968,Moscow,,Russia,,,,,Chairperson of the Foreign Affairs Committee of the State Duma of the Russian Federation,,,,,,,,Russia,(UK Sanctions List Ref):RUS0137 (UK Statement of Reasons):Former Chairman of the Commonwealth of Independent States (CIS) Committee of the State Duma of the Russian Federation (member of the LDPR). Actively supporting use of Russian Armed Forces in Ukraine and voted in favour of the incorporation of Crimea into the Russian Federation. Currently Chairperson of the Foreign Affairs Committee of the State Duma of the Russian Federation. (Gender):Male,Individual,Primary name,,Russia,18/03/2014,31/12/2020,16/09/2022,12921 +SLUTSKY,Leonid,Eduardovich,,,,,,,,04/01/1968,Moscow,,Russia,,,,,Chairperson of the Foreign Affairs Committee of the State Duma of the Russian Federation,,,,,,,,Russia,(UK Sanctions List Ref):RUS0137 (UK Statement of Reasons):Former Chairman of the Commonwealth of Independent States (CIS) Committee of the State Duma of the Russian Federation (member of the LDPR). Actively supporting use of Russian Armed Forces in Ukraine and voted in favour of the incorporation of Crimea into the Russian Federation. Currently Chairperson of the Foreign Affairs Committee of the State Duma of the Russian Federation. (Gender):Male,Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12921 +SLYUSAR,Yuri,,,,,,,,,20/07/1974,Rostov-on-Don,Russia,Russia,,,,,"Director General, United Aircraft Corporation",,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0248 (UK Statement of Reasons):Yury Slyusar is General Director of PJSC United Aircraft Corporation (UAC), a major aircraft manufacturer. UAC is a major supplier of aircraft to the Russian military, including aircraft that have been used by the Russian military to threaten and destabilize Ukraine. As the General Director of UAC, a state-owned company, Slyusar is a key figure in the Russian defence sector and plays an important role in supporting the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,24/02/2022,24/02/2022,24/02/2022,14193 +SLYUSAR,Yuri,Borisovich,,,,,,,,20/07/1974,Rostov-on-Don,Russia,Russia,,,,,"Director General, United Aircraft Corporation",,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0248 (UK Statement of Reasons):Yury Slyusar is General Director of PJSC United Aircraft Corporation (UAC), a major aircraft manufacturer. UAC is a major supplier of aircraft to the Russian military, including aircraft that have been used by the Russian military to threaten and destabilize Ukraine. As the General Director of UAC, a state-owned company, Slyusar is a key figure in the Russian defence sector and plays an important role in supporting the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,24/02/2022,24/02/2022,24/02/2022,14193 +SLYUSAR,Yury,Borisovich,,,,,Юрий Борисович СЛЮСАРЬ,,,20/07/1974,Rostov-on-Don,Russia,Russia,,,,,"Director General, United Aircraft Corporation",,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0248 (UK Statement of Reasons):Yury Slyusar is General Director of PJSC United Aircraft Corporation (UAC), a major aircraft manufacturer. UAC is a major supplier of aircraft to the Russian military, including aircraft that have been used by the Russian military to threaten and destabilize Ukraine. As the General Director of UAC, a state-owned company, Slyusar is a key figure in the Russian defence sector and plays an important role in supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,24/02/2022,24/02/2022,24/02/2022,14193 +SLYZHEVSKIY,Aleh,Leanidavich,,,,,,,,16/08/1972,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0043 (UK Statement of Reasons):Aleh Slizheuskiy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13966 +SLYZHEVSKIY,Oleg,Leonidovich,,,,,,,,16/08/1972,,,,,,,,Member of the Central Electoral Commission,,,,,,,,,"(UK Sanctions List Ref):BEL0043 (UK Statement of Reasons):Aleh Slizheuskiy is a member of the Central Electoral Commission of the Belarusian Regime. In his role, he is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13966 +SMAL,Andrei,Fiodaravich,,,,,"СМАЛЬ, Андрэй Фёдаравіч",,,,Brest,Former USSR Currently Belarus,Belarus,,,,,Deputy Chairman of the Investigative Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0055 (UK Statement of Reasons):Andrei Smal is Deputy Chairman of the Investigative Committee of the Republic of Belarus. Smal is responsible for the actions of the Investigative Committee, including pursuing criminal investigations against protestors and opposition leaders, and therefore undermining democracy in Belarus. (Gender):Male",Individual,Primary name,,Belarus,06/11/2020,31/12/2020,31/12/2020,13990 +SMAL,Andrei,Fyodorovich,,,,,"СМАЛЬ, Андрей Федорович",,,,Brest,Former USSR Currently Belarus,Belarus,,,,,Deputy Chairman of the Investigative Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0055 (UK Statement of Reasons):Andrei Smal is Deputy Chairman of the Investigative Committee of the Republic of Belarus. Smal is responsible for the actions of the Investigative Committee, including pursuing criminal investigations against protestors and opposition leaders, and therefore undermining democracy in Belarus. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13990 +SMERT BATTALION,,,,,,,,,,,,,,,,,,,,,,,,A former tourist camp outside Donetsk which has been turned into a base for the Death Battalion.,,,"(UK Sanctions List Ref):RUS0170 Part of the so called ""2nd Army Corps of the ""Lugansk People's Republic"". Also part of the Great Don Army. (UK Statement of Reasons):Armed separatist group which has actively supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. Part of the so called ""2nd Army Corps of the ""Lugansk People's Republic"". (Type of entity):Armed Separatist Group",Entity,AKA,,Russia,16/02/2015,31/12/2020,16/09/2022,13225 +SMIRNOV,Viktor,Vladimirovich,,,,,Виктор Владимирович Смирнов,,,09/09/1968,Kineshma,Russia,,641925035,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0571 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14516 +SMOLIN,Oleg,Nikolaevich,,,,,Смолин Олег Николаевич,,,10/02/1952,Poludino,Kazakhstan,,[00]13046,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0572 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14517 +SMP BANK,,,,,,,СМП Банк,Cyrillic,Russian,,,,,,,,,,"71/11, Sadovnicheskaya st.",,,,,Moscow,115035,Russia,"(UK Sanctions List Ref):RUS1096 (UK Statement of Reasons):SMP BANK is a Russian bank. SMP Bank is or has been involved in obtaining a benefit from or supporting the Government of Russia by, carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):7 (495) 981-81-81 (Website):www.smpbank.ru (Email address):(1) bk@smpbank.ru (2) Money@smpbank.ru (3) smpbank@smpbank.ru (Type of entity):AO, Bank, Financial services company.",Entity,Primary name,,Russia,24/03/2022,24/03/2022,24/05/2022,15039 +SMP BANK AO,,,,,,,,,,,,,,,,,,,"71/11, Sadovnicheskaya st.",,,,,Moscow,115035,Russia,"(UK Sanctions List Ref):RUS1096 (UK Statement of Reasons):SMP BANK is a Russian bank. SMP Bank is or has been involved in obtaining a benefit from or supporting the Government of Russia by, carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):7 (495) 981-81-81 (Website):www.smpbank.ru (Email address):(1) bk@smpbank.ru (2) Money@smpbank.ru (3) smpbank@smpbank.ru (Type of entity):AO, Bank, Financial services company.",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,24/05/2022,15039 +SMP OJSC,,,,,,,,,,,,,,,,,,,"71/11, Sadovnicheskaya st.",,,,,Moscow,115035,Russia,"(UK Sanctions List Ref):RUS1096 (UK Statement of Reasons):SMP BANK is a Russian bank. SMP Bank is or has been involved in obtaining a benefit from or supporting the Government of Russia by, carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):7 (495) 981-81-81 (Website):www.smpbank.ru (Email address):(1) bk@smpbank.ru (2) Money@smpbank.ru (3) smpbank@smpbank.ru (Type of entity):AO, Bank, Financial services company.",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,24/05/2022,15039 +SO,,,,,,,,,,04/10/1972,"Sitio Banga Maiti, Barangay Tranghawan, Lambunao, Iloilo",Philippines,Philippines,(1) MM611523 (2) EE947317 (3) P421967,(1) Philippines number (2004) (2) Philippines number 2000-2001 (3) Philippines number (1995-1997),,,,10th Avenue,,,,,Caloocan City,,Philippines,(UK Sanctions List Ref):AQD0296 (UN Ref):QDi.247 Spiritual leader of the Rajah Solaiman Movement (QDe.128). Associated with Khadafi Abubakar Janjalani (deceased). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10667 +SO,Hong,Chan,,,,General,,,,30/12/1957,Kangwon,North Korea,,PD836410105,expiry date 27/11/2021,,,First Vice Minister of the People's Armed Forces,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0051 (UK Statement of Reasons):First Vice-Minister and Director of the Logistics Bureau of the People’s Armed Forces, member of the Central Military Commission of the Workers’ Party of Korea and Colonel-General in the People’s Armed Forces. In this capacity, SO HONG CHAN is responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,07/04/2017,31/12/2020,31/12/2020,13455 +SO,Sang,Kuk,,,,,,,,00/00/1934,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang,Kuk,,,,,,,,00/00/1938,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang,Kuk,,,,,,,,00/00/1932,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang,Kuk,,,,,,,,00/00/1936,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang,Kuk,,,,,,,,00/00/1937,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang,Kuk,,,,,,,,00/00/1933,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang,Kuk,,,,,,,,00/00/1935,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang-Guk,,,,,,,,,00/00/1934,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,AKA,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang-Guk,,,,,,,,,00/00/1938,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,AKA,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang-Guk,,,,,,,,,00/00/1932,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,AKA,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang-Guk,,,,,,,,,00/00/1936,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,AKA,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang-Guk,,,,,,,,,00/00/1937,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,AKA,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang-Guk,,,,,,,,,00/00/1933,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,AKA,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang-Guk,,,,,,,,,00/00/1935,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,AKA,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang-Kuk,,,,,,,,,00/00/1934,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang-Kuk,,,,,,,,,00/00/1938,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang-Kuk,,,,,,,,,00/00/1932,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang-Kuk,,,,,,,,,00/00/1936,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang-Kuk,,,,,,,,,00/00/1937,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang-Kuk,,,,,,,,,00/00/1933,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Sang-Kuk,,,,,,,,,00/00/1935,,,North Korea,,,,,"Head of the Department of Nuclear Physics, Kim Il Sung University",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0035 (UK Statement of Reasons):Former Head of the Department of Nuclear Physics, Kim Il Sung University (now retired).  (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,03/03/2022,11039 +SO,Tong,Myong,,,,President,,,,10/09/1956,,,North Korea,,,,,"(1) President of the Korea National Insurance Corporation (KNIC) (2) KNIC Executive Management Committee Chairman (June 2012) (3) Korea National Insurance Corporation General Manager, September 2013, acting on behalf of KNIC or at its direction",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0036 Associations with Korea National Insurance Corporation (KNIC) (UK Statement of Reasons):Former President of the Korea National Insurance Corporation (KNIC), former KNIC Executive Management Committee Chairman (June 2012); former Korea National Insurance Corporation General Manager, September 2013, acting on behalf of KNIC or at its direction. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,03/07/2015,31/12/2020,19/01/2021,13260 +SO,Tony,Myong,,,,,,,,10/09/1956,,,North Korea,,,,,"(1) President of the Korea National Insurance Corporation (KNIC) (2) KNIC Executive Management Committee Chairman (June 2012) (3) Korea National Insurance Corporation General Manager, September 2013, acting on behalf of KNIC or at its direction",,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0036 Associations with Korea National Insurance Corporation (KNIC) (UK Statement of Reasons):Former President of the Korea National Insurance Corporation (KNIC), former KNIC Executive Management Committee Chairman (June 2012); former Korea National Insurance Corporation General Manager, September 2013, acting on behalf of KNIC or at its direction. (Gender):Male",Individual,AKA,,Democratic People's Republic of Korea,03/07/2015,31/12/2020,19/01/2021,13260 +"SO CALLED ""DONBASS PEOPLE’S MILITIA""",,,,,,,,,,,,,,,,,,,,,,,Prospect Zasyadko.13.,Donetsk,,,"(UK Sanctions List Ref):RUS0172 (UK Statement of Reasons):Illegal armed separatist group responsible for fighting against the Ukrainian government forces in the Eastern Ukraine, thus threatening the stability or security of Ukraine. Inter alia, the militant group seized control of several government buildings in Eastern Ukraine in early April 2014, thus undermining the territorial integrity, sovereignty and indepedence of Ukraine. Its former leader Mr Pavel Gubarev, is responsible for the taking over of the regional government building in Donetsk with pro-Russian forces and proclaiming himself the 'people's governor'. (Phone number):(1) +38 094-912-96-60 (2) +7 (926) 428-99-51 (3) +7 (967) 171-27-09. -287 -323. -647. -774 (Website):http://vk.com/polkdonbassa (Email address):(1) mobilisation@novorossia.co (2) novoross24@mail.ru (3) voenkom.dnr@mail.ru",Entity,Primary name variation,,Russia,25/07/2014,31/12/2020,16/09/2022,13045 +SOBAEKSU UNITED CORP.,,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0065 (UK Statement of Reasons):State-owned company, involved in research into, and the acquisition of, sensitive products and equipment. It possesses several deposits of natural graphite, which provide raw material for two processing facilities which, inter alia, produce graphite blocks that can be used in missiles.",Entity,AKA,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11043 +SOBAEKSU UNITED CORP.,,,,,,,,,,,,,,,,,,,,,,,Beijing,,,China,"(UK Sanctions List Ref):DPR0065 (UK Statement of Reasons):State-owned company, involved in research into, and the acquisition of, sensitive products and equipment. It possesses several deposits of natural graphite, which provide raw material for two processing facilities which, inter alia, produce graphite blocks that can be used in missiles.",Entity,AKA,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11043 +SOBAEKSU UNITED CORP.,,,,,,,,,,,,,,,,,,,,,,,Dandong,,,China,"(UK Sanctions List Ref):DPR0065 (UK Statement of Reasons):State-owned company, involved in research into, and the acquisition of, sensitive products and equipment. It possesses several deposits of natural graphite, which provide raw material for two processing facilities which, inter alia, produce graphite blocks that can be used in missiles.",Entity,AKA,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11043 +SOBAEKSU UNITED CORP.,,,,,,,,,,,,,,,,,,,,,,,Yinkou,,,China,"(UK Sanctions List Ref):DPR0065 (UK Statement of Reasons):State-owned company, involved in research into, and the acquisition of, sensitive products and equipment. It possesses several deposits of natural graphite, which provide raw material for two processing facilities which, inter alia, produce graphite blocks that can be used in missiles.",Entity,AKA,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11043 +SOBAEKU UNITED CORP.,,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0065 (UK Statement of Reasons):State-owned company, involved in research into, and the acquisition of, sensitive products and equipment. It possesses several deposits of natural graphite, which provide raw material for two processing facilities which, inter alia, produce graphite blocks that can be used in missiles.",Entity,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11043 +SOBAEKU UNITED CORP.,,,,,,,,,,,,,,,,,,,,,,,Beijing,,,China,"(UK Sanctions List Ref):DPR0065 (UK Statement of Reasons):State-owned company, involved in research into, and the acquisition of, sensitive products and equipment. It possesses several deposits of natural graphite, which provide raw material for two processing facilities which, inter alia, produce graphite blocks that can be used in missiles.",Entity,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11043 +SOBAEKU UNITED CORP.,,,,,,,,,,,,,,,,,,,,,,,Dandong,,,China,"(UK Sanctions List Ref):DPR0065 (UK Statement of Reasons):State-owned company, involved in research into, and the acquisition of, sensitive products and equipment. It possesses several deposits of natural graphite, which provide raw material for two processing facilities which, inter alia, produce graphite blocks that can be used in missiles.",Entity,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11043 +SOBAEKU UNITED CORP.,,,,,,,,,,,,,,,,,,,,,,,Yinkou,,,China,"(UK Sanctions List Ref):DPR0065 (UK Statement of Reasons):State-owned company, involved in research into, and the acquisition of, sensitive products and equipment. It possesses several deposits of natural graphite, which provide raw material for two processing facilities which, inter alia, produce graphite blocks that can be used in missiles.",Entity,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11043 +SOBAIR,,,,,,,,,,08/03/1978,Amsterdam,Netherlands,Netherlands,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0006 (UK Statement of Reasons):Mohammed Bouyeri was a member of the (now disbanded) Islamist terrorist Hofstad Group. Bouyeri murdered the film director Theo van Gogh in the Netherlands 2004. In 2005 he was found guilty of murder and of membership of a terrorist organisation. (Gender):Male,Individual,AKA,,Counter-Terrorism (International),05/02/2007,31/12/2020,11/03/2022,9018 +SOBOL,Alexander,Ivanovich,,,,,Александр Иванович Соболь,Cyrillic,Russian,22/07/1969,,,Russia,,,,,(1) Member of Gazprombank’s Management Board (2) Deputy Chairman of Gazprombank’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1618 (UK Statement of Reasons):Alexander Ivanovich Sobol is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15562 +SOBOL,Alexandr,Ivanovich,,,,,,,,22/07/1969,,,Russia,,,,,(1) Member of Gazprombank’s Management Board (2) Deputy Chairman of Gazprombank’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1618 (UK Statement of Reasons):Alexander Ivanovich Sobol is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15562 +SOBOL',,,,,,,Соболь,,,,,,,,,,,,4 (area bus station 'Central'),str.Kiev,,,Simferopol,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,"(UK Sanctions List Ref):RUS0195 (UK Statement of Reasons):Radical paramilitary organisation, responsible for openly supporting using force to end Ukraine’s control over Crimea, thus undermining the territorial integrity, sovereignty and independence of Ukraine. Responsible for training separatists to fight against the Ukrainian government forces in Eastern Ukraine, thus threatening the stability or security of Ukraine. (Phone number):(0652) 60-23-93 (Website):Official web site: http://soboli.net, Social media: http://vk.com/sobolipress (Email address):SoboliPress@gmail.com",Entity,Primary name,,Russia,25/07/2014,31/12/2020,16/02/2022,13053 +SOBOLEV,Viktor,Ivanovich,,,,,Соболев Виктор Иванович,,,23/02/1950,Kalinino,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0496 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14441 +SOBYANIN,Sergei,Semyonovich,,,,,СОБЯНИН Сергей Семёнович,Cyrillic,Russian,21/06/1958,Nyaksimvol,Russia,Russia,,,,,Mayor of Moscow,,,,,,,,,"(UK Sanctions List Ref):RUS0824 (UK Statement of Reasons):Sergei Semyonovich SOBYANIN is a Russian politician. As the current Mayor of Moscow SOBYANIN has spoken in favour of the “special military operation” in Ukraine and thus has provided support for, and/or promoted policies and/or actions which destabilise Ukraine and/or undermine and/or threaten the territorial integrity, sovereignty and/or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14775 +"SO-CALLED ""LUGANSK GUARD""",,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0181 (UK Statement of Reasons):Separatist militia group of Lugansk, involved in uniting activists in the Lugansk region, thus threatening the stability or security of Ukraine. They also actively participated in the seizure of the Lugansk Regional State Administration. (Website):(1) http://vk.com/club68692201 (2) https://vk.com/luguard (3) https://vk.com/luguardnews (Type of entity):Public Movement",Entity,AKA,,Russia,25/07/2014,31/12/2020,14/02/2022,13055 +"SO-CALLED ""LUHANSK GUARD""",,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0181 (UK Statement of Reasons):Separatist militia group of Lugansk, involved in uniting activists in the Lugansk region, thus threatening the stability or security of Ukraine. They also actively participated in the seizure of the Lugansk Regional State Administration. (Website):(1) http://vk.com/club68692201 (2) https://vk.com/luguard (3) https://vk.com/luguardnews (Type of entity):Public Movement",Entity,Primary name,,Russia,25/07/2014,31/12/2020,14/02/2022,13055 +SO-CALLED DONETSK PEOPLE'S REPUBLIC,,,,,,,,,,,,,,,,,,,,,,,,Donetsk,,,"(UK Sanctions List Ref):RUS0173 Names of Director(s)/Management: Self-declared leader: Denis Pushilin (UK Statement of Reasons):The so called 'Donetsk People's Republic' was declared on 7 April 2014. Responsible for organising the illegal referendum on May 11 2014. Declaration of Independence on May 12 2014. On 24 May 2014, the so called 'People's Republics' of Donetsk and Lugansk signed an agreement on the creation of the so called 'Federal State of Novorossiya.' (Website):https://dnr-online.ru/",Entity,Primary name,,Russia,25/07/2014,31/12/2020,16/09/2022,13048 +SO-CALLED 'LUGANSK PEOPLE'S REPUBLIC',,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0182 Names of Directors(s). Management: Associated with Aleksey Karyakin (who signed the Novorossiya declaration). Mr Vasyl Nikitin responsible for the separatist ""governmental"" activities of the so called ""government of the People's Republic of Luhansk"". Gennadiy Nikolaivych Tsyplakov was active before becoming ""Prime Minister of the so-called ""Lugansk People's Republic"". (UK Statement of Reasons):The so called ‘Lugansk People's Republic’ was established on 27 April 2014. Responsible for organising the illegal referendum on May 11 2014, and made a declaration of independence on May 12 2014. On 22 May 2014, the so called ‘People's Republics’ of Donetsk and Lugansk created the so called ‘Federal State of Novorossiya’. The so called “Lugansk People’s Republic” took part in ‘elections’ on 11 November 2018. Holding any kind of elections without Ukraine’s consent is a clear violation of the country’s sovereignty. This is in breach of Ukrainian constitutional law, and, as a consequence, of international law, thus undermining the territorial integrity, sovereignty and independence of Ukraine. It is also involved in the recruitment to the separatist ‘Army of Southeast’ and other illegal armed separatist groups, thus undermining the stability or security of Ukraine. (Website):https://glava-Inr.su/content/konstituciya, https://glava.lnr.info (Type of entity):Enterprise",Entity,Primary name,,Russia,25/07/2014,31/12/2020,16/09/2022,13047 +SOCIETY OF ISLAMIC COOPERATION,,,,,,,,,,,,,,,,,,,,,,,,Kandahar City,,Afghanistan,(UK Sanctions List Ref):AQD0057 (UN Ref):QDe.020 Founded by Usama Mohammad Awad bin Laden (deceased) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282077,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,12/01/2022,7212 +SODIAM,Oumar,,,,,,,,,02/04/1970,,,Sudan,D00000898,(CAR Diplomatic). Issued on 11 April 2013. Valid until 10 April 2018.,,,Former Séléka General,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0007 (UN Ref):CFi.006 Is a diamond smuggler and a three-star general of the Séléka and close confident of former CAR interim president Michel Djotodia. Physical description: hair colour: black; height: 180cm; belongs to the Fulani ethnic group. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as at 11 October 2015 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Phone number):+236 75507560,Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13273 +SODIAM,Oumar,,,,,,,,,02/04/1970,,,Sudan,D00000898,(CAR Diplomatic). Issued on 11 April 2013. Valid until 10 April 2018.,,,Former Séléka General,,,,,,Bria,,Central African Republic,(UK Sanctions List Ref):CAF0007 (UN Ref):CFi.006 Is a diamond smuggler and a three-star general of the Séléka and close confident of former CAR interim president Michel Djotodia. Physical description: hair colour: black; height: 180cm; belongs to the Fulani ethnic group. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as at 11 October 2015 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Phone number):+236 75507560,Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13273 +SODIAM,Oumar,,,,,,,,,02/04/1970,,,Sudan,D00000898,(CAR Diplomatic). Issued on 11 April 2013. Valid until 10 April 2018.,,,Former Séléka General,,,,,Tullus,Southern Darfur,,Sudan,(UK Sanctions List Ref):CAF0007 (UN Ref):CFi.006 Is a diamond smuggler and a three-star general of the Séléka and close confident of former CAR interim president Michel Djotodia. Physical description: hair colour: black; height: 180cm; belongs to the Fulani ethnic group. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as at 11 October 2015 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Phone number):+236 75507560,Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13273 +SOE,Khin,Maung,,,,Brigadier General,,,,00/00/1972,,,Myanmar,,,,,Commander of the Military Operation Command 15,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0003 (UK Statement of Reasons):Brigadier General Khin Maung Soe, is commander of the Military Operation Command 15 (MOC 15), the main military division based in Northern Rakhine, which has oversight and command of 10 battalions. This division is responsible for the repression of the civilian population, actions that threaten the peace, stability or security of Myanmar and atrocities and serious human rights violations committed against the Rohingya population in Rakhine state. These include extra judicial killings, sexual violence and systematic burning of Rohingya houses and buildings. (Gender):Male",Individual,Primary name,,Myanmar,26/06/2018,29/04/2021,11/11/2022,13689 +SOE,Maung,Maung,,,,Major General,,,,00/03/1964,,,Myanmar,,,19571,Tatmadaw Kyee,Former Commander of the Myanmar Army’s Western Command,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0004 (UK Statement of Reasons):Major General Maung Maung Soe, was the former chief of the Myanmar Army’s Western Command. He has been responsible for the repression of the civilian population, actions that threaten the peace, stability or security of Myanmar and atrocities and serious human rights violations committed against the Rohingya population in Rakhine state. These include extra judicial killings, sexual violence and systematic burning of Rohingya houses and buildings. (Gender):Male",Individual,Primary name,,Myanmar,26/06/2018,29/04/2021,11/11/2022,13682 +SOE,Thein,,,,,(1) U (2) Retired Major General,,,,23/01/1952,"Kani, Sagaing",Myanmar,Myanmar,,,,,Chair of Union Election Commission,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0035 (UK Statement of Reasons):U Thein Soe was appointed by the Commander-in-Chief as Chair of the, reconstituted, Union Election Commission (UEC) on 3 February 2021, two days after the military seized power in a coup. The Chair of the UEC is responsible for overseeing activity relating to elections in Myanmar and the conduct of political parties. As Chair of the UEC U Thein Soe has been involved in undermining democracy in his attempts to override the democratic wishes of the people of Myanmar at the November 2020 polls, in particular on 27 July 2021 he passed a decree which annulled the November 2020 election results on the unsubstantiated grounds of widespread electoral fraud. Further and/or alternatively he is carrying out activities on behalf of the State Administration Council (designated under the Myanmar (Sanctions) Regulations 2021) and/or Min Aung Hlaing (the Commander-in-Chief and Chairman of the SAC) (designated under the Global Human Rights (Sanctions) Regulations 2020 and Myanmar (Sanctions) Regulations 2021. (Gender):Male",Individual,Primary name,,Myanmar,31/01/2022,31/01/2022,11/11/2022,14174 +SOFACY GROUP,,,,,,,,,,,,,,,,,,,Komsomol'skiy Prospekt,,,,,20 Moscow,119146,Russia,"(UK Sanctions List Ref):CYB0012 (UK Statement of Reasons):The 85th Main Centre for Special Technologies (GTsSS) of the Russian General Staff of the Armed Forces of the Russian Federation (GRU) - also known by its field post number ‘26165’ and industry nicknames: APT28, Fancy Bear, Sofacy Group, Pawn Storm, Strontium - was involved in illegally accessing the information systems of the German Federal Parliament (Deutscher Bundestag) without permission in April and May 2015. The military intelligence officers of the 85th controlled, directed and took part in this activity, accessing the email accounts of MPs and stealing their data. Their activity interfered with the parliament’s information systems affecting its operation for several days, undermining the exercise of parliamentary functions in Germany. (Type of entity):Department within Government (Parent company):Russian Ministry of Defence",Entity,AKA,,Cyber,23/10/2020,31/12/2020,31/12/2020,13984 +SOK CHOL,KIM,,,,,,,,,08/05/1955,,,North Korea,472310082,,,,(1) Acted as the DPRK Ambassador to Myanmar (2) KOMID facilitator,,,,,,,,Myanmar,"(UK Sanctions List Ref):DPR0236 (UN Ref):KPi.036 Kim Sok Chol acted as the DPRK Ambassador to Myanmar and he operates as a KOMID facilitator. He was paid by KOMID for his assistance and arranges meetings on behalf of KOMID, including a meeting between KOMID and Burmese defense related persons to discuss financial matters.",Individual,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,11/11/2022,13421 +SO'K MIN,CH'OE,,,,,,,,,25/07/1978,,,,,,,,Overseas Foreign Trade Bank representative,,,,,,,,,"(UK Sanctions List Ref):DPR0207 (UN Ref):KPi.064 In 2016, Ch’oe So’k-min was the deputy representative at the Foreign Trade Bank branch office in that overseas location. He has been associated with cash transfers from that overseas Foreign Trade Bank office to banks affiliated with North Korean special organizations and Reconnaissance General Bureau operatives located overseas in an effort to evade sanctions. in response to the DPRK test of an ICBM on 28 November 2017 (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13559 +SOK-HWA,HWANG,,,,,,,,,,,,,,,,,Director in the General Bureau of Atomic Energy (GBAE),,,,,,,,,"(UK Sanctions List Ref):DPR0212 (UN Ref):KPi.003 Director in the General Bureau of Atomic Energy (GBAE); involved in DPRK’s nuclear program; as Chief of the Scientific Guidance Bureau in the GBAE, served on the Science Committee inside the Joint Institute for Nuclear Research.",Individual,Primary name,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,31/12/2020,10916 +SOKOL,Sergei,Mikhailovich,,,,,Сергей Михайлович Сокол,,,17/12/1970,Sevastopol,Ukraine,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0644 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,15/03/2022,14589 +SOKOLOVSKI,Ivan,Yurievich,,,,,"САКАЛОЎСКI, Iван Юр’евiч",,,,,,,,,,,"Director of the Akrestina detention centre, Minsk",,,,,,,,,"(UK Sanctions List Ref):BEL0026 (UK Statement of Reasons):In his capacity as Director of the Akrestina detention centre in Minsk, Ivan Sakalouski is responsible for the inhumane and degrading treatment, including torture, inflicted on citizens detained in that detention centre in the wake of the 2020 presidential election. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,13/04/2022,13948 +SOLAT,Sanna,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0032 (UK Statement of Reasons):Known to have provided support to Iran's nuclear programme through senior roles held. (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9100 +SOLAT SANA,Abdollah,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0032 (UK Statement of Reasons):Known to have provided support to Iran's nuclear programme through senior roles held. (Gender):Male,Individual,Primary name,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9100 +SOLATSANNA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0032 (UK Statement of Reasons):Known to have provided support to Iran's nuclear programme through senior roles held. (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9100 +SOLDIERS OF AQSA,,,,,,,,,,,,,,,,,,,,,,,,Idlib Governorate,,Syria,"(UK Sanctions List Ref):AQD0061 (UN Ref):QDe.156 Associated with the Al Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116596 Also suspected to be in Hama Governorate, Syrian Arab Republic",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13509 +SOLDIERS OF AQSA,,,,,,,,,,,,,,,,,,,,,,,,Hama Governorate,,Syria,"(UK Sanctions List Ref):AQD0061 (UN Ref):QDe.156 Associated with the Al Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116596 Also suspected to be in Hama Governorate, Syrian Arab Republic",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13509 +SOLDIERS OF GOD,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0032 (UN Ref):QDe.098 The founder is Najmuddin Faraj Ahmad (QDi.226). Associated with Al-Qaida in Iraq (QDe.115). Located and primarily active in northern Iraq but maintains a presence in western and central Iraq. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282119,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2003,24/02/2003,31/12/2020,7021 +SOLDIERS OF ISLAM,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0032 (UN Ref):QDe.098 The founder is Najmuddin Faraj Ahmad (QDi.226). Associated with Al-Qaida in Iraq (QDe.115). Located and primarily active in northern Iraq but maintains a presence in western and central Iraq. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282119,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2003,24/02/2003,31/12/2020,7021 +SOLDIERS OF THE CALIPHATE,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0376 (UN Ref):QDe.167 Formed in November 2014. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). (Type of entity):Terrorist organisation",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/01/2022,29/12/2021,12/01/2022,14171 +SOLDIERS OF THE CALIPHATE IN ALGERIA,,,,,,,,,,,,,,,,,,,,,,,,Kabylie region,,Algeria,(UK Sanctions List Ref):AQD0062 (UN Ref):QDe.151 Emerged on 13 Sep. 2014. Most known for its abduction and subsequent beheading of French national Herve Gourdel. Claimed responsibility for attacking police and gendarmes in Algeria and continued planning future attacks. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5919300,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13305 +SOLDIERS OF THE CALIPHATE IN THE LAND OF ALGERIA,,,,,,,,,,,,,,,,,,,,,,,,Kabylie region,,Algeria,(UK Sanctions List Ref):AQD0062 (UN Ref):QDe.151 Emerged on 13 Sep. 2014. Most known for its abduction and subsequent beheading of French national Herve Gourdel. Claimed responsibility for attacking police and gendarmes in Algeria and continued planning future attacks. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5919300,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13305 +SOLDIERS OF THE CALIPHATE IN TUNISIA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0376 (UN Ref):QDe.167 Formed in November 2014. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). (Type of entity):Terrorist organisation",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/01/2022,29/12/2021,12/01/2022,14171 +SOLDIERS OF THE CALIPHATE OF ALGERIA,,,,,,,,,,,,,,,,,,,,,,,,Kabylie region,,Algeria,(UK Sanctions List Ref):AQD0062 (UN Ref):QDe.151 Emerged on 13 Sep. 2014. Most known for its abduction and subsequent beheading of French national Herve Gourdel. Claimed responsibility for attacking police and gendarmes in Algeria and continued planning future attacks. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5919300,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2015,29/09/2015,31/12/2020,13305 +SOLEIMANI,Kasim,,,,,,,,,11/03/1957,Qom,Iran,,008827,Issued in Iran,,,(1) Brigadier General (2) Commander of Qods force,,,,,,,,,"(UK Sanctions List Ref):INU0212 (UN Ref):IRi.039 Promoted to Major General, retaining his position as Commander of Qods force. [Old Reference # I.47.D.6]",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,15/03/2021,9062 +SOLEIMANI,Qasim,,,,,,,,,11/03/1957,Qom,Iran,,008827,Issued in Iran,,,(1) Brigadier General (2) Commander of Qods force,,,,,,,,,"(UK Sanctions List Ref):INU0212 (UN Ref):IRi.039 Promoted to Major General, retaining his position as Commander of Qods force. [Old Reference # I.47.D.6]",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,15/03/2021,9062 +SOLEIMANI,Sardar,,,,,,,,,11/03/1957,Qom,Iran,,008827,Issued in Iran,,,(1) Brigadier General (2) Commander of Qods force,,,,,,,,,"(UK Sanctions List Ref):INU0212 (UN Ref):IRi.039 Promoted to Major General, retaining his position as Commander of Qods force. [Old Reference # I.47.D.6]",Individual,AKA,Low quality,Iran (Nuclear),24/03/2007,24/03/2007,15/03/2021,9062 +SOLEIMANI,Gholamreza,,,,,Brigadier General,,,,00/00/1964,,,Iran,,,,,Head of the Basij Organisation of the Islamic Revolutionary Guard Corps,,,,,,,,,"(UK Sanctions List Ref):IHR0086 (UK Statement of Reasons):There are reasonable grounds to suspect that Gholamreza SOLEIMANI has been involved in the commission of serious human rights violations in Iran, including being responsible for, engaging in and providing support for the violent suppression of protests in Iran through his role as Head of the “Volunteer Forces” (Basij Organisation) and through participating in decisions relating to the conduct of Iranian security forces during the 2019 protests via his position in the National Security Council. (Gender):Male",Individual,Primary name,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15599 +SOLEIMANI,Gholamreza,,,,,Brigadier General,,,,00/00/1965,,,Iran,,,,,Head of the Basij Organisation of the Islamic Revolutionary Guard Corps,,,,,,,,,"(UK Sanctions List Ref):IHR0086 (UK Statement of Reasons):There are reasonable grounds to suspect that Gholamreza SOLEIMANI has been involved in the commission of serious human rights violations in Iran, including being responsible for, engaging in and providing support for the violent suppression of protests in Iran through his role as Head of the “Volunteer Forces” (Basij Organisation) and through participating in decisions relating to the conduct of Iranian security forces during the 2019 protests via his position in the National Security Council. (Gender):Male",Individual,Primary name,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15599 +SOLEIMANI,QASEM,,,,,,,,,11/03/1957,Qom,Iran,,008827,Issued in Iran,,,(1) Brigadier General (2) Commander of Qods force,,,,,,,,,"(UK Sanctions List Ref):INU0212 (UN Ref):IRi.039 Promoted to Major General, retaining his position as Commander of Qods force. [Old Reference # I.47.D.6]",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,15/03/2021,9062 +SOLNTSEV,Evgeniy,Aleksandrovich,,,,,Солнцев Евгений Александрович,Cyrillic,Russian,,,,,,,,,Deputy Chairman of the Government of the so-called Donetsk People’s Republic,,,,,,,,,"(UK Sanctions List Ref):RUS1571 (UK Statement of Reasons):SOLNTSEV is the Deputy Chairman of the Government of the so-called Donetsk People’s Republic. SOLNTSEV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he engages in and provides support for policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15515 +SOLNTSEV,Yevgeny,Aleksandrovich,,,,,,,,,,,,,,,,Deputy Chairman of the Government of the so-called Donetsk People’s Republic,,,,,,,,,"(UK Sanctions List Ref):RUS1571 (UK Statement of Reasons):SOLNTSEV is the Deputy Chairman of the Government of the so-called Donetsk People’s Republic. SOLNTSEV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he engages in and provides support for policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15515 +SOLODOVNIKOV,Ivan,Alexandrovich,,,,,Иван Александрович СОЛОДОВНИКОВ,,,09/04/1985,,,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0497 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14442 +SOLODUN,Galina,Nikolayevna,,,,,Галина Николаевна СОЛОДУН,,,26/01/1968,Starodubsky District,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0968 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14919 +SOLOVIEV,Vladimir,,,,,,,,,20/10/1963,Moscow,Russia,Russia,,,,,Presenter of ‘Sunday Evening with Vladimir Solovyov’ and ‘Moscow. Kremlin. Putin’ on the Russian state broadcaster Russia-1.,,,,,,,,,"(UK Sanctions List Ref):RUS0704 (UK Statement of Reasons):Vladimir Solovyov is a prominent Russian TV presenter. In numerous broadcasts he has provided support for and promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14655 +SOLOVIEV,Yuri,Alekseyevich,,,,,СОЛОВЬЕВ Юрий Алексеевич,Cyrillic,Russian,13/04/1970,,Mongolia,(1) Russia (2) United Kingdom,,,,,First Deputy President and Chairman of of VTB Bank Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS0807 (UK Statement of Reasons):Yuri SOLOVIEV is a member of VTB Bank’s Management Board.  VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, SOLOVIEV obtains a financial benefit from VTB Bank, therefore SOLOVIEV is an involved person on the basis of his membership of and association with VTB Bank.   (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14758 +SOLOVYOV,,Alekseyevich,,,,,,,,13/04/1970,,Mongolia,(1) Russia (2) United Kingdom,,,,,First Deputy President and Chairman of of VTB Bank Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS0807 (UK Statement of Reasons):Yuri SOLOVIEV is a member of VTB Bank’s Management Board.  VTB Bank is a Government of Russia-affiliated entity, as it is owned or controlled directly or indirectly by the Government of Russia. As a member of VTB Bank’s Management Board, SOLOVIEV obtains a financial benefit from VTB Bank, therefore SOLOVIEV is an involved person on the basis of his membership of and association with VTB Bank.   (Gender):Male",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,09/05/2022,14758 +SOLOVYOV,Vladimir,Rudolfovich,,,,,СОЛОВЬЕВ Владимир Рудольфович,Cyrillic,Russian,20/10/1963,Moscow,Russia,Russia,,,,,Presenter of ‘Sunday Evening with Vladimir Solovyov’ and ‘Moscow. Kremlin. Putin’ on the Russian state broadcaster Russia-1.,,,,,,,,,"(UK Sanctions List Ref):RUS0704 (UK Statement of Reasons):Vladimir Solovyov is a prominent Russian TV presenter. In numerous broadcasts he has provided support for and promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14655 +SOLOVYOV,Sergey,Anatolievich,,,,,Сергей Анатольевич Соловьев,,,01/05/1961,Leningrad,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0645 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14590 +SOLTANI,Hamid,,,,,,,,,,,,,,,,,Managing Director,PO Box 14395 1359,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0034 (UK Statement of Reasons):Former Managing Director of the Management Company for Nuclear Power Plant Construction (MASNA) (Gender):Male,Individual,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,31/12/2020,12245 +SOLTANI,Seyed,Mohammad,,,,,,,,,,,Iran,,,,,"Head of the Organisation for Islamic Propaganda in the province of Khorasan-Razavi. Former Judge, of Mashhad Revolutionary Court, until 2013.",,,,,,,,,"(UK Sanctions List Ref):IHR0060 (UK Statement of Reasons):Head of the Organisation for Islamic Propaganda in the province of Khorasan-Razavi. Judge, Mashhad Revolutionary Court until 2013. Trials under his jurisdiction have been conducted summarily and inside closed session, without adherence to basic rights of the accused. As execution rulings were issued en masse, death sentences were issued without proper observance of fair hearing procedures. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11800 +SOLVENT DISCOVERER,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0100 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK merchant vessel M/V SAM JONG 2 was involved in ship-to-ship transfer operations of oil in late January 2018. Listed as asset of Korea Samjong Shipping (OFSI ID: 13635, UN Reference Number: UN Ref KPe.064) (IMO number):7408873 (Current owners):Korea Samjong Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Oil tanker (Tonnage of ship):1676 (Length of ship):80 (Year built):1975",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13651 +SOMAD,Abdus,,,,,,,,,17/08/1938,"Jombang, East Java",Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,"(UK Sanctions List Ref):AQD0114 (UN Ref):QDi.217 Formed Jemmah Anshorut Tauhid (JAT) (QDe.133) in 2008. In 2010, arrested for incitement to commit terrorism and fundraising with respect to a training camp in Aceh, Indonesia and sentenced to 15 years in 2011. Ba'asyir was released from prison on 8 January 2021 after serving his sentence in accordance with Indonesian laws and regulations. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 24 November 2020. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1428633",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,07/04/2021,8831 +SOMALI BATTALION,,,,,,,Батальйон Сомалі,,,,,,,,,,,,Str Shosseynaya 1,St Zaplavskaya,"October C, District",,,Russia Rostov Region,,Russia,"(UK Sanctions List Ref):RUS0196 (UK Statement of Reasons):The Somali Battalion is an armed separatist group and is part of the so-called ""1st Army Corps"" of the ""Donetsk People's Republic"". The group has actively supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. (Phone number):+7-8-908-178-65-57 (Website):Official web site: http://vvd2003.narod.ru/ (Type of entity):State-Owned Enterprise",Entity,Primary name,,Russia,16/02/2015,31/12/2020,31/12/2020,13220 +SON,Chol,Ju,,,,,,,,,,,North Korea,,,,,(1) Korean People's Army (2) Political Director of the Air and Anti-Air Forces,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0052 (UK Statement of Reasons):General of the Korean People’s Army. Deputy Director responsible for organisation of the Korea's People Army and former Political Director of the Air and Anti-Air forces, which oversees the development of modernised anti-aircraft rockets. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,02/08/2022,13368 +SON,Chol-Ju,,,,,Colonel General,,,,,,,North Korea,,,,,(1) Korean People's Army (2) Political Director of the Air and Anti-Air Forces,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0052 (UK Statement of Reasons):General of the Korean People’s Army. Deputy Director responsible for organisation of the Korea's People Army and former Political Director of the Air and Anti-Air forces, which oversees the development of modernised anti-aircraft rockets. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-related programmes. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,02/08/2022,13368 +SON,Young-Nam,,,,,,,,,,,,North Korea,,,,,First Secretary DPRK Embassy Bangladesh,,,,,,,,Bangladesh,"(UK Sanctions List Ref):DPR0037 Associations with AMM Middle East General Trading, and DPRK Embassy Dhaka (UK Statement of Reasons):Son Young-Nam has been identified by the UN Panel of Experts as being involved in the smuggling of gold and other items to the DPRK in violation of the prohibitions imposed by United Nations Security Council Resolutions. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13603 +SON,Young-Nam,,,,,,,,,,,,North Korea,,,,,First Secretary DPRK Embassy Bangladesh,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0037 Associations with AMM Middle East General Trading, and DPRK Embassy Dhaka (UK Statement of Reasons):Son Young-Nam has been identified by the UN Panel of Experts as being involved in the smuggling of gold and other items to the DPRK in violation of the prohibitions imposed by United Nations Security Council Resolutions. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,22/01/2018,31/12/2020,31/12/2020,13603 +SONG CHOL,JANG,,,,,,,,,12/03/1967,,,,,,,,Korea Mining Development Corporation (KOMID) representative overseas,,,,,,,,,(UK Sanctions List Ref):DPR0215 (UN Ref):KPi.056,Individual,Primary name,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13529 +SONG CHOL,KIM,,,,,,,,,26/03/1968,,,North Korea,(1) 381420565 (2) 654120219,,,,KOMID Official,,,,,,,,,(UK Sanctions List Ref):DPR0237 (UN Ref):KPi.030 Kim Song Chol is a KOMID official that has conducted business in Sudan on behalf of KOMID’s interests.,Individual,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,16/02/2022,13415 +SONG CHOL,KIM,,,,,,,,,15/10/1970,,,North Korea,(1) 381420565 (2) 654120219,,,,KOMID Official,,,,,,,,,(UK Sanctions List Ref):DPR0237 (UN Ref):KPi.030 Kim Song Chol is a KOMID official that has conducted business in Sudan on behalf of KOMID’s interests.,Individual,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,16/02/2022,13415 +SONG HYOK,RI,,,,,,,,,19/03/1965,,,North Korea,654234735,Issued by the Democratic People's Republic of Korea,,,Ri Song Hyok is an overseas representative for Koryo Bank and Koryo Credit Development Bank,,,,,,,,,(UK Sanctions List Ref):DPR0267 (UN Ref):KPi.077 Ri Song Hyok has reportedly established front companies to procure items and conduct financial transactions on behalf of North Korea. (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,02/08/2022,13573 +SONG IL,CHOE,,,,,,,,,,,,North Korea,(1) 472320665 (2) 563120356,(1) Expires 26 Sep. 2017 (2) -,,,Tanchon Commercial Bank Representative,,,,,,,,North Korea,(UK Sanctions List Ref):DPR0208 (UN Ref):KPi.014 Served as the Tanchon Commercial Bank representative in Vietnam.,Individual,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,19/01/2021,13325 +SONGALE,Fuad,,,,,,,,,,,,Somalia,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +SONGALE,Fuad,,,,,,,,,,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0006 (UN Ref):SOi.005,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11092 +SOPELNIK,Andrei,Fiodorovich,,,,,СОПЕЛЬНИК Андрей Федорович,Cyrillic,Russian,16/03/1975,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1307 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15259 +SOPELNIK,Andrey,Fyodorovich,,,,,,,,16/03/1975,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1307 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15259 +SOROH AL CHAM COMPANY,,,,,,,,,,,,,,,,,,,Adra Free Zone Area,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0328 Real Estate (UK Statement of Reasons):Regime controlled company. Majority of the shares were previously owned directly or indirectly by Rami Makhlouf. As such, there are reasonable grounds to suspect that the company is or has been involved in supporting or benefitting from the Syrian regime through the provision of financial or other economic resources and/or is owned or controlled by or otherwise associated with the regime. (Phone number):(1) +963-11-5316396 (2) +963-11-5327266 (3) +963-932-878282 (4) +963-933-526812 (Website):http://sites.google.com/site/sorohco (Email address):sorohco@gmail.com",Entity,AKA,,Syria,26/09/2011,31/12/2020,19/05/2022,12066 +SORUH COMPANY,,,,,,,,,,,,,,,,,,,Adra Free Zone Area,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0328 Real Estate (UK Statement of Reasons):Regime controlled company. Majority of the shares were previously owned directly or indirectly by Rami Makhlouf. As such, there are reasonable grounds to suspect that the company is or has been involved in supporting or benefitting from the Syrian regime through the provision of financial or other economic resources and/or is owned or controlled by or otherwise associated with the regime. (Phone number):(1) +963-11-5316396 (2) +963-11-5327266 (3) +963-932-878282 (4) +963-933-526812 (Website):http://sites.google.com/site/sorohco (Email address):sorohco@gmail.com",Entity,AKA,,Syria,26/09/2011,31/12/2020,19/05/2022,12066 +SOTONIKOV,Oleg,Mikhaylovich,,,,,,,,24/08/1972,Oeljanovsk,Russia,Russia,120018866,,,,HUMINT Support (GRU),,,,,,Moscow,,Russia,(UK Sanctions List Ref):CYB0008 (UK Statement of Reasons):Oleg Mijailovich Sotnikov was part of a team of intelligence officers of the Russian General Staff Main Intelligence Directorate (GRU) unit known as field post number 26165 that attempted to gain unauthorised access to the information systems of the Organisation for the Prohibition of Chemical Weapons (OPCW) in April 2018. The Netherlands authorities disrupted the cyber attack before it was successful. This attempted relevant cyber activity was intended to undermine the independence or effective functioning of an international organisation (Gender):Male,Individual,Primary name,,Cyber,31/07/2020,31/12/2020,31/12/2020,13908 +SOULEIMAN,,,,,,,,,,25/06/1964,Oran,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0299 (UN Ref):QDi.323 A veteran member of the ‘Chechen Network’ (not listed) and other terrorist groups. He was convicted of his role and membership in the ‘Chechen Network’ in France in 2006. Joined Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137) in October 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13089 +SOULEIMAN,,,,,,,,,,05/12/1965,Oran,Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0299 (UN Ref):QDi.323 A veteran member of the ‘Chechen Network’ (not listed) and other terrorist groups. He was convicted of his role and membership in the ‘Chechen Network’ in France in 2006. Joined Jabhat al-Nusrah, listed as Al-Nusrah Front for the People of the Levant (QDe.137) in October 2013. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,15/08/2014,15/08/2014,31/12/2020,13089 +SOULEIMANE,Abou,,,,,,,,,00/00/1981,,Saudi Arabia,Mauritania,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0093 (UN Ref):QDi.298 Pakistan-based senior Al-Qaida (QDe.004) leader also associated with The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Wanted by Mauritanian authorities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555823,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/09/2011,15/09/2011,31/12/2020,12148 +SOULEMAN,Bi Sidi,,,,,,,,,20/07/1962,Bocaranga,Central African Republic,Central African Republic,N°235/MISPAT/DIRCAB/DGPC/DGAEI/SI/SP,(laissez-Passer) issued on 15 Mar. 2019 (issued by the Minister of Interior of the Central African Republic ),,,"President and self-proclaimed “general” of the Retour, Réclamation et Réhabilitation (3R)",,,,,Koui,Ouham-Pendé prefecture,,Central African Republic,"(UK Sanctions List Ref):CAF0015 (UN Ref):CFi.014 Bi Sidi Souleman leads the Central African Republic (CAR)-based militia group Retour, Réclamation, Réhabilitation (3R) which has killed, tortured, raped, and displaced civilians and engaged in arms trafficking, illegal taxation activities, and warfare with other militias since its creation in 2015. Bi Sidi Souleman himself has also participated in torture. On 6 February 2019, 3R signed the Political Agreement for Peace and Reconciliation in the CAR but has engaged in acts violating the Agreement and remains a threat to the peace, stability and security of the CAR. For instance, on 21 May 2019, 3R killed 34 unarmed civilians in three villages, summarily executing adult males. Bi Sidi Souleman openly confirmed to a UN Entity that he had ordered 3R elements to the villages on the date of the attacks, but did not admit to giving the orders for 3R to kill. In December 2020, after having joined a coalition of armed groups established to disrupt the electoral process, Bi Sidi Souleman was reportedly killed during fighting. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,Central African Republic,06/08/2020,05/08/2020,25/02/2021,13912 +SOULEMANE,Bi Sidi,,,,,,,,,20/07/1962,Bocaranga,Central African Republic,Central African Republic,N°235/MISPAT/DIRCAB/DGPC/DGAEI/SI/SP,(laissez-Passer) issued on 15 Mar. 2019 (issued by the Minister of Interior of the Central African Republic ),,,"President and self-proclaimed “general” of the Retour, Réclamation et Réhabilitation (3R)",,,,,Koui,Ouham-Pendé prefecture,,Central African Republic,"(UK Sanctions List Ref):CAF0015 (UN Ref):CFi.014 Bi Sidi Souleman leads the Central African Republic (CAR)-based militia group Retour, Réclamation, Réhabilitation (3R) which has killed, tortured, raped, and displaced civilians and engaged in arms trafficking, illegal taxation activities, and warfare with other militias since its creation in 2015. Bi Sidi Souleman himself has also participated in torture. On 6 February 2019, 3R signed the Political Agreement for Peace and Reconciliation in the CAR but has engaged in acts violating the Agreement and remains a threat to the peace, stability and security of the CAR. For instance, on 21 May 2019, 3R killed 34 unarmed civilians in three villages, summarily executing adult males. Bi Sidi Souleman openly confirmed to a UN Entity that he had ordered 3R elements to the villages on the date of the attacks, but did not admit to giving the orders for 3R to kill. In December 2020, after having joined a coalition of armed groups established to disrupt the electoral process, Bi Sidi Souleman was reportedly killed during fighting. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,Central African Republic,06/08/2020,05/08/2020,25/02/2021,13912 +SOURI,,,,,,,,,,00/00/1964,Selseleh,Iran,,,,,,Former Head of Evin prison until 2012.. Parliamentary deputy for Lorestan Province.Member of the Parliamentary Commission for Foreign and Security Policy,,,,,,,,,"(UK Sanctions List Ref):IHR0038 (UK Statement of Reasons):Member of the National Security and Foreign policy Committee. Parliamentary deputy for Lorestan Province. Member of the Parliamentary Commission for Foreign and Security Policy. Head of Evin prison until 2012. Torture was a common practice in Evin prison while Souri was its head. In Ward 209, many activists were held for their peaceful activities in opposition to the ruling government. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,31/12/2020,12193 +SOURI,Hojatollah,Khodaei,,,,,,,,00/00/1964,Selseleh,Iran,,,,,,Former Head of Evin prison until 2012.. Parliamentary deputy for Lorestan Province.Member of the Parliamentary Commission for Foreign and Security Policy,,,,,,,,,"(UK Sanctions List Ref):IHR0038 (UK Statement of Reasons):Member of the National Security and Foreign policy Committee. Parliamentary deputy for Lorestan Province. Member of the Parliamentary Commission for Foreign and Security Policy. Head of Evin prison until 2012. Torture was a common practice in Evin prison while Souri was its head. In Ward 209, many activists were held for their peaceful activities in opposition to the ruling government. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,31/12/2020,12193 +SOURUH COMPANY,,,,,,,,,,,,,,,,,,,Adra Free Zone Area,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0328 Real Estate (UK Statement of Reasons):Regime controlled company. Majority of the shares were previously owned directly or indirectly by Rami Makhlouf. As such, there are reasonable grounds to suspect that the company is or has been involved in supporting or benefitting from the Syrian regime through the provision of financial or other economic resources and/or is owned or controlled by or otherwise associated with the regime. (Phone number):(1) +963-11-5316396 (2) +963-11-5327266 (3) +963-932-878282 (4) +963-933-526812 (Website):http://sites.google.com/site/sorohco (Email address):sorohco@gmail.com",Entity,Primary name,,Syria,26/09/2011,31/12/2020,19/05/2022,12066 +SOUSSOU,HABIB,,,,,,,,,13/03/1980,,Central African Republic,Central African Republic,,,,,(1) Coordinator of anti-Balaka for Lobaye province (2) Master-corporal of the Central African Armed Forces (FACA),,,,,,Boda,,Central African Republic,"(UK Sanctions List Ref):CAF0006 (UN Ref):CFi.005 Appointed as anti-balaka zone commander (COMZONE) of Boda on 11 April 2014 and on 28 June 2014, for the entire Lobaye Province. Under his command, targeted killings, clashes and attacks against humanitarian organizations and aid workers have continued to take place. Physical description: eye colour: brown; hair colour: black; height: 160cm; weight: 60kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals (Phone number):+236 72198628",Individual,Primary name,,Central African Republic,03/09/2015,20/08/2015,31/12/2020,13272 +SOUTH ASIAN CHAPTER OF ISIL,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0357 (UN Ref):QDe.161 Islamic State of Iraq and the Levant - Khorasan (ISIL - K) was formed on January 10, 2015 by a former Tehrik-e Taliban Pakistan (TTP) (QDe.132) commander and was established by former Taliban faction commanders who swore an oath of allegiance to the Islamic State of Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,15/05/2019,14/05/2019,04/04/2022,13788 +SOUTHFRONT,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1383 (UK Statement of Reasons):SouthFront is a website which has spread disinformation relating to Ukraine and promoted the Government of Russia’s false narrative about the Russian invasion of Ukraine. SouthFront has therefore supported and promoted policies and activities which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. (Website):https://southfront.org/ (Email address):info@southfront.org",Entity,Primary name,,Russia,04/05/2022,04/05/2022,04/05/2022,15340 +SOUTHFRONT: ANALYSIS AND INTELLIGENCE,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1383 (UK Statement of Reasons):SouthFront is a website which has spread disinformation relating to Ukraine and promoted the Government of Russia’s false narrative about the Russian invasion of Ukraine. SouthFront has therefore supported and promoted policies and activities which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. (Website):https://southfront.org/ (Email address):info@southfront.org",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,04/05/2022,15340 +SOVKOMBANK,,,,,,,,,,,,,,,,,,,Tekstilschik Avenue,46 Kostroma,,,,,156000,Russia,"(UK Sanctions List Ref):RUS0255 (UK Statement of Reasons):PJSC SOVCOMBANK is a large and profitable private bank which obtains a benefit from the Russian Government, and/or supports the Russian Government. PJSC SOVCOMBANK has received financing from the Russian Direct Investment Fund and therefore carries on business as a Government of Russia-affiliated entity. It also carries on business of economic significance to the Government of Russia in view of PJSC SOVCOMBANK'S strategic role in the Russian economy. Furthermore, PJSC SOVCOMBANK carries on business in a sector of strategic significance to the Government of Russia as it operates in the Russian financial services sector. (Phone number):+7 (495) 988-00-00 (Website):www.SOVCOMBANK.ru (Type of entity):Public Joint-Stock Company",Entity,Primary name variation,,Russia,28/02/2022,28/02/2022,28/02/2022,14200 +SOVMESTNOE PREDPRIYATIE INTEGRAL SPB AO,,,,,,,Совместное предприятие ИНТЕГРАЛ СПБ АО,Cyrillic,Russian,,,,,,,,,,"Irinovsky pr-kt, 21",building 1,,,,St. Petersburg,195279,Russia,"(UK Sanctions List Ref):RUS1432 KPP: 780601001 (UK Statement of Reasons):INTEGRAL SPB is an electronics company based in St Petersburg servicing the military and civilian markets. It is an appointed representative and distributor for JSC INTEGRAL, a Minsk based company designated by the UK on 1 March 2022. As a representative and distributor of JSC INTEGRAL, and benefiting through the selling of JSC INTEGRAL products in the Russian market, INTEGRAL SPB is associated with an involved person and therefore INTEGRAL SPB is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. Further, by selling electronics products to military customers, INTEGRAL SPB is also carrying on business in a sector of strategic significance to the Government of Russia, namely the electronics and defence sectors. (Phone number):7 (812) 640-78-90 (Website):http://integralspb.ru/o-kompanii/ (Email address):order@integralspb.ru (Parent company):JSC INTEGRAL (Business Reg No):Tax Identification Number: INN 7801047839",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15373 +SOVOKONENKO,Yuriy,Viktorovich,,,,,,,,07/08/1957,Stalino City (now Donetsk),Ukraine,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0136 (UK Statement of Reasons):Member of the ‘Parliament’ of the so called ‘Donetsk People's Republic’ and Chairman of the public association Union of Veterans of the Donbass Berkut and a member of the public movement ‘Free Donbass’. Stood as a candidate in the so called ‘elections’ of 2 November 2014 to the post of the Head of the so called ‘Donetsk People's Republic’. These elections are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. He remains a member of the so-called “people’s council of the Donetsk People’s Republic (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,14/02/2022,13173 +SOVOKONENKO,Yury,,,,,,,,,07/08/1957,Stalino City (now Donetsk),Ukraine,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0136 (UK Statement of Reasons):Member of the ‘Parliament’ of the so called ‘Donetsk People's Republic’ and Chairman of the public association Union of Veterans of the Donbass Berkut and a member of the public movement ‘Free Donbass’. Stood as a candidate in the so called ‘elections’ of 2 November 2014 to the post of the Head of the so called ‘Donetsk People's Republic’. These elections are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. He remains a member of the so-called “people’s council of the Donetsk People’s Republic (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,14/02/2022,13173 +SOYKO,Victor,Vladimirovich,,,,Colonel,СОЙКО Виктор Владимирович,Cyrillic,,03/07/1971,Komsomolskaya,Belarus,Belarus,,,,,Deputy Commander Air Force and Head of Armaments,,,,,,,,,"(UK Sanctions List Ref):RUS0737 (UK Statement of Reasons):Colonel Victor Vladimirovich SOYKO has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely being involved in the command of the Air Force and Air Defence Forces which have hosted Russian air assets and allowed its facilities to be used by Russia in launching attacks on Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14688 +SP INTEGRAL SPB AO,,,,,,,СП АО ИНТЕГРАЛ СПБ,Cyrillic,Russian,,,,,,,,,,"Irinovsky pr-kt, 21",building 1,,,,St. Petersburg,195279,Russia,"(UK Sanctions List Ref):RUS1432 KPP: 780601001 (UK Statement of Reasons):INTEGRAL SPB is an electronics company based in St Petersburg servicing the military and civilian markets. It is an appointed representative and distributor for JSC INTEGRAL, a Minsk based company designated by the UK on 1 March 2022. As a representative and distributor of JSC INTEGRAL, and benefiting through the selling of JSC INTEGRAL products in the Russian market, INTEGRAL SPB is associated with an involved person and therefore INTEGRAL SPB is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. Further, by selling electronics products to military customers, INTEGRAL SPB is also carrying on business in a sector of strategic significance to the Government of Russia, namely the electronics and defence sectors. (Phone number):7 (812) 640-78-90 (Website):http://integralspb.ru/o-kompanii/ (Email address):order@integralspb.ru (Parent company):JSC INTEGRAL (Business Reg No):Tax Identification Number: INN 7801047839",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15373 +SPARTA BATTALION,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0197 Names of Director(s)/Management: Arseny Pavlov aka Motorola (deceased) (UK Statement of Reasons):Armed separatist group which has actively supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. Part of the so-called Armed Forces of “Donetsk People’s Republic”. (Website):Social Media: http://vk.com/kazak_nac_guard (Type of entity):Armed Separatist Group",Entity,Primary name,,Russia,16/02/2015,31/12/2020,31/12/2020,13219 +SPC,,,,,,,,,,,,,,,,,,,Dummar Province,Expansion Square,Island 19-Building 32,,PO BOX: 2849,,,Syria,"(UK Sanctions List Ref):SYR0335 Oil and Gas (UK Statement of Reasons):State-owned oil company. There are reasonable grounds to suspect that the company is or has been involved in supporting or benefitting from the Syrian regime in that it provides financial support or other economic resources to the Syrian regime, including through the supply or sale of oil and related products. (Phone number):(1) +963-11-3137913 (2) +963-11-3137935 (3) +963-11-3137977 (4) +963-11-3137979 (Website):(1) www.spc.com.sy (2) www.spc-sy.com (Email address):(1) spccom1@scs-net.org (2) spccom2@scs-net.org (Type of entity):State-owned",Entity,AKA,,Syria,26/03/2012,31/12/2020,26/07/2022,12644 +SPC,,,,,,,,,,,,,,,,,,,Dummar Province,Expansion Square,Island 19-Building 32,,PO BOX: 3378,,,Syria,"(UK Sanctions List Ref):SYR0335 Oil and Gas (UK Statement of Reasons):State-owned oil company. There are reasonable grounds to suspect that the company is or has been involved in supporting or benefitting from the Syrian regime in that it provides financial support or other economic resources to the Syrian regime, including through the supply or sale of oil and related products. (Phone number):(1) +963-11-3137913 (2) +963-11-3137935 (3) +963-11-3137977 (4) +963-11-3137979 (Website):(1) www.spc.com.sy (2) www.spc-sy.com (Email address):(1) spccom1@scs-net.org (2) spccom2@scs-net.org (Type of entity):State-owned",Entity,AKA,,Syria,26/03/2012,31/12/2020,26/07/2022,12644 +SPECIAL DIVISION OF FIRST RESPONDERS,,,,,,,,,,,,,,,,,,,,,,,Grozny,Republic of Chechnya,,Russia,(UK Sanctions List Ref):GHR0066 (UK Statement of Reasons):Ramzan Kadyrov’s leadership of the Chechen Republic in Russia has been characterised by the systematic persecution of critics of the Chechen authorities and of perceived subversives. This has included the systematic use of murder and CIDT against LGBT Chechens and human rights defenders. There is a considerable and credible body of evidence strongly indicating that the Terek Rapid Response Unit has been heavily involved in the murder and use of CIDT against LGBT Chechens since 2017. (Type of entity):Special Police Unit,Entity,AKA,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14007 +SPECIAL INDUSTRIES GROUP (SIG),,,,,,,,,,,,,,,,,,,Pasdaran Avenue,PO Box 19585/777,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0187 (UN Ref):IRe.073 Subordinate of DIO. [Old Reference # E.29.I.20] (Parent company):Defence Industries Organisation (DIO),Entity,Primary name,,Iran (Nuclear),24/04/2007,09/06/2010,31/12/2020,9108 +SPECIAL PURPOSE ISLAMIC REGIMENT,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0077 (UN Ref):QDe.101 Linked to the Islamic International Brigade (IIB) (QDe.099) and the Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs (RSRSBCM) (QDe.100). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278482,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,31/12/2020,7466 +SPECIAL RAPID RESPONSE UNIT CHECHNYA,,,,,,,,,,,,,,,,,,,,,,,Grozny,Republic of Chechnya,,Russia,(UK Sanctions List Ref):GHR0066 (UK Statement of Reasons):Ramzan Kadyrov’s leadership of the Chechen Republic in Russia has been characterised by the systematic persecution of critics of the Chechen authorities and of perceived subversives. This has included the systematic use of murder and CIDT against LGBT Chechens and human rights defenders. There is a considerable and credible body of evidence strongly indicating that the Terek Rapid Response Unit has been heavily involved in the murder and use of CIDT against LGBT Chechens since 2017. (Type of entity):Special Police Unit,Entity,AKA,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14007 +SPECIAL RESPONSE UNIT CHECHNYA,,,,,,,,,,,,,,,,,,,,,,,Grozny,Republic of Chechnya,,Russia,(UK Sanctions List Ref):GHR0066 (UK Statement of Reasons):Ramzan Kadyrov’s leadership of the Chechen Republic in Russia has been characterised by the systematic persecution of critics of the Chechen authorities and of perceived subversives. This has included the systematic use of murder and CIDT against LGBT Chechens and human rights defenders. There is a considerable and credible body of evidence strongly indicating that the Terek Rapid Response Unit has been heavily involved in the murder and use of CIDT against LGBT Chechens since 2017. (Type of entity):Special Police Unit,Entity,AKA,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14007 +SPIR,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0077 (UN Ref):QDe.101 Linked to the Islamic International Brigade (IIB) (QDe.099) and the Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs (RSRSBCM) (QDe.100). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278482,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,31/12/2020,7466 +SPIRIDINOV,Ivan,,,,,,,,,21/08/1976,,,,,,,,FSB Operative attached to Criminalistics Institute,,,,,,,,,"(UK Sanctions List Ref):CHW0020 (UK Statement of Reasons):Ivan Osipov is an FSB operative in the Criminalistics Institute - Military Unit 34435. Evidence including phone and travel records suggest that Ivan Osipov was one of the operatives involved in the use of a chemical weapon in the attempted assassination of Russian opposition leader Alexey Navalny during his August 2020 visit to Siberia. A chemical weapon - a toxic nerve agent of the Novichok group - was used. Osipov was an operative of the Criminalistics Unit present in Tomsk where Navalny was poisoned. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny is a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. There are reasonable grounds to suspect that Ivan Osipov, in his capacity as an operative in the Federal Security Service of the Russian Federation, was present in Tomsk at the time of the poisoning and was one of the key operatives responsible for the preparation and use of a toxic nerve agent of the Novichok group in the attempted assassination of Alexey Navalny.",Individual,AKA,,Chemical Weapons,20/08/2021,20/08/2021,20/08/2021,14134 +SPIRIDONOV,Alexander,Yurievich,,,,,Александр Юрьевич Спиридонов,,,03/01/1989,Severodvinsk,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0646 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14591 +SPND,,,,,,,,,,,,,,,,,,,"Negarestan 3,",off of Pasdaran Street,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0040 (UK Statement of Reasons):The Organisation of Defensive Innovation and Research (SPND) directly supports Iran's proliferation sensitive nuclear activities. The IAEA has identified SPND with their concerns over possible military dimensions (PMD) to Iran's nuclear programme. SPND is run by UN designated Mohsen Fakhrizadeh and is part of the Ministry of Defence For Armed Forces Logistics (MODAFL) (Type of entity):Enterprise (Subsidiaries):Research Centre for Explosion and Impact (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,31/12/2020,12821 +SPO,,,,,,,,,,,,,,,,,,,Sarhang Sakhai Street,Ferdowski Avenue,Building 2,,,Tehran,,Iran,(UK Sanctions List Ref):INU0044 (UK Statement of Reasons):Acting on behalf of MODAFL (Type of entity):Enterprise (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,31/12/2020,10658 +SSRC,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,,(UK Sanctions List Ref):SYR0319 Manufacturing/Proliferation (UK Statement of Reasons):Affiliated to and a subsidiary of the Syrian Scientific Studies and Research Centre (SSRC) which is already designated. It provides support to the SSRC and is therefore responsible for the violent repression of the civilian population. (Type of entity):Public,Entity,AKA,,Syria,23/07/2014,31/12/2020,31/12/2020,13033 +SSRC,,,,,,,,,,,,,,,,,,,,,,,PO Box 4470,,,Syria,(UK Sanctions List Ref):SYR0319 Manufacturing/Proliferation (UK Statement of Reasons):Affiliated to and a subsidiary of the Syrian Scientific Studies and Research Centre (SSRC) which is already designated. It provides support to the SSRC and is therefore responsible for the violent repression of the civilian population. (Type of entity):Public,Entity,AKA,,Syria,23/07/2014,31/12/2020,31/12/2020,13033 +SSTP,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +SSTP,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +SSTP,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +SSTP,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STANDARD TECHNICAL COMPONENT INDUSTRY AND TRADE COMPANY,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STANDARD TECHNICAL COMPONENT INDUSTRY AND TRADE COMPANY,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STANDARD TECHNICAL COMPONENT INDUSTRY AND TRADE COMPANY,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STANDARD TECHNICAL COMPONENT INDUSTRY AND TRADE COMPANY,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STANDART TEKNIK PARCA SAN VE TIC A.S.,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STANDART TEKNIK PARCA SAN VE TIC A.S.,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STANDART TEKNIK PARCA SAN VE TIC A.S.,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STANDART TEKNIK PARCA SAN VE TIC A.S.,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STANDART TEKNIK PARCA SAN. VE TICARET A.S.,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STANDART TEKNIK PARCA SAN. VE TICARET A.S.,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STANDART TEKNIK PARCA SAN. VE TICARET A.S.,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STANDART TEKNIK PARCA SAN. VE TICARET A.S.,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STANISHLAUCHYK,Viktar,Ivanavich,,,,,Вiктар Iванавiч СТАНIСЛАЎЧЫК,,,27/01/1971,,,,,,,,(1) Deputy Head of the Police Department of the Sovetsky District of Minsk (2) Head of the Public Security Police,,,,,,,,,"(UK Sanctions List Ref):BEL0076 (UK Statement of Reasons):In his position as Deputy Head of the Police Department of the Sovetsky District of Minsk and Head of the Public Security Police, Viktar Stanishlauchyk is responsible for the repression and intimidation campaign led by the local police force under his command in the wake of the 2020 presidential election, in particular with arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. According to witnesses, he personally supervised the detention of peaceful protesters and beatings of those unlawfully detained. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14051 +STANISHLAUCHYK,Viktor,Ivanovich,,,,,Виктор Иванович СТАНИСЛАВЧИК,,,27/01/1971,,,,,,,,(1) Deputy Head of the Police Department of the Sovetsky District of Minsk (2) Head of the Public Security Police,,,,,,,,,"(UK Sanctions List Ref):BEL0076 (UK Statement of Reasons):In his position as Deputy Head of the Police Department of the Sovetsky District of Minsk and Head of the Public Security Police, Viktar Stanishlauchyk is responsible for the repression and intimidation campaign led by the local police force under his command in the wake of the 2020 presidential election, in particular with arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. According to witnesses, he personally supervised the detention of peaceful protesters and beatings of those unlawfully detained. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14051 +STANISLAVCHIK,Viktar,Ivanavich,,,,,,,,27/01/1971,,,,,,,,(1) Deputy Head of the Police Department of the Sovetsky District of Minsk (2) Head of the Public Security Police,,,,,,,,,"(UK Sanctions List Ref):BEL0076 (UK Statement of Reasons):In his position as Deputy Head of the Police Department of the Sovetsky District of Minsk and Head of the Public Security Police, Viktar Stanishlauchyk is responsible for the repression and intimidation campaign led by the local police force under his command in the wake of the 2020 presidential election, in particular with arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. According to witnesses, he personally supervised the detention of peaceful protesters and beatings of those unlawfully detained. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14051 +STANISLAVCHIK,Viktor,Ivanovich,,,,,,,,27/01/1971,,,,,,,,(1) Deputy Head of the Police Department of the Sovetsky District of Minsk (2) Head of the Public Security Police,,,,,,,,,"(UK Sanctions List Ref):BEL0076 (UK Statement of Reasons):In his position as Deputy Head of the Police Department of the Sovetsky District of Minsk and Head of the Public Security Police, Viktar Stanishlauchyk is responsible for the repression and intimidation campaign led by the local police force under his command in the wake of the 2020 presidential election, in particular with arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators as well as intimidation and violence against journalists. According to witnesses, he personally supervised the detention of peaceful protesters and beatings of those unlawfully detained. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14051 +STANKEVICH,Sergey,Nikolayevich,,,,Rear Admiral,"Станкевич, Сергей Николаевич",,,27/01/1963,Kaliningrad,Russia (USSR),Russia,,,,,Head of Border Directorate of the Federal Security Service of the Russian Federation for “Republic of Crimea and City of Sevastopol,,,,,,,,,"(UK Sanctions List Ref):RUS0215 (UK Statement of Reasons):Head of Border Directorate of the Federal Security Service of the Russian Federation for “Republic of Crimea and City of Sevastopol”, rear admiral. In this capacity, he was responsible for actions of the coast guard naval fleet of the Russian Federation against Ukraine on 25 November 2018 and thus actively contributed to the consolidation of the illegal annexation of the Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2019,31/12/2020,31/12/2020,13778 +STANKEVICH,Yury,Arkadievich,,,,,Юрий Аркадьевич СТАНКЕВИЧ,,,24/07/1976,Saratov,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0647 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14592 +STAP STANDART TEK PAR SAN TIC AS,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STAP STANDART TEK PAR SAN TIC AS,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STAP STANDART TEK PAR SAN TIC AS,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STAP STANDART TEK PAR SAN TIC AS,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STAR SAPPHIRE GROUP OF COMPANIES,,,,,,,,,,,,,,,,,,,"Room.201, Building (C)",Takhatho Yeikmon Housing,New University Avenue Road,Bahan,,Yangon,,Myanmar,"(UK Sanctions List Ref):MYA0055 (UK Statement of Reasons):The Myanmar Security Forces have a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. In 2017, the Myanmar Security Forces murdered, raped and tortured thousands of Rohingya during the Rakhine clearance operations. 740,000 Rohingya were forced over the border into Bangladesh. Star Sapphire Trading Company Limited has been responsible for the brokering of deals for military goods, including Unmanned Aerial Vehicles (UAVs). Therefore, Star Sapphire Trading Company Limited has been involved in the supply of restricted goods to Myanmar, which have likely been used in military operations. Star Sapphire Trading Company Limited contributed funds to the Myanmar Security Forces in 2017, at fundraising events for the Rakhine clearance operations held by Commander in Chief, Min Aung Hlaing. Star Sapphire Trading Company Limited has therefore made funds and economic resources available to or for the benefit of the Myanmar Security Forces, which could have contributed to serious human rights violations and repression of the civilian population in Myanmar. (Phone number):+95 1 551 536 (Website):www.starsapphiregroup.com",Entity,Primary name,,Myanmar,24/08/2022,24/08/2022,24/08/2022,15496 +STAROVOIT,Roman,Vladimirovich,,,,,Роман Владимирович Старовойт,,,20/01/1972,,,Russia,,,,,Governor of Kursk Region,,,,,,,,,"(UK Sanctions List Ref):RUS1510 (UK Statement of Reasons):Roman Vladimirovich STAROVOIT is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because STAROVOIT is a regional governor. Specifically, STAROVOIT is Governor of Kursk Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15448 +STARSHINOV,Mikhail,Evgenievich,,,,,Михаил Евгеньевич Старшинов,,,12/12/1971,Moscow,Russia,Russia,610341906,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0573 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14518 +STASHINA,Elena,,,,,,,,,05/11/1963,Tomsk,Russia,Russia,,,,,Former Judge at Tverskoi District Court,,,,,,,,,"(UK Sanctions List Ref):GHR0022 (UK Statement of Reasons):Yelena Stashina, as a Judge at Moscow’s Tverskoi District Court, was involved in decisions to extend the detention of Sergei Magnitsky, and in particular on 12 November 2009, four days before his death. In this capacity, Stashina facilitated the mistreatment / denial of medical care to Sergei Magnitsky which contributed significantly to his death. (Gender):Female",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13883 +STASHINA,Helen,,,,,,,,,05/11/1963,Tomsk,Russia,Russia,,,,,Former Judge at Tverskoi District Court,,,,,,,,,"(UK Sanctions List Ref):GHR0022 (UK Statement of Reasons):Yelena Stashina, as a Judge at Moscow’s Tverskoi District Court, was involved in decisions to extend the detention of Sergei Magnitsky, and in particular on 12 November 2009, four days before his death. In this capacity, Stashina facilitated the mistreatment / denial of medical care to Sergei Magnitsky which contributed significantly to his death. (Gender):Female",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13883 +STASHINA,Yelena,,,,,,,,,05/11/1963,Tomsk,Russia,Russia,,,,,Former Judge at Tverskoi District Court,,,,,,,,,"(UK Sanctions List Ref):GHR0022 (UK Statement of Reasons):Yelena Stashina, as a Judge at Moscow’s Tverskoi District Court, was involved in decisions to extend the detention of Sergei Magnitsky, and in particular on 12 November 2009, four days before his death. In this capacity, Stashina facilitated the mistreatment / denial of medical care to Sergei Magnitsky which contributed significantly to his death. (Gender):Female",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13883 +STASIUKEVICH,Vital,Ivanavich,,,,,Виталий Иванович СТАСЮКЕВИЧ,,,05/03/1976,"Grodno, Hrodna",Former USSR (now Belarus),,,,,,"Deputy Chief of Public Security Police, Grodno",,,,,,,,,"(UK Sanctions List Ref):BEL0077 (UK Statement of Reasons):Vitalyi Stasiukevich is the Deputy Chief of Public Security Police in Grodno. In this position he bears responsibility for the inhumane and degrading treatment, amounting to serious human rights violations, including torture, carried out in the detention facilities following the elections of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14048 +STASIUKEVICH,Vitalyi,Ivanovich,,,,,Вiталь Iванавiч СТАСЮКЕВIЧ,,,05/03/1976,"Grodno, Hrodna",Former USSR (now Belarus),,,,,,"Deputy Chief of Public Security Police, Grodno",,,,,,,,,"(UK Sanctions List Ref):BEL0077 (UK Statement of Reasons):Vitalyi Stasiukevich is the Deputy Chief of Public Security Police in Grodno. In this position he bears responsibility for the inhumane and degrading treatment, amounting to serious human rights violations, including torture, carried out in the detention facilities following the elections of 9 August. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14048 +STATE ADMINISTRATION COUNCIL,,,,,,,,,,,,,,,,,,,,,,,,Naypyitaw,,Myanmar,"(UK Sanctions List Ref):MYA0027 (UK Statement of Reasons):On 1 February 2021 the Myanmar military (Tatmadaw), led by Commander-in-Chief Min Aung Hlaing, staged a coup in Myanmar. As part of the coup, Vice-President Swe declared a state of emergency on 1 February transferring the legislative, executive and judicial powers of the state to Min Aung Hlaing. On 2 February, the Tatmadaw established the State Administration Council (SAC), which is chaired by Hlaing, in order to run the functions of the state. The SAC is responsible for and/or has supported and/or has promoted the undermining of democracy, repression of the civilian population and commission of serious human rights violation in Myanmar. Further or alternatively the SAC is acting at the direction of and/or is associated with Min Aung Hlaing who has been designated under the Global Human Rights (Sanctions) Regulations 2020 and the Myanmar (Sanctions) Regulations 2021 for his commanding responsibility , as Commander-in-Chief of the Tatmadaw, for the atrocities and serious human rights violations committed by the Tatmadaw against the Rohingya population in Rakhine state in 2017 and 2019; and for the serious human rights violations committed by the Myanmar Security Forces since the coup on 1 February. Seven other members of the SAC are serving military officers, all of whom are also designated by the UK under the Myanmar (Sanctions) Regulations 2021. (Type of entity):State Entity",Entity,Primary name,,Myanmar,21/06/2021,21/06/2021,11/11/2022,14111 +STATE AUTHORITY FOR MILITARY INDUSTRY OF THE REPUBLIC OF BELARUS,,,,,,,,,,,,,,,,,,,115 Nezavisimost ave,,,,,Minsk,220114,Belarus,"(UK Sanctions List Ref):RUS1094 (UK Statement of Reasons):As a Belarusian Government agency responsible for weapons development and exports, the State Authority For Military Industry Of The Republic Of Belarus (hereafter SAMI) has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Phone number):(+375-17) 280 91 00",Entity,Primary name,,Russia,24/03/2022,24/03/2022,24/06/2022,15037 +STATE CONCERN 'NATIONAL ASSOCIATION OF PRODUCERS 'MASSANDRA',,,,,,,,,,,,,,,,,,,Str. Vinodela Egorova 9,Massandra,Yalta,The Autonomous Republic of Crimea and the city of Sevastopol,,,298650,Ukraine,"(UK Sanctions List Ref):RUS0192 (UK Statement of Reasons):The ownership of Massandra Winery, a business trading in Crimea, was transferred contrary to the Ukrainian law. The enterprise was confiscated by the Crimean ‘authorities’. The subsequent ‘sale’ of the entity to the Yuzhny Proyect Company (Southern Project Company), affiliated with the Rossiya Bank which was founded by Yury Kovalchuk, was therefore a further unlawful transfer. (Website):http://massandra.su (Type of entity):Winery/Agriculture (Subsidiaries):Yuzhny Proyect (Southern Project), affiliated with the Saint Petersburg-based Rossiya bank, which is co-owned by oligarch Yury KOVALCHUK (RUS0007)",Entity,AKA,,Russia,25/07/2014,31/12/2020,16/09/2022,13060 +"STATE CORPORATION FOR THE PROMOTION OF THE DEVELOPMENT, MANUFACTURE AND EXPORT OF HIGH TECHNOLOGY PRODUCTS ""ROSTEC""",,,,,,,"Государственная корпорация по содействию разработке, производству и экспорту высокотехнологичной промышленной продукции «Ростех»",,,,,,,,,,,,24 Usacheva Street,,,,,Moscow,119048,Russia,"(UK Sanctions List Ref):RUS0238 Previous name(s): Rostekhnologii [Russian Technologies] (UK Statement of Reasons):Rostec is a major Russian state owned defence conglomerate. It is a major supplier of the Russian military and related enterprises. Rostec and its subsidiaries, provide financial services or makes available funds and economic resources, goods and/or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Phone number):+7(495)2872525 (Website):https://www.rostec.ru (Email address):info@rostec.ru (Type of entity):State Corporation (Business Reg No):1077799030847",Entity,Primary name,,Russia,24/02/2022,24/02/2022,24/02/2022,14185 +STATE ENTERPRISE 'MAGARACH' OF THE NATIONAL INSTITUTE OF WINE,,,,,,,,,,,,,,,,,,,Kirov Street 31,Yalta,,,,The Autonomous Republic of Crimea and the city of Sevastopol,298600,Ukraine,"(UK Sanctions List Ref):RUS0164 (UK Statement of Reasons):The ownership of the entity was transferred contrary to the Ukrainian law. On 9 April 2014, the ‘Presidium of the Parliament of Crimea’ adopted a decision No 1991-6/14 ‘On the amendments to the Resolution of the State Council of the “Republic of Crimea” of 26 March 2014 No 1836-6/14 ‘On nationalization of the property of enterprises, institutions and organizations of agro-industrial complex, located in the territory of the “Republic of Crimea”’ declaring the appropriation of assets belonging to the state enterprise ‘Gosudarstvenoye predpriyatiye Agrofirma “Magarach” nacionalnogo instituta vinograda i vina “Magarach”’ on behalf of the ‘Republic of Crimea’. The enterprise is thus effectively confiscated by the Crimean ‘authorities’. Re-registered on 15 January 2015 as ‘State Unitary Institution of the “Republic of Crimea” National Institute of Wine “Magarach”’. Founder: The Ministry of Agriculture of the ‘Republic of Crimea’. On 7 February 2017, State Unitary Enterprise of the ‘Republic of Crimea’‘National Institute of Wine “Magarach”’ was transformed into Federal Budgetary scientific facility ‘All-Russia scientific-research institute of viticulture and winemaking “Magarach”’, Russian Academy of Sciences",Entity,AKA,,Russia,25/07/2014,31/12/2020,31/12/2020,13061 +STATE ENTERPRISE 'SEVASTOPOL COMMERCIAL SEAPORT',,,,,,,,,,,,,,,,,,,Nakhimov Square 5,[Code 1149204004707],,,,The Autonomous Republic of Crimea and the city of Sevastopol,299011,Ukraine,"(UK Sanctions List Ref):RUS0198 (UK Statement of Reasons):The ownership of the entity was transferred contrary to the Ukrainian law. On 17.3.2014 the ‘Parliament of Crimea’ adopted a resolution No 1757-6/14 ‘On nationalization of some companies belonging to the Ukrainian ministries of infrastructure of agriculture’ declaring the appropriation of assets belonging to the state enterprise ‘Sevastopol commercial seaport’ on behalf of the ‘Republic of Crimea’. The enterprise is thus effectively confiscated by the Crimean ‘authorities’. In terms of volume of trade, it is the biggest commercial seaport in Crimea. Re-registered on 6.6.2014 as State Unitary Enterprise of the City of Sevastopol ‘Sevastopol seaport’. This undermined the territorial integrity, sovereignty and independence of Ukraine.",Entity,AKA,,Russia,25/07/2014,31/12/2020,08/01/2021,13051 +STATE ENTERPRISE 'SPARKLING WINE PLANT 'NOVY SVET',,,,,,,,,,,,,,,,,,,Str. Shalapina 1,,,Novy Svet,Sudak,The Autonomous Republic of Crimea and the city of Sevastopol,298032,Ukraine,"(UK Sanctions List Ref):RUS0201 (UK Statement of Reasons):The ownership of the entity was transferred contrary to the Ukrainian law. On 9 April 2014, the ‘Presidium of the Parliament of Crimea’ adopted a decision No 1991-6/14 ‘On the amendments to the Resolution of the State Council of the “Republic of Crimea” of 26 March 2014 No 1836-6/14 ‘On nationalization of the property of enterprises, institutions and organizations of agro-industrial complex, located in the territory of the “Republic of Crimea” declaring the appropriation of assets belonging to the state enterprise “Zavod shampanskykh vin Novy Svet”’ on behalf of the ‘Republic of Crimea’. The enterprise is thus effectively confiscated by the Crimean ‘authorities’. Re-registered on 4.1.2015 as State Unitary Enterprise of the ‘Republic of Crimea’ ‘sparkling wine plant “Novy Svet”’. Founder: The Ministry of Agriculture of the Republic of Crimea. Re-registered following reorganization on 29.8.2018 as Joint-stock company Sparkling wine plant ‘Novy Svet’. Founder: the Ministry of Land and Property Regulations of the ‘Republic of Crimea’. The action of transferring ownership, contrary to Ukrainian law, undermines or threatens the territorial integrity, sovereignty and independence of Ukraine.",Entity,AKA,,Russia,25/07/2014,31/12/2020,31/12/2020,13062 +STATE ENTERPRISE 'UNIVERSAL-AVIA',,,,,,,,,,,,,,,,,,,Aeroflotskaya Street 5,,,,,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",295021,Ukraine,"(UK Sanctions List Ref):RUS0202 (UK Statement of Reasons):The ownership of the entity was transferred contrary to the Ukrainian law. On 24.3.2014, the ‘Presidium of the Parliament of Crimea’ adopted a decision ‘On Stated-owned Enterprise “Gosudarstvenoye predpriyatiye Universal-Avia” No 1794-6/14 declaring the appropriation of assets belonging to the state enterprise ‘Universal-Avia’ on behalf of the ‘Republic of Crimea’. The enterprise is thus effectively confiscated by the Crimean ‘authorities’. Re-registered on 15.1.2015 as State Unitary Enterprise of the ‘Republic of Crimea’ ‘Universal-Avia’. Founder: the Ministry of Transportation of the ‘Republic of Crimea’.",Entity,AKA,,Russia,25/07/2014,31/12/2020,31/12/2020,13057 +STATE MILITARY-INDUSTRIAL COMMITTEE OF THE REPUBLIC OF BELARUS (SMIC),,,,,,,,,,,,,,,,,,,115 Nezavisimost ave,,,,,Minsk,220114,Belarus,"(UK Sanctions List Ref):RUS1094 (UK Statement of Reasons):As a Belarusian Government agency responsible for weapons development and exports, the State Authority For Military Industry Of The Republic Of Belarus (hereafter SAMI) has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Phone number):(+375-17) 280 91 00",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,24/06/2022,15037 +STATE PURCHASING OFFICE,,,,,,,,,,,,,,,,,,,Sarhang Sakhai Street,Ferdowski Avenue,Building 2,,,Tehran,,Iran,(UK Sanctions List Ref):INU0044 (UK Statement of Reasons):Acting on behalf of MODAFL (Type of entity):Enterprise (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,31/12/2020,10658 +STATE PURCHASING ORGANISATION (SPO),,,,,,,,,,,,,,,,,,,Sarhang Sakhai Street,Ferdowski Avenue,Building 2,,,Tehran,,Iran,(UK Sanctions List Ref):INU0044 (UK Statement of Reasons):Acting on behalf of MODAFL (Type of entity):Enterprise (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL),Entity,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,31/12/2020,10658 +STATE PURCHASING ORGANIZATION,,,,,,,,,,,,,,,,,,,Sarhang Sakhai Street,Ferdowski Avenue,Building 2,,,Tehran,,Iran,(UK Sanctions List Ref):INU0044 (UK Statement of Reasons):Acting on behalf of MODAFL (Type of entity):Enterprise (Parent company):Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),24/06/2008,31/12/2020,31/12/2020,10658 +STATE RESEARCH CENTRE OF THE RUSSIAN FEDERATION FEDERAL STATE UNITARY ENTERPRISE CENTRAL SCIENTIFIC RESEARCH INSTITUTE FOR CHEMISTRY AND MECHANICS,,,,,,,,,,,,,,,,,,,16a Nagatinskaya Street,,,,,Moscow,,Russia,"(UK Sanctions List Ref):CYB0022 (UK Statement of Reasons):The Central Scientific Research Institute of Chemistry and Mechanics (TsNIIKhM) was responsible for a cyber attack on a petro-chemical company in August 2017. The cyber attack gained remote access to the Safety Instrumented Systems connected to the Industrial Control System of a petrochemical refinery. This shut down the plant for over a week. There is evidence to suggest that the shutdown was inadvertent while TsNIIKhM were attempting to cause a highly dangerous physical consequence through disabling the safety systems, which could have included an explosion. These actions caused economic loss and prejudice to commercial interests and/or was intended to undermine the security and prosperity of a country other than the United Kingdom. (Type of entity):Government-owned technical research institution",Entity,Primary name variation,,Cyber,24/03/2022,24/03/2022,24/03/2022,15044 +STATE SCIENTIFIC RESEARCH INSTITUTE FOR ORGANIC CHEMISTRY AND TECHNOLOGY (GOSNIIOKHT),,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CHW0017 (UK Statement of Reasons):The Federal State Unitary Enterprise State Scientific Research Institute for Organic Chemistry and Technology (Gosniiokht) is a state research institute within Russia with responsibility for the destruction of chemical weapon stocks inherited from the Soviet Union. The institute in its original role, before 1994, was involved in the development and production of chemical weapons, including the toxic nerve agent now known as ‘Novichok’. After 1994, the same family who owned the institute took part in the government’s program for destruction of the stocks of chemical weapons inherited from the Soviet Union. The subsequent deployment of a toxic nerve agent of the Novichok group against Alexey Navalny would therefore only be possible because the institute had failed to carry out its responsibility to destroy the stockpiles of chemical weapons. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny was a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. As the institute responsible for the destruction of chemical weapons within the Russian Federation, Gosniiokht bears responsibility for the preparation and use of chemical weapons in the attempted assassination of Alexey Navalny. (Phone number):7+495+2732405 (Email address):DIR@GosNIIOKhT.rmt.ru (Parent company):Russian Ministry of Defence",Entity,Primary name,,Chemical Weapons,15/10/2020,06/01/2021,18/03/2022,13975 +STATE TRANSPORT LEASING COMPANY,,,,,,,Государственная транспортная лизинговая компания,Cyrillic,Russian,,,,,,,,,,bldg. #1,31a Leningradsky Avenue,,,,Moscow,125284,Russia,"(UK Sanctions List Ref):RUS1358 Associated entities: GTLK Europe, GTLK Asia, GTLK Middle East (UK Statement of Reasons):GTLK JSC is a Russian leasing company focused on, air, railway, and water transportation. They are a state-owned company directly controlled by the Government of the Russian Federation. GTLK JSC therefore obtains a benefit from the Government of Russia by being a Government of Russia-affiliated entity, and are therefore considered to be an involved person. (Phone number):(1) (495) 221-00-12 (2) 8-800-200-12-99 (Email address):gtlk@gtlk.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15309 +STATE TRANSPORT LEASING COMPANY,,,,,,,Государственная транспортная лизинговая компания,Cyrillic,Russian,,,,,,,,,,Suite 100,73 Respublika St,,,Salekhard,Yamalo-Nenets Autonomous Area,62900B,Russia,"(UK Sanctions List Ref):RUS1358 Associated entities: GTLK Europe, GTLK Asia, GTLK Middle East (UK Statement of Reasons):GTLK JSC is a Russian leasing company focused on, air, railway, and water transportation. They are a state-owned company directly controlled by the Government of the Russian Federation. GTLK JSC therefore obtains a benefit from the Government of Russia by being a Government of Russia-affiliated entity, and are therefore considered to be an involved person. (Phone number):(1) (495) 221-00-12 (2) 8-800-200-12-99 (Email address):gtlk@gtlk.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15309 +STATE UNITARY ENTERPRISE OF THE ‘REPUBLIC OF CRIMEA’ ‘PRODUCTION-AGRARIAN UNION “MASSANDRA”’,,,,,,,,,,,,,,,,,,,Str. Vinodela Egorova 9,Massandra,Yalta,The Autonomous Republic of Crimea and the city of Sevastopol,,,298650,Ukraine,"(UK Sanctions List Ref):RUS0192 (UK Statement of Reasons):The ownership of Massandra Winery, a business trading in Crimea, was transferred contrary to the Ukrainian law. The enterprise was confiscated by the Crimean ‘authorities’. The subsequent ‘sale’ of the entity to the Yuzhny Proyect Company (Southern Project Company), affiliated with the Rossiya Bank which was founded by Yury Kovalchuk, was therefore a further unlawful transfer. (Website):http://massandra.su (Type of entity):Winery/Agriculture (Subsidiaries):Yuzhny Proyect (Southern Project), affiliated with the Saint Petersburg-based Rossiya bank, which is co-owned by oligarch Yury KOVALCHUK (RUS0007)",Entity,AKA,,Russia,25/07/2014,31/12/2020,16/09/2022,13060 +STATE UNITARY ENTERPRISE OF THE CITY OF SEVASTOPOL 'SEVASTOPOL SEA PORT',,,,,,,ГУП ГС ‘Севастопольский морской порт’,,,,,,,,,,,,Nakhimov Square 5,[Code 1149204004707],,,,The Autonomous Republic of Crimea and the city of Sevastopol,299011,Ukraine,"(UK Sanctions List Ref):RUS0198 (UK Statement of Reasons):The ownership of the entity was transferred contrary to the Ukrainian law. On 17.3.2014 the ‘Parliament of Crimea’ adopted a resolution No 1757-6/14 ‘On nationalization of some companies belonging to the Ukrainian ministries of infrastructure of agriculture’ declaring the appropriation of assets belonging to the state enterprise ‘Sevastopol commercial seaport’ on behalf of the ‘Republic of Crimea’. The enterprise is thus effectively confiscated by the Crimean ‘authorities’. In terms of volume of trade, it is the biggest commercial seaport in Crimea. Re-registered on 6.6.2014 as State Unitary Enterprise of the City of Sevastopol ‘Sevastopol seaport’. This undermined the territorial integrity, sovereignty and independence of Ukraine.",Entity,Primary name,,Russia,25/07/2014,31/12/2020,08/01/2021,13051 +STATE UNITARY ENTERPRISE OF THE CRIMEAN REPUBLIC 'CRIMEAN SEA PORTS',,,,,,,,,,,,,,,,,,,28 Kirova Street,,,,Kerch,The Autonomous Republic of Crimea and the city of Sevastopol,298312,Ukraine,"(UK Sanctions List Ref):RUS0199 Name of Director(s). Management: Andrei Vladimirovich Vasiliev (Director). Sergey Beym (Owner) (UK Statement of Reasons):The ""Parliament of Crimea"" adopted resolution No 1757-6/14 on 17 March 2014 ""on nationalisation of some companies belonging to the Ukrainian Ministries of Infrastructure of Agriculture"" and Resolution No 1865-6/14 on 26 March 2014 ""on State-owned Enterprise ""Crimean Sea Port"" declaring the appropriation of assets belonging to several State Enterprises which were merged into the ""State Unitary Enterprise of the Crimean Republic ""Crimean Sea Ports"". Those enterprises were thus effectively confiscated by the Crimean ""authorities"" and the ""Crimean Sea Ports"" has benefitted from the illegal transfer of their ownership. (Website):http:/crimeaport.com/ (Parent company):Chernomorneftegaz (also subject to Sanctions). Feodosia Trade Port. Gosgidrographia and Port-Terminal. Kerch Ferry Crossing. Kerch Fish Port. Kerch Trade Port. Yalta Trade Port. Yevpatoria Trade Port (Business Reg No):USREOU code 3482347",Entity,Primary name,,Russia,16/09/2017,31/12/2020,31/12/2020,13544 +STATE UNITARY ENTERPRISE OF THE 'REPUBLIC OF CRIMEA' 'CHERNOMORNEFTEGAZ',,,,,,,Государственное унитарное предприятие Республики Крым ‘Черноморнефтегаз',,,,,,,,,,,,,,,Prospekt Kirov 52,Simferopol,Crimea,295000,,"(UK Sanctions List Ref):RUS0200 (UK Statement of Reasons):On 17.3.2014, the ‘Parliament of Crimea’ adopted a resolution declaring the appropriation of assets belonging to the Chernomorneftegaz enterprise on behalf of the ‘Republic of Crimea’. The enterprise is thus effectively confiscated by the Crimean ‘authorities’. Re-registered on 29.11.2014 as State Unitary Enterprise of the ‘Republic of Crimea’ ‘Chernomorneftegaz’. Founder: The Ministry of Fuel and Energy of the Republic of Crimea. The action of transferring ownership, undermines or threatens the territorial integrity, sovereignty and independence of Ukraine. (Phone number):(1) + 7 (3652) 66-70-00 (2) +7 (3652) 66-78-00",Entity,Primary name,,Russia,12/05/2014,31/12/2020,05/05/2022,12979 +STATE UNITARY ENTERPRISE OF THE 'REPUBLIC OF CRIMEA' NATIONAL INSTITUTE OF WINE 'MAGARACH',,,,,,,,,,,,,,,,,,,Kirov Street 31,Yalta,,,,The Autonomous Republic of Crimea and the city of Sevastopol,298600,Ukraine,"(UK Sanctions List Ref):RUS0164 (UK Statement of Reasons):The ownership of the entity was transferred contrary to the Ukrainian law. On 9 April 2014, the ‘Presidium of the Parliament of Crimea’ adopted a decision No 1991-6/14 ‘On the amendments to the Resolution of the State Council of the “Republic of Crimea” of 26 March 2014 No 1836-6/14 ‘On nationalization of the property of enterprises, institutions and organizations of agro-industrial complex, located in the territory of the “Republic of Crimea”’ declaring the appropriation of assets belonging to the state enterprise ‘Gosudarstvenoye predpriyatiye Agrofirma “Magarach” nacionalnogo instituta vinograda i vina “Magarach”’ on behalf of the ‘Republic of Crimea’. The enterprise is thus effectively confiscated by the Crimean ‘authorities’. Re-registered on 15 January 2015 as ‘State Unitary Institution of the “Republic of Crimea” National Institute of Wine “Magarach”’. Founder: The Ministry of Agriculture of the ‘Republic of Crimea’. On 7 February 2017, State Unitary Enterprise of the ‘Republic of Crimea’‘National Institute of Wine “Magarach”’ was transformed into Federal Budgetary scientific facility ‘All-Russia scientific-research institute of viticulture and winemaking “Magarach”’, Russian Academy of Sciences",Entity,AKA,,Russia,25/07/2014,31/12/2020,31/12/2020,13061 +STATE UNITARY ENTERPRISE OF THE 'REPUBLIC OF CRIMEA' 'SPARKLING WINE PLANT NOVY SVET',,,,,,,,,,,,,,,,,,,Str. Shalapina 1,,,Novy Svet,Sudak,The Autonomous Republic of Crimea and the city of Sevastopol,298032,Ukraine,"(UK Sanctions List Ref):RUS0201 (UK Statement of Reasons):The ownership of the entity was transferred contrary to the Ukrainian law. On 9 April 2014, the ‘Presidium of the Parliament of Crimea’ adopted a decision No 1991-6/14 ‘On the amendments to the Resolution of the State Council of the “Republic of Crimea” of 26 March 2014 No 1836-6/14 ‘On nationalization of the property of enterprises, institutions and organizations of agro-industrial complex, located in the territory of the “Republic of Crimea” declaring the appropriation of assets belonging to the state enterprise “Zavod shampanskykh vin Novy Svet”’ on behalf of the ‘Republic of Crimea’. The enterprise is thus effectively confiscated by the Crimean ‘authorities’. Re-registered on 4.1.2015 as State Unitary Enterprise of the ‘Republic of Crimea’ ‘sparkling wine plant “Novy Svet”’. Founder: The Ministry of Agriculture of the Republic of Crimea. Re-registered following reorganization on 29.8.2018 as Joint-stock company Sparkling wine plant ‘Novy Svet’. Founder: the Ministry of Land and Property Regulations of the ‘Republic of Crimea’. The action of transferring ownership, contrary to Ukrainian law, undermines or threatens the territorial integrity, sovereignty and independence of Ukraine.",Entity,AKA,,Russia,25/07/2014,31/12/2020,31/12/2020,13062 +STATE UNITARY ENTERPRISE OF THE 'REPUBLIC OF CRIMEA' 'UNIVERSAL-AVIA',,,,,,,,,,,,,,,,,,,Aeroflotskaya Street 5,,,,,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",295021,Ukraine,"(UK Sanctions List Ref):RUS0202 (UK Statement of Reasons):The ownership of the entity was transferred contrary to the Ukrainian law. On 24.3.2014, the ‘Presidium of the Parliament of Crimea’ adopted a decision ‘On Stated-owned Enterprise “Gosudarstvenoye predpriyatiye Universal-Avia” No 1794-6/14 declaring the appropriation of assets belonging to the state enterprise ‘Universal-Avia’ on behalf of the ‘Republic of Crimea’. The enterprise is thus effectively confiscated by the Crimean ‘authorities’. Re-registered on 15.1.2015 as State Unitary Enterprise of the ‘Republic of Crimea’ ‘Universal-Avia’. Founder: the Ministry of Transportation of the ‘Republic of Crimea’.",Entity,Primary name,,Russia,25/07/2014,31/12/2020,31/12/2020,13057 +STC LLC,,,,,,,OOO СТЦ,Cyrillic,Russian,,,,,,,,,,12 Lit. Pom 3 N,Apraksin Lane,,,,St Petersburg,191023,Russia,"(UK Sanctions List Ref):RUS1426 OGRN: 1089847243870; KPP: 784001001 (UK Statement of Reasons):The Special Technology Centre LLC (hereafter known as STC LLC) is a Russian entity producing electronic equipment for use in radio monitoring equipment and unmanned aviation vehicles for use by the Government of Russia. STC LLC is therefore obtaining a benefit from or supporting the Government of Russia by, carrying on business in the Russian electronics sector, a sector of strategic significance to the Government of Russia. (Phone number):6 (812) 244-33-13 (Website):https://www.stc-spb.ru/ (Email address):office@stc-spb.ru (Business Reg No):Tax Identification Number: INN: 7840392660",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15379 +STC LLC,,,,,,,OOO СТЦ,Cyrillic,Russian,,,,,,,,,,lit. B,office 53,21 Gzhatskaya street,,,St Petersburg,195220,Russia,"(UK Sanctions List Ref):RUS1426 OGRN: 1089847243870; KPP: 784001001 (UK Statement of Reasons):The Special Technology Centre LLC (hereafter known as STC LLC) is a Russian entity producing electronic equipment for use in radio monitoring equipment and unmanned aviation vehicles for use by the Government of Russia. STC LLC is therefore obtaining a benefit from or supporting the Government of Russia by, carrying on business in the Russian electronics sector, a sector of strategic significance to the Government of Russia. (Phone number):6 (812) 244-33-13 (Website):https://www.stc-spb.ru/ (Email address):office@stc-spb.ru (Business Reg No):Tax Identification Number: INN: 7840392660",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15379 +STELLA POLARIS,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0108 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK cargo vessel M/V WOORY STAR is believed to have been involved in illicit transfers of prohibited DPRK goods. Listed as asset of Phyongchon Shipping & Marine (OFSI ID: 13641, UN Reference Number: UN Ref KPe.070) (IMO number):8408595 (Current owners):Phyongchon Shipping & Marine (Flag of ship):North Korea (Type of ship):General Cargo / Multi Purpose (Tonnage of ship):3154 (Length of ship):89 (Year built):1984",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13659 +STENYAKINA,Ekaterina,Petrovna,,,,,Екатерина Петровна Стенякина,,,04/05/1985,Shakhty,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0498 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14443 +STEP A.S.,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP A.S.,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP A.S.,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP A.S.,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP AS,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP AS,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP AS,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP AS,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP COMPANY,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP COMPANY,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP COMPANY,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP COMPANY,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP CORPORATION,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP CORPORATION,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP CORPORATION,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP CORPORATION,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP ISTANBUL/STANDART TEKNIK PARCA SAN. VE TIC. A.S.,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP ISTANBUL/STANDART TEKNIK PARCA SAN. VE TIC. A.S.,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP ISTANBUL/STANDART TEKNIK PARCA SAN. VE TIC. A.S.,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP ISTANBUL/STANDART TEKNIK PARCA SAN. VE TIC. A.S.,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP S.A,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP S.A,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP S.A,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP S.A,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP S.A.,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP S.A.,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP S.A.,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP S.A.,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDARD TECHNICAL COMPONENTS INDUSTRY AND TRADING CORPORATION,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDARD TECHNICAL COMPONENTS INDUSTRY AND TRADING CORPORATION,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDARD TECHNICAL COMPONENTS INDUSTRY AND TRADING CORPORATION,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDARD TECHNICAL COMPONENTS INDUSTRY AND TRADING CORPORATION,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SAN VE TIC,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SAN VE TIC,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SAN VE TIC,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SAN VE TIC,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SAN VE TIC AS,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SAN VE TIC AS,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SAN VE TIC AS,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SAN VE TIC AS,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SAN. TIC. AS,,,,,,,Step Standart Teknik Parça San. Tic. AS,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SAN. TIC. AS,,,,,,,Step Standart Teknik Parça San. Tic. AS,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SAN. TIC. AS,,,,,,,Step Standart Teknik Parça San. Tic. AS,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SAN. TIC. AS,,,,,,,Step Standart Teknik Parça San. Tic. AS,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SAN. VE TIC. A.S.,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SAN. VE TIC. A.S.,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SAN. VE TIC. A.S.,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SAN. VE TIC. A.S.,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SANAYI VE TICARET,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SANAYI VE TICARET,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SANAYI VE TICARET,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SANAYI VE TICARET,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SANAYI VE TICARET A.S.,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SANAYI VE TICARET A.S.,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SANAYI VE TICARET A.S.,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNIK PARCA SANAYI VE TICARET A.S.,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNYK PARCA SAN. VE TYC. A.S.,,,,,,,,,,,,,,,,,,,79/2 Tuzla,,,,,Istanbul,34940,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNYK PARCA SAN. VE TYC. A.S.,,,,,,,,,,,,,,,,,,,Argentine Square,"Alvand Street, No.39",,,,Tehran,,,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNYK PARCA SAN. VE TYC. A.S.,,,,,,,,,,,,,,,,,,,DES Industrial Complex,A13 Block 4,Yukari Dudullu,,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEP STANDART TEKNYK PARCA SAN. VE TYC. A.S.,,,,,,,,,,,,,,,,,,,No. 44,Bahariye Cad.,K6,Kadikoy,,Istanbul,,Turkey,"(UK Sanctions List Ref):INU0118 (UK Statement of Reasons):A company run by Milad Jafari, who has supplied goods, mostly metals, to UN designated Shahid Hemmat Industrial Group (SHIG) through front companies. (Phone number):(1) +90 216 3646944 (2) +90 216 3646945 (3) +90 216 3646946 (4) +98 21 8795103 (5) +98 21 8798978 (Email address):(1) info@stepfasteners.com (2) miladjafari@ekolay.net (3) purchase@stepfasteners.com (4) sales@stepfasteners.com (Type of entity):Import/Export",Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12268 +STEPANOV,Alexander,Mikhailovich,,,,,Александр Михайлович Степанов,Cyrillic,Russian,00/00/1976,,,Russia,,,,,(1) Member of Gazprombank’s Management Board (2) Deputy Chairman of Gazprombank’s Management Board,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1621 (UK Statement of Reasons):Alexander Mikhailovich Stepanov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15565 +STEPANOV,Vladlen,Yurievich,,,,,Владлен Юрьевич СТЕПАНОВ,,,17/07/1962,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0005 Husband of Olga STEPANOVA at the time of the serious corruption (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. STEPANOV participated in the serious corruption through his involvement, in particular, owning a bank account which received misappropriated funds. His actions provided support for or facilitated the misappropriation. He transferred or converted, or facilitated the transfer or conversion of, the proceeds the serious corruption, and benefitted financially from the serious corruption. Stepanov is also associated with Olga Stepanova, his then wife, who is also a person involved in serious corruption. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14101 +STEPANOV,Vladlen,Yuryevich,,,,,,,,17/07/1962,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):GAC0005 Husband of Olga STEPANOVA at the time of the serious corruption (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. STEPANOV participated in the serious corruption through his involvement, in particular, owning a bank account which received misappropriated funds. His actions provided support for or facilitated the misappropriation. He transferred or converted, or facilitated the transfer or conversion of, the proceeds the serious corruption, and benefitted financially from the serious corruption. Stepanov is also associated with Olga Stepanova, his then wife, who is also a person involved in serious corruption. (Gender):Male",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14101 +STEPANOVA,Olga,Germanovna,,,,,Ольга Германовна СТЕПАНОВА,,,29/07/1962,Moscow,Russia,Russia,,,,,Previous Head of Tax Office no. 28,,,,,,,,,"(UK Sanctions List Ref):GAC0004 Wife of Vladlen STEPANOV at the time of the serious corruption (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. STEPANOVA participated in the serious corruption through her approval of part of the fraudulent tax rebate. She was responsible for and her actions facilitated or provided support for the serious corruption. She transferred or converted, or facilitated the transfer or conversion of, the proceeds of the serious corruption and benefitted financially from the serious corruption. (Gender):Female",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14099 +STEPANOVA,Olga,Hermanovna,,,,,,,,29/07/1962,Moscow,Russia,Russia,,,,,Previous Head of Tax Office no. 28,,,,,,,,,"(UK Sanctions List Ref):GAC0004 Wife of Vladlen STEPANOV at the time of the serious corruption (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. STEPANOVA participated in the serious corruption through her approval of part of the fraudulent tax rebate. She was responsible for and her actions facilitated or provided support for the serious corruption. She transferred or converted, or facilitated the transfer or conversion of, the proceeds of the serious corruption and benefitted financially from the serious corruption. (Gender):Female",Individual,Primary name variation,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14099 +STESHIN,Dmitry,Anatolyevich,,,,,дмитрий Анатольевич СТЕШИН,,,12/09/1972,St. Petersburg (then Leningrad),Russia,Russia,,,,,Journalist and editor,,,,,,,,,"(UK Sanctions List Ref):RUS1419 (UK Statement of Reasons):Dmitry Anatolyevich STESHIN (hereafter STESHIN) is a Russian journalist and special correspondent for Komsomolskaya Pravda (KP). Through his reporting with KP since Russia invaded Ukraine, STESHIN has promoted and supported the actions of the Russian army in invading Ukraine, and has actively sought to legitimise the justifications that the Russian government has provided for the invasion. Therefore, STESHIN is involved in engaging in, providing support for, and promoting the policies and actions which destabilises Ukraine and undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,04/05/2022,15342 +STICHTING AL HARAMAIN HUMANITARIAN AID,,,,,,,,,,,,,,,,,,,Jan Hanzenstraat 114,,,,,Amsterdam,1053SV,Netherlands,(UK Sanctions List Ref):AQD0021 (UN Ref):QDe.114 Review pursuant to Security Council resolution 1822 (2008) was concluded on 28 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235591. Netherlands (at time of listing),Entity,AKA,,ISIL (Da'esh) and Al-Qaida,12/07/2004,06/07/2004,31/12/2020,8424 +STOGNIENKO,Sergey,,,,,,Сергей Стогниенко,Cyrillic,Russian,,,,Russia,,,,,Member of OTKRITIE Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1640 (UK Statement of Reasons):Sergey Stognienko is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by (1) working as a director, manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Bank Otkritie Financial Corporation PJSC which carries on business in the Russian financial services sector; (2) working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely Bank Otkritie Financial Corporation PJSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15584 +STONE PANDA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CYB0003 (UK Statement of Reasons):Huaying Haitai, known in cyber security circles as APT10 (Advanced Persistent Threat 10), Red Apollo, CVNX, Stone Panda, MenuPass and Potassium, was involved in relevant cyber activity Operation Cloud Hopper, one of the most significant and widespread cyber instructions to date. They conducted data interference through the theft of intellectual property and sensitive commercial data over many years. Huaying Haitai targeted companies across six continents and sectors banking and finance, government, aviation, space, and satellite technology, manufacturing technology, medical, oil and gas, mining, communications technology, computer processing technology, and defence technology. This activity undermined the prosperity of the United Kingdom and countries other than the United Kingdom (Website):huayinghaitai.com (Type of entity):Company",Entity,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13909 +STRATEGIC CULTURE FOUNDATION,,,,,,,Фонд стратегической культуры,,,,,,,,,,,,50/1 building 1,Bolshaya Polyanka St,,,,Moscow,119180,Russia,"(UK Sanctions List Ref):RUS1381 (UK Statement of Reasons):Strategic Culture Foundation is an online media organisation which spreads disinformation. It has provided support for and promoted actions and policies which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Website):(1) http://www.fondsk.ru/ (2) https://www.strategic-culture.org/  (Email address):info@fondsk.ru (Type of entity):Media organisation registered with Russia’s media regulator (Business Reg No):(1) Taxpayer ID: 7706569306 (2) OGRN 1057746290469",Entity,Primary name,,Russia,04/05/2022,04/05/2022,04/05/2022,15338 +STRATEGIC FORCE,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0194 (UN Ref):KPe.046 The Strategic Rocket Force of the Korean People’s Army is in charge of all DPRK ballistic missile programmes and is responsible for SCUD and NODONG launches,Entity,AKA,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,31/12/2020,13487 +STRATEGIC FORCES,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0194 (UN Ref):KPe.046 The Strategic Rocket Force of the Korean People’s Army is in charge of all DPRK ballistic missile programmes and is responsible for SCUD and NODONG launches,Entity,AKA,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,31/12/2020,13487 +STRATEGIC ROCKET FORCE,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0194 (UN Ref):KPe.046 The Strategic Rocket Force of the Korean People’s Army is in charge of all DPRK ballistic missile programmes and is responsible for SCUD and NODONG launches,Entity,AKA,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,31/12/2020,13487 +STRATEGIC ROCKET FORCE COMMAND OF KPA,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0194 (UN Ref):KPe.046 The Strategic Rocket Force of the Korean People’s Army is in charge of all DPRK ballistic missile programmes and is responsible for SCUD and NODONG launches,Entity,AKA,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,31/12/2020,13487 +STRATEGIC ROCKET FORCE OF THE KOREAN PEOPLE'S ARMY,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0194 (UN Ref):KPe.046 The Strategic Rocket Force of the Korean People’s Army is in charge of all DPRK ballistic missile programmes and is responsible for SCUD and NODONG launches,Entity,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,31/12/2020,13487 +STRELCHUK,Natalia,Ivanovna,,,,,,,,10/09/1974,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1212 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15164 +STRELCHUK,Natalya,Ivanovna,,,,,СТРЕЛЬЧУК Наталья Ивановна,Cyrillic,Russian,10/09/1974,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1212 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15164 +STRELKOV,Igor,,,,,,,,,17/12/1970,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0097 (UK Statement of Reasons):Identified as staff of the Main Intelligence Director of the General Staff of the Armed Forces of the Russian Federation (GRU). He was involved in incidents in Sloviansk. Head of 'Novorussia' public movement. Former 'Ministry of Defence' of the so-called 'Donetsk People's Republic'. Organised on 4 November 2016, a Russian March in Moscow for Russian nationalists who support the separatists in Ukraine. Remains active in supporting separatist activity in Eastern Ukraine. One of the organisers of the 'Russian March' in November 2016. (Gender):Male",Individual,AKA,,Russia,29/04/2014,31/12/2020,16/09/2022,12964 +STRELYUHIN,Alexander,Mikhailovich,,,,,Александр Михайлович СТРЕЛЮХИН,,,04/07/1958,Engels,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0499 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14444 +STREMOUSOV,Kirill,,,,,,Кирилл СТРЕМУСОВ,Cyrillic,Russian,00/00/1976,,,Russia,,,,,President of the ‘Salvation Committee for Peace and Order’ in Kherson,,,,,,,,,"(UK Sanctions List Ref):RUS1470 (UK Statement of Reasons):There are reasonable grounds to suspect Kyrylo Sergiyovich STREMOUSOV of participation in the establishment of the so-called ‘Salvation Committee for Peace and Order’ and therefore that he is or has been involved in providing support for and promoting policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/06/2022,16/06/2022,09/08/2022,15413 +STREMOUSOV,Kyrylo,Sergiyovich,,,,,Кирило Сергiйович СТРЕМОУСОВ,Cyrillic,Russian,00/00/1976,,,Russia,,,,,President of the ‘Salvation Committee for Peace and Order’ in Kherson,,,,,,,,,"(UK Sanctions List Ref):RUS1470 (UK Statement of Reasons):There are reasonable grounds to suspect Kyrylo Sergiyovich STREMOUSOV of participation in the establishment of the so-called ‘Salvation Committee for Peace and Order’ and therefore that he is or has been involved in providing support for and promoting policies and actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,16/06/2022,16/06/2022,09/08/2022,15413 +STRIELKOV,Ihor,,,,,,,,,17/12/1970,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0097 (UK Statement of Reasons):Identified as staff of the Main Intelligence Director of the General Staff of the Armed Forces of the Russian Federation (GRU). He was involved in incidents in Sloviansk. Head of 'Novorussia' public movement. Former 'Ministry of Defence' of the so-called 'Donetsk People's Republic'. Organised on 4 November 2016, a Russian March in Moscow for Russian nationalists who support the separatists in Ukraine. Remains active in supporting separatist activity in Eastern Ukraine. One of the organisers of the 'Russian March' in November 2016. (Gender):Male",Individual,AKA,,Russia,29/04/2014,31/12/2020,16/09/2022,12964 +STRIZHOV,Andrei,Alexandrovich,,,,,,,,01/08/1983,,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0014 (UK Statement of Reasons):Andrei Alexandrovich Strizhov, as the acting Head of the Investigative Committee in the Russian Ministry of the Interior after the death of Sergei Magnitsky on 16 November 2009, failed to properly investigate his mistreatment in detention, which contributed significantly to his death and concealed evidence in relation to that conduct. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13872 +STRONITIUM,,,,,,,,,,,,,,,,,,,Komsomol'skiy Prospekt,,,,,20 Moscow,119146,Russia,"(UK Sanctions List Ref):CYB0012 (UK Statement of Reasons):The 85th Main Centre for Special Technologies (GTsSS) of the Russian General Staff of the Armed Forces of the Russian Federation (GRU) - also known by its field post number ‘26165’ and industry nicknames: APT28, Fancy Bear, Sofacy Group, Pawn Storm, Strontium - was involved in illegally accessing the information systems of the German Federal Parliament (Deutscher Bundestag) without permission in April and May 2015. The military intelligence officers of the 85th controlled, directed and took part in this activity, accessing the email accounts of MPs and stealing their data. Their activity interfered with the parliament’s information systems affecting its operation for several days, undermining the exercise of parliamentary functions in Germany. (Type of entity):Department within Government (Parent company):Russian Ministry of Defence",Entity,AKA,,Cyber,23/10/2020,31/12/2020,31/12/2020,13984 +STROYGAZMONTAZH CORPORATION (SGM GROUP),,,,,,,,,,,,,,,,,,,Prospect Vernadskogo 53,,,,,Moscow,119415,Russia,"(UK Sanctions List Ref):RUS0203 Names of Director(s)/Management: Vera Loseva, CEO appointed June 2020. Ultimate beneficial owner(s): Gazstroyprom Business Sector: Construction (UK Statement of Reasons):Stroygazmontazh Corporation (SGM Group) actively participated in the construction of the Kerch Bridge through its state contract for the construction of the bridge connecting Russia to the illegally annexed Crimean peninsula. Therefore the company is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity sovereignty and independence of Ukraine. (Phone number):-1283. -1284 (Website):www.ooosgm.com (Type of entity):Leading corporate group engaged in construction works for the oil and gas industry. Involved in trunk pipeline construction, onshore facilities construction, offshore construction, gasification of constituent entities of the RF. (Subsidiaries):JSC “Krasnodargastroy”. JSC “Lengazpetstroy”. JSC “Volgogaz”. LLC”NGKM” (Parent company):Limited Liability Company <>",Entity,Primary name,,Russia,31/07/2018,31/12/2020,16/09/2022,13703 +STROYGAZMONTAZH-MOST OOO (SGM-MOST OOO),,,,,,,,,,,,,,,,,,,Barklaya street 6,Building 7,,,,Moscow,121087,Russia,"(UK Sanctions List Ref):RUS0204 Names of Director(s)/Management: Chief Ostrovskiy Alexandr Vladimirovich – ID773117605092. Ultimate beneficial owner(s): Arkady Rotenberg (subject to EU Sanctions) (UK Statement of Reasons):Stroygazmontazh-Most OOO is a subsidiary of lead contractor Stroygazmontazh thatmanages the construction project of the bridge over the Kerch Strait. Furthermore, it is ownedby an individual Arkady Rotenberg, who is already designated for his actions underminingUkrainian sovereignty. Therefore the company is supporting the consolidation of the illegallyannexed Crimean peninsula into the Russian Federation, which further undermines theterritorial integrity, sovereignty and independence of Ukraine. (Website):http://kerch-most.ru/tag/sgm-most (Email address):kerch-most@yandex.ru (Type of entity):Leading corporate group engaged in construction works for the oil and gas industry. Involved in trunk pipeline construction,onshore facilities construction, offshore construction, gasification of constituent entities of the RF. (Business Reg No):1157746088170. Tax ID 7730018980",Entity,Primary name,,Russia,31/07/2018,31/12/2020,31/12/2020,13704 +SU YONG,RI,,,,,,,,,25/06/1968,,,,654310175,,,,"Official for Korea Ryonbong General Corporation, specializes in acquisition for DPRK’s defence industries and support to Pyongyang’s military-related sales. Its procurements also probably support the DPRK’s chemical weapons programme",,,,,,,,,(UK Sanctions List Ref):DPR0268 (UN Ref):KPi.052 Served as Korea Ryonbong General Corporation representative in Cuba. (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,31/12/2020,13482 +SUAD,Abu,,,,,,,,,15/02/1972,,,Qatar,00966737,Qatar number. Expired 16 Feb. 2016.,27263401275,Qatar number,,,,,,,Umm Salal,,Qatar,"(UK Sanctions List Ref):AQD0298 (UN Ref):QDi.382 Qatar-based facilitator who provides financial services to, or in support of, Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5896810",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/10/2015,21/09/2015,24/03/2021,13280 +SUAREZ CHOURIO,Jesus,Rafael,,,,Commander,Jesús Rafael Suárez Chourio,,,19/07/1962,,,,,,,,(1) Member of the Partido Socialista Unido de Venezuela (PSUV: United Socialist Party of Venezuela) political party (2) National Assembly Deputy for Apure State and President of the National Assembly’s Defence and Security Commission (since January 2021). (3) Former Commander-in-Chief of the Venezuelan Bolivarian National Army (4) former Chief of the General Staff to the Commander-in-Chief (July 2019 – Sept 2020) (5) Former Commander of Venezuela’s Comprehensive Defence Region of the Central Zone (REDI Central),,,,,,,,,"(UK Sanctions List Ref):VEN0008 General Commander of the Bolivarian Army (UK Statement of Reasons):National Assembly Deputy for Apure State (2021-26) and President of the National Assembly’s Defence and Security Commission. As Former General in Chief of the Venezuelan Bolivarian National Army and Chief of the General Staff to the Commander-in-Chief. Former General Commander of the Venezuelan Bolivarian National Army and former Commander of Venezuela's Comprehensive Defence Region of the Central Zone (REDI Central). There are reasonable grounds to suspect that he was responsible for serious human rights violations by forces under his command during his tenure as General Commander of the Venezuelan Bolivarian National Army, including the use of excessive force and the mistreatment of detainees. Has targeted the democratic opposition and supported the use of military courts to try civilian protestors. (Gender):Male",Individual,Primary name,,Venezuela,26/06/2018,31/12/2020,28/01/2022,13683 +SUFAAT,YAZID,,,,,,,,,20/01/1964,Johor,Malaysia,Malaysia,A 10472263,,640120-01-5529,,,,,,,,,,Malaysia,"(UK Sanctions List Ref):AQD0337 (UN Ref):QDi.124 Founding member of Jemaah Islamiyah (JI) (QDe.092) who worked on Al-Qaida’s (QDe.004) biological weapons program, provided support to those involved in Al-Qaida’s 11 Sep. 2001 attacks in the United States of America, and was involved in JI bombing operations. Detained in Malaysia from 2001 to 2008. Arrested in Malaysia in 2013 and sentenced to 7 years in Jan. 2016 for failing to report information relating to terrorist acts. Due for release in Feb. 2020. Review pursuant to Security Council resolution 1989 (2011) was concluded on 6 Mar. 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424794. Malaysia (previous address)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/09/2003,09/09/2003,31/12/2020,7848 +SUFAAT,YAZID,,,,,,,,,20/01/1964,Johor,Malaysia,Malaysia,A 10472263,,640120-01-5529,,,Taman Bukit Ampang,,,,,State of Selangor,,Malaysia,"(UK Sanctions List Ref):AQD0337 (UN Ref):QDi.124 Founding member of Jemaah Islamiyah (JI) (QDe.092) who worked on Al-Qaida’s (QDe.004) biological weapons program, provided support to those involved in Al-Qaida’s 11 Sep. 2001 attacks in the United States of America, and was involved in JI bombing operations. Detained in Malaysia from 2001 to 2008. Arrested in Malaysia in 2013 and sentenced to 7 years in Jan. 2016 for failing to report information relating to terrorist acts. Due for release in Feb. 2020. Review pursuant to Security Council resolution 1989 (2011) was concluded on 6 Mar. 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424794. Malaysia (previous address)",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/09/2003,09/09/2003,31/12/2020,7848 +SUHEIL,,,,,,,,,,,,,,,,,,Head of the Latakia Branch of the Syrian Air Force Intelligence Service,,,,,,,,,(UK Sanctions List Ref):SYR0223 (UK Statement of Reasons):Head of Latakia branch of the Air Force Intelligence Service. Responsible for the torture of opponents in custody. (Gender):Male,Individual,AKA,,Syria,24/07/2012,31/12/2020,31/12/2020,12714 +SUKAR,Husam,,,,,,,,,,,,,,,,,Presidential Adviser to Asad on Security Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0091 Advisor to Syrian President Bashar al Asad. (UK Statement of Reasons):Presidential Adviser on Security Affairs. Presidential Adviser for security agencies' repression and violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12048 +SUKAR,Hussam,,,,,,,,,,,,,,,,,Presidential Adviser to Asad on Security Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0091 Advisor to Syrian President Bashar al Asad. (UK Statement of Reasons):Presidential Adviser on Security Affairs. Presidential Adviser for security agencies' repression and violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12048 +SUKHAREV,Ivan,Konstantinovich,,,,,Сухарев Иван Константинович,,,10/06/1978,Ufa,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0500 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14445 +SUKIRNO,BAMBANG,,,,,,,,,05/04/1975,,Indonesia,Indonesia,A2062513,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0154 (UN Ref):QDi.349 A senior leader of Jemaah Islamiyah (QDe.092) who has held leadership positions in Hilal Ahmar Society Indonesia (HASI) (QDe.147). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5854969,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,21/03/2015,13/03/2015,31/12/2020,13243 +SUKKAR,Husam,,,,,,حسام سكر,,,,,,,,,,,Presidential Adviser to Asad on Security Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0091 Advisor to Syrian President Bashar al Asad. (UK Statement of Reasons):Presidential Adviser on Security Affairs. Presidential Adviser for security agencies' repression and violence against the civilian population. (Gender):Male,Individual,Primary name,,Syria,24/08/2011,31/12/2020,31/12/2020,12048 +SUKKAR,Hussam,,,,,,,,,,,,,,,,,Presidential Adviser to Asad on Security Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0091 Advisor to Syrian President Bashar al Asad. (UK Statement of Reasons):Presidential Adviser on Security Affairs. Presidential Adviser for security agencies' repression and violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,31/12/2020,12048 +SULAIMAN,Maher,,,,,,,,,,,,,,,,,Director of the Higher Institute for Applied Sciences and Technology,,,,,Higher Institute for Applied Sciences and Technology (HIAST),Damascus,PO Box 31983,,"(UK Sanctions List Ref):SYR0138 (UK Statement of Reasons):Director of the Higher Institute for Applied Sciences and Technology (HIAST), which provides training and support as part of the Syrian chemical weapons proliferation sector. Due to his senior position at the HIAST, which is an affiliate and subsidiary of the Scientific Studies and Research Centre (SSRC), he is associated with the HIAST and SSRC, both of which are designated entities. (Gender):Male",Individual,Primary name,,Syria,19/03/2018,31/12/2020,31/12/2020,13621 +SULAIMAN,Mahir,,,,,,,,,,,,,,,,,Director of the Higher Institute for Applied Sciences and Technology,,,,,Higher Institute for Applied Sciences and Technology (HIAST),Damascus,PO Box 31983,,"(UK Sanctions List Ref):SYR0138 (UK Statement of Reasons):Director of the Higher Institute for Applied Sciences and Technology (HIAST), which provides training and support as part of the Syrian chemical weapons proliferation sector. Due to his senior position at the HIAST, which is an affiliate and subsidiary of the Scientific Studies and Research Centre (SSRC), he is associated with the HIAST and SSRC, both of which are designated entities. (Gender):Male",Individual,Primary name variation,,Syria,19/03/2018,31/12/2020,31/12/2020,13621 +SULAIMANI,Kasim,,,,,,,,,11/03/1957,Qom,Iran,,008827,Issued in Iran,,,(1) Brigadier General (2) Commander of Qods force,,,,,,,,,"(UK Sanctions List Ref):INU0212 (UN Ref):IRi.039 Promoted to Major General, retaining his position as Commander of Qods force. [Old Reference # I.47.D.6]",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,15/03/2021,9062 +SULAIMANI,Qasem,,,,,,,,,11/03/1957,Qom,Iran,,008827,Issued in Iran,,,(1) Brigadier General (2) Commander of Qods force,,,,,,,,,"(UK Sanctions List Ref):INU0212 (UN Ref):IRi.039 Promoted to Major General, retaining his position as Commander of Qods force. [Old Reference # I.47.D.6]",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,15/03/2021,9062 +SULAIMANI,Qasim,,,,,,,,,11/03/1957,Qom,Iran,,008827,Issued in Iran,,,(1) Brigadier General (2) Commander of Qods force,,,,,,,,,"(UK Sanctions List Ref):INU0212 (UN Ref):IRi.039 Promoted to Major General, retaining his position as Commander of Qods force. [Old Reference # I.47.D.6]",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,15/03/2021,9062 +SULAYMAN,Ma'alin,,,,,,,,,00/00/1979,Nairobi,Kenya,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0013 (UN Ref):SOi.013,Individual,AKA,Good quality,Somalia,23/10/2014,23/09/2014,31/12/2020,13147 +SULAYMANI,Qasem,,,,,,,,,11/03/1957,Qom,Iran,,008827,Issued in Iran,,,(1) Brigadier General (2) Commander of Qods force,,,,,,,,,"(UK Sanctions List Ref):INU0212 (UN Ref):IRi.039 Promoted to Major General, retaining his position as Commander of Qods force. [Old Reference # I.47.D.6]",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,15/03/2021,9062 +SULAYMANI,Qasim,,,,,,,,,11/03/1957,Qom,Iran,,008827,Issued in Iran,,,(1) Brigadier General (2) Commander of Qods force,,,,,,,,,"(UK Sanctions List Ref):INU0212 (UN Ref):IRi.039 Promoted to Major General, retaining his position as Commander of Qods force. [Old Reference # I.47.D.6]",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,15/03/2021,9062 +SULAYMANI,Kasim,,,,,,,,,11/03/1957,Qom,Iran,,008827,Issued in Iran,,,(1) Brigadier General (2) Commander of Qods force,,,,,,,,,"(UK Sanctions List Ref):INU0212 (UN Ref):IRi.039 Promoted to Major General, retaining his position as Commander of Qods force. [Old Reference # I.47.D.6]",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,15/03/2021,9062 +SULEIMAN,Ma'alim,,,,,,,,,00/00/1979,Nairobi,Kenya,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0013 (UN Ref):SOi.013,Individual,AKA,Good quality,Somalia,23/10/2014,23/09/2014,31/12/2020,13147 +SULEIMAN,Maher,,,,,,,,,,,,,,,,,Director of the Higher Institute for Applied Sciences and Technology,,,,,Higher Institute for Applied Sciences and Technology (HIAST),Damascus,PO Box 31983,,"(UK Sanctions List Ref):SYR0138 (UK Statement of Reasons):Director of the Higher Institute for Applied Sciences and Technology (HIAST), which provides training and support as part of the Syrian chemical weapons proliferation sector. Due to his senior position at the HIAST, which is an affiliate and subsidiary of the Scientific Studies and Research Centre (SSRC), he is associated with the HIAST and SSRC, both of which are designated entities. (Gender):Male",Individual,Primary name variation,,Syria,19/03/2018,31/12/2020,31/12/2020,13621 +SULEIMAN,Mahir,,,,,,,,,,,,,,,,,Director of the Higher Institute for Applied Sciences and Technology,,,,,Higher Institute for Applied Sciences and Technology (HIAST),Damascus,PO Box 31983,,"(UK Sanctions List Ref):SYR0138 (UK Statement of Reasons):Director of the Higher Institute for Applied Sciences and Technology (HIAST), which provides training and support as part of the Syrian chemical weapons proliferation sector. Due to his senior position at the HIAST, which is an affiliate and subsidiary of the Scientific Studies and Research Centre (SSRC), he is associated with the HIAST and SSRC, both of which are designated entities. (Gender):Male",Individual,Primary name variation,,Syria,19/03/2018,31/12/2020,31/12/2020,13621 +SULEIMAN,Mualem,,,,,,,,,00/00/1979,Nairobi,Kenya,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0013 (UN Ref):SOi.013,Individual,AKA,Good quality,Somalia,23/10/2014,23/09/2014,31/12/2020,13147 +SULEIMAN,Naaeem,Jasem,,,,,,,,,,,,,,,,Commander of the 3rd Division,,,,,,,,,(UK Sanctions List Ref):SYR0185 (UK Statement of Reasons):Major General Naim Jasem Suleiman; a member of the Syrian Armed Forces of the rank of colonel and the equivalent or higher. Involved in the violent repression of protestors in Douma.,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12465 +SULEIMAN,Naaim,Jasem,,,,,,,,,,,,,,,,Commander of the 3rd Division,,,,,,,,,(UK Sanctions List Ref):SYR0185 (UK Statement of Reasons):Major General Naim Jasem Suleiman; a member of the Syrian Armed Forces of the rank of colonel and the equivalent or higher. Involved in the violent repression of protestors in Douma.,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12465 +SULEIMAN,Naeem,Jasem,,,,,,,,,,,,,,,,Commander of the 3rd Division,,,,,,,,,(UK Sanctions List Ref):SYR0185 (UK Statement of Reasons):Major General Naim Jasem Suleiman; a member of the Syrian Armed Forces of the rank of colonel and the equivalent or higher. Involved in the violent repression of protestors in Douma.,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12465 +SULEIMAN,Na'eem,Jasem,,,,,,,,,,,,,,,,Commander of the 3rd Division,,,,,,,,,(UK Sanctions List Ref):SYR0185 (UK Statement of Reasons):Major General Naim Jasem Suleiman; a member of the Syrian Armed Forces of the rank of colonel and the equivalent or higher. Involved in the violent repression of protestors in Douma.,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12465 +SULEIMAN,Naim,Jasem,,,,,,,,,,,,,,,,Commander of the 3rd Division,,,,,,,,,(UK Sanctions List Ref):SYR0185 (UK Statement of Reasons):Major General Naim Jasem Suleiman; a member of the Syrian Armed Forces of the rank of colonel and the equivalent or higher. Involved in the violent repression of protestors in Douma.,Individual,Primary name,,Syria,24/01/2012,31/12/2020,31/12/2020,12465 +SULEIMAN,Na'im,Jasem,,,,,,,,,,,,,,,,Commander of the 3rd Division,,,,,,,,,(UK Sanctions List Ref):SYR0185 (UK Statement of Reasons):Major General Naim Jasem Suleiman; a member of the Syrian Armed Forces of the rank of colonel and the equivalent or higher. Involved in the violent repression of protestors in Douma.,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12465 +SULEIMANOV,Renat,Ismailovich,,,,,Сулейманов Ренат Исмаилович,,,24/12/1965,Novosibirsk,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0648 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14593 +SULIMOV,Umar,,,,,,Умар Сулимов,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +SULIMOV,Umar,,,,,,Умар Сулимов,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +SULTAN,Ahmed,,,,,,,,,,,,Iraq,,,,,,,,,,,Amman,,Jordan,(UK Sanctions List Ref):IRQ0134 (UN Ref):IQi.073,Individual,AKA,Good quality,Iraq,05/05/2004,26/04/2004,31/12/2020,8287 +SULTAN,Jihad,Mohamed,,,,,,,,,,,,,,,,Commander of 65th Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0115 (UK Statement of Reasons):Gave orders to troops to shoot protestors in Douma. (Gender):Male,Individual,Primary name,,Syria,24/01/2012,31/12/2020,31/12/2020,12466 +SULTAN,Jihad,Mohammad,,,,,,,,,,,,,,,,Commander of 65th Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0115 (UK Statement of Reasons):Gave orders to troops to shoot protestors in Douma. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12466 +SULTAN,Jihad,Mohammed,,,,,,,,,,,,,,,,Commander of 65th Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0115 (UK Statement of Reasons):Gave orders to troops to shoot protestors in Douma. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12466 +SULTAN,Jihad,Muhammad,,,,,,,,,,,,,,,,Commander of 65th Brigade,,,,,,,,,(UK Sanctions List Ref):SYR0115 (UK Statement of Reasons):Gave orders to troops to shoot protestors in Douma. (Gender):Male,Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,31/12/2020,12466 +SUMARSONO,ARIS,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Gebang,Kecamatan Masaran,Kabupaten Sragen,,,Jawa Tengah,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +SUMARSONO,ARIS,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Taman Fajar,Kecamatan Probolinggo,Kabupaten Lampung Timur,,,Lampung,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +SUN MIDDLE EAST (F Z CO),,,,,,,,,,,,,,,,,,,Office No LB16216,P.O. Box 61278,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):INU0119 (UK Statement of Reasons):A company that has procured sensitive goods for entities directly involved in Iran's restricted weapons related activities. (Phone number):+971-4--8810345 (Email address):sunmiddleeastfzco@yahoo.com,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11546 +SUN MIDDLE EAST FZ COMPANY,,,,,,,,,,,,,,,,,,,Office No LB16216,P.O. Box 61278,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):INU0119 (UK Statement of Reasons):A company that has procured sensitive goods for entities directly involved in Iran's restricted weapons related activities. (Phone number):+971-4--8810345 (Email address):sunmiddleeastfzco@yahoo.com,Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11546 +SUN MIDDLE EAST FZCO,,,,,,,,,,,,,,,,,,,Office No LB16216,P.O. Box 61278,,,,Dubai,,United Arab Emirates,(UK Sanctions List Ref):INU0119 (UK Statement of Reasons):A company that has procured sensitive goods for entities directly involved in Iran's restricted weapons related activities. (Phone number):+971-4--8810345 (Email address):sunmiddleeastfzco@yahoo.com,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11546 +SUNANI,HAMDULLAH,,,,,Maulavi,حمد الله سنانی,,,00/00/1923,"Dai Chopan District, Zabul Province",Afghanistan,Afghanistan,,,,,Head of Dar-ul-Efta (Fatwa Department) of Supreme Court under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0089 (UN Ref):TAi.111 Reportedly deceased in 2001. Belonged to Kakar tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010.,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7429 +SUNARSO,Arif,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Gebang,Kecamatan Masaran,Kabupaten Sragen,,,Jawa Tengah,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +SUNARSO,Arif,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Taman Fajar,Kecamatan Probolinggo,Kabupaten Lampung Timur,,,Lampung,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +SUNARSO,Aris,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Gebang,Kecamatan Masaran,Kabupaten Sragen,,,Jawa Tengah,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +SUNARSO,Aris,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Taman Fajar,Kecamatan Probolinggo,Kabupaten Lampung Timur,,,Lampung,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +SUNDUQ AL MASHREK AL ISTITHMARI,,,,,,,,,,,,,,,,,,,,,,,P.O. Box 108,Damascus,,Syria,(UK Sanctions List Ref):SYR0279 (UK Statement of Reasons):Entity is controlled by Rami Makhlouf who provides funding to the regime. Al Mashreq Investment Fund benefits from and supports the Assad regime. (Phone number):(1) +963 112110043 (2) +963 112110059 (Type of entity):Private,Entity,AKA,,Syria,24/06/2011,31/12/2020,13/05/2022,12018 +SUNG NAM,JANG,,,,,,,,,14/07/1970,,,North Korea,563120368,issued on 22 March 2013 and expires on 22 March 2018.,,,Chief of an overseas Tangun Trading Corporation branch,,,,,,,,,"(UK Sanctions List Ref):DPR0216 (UN Ref):KPi.057 Chief of an overseas Tangun Trading Corporation branch, which is primarily responsible for the procurement of commodities and technologies to support the DPRK’s defense research and development programs. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,07/08/2017,05/08/2017,31/12/2020,13530 +SUNGORKIN,Vladimir,Nikolayevich,,,,,Владимир Николаевич СУНГОРКИН,Cyrillic,Russian,16/06/1954,Khabarovsk,Russia,Russia,,,,,(1) Director General and Editor-in-Chief of Komsomolskaya Pravda (2) Member of public council in the Ministry of Defence of the Russian Federation (3) Member of public council in the Ministry of Emergency Situations of the Russian Federation (4) Member of public council in the Ministry of Transport of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS1384 (UK Statement of Reasons):Vladimir Nikolayevich SUNGORKIN (hereafter SUNGORKIN) is the Editor-in-Chief of the Komsomolskaya Pravda Publishing House. In this role he has provided support for and promoted actions and policies which undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,24/06/2022,15317 +SUPPORTERS OF ISLAM IN KURDISTAN,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0032 (UN Ref):QDe.098 The founder is Najmuddin Faraj Ahmad (QDi.226). Associated with Al-Qaida in Iraq (QDe.115). Located and primarily active in northern Iraq but maintains a presence in western and central Iraq. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282119,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/02/2003,24/02/2003,31/12/2020,7021 +SUPPORTERS OF ISLAMIC LAW,,,,,,,,,,,,,,,,,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0033 (UN Ref):QDe.143 A Tunisian armed group with links to the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). The leader is Seifallah ben Hassine (QDi.333). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13140 +SURENA,,,,,,,,,,,,,,,,,,,PO Box 1516913813,4 East 37th Alley,Alvand Street,Argentina Sq.,,Tehran,,Iran,(UK Sanctions List Ref):INU0120 (UK Statement of Reasons):Company for constructing and commissioning of nuclear power plants. (Phone number):+021 88205095 99 (Website):info@surena gc.com (Email address):www.surena gc.com,Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12269 +SURENA CO.,,,,,,,,,,,,,,,,,,,PO Box 1516913813,4 East 37th Alley,Alvand Street,Argentina Sq.,,Tehran,,Iran,(UK Sanctions List Ref):INU0120 (UK Statement of Reasons):Company for constructing and commissioning of nuclear power plants. (Phone number):+021 88205095 99 (Website):info@surena gc.com (Email address):www.surena gc.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12269 +SURENA COMPANY,,,,,,,,,,,,,,,,,,,PO Box 1516913813,4 East 37th Alley,Alvand Street,Argentina Sq.,,Tehran,,Iran,(UK Sanctions List Ref):INU0120 (UK Statement of Reasons):Company for constructing and commissioning of nuclear power plants. (Phone number):+021 88205095 99 (Website):info@surena gc.com (Email address):www.surena gc.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12269 +SURKOV,Vladislav,Yurievich,,,,,Владислав Юрьевич Сурков,,,21/09/1964,"Solnestvo, Lipetsk region",Russia,Russia,,,,,Aide to the President of the Russian Federation,,,,,,,,Russia,(UK Sanctions List Ref):RUS0138 (UK Statement of Reasons):Former aide to the President of the Russian Federation. He was an organiser of the process in Crimea by which local Crimean communities were mobilised to stage actions undermining the Ukrainian authorities in Crimea. Remains active in supporting separatist actions or policies. (Gender):Male,Individual,Primary name,,Russia,21/03/2014,31/12/2020,14/02/2022,12937 +SUROVICH,Dmitri,Ivanovich,,,,Colonel,СУРОВИЧ Дмитрий Иванович,Cyrillic,Russian,,,,Belarus,,,,,Deputy Commander and Head of Armament of the North-Western Operational Command,,,,,,,,,"(UK Sanctions List Ref):RUS0748 (UK Statement of Reasons):Colonel Dmitry Ivanovich SUROVICH has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being involved in the command of Belarusian forces who were involved in a joint exercise with the Russian military ahead of Russia’s invasion of Ukraine which: (1) threatened Ukraine; and (2) provided cover for Russian military preparations to invade Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14699 +SUROVIKIN,Sergei,Vladimirovich,,,,General of the Army,СУРОВИКИН Сергей Владимирович,,,11/10/1966,Novosibirsk,Russia,Russia,,,,,Commander-in-Chief Aerospace Forces of the Russian Federation,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0698 (UK Statement of Reasons):General of the Army Sergey Vladimirovich SUROVIKIN is a member of the Armed Forces of the Russian Federation, he currently holds the position of Commander-in-Chief of the Aerospace Forces. He is considered to have been in direct command of or otherwise involved in the deployment of Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14649 +SUT,,,,,,,,,,,,,,,,,,,Azadi Ave,11365 8639,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SUT,,,,,,,,,,,,,,,,,,,Azadi Ave/Street,PO Box 11365 11155,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SUT,,,,,,,,,,,,,,,,,,,P.O. Box 11155 9466,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SUT,,,,,,,,,,,,,,,,,,,P.O. Box 11365 9161,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SUT,,,,,,,,,,,,,,,,,,,P.O. Box 11365 9466,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SUT,,,,,,,,,,,,,,,,,,,PO Box 11365 8639,Azadi St,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0042 (UK Statement of Reasons):Sharif University of Technology provides support for and is associated with designated entities involved in Iran’s nuclear proliferation activities. (Phone number):(1) +98 21 600 5419 (2) +98 21 6022727 (3) +98 21 6602 2721 (4) +98 21 66022727 (5) +98 21 6616 5201 (6) +98 21 6616 5202 (7) +98 21 918 8287 (8) +98 21 S5366 161 (Website):www.sharif.ac.ir, www.sharif.ir (Email address):Ghorbani@sharif.ir. info@sharif.ir. oisc@sharif.edu. vafai@sharif.edu (Type of entity):University",Entity,AKA,,Iran (Nuclear),24/12/2012,31/12/2020,04/03/2022,12816 +SUWAID,Joseph,,,,,,,,,00/00/1958,Damascus,Syria,Syria,,,,,Commander of the Special Forces,,,,,,,,,"(UK Sanctions List Ref):SYR0116 (UK Statement of Reasons):Commander of the Special Forces in the rank of Major General. Responsible for the use of violence against protestors across Syria and ordering, overseeing and/or failing to prevent the arbitrary arrest, torture and unlawful killing of civilians and associated with other members of the Syrian armed forces and intelligence and security forces so involved. (Gender):Male",Individual,Primary name,,Syria,26/03/2012,31/12/2020,13/05/2022,12638 +SVETLOV,Viacheslav,Evgenyevich,,,,,СВЕТЛОВ Вячеслав Евгеньевич,Cyrillic,Russian,27/01/1970,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1299 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15251 +SVETLOV,Vyacheslav,Evgenievich,,,,,,,,27/01/1970,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1299 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15251 +SVIDCHENKO,Maxim,Alexandrovich,,,,,,,,06/04/1978,,,Ukraine,,,,,Deputy Head of the so-called Luhansk People’s Republic Central Election Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0139 (UK Statement of Reasons):Deputy Head'of the ‘Central Electoral Commission' of the so-called ‘Luhansk People’s Republic’. In this capacity, he participated in the organisation of the so-called ‘elections’ of 11 November 2018 in the so-called ‘Luhansk People’s Republic’ and thereby actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,10/12/2018,31/12/2020,31/12/2020,13728 +SVIRIDENKO,Oleg,Mikhailovich,,,,,Олег Михайлович Свириденко,,,29/06/1962,"Potapovka, Gomel",Belarus,Russia,,,,,Deputy Minister of Justice of the Russian Federation,,,,,,,,,"(UK Sanctions List Ref):RUS1540 (UK Statement of Reasons):Oleg Mikhailovich SVIRIDENKO is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because SVIRIDENKO is a Deputy Minister of a Russian Federation Ministry. Specifically, SVIRIDENKO is Deputy Minister of Justice. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15467 +SVISHCHEV,Dmitry,Alexandrovich,,,,,Свищев Дмитрий Александрович,,,22/05/1969,Moscow,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0636 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14581 +SVISTUNOV,Arkady,Nikolaevich,,,,,Свистунов Аркадий Николаевич,,,28/04/1965,"Donetsk, Rostov",Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0283 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14228 +SVOBODNY DONBASS,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0176 (UK Statement of Reasons):Public 'organisation' that presented candidates in the so called 'elections' of the so called 'Donetsk People's Republic' on 2 November 2014. These elections are in breach of Ukrainian law and therefore illegal. In participating formally in illegal 'elections' it has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine.",Entity,AKA,,Russia,02/12/2014,31/12/2020,31/12/2020,13185 +SVYATENKO,Inna,Yuryevna,,,,,Инна Юрьевна Святенко,,,09/06/1967,Taganrog,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS1006 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14957 +SWE,Nyi,Nyi,,,,Major General,,,,,,,Myanmar,,,,,Former leader of the Northern Command of the Myanmar Military (Tatmadaw),,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0008 (UK Statement of Reasons):Major General Nyi Nyi Swe, former head of the Northern Command, oversaw military operations carried out in Kachin State between May 2016 and April 2018. In that context, he is responsible for serious human rights violations, the repression of the civilian population and actions that threaten the peace, stability or security of Myanmar committed in Kachin State by the Tatmadaw during his tenure. These include unlawful killings, sexual violence, forced detainment, forced labour, torture and ill treatment, and the systematic burning and clearing of civilian villages. He is also responsible for the obstruction of humanitarian relief to civilians in Kachin, in particular the blocking of food transports. (Gender):Male",Individual,Primary name,,Myanmar,24/12/2018,29/04/2021,11/11/2022,13739 +SWEID,Joseph,,,,,,,,,00/00/1958,Damascus,Syria,Syria,,,,,Commander of the Special Forces,,,,,,,,,"(UK Sanctions List Ref):SYR0116 (UK Statement of Reasons):Commander of the Special Forces in the rank of Major General. Responsible for the use of violence against protestors across Syria and ordering, overseeing and/or failing to prevent the arbitrary arrest, torture and unlawful killing of civilians and associated with other members of the Syrian armed forces and intelligence and security forces so involved. (Gender):Male",Individual,Primary name variation,,Syria,26/03/2012,31/12/2020,13/05/2022,12638 +SYAH,Heris,,,,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +SYAH,Heris,,,,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +SYAH,Heris,,,,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +SYAH,Heris,,,,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +SYAH,Heris,,,,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +SYAH,Heris,,,,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +SYAH,Heris,,,,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +SYAH,Heris,,,,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +SYAIFUDIN,Udtadz,,,,,,,,,11/10/1978,,Indonesia,Indonesia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0248 (UN Ref):QDi.416 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video. Physical description: hair colour: black; build: slight. Speaks Indonesian, Arabic and Mindanao dialect. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6244333. Syria, location since 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,24/08/2018,23/08/2018,31/12/2020,13708 +SYAWAL,Muhammad,,,,,,,,,03/09/1962,Makassar,Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0335 (UN Ref):QDi.123 At large as at Dec. 2003. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424789,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7834 +SYAWAL,YASSIN,,,,,,,,,03/09/1962,Makassar,Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0335 (UN Ref):QDi.123 At large as at Dec. 2003. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424789,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7834 +SYCHEVOY,Andrey,Ivanovich,,,,Lieutenant General,СЫЧЕВОЙ Андрей Иванович,,,16/05/1969,Troitskaya,Russia,Russia,,,,,"Commander 8th Combined Arms Army, Southern Military District",Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0769 (UK Statement of Reasons):Lieutenant General Andrey Ivanovich SYCHEVOY is a member of the Armed Forces of the Russian Federation, he currently holds the position of Commander 8th Combined Arms Army, Southern Military District. He is considered to have been in direct command of and/or to have substantial influence regarding the deployment of troops involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14720 +SYEED,Tata,Mohammad,,,,,,,,05/06/1950,"Sargodha, Punjab",Pakistan,Pakistan,,,3520025509842-7,Pakistan,,House No. 116E,Mohalla Johar,Lahore,Tehsil,Lahore City,Lahore District,,Pakistan,"(UK Sanctions List Ref):AQD0183 (UN Ref):QDi.263 Muhammad Saeed is the leader of Lashkar-e-Tayyiba (QDe.118). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543488. Address country Pakistan, location as at May 2008",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9215 +SYNPEX SHWE COMPANY LTD,,,,,,,,,,,,,,,,,,,"NAT YAY KAN(1)STREET, NO.1259",(35)QUARTER,NORTH DAGON TOWNSHIP,,,YANGON REGION,,Myanmar,"(UK Sanctions List Ref):MYA0048 (UK Statement of Reasons):The Myanmar Armed Forces have a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. Synpex Shwe Company Ltd has been responsible for the brokering of deals for the supply of parts and upkeep of aircraft for the Myanmar Armed Forces since the coup in February 2021. Therefore, Synpex Shwe Co Ltd has been and is involved in the supply of restricted goods to Myanmar. (Phone number):9444208886 (Email address):ayenyeinswe@synpexs.com (Type of entity):Private Company (Business Reg No):(1) 107428143 (2) 1661/2015-2016(YGN)",Entity,Primary name,,Myanmar,16/06/2022,16/06/2022,16/06/2022,15402 +SYRIA TRADING OIL COMPANY (SYTROL),,,,,,,,,,,,,,,,,,,Prime Minister Building,17 Street Nissan,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0329 Business (UK Statement of Reasons):State-owned company responsible for all oil exports from Syria. Provides financial support or other economic resources to the regime. Associated with the Ministry of Oil and Office of the Prime Minister.,Entity,Primary name,,Syria,02/12/2011,31/12/2020,13/05/2022,12432 +SYRIAN AIR,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,,(UK Sanctions List Ref):SYR0330 (UK Statement of Reasons):Public company controlled by the regime. Provides financial support for the regime and is implicated in transporting goods and equipment that could be used by the military in repressing the civilian population in Syria. (Phone number):+963112240774 (Website):Syriaair.com (Type of entity):Public,Entity,AKA,,Syria,24/07/2012,31/12/2020,13/05/2022,12734 +SYRIAN AIR,,,,,,,,,,,,,,,,,,,P.O. Box 417,Al-Mohafazeh Square,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0330 (UK Statement of Reasons):Public company controlled by the regime. Provides financial support for the regime and is implicated in transporting goods and equipment that could be used by the military in repressing the civilian population in Syria. (Phone number):+963112240774 (Website):Syriaair.com (Type of entity):Public,Entity,AKA,,Syria,24/07/2012,31/12/2020,13/05/2022,12734 +SYRIAN ARAB AIRLINES,,,,,,,مؤسسة الطيران العربية السورية‎ and السورية,,,,,,,,,,,,,,,,,Damascus,,,(UK Sanctions List Ref):SYR0330 (UK Statement of Reasons):Public company controlled by the regime. Provides financial support for the regime and is implicated in transporting goods and equipment that could be used by the military in repressing the civilian population in Syria. (Phone number):+963112240774 (Website):Syriaair.com (Type of entity):Public,Entity,Primary name,,Syria,24/07/2012,31/12/2020,13/05/2022,12734 +SYRIAN ARAB AIRLINES,,,,,,,مؤسسة الطيران العربية السورية‎ and السورية,,,,,,,,,,,,P.O. Box 417,Al-Mohafazeh Square,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0330 (UK Statement of Reasons):Public company controlled by the regime. Provides financial support for the regime and is implicated in transporting goods and equipment that could be used by the military in repressing the civilian population in Syria. (Phone number):+963112240774 (Website):Syriaair.com (Type of entity):Public,Entity,Primary name,,Syria,24/07/2012,31/12/2020,13/05/2022,12734 +SYRIAN COMPANY FOR INFORMATION TECHNOLOGY,,,,,,,,,,,,,,,,,,,Dumar Project,,,,Area 11,Damascus,,Syria,"(UK Sanctions List Ref):SYR0331 (UK Statement of Reasons):Associated with the Organisation for Technological Industries (OTI) and therefore the Syrian Ministry of Defence, which are both designated. Involved in the supply of goods or technology to Syria. (Phone number):+ 963-113141053 (Subsidiaries):Subsidiary of the Organisation for Technological Industries (OTI) and therefore the Syrian Ministry of Defence (Parent company):Syrian Ministry of Defence",Entity,Primary name,,Syria,09/03/2015,31/12/2020,13/05/2022,13236 +SYRIAN COMPANY FOR OIL TRANSPORT,,,,,,,,,,,,,,,,,,,Banias Industrial Area,Latakia Entrance Way,,,P.O. Box 13,Banias,,Syria,"(UK Sanctions List Ref):SYR0332 (UK Statement of Reasons):Syrian state owned oil company. There are reasonable grounds to suspect that it is or has been involved in supporting or benefitting from the Syrian regime in that it provides financial support to the regime, through the supply and sale of crude oil and related products. (Website):www.scot-syria.com (Email address):Email: scot50@scn-net.org",Entity,Primary name,,Syria,26/06/2012,31/12/2020,13/05/2022,12696 +SYRIAN CRUDE OIL TRANSPORTATION COMPANY,,,,,,,,,,,,,,,,,,,Banias Industrial Area,Latakia Entrance Way,,,P.O. Box 13,Banias,,Syria,"(UK Sanctions List Ref):SYR0332 (UK Statement of Reasons):Syrian state owned oil company. There are reasonable grounds to suspect that it is or has been involved in supporting or benefitting from the Syrian regime in that it provides financial support to the regime, through the supply and sale of crude oil and related products. (Website):www.scot-syria.com (Email address):Email: scot50@scn-net.org",Entity,AKA,,Syria,26/06/2012,31/12/2020,13/05/2022,12696 +SYRIAN LEBANESE COMMERCIAL BANK,,,,,,,مصرف التجاري السوري اللبناني,,,,,,,,,,,,Syrian Lebanese Commercial Bank Building,P.O. Box 113-5127/11-8701 Makdessi Street,Hamra,,,Beirut,,Lebanon,"(UK Sanctions List Ref):SYR0333 (UK Statement of Reasons):There are reasonable grounds to suspect that the Syrian Lebanese Commercial Bank is or has been involved in supporting or benefitting from the Syrian regime through the provision of financial services and making available funds or other economic resources. Further, the bank is a subsidiary of, and therefore owned or controlled by, the Commercial Bank of Syria, another entity also listed for its involvement. (Business Reg No):31165",Entity,Primary name,,Syria,24/01/2012,31/12/2020,19/05/2022,12487 +SYRIAN NATIONAL SECURITY BUREAU,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0334 Security Agency (UK Statement of Reasons):Syrian government branch and element of the Syrian Ba'ath Party. Directly involved in repression. It directed Syrian security forces to use extreme force against demonstrators.,Entity,Primary name,,Syria,26/06/2012,31/12/2020,31/12/2020,12693 +SYRIAN PETROLEUM COMPANY,,,,,,,,,,,,,,,,,,,Dummar Province,Expansion Square,Island 19-Building 32,,PO BOX: 2849,,,Syria,"(UK Sanctions List Ref):SYR0335 Oil and Gas (UK Statement of Reasons):State-owned oil company. There are reasonable grounds to suspect that the company is or has been involved in supporting or benefitting from the Syrian regime in that it provides financial support or other economic resources to the Syrian regime, including through the supply or sale of oil and related products. (Phone number):(1) +963-11-3137913 (2) +963-11-3137935 (3) +963-11-3137977 (4) +963-11-3137979 (Website):(1) www.spc.com.sy (2) www.spc-sy.com (Email address):(1) spccom1@scs-net.org (2) spccom2@scs-net.org (Type of entity):State-owned",Entity,Primary name,,Syria,26/03/2012,31/12/2020,26/07/2022,12644 +SYRIAN PETROLEUM COMPANY,,,,,,,,,,,,,,,,,,,Dummar Province,Expansion Square,Island 19-Building 32,,PO BOX: 3378,,,Syria,"(UK Sanctions List Ref):SYR0335 Oil and Gas (UK Statement of Reasons):State-owned oil company. There are reasonable grounds to suspect that the company is or has been involved in supporting or benefitting from the Syrian regime in that it provides financial support or other economic resources to the Syrian regime, including through the supply or sale of oil and related products. (Phone number):(1) +963-11-3137913 (2) +963-11-3137935 (3) +963-11-3137977 (4) +963-11-3137979 (Website):(1) www.spc.com.sy (2) www.spc-sy.com (Email address):(1) spccom1@scs-net.org (2) spccom2@scs-net.org (Type of entity):State-owned",Entity,Primary name,,Syria,26/03/2012,31/12/2020,26/07/2022,12644 +SYRIAN SCIENTIFIC RESEARCH COUNCIL (SSRC),,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +SYRIAN SCIENTIFIC RESEARCH COUNCIL (SSRC),,,,,,,,,,,,,,,,,,,,,,,P.O. Box 31983,Barzeh,,,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +SYRIAN SCIENTIFIC RESEARCH COUNCIL (SSRC),,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,12426 +SYRIAN SCIENTIFIC RESEARCH COUNCIL (SSRC),,,,,,,,,,,,,,,,,,,Barzeh Street,,,,PO Box 4470,Damascus,,Syria,"(UK Sanctions List Ref):CHW0006 and SYR0286 Listed under the Chemical Weapons and Syria sanctions regimes. (UK Statement of Reasons):The Scientific Studies and Research Center (SSRC) is the Syrian regime’s principal entity for the development of chemical weapons. The SSRC is responsible for the development and production of chemical weapons, as well as the missiles and artillery to deliver them, operating at a number of sites in Syria. Provides support to the Syrian army for the acquisition of equipment used for the surveillance and repression of demonstrators. Operating in the chemical weapon proliferation sector, it is the government entity responsible for developing and producing non-conventional weapons, including chemical weapons, and the missiles to deliver them. (Phone number):Telephone: 6668114/5 Telefax: 6620317 (Type of entity):Investment. Private (Subsidiaries):Bena Properties (subsidiary), Cham Holding Building, Daraa Highway, Ashrafiyat Sahnaya Rif Dimashq, Syria, P.O. Box 9525. Higher Institute for Applied Sciences and Technology. HISAT. National Standards & Calibration Laboratory. NSCL",Entity,AKA,,Syria,02/12/2011,31/12/2020,18/03/2022,12426 +SYRIANAIR,,,,,,,,,,,,,,,,,,,,,,,,Damascus,,,(UK Sanctions List Ref):SYR0330 (UK Statement of Reasons):Public company controlled by the regime. Provides financial support for the regime and is implicated in transporting goods and equipment that could be used by the military in repressing the civilian population in Syria. (Phone number):+963112240774 (Website):Syriaair.com (Type of entity):Public,Entity,AKA,,Syria,24/07/2012,31/12/2020,13/05/2022,12734 +SYRIANAIR,,,,,,,,,,,,,,,,,,,P.O. Box 417,Al-Mohafazeh Square,,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0330 (UK Statement of Reasons):Public company controlled by the regime. Provides financial support for the regime and is implicated in transporting goods and equipment that could be used by the military in repressing the civilian population in Syria. (Phone number):+963112240774 (Website):Syriaair.com (Type of entity):Public,Entity,AKA,,Syria,24/07/2012,31/12/2020,13/05/2022,12734 +SYRIATEL,,,,,,,,,,,,,,,,,,,Thawra Street,Ste Building 6th Floor,,,,,BP 2900,,"(UK Sanctions List Ref):SYR0336 Telecommunications sector. Controlled by Ahmad Al-Ali, Chairman and Murid Al-Atassi, CEO. (UK Statement of Reasons):Formerly owned by Rami Maklouf. While Ahmad Al-Ali and Murid Al-Atassi are now the named Chairman and CEO of the company, it is suspected that the Assad family, through Asma Assad, are the ultimate beneficial owners. Syriatel has publicly supported the regime by paying 50% of its profits to the Government. Accordingly, the company is or has been involved in supporting or benefitting from the Syrian regime and/or is owned or controlled by, or otherwise associated with other involved persons. (Phone number):(1) +963-11-23739719 (2) +963-11-6126270 (Website):http://syriatel.sy (Email address):info@syriatel.com.sy",Entity,Primary name,,Syria,26/09/2011,31/12/2020,13/05/2022,12153 +SYRONICS-SYRIAN ARAB CO. FOR ELECTRONIC INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O.Box 5966,Kaboon Street,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0337 Manufacturing sector (UK Statement of Reasons):Syronics is a front company for the acquisition of equipment used in the development of chemical weapons by the SSRC. As such, it was responsible for developing chemical weapons and ballistic missiles for use by the Syrian Government, who are responsible for violent repression against the civilian population. Moreover, it is owned or controlled directly or indirectly by the Syrian Government. (Phone number):(1) +963-11-5110117 (2) +963-11-5111352",Entity,Primary name,,Syria,02/12/2011,31/12/2020,13/05/2022,12430 +SYVOKONENKO,Yuriy,Viktorovich,,,,,,,,07/08/1957,Stalino City (now Donetsk),Ukraine,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0136 (UK Statement of Reasons):Member of the ‘Parliament’ of the so called ‘Donetsk People's Republic’ and Chairman of the public association Union of Veterans of the Donbass Berkut and a member of the public movement ‘Free Donbass’. Stood as a candidate in the so called ‘elections’ of 2 November 2014 to the post of the Head of the so called ‘Donetsk People's Republic’. These elections are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. He remains a member of the so-called “people’s council of the Donetsk People’s Republic (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,14/02/2022,13173 +SYVOKONENKO,Yury,,,,,,,,,07/08/1957,Stalino City (now Donetsk),Ukraine,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0136 (UK Statement of Reasons):Member of the ‘Parliament’ of the so called ‘Donetsk People's Republic’ and Chairman of the public association Union of Veterans of the Donbass Berkut and a member of the public movement ‘Free Donbass’. Stood as a candidate in the so called ‘elections’ of 2 November 2014 to the post of the Head of the so called ‘Donetsk People's Republic’. These elections are in breach of Ukrainian law and therefore illegal. In taking on and acting in this capacity, and in participating formally as a candidate in the illegal ‘elections’, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and to further destabilise Ukraine. He remains a member of the so-called “people’s council of the Donetsk People’s Republic (Gender):Male",Individual,Primary name variation,,Russia,02/12/2014,31/12/2020,14/02/2022,13173 +SYWAL,Yassin,,,,,,,,,03/09/1962,Makassar,Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0335 (UN Ref):QDi.123 At large as at Dec. 2003. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424789,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7834 +T.M.G. ENGINEERING LIMITED,,,,,,,,,,,,,,,,,,,53/64 Chancery Lane,,,,,London,WC2A 1QU,United Kingdom,"(UK Sanctions List Ref):IRQ0061 (UN Ref):IQe.208 Registered company number: 02142819. Last known directors: Hana Paul JON, Adnan Talib Hashim AL-AMIRI, Dr. Safa Hadi Jawad AL-HABOBI. Shareholders: 3,700,000 ordinary shares: TDG Ltd. 100,000 ordinary shares: Admincheck Ltd., 200,000 ordinary shares: Echosabre Ltd.",Entity,Primary name,,Iraq,02/07/2003,12/05/2006,31/12/2020,7818 +TABA,,,,,,,,,,,,,,,,,,,156 Golestan Street,Saradr e Jangal,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TABA,,,,,,,,,,,,,,,,,,,Khalij e Fars Boulevard,Kilometre 10 of Atomic Energy Road,Rowshan Shahr,Third Moshtaq Street,,Esfahan,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TABA,,,,,,,,,,,,,,,,,,,Km. 55th of Tehran-Qazvin Rd.,,,,,Karaj,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TABA,,,,,,,,,,,,,,,,,,,No.239,Africa Ave.,Apartment No.12,First Floor,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TABA,,,,,,,,,,,,,,,,,,,Northwest of Karaj at Km 55 Qazvin (alt. Ghazvin) Highway,,,,,Haljerd,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TABA,,,,,,,,,,,,,,,,,,,Yousef Abad District,No. 1,37th Street,,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TABA,,,,,,,,,,,,,,,,,,,No.66,Sarhang Sakhaei St.,Hafez Avenue,,,Tehran,11367,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TABA,,,,,,,,,,,,,,,,,,,No.66,Sarhang Sakhaei St.,Hafez Avenue,,,Tehran,(11367),Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TABA'A,Darem,,,,,,,,,00/00/1958,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0362 (UK Statement of Reasons):Minister of Education. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,16/10/2020,31/12/2020,31/12/2020,13978 +TABATABAEI,Ali,Akber,,,,,,,,00/00/1967,,,Iran,(1) 9003213 (2) 6620505,,,,"Member of the IRGC Qods Force operating under the direction of Qods Force Commander, Major General Qasem Soleimani who was designated by the UN Security Council in resolution 1747 (2007) (designated under IRi.039).",,,,,,,,,"(UK Sanctions List Ref):INU0195 (UN Ref):IRi.041 Facilitated a breach of paragraph 5 of resolution 1747 (2007) prohibiting the export of arms and related materiel from Iran. [Old Reference # I.AC.50.18.04.12.(2)] (UK Statement of Reasons):As a member of the IRGC Qods Force, Ali Akbar TABATABAEI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) EU Exit Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),02/12/2011,18/04/2012,04/03/2022,12276 +TABATABAEI,Sayyid,Ali,Akbar,,,,,,,00/00/1967,,,Iran,(1) 9003213 (2) 6620505,,,,"Member of the IRGC Qods Force operating under the direction of Qods Force Commander, Major General Qasem Soleimani who was designated by the UN Security Council in resolution 1747 (2007) (designated under IRi.039).",,,,,,,,,"(UK Sanctions List Ref):INU0195 (UN Ref):IRi.041 Facilitated a breach of paragraph 5 of resolution 1747 (2007) prohibiting the export of arms and related materiel from Iran. [Old Reference # I.AC.50.18.04.12.(2)] (UK Statement of Reasons):As a member of the IRGC Qods Force, Ali Akbar TABATABAEI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) EU Exit Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),02/12/2011,18/04/2012,04/03/2022,12276 +TABATABAEI,ALI AKBAR,,,,,,,,,,,,Iran,(1) 9003213 (2) 6620505,,,,"Member of the IRGC Qods Force operating under the direction of Qods Force Commander, Major General Qasem Soleimani who was designated by the UN Security Council in resolution 1747 (2007) (designated under IRi.039).",,,,,,,,,"(UK Sanctions List Ref):INU0195 (UN Ref):IRi.041 Facilitated a breach of paragraph 5 of resolution 1747 (2007) prohibiting the export of arms and related materiel from Iran. [Old Reference # I.AC.50.18.04.12.(2)] (UK Statement of Reasons):As a member of the IRGC Qods Force, Ali Akbar TABATABAEI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) EU Exit Regulations 2019.",Individual,Primary name,,Iran (Nuclear),02/12/2011,18/04/2012,04/03/2022,12276 +TABATABAEI,ALI AKBAR,,,,,,,,,00/00/1967,,,Iran,(1) 9003213 (2) 6620505,,,,"Member of the IRGC Qods Force operating under the direction of Qods Force Commander, Major General Qasem Soleimani who was designated by the UN Security Council in resolution 1747 (2007) (designated under IRi.039).",,,,,,,,,"(UK Sanctions List Ref):INU0195 (UN Ref):IRi.041 Facilitated a breach of paragraph 5 of resolution 1747 (2007) prohibiting the export of arms and related materiel from Iran. [Old Reference # I.AC.50.18.04.12.(2)] (UK Statement of Reasons):As a member of the IRGC Qods Force, Ali Akbar TABATABAEI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) EU Exit Regulations 2019.",Individual,Primary name,,Iran (Nuclear),02/12/2011,18/04/2012,04/03/2022,12276 +TABEEB,Allah Dad,,,,,,,,,00/00/1963,"(1) Ghorak District, Kandahar Province. (2) Nesh District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Deputy Minister of Communication under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0018 (UN Ref):TAi.016 Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Deceased as of November 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7483 +TACTICAL MISSILES CORPORATION JOINT STOCK COMPANY,,,,,,,Корпорация Тактическое Ракетное Вооружение акционерное общество,,,,,,,,,,,,Ilyicha street,7,Korolev,,,Moscow region,141080,Russia,"(UK Sanctions List Ref):RUS0240 (UK Statement of Reasons):JSC Tactical Missiles Corporation (TMC) is a Russian state-owned defence company and one of the most prominent manufacturers of missiles in Russia. TMC is a conglomerate specialising in aircraft and naval armaments, and recently announced they were developing new seaborne weapons, including a high-speed anti-ship missile with extended strike range. They have previously restored and developed coastal defence missile systems in Crimea after the illegal annexation of the region by Russia in 2014. Therefore TMC makes available economic resources, goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. TMC also supports the Russian Government by carrying out business as a Russian Government-affiliated entity, which business is of economic significance to the Russian Government and is in a sector of strategic significance, specifically the Russian defence sector. (Phone number):+7 (495) 542-57-09 (Website):http://www.ktrv.ru/ (Email address):kmo@krtv.ru (Type of entity):Joint Stock Company",Entity,Primary name,,Russia,24/02/2022,24/02/2022,24/02/2022,14187 +TAEB,Hassan,,,,,,,,,01/04/1963,Tehran,Iran,,,,,,(1) Head of IRGC Intelligence (2) Former Deputy IRGC Commander for Intelligence (3) Former Commander of the Basij until October 2009,,,,,,,,,"(UK Sanctions List Ref):IHR0041 and SYR0089 Listed under the Iran (Human Rights) and Syria sanctions regimes. (UK Statement of Reasons):Head of IRGC Intelligence since October 2009. Commander of the Basij until October 2009. Forces under his command participated in mass beatings, murders, detentions and tortures of peaceful protestors. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,14/02/2022,11788 +TAEB,Hassan,,,,,,,,,01/04/1963,Tehran,Iran,,,,,,(1) Head of IRGC Intelligence (2) Former Deputy IRGC Commander for Intelligence (3) Former Commander of the Basij until October 2009,,,,,,,,,"(UK Sanctions List Ref):IHR0041 and SYR0089 Listed under the Iran (Human Rights) and Syria sanctions regimes. (UK Statement of Reasons):Head of IRGC Intelligence since October 2009. Commander of the Basij until October 2009. Forces under his command participated in mass beatings, murders, detentions and tortures of peaceful protestors. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,14/02/2022,11788 +TAEB,Hassan,,,,,,,,,,Tehran,Iran,,,,,,(1) Head of IRGC Intelligence (2) Former Deputy IRGC Commander for Intelligence (3) Former Commander of the Basij until October 2009,,,,,,,,,"(UK Sanctions List Ref):IHR0041 and SYR0089 Listed under the Iran (Human Rights) and Syria sanctions regimes. (UK Statement of Reasons):Head of IRGC Intelligence since October 2009. Commander of the Basij until October 2009. Forces under his command participated in mass beatings, murders, detentions and tortures of peaceful protestors. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,14/02/2022,11788 +TAEB,Hassan,,,,,,,,,,Tehran,Iran,,,,,,(1) Head of IRGC Intelligence (2) Former Deputy IRGC Commander for Intelligence (3) Former Commander of the Basij until October 2009,,,,,,,,,"(UK Sanctions List Ref):IHR0041 and SYR0089 Listed under the Iran (Human Rights) and Syria sanctions regimes. (UK Statement of Reasons):Head of IRGC Intelligence since October 2009. Commander of the Basij until October 2009. Forces under his command participated in mass beatings, murders, detentions and tortures of peaceful protestors. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,14/02/2022,11788 +TAEB,Hosein,,,,,,,,,01/04/1963,Tehran,Iran,,,,,,(1) Head of IRGC Intelligence (2) Former Deputy IRGC Commander for Intelligence (3) Former Commander of the Basij until October 2009,,,,,,,,,"(UK Sanctions List Ref):IHR0041 and SYR0089 Listed under the Iran (Human Rights) and Syria sanctions regimes. (UK Statement of Reasons):Head of IRGC Intelligence since October 2009. Commander of the Basij until October 2009. Forces under his command participated in mass beatings, murders, detentions and tortures of peaceful protestors. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,14/02/2022,11788 +TAEB,Hosein,,,,,,,,,01/04/1963,Tehran,Iran,,,,,,(1) Head of IRGC Intelligence (2) Former Deputy IRGC Commander for Intelligence (3) Former Commander of the Basij until October 2009,,,,,,,,,"(UK Sanctions List Ref):IHR0041 and SYR0089 Listed under the Iran (Human Rights) and Syria sanctions regimes. (UK Statement of Reasons):Head of IRGC Intelligence since October 2009. Commander of the Basij until October 2009. Forces under his command participated in mass beatings, murders, detentions and tortures of peaceful protestors. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,14/02/2022,11788 +TAEB,Hosein,,,,,,,,,,Tehran,Iran,,,,,,(1) Head of IRGC Intelligence (2) Former Deputy IRGC Commander for Intelligence (3) Former Commander of the Basij until October 2009,,,,,,,,,"(UK Sanctions List Ref):IHR0041 and SYR0089 Listed under the Iran (Human Rights) and Syria sanctions regimes. (UK Statement of Reasons):Head of IRGC Intelligence since October 2009. Commander of the Basij until October 2009. Forces under his command participated in mass beatings, murders, detentions and tortures of peaceful protestors. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,14/02/2022,11788 +TAEB,Hosein,,,,,,,,,,Tehran,Iran,,,,,,(1) Head of IRGC Intelligence (2) Former Deputy IRGC Commander for Intelligence (3) Former Commander of the Basij until October 2009,,,,,,,,,"(UK Sanctions List Ref):IHR0041 and SYR0089 Listed under the Iran (Human Rights) and Syria sanctions regimes. (UK Statement of Reasons):Head of IRGC Intelligence since October 2009. Commander of the Basij until October 2009. Forces under his command participated in mass beatings, murders, detentions and tortures of peaceful protestors. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,14/02/2022,11788 +TAEB,Hoseyn,,,,,,,,,01/04/1963,Tehran,Iran,,,,,,(1) Head of IRGC Intelligence (2) Former Deputy IRGC Commander for Intelligence (3) Former Commander of the Basij until October 2009,,,,,,,,,"(UK Sanctions List Ref):IHR0041 and SYR0089 Listed under the Iran (Human Rights) and Syria sanctions regimes. (UK Statement of Reasons):Head of IRGC Intelligence since October 2009. Commander of the Basij until October 2009. Forces under his command participated in mass beatings, murders, detentions and tortures of peaceful protestors. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,14/02/2022,11788 +TAEB,Hoseyn,,,,,,,,,01/04/1963,Tehran,Iran,,,,,,(1) Head of IRGC Intelligence (2) Former Deputy IRGC Commander for Intelligence (3) Former Commander of the Basij until October 2009,,,,,,,,,"(UK Sanctions List Ref):IHR0041 and SYR0089 Listed under the Iran (Human Rights) and Syria sanctions regimes. (UK Statement of Reasons):Head of IRGC Intelligence since October 2009. Commander of the Basij until October 2009. Forces under his command participated in mass beatings, murders, detentions and tortures of peaceful protestors. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,14/02/2022,11788 +TAEB,Hoseyn,,,,,,,,,,Tehran,Iran,,,,,,(1) Head of IRGC Intelligence (2) Former Deputy IRGC Commander for Intelligence (3) Former Commander of the Basij until October 2009,,,,,,,,,"(UK Sanctions List Ref):IHR0041 and SYR0089 Listed under the Iran (Human Rights) and Syria sanctions regimes. (UK Statement of Reasons):Head of IRGC Intelligence since October 2009. Commander of the Basij until October 2009. Forces under his command participated in mass beatings, murders, detentions and tortures of peaceful protestors. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2011,31/12/2020,14/02/2022,11788 +TAEB,Hoseyn,,,,,,,,,,Tehran,Iran,,,,,,(1) Head of IRGC Intelligence (2) Former Deputy IRGC Commander for Intelligence (3) Former Commander of the Basij until October 2009,,,,,,,,,"(UK Sanctions List Ref):IHR0041 and SYR0089 Listed under the Iran (Human Rights) and Syria sanctions regimes. (UK Statement of Reasons):Head of IRGC Intelligence since October 2009. Commander of the Basij until October 2009. Forces under his command participated in mass beatings, murders, detentions and tortures of peaceful protestors. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/04/2011,31/12/2020,14/02/2022,11788 +TAEB,Hossein,,,,,,,,,01/04/1963,Tehran,Iran,,,,,,(1) Head of IRGC Intelligence (2) Former Deputy IRGC Commander for Intelligence (3) Former Commander of the Basij until October 2009,,,,,,,,,"(UK Sanctions List Ref):IHR0041 and SYR0089 Listed under the Iran (Human Rights) and Syria sanctions regimes. (UK Statement of Reasons):Head of IRGC Intelligence since October 2009. Commander of the Basij until October 2009. Forces under his command participated in mass beatings, murders, detentions and tortures of peaceful protestors. (Gender):Male",Individual,Primary name,,Syria,24/06/2011,31/12/2020,14/02/2022,11788 +TAEB,Hossein,,,,,,,,,01/04/1963,Tehran,Iran,,,,,,(1) Head of IRGC Intelligence (2) Former Deputy IRGC Commander for Intelligence (3) Former Commander of the Basij until October 2009,,,,,,,,,"(UK Sanctions List Ref):IHR0041 and SYR0089 Listed under the Iran (Human Rights) and Syria sanctions regimes. (UK Statement of Reasons):Head of IRGC Intelligence since October 2009. Commander of the Basij until October 2009. Forces under his command participated in mass beatings, murders, detentions and tortures of peaceful protestors. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,14/02/2022,11788 +TAEB,Hossein,,,,,,,,,,Tehran,Iran,,,,,,(1) Head of IRGC Intelligence (2) Former Deputy IRGC Commander for Intelligence (3) Former Commander of the Basij until October 2009,,,,,,,,,"(UK Sanctions List Ref):IHR0041 and SYR0089 Listed under the Iran (Human Rights) and Syria sanctions regimes. (UK Statement of Reasons):Head of IRGC Intelligence since October 2009. Commander of the Basij until October 2009. Forces under his command participated in mass beatings, murders, detentions and tortures of peaceful protestors. (Gender):Male",Individual,Primary name,,Syria,24/06/2011,31/12/2020,14/02/2022,11788 +TAEB,Hossein,,,,,,,,,,Tehran,Iran,,,,,,(1) Head of IRGC Intelligence (2) Former Deputy IRGC Commander for Intelligence (3) Former Commander of the Basij until October 2009,,,,,,,,,"(UK Sanctions List Ref):IHR0041 and SYR0089 Listed under the Iran (Human Rights) and Syria sanctions regimes. (UK Statement of Reasons):Head of IRGC Intelligence since October 2009. Commander of the Basij until October 2009. Forces under his command participated in mass beatings, murders, detentions and tortures of peaceful protestors. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,14/02/2022,11788 +TAEDONG CREDIT BANK,,,,,,,,,,,,,,,,,,,,,Ansan-dong,Botonggang Hotel,Pongchon,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0131 (UN Ref):KPe.023 SWIFT: DCBKKPPY. Daedong Credit Bank has provided financial services to the Korea Mining Development Trading Corporation (KOMID) and Tanchon Commercial Bank. Since at least 2007, DCB has facilitated hundreds of financial transactions worth millions of dollars on behalf of KOMID and Tanchon Commercial Bank. In some cases, DCB has knowingly facilitated transactions by using deceptive financial practices.",Entity,AKA,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13341 +TAEDONG CREDIT BANK,,,,,,,,,,,,,,,,,,,,Suite 401,Potonggang Hotel,Ansan-Dong,Pyongchon District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0131 (UN Ref):KPe.023 SWIFT: DCBKKPPY. Daedong Credit Bank has provided financial services to the Korea Mining Development Trading Corporation (KOMID) and Tanchon Commercial Bank. Since at least 2007, DCB has facilitated hundreds of financial transactions worth millions of dollars on behalf of KOMID and Tanchon Commercial Bank. In some cases, DCB has knowingly facilitated transactions by using deceptive financial practices.",Entity,AKA,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13341 +TAEK,Pak,,,,,,,,,20/07/1966,Central Java,Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0331 (UN Ref):QDi.294 Senior member of Jemaah Islamiyah (QDe.092) involved in planning and funding multiple terrorist attacks in the Philippines and Indonesia. Provided training to Abu Sayyaf Group (QDe.001). Convicted for his role in the 2002 Bali bombings and sentenced to 20 years in prison in Jun. 2012. Remains in custody in Indonesia as at May 2015. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173385,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,12/01/2022,12021 +TAESONG BANK,,,,,,,,,,,,,,,,,,,,,Segori-dong,Gyongheung,St. Potonggang District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0147 (UN Ref):KPe.035 Daesong Bank is owned and controlled by Office 39 of the Korea Workers’ Party. SWIFT/BIC: KDBKKPPY,Entity,AKA,,Democratic People's Republic of Korea,23/12/2010,30/11/2016,31/12/2020,11286 +TAGANDA,,,,,,General,,,,00/00/1973,Bigogwe,Rwanda,Congo (Democratic Republic),,,,,(1) Former Chief of Staff in CNDP (2) Former CNDP military commander,,,,,,The Hague,,Netherlands,"(UK Sanctions List Ref):DRC0025 (UN Ref):CDi.030 Born in Rwanda, he moved to Nyamitaba,Masisi territory, North Kivu, when he was a child. Nominated FARDC Brigadier-General by Presidential Decree on 11 December 2004, following Ituri peace agreements. Formerly Chief of Staff in CNDP and became CNDP military commander since the arrest of Laurent Nkunda in January 2009. Since January 2009, de facto Deputy Commander of consecutive anti-FDLR operations ‘Umoja Wetu’, ‘Kimia II’, and ‘Amani Leo’ in North and South Kivu. Entered Rwanda in March 2013, and voluntarily surrender to ICC officials in Kigali on March 22. Transferred to the ICC in The Hague, Netherlands. On 9 June 2014, ICC confirmed 13 charges of war crimes and five charges of crimes against humanity against him; the trial started in September 2015. On 8 July 2019, the ICC found him guilty of 18 counts of war crimes and crimes against humanity, committed in Ituri in 2002-2003. On 7 November 2019, he was sentenced to a total of 30 years imprisonment. He has appealed both his conviction and sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,18/02/2021,8736 +TAGANDA,,,,,,General,,,,00/00/1974,Bigogwe,Rwanda,Congo (Democratic Republic),,,,,(1) Former Chief of Staff in CNDP (2) Former CNDP military commander,,,,,,The Hague,,Netherlands,"(UK Sanctions List Ref):DRC0025 (UN Ref):CDi.030 Born in Rwanda, he moved to Nyamitaba,Masisi territory, North Kivu, when he was a child. Nominated FARDC Brigadier-General by Presidential Decree on 11 December 2004, following Ituri peace agreements. Formerly Chief of Staff in CNDP and became CNDP military commander since the arrest of Laurent Nkunda in January 2009. Since January 2009, de facto Deputy Commander of consecutive anti-FDLR operations ‘Umoja Wetu’, ‘Kimia II’, and ‘Amani Leo’ in North and South Kivu. Entered Rwanda in March 2013, and voluntarily surrender to ICC officials in Kigali on March 22. Transferred to the ICC in The Hague, Netherlands. On 9 June 2014, ICC confirmed 13 charges of war crimes and five charges of crimes against humanity against him; the trial started in September 2015. On 8 July 2019, the ICC found him guilty of 18 counts of war crimes and crimes against humanity, committed in Ituri in 2002-2003. On 7 November 2019, he was sentenced to a total of 30 years imprisonment. He has appealed both his conviction and sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,18/02/2021,8736 +TAGANDA,BOSCO,,,,,,,,,00/00/1973,Bigogwe,Rwanda,Congo (Democratic Republic),,,,,(1) Former Chief of Staff in CNDP (2) Former CNDP military commander,,,,,,The Hague,,Netherlands,"(UK Sanctions List Ref):DRC0025 (UN Ref):CDi.030 Born in Rwanda, he moved to Nyamitaba,Masisi territory, North Kivu, when he was a child. Nominated FARDC Brigadier-General by Presidential Decree on 11 December 2004, following Ituri peace agreements. Formerly Chief of Staff in CNDP and became CNDP military commander since the arrest of Laurent Nkunda in January 2009. Since January 2009, de facto Deputy Commander of consecutive anti-FDLR operations ‘Umoja Wetu’, ‘Kimia II’, and ‘Amani Leo’ in North and South Kivu. Entered Rwanda in March 2013, and voluntarily surrender to ICC officials in Kigali on March 22. Transferred to the ICC in The Hague, Netherlands. On 9 June 2014, ICC confirmed 13 charges of war crimes and five charges of crimes against humanity against him; the trial started in September 2015. On 8 July 2019, the ICC found him guilty of 18 counts of war crimes and crimes against humanity, committed in Ituri in 2002-2003. On 7 November 2019, he was sentenced to a total of 30 years imprisonment. He has appealed both his conviction and sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,18/02/2021,8736 +TAGANDA,BOSCO,,,,,,,,,00/00/1974,Bigogwe,Rwanda,Congo (Democratic Republic),,,,,(1) Former Chief of Staff in CNDP (2) Former CNDP military commander,,,,,,The Hague,,Netherlands,"(UK Sanctions List Ref):DRC0025 (UN Ref):CDi.030 Born in Rwanda, he moved to Nyamitaba,Masisi territory, North Kivu, when he was a child. Nominated FARDC Brigadier-General by Presidential Decree on 11 December 2004, following Ituri peace agreements. Formerly Chief of Staff in CNDP and became CNDP military commander since the arrest of Laurent Nkunda in January 2009. Since January 2009, de facto Deputy Commander of consecutive anti-FDLR operations ‘Umoja Wetu’, ‘Kimia II’, and ‘Amani Leo’ in North and South Kivu. Entered Rwanda in March 2013, and voluntarily surrender to ICC officials in Kigali on March 22. Transferred to the ICC in The Hague, Netherlands. On 9 June 2014, ICC confirmed 13 charges of war crimes and five charges of crimes against humanity against him; the trial started in September 2015. On 8 July 2019, the ICC found him guilty of 18 counts of war crimes and crimes against humanity, committed in Ituri in 2002-2003. On 7 November 2019, he was sentenced to a total of 30 years imprisonment. He has appealed both his conviction and sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,18/02/2021,8736 +TAGHIPOUR,Reza,,,,,,,,,00/00/1957,Maragheh,Iran,,,,,,(1) Member of the Supreme Cyberspace Council (2) Member of Parliament for Tehran,,,,,,,,,"(UK Sanctions List Ref):IHR0073 (UK Statement of Reasons):Member of the Supreme Cyberspace Council. Member of the City Council of Teheran. Former Minister for Information and Communications (2009-2012). As Minister for Information, he was one of the top officials in charge of censorship and control of internet activities and also all types of communications (in particular mobile phones). During interrogations of political detainees, the interrogators make use of the detainees' personal data, mail and communications. On several occasions following the 2009 presidential election and during street demonstrations, mobile lines and text messaging were blocked, satellite TV channels were jammed and the internet locally suspended or at least slowed down. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12647 +TAGHTIRAN,,,,,,,,,,,,,,,,,,,3,2nd St.,Assad Abadi Ave.,,Vali Asr Ave.,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN,,,,,,,,,,,,,,,,,,,Flat 3,no. 3,2nd St.,asad Abadi Ave.,,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN,,,,,,,,,,,,,,,,,,,G.T.B. Complex,,44th Km. of Kashan Delijan Rd.,,,Kashan,,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN,,,,,,,,,,,,,,,,,,,Km 44 Kashan Delijan Rd.,,,,,Kashan,,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN,,,,,,,,,,,,,,,,,,,Km 44th of Delijan Rd.,,,,,Kashan,87135,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN,,,,,,,,,,,,,,,,,,,No. 3,2nd St.,Yousefabad Forked Rd.,Vali e Asr Ave.,,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN,,,,,,,,,,,,,,,,,,,Unit 2,No. 3,2nd Alley,Asad Abadi St.,Vali e asr St.,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,Primary name,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN CO.,,,,,,,,,,,,,,,,,,,3,2nd St.,Assad Abadi Ave.,,Vali Asr Ave.,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN CO.,,,,,,,,,,,,,,,,,,,Flat 3,no. 3,2nd St.,asad Abadi Ave.,,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN CO.,,,,,,,,,,,,,,,,,,,G.T.B. Complex,,44th Km. of Kashan Delijan Rd.,,,Kashan,,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN CO.,,,,,,,,,,,,,,,,,,,Km 44 Kashan Delijan Rd.,,,,,Kashan,,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN CO.,,,,,,,,,,,,,,,,,,,Km 44th of Delijan Rd.,,,,,Kashan,87135,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN CO.,,,,,,,,,,,,,,,,,,,No. 3,2nd St.,Yousefabad Forked Rd.,Vali e Asr Ave.,,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN CO.,,,,,,,,,,,,,,,,,,,Unit 2,No. 3,2nd Alley,Asad Abadi St.,Vali e asr St.,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN,,,,,,,,,,,,,,,,,,,3,2nd St.,Assad Abadi Ave.,,Vali Asr Ave.,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN,,,,,,,,,,,,,,,,,,,Flat 3,no. 3,2nd St.,asad Abadi Ave.,,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN,,,,,,,,,,,,,,,,,,,G.T.B. Complex,,44th Km. of Kashan Delijan Rd.,,,Kashan,,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN,,,,,,,,,,,,,,,,,,,Km 44 Kashan Delijan Rd.,,,,,Kashan,,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN,,,,,,,,,,,,,,,,,,,Km 44th of Delijan Rd.,,,,,Kashan,87135,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN,,,,,,,,,,,,,,,,,,,No. 3,2nd St.,Yousefabad Forked Rd.,Vali e Asr Ave.,,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN,,,,,,,,,,,,,,,,,,,Unit 2,No. 3,2nd Alley,Asad Abadi St.,Vali e asr St.,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN CO.,,,,,,,,,,,,,,,,,,,3,2nd St.,Assad Abadi Ave.,,Vali Asr Ave.,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN CO.,,,,,,,,,,,,,,,,,,,Flat 3,no. 3,2nd St.,asad Abadi Ave.,,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN CO.,,,,,,,,,,,,,,,,,,,G.T.B. Complex,,44th Km. of Kashan Delijan Rd.,,,Kashan,,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN CO.,,,,,,,,,,,,,,,,,,,Km 44 Kashan Delijan Rd.,,,,,Kashan,,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN CO.,,,,,,,,,,,,,,,,,,,Km 44th of Delijan Rd.,,,,,Kashan,87135,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN CO.,,,,,,,,,,,,,,,,,,,No. 3,2nd St.,Yousefabad Forked Rd.,Vali e Asr Ave.,,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN CO.,,,,,,,,,,,,,,,,,,,Unit 2,No. 3,2nd Alley,Asad Abadi St.,Vali e asr St.,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN COMPANY,,,,,,,,,,,,,,,,,,,3,2nd St.,Assad Abadi Ave.,,Vali Asr Ave.,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN COMPANY,,,,,,,,,,,,,,,,,,,Flat 3,no. 3,2nd St.,asad Abadi Ave.,,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN COMPANY,,,,,,,,,,,,,,,,,,,G.T.B. Complex,,44th Km. of Kashan Delijan Rd.,,,Kashan,,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN COMPANY,,,,,,,,,,,,,,,,,,,Km 44 Kashan Delijan Rd.,,,,,Kashan,,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN COMPANY,,,,,,,,,,,,,,,,,,,Km 44th of Delijan Rd.,,,,,Kashan,87135,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN COMPANY,,,,,,,,,,,,,,,,,,,No. 3,2nd St.,Yousefabad Forked Rd.,Vali e Asr Ave.,,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN KASHAN COMPANY,,,,,,,,,,,,,,,,,,,Unit 2,No. 3,2nd Alley,Asad Abadi St.,Vali e asr St.,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN P.J.S KASHAN,,,,,,,,,,,,,,,,,,,3,2nd St.,Assad Abadi Ave.,,Vali Asr Ave.,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN P.J.S KASHAN,,,,,,,,,,,,,,,,,,,Flat 3,no. 3,2nd St.,asad Abadi Ave.,,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN P.J.S KASHAN,,,,,,,,,,,,,,,,,,,G.T.B. Complex,,44th Km. of Kashan Delijan Rd.,,,Kashan,,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN P.J.S KASHAN,,,,,,,,,,,,,,,,,,,Km 44 Kashan Delijan Rd.,,,,,Kashan,,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN P.J.S KASHAN,,,,,,,,,,,,,,,,,,,Km 44th of Delijan Rd.,,,,,Kashan,87135,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN P.J.S KASHAN,,,,,,,,,,,,,,,,,,,No. 3,2nd St.,Yousefabad Forked Rd.,Vali e Asr Ave.,,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGHTIRAN P.J.S KASHAN,,,,,,,,,,,,,,,,,,,Unit 2,No. 3,2nd Alley,Asad Abadi St.,Vali e asr St.,Tehran,14316,Iran,"(UK Sanctions List Ref):INU0122 (UK Statement of Reasons):Engineering firm that has procured equipment for Iran's heavy water research reactor (Phone number):(1) +98 21 88957487 (2) +98 21 88965964 (3) +98 21 8957487 (4) +98 21 8965964 (5) +98 21 8968587 (6) +98 3623362185 (7) +98 3623362186 (8) +98 866 4362185 (Website):www.farhang gostar.net/gtb, www.gtbir.com, www.taghtiran.ir (Email address):(1) www.farhang gostar.net/gtb (2) www.gtbir.com (3) www.taghtiran.ir (Email address): (1) gtb@farhanggostar.net (2) hnourib@yahoo.com (3) office@taghtiran.ir (4) taghtiran@gtbir.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11559 +TAGIEV,Fikhret,,,,,,,,,03/04/1962,Baku,Azerbaijan,Russia,,,,,Head of Matrosskaya Tishina Detention Facility,,,,,,,,,"(UK Sanctions List Ref):GHR0006 (UK Statement of Reasons):Fikret Tagiyev was the head of the Matrosskaya Tishina detention centre where Sergei Magnitsky died on 16 November 2009. He was responsible for the mistreatment of Sergei Magnitsky whilst in detention, which contributed significantly to his death including by failing to ensure the provision of adequate medical treatment, ordering the handcuffing and beating of Magnitsky shortly before his death and denying, or failing to provide, timely access for emergency services to provide treatment. Tagiyev was also involved in the concealment of evidence regarding the circumstances relating to Magnitsky’s death. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13859 +TAGIEV,Fikhret,Gabdulla,Ogly,,,,,,,03/04/1962,Baku,Azerbaijan,Russia,,,,,Head of Matrosskaya Tishina Detention Facility,,,,,,,,,"(UK Sanctions List Ref):GHR0006 (UK Statement of Reasons):Fikret Tagiyev was the head of the Matrosskaya Tishina detention centre where Sergei Magnitsky died on 16 November 2009. He was responsible for the mistreatment of Sergei Magnitsky whilst in detention, which contributed significantly to his death including by failing to ensure the provision of adequate medical treatment, ordering the handcuffing and beating of Magnitsky shortly before his death and denying, or failing to provide, timely access for emergency services to provide treatment. Tagiyev was also involved in the concealment of evidence regarding the circumstances relating to Magnitsky’s death. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13859 +TAGIEV,Fikret,,,,,,,,,03/04/1962,Baku,Azerbaijan,Russia,,,,,Head of Matrosskaya Tishina Detention Facility,,,,,,,,,"(UK Sanctions List Ref):GHR0006 (UK Statement of Reasons):Fikret Tagiyev was the head of the Matrosskaya Tishina detention centre where Sergei Magnitsky died on 16 November 2009. He was responsible for the mistreatment of Sergei Magnitsky whilst in detention, which contributed significantly to his death including by failing to ensure the provision of adequate medical treatment, ordering the handcuffing and beating of Magnitsky shortly before his death and denying, or failing to provide, timely access for emergency services to provide treatment. Tagiyev was also involved in the concealment of evidence regarding the circumstances relating to Magnitsky’s death. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13859 +TAGIYEV,Fikhret,,,,,,,,,03/04/1962,Baku,Azerbaijan,Russia,,,,,Head of Matrosskaya Tishina Detention Facility,,,,,,,,,"(UK Sanctions List Ref):GHR0006 (UK Statement of Reasons):Fikret Tagiyev was the head of the Matrosskaya Tishina detention centre where Sergei Magnitsky died on 16 November 2009. He was responsible for the mistreatment of Sergei Magnitsky whilst in detention, which contributed significantly to his death including by failing to ensure the provision of adequate medical treatment, ordering the handcuffing and beating of Magnitsky shortly before his death and denying, or failing to provide, timely access for emergency services to provide treatment. Tagiyev was also involved in the concealment of evidence regarding the circumstances relating to Magnitsky’s death. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13859 +TAGIYEV,Fikhret,Gabdulla,Ogly,,,,,,,03/04/1962,Baku,Azerbaijan,Russia,,,,,Head of Matrosskaya Tishina Detention Facility,,,,,,,,,"(UK Sanctions List Ref):GHR0006 (UK Statement of Reasons):Fikret Tagiyev was the head of the Matrosskaya Tishina detention centre where Sergei Magnitsky died on 16 November 2009. He was responsible for the mistreatment of Sergei Magnitsky whilst in detention, which contributed significantly to his death including by failing to ensure the provision of adequate medical treatment, ordering the handcuffing and beating of Magnitsky shortly before his death and denying, or failing to provide, timely access for emergency services to provide treatment. Tagiyev was also involved in the concealment of evidence regarding the circumstances relating to Magnitsky’s death. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13859 +TAGIYEV,Fikret,,,,,,Фикрет Тагиев,,,03/04/1962,Baku,Azerbaijan,Russia,,,,,Head of Matrosskaya Tishina Detention Facility,,,,,,,,,"(UK Sanctions List Ref):GHR0006 (UK Statement of Reasons):Fikret Tagiyev was the head of the Matrosskaya Tishina detention centre where Sergei Magnitsky died on 16 November 2009. He was responsible for the mistreatment of Sergei Magnitsky whilst in detention, which contributed significantly to his death including by failing to ensure the provision of adequate medical treatment, ordering the handcuffing and beating of Magnitsky shortly before his death and denying, or failing to provide, timely access for emergency services to provide treatment. Tagiyev was also involved in the concealment of evidence regarding the circumstances relating to Magnitsky’s death. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13859 +TAGUEV,Fikhret,,,,,,,,,03/04/1962,Baku,Azerbaijan,Russia,,,,,Head of Matrosskaya Tishina Detention Facility,,,,,,,,,"(UK Sanctions List Ref):GHR0006 (UK Statement of Reasons):Fikret Tagiyev was the head of the Matrosskaya Tishina detention centre where Sergei Magnitsky died on 16 November 2009. He was responsible for the mistreatment of Sergei Magnitsky whilst in detention, which contributed significantly to his death including by failing to ensure the provision of adequate medical treatment, ordering the handcuffing and beating of Magnitsky shortly before his death and denying, or failing to provide, timely access for emergency services to provide treatment. Tagiyev was also involved in the concealment of evidence regarding the circumstances relating to Magnitsky’s death. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13859 +TAGUEV,Fikhret,Gabdulla,Ogly,,,,,,,03/04/1962,Baku,Azerbaijan,Russia,,,,,Head of Matrosskaya Tishina Detention Facility,,,,,,,,,"(UK Sanctions List Ref):GHR0006 (UK Statement of Reasons):Fikret Tagiyev was the head of the Matrosskaya Tishina detention centre where Sergei Magnitsky died on 16 November 2009. He was responsible for the mistreatment of Sergei Magnitsky whilst in detention, which contributed significantly to his death including by failing to ensure the provision of adequate medical treatment, ordering the handcuffing and beating of Magnitsky shortly before his death and denying, or failing to provide, timely access for emergency services to provide treatment. Tagiyev was also involved in the concealment of evidence regarding the circumstances relating to Magnitsky’s death. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13859 +TAGUEV,Fikret,,,,,,,,,03/04/1962,Baku,Azerbaijan,Russia,,,,,Head of Matrosskaya Tishina Detention Facility,,,,,,,,,"(UK Sanctions List Ref):GHR0006 (UK Statement of Reasons):Fikret Tagiyev was the head of the Matrosskaya Tishina detention centre where Sergei Magnitsky died on 16 November 2009. He was responsible for the mistreatment of Sergei Magnitsky whilst in detention, which contributed significantly to his death including by failing to ensure the provision of adequate medical treatment, ordering the handcuffing and beating of Magnitsky shortly before his death and denying, or failing to provide, timely access for emergency services to provide treatment. Tagiyev was also involved in the concealment of evidence regarding the circumstances relating to Magnitsky’s death. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13859 +TAGWIREI,Kudakwashe,Regimond,,,,,,,,12/02/1969,Shurugwi,Zimbabwe,(1) South Africa. (2) Zimbabwe.,(1) EN183928. (2) FN920256. (3) VUK491921,(1) Zimbabwe. (2) Zimbabwe. (3) Canada.,29135894Z66,,,4 Luna Road,,,,Borrowdale,Harare,,Zimbabwe,"(UK Sanctions List Ref):GAC0023 (UK Statement of Reasons):Kudakwashe Regimond Tagwirei profited or otherwise benefitted from the misappropriation of property when his company, Sakunda Holdings, redeemed Government of Zimbabwe Treasury Bills at up to ten times their official value. This meant that Sakunda Holdings and Tagwirei, as its CEO and owner, profited significantly at the expense of macroeconomic stability in Zimbabwe. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,22/07/2021,22/07/2021,22/07/2021,14126 +TAHA,Abdul Rahman,S.,,,,,,,,10/04/1960,"Bloomington, Indiana",United States,United States,(1) 27082171 (2) MO887925,"(1) United States of America. Issued 21 June 1992 in Amman, Jordan (2) Iraq",156-92-9858,United States Social Security Number,,,,,,,,,,(UK Sanctions List Ref):AQD0107 (UN Ref):QDi.037 Abdul Rahman Yasin is in Iraq. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,7478 +TAHA,Taha,,,,,,,,,,,,,,,,,Site manager of the Latakia branch of the Political Security Directorate,,,,,,,,,(UK Sanctions List Ref):SYR0226 (UK Statement of Reasons):Site manager of the Latakia branch of the Political Security Directorate. Responsible for the torture of opponents in custody (Gender):Male,Individual,Primary name,,Syria,24/07/2012,31/12/2020,31/12/2020,12719 +TAHA,Mullah,,,,,,,,,00/00/1965,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +TAHA,Mullah,,,,,,,,,00/00/1966,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +TAHA,Mullah,,,,,,,,,00/00/1967,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +TAHA,Mullah,,,,,,,,,00/00/1968,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +TAHA,Mullah,,,,,,,,,00/00/1969,Tall 'Afar,Iraq,Iraq,,,,,,Prison in Iraq,,,,,,,,"(UK Sanctions List Ref):AQD0186 (UN Ref):QDi.420 Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee, which exercises administrative control of ISIL's affairs. In custody of Iraq since 2019. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,20/11/2018,19/11/2018,14/06/2022,13720 +TAHARI,Rabah,,,,,,,,,28/08/1971,Oran,Algeria,Algeria,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):CTI0020 (UK Statement of Reasons):Rabah Tahari has been the leader of Kateeba Al Kawthar (KaK), a terrorist organisation linked to Al Qaida, since 2013. Tahari has travelled for the purposes of terrorism and is accused of recruiting and training foreign terrorist fighters. (Gender):Male",Individual,Primary name,,Counter-Terrorism (International),16/07/2018,31/12/2020,31/12/2020,13697 +TAHER,Abdul Rahman,S,,,,,,,,10/04/1960,"Bloomington, Indiana",United States,United States,(1) 27082171 (2) MO887925,"(1) United States of America. Issued 21 June 1992 in Amman, Jordan (2) Iraq",156-92-9858,United States Social Security Number,,,,,,,,,,(UK Sanctions List Ref):AQD0107 (UN Ref):QDi.037 Abdul Rahman Yasin is in Iraq. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,7478 +TAHER,Khodr,Ali,,,,,خضر علي طاهر,,,00/00/1976,,,Syria,,,,,Director and owner of Ella Tours,,,,,,,,,"(UK Sanctions List Ref):SYR0357 Linked to Citadel for Protection, Guard and Security Services (Castle Security and protection) ; Ematel LLC (Ematel Communications) ; Syrian Hotel Management Company ; Jasmine Contractinc Company (UK Statement of Reasons):Leading businessperson operating across multiple sectors of the Syrian economy, including private security, mobile phone retail, hotel management, advertising services, and domestic money transfer. Supports and benefits from the regime through cooperation in his business activities and his involvement in smuggling and profiteering activities. Khodr Ali Taher owns a number of companies and has co-funded others. His involvement in business dealings with the regime, includes entering into a joint venture with the Syrian Transport and Tourism Company, of which the Ministry of Tourism owns a two-thirds stake. (Gender):Male",Individual,Primary name,,Syria,17/02/2020,31/12/2020,16/06/2022,13820 +TAHERI,Ahmad,,,,,,,,,,,,Iran,,,,,Former Police Commander of Sistan and Baluchestan,,,,,,,,,"(UK Sanctions List Ref):IHR0093 (UK Statement of Reasons):General Ahmad TAHERI is an involved person under the Iran (Sanctions) (Human Rights) (EU Exit) Regulations 2019 because: he has been involved in the commission of serious human rights violations in Iran, namely being responsible for, engaging in, providing support for and promoting serious violations with respect to the right to life and the right to freedom of expression and peaceful assembly in Iran through his role as the former police chief in the province of Sistan and Baluchestan and in the suppression of protests. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15613 +TAHIR,Muhammad,Khalil,Mustafa,al-Bayati,,,,,,00/00/1959,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +TAHIR,Muhammad,Khalil,Mustafa,al-Bayati,,,,,,00/00/1957,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +TAHMAESEBI,Ali,Akbar,,,,,,,,00/00/1967,,,Iran,(1) 9003213 (2) 6620505,,,,"Member of the IRGC Qods Force operating under the direction of Qods Force Commander, Major General Qasem Soleimani who was designated by the UN Security Council in resolution 1747 (2007) (designated under IRi.039).",,,,,,,,,"(UK Sanctions List Ref):INU0195 (UN Ref):IRi.041 Facilitated a breach of paragraph 5 of resolution 1747 (2007) prohibiting the export of arms and related materiel from Iran. [Old Reference # I.AC.50.18.04.12.(2)] (UK Statement of Reasons):As a member of the IRGC Qods Force, Ali Akbar TABATABAEI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) EU Exit Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),02/12/2011,18/04/2012,04/03/2022,12276 +TAHMAESEBI,Sayed,Akbar,,,,,,,,00/00/1967,,,Iran,(1) 9003213 (2) 6620505,,,,"Member of the IRGC Qods Force operating under the direction of Qods Force Commander, Major General Qasem Soleimani who was designated by the UN Security Council in resolution 1747 (2007) (designated under IRi.039).",,,,,,,,,"(UK Sanctions List Ref):INU0195 (UN Ref):IRi.041 Facilitated a breach of paragraph 5 of resolution 1747 (2007) prohibiting the export of arms and related materiel from Iran. [Old Reference # I.AC.50.18.04.12.(2)] (UK Statement of Reasons):As a member of the IRGC Qods Force, Ali Akbar TABATABAEI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) EU Exit Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),02/12/2011,18/04/2012,04/03/2022,12276 +TAHMAESEBI,Syed,Akber,,,,,,,,00/00/1967,,,Iran,(1) 9003213 (2) 6620505,,,,"Member of the IRGC Qods Force operating under the direction of Qods Force Commander, Major General Qasem Soleimani who was designated by the UN Security Council in resolution 1747 (2007) (designated under IRi.039).",,,,,,,,,"(UK Sanctions List Ref):INU0195 (UN Ref):IRi.041 Facilitated a breach of paragraph 5 of resolution 1747 (2007) prohibiting the export of arms and related materiel from Iran. [Old Reference # I.AC.50.18.04.12.(2)] (UK Statement of Reasons):As a member of the IRGC Qods Force, Ali Akbar TABATABAEI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) EU Exit Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),02/12/2011,18/04/2012,04/03/2022,12276 +TAHRIR AL-SHAM HAY'AT,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +TAHRIR AL-SHAM HAY'AT,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +TAIBAH INTERNATIONAL AID AGENCY,,,,,,,,,,,,,,,,,,,26 Tabhanska Street,,,,,Visoko,,Bosnia and Herzegovina,"(UK Sanctions List Ref):AQD0078 (UN Ref):QDe.108 In 2002-2004, Taibah International – Bosnia offices used premises of the Culture Home in Hadzici, Sarajevo, Bosnia and Herzegovina. The organization was officially registered in Bosnia and Herzegovina as a branch of Taibah International Aid Association under registry number 7. Taibah International – Bosnia offices ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-70/03). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235580",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,31/12/2020,8362 +TAIBAH INTERNATIONAL AID AGENCY,,,,,,,,,,,,,,,,,,,3 Velika Cilna Ulica,,,,,Visoko,,Bosnia and Herzegovina,"(UK Sanctions List Ref):AQD0078 (UN Ref):QDe.108 In 2002-2004, Taibah International – Bosnia offices used premises of the Culture Home in Hadzici, Sarajevo, Bosnia and Herzegovina. The organization was officially registered in Bosnia and Herzegovina as a branch of Taibah International Aid Association under registry number 7. Taibah International – Bosnia offices ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-70/03). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235580",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,31/12/2020,8362 +TAIBAH INTERNATIONAL AID AGENCY,,,,,,,,,,,,,,,,,,,6 Avde Smajlovica Street,,,,,Novo Sarajevo,,Bosnia and Herzegovina,"(UK Sanctions List Ref):AQD0078 (UN Ref):QDe.108 In 2002-2004, Taibah International – Bosnia offices used premises of the Culture Home in Hadzici, Sarajevo, Bosnia and Herzegovina. The organization was officially registered in Bosnia and Herzegovina as a branch of Taibah International Aid Association under registry number 7. Taibah International – Bosnia offices ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-70/03). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235580",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,31/12/2020,8362 +TAIBAH INTERNATIONAL AID ASSOCIATION,,,,,,,,,,,,,,,,,,,26 Tabhanska Street,,,,,Visoko,,Bosnia and Herzegovina,"(UK Sanctions List Ref):AQD0078 (UN Ref):QDe.108 In 2002-2004, Taibah International – Bosnia offices used premises of the Culture Home in Hadzici, Sarajevo, Bosnia and Herzegovina. The organization was officially registered in Bosnia and Herzegovina as a branch of Taibah International Aid Association under registry number 7. Taibah International – Bosnia offices ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-70/03). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235580",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,31/12/2020,8362 +TAIBAH INTERNATIONAL AID ASSOCIATION,,,,,,,,,,,,,,,,,,,3 Velika Cilna Ulica,,,,,Visoko,,Bosnia and Herzegovina,"(UK Sanctions List Ref):AQD0078 (UN Ref):QDe.108 In 2002-2004, Taibah International – Bosnia offices used premises of the Culture Home in Hadzici, Sarajevo, Bosnia and Herzegovina. The organization was officially registered in Bosnia and Herzegovina as a branch of Taibah International Aid Association under registry number 7. Taibah International – Bosnia offices ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-70/03). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235580",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,31/12/2020,8362 +TAIBAH INTERNATIONAL AID ASSOCIATION,,,,,,,,,,,,,,,,,,,6 Avde Smajlovica Street,,,,,Novo Sarajevo,,Bosnia and Herzegovina,"(UK Sanctions List Ref):AQD0078 (UN Ref):QDe.108 In 2002-2004, Taibah International – Bosnia offices used premises of the Culture Home in Hadzici, Sarajevo, Bosnia and Herzegovina. The organization was officially registered in Bosnia and Herzegovina as a branch of Taibah International Aid Association under registry number 7. Taibah International – Bosnia offices ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-70/03). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235580",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,31/12/2020,8362 +TAIBAH INTERNATIONAL AIDE ASSOCIATION,,,,,,,,,,,,,,,,,,,26 Tabhanska Street,,,,,Visoko,,Bosnia and Herzegovina,"(UK Sanctions List Ref):AQD0078 (UN Ref):QDe.108 In 2002-2004, Taibah International – Bosnia offices used premises of the Culture Home in Hadzici, Sarajevo, Bosnia and Herzegovina. The organization was officially registered in Bosnia and Herzegovina as a branch of Taibah International Aid Association under registry number 7. Taibah International – Bosnia offices ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-70/03). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235580",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,31/12/2020,8362 +TAIBAH INTERNATIONAL AIDE ASSOCIATION,,,,,,,,,,,,,,,,,,,3 Velika Cilna Ulica,,,,,Visoko,,Bosnia and Herzegovina,"(UK Sanctions List Ref):AQD0078 (UN Ref):QDe.108 In 2002-2004, Taibah International – Bosnia offices used premises of the Culture Home in Hadzici, Sarajevo, Bosnia and Herzegovina. The organization was officially registered in Bosnia and Herzegovina as a branch of Taibah International Aid Association under registry number 7. Taibah International – Bosnia offices ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-70/03). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235580",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,31/12/2020,8362 +TAIBAH INTERNATIONAL AIDE ASSOCIATION,,,,,,,,,,,,,,,,,,,6 Avde Smajlovica Street,,,,,Novo Sarajevo,,Bosnia and Herzegovina,"(UK Sanctions List Ref):AQD0078 (UN Ref):QDe.108 In 2002-2004, Taibah International – Bosnia offices used premises of the Culture Home in Hadzici, Sarajevo, Bosnia and Herzegovina. The organization was officially registered in Bosnia and Herzegovina as a branch of Taibah International Aid Association under registry number 7. Taibah International – Bosnia offices ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-70/03). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235580",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,31/12/2020,8362 +TAIBAH INTERNATIONAL-BOSNIA OFFICES,,,,,,,,,,,,,,,,,,,26 Tabhanska Street,,,,,Visoko,,Bosnia and Herzegovina,"(UK Sanctions List Ref):AQD0078 (UN Ref):QDe.108 In 2002-2004, Taibah International – Bosnia offices used premises of the Culture Home in Hadzici, Sarajevo, Bosnia and Herzegovina. The organization was officially registered in Bosnia and Herzegovina as a branch of Taibah International Aid Association under registry number 7. Taibah International – Bosnia offices ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-70/03). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235580",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,31/12/2020,8362 +TAIBAH INTERNATIONAL-BOSNIA OFFICES,,,,,,,,,,,,,,,,,,,3 Velika Cilna Ulica,,,,,Visoko,,Bosnia and Herzegovina,"(UK Sanctions List Ref):AQD0078 (UN Ref):QDe.108 In 2002-2004, Taibah International – Bosnia offices used premises of the Culture Home in Hadzici, Sarajevo, Bosnia and Herzegovina. The organization was officially registered in Bosnia and Herzegovina as a branch of Taibah International Aid Association under registry number 7. Taibah International – Bosnia offices ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-70/03). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235580",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,31/12/2020,8362 +TAIBAH INTERNATIONAL-BOSNIA OFFICES,,,,,,,,,,,,,,,,,,,6 Avde Smajlovica Street,,,,,Novo Sarajevo,,Bosnia and Herzegovina,"(UK Sanctions List Ref):AQD0078 (UN Ref):QDe.108 In 2002-2004, Taibah International – Bosnia offices used premises of the Culture Home in Hadzici, Sarajevo, Bosnia and Herzegovina. The organization was officially registered in Bosnia and Herzegovina as a branch of Taibah International Aid Association under registry number 7. Taibah International – Bosnia offices ceased its work by decision of the Ministry of Justice of the Bosnia and Herzegovina Federation (decision on cessation of operation number 03-05-2-70/03). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235580",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,14/05/2004,11/05/2004,31/12/2020,8362 +TAIYO II,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0110 Pursuant to paragraphs 8(d) of Security Council resolution 1718 (2006) and 12 of Security Council resolution 2270 (2016) as economic resources of designated entities. DPRK cargo vessel M/V HAP JANG GANG 6 is owned by Hapjanggang Shipping Corp and is believed to have been involved in illicit transfers of prohibited DPRK goods. Listed as asset of Hapjanggang Shipping Corp, (OFSI ID: 13629, UN Reference Number: UN Ref KPe.058) (IMO number):9066540 (Current owners):Hapjanggang Shipping Corp (Flag of ship):North Korea (Previous flags):Cambodia (Type of ship):General Cargo / Multi Purpose (Tonnage of ship):1497 (Length of ship):75 (Year built):1993",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13661 +TAJHIZ SANAT,,,,,,,,,,,,,,,,,,,1139/1 Unit 104 Gol Building,Gol Alley,North Side of Sae,Vali Asr Avenue,PO Box 19395-6439,Tehran,,,(UK Sanctions List Ref):INU0087 (UK Statement of Reasons):Has been involved in purchasing equipment and materials which have direct applications in the Iranian nuclear programme. (Phone number):(1) +98 21 2226 2312 (2) 98 21 22 92 29 74 (Website):(1) www.karanir.com (2) www.iranyell.com/company/16170/KARANIR_CO,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12257 +TAKFIRI,Abu,Umr,,,,,,,,30/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +TAKFIRI,Abu,Umr,,,,,,,,13/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +TAKHARI,ABDUL RAQIB,,,,,Maulavi,عبدالرقیب تخاری,,,00/00/1968,"Zardalu Darra village, Kalafgan District, Takhar Province",Afghanistan,Afghanistan,,,,,Minister of Repatriation under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0058 (UN Ref):TAi.075 Member of Taliban Supreme Council responsible for Takhar and Badakhshan provinces as at Dec. 2009. Confirmed killed on 17 February in Peshawar, Pakistan and buried in Takhar Province, Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,11/02/2022,7480 +TAKHARI,ABDUL RAQIB,,,,,Maulavi,عبدالرقیب تخاری,,,00/00/1969,"Zardalu Darra village, Kalafgan District, Takhar Province",Afghanistan,Afghanistan,,,,,Minister of Repatriation under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0058 (UN Ref):TAi.075 Member of Taliban Supreme Council responsible for Takhar and Badakhshan provinces as at Dec. 2009. Confirmed killed on 17 February in Peshawar, Pakistan and buried in Takhar Province, Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,11/02/2022,7480 +TAKHARI,ABDUL RAQIB,,,,,Maulavi,عبدالرقیب تخاری,,,00/00/1970,"Zardalu Darra village, Kalafgan District, Takhar Province",Afghanistan,Afghanistan,,,,,Minister of Repatriation under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0058 (UN Ref):TAi.075 Member of Taliban Supreme Council responsible for Takhar and Badakhshan provinces as at Dec. 2009. Confirmed killed on 17 February in Peshawar, Pakistan and buried in Takhar Province, Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,11/02/2022,7480 +TAKHARI,ABDUL RAQIB,,,,,Maulavi,عبدالرقیب تخاری,,,00/00/1971,"Zardalu Darra village, Kalafgan District, Takhar Province",Afghanistan,Afghanistan,,,,,Minister of Repatriation under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0058 (UN Ref):TAi.075 Member of Taliban Supreme Council responsible for Takhar and Badakhshan provinces as at Dec. 2009. Confirmed killed on 17 February in Peshawar, Pakistan and buried in Takhar Province, Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,11/02/2022,7480 +TAKHARI,ABDUL RAQIB,,,,,Maulavi,عبدالرقیب تخاری,,,00/00/1972,"Zardalu Darra village, Kalafgan District, Takhar Province",Afghanistan,Afghanistan,,,,,Minister of Repatriation under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0058 (UN Ref):TAi.075 Member of Taliban Supreme Council responsible for Takhar and Badakhshan provinces as at Dec. 2009. Confirmed killed on 17 February in Peshawar, Pakistan and buried in Takhar Province, Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,11/02/2022,7480 +TAKHARI,ABDUL RAQIB,,,,,Maulavi,عبدالرقیب تخاری,,,00/00/1973,"Zardalu Darra village, Kalafgan District, Takhar Province",Afghanistan,Afghanistan,,,,,Minister of Repatriation under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0058 (UN Ref):TAi.075 Member of Taliban Supreme Council responsible for Takhar and Badakhshan provinces as at Dec. 2009. Confirmed killed on 17 February in Peshawar, Pakistan and buried in Takhar Province, Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,11/02/2022,7480 +TALA,Hossein,,,,,,,,,00/00/1969,Tehran,Iran,,,,,,(1) Former Mayor of Eslamshahr (2) Former Iranian MP (3) Former Governor-General ('Farmandar') of Tehran Province,,,,,,,,,"(UK Sanctions List Ref):IHR0042 (UK Statement of Reasons):Former Governor-General (‘Farmandar’) of Tehran Province until September 2010, he was responsible for the intervention of police forces and therefore for the repression of demonstrations. He received a prize in December 2010 for his role in the post-election repression. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,16/02/2022,12194 +TALA I JUND AL-KHILAFAH,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0376 (UN Ref):QDe.167 Formed in November 2014. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). (Type of entity):Terrorist organisation",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/01/2022,29/12/2021,12/01/2022,14171 +TALABAYEVA,Lyudmila,Zaumovna,,,,,Людмила Заумовна ТАЛАБАЕВА,,,06/06/1957,Krasnoarmeysky District,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0961 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14912 +TALAS,Anas,,,,,,,,,25/03/1971,,,Syria,,,,,Chairman of the Talas Group,,,,,,,,,"(UK Sanctions List Ref):SYR0257 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy. Through his business activities and investments, Anas Talas also benefits from and/or supports the Syrian regime. In 2018 the Talas Group, chaired by Anas Talas, entered into a SYP 23 billion joint venture with Damascus Cham Holding for the construction of Marota City, a regime-backed luxury residential and commercial development. (Gender):Male",Individual,Primary name,,Syria,22/01/2019,31/12/2020,31/12/2020,13752 +TALENGELANIMIRO,,,,,,,,,,00/00/1965,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +TALENGELANIMIRO,,,,,,,,,,01/01/1964,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +TALENGELANIMIRO,Musezi,,,,,,,,,00/00/1965,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +TALENGELANIMIRO,Musezi,,,,,,,,,01/01/1964,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +TALHA,,,,,,,,,,04/11/1978,Bayburt,Turkey,Turkey,TR-P 614 166,Turkish). Issued by the turkish Consulate General in Frankfurt/M on 22 March 2006. Expired on 15 September 2009.,,,,,,,,,,,Germany,"(UK Sanctions List Ref):AQD0120 (UN Ref):QDi.261 Associated with the Islamic Jihad Union (IJU), also known as the Islamic Jihad Group (QDe.119). Associated with Fritz Martin Gelowicz (QDi.259). In detention in Germany as of Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. In prison since Sep. 2007.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/10/2008,27/10/2008,31/12/2020,10752 +TALHA,,,,,,,,,,04/11/1978,Bayburt,Turkey,Turkey,TR-P 614 166,Turkish). Issued by the turkish Consulate General in Frankfurt/M on 22 March 2006. Expired on 15 September 2009.,,,,Südliche Ringstrasse 133,,,,,Langen,63225,Germany,"(UK Sanctions List Ref):AQD0120 (UN Ref):QDi.261 Associated with the Islamic Jihad Union (IJU), also known as the Islamic Jihad Group (QDe.119). Associated with Fritz Martin Gelowicz (QDi.259). In detention in Germany as of Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. In prison since Sep. 2007.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,29/10/2008,27/10/2008,31/12/2020,10752 +TALHA,Ustad,,,,,,,,,00/00/1977,"Chak number 36/DNB, Rajkan, Madina Colony, Bahawalpur District, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0224 (UN Ref):QDi.296 Physical description: 5 feet 2 inches; 157,4 cm. Name of father: Ali Muhammad. Mati ur-Rehman is the chief operational commander of Lashkar i Jhangvi (LJ) (QDe.096). Associated with Harakat-ul Jihad Islami (QDe.130). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4674457",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,02/09/2011,22/08/2011,31/12/2020,12038 +TALLEH,Abu,Malek,El,,,,,,,17/08/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,Arsal,Bekaa,,Lebanon,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +TALLEH,Abu,Malek,El,,,,,,,17/08/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +TALLEH,Abu,Malek,El,,,,,,,01/01/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +TALLEH,Abu,Malek,El,,,,,,,01/01/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,Arsal,Bekaa,,Lebanon,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +TALOUS,Anas,,,,,,,,,25/03/1971,,,Syria,,,,,Chairman of the Talas Group,,,,,,,,,"(UK Sanctions List Ref):SYR0257 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy. Through his business activities and investments, Anas Talas also benefits from and/or supports the Syrian regime. In 2018 the Talas Group, chaired by Anas Talas, entered into a SYP 23 billion joint venture with Damascus Cham Holding for the construction of Marota City, a regime-backed luxury residential and commercial development. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13752 +TAMADDON,Morteza,,,,,,,,,00/00/1959,Shahr Kord,Iran,,,,,,(1) Board member at Khajeh Nasireddin Tusi University of Technology (2) Former Head of Tehran provincial Public Security Council (3) Former IRGC Governor-General of Tehran Province,,,,,,,,,"(UK Sanctions List Ref):IHR0067 (UK Statement of Reasons):Former Head of Tehran Provincial Public Security Council. Former IRGC Governor-General of Tehran Province. In his capacity as governor and head of Tehran provincial Public Security Council, he bore overall responsibility for all repressive activities undertaken by the IRGC in Tehran province, including cracking down on political protests since June 2009. Currently board member at Khajeh Nasireddin Tusi University of Technology. (Gender):Male",Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,16/06/2022,12195 +TAMADON,Morteza,,,,,,,,,00/00/1959,Shahr Kord,Iran,,,,,,(1) Board member at Khajeh Nasireddin Tusi University of Technology (2) Former Head of Tehran provincial Public Security Council (3) Former IRGC Governor-General of Tehran Province,,,,,,,,,"(UK Sanctions List Ref):IHR0067 (UK Statement of Reasons):Former Head of Tehran Provincial Public Security Council. Former IRGC Governor-General of Tehran Province. In his capacity as governor and head of Tehran provincial Public Security Council, he bore overall responsibility for all repressive activities undertaken by the IRGC in Tehran province, including cracking down on political protests since June 2009. Currently board member at Khajeh Nasireddin Tusi University of Technology. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),12/10/2011,31/12/2020,16/06/2022,12195 +TAMBOV,,,,,,,,,,07/01/1967,"Michurinsk, Tambov oblast",Russia,Russia,,,,,(1) Former so-called 'Commander in Chief of the People's Militia of the Luhansk People's Republic' (2) Former Commander of 8th Army of the Russian Armed Force,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0105 (UK Statement of Reasons):Former so-called Commander in Chief of the People’s Militia of the ‘Lugansk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Former Commander of 8th Army of the Russian Armed Force. Chief of Staff and First Deputy Commander of the Russian Southern Military District. (Gender):Male",Individual,AKA,,Russia,16/02/2015,31/12/2020,31/12/2020,13206 +TAMBOVTSEV,Andrei,Mikhaylovich,,,,,ТАМБОВЦЕВ Андрей Михайлович,Cyrillic,Russian,06/08/1986,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1300 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15252 +TAMBOVTSEV,Andrey,Mikhailovich,,,,,,,,06/08/1986,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1300 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15252 +TAMNDA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0108 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK cargo vessel M/V WOORY STAR is believed to have been involved in illicit transfers of prohibited DPRK goods. Listed as asset of Phyongchon Shipping & Marine (OFSI ID: 13641, UN Reference Number: UN Ref KPe.070) (IMO number):8408595 (Current owners):Phyongchon Shipping & Marine (Flag of ship):North Korea (Type of ship):General Cargo / Multi Purpose (Tonnage of ship):3154 (Length of ship):89 (Year built):1984",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13659 +TAMTOMO,Anggih,,,,,,,,,06/09/1983,(1) Surakarta (2) Pekalongan,(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,Aleppo,,Syria,"(UK Sanctions List Ref):AQD0259 (UN Ref):QDi.404 Syrian-based Indonesian national who has served in a variety of roles supporting the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116575",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13515 +TAMTOMO,Anggih,,,,,,,,,06/09/1983,(1) Surakarta (2) Pekalongan,(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0259 (UN Ref):QDi.404 Syrian-based Indonesian national who has served in a variety of roles supporting the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116575",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13515 +TAMTOMO,Muhammad,Bahrum,Naim,ANGGITH,,,,,,06/09/1983,(1) Surakarta (2) Pekalongan,(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,Aleppo,,Syria,"(UK Sanctions List Ref):AQD0259 (UN Ref):QDi.404 Syrian-based Indonesian national who has served in a variety of roles supporting the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116575",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13515 +TAMTOMO,Muhammad,Bahrum,Naim,ANGGITH,,,,,,06/09/1983,(1) Surakarta (2) Pekalongan,(1) Indonesia (2) Indonesia,Indonesia,,,,,,,,,,,Raqqa,,Syria,"(UK Sanctions List Ref):AQD0259 (UN Ref):QDi.404 Syrian-based Indonesian national who has served in a variety of roles supporting the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/6116575",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13515 +TANCHON COMMERCIAL BANK,,,,,,,,,,,,,,,,,,,Saemul 1-Dong,,,,Pyongchon District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0195 (UN Ref):KPe.003 Main DPRK financial entity for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons.",Entity,Primary name,,Democratic People's Republic of Korea,27/04/2009,24/04/2009,31/12/2020,10894 +TANGO DEUX,,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,AKA,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +TANGO FORT,,,,,,,,,,28/05/1964,Malela,Congo (Democratic Republic),Congo (Democratic Republic),,,1-64-87-77512-30,Military,"Former Deputy Chief of Staff of the Congolese Armed Forces (FARDC), with responsibility for operations and intelligence",22,avenue Mbsenseke,,Ma Campagne,Ngaliema,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0002 (UK Statement of Reasons):As Commander of the 1st Defence Zone of Congolese Army (FARDC) Gabriel KUMBA was officially responsible for FARDC forces who took part in the disproportionate use of force and violent repression in September 2016 in Kinshasa. In this capacity, Gabriel KUMBA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC. There are reasonable grounds to conclude that KUMBA was an “involved person” given that matters within reg (6)(2) occurred within the territory (First Defence Zone) for which he was the FARDC Commander and thus bore responsibility for.  (Gender):Male",Individual,AKA,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13433 +TANGO FOUR,,,,,,,,,,28/05/1964,Malela,Congo (Democratic Republic),Congo (Democratic Republic),,,1-64-87-77512-30,Military,"Former Deputy Chief of Staff of the Congolese Armed Forces (FARDC), with responsibility for operations and intelligence",22,avenue Mbsenseke,,Ma Campagne,Ngaliema,Kinshasa,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0002 (UK Statement of Reasons):As Commander of the 1st Defence Zone of Congolese Army (FARDC) Gabriel KUMBA was officially responsible for FARDC forces who took part in the disproportionate use of force and violent repression in September 2016 in Kinshasa. In this capacity, Gabriel KUMBA was therefore involved in planning, directing, or committing acts that constitute serious human rights violations and abuses in DRC. There are reasonable grounds to conclude that KUMBA was an “involved person” given that matters within reg (6)(2) occurred within the territory (First Defence Zone) for which he was the FARDC Commander and thus bore responsibility for.  (Gender):Male",Individual,AKA,,Democratic Republic of the Congo,12/12/2016,31/12/2020,03/03/2022,13433 +TANGO TANGO,,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,AKA,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +TANGO TWO,,,,,,,,,,00/00/1964,Hauts-Plateaux,Congo (Democratic Republic),Congo (Democratic Republic),(1) OB0814241 (2) OB0814241,,(1) 1-64-09-51400-67. (2) 414659/K,,,,,,,,Mbuji-Mayi with unit 21 Military Region,,,"(UK Sanctions List Ref):DRC0014 (UK Statement of Reasons):As former Deputy Commander of the 21st Military region, Eric RUHORIMBERE is responsible for the disproportionate use of force and extra judicial killings perpetrated by FARDC (Armed Forces of the Democratic Republic of Congo), notably against the Nsapu militia and women and children. As Deputy Commander of the FARDC forces which carried out the abuses Eric RUHORIMBERE is therefore responsible for acts that constitute serious human rights violations and abuses in DRC. (Gender):Male",Individual,AKA,,Democratic Republic of the Congo,30/05/2017,31/12/2020,03/03/2022,13465 +TANTOUCHE,Ibrahim,Abubaker,,,,,,,,02/02/1966,al Aziziyya,Libya,Libya,(1) 203037 (2) 347834(3) 434021161,(1) Libyan. Issued in Tripoli. (2) Libyan. Issued under name Ibrahim Ali Tantoush. Expired on 21 February 2014 (3) South African. Related to alias Abdel Ilah Sabri. Confiscated.,6910275240086,South African. Related to alias Abdel Ilah Sabri. Confiscated.,,,,,,,Tripoli,,Libya,"(UK Sanctions List Ref):AQD0197 (UN Ref):QDi.057 Associated with Afghan Support Committee (ASC) (QDe.069), Revival of Islamic Heritage Society (RIHS)(QDe.070) and the Libyan Islamic Fighting Group (LIFG) (QDe.011). Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446790. Tripoli as at Feb. 2014",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6927 +TANTOUSH,Ibrahim,Abubaker,,,,,,,,02/02/1966,al Aziziyya,Libya,Libya,(1) 203037 (2) 347834(3) 434021161,(1) Libyan. Issued in Tripoli. (2) Libyan. Issued under name Ibrahim Ali Tantoush. Expired on 21 February 2014 (3) South African. Related to alias Abdel Ilah Sabri. Confiscated.,6910275240086,South African. Related to alias Abdel Ilah Sabri. Confiscated.,,,,,,,Tripoli,,Libya,"(UK Sanctions List Ref):AQD0197 (UN Ref):QDi.057 Associated with Afghan Support Committee (ASC) (QDe.069), Revival of Islamic Heritage Society (RIHS)(QDe.070) and the Libyan Islamic Fighting Group (LIFG) (QDe.011). Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446790. Tripoli as at Feb. 2014",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6927 +TANTOUSH,IBRAHIM,ALI,ABU BAKR,,,,ابراهيم علي أبو بكر تنتوش,,,02/02/1966,al Aziziyya,Libya,Libya,(1) 203037 (2) 347834(3) 434021161,(1) Libyan. Issued in Tripoli. (2) Libyan. Issued under name Ibrahim Ali Tantoush. Expired on 21 February 2014 (3) South African. Related to alias Abdel Ilah Sabri. Confiscated.,6910275240086,South African. Related to alias Abdel Ilah Sabri. Confiscated.,,,,,,,Tripoli,,Libya,"(UK Sanctions List Ref):AQD0197 (UN Ref):QDi.057 Associated with Afghan Support Committee (ASC) (QDe.069), Revival of Islamic Heritage Society (RIHS)(QDe.070) and the Libyan Islamic Fighting Group (LIFG) (QDe.011). Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446790. Tripoli as at Feb. 2014",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,11/01/2002,11/01/2002,31/12/2020,6927 +TANZEEM QA’IDAT AL JIHAD/BILAD AL RAAFIDAINI,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +TANZIM QA’IDAT AL-JIHAD FI BILAD AL-RAFIDAYN,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +TANZIM QA'IDAT AL-JIHAD FI JAZIRAT AL-ARAB,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0029 (UN Ref):QDe.129 AQAP is a regional affiliate of Al-Qaida (QDe.004) and an armed group operating primarily in Arabian Peninsula. Location: Yemen. Alternative location: Saudi Arabia (2004 – 2006). Formed in Jan. 2009 when Al-Qaida in Yemen combined with Saudi Arabian Al-Qaida operatives. Leader of AQAP is Qasim Mohamed Mahdi Al-Rimi (QDi.282). Ansar al-Shari’a was formed in early 2011 by AQAP and has taken responsibility for multiple attacks in Yemen against both government and civilian targets. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282104,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,20/01/2010,19/01/2010,12/01/2022,11044 +TARAKANOV,Pavel,Vladimirovich,,,,,Павел Владимирович ТАРАКАНОВ,,,21/06/1982,Chisinau,Moldova,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0925 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14876 +TARASENKO,Mikhail,Vasilievich,,,,,Михаил Васильевич Тарасенко,,,21/11/1947,"Tagantog, Rostov",Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0650 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14595 +TARBAEV,Sangadzhi,Andreevich,,,,,Сангаджи Андреевич ТАРБАЕВ,,,15/04/1982,Elista,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0502 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14447 +TARHUNA 7TH BRIGADE,,,,,,,,,,,,,,,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0074 (UK Statement of Reasons):The al-Kaniyat milita is designated on the basis that there are reasonable grounds to suspect that the militia has committed serious human rights abuses and committed violations of international humanitarian law. There are reasonable grounds to suspect that the al-Kaniyat militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tahouna. There are reasonable grounds to suspect that the militia has been involved in activities that threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country.",Entity,AKA,,Libya,13/05/2021,07/05/2021,13/05/2021,14107 +TARHUNA BRIGADE,,,,,,,,,,,,,,,,,,,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0074 (UK Statement of Reasons):The al-Kaniyat milita is designated on the basis that there are reasonable grounds to suspect that the militia has committed serious human rights abuses and committed violations of international humanitarian law. There are reasonable grounds to suspect that the al-Kaniyat militia was responsible for enforced disappearances, torture and killings which resulted in eight mass graves being uncovered in Tahouna. There are reasonable grounds to suspect that the militia has been involved in activities that threatened the peace, stability, and security of Libya and undermined its transition to a democratic, peaceful and independent country.",Entity,AKA,,Libya,13/05/2021,07/05/2021,13/05/2021,14107 +TARIQ,,,,,,,,,,00/00/1977,"Chak number 36/DNB, Rajkan, Madina Colony, Bahawalpur District, Punjab Province",Pakistan,Pakistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0224 (UN Ref):QDi.296 Physical description: 5 feet 2 inches; 157,4 cm. Name of father: Ali Muhammad. Mati ur-Rehman is the chief operational commander of Lashkar i Jhangvi (LJ) (QDe.096). Associated with Harakat-ul Jihad Islami (QDe.130). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4674457",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,02/09/2011,22/08/2011,31/12/2020,12038 +TARIQ AFRIDI GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +TARIQ AFRIDI GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +TARIQ GEEDAR GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +TARIQ GEEDAR GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +TARIQ GIDAR AFRIDI GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +TARIQ GIDAR AFRIDI GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +TARIQ GIDAR GROUP (TGG),,,,,,,طارق گیدڑ گروپ,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +TARIQ GIDAR GROUP (TGG),,,,,,,طارق گیدڑ گروپ,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +TASH,Hoseini,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0004 (UK Statement of Reasons):Member of the IRGC. Member of the Supreme National Security Council and involved in formulating policy on nuclear issues. Former Deputy Minister of Defence (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10637 +TASHKENT,Sasha,,,,,,,,,21/09/1964,"Nevinnomyssk, Stavropol Krai",Russia,Ukraine,,,,,Minister of Budget,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0143 (UK Statement of Reasons):Former so-called ‘Minister of Finance and Taxes’ of the ‘Donetsk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Dismissed as so-called ‘Minister of Finance and Taxes’ in September 2018. (Gender):Male",Individual,AKA,,Russia,16/02/2015,31/12/2020,16/09/2022,13208 +TATARCHENKO,Denis,Sergeyevich,,,,,ТАТАРЧЕНКО Денис Сергеевич,Cyrillic,Russian,01/02/1991,,,,,,,,Editor of InfoRos/ Journalist,Krzhizhanovskogo Street 13/2,,,,,Moscow,117218,Russia,"(UK Sanctions List Ref):RUS0812 (UK Statement of Reasons):Denis Sergeyevich TATARCHENKO (hereafter TATARCHENKO) is an editor of InfoRos, an organisation affiliated with the Government of Russia which spreads disinformation. In his role at InfoRos, and as a contributor to other publications, TATARCHENKO has provided support for and promoted actions and policies which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14763 +TATRIEV,Khasan,Kureyshevich,,,,,,,,00/00/1963,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1051 (UK Statement of Reasons):Khasan Kureyshevich TATREIV is currently a member of the management board of Rosneft and has been Director General of subsidiary of Rosneft, RN YUGANSKNEFTEGAZ OOO, a major Russian oil production company. TATRIEV therefore has been involved in obtaining a benefit from or supporting the Government of Russia as an executive director or equivalent of an entity which has been carrying on business in a sector of strategic significance to the Government of Russia (the Russian energy sector).",Individual,Primary name,,Russia,24/03/2022,24/03/2022,24/05/2022,14994 +TATRIEV,Muslim,Barisovich,,,,,Муслим Барисович Татриев,,,11/01/1980,Grozny,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0503 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14448 +TAUHID,Darul,,,,,Imam,,,,00/00/1969,"Shekau Village, Yobe State",Nigeria,Nigeria,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0118 (UN Ref):QDi.322 Member of the Kanuri tribe. Physical description: eye colour: black; hair colour: black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138). Under Shekau’s leadership, Boko Haram has been responsible for a series of major terrorist attacks. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,08/07/2014,26/06/2014,31/12/2020,13006 +TAWHEED,Darul,,,,,Imam,,,,00/00/1969,"Shekau Village, Yobe State",Nigeria,Nigeria,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0118 (UN Ref):QDi.322 Member of the Kanuri tribe. Physical description: eye colour: black; hair colour: black. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Leader of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138). Under Shekau’s leadership, Boko Haram has been responsible for a series of major terrorist attacks. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,08/07/2014,26/06/2014,31/12/2020,13006 +TAWIL,Faud,,,,,,,,,,,,Syria,,,,,Deputy Head of the Air Force Intelligence Agency,,,,,,,,,"(UK Sanctions List Ref):SYR0048 Links to Air Force Intelligence Agency (UK Statement of Reasons):Deputy head Syrian Air Force Intelligence. Responsible for the use of violence across Syria and intimidation and torture of protestors. Associated with the Air Force Intelligence Agency, a listed entity. (Gender):Male",Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,31/12/2020,12226 +TAWIL,Fu'ad,,,,,,فؤاد طويل,,,,,,Syria,,,,,Deputy Head of the Air Force Intelligence Agency,,,,,,,,,"(UK Sanctions List Ref):SYR0048 Links to Air Force Intelligence Agency (UK Statement of Reasons):Deputy head Syrian Air Force Intelligence. Responsible for the use of violence across Syria and intimidation and torture of protestors. Associated with the Air Force Intelligence Agency, a listed entity. (Gender):Male",Individual,Primary name,,Syria,15/11/2011,31/12/2020,31/12/2020,12226 +TAYMAZOV,Artur,Borisovich,,,,,Артур Борисович Таймазов,,,20/07/1979,"Nogir, Ossetia",Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0501 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14446 +TAYSAEV,Kazbek,Kutsukovich,,,,,Тайсаев Казбек Куцукович,,,12/02/1967,"Chikola, Ossetia",Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0649 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14594 +TAYYAB,Allah Dad,,,,,,,,,00/00/1963,"(1) Ghorak District, Kandahar Province. (2) Nesh District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Deputy Minister of Communication under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0018 (UN Ref):TAi.016 Belongs to Popalzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Deceased as of November 2015. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7483 +TAYZA,,,,,,,,,,18/07/1964,Yangon,Myanmar,Myanmar,,,,,Chairman of Htoo Group of Companies,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0028 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations in Myanmar for decades, including the ethnic cleansing of the Rohingya in 2017, ongoing attacks on other ethnic groups and the 2021 coup and associated repression of the civilian population and serious human rights violations including killings, arbitrary detention and torture. U Tay Za has provided support for these activities in his role as an arms dealer for the military responsible for brokering deals with Russia for arms. Further or alternatively, he has made funds or economic resources available and/or he is or has been involved in the supply of goods and/or technology, which could contribute to serious human rights violations. Further, and/or alternatively, U Tay Za is associated with the military through his extensive links with the former and current junta regimes. (Gender):Male",Individual,Primary name variation,,Myanmar,02/09/2021,02/09/2021,11/11/2022,14139 +TAYZA,,,,,,,,,,18/07/1964,Yangon,Myanmar,Myanmar,,,,,Chairman of Htoo Group of Companies,,,,,,,,Singapore,"(UK Sanctions List Ref):MYA0028 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations in Myanmar for decades, including the ethnic cleansing of the Rohingya in 2017, ongoing attacks on other ethnic groups and the 2021 coup and associated repression of the civilian population and serious human rights violations including killings, arbitrary detention and torture. U Tay Za has provided support for these activities in his role as an arms dealer for the military responsible for brokering deals with Russia for arms. Further or alternatively, he has made funds or economic resources available and/or he is or has been involved in the supply of goods and/or technology, which could contribute to serious human rights violations. Further, and/or alternatively, U Tay Za is associated with the military through his extensive links with the former and current junta regimes. (Gender):Male",Individual,Primary name variation,,Myanmar,02/09/2021,02/09/2021,11/11/2022,14139 +TCHAIKOVSY,Pavel,Alexandrovich,,,,,,,,15/04/1986,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1213 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15165 +TCHIGRINA,Oksana,,,,,,,,,23/07/1981,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0140 (UK Statement of Reasons):Former spokesperson of the so-called ‘government’ of the so-called ‘Lugansk People’s Republic’ who made declarations justifying, inter alia, the shooting down of a Ukrainian military airplane, the taking of hostages, fighting activities by the illegal armed groups, which have as a consequence undermined the territorial integrity, sovereignty and unity of Ukraine. Former spokesperson of the head of the LPR. Remains active in supporting separatist actions or policies. (Gender):Female",Individual,Primary name,,Russia,31/07/2014,31/12/2020,31/12/2020,13069 +TCHIGRINA,Oksana,Aleksandrovna,,,,,,,,23/07/1981,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0140 (UK Statement of Reasons):Former spokesperson of the so-called ‘government’ of the so-called ‘Lugansk People’s Republic’ who made declarations justifying, inter alia, the shooting down of a Ukrainian military airplane, the taking of hostages, fighting activities by the illegal armed groups, which have as a consequence undermined the territorial integrity, sovereignty and unity of Ukraine. Former spokesperson of the head of the LPR. Remains active in supporting separatist actions or policies. (Gender):Female",Individual,Primary name variation,,Russia,31/07/2014,31/12/2020,31/12/2020,13069 +TCO,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0124 (UK Statement of Reasons):Has undertaken procurement in support of Iran's nuclear and missile programmes (Phone number):(1) +98 21 44667322 (2) +98 21 44667323 (Website):(1) www.citc.ir (2) www.tco.ac.ir (3) www.tco.gov.ir (4) www.tco.ir (Email address):tco@tco.ac.ir (Type of entity):Government Ministry,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,08/03/2022,11221 +TCO,,,,,,,,,,,,,,,,,,,No 7 East Avesta Rd,Sheykh Bahaie Street,Sheykh Bahaie Sq,,,Tehran,1995859611,Iran,(UK Sanctions List Ref):INU0124 (UK Statement of Reasons):Has undertaken procurement in support of Iran's nuclear and missile programmes (Phone number):(1) +98 21 44667322 (2) +98 21 44667323 (Website):(1) www.citc.ir (2) www.tco.ac.ir (3) www.tco.gov.ir (4) www.tco.ir (Email address):tco@tco.ac.ir (Type of entity):Government Ministry,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,08/03/2022,11221 +TDG LTD.,,,,,,,,,,,,,,,,,,,53/64 Chancery Lane,,,,,London,WC2A 1QU,United Kingdom,"(UK Sanctions List Ref):IRQ0060 (UN Ref):IQe.207 Registered company number: 02150590. Last known directors: Hana Paul JON, Adnan Talib Hashim AL-AMIRI, Dr. Safa Hadi Jawad AL-HABOBI. Last known shareholders: 99 ordinary shares: Al-Arabi Trading Co. Ltd., 1 ordinary share: Dr. Al-Habobi",Entity,AKA,,Iraq,02/07/2003,12/05/2006,31/12/2020,7817 +TECHNICAL INDUSTRIES CORPORATION (TIC),,,,,,,,,,,,,,,,,,,,,,,PO Box 11037,Damascus,,Syria,"(UK Sanctions List Ref):SYR0320 (UK Statement of Reasons):Subsidiary of the Syrian Ministry of Defence. Organisation for Technological Industries is involved in the production of chemical weapons for the Syrian regime. It is therefore involved in the repression of the Syrian civilian population. As a subsidiary of the Ministry of Defence, it is also associated with a designated entity. (Type of entity):subsidiary of Syrian Government",Entity,AKA,,Syria,09/03/2015,31/12/2020,13/05/2022,13235 +TECHNOLOGY AND DEVELOPMENT GROUP LIMITED,,,,,,,,,,,,,,,,,,,53/64 Chancery Lane,,,,,London,WC2A 1QU,United Kingdom,"(UK Sanctions List Ref):IRQ0060 (UN Ref):IQe.207 Registered company number: 02150590. Last known directors: Hana Paul JON, Adnan Talib Hashim AL-AMIRI, Dr. Safa Hadi Jawad AL-HABOBI. Last known shareholders: 99 ordinary shares: Al-Arabi Trading Co. Ltd., 1 ordinary share: Dr. Al-Habobi",Entity,Primary name,,Iraq,02/07/2003,12/05/2006,31/12/2020,7817 +TECHNOLOGY COOPERATION OFFICE,,,,,,,,,,,,,,,,,,,,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0124 (UK Statement of Reasons):Has undertaken procurement in support of Iran's nuclear and missile programmes (Phone number):(1) +98 21 44667322 (2) +98 21 44667323 (Website):(1) www.citc.ir (2) www.tco.ac.ir (3) www.tco.gov.ir (4) www.tco.ir (Email address):tco@tco.ac.ir (Type of entity):Government Ministry,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,08/03/2022,11221 +TECHNOLOGY COOPERATION OFFICE,,,,,,,,,,,,,,,,,,,No 7 East Avesta Rd,Sheykh Bahaie Street,Sheykh Bahaie Sq,,,Tehran,1995859611,Iran,(UK Sanctions List Ref):INU0124 (UK Statement of Reasons):Has undertaken procurement in support of Iran's nuclear and missile programmes (Phone number):(1) +98 21 44667322 (2) +98 21 44667323 (Website):(1) www.citc.ir (2) www.tco.ac.ir (3) www.tco.gov.ir (4) www.tco.ir (Email address):tco@tco.ac.ir (Type of entity):Government Ministry,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,08/03/2022,11221 +TEHREEK-E-TALIBAN,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0079 (UN Ref):QDe.132 Tehrik-e Taliban is based in the tribal areas along the Afghanistan/Pakistan border. Formed in 2007, its leader is Maulana Fazlullah (QDi.352). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282130",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/08/2011,29/07/2011,31/12/2020,12032 +TEHREEK-E-TALIBAN,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0079 (UN Ref):QDe.132 Tehrik-e Taliban is based in the tribal areas along the Afghanistan/Pakistan border. Formed in 2007, its leader is Maulana Fazlullah (QDi.352). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282130",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/08/2011,29/07/2011,31/12/2020,12032 +TEHREEK-I-TALIBAN PAKISTAN GEEDAR GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +TEHREEK-I-TALIBAN PAKISTAN GEEDAR GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +TEHRIK-E TALIBAN PAKISTAN,,,,,,,تحریک طالبان پاکستان,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0079 (UN Ref):QDe.132 Tehrik-e Taliban is based in the tribal areas along the Afghanistan/Pakistan border. Formed in 2007, its leader is Maulana Fazlullah (QDi.352). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282130",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,11/08/2011,29/07/2011,31/12/2020,12032 +TEHRIK-E TALIBAN PAKISTAN,,,,,,,تحریک طالبان پاکستان,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0079 (UN Ref):QDe.132 Tehrik-e Taliban is based in the tribal areas along the Afghanistan/Pakistan border. Formed in 2007, its leader is Maulana Fazlullah (QDi.352). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282130",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,11/08/2011,29/07/2011,31/12/2020,12032 +TEHRIK-E TALIBAN PAKISTAN JAMAAT UL AHRAR,,,,,,,,,,,,,,,,,,,Lalpura,,,,,Nangarhar Province,,Afghanistan,"(UK Sanctions List Ref):AQD0056 (UN Ref):QDe.152 Splinter group of the Tehrik-e Taliban Pakistan (QDe.132). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Formed in Aug. 2014 in Mohmand Agency, Pakistan. Operates from Nangarhar Province, Afghanistan and Pakistan-Afghanistan border region. Banned in Pakistan on 21 Nov. 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6114258",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,07/07/2017,06/07/2017,31/12/2020,13491 +TEHRIK-E TALIBAN PAKISTAN JAMAAT UL AHRAR,,,,,,,,,,,,,,,,,,,Mohmand Agency,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0056 (UN Ref):QDe.152 Splinter group of the Tehrik-e Taliban Pakistan (QDe.132). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Formed in Aug. 2014 in Mohmand Agency, Pakistan. Operates from Nangarhar Province, Afghanistan and Pakistan-Afghanistan border region. Banned in Pakistan on 21 Nov. 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6114258",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,07/07/2017,06/07/2017,31/12/2020,13491 +TEHRIK-E-TALIBAN,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0079 (UN Ref):QDe.132 Tehrik-e Taliban is based in the tribal areas along the Afghanistan/Pakistan border. Formed in 2007, its leader is Maulana Fazlullah (QDi.352). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282130",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/08/2011,29/07/2011,31/12/2020,12032 +TEHRIK-E-TALIBAN,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0079 (UN Ref):QDe.132 Tehrik-e Taliban is based in the tribal areas along the Afghanistan/Pakistan border. Formed in 2007, its leader is Maulana Fazlullah (QDi.352). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282130",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/08/2011,29/07/2011,31/12/2020,12032 +TEHRIK-E-TALIBAN-TARIQ GIDAR GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +TEHRIK-E-TALIBAN-TARIQ GIDAR GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +TEHRIK-I-TALIBAN PAKISTAN,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0079 (UN Ref):QDe.132 Tehrik-e Taliban is based in the tribal areas along the Afghanistan/Pakistan border. Formed in 2007, its leader is Maulana Fazlullah (QDi.352). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282130",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/08/2011,29/07/2011,31/12/2020,12032 +TEHRIK-I-TALIBAN PAKISTAN,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0079 (UN Ref):QDe.132 Tehrik-e Taliban is based in the tribal areas along the Afghanistan/Pakistan border. Formed in 2007, its leader is Maulana Fazlullah (QDi.352). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282130",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/08/2011,29/07/2011,31/12/2020,12032 +TEK,,,,,,,,,,01/01/1967,"Nile District, El-Fasher, North Darfur",,Sudan,,,(1) 192-3238459-9. (2) 302581.,(1) - (2) Certificate of nationality acquired through birth.,National Movement for Reform and Development (NMRD) Field Commander,,,,,,"Tine, Resides in Tine, on the Sudanese side of the border with Chad",,Sudan,(UK Sanctions List Ref):SUD0004 (UN Ref):SDi.004,Individual,AKA,Good quality,Sudan,26/05/2006,25/04/2006,31/12/2020,8837 +TEKSLER,Alexei,Leonidovich,,,,,Алексей Леонидович Текслер,,,19/01/1973,,,Russia,,,,,Governor of the Chelyabinsk Region,,,,,,,,,"(UK Sanctions List Ref):RUS1513 (UK Statement of Reasons):Alexei Leonidovich TEKSLER is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because TEKSLER is a regional governor. Specifically, TEKSLER is Governor of the Chelyabinsk Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15451 +TELEBOTS,,,,,,,,,,,,,,,,,,,22 Kirova Street,,,,,Moscow,,Russia,"(UK Sanctions List Ref):CYB0009 (UK Statement of Reasons):The Main Centre for Special Technologies (GTsST) of the Russian General Staff Main Intelligence Directorate (GRU), also known by its field post number ‘74455’ and “Sandworm” by industry, was responsible for cyber attacks which disrupted critical national infrastructure in Ukraine, cutting off the electricity grid. The perpetrators were directly responsible for relevant cyber activity by carrying out information system interference intended to undermine integrity, prosperity and security of the Ukraine. These cyber attacks originated in Russia and were unauthorised (Type of entity):Department within Government/Military Unit (Parent company):Russian Ministry of Defence",Entity,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13911 +TELIKANOV,Yuriy,Nikolaevich,,,,,ТЕЛИКАНОВ Юрий Николаевич,Cyrillic,Russian,10/05/1955,Yenakiyeve,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1301 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15253 +TELIKANOV,Yury,Nikolaevich,,,,,,,,10/05/1955,Yenakiyeve,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1301 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15253 +TELNYKH,Sergey,Leonidovich,,,,,"ТЕЛЬНЫХ, Сергей Леонидович",Cyrillic,Russian,29/04/1972,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1214 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15166 +TEM,,,,,,,,,,,,,,,,,,,Shishesh Mina Street,Karaj Special Road,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0127 (UK Statement of Reasons):Used as a front company by Iran Aircraft Industries (IACI) for covert procurement activities (Type of entity):Nuclear/Military,Entity,AKA,,Iran (Nuclear),24/01/2012,31/12/2020,04/03/2022,12491 +TEM CO.,,,,,,,,,,,,,,,,,,,Shishesh Mina Street,Karaj Special Road,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0127 (UK Statement of Reasons):Used as a front company by Iran Aircraft Industries (IACI) for covert procurement activities (Type of entity):Nuclear/Military,Entity,AKA,,Iran (Nuclear),24/01/2012,31/12/2020,04/03/2022,12491 +TEMIRGALIEV,Rustam,Ilmirovich,,,,,Рустам Iльмирович ТЕМIРГАЛIЄВ,,,15/08/1976,"Ulan-Ude, Buryat ASSR","Russian SFSR, (now Russian Federation)",Ukraine,,,,,Managing Company of the Russian-Chinese Investment Fund for Regional Development,,,,,,,,,"(UK Sanctions List Ref):RUS0141 (UK Statement of Reasons):As former Deputy Prime Minister of Crimea, Temirgaliev played a relevant role in the decisions taken by the ‘Supreme Council’ concerning the ‘referendum’ of 16 March 2014 against the territorial integrity of Ukraine. He lobbied actively for the integration of Crimea into the Russian Federation. On 11 June 2014, he resigned from his function as ‘First Deputy Prime Minister’ of the so-called ‘Republic of Crimea’. Currently General Director of the Managing Company of the Russian-Chinese Investment Fund for Regional Development. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name,,Russia,18/03/2014,31/12/2020,31/12/2020,12924 +TEMIRGALIEV,Rustam,Ilmyrovych,,,,,Рустам Ильмирович ТЕМИРГАЛИЕВ,,,15/08/1976,"Ulan-Ude, Buryat ASSR","Russian SFSR, (now Russian Federation)",Ukraine,,,,,Managing Company of the Russian-Chinese Investment Fund for Regional Development,,,,,,,,,"(UK Sanctions List Ref):RUS0141 (UK Statement of Reasons):As former Deputy Prime Minister of Crimea, Temirgaliev played a relevant role in the decisions taken by the ‘Supreme Council’ concerning the ‘referendum’ of 16 March 2014 against the territorial integrity of Ukraine. He lobbied actively for the integration of Crimea into the Russian Federation. On 11 June 2014, he resigned from his function as ‘First Deputy Prime Minister’ of the so-called ‘Republic of Crimea’. Currently General Director of the Managing Company of the Russian-Chinese Investment Fund for Regional Development. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,31/12/2020,12924 +TEMIRHALIIEV,Rustam,Ilmirovich,,,,,,,,15/08/1976,"Ulan-Ude, Buryat ASSR","Russian SFSR, (now Russian Federation)",Ukraine,,,,,Managing Company of the Russian-Chinese Investment Fund for Regional Development,,,,,,,,,"(UK Sanctions List Ref):RUS0141 (UK Statement of Reasons):As former Deputy Prime Minister of Crimea, Temirgaliev played a relevant role in the decisions taken by the ‘Supreme Council’ concerning the ‘referendum’ of 16 March 2014 against the territorial integrity of Ukraine. He lobbied actively for the integration of Crimea into the Russian Federation. On 11 June 2014, he resigned from his function as ‘First Deputy Prime Minister’ of the so-called ‘Republic of Crimea’. Currently General Director of the Managing Company of the Russian-Chinese Investment Fund for Regional Development. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,31/12/2020,12924 +TEMIRHALIIEV,Rustam,Ilmyrovych,,,,,,,,15/08/1976,"Ulan-Ude, Buryat ASSR","Russian SFSR, (now Russian Federation)",Ukraine,,,,,Managing Company of the Russian-Chinese Investment Fund for Regional Development,,,,,,,,,"(UK Sanctions List Ref):RUS0141 (UK Statement of Reasons):As former Deputy Prime Minister of Crimea, Temirgaliev played a relevant role in the decisions taken by the ‘Supreme Council’ concerning the ‘referendum’ of 16 March 2014 against the territorial integrity of Ukraine. He lobbied actively for the integration of Crimea into the Russian Federation. On 11 June 2014, he resigned from his function as ‘First Deputy Prime Minister’ of the so-called ‘Republic of Crimea’. Currently General Director of the Managing Company of the Russian-Chinese Investment Fund for Regional Development. Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,31/12/2020,12924 +TEN,Sergey,Yurievich,,,,,Сергей Юрьевич Тен,,,25/08/1976,Irkutsk,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0504 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14449 +TENENBAUM,Eugene,,,,,,,,,00/09/1964,,Ukraine,Canada,,,,,,,,,,,,,,(UK Sanctions List Ref):RUS1338 (UK Statement of Reasons):Eugene TENENBAUM is associated with Roman Abramovich. Roman Abramovich is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019. (Gender):Male,Individual,Primary name,,Russia,14/04/2022,14/04/2022,14/04/2022,15281 +TEODORIN,,,,,,,,,,25/06/1968,Malabo,Equatorial Guinea,Equatorial Guinea,,,,,Vice President,,,,,,Malabo,,Equatorial Guinea,"(UK Sanctions List Ref):GAC0024 (UK Statement of Reasons):Teodoro Nguema Obiang Mangue has been involved in the misappropriation of significant amounts of public assets from Equatorial Guinea as well as bribery, to fund a lavish lifestyle in various countries abroad including the United States and France, where he held assets which were vastly disproportionate in value by comparison to his official salary as an Equatorial Guinean government minister. (Gender):Male",Individual,AKA,,Global Anti-Corruption,22/07/2021,22/07/2021,08/02/2022,14127 +TERABOV,Sergey,Evgenievich,,,,,,,,00/00/1972,"Barysaw/Borisov, Minsk Oblast",Former USSR Currently Belarus,Belarus,,,,,First Deputy Chairman of the State Security Committee (KGB),,,,,,,,,"(UK Sanctions List Ref):BEL0028 (UK Statement of Reasons):TSERABAU was appointed First Deputy Chairman of the State Security Committee (KGB) of Belarus in February 2020. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13949 +TERABOV,Siarhei,Yaugenavich,,,,,,,,00/00/1972,"Barysaw/Borisov, Minsk Oblast",Former USSR Currently Belarus,Belarus,,,,,First Deputy Chairman of the State Security Committee (KGB),,,,,,,,,"(UK Sanctions List Ref):BEL0028 (UK Statement of Reasons):TSERABAU was appointed First Deputy Chairman of the State Security Committee (KGB) of Belarus in February 2020. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13949 +TEREBOV,Sergei,Yevgenevich,,,,,,,,00/00/1972,"Barysaw/Borisov, Minsk Oblast",Former USSR Currently Belarus,Belarus,,,,,First Deputy Chairman of the State Security Committee (KGB),,,,,,,,,"(UK Sanctions List Ref):BEL0028 (UK Statement of Reasons):TSERABAU was appointed First Deputy Chairman of the State Security Committee (KGB) of Belarus in February 2020. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13949 +TEREK SPECIAL RAPID RESPONSE UNIT,,,,,,,,,,,,,,,,,,,,,,,Grozny,Republic of Chechnya,,Russia,(UK Sanctions List Ref):GHR0066 (UK Statement of Reasons):Ramzan Kadyrov’s leadership of the Chechen Republic in Russia has been characterised by the systematic persecution of critics of the Chechen authorities and of perceived subversives. This has included the systematic use of murder and CIDT against LGBT Chechens and human rights defenders. There is a considerable and credible body of evidence strongly indicating that the Terek Rapid Response Unit has been heavily involved in the murder and use of CIDT against LGBT Chechens since 2017. (Type of entity):Special Police Unit,Entity,Primary name,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14007 +TERENTIEV,Alexander,Vasilievich,,,,,Терентьев Александр Васильевич,,,01/01/1961,"Karabidai, Scherbakty district",Kazakhstan,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0651 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14596 +TERENTIEV,Mikhail,Borisovich,,,,,Михаил Борисович Терентьев,,,14/05/1970,Krasnoyarsk,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0652 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14597 +TERESHCHENKO,Kateryna,Vasylivna,,,,,,,,31/05/1986,,,Ukraine,,,,,Secretary of the so-called Luhensk People’s Republic Central Election Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0142 (UK Statement of Reasons):“Secretary” of the ‘Central Election Commission’ of the so-called ‘Luhansk People’s Republic’. In this capacity, she participated in the organisation of the so-called ‘elections’ of 11 November 2018 in the so-called ‘Luhansk People’s Republic’, and thereby actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,10/12/2018,31/12/2020,16/09/2022,13729 +TERESHCHENKO,Yekaterina,Vasilievna,,,,,,,,31/05/1986,,,Ukraine,,,,,Secretary of the so-called Luhensk People’s Republic Central Election Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0142 (UK Statement of Reasons):“Secretary” of the ‘Central Election Commission’ of the so-called ‘Luhansk People’s Republic’. In this capacity, she participated in the organisation of the so-called ‘elections’ of 11 November 2018 in the so-called ‘Luhansk People’s Republic’, and thereby actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,10/12/2018,31/12/2020,16/09/2022,13729 +TERMINATOR,,,,,,,,,,00/00/1973,Bigogwe,Rwanda,Congo (Democratic Republic),,,,,(1) Former Chief of Staff in CNDP (2) Former CNDP military commander,,,,,,The Hague,,Netherlands,"(UK Sanctions List Ref):DRC0025 (UN Ref):CDi.030 Born in Rwanda, he moved to Nyamitaba,Masisi territory, North Kivu, when he was a child. Nominated FARDC Brigadier-General by Presidential Decree on 11 December 2004, following Ituri peace agreements. Formerly Chief of Staff in CNDP and became CNDP military commander since the arrest of Laurent Nkunda in January 2009. Since January 2009, de facto Deputy Commander of consecutive anti-FDLR operations ‘Umoja Wetu’, ‘Kimia II’, and ‘Amani Leo’ in North and South Kivu. Entered Rwanda in March 2013, and voluntarily surrender to ICC officials in Kigali on March 22. Transferred to the ICC in The Hague, Netherlands. On 9 June 2014, ICC confirmed 13 charges of war crimes and five charges of crimes against humanity against him; the trial started in September 2015. On 8 July 2019, the ICC found him guilty of 18 counts of war crimes and crimes against humanity, committed in Ituri in 2002-2003. On 7 November 2019, he was sentenced to a total of 30 years imprisonment. He has appealed both his conviction and sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,18/02/2021,8736 +TERMINATOR,,,,,,,,,,00/00/1974,Bigogwe,Rwanda,Congo (Democratic Republic),,,,,(1) Former Chief of Staff in CNDP (2) Former CNDP military commander,,,,,,The Hague,,Netherlands,"(UK Sanctions List Ref):DRC0025 (UN Ref):CDi.030 Born in Rwanda, he moved to Nyamitaba,Masisi territory, North Kivu, when he was a child. Nominated FARDC Brigadier-General by Presidential Decree on 11 December 2004, following Ituri peace agreements. Formerly Chief of Staff in CNDP and became CNDP military commander since the arrest of Laurent Nkunda in January 2009. Since January 2009, de facto Deputy Commander of consecutive anti-FDLR operations ‘Umoja Wetu’, ‘Kimia II’, and ‘Amani Leo’ in North and South Kivu. Entered Rwanda in March 2013, and voluntarily surrender to ICC officials in Kigali on March 22. Transferred to the ICC in The Hague, Netherlands. On 9 June 2014, ICC confirmed 13 charges of war crimes and five charges of crimes against humanity against him; the trial started in September 2015. On 8 July 2019, the ICC found him guilty of 18 counts of war crimes and crimes against humanity, committed in Ituri in 2002-2003. On 7 November 2019, he was sentenced to a total of 30 years imprisonment. He has appealed both his conviction and sentence. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,02/11/2005,01/11/2005,18/02/2021,8736 +TERTEL,Ivan,Stanislavavich,,,,,Іван Станіслававіч ТЭРТЭЛЬ,,,08/09/1966,Village Privalki/Privalka in Hrodna/Grodno Oblast,Former USSR Currently Belarus,Belarus,,,,,(1) Chairman of the State Security Committee (KGB) (2) Former Chairman of the State Control Committee,17,Nezavisimosti Ave.,,,,Minsk,220030,Belarus,"(UK Sanctions List Ref):BEL0057 (UK Statement of Reasons):Ivan Tertel was appointed Chairman of the State Security Committee (KGB) on 3 September 2020. He was formerly the Chairman of the State Control Committee and before that Deputy Chairman of the KGB. In his role as Chairman of the State Security Committee, he has overall responsibility for the State Security Committee including the involvement of KGB officers in serious human rights violations and abuses against detained protestors and journalists, which were carried out after the election of 9 August 2020. Furthermore, in his former capacity as Chairman of the State Control Committee, Tertel was involved in a campaign of intimidation and harassment of a leading opponent of Lukashenko, and therefore involved in the repression of democratic opposition. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,09/08/2021,13985 +TERTEL,Ivan,Stanislavovich,,,,,Иван Станиславович ТЕРТЕЛЬ,,,08/09/1966,Village Privalki/Privalka in Hrodna/Grodno Oblast,Former USSR Currently Belarus,Belarus,,,,,(1) Chairman of the State Security Committee (KGB) (2) Former Chairman of the State Control Committee,17,Nezavisimosti Ave.,,,,Minsk,220030,Belarus,"(UK Sanctions List Ref):BEL0057 (UK Statement of Reasons):Ivan Tertel was appointed Chairman of the State Security Committee (KGB) on 3 September 2020. He was formerly the Chairman of the State Control Committee and before that Deputy Chairman of the KGB. In his role as Chairman of the State Security Committee, he has overall responsibility for the State Security Committee including the involvement of KGB officers in serious human rights violations and abuses against detained protestors and journalists, which were carried out after the election of 9 August 2020. Furthermore, in his former capacity as Chairman of the State Control Committee, Tertel was involved in a campaign of intimidation and harassment of a leading opponent of Lukashenko, and therefore involved in the repression of democratic opposition. (Gender):Male",Individual,Primary name,,Belarus,06/11/2020,31/12/2020,09/08/2021,13985 +TERYUSHKOV,Roman,Igorevich,,,,,Роман Игоревич Терюшков,,,20/12/1979,"Moscow,",Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0505 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14450 +TESA,,,,,,,,,,,,,,,,,,,156 Golestan Street,Saradr e Jangal,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TESA,,,,,,,,,,,,,,,,,,,Khalij e Fars Boulevard,Kilometre 10 of Atomic Energy Road,Rowshan Shahr,Third Moshtaq Street,,Esfahan,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TESA,,,,,,,,,,,,,,,,,,,Km. 55th of Tehran-Qazvin Rd.,,,,,Karaj,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TESA,,,,,,,,,,,,,,,,,,,No.239,Africa Ave.,Apartment No.12,First Floor,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TESA,,,,,,,,,,,,,,,,,,,Northwest of Karaj at Km 55 Qazvin (alt. Ghazvin) Highway,,,,,Haljerd,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TESA,,,,,,,,,,,,,,,,,,,Yousef Abad District,No. 1,37th Street,,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TESA,,,,,,,,,,,,,,,,,,,No.66,Sarhang Sakhaei St.,Hafez Avenue,,,Tehran,11367,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TESA,,,,,,,,,,,,,,,,,,,No.66,Sarhang Sakhaei St.,Hafez Avenue,,,Tehran,(11367),Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TESSHIN MARU,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0099 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK merchant vessel M/V SAM JONG 1 was involved in ship-to-ship transfer operations of oil in late January 2018. Listed as asset of Korea Samjong Shipping (OFSI ID: 13635, UN Reference Number: UN Ref KPe.064) (IMO number):8405311 (Current owners):Korea Samjong Shipping (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):1038 (Length of ship):70 (Year built):1984",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13650 +TEST TAFSIR,,,,,,,,,,,,,,,,,,,No 11,Tawhid 6 Street,Moj Street,Darya Blvd,Shahrak Gharb,Tehran,,Iran,(UK Sanctions List Ref):INU0125 (UK Statement of Reasons):Involved in Iran's proliferation sensitive nuclear activities at uranium enrichment facilities in Iran (Phone number):+98 21 88582177. +98 21 88582178 (Email address):PCS_Industry@yahoo.com,Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,31/12/2020,12271 +TEST TAFSIR,,,,,,,,,,,,,,,,,,,No.199 End of Western St.,Safadasht Industrial Zone,Shahriar Iran,,,Tehran,,Iran,(UK Sanctions List Ref):INU0125 (UK Statement of Reasons):Involved in Iran's proliferation sensitive nuclear activities at uranium enrichment facilities in Iran (Phone number):+98 21 88582177. +98 21 88582178 (Email address):PCS_Industry@yahoo.com,Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,31/12/2020,12271 +TEST TAFSIR ENG CO.,,,,,,,,,,,,,,,,,,,No 11,Tawhid 6 Street,Moj Street,Darya Blvd,Shahrak Gharb,Tehran,,Iran,(UK Sanctions List Ref):INU0125 (UK Statement of Reasons):Involved in Iran's proliferation sensitive nuclear activities at uranium enrichment facilities in Iran (Phone number):+98 21 88582177. +98 21 88582178 (Email address):PCS_Industry@yahoo.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,31/12/2020,12271 +TEST TAFSIR ENG CO.,,,,,,,,,,,,,,,,,,,No.199 End of Western St.,Safadasht Industrial Zone,Shahriar Iran,,,Tehran,,Iran,(UK Sanctions List Ref):INU0125 (UK Statement of Reasons):Involved in Iran's proliferation sensitive nuclear activities at uranium enrichment facilities in Iran (Phone number):+98 21 88582177. +98 21 88582178 (Email address):PCS_Industry@yahoo.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,31/12/2020,12271 +TETERDINKO,Alexander,Pavlovich,,,,,Александр Павлович Тетердинко,,,20/11/1983,Volkhov,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0653 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14598 +TEYREBAZEN AZADIYA KURDISTAN (TAK),,,,,,,Teyrêbazên Azadiya Kurdistan (TAK),,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0042 (UK Statement of Reasons):The Kurdistan Freedom Hawks (TAK) is a Kurdish nationalist group that uses violence to pursue its goal of an independent Kurdish state in south eastern Turkey. They have claimed responsibility for numerous terrorist attacks, and are believed to have links to the Kurdistan Workers Party (PKK a proscribed terrorist organisation).",Entity,Primary name,,Counter-Terrorism (International),05/02/2007,31/12/2020,31/12/2020,9025 +TEZA,,,,,,,,,,18/07/1964,Yangon,Myanmar,Myanmar,,,,,Chairman of Htoo Group of Companies,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0028 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations in Myanmar for decades, including the ethnic cleansing of the Rohingya in 2017, ongoing attacks on other ethnic groups and the 2021 coup and associated repression of the civilian population and serious human rights violations including killings, arbitrary detention and torture. U Tay Za has provided support for these activities in his role as an arms dealer for the military responsible for brokering deals with Russia for arms. Further or alternatively, he has made funds or economic resources available and/or he is or has been involved in the supply of goods and/or technology, which could contribute to serious human rights violations. Further, and/or alternatively, U Tay Za is associated with the military through his extensive links with the former and current junta regimes. (Gender):Male",Individual,Primary name variation,,Myanmar,02/09/2021,02/09/2021,11/11/2022,14139 +TEZA,,,,,,,,,,18/07/1964,Yangon,Myanmar,Myanmar,,,,,Chairman of Htoo Group of Companies,,,,,,,,Singapore,"(UK Sanctions List Ref):MYA0028 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations in Myanmar for decades, including the ethnic cleansing of the Rohingya in 2017, ongoing attacks on other ethnic groups and the 2021 coup and associated repression of the civilian population and serious human rights violations including killings, arbitrary detention and torture. U Tay Za has provided support for these activities in his role as an arms dealer for the military responsible for brokering deals with Russia for arms. Further or alternatively, he has made funds or economic resources available and/or he is or has been involved in the supply of goods and/or technology, which could contribute to serious human rights violations. Further, and/or alternatively, U Tay Za is associated with the military through his extensive links with the former and current junta regimes. (Gender):Male",Individual,Primary name variation,,Myanmar,02/09/2021,02/09/2021,11/11/2022,14139 +THAER,Mansour,,,,,,,,,21/03/1974,Baghdad,Iraq,Jordan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0205 (UN Ref):QDi.076 Was deported from Germany to Jordan in Feb. 2005. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2002,03/09/2002,31/12/2020,7489 +THAER,Mansour,,,,,,,,,00/00/1972,Baghdad,Iraq,Jordan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0205 (UN Ref):QDi.076 Was deported from Germany to Jordan in Feb. 2005. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2002,03/09/2002,31/12/2020,7489 +THALE,Abu,,,,,,,,,18/12/1969,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +THALE,Abu,,,,,,,,,25/05/1968,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +THALE,Abu,,,,,,,,,18/12/1968,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +THALE,Abu,,,,,,,,,14/07/1969,(1) Asima-Tunis (2) Naples,(1) Tunisia (2) Italy,Tunisia,G737411,"Tunisian number, issued on 24 Oct. 1990 (expired on 20 Sep. 1997)",,,,,,,,,,,Italy,(UK Sanctions List Ref):AQD0371 (UN Ref):QDi.092 Father’s name is Mahmoud ben Sasi. Mother’s name is Maryam bint al-Tijani. Inadmissible to the Schengen area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Apr. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,14/04/2022,7795 +THANA,Sovlat,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):INU0032 (UK Statement of Reasons):Known to have provided support to Iran's nuclear programme through senior roles held. (Gender):Male,Individual,Primary name variation,,Iran (Nuclear),24/04/2007,31/12/2020,04/03/2022,9100 +THE AL-JIHAD-FISI-SABILILAH SPECIAL ISLAMIC REGIMENT,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0077 (UN Ref):QDe.101 Linked to the Islamic International Brigade (IIB) (QDe.099) and the Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs (RSRSBCM) (QDe.100). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278482,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,31/12/2020,7466 +THE AMERICAN,,,,,,,,,,30/12/1968,California,United States,(1) Jordan. (2) United States,,,(1) 548-91-5411 (2) 9681029476,(1) US social security (2) Jordanian,,,,,,,,,,"(UK Sanctions List Ref):AQD0291 (UN Ref):QDi.029 In custody in Jordan since 26 Feb. 2015 for recruitment and support to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Father’s name is Mohammad Hijazi. Mother’s name is Sakina. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1419275",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6974 +THE ARMY OF EMIGRANTS AND SUPPORTERS,,,,,,,تنظیم جیش المھاجرین و الأنصار,,,,,,,,,,,,Jabal Turkuman area,,,,,Lattakia Governorate,,Syria,"(UK Sanctions List Ref):AQD0080 (UN Ref):QDe.148 Established by foreign terrorist fighters in 2013. Location: Syrian Arab Republic. Affiliated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115) and AI-Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5887669",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,14/08/2015,06/08/2015,31/12/2020,13270 +THE ASIAN TIGERS,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +THE ASIAN TIGERS,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +THE BANIYAS REFINERY COMPANY,,,,,,,,,,,,,,,,,,,26 Latkia Main Road,,,,PO Box 26,Tartous,,Syria,"(UK Sanctions List Ref):SYR0338 Oil and Gas sector. (UK Statement of Reasons):Entity is subsidiary of General Corporation of Petroleum Products, a section of the Ministry of Petroleum and Mineral Resources. And as such provides financial support to Syrian regime. (Phone number):+963 43711100 (Email address):brc3@tarassul.sy (Type of entity):Subsidiary of General Corporation for Refining and Distribution of Pretroleum Products, a section of the Ministry of Petroleum and Minerals",Entity,Primary name,,Syria,23/07/2014,31/12/2020,31/12/2020,13028 +THE BANIYAS REFINERY COMPANY,,,,,,,,,,,,,,,,,,,"352, Tripoli Street",,,,PO Box 352,Homs,,,"(UK Sanctions List Ref):SYR0338 Oil and Gas sector. (UK Statement of Reasons):Entity is subsidiary of General Corporation of Petroleum Products, a section of the Ministry of Petroleum and Mineral Resources. And as such provides financial support to Syrian regime. (Phone number):+963 43711100 (Email address):brc3@tarassul.sy (Type of entity):Subsidiary of General Corporation for Refining and Distribution of Pretroleum Products, a section of the Ministry of Petroleum and Minerals",Entity,Primary name,,Syria,23/07/2014,31/12/2020,31/12/2020,13028 +THE BASE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0027 (UN Ref):QDe.004 Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278330,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,23/02/2001,06/10/2001,31/12/2020,6965 +THE BUTCHER OF PAOUA,,,,,,,,,,08/10/1967,,,,,,911-10-77,Central African Republic armed forces (FACA) Military identification number,"Former Captain, CAR Naval Forces. Former Captain, CAR Presidential Guard",,,,,,Bangui,,Central African Republic,(UK Sanctions List Ref):CAF0009 (UN Ref):CFi.008 Captain Eugène Barret Ngaïkosset is a former member of former President François Bozizé’s (CFi.001) presidential guard and associated with the anti-Balaka movement. He escaped from jail on 17 May 2015 following his extradition from Brazzaville and created his own anti-balaka faction including former FACA fighters. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here,Individual,AKA,Low quality,Central African Republic,24/12/2015,17/12/2015,01/02/2021,13309 +THE CENTRE FOR LASER TECHNOLOGY AND SCIENCE OF IRAN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0102 (UK Statement of Reasons):An entity that has supplied materials for use in gas centrifuge component production, and has been directly involved in construction planning for one of Iran's uranium enrichment sites. Fomerly known as Paya Partov. (Phone number):(1) +98 21 88373421 (2) +98 21 88638214 (Website):www.payapartov.com (Email address):service@payapartov.com",Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11556 +THE CONSTRUCTION AND COMMISSIONING OF NUCLEAR POWER PLANTS COMPANY,,,,,,,,,,,,,,,,,,,PO Box 1516913813,4 East 37th Alley,Alvand Street,Argentina Sq.,,Tehran,,Iran,(UK Sanctions List Ref):INU0120 (UK Statement of Reasons):Company for constructing and commissioning of nuclear power plants. (Phone number):+021 88205095 99 (Website):info@surena gc.com (Email address):www.surena gc.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12269 +THE DALZAVOD SHIP REPAIR CENTRE JSC,,,,,,,АО Центр Судоремонта Дальзавод,Cyrillic,Russian,,,,,,,,,,"Dalzavodskaya Str., 2",,,,,Vladivostok,690001,Russia,"(UK Sanctions List Ref):RUS1437 KPP 253601001; OGRN 1082536014120 (UK Statement of Reasons):The Dalzavod Ship Repair Centre JSC is an involved person under the Russia (EU) (Sanctions) Regulations 2019 as it is involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the Russian defence sector. (Phone number):(1) 8 (423) 2-224-010 (2) 8 (423) 2-220-210 (Website):(1) https://csdalzavod.ru (2) https://dalzavod.vl.ru (Email address):(1) dalzavod@dcss.ru (2) ok@csdalzavod.ru (Type of entity):Non Public Joint Stock Company (Business Reg No):Tax Identification Number: INN 2536210349",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15368 +THE DOCTOR,,,,,,,,,,19/01/1983,Sabratha,Libya,Libya,(1) 782633 (2) 540794,(1) Issued on 31 May 2005 (2) Issued on 12 Jan. 2008,,,Leader of a transnational trafficking network,,,,,,,,,"(UK Sanctions List Ref):LIB0058 (UN Ref):LYi.024 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13674 +THE EASTERN TURKISTAN ISLAMIC PARTY,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0040 (UN Ref):QDe.088,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,12/09/2002,11/09/2002,31/12/2020,7122 +THE EASTERN TURKISTAN ISLAMIC PARTY OF ALLAH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0040 (UN Ref):QDe.088,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,12/09/2002,11/09/2002,31/12/2020,7122 +THE FRONT FOR THE LIBERATION OF AL SHAM,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +THE FRONT FOR THE LIBERATION OF AL SHAM,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +THE GENERAL COMPANY FOR METALS CONSTRUCTION,,,,,,,,,,,,,,,,,,,P.O. Box 35202,Industrial Zone,Al-Qadam Road,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +THE GENERAL COMPANY FOR METALS CONSTRUCTION,,,,,,,,,,,,,,,,,,,P.O. Box: 1149,Rural Damascus: Adra,Industrial Zone,next to Teshreen Mill,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0313 Industrial (UK Statement of Reasons):Front company for the acquisition of sensitive equipment by the SSRC to assist in the production of Chemical Weapons. (Phone number):+963 011 5810719. +963 11 4474579. +963 11 5810718. +963 11 5810719. +963(11)5810718. +963(11)5810719. +963-11-5810718. 113781. 113788. 434399-434001. 4525965. 4526032. 4529991 (Website):www.metallic-sy.com, www.metallic-sy.org (Email address):info@metallic-sy.com. shaamco@mail.sy",Entity,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12429 +THE GENERAL ESTABLISHMENT OF MAIL SAVING FUND,,,,,,,,,,,,,,,,,,,Dar Al Muhanisen Building,6th Floor,Maysaloun Street,,,Damascus,,Syria,(UK Sanctions List Ref):SYR0324 Banking (UK Statement of Reasons):State-owned bank. Provides financial support to the regime. (Phone number):+963 11-221-0124 (Fax). +963 11-221-8376. +963 11-222-7604,Entity,AKA,,Syria,24/01/2012,31/12/2020,31/12/2020,12484 +THE GENERAL ESTABLISHMENT OF MAIL SAVING FUND,,,,,,,,,,,,,,,,,,,P.O. Box: 5467,Amous Square,Al-Furat St.,Merjah,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0327 Banking (UK Statement of Reasons):There are reasonable grounds to suspect that the Saving Bank is or has been involved in supporting or benefitting from the Syrian regime, in particular through the provision of financial services and making available funds or other economic resources. Further, it is owned or controlled by the state or otherwise associated with the Assad regime. (Phone number):(1) 222 8403 (2) 224 4909 (3) 245 3471 (Email address):post-gm@net.sy. s.bank@scs-net.org (Type of entity):State-owned",Entity,AKA,,Syria,24/01/2012,31/12/2020,13/05/2022,12485 +THE GENERAL ORGANISATION FOR COTTON GINNING AND MARKETING,,,,,,,,,,,,,,,,,,,Bab Al-Faraj,,,,P.O. Box 729,Aleppo,,,(UK Sanctions List Ref):SYR0291 (UK Statement of Reasons):State-owned company. Provides financial support to the Syrian regime. (Phone number):(1) +96321 2239495 (2) +96321 2239496 (3) +96321 2239497 (4) +96321 2239498 (Website):www.cmo.gov.sy (Email address):Cmo-aleppo@mail.sy,Entity,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12733 +THE GREAT DON ARMY,,,,,,,,,,,,,,,,,,,,,,,,October (C) District. St Zaplavskaya. Str Shosseynaya 1,346465,Russia,"(UK Sanctions List Ref):RUS0168 (UK Statement of Reasons):Armed separatist group which has actively supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. Commanded by and therefore associated with a listed person Nikolay KOZITSYN. Reportedly part of the so called ‘2nd Army Corps’ of the ‘Lugansk People's Republic’. (Website):http://vk.com/kazak_nac_guard (Type of entity):Armed Separatist Group",Entity,AKA,,Russia,16/02/2015,31/12/2020,31/12/2020,13218 +THE GREAT EASTERN ISLAMIC RAIDERS' FRONT,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CTI0034 (UK Statement of Reasons):The Great Eastern Islamic Raiders' Front (Islami Büyükdogu Akincilar Cephesi in Turkish, IBDA-C) claimed responsibility for a number of terrorist attacks during the 1990s and early 2000s, including an attack on the British Consulate in Istanbul in 2003 which killed the British Consul-General and 14 others. Their stated aim is to establish an Islamic federation in Turkey through violent means. The group is associated with Al-Qaida and has openly supported Osama bin Laden.",Entity,Primary name,,Counter-Terrorism (International),29/12/2003,31/12/2020,21/01/2021,7980 +THE GROUP FOR THE PRESERVATION OF THE HOLY SITES,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0027 (UN Ref):QDe.004 Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278330,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,23/02/2001,06/10/2001,31/12/2020,6965 +THE HOMS REFINERY COMPANY,,,,,,,,,,,,,,,,,,,General Company for Homs Refinery Building,352 Tripoli Street,,,,Homs,,Syria,"(UK Sanctions List Ref):SYR0339 Oil and Gas sector (UK Statement of Reasons):Entity is subsidiary of General Corporation of Petroleum Products, a section of the Ministry of Petroleum and Mineral Resources. And as such provides financial support to Syrian regime. (Phone number):+963 3125 16401 (Email address):homsrefinery@mail.sy (Type of entity):General Corporation for Refining and Distribution of Petroleum Products. Ministry of Petroleum and Minerals",Entity,Primary name,,Syria,23/07/2014,31/12/2020,31/12/2020,13029 +THE INTERNATIONAL BRIGADE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0050 (UN Ref):QDe.099 Linked to the Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs (RSRSBCM) (QDe.100) and the Special Purpose Islamic Regiment (SPIR) (QDe.101). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,12/01/2022,7202 +THE ISLAMIC ARMY FOR THE LIBERATION OF HOLY PLACES,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0027 (UN Ref):QDe.004 Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278330,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,23/02/2001,06/10/2001,31/12/2020,6965 +THE ISLAMIC GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0030 (UK Statement of Reasons):Al-Gama'a al-Islamiyya (GI) is an Egyptian Sunni terrorist organisation who were responsible for a number of terrorist attacks in the 1980s and 1990s,Entity,AKA,,Counter-Terrorism (International),02/11/2001,31/12/2020,21/01/2021,6988 +THE ISLAMIC PEACEKEEPING ARMY,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0050 (UN Ref):QDe.099 Linked to the Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs (RSRSBCM) (QDe.100) and the Special Purpose Islamic Regiment (SPIR) (QDe.101). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,12/01/2022,7202 +THE ISLAMIC PEACEKEEPING BRIGADE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0050 (UN Ref):QDe.099 Linked to the Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs (RSRSBCM) (QDe.100) and the Special Purpose Islamic Regiment (SPIR) (QDe.101). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,12/01/2022,7202 +THE ISLAMIC SPECIAL PURPOSE REGIMENT,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0077 (UN Ref):QDe.101 Linked to the Islamic International Brigade (IIB) (QDe.099) and the Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs (RSRSBCM) (QDe.100). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278482,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,31/12/2020,7466 +THE ISLAMIC STATE OF IRAQ AND ASH-SHAM—KHORASAN PROVINCE,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0357 (UN Ref):QDe.161 Islamic State of Iraq and the Levant - Khorasan (ISIL - K) was formed on January 10, 2015 by a former Tehrik-e Taliban Pakistan (TTP) (QDe.132) commander and was established by former Taliban faction commanders who swore an oath of allegiance to the Islamic State of Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,15/05/2019,14/05/2019,04/04/2022,13788 +THE ISLAMIC STATE OF IRAQ AND SYRIA—KHORASAN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0357 (UN Ref):QDe.161 Islamic State of Iraq and the Levant - Khorasan (ISIL - K) was formed on January 10, 2015 by a former Tehrik-e Taliban Pakistan (TTP) (QDe.132) commander and was established by former Taliban faction commanders who swore an oath of allegiance to the Islamic State of Iraq and the Levant (listed as Al-Qaida in Iraq (QDe.115)). ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/How-we-work/Notices/View-UN-Notices-Entities",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,15/05/2019,14/05/2019,04/04/2022,13788 +THE LEVANT,,,,,,,,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +THE LEVANT,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +THE LORD,,,,,,,,,,05/10/1973,Stavropol,Russia,Russia,,,,,The spokesperson/chairperson of the Parliament of the Chechen Republic,,,,,,,,,"(UK Sanctions List Ref):GHR0064 (UK Statement of Reasons):Magomed Daudov is Chairman of the Parliament of the Chechen Republic. Daudov is responsible for the severe and systematic human rights violations perpetrated by Ramzan Kadyrov’s administration, specifically the systematic arrest, torture, and murder of LGBT people in Chechnya since 2017. Daudov has also personally participated in the arrest, torture, and murder of LGBT people. (Gender):Male",Individual,AKA,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14014 +THE MAURITANIAN,,Shaykh,Yunis,,,,شيخ يونس الموريتاني,,,00/00/1981,,Saudi Arabia,Mauritania,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0093 (UN Ref):QDi.298 Pakistan-based senior Al-Qaida (QDe.004) leader also associated with The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Wanted by Mauritanian authorities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555823,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,28/09/2011,15/09/2011,31/12/2020,12148 +THE MAURITANIAN,Salih,,,,,,,,,00/00/1981,,Saudi Arabia,Mauritania,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0093 (UN Ref):QDi.298 Pakistan-based senior Al-Qaida (QDe.004) leader also associated with The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Wanted by Mauritanian authorities. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555823,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/09/2011,15/09/2011,31/12/2020,12148 +THE METALLURGY INDUSTRIES OF KHORASAN,,,,,,,,,,,,,,,,,,,2nd km of Khalaj Road,end of Seyyedi St,PO Box 91735-549,,,Mashhad,91735,Iran,(UK Sanctions List Ref):INU0041 (UK Statement of Reasons):Involved in the procurement of components for centrifuges. (Phone number):+98 511 3853008. +98 511 3870225 (Type of entity):Enterprise (Parent company):Ammunition and Metallurgy Group. Ammunition Industries Group (AMIG). Defence Industries Organisation (DIO). Ministry of Defence and Armed Force Logistics (MODAFL),Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12266 +THE MONOTHEISM AND JIHAD GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +THE MOROCCAN,,,,,,,,,,30/12/1968,California,United States,(1) Jordan. (2) United States,,,(1) 548-91-5411 (2) 9681029476,(1) US social security (2) Jordanian,,,,,,,,,,"(UK Sanctions List Ref):AQD0291 (UN Ref):QDi.029 In custody in Jordan since 26 Feb. 2015 for recruitment and support to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Father’s name is Mohammad Hijazi. Mother’s name is Sakina. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1419275",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,6974 +THE MOROCCAN,Abu Abdurrahman,,,,,,,,,19/10/1978,Oslo,Norway,Norway,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0140 (UN Ref):QDi.331 Member of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Physical description: eye colour: brown; hair colour: brown; height: 185 cm. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13128 +THE NORWEGIAN,Abu Abdurrahman,,,,,,,,,19/10/1978,Oslo,Norway,Norway,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0140 (UN Ref):QDi.331 Member of Al-Qaida in the Arabian Peninsula (AQAP) (QDe.129). Physical description: eye colour: brown; hair colour: brown; height: 185 cm. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13128 +THE ORGANIZATION BASE OF JIHAD/COUNTRY OF THE TWO RIVERS,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +THE ORGANIZATION BASE OF JIHAD/MESOPOTAMIA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +THE ORGANIZATION OF AL-QAIDA IN THE ISLAMIC MAGHREB,,,,,,,تنظيم القا عدة ببلاد المغرب الاسلامي,,,,,,,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +THE ORGANIZATION OF AL-QAIDA IN THE ISLAMIC MAGHREB,,,,,,,تنظيم القا عدة ببلاد المغرب الاسلامي,,,,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +THE ORGANIZATION OF AL-QAIDA IN THE ISLAMIC MAGHREB,,,,,,,تنظيم القا عدة ببلاد المغرب الاسلامي,,,,,,,,,,,,,,,,,,,Mauritania,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +THE ORGANIZATION OF AL-QAIDA IN THE ISLAMIC MAGHREB,,,,,,,تنظيم القا عدة ببلاد المغرب الاسلامي,,,,,,,,,,,,,,,,,,,Morocco,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +THE ORGANIZATION OF AL-QAIDA IN THE ISLAMIC MAGHREB,,,,,,,تنظيم القا عدة ببلاد المغرب الاسلامي,,,,,,,,,,,,,,,,,,,Niger,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +THE ORGANIZATION OF AL-QAIDA IN THE ISLAMIC MAGHREB,,,,,,,تنظيم القا عدة ببلاد المغرب الاسلامي,,,,,,,,,,,,,,,,,,,Tunisia,"(UK Sanctions List Ref):AQD0081 (UN Ref):QDe.014 Headed by Abdelmalek Droukdel (QDi.232). Zone of operation includes Algeria and parts of Mali, Mauritania, Niger, Tunisia and Morocco. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278467",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,7247 +THE ORGANIZATION OF JIHAD’S BASE IN THE COUNTRY OF THE TWO RIVERS,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0028 (UN Ref):QDe.115 Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278296,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,18/10/2004,18/10/2004,31/12/2020,8441 +THE PLANAR COMPANY,,,,,,,,,,,,,,,,,,,Likhvintseva St.,76,Udmurtskaya,,,Izhevsk,426034,Russia,"(UK Sanctions List Ref):RUS1086 (UK Statement of Reasons):PLANAR LLC is engaged in the manufacture and supply of electronic components and equipment. As such, it is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the electronics sector, a sector of strategic significance to the Government of Russia.",Entity,Primary name,,Russia,24/03/2022,24/03/2022,14/06/2022,15029 +THE POPULAR FRONT FOR LIBERATION OF PALESTINE - GENERAL COMMAND,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0039 (UK Statement of Reasons):The Popular Front for the Liberation of Palestine General Command (PFLP-GC) is a nationalist Palestinian organization which was founded in 1968. The PFLP-GC has carried out numerous terrorist attacks in Europe and the Middle East and has repeatedly stated that its aim is establishing a global Islamic state by violent means.,Entity,Primary name,,Counter-Terrorism (International),02/11/2001,31/12/2020,18/02/2021,7399 +THE POPULAR FRONT FOR LIBERATION OF PALESTINE (PFLP),,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0040 (UK Statement of Reasons):The Popular Front for the Liberation of Palestine (PFLP) has claimed responsibility for numerous terrorist attacks since the 1970s and has repeatedly stated that its aim is establishing a global Islamic state by violent means.,Entity,Primary name,,Counter-Terrorism (International),02/11/2001,31/12/2020,31/12/2020,7401 +THE POST SAVING FUND,,,,,,,,,,,,,,,,,,,P.O. Box: 5467,Amous Square,Al-Furat St.,Merjah,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0327 Banking (UK Statement of Reasons):There are reasonable grounds to suspect that the Saving Bank is or has been involved in supporting or benefitting from the Syrian regime, in particular through the provision of financial services and making available funds or other economic resources. Further, it is owned or controlled by the state or otherwise associated with the Assad regime. (Phone number):(1) 222 8403 (2) 224 4909 (3) 245 3471 (Email address):post-gm@net.sy. s.bank@scs-net.org (Type of entity):State-owned",Entity,AKA,,Syria,24/01/2012,31/12/2020,13/05/2022,12485 +THE SABOTAGE AND MILITARY SURVEILLANCE GROUP OF THE RIYADH AL-SALIHIN MARTYRS,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0075 (UN Ref):QDe.100 Associated with the Islamic International Brigade (IIB) (QDe.099), the Special Purpose Islamic Regiment (SPIR) (QDe.101) and Emarat Kavkaz (QDe.131). Review pursuant to Security Council resolution 1822 (2008) was concluded on 17 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5281893",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/03/2003,04/03/2003,31/12/2020,7138 +THE SENTINELS,,,,,,,,,,,,,,,,,,,,,,,,,,Mali,(UK Sanctions List Ref):AQD0008 (UN Ref):QDe.141 Founded on 20 Aug. 2013 as result of a merger between Al Moulathamoun (QDe.140) and the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134). Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and led by Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,16/06/2014,02/06/2014,31/12/2020,12985 +THE SOLDIERS OF AQSA,,,,,,,,,,,,,,,,,,,,,,,,Idlib Governorate,,Syria,"(UK Sanctions List Ref):AQD0061 (UN Ref):QDe.156 Associated with the Al Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116596 Also suspected to be in Hama Governorate, Syrian Arab Republic",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13509 +THE SOLDIERS OF AQSA,,,,,,,,,,,,,,,,,,,,,,,,Hama Governorate,,Syria,"(UK Sanctions List Ref):AQD0061 (UN Ref):QDe.156 Associated with the Al Nusrah Front for the People of the Levant (QDe.137). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/6116596 Also suspected to be in Hama Governorate, Syrian Arab Republic",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,24/07/2017,20/07/2017,31/12/2020,13509 +THE SPECIAL TECHNOLOGY CENTRE LLC,,,,,,,OOO Специальный Технологический Центр,Cyrillic,Russian,,,,,,,,,,12 Lit. Pom 3 N,Apraksin Lane,,,,St Petersburg,191023,Russia,"(UK Sanctions List Ref):RUS1426 OGRN: 1089847243870; KPP: 784001001 (UK Statement of Reasons):The Special Technology Centre LLC (hereafter known as STC LLC) is a Russian entity producing electronic equipment for use in radio monitoring equipment and unmanned aviation vehicles for use by the Government of Russia. STC LLC is therefore obtaining a benefit from or supporting the Government of Russia by, carrying on business in the Russian electronics sector, a sector of strategic significance to the Government of Russia. (Phone number):6 (812) 244-33-13 (Website):https://www.stc-spb.ru/ (Email address):office@stc-spb.ru (Business Reg No):Tax Identification Number: INN: 7840392660",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15379 +THE SPECIAL TECHNOLOGY CENTRE LLC,,,,,,,OOO Специальный Технологический Центр,Cyrillic,Russian,,,,,,,,,,lit. B,office 53,21 Gzhatskaya street,,,St Petersburg,195220,Russia,"(UK Sanctions List Ref):RUS1426 OGRN: 1089847243870; KPP: 784001001 (UK Statement of Reasons):The Special Technology Centre LLC (hereafter known as STC LLC) is a Russian entity producing electronic equipment for use in radio monitoring equipment and unmanned aviation vehicles for use by the Government of Russia. STC LLC is therefore obtaining a benefit from or supporting the Government of Russia by, carrying on business in the Russian electronics sector, a sector of strategic significance to the Government of Russia. (Phone number):6 (812) 244-33-13 (Website):https://www.stc-spb.ru/ (Email address):office@stc-spb.ru (Business Reg No):Tax Identification Number: INN: 7840392660",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15379 +THE STATE INSTITUTION FOR COTTON GINNING AND MARKETING,,,,,,,المؤسسة العامة لحلج وتسويق الأقطان,,,,,,,,,,,,Bab Al-Faraj,,,,P.O. Box 729,Aleppo,,,(UK Sanctions List Ref):SYR0291 (UK Statement of Reasons):State-owned company. Provides financial support to the Syrian regime. (Phone number):(1) +96321 2239495 (2) +96321 2239496 (3) +96321 2239497 (4) +96321 2239498 (Website):www.cmo.gov.sy (Email address):Cmo-aleppo@mail.sy,Entity,Primary name variation,,Syria,24/07/2012,31/12/2020,13/05/2022,12733 +THE UNCLE,,,,,,,,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,,,,,,Dbabsha-Sabratah,,,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +THE UNCLE,,,,,,,,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,,,,,,Zawiya,,Libya,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +THE UNCLE,,,,,,,,,,07/05/1988,"possibly Sabratha, Talil neighbourhood",,Libya,LY53FP76,(Libyan). Issued in Tripoli on 29 September 2015,119880387067,,Commander of the Anas al-Dabbashi militia. Leader of a transnational trafficking network,Garabulli,,,,,Garabulli,,Libya,"(UK Sanctions List Ref):LIB0046 (UN Ref):LYi.023 Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze) INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/",Individual,AKA,Low quality,Libya,08/06/2018,07/06/2018,21/01/2021,13673 +THE UNITY OF ISLAMIC YOUTH,,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +THE VEILED,,,,,,,,,,,,,,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0007 (UN Ref):QDe.140 Founded in 2012 as a splinter group of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). On 20 Aug. 2013, Al Moulathamoun merged with the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134) and established Al Mourabitoun (QDe.141). Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and led by Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,16/06/2014,02/06/2014,31/12/2020,12984 +THE VEILED,,,,,,,,,,,,,,,,,,,,,,,,,,Mali,"(UK Sanctions List Ref):AQD0007 (UN Ref):QDe.140 Founded in 2012 as a splinter group of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). On 20 Aug. 2013, Al Moulathamoun merged with the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134) and established Al Mourabitoun (QDe.141). Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and led by Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,16/06/2014,02/06/2014,31/12/2020,12984 +THE VEILED,,,,,,,,,,,,,,,,,,,,,,,,,,Niger,"(UK Sanctions List Ref):AQD0007 (UN Ref):QDe.140 Founded in 2012 as a splinter group of the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). On 20 Aug. 2013, Al Moulathamoun merged with the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO) (QDe.134) and established Al Mourabitoun (QDe.141). Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and led by Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,16/06/2014,02/06/2014,31/12/2020,12984 +THE VICTORY FRONT,,,,,,,جبهة النصرة,,,,,,,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +THE VICTORY FRONT,,,,,,,جبهة النصرة,,,,,,,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0026 (UN Ref):QDe.137 Associated with Al-Qaida (QDe.004). Brought Syrian and foreign Al-Qaida in Iraq (QDe.115) and Asbat al-Ansar (QDe.007) fighters, along with other foreign Al-Qaida operatives, to join local elements in Syrian Arab Republic to carry out terrorist and guerrilla operations there. Previously associated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), and its leader Ibrahim Awwad Ibrahim Ali al-Badri al-Samarrai (QDi.299) but separated from that group in 2013. In Jul. 2016, Abu Mohammed Al-Jawlani (QDi.317), the leader of Al-Nusrah Front for the People of the Levant, announced the group had changed its name to Jabhat Fath al-Sham and was no longer affiliated with any external entity. Despite the announcement and attempts to distinguish itself from Al-Nusrah Front for the People of the Levant, the group remains aligned with Al-Qaida and continues to carry out terrorist operations under this new name. In January 2017, Al-Nusrah Front created Hay’at Tahrir al-Sham (HTS) as a vehicle to advance its position in the Syrian insurgency and further its own goals as Al-Qaida’s affiliate in Syria. Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq (QDe.115). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5790822",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,14/05/2014,12/01/2022,12981 +THE WORLD ISLAMIC FRONT FOR JIHAD AGAINST JEWS AND CRUSADERS,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0027 (UN Ref):QDe.004 Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278330,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,23/02/2001,06/10/2001,31/12/2020,6965 +THE YOUTH,,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +THIRD FLOOR,,,,,,,,,,,,,,,,,,,,Changwang Street,,,,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +THIRD FLOOR,,,,,,,,,,,,,,,,,,,"Second KWP Government Building (Korean – Ch’o’ngsa, Urban Town (Korean-Dong)",,,,Chung Ward,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +THIRD FLOOR,,,,,,,,,,,,,,,,,,,Chung-Guyok (Central District),Sosong Street,,,Kyongrim-Dong,Pyongyang,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0182 (UN Ref):KPe.030 DPRK government entity,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12453 +THIRWAT,Salah,Shihata,,,,,,,,29/06/1960,,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0327 (UN Ref):QDi.017 Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/12/2001,06/10/2001,31/12/2020,6899 +THIRWAT,Shahata,,,,,,,,,29/06/1960,,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0327 (UN Ref):QDi.017 Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,06/12/2001,06/10/2001,31/12/2020,6899 +THORIQ,Abu,,,,,,,,,16/08/1960,"Kudus, Central Java",Indonesia,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0116 (UN Ref):QDi.186 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4680925,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,31/12/2020,8635 +THORIQUDDIN,,,,,,,,,,16/08/1960,"Kudus, Central Java",Indonesia,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0116 (UN Ref):QDi.186 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4680925,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,31/12/2020,8635 +THORIQUIDDIN,,,,,,,,,,16/08/1960,"Kudus, Central Java",Indonesia,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0116 (UN Ref):QDi.186 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4680925,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,31/12/2020,8635 +THORIQUIDIN,,,,,,,,,,16/08/1960,"Kudus, Central Java",Indonesia,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0116 (UN Ref):QDi.186 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4680925,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,31/12/2020,8635 +THOSE WHO SIGN IN BLOOD,,,,,,,,,,,,,,,,,,,,,,,,,,Mali,(UK Sanctions List Ref):AQD0006 (UN Ref):QDe.139 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014) and led by Mokhtar Belmokhtar (QDi.136). Active in the Sahel/Sahara region. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,16/06/2014,02/06/2014,31/12/2020,12983 +THOYIB,Ibnu,,,,,,,,,00/00/1958,"Pacitan, East Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0110 (UN Ref):QDi.216 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429180,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8834 +THREAT GROUP-4127/IRON TWILIGHT,,,,,,,,,,,,,,,,,,,Komsomol'skiy Prospekt,,,,,20 Moscow,119146,Russia,"(UK Sanctions List Ref):CYB0012 (UK Statement of Reasons):The 85th Main Centre for Special Technologies (GTsSS) of the Russian General Staff of the Armed Forces of the Russian Federation (GRU) - also known by its field post number ‘26165’ and industry nicknames: APT28, Fancy Bear, Sofacy Group, Pawn Storm, Strontium - was involved in illegally accessing the information systems of the German Federal Parliament (Deutscher Bundestag) without permission in April and May 2015. The military intelligence officers of the 85th controlled, directed and took part in this activity, accessing the email accounts of MPs and stealing their data. Their activity interfered with the parliament’s information systems affecting its operation for several days, undermining the exercise of parliamentary functions in Germany. (Type of entity):Department within Government (Parent company):Russian Ministry of Defence",Entity,AKA,,Cyber,23/10/2020,31/12/2020,31/12/2020,13984 +THU,Aung,Myo,,,,Major,,,,,,,Myanmar,,,,,Field Unit Commander of 33rd Light Infantry Division (LID) of the Myanmar Armed Forces (Tatmadaw),,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0009 (UK Statement of Reasons):Major Aung Myo Thu, Field Unit Commander of the 33rd LID, oversaw military operations carried out in Rakhine state in 2017. In that context, he is responsible for atrocities and serious human rights violations, repression of the civilian population, and actions that threaten the peace, stability or security of Myanmar. These include unlawful killings, forced detainment, sexual violence, and systematic burning of villages. (Gender):Male",Individual,Primary name,,Myanmar,24/12/2018,29/04/2021,11/11/2022,13736 +TIANJIN HUAYING HAITAI SCIENCE AND TECHNOLOGY DEVELOPMENT CO. LTD,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):CYB0003 (UK Statement of Reasons):Huaying Haitai, known in cyber security circles as APT10 (Advanced Persistent Threat 10), Red Apollo, CVNX, Stone Panda, MenuPass and Potassium, was involved in relevant cyber activity Operation Cloud Hopper, one of the most significant and widespread cyber instructions to date. They conducted data interference through the theft of intellectual property and sensitive commercial data over many years. Huaying Haitai targeted companies across six continents and sectors banking and finance, government, aviation, space, and satellite technology, manufacturing technology, medical, oil and gas, mining, communications technology, computer processing technology, and defence technology. This activity undermined the prosperity of the United Kingdom and countries other than the United Kingdom (Website):huayinghaitai.com (Type of entity):Company",Entity,Primary name,,Cyber,31/07/2020,31/12/2020,31/12/2020,13909 +TIDEWATER,,,,,,,شرکت تایدواتر خاورمیانه,,,,,,,,,,,,No. 80,Tidewater Building,Vozara Street,Saie Park,,Tehran,,Iran,(UK Sanctions List Ref):INU0045 (UK Statement of Reasons):Owned or controlled by the IRGC. (Type of entity):Port operator,Entity,Primary name,,Iran (Nuclear),24/01/2012,31/12/2020,31/12/2020,12460 +TIDEWATER MIDDLE EAST CO.,,,,,,,,,,,,,,,,,,,No. 80,Tidewater Building,Vozara Street,Saie Park,,Tehran,,Iran,(UK Sanctions List Ref):INU0045 (UK Statement of Reasons):Owned or controlled by the IRGC. (Type of entity):Port operator,Entity,AKA,,Iran (Nuclear),24/01/2012,31/12/2020,31/12/2020,12460 +TIDEWATER MIDDLE EAST COMPANY,,,,,,,,,,,,,,,,,,,No. 80,Tidewater Building,Vozara Street,Saie Park,,Tehran,,Iran,(UK Sanctions List Ref):INU0045 (UK Statement of Reasons):Owned or controlled by the IRGC. (Type of entity):Port operator,Entity,AKA,,Iran (Nuclear),24/01/2012,31/12/2020,31/12/2020,12460 +TIESAN,Jin,,,,,,金铁三,,,11/03/1971,,,North Korea,645120378,Issued by the Democratic People's Republic of Korea,,,Representative of Daedong Credit Bank (DCB),,,,,,,,,"(UK Sanctions List Ref):DPR0226 (UN Ref):KPi.035 Kim Chol Sam is a representative for Daedong Credit Bank (DCB) who has been involved in managing transactions on behalf of DCB Finance Limited. As an overseas-based representative of DCB, it is suspected that Kim Chol Sam has facilitated transactions worth hundreds of thousands of dollars and likely managed millions of dollars in DPRK related accounts with potential links to nuclear/missile programs.",Individual,Primary name variation,Good quality,Democratic People's Republic of Korea,09/12/2016,30/11/2016,02/08/2022,13420 +TIGER,The,,,,,,سلمان,,,00/00/1970,"Jableh, Latakia Province",Syria,Syria,,,,,Commander of Quwat al-Nimr (Tiger Forces),,,,,,,,,(UK Sanctions List Ref):SYR0224 (UK Statement of Reasons):Commander of Tiger Forces / 5th Division. Responsible for violent repression against the civilian population in Syria. (Gender):Male,Individual,AKA,,Syria,23/07/2014,31/12/2020,18/02/2021,13025 +TIGER CUB,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0097 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK tanker M/V AN SAN 1 was involved in ship-to-ship transfer operations, likely for oil, in late January 2018. Listed as asset of Korea Ansan Shipping Company (OFSI ID: 13633, UN Reference Number: UN Ref KPe.062) (IMO number):7303803 (Current owners):Korean Ansan Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Chemical Carrier (Tonnage of ship):1757 (Length of ship):86 (Year built):1973",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13648 +TIKHONOVA,Katerina,,,,,,"ТИХОНОВА, Катерина",,,31/08/1986,Dresden,Germany,Russia,,,503227394158,Taxpayer ID,,,,,,,,,,"(UK Sanctions List Ref):RUS1129 (UK Statement of Reasons):Katerina Vladimirovna TIKHONOVA is widely reported to be the daughter of the President of the Russian Federation, Vladimir Vladimirovich PUTIN, with whom she is closely associated and from whom she has obtained material benefit. PUTIN is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,08/04/2022,08/04/2022,14/06/2022,15079 +TIKHONOVA,Katerina,Vladimirovna,,,,,"ТИХОНОВА, Катерина Владимировна",,,31/08/1986,Dresden,Germany,Russia,,,503227394158,Taxpayer ID,,,,,,,,,,"(UK Sanctions List Ref):RUS1129 (UK Statement of Reasons):Katerina Vladimirovna TIKHONOVA is widely reported to be the daughter of the President of the Russian Federation, Vladimir Vladimirovich PUTIN, with whom she is closely associated and from whom she has obtained material benefit. PUTIN is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name,,Russia,08/04/2022,08/04/2022,14/06/2022,15079 +TIKHONOVA,Yekaterina,,,,,,,,,31/08/1986,Dresden,Germany,Russia,,,503227394158,Taxpayer ID,,,,,,,,,,"(UK Sanctions List Ref):RUS1129 (UK Statement of Reasons):Katerina Vladimirovna TIKHONOVA is widely reported to be the daughter of the President of the Russian Federation, Vladimir Vladimirovich PUTIN, with whom she is closely associated and from whom she has obtained material benefit. PUTIN is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,08/04/2022,08/04/2022,14/06/2022,15079 +TILFAH,SAJIDA,KHAYRALLAH,,,,,ساجدة خير الله طلفاح,,,00/00/1937,"Al-Awja, near Tikrit",Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0117 (UN Ref):IQi.056,Individual,Primary name,,Iraq,22/04/2004,07/04/2004,31/12/2020,8259 +TIMCHENKO,Elena,Petrovna,,,,,Елена Петровна ТИМЧЕНКО,Cyrillic,Russian,21/12/1955,,,(1) Finland (2) Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1312 (UK Statement of Reasons):Elena Petrovna TIMCHENKO is closely associated with Gennadiy Nikolayevich TIMCHENKO, a Russian billionaire. Gennadiy Nikolayevich TIMCHENKO is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,14/06/2022,15265 +TIMCHENKO,Gennadi,Nikolayevich,,,,,,,,09/11/1952,Leninakan,Armenia,(1) Russia (2) Finland (3) Armenia,,,,,Shareholder in Bank Russia,,,,,,,,,"(UK Sanctions List Ref):RUS0235 (UK Statement of Reasons):Gennadiy Timchenko, hereafter Timchenko is a major shareholder in Bank “Rossiya”. Bank “Rossiya” is a key stakeholder in the National Media Group which supports Russian policy which is destabilising Ukraine. Following the annexation of Crimea, Bank “Rossiya” has expanded its bank branches and provision of insurance and investment throughout Crimea and Sevastopol; and offers support to military activities and the formation of major transport links and cards that allow the public to travel easily around the peninsula. Therefore, Bank “Rossiya” has supported the consolidation of Crimea into the Russian Federation by integrating the financial system following the annexation of Crimea. Timchenko therefore is or has been involved in engaging in, providing support for, or promoting any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. Additionally, Timchenko is associated with a person involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,22/02/2022,22/02/2022,22/02/2022,14181 +TIMCHENKO,Gennadiy,Nikolayevich,,,,,Геннадий Николаевич Тимченко,,,09/11/1952,Leninakan,Armenia,(1) Russia (2) Finland (3) Armenia,,,,,Shareholder in Bank Russia,,,,,,,,,"(UK Sanctions List Ref):RUS0235 (UK Statement of Reasons):Gennadiy Timchenko, hereafter Timchenko is a major shareholder in Bank “Rossiya”. Bank “Rossiya” is a key stakeholder in the National Media Group which supports Russian policy which is destabilising Ukraine. Following the annexation of Crimea, Bank “Rossiya” has expanded its bank branches and provision of insurance and investment throughout Crimea and Sevastopol; and offers support to military activities and the formation of major transport links and cards that allow the public to travel easily around the peninsula. Therefore, Bank “Rossiya” has supported the consolidation of Crimea into the Russian Federation by integrating the financial system following the annexation of Crimea. Timchenko therefore is or has been involved in engaging in, providing support for, or promoting any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. Additionally, Timchenko is associated with a person involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,22/02/2022,22/02/2022,22/02/2022,14181 +TIMCHENKO,Gennady,Nikolayevich,,,,,,,,09/11/1952,Leninakan,Armenia,(1) Russia (2) Finland (3) Armenia,,,,,Shareholder in Bank Russia,,,,,,,,,"(UK Sanctions List Ref):RUS0235 (UK Statement of Reasons):Gennadiy Timchenko, hereafter Timchenko is a major shareholder in Bank “Rossiya”. Bank “Rossiya” is a key stakeholder in the National Media Group which supports Russian policy which is destabilising Ukraine. Following the annexation of Crimea, Bank “Rossiya” has expanded its bank branches and provision of insurance and investment throughout Crimea and Sevastopol; and offers support to military activities and the formation of major transport links and cards that allow the public to travel easily around the peninsula. Therefore, Bank “Rossiya” has supported the consolidation of Crimea into the Russian Federation by integrating the financial system following the annexation of Crimea. Timchenko therefore is or has been involved in engaging in, providing support for, or promoting any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. Additionally, Timchenko is associated with a person involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,22/02/2022,22/02/2022,22/02/2022,14181 +TIMCHENKO,Natalya,,,,,,,,,11/11/1978,St Petersburg,Russia,Russia,,,,,,27 Barkston Gardens,,,,,London,SW5 0ER,United Kingdom,"(UK Sanctions List Ref):RUS1018 (UK Statement of Reasons):Natalya BROWNING is closely associated with Gennadiy Nikolayevich TIMCHENKO, a Russian billionaire. Gennadiy Nikolayevich TIMCHENKO is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,04/05/2022,04/05/2022,29/06/2022,15349 +TIMCHENKO,Vycheslav,Stepanovich,,,,,Вячеслав Степанович ТИМЧЕНКО,,,20/11/1955,Novoshakhtinsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0974 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14925 +TIMOFEEV,Aleksandr,Yurievich,,,,,,,,21/09/1964,"Nevinnomyssk, Stavropol Krai",Russia,Ukraine,,,,,Minister of Budget,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0143 (UK Statement of Reasons):Former so-called ‘Minister of Finance and Taxes’ of the ‘Donetsk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Dismissed as so-called ‘Minister of Finance and Taxes’ in September 2018. (Gender):Male",Individual,Primary name,,Russia,16/02/2015,31/12/2020,16/09/2022,13208 +TIMOFEEV,Olek,Sandr,Yuriyovych,,,,,,,21/09/1964,"Nevinnomyssk, Stavropol Krai",Russia,Ukraine,,,,,Minister of Budget,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0143 (UK Statement of Reasons):Former so-called ‘Minister of Finance and Taxes’ of the ‘Donetsk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Dismissed as so-called ‘Minister of Finance and Taxes’ in September 2018. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13208 +TIMOFEEVA,Olga,Viktorovna,,,,,Ольга Викторовна ТИМОФЕЕВА,,,19/08/1977,Stavropol,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0506 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14451 +TINET,,,,,,,,,,29/01/1971,Roubaix,France,France,,,,,,,,,,,,,France,(UK Sanctions List Ref):AQD0217 (UN Ref):QDi.095 In custody in France as of May 2004. Sentenced to 25 years imprisonment in France in 2007. His sentence is due to end on 13 Jul. 2023 and his unconditional detention to end on 13 Aug. 2020. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4531664,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,27/06/2003,25/06/2003,11/02/2022,7797 +TINKOV,Oleg,Yurievich,,,,,Олег Юрьевич Тиньков,,,25/12/1967,Polysayevo,Russia,Russia,,,,,(1) Former stakeholder in TCS Group Holdings PLC (2) Founder of Tinkoff Bank,,,,,,,,,"(UK Sanctions List Ref):RUS1098 (UK Statement of Reasons):Oleg TINKOV is a prominent Russian businessman. TINKOV has been involved in obtaining a benefit from or supporting the Government of Russia as a previous owner or controller (directly or indirectly) and director, or equivalent, of TCS Group Holding PLC and its holding Tinkoff Bank, which are, and have been, entities carrying on business in the financial sector - a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,24/03/2022,24/03/2022,25/03/2022,15041 +TITSKIY,Anton,Robertovich,,,,,Антон Робертович Тицкий,,,02/12/1990,Volgograd,Russia,Russia,,,,,"Minister of Youth Policy, Occupied Zaporizhzhia",,,,,,,,,"(UK Sanctions List Ref):RUS1560 (UK Statement of Reasons):Anton Robertovich TITSKIY is the so-called ‘Minister of Youth Policy’ in Russian-occupied Zaporizhzhia. TITSKIY is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he is or has engaged in policies or actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15504 +TITSKY,Anton,Robertovich,,,,,,,,02/12/1990,Volgograd,Russia,Russia,,,,,"Minister of Youth Policy, Occupied Zaporizhzhia",,,,,,,,,"(UK Sanctions List Ref):RUS1560 (UK Statement of Reasons):Anton Robertovich TITSKIY is the so-called ‘Minister of Youth Policy’ in Russian-occupied Zaporizhzhia. TITSKIY is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he is or has engaged in policies or actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15504 +TIZ PARS,,,,,,,,,,,,,,,,,,,Damavand Tehran Highway,,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0188 (UN Ref):IRe.075 Tiz Pars is a cover name for SHIG. Between April and July 2007, Tiz Pars attempted to procure a five axis laser welding and cutting machine, which could make a material contribution to Iran's missile programme, on behalf of SHIG. [Old Reference # E.29.I.21] (Parent company):Shahid Hemmat Industrial Group (SHIG)",Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11157 +TKACH,Oleg,Polikarpovich,,,,,Олег Поликарпович ТКАЧ,,,23/09/1967,Kozyatyn,Ukraine,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0899 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14850 +TKACHEV,Alexey,Nikolaevich,,,,,Алексей Николаевич ТКАЧЕВ,,,01/03/1957,Vyselki,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0507 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14452 +TKACHEV,Anton,Olegovich,,,,,Антон Олегович ТКАЧЕВ,,,31/03/1994,Voronezh,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0508 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14453 +TKACHYOV,Alexander,Nikolayevich,,,,,Александр Николаевич Ткачëв,,,23/12/1960,"Vyselki, Krasnodar region",Russia,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0144 (UK Statement of Reasons):Former Governor of the Krasnodar Krai. He was awarded the medal ‘for the liberation of Crimea’ by the Acting head of the Autonomous Republic of Crimea for the support he provided to the unlawful annexation of Crimea. At that occasion, the Acting Head of the Autonomous Republic of Crimea said that Tkachyov was one of the first to express his support to the new ‘leadership’ of Crimea. Was Minister of Agriculture of the Russian Federation (from 22 April 2015 to 7 May 2018). (Gender):Male",Individual,Primary name,,Russia,25/07/2014,31/12/2020,31/12/2020,13043 +TLASS,Anas,,,,,,,,,25/03/1971,,,Syria,,,,,Chairman of the Talas Group,,,,,,,,,"(UK Sanctions List Ref):SYR0257 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy. Through his business activities and investments, Anas Talas also benefits from and/or supports the Syrian regime. In 2018 the Talas Group, chaired by Anas Talas, entered into a SYP 23 billion joint venture with Damascus Cham Holding for the construction of Marota City, a regime-backed luxury residential and commercial development. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13752 +TLASS,Naim,Tala,Mustafa,,,,,,,,,,Syria,,,,,Deputy Chief of General Staff (Logistics and supplies),,,,,,,,,(UK Sanctions List Ref):SYR0228 (UK Statement of Reasons):Deputy Chief of General Staff (logistics and supplies). Responsible for the use of violence against protestors across Syria. (Gender):Male,Individual,AKA,,Syria,15/11/2011,31/12/2020,31/12/2020,12225 +TLASS,Tala,Mustafa,,,,,,,,,,,Syria,,,,,Deputy Chief of General Staff (Logistics and supplies),,,,,,,,,(UK Sanctions List Ref):SYR0228 (UK Statement of Reasons):Deputy Chief of General Staff (logistics and supplies). Responsible for the use of violence against protestors across Syria. (Gender):Male,Individual,Primary name,,Syria,15/11/2011,31/12/2020,31/12/2020,12225 +TMG LTD.,,,,,,,,,,,,,,,,,,,53/64 Chancery Lane,,,,,London,WC2A 1QU,United Kingdom,"(UK Sanctions List Ref):IRQ0061 (UN Ref):IQe.208 Registered company number: 02142819. Last known directors: Hana Paul JON, Adnan Talib Hashim AL-AMIRI, Dr. Safa Hadi Jawad AL-HABOBI. Shareholders: 3,700,000 ordinary shares: TDG Ltd. 100,000 ordinary shares: Admincheck Ltd., 200,000 ordinary shares: Echosabre Ltd.",Entity,AKA,,Iraq,02/07/2003,12/05/2006,31/12/2020,7818 +TNT,Abu,Jihad,,,,,,,,04/07/1967,Rio Claro,Trinidad and Tobago,(1) Trinidad and Tobago. (2) United States,(1) TB162181. (2) 420985453,"(1) Trinidad and Tobago. Issued on 27 January 2015, expired 26 January 2020. (2) United States of America. Expired 6 February 2017.",19670704052,Trinidad and Tobago,,,,,,,,,United States,"(UK Sanctions List Ref):AQD0373 (UN Ref):QDi.430 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts. Physical description: height 176 cm, weight 73 kg, medium built, colour of eyes- brown, colour of hair- black/bald, complexion- brown. Speaks English. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals a) United States of America (in detention, Federal Detention Centre - Miami, Register Number: 10423-509) b)12 Rio Claro Mayaro Road, Rio Claro, Trinidad and Tobago (previous location 2008 - March 2015) c) Guayaguayare Road, Rio Claro, Trinidad and Tobago (previous location circa 2003) d) United States of America (previous location- January 1991 - 2008) (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/11/2021,23/11/2021,04/04/2022,14153 +TNT,Abu,Jihad,,,,,,,,04/07/1967,Rio Claro,Trinidad and Tobago,(1) Trinidad and Tobago. (2) United States,(1) TB162181. (2) 420985453,"(1) Trinidad and Tobago. Issued on 27 January 2015, expired 26 January 2020. (2) United States of America. Expired 6 February 2017.",19670704052,Trinidad and Tobago,,12 Rio Claro Mayaro Road,,,,,Rio Claro,,Trinidad and Tobago,"(UK Sanctions List Ref):AQD0373 (UN Ref):QDi.430 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts. Physical description: height 176 cm, weight 73 kg, medium built, colour of eyes- brown, colour of hair- black/bald, complexion- brown. Speaks English. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals a) United States of America (in detention, Federal Detention Centre - Miami, Register Number: 10423-509) b)12 Rio Claro Mayaro Road, Rio Claro, Trinidad and Tobago (previous location 2008 - March 2015) c) Guayaguayare Road, Rio Claro, Trinidad and Tobago (previous location circa 2003) d) United States of America (previous location- January 1991 - 2008) (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/11/2021,23/11/2021,04/04/2022,14153 +TNT,Abu,Jihad,,,,,,,,04/07/1967,Rio Claro,Trinidad and Tobago,(1) Trinidad and Tobago. (2) United States,(1) TB162181. (2) 420985453,"(1) Trinidad and Tobago. Issued on 27 January 2015, expired 26 January 2020. (2) United States of America. Expired 6 February 2017.",19670704052,Trinidad and Tobago,,Federal Detention Centre - Miami,,,,,,,United States,"(UK Sanctions List Ref):AQD0373 (UN Ref):QDi.430 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts. Physical description: height 176 cm, weight 73 kg, medium built, colour of eyes- brown, colour of hair- black/bald, complexion- brown. Speaks English. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals a) United States of America (in detention, Federal Detention Centre - Miami, Register Number: 10423-509) b)12 Rio Claro Mayaro Road, Rio Claro, Trinidad and Tobago (previous location 2008 - March 2015) c) Guayaguayare Road, Rio Claro, Trinidad and Tobago (previous location circa 2003) d) United States of America (previous location- January 1991 - 2008) (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/11/2021,23/11/2021,04/04/2022,14153 +TNT,Abu,Jihad,,,,,,,,04/07/1967,Rio Claro,Trinidad and Tobago,(1) Trinidad and Tobago. (2) United States,(1) TB162181. (2) 420985453,"(1) Trinidad and Tobago. Issued on 27 January 2015, expired 26 January 2020. (2) United States of America. Expired 6 February 2017.",19670704052,Trinidad and Tobago,,Guayaguayare Road,,,,,Rio Claro,,Trinidad and Tobago,"(UK Sanctions List Ref):AQD0373 (UN Ref):QDi.430 Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Recruited for ISIL and instructed individuals to perpetrate terrorist acts. Physical description: height 176 cm, weight 73 kg, medium built, colour of eyes- brown, colour of hair- black/bald, complexion- brown. Speaks English. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals a) United States of America (in detention, Federal Detention Centre - Miami, Register Number: 10423-509) b)12 Rio Claro Mayaro Road, Rio Claro, Trinidad and Tobago (previous location 2008 - March 2015) c) Guayaguayare Road, Rio Claro, Trinidad and Tobago (previous location circa 2003) d) United States of America (previous location- January 1991 - 2008) (Gender):Male",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/11/2021,23/11/2021,04/04/2022,14153 +TO CHUN,PAK,,,,,,,,,09/03/1944,,,,,,,,Former Secretary of Munitions Industry Department (MID). Adviser on nuclear and missile programmes. Former State Affairs Commission member. Member of the Workers’ Party of Korea Political Bureau,,,,,,,,,(UK Sanctions List Ref):DPR0257 (UN Ref):KPi.050 Pak To Chun is a former Secretary of Munitions Industry Department (MID) and currently advises on affairs relating to nuclear and missile programmes. He is a former State Affairs Commission member and is a member Workers’ Party of Korea Political Bureau.,Individual,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13480 +TO’-CH’UN,Pak,,,,,,,,,09/03/1944,,,,,,,,Former Secretary of Munitions Industry Department (MID). Adviser on nuclear and missile programmes. Former State Affairs Commission member. Member of the Workers’ Party of Korea Political Bureau,,,,,,,,,(UK Sanctions List Ref):DPR0257 (UN Ref):KPi.050 Pak To Chun is a former Secretary of Munitions Industry Department (MID) and currently advises on affairs relating to nuclear and missile programmes. He is a former State Affairs Commission member and is a member Workers’ Party of Korea Political Bureau.,Individual,AKA,Good quality,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13480 +TODOROVA,Anna,Yurievena,,,,,"ТОДОРОВА, Анна Юрьевна",Cyrillic,Russian,20/02/1988,,,,,,,,,3 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1157 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘Government of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15109 +TOHAMI,Khaled,,,,,,,,,00/00/1946,Genzur,,,,,,,Former Director of Internal Security Office,,,,,,,,,"(UK Sanctions List Ref):LIB0036 (UK Statement of Reasons):As the former Director of Internal Security Office, General Khaled carried out activities on behalf of the former Qadhafi regime and is associated with and implemented the repressive policies of that regime. (Gender):Male",Individual,Primary name,,Libya,03/03/2011,31/12/2020,31/12/2020,11644 +TOHME,Kamal,Eddin,,,,,,,,00/00/1959,Damascus,Syria,Syria,,,,,Former Industry Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0119 (UK Statement of Reasons):Former Minister of Industry from 2013 to at least 2016. As a former Government Minister, he shares responsibility for the regime's repression of the civilian population. Further, there are reasonable grounds to suspect that as a member of the Board of Directors for the state owned General Establishment for Chemical Industries he is also a ‘prominent person operating or controlling a business in Syria’ and continues to be associated with members of the regime. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12988 +TOHME,Kamal,el din,,,,,,,,00/00/1959,Damascus,Syria,Syria,,,,,Former Industry Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0119 (UK Statement of Reasons):Former Minister of Industry from 2013 to at least 2016. As a former Government Minister, he shares responsibility for the regime's repression of the civilian population. Further, there are reasonable grounds to suspect that as a member of the Board of Directors for the state owned General Establishment for Chemical Industries he is also a ‘prominent person operating or controlling a business in Syria’ and continues to be associated with members of the regime. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12988 +TOHME,Kamaleddine,,,,,,,,,00/00/1959,Damascus,Syria,Syria,,,,,Former Industry Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0119 (UK Statement of Reasons):Former Minister of Industry from 2013 to at least 2016. As a former Government Minister, he shares responsibility for the regime's repression of the civilian population. Further, there are reasonable grounds to suspect that as a member of the Board of Directors for the state owned General Establishment for Chemical Industries he is also a ‘prominent person operating or controlling a business in Syria’ and continues to be associated with members of the regime. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12988 +TOKAREV,Nikolai,,,,,,,,,20/12/1950,Karaganda,Kazakhstan,Russia,,,,,(1) Chairman of the Management (2) President of Transneft,,,,,,,,,"(UK Sanctions List Ref):RUS0271 (UK Statement of Reasons):Nikolai TOKAREV, hereafter TOKAREV, is a prominent Russian businessman with significant interests in the extractives and energy industries, as well as a longstanding associate of Vladimir Putin. He is currently President of Transneft – a state enterprise that provides services for oil and oil products transportation within Russia and beyond. Transneft is a Government of Russia-affiliated entity which carries on business in sectors of strategic significance to the Government of Russia. TOKAREV is working as a director (whether executive or non-executive), trustee, or equivalent of Transneft, and is therefore a person who is or has been involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,10/03/2022,10/03/2022,10/03/2022,14218 +TOKAREV,Nikolai,Petrovich,,,,,Николай Петрович ТОКАРЕВ,,,20/12/1950,Karaganda,Kazakhstan,Russia,,,,,(1) Chairman of the Management (2) President of Transneft,,,,,,,,,"(UK Sanctions List Ref):RUS0271 (UK Statement of Reasons):Nikolai TOKAREV, hereafter TOKAREV, is a prominent Russian businessman with significant interests in the extractives and energy industries, as well as a longstanding associate of Vladimir Putin. He is currently President of Transneft – a state enterprise that provides services for oil and oil products transportation within Russia and beyond. Transneft is a Government of Russia-affiliated entity which carries on business in sectors of strategic significance to the Government of Russia. TOKAREV is working as a director (whether executive or non-executive), trustee, or equivalent of Transneft, and is therefore a person who is or has been involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,10/03/2022,10/03/2022,10/03/2022,14218 +TOKAREV,Nikolay,,,,,,,,,20/12/1950,Karaganda,Kazakhstan,Russia,,,,,(1) Chairman of the Management (2) President of Transneft,,,,,,,,,"(UK Sanctions List Ref):RUS0271 (UK Statement of Reasons):Nikolai TOKAREV, hereafter TOKAREV, is a prominent Russian businessman with significant interests in the extractives and energy industries, as well as a longstanding associate of Vladimir Putin. He is currently President of Transneft – a state enterprise that provides services for oil and oil products transportation within Russia and beyond. Transneft is a Government of Russia-affiliated entity which carries on business in sectors of strategic significance to the Government of Russia. TOKAREV is working as a director (whether executive or non-executive), trustee, or equivalent of Transneft, and is therefore a person who is or has been involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,10/03/2022,10/03/2022,10/03/2022,14218 +TOKAREVA,Galina,Alekseevna,,,,,ТОКАРЕВА Галина Алексеевна,Cyrillic,Russian,24/09/1951,,,Russia,,,61953640571,,,"Vernaja 30, Road 2",,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS0813 (UK Statement of Reasons):There are reasonable grounds to suspect that Galina Alekseevna TOKAREVA is associated with Nikolai Petrovich TOKAREV. Galina Alekseevna TOKAREVA is the wife of Nikolai Petrovich TOKAREV (RUS0271) who has been designated by the UK since 10/03/2022. Nikolai Petrovich TOKAREV is a prominent Russian businessman with significant interests in the extractives and energy industries, as well as a longstanding associate of Vladimir Putin. He is currently President of Transneft – a state enterprise that provides services for oil and oil products transportation within Russia and beyond. Transneft is a Government of Russia-affiliated entity which carries on business in sectors of strategic significance to the Government of Russia. TOKAREV is working as a director (whether executive or non-executive), trustee, or equivalent of Transneft, and is therefore a person who is or has been involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14764 +TOKAREVA,Maiya,Nikolaevna,,,,,,,,18/01/1975,Karaganda,Kazakhstan,,,,,,,"Brusova Str., 19, 5",,,,,Moscow,125009,Russia,"(UK Sanctions List Ref):RUS0814 (UK Statement of Reasons):Maiya Nikolaevna BOLOTOVA is the daughter of Nikolai Petrovich TOKAREV (RUS0271). There are reasonable grounds to suspect that Maiya Nikolaevna BOLOTOVA is associated with Nikolai Petrovich TOKAREV and has obtained a financial benefit or other material benefit from TOKAREV, who has been designated by the UK since 10/03/2022. Nikolai Petrovich TOKAREV is a prominent Russian businessman with significant interests in the extractives and energy industries, as well as a longstanding associate of Vladimir Putin. He is currently President of Transneft – a state enterprise that provides services for oil and oil products transportation within Russia and beyond. Transneft is a Government of Russia-affiliated entity which carries on business in sectors of strategic significance to the Government of Russia. TOKAREV is working as a director (whether executive or non-executive), trustee, or equivalent of Transneft, and is therefore a person who is or has been involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Female",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,13/05/2022,14765 +TOKHI,QARI,SAIFULLAH,,,,Qari,قاري سیف الله توخى,,,00/00/1964,"Daraz Village, Jaldak wa Tarnak District, Zabul Province",Afghanistan,Afghanistan,,,,,,Chalo Bawari area,,Quetta City,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0134 (UN Ref):TAi.168 Believed to be in Afghanistan/Pakistan border area. Taliban Shadow Deputy Governor and operational commander in Zabul Province, Afghanistan, responsible for the laying of improvised explosive devices and the organisation of suicide attacks. Physical description: height: 180 cm; weight: approximately 90 kg; build: athletic build; eye colour: brown; hair colour: red; complexion: medium brown. Distinguishing physical marks: large round face, full beard, and walks with a limp due to plastic prosthesis in place of his left lower leg. Ethnic background: Pashtun; Belongs to Tokhi tribe, Barkozai sub-tribe (alternative tribe spelling: Torchi). Barkozai (alternative tribe spelling: Bakorzai, باکورزی (sub-tribe, Kishta Barkorzai (lower Barkorzai) clan. Marital Status: married. Father’s name: Agha Mohammad. Brother’s name: Humdullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,19/03/2014,19/03/2014,01/02/2021,13142 +TOKHI,Saifullah,,,,,,,,,00/00/1964,"Daraz Village, Jaldak wa Tarnak District, Zabul Province",Afghanistan,Afghanistan,,,,,,Chalo Bawari area,,Quetta City,,,Baluchistan Province,,Pakistan,"(UK Sanctions List Ref):AFG0134 (UN Ref):TAi.168 Believed to be in Afghanistan/Pakistan border area. Taliban Shadow Deputy Governor and operational commander in Zabul Province, Afghanistan, responsible for the laying of improvised explosive devices and the organisation of suicide attacks. Physical description: height: 180 cm; weight: approximately 90 kg; build: athletic build; eye colour: brown; hair colour: red; complexion: medium brown. Distinguishing physical marks: large round face, full beard, and walks with a limp due to plastic prosthesis in place of his left lower leg. Ethnic background: Pashtun; Belongs to Tokhi tribe, Barkozai sub-tribe (alternative tribe spelling: Torchi). Barkozai (alternative tribe spelling: Bakorzai, باکورزی (sub-tribe, Kishta Barkorzai (lower Barkorzai) clan. Marital Status: married. Father’s name: Agha Mohammad. Brother’s name: Humdullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,19/03/2014,19/03/2014,01/02/2021,13142 +TOLCHINSKIY,Dmitri,,,,,,Дмитрий Толчинский,,,11/05/1982,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0019 (UK Statement of Reasons):Dmitri Tolchinskiy was an officer in the Tax Crimes Department in the Moscow directorate of the Interior Ministry and was involved in the mistreatment of Sergei Magnitsky whilst in detention, which contributed significantly to his death. Tolchinskiy was part of the ‘team’ of investigators, led by Artem Kuznetsov, the Deputy Head of the Tax Crimes Department, who were alleged to be involved in the initial fraud exposed by Sergei Magnitsky and who falsified evidence to justify his arrest and detention. As part of this investigation team, Dmitri Tolchinskiy facilitated the mistreatment of Sergei Magnitsky in custody which was designed to force Magnitsky to retract his earlier testimony. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13878 +TOLSTOY,Petr,Olegovich,,,,,Пётр Олегович ТОЛСТОЙ,,,20/06/1969,Moscow,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0654 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14599 +TOLSTYKINA,Larisa,Valentinovna,,,,,ТОЛСТЫКИНА Лариса Валентиновна,Cyrillic,Russian,03/10/1967,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1149 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15101 +TOM MIRA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0100 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK merchant vessel M/V SAM JONG 2 was involved in ship-to-ship transfer operations of oil in late January 2018. Listed as asset of Korea Samjong Shipping (OFSI ID: 13635, UN Reference Number: UN Ref KPe.064) (IMO number):7408873 (Current owners):Korea Samjong Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Oil tanker (Tonnage of ship):1676 (Length of ship):80 (Year built):1975",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13651 +TOMENKO,Viktor,Petrovich,,,,,Виктор Петрович Томенко,,,12/05/1972,,,Russia,,,,,Governor of the Altai Territory,,,,,,,,,"(UK Sanctions List Ref):RUS1534 (UK Statement of Reasons):Viktor Petrovich TOMENKO is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because TOMENKO is a regional governor. Specifically, TOMENKO is Governor of the Altai Territory. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15487 +TONG CHOL,KIM,,,,,,,,,28/01/1966,,,North Korea,(1) 927234267 (2) 108120258,(1) - (2) Issued by the Democratic People's Republic of Korea on 14 Feb. 2018; expiration date 14 Feb. 2023,,,Kim Tong Chol is an overseas Foreign Trade Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0238 (UN Ref):KPi.068 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,02/08/2022,13563 +TONG MYONG,Kim,,,,,,,,,00/00/1964,,,North Korea,290320764,Issued by the Democratic People's Republic of Korea,,,President of Tanchon Commercial Bank,,,,,,,,,(UK Sanctions List Ref):DPR0239 (UN Ref):KPi.023 Kim Tong My’ong is the President of Tanchon Commercial Bank and has held various positions within Tanchon Commercial bank since at least 2002. He has also played a role in managing Amroggang’s affairs.,Individual,AKA,Good quality,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12441 +TONG MYONG,Kim,,,,,,,,,28/08/1962,,,North Korea,290320764,Issued by the Democratic People's Republic of Korea,,,President of Tanchon Commercial Bank,,,,,,,,,(UK Sanctions List Ref):DPR0239 (UN Ref):KPi.023 Kim Tong My’ong is the President of Tanchon Commercial Bank and has held various positions within Tanchon Commercial bank since at least 2002. He has also played a role in managing Amroggang’s affairs.,Individual,AKA,Good quality,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12441 +TONG MY'ONG,KIM,,,,,,,,,00/00/1964,,,North Korea,290320764,Issued by the Democratic People's Republic of Korea,,,President of Tanchon Commercial Bank,,,,,,,,,(UK Sanctions List Ref):DPR0239 (UN Ref):KPi.023 Kim Tong My’ong is the President of Tanchon Commercial Bank and has held various positions within Tanchon Commercial bank since at least 2002. He has also played a role in managing Amroggang’s affairs.,Individual,Primary name,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12441 +TONG MY'ONG,KIM,,,,,,,,,28/08/1962,,,North Korea,290320764,Issued by the Democratic People's Republic of Korea,,,President of Tanchon Commercial Bank,,,,,,,,,(UK Sanctions List Ref):DPR0239 (UN Ref):KPi.023 Kim Tong My’ong is the President of Tanchon Commercial Bank and has held various positions within Tanchon Commercial bank since at least 2002. He has also played a role in managing Amroggang’s affairs.,Individual,Primary name,,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12441 +TONGBANG BANK,,,,,,,,,,,,,,,,,,,PO Box 32,BEL Building,Jonseung-Dung,,Moranbong District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0126 (UN Ref):KPe.013 DPRK financial institution Bank of East Land facilitates weapons-related transactions for, and other support to, arms manufacturer and exporter Green Pine Associated Corporation (Green Pine). Bank of East Land has actively worked with Green Pine to transfer funds in a manner that circumvents sanctions. In 2007 and 2008, Bank of East Land facilitated transactions involving Green Pine and Iranian financial institutions, including Bank Melli and Bank Sepah. The Security Council designated Bank Sepah in resolution 1747 (2007) for providing support to Iran’s ballistic missile program. Green Pine was designated by the Committee in April 2012.",Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12451 +TONGBANG U'NHAENG,,,,,,,,,,,,,,,,,,,PO Box 32,BEL Building,Jonseung-Dung,,Moranbong District,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0126 (UN Ref):KPe.013 DPRK financial institution Bank of East Land facilitates weapons-related transactions for, and other support to, arms manufacturer and exporter Green Pine Associated Corporation (Green Pine). Bank of East Land has actively worked with Green Pine to transfer funds in a manner that circumvents sanctions. In 2007 and 2008, Bank of East Land facilitated transactions involving Green Pine and Iranian financial institutions, including Bank Melli and Bank Sepah. The Security Council designated Bank Sepah in resolution 1747 (2007) for providing support to Iran’s ballistic missile program. Green Pine was designated by the Committee in April 2012.",Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12451 +TONG-CH'O'L,Kim,,,,,,,,,28/01/1966,,,North Korea,(1) 927234267 (2) 108120258,(1) - (2) Issued by the Democratic People's Republic of Korea on 14 Feb. 2018; expiration date 14 Feb. 2023,,,Kim Tong Chol is an overseas Foreign Trade Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0238 (UN Ref):KPi.068 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,02/08/2022,13563 +TONG-HO,KIM,,,,,,,,,18/08/1969,,,,745310111,,,,"Vietnam Representative for Tanchon Commercial Bank, which is the main DPRK financial entity for weapons and missile-related sales",,,,,,,,Vietnam,(UK Sanctions List Ref):DPR0240 (UN Ref):KPi.046 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,31/12/2020,13476 +TONG-MYO’NG,Kim,,,,,,,,,00/00/1964,,,North Korea,290320764,Issued by the Democratic People's Republic of Korea,,,President of Tanchon Commercial Bank,,,,,,,,,(UK Sanctions List Ref):DPR0239 (UN Ref):KPi.023 Kim Tong My’ong is the President of Tanchon Commercial Bank and has held various positions within Tanchon Commercial bank since at least 2002. He has also played a role in managing Amroggang’s affairs.,Individual,AKA,Good quality,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12441 +TONG-MYO’NG,Kim,,,,,,,,,28/08/1962,,,North Korea,290320764,Issued by the Democratic People's Republic of Korea,,,President of Tanchon Commercial Bank,,,,,,,,,(UK Sanctions List Ref):DPR0239 (UN Ref):KPi.023 Kim Tong My’ong is the President of Tanchon Commercial Bank and has held various positions within Tanchon Commercial bank since at least 2002. He has also played a role in managing Amroggang’s affairs.,Individual,AKA,Good quality,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12441 +TONG-MYONG,Kim,,,,,,,,,00/00/1964,,,North Korea,290320764,Issued by the Democratic People's Republic of Korea,,,President of Tanchon Commercial Bank,,,,,,,,,(UK Sanctions List Ref):DPR0239 (UN Ref):KPi.023 Kim Tong My’ong is the President of Tanchon Commercial Bank and has held various positions within Tanchon Commercial bank since at least 2002. He has also played a role in managing Amroggang’s affairs.,Individual,AKA,Good quality,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12441 +TONG-MYONG,Kim,,,,,,,,,28/08/1962,,,North Korea,290320764,Issued by the Democratic People's Republic of Korea,,,President of Tanchon Commercial Bank,,,,,,,,,(UK Sanctions List Ref):DPR0239 (UN Ref):KPi.023 Kim Tong My’ong is the President of Tanchon Commercial Bank and has held various positions within Tanchon Commercial bank since at least 2002. He has also played a role in managing Amroggang’s affairs.,Individual,AKA,Good quality,Democratic People's Republic of Korea,21/12/2011,02/03/2016,02/08/2022,12441 +TOPILIN,Maxim,Anatolievich,,,,,Максим Анатольевич ТОПИЛИН,,,19/04/1967,Moscow,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0509 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14454 +TOPOR-GILKA,Sergey,Anatolevich,,,,,,,,17/02/1970,Kular Ust-Yansky District,Yakut Autonomous SSR,Russia,,,,,(1) Director General of OAO ‘VO TPE’ until its insolvency (2) Director General of OOO ‘VO TPE’,,,,,,,,,"(UK Sanctions List Ref):RUS0145 (UK Statement of Reasons):In his capacity as Director General of OAO ‘VO TPE’ Sergey Topor-Gilka led the negotiations with Siemens Gas Turbine Technologies OOO on the purchase and delivery of the gas turbines for a power plant in Taman, Krasnodar region, Russian Federation. He was later, as Director General of OOO ’VO TPE’ responsible for the transfer of the gas turbines to Crimea and for the implementation of the construction project of the thermal power plants Balaklava and Tavricheskaya, where the turbines were installed. This contributed to establishing an independent power supply for Crimea and Sevastopol as a means of supporting their separation from Ukraine, and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,04/08/2017,31/12/2020,16/09/2022,13523 +TORIQUDDIN,,,,,,,,,,16/08/1960,"Kudus, Central Java",Indonesia,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0116 (UN Ref):QDi.186 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4680925,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,31/12/2020,8635 +TOSE ETEMAD MOBIN,,,,,,,,,,,,,,,,,,,No. 70 Yasaman Str.,North Dibaji Str.,Farmanieh Ave,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +TOSE ETEMAD MOBIN,,,,,,,,,,,,,,,,,,,Pasadaran Av.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +TOSEE DANESH FANAVARI FARAMOJ,,,,,,,,,,,,,,,,,,,No 15,Eighth Street,Pakistan Avenue,Shahid Beheshti Avenue,,Tehran,,Iran,(UK Sanctions List Ref):INU0099 (UK Statement of Reasons):Has been involved in procurement of materials that are controlled and have direct applications in the manufacture of centrifuges for Iran's uranium enrichment programme. (Phone number):+98 21 88 73 77 53 (Website):www.pooyawave.com (Email address):info@pooyawave.com (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11541 +TOSEE FANAVARI TAJHIZAT KHALA,,,,,,,,,,,,,,,,,,,No 3,Building 3,Shahid Hamid Sadigh Alley,Shariati Street,,Tehran,,Iran,(UK Sanctions List Ref):INU0063 (UK Statement of Reasons):Eyvaz Technic has produced vacuum equipment involved in the construction of the Natanz and Qom/Fordow Fuel Enrichment Plants. (Phone number):+98 21 77509537 (Website):www.eyvaztechnic.com (Email address):info@eyvaztechnic.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12252 +TOSEE FANAVARI TAJHIZAT KHALA,,,,,,,,,,,,,,,,,,,Sharia'ati St.,Shahid Hamid Sadik Alley,Building 3,Number 3,,Tehran,,Iran,(UK Sanctions List Ref):INU0063 (UK Statement of Reasons):Eyvaz Technic has produced vacuum equipment involved in the construction of the Natanz and Qom/Fordow Fuel Enrichment Plants. (Phone number):+98 21 77509537 (Website):www.eyvaztechnic.com (Email address):info@eyvaztechnic.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12252 +TOSE'EH YE E'TEMAD MOBIN,,,,,,,,,,,,,,,,,,,No. 70 Yasaman Str.,North Dibaji Str.,Farmanieh Ave,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +TOSE'EH YE E'TEMAD MOBIN,,,,,,,,,,,,,,,,,,,Pasadaran Av.,,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0062 (UK Statement of Reasons):A company owned or controlled by the IRGC that contributes to financing the strategic interests of the regime (Phone number):22292910 (Fax). 22837516 7 (Website):www.teminvestco.com (Email address):info@etemad mobin.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11188 +TOSONG TECHNOLOGY TRADING CORPORATION,,,,,,,,,,,,,,,,,,,,,,,,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0196 (UN Ref):KPe.015 The Korea Mining Development Corporation (KOMID) is the parent company of Tosong Technology Trading Corporation. KOMID was designated by the Committee in April 2009 and is the DPRK’s primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons. (Parent company):The Korea Mining Development Corporation (KOMID),Entity,Primary name,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12449 +TOSSE SILOOHA,,,,,,,,,,,,,,,,,,,Sayyid Jamal al Din Asad Abadi St.,Fifty Alley No. 3,,,,,1436754819,Iran,(UK Sanctions List Ref):INU0126 (UK Statement of Reasons):Involved in construction projects at a uranium enrichment facility in Iran (Phone number):+98 21 88063891,Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,31/12/2020,12272 +TOSSEH JAHAD E SILO,,,,,,,,,,,,,,,,,,,Sayyid Jamal al Din Asad Abadi St.,Fifty Alley No. 3,,,,,1436754819,Iran,(UK Sanctions List Ref):INU0126 (UK Statement of Reasons):Involved in construction projects at a uranium enrichment facility in Iran (Phone number):+98 21 88063891,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,31/12/2020,12272 +TOTOONOV,Aleksandr,Borisovich,,,,,,,,03/04/1957,"Ordzhonikidze (Vladikavkaz), North Ossetia",Russia,Russia,,,,,(1) Former member of the Committee of International Affairs of the Federation Council of the Russian Federation (until September 2017) (2) Currently Member of the Parliament of North Ossetia,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0146 (UK Statement of Reasons):Former Member of the Committee on Science, Education and Culture of the Federation Council of the Russian Federation. His duties as a Member of the Council of the Russian Federation ended in September 2017. He is currently a member of the parliament of North Ossetia. On 1 March 2014, Totoonov publicly supported in the Federation Council the deployment of Russian forces in Ukraine. (Gender):Male",Individual,Primary name,,Russia,18/03/2014,31/12/2020,16/09/2022,12917 +TOU'MA,Bassam,,,,,,,,,00/00/1969,Safita,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0367 (UK Statement of Reasons):Minister of oil and mineral resources. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,06/11/2020,31/12/2020,31/12/2020,13997 +TOURJMAN,Mohamed,,,,,,,,,00/00/1966,Damascus,Syria,Syria,,,,,Former Minister of Information,,,,,,,,,"(UK Sanctions List Ref):SYR0167 (UK Statement of Reasons):Former Minister of Information; participated in, benefited from, or otherwise supported the Syrian regime (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,17/02/2022,13400 +TOURJMAN,Mohammad,Ramez,,,,,,,,00/00/1966,Damascus,Syria,Syria,,,,,Former Minister of Information,,,,,,,,,"(UK Sanctions List Ref):SYR0167 (UK Statement of Reasons):Former Minister of Information; participated in, benefited from, or otherwise supported the Syrian regime (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,17/02/2022,13400 +TOURJMAN,Mohammed,,,,,,,,,00/00/1966,Damascus,Syria,Syria,,,,,Former Minister of Information,,,,,,,,,"(UK Sanctions List Ref):SYR0167 (UK Statement of Reasons):Former Minister of Information; participated in, benefited from, or otherwise supported the Syrian regime (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,17/02/2022,13400 +TOURJMAN,Mohammed,Ramez,,,,,,,,00/00/1966,Damascus,Syria,Syria,,,,,Former Minister of Information,,,,,,,,,"(UK Sanctions List Ref):SYR0167 (UK Statement of Reasons):Former Minister of Information; participated in, benefited from, or otherwise supported the Syrian regime (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,17/02/2022,13400 +TOURJMAN,Muhammad,,,,,,,,,00/00/1966,Damascus,Syria,Syria,,,,,Former Minister of Information,,,,,,,,,"(UK Sanctions List Ref):SYR0167 (UK Statement of Reasons):Former Minister of Information; participated in, benefited from, or otherwise supported the Syrian regime (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,17/02/2022,13400 +TOURJUMAN,Mohamed,,,,,,,,,00/00/1966,Damascus,Syria,Syria,,,,,Former Minister of Information,,,,,,,,,"(UK Sanctions List Ref):SYR0167 (UK Statement of Reasons):Former Minister of Information; participated in, benefited from, or otherwise supported the Syrian regime (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,17/02/2022,13400 +TOURJUMAN,Mohammad,Ramez,,,,,,,,00/00/1966,Damascus,Syria,Syria,,,,,Former Minister of Information,,,,,,,,,"(UK Sanctions List Ref):SYR0167 (UK Statement of Reasons):Former Minister of Information; participated in, benefited from, or otherwise supported the Syrian regime (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,17/02/2022,13400 +TOURJUMAN,Mohammed,,,,,,,,,00/00/1966,Damascus,Syria,Syria,,,,,Former Minister of Information,,,,,,,,,"(UK Sanctions List Ref):SYR0167 (UK Statement of Reasons):Former Minister of Information; participated in, benefited from, or otherwise supported the Syrian regime (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,17/02/2022,13400 +TOURJUMAN,Muhammad,,,,,,,,,00/00/1966,Damascus,Syria,Syria,,,,,Former Minister of Information,,,,,,,,,"(UK Sanctions List Ref):SYR0167 (UK Statement of Reasons):Former Minister of Information; participated in, benefited from, or otherwise supported the Syrian regime (Gender):Male",Individual,Primary name variation,,Syria,14/11/2016,31/12/2020,17/02/2022,13400 +TOUS POUR LA PAIX ET LE DEVELOPPEMENT (NGO),,,,,,,,,,,,,,,,,,,,,,,Goma,North Kivu,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0022 (UN Ref):CDe.008 Goma, with provincial committees in South Kivu, Kasai Occidental, Kasai Oriental and Maniema Officially suspended all activities since 2008. In practice, as of June 2011 TPD offices are open and involved in cases related to returns of IDPs, community reconciliation initiatives, land conflict settlements, etc. The TPD President is Eugene Serufuli and Vice-President is Saverina Karomba. Important members include North Kivu provincial deputies Robert Seninga and Bertin Kirivita. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278464",Entity,Primary name,,Democratic Republic of the Congo,02/11/2005,01/11/2005,19/01/2021,8744 +TOYIB,Ibnu,,,,,,,,,00/00/1958,"Pacitan, East Java",Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0110 (UN Ref):QDi.216 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429180,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8834 +TPD,,,,,,,,,,,,,,,,,,,,,,,Goma,North Kivu,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0022 (UN Ref):CDe.008 Goma, with provincial committees in South Kivu, Kasai Occidental, Kasai Oriental and Maniema Officially suspended all activities since 2008. In practice, as of June 2011 TPD offices are open and involved in cases related to returns of IDPs, community reconciliation initiatives, land conflict settlements, etc. The TPD President is Eugene Serufuli and Vice-President is Saverina Karomba. Important members include North Kivu provincial deputies Robert Seninga and Bertin Kirivita. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278464",Entity,AKA,,Democratic Republic of the Congo,02/11/2005,01/11/2005,19/01/2021,8744 +T-PLATFORMS,,,,,,,Т-ПЛАТФОРМЫ,Cyrillic,Russian,,,,,,,,,,Ul. Krupskoi D.4,Korp.2,,,,Moscow,119311,Russia,"(UK Sanctions List Ref):RUS1403 Trade License No. 5087746658984 (UK Statement of Reasons):T-Platforms is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 because it is involved in obtaining a benefit from or supporting the Government of Russia, by carrying on business in a sector of strategic significance to the Government of Russia, namely the information, communications and digital technologies sector. (Phone number):(1) 7(495) 9565414 (2) 7(499) 6500150 (3) 7(495) 9565415 (Website):t-platforms.ru (Business Reg No):Tax ID No. 7736588433 (Russia)",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15323 +"TRADING AND TRANSPORT SERVICES COMPANY, LTD",,,,,,,,,,,,,,,,,,,Al-Razi Medical Complex,Jabal Al-Hussein,,,,Amman,,Jordan,(UK Sanctions List Ref):IRQ0058 (UN Ref):IQe.205,Entity,Primary name,,Iraq,07/06/2004,02/06/2004,31/12/2020,8386 +"TRADING AND TRANSPORT SERVICES COMPANY, LTD",,,,,,,,,,,,,,,,,,,PO Box 212953,,,,,Amman,11121,Jordan,(UK Sanctions List Ref):IRQ0058 (UN Ref):IQe.205,Entity,Primary name,,Iraq,07/06/2004,02/06/2004,31/12/2020,8386 +"TRADING AND TRANSPORT SERVICES COMPANY, LTD",,,,,,,,,,,,,,,,,,,PO Box 910606,,,,,Amman,11191,Jordan,(UK Sanctions List Ref):IRQ0058 (UN Ref):IQe.205,Entity,Primary name,,Iraq,07/06/2004,02/06/2004,31/12/2020,8386 +TRANSAVIAEXPORT AIRLINES JSC,,,,,,,Авиакомпания Трансавиаэкспорт,Cyrillic,Russian,,,,,,,,,,44 Zakharova Str.,,,,,Minsk,220034,Belarus,(UK Sanctions List Ref):BEL0123 (UK Statement of Reasons):Transaviaexport Airlines JSC is an involved person under The Republic of Belarus (Sanctions) (EU Exit) 2019 because it is or has been obtaining a benefit from or supporting the Government of Belarus by carrying on business as a Government of Belarus-affiliated entity. (Phone number):(1) + 375 17 3237805 (2) + 375 17 3238401 (Website):www.transaviaexport.com (Email address):tae@transaviaexport.com,Entity,Primary name,,Belarus,24/03/2022,24/03/2022,12/07/2022,14982 +TRAVNIKOV,Andrei,Alexandrovich,,,,,Андрей Александрович Травников,,,01/02/1971,,,Russia,,,,,Governor of Novosibirsk Region,,,,,,,,,"(UK Sanctions List Ref):RUS1518 (UK Statement of Reasons):Andrei Alexandrovich TRAVNIKOV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because TRAVNIKOV is a regional governor. Specifically, TRAVNIKOV is Governor of Novosibirsk Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15457 +TRETIAK,Vladislav,Alexandrovich,,,,,Владислав Александрович ТРЕТЬЯК,,,25/04/1952,Orudyevo,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0510 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14455 +TRIFONOV,Andrey,Fyodorovich,,,,,Андрей Фёдорович Трифонов,,,01/05/1965,"Debaltseve, Donetsk",Ukraine,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0655 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14600 +TRIKULYA,Elena,Anatolievna,,,,,,,,18/03/1975,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0015 (UK Statement of Reasons):Elena Anatolievna Trikulya, as an investigator for the Investigative Committee in the Russian Ministry of the Interior after the death of Sergei Magnitsky on 16 November 2009, failed to properly investigate those responsible for his mistreatment in detention, which contributed significantly to his death, and concealed evidence in relation to that conduct. (Gender):Female",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13873 +TRINIDAD,Calib,,,,,,,,,20/03/1978,"Gattaran, Cagayan Province",Philippines,Philippines,,,,,,3111 Ma. Bautista,Punta,Santa Ana,,,Manila,,Philippines,"(UK Sanctions List Ref):AQD0141 (UN Ref):QDi.241 Distinguishing marks include scars on both legs. Member of the Rajah Solaiman Movement (QDe.128), and associated with the Abu Sayyaf Group (QDe.001) and the Jemaah Islamiyah (QDe.092). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10661 +TRINIDAD,Kalib,,,,,,,,,20/03/1978,"Gattaran, Cagayan Province",Philippines,Philippines,,,,,,3111 Ma. Bautista,Punta,Santa Ana,,,Manila,,Philippines,"(UK Sanctions List Ref):AQD0141 (UN Ref):QDi.241 Distinguishing marks include scars on both legs. Member of the Rajah Solaiman Movement (QDe.128), and associated with the Abu Sayyaf Group (QDe.001) and the Jemaah Islamiyah (QDe.092). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10661 +TRINIDAD,ANGELO,RAMIREZ,,,,,,,,20/03/1978,"Gattaran, Cagayan Province",Philippines,Philippines,,,,,,3111 Ma. Bautista,Punta,Santa Ana,,,Manila,,Philippines,"(UK Sanctions List Ref):AQD0141 (UN Ref):QDi.241 Distinguishing marks include scars on both legs. Member of the Rajah Solaiman Movement (QDe.128), and associated with the Abu Sayyaf Group (QDe.001) and the Jemaah Islamiyah (QDe.092). In detention in the Philippines as of May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10661 +TROFIMOV,Andrei,Yurievich,,,,,,,,14/08/1972,,,Ukraine,,,2652410875 (Ukraine),,,86 Kyivskya St. Apt. 53,,,,Simferopol,Crimea,,Ukraine,"(UK Sanctions List Ref):RUS1574 (UK Statement of Reasons):Andrei TROFIMOV is an “involved person” under the Russia (Sanctions) (EU Exit) Regulations 2019 because: he is, and has been, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine by engaging in, providing support for and promoting policies and actions which destabilise Ukraine and undermine and threaten the territorial integrity, sovereignty or independence of Ukraine, namely as the deputy head of the military-civilian administration (CAA) of the temporary controlled region of Zaporozhye. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15518 +TROFIMOV,Andrei,Yuriovych,,,,,"ТРОФИМОВ, Андрей Юрьевич",Cyrillic,Russian,14/08/1972,,,Ukraine,,,2652410875 (Ukraine),,,86 Kyivskya St. Apt. 53,,,,Simferopol,Crimea,,Ukraine,"(UK Sanctions List Ref):RUS1574 (UK Statement of Reasons):Andrei TROFIMOV is an “involved person” under the Russia (Sanctions) (EU Exit) Regulations 2019 because: he is, and has been, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine by engaging in, providing support for and promoting policies and actions which destabilise Ukraine and undermine and threaten the territorial integrity, sovereignty or independence of Ukraine, namely as the deputy head of the military-civilian administration (CAA) of the temporary controlled region of Zaporozhye. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15518 +TROFIMOV,Andriy,Yuriovych,,,,,,,,14/08/1972,,,Ukraine,,,2652410875 (Ukraine),,,86 Kyivskya St. Apt. 53,,,,Simferopol,Crimea,,Ukraine,"(UK Sanctions List Ref):RUS1574 (UK Statement of Reasons):Andrei TROFIMOV is an “involved person” under the Russia (Sanctions) (EU Exit) Regulations 2019 because: he is, and has been, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine by engaging in, providing support for and promoting policies and actions which destabilise Ukraine and undermine and threaten the territorial integrity, sovereignty or independence of Ukraine, namely as the deputy head of the military-civilian administration (CAA) of the temporary controlled region of Zaporozhye. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15518 +TROSHEV,Andrei,Mikolayvych,,,,,,,,05/04/1953,Leningrad,Russia,Russia,,,,,"Commander, Wagner Group",,,,,,,,,"(UK Sanctions List Ref):SYR0384 (UK Statement of Reasons):Andrey Nikolaevich Troshev was the Chief Executive of the Wagner Group.  Therefore, he has supported the Syrian regime, was a member of a militia, and has repressed the civilian population in Syria.   (Gender):Male",Individual,Primary name variation,,Syria,29/06/2022,29/06/2022,29/06/2022,15432 +TROSHEV,Andrey,Nikolaevich,,,,(1) Executive Director (2) Retired Colonel,"Трошев, Андрей Николаевич",,,05/04/1953,Leningrad,Russia,Russia,,,,,"Commander, Wagner Group",,,,,,,,,"(UK Sanctions List Ref):SYR0384 (UK Statement of Reasons):Andrey Nikolaevich Troshev was the Chief Executive of the Wagner Group.  Therefore, he has supported the Syrian regime, was a member of a militia, and has repressed the civilian population in Syria.   (Gender):Male",Individual,Primary name,,Syria,29/06/2022,29/06/2022,29/06/2022,15432 +TROY,,,,,,,,,,15/05/1972,"Punta, Santa Ana, Manila",Philippines,Philippines,,,,,,Ma. Bautista,,,Punta,Santa Ana,Manila,3111,Philippines,(UK Sanctions List Ref):AQD0293 (UN Ref):QDi.246 Member of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). Father's name is Fernando Rafael Dellosa. Mother's name is Editha Parado Cain. In detention in the Philippines as of Jan. 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10666 +TRUTNEV,Yury,Petrovich,,,,,ТРУТНЕВ Юрий Петрович,Cyrillic,Russian,01/03/1956,Perm,Russia,Russia,,,,,"(1) Deputy Prime Minister, Presidential Envoy to the Far Eastern Federal District (2) Member of the Security Council of the Russian Federation",,,,,,,,,"(UK Sanctions List Ref):RUS1044 (UK Statement of Reasons):Yury Petrovich TRUTNEV is a Member of the Security Council and Deputy Prime Minister of the Russian Federation. As a Member of the Security Council, TRUTNEV is or has been responsible for, engaged in, provided support for or promoted policies or actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,24/03/2022,24/03/2022,09/05/2022,14987 +TSA,,,,,,,,,,,,,,,,,,,156 Golestan Street,Saradr e Jangal,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TSA,,,,,,,,,,,,,,,,,,,Khalij e Fars Boulevard,Kilometre 10 of Atomic Energy Road,Rowshan Shahr,Third Moshtaq Street,,Esfahan,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TSA,,,,,,,,,,,,,,,,,,,Km. 55th of Tehran-Qazvin Rd.,,,,,Karaj,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TSA,,,,,,,,,,,,,,,,,,,No.239,Africa Ave.,Apartment No.12,First Floor,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TSA,,,,,,,,,,,,,,,,,,,Northwest of Karaj at Km 55 Qazvin (alt. Ghazvin) Highway,,,,,Haljerd,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TSA,,,,,,,,,,,,,,,,,,,Yousef Abad District,No. 1,37th Street,,,Tehran,,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TSA,,,,,,,,,,,,,,,,,,,No.66,Sarhang Sakhaei St.,Hafez Avenue,,,Tehran,11367,Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TSA,,,,,,,,,,,,,,,,,,,No.66,Sarhang Sakhaei St.,Hafez Avenue,,,Tehran,(11367),Iran,(UK Sanctions List Ref):INU0072 (UK Statement of Reasons):Iran Centrifuge Technology Company (TESA) has manufactured uranium enrichment centrifuge parts in direct support of Iran's proliferation-sensitive nuclear activities. It has carried out work on behalf of UN-designated Kalaye Electric Company. (Type of entity):Manufacturing,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11200 +TSALIKOV,Ruslan,Khadzhismelovich,,,,,ЦАЛИКОВ Руслан Хаджисмелович,,,31/07/1956,Ordzhonikidze,Russia,Russia,,,,,First Deputy Minister of Defence of the Russian Federation,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0836 (UK Statement of Reasons):State Councillor of the Russian Federation, 1st Class Ruslan Khadzhismelovich TSALIKOV is a Deputy Minister of Defence of the Armed Forces of the Russian Federation. He will have directed, or otherwise have had involvement in, responsibility for or influence over the deployment of troops involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14787 +TSANG,Neil,,,,,,,,,20/10/1957,,,North Korea,302001581,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0275 (UN Ref):KPi.080 Tsang Yung Yuan has coordinated DPRK coal exports with a DPRK broker operating in a third country, and he has a history of other sanctions evasion activities.",Individual,AKA,Good quality,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13625 +TSAR,,,,,,,,,,14/10/1974,"Gorskoe, Luhansk Oblast",Ukraine,Ukraine,,,,,Former so-called 'Defence Minister' of 'Donetsk People's Republic',,,,,,,,,"(UK Sanctions List Ref):RUS0004 (UK Statement of Reasons):As of 14 August 2014, he replaced Igor Strelkov/Girkin as the so-called ‘Defence minister’ of the ‘Donetsk People’s Republic’. He has reportedly commanded a division of separatist fighters in Donetsk since April 2014 and has promised to solve the strategic task of repelling Ukraine’s military aggression. Kononov has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Dismissed as so-called ‘Defence minister’ in October 2018. Chief of the Directorate for Social Assistance to Retired Servicemen, under the so called ‘Head of the Donetsk People’s Republic’. (Gender):Male",Individual,AKA,,Russia,12/09/2014,31/12/2020,16/09/2022,13092 +TSAR TEAM,,,,,,,,,,,,,,,,,,,Komsomol'skiy Prospekt,,,,,20 Moscow,119146,Russia,"(UK Sanctions List Ref):CYB0012 (UK Statement of Reasons):The 85th Main Centre for Special Technologies (GTsSS) of the Russian General Staff of the Armed Forces of the Russian Federation (GRU) - also known by its field post number ‘26165’ and industry nicknames: APT28, Fancy Bear, Sofacy Group, Pawn Storm, Strontium - was involved in illegally accessing the information systems of the German Federal Parliament (Deutscher Bundestag) without permission in April and May 2015. The military intelligence officers of the 85th controlled, directed and took part in this activity, accessing the email accounts of MPs and stealing their data. Their activity interfered with the parliament’s information systems affecting its operation for several days, undermining the exercise of parliamentary functions in Germany. (Type of entity):Department within Government (Parent company):Russian Ministry of Defence",Entity,AKA,,Cyber,23/10/2020,31/12/2020,31/12/2020,13984 +TSAREV,Kirill,Aleksandrovich,,,,,,,,25/09/1978,St Petersburg,Russia,Russia,,,,,Deputy Chairman of Sberbank’s Executive Board,,,,,,,,,"(UK Sanctions List Ref):RUS1592 (UK Statement of Reasons):Kirill Aleksandrovich Tsarev is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a director, manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK). (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15536 +TSARGRAD,,,,,,,,,,,,,,,,,,,B-r Novinskiy d. 31,office 5-01,,,,Moscow,123242,Russia,"(UK Sanctions List Ref):RUS1406 Organization Established Date 17 Mar 2015 (UK Statement of Reasons):TSARGRAD OOO is a private limited company providing financial, property and consultancy services, as well as parent company to a Russian media network, Tsargrad Media. TSARGRAD OOO is owned by Konstantin Valerevich MALOFEEV, an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. Further, Tsargrad OOO through Tsargrad Media carries on business in a sector of strategic significance to the Russian Government namely the information, communications and digital technology sector. (Type of entity):Private Limited Company (Subsidiaries):(1) Kurort Livadiia (2) OOO Analitichesky Tsentr Katekhon (3) OOO TSARGRAD Media (4) OOO Imenie TSARGRAD (Business Reg No):1157746244017 (Russia). Tax ID No. 7703226533 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15326 +TSARGRAD OOO,,,,,,,Царьград OOO,Cyrillic,Russian,,,,,,,,,,B-r Novinskiy d. 31,office 5-01,,,,Moscow,123242,Russia,"(UK Sanctions List Ref):RUS1406 Organization Established Date 17 Mar 2015 (UK Statement of Reasons):TSARGRAD OOO is a private limited company providing financial, property and consultancy services, as well as parent company to a Russian media network, Tsargrad Media. TSARGRAD OOO is owned by Konstantin Valerevich MALOFEEV, an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. Further, Tsargrad OOO through Tsargrad Media carries on business in a sector of strategic significance to the Russian Government namely the information, communications and digital technology sector. (Type of entity):Private Limited Company (Subsidiaries):(1) Kurort Livadiia (2) OOO Analitichesky Tsentr Katekhon (3) OOO TSARGRAD Media (4) OOO Imenie TSARGRAD (Business Reg No):1157746244017 (Russia). Tax ID No. 7703226533 (Russia)",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15326 +TSARGRAD SOCIETY,,,,,,,Общество Царьград,Cyrillic,Russian,,,,,,,,,,1s3 Partynniy pereulok,,,,,Moscow,115093,Russia,"(UK Sanctions List Ref):RUS1408 Established Date 01 Nov 2015 (UK Statement of Reasons):The ALL-RUSSIAN PUBLIC ORGANIZATION SOCIETY FOR THE PROMOTION OF RUSSIAN HISTORICAL DEVELOPMENT TSARGRAD is a political organisation controlled by Konstantin MALOFEEV. MALOFEEV (RUS0022) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. The ALL-RUSSIAN PUBLIC ORGANIZATION SOCIETY FOR THE PROMOTION OF RUSSIAN HISTORICAL DEVELOPMENT TSARGRAD is an involved person as it is owned or controlled directly or indirectly (within the meaning of regulation 7) by a person who is or has been so involved, namely Konstantin MALOFEEV. (Business Reg No):1167700052618 (Russia). Tax ID No. 7743141413 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15328 +TSARIOV,Oleg,,,,,,Олег Анатолiйович ЦАРЬОВ,,,02/06/1970,Dnepropetrovsk,Ukraine,Ukraine,,,,,Minister of Budget,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0147 Town of birth: Dnepropetrovsk (now Dnipro) (UK Statement of Reasons):Former Member of the Rada, as such publicly called for the creation of the so-called Federal Republic of Novorossiya, composed of South Eastern Ukrainian regions. Former ""Speaker"" of the so-called ""Parliament of the Union of the People's Republics"" (""Parliament of Novorossiya""). Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name,,Russia,12/05/2014,31/12/2020,14/02/2022,12973 +TSAROV,Oleg,,,,,,,,,02/06/1970,Dnepropetrovsk,Ukraine,Ukraine,,,,,Minister of Budget,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0147 Town of birth: Dnepropetrovsk (now Dnipro) (UK Statement of Reasons):Former Member of the Rada, as such publicly called for the creation of the so-called Federal Republic of Novorossiya, composed of South Eastern Ukrainian regions. Former ""Speaker"" of the so-called ""Parliament of the Union of the People's Republics"" (""Parliament of Novorossiya""). Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,14/02/2022,12973 +TSAROV,Oleh,Anatoliyovych,,,,,,,,02/06/1970,Dnepropetrovsk,Ukraine,Ukraine,,,,,Minister of Budget,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0147 Town of birth: Dnepropetrovsk (now Dnipro) (UK Statement of Reasons):Former Member of the Rada, as such publicly called for the creation of the so-called Federal Republic of Novorossiya, composed of South Eastern Ukrainian regions. Former ""Speaker"" of the so-called ""Parliament of the Union of the People's Republics"" (""Parliament of Novorossiya""). Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,14/02/2022,12973 +TSARYOV,Oleg,Anatolevich,,,,,,,,02/06/1970,Dnepropetrovsk,Ukraine,Ukraine,,,,,Minister of Budget,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0147 Town of birth: Dnepropetrovsk (now Dnipro) (UK Statement of Reasons):Former Member of the Rada, as such publicly called for the creation of the so-called Federal Republic of Novorossiya, composed of South Eastern Ukrainian regions. Former ""Speaker"" of the so-called ""Parliament of the Union of the People's Republics"" (""Parliament of Novorossiya""). Remains active in supporting separatist actions or policies. (Gender):Male",Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,14/02/2022,12973 +TSCHERESOW,Andrey,Vladimirovich,,,,,,,,12/10/1967,"Salair, Kemerovskaya Oblast",,Russia,,,,,Former Deputy/Vice-Minister for Energy of the Russian Federation,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0089 (UK Statement of Reasons):Shares responsibility for the decision to transfer gas turbines that had been delivered by Siemens Gas Turbine Technologies OOO to OAO VO Technopromexport to be installed in Crimea. This decision contributes to establishing an independent power supply for Crimea and Sevastopol as a means of supporting their separation from Ukraine, and undermines the territorial integrity, sovereignty, and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,04/08/2017,31/12/2020,16/09/2022,13521 +TSED,Nikolai,Grigorievich,,,,,Цед Николай Григорьевич,,,06/10/1959,Bobruisk,Belarus,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0521 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14466 +TSEKOV,Sergei,,,,,,,,,28/08/1953,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Ukraine,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0148 (UK Statement of Reasons):As Vice Speaker of the Verkhovna Rada of Crimea, Tsekov initiated, together with Sergei Aksyonov, the unlawful dismissal of the government of the Autonomous Republic of Crimea (ARC). He drew Vladimir Konstantinov into this endeavour, threatening him with dismissal. He publicly recognised that the MPs from Crimea were the initiators of inviting Russian soldiers to take over the Verkhovna Rada of Crimea. He was one of the first Crimean Leaders to ask in public for the annexation of Crimea to Russia. Member of the Federation Council of the Russian Federation from the so-called “Republic of Crimea” since 2014 and reappointed in 2019. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12929 +TSEKOV,Sergei,,,,,,,,,29/09/1953,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Ukraine,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0148 (UK Statement of Reasons):As Vice Speaker of the Verkhovna Rada of Crimea, Tsekov initiated, together with Sergei Aksyonov, the unlawful dismissal of the government of the Autonomous Republic of Crimea (ARC). He drew Vladimir Konstantinov into this endeavour, threatening him with dismissal. He publicly recognised that the MPs from Crimea were the initiators of inviting Russian soldiers to take over the Verkhovna Rada of Crimea. He was one of the first Crimean Leaders to ask in public for the annexation of Crimea to Russia. Member of the Federation Council of the Russian Federation from the so-called “Republic of Crimea” since 2014 and reappointed in 2019. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12929 +TSEKOV,Sergey,Pavlovych,,,,,,,,28/08/1953,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Ukraine,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0148 (UK Statement of Reasons):As Vice Speaker of the Verkhovna Rada of Crimea, Tsekov initiated, together with Sergei Aksyonov, the unlawful dismissal of the government of the Autonomous Republic of Crimea (ARC). He drew Vladimir Konstantinov into this endeavour, threatening him with dismissal. He publicly recognised that the MPs from Crimea were the initiators of inviting Russian soldiers to take over the Verkhovna Rada of Crimea. He was one of the first Crimean Leaders to ask in public for the annexation of Crimea to Russia. Member of the Federation Council of the Russian Federation from the so-called “Republic of Crimea” since 2014 and reappointed in 2019. (Gender):Male",Individual,Primary name,,Russia,18/03/2014,31/12/2020,16/09/2022,12929 +TSEKOV,Sergey,Pavlovych,,,,,,,,29/09/1953,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Ukraine,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0148 (UK Statement of Reasons):As Vice Speaker of the Verkhovna Rada of Crimea, Tsekov initiated, together with Sergei Aksyonov, the unlawful dismissal of the government of the Autonomous Republic of Crimea (ARC). He drew Vladimir Konstantinov into this endeavour, threatening him with dismissal. He publicly recognised that the MPs from Crimea were the initiators of inviting Russian soldiers to take over the Verkhovna Rada of Crimea. He was one of the first Crimean Leaders to ask in public for the annexation of Crimea to Russia. Member of the Federation Council of the Russian Federation from the so-called “Republic of Crimea” since 2014 and reappointed in 2019. (Gender):Male",Individual,Primary name,,Russia,18/03/2014,31/12/2020,16/09/2022,12929 +TSEKOV,Serhiy,Pavlovych,,,,,,,,28/08/1953,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Ukraine,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0148 (UK Statement of Reasons):As Vice Speaker of the Verkhovna Rada of Crimea, Tsekov initiated, together with Sergei Aksyonov, the unlawful dismissal of the government of the Autonomous Republic of Crimea (ARC). He drew Vladimir Konstantinov into this endeavour, threatening him with dismissal. He publicly recognised that the MPs from Crimea were the initiators of inviting Russian soldiers to take over the Verkhovna Rada of Crimea. He was one of the first Crimean Leaders to ask in public for the annexation of Crimea to Russia. Member of the Federation Council of the Russian Federation from the so-called “Republic of Crimea” since 2014 and reappointed in 2019. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12929 +TSEKOV,Serhiy,Pavlovych,,,,,,,,29/09/1953,"Simferopol, The Autonomous Republic of Crimea and the city of Sevastopol",Ukraine,Ukraine,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0148 (UK Statement of Reasons):As Vice Speaker of the Verkhovna Rada of Crimea, Tsekov initiated, together with Sergei Aksyonov, the unlawful dismissal of the government of the Autonomous Republic of Crimea (ARC). He drew Vladimir Konstantinov into this endeavour, threatening him with dismissal. He publicly recognised that the MPs from Crimea were the initiators of inviting Russian soldiers to take over the Verkhovna Rada of Crimea. He was one of the first Crimean Leaders to ask in public for the annexation of Crimea to Russia. Member of the Federation Council of the Russian Federation from the so-called “Republic of Crimea” since 2014 and reappointed in 2019. (Gender):Male",Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,16/09/2022,12929 +TSELIKAVETS,Irina,Akexandrova,,,,,Ирина Александровна ЦЕЛИКОВЕЦ,,,02/11/1976,,,,,,,,Member of the Central Electoral Commision,,,,,,,,,"(UK Sanctions List Ref):BEL0044 (UK Statement of Reasons):Irina TSELIKAVETS is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13958 +TSELIKAVETS,Irina,Alexandrovna,,,,,,,,02/11/1976,,,,,,,,Member of the Central Electoral Commision,,,,,,,,,"(UK Sanctions List Ref):BEL0044 (UK Statement of Reasons):Irina TSELIKAVETS is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13958 +TSELIKAVETS,Irina,Aliaksandrauna,,,,,Ирина Александра ЦЕЛИКАВЕЦ,,,02/11/1976,,,,,,,,Member of the Central Electoral Commision,,,,,,,,,"(UK Sanctions List Ref):BEL0044 (UK Statement of Reasons):Irina TSELIKAVETS is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13958 +TSELIKOVEC,Irina,Akexandrova,,,,,,,,02/11/1976,,,,,,,,Member of the Central Electoral Commision,,,,,,,,,"(UK Sanctions List Ref):BEL0044 (UK Statement of Reasons):Irina TSELIKAVETS is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13958 +TSELIKOVEC,Irina,Alexandrovna,,,,,,,,02/11/1976,,,,,,,,Member of the Central Electoral Commision,,,,,,,,,"(UK Sanctions List Ref):BEL0044 (UK Statement of Reasons):Irina TSELIKAVETS is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13958 +TSELIKOVEC,Irina,Aliaksandrauna,,,,,,,,02/11/1976,,,,,,,,Member of the Central Electoral Commision,,,,,,,,,"(UK Sanctions List Ref):BEL0044 (UK Statement of Reasons):Irina TSELIKAVETS is a member of the Central Electoral Commission of the Belarusian Regime. In her role, she is responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13958 +TSEPKIN,Oleg,Vladimirovich,,,,,Олег Владимирович ЦЕПКИН,,,15/09/1965,Ruza,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0969 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14920 +TSERABAU,Sergey,Evgenievich,,,,,"ЦЕРАБАЎ, Сяргей Яўгенавiч",,,00/00/1972,"Barysaw/Borisov, Minsk Oblast",Former USSR Currently Belarus,Belarus,,,,,First Deputy Chairman of the State Security Committee (KGB),,,,,,,,,"(UK Sanctions List Ref):BEL0028 (UK Statement of Reasons):TSERABAU was appointed First Deputy Chairman of the State Security Committee (KGB) of Belarus in February 2020. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13949 +TSERABAU,Siarhei,Yaugenavich,,,,,"ТЕРЕБОВ, Сергей Евгеньевич",,,00/00/1972,"Barysaw/Borisov, Minsk Oblast",Former USSR Currently Belarus,Belarus,,,,,First Deputy Chairman of the State Security Committee (KGB),,,,,,,,,"(UK Sanctions List Ref):BEL0028 (UK Statement of Reasons):TSERABAU was appointed First Deputy Chairman of the State Security Committee (KGB) of Belarus in February 2020. In this senior leadership role, we believe he has shared responsibility for the activities of the State Security Committee, including the involvement of KGB officers, in serious human rights violations and abuse against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13949 +TSIVELEVA,Anna,,,,,,анна цивилева,,,09/05/1972,Ivanovo,Russia,Russia,,,,Tax ID: 771921270207,,,,,,,,,,"(UK Sanctions List Ref):RUS1481 (UK Statement of Reasons):Anna TSIVILEVA is a Russian businessperson who serves as Chair of the Board of Directors of JSC Kolmar Group. JSC Kolmar Group is carrying on business in sectors of strategic significance to the Government of Russia, namely the Russian energy and extractives sector. Therefore, TSIVILEVA is or has been involved in obtaining a benefit from, or supporting, the Government of Russia. (Gender):Female",Individual,Primary name,,Russia,29/06/2022,29/06/2022,29/06/2022,15420 +TSIVILEV,Sergei,Evgenievich,,,,,Серге́й Евге́ньевич Цивилёв,,,21/09/1961,Zhdanov,Russia,Russia,,,,,Governor of Kemerovo,,,,,,,,,"(UK Sanctions List Ref):RUS1482 (UK Statement of Reasons):Sergei TSIVILEV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he has been involved in in destabilizing Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, on the basis of having been, and being, supporting and promoting actions which are destabilizing Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,29/06/2022,29/06/2022,29/06/2022,15421 +TSNIIKHM,,,,,,,,,,,,,,,,,,,16a Nagatinskaya Street,,,,,Moscow,,Russia,"(UK Sanctions List Ref):CYB0022 (UK Statement of Reasons):The Central Scientific Research Institute of Chemistry and Mechanics (TsNIIKhM) was responsible for a cyber attack on a petro-chemical company in August 2017. The cyber attack gained remote access to the Safety Instrumented Systems connected to the Industrial Control System of a petrochemical refinery. This shut down the plant for over a week. There is evidence to suggest that the shutdown was inadvertent while TsNIIKhM were attempting to cause a highly dangerous physical consequence through disabling the safety systems, which could have included an explosion. These actions caused economic loss and prejudice to commercial interests and/or was intended to undermine the security and prosperity of a country other than the United Kingdom. (Type of entity):Government-owned technical research institution",Entity,Primary name variation,,Cyber,24/03/2022,24/03/2022,24/03/2022,15044 +TSNIIKHM,,,,,,,,,,,,,,,,,,,16a Nagatinskaya Street,,,,,Moscow,,Russia,"(UK Sanctions List Ref):CYB0022 (UK Statement of Reasons):The Central Scientific Research Institute of Chemistry and Mechanics (TsNIIKhM) was responsible for a cyber attack on a petro-chemical company in August 2017. The cyber attack gained remote access to the Safety Instrumented Systems connected to the Industrial Control System of a petrochemical refinery. This shut down the plant for over a week. There is evidence to suggest that the shutdown was inadvertent while TsNIIKhM were attempting to cause a highly dangerous physical consequence through disabling the safety systems, which could have included an explosion. These actions caused economic loss and prejudice to commercial interests and/or was intended to undermine the security and prosperity of a country other than the United Kingdom. (Type of entity):Government-owned technical research institution",Entity,Primary name variation,,Cyber,24/03/2022,24/03/2022,24/03/2022,15044 +TSTK,,,,,,,,,,,,,,,,,,,"5, pr. I. Yakovleva",,,,,Cheboksary,428020,Russia,"(UK Sanctions List Ref):RUS1435 (UK Statement of Reasons):Cheboksary Electrical Equipment Plant is a leading electrical company, which provides equipment to the energy and defence sectors. Cheboksary Electrical Equipment Plant therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in sectors of strategic significance to the Government of Russia, namely the defence and energy sectors. (Phone number):7 (835)2 222673 (Website):http://www.cheaz.ru (Email address):cheaz@cheaz.ru (Type of entity):Joint Stock Company (Subsidiaries):(1) CHEAZ Group (2) TsUP CHEAZ (3) ChEAZ-ELPRY (4) CHEAZ-Siberia (5) ERA Engineering (6) IZVA",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15370 +TSTK CHEAZ,,,,,,,ЧЭАЗ,Cyrillic,Russian,,,,,,,,,,"5, pr. I. Yakovleva",,,,,Cheboksary,428020,Russia,"(UK Sanctions List Ref):RUS1435 (UK Statement of Reasons):Cheboksary Electrical Equipment Plant is a leading electrical company, which provides equipment to the energy and defence sectors. Cheboksary Electrical Equipment Plant therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in sectors of strategic significance to the Government of Russia, namely the defence and energy sectors. (Phone number):7 (835)2 222673 (Website):http://www.cheaz.ru (Email address):cheaz@cheaz.ru (Type of entity):Joint Stock Company (Subsidiaries):(1) CHEAZ Group (2) TsUP CHEAZ (3) ChEAZ-ELPRY (4) CHEAZ-Siberia (5) ERA Engineering (6) IZVA",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15370 +TSUNAEVA,Elena,Moiseevna,,,,,Цунаева Елена Моисеевна,,,13/01/1969,Volgograd,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0522 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14467 +TSYPLAKOV,Sergey,Gennadevich,,,,,,,,01/05/1983,"(1) Donetsk (2) Kharsyzk, Donetsk Region",(1) Ukrainian SSR (2) Ukrainian SSR,Ukraine,,,,,,,,,,,Luhansk,,,"(UK Sanctions List Ref):RUS0149 (UK Statement of Reasons):One of the leaders of the ideological radical organisation ‘People’s Militia of Donbas’. He took an active part in the seizure of a number of State buildings in the Donetsk region. Former member of the ‘People's Council of the Donetsk People's Republic’ and of its ‘Committee on Foreign Policy, External Relations, Information Policy and Information Technology’. (Gender):Male",Individual,Primary name,,Russia,29/04/2014,31/12/2020,14/02/2022,12963 +TSYPLAKOV,Serhiy,Hennadiyovych,,,,,,,,01/05/1983,"(1) Donetsk (2) Kharsyzk, Donetsk Region",(1) Ukrainian SSR (2) Ukrainian SSR,Ukraine,,,,,,,,,,,Luhansk,,,"(UK Sanctions List Ref):RUS0149 (UK Statement of Reasons):One of the leaders of the ideological radical organisation ‘People’s Militia of Donbas’. He took an active part in the seizure of a number of State buildings in the Donetsk region. Former member of the ‘People's Council of the Donetsk People's Republic’ and of its ‘Committee on Foreign Policy, External Relations, Information Policy and Information Technology’. (Gender):Male",Individual,Primary name variation,,Russia,29/04/2014,31/12/2020,14/02/2022,12963 +TTP,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0079 (UN Ref):QDe.132 Tehrik-e Taliban is based in the tribal areas along the Afghanistan/Pakistan border. Formed in 2007, its leader is Maulana Fazlullah (QDi.352). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282130",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/08/2011,29/07/2011,31/12/2020,12032 +TTP,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0079 (UN Ref):QDe.132 Tehrik-e Taliban is based in the tribal areas along the Afghanistan/Pakistan border. Formed in 2007, its leader is Maulana Fazlullah (QDi.352). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282130",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,11/08/2011,29/07/2011,31/12/2020,12032 +TTP GEEDAR GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +TTP GEEDAR GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +TTP-TARIQ GIDAR GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +TTP-TARIQ GIDAR GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0355 (UN Ref):QDe.160 Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007. Address somewhere in the Afghanistan/Pakistan border region.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,25/03/2019,22/03/2019,31/12/2020,13786 +TUBAIGY,Salah,Muhammed,,,,,,,,20/08/1971,Jazan,Saudi Arabia,,,,,,Head of Forensics- Ministry of Interior.,,,,,,,,,(UK Sanctions List Ref):GHR0033 (UK Statement of Reasons):Dr Salah Muhammed Tubaigy held the position of Forensic doctor with the Ministry of Interior in Saudi Arabia and Professor in the Department of Criminal Evidence at Naif Arab University. He was involved in the unlawful killing of Jamal Khashoggi in the Saudi Consulate in Istanbul on 2 October 2018 as part of the 15 man team sent to Turkey by Saudi authorities. Dr Tubaigy was present at the time of Jamal Khashoggi’s death and held a direct role in Jamal Khashoggi’s killing and in the concealment of evidence relating to his death. (Gender):Male,Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,06/07/2020,13874 +TUFAIL,MOHAMMED,,,,,,,,,05/05/1930,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0246 (UN Ref):QDi.056 Served as a director of Ummah Tameer e-Nau (UTN) (QDe.068). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1972145,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7517 +TUFFAIL,S.,M.,,,,,,,,05/05/1930,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0246 (UN Ref):QDi.056 Served as a director of Ummah Tameer e-Nau (UTN) (QDe.068). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1972145,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7517 +TUFFAIL,Sheik,Mohammed,,,,,,,,05/05/1930,,,Pakistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0246 (UN Ref):QDi.056 Served as a director of Ummah Tameer e-Nau (UTN) (QDe.068). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1972145,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7517 +TULS,Anas,,,,,,,,,25/03/1971,,,Syria,,,,,Chairman of the Talas Group,,,,,,,,,"(UK Sanctions List Ref):SYR0257 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy. Through his business activities and investments, Anas Talas also benefits from and/or supports the Syrian regime. In 2018 the Talas Group, chaired by Anas Talas, entered into a SYP 23 billion joint venture with Damascus Cham Holding for the construction of Marota City, a regime-backed luxury residential and commercial development. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13752 +TULTAYEV,Pyotr,Nikolaevich,,,,,Пётр Николаевич Тултаев,,,01/01/1961,Staroe Sindrovo,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0950 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14901 +TU'MA,Bassam,,,,,,,,,00/00/1969,Safita,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0367 (UK Statement of Reasons):Minister of oil and mineral resources. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,06/11/2020,31/12/2020,31/12/2020,13997 +TU'MA,Kamal,Eddin,,,,,,,,00/00/1959,Damascus,Syria,Syria,,,,,Former Industry Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0119 (UK Statement of Reasons):Former Minister of Industry from 2013 to at least 2016. As a former Government Minister, he shares responsibility for the regime's repression of the civilian population. Further, there are reasonable grounds to suspect that as a member of the Board of Directors for the state owned General Establishment for Chemical Industries he is also a ‘prominent person operating or controlling a business in Syria’ and continues to be associated with members of the regime. (Gender):Male",Individual,Primary name,,Syria,24/06/2014,31/12/2020,13/05/2022,12988 +TU'MA,Kamal,el din,,,,,,,,00/00/1959,Damascus,Syria,Syria,,,,,Former Industry Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0119 (UK Statement of Reasons):Former Minister of Industry from 2013 to at least 2016. As a former Government Minister, he shares responsibility for the regime's repression of the civilian population. Further, there are reasonable grounds to suspect that as a member of the Board of Directors for the state owned General Establishment for Chemical Industries he is also a ‘prominent person operating or controlling a business in Syria’ and continues to be associated with members of the regime. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12988 +TU'MA,Kamaleddine,,,,,,,,,00/00/1959,Damascus,Syria,Syria,,,,,Former Industry Minister,,,,,,,,,"(UK Sanctions List Ref):SYR0119 (UK Statement of Reasons):Former Minister of Industry from 2013 to at least 2016. As a former Government Minister, he shares responsibility for the regime's repression of the civilian population. Further, there are reasonable grounds to suspect that as a member of the Board of Directors for the state owned General Establishment for Chemical Industries he is also a ‘prominent person operating or controlling a business in Syria’ and continues to be associated with members of the regime. (Gender):Male",Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12988 +TUMUSOV,Fedot,Semyonovich,,,,,Тумусов Федот Семёнович,,,30/06/1955,Verkhnevilyuisky district,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0511 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14456 +TUN,Moe,Myint,,,,,,,,24/05/1968,,Myanmar,Myanmar,,,,,SAC Member,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0022 (UK Statement of Reasons):On 1 February 2021 the Myanmar military (Tatmadaw), led by Commander-in-Chief Min Aung Hlaing, staged a coup in Myanmar. As part of the coup, Vice-President Swe declared a state of emergency on 1 February transferring the legislative, executive and judicial powers of the state to Min Aung Hlaing. On 2 February, the Tatmadaw established the State Administration Council (SAC), which is chaired by Hlaing, in order to run the functions of the state. Lt. Gen Moe Myint Tun was appointed as a member of the SAC on 2 February. The Myanmar security forces have committed serious human rights violations since 1 February 2021: killing a protestor, restricting freedom of assembly and expression including through restricting internet access, arbitrary arrest and detention of opposition leaders and opponents of the coup. The SAC has adopted legislation violating the right to privacy and the right not to be subject to arbitrary detention in Myanmar. As a member of the SAC, Tun shares responsibility with its other members for the exercise of state functions since 2 February 2021, including legislation violating human rights, and for the serious human rights violations committed by the Myanmar security forces. As a member of the SAC, Moe Myint Tun is associated with Commander in Chief General Min Aung Hlaing who is a designated person under the Myanmar (Sanctions) 2021 in respect of actions related to the February 2021 coup. (Gender):Male",Individual,Primary name,,Myanmar,25/02/2021,29/04/2021,11/11/2022,14062 +TUNISIAN COMBATANT GROUP,,,,,,,الجماعة التونسية المقاتلة,,,,,,,,,,,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0082 (UN Ref):QDe.090 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278433,Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,11/10/2002,10/10/2002,31/12/2020,7148 +TURAB,ABU,,,,,,,,,00/00/1968,"Arghandab District, Kandahar Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation and Tourism under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0016 (UN Ref):TAi.014 Believed to be in Afghanistan/Pakistan border area. Belongs to Ghilzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,08/03/2001,01/02/2021,6936 +TURABI,Noor ud Din,,,,,,,,,00/00/1963,"(1) Spin Boldak District, Kandahar Province (2) Chora District, Uruzgan Province (3) Dehrawood District, Uruzgan Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Minister of Justice under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0046 (UN Ref):TAi.058 Deputy to Mullah Mohammed Omar (TAi.004). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7527 +TURABI,Noor ud Din,,,,,,,,,00/00/1955,"(1) Spin Boldak District, Kandahar Province (2) Chora District, Uruzgan Province (3) Dehrawood District, Uruzgan Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Minister of Justice under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0046 (UN Ref):TAi.058 Deputy to Mullah Mohammed Omar (TAi.004). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7527 +TURABI,Noor ud Din,,,,,,,,,00/00/1956,"(1) Spin Boldak District, Kandahar Province (2) Chora District, Uruzgan Province (3) Dehrawood District, Uruzgan Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Minister of Justice under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0046 (UN Ref):TAi.058 Deputy to Mullah Mohammed Omar (TAi.004). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7527 +TURBINE ENGINEERING MANUFACTURING (TEM),,,,,,,,,,,,,,,,,,,Shishesh Mina Street,Karaj Special Road,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0127 (UK Statement of Reasons):Used as a front company by Iran Aircraft Industries (IACI) for covert procurement activities (Type of entity):Nuclear/Military,Entity,Primary name,,Iran (Nuclear),24/01/2012,31/12/2020,04/03/2022,12491 +TURCHAK,Andrey,Anatolyevich,,,,,Андрей Анатольевич Турчак,,,20/12/1975,Leningrad,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0757 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14708 +TURCHENYUK,Igor,Nikoolaevich,,,,,,,,05/12/1959,Osh,Kyrgyz SSR (now Kyrgyzstan),,,,,,Head of the Southern District of the National Guard of the Russian Federation,,,,,,,,Russia,(UK Sanctions List Ref):RUS0150 (UK Statement of Reasons):Head of the Southern District of the National Guard of the Russian Federation. Former de facto Commander of Russian troops deployed on the ground in the illegally annexed Crimea (whom Russia continues to refer to officially as ‘local self-defence militias’). Former Deputy Commander of the Southern Military District. Former Head of Department of Public Administration and National Security at the Military Academy of the Russian General Staff. (Gender):Male,Individual,Primary name,,Russia,21/03/2014,31/12/2020,16/09/2022,12938 +TURCHENYUK,Igor,Mykolayovich,,,,,,,,05/12/1959,Osh,Kyrgyz SSR (now Kyrgyzstan),,,,,,Head of the Southern District of the National Guard of the Russian Federation,,,,,,,,Russia,(UK Sanctions List Ref):RUS0150 (UK Statement of Reasons):Head of the Southern District of the National Guard of the Russian Federation. Former de facto Commander of Russian troops deployed on the ground in the illegally annexed Crimea (whom Russia continues to refer to officially as ‘local self-defence militias’). Former Deputy Commander of the Southern Military District. Former Head of Department of Public Administration and National Security at the Military Academy of the Russian General Staff. (Gender):Male,Individual,Primary name variation,,Russia,21/03/2014,31/12/2020,16/09/2022,12938 +TURCHIN,Aleksandr,Henrykavich,,,,,Алякса́ндр Ге́нрыхавіч ТУРЧЫ́Н,,,02/07/1975,"Novogrudok, Grodno/Hrodna Oblast",former USSR (now Belarus),Belarus,,,,,Chairman of Minsk Regional Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0085 (UK Statement of Reasons):In his position as the Chairman of Minsk Regional Executive Committee, Aliaksandr Turchin is responsible for overseeing local administration. By doing so, he supported the actions of the Lukashenko regime to undermine the rule of law in Belarus, repress civil society and democratic opposition, contributing to serious human rights violations. (Gender):Male",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14046 +TURCHIN,Aliaksandr,Henrykavich,,,,,Алекса́ндр Ге́нрихович ТУРЧИ́Н,,,02/07/1975,"Novogrudok, Grodno/Hrodna Oblast",former USSR (now Belarus),Belarus,,,,,Chairman of Minsk Regional Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0085 (UK Statement of Reasons):In his position as the Chairman of Minsk Regional Executive Committee, Aliaksandr Turchin is responsible for overseeing local administration. By doing so, he supported the actions of the Lukashenko regime to undermine the rule of law in Belarus, repress civil society and democratic opposition, contributing to serious human rights violations. (Gender):Male",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14046 +TURE,Mamadu,,,,,Major General,,,,26/04/1947,,,Guinea Bissau,DA0002186,(Diplomatic). Issued 30 March 2007 in Guinea-Bissau. Expires 26 August 2013,,,Deputy Chief of Staff of the Armed Forces,,,,,,,,,(UK Sanctions List Ref):GUB0019 (UN Ref):GBi.011 Ture was listed by the UN on 18 May 2012 pursuant to paragraph 4 of resolution 2048 (2012). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5782456 (UK Statement of Reasons):Member of the Military Command which has assumed responsibility for the coup d’etat of 12 April 2012. (Gender):Male,Individual,Primary name,,Guinea-Bissau,04/05/2012,31/12/2020,10/03/2022,12665 +TURE,Mamadu,,,,,Major General,,,,26/04/1947,,,Guinea Bissau,DA0002186,(Diplomatic). Issued 30 March 2007 in Guinea-Bissau. Expires 26 August 2013,,,Deputy Chief of Staff of the Armed Forces,,,,,,,,,(UK Sanctions List Ref):GUB0019 (UN Ref):GBi.011 Ture was listed by the UN on 18 May 2012 pursuant to paragraph 4 of resolution 2048 (2012). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5782456 (UK Statement of Reasons):Member of the Military Command which has assumed responsibility for the coup d’etat of 12 April 2012. (Gender):Male,Individual,Primary name,,Guinea-Bissau,04/05/2012,31/12/2020,10/03/2022,12665 +TURKI,Hassan,,,,,,,,,00/00/1944,Region V (the Ogaden Region in Eastern Ethiopia),Ethiopia,Somalia,,,,,Colonel. Sheikh,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0004 (UN Ref):SOi.003,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,8425 +TURKI,Hassan,Abdillahi,Hersi,,,,,,,00/00/1944,Region V (the Ogaden Region in Eastern Ethiopia),Ethiopia,Somalia,,,,,Colonel. Sheikh,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0004 (UN Ref):SOi.003,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,8425 +TURKI,Sheikh,Hassan,,,,,,,,00/00/1944,Region V (the Ogaden Region in Eastern Ethiopia),Ethiopia,Somalia,,,,,Colonel. Sheikh,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0004 (UN Ref):SOi.003,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,8425 +TUROV,Artyom,Viktorovich,,,,,Туров Артём Викторович,,,01/03/1984,Smolensk,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0512 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14457 +TUSNIN,Abu,,,,,,,,,01/03/1961,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +TUSNIN,Abu,,,,,,,,,16/06/1960,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +TUTOVA,Larisa,Nikolaevna,,,,,Тутова Лариса Николаевна,,,18/10/1969,"Peschanokopskoe, Rostov",Russia,,750967198,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0595 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14540 +TUTU,Mzee,,,,,,,,,00/00/1965,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +TUTU,Mzee,,,,,,,,,01/01/1964,"Ntoke Village, Ntenjeru Sub County, Kayunga District",Uganda,Uganda,,,,,Head/Commander of the Allied Democratic Forces (ADF),,,,,,,,Uganda,"(UK Sanctions List Ref):DRC0041 (UN Ref):CDi.015 Arrested in April 2015 in Tanzania and extradited to Uganda in July 2015. As of September 2016, Mukulu is reportedly being held in a police detention cell awaiting his trial for war crimes and grave breaches of the Geneva Convection under Ugandan Law. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5270670 (Gender):Male",Individual,AKA,Good quality,Democratic Republic of the Congo,09/01/2012,12/10/2011,21/01/2021,12204 +TV-NOVOSTI,,,,,,,,,,,,,,,,,,,Building 1,3 Borovaya Street,,,,Moscow,1111020,Russia,"(UK Sanctions List Ref):RUS1102 Internet Services Sanctions: When an individual or entity is designated for the purposes of this measure, social media services, internet access services and application stores must take reasonable steps to prevent users in the UK from accessing content, sites or applications provided by designated individuals or entities. (UK Statement of Reasons):As a major Russian media organisation which receives significant financial funding from the Government of Russia, TV Novosti is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business as a Government of Russia-affiliated entity and carrying on business in a strategically significant sector to the Government of Russia, namely information, communications and digital technologies. (Phone number):+7 (499) 750 0075 (Type of entity):Broadcasting and online media platform (Business Reg No):105774659367",Entity,Primary name,,Russia,31/03/2022,31/03/2022,04/05/2022,15063 +TYMOFEYEV,Aleksandr,Yurievich,,,,,,,,21/09/1964,"Nevinnomyssk, Stavropol Krai",Russia,Ukraine,,,,,Minister of Budget,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0143 (UK Statement of Reasons):Former so-called ‘Minister of Finance and Taxes’ of the ‘Donetsk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Dismissed as so-called ‘Minister of Finance and Taxes’ in September 2018. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13208 +TYMOFEYEV,Olek,Sandr,Yuriyovych,,,,,,,21/09/1964,"Nevinnomyssk, Stavropol Krai",Russia,Ukraine,,,,,Minister of Budget,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0143 (UK Statement of Reasons):Former so-called ‘Minister of Finance and Taxes’ of the ‘Donetsk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Dismissed as so-called ‘Minister of Finance and Taxes’ in September 2018. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13208 +TYMOFEYEV,Oleksandr,Yuriyovych,,,,,,,,21/09/1964,"Nevinnomyssk, Stavropol Krai",Russia,Ukraine,,,,,Minister of Budget,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0143 (UK Statement of Reasons):Former so-called ‘Minister of Finance and Taxes’ of the ‘Donetsk People’s Republic’. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Dismissed as so-called ‘Minister of Finance and Taxes’ in September 2018. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13208 +TYRYSHKIN,Ivan,Aleksandrovich,,,,,Иван Тырышкин,,,,,,,,,,,,Room 5B IX,"st. Stromynka, 18",,,,Moscow,107076,Russia,"(UK Sanctions List Ref):RUS1483 (UK Statement of Reasons):Ivan TYRYSHKIN is an involved person as he is obtaining a benefit from or supporting the Government of Russia by working as a director at SPB Exchange and JSC NRK-R.O.S.T. Both companies are carrying on business in the Russian financial services sector, which is a sector of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,29/06/2022,29/06/2022,29/06/2022,15422 +TYURIN,Vachelav,,,,,,,,,00/00/1960,,,,,,,,Member of the Board of Directors of Gazprombank JSC,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1634 (UK Statement of Reasons):Vyacheslav Alexandrovich Tyurin is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by:(1) working as a director of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC  which carries on business in the Russian financial services sector; (2) working as a director of a Government of Russia-affiliated entity, namely Gazprombank JSC.  (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15578 +TYURIN,Vyacheslav,Aleksandrovich,,,,,Вячеслав Александрович Тюрин,Cyrillic,Russian,00/00/1960,,,,,,,,Member of the Board of Directors of Gazprombank JSC,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1634 (UK Statement of Reasons):Vyacheslav Alexandrovich Tyurin is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by:(1) working as a director of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC  which carries on business in the Russian financial services sector; (2) working as a director of a Government of Russia-affiliated entity, namely Gazprombank JSC.  (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15578 +TYUTINA,Valentina,Ivanova,,,,,,,,07/04/1949,"Shepetovka, Khmelnitskyi (Kamenets-Podolsky) region",Ukrainian SSR (now Ukraine),,,,,,Speaker of the Federation Council of Russian Federation,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0026 (UK Statement of Reasons):Speaker of the Federation Council. On 1 March 2014, publicly supported in the Federation Council the deployment of Russian forces in Ukraine. (Gender):Female",Individual,AKA,,Russia,21/03/2014,31/12/2020,31/12/2020,12943 +UAC,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0239 (List of persons named in relation to financial and investment restrictions Group ID): 13121. (UK Statement of Reasons):PJSC United Aircraft Corporation (UAC) is a Russian state owned enterprise. It contains all of Russia's major aircraft manufacturing companies and is a major supplier of aircraft to the Russian military. This includes military aircraft that have been used in Crimea. Therefore UAC provides financial services or makes available funds and economic resources that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Type of entity):(1) Public Joint stock company (2) Holding company",Entity,Primary name variation,,Russia,24/02/2022,24/02/2022,06/04/2022,14186 +UBAIDAH,Abu,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +UBAIDAH,Abu,,,,,,,,,00/00/1972,,Somalia,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0014 (UN Ref):SOi.014,Individual,AKA,Good quality,Somalia,23/10/2014,24/09/2014,31/12/2020,13150 +UBAIDAH,Sheikh,Ahmed,Umar,Abu,,,,,,00/00/1972,,Somalia,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0014 (UN Ref):SOi.014,Individual,AKA,Good quality,Somalia,23/10/2014,24/09/2014,31/12/2020,13150 +UBAIDAHA,Sheikh,Omar,Abu,,,,,,,00/00/1972,,Somalia,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0014 (UN Ref):SOi.014,Individual,AKA,Good quality,Somalia,23/10/2014,24/09/2014,31/12/2020,13150 +UBAYDAH,Abu,,,,,,,,,16/09/1973,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +UBAYDAH,Abu,,,,,,,,,01/05/1972,"(1) Gheil Bawazir, Hadramawt (2) Khartoum",(1) Yemen (2) Sudan,Yemen,00085243,"Issue date: 17/11/1997. Issued in Sanaa, Yemen",,,,,,,,,,,,"(UK Sanctions List Ref):AQD0292 (UN Ref):QDi.081 Arrested in Karachi, Pakistan, 30 Sep. 2002. In custody of the United States of America, as of May 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/10/2002,30/09/2002,14/04/2022,7098 +UBAYDAH,Yusuf,Abu,,,,,,,,07/02/1969,Annaba,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0117 (UN Ref):QDi.389 A leader of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930738,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13322 +UBRD,,,,,,,УБРиР,Cyrillic,Russian,,,,,,,,,,"5th Floor, 502,",7 Bolshoi Strochenovskiy pereulok,,,,Moscow,115054,Russia,(UK Sanctions List Ref):RUS1088 (UK Statement of Reasons):Ural Bank for Reconstruction and Development is a Russian bank. There are reasonable grounds to suspect that the Ural Bank for Reconstruction and Development is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):7 495 230 01 84. 7 495 230 01 85. 7 495 230 01 87 (Website):www.ubrr.ru (Type of entity):PJSC,Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,24/05/2022,15031 +UBRD PJSC,,,,,,,,,,,,,,,,,,,"5th Floor, 502,",7 Bolshoi Strochenovskiy pereulok,,,,Moscow,115054,Russia,(UK Sanctions List Ref):RUS1088 (UK Statement of Reasons):Ural Bank for Reconstruction and Development is a Russian bank. There are reasonable grounds to suspect that the Ural Bank for Reconstruction and Development is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):7 495 230 01 84. 7 495 230 01 85. 7 495 230 01 87 (Website):www.ubrr.ru (Type of entity):PJSC,Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,24/05/2022,15031 +UDALOV,Roman,Sergeevich,,,,,УДАЛОВ Роман Сергеевич,Cyrillic,Russian,27/05/1994,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1215 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15167 +UDALOV,Roman,Sergeyevich,,,,,,,,27/05/1994,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1215 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15167 +UDDIN,Mehmood,Dr. Bashir,,,,,,,,00/00/1937,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +UDDIN,Mehmood,Dr. Bashir,,,,,,,,00/00/1938,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +UDDIN,Mehmood,Dr. Bashir,,,,,,,,00/00/1939,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +UDDIN,Mehmood,Dr. Bashir,,,,,,,,00/00/1940,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +UDDIN,Mehmood,Dr. Bashir,,,,,,,,00/00/1941,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +UDDIN,Mehmood,Dr. Bashir,,,,,,,,00/00/1942,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +UDDIN,Mehmood,Dr. Bashir,,,,,,,,00/00/1943,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +UDDIN,Mehmood,Dr. Bashir,,,,,,,,00/00/1944,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +UDDIN,Mehmood,Dr. Bashir,,,,,,,,00/00/1945,,,Pakistan,,,,,,Street 13,Wazir Akbar Khan,Kabul,,,,,Afghanistan,(UK Sanctions List Ref):AQD0220 (UN Ref):QDi.055 Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1423754,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,31/12/2020,7082 +UGANDA COMMERCIAL IMPEX (UCI) LTD,,,,,,,,,,,,,,,,,,,Plot 22,,,Kanjokya Street,Kamwokya,Kampala,,Uganda,"(UK Sanctions List Ref):DRC0023 (UN Ref):CDe.009 Gold export company. (Directors Mr. Jamnadas V. LODHIA – known as “Chuni”- and his sons Mr. Kunal LODHIA and Jitendra J. LODHIA). In January 2011, Ugandan authorities notified the Committee that following an exemption on its financial holdings, Emirates Gold repaid UCI’s debt to Crane Bank in Kampala, leading to final closure of its accounts. The directors of UCI have remained involved in purchasing gold from eastern DRC. Uganda Commercial Impex (UCI) Ltd last filed a return in 2013 and was listed as “Inactive – status inactive” by the authorities of the Republic of Uganda. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):+256 41 533 578/9",Entity,Primary name,,Democratic Republic of the Congo,30/03/2007,29/03/2007,19/01/2021,9066 +UGANDA COMMERCIAL IMPEX (UCI) LTD,,,,,,,,,,,,,,,,,,,PO Box 22709,,,,,Kampala,,Uganda,"(UK Sanctions List Ref):DRC0023 (UN Ref):CDe.009 Gold export company. (Directors Mr. Jamnadas V. LODHIA – known as “Chuni”- and his sons Mr. Kunal LODHIA and Jitendra J. LODHIA). In January 2011, Ugandan authorities notified the Committee that following an exemption on its financial holdings, Emirates Gold repaid UCI’s debt to Crane Bank in Kampala, leading to final closure of its accounts. The directors of UCI have remained involved in purchasing gold from eastern DRC. Uganda Commercial Impex (UCI) Ltd last filed a return in 2013 and was listed as “Inactive – status inactive” by the authorities of the Republic of Uganda. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities. (Phone number):+256 41 533 578/9",Entity,Primary name,,Democratic Republic of the Congo,30/03/2007,29/03/2007,19/01/2021,9066 +UK,Wang,Chang,,,,,,,,29/05/1960,,,North Korea,,,,,(1) Minister for Industry and Atomic Energy (2) Member of the Central Committee of the Workers' Party of Korea,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0038 (UK Statement of Reasons):Minister for Atomic Energy and Industry. In this capacity Wang Chang Uk is responsible for supporting or promoting the DPRK’s nuclear-related, ballistic-missile-related or other weapons of mass destruction-related programmes. (Gender):Male",Individual,AKA,,Democratic People's Republic of Korea,07/04/2017,31/12/2020,03/03/2022,13456 +UK,PAE,WON,,,,,,,,22/08/1969,,,,,,472120208,expires 22 Feb 2017,Pae Won Uk is an overseas Daesong Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0249 (UN Ref):KPi.072 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13567 +UKHNALEV,Svetlana,,,,,,,,,14/03/1973,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0025 (UK Statement of Reasons):Svetlana Ukhnalyova, as a Judge at Moscow’s Tverskoi District Court, was involved in decisions to extend the detention of Sergei Magnitsky, and in particular on 15 June 2009. In this capacity, Ukhnalyova facilitated the mistreatment / denial of medical care to Sergei Magnitsky which contributed significantly to his death on 16 November 2009. (Gender):Female",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13887 +UKHNALEV,Svetlana V.,,,,,,,,,14/03/1973,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0025 (UK Statement of Reasons):Svetlana Ukhnalyova, as a Judge at Moscow’s Tverskoi District Court, was involved in decisions to extend the detention of Sergei Magnitsky, and in particular on 15 June 2009. In this capacity, Ukhnalyova facilitated the mistreatment / denial of medical care to Sergei Magnitsky which contributed significantly to his death on 16 November 2009. (Gender):Female",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13887 +UKHNALEVA,Svetlana,,,,,,,,,14/03/1973,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0025 (UK Statement of Reasons):Svetlana Ukhnalyova, as a Judge at Moscow’s Tverskoi District Court, was involved in decisions to extend the detention of Sergei Magnitsky, and in particular on 15 June 2009. In this capacity, Ukhnalyova facilitated the mistreatment / denial of medical care to Sergei Magnitsky which contributed significantly to his death on 16 November 2009. (Gender):Female",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13887 +UKHNALEVA,Svetlana V.,,,,,,,,,14/03/1973,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0025 (UK Statement of Reasons):Svetlana Ukhnalyova, as a Judge at Moscow’s Tverskoi District Court, was involved in decisions to extend the detention of Sergei Magnitsky, and in particular on 15 June 2009. In this capacity, Ukhnalyova facilitated the mistreatment / denial of medical care to Sergei Magnitsky which contributed significantly to his death on 16 November 2009. (Gender):Female",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13887 +UKHNALYOVA,Svetlana,,,,,,,,,14/03/1973,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0025 (UK Statement of Reasons):Svetlana Ukhnalyova, as a Judge at Moscow’s Tverskoi District Court, was involved in decisions to extend the detention of Sergei Magnitsky, and in particular on 15 June 2009. In this capacity, Ukhnalyova facilitated the mistreatment / denial of medical care to Sergei Magnitsky which contributed significantly to his death on 16 November 2009. (Gender):Female",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13887 +UKHNALYOVA,Svetlana V.,,,,,,,,,14/03/1973,Moscow,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0025 (UK Statement of Reasons):Svetlana Ukhnalyova, as a Judge at Moscow’s Tverskoi District Court, was involved in decisions to extend the detention of Sergei Magnitsky, and in particular on 15 June 2009. In this capacity, Ukhnalyova facilitated the mistreatment / denial of medical care to Sergei Magnitsky which contributed significantly to his death on 16 November 2009. (Gender):Female",Individual,Primary name variation,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13887 +ULBASHEV,Mukharby,Magomedovich,,,,,Мухарбий Магомедович УЛЬБАШЕВ,,,15/05/1960,"Upper Balkaria, Kabardino-Balkarian ASSR",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0944 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14895 +UL-HAQ,Amin,,,,,Doctor,,,,00/00/1960,Nangarhar Province,Afghanistan,Afghanistan,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0136 (UN Ref):QDi.002 Security coordinator for Usama bin Laden (deceased). Repatriated to Afghanistan in February 2006. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,6944 +ULLAH,Khair,,,,,Haji,,,,00/00/1965,"(1) Zumbaleh village, Nahr-e Saraj District, Helmand Province (2) Mirmadaw village, Gereshk District, Helmand Province (3) Qilla Abdullah, Baluchistan Province",(1) Afghanistan (2) Afghanistan (3) Pakistan,,BP4199631,Pakistan. Expired 25 June 2014. Officially cancelled as of 2013.,5440005229635,Issued in Pakistan. Officially cancelled as of 2013.,,Abdul Manan Chowk,Pashtunabad,Quetta,,,Baluchistan Province,,Pakistan,(UK Sanctions List Ref):AFG0129 (UN Ref):TAi.163 Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan (TAi.162). Belongs to Barakzai tribe. Father’s name is Haji Khudai Nazar. Alternative father’s name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,17/07/2012,29/06/2012,01/02/2021,12702 +ULLAH,Najib,,,,,,,,,00/00/1958,"Zere Kohi area, Shindand District, Farah Province",Afghanistan,Afghanistan,000737,(Afghan). Issued 20 Oct 1996,,,"Consul General, Taliban Consulate General, Peshawar, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0101 (UN Ref):TAi.132 Member of Taliban Peshawar Military Council as at 2010. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,AKA,Low quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7356 +UMAKHANOV,Iliyas,Magomed-Salamovich,,,,,Илья́с Магомед-Сала́мович Умаха́нов,,,27/03/1957,Makhachkala,Russia,Russia,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,,103426,Russia,"(UK Sanctions List Ref):RUS1371 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,04/05/2022,04/05/2022,04/05/2022,15348 +UMAR,Abu,,,,,,,,,11/01/1986,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +UMAR,Abu,,,,,,,,,00/00/1982,"Akhmeta, Village Birkiani",Georgia,Georgia,09AL14455,Georgian. Expires 26 June 2019.,08001007864,Georgian,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0324 (UN Ref):QDi.345 As of mid-2014, Syria-based senior military commander and shura council member of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115). Led approximately 1,000 foreign fighters for ISIL and committed a number of attacks in northern Syria. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843242. Syria, located in as at Dec. 2014",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,31/12/2020,13196 +UMAR,Abu,Omar,Abu,,,,,,,30/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +UMAR,Abu,Omar,Abu,,,,,,,13/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +UMAR,Abu,Umar,,,,,,,,30/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +UMAR,Abu,Umar,,,,,,,,13/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +UMAR,Muhammad,Khalil,Mustafa,,,,,,,00/00/1959,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +UMAR,Muhammad,Khalil,Mustafa,,,,,,,00/00/1957,"Mosul, Ninawa Province",Iraq,Iraq,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0086 (UN Ref):QDi.339 Senior Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (AQI) (QDe.115), official. Previously served as a representative of AQI to Al-Qaida (QDe.004) senior leadership in Pakistan. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13136 +UMAROV,Dokka,,,,,,,,,12/05/1964,"Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika",Russia,Russia,96 03 464086,"Russian Federation number, issued on 1 Jun. 2003",,,,,,,,,,,Russian Federation (as at November 2010),"(UK Sanctions List Ref):AQD0165 (UN Ref):QDi.290 Physical description: 180 cm tall, dark hair, 7-9 cm. long scar on the face, part of the tongue is missing, has a speech defect. Resides in the Russian Federation as at Nov. 2010. International arrest warrant issued in the year 2000. INTERPOL Special Notice contains biometric information. Reportedly deceased as of April 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4065325",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/03/2011,10/03/2011,12/01/2022,11688 +UMAROV,Dokka,,,,,,,,,13/04/1964,"Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika",Russia,Russia,96 03 464086,"Russian Federation number, issued on 1 Jun. 2003",,,,,,,,,,,Russian Federation (as at November 2010),"(UK Sanctions List Ref):AQD0165 (UN Ref):QDi.290 Physical description: 180 cm tall, dark hair, 7-9 cm. long scar on the face, part of the tongue is missing, has a speech defect. Resides in the Russian Federation as at Nov. 2010. International arrest warrant issued in the year 2000. INTERPOL Special Notice contains biometric information. Reportedly deceased as of April 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4065325",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/03/2011,10/03/2011,12/01/2022,11688 +UMAROV,Dokka,,,,,,,,,13/04/1965,"Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika",Russia,Russia,96 03 464086,"Russian Federation number, issued on 1 Jun. 2003",,,,,,,,,,,Russian Federation (as at November 2010),"(UK Sanctions List Ref):AQD0165 (UN Ref):QDi.290 Physical description: 180 cm tall, dark hair, 7-9 cm. long scar on the face, part of the tongue is missing, has a speech defect. Resides in the Russian Federation as at Nov. 2010. International arrest warrant issued in the year 2000. INTERPOL Special Notice contains biometric information. Reportedly deceased as of April 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4065325",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/03/2011,10/03/2011,12/01/2022,11688 +UMAROV,Dokka,,,,,,,,,00/00/1955,"Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika",Russia,Russia,96 03 464086,"Russian Federation number, issued on 1 Jun. 2003",,,,,,,,,,,Russian Federation (as at November 2010),"(UK Sanctions List Ref):AQD0165 (UN Ref):QDi.290 Physical description: 180 cm tall, dark hair, 7-9 cm. long scar on the face, part of the tongue is missing, has a speech defect. Resides in the Russian Federation as at Nov. 2010. International arrest warrant issued in the year 2000. INTERPOL Special Notice contains biometric information. Reportedly deceased as of April 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4065325",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/03/2011,10/03/2011,12/01/2022,11688 +UMAROV,DOKU,KHAMATOVICH,,,,,Умаров Доку Хаматович,,,12/05/1964,"Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika",Russia,Russia,96 03 464086,"Russian Federation number, issued on 1 Jun. 2003",,,,,,,,,,,Russian Federation (as at November 2010),"(UK Sanctions List Ref):AQD0165 (UN Ref):QDi.290 Physical description: 180 cm tall, dark hair, 7-9 cm. long scar on the face, part of the tongue is missing, has a speech defect. Resides in the Russian Federation as at Nov. 2010. International arrest warrant issued in the year 2000. INTERPOL Special Notice contains biometric information. Reportedly deceased as of April 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4065325",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,17/03/2011,10/03/2011,12/01/2022,11688 +UMAROV,DOKU,KHAMATOVICH,,,,,Умаров Доку Хаматович,,,13/04/1964,"Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika",Russia,Russia,96 03 464086,"Russian Federation number, issued on 1 Jun. 2003",,,,,,,,,,,Russian Federation (as at November 2010),"(UK Sanctions List Ref):AQD0165 (UN Ref):QDi.290 Physical description: 180 cm tall, dark hair, 7-9 cm. long scar on the face, part of the tongue is missing, has a speech defect. Resides in the Russian Federation as at Nov. 2010. International arrest warrant issued in the year 2000. INTERPOL Special Notice contains biometric information. Reportedly deceased as of April 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4065325",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,17/03/2011,10/03/2011,12/01/2022,11688 +UMAROV,DOKU,KHAMATOVICH,,,,,Умаров Доку Хаматович,,,13/04/1965,"Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika",Russia,Russia,96 03 464086,"Russian Federation number, issued on 1 Jun. 2003",,,,,,,,,,,Russian Federation (as at November 2010),"(UK Sanctions List Ref):AQD0165 (UN Ref):QDi.290 Physical description: 180 cm tall, dark hair, 7-9 cm. long scar on the face, part of the tongue is missing, has a speech defect. Resides in the Russian Federation as at Nov. 2010. International arrest warrant issued in the year 2000. INTERPOL Special Notice contains biometric information. Reportedly deceased as of April 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4065325",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,17/03/2011,10/03/2011,12/01/2022,11688 +UMAROV,DOKU,KHAMATOVICH,,,,,Умаров Доку Хаматович,,,00/00/1955,"Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika",Russia,Russia,96 03 464086,"Russian Federation number, issued on 1 Jun. 2003",,,,,,,,,,,Russian Federation (as at November 2010),"(UK Sanctions List Ref):AQD0165 (UN Ref):QDi.290 Physical description: 180 cm tall, dark hair, 7-9 cm. long scar on the face, part of the tongue is missing, has a speech defect. Resides in the Russian Federation as at Nov. 2010. International arrest warrant issued in the year 2000. INTERPOL Special Notice contains biometric information. Reportedly deceased as of April 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4065325",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,17/03/2011,10/03/2011,12/01/2022,11688 +UMER,Arif,,,,,,,,,00/00/1944,,Pakistan,Pakistan,,,,,,House No 136,KDA Scheme No 1,Tipu Sultan Road,,,Karachi,,Pakistan,(UK Sanctions List Ref):AQD0146 (UN Ref):QDi.271 Associated with Lashkar-e-Tayyiba (QDe.118) and Al-Qaida (QDe.004). In detention as at June 2009. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1578017,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,30/06/2009,29/06/2009,31/12/2020,10906 +UMMAH TAMEER E-NAU (UTN),,,,,,,,,,,,,,,,,,,,,,,,,,Pakistan,"(UK Sanctions List Ref):AQD0083 (UN Ref):QDe.068 Its directors included Mahmood Sultan Bashir-Ud-Din (QDi.055), Majeed Abdul Chaudhry (QDi.054) and Mohammed Tufail (QDi.056). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235577",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,12/01/2022,7530 +UMMAH TAMEER E-NAU (UTN),,,,,,,,,,,,,,,,,,,Street 13,Wazir Akbar Khan,,,,Kabul,,Afghanistan,"(UK Sanctions List Ref):AQD0083 (UN Ref):QDe.068 Its directors included Mahmood Sultan Bashir-Ud-Din (QDi.055), Majeed Abdul Chaudhry (QDi.054) and Mohammed Tufail (QDi.056). Banned in Pakistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235577",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,24/12/2001,24/12/2001,12/01/2022,7530 +UN SONG,Ri,,,,,,,,,23/07/1969,,,North Korea,,,,,Ri U’n-so’ng is an overseas Korea Unification Development Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0269 (UN Ref):KPi.078 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13574 +U'N SO'NG,RI,,,,,,,,,23/07/1969,,,North Korea,,,,,Ri U’n-so’ng is an overseas Korea Unification Development Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0269 (UN Ref):KPi.078 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13574 +UNIT 08806,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0197 Names of Director(s)/Management: Arseny Pavlov aka Motorola (deceased) (UK Statement of Reasons):Armed separatist group which has actively supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. Part of the so-called Armed Forces of “Donetsk People’s Republic”. (Website):Social Media: http://vk.com/kazak_nac_guard (Type of entity):Armed Separatist Group",Entity,AKA,,Russia,16/02/2015,31/12/2020,31/12/2020,13219 +UNITED AIRCRAFT CORPORATION,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0239 (List of persons named in relation to financial and investment restrictions Group ID): 13121. (UK Statement of Reasons):PJSC United Aircraft Corporation (UAC) is a Russian state owned enterprise. It contains all of Russia's major aircraft manufacturing companies and is a major supplier of aircraft to the Russian military. This includes military aircraft that have been used in Crimea. Therefore UAC provides financial services or makes available funds and economic resources that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Type of entity):(1) Public Joint stock company (2) Holding company",Entity,Primary name variation,,Russia,24/02/2022,24/02/2022,06/04/2022,14186 +UNITED WORLD INTERNATIONAL,,,,,,,,,,,,,,,,,,,Abbasağa Mah. Istiklal Cad. Deva Exit. No:3 Floor:2 Flat:5,,,,,"Beyoğlu, Istanbul",,Turkey,"(UK Sanctions List Ref):RUS1497 (UK Statement of Reasons):United World International is an online news site which promotes pro-Russian disinformation. There are reasonable grounds to believe that this entity is or has been involved supporting, or promoting policies or actions which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine.   (Subsidiaries):The Gorev Foundation",Entity,Primary name,,Russia,04/07/2022,04/07/2022,04/07/2022,15438 +UNITED WORLD INTERNATIONAL PROJECT (UWIDATA),,,,,,,,,,,,,,,,,,,Abbasağa Mah. Istiklal Cad. Deva Exit. No:3 Floor:2 Flat:5,,,,,"Beyoğlu, Istanbul",,Turkey,"(UK Sanctions List Ref):RUS1497 (UK Statement of Reasons):United World International is an online news site which promotes pro-Russian disinformation. There are reasonable grounds to believe that this entity is or has been involved supporting, or promoting policies or actions which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine.   (Subsidiaries):The Gorev Foundation",Entity,Primary name variation,,Russia,04/07/2022,04/07/2022,04/07/2022,15438 +UNITED WORLD LLC,,,,,,,,,,,,,,,,,,,Abbasağa Mah. Istiklal Cad. Deva Exit. No:3 Floor:2 Flat:5,,,,,"Beyoğlu, Istanbul",,Turkey,"(UK Sanctions List Ref):RUS1497 (UK Statement of Reasons):United World International is an online news site which promotes pro-Russian disinformation. There are reasonable grounds to believe that this entity is or has been involved supporting, or promoting policies or actions which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine.   (Subsidiaries):The Gorev Foundation",Entity,Primary name variation,,Russia,04/07/2022,04/07/2022,04/07/2022,15438 +UNIVERSITY OF SHAHID BEHESHTI,,,,,,,,,,,,,,,,,,,P.O. Box 19395/4716,,,,,Tehran,19834,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +UNIVERSITY OF SHAHID BEHESHTI,,,,,,,,,,,,,,,,,,,Shahid Beheshti University,,,,Evin,Tehran,1983963113,Iran,(UK Sanctions List Ref):INU0112 (UK Statement of Reasons):Carries out scientific research in relation to Iran’s proliferation-sensitive nuclear activities. (Phone number):(1) +98 21 2403003 (2) +98 21 2403041 (3) +98 21 29902866 (Website):(1) en.sbu.ac.ir (2) www.sbu canada.org (Type of entity):Research,Entity,AKA,,Iran (Nuclear),24/05/2011,31/12/2020,04/03/2022,11955 +UNSAN,,,,,,,,,,,,,,,,,,,,,,,Mangungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +UNSAN,,,,,,,,,,,,,,,,,,,,,,,Mangyongdae District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +UNSAN,,,,,,,,,,,,,,,,,,,,,,Tongan-dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +UNSAN SOLID TOOLS,,,,,,,,,,,,,,,,,,,,,,,Mangungdae-gu,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +UNSAN SOLID TOOLS,,,,,,,,,,,,,,,,,,,,,,,Mangyongdae District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +UNSAN SOLID TOOLS,,,,,,,,,,,,,,,,,,,,,,Tongan-dong,Central District,Pyongyang,,North Korea,(UK Sanctions List Ref):DPR0161 (UN Ref):KPe.016 Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation. Korea Ryonbong General Corporation was designated by the Committee in April 2009 and is a defense conglomerate specializing in acquisition for DPRK defense industries and support to that country's military-related sales. Facsimile number: 850-2-381-4410 (Phone number):850 2 18111-3818642. 850-2-18111. 850-2-18111-8642. 850-2-381-4410 (Email address):and millim@silibank.com. ryonha@silibank.com. sjc-117@hotmail.com (Parent company):Korea Ryonbong General Corporation,Entity,AKA,,Democratic People's Republic of Korea,21/12/2011,22/01/2013,31/12/2020,12446 +URAL AVIA LLC,,,,,,,"ООО ""УРАЛ АВИА""",,Russian,,,,,,,,,,"Ulitsa Krestinskogo, 59/1, оф. 141",Yekaterinburg,,,,Sverdlovsk Oblast,620073,Russia,"(UK Sanctions List Ref):MYA0046 (UK Statement of Reasons):The Myanmar Armed Forces have a track record of committing serious human rights violations and violations of international humanitarian law in Myanmar for decades. Ural Avia LLC is a Russian company which has been responsible for the supply of parts and upkeep of aircraft for the Myanmar Armed Forces since the coup in February 2021. Therefore, Ural Avia LLC has been and is involved in the supply of restricted goods to Myanmar. (Phone number):+7 (343) 381-22-44 (Website):http://uralavia.com/ (Email address):URALAVIAPK@MAIL.RU (Type of entity):Private Business (Business Reg No):1146679010818",Entity,Primary name,,Myanmar,16/06/2022,16/06/2022,16/06/2022,15400 +URAL BANK FOR RECONSTRUCTION AND DEVELOPMENT,,,,,,,Уральский банк реконструкции и развития,Cyrillic,Russian,,,,,,,,,,"5th Floor, 502,",7 Bolshoi Strochenovskiy pereulok,,,,Moscow,115054,Russia,(UK Sanctions List Ref):RUS1088 (UK Statement of Reasons):Ural Bank for Reconstruction and Development is a Russian bank. There are reasonable grounds to suspect that the Ural Bank for Reconstruction and Development is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in the financial services sector - a sector of strategic significance to the Government of Russia. (Phone number):7 495 230 01 84. 7 495 230 01 85. 7 495 230 01 87 (Website):www.ubrr.ru (Type of entity):PJSC,Entity,Primary name,,Russia,24/03/2022,24/03/2022,24/05/2022,15031 +URALVAGONZAVOD,,,,,,,,,,,,,,,,,,,B. Yakimanka,40,,,,Moscow,119049,Russia,"(UK Sanctions List Ref):RUS0241 (List of persons named in relation to financial and investment restrictions Group ID): 13122. (UK Statement of Reasons):UralVagonZavod (""UVZ"") is a wholly Russian-state owned company which produces military equipment, particularly tanks, for the Russian armed forces. It is one of the largest tank manufacturers in the world. As such, UVZ plays a key role in supporting the Government of Russia; it carries on business in a sector of strategic significance to the Government of Russia, and has contributed towards threatening the territorial integrity, sovereignty and independence of Ukraine. (Website):uralvagonzavod.ru (Type of entity):State owned Joint Stock Company",Entity,Primary name variation,,Russia,24/02/2022,24/02/2022,06/04/2022,14188 +URFALI,Khodr,,,,,,,,,00/00/1956,Deir Ezzor,,,,,,,Former Minister of Economy & Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0125 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. There are reasonable grounds to suspect that Khodr Orfali has been involved in the repression of the civilian population in Syria and/or supported or benefitted from the regime while in this capacity. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12992 +URFALI,Khud,,,,,,,,,00/00/1956,Deir Ezzor,,,,,,,Former Minister of Economy & Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0125 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. There are reasonable grounds to suspect that Khodr Orfali has been involved in the repression of the civilian population in Syria and/or supported or benefitted from the regime while in this capacity. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12992 +URFALI,Khudr,,,,,,,,,00/00/1956,Deir Ezzor,,,,,,,Former Minister of Economy & Foreign Trade,,,,,,,,,(UK Sanctions List Ref):SYR0125 (UK Statement of Reasons):Former Minister of Economy and Foreign Trade. There are reasonable grounds to suspect that Khodr Orfali has been involved in the repression of the civilian population in Syria and/or supported or benefitted from the regime while in this capacity. (Gender):Male,Individual,Primary name variation,,Syria,24/06/2014,31/12/2020,13/05/2022,12992 +UR-REHMAN,Kaki,,,,,,,,,30/12/1960,Okara,Pakistan,Pakistan,,,61101-9618232-1,,,Barahkoh,P.O. DO,,,,Tehsil and District Islamabad,,Pakistan,(UK Sanctions List Ref):AQD0342 (UN Ref):QDi.264 Chief of operations of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543499. Pakistan (location as at May 2008),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9216 +UR-REHMAN,Kaki,,,,,,,,,30/12/1960,Okara,Pakistan,Pakistan,,,61101-9618232-1,,,Chak No. 18/IL,Rinala Khurd,Tehsil Rinala Khurd,,,District Okara,,Pakistan,(UK Sanctions List Ref):AQD0342 (UN Ref):QDi.264 Chief of operations of Lashkar-e-Tayyiba (listed under permanent reference number QDe.118). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1543499. Pakistan (location as at May 2008),Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/12/2008,10/12/2008,31/12/2020,9216 +URZHUMTSEV,Oleg,Vyacheslavovich,,,,,Олег Вячеславович УРЖУМЦЕВ,,,22/10/1968,,,Russia,,,,,Formerly Senior Investigator of the Department for Investigating Organised Economic Criminal Activity of the Investigative Committee under the Ministry of Internal Affairs of Russia.,,,,,,,,,"(UK Sanctions List Ref):GAC0013 (UK Statement of Reasons):In December 2007, an organised criminal group was involved in serious corruption through the misappropriation of the equivalent of $230m of Russian state property via a complex scheme involving a fraudulent tax rebate. URZHUMTSEV was involved in the fraud, in particular, by closing an investigation into the re-registration of companies involved in the misappropriation. His actions facilitated or provided support for the serious corruption. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,26/04/2021,26/04/2021,26/04/2021,14093 +USACHEVA,Alexandra,Alexandrovna,,,,,УСАЧЕВА Александра Александровна,Cyrillic,Russian,,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1216 Suspected Date of Birth: 28/09/yyyy (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15168 +USAMA,Abu,,,,,,,,,21/04/1960,(1) Sharqiyah. (2) Zaqaziq,(1) Egypt (2) Egypt,Egypt,,,,,,,,,,,,,Afghanistan,(UK Sanctions List Ref):AQD0341 (UN Ref):QDi.193 Father’s name is Ahmed Ezat Zaki. Member of Egyptian Islamic Jihad (QDe.003). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4514888,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,12/01/2022,8716 +USAMA,Abu,,,,,,,,,21/04/1960,(1) Sharqiyah. (2) Zaqaziq,(1) Egypt (2) Egypt,Egypt,,,,,,May be on the Pakistani-Afghan border,,,,,,,Pakistan,(UK Sanctions List Ref):AQD0341 (UN Ref):QDi.193 Father’s name is Ahmed Ezat Zaki. Member of Egyptian Islamic Jihad (QDe.003). Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4514888,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,12/01/2022,8716 +USAMA BIN LADEN NETWORK,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0027 (UN Ref):QDe.004 Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278330,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,23/02/2001,06/10/2001,31/12/2020,6965 +USAMA BIN LADEN ORGANIZATION,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0027 (UN Ref):QDe.004 Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278330,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,23/02/2001,06/10/2001,31/12/2020,6965 +USATYUK,Valery,Petrovich,,,,,Вале́рий Петро́вич Усатю́к,,,14/07/1948,Bishkek,Kyrgyzstan,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0877 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14828 +USC,,,,,,,,,,,,,,,,,,,11,Bolshaya Tatarskaya Street,Bld.B,,,Moscow,115184,Russia,"(UK Sanctions List Ref):RUS0242 (UK Statement of Reasons):Public Joint Stock Company (PJSC) United Shipbuilding Corporation (USC) is a Russian state-owned enterprise. USC is the largest shipbuilding corporation in Russia, uniting shipbuilding, repair and maintenance subsidiaries. This includes the supply of several frigates and other warship classes that have been deployed in Crimea since Russia illegally annexed the region in 2014, and have conducted drills in the Black Sea in 2021. Therefore USC has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. USC also operates in a sector of strategic significance, specifically, the Russian defence sector. As a result USC is involved in benefitting from or supporting the Government of Russia. (Phone number):+7 (495) 617-33-00 (Website):www.aoosk.ru/en (Email address):info@aoosk.ru (Type of entity):(1) Public Joint stock company (2) Holding company",Entity,Primary name variation,,Russia,24/02/2022,24/02/2022,24/02/2022,14189 +USC,,,,,,,,,,,,,,,,,,,St Petersburg – ul. Marat,90,,,,St Petersburg,191119,Russia,"(UK Sanctions List Ref):RUS0242 (UK Statement of Reasons):Public Joint Stock Company (PJSC) United Shipbuilding Corporation (USC) is a Russian state-owned enterprise. USC is the largest shipbuilding corporation in Russia, uniting shipbuilding, repair and maintenance subsidiaries. This includes the supply of several frigates and other warship classes that have been deployed in Crimea since Russia illegally annexed the region in 2014, and have conducted drills in the Black Sea in 2021. Therefore USC has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. USC also operates in a sector of strategic significance, specifically, the Russian defence sector. As a result USC is involved in benefitting from or supporting the Government of Russia. (Phone number):+7 (495) 617-33-00 (Website):www.aoosk.ru/en (Email address):info@aoosk.ru (Type of entity):(1) Public Joint stock company (2) Holding company",Entity,Primary name variation,,Russia,24/02/2022,24/02/2022,24/02/2022,14189 +USMANOV,Alisher,,,,,,,,,09/09/1953,Chust,Uzbekistan,Russia,,,,,Founder of USM Holdings,,,,,,,,,"(UK Sanctions List Ref):RUS0266 (UK Statement of Reasons):Alisher USMANOV is a prominent Russian businessman and pro-Kremlin oligarch. USMANOV is closely associated with high-profile individuals within the Government of Russia, both financially through his considerable business links and through relationships with significant individuals including President Vladimir Putin. Therefore, USMANOV is associated with individuals within the Government of Russia who are involved in destabilising and threatening the territorial integrity, sovereignty and independence of Ukraine. Furthermore, USMANOV – via his holding company USM HOLDINGS – carries on business in sectors of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,03/03/2022,03/03/2022,03/03/2022,14210 +USMANOV,Alisher,Burkhanovich,,,,,Алишер Бурханович УСМАНОВ,,,09/09/1953,Chust,Uzbekistan,Russia,,,,,Founder of USM Holdings,,,,,,,,,"(UK Sanctions List Ref):RUS0266 (UK Statement of Reasons):Alisher USMANOV is a prominent Russian businessman and pro-Kremlin oligarch. USMANOV is closely associated with high-profile individuals within the Government of Russia, both financially through his considerable business links and through relationships with significant individuals including President Vladimir Putin. Therefore, USMANOV is associated with individuals within the Government of Russia who are involved in destabilising and threatening the territorial integrity, sovereignty and independence of Ukraine. Furthermore, USMANOV – via his holding company USM HOLDINGS – carries on business in sectors of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,03/03/2022,03/03/2022,03/03/2022,14210 +USS,Alexander,Viktorovich,,,,,Александр Викторович Усс,,,03/11/1954,,,Russia,,,,,Governor of Krasnoyarsk Territory,,,,,,,,,"(UK Sanctions List Ref):RUS1517 (UK Statement of Reasons):Alexander Viktorovich USS is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because USS is a regional governor. Specifically, USS is Governor of Krasnoyarsk Territory. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15455 +USTINOV,Vladimir,Vasilyevich,,,,,УСТИНОВ Владимир Васильевич,Cyrillic,Russian,25/02/1953,Nikolayevsk-on-Amur,Russia,,,,,,Member of Russian Security Council and Presidential Plenipotentiary Envoy to the Southern Federal District,,,,,,,,,"(UK Sanctions List Ref):RUS0843 (UK Statement of Reasons):Vladimir Vasilyevich USTINOV is a member of the Russian Security Council (RSC) and Presidential Plenipotentiary Envoy to the Southern Federal District. The RSC has been involved actively in decision-making about Russian policy towards Ukraine. On 21 February 2022, the RSC supported a proposal to recognise Donetsk and Luhansk as independent republics. USTINOV has therefore been responsible for, provided support to, or promoted a policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14794 +UTHMAN,,,,,,,,,,15/05/1972,"Punta, Santa Ana, Manila",Philippines,Philippines,,,,,,Ma. Bautista,,,Punta,Santa Ana,Manila,3111,Philippines,(UK Sanctions List Ref):AQD0293 (UN Ref):QDi.246 Member of the Rajah Solaiman Movement (QDe.128) and linked to the Abu Sayyaf Group (QDe.001). Father's name is Fernando Rafael Dellosa. Mother's name is Editha Parado Cain. In detention in the Philippines as of Jan. 2010. Review pursuant to Security Council resolution 1822 (2008) was concluded on 13 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,11/06/2008,04/06/2008,31/12/2020,10666 +UTHMAN,Al-Samman,,,,,,,,,30/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +UTHMAN,Al-Samman,,,,,,,,,13/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +UTHMAN,Umar,,,,,,,,,30/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +UTHMAN,Umar,,,,,,,,,13/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +UTHMAN,OMAR,MAHMOUD,,,,,عمر محمود عثمان,,,30/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +UTHMAN,OMAR,MAHMOUD,,,,,عمر محمود عثمان,,,13/12/1960,"Bethlehem, West Bank",Occupied Palestinian Territories,Jordan,,,,,,,,,,,,,Jordan,"(UK Sanctions List Ref):AQD0282 (UN Ref):QDi.031 Associated with Al-Qaida-related groups in the United Kingdom and other countries. Convicted in absentia in Jordan for involvement in terrorist acts in 1998. Arrested in Feb. 2001 in the United Kingdom, was further detained between Oct. 2002 and Mar. 2005 and between Aug. 2005 and Jun. 2008. In custody since Dec. 2008. Deported to Jordan from the United Kingdom on 7 July 2013 to face terrorism charges. Review pursuant to Security Council resolution 1822 (2008) was concluded on 19 Oct. 2009. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. Address country Jordan (since July 2013).",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,17/10/2001,17/10/2001,31/12/2020,6932 +'UTHMAN 'ABD AL-SALAM,ASHRAF,MUHAMMAD,YUSUF,,,,اشرف محمد يوسف عثمان عبد السلام,,,00/00/1984,,Iraq,Jordan,(1) K048787 (2) 486298,(1) Issued in Jordan (2) Issued in Jordan,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0149 (UN Ref):QDi.343 A member of Al-Qaida (QDe.004) as of 2012 and a fighter in the Syrian Arab Republic since early 2014. Provided financial, material, and technological support for Al-Qaida, Al-Nusrah Front for the People of the Levant (QDe.137) and Al-Qaida in Iraq (AQI) (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843240. Address country Syria, located in as at Dec. 2014",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,24/03/2021,13194 +UTHMAN 'ABD-AL-SALAM,Ashraf,Muhammad,Yusif,,,,,,,00/00/1984,,Iraq,Jordan,(1) K048787 (2) 486298,(1) Issued in Jordan (2) Issued in Jordan,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0149 (UN Ref):QDi.343 A member of Al-Qaida (QDe.004) as of 2012 and a fighter in the Syrian Arab Republic since early 2014. Provided financial, material, and technological support for Al-Qaida, Al-Nusrah Front for the People of the Levant (QDe.137) and Al-Qaida in Iraq (AQI) (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5843240. Address country Syria, located in as at Dec. 2014",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,03/02/2015,23/01/2015,24/03/2021,13194 +UTKIN,Dmitry,Valerievich,,,,,УТКИН Дмитрий Валерьевич,Cyrillic,Russian,11/06/1970,Asbest,Russia,Russia,(1) 5803989141 (2) 3950952,(1) Russian citizen passport (2) Russian citizen foreign passport,(1) 262404751144 (2) M-209,(1) Tax Identification Number (2) Wagner Group identification number,Commander – Wagner Group Private Military Company,,,,,,,,,"(UK Sanctions List Ref):RUS0815 (UK Statement of Reasons):Dmitry Valeryevich UTKIN is a member/associate of the Wagner Group, a Russian Private Military Company, which has conducted military operations in Ukraine. UTKIN, therefore, is or has been responsible for, or has engaged in actions or policies that destabilise Ukraine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14766 +UTYASHEVA,Rimma,Amirovna,,,,,Утяшева Римма Амировна,,,03/01/1952,Sabay,Russia,,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0513 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14458 +UVAROV,Maksim,Anatolyevich,,,,,УВАРОВ Максим Анатольевич,Cyrillic,Russian,14/08/1980,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1302 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15254 +UVAROV,Maxim,Anatolievich,,,,,,,,14/08/1980,,,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1302 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15254 +UWAYS,Hassan,Tahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +UWAYS,Hassan,Tahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Eritrea,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +UWAYS,Hassan,Tahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,08/11/2001,09/11/2001,31/12/2020,6995 +UWAYS,Hassan,Tahir,,,,,,,,00/00/1935,,Somalia,Somalia,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):AQD0194 and SOM0003 (UN Ref):QDi.042 and SOi.002 Listed under the ISIL (Da'esh) and Al-Qaida and Somalia sanctions regimes. Family background: from the Hawiye's Habergidir, Ayr clan. Senior leader of Al-Itihaad Al-Islamiya (AIAI) (QDe.002) and Hizbul Islam in Somalia. Since 12 April 2010, also subject to the sanctions measures set out in Security Council resolution 1844 (2008) concerning Somalia and Eritrea (see https://www.un.org/sc/suborg/en/sanctions/751). Review pursuant to Security Council resolution 1822 (2008) was concluded on 22 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,6995 +UYBA,Vladimir,Viktorovich,,,,,Владимир Викторович Уйба,,,04/10/1958,,,Russia,,,,,Head of the Komi Republic,,,,,,,,,"(UK Sanctions List Ref):RUS1526 (UK Statement of Reasons):Vladimir Viktorovich UYBA is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because UYBA is a regional governor or equivalent. Specifically, UYBA is Head of the Komi Republic. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15479 +VAGNER GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1090 (UK Statement of Reasons):The WAGNER GROUP is often described as a Russia-based Private Military Company and is an entity or group that provides military services for financial gain. It has organised the recruitment of, and coordinated and planned operations for, the Wagner Group mercenaries participating in military operations in Ukraine. There are multiple, credible sources which corroborate and support the conclusion that the existence of the organisation known as the Wagner Group is kept purposefully vague and opaque in order to provide a deniable military capability for the Russian State. The WAGNER GROUP is therefore responsible for, engages in, and provides support for actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Entity,Primary name variation,,Russia,24/03/2022,24/03/2022,27/05/2022,15033 +VAHIDI,Ahmad,,,,,IRGC Brigadier General,,,,27/06/1958,Shiraz,Iran,,,,,,(1) Minister of Interior (2) Head of State Security Council (3) Former Minister of Defence,,,,,,,,,(UK Sanctions List Ref):INU0002 (UK Statement of Reasons):Former Minister of MODAFL and member of the IRGC (Gender):Male,Individual,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10647 +VAHIDI,Ahmad,,,,,IRGC Brigadier General,,,,21/03/1958,Shiraz,Iran,,,,,,(1) Minister of Interior (2) Head of State Security Council (3) Former Minister of Defence,,,,,,,,,(UK Sanctions List Ref):INU0002 (UK Statement of Reasons):Former Minister of MODAFL and member of the IRGC (Gender):Male,Individual,Primary name,,Iran (Nuclear),24/06/2008,31/12/2020,04/03/2022,10647 +VAINBERG,Aleksandr,Vladelenovich,,,,,,,,02/02/1961,Bolsheorlovskoye,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0980 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,26/04/2022,14931 +VAINO,Anton,Eduardovich,,,,,ВАЙНО Антон Эдуардович,Cyrillic,Russian,17/02/1972,Tallinn,Estonia,Russia,,,,,(1) Chief of Staff of the Presidential Executive Office (2) Member of the Russian Security Council.,,,,,,,,,"(UK Sanctions List Ref):RUS0690 (UK Statement of Reasons):Anton Eduardovich VAINO is Chief of Staff of the Presidential Executive Office and a permanent member of the Russian Security Council (RSC). The RSC has been involved actively in decision-making about Russian policy towards Ukraine. On 21 February 2022, the RSC supported a proposal to recognise Donetsk and Luhansk as independent republics. VAINO has therefore been responsible for, provided support to, or promoted a policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,24/05/2022,14641 +VAKHITOV,AYRAT,NASIMOVICH,,,,,Айрат Насимович Вахитов,,,27/03/1977,"Naberezhnye Chelny, Republic of Tatarstan",Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0151 (UN Ref):QDi.397 May use a fake passport of a Syrian or Iraqi citizen. Member of the Al-Nusrah Front for the People of the Levant (ANF) (QDe.137), “Bulgar Group”, leads a group of 100 fighters. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5966088",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/08/2016,03/08/2016,12/01/2022,13377 +VAKULCHIK,Valeri,Paulavich,,,,,,,,19/06/1964,"Radostovo, Brest Region",,Belarus,,,,,"Former Head, Security Council, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0027 Former Chairman, Committee for State Security (KGB), Belarus (UK Statement of Reasons):Lt General Valeri Vakulchyk was Chairman of the State Security Committee (KGB) of Belarus between November 2012 and 03 September 2020. From 03 September to 29 October 2020, he was Head of the Security Council. In his role as Chairman of the State Security Committee, he had overall responsibility for the State Security Committee including the involvement of KGB officers in serious human rights violations and abuses against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13959 +VAKULCHIK,Valeri,Pawlavich,,,,,,,,19/06/1964,"Radostovo, Brest Region",,Belarus,,,,,"Former Head, Security Council, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0027 Former Chairman, Committee for State Security (KGB), Belarus (UK Statement of Reasons):Lt General Valeri Vakulchyk was Chairman of the State Security Committee (KGB) of Belarus between November 2012 and 03 September 2020. From 03 September to 29 October 2020, he was Head of the Security Council. In his role as Chairman of the State Security Committee, he had overall responsibility for the State Security Committee including the involvement of KGB officers in serious human rights violations and abuses against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13959 +VAKULCHIK,Valery,Pavlovich,,,,,,,,19/06/1964,"Radostovo, Brest Region",,Belarus,,,,,"Former Head, Security Council, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0027 Former Chairman, Committee for State Security (KGB), Belarus (UK Statement of Reasons):Lt General Valeri Vakulchyk was Chairman of the State Security Committee (KGB) of Belarus between November 2012 and 03 September 2020. From 03 September to 29 October 2020, he was Head of the Security Council. In his role as Chairman of the State Security Committee, he had overall responsibility for the State Security Committee including the involvement of KGB officers in serious human rights violations and abuses against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13959 +VAKULCHIK,Valery,Pawlavich,,,,,,,,19/06/1964,"Radostovo, Brest Region",,Belarus,,,,,"Former Head, Security Council, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0027 Former Chairman, Committee for State Security (KGB), Belarus (UK Statement of Reasons):Lt General Valeri Vakulchyk was Chairman of the State Security Committee (KGB) of Belarus between November 2012 and 03 September 2020. From 03 September to 29 October 2020, he was Head of the Security Council. In his role as Chairman of the State Security Committee, he had overall responsibility for the State Security Committee including the involvement of KGB officers in serious human rights violations and abuses against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13959 +VAKULCHYK,Valeri,Paulavich,,,,,"ВАКУЛЬЧИК, Валерий Павлович",,,19/06/1964,"Radostovo, Brest Region",,Belarus,,,,,"Former Head, Security Council, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0027 Former Chairman, Committee for State Security (KGB), Belarus (UK Statement of Reasons):Lt General Valeri Vakulchyk was Chairman of the State Security Committee (KGB) of Belarus between November 2012 and 03 September 2020. From 03 September to 29 October 2020, he was Head of the Security Council. In his role as Chairman of the State Security Committee, he had overall responsibility for the State Security Committee including the involvement of KGB officers in serious human rights violations and abuses against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13959 +VAKULCHYK,Valery,Pavlovich,,,,,"ВАКУЛЬЧIК, Валéрый Пáўлавiч",,,19/06/1964,"Radostovo, Brest Region",,Belarus,,,,,"Former Head, Security Council, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0027 Former Chairman, Committee for State Security (KGB), Belarus (UK Statement of Reasons):Lt General Valeri Vakulchyk was Chairman of the State Security Committee (KGB) of Belarus between November 2012 and 03 September 2020. From 03 September to 29 October 2020, he was Head of the Security Council. In his role as Chairman of the State Security Committee, he had overall responsibility for the State Security Committee including the involvement of KGB officers in serious human rights violations and abuses against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13959 +VAKULCHYK,Valeryy,Pawlavich,,,,,,,,19/06/1964,"Radostovo, Brest Region",,Belarus,,,,,"Former Head, Security Council, Belarus",,,,,,,,,"(UK Sanctions List Ref):BEL0027 Former Chairman, Committee for State Security (KGB), Belarus (UK Statement of Reasons):Lt General Valeri Vakulchyk was Chairman of the State Security Committee (KGB) of Belarus between November 2012 and 03 September 2020. From 03 September to 29 October 2020, he was Head of the Security Council. In his role as Chairman of the State Security Committee, he had overall responsibility for the State Security Committee including the involvement of KGB officers in serious human rights violations and abuses against detained protestors and journalists, which they carried out following the election of 9 August. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13959 +VALEEV,Ernest,Abdulovich,,,,,Валеев Эрнест Абдулович,,,07/04/1950,Novy Kami,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0328 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14273 +VALENCHUK,Oleg,Dorianovich,,,,,Валенчук Олег Дорианович,,,14/09/1960,Kirov,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0329 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14274 +VALLE VALLE,Juan,Antonio,,,,,,,,04/05/1963,Matagalpa,Nicaragua,Nicaragua,D113169,,,,"(1) Chief of Department of Surveillance and Patrolling, Nicaraguan National Police (2) Senior Commissioner",,,,,,,,Nicaragua,"(UK Sanctions List Ref):NIC0013 (UK Statement of Reasons):As a senior commissioner of the Nicaraguan National Police (NNP), Juan Antonio Valle Valle is responsible for human rights violations against civilians during protests, which began on 18 April 2018. The NNP’s Department of Surveillance and Patrolling, of which Valle Valle is Chief, has repeatedly restricted the freedom of assembly and expression of Nicaraguans in Managua. Valle Valle was responsible for the harassment by police against individuals sheltered in the Metrocentro shopping centre in Managua in 2019. He is therefore responsible for undermining democracy and the rule of law, repression of civil society and the democratic opposition and for human rights violations. (Gender):Male",Individual,Primary name,,Nicaragua,15/11/2021,15/11/2021,15/11/2021,14151 +VALUEEV,Nikolai,Sergeevich,,,,,Валуев Николай Сергеевич,,,21/08/1973,Leningrad,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,Moscow,103265,Russia,"(UK Sanctions List Ref):RUS0677 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of resolution No. 58243-8: “On the appeal of the State Duma of the Federal Assembly of the Russian Federation To the President of the Russian Federation V.V. Putin on the need to recognize the Donetsk People's Republic and the Luhansk People's Republic”. In so doing, provided support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14628 +VALYAYEV,Yuri,Konstantinovich,,,,,Юрий Константинович ВАЛЯЕВ,,,18/04/1959,"Zhuravlikha, Pervomaisky District, Altai Territory",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0935 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14886 +VANGUARD FOR THE PROTECTION OF MUSLIMS IN BLACK AFRICA,,,,,,,,,,,,,,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0035 (UN Ref):QDe.142 Terrorist and paramilitary group established in 2012 and operating in Nigeria. Associated with the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014), Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138) and Abubakar Mohammed Shekau (QDi322). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,08/07/2014,26/06/2014,16/02/2022,13007 +VANGUARDS FOR THE PROTECTION OF MUSLIMS IN BLACK AFRICA,,,,,,,,,,,,,,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0035 (UN Ref):QDe.142 Terrorist and paramilitary group established in 2012 and operating in Nigeria. Associated with the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014), Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram) (QDe.138) and Abubakar Mohammed Shekau (QDi322). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,08/07/2014,26/06/2014,16/02/2022,13007 +VANGUARDS OF THE SOLDIERS OF THE CALIPHATE,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0376 (UN Ref):QDe.167 Formed in November 2014. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). (Type of entity):Terrorist organisation",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,04/01/2022,29/12/2021,12/01/2022,14171 +VARFOLOMEYEV,Aleksandr,Georgyevich,,,,,Александр Георгиевич ВАРФОЛОМЕЕВ,,,04/06/1965,Mukhorshibiri of the Buryat ASSR,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0940 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14891 +VARGAS,Alvaro,Enrique,Pulido,,,,,,,10/12/1963,Bogota,Colombia,Colombia,PE069914,Colombia,79324956,Colombian,,,,,,,,,,"(UK Sanctions List Ref):GAC0026 (UK Statement of Reasons):Alvaro Enrique Pulido Vargas (aka German Enrique Rubio Salas) is a close business associate of Alex Saab. With him, he engaged in serious corruption in Venezuela through his participation in two of Venezuela’s public programmes: the ‘Local Committees for Supply and Production’ (CLAP) and the Great Housing Scheme Venezuela (GMVV). In each case, contracts were improperly granted for the benefit of an official and/or for another person including Pulido Vargas himself. In the CLAP programme, basic foodstuffs were provided at highly inflated prices. For GMVV, Global Construction Fund only delivered a small proportion of the products they had agreed to deliver, misappropriating the remainder of the funds. (Gender):Male",Individual,Primary name,,Global Anti-Corruption,22/07/2021,22/07/2021,12/08/2021,14129 +VASEGHI,Leila,,,,,,,,,00/00/1972,Sari,Iran,Iran,,,,,Former Governor of Shahr-e Qods (Quds),,,,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0090 (UK Statement of Reasons):Leila Vaseghi is or has been involved in the commission of serious human rights violations in Iran, namely violations of the right to life and to freedom of assembly, through her role as the Governor of Shahr-e Qods during the November 2019 protests in Qods city. (Gender):Female",Individual,Primary name,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15603 +VASEGHI,Leyla,,,,,,,,,00/00/1972,Sari,Iran,Iran,,,,,Former Governor of Shahr-e Qods (Quds),,,,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0090 (UK Statement of Reasons):Leila Vaseghi is or has been involved in the commission of serious human rights violations in Iran, namely violations of the right to life and to freedom of assembly, through her role as the Governor of Shahr-e Qods during the November 2019 protests in Qods city. (Gender):Female",Individual,Primary name variation,,Iran (Human Rights),10/10/2022,10/10/2022,10/10/2022,15603 +VASILIEU,Alexander,Pavlovich,,,,,"ВАСІЛЬЕЎ, Аляксандр Паўлавіч",,,24/03/1975,Mahilou/Mogilev,,Belarus,,,,,(1) Former Head of the Department of Internal Affairs of Gomel Homyel Oblast Executive Committee (2) Currently Head of the Academy of the Ministry of Internal Affairs of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0018 (UK Statement of Reasons):Vasilieu was Head of the Department of Internal Affairs of Gomel Oblast Executive Committee. In his former role as Department Head, Vasilieu was responsible for the actions of police officers in Gomel, including the Public Security Police and OMON riot police. Vasilieu therefore bears responsibility for the serious human rights violations carried out by police officers following the election of 9 August, in particular arbitrary arrests and ill‐treatment, including torture, of peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13940 +VASILIEU,Aliaksandr,Paulavich,,,,,"ВАСИЛЬЕВ, Александр Павлович",,,24/03/1975,Mahilou/Mogilev,,Belarus,,,,,(1) Former Head of the Department of Internal Affairs of Gomel Homyel Oblast Executive Committee (2) Currently Head of the Academy of the Ministry of Internal Affairs of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0018 (UK Statement of Reasons):Vasilieu was Head of the Department of Internal Affairs of Gomel Oblast Executive Committee. In his former role as Department Head, Vasilieu was responsible for the actions of police officers in Gomel, including the Public Security Police and OMON riot police. Vasilieu therefore bears responsibility for the serious human rights violations carried out by police officers following the election of 9 August, in particular arbitrary arrests and ill‐treatment, including torture, of peaceful demonstrators. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13940 +VASILIEU,Anatol,Anatolievich,,,,,"ВАСИЛЬЕВ, Анатолий Анатольевич",,,26/01/1972,,,Belarus,,,,,Deputy Head of the Department of Internal Affairs of Gomel/Homyel Oblast Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0020 (UK Statement of Reasons):Anatol Vasilieu is Deputy Head of the Department of Internal Affairs of the Gomel Regional Executive Committee and head of the Public Security Police. In this role Vasilieu bears responsibility for the actions of police officers in Gomel. Vasiliev is therefore responsible for the serious human rights violations carried out by police officers in that region following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,31/12/2020,13942 +VASILIEU,Anatoli,Anatolievich,,,,,"ВАСIЛЬЕЎ, Анатоль Анатольевiч",,,26/01/1972,,,Belarus,,,,,Deputy Head of the Department of Internal Affairs of Gomel/Homyel Oblast Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0020 (UK Statement of Reasons):Anatol Vasilieu is Deputy Head of the Department of Internal Affairs of the Gomel Regional Executive Committee and head of the Public Security Police. In this role Vasilieu bears responsibility for the actions of police officers in Gomel. Vasiliev is therefore responsible for the serious human rights violations carried out by police officers in that region following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13942 +VASILIEV,Alexander,Pavlovich,,,,,,,,24/03/1975,Mahilou/Mogilev,,Belarus,,,,,(1) Former Head of the Department of Internal Affairs of Gomel Homyel Oblast Executive Committee (2) Currently Head of the Academy of the Ministry of Internal Affairs of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0018 (UK Statement of Reasons):Vasilieu was Head of the Department of Internal Affairs of Gomel Oblast Executive Committee. In his former role as Department Head, Vasilieu was responsible for the actions of police officers in Gomel, including the Public Security Police and OMON riot police. Vasilieu therefore bears responsibility for the serious human rights violations carried out by police officers following the election of 9 August, in particular arbitrary arrests and ill‐treatment, including torture, of peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13940 +VASILIEV,Aliaksandr,Paulovich,,,,,,,,24/03/1975,Mahilou/Mogilev,,Belarus,,,,,(1) Former Head of the Department of Internal Affairs of Gomel Homyel Oblast Executive Committee (2) Currently Head of the Academy of the Ministry of Internal Affairs of the Republic of Belarus,,,,,,,,,"(UK Sanctions List Ref):BEL0018 (UK Statement of Reasons):Vasilieu was Head of the Department of Internal Affairs of Gomel Oblast Executive Committee. In his former role as Department Head, Vasilieu was responsible for the actions of police officers in Gomel, including the Public Security Police and OMON riot police. Vasilieu therefore bears responsibility for the serious human rights violations carried out by police officers following the election of 9 August, in particular arbitrary arrests and ill‐treatment, including torture, of peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13940 +VASILIEV,Anatol,Anatolievich,,,,,,,,26/01/1972,,,Belarus,,,,,Deputy Head of the Department of Internal Affairs of Gomel/Homyel Oblast Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0020 (UK Statement of Reasons):Anatol Vasilieu is Deputy Head of the Department of Internal Affairs of the Gomel Regional Executive Committee and head of the Public Security Police. In this role Vasilieu bears responsibility for the actions of police officers in Gomel. Vasiliev is therefore responsible for the serious human rights violations carried out by police officers in that region following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13942 +VASILIEV,Anatoli,Anatolievich,,,,,,,,26/01/1972,,,Belarus,,,,,Deputy Head of the Department of Internal Affairs of Gomel/Homyel Oblast Executive Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0020 (UK Statement of Reasons):Anatol Vasilieu is Deputy Head of the Department of Internal Affairs of the Gomel Regional Executive Committee and head of the Public Security Police. In this role Vasilieu bears responsibility for the actions of police officers in Gomel. Vasiliev is therefore responsible for the serious human rights violations carried out by police officers in that region following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,31/12/2020,13942 +VASILIEV,Vladimir,Abdualievich,,,,,Владимир Абдуалиевич Васильев,,Russian,11/08/1949,"Klin, Moscow region",Russia,,,,,,Former Deputy Speaker of the State Duma,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0151 (UK Statement of Reasons):Former Deputy Speaker of the State Duma. On 20 March 2014, he voted in favour of the draft Federal Constitutional Law ‘on the acceptance into the Russian Federation of the Republic of Crimea and the formation within the Russian Federation of new federal subjects - the republic of Crimea and the City of Federal Status Sevastopol’. He was appointed head of the Republic of Dagestan from October 2017 – October 2020 by Presidential decree. (Gender):Male",Individual,Primary name variation,,Russia,12/09/2014,31/12/2020,16/09/2022,13105 +VASILIEV,Nikolay,Ivanovich,,,,,Васильев Николай Иванович,,,28/03/1958,Grachevsky District,Russia,Belarus,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0618 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14563 +VASILKOVA,Maria,Viktorovna,,,,,Василькова Мария Викторовна,,,13/02/1978,Tyumen Oblast,Russia,Russia,720249923,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0548 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14493 +VASILYEV,Kirill,,,,,General,,,,,,,,,,,,"Director of Criminalistics Institute, FSB",,,,,,,,,"(UK Sanctions List Ref):CHW0022 (UK Statement of Reasons):Kirill Vasilyev is the Director of the Criminalistics Institute of the FSB - Military Unit 34435. There are reasonable grounds to suspect that the Federal Security Service of the Russian Federation was involved in the attempted assassination of Alexey Navalny using a toxic nerve agent. Evidence demonstrates that the Criminalistics Institute were the unit responsible for, provided support for and involved in the use of chemical weapon in the attempted assassination of Alexey Navalny. As Director for the Criminalistics Institute Vasilyev was responsible for the actions of the unit responsible. Alternatively, he is associated with the operatives who did. This designation is part of a further package of designations targeting the FSB operatives directly involved in carrying out the operation. Russian opposition leader Alexey Navalny was the victim of an attempted assassination during his August 2020 visit to Siberia, in which a chemical weapon - a toxic nerve agent of the Novichok group - was used. The activities and movements of Alexey Navalny during his journey to Siberia, from where he intended to return to Moscow on 20th August 2020, were closely monitored by the Federal Security Service of the Russian Federation. Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny is a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. (Gender):Male",Individual,Primary name,,Chemical Weapons,20/08/2021,20/08/2021,16/06/2022,14136 +VASILYEV,Vladimir,Abdualiyevich,,,,,Владимир Абдуалиевич ВАСИЛЬЕВ,,Russian,11/08/1949,"Klin, Moscow region",Russia,,,,,,Former Deputy Speaker of the State Duma,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0151 (UK Statement of Reasons):Former Deputy Speaker of the State Duma. On 20 March 2014, he voted in favour of the draft Federal Constitutional Law ‘on the acceptance into the Russian Federation of the Republic of Crimea and the formation within the Russian Federation of new federal subjects - the republic of Crimea and the City of Federal Status Sevastopol’. He was appointed head of the Republic of Dagestan from October 2017 – October 2020 by Presidential decree. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,16/09/2022,13105 +VASILYEV,Valery,Nikolayevich,,,,,Валерий Николаевич ВАСИЛЬЕВ,,,17/07/1965,Krivoozerki,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0898 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14849 +VAVULIN,Dmitri,Nikolaevich,,,,,ВАВУЛИН Дмитрий Николаевич,Cyrillic,Russian,00/00/1969,Moscow,Russia,Russia,,,,,"Director, or equivalent, of Novikombank",,,,,,,,,(UK Sanctions List Ref):RUS0866 (UK Statement of Reasons):Dmitri Nikolaevich VAVULIN is on the Board of Directors at Novikombank. Novikombank is operating in a sector of strategic significance to the Government of Russia – the financial services sector. Dmitri Nikolaevich VAVULIN has therefore been involved in obtaining a benefit from or supporting the Government of Russia. (Gender):Male,Individual,Primary name,,Russia,15/03/2022,15/03/2022,14/06/2022,14817 +VAYNBERG,Aleksandr,Vladelenovich,,,,,Александр Владеленович ВАЙНБЕРГ,,,02/02/1961,Bolsheorlovskoye,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0980 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14931 +VEB.RF,,,,,,,ВЭБ.РФ,,,,,,,,,,,,Akademia Sakharova Prospekt,,,,,Moscow,107996,Russia,"(UK Sanctions List Ref):RUS0253 (List of persons named in relation to financial and investment restrictions Group ID): 13082. (UK Statement of Reasons):VEB.RF is a state corporation established by the Russian Government to function as the national development bank and a state payment agent to a range of entities across sectors of strategic significance to the Government of Russia. VEB.RF is benefitting from and supporting the Government of Russia. VEB.RF is carrying on business as a Government of Russia-affiliated entity by receiving financial benefits from the Government of Russia. VEB.RF carries out activities in financial services in the Russian financial services sector, and is therefore carrying on business in a sector of strategic significance to the Government of Russia. (Phone number):+7 (495) 721-18-63 (Type of entity):(1) State Development Corporation (2) State Development Bank",Entity,Primary name,,Russia,28/02/2022,28/02/2022,06/04/2022,14198 +VEDYAKHIN,Aleksandr,Aleksandrovich,,,,,ВЕДЯХИН Александр Александрович,Cyrillic,Russian,20/02/1977,,,,,,,,"First Deputy Chairman of the Executive Board, Sberbank PJSC",,,,,,,,,(UK Sanctions List Ref):RUS1058 (UK Statement of Reasons):Aleksandr Aleksandrovich VEDYAKHIN is First Deputy Chairman of the Executive Board of Sberbank PJSC. In this role he is a member of and closely associated with Sberbank PJSC. Sberbank PJSC is an involved person under the Russia (Sanctions)(EU Exit) Regulations 2019.,Individual,Primary name,,Russia,24/03/2022,24/03/2022,24/06/2022,15001 +VEKSELBERG,Viktor,Feliksovich,,,,,ВЕКСЕЛЬБЕРГ Виктор Феликсович,Cyrillic,Russian,14/04/1957,Drohobych,Ukraine,Russia,,,,,Chairman of the Board of Directors of the Renova group of companies,,,,,,,,,"(UK Sanctions List Ref):RUS0867 (UK Statement of Reasons):Viktor VEKSELBERG is the owner and Chairman of the Board of Directors of Renova Group, a conglomerate with interests in aluminium, oil, energy, telecoms and a variety of other sectors of strategic significance to the Government of Russia. By doing so, he is obtaining a benefit from or supporting the Government of Russia by carrying on business in sectors of strategic significance to the Government of Russia. (Phone number):+7(495) 720 49 499 (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,13/05/2022,14818 +VELADA LLC,,,,,,,,,,,,,,,,,,,"Ochakovskoye Shosse Dom 28,","Building 2, Local 3, Room 8",,,,Moscow,,Russia,(UK Sanctions List Ref):SYR0388 (UK Statement of Reasons):Velada LLC operates in the oil and gas industry in Syria and is therefore involved in supporting or benefiting from the Syrian regime. The company is associated with Yevgeny Prigozhin who is a person who is or has been so involved. (Type of entity):Limited Liability Company (LLC),Entity,Primary name,,Syria,29/06/2022,29/06/2022,29/06/2022,15436 +VELLER,Alexey,Borisovich,,,,,Веллер Алексей Борисович,,,09/01/1966,Murmansk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0331 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14276 +VEREMEENKO,Sergey,Alekseevich,,,,,Веремеенко Сергей Алексеевич,,,26/09/1955,Pereslavl-Zalessky,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0332 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14277 +VETENEVICH,Alexander,Petrovich,,,,,"ВЕТЕНЕВИЧ, АЛЕКСАНДР ПЕТРОВИЧ",Cyrillic,Russian,20/06/1976,Minsk,Belarus,Belarus,,,3200676B070PB8,,,ap. 63,30 Kolesnikova Str.,,,,Minsk,,Belarus,"(UK Sanctions List Ref):RUS1055 (UK Statement of Reasons):Aliaksandr Piatrovich VETSIANEVICH, is an involved person under the Russia (Sanctions) (EU Exit) 2019. As the Deputy Director General of Minsk Wheeled Tractor Plant (MZKT), he has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,24/03/2022,24/03/2022,12/07/2022,14998 +VETSIANEVICH,Aliaksandr,Piatrovich,,,,,"ВЕЦЯНЕВІЧ, АЛЯКСАНДР ПЯТРОВІЧ",Cyrillic,Russian,20/06/1976,Minsk,Belarus,Belarus,,,3200676B070PB8,,,ap. 63,30 Kolesnikova Str.,,,,Minsk,,Belarus,"(UK Sanctions List Ref):RUS1055 (UK Statement of Reasons):Aliaksandr Piatrovich VETSIANEVICH, is an involved person under the Russia (Sanctions) (EU Exit) 2019. As the Deputy Director General of Minsk Wheeled Tractor Plant (MZKT), he has made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,24/03/2022,24/03/2022,12/07/2022,14998 +VINCE,Alexander,Viktorovich,,,,,,,,24/01/1969,,,Russia,0801 547363,,T-194304,,Colonel of the 64th Separate Motorised Rifle Brigade of the 35th Combined Arms Army of the Russian Federation,14 Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS1476 (UK Statement of Reasons):Colonel Aleksandr Viktorovich VINS is a member of the Armed Forces of the Russian Federation, he currently holds the position of Colonel within 64th Separate Motorized Rifle Brigade. We have reasonable grounds to suspect he was either in direct command of, or in a position to hold considerable situational awareness of, troops involved in the killing of civilians in the Kyiv suburb of Bucha during the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,16/06/2022,16/06/2022,09/08/2022,15409 +VINNIKOV,Dmitry,Alexandrovich,,,,Colonel,ВИННИКОВ Дмитрий Александрович,Cyrillic,Russian,00/00/1979,Adjaristskhali,Belarus,Belarus,,,,,Commander/Head of the Pinsk Border Detachment,,,,,,,,,"(UK Sanctions List Ref):RUS0709 (UK Statement of Reasons):As Head of the Pinsk border detachment at the State Border Committee of the Republic of Belarus, Dmitry VINNIKOV is or has been involved in engaging or providing support for an action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine, namely, facilitating the movement of Russian troops across the Belarus border into Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14660 +VINOGRADOVA,Natalya,,,,,,,,,16/06/1973,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0005 (UK Statement of Reasons):Natalya Vinogradova, as the Deputy Head of the Ownership and Financial Crimes Department in the Investigative Committee of the Russian Interior Ministry, was involved in the mistreatment of Sergei Magnitsky, which contributed significantly to his death on 16 November 2009. Vinogradova was part of a ‘team’ of investigators, who failed to investigate complaints made by Magnitsky about his mistreatment and provided support to subordinates who were directly involved in that conduct. (Gender):Female",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,09/10/2020,13858 +VINOKUROV,Vladimir,Nikolaevich,,,,,Владимир Николаевич Винокуров,Cyrillic,Russian,00/00/1959,,,Russia,,,,,(1) Member of Gazprombank’s Management Board (2) First Vice President of Gazprombank,,,,,,,,,"(UK Sanctions List Ref):RUS1624 (UK Statement of Reasons):Vladimir Nikolaevich Vinokurov is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15568 +VINOKUROV,Alexander,Semenovich,,,,,ВИНОКУРОВ Александр Семенович,Cyrillic,Russian,12/10/1982,,,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS0773 (UK Statement of Reasons):Alexander Semenovich VINOKUROV (hereafter VINOKUROV) is a non-executive director on the Board of Directors at PJSC Magnit, which is a Government of Russia-affiliated entity in which the Government of Russia holds directly or indirectly a minority interest. Therefore, in his role as director of PJSC Magnit, VINOKUROV is or has been involved in supporting the Government of Russia. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14724 +VINOKUROVA,Ekaterina,Sergeyevna,,,,,,,,03/04/1983,New York,United States,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1130 (UK Statement of Reasons):Yekaterina Sergeyevna VINOKUROVA is closely associated with Sergei Viktorovich LAVROV, the Foreign Minister of Russia who is her father. Sergei Viktorovich LAVROV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,08/04/2022,08/04/2022,27/05/2022,15080 +VINOKUROVA,Yekaterina,Sergeyevna,,,,,"ВИНОКУРОВА, Екатерина Сергеевна",Cyrillic,Russian,03/04/1983,New York,United States,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1130 (UK Statement of Reasons):Yekaterina Sergeyevna VINOKUROVA is closely associated with Sergei Viktorovich LAVROV, the Foreign Minister of Russia who is her father. Sergei Viktorovich LAVROV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name,,Russia,08/04/2022,08/04/2022,27/05/2022,15080 +VINS,Aleksandr,Viktorovich,,,,Colonel,Александр Викторович ВИНС,Cyrillic,Russian,24/01/1969,,,Russia,0801 547363,,T-194304,,Colonel of the 64th Separate Motorised Rifle Brigade of the 35th Combined Arms Army of the Russian Federation,14 Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS1476 (UK Statement of Reasons):Colonel Aleksandr Viktorovich VINS is a member of the Armed Forces of the Russian Federation, he currently holds the position of Colonel within 64th Separate Motorized Rifle Brigade. We have reasonable grounds to suspect he was either in direct command of, or in a position to hold considerable situational awareness of, troops involved in the killing of civilians in the Kyiv suburb of Bucha during the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,16/06/2022,16/06/2022,09/08/2022,15409 +VITKO,Aleksandr,Viktorovich,,,,,,,,13/09/1961,Vitebsk,"Belarusian SSR, (now Belarus)",Russia,,,,,Former Commander of the Black Sea Fleet,,,,,,,,,"(UK Sanctions List Ref):RUS0152 (UK Statement of Reasons):Former Commander of the Black Sea Fleet, Admiral. Chief of Staff and First Deputy Commander in Chief of the Russian Navy. Responsible for commanding Russian forces that have occupied Ukrainian sovereign territory. (Gender):Male",Individual,Primary name,,Russia,18/03/2014,31/12/2020,16/09/2022,12930 +VLADIMIROV,Nikolai,Nikolayevich,,,,,Николай Николаевич ВЛАДИМИРОВ,,,18/11/1979,"Cheboksary, Chuvash ASSR",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0942 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14893 +VLADIMIROV,Vladimir,Vladimirovich,,,,,Владимир Владимирович Владимиров,,,14/10/1975,,,Russia,,,,,Governor of Stavropol Territory,,,,,,,,,"(UK Sanctions List Ref):RUS1528 (UK Statement of Reasons):Vladimir Vladimirovich VLADIMIROV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because VLADIMIROV is a regional governor. Specifically, VLADIMIROV is Governor of Stavropol Territory. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15481 +VLADIMIROVNA,Magdalina,Marina,,,,,"ВЛАДИМИРОВНА, Магдалина Марина",Cyrillic,Russian,04/01/1984,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1184 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15136 +VLADIVOSTOK NO.5,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0098 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). In late November 2017 the YU PHYONG 5 conducted a ship-to-ship transfer of 1,721 metric tons of fuel oil. Listed as asset of Korea Myongdok Shipping Co - OFSI ID: 13634. UN Reference Number: UN Ref KPe.063 (IMO number):8605026 (Current owners):Korea Myongdok Shipping Co (Flag of ship):North Korea (Previous flags):South Korea (Type of ship):Oil tanker (Tonnage of ship):795 (Length of ship):75 (Year built):1986",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13649 +VLASOV,Vasily,Maksimovich,,,,,Власов Василий Максимович,,,27/06/1995,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0333 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14278 +VLASOVA,Veronika,Valerievna,,,,,Власова Вероника Валериевна,,,02/11/1966,Kemerovo,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0334 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14279 +VNESHEKONOMBANK,,,,,,,,,,,,,,,,,,,Akademia Sakharova Prospekt,,,,,Moscow,107996,Russia,"(UK Sanctions List Ref):RUS0253 (List of persons named in relation to financial and investment restrictions Group ID): 13082. (UK Statement of Reasons):VEB.RF is a state corporation established by the Russian Government to function as the national development bank and a state payment agent to a range of entities across sectors of strategic significance to the Government of Russia. VEB.RF is benefitting from and supporting the Government of Russia. VEB.RF is carrying on business as a Government of Russia-affiliated entity by receiving financial benefits from the Government of Russia. VEB.RF carries out activities in financial services in the Russian financial services sector, and is therefore carrying on business in a sector of strategic significance to the Government of Russia. (Phone number):+7 (495) 721-18-63 (Type of entity):(1) State Development Corporation (2) State Development Bank",Entity,Primary name variation,,Russia,28/02/2022,28/02/2022,06/04/2022,14198 +VODIANOV,Roman,Mikhailovich,,,,,Водянов Роман Михайлович,,,25/11/1982,Kudymkar,Russia,Russia,714629117,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0549 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14494 +VODOLATSKY,Viktor,Petrovich,,,,,Виктор Петрович Водолацкий,,,19/08/1957,"Stefanidin Dar, Rostov region",Russia,,,,,,"(1) Former Chairman (""Ataman"") of the Union of the Russian and Foreign Cossack Forces (2) Member of Parliament & Deputy of the State Duma",,,,,,,,Russia,"(UK Sanctions List Ref):RUS0153 (UK Statement of Reasons):Former Chairman (""Ataman"") of the Union of the Russian and Foreign Cossack Forces, and deputy of the State Duma. Deputy Chairman of the Duma Committee for CIS affairs, Eurasian integration and relations with compatriots. He supported the annexation of Crimea and admitted that Russian Cossacks were actively engaged in the Ukrainian conflict on the side of the Moscow-backed separatists. On 20 March 2014 he voted in favour of the draft Federal Constitutional Law ‘on the acceptance into the Russian Federation of the Republic of Crimea and the formation within the Russian Federation of new federal subjects- the republic of Crimea and the City of Federal Status Sevastopol’. He continues to support separatist activities. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,16/09/2022,13106 +VOINOV,Oleg,Leonidovich,,,,Major General,ВОИНОВ Олег Леонидович,Cyrillic,Russian,26/03/1967,Dnipro,Ukraine,Belarus,,,,,Head of the International Military Cooperation Department of the Ministry of Defence,,,,,,,,,"(UK Sanctions List Ref):RUS0732 (UK Statement of Reasons):Major General Oleg Leonidovich VOINOV has been involved in engaging or providing support for policies and actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, as the Head of the International Military Cooperation Department of the Ministry of Defence of Belarus being involved either in direct command of or in a position to hold considerable situational awareness of Belarusian forces involved in the Russian invasion of Ukraine through the facilitation of Russian freedom of movement into the north of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14683 +VOLAT (GIANT),,,,,,,,,,,,,,,,,,,150 Partizanski Avenue,,,,,Minsk,,Belarus,"(UK Sanctions List Ref):BEL0066 (UK Statement of Reasons):The Minsk Wheel Tractor Plant (MZKT) is a key part of the Belarusian State Authority for Military Industry (SAMI), which is responsible for implementing the military-technical policy of the state. MZKT produces light armoured vehicles and other vehicles which are used to support the internal control activities of the Lukashenko regime. Subsequently, MZKT bears responsibility for providing support and equipment for police and security forces of the Ministry of Internal Affairs which have contributed to serious human rights violations and the repression of civil society following the August 9 election. (Phone number):00375(17)3301709 (Website):www.mzkt.by, www.voltadefence.com (Email address):link@mzkt.by (Type of entity):State-Owned Enterprise",Entity,AKA,,Belarus,18/12/2020,31/12/2020,31/12/2020,14044 +VOLFOVICH,Aleksandr,Grigoryevich,,,,,ВОЛЬФОВИЧ Александр Григорьевич,Cyrillic,Russian,,,,Belarus,,,,,State Secretary of the Security Council,,,,,,,,,"(UK Sanctions List Ref):RUS0716 (UK Statement of Reasons):Aleksandr Grigoryevich VOLFOVICH is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because he has been involved in in destabilizing Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, on the basis of having been, and being, involved in engaging in or providing support for policies or actions, which destabilise Ukraine or undermine or threated the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14667 +VOLGA GROUP HOLDING LIMITED LIABILITY COMPANY,,,,,,,ВОЛГА ГРУП ХОЛДИНГ OOO,Cyrillic,Russian,,,,,,,,,,Begovaya St.,Dom 3,Str. 1,,,Moscow,12528,Russia,"(UK Sanctions List Ref):RUS1420 (UK Statement of Reasons):OOO VOLGA GROUP, an investment company, is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because it is owned or controlled directly or indirectly (within the meaning of regulation 7 of the Russia (Sanctions) (EU Exit) Regulations 2019) by a designated person who is or has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, namely Gennadiy Nikolayevich TIMCHENKO. (Business Reg No):Tax ID No. 7718989383 (Russia); Registration Number 1147746803049 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,02/09/2022,15367 +VOLGA GROUP HOLDING LIMITED LIABILITY COMPANY,,,,,,,ВОЛГА ГРУП ХОЛДИНГ OOO,Cyrillic,Russian,,,,,,,,,,Timura Frunze,House 11,Building 1,"floor 2, unit IV, room 2",,Moscow,,Russia,"(UK Sanctions List Ref):RUS1420 (UK Statement of Reasons):OOO VOLGA GROUP, an investment company, is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because it is owned or controlled directly or indirectly (within the meaning of regulation 7 of the Russia (Sanctions) (EU Exit) Regulations 2019) by a designated person who is or has been involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, namely Gennadiy Nikolayevich TIMCHENKO. (Business Reg No):Tax ID No. 7718989383 (Russia); Registration Number 1147746803049 (Russia)",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,02/09/2022,15367 +VOLKAU,Alexey,Aleksandrovich,,,,,ВОЛКОВ Алексей Александрович,,,07/09/1973,Minsk,,Belarus,,,,,(1) Chairman of the State Committee for Forensic Expertise (2) Former First Deputy Chairman of the Investigative Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0056 (UK Statement of Reasons):In his former leadership position as the First Deputy Chairman of the Investigative Committee, Volkau is responsible for the repression and intimidation campaign led by the Committee in the wake of the 2020 presidential election, notably with investigations launched against the Coordination Council launched by the opposition to challenge the outcome of that election and peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13988 +VOLKAU,Alexey,Alexandrovich,,,,,,,,07/09/1973,Minsk,,Belarus,,,,,(1) Chairman of the State Committee for Forensic Expertise (2) Former First Deputy Chairman of the Investigative Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0056 (UK Statement of Reasons):In his former leadership position as the First Deputy Chairman of the Investigative Committee, Volkau is responsible for the repression and intimidation campaign led by the Committee in the wake of the 2020 presidential election, notably with investigations launched against the Coordination Council launched by the opposition to challenge the outcome of that election and peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13988 +VOLKAU,Aliaksey,Aliaksandravich,,,,,ВОЛКАЎ Аляксей Аляксандравіч,,,07/09/1973,Minsk,,Belarus,,,,,(1) Chairman of the State Committee for Forensic Expertise (2) Former First Deputy Chairman of the Investigative Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0056 (UK Statement of Reasons):In his former leadership position as the First Deputy Chairman of the Investigative Committee, Volkau is responsible for the repression and intimidation campaign led by the Committee in the wake of the 2020 presidential election, notably with investigations launched against the Coordination Council launched by the opposition to challenge the outcome of that election and peaceful demonstrators. (Gender):Male",Individual,Primary name,,Belarus,06/11/2020,31/12/2020,31/12/2020,13988 +VOLKOV,Alexey,Aleksandrovich,,,,,,,,07/09/1973,Minsk,,Belarus,,,,,(1) Chairman of the State Committee for Forensic Expertise (2) Former First Deputy Chairman of the Investigative Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0056 (UK Statement of Reasons):In his former leadership position as the First Deputy Chairman of the Investigative Committee, Volkau is responsible for the repression and intimidation campaign led by the Committee in the wake of the 2020 presidential election, notably with investigations launched against the Coordination Council launched by the opposition to challenge the outcome of that election and peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13988 +VOLKOV,Alexey,Alexandrovich,,,,,,,,07/09/1973,Minsk,,Belarus,,,,,(1) Chairman of the State Committee for Forensic Expertise (2) Former First Deputy Chairman of the Investigative Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0056 (UK Statement of Reasons):In his former leadership position as the First Deputy Chairman of the Investigative Committee, Volkau is responsible for the repression and intimidation campaign led by the Committee in the wake of the 2020 presidential election, notably with investigations launched against the Coordination Council launched by the opposition to challenge the outcome of that election and peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13988 +VOLKOV,Aliaksey,Aliaksandravich,,,,,,,,07/09/1973,Minsk,,Belarus,,,,,(1) Chairman of the State Committee for Forensic Expertise (2) Former First Deputy Chairman of the Investigative Committee,,,,,,,,,"(UK Sanctions List Ref):BEL0056 (UK Statement of Reasons):In his former leadership position as the First Deputy Chairman of the Investigative Committee, Volkau is responsible for the repression and intimidation campaign led by the Committee in the wake of the 2020 presidential election, notably with investigations launched against the Coordination Council launched by the opposition to challenge the outcome of that election and peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,31/12/2020,13988 +VOLKOVA,Natalia,Markovna,,,,,,,,11/10/1976,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1217 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15169 +VOLKOVA,Natalya,Markovna,,,,,"ВОЛКОВА, Наталья Марковна",Cyrillic,Russian,11/10/1976,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1217 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15169 +VOLODIN,Vyacheslav,Viktorovich,,,,,,,,04/02/1964,"Alekseevka, Saratov region",Russia,Russia,,,,,(1) Chairman of the State Duma of the Russian Federation (Speaker) (2) Former First Deputy Chief of Staff of the Presidential Administration of Russia and aide to Vladimir Putin,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0154 (UK Statement of Reasons):Former First Deputy Chief of Staff of the Presidential Adminstration of Russia. Responsible for overseeing the political integration of the annexed Ukrainian region of Crimea into the Russian Federation, and thereby actively supported and implemented policies that undermine the territorial integrity, sovereignty and independence of Ukraine. Currently Speaker of the State Duma of the Russian Federation since 5 October 2016. (Gender):Male",Individual,Primary name,,Russia,12/05/2014,31/12/2020,16/09/2022,12965 +VOLOSHIN,Oleg,Anatolyevich,,,,,Олег Анатолійович Волошин,Cyrillic,Ukrainian,07/04/1981,Nikolaev,Ukraine,Ukraine,,,(1) 2968200719 (2) 1981040705733,(1) – (2) Personal identification number,,,,,,,,,,"(UK Sanctions List Ref):RUS1054 (UK Statement of Reasons):Oleg Anatolyevich VOLOSHYN (hereafter VOLOSHYN) is a [former Ukrainian MP and member of the pro-Russian Opposition Platform for Life (OPFL) political party]. VOLOSHYN is or has been involved in destabilising Ukraine, or undermining, or threatening the territorial integrity, sovereignty or independence of Ukraine, namely by using his position of influence to promote, via the spreading of disinformation and pro-Russian narratives which support Russia’s actions in Ukraine.",Individual,Primary name variation,,Russia,24/03/2022,24/03/2022,15/07/2022,14997 +VOLOSHYN,Oleg,Anatoliyovych,,,,,,,,07/04/1981,Nikolaev,Ukraine,Ukraine,,,(1) 2968200719 (2) 1981040705733,(1) – (2) Personal identification number,,,,,,,,,,"(UK Sanctions List Ref):RUS1054 (UK Statement of Reasons):Oleg Anatolyevich VOLOSHYN (hereafter VOLOSHYN) is a [former Ukrainian MP and member of the pro-Russian Opposition Platform for Life (OPFL) political party]. VOLOSHYN is or has been involved in destabilising Ukraine, or undermining, or threatening the territorial integrity, sovereignty or independence of Ukraine, namely by using his position of influence to promote, via the spreading of disinformation and pro-Russian narratives which support Russia’s actions in Ukraine.",Individual,Primary name,,Russia,24/03/2022,24/03/2022,15/07/2022,14997 +VOLOSHYN,Oleg,Anatolyevich,,,,,Олег Анатольевич Волошин,Cyrillic,Russian,07/04/1981,Nikolaev,Ukraine,Ukraine,,,(1) 2968200719 (2) 1981040705733,(1) – (2) Personal identification number,,,,,,,,,,"(UK Sanctions List Ref):RUS1054 (UK Statement of Reasons):Oleg Anatolyevich VOLOSHYN (hereafter VOLOSHYN) is a [former Ukrainian MP and member of the pro-Russian Opposition Platform for Life (OPFL) political party]. VOLOSHYN is or has been involved in destabilising Ukraine, or undermining, or threatening the territorial integrity, sovereignty or independence of Ukraine, namely by using his position of influence to promote, via the spreading of disinformation and pro-Russian narratives which support Russia’s actions in Ukraine.",Individual,Primary name variation,,Russia,24/03/2022,24/03/2022,15/07/2022,14997 +VOLOZHINSKY,Andrei,Olgertovich,,,,,ВОЛОЖИНСКИЙ Андрей Ольгертович,Cyrillic,Russian,00/00/1960,,Estonia,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1341 (UK Statement of Reasons):Andrei Olgertovich VOLOZHINSKY is a former Vice Admiral and Deputy Chief of the Main Operations Directorate of the General Staff of the Armed Forces of the Russian Federation. VOLOZHINSKY has engaged in and provided support for actions or policies which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,21/04/2022,21/04/2022,09/08/2022,15292 +VOODOO BEAR,,,,,,,,,,,,,,,,,,,22 Kirova Street,,,,,Moscow,,Russia,"(UK Sanctions List Ref):CYB0009 (UK Statement of Reasons):The Main Centre for Special Technologies (GTsST) of the Russian General Staff Main Intelligence Directorate (GRU), also known by its field post number ‘74455’ and “Sandworm” by industry, was responsible for cyber attacks which disrupted critical national infrastructure in Ukraine, cutting off the electricity grid. The perpetrators were directly responsible for relevant cyber activity by carrying out information system interference intended to undermine integrity, prosperity and security of the Ukraine. These cyber attacks originated in Russia and were unauthorised (Type of entity):Department within Government/Military Unit (Parent company):Russian Ministry of Defence",Entity,AKA,,Cyber,31/07/2020,31/12/2020,31/12/2020,13911 +VOROBEY,Nikolay,Nikolayevich,,,,,,,,,,,,,,,,Businessman,,,,,,,,,"(UK Sanctions List Ref):BEL0068 (UK Statement of Reasons):As a longstanding associate of Alexander Lukashenko, Nikolay Vorobey has developed substantial business dealings in Belarus which form a significant segment of private commercial activities in Belarus, notably in transport and logistics. Commercial activities and economic resources under Vorobey’s control therefore contribute to the Lukashenko regime’s activities undermining democracy and the rule of law in Belarus. (Gender):Male",Individual,Primary name,,Belarus,18/12/2020,31/12/2020,31/12/2020,14032 +VOROBIOV,Yuri,Leonidovich,,,,,Юрий Леонидович Воробьев,,,02/02/1948,"Krasnoyarsk, Siberia",Russia,Russia,,,,,Deputy Speaker of the Federation Council of the Russian Federation,,,,,,,,Russia,(UK Sanctions List Ref):RUS0155 (UK Statement of Reasons):Deputy Speaker of the Federation Council of the Russian Federation On 1 March 2014 Vorobiov publicly supported in the Federation Council the deployment of Russian forces in Ukraine. He subsequently voted in favour of the related decree. (Gender):Male,Individual,Primary name,,Russia,12/09/2014,31/12/2020,31/12/2020,13103 +VOROBYOV,Andrei,Yuryevich,,,,,Андрей Юрьевич Воробьев,,,14/04/1970,,,Russia,,,,,Governor of Moscow Region,,,,,,,,,"(UK Sanctions List Ref):RUS1536 (UK Statement of Reasons):Andrei Yuryevich VOROBYOV is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 because VOROBYOV is a regional governor. Specifically, VOROBYOV is Governor of Moscow Region. (Gender):Male",Individual,Primary name,,Russia,26/07/2022,26/07/2022,26/07/2022,15489 +VOROBYOV,Andrey,Viktorovich,,,,,Воробьев Андрей Викторович,,,24/07/1985,Engles,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0336 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14281 +VORONOVSKY,Anatoly,Vladimirovich,,,,,ВОРОНОВСКИЙ Анатолий Владимирович,,,28/12/1966,Baku,Azerbaijan (former USSR),Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0337 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,15/03/2022,14282 +VORONTSOVA,Maria,Vladimirovna,,,,,"ВОРОНЦОВА, Мария Владимировна",,,28/04/1985,Leningrad,Russia,Russia,,,320304191830,Taxpayer ID,,,,,,,,,,"(UK Sanctions List Ref):RUS1128 (UK Statement of Reasons):Maria Vladimirovna VORONSTOVA is widely reported to be the daughter of the President of the Russian Federation Vladimir Vladimirovich PUTIN, with whom she is closely associated and from whom she has obtained a financial benefit or other material benefit. Vladimir Vladimirovich PUTIN is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name,,Russia,08/04/2022,08/04/2022,14/06/2022,15078 +VORONTSOVA,Mariya,,,,,,,,,28/04/1985,Leningrad,Russia,Russia,,,320304191830,Taxpayer ID,,,,,,,,,,"(UK Sanctions List Ref):RUS1128 (UK Statement of Reasons):Maria Vladimirovna VORONSTOVA is widely reported to be the daughter of the President of the Russian Federation Vladimir Vladimirovich PUTIN, with whom she is closely associated and from whom she has obtained a financial benefit or other material benefit. Vladimir Vladimirovich PUTIN is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,08/04/2022,08/04/2022,14/06/2022,15078 +VOROSHILOV,Andrey,Sergeevich,,,,,ВОРОШИЛОВ Андрей Сергеевич,Cyrillic,Russian,02/04/1978,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1177 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15129 +VOROSHILOV,Andrey,Sergeyevich,,,,,,,,02/04/1978,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1177 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15129 +VOSTOCHNIY,,,,,,,Восточный,,,07/09/1975,"Chegem-1 Village, Chegemskiy District, Republic of Kabardino-Balkaria",Russia,Russia,622641887,Russian foreign travel passport number,8304661431,Russian Federation national passport,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0343 (UN Ref):QDi.367 As at Aug. 2015, one of the leaders of the Army of Emigrants and Supporters (QDe.148). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899831. Syria, located in as at Aug. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13302 +VOSTOCHNIY,,,,,,,Восточный,,,07/09/1975,"Chegem-1 Village, Chegemskiy District, Republic of Kabardino-Balkaria",Russia,Russia,622641887,Russian foreign travel passport number,8304661431,Russian Federation national passport,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0343 (UN Ref):QDi.367 As at Aug. 2015, one of the leaders of the Army of Emigrants and Supporters (QDe.148). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5899831. Syria, located in as at Aug. 2015",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,31/12/2020,13302 +VOSTOK BATTALION,,,,,,,,,,,,,,,,,,,,,,,,Donetsk,,,"(UK Sanctions List Ref):RUS0205 (UK Statement of Reasons):The Vostok Battalion is an Illegal armed separatist group which is considered to be one of the most important in Eastern Ukraine. Actively participated in the military operations resulting in the seizure of Donetsk Airport. It also forms part of the so-called Armed Forces of “Donetsk People’s Republic”. The Vostok Battalion is responsible for fighting against the Ukrainian government forces in Eastern Ukraine, thus threatening the stability or security of Ukraine. (Type of entity):Armed Separatist Group",Entity,Primary name,,Russia,25/07/2014,31/12/2020,31/12/2020,13046 +VPK,,,,,,,ВПК,Cyrillic,Russian,,,,,,,,,,"Floor 3, Room 1",15/8 Rochdelskaya St.,,,,Moscow,123376,Russia,"(UK Sanctions List Ref):RUS1357 (UK Statement of Reasons):LLC Military Industrial Company is a manufacturer of armoured vehicles which have been used by Russian military forces in territorial Ukraine. LLC Military Industrial Company has therefore made available goods or technology that could contribute to destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, and in doing so has also contributed to the Russian defence sector, a sector of strategic significance to the Government of Russia. (Phone number):+7 (495) 662-10-57 (Website):https://milindcom.ru (Email address):secrvpk@milindcom.ru",Entity,Primary name variation,,Russia,21/04/2022,21/04/2022,09/08/2022,15306 +VSEROSSISKIY INSTITUT AVIATSIONNYKH MATERIALOV,,,,,,,ВСЕРОССИЙСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ АВИАЦИОННЫХ МАТЕРИАЛОВ,Cyrillic,Russian,,,,,,,,,,17 Radio Street,,,,,Moscow,105005,Russia,(UK Sanctions List Ref):RUS1089 (UK Statement of Reasons):VSEROSSISKIY INSTITUT AVIATSIONNYKH MATERIALOV (VIAM) is the ‘All-Russian Scientific Research Institute of Aviation Materials’. VIAM is a federal state unitary enterprise and is directly owned by the Government of Russia. VIAM therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business as a Government of Russia-affiliated entity. (Phone number):+7(499)261-86-77 (Website):https://viam.ru/ (Email address):admin@viam.ru (Type of entity):Federal state unitary enterprise,Entity,Primary name,,Russia,24/03/2022,24/03/2022,14/06/2022,15032 +VTB,,,,,,,,,,,,,,,,,,,11,lit A,Degtyarnyy pereulok,,,St. Petersburg,191144,Russia,"(UK Sanctions List Ref):RUS0250 (List of persons named in relation to financial and investment restrictions Group ID): 13080. Other suspected locations: Moscow, Russia (UK Statement of Reasons):VTB Bank PJSC is owned by and/or associated with the Russian government and has received significant financial support from the Russian government. The Russian government is involved in activities to destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. (Phone number):(1) +8 (800) 100-24-24 (2) +7 (495) 777-24-24 (Website):www.vtb.com (Email address):info@vtb.ru (Type of entity):Public Joint-Stock Company",Entity,Primary name variation,,Russia,24/02/2022,24/02/2022,06/04/2022,14195 +VTB BANK (PJSC),,,,,,,,,,,,,,,,,,,11,lit A,Degtyarnyy pereulok,,,St. Petersburg,191144,Russia,"(UK Sanctions List Ref):RUS0250 (List of persons named in relation to financial and investment restrictions Group ID): 13080. Other suspected locations: Moscow, Russia (UK Statement of Reasons):VTB Bank PJSC is owned by and/or associated with the Russian government and has received significant financial support from the Russian government. The Russian government is involved in activities to destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. (Phone number):(1) +8 (800) 100-24-24 (2) +7 (495) 777-24-24 (Website):www.vtb.com (Email address):info@vtb.ru (Type of entity):Public Joint-Stock Company",Entity,Primary name variation,,Russia,24/02/2022,24/02/2022,06/04/2022,14195 +VTB BANK (PUBLIC JOINT-STOCK COMPANY),,,,,,,Банк ВТБ (публичное акционерное общество),,,,,,,,,,,,11,lit A,Degtyarnyy pereulok,,,St. Petersburg,191144,Russia,"(UK Sanctions List Ref):RUS0250 (List of persons named in relation to financial and investment restrictions Group ID): 13080. Other suspected locations: Moscow, Russia (UK Statement of Reasons):VTB Bank PJSC is owned by and/or associated with the Russian government and has received significant financial support from the Russian government. The Russian government is involved in activities to destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. (Phone number):(1) +8 (800) 100-24-24 (2) +7 (495) 777-24-24 (Website):www.vtb.com (Email address):info@vtb.ru (Type of entity):Public Joint-Stock Company",Entity,Primary name,,Russia,24/02/2022,24/02/2022,06/04/2022,14195 +VTORIGINA,Elena,Andreevna,,,,,Вторыгина Елена Андреевна,,,17/08/1957,Arkhangelsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0338 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14283 +VYATKIN,Dmitry,Fyodorovich,,,,,ВЯТКИН Дмитрий Федорович,,,21/05/1974,Korkino,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0340 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14285 +VYBORNY,Anatoly,Borisovich,,,,,"ВЫБОРНЫЙ, Анатолий Борисович",,,08/06/1965,Shepetovka,Ukraine,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0339 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,15/03/2022,14284 +VYSOKINSKY,Aleksandr,Gennadyevich,,,,,Александр Геннадьевич ВЫСОКИНСКИЙ,,,24/09/1973,Sverdlovsk  (Yekaterinburg ),Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0993 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14944 +VYSOTKIY,Vladimir,Yurevich,,,,,,,,07/04/1985,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Ukraine,,,,,Secretary of the so-called Donetsk People’s Republic Central Election Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0156 (UK Statement of Reasons):Acting Head of the ‘Central Electoral Commission’ of the so-called ‘Donetsk People’s Republic’. Former “Secretary” of the ‘Central Election Committee’ of the so-called ‘Donetsk People’s Republic’. In this capacity, he participated in the organisation of the so-called ‘elections’ of 11 November 2018 in the so-called ‘Donetsk People’s Republic’, and thereby actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,10/12/2018,31/12/2020,31/12/2020,13727 +VYSOTKIY,Volodymyr,Yuriyovych,,,,,,,,07/04/1985,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Ukraine,,,,,Secretary of the so-called Donetsk People’s Republic Central Election Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0156 (UK Statement of Reasons):Acting Head of the ‘Central Electoral Commission’ of the so-called ‘Donetsk People’s Republic’. Former “Secretary” of the ‘Central Election Committee’ of the so-called ‘Donetsk People’s Republic’. In this capacity, he participated in the organisation of the so-called ‘elections’ of 11 November 2018 in the so-called ‘Donetsk People’s Republic’, and thereby actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,10/12/2018,31/12/2020,31/12/2020,13727 +VYSOTSKYI,Vladimir,Yurevich,,,,,,,,07/04/1985,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Ukraine,,,,,Secretary of the so-called Donetsk People’s Republic Central Election Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0156 (UK Statement of Reasons):Acting Head of the ‘Central Electoral Commission’ of the so-called ‘Donetsk People’s Republic’. Former “Secretary” of the ‘Central Election Committee’ of the so-called ‘Donetsk People’s Republic’. In this capacity, he participated in the organisation of the so-called ‘elections’ of 11 November 2018 in the so-called ‘Donetsk People’s Republic’, and thereby actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,10/12/2018,31/12/2020,31/12/2020,13727 +VYSOTSKYI,Volodymyr,Yuriyovych,,,,,,,,07/04/1985,The Autonomous Republic of Crimea and the city of Sevastopol,Ukraine,Ukraine,,,,,Secretary of the so-called Donetsk People’s Republic Central Election Commission,,,,,,,,,"(UK Sanctions List Ref):RUS0156 (UK Statement of Reasons):Acting Head of the ‘Central Electoral Commission’ of the so-called ‘Donetsk People’s Republic’. Former “Secretary” of the ‘Central Election Committee’ of the so-called ‘Donetsk People’s Republic’. In this capacity, he participated in the organisation of the so-called ‘elections’ of 11 November 2018 in the so-called ‘Donetsk People’s Republic’, and thereby actively supported and implemented actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,10/12/2018,31/12/2020,31/12/2020,13727 +WAATASSIMOU FOUNDATION,,,,,,,,,,,,,,,,,,,,,,,,Tripoli,,Libya,"(UK Sanctions List Ref):LIB0003 Name of Director/management is Aisha Qadhafi (UK Statement of Reasons):Owned or controlled by directly or indirectly by an involved person, namely Aisha Qadhafi.",Entity,Primary name,,Libya,22/03/2011,31/12/2020,31/12/2020,11712 +WAFA AL-IGATHA AL-ISLAMIA,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0084 (UN Ref):QDe.015 Headquarters was in Kandahar, Afghanistan as at 2001. Wafa was a component of Al-Qaida (QDe.004) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6972 +WAFA AL-IGATHA AL-ISLAMIA,,,,,,,,,,,,,,,,,,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0084 (UN Ref):QDe.015 Headquarters was in Kandahar, Afghanistan as at 2001. Wafa was a component of Al-Qaida (QDe.004) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6972 +WAFA AL-IGATHA AL-ISLAMIA,,,,,,,,,,,,,,,,,,,,,,,,,,United Arab Emirates,"(UK Sanctions List Ref):AQD0084 (UN Ref):QDe.015 Headquarters was in Kandahar, Afghanistan as at 2001. Wafa was a component of Al-Qaida (QDe.004) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6972 +WAFA AL-IGATHA AL-ISLAMIA,,,,,,,,,,,,,,,,,,,Jordan House No. 125,Street 54,Phase II Hayatabad,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0084 (UN Ref):QDe.015 Headquarters was in Kandahar, Afghanistan as at 2001. Wafa was a component of Al-Qaida (QDe.004) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6972 +WAFA HUMANITARIAN ORGANIZATION,,,,,,,,,,,,,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AQD0084 (UN Ref):QDe.015 Headquarters was in Kandahar, Afghanistan as at 2001. Wafa was a component of Al-Qaida (QDe.004) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6972 +WAFA HUMANITARIAN ORGANIZATION,,,,,,,,,,,,,,,,,,,,,,,,,,Kuwait,"(UK Sanctions List Ref):AQD0084 (UN Ref):QDe.015 Headquarters was in Kandahar, Afghanistan as at 2001. Wafa was a component of Al-Qaida (QDe.004) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6972 +WAFA HUMANITARIAN ORGANIZATION,,,,,,,,,,,,,,,,,,,,,,,,,,United Arab Emirates,"(UK Sanctions List Ref):AQD0084 (UN Ref):QDe.015 Headquarters was in Kandahar, Afghanistan as at 2001. Wafa was a component of Al-Qaida (QDe.004) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6972 +WAFA HUMANITARIAN ORGANIZATION,,,,,,,,,,,,,,,,,,,Jordan House No. 125,Street 54,Phase II Hayatabad,,,Peshawar,,Pakistan,"(UK Sanctions List Ref):AQD0084 (UN Ref):QDe.015 Headquarters was in Kandahar, Afghanistan as at 2001. Wafa was a component of Al-Qaida (QDe.004) in 2001. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2001,06/10/2001,31/12/2020,6972 +WAGNER GROUP,,,,,,,Группа Вагнера,Cyrillic,Russian,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1090 (UK Statement of Reasons):The WAGNER GROUP is often described as a Russia-based Private Military Company and is an entity or group that provides military services for financial gain. It has organised the recruitment of, and coordinated and planned operations for, the Wagner Group mercenaries participating in military operations in Ukraine. There are multiple, credible sources which corroborate and support the conclusion that the existence of the organisation known as the Wagner Group is kept purposefully vague and opaque in order to provide a deniable military capability for the Russian State. The WAGNER GROUP is therefore responsible for, engages in, and provides support for actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Entity,Primary name,,Russia,24/03/2022,24/03/2022,27/05/2022,15033 +WAI MING,Lui,,,,,,,,,06/05/1969,,,North Korea,,,,,Pak Bong Nam is an overseas Ilsim International Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0252 (UN Ref):KPi.073 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13568 +WAINAKH,,,,,,,Вайнах,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +WAINAKH,,,,,,,Вайнах,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +WAKATSURU MARU NO.6,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0101 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V SAM MA 2 imported refined petroleum products in October, early November and mid-November 2017 through multiple ship-to-ship transfers. Listed as asset of Korea Samma Shipping Co (OFSI ID: 13636, UN Reference Number: UN Ref KPe.065) (IMO number):8106496 (Current owners):Korea Samma Shipping (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):962 (Length of ship):70 (Year built):1981",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13652 +WAKEEL,Simon,,,,,,,,,,,,Syria,,,,,Commander of the National Defence Forces in the city of Maharda (Hama),,,,,,,,,"(UK Sanctions List Ref):RUS1544 (UK Statement of Reasons):Commander Simon AL WAKIL has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, (1) promoting and supporting Russia’s invasion of Ukraine and (2) overseeing the recruitment of Syrian mercenaries to fight alongside Russia in Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/07/2022,26/07/2022,26/07/2022,15471 +WAKIL,Simon,,,,,,,,,,,,Syria,,,,,Commander of the National Defence Forces in the city of Maharda (Hama),,,,,,,,,"(UK Sanctions List Ref):RUS1544 (UK Statement of Reasons):Commander Simon AL WAKIL has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, (1) promoting and supporting Russia’s invasion of Ukraine and (2) overseeing the recruitment of Syrian mercenaries to fight alongside Russia in Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/07/2022,26/07/2022,26/07/2022,15471 +WALI MOHAMMAD,Abdul Jalil,Haqqani,,,,(1) Maulavi (2) Mullah,عبد الجليل حقانی ولی محمد,,,00/00/1963,"(1) Kandahar City, Kandahar Province. (2) Khwaja Malik village, Arghandab District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,(1) OR 1961825. (2) TR024417,"(1) Afghanistan. Issued in name of Akhtar Mohmad, son of Noor Mohmad, born in 1965 in Kandahar. Issued 4 Feb 2003 by Afghan Consulate in Quetta, Pakistan. Expired 2 Feb 2006 (2) Issued under the name of Haji Gulab Gul, son of Haji Hazrat Gul, born in 1955 in Logar, Afghanistan. Issued on 20/12/2003 by Central Passport Department in Kabul, Afghanistan. Expired 29 December 2006.",,,Deputy Minister of Foreign Affairs under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0032 (UN Ref):TAi.034 Believed to be in Afghanistan/Pakistan border area. Member of the Taliban Supreme Council as of May 2007. Member of the Financial Commission of the Taliban Council. Responsible for logistics for the Taliban and also active as a businessman in his personal capacity as at mid-2013. Belongs to Alizai tribe. Brother of Atiqullah Wali Mohammad (TAi.070). Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/ View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6908 +WALI MOHAMMAD,Atiqullah,,,,,(1) Haji (2) Mullah,عتیق الله ولی محمد,,,00/00/1962,"(1) Tirin Kot District, Uruzgan Province (2) Khwaja Malik village, Arghandab District, Kandahar Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,"(1) Director of Foreign Relations, Kandahar Province under the Taliban regime (2) Director of Public Works, Kandahar Province under the Taliban regime (3) First Deputy Minister of Agriculture (4) Deputy Minister of Public Works under the Taliban regime",,,,,,,,,"(UK Sanctions List Ref):AFG0054 (UN Ref):TAi.070 Originally from Uruzgan, settled and lived later in Kandahar. Was a member of Taliban Supreme Council Political Commission in 2010. No specific role in the Taliban movement, active as a businessman in his personal capacity as of mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Alizai tribe. Brother of Abdul Jalil Haqqani Wali Mohammad (TAi.034). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7036 +WALID,Ibrahim,,,,,,,,,05/02/1981,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +WALID,Ibrahim,,,,,,,,,01/01/1972,,,Afghanistan,(1) OR801168 (2) 4117921,"(1) Afghan number, issued on 28 Feb. 2006. Expires 27 Feb. 2011. Under name Said Jan 'Abd al-Salam (2) Pakistan number, issued on 9 Sep. 2008. Expires 9 Sep. 2013. Issued under name Dilawar Khan Zain Khan.",281020505755,Kuwait Civil Identification number issued under name Said Jan 'Abd al-Salam,,,,,,,,,,"(UK Sanctions List Ref):AQD0302 (UN Ref):QDi.289 In approximately 2005, ran a ""basic training"" camp for Al-Qaida (QDe.004) in Pakistan. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1928966",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,28/02/2011,09/02/2011,31/12/2020,11634 +WALIJAN,,,,,,Maulavi,ولی جان,,,00/00/1968,(1) Quetta (2) Nimroz Province,(1) Pakistan (2) Afghanistan,Afghanistan,,,,,Governor of Jawzjan Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0073 (UN Ref):TAi.095 Member of the Taliban Gerd-e-Jangal Shura and Head of the Taliban Prisoners and Refugees Committee. Belongs to Ishaqzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7538 +WALIULLAH,Nazirullah,Aanafi,,,,,,,,00/00/1962,"Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,D 000912,(Afghan) issued on 30 June 1998,,,"Commercial Attache, Taliban Embassy, Islamabad, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0099 (UN Ref):TAi.129 Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7019 +WALIULLAH,NAZIRULLAH,HANAFI,,,,(1) Maulavi (2) Haji,نذیر الله حنفى ولى الله,,,00/00/1962,"Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,D 000912,(Afghan) issued on 30 June 1998,,,"Commercial Attache, Taliban Embassy, Islamabad, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0099 (UN Ref):TAi.129 Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7019 +WANG,Chang,Uk,,,,Minister,,,,29/05/1960,,,North Korea,,,,,(1) Minister for Industry and Atomic Energy (2) Member of the Central Committee of the Workers' Party of Korea,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0038 (UK Statement of Reasons):Minister for Atomic Energy and Industry. In this capacity Wang Chang Uk is responsible for supporting or promoting the DPRK’s nuclear-related, ballistic-missile-related or other weapons of mass destruction-related programmes. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,07/04/2017,31/12/2020,03/03/2022,13456 +WANG,JUNZHENG,,,,,,,,,00/05/1963,"Shandong, Linyi",China,China,,,,,(1) Deputy Secretary of the Party Committee for the Xinjiang Uyghur Autonomous Region (Since April 2020) (2) Secretary of the Party Committee of the Xinjiang Production and Construction Corps (Since April 2020) (3) Political Commissar of the Xinjiang Production and Construction Corps (Since May 2020) (4) Chairman of the China Xinjian Group (5) Former Secretary of the Political and Legal Affairs Committee of the XUAR (February 2019 - September 2020) (6) Member of the Standing Committee of the Party Committee of XUAR (Since 2019 - present),,,,,,Xinjiang,,China,"(UK Sanctions List Ref):GHR0077 (UK Statement of Reasons):Wang Junzheng is a provincial-level Chinese Communist Party and State official in the Xinjiang Uyghur Autonomous Region (XUAR). He is currently the Deputy Secretary of the Party Committee of XUAR and previously held the role of Secretary of the Political and Legal Affairs Committee for the XUAR. In these positions, he has been and remains responsible for the administration of China's so called ""re-education"" policy in the XUAR and therefore he has been and remains responsible for serious violations of the right not to be subject to torture or cruel, inhuman or degrading treatment or punishment that have taken place in so called ""training centres"". (Gender):Male",Individual,Primary name,,Global Human Rights,22/03/2021,22/03/2021,01/04/2021,14077 +WANG,MINGSHAN,,,,,,,,,00/01/1964,"Wuwei, Gansu",China,China,,,,,(1) Member of the Standing Committee of the Party Committee of XUAR (Since September 2020) (2) Secretary of the Political and Legal Affairs Committee of the Xinjiang Uyghur Autonomous Region (XUAR) (Since September 2020) (3) Former Vice Chairman of the Government of the XUAR (January 2018 - January 2021) (4) Former Secretary of the Party Committee of the XUAR Public Security Department (April 2019 - January 2021) (5) Former Deputy Secretary of the Political and Legal Affairs Committee of XUAR (June 2018 - September 2020) (6) Former Director of the Public Security Department of the XUAR (February 2017- January 2021) (7) Chief Inspector of the Public Security Department XUAR (February 2017 - January 2021),,,,,,Xinjiang,,China,"(UK Sanctions List Ref):GHR0076 (UK Statement of Reasons):Wang Mingshan is a provincial-level Chinese Communist Party and State official in the Xinjiang Uyghur Autonomous Region (XUAR). Wang Mingshan currently holds the position of Secretary of the Political and Legal Affairs Committee of the XUAR. Wang Mingshan formerly held the positions of Deputy Secretary of the Political and Legal Affairs Committee of the XUAR, Secretary of the Party Committee of the XUAR Public Security Department and Director of the Public Security Department of XUAR. In these positions he has been and remains responsible for the administration of China's so called ""re-education"" policy in the XUAR and therefore has been and remains responsible for serious violations of the right not to be subject to torture or cruel, inhuman or degrading treatment or punishment that have taken place in so called ""training centres"". (Gender):Male",Individual,Primary name,,Global Human Rights,22/03/2021,22/03/2021,01/04/2021,14076 +WANNOUS,Ali,,,,,,,,,05/02/1964,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0016 He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (UK Statement of Reasons):Holds the rank of Major General, in post after May 2011. As a senior military officer he is responsible for the violent repression against the civilian population and involved in the storage and deployment of chemical weapons. He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name variation,,Syria,18/07/2017,31/12/2020,14/02/2022,13494 +WANUS,Ali,,,,,,علي وانوس,,,05/02/1964,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0016 He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (UK Statement of Reasons):Holds the rank of Major General, in post after May 2011. As a senior military officer he is responsible for the violent repression against the civilian population and involved in the storage and deployment of chemical weapons. He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity. (Gender):Male",Individual,Primary name,,Syria,18/07/2017,31/12/2020,14/02/2022,13494 +WAQIL,Simon,,,,,,,,,,,,Syria,,,,,Commander of the National Defence Forces in the city of Maharda (Hama),,,,,,,,,"(UK Sanctions List Ref):RUS1544 (UK Statement of Reasons):Commander Simon AL WAKIL has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, (1) promoting and supporting Russia’s invasion of Ukraine and (2) overseeing the recruitment of Syrian mercenaries to fight alongside Russia in Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,26/07/2022,26/07/2022,26/07/2022,15471 +WARSAME,Abdirahim,Mohamed,,,,,,,,00/00/1957,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +WARSAME,Abdirahim,Mohamed,,,,,,,,00/00/1958,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +WARSAME,Abdirahim,Mohamed,,,,,,,,00/00/1960,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +WARSAME,Abdirahim,Mohamed,,,,,,,,00/00/1959,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +WARSAME,Abdirahim,Mohamed,,,,,,,,00/00/1962,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +WARSAME,Abdirahim,Mohamed,,,,,,,,00/00/1961,Xararadheere,Somalia,,,,,,,,,,,,,,Somalia,"(UK Sanctions List Ref):SOM0019 (UN Ref):SOi.020 Listed pursuant to paragraph 8(a) of resolution 1844 (2008) as “Engaging in or providing support for acts that threaten the peace, security or stability of Somalia, including acts that threaten the Djibouti Agreement of 18 August 2008 or the political process, or threaten the TFIs or AMISOM by force.” Mahad Karate played a key role in the Amniyat, the wing of al-Shabaab responsible for the recent attack on Garissa University College in Kenya that resulted in nearly 150 deaths. The Amniyat is al-Shabaab’s intelligence wing, which plays a key role in the execution of suicide attacks and assassinations in Somalia, Kenya, and other countries in the region, and provides logistics and support for al-Shabaab’s terrorist activities.",Individual,AKA,Good quality,Somalia,02/03/2021,26/02/2021,02/03/2021,14067 +WASIQ,Abdul Haq,,,,,,,,,00/00/1975,"Gharib village, Khogyani District, Ghazni Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Security (Intelligence) under the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0062 (UN Ref):TAi.082 Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7539 +WASIQ,Abdul Haq,,,,,,,,,00/00/1971,"Gharib village, Khogyani District, Ghazni Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Security (Intelligence) under the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0062 (UN Ref):TAi.082 Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7539 +WASSEQ,Abdul-Haq,,,,,,,,,00/00/1975,"Gharib village, Khogyani District, Ghazni Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Security (Intelligence) under the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0062 (UN Ref):TAi.082 Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7539 +WASSEQ,Abdul-Haq,,,,,,,,,00/00/1971,"Gharib village, Khogyani District, Ghazni Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Security (Intelligence) under the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0062 (UN Ref):TAi.082 Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7539 +WASSERMAN,Anatoly,Alexandrovich,,,,,Вассерман Анатолий Александрович,,,09/12/1952,Odessa,Ukraine,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0330 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,15/03/2022,14275 +WASSIQ,ABDUL-HAQ,,,,,Maulavi,عبد الحق وثيق,,,00/00/1975,"Gharib village, Khogyani District, Ghazni Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Security (Intelligence) under the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0062 (UN Ref):TAi.082 Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7539 +WASSIQ,ABDUL-HAQ,,,,,Maulavi,عبد الحق وثيق,,,00/00/1971,"Gharib village, Khogyani District, Ghazni Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Security (Intelligence) under the Taliban regime,,,,,,,,Qatar,(UK Sanctions List Ref):AFG0062 (UN Ref):TAi.082 Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,31/01/2001,01/02/2021,7539 +WAZIR,AHMED JAN,AKHUNDZADA,,,,Maulavi,احمد جان آخوندزاده وزیر,,,00/00/1953,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +WAZIR,AHMED JAN,AKHUNDZADA,,,,Maulavi,احمد جان آخوندزاده وزیر,,,00/00/1954,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +WAZIR,AHMED JAN,AKHUNDZADA,,,,Maulavi,احمد جان آخوندزاده وزیر,,,00/00/1955,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +WAZIR,AHMED JAN,AKHUNDZADA,,,,Maulavi,احمد جان آخوندزاده وزیر,,,00/00/1956,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +WAZIR,AHMED JAN,AKHUNDZADA,,,,Maulavi,احمد جان آخوندزاده وزیر,,,00/00/1957,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +WAZIR,AHMED JAN,AKHUNDZADA,,,,Maulavi,احمد جان آخوندزاده وزیر,,,00/00/1958,"(1) Kandahar Province. (2) Tirin Kot District, Uruzgan Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Minister of Water and Electricity under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0065 (UN Ref):TAi.085 Member of Taliban Supreme Military Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6951 +WAZIRI,MOHAMMAD JAWAD,,,,,,محمد جواد وزیری,,,00/00/1960,"(1) Jaghatu District, Maidan Wardak Province. (2) Sharana District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,"UN Department, Ministry of Foreign Affairs under the Taliban regime",,,,,,,,,(UK Sanctions List Ref):AFG0035 (UN Ref):TAi.039 Believed to be in Afghanistan/Pakistan border area. Belongs to Wazir tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7540 +WEIHAI WORLD-SHIPPING FREIGHT,,,,,,,,,,,,,,,,,,,419-201,Tongyi Lu,Huancui Qu,Weihai,,Shandong,264200,China,"(UK Sanctions List Ref):DPR0197 (UN Ref):KPe.074 Ship and commercial manager of the XIN GUANG HAI, a vessel that on loaded coal at Taean, DPRK, on 27 October 2017 and had an ETA of 14 November 2017 to Cam Pha, Vietnam, but it did not arrive. IMO number: 5905801.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,16/09/2022,13645 +WEINBERG,Aleksandr,Vladelenovich,,,,,,,,02/02/1961,Bolsheorlovskoye,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0980 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name variation,,Russia,15/03/2022,15/03/2022,26/04/2022,14931 +WEN-JI,Jiang,,,,,,,,,,,,North Korea,PS 472330208,Date of Expiration: 4.7.2017,,,,,,,,,,,Democratic People's Republic of Korea,"(UK Sanctions List Ref):DPR0223 (UN Ref):KPi.019 Kang Mun Kil has conducted nuclear procurement activities as a representative of Namchongang, also known as Namhung.",Individual,AKA,Good quality,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13330 +WESTERN EDUCATION IS A SIN,,,,,,,,,,,,,,,,,,,,,,,,,,Nigeria,"(UK Sanctions List Ref):AQD0055 (UN Ref):QDe.138 Affiliate of Al-Qaida (QDe.004), and the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Associated with Jama'atu Ansarul Muslimina Fi Biladis-Sudan (Ansaru). The leader is Abubakar Shekau. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,29/05/2014,22/05/2014,31/12/2020,12982 +WILAYAT AL-TARABLUS,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0368 (UN Ref):QDe.165 Formed in November 2014 upon announcement by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/03/2020,04/03/2020,31/12/2020,13831 +"WILAYAT AL-YEMEN, PROVINCE OF YEMEN",,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0369 (UN Ref):QDe.166 Formed in November 2014 upon acceptance of oaths of allegiance by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/03/2020,04/03/2020,31/12/2020,13832 +WILAYAT BARQA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0368 (UN Ref):QDe.165 Formed in November 2014 upon announcement by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/03/2020,04/03/2020,31/12/2020,13831 +WILAYAT FEZZAN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0368 (UN Ref):QDe.165 Formed in November 2014 upon announcement by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/03/2020,04/03/2020,31/12/2020,13831 +WILAYAT TARABLUS,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0368 (UN Ref):QDe.165 Formed in November 2014 upon announcement by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/03/2020,04/03/2020,31/12/2020,13831 +WILAYAT TRIPOLITANIA,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0368 (UN Ref):QDe.165 Formed in November 2014 upon announcement by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,05/03/2020,04/03/2020,31/12/2020,13831 +WIN,Soe,,,,,,,,,01/03/1960,,Myanmar,Myanmar,,,,,Second in Command of the Myanmar Armed Forces (Tatmadaw),,,,,,,,,"(UK Sanctions List Ref):GHR0047 (UK Statement of Reasons):Vice Senior General Soe Win, as Deputy Commander-in-Chief of the Myanmar Armed Forces (Tatmadaw) and Commander-in-Chief of the Myanmar Army, had responsibility for the Tatmadaw troops who carried out serious human rights violations against the Rohingya population in Rakhine State in 2017 and 2019 including unlawful killings, torture, forced labour, systematic rape and other forms of targeted sexual violence. Soe Win was also involved in the financing of the Tatmadaw military operations in Rakhine State during which these violations took place, knowing that this financing would contribute to the commission of these violations. (Gender):Male",Individual,Primary name,,Global Human Rights,06/07/2020,06/07/2020,11/11/2022,13898 +WIN,Than,Zaw,,,,,,,,,,,Myanmar,,,,,A Major in the 564th Light Infantry Battalion of the Myanmar Armed Forces (Tatmadaw),,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0013 (UK Statement of Reasons):Thant Zaw Win is a Major in the 546th Light Infantry Brigade of the Myanmar Armed Forces (Tatmadaw) and oversaw military operations carried out in Rakhine State and notably in Maung Nu. In that context, he is responsible for atrocities and serious human rights violations, repression of the civilian population, and actions that threaten the peace, stability or security of Myanmar, committed against the Rohingya population in Rakhine state carried out by the Tatmadaw. These include unlawful killings and sexual violence. (Gender):Male",Individual,Primary name variation,,Myanmar,24/12/2018,29/04/2021,11/11/2022,13737 +WIN,Thant,Zaw,,,,Major,,,,,,,Myanmar,,,,,A Major in the 564th Light Infantry Battalion of the Myanmar Armed Forces (Tatmadaw),,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0013 (UK Statement of Reasons):Thant Zaw Win is a Major in the 546th Light Infantry Brigade of the Myanmar Armed Forces (Tatmadaw) and oversaw military operations carried out in Rakhine State and notably in Maung Nu. In that context, he is responsible for atrocities and serious human rights violations, repression of the civilian population, and actions that threaten the peace, stability or security of Myanmar, committed against the Rohingya population in Rakhine state carried out by the Tatmadaw. These include unlawful killings and sexual violence. (Gender):Male",Individual,Primary name,,Myanmar,24/12/2018,29/04/2021,11/11/2022,13737 +WOL,SANTINO,DENG,,,,Major General,,,,09/11/1962,,South Sudan,,,,,,Commander of the third Infantry Division Sudan People’s Liberation Army,,,,,,,,,"(UK Sanctions List Ref):SSU0008 (UN Ref):SSi.004 Has led and directed military actions against opposition forces and conducted confrontational troop movements in violation of the CoHA. During May 2015, forces under his command killed children, women and old men, burned property, and stole livestock as they advanced through Unity State towards Thorjath oil field. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879071",Individual,Primary name,,South Sudan,11/07/2014,01/07/2015,31/12/2020,13021 +WOLFSON,Ilya,Svetoslavovich,,,,,ВОЛЬФСОН Илья Светославович,,,08/06/1981,Kazan,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0335 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14280 +WON HO,RI,,,,,,,,,17/07/1964,,,,381310014,,,,DPRK Ministry of State Security Official,,,,,,,,,(UK Sanctions List Ref):DPR0270 (UN Ref):KPi.033 Ri Won Ho is a DPRK Ministry of State Security Official stationed in Syria supporting KOMID.,Individual,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,31/12/2020,13418 +WONBANG TRADING COMPANY,,,,,,,,,,,,,,,,,,,Room 818,Pothonggang Hotel,,Ansan-Dong,Pyongchon district,Pyongyang,,North Korea,"(UK Sanctions List Ref):DPR0064 Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau which has been designated by the United Nations. (UK Statement of Reasons):Pan Systems has assisted in the evasion of sanctions imposed by the United Nations Security Council through the attempted sale of arms and related materiel to Eritrea. Pan Systems is also controlled by and works on behalf of the Reconnaissance General Bureau, which has been designated by the United Nations.",Entity,AKA,,Democratic People's Republic of Korea,16/10/2017,31/12/2020,31/12/2020,13553 +WO'N-UK,Pae,,,,,,,,,22/08/1969,,,,,,472120208,expires 22 Feb 2017,Pae Won Uk is an overseas Daesong Bank representative,,,,,,,,,(UK Sanctions List Ref):DPR0249 (UN Ref):KPi.072 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,22/12/2017,22/12/2017,31/12/2020,13567 +WOORY STAR,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0108 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK cargo vessel M/V WOORY STAR is believed to have been involved in illicit transfers of prohibited DPRK goods. Listed as asset of Phyongchon Shipping & Marine (OFSI ID: 13641, UN Reference Number: UN Ref KPe.070) (IMO number):8408595 (Current owners):Phyongchon Shipping & Marine (Flag of ship):North Korea (Type of ship):General Cargo / Multi Purpose (Tonnage of ship):3154 (Length of ship):89 (Year built):1984",Ship,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13659 +WUOL,Santino,Deng,,,,,,,,09/11/1962,,South Sudan,,,,,,Commander of the third Infantry Division Sudan People’s Liberation Army,,,,,,,,,"(UK Sanctions List Ref):SSU0008 (UN Ref):SSi.004 Has led and directed military actions against opposition forces and conducted confrontational troop movements in violation of the CoHA. During May 2015, forces under his command killed children, women and old men, burned property, and stole livestock as they advanced through Unity State towards Thorjath oil field. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879071",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,31/12/2020,13021 +XIN HONG,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0110 Pursuant to paragraphs 8(d) of Security Council resolution 1718 (2006) and 12 of Security Council resolution 2270 (2016) as economic resources of designated entities. DPRK cargo vessel M/V HAP JANG GANG 6 is owned by Hapjanggang Shipping Corp and is believed to have been involved in illicit transfers of prohibited DPRK goods. Listed as asset of Hapjanggang Shipping Corp, (OFSI ID: 13629, UN Reference Number: UN Ref KPe.058) (IMO number):9066540 (Current owners):Hapjanggang Shipping Corp (Flag of ship):North Korea (Previous flags):Cambodia (Type of ship):General Cargo / Multi Purpose (Tonnage of ship):1497 (Length of ship):75 (Year built):1993",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13661 +XINJIANG PRODUCTION AND CONSTRUCTION CORPS PUBLIC SECURITY BUREAU,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0079 Director: Yang Guangqiu (XPCC PSB Director and Chief Inspector) (UK Statement of Reasons):The Xinjiang Production and Construction Corps Public Security Bureau (XPCC PSB), is a state run organisation that administers security and policing for specific cities and sub-prefecture level areas across Xinjiang. The XPCC PSB is responsible for XPCC public security work in Xinjiang areas administered by the XPCC. Consequently, it is responsible for serious violations of the right not to be subject to torture or cruel, inhuman or degrading treatment, or punishment, that have taken place in so called ""training centres"" in these areas. (Type of entity):Public Security Body",Entity,Primary name,,Global Human Rights,22/03/2021,22/03/2021,22/03/2021,14079 +XINJIANG SHENGCHAN JIANSHE BINGTUAN GONG'AN JU,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0079 Director: Yang Guangqiu (XPCC PSB Director and Chief Inspector) (UK Statement of Reasons):The Xinjiang Production and Construction Corps Public Security Bureau (XPCC PSB), is a state run organisation that administers security and policing for specific cities and sub-prefecture level areas across Xinjiang. The XPCC PSB is responsible for XPCC public security work in Xinjiang areas administered by the XPCC. Consequently, it is responsible for serious violations of the right not to be subject to torture or cruel, inhuman or degrading treatment, or punishment, that have taken place in so called ""training centres"" in these areas. (Type of entity):Public Security Body",Entity,AKA,,Global Human Rights,22/03/2021,22/03/2021,22/03/2021,14079 +XIRSI,Xasan,Cabdilaahi,,,,,,,,00/00/1944,Region V (the Ogaden Region in Eastern Ethiopia),Ethiopia,Somalia,,,,,Colonel. Sheikh,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0004 (UN Ref):SOi.003,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,8425 +XIRSI,Xasan,Cabdulle,,,,,,,,00/00/1944,Region V (the Ogaden Region in Eastern Ethiopia),Ethiopia,Somalia,,,,,Colonel. Sheikh,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0004 (UN Ref):SOi.003,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,8425 +XPCC PSB,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):GHR0079 Director: Yang Guangqiu (XPCC PSB Director and Chief Inspector) (UK Statement of Reasons):The Xinjiang Production and Construction Corps Public Security Bureau (XPCC PSB), is a state run organisation that administers security and policing for specific cities and sub-prefecture level areas across Xinjiang. The XPCC PSB is responsible for XPCC public security work in Xinjiang areas administered by the XPCC. Consequently, it is responsible for serious violations of the right not to be subject to torture or cruel, inhuman or degrading treatment, or punishment, that have taken place in so called ""training centres"" in these areas. (Type of entity):Public Security Body",Entity,AKA,,Global Human Rights,22/03/2021,22/03/2021,22/03/2021,14079 +Y CHUN,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0107 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK tanker M/V YU SON is believed to have been involved in ship-to-ship transfer operations for oil. Listed as asset of Myohyang Shipping Co (OFSI ID: 13639, UN Reference Number: UN Ref KPe.068) (IMO number):8691702 (Current owners):Myohyang Shipping Co (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):2228 (Length of ship):89 (Year built):2003",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13658 +Y.A.S. CO. LTD,,,,,,,,,,,,,,,,,,,,,,,West Lavasani,Tehran,9821,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +Y.A.S. CO. LTD,,,,,,,,,,,,,,,,,,,Sa'adat Abaad,Shahrdari Sq. Sarv Building,9th Floor,Unit 5,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +Y.A.S. CO. LTD,,,,,,,,,,,,,,,,,,,No.17,Balooch Alley,Vaezi St,Shariati Ave.,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +YA MAHDI INDUSTRIES GROUP,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):INU0189 (UN Ref):IRe.076 Subordinate to AIO, which is involved in international purchases of missile equipment. [Old Reference # E.47.A.10] (Parent company):Aerospace Industries Organisation (AIO)",Entity,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,31/12/2020,9045 +YAAK,Peter,Gadet,,,,,,,,00/00/1957,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +YAAK,Peter,Gadet,,,,,,,,00/00/1958,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +YAAK,Peter,Gadet,,,,,,,,00/00/1959,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +YAAK,Peter,Gatdet,,,,,,,,00/00/1957,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +YAAK,Peter,Gatdet,,,,,,,,00/00/1958,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +YAAK,Peter,Gatdet,,,,,,,,00/00/1959,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +YACUB,Eric,,,,,,,,,19/08/1974,"Dacusuman Surakarta, Central Java",Indonesia,Indonesia,,,,,,,,,,,,,Philippines,(UK Sanctions List Ref):AQD0325 (UN Ref):QDi.219 In detention in the Philippines as at May 2011. Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1429171,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,26/04/2006,21/04/2006,31/12/2020,8833 +YAGAFAROV,Azat,Ferdinandovich,,,,,Ягафаров Азат Фердинандович,,,04/04/1961,Sarly,Russia,Russia,752992755,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0586 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14531 +YAGHI,Kinan,,,,,,,,,00/00/1976,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0365 (UK Statement of Reasons):Minister of Finance. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,16/10/2020,31/12/2020,31/12/2020,13981 +YAGI,Kenan,,,,,,,,,00/00/1976,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0365 (UK Statement of Reasons):Minister of Finance. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2020,31/12/2020,31/12/2020,13981 +YAGI,Kinan,,,,,,,,,00/00/1976,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):SYR0365 (UK Statement of Reasons):Minister of Finance. Appointed in August 2020. As a Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,16/10/2020,31/12/2020,31/12/2020,13981 +YAGUBOV,Gennady,Vladimirovich,,,,,Геннадий Владимирович ЯГУБОВ,,,17/04/1968,Budennovsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0962 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14913 +YAHYA,Abdul,Aziz,Jemus,Junkung,Jammeh,,,,,25/05/1965,Kanilai,The Gambia,The Gambia,,,,,Former President of The Gambia,,,,,,,,Equatorial Guinea,"(UK Sanctions List Ref):GHR0059 Ex-Army Lieutenant (UK Statement of Reasons):Former President of The Gambia Yahya Jammeh was responsible for inciting, promoting, ordering and being directly involved in extrajudicial killings; enforced disappearances; kidnappings, torture; rape, as well as wider human rights violations during his tenure as President between 1994 and 2016. (Gender):Male",Individual,Primary name,,Global Human Rights,10/12/2020,10/12/2020,10/12/2020,14010 +YAK,Peter,Gadet,,,,,,,,00/00/1957,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +YAK,Peter,Gadet,,,,,,,,00/00/1958,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +YAK,Peter,Gadet,,,,,,,,00/00/1959,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +YAKA,Peter,Gatdeet,,,,,,,,00/00/1957,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +YAKA,Peter,Gatdeet,,,,,,,,00/00/1958,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +YAKA,Peter,Gatdeet,,,,,,,,00/00/1959,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +YAKA,Peter,Gatdet,,,,,,,,00/00/1957,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +YAKA,Peter,Gatdet,,,,,,,,00/00/1958,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +YAKA,Peter,Gatdet,,,,,,,,00/00/1959,"(1) Mayom County, Unity State (2) Mayan, Unity State",,,,,,,Deputy Chief of Staff for Operations for the Sudan People’s Liberation Army in Opposition (SPLA-IO),,,,,,,,,"(UK Sanctions List Ref):SSU0007 (UN Ref):SSi.006 Appointed the SPLA-IO’s Deputy Chief of Staff for Operations on December 21, 2014. Forces under his command targeted civilians, including women, in April 2014 during an assault on Bentiu, including targeted killings on the basis of ethnicity. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5879076",Individual,AKA,Good quality,South Sudan,11/07/2014,01/07/2015,10/02/2022,13022 +YAKHNYUK,Sergey,Vasilievich,,,,,Яхнюк Сергей Васильевич,,,03/07/1962,Altynivka,Ukraine,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0540 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14485 +YAKUBOVSKY,Alexander,Vladimirovich,,,,,Якубовский Александр Владимирович,,,07/05/1985,Irkutsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0539 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14484 +YAKUNIN,Vladimir,Ivanovich,,,,,Владимир Иванович Якунин,Cyrillic,Russian,30/06/1948,"Melenki, Vladimir Oblast",Russia,Russia,,,,,President of OJSC Russian Railways,,,,,,,,,"(UK Sanctions List Ref):RUS1329 (UK Statement of Reasons):Vladimir Ivanovich YAKUNIN (hereafter YAKUNIN) is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019 on the basis of the following grounds:  YAKUNIN is associated with a person who is an involved person, Vladimir PUTIN.  YAKUNIN obtained a benefit from or supported the Government of Russia as a member of the Board of Directors of the state-owned Russian Railways, a Government of Russia affiliated-entity which carries on business in the transport sector - a sector of strategic importance to the Government of Russia.",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15287 +YAKUSHEV,Vladimir,Vladimirovich,,,,,ЯКУШЕВ Владимир Владимирович,Cyrillic,Russian,14/06/1968,"Neftekamsk, Bashkiria",Russia,Russia,,,,,(1) Presidential Envoy to the Urals Federal District (2) Member of the Russian Security Council,,,,,,,,,"(UK Sanctions List Ref):RUS1046 (UK Statement of Reasons):Vladimir Vladimirovich YAKUSHEV is a Member of the Security Council of the Russian Federation. As a Member of the Security Council, YAKUSHEV is or has been responsible for, engaged in, provided support for or promoted policies or actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,24/03/2022,24/03/2022,09/05/2022,14989 +YALALOV,Irek,Ishmukhametovich,,,,,Ирек Ишмухаметович ЯЛАЛОВ,,,27/01/1961,"Ufa, Bashkir Autonomous Soviet Socialist Republic",Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0939 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14890 +YAMIN,Abdur Rehman,Muhammad,,,,,,,,03/10/1965,Mirpur Khas,Pakistan,Pakistan,CV9157521,"Pakistan number, issued on 8 Sep. 2008, expires on 7 Sep. 2013.",44103-5251752-5,Pakistan national identity card number,,,,,,,Karachi,,Pakistan,"(UK Sanctions List Ref):AQD0112 (UN Ref):QDi.309 Has provided facilitation and financial services to Al-Qaida (QDe.004). Associated with Harakatul Jihad Islami (QDe.130), Jaish-I-Mohammed (QDe.019), and Al-Akhtar Trust International (QDe.121). Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5040885",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,23/03/2012,14/03/2012,31/12/2020,12632 +YAMPOLSKAYA,Elena,Alexandrovna,,,,,Ямпольская Елена Александровна,,,20/06/1971,Moscow,Russia,,246798,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0587 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14532 +YANGOUVONDA,Bozize,,,,,,,,,14/10/1946,(1) Mouila (2) Izo,(1) Gabon (2) South Sudan,(1) Central African Republic. (2) South Sudan,D00002264,"Issued on 11 Jun. 2013. Issued by the Minister of Foreign Affairs, in Juba, South Sudan. Expires on 11 Jun. 2017. Diplomatic passport issued under name Samuel Peter Mudde.",M4800002143743,Personal number on passport,,,,,,,Bangui,,Central African Republic,(UK Sanctions List Ref):CAF0003 (UN Ref):CFi.001 Mother’s name is Martine Kofio. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Central African Republic (since his return from Uganda in December 2019),Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12998 +YANGOUVONDA,Bozize,,,,,,,,,16/12/1948,(1) Mouila (2) Izo,(1) Gabon (2) South Sudan,(1) Central African Republic. (2) South Sudan,D00002264,"Issued on 11 Jun. 2013. Issued by the Minister of Foreign Affairs, in Juba, South Sudan. Expires on 11 Jun. 2017. Diplomatic passport issued under name Samuel Peter Mudde.",M4800002143743,Personal number on passport,,,,,,,Bangui,,Central African Republic,(UK Sanctions List Ref):CAF0003 (UN Ref):CFi.001 Mother’s name is Martine Kofio. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here. Central African Republic (since his return from Uganda in December 2019),Individual,AKA,Good quality,Central African Republic,24/06/2014,09/05/2014,01/02/2021,12998 +YANUCOVICH,Aleksandr,Viktorovich,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVICH,Alexander,Victorovych,,,,,Alexander Viktorovyč Yanucovich,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVICH,Alexander,Viktorovich,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVICH,Alexandr,Victorovych,,,,,Alexandr Viktorovyč Yanucovich,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVICH,Alexsandr,Victorovych,,,,,Alexsandr Viktorovyč Yanucovich,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVICH,Alexsandr,Viktorovich,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVICH,Olecsandr,Victorovych,,,,,Olecsandr Viktorovyč Yanucovich,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVICH,Olecsandr,Viktorovich,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVICH,Olexandr,Victorovych,,,,,Olexandr Viktorovyč Yanucovich,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVICH,Olexandr,Viktorovich,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVYCH,Aleksandr,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVYCH,Alexander,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVYCH,Alexander,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVYCH,Alexandr,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVYCH,Alexsandr,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVYCH,Alexsandr,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVYCH,Olecsandr,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVYCH,Olecsandr,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVYCH,Olexandr,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVYCH,Olexandr,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUCOVYCH,Victor,Fedorovych,,,,,,,,09/07/1950,Yenakiyeve Donetsk,Former USSR Currently Ukraine,Ukraine,,,,,Former President of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0228 (UK Statement of Reasons):Viktor Yanukovych was the President of Ukraine from November 2010 to February 2014 and was responsible for requesting President Putin to send Russian troops into Ukraine, therefore undermining Ukrainian independence and threatening Ukraine’s territorial integrity. Russian troops annexed Crimea shortly after this invitation was issued. Yanukovych was personally responsible for the appointment of at least one key official who continues to run the territory of Crimea and Sevastopol under the Russian annexation. Yanukovych is also suspected of supporting a policy, which reduced the defence capability of Ukraine’s Armed Forces stationed in Crimea prior to the 2014 Russian invasion. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/02/2022,12891 +YANUKOVICH,Victor,,,,,,,,,09/07/1950,Yenakiyeve Donetsk,Former USSR Currently Ukraine,Ukraine,,,,,Former President of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0228 (UK Statement of Reasons):Viktor Yanukovych was the President of Ukraine from November 2010 to February 2014 and was responsible for requesting President Putin to send Russian troops into Ukraine, therefore undermining Ukrainian independence and threatening Ukraine’s territorial integrity. Russian troops annexed Crimea shortly after this invitation was issued. Yanukovych was personally responsible for the appointment of at least one key official who continues to run the territory of Crimea and Sevastopol under the Russian annexation. Yanukovych is also suspected of supporting a policy, which reduced the defence capability of Ukraine’s Armed Forces stationed in Crimea prior to the 2014 Russian invasion. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/02/2022,12891 +YANUKOVICH,Viktor,Fedorovich,,,,,,,,09/07/1950,Yenakiyeve Donetsk,Former USSR Currently Ukraine,Ukraine,,,,,Former President of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0228 (UK Statement of Reasons):Viktor Yanukovych was the President of Ukraine from November 2010 to February 2014 and was responsible for requesting President Putin to send Russian troops into Ukraine, therefore undermining Ukrainian independence and threatening Ukraine’s territorial integrity. Russian troops annexed Crimea shortly after this invitation was issued. Yanukovych was personally responsible for the appointment of at least one key official who continues to run the territory of Crimea and Sevastopol under the Russian annexation. Yanukovych is also suspected of supporting a policy, which reduced the defence capability of Ukraine’s Armed Forces stationed in Crimea prior to the 2014 Russian invasion. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/02/2022,12891 +YANUKOVYCH,Oleksandr,Viktorovych,,,,,александр викторович янукович,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUKOVYCH,Viktor,,,,,,Виктор Федорович Янукович,,,09/07/1950,Yenakiyeve Donetsk,Former USSR Currently Ukraine,Ukraine,,,,,Former President of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0228 (UK Statement of Reasons):Viktor Yanukovych was the President of Ukraine from November 2010 to February 2014 and was responsible for requesting President Putin to send Russian troops into Ukraine, therefore undermining Ukrainian independence and threatening Ukraine’s territorial integrity. Russian troops annexed Crimea shortly after this invitation was issued. Yanukovych was personally responsible for the appointment of at least one key official who continues to run the territory of Crimea and Sevastopol under the Russian annexation. Yanukovych is also suspected of supporting a policy, which reduced the defence capability of Ukraine’s Armed Forces stationed in Crimea prior to the 2014 Russian invasion. (Gender):Male",Individual,Primary name,,Russia,06/03/2014,31/12/2020,16/02/2022,12891 +YANUKOVYCH,Viktor,Fedorovych,,,,,,,,09/07/1950,Yenakiyeve Donetsk,Former USSR Currently Ukraine,Ukraine,,,,,Former President of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0228 (UK Statement of Reasons):Viktor Yanukovych was the President of Ukraine from November 2010 to February 2014 and was responsible for requesting President Putin to send Russian troops into Ukraine, therefore undermining Ukrainian independence and threatening Ukraine’s territorial integrity. Russian troops annexed Crimea shortly after this invitation was issued. Yanukovych was personally responsible for the appointment of at least one key official who continues to run the territory of Crimea and Sevastopol under the Russian annexation. Yanukovych is also suspected of supporting a policy, which reduced the defence capability of Ukraine’s Armed Forces stationed in Crimea prior to the 2014 Russian invasion. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/02/2022,12891 +YANUKOVYCH,Viktor,Fedorovych,,,,,Viktor Fedorovȳch Yanukovȳch,,,09/07/1950,Yenakiyeve Donetsk,Former USSR Currently Ukraine,Ukraine,,,,,Former President of Ukraine,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0228 (UK Statement of Reasons):Viktor Yanukovych was the President of Ukraine from November 2010 to February 2014 and was responsible for requesting President Putin to send Russian troops into Ukraine, therefore undermining Ukrainian independence and threatening Ukraine’s territorial integrity. Russian troops annexed Crimea shortly after this invitation was issued. Yanukovych was personally responsible for the appointment of at least one key official who continues to run the territory of Crimea and Sevastopol under the Russian annexation. Yanukovych is also suspected of supporting a policy, which reduced the defence capability of Ukraine’s Armed Forces stationed in Crimea prior to the 2014 Russian invasion. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/02/2022,12891 +YANUKVICH,Aleksandr,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUKVICH,Alexander,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUKVICH,Alexander,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUKVICH,Alexandr,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUKVICH,Alexsandr,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUKVICH,Alexsandr,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUKVICH,Olecsandr,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUKVICH,Olecsandr,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUKVICH,Olexandr,Viktorovych,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUKVICH,Olexandr,Wiktorowytsch,,,,,,,,10/07/1973,Yenakiyeve,Former USSR Currently Ukraine,Ukraine,,,,,Businessman,,,,,,,,Russia,"(UK Sanctions List Ref):RUS0229 (UK Statement of Reasons):Oleksandr Yanukovych’s business activity provides support to the policies and actions of the separatist groups in Donbas. Oleksandr Yanukovych is the beneficiary owner of companies which conduct business in the separatist regions of the Donbas. His property was protected by a sanctioned separatist entity in occupied Donetsk. He also met and negotiated business with a separatist group in the Donbas on at least one occasion. The business activity undertaken by Yanukovych destabilises Ukraine and undermines the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,06/03/2014,31/12/2020,16/09/2022,12896 +YANUSHKEVICH,Valery,Ivanovich,,,,Colonel,,,,,,,Belarus,,,,,Deputy Commander for Ideological Work of the North-Western Operational Command,,,,,,,,,"(UK Sanctions List Ref):RUS0746 (UK Statement of Reasons):Colonel Valery Ivanovich YANUSHKEVICH has been involved in engaging in and providing support for actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely, being involved in the command of Belarusian forces who were involved in a joint exercise with the Russian military ahead of Russia’s invasion of Ukraine which: (1) threatened Ukraine; and (2) provided cover for Russian military preparations to invade Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14697 +YAR MOHAMMAD AKHUND,Ubaidullah,Akhund,,,,(1) Mullah (2) Hadji (3) Maulavi,عبیدالله آخوند یار محمد آخوند,,,00/00/1968,"(1) Arghandab District, Kandahar Province. (2) Sangisar village, Panjwai District,Kandahar Province. (3) Zheray District, Kandahar Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Minister of Defence under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0022 (UN Ref):TAi.022 He was one of the deputies of Mullah Mohammed Omar (TAi.004) and a member of the Taliban's Supreme Council, in charge of military operations. Arrested in 2007 and was in custody in Pakistan. Confirmed deceased in March 2010 and buried in Karachi, Pakistan. Linked by marriage to Saleh Mohammad Kakar Akhtar Muhammad (TAi.149). Belonged to Alokozai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6956 +YAR MOHAMMAD AKHUND,Ubaidullah,Akhund,,,,(1) Mullah (2) Hadji (3) Maulavi,عبیدالله آخوند یار محمد آخوند,,,00/00/1969,"(1) Arghandab District, Kandahar Province. (2) Sangisar village, Panjwai District,Kandahar Province. (3) Zheray District, Kandahar Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan,Afghanistan,,,,,Minister of Defence under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0022 (UN Ref):TAi.022 He was one of the deputies of Mullah Mohammed Omar (TAi.004) and a member of the Taliban's Supreme Council, in charge of military operations. Arrested in 2007 and was in custody in Pakistan. Confirmed deceased in March 2010 and buried in Karachi, Pakistan. Linked by marriage to Saleh Mohammad Kakar Akhtar Muhammad (TAi.149). Belonged to Alokozai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6956 +YAR SANAT,,,,,,,,,,,,,,,,,,,"139, Hoveyzeh St.",,,,,Tehran,15337,Iran,(UK Sanctions List Ref):INU0129 (UK Statement of Reasons):Procurement company involved in purchasing equipment with an application in the Iranian nuclear programme. (Phone number):+98 21 885009358. +98 21 88500939. +98 21 8954876. +98 21 8956494. +98 21 8969211 (Email address):yarsanat@mail.dci.co.ir. yarsanat@yahoo.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12273 +YAR SANAT,,,,,,,,,,,,,,,,,,,Zardosht St,Opposite Mehr Hospital,Bldg No. 101,3rd Floor,,Tehran,14157,Iran,(UK Sanctions List Ref):INU0129 (UK Statement of Reasons):Procurement company involved in purchasing equipment with an application in the Iranian nuclear programme. (Phone number):+98 21 885009358. +98 21 88500939. +98 21 8954876. +98 21 8956494. +98 21 8969211 (Email address):yarsanat@mail.dci.co.ir. yarsanat@yahoo.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12273 +YAR SANAT,,,,,,,,,,,,,,,,,,,No.101,West Zartoshy St.,,,,Tehran,14157,Iran,(UK Sanctions List Ref):INU0129 (UK Statement of Reasons):Procurement company involved in purchasing equipment with an application in the Iranian nuclear programme. (Phone number):+98 21 885009358. +98 21 88500939. +98 21 8954876. +98 21 8956494. +98 21 8969211 (Email address):yarsanat@mail.dci.co.ir. yarsanat@yahoo.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12273 +YAR SANAT CO.,,,,,,,,,,,,,,,,,,,"139, Hoveyzeh St.",,,,,Tehran,15337,Iran,(UK Sanctions List Ref):INU0129 (UK Statement of Reasons):Procurement company involved in purchasing equipment with an application in the Iranian nuclear programme. (Phone number):+98 21 885009358. +98 21 88500939. +98 21 8954876. +98 21 8956494. +98 21 8969211 (Email address):yarsanat@mail.dci.co.ir. yarsanat@yahoo.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12273 +YAR SANAT CO.,,,,,,,,,,,,,,,,,,,Zardosht St,Opposite Mehr Hospital,Bldg No. 101,3rd Floor,,Tehran,14157,Iran,(UK Sanctions List Ref):INU0129 (UK Statement of Reasons):Procurement company involved in purchasing equipment with an application in the Iranian nuclear programme. (Phone number):+98 21 885009358. +98 21 88500939. +98 21 8954876. +98 21 8956494. +98 21 8969211 (Email address):yarsanat@mail.dci.co.ir. yarsanat@yahoo.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12273 +YAR SANAT CO.,,,,,,,,,,,,,,,,,,,No.101,West Zartoshy St.,,,,Tehran,14157,Iran,(UK Sanctions List Ref):INU0129 (UK Statement of Reasons):Procurement company involved in purchasing equipment with an application in the Iranian nuclear programme. (Phone number):+98 21 885009358. +98 21 88500939. +98 21 8954876. +98 21 8956494. +98 21 8969211 (Email address):yarsanat@mail.dci.co.ir. yarsanat@yahoo.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12273 +YARE,Bashir,,,,,,,,,00/00/1979,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +YARE,Bashir,,,,,,,,,00/00/1980,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +YARE,Bashir,,,,,,,,,00/00/1981,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +YARE,Bashir,,,,,,,,,00/00/1982,,,Somalia,,,,,,,,,,,Mogadishu,,Somalia,(UK Sanctions List Ref):SOM0007 (UN Ref):SOi.006,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11093 +YARESTAN VACUUMI,,,,,,,,,,,,,,,,,,,"139, Hoveyzeh St.",,,,,Tehran,15337,Iran,(UK Sanctions List Ref):INU0129 (UK Statement of Reasons):Procurement company involved in purchasing equipment with an application in the Iranian nuclear programme. (Phone number):+98 21 885009358. +98 21 88500939. +98 21 8954876. +98 21 8956494. +98 21 8969211 (Email address):yarsanat@mail.dci.co.ir. yarsanat@yahoo.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12273 +YARESTAN VACUUMI,,,,,,,,,,,,,,,,,,,Zardosht St,Opposite Mehr Hospital,Bldg No. 101,3rd Floor,,Tehran,14157,Iran,(UK Sanctions List Ref):INU0129 (UK Statement of Reasons):Procurement company involved in purchasing equipment with an application in the Iranian nuclear programme. (Phone number):+98 21 885009358. +98 21 88500939. +98 21 8954876. +98 21 8956494. +98 21 8969211 (Email address):yarsanat@mail.dci.co.ir. yarsanat@yahoo.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12273 +YARESTAN VACUUMI,,,,,,,,,,,,,,,,,,,No.101,West Zartoshy St.,,,,Tehran,14157,Iran,(UK Sanctions List Ref):INU0129 (UK Statement of Reasons):Procurement company involved in purchasing equipment with an application in the Iranian nuclear programme. (Phone number):+98 21 885009358. +98 21 88500939. +98 21 8954876. +98 21 8956494. +98 21 8969211 (Email address):yarsanat@mail.dci.co.ir. yarsanat@yahoo.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12273 +YARIN,Andrei,Veniaminovich,,,,,,,,13/02/1970,"Nizhny Tagil, Sverdlovsk Oblast",Russia,Russia,,,,,Chief of the Presidential Domestic Policy Directorate,,,,,,,,,"(UK Sanctions List Ref):CHW0011 (UK Statement of Reasons):Andrei Veniaminovich Yarin is the Chief of the Presidential Domestic Policy Directorate in the Presidential Executive Office. The Presidential Office is a state body providing support for the President’s work and monitoring the implementation of the President’s decisions and overall Governmental policies and most important action. Russian opposition leader Alexey Navalny was the victim of an attempted assassination during his August 2020 visit to Siberia, in which a chemical weapon—a toxic nerve agent of the Novichok group—was used. The activities and movements of Alexey Navalny during his journey to Siberia, from where he intended to return to Moscow on 20th August 2020, were closely monitored by the authorities of the Russian Federation, including the Federal Security Service (FSB). Russia had the technical capability to carry out the attack. The Russian State has previously produced Novichoks and would still be capable of doing so. Within the last decade, Russia has produced and stockpiled small quantities of Novichok. It is unlikely that Novichoks could be made and deployed by non-state actors (e.g. a criminal or terrorist group). Russia had the operational experience to carry out the attack. Russia has a proven record of state-sponsored assassination. It is highly likely that the Russian state was responsible for the attempted assassination of Sergei Skripal in Salisbury in 2018 using a similar type of nerve agent. During the 2000s, Russia commenced a programme to test means of delivering chemical warfare agents, including investigation of ways of delivering nerve agents. Russia had the motive and opportunity to carry out the attack. Navalny was a high profile Russian opposition politician who vocally criticised the Russian administration and establishment. He was on Russian territory under surveillance by the Federal Security Service of the Russian Federation at the time of the attack. Given the role of the state within the attack, and the scale of the operation against Navalny, it is reasonable to conclude that the poisoning of Alexey Navalny was only possible with the consent of the Presidential Executive Office. As Chief of the Presidential Domestic Policy Directorate in the Presidential Executive Office, Andrei Veniaminovich Yarin bears responsibility for the preparation, support for and use of chemical weapons in the attempted assassination of Alexey Navalny. (Gender):Male",Individual,Primary name,,Chemical Weapons,15/10/2020,01/01/2021,18/03/2022,13969 +YARIN,Andrei,,,,,,,,,13/02/1970,"Nizhny Tagil, Sverdlovsk",Russia,Russia,,,,,Head of the Office of the President of Russia for Domestic Policy,,,,,,,,,"(UK Sanctions List Ref):RUS1561 (UK Statement of Reasons):Andrey YARIN is an involved person within the meaning of the Russia (Sanctions) (EU Exit) Regulations 2019 because YARIN is a head or deputy-head of any public body, federal agency or service subordinate to the President of the Russian Federation, including the Administration of the President of the Russian Federation. Specifically, YARIN is Head of the Office of the President of Russia for Domestic Policy. Therefore, YARIN is a person involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,28/09/2022,15505 +YARIN,Andrey,Veniaminovich,,,,,Андре́й Вениами́нович Я́рин,,Russian,13/02/1970,"Nizhny Tagil, Sverdlovsk",Russia,Russia,,,,,Head of the Office of the President of Russia for Domestic Policy,,,,,,,,,"(UK Sanctions List Ref):RUS1561 (UK Statement of Reasons):Andrey YARIN is an involved person within the meaning of the Russia (Sanctions) (EU Exit) Regulations 2019 because YARIN is a head or deputy-head of any public body, federal agency or service subordinate to the President of the Russian Federation, including the Administration of the President of the Russian Federation. Specifically, YARIN is Head of the Office of the President of Russia for Domestic Policy. Therefore, YARIN is a person involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine.  (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,28/09/2022,15505 +YARMOSHINA,Lidia,Mikhailovna,,,,,,,,29/01/1953,Slutsk,Belarus,Belarus,,,,,Former Chair of the Central Electoral Commission (CEC),,,,,,,,,"(UK Sanctions List Ref):BEL0033 (UK Statement of Reasons):Lidzia Yarmoshina was the Chairperson of the Central Electoral Commission of the Belarusian Regime until December 2021. In her role as Chairperson, she was responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,21/04/2022,13962 +YARMOSHINA,Lidija,Mikhailovna,,,,,,,,29/01/1953,Slutsk,Belarus,Belarus,,,,,Former Chair of the Central Electoral Commission (CEC),,,,,,,,,"(UK Sanctions List Ref):BEL0033 (UK Statement of Reasons):Lidzia Yarmoshina was the Chairperson of the Central Electoral Commission of the Belarusian Regime until December 2021. In her role as Chairperson, she was responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,21/04/2022,13962 +YARMOSHINA,Lidzia,Mihailauna,,,,,Лідзія Міхайлаўна Ярмошына,,,29/01/1953,Slutsk,Belarus,Belarus,,,,,Former Chair of the Central Electoral Commission (CEC),,,,,,,,,"(UK Sanctions List Ref):BEL0033 (UK Statement of Reasons):Lidzia Yarmoshina was the Chairperson of the Central Electoral Commission of the Belarusian Regime until December 2021. In her role as Chairperson, she was responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Female",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,21/04/2022,13962 +YARMOSHINA,Lidzia,Mihailauna,,,,,Лидия Михайловна ЕРМОШИНА,,,29/01/1953,Slutsk,Belarus,Belarus,,,,,Former Chair of the Central Electoral Commission (CEC),,,,,,,,,"(UK Sanctions List Ref):BEL0033 (UK Statement of Reasons):Lidzia Yarmoshina was the Chairperson of the Central Electoral Commission of the Belarusian Regime until December 2021. In her role as Chairperson, she was responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,21/04/2022,13962 +YAROSH,Petr,Grigorievich,,,,,,,,30/01/1971,,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0108 (UK Statement of Reasons):Former head of the Federal Migration Service office for Crimea. Responsible for the systematic and expedited issuance of Russian passports for the residents of Crimea,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12968 +YAROSH,Petro,Hryyhorovych,,,,,,,,30/01/1971,,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0108 (UK Statement of Reasons):Former head of the Federal Migration Service office for Crimea. Responsible for the systematic and expedited issuance of Russian passports for the residents of Crimea,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12968 +YAROSH,Petr,Hryyhorovych,,,,,,,,30/01/1971,,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0108 (UK Statement of Reasons):Former head of the Federal Migration Service office for Crimea. Responsible for the systematic and expedited issuance of Russian passports for the residents of Crimea,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12968 +YAROSH,Petro,Grigorievich,,,,,,,,30/01/1971,,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0108 (UK Statement of Reasons):Former head of the Federal Migration Service office for Crimea. Responsible for the systematic and expedited issuance of Russian passports for the residents of Crimea,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12968 +YAROSH,Petro,Grigorovich,,,,,Петро Григорович ЯРОШ,,Ukrainian,30/01/1971,,,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0108 (UK Statement of Reasons):Former head of the Federal Migration Service office for Crimea. Responsible for the systematic and expedited issuance of Russian passports for the residents of Crimea,Individual,Primary name variation,,Russia,12/05/2014,31/12/2020,16/09/2022,12968 +YAROSHUK,Alexander,Georgievich,,,,,Александр Георгиевич ЯРОШУК,,,15/11/1965,Kaliningrad,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0971 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14922 +YAROVAYA,Irina,Anatolyevna,,,,,Яровая Ирина Анатольевна,,,17/10/1966,Makiivak,Ukraine,Russia,8358309,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0588 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14533 +YARSANAT,,,,,,,,,,,,,,,,,,,"139, Hoveyzeh St.",,,,,Tehran,15337,Iran,(UK Sanctions List Ref):INU0129 (UK Statement of Reasons):Procurement company involved in purchasing equipment with an application in the Iranian nuclear programme. (Phone number):+98 21 885009358. +98 21 88500939. +98 21 8954876. +98 21 8956494. +98 21 8969211 (Email address):yarsanat@mail.dci.co.ir. yarsanat@yahoo.com,Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12273 +YARSANAT,,,,,,,,,,,,,,,,,,,Zardosht St,Opposite Mehr Hospital,Bldg No. 101,3rd Floor,,Tehran,14157,Iran,(UK Sanctions List Ref):INU0129 (UK Statement of Reasons):Procurement company involved in purchasing equipment with an application in the Iranian nuclear programme. (Phone number):+98 21 885009358. +98 21 88500939. +98 21 8954876. +98 21 8956494. +98 21 8969211 (Email address):yarsanat@mail.dci.co.ir. yarsanat@yahoo.com,Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12273 +YARSANAT,,,,,,,,,,,,,,,,,,,No.101,West Zartoshy St.,,,,Tehran,14157,Iran,(UK Sanctions List Ref):INU0129 (UK Statement of Reasons):Procurement company involved in purchasing equipment with an application in the Iranian nuclear programme. (Phone number):+98 21 885009358. +98 21 88500939. +98 21 8954876. +98 21 8956494. +98 21 8969211 (Email address):yarsanat@mail.dci.co.ir. yarsanat@yahoo.com,Entity,Primary name,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12273 +YARSANAT CO.,,,,,,,,,,,,,,,,,,,"139, Hoveyzeh St.",,,,,Tehran,15337,Iran,(UK Sanctions List Ref):INU0129 (UK Statement of Reasons):Procurement company involved in purchasing equipment with an application in the Iranian nuclear programme. (Phone number):+98 21 885009358. +98 21 88500939. +98 21 8954876. +98 21 8956494. +98 21 8969211 (Email address):yarsanat@mail.dci.co.ir. yarsanat@yahoo.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12273 +YARSANAT CO.,,,,,,,,,,,,,,,,,,,Zardosht St,Opposite Mehr Hospital,Bldg No. 101,3rd Floor,,Tehran,14157,Iran,(UK Sanctions List Ref):INU0129 (UK Statement of Reasons):Procurement company involved in purchasing equipment with an application in the Iranian nuclear programme. (Phone number):+98 21 885009358. +98 21 88500939. +98 21 8954876. +98 21 8956494. +98 21 8969211 (Email address):yarsanat@mail.dci.co.ir. yarsanat@yahoo.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12273 +YARSANAT CO.,,,,,,,,,,,,,,,,,,,No.101,West Zartoshy St.,,,,Tehran,14157,Iran,(UK Sanctions List Ref):INU0129 (UK Statement of Reasons):Procurement company involved in purchasing equipment with an application in the Iranian nuclear programme. (Phone number):+98 21 885009358. +98 21 88500939. +98 21 8954876. +98 21 8956494. +98 21 8969211 (Email address):yarsanat@mail.dci.co.ir. yarsanat@yahoo.com,Entity,AKA,,Iran (Nuclear),02/12/2011,31/12/2020,04/03/2022,12273 +YAS AIR,,,,,,,,,,,,,,,,,,,Mehrabad International Airport,Next to Terminal No. 6,,,,Tehran,,Iran,"(UK Sanctions List Ref):INU0190 (UN Ref):IRe.077 Yas Air is the new name for Pars Air, a company that was owned by Pars Aviation Services Company, which in turn was designated by the United Nations Security Council in resolution 1747 (2007). Yas Air has assisted Pars Aviation Services Company, a United Nations-designated entity, in violating paragraph 5 of resolution 1747 (2007). [Old Reference # I.AC.50.20.12.12.(1)]",Entity,Primary name,,Iran (Nuclear),02/12/2011,20/12/2012,31/12/2020,12277 +YASA PART,,,,,,,,,,,,,,,,,,,,,,,West Lavasani,Tehran,9821,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +YASA PART,,,,,,,,,,,,,,,,,,,Sa'adat Abaad,Shahrdari Sq. Sarv Building,9th Floor,Unit 5,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +YASA PART,,,,,,,,,,,,,,,,,,,No.17,Balooch Alley,Vaezi St,Shariati Ave.,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,Primary name,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +YASA PART CO.,,,,,,,,,,,,,,,,,,,,,,,West Lavasani,Tehran,9821,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +YASA PART CO.,,,,,,,,,,,,,,,,,,,Sa'adat Abaad,Shahrdari Sq. Sarv Building,9th Floor,Unit 5,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +YASA PART CO.,,,,,,,,,,,,,,,,,,,No.17,Balooch Alley,Vaezi St,Shariati Ave.,,Tehran,,Iran,(UK Sanctions List Ref):INU0130 (UK Statement of Reasons):A company that has procured materials for Iran's nuclear programme. (Phone number):(1) +98 21 2219141 (2) +98 21 22242625 (Email address):H8032298@aul.ac.ir,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11222 +YASAGHI,Ali-Akbar,,,,,,,,,,,,,,,,,"(1) Judge of the Supreme Court, head of the 44th section. (2) Deputy Chief Executive Officer of Setad-e Dieh Foundation",,,,,,,,,"(UK Sanctions List Ref):IHR0017 (UK Statement of Reasons):Judge of the Supreme Court, head of the 44th section. Deputy Chief Executive Officer of Setad-e Dieh Foundation. Chief Judge, Mashhad Revolutionary Court (2001-2011). Trials under his jurisdiction have been conducted summarily and inside closed session, without adherence to basic rights of the accused. As execution rulings were issued en masse (up to 550 between summer 2009 and summer 2011), death sentences were issued without proper observance of fair hearing procedures. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,16/06/2022,11789 +YASIN,Abdul,Hadi,,,,,,,,03/09/1962,Makassar,Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0335 (UN Ref):QDi.123 At large as at Dec. 2003. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424789,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7834 +YASIN,Abdul Rahman,Said,,,,,,,,10/04/1960,"Bloomington, Indiana",United States,United States,(1) 27082171 (2) MO887925,"(1) United States of America. Issued 21 June 1992 in Amman, Jordan (2) Iraq",156-92-9858,United States Social Security Number,,,,,,,,,,(UK Sanctions List Ref):AQD0107 (UN Ref):QDi.037 Abdul Rahman Yasin is in Iraq. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,7478 +YASIN,Aboud,,,,,,,,,10/04/1960,"Bloomington, Indiana",United States,United States,(1) 27082171 (2) MO887925,"(1) United States of America. Issued 21 June 1992 in Amman, Jordan (2) Iraq",156-92-9858,United States Social Security Number,,,,,,,,,,(UK Sanctions List Ref):AQD0107 (UN Ref):QDi.037 Abdul Rahman Yasin is in Iraq. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,7478 +YASIN,Salim,,,,,,,,,03/09/1962,Makassar,Indonesia,Indonesia,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0335 (UN Ref):QDi.123 At large as at Dec. 2003. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424789,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7834 +YASIN,ABDUL RAHMAN,,,,,,عبد الرحمن ياسين,,,10/04/1960,"Bloomington, Indiana",United States,United States,(1) 27082171 (2) MO887925,"(1) United States of America. Issued 21 June 1992 in Amman, Jordan (2) Iraq",156-92-9858,United States Social Security Number,,,,,,,,,,(UK Sanctions List Ref):AQD0107 (UN Ref):QDi.037 Abdul Rahman Yasin is in Iraq. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,12/10/2001,17/10/2001,31/12/2020,7478 +YASIR,Abu,,,,,,Абу Ясир,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +YASIR,Abu,,,,,,Абу Ясир,,,11/11/1965,"Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya",Russia,Russia,,,,,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0323 (UN Ref):QDi.366 As at Aug. 2015, leads Jamaat Tarkhan, a terrorist group that forms part of the Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Wanted by the authorities of the Russian Federation for terrorist crimes committed in its territory, including through an international arrest warrant. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2015,02/10/2015,12/01/2022,13301 +YASIR,Hajji,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,,Kermanshah,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +YASIR,Hajji,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,Military Base,Ilam Province,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +YASMINA,Tareq,,,,,,,,,,,,Syria,,,,,Liaison officer between the SSRC and the Presidential Palace,,,,,,,,,"(UK Sanctions List Ref):CHW0003 Employee Works at Scientific Studies and Research Centre (listed under both the Syria and Chemical Weapons sanctions regimes) (UK Statement of Reasons):Brigadier General (previously Colonel) Tariq Yasmina acts as the liaison officer between the Scientific Studies and Research Centre (SSRC) and the Presidential Palace, and, as such, is involved in the use and preparations for the use of chemical weapons by the Syrian regime. As a result of his senior role at SSRC, he is associated with the SSRC. (Gender):Male",Individual,Primary name variation,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,13743 +YASMINA,Tariq,,,,,Brigadier General,طارق ياسمينة,,,,,,Syria,,,,,Liaison officer between the SSRC and the Presidential Palace,,,,,,,,,"(UK Sanctions List Ref):CHW0003 Employee Works at Scientific Studies and Research Centre (listed under both the Syria and Chemical Weapons sanctions regimes) (UK Statement of Reasons):Brigadier General (previously Colonel) Tariq Yasmina acts as the liaison officer between the Scientific Studies and Research Centre (SSRC) and the Presidential Palace, and, as such, is involved in the use and preparations for the use of chemical weapons by the Syrian regime. As a result of his senior role at SSRC, he is associated with the SSRC. (Gender):Male",Individual,Primary name,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,13743 +YASMINA,Tarq,,,,,,,,,,,,Syria,,,,,Liaison officer between the SSRC and the Presidential Palace,,,,,,,,,"(UK Sanctions List Ref):CHW0003 Employee Works at Scientific Studies and Research Centre (listed under both the Syria and Chemical Weapons sanctions regimes) (UK Statement of Reasons):Brigadier General (previously Colonel) Tariq Yasmina acts as the liaison officer between the Scientific Studies and Research Centre (SSRC) and the Presidential Palace, and, as such, is involved in the use and preparations for the use of chemical weapons by the Syrian regime. As a result of his senior role at SSRC, he is associated with the SSRC. (Gender):Male",Individual,Primary name variation,,Chemical Weapons,21/01/2019,31/12/2020,18/03/2022,13743 +YASSER,Abu,,,,,,,,,,"Al Safrah, Sa’dah Governorate",Yemen,Yemen,(1) 05274639 (2) 00481779,"(1) Yemen, issued on 7 Oct. 2013. Expiration date: 7 Oct 2019 (2) Yemen, issued on 9 Dec. 2000. Expiration date: 9 Dec 2006.",(1) 1388114 (2) 10010057512,(1) Yemen (2) Yemen,(1) Major General (2) ‘Judicial Custodian’ of properties and funds owned by Houthis’ opponents,,,,,,,,Yemen,"(UK Sanctions List Ref):YEM0009 (UN Ref):YEi.007 With reference to the UN Panel of Experts’ Statement of Case of 28 August 2019, Saleh Mesfer Saleh Al Shaer has engaged in acts that threaten the peace, security, and stability of Yemen thereby meeting the criteria for designation as laid out in Paragraph 17 of Resolution 2140 (2014). Serving as the Houthis’ Assistant Minister of Defence for Logistics, Saleh Mesfer Saleh Al Shaer assisted the Houthis in acquiring smuggled arms and weapons. He is also listed in connection with his direct involvement since early 2018 in the widespread and unlawful appropriation of assets and entities owned by private individuals under arrest by the Houthis or forced to take refuge outside of Yemen, in his capacity as ‘Judicial Custodian’ and in violation of international humanitarian law. Al Shaer has used his authority and a Sana'a based network comprising members of his family, a special criminal court, the national security bureau, the central bank, the registrar services of the Yemeni Ministry of Trade and Industry, and some private banks in order to arbitrarily dispossess selected private individuals and entities of their wealth without any due judicial process or a possibility of redress. (Gender):Male",Individual,AKA,Low quality,Yemen,10/11/2021,09/11/2021,09/12/2021,14141 +YATSENKO,Viktor,Viacheslavovych,,,,,,,,22/04/1985,Kherson,Ukraine,Ukraine,,,,,Member of the Central Council of A JUST RUSSIA-FOR TRUTH party,,,,,,,,,"(UK Sanctions List Ref):RUS0157 (UK Statement of Reasons):Former so-called “Minister of Communications” of the so-called “Donetsk People’s Republic”. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Member of the Central Council of A JUST RUSSIA - FOR TRUTH political party. (Gender):Male",Individual,Primary name variation,,Russia,16/02/2015,31/12/2020,16/09/2022,13210 +YATSENKO,Viktor,Vyacheslavovich,,,,,Виктор Вячеславович ЯЦЕНКО,,,22/04/1985,Kherson,Ukraine,Ukraine,,,,,Member of the Central Council of A JUST RUSSIA-FOR TRUTH party,,,,,,,,,"(UK Sanctions List Ref):RUS0157 (UK Statement of Reasons):Former so-called “Minister of Communications” of the so-called “Donetsk People’s Republic”. In taking on and acting in this capacity, he has therefore actively supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine, and further destabilised Ukraine. Member of the Central Council of A JUST RUSSIA - FOR TRUTH political party. (Gender):Male",Individual,Primary name,,Russia,16/02/2015,31/12/2020,16/09/2022,13210 +YATSKIN,Andrey,Vladimirovich,,,,,Андрей Владимирович ЯЦКИН,,,25/04/1969,Krasnoyarsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0917 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14868 +YAYA,,,,,,,,,,00/00/1982,,,Afghanistan,,,,,,A Haqqani Madrassa in the Afghanistan/Pakistan border area.,,,,,,,,"(UK Sanctions List Ref):AFG0135 (UN Ref):TAi.169 Senior Haqqani Network (HQN) (TAe.012) member. Closely involved in the group’s military, financial, and propaganda activities. Injured leg. Father’s name is Hajji Meyawar Khan (deceased). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,31/07/2014,31/07/2014,01/02/2021,13144 +YAYA,,,,,,,,,,00/00/1978,,,Afghanistan,,,,,,A Haqqani Madrassa in the Afghanistan/Pakistan border area.,,,,,,,,"(UK Sanctions List Ref):AFG0135 (UN Ref):TAi.169 Senior Haqqani Network (HQN) (TAe.012) member. Closely involved in the group’s military, financial, and propaganda activities. Injured leg. Father’s name is Hajji Meyawar Khan (deceased). INTERPOL-UN Security Council Special Notice web link: https:// www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,31/07/2014,31/07/2014,01/02/2021,13144 +YAYASAN HILAL AHMAR,,,,,,,,,,,,,,,,,,,,,,,,,,Indonesia,"(UK Sanctions List Ref):AQD0048 (UN Ref):QDe.147 Ostensibly humanitarian wing of Jemaah Islamiyah (QDe.092). Operates in Lampung, Jakarta, Semarang, Yogyakarta, Solo, Surabaya and Makassar, Indonesia. Has been recruiting, funding and facilitating travel of foreign terrorist fighters to Syria. Not affiliated with the humanitarian group International Federation of the Red Cross and Red Crescent Societies (IFRC). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5854978",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,21/03/2015,13/03/2015,31/12/2020,13241 +YAZAJI,Nizar,Wahbeh,,,,,,,,00/00/1961,,,,,,,,Former Minister of Health,,,,,,,,,"(UK Sanctions List Ref):SYR0194 (UK Statement of Reasons):Former Minister of Health. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,22/10/2014,31/12/2020,31/12/2020,13156 +YAZAJI,Nizar,Wehbe,,,,,,,,00/00/1961,,,,,,,,Former Minister of Health,,,,,,,,,"(UK Sanctions List Ref):SYR0194 (UK Statement of Reasons):Former Minister of Health. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,Primary name variation,,Syria,22/10/2014,31/12/2020,31/12/2020,13156 +YAZD AMMUNITION MANUFACTURING AND METALLURGY INDUSTRIES,,,,,,,,,,,,,,,,,,,Km 5 of Taft Road,,,,,Yazd,,Iran,(UK Sanctions List Ref):INU0191 (UN Ref):IRe.078 YMI is a subordinate of DIO. [Old Reference #E.29.I.22]. (Parent company):Defence Industries Organisation (DIO),Entity,AKA,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11129 +YAZD AMMUNITION MANUFACTURING AND METALLURGY INDUSTRIES,,,,,,,,,,,,,,,,,,,P.O.Box 89195-678,,,,,Yazd,,Iran,(UK Sanctions List Ref):INU0191 (UN Ref):IRe.078 YMI is a subordinate of DIO. [Old Reference #E.29.I.22]. (Parent company):Defence Industries Organisation (DIO),Entity,AKA,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11129 +YAZD AMMUNITION MANUFACTURING AND METALLURGY INDUSTRIES,,,,,,,,,,,,,,,,,,,Pasdaran Avenue,next to Telecommunication Industry,,,,Tehran,16588,Iran,(UK Sanctions List Ref):INU0191 (UN Ref):IRe.078 YMI is a subordinate of DIO. [Old Reference #E.29.I.22]. (Parent company):Defence Industries Organisation (DIO),Entity,AKA,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11129 +YAZD AMMUNITION MANUFACTURING AND METALLURGY INDUSTRIES,,,,,,,,,,,,,,,,,,,Postal Box 89195/878,,,,,Yazd,,Iran,(UK Sanctions List Ref):INU0191 (UN Ref):IRe.078 YMI is a subordinate of DIO. [Old Reference #E.29.I.22]. (Parent company):Defence Industries Organisation (DIO),Entity,AKA,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11129 +YAZD METALLURGY INDUSTRIES (YMI),,,,,,,,,,,,,,,,,,,Km 5 of Taft Road,,,,,Yazd,,Iran,(UK Sanctions List Ref):INU0191 (UN Ref):IRe.078 YMI is a subordinate of DIO. [Old Reference #E.29.I.22]. (Parent company):Defence Industries Organisation (DIO),Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11129 +YAZD METALLURGY INDUSTRIES (YMI),,,,,,,,,,,,,,,,,,,P.O.Box 89195-678,,,,,Yazd,,Iran,(UK Sanctions List Ref):INU0191 (UN Ref):IRe.078 YMI is a subordinate of DIO. [Old Reference #E.29.I.22]. (Parent company):Defence Industries Organisation (DIO),Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11129 +YAZD METALLURGY INDUSTRIES (YMI),,,,,,,,,,,,,,,,,,,Pasdaran Avenue,next to Telecommunication Industry,,,,Tehran,16588,Iran,(UK Sanctions List Ref):INU0191 (UN Ref):IRe.078 YMI is a subordinate of DIO. [Old Reference #E.29.I.22]. (Parent company):Defence Industries Organisation (DIO),Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11129 +YAZD METALLURGY INDUSTRIES (YMI),,,,,,,,,,,,,,,,,,,Postal Box 89195/878,,,,,Yazd,,Iran,(UK Sanctions List Ref):INU0191 (UN Ref):IRe.078 YMI is a subordinate of DIO. [Old Reference #E.29.I.22]. (Parent company):Defence Industries Organisation (DIO),Entity,Primary name,,Iran (Nuclear),10/06/2010,09/06/2010,31/12/2020,11129 +YAZID,Mebrak,,,,,,,,,07/02/1969,Annaba,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0117 (UN Ref):QDi.389 A leader of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930738,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13322 +YAZID,Mibrak,,,,,,,,,07/02/1969,Annaba,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0117 (UN Ref):QDi.389 A leader of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930738,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13322 +YAZID,Yousif,Abu,Obayda,,,,,,,07/02/1969,Annaba,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0117 (UN Ref):QDi.389 A leader of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930738,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13322 +YAZIGI,,,,,,,,,,00/00/1961,,,,,,,,Former Minister of Health,,,,,,,,,"(UK Sanctions List Ref):SYR0194 (UK Statement of Reasons):Former Minister of Health. As a former Government Minister, shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male",Individual,AKA,,Syria,22/10/2014,31/12/2020,31/12/2020,13156 +YAZIGI,Bishr,Riyad,,,,,,,,00/00/1972,,,Syria,,,,,Adviser to President Bashar al Assad,,,,,,,,,"(UK Sanctions List Ref):SYR0032 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Tourism. As a Former Government Minister, shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male",Individual,Primary name,,Syria,24/06/2014,31/12/2020,13/05/2022,12994 +YEDAR,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0109 Pursuant to paragraphs 8(d) of Security Council resolution 1718 (2006) and 12 of Security Council resolution 2270 (2016) as economic resources of designated entities. DPRK cargo vessel M/V JI SONG 8 is owned by Phyongchon Shipping & Marine and is believed to have been involved in illicit transfers of prohibited DPRK goods. Listed as asset of Phyongchon Shipping & Marine, (OFSI ID: 13641, UN Reference Number: UN Ref KPe.070) (IMO number):8503228 (Current owners):Phyongchon Shipping & Marine (Flag of ship):North Korea (Previous flags):Hong Kong (Type of ship):General Cargo / Multi Purpose (Tonnage of ship):3953 (Length of ship):105 (Year built):1985",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13660 +YEKAN PARTO,,,,,,,,,,,,,,,,,,,"2417, Valiasr Ave.",Next to 14th St.,,,,Tehran,15178,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +YEKAN PARTO,,,,,,,,,,,,,,,,,,,No. 1281 Valiasr Ave.,Next to 14th St.,,,,Tehran,,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +YEKAN PARTO,,,,,,,,,,,,,,,,,,,No. 5,Sharabiani Cross Rd.,Asia Blvd.,Sadeghieh Sq.,,Tehran,14877,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +YEKAN PARTO,,,,,,,,,,,,,,,,,,,2nd & 3rd Fl.,No.1281,Corner of 14th Alley,Before Vanak Sq.,Vali-e-Asr St.,Tehran,15178,Iran,(UK Sanctions List Ref):INU0100 (UK Statement of Reasons):Involved in the procurement of frequency inverters with an application in the enrichment of uranium. (Phone number):(1) +98 (0) 21 866 48 56 (2) +98 (0)912 358 9744 (3) +98 21 4114246 (4) +98 21 4114465 (5) +98 229 4336235 (6) 0098 4100415 (7) 2294312939 (8) 2294320697 (9) 982188662288 (Website):www.partosanat.com (Email address):(1) dashtabadi@partosanat.com (2) Info@partosanat.com,Entity,AKA,,Iran (Nuclear),27/07/2010,31/12/2020,04/03/2022,11213 +YEKATOM,Alfred,,,,,,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,,The Hague,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,Primary name,,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +YEKATOM,Alfred,,,,,,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Bimbo,Ombella-Mpoko province,,Central African Republic,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,Primary name,,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +YEKATOM,Alfred,,,,,,,,,23/06/1976,,Central African Republic,Central African Republic,,,,,Chief Corporal of the Forces Armées Centrafricaines (FACA),,,,,Mbaiki,Lobaye Province,,,"(UK Sanctions List Ref):CAF0005 (UN Ref):CFi.004 Has controlled and commanded a large group of armed militia men. Father’s name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight: 100kg. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOLUN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-NoticesIndividuals click here. The Hague (since his transfer to the International Criminal Court on 17 November 2018) (Phone number):+236 72 15 47 07. +236 75 09 43 41",Individual,Primary name,,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13271 +YELISEYEV,Iliya,Vladimirovich,,,,,,,,19/12/1965,,,,,,,,Member of the Board of Directors of Gazprombank JSC,,,,,,Moscow,,Russia,"(UK Sanctions List Ref):RUS1630 (UK Statement of Reasons):Ilya Vladimirovich Eilseev is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by:(1) working as a director of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a director of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15574 +YELISEYEV,Sergei,Vladimirovich,,,,,Сергей Владимирович Елисеев,Cyrillic,Russian,05/05/1971,Stavropol,Russia,Russia,,,,,Head of Government of the Russian-occupied Kherson region,,,,,,,,,"(UK Sanctions List Ref):RUS1650 (UK Statement of Reasons):Sergei Vladimirovich YELISEYEV is an involved person within the meaning of the Russia (Sanctions) (EU Exit) Regulations 2019 because 1) he is Deputy Prime Minister of Kaliningrad and therefore a head or deputy head of a public body or agency of the Government of the Russian Federation and 2) he is also serving as head of the Russia-backed government in the temporarily controlled territory of Kherson, and is therefore responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. Through these roles, YELISEYEV is involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,04/10/2022,04/10/2022,04/10/2022,15594 +YEMELYANOV,Gennady,Egorovich,,,,,Геннадий Егорович Емельянов,,,01/01/1957,Karamalinka,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0952 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14903 +YEMELYANOVA,Svetlana,Petrovna,,,,,Светлана Петровна ЕМЕЛЬЯНОВА,Cyrillic,Russian,07/10/1971,Novorossiysk,Russia,Russia,,,,,Member of OTKRITIE Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1639 (UK Statement of Reasons):Svetlana Petrovna Yemelyanova is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by (1) working as a director, manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Bank Otkritie Financial Corporation PJSC which carries on business in the Russian financial services sector; (2) working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely Bank Otkritie Financial Corporation PJSC. (Gender):Female",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15583 +YEPISHIN,Andrey,Nikolayevich,,,,,Андрей Николаевич ЕПИШИН,,,29/10/1967,Moscow,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0996 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14947 +YERMAKOVA,Elena,Petrovna,,,,,,,,21/12/1955,,,(1) Finland (2) Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1312 (UK Statement of Reasons):Elena Petrovna TIMCHENKO is closely associated with Gennadiy Nikolayevich TIMCHENKO, a Russian billionaire. Gennadiy Nikolayevich TIMCHENKO is an involved person under the Russia (Sanctions) (EU Exit) Regulations 2019. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,14/06/2022,15265 +YERMOLENKO,Aleksandr,Viktorovich,,,,,ЕРМОЛЕНКО Александр Викторович,Cyrillic,Russian,20/12/1985,Snezhnoe,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1303 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15255 +YERMOSHINA,Lidia,Mikhailovna,,,,,,,,29/01/1953,Slutsk,Belarus,Belarus,,,,,Former Chair of the Central Electoral Commission (CEC),,,,,,,,,"(UK Sanctions List Ref):BEL0033 (UK Statement of Reasons):Lidzia Yarmoshina was the Chairperson of the Central Electoral Commission of the Belarusian Regime until December 2021. In her role as Chairperson, she was responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,21/04/2022,13962 +YERMOSHINA,Lidija,Mikhailovna,,,,,,,,29/01/1953,Slutsk,Belarus,Belarus,,,,,Former Chair of the Central Electoral Commission (CEC),,,,,,,,,"(UK Sanctions List Ref):BEL0033 (UK Statement of Reasons):Lidzia Yarmoshina was the Chairperson of the Central Electoral Commission of the Belarusian Regime until December 2021. In her role as Chairperson, she was responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,21/04/2022,13962 +YERMOSHINA,Lidzia,Mihailauna,,,,,,,,29/01/1953,Slutsk,Belarus,Belarus,,,,,Former Chair of the Central Electoral Commission (CEC),,,,,,,,,"(UK Sanctions List Ref):BEL0033 (UK Statement of Reasons):Lidzia Yarmoshina was the Chairperson of the Central Electoral Commission of the Belarusian Regime until December 2021. In her role as Chairperson, she was responsible for the actions of the CEC, including upholding a fraudulent election result and blocking the participation of rival candidates in the election. (Gender):Female",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,21/04/2022,13962 +YEVGENEVICH,Sergei,,,,,,,,,21/08/1975,,,Belarus,,,,,Commander of KGB ‘Alfa’ special forces unit,,,,,,,,,"(UK Sanctions List Ref):BEL0058 (UK Statement of Reasons):Siarhei Zubkou is the Commander of the ‘Alfa’ special forces/anti-terrorism unit of the State Security Committee (KGB) of Belarus. As Commander, he is in authority over the Alfa unit and therefore responsible for the serious human rights violations and abuses against protestors and journalists, and the repression of civil society or democratic opposition, which they carried out following the election of 9 August (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,18/03/2022,13994 +YEVMENOV,Nikolay,Anatolyevich,,,,Admiral,ЕВМЕНОВ Николай Анатольевич,,,02/04/1962,Moscow,Russia,Russia,,,,,Commander-in-Chief Navy of the Russian Federation,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0694 (UK Statement of Reasons):Admiral Nikolay YEVMENOV is the Commander-in-Chief of the Navy of the Russian Federation. A career soldier he has held many high-level commands in his rise to the top of the Navy. It is known that elements of the Russian Navy have been heavily involved in the ongoing invasion of Ukraine by Russia, including conducting missile strikes on cities and launching amphibious assaults. As the Naval Supreme Commander, Admiral YEVMENOV should have complete situational awareness and control over what his Navy does. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14645 +YEVTSHENKOV,Vladimir,Petrovich,,,,,,,,25/09/1948,"Kamenshchina, Smolensk Oblast",Russia,Russia,,,,,Majority shareholder and Chairman of the Board of Directors of Sistema JSFC,,,,,,,,,"(UK Sanctions List Ref):RUS1332 (UK Statement of Reasons):Vladimir EVTUSHENKOV is a prominent Russian businessman and oligarch. EVTUSHENKOV is or has been involved in obtaining a benefit from or supporting the Government of Russia by virtue of his ownership of a Sistema JSFC, a conglomerate which has business interests in the Russian energy and information, communications and digital technologies sectors, which are sectors of strategic significance to the Government of Russia. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,13/04/2022,15264 +YILMAZ,ADEM,,,,,,,,,04/11/1978,Bayburt,Turkey,Turkey,TR-P 614 166,Turkish). Issued by the turkish Consulate General in Frankfurt/M on 22 March 2006. Expired on 15 September 2009.,,,,,,,,,,,Germany,"(UK Sanctions List Ref):AQD0120 (UN Ref):QDi.261 Associated with the Islamic Jihad Union (IJU), also known as the Islamic Jihad Group (QDe.119). Associated with Fritz Martin Gelowicz (QDi.259). In detention in Germany as of Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. In prison since Sep. 2007.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/10/2008,27/10/2008,31/12/2020,10752 +YILMAZ,ADEM,,,,,,,,,04/11/1978,Bayburt,Turkey,Turkey,TR-P 614 166,Turkish). Issued by the turkish Consulate General in Frankfurt/M on 22 March 2006. Expired on 15 September 2009.,,,,Südliche Ringstrasse 133,,,,,Langen,63225,Germany,"(UK Sanctions List Ref):AQD0120 (UN Ref):QDi.261 Associated with the Islamic Jihad Union (IJU), also known as the Islamic Jihad Group (QDe.119). Associated with Fritz Martin Gelowicz (QDi.259). In detention in Germany as of Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. In prison since Sep. 2007.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,29/10/2008,27/10/2008,31/12/2020,10752 +YO’NG-SIK,Pak,,,,,,,,,00/00/1950,,,,,,,,Member of the Workers’ Party of Korea Central Military Commission,,,,,,,,Democratic People's Republic of Korea,"(UK Sanctions List Ref):DPR0258 (UN Ref):KPi.063 Pak Yong Sik is a member of the Workers’ Party of Korea Central Military Commission, which is responsible for the development and implementation of the Workers’ Party of Korea military policies, commands and controls the DPRK’s military, and helps direct the country’s military defense industries.",Individual,Primary name variation,,Democratic People's Republic of Korea,12/09/2017,11/09/2017,02/08/2022,13540 +YOL,Marial,Chanoung,,,,,,,,01/01/1960,"Yirol, Lakes State",South Sudan,South Sudan,R00005943,South Sudan,,,"(1) Major General in the Sudan People's Liberation Army (2) Commander, of the South Sudanese Presidential Guard Unit",,,,,,,,,"(UK Sanctions List Ref):SSU0005 (UN Ref):SSi.005 His Presidential Guard led the slaughter of Nuer civilians in and around Juba, many who were buried in mass graves. One such grave was purported to contain 200-300 civilians. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/72684667",Individual,AKA,Good quality,South Sudan,10/07/2015,01/07/2015,31/12/2020,13266 +YON CHUN,CHO,,,,,,,,,28/09/1937,,,,,,,,"Vice Director of the Organization and Guidance Department, which directs key personnel appointments for the Workers’ Party of Korea and the DPRK’s military",,,,,,,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0203 (UN Ref):KPi.041,Individual,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13472 +YON JUN,Jo,,,,,,,,,28/09/1937,,,,,,,,"Vice Director of the Organization and Guidance Department, which directs key personnel appointments for the Workers’ Party of Korea and the DPRK’s military",,,,,,,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0203 (UN Ref):KPi.041,Individual,AKA,Good quality,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13472 +YONG,Ryom,,,,,,,,,,,,North Korea,,,,,Director of the General Bureau of Atomic Energy,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0033 (UK Statement of Reasons):Director of the General Bureau of Atomic Energy (entity designated by the United Nations), in charge of international relations. (Gender):Male",Individual,AKA,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11038 +YONG CHOL,Cho,,,,,,,,,30/09/1973,,,,,,,,DPRK Ministry of State Security Official,,,,,,,,,(UK Sanctions List Ref):DPR0219 (UN Ref):KPi.034 Jo Yong Chol is a DPRK Ministry of State Security Official stationed in Syria supporting KOMID.,Individual,AKA,Good quality,Democratic People's Republic of Korea,09/12/2016,30/11/2016,31/12/2020,13419 +YONG CHOL,JO,,,,,,,,,30/09/1973,,,,,,,,DPRK Ministry of State Security Official,,,,,,,,,(UK Sanctions List Ref):DPR0219 (UN Ref):KPi.034 Jo Yong Chol is a DPRK Ministry of State Security Official stationed in Syria supporting KOMID.,Individual,Primary name,,Democratic People's Republic of Korea,09/12/2016,30/11/2016,31/12/2020,13419 +YONG CHOL,KIM,,,,,,,,,18/02/1962,,,,472310168,Issued by the Democratic People's Republic of Korea,,,Korea Mining Development Trading Corporation (KOMID) Representative,,,,,,,,,(UK Sanctions List Ref):DPR0241 (UN Ref):KPi.024 Served as the KOMID representative in Iran.,Individual,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13334 +YONG MU,RI,,,,,,,,,25/01/1925,,,North Korea,,,,,"Ri Yong Mu is a Vice Chairman of the State Affairs Commission, which directs and guides all DPRK’s military, defence, and security-related affairs, including acquisition and procurement",,,,,,,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0271 (UN Ref):KPi.053,Individual,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13483 +YONG SANG,Jon,,,,,,,,,25/08/1976,,,North Korea,(1) 4721202031. (2) 836110035,"(1) - . (2) Diplomatic passport number, which expires on 1 January 2020.",,,Tanchon Commercial Bank Representative in Syria,,,,,,,,,"(UK Sanctions List Ref):DPR0221 (UN Ref):KPi.018 Pursuant to Resolution 2371(2017) the Security Council added the following information: New AKA: Jon Yong Sang with date of birth 25 August 1976 and diplomatic passport number 836110035, which expires on 1 January 2020.",Individual,AKA,Good quality,Democratic People's Republic of Korea,05/03/2016,02/03/2016,19/01/2021,13329 +YONG SANG,Jon,,,,,,,,,18/10/1976,,,North Korea,(1) 4721202031. (2) 836110035,"(1) - . (2) Diplomatic passport number, which expires on 1 January 2020.",,,Tanchon Commercial Bank Representative in Syria,,,,,,,,,"(UK Sanctions List Ref):DPR0221 (UN Ref):KPi.018 Pursuant to Resolution 2371(2017) the Security Council added the following information: New AKA: Jon Yong Sang with date of birth 25 August 1976 and diplomatic passport number 836110035, which expires on 1 January 2020.",Individual,AKA,Good quality,Democratic People's Republic of Korea,05/03/2016,02/03/2016,19/01/2021,13329 +YONG SIK,PAK,,,,,,,,,00/00/1950,,,,,,,,Member of the Workers’ Party of Korea Central Military Commission,,,,,,,,Democratic People's Republic of Korea,"(UK Sanctions List Ref):DPR0258 (UN Ref):KPi.063 Pak Yong Sik is a member of the Workers’ Party of Korea Central Military Commission, which is responsible for the development and implementation of the Workers’ Party of Korea military policies, commands and controls the DPRK’s military, and helps direct the country’s military defense industries.",Individual,Primary name,,Democratic People's Republic of Korea,12/09/2017,11/09/2017,02/08/2022,13540 +YONG SON,JANG,,,,,,,,,20/02/1957,,,North Korea,563110024,Issued by the Democratic People's Republic of Korea,,,Korea Mining Development Trading Corporation (KOMID) Representative,,,,,,,,,(UK Sanctions List Ref):DPR0217 (UN Ref):KPi.017 Served as the KOMID representative in Iran.,Individual,Primary name,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13328 +YONGBYON NUCLEAR RESEARCH CENTRE,,,,,,,,,,,,,,,,,,,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0066 (UK Statement of Reasons):Research centre which has taken part in the production of the military-grade plutonium. Centre maintained by the General Bureau of Atomic Energy (entity designated by the United Nations, 16.07.2009)",Entity,Primary name,,Democratic People's Republic of Korea,30/12/2009,31/12/2020,31/12/2020,11040 +YONG-CHOL,Kim,,,,,,,,,18/02/1962,,,,472310168,Issued by the Democratic People's Republic of Korea,,,Korea Mining Development Trading Corporation (KOMID) Representative,,,,,,,,,(UK Sanctions List Ref):DPR0241 (UN Ref):KPi.024 Served as the KOMID representative in Iran.,Individual,Primary name variation,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13334 +YONG-MU,Ri,,,,,,,,,25/01/1925,,,North Korea,,,,,"Ri Yong Mu is a Vice Chairman of the State Affairs Commission, which directs and guides all DPRK’s military, defence, and security-related affairs, including acquisition and procurement",,,,,,,,Democratic People's Republic of Korea,(UK Sanctions List Ref):DPR0271 (UN Ref):KPi.053,Individual,Primary name variation,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,02/08/2022,13483 +YONGWON,Cho,,,,,,,,,24/10/1957,,,North Korea,,,,,"Vice Director of the Workers' Party of Korea's Organization and Guidance Department, which directs key personnel appointments for the Workers’ Party of Korea and the DPRK’s military",,,,,,,,North Korea,(UK Sanctions List Ref):DPR0220 (UN Ref):KPi.043 (Gender):Male,Individual,AKA,Good quality,Democratic People's Republic of Korea,05/06/2017,02/06/2017,19/01/2021,13488 +YONG-WON,JO,,,,,,,,,24/10/1957,,,North Korea,,,,,"Vice Director of the Workers' Party of Korea's Organization and Guidance Department, which directs key personnel appointments for the Workers’ Party of Korea and the DPRK’s military",,,,,,,,North Korea,(UK Sanctions List Ref):DPR0220 (UN Ref):KPi.043 (Gender):Male,Individual,Primary name,,Democratic People's Republic of Korea,05/06/2017,02/06/2017,19/01/2021,13488 +YORO,,,,,,,,,,01/01/1978,Djebock,Mali,Mali,,,11262/1547,Mali,Deputy chief of staff of the regional coordination of the Mécanisme opérationnel de coordination (MOC) in Gao,Golf Rue 708 Door 345,,,,,Gao,,Mali,"(UK Sanctions List Ref):MAL0006 (UN Ref):MLi.006 Mahri Sidi Amar Ben Daha is a leader of the Lehmar Arab community of Gao and military chief of staff of the pro-governmental wing of the Mouvement Arabe de l’Azawad (MAA), associated to the Plateforme des mouvements du 14 juin 2014 d’Alger (Plateforme) coalition. Listed pursuant to paragraphs 1 to 3 of Security Council resolution 2374 (2017) (Travel Ban, Asset Freeze). Reportedly deceased in February 2020. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Low quality,Mali,20/12/2019,10/07/2019,10/10/2022,13801 +YOUCEF,Abou,,,,,,,,,07/02/1969,Annaba,Algeria,Algeria,,,,,,,,,,,,,Algeria,(UK Sanctions List Ref):AQD0117 (UN Ref):QDi.389 A leader of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5930738,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,07/03/2016,29/02/2016,12/01/2022,13322 +YOUNES,Jamal,,,,,(1) Brigadier (2) Major General,,,,,Tartous,,Syria,,,,,(1) President of the Security and Intelligence Committee in the Eastern Region (2) Former Commander of the 555th Regiment,,,,,,,,,"(UK Sanctions List Ref):SYR0109 (UK Statement of Reasons):President of the Security and Intelligence Committee in the Eastern Region and former Commander of the 555th Regiment of the Fourth Armoured Division of the Syrian Arab Army. There are reasonable grounds to suspect that he is or has been involved in repressing the civilian population and supporting or benefitting from the Syrian regime while in these capacities, including giving orders to troops to shoot at protestors in Mo'adamiyeh. (Gender):Male",Individual,Primary name variation,,Syria,24/01/2012,31/12/2020,13/05/2022,12472 +YOUNES,Tawfiq,,,,,,توفيق يونس,,,,,,,,,,,Former Head of the Department for Internal Security of the General Intelligence Directorate,,,,,,,,,(UK Sanctions List Ref):SYR0231 Linked to General Intelligence Directorate. (UK Statement of Reasons):Former Head of the Department for Internal Security of the General Intelligence Directorate; involved in violence against the civilian population. (Gender):Male,Individual,Primary name,,Syria,02/08/2011,31/12/2020,19/05/2022,12025 +YOUNES,Tawfik,,,,,,,,,,,,,,,,,Former Head of the Department for Internal Security of the General Intelligence Directorate,,,,,,,,,(UK Sanctions List Ref):SYR0231 Linked to General Intelligence Directorate. (UK Statement of Reasons):Former Head of the Department for Internal Security of the General Intelligence Directorate; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,02/08/2011,31/12/2020,19/05/2022,12025 +YOUNG-CHEOL,Kim,,,,,,,,,18/02/1962,,,,472310168,Issued by the Democratic People's Republic of Korea,,,Korea Mining Development Trading Corporation (KOMID) Representative,,,,,,,,,(UK Sanctions List Ref):DPR0241 (UN Ref):KPi.024 Served as the KOMID representative in Iran.,Individual,Primary name variation,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13334 +YOUNG-CHOL,Kim,,,,,,,,,18/02/1962,,,,472310168,Issued by the Democratic People's Republic of Korea,,,Korea Mining Development Trading Corporation (KOMID) Representative,,,,,,,,,(UK Sanctions List Ref):DPR0241 (UN Ref):KPi.024 Served as the KOMID representative in Iran.,Individual,Primary name variation,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13334 +YOUNG-CHUL,,,,,,,,,,18/02/1962,,,,472310168,Issued by the Democratic People's Republic of Korea,,,Korea Mining Development Trading Corporation (KOMID) Representative,,,,,,,,,(UK Sanctions List Ref):DPR0241 (UN Ref):KPi.024 Served as the KOMID representative in Iran.,Individual,Primary name variation,,Democratic People's Republic of Korea,05/03/2016,02/03/2016,02/08/2022,13334 +YOUNIS,Tawfik,,,,,,,,,,,,,,,,,Former Head of the Department for Internal Security of the General Intelligence Directorate,,,,,,,,,(UK Sanctions List Ref):SYR0231 Linked to General Intelligence Directorate. (UK Statement of Reasons):Former Head of the Department for Internal Security of the General Intelligence Directorate; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,02/08/2011,31/12/2020,19/05/2022,12025 +YOUNIS,Tawfiq,,,,,,,,,,,,,,,,,Former Head of the Department for Internal Security of the General Intelligence Directorate,,,,,,,,,(UK Sanctions List Ref):SYR0231 Linked to General Intelligence Directorate. (UK Statement of Reasons):Former Head of the Department for Internal Security of the General Intelligence Directorate; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,02/08/2011,31/12/2020,19/05/2022,12025 +YOUNOUS,Omar,,,,,,,,,02/04/1970,,,Sudan,D00000898,(CAR Diplomatic). Issued on 11 April 2013. Valid until 10 April 2018.,,,Former Séléka General,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0007 (UN Ref):CFi.006 Is a diamond smuggler and a three-star general of the Séléka and close confident of former CAR interim president Michel Djotodia. Physical description: hair colour: black; height: 180cm; belongs to the Fulani ethnic group. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as at 11 October 2015 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Phone number):+236 75507560,Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13273 +YOUNOUS,Omar,,,,,,,,,02/04/1970,,,Sudan,D00000898,(CAR Diplomatic). Issued on 11 April 2013. Valid until 10 April 2018.,,,Former Séléka General,,,,,,Bria,,Central African Republic,(UK Sanctions List Ref):CAF0007 (UN Ref):CFi.006 Is a diamond smuggler and a three-star general of the Séléka and close confident of former CAR interim president Michel Djotodia. Physical description: hair colour: black; height: 180cm; belongs to the Fulani ethnic group. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as at 11 October 2015 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Phone number):+236 75507560,Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13273 +YOUNOUS,Omar,,,,,,,,,02/04/1970,,,Sudan,D00000898,(CAR Diplomatic). Issued on 11 April 2013. Valid until 10 April 2018.,,,Former Séléka General,,,,,Tullus,Southern Darfur,,Sudan,(UK Sanctions List Ref):CAF0007 (UN Ref):CFi.006 Is a diamond smuggler and a three-star general of the Séléka and close confident of former CAR interim president Michel Djotodia. Physical description: hair colour: black; height: 180cm; belongs to the Fulani ethnic group. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as at 11 October 2015 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Phone number):+236 75507560,Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13273 +YOUNOUS,Oumar,,,,,,,,,02/04/1970,,,Sudan,D00000898,(CAR Diplomatic). Issued on 11 April 2013. Valid until 10 April 2018.,,,Former Séléka General,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0007 (UN Ref):CFi.006 Is a diamond smuggler and a three-star general of the Séléka and close confident of former CAR interim president Michel Djotodia. Physical description: hair colour: black; height: 180cm; belongs to the Fulani ethnic group. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as at 11 October 2015 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Phone number):+236 75507560,Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13273 +YOUNOUS,Oumar,,,,,,,,,02/04/1970,,,Sudan,D00000898,(CAR Diplomatic). Issued on 11 April 2013. Valid until 10 April 2018.,,,Former Séléka General,,,,,,Bria,,Central African Republic,(UK Sanctions List Ref):CAF0007 (UN Ref):CFi.006 Is a diamond smuggler and a three-star general of the Séléka and close confident of former CAR interim president Michel Djotodia. Physical description: hair colour: black; height: 180cm; belongs to the Fulani ethnic group. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as at 11 October 2015 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Phone number):+236 75507560,Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13273 +YOUNOUS,Oumar,,,,,,,,,02/04/1970,,,Sudan,D00000898,(CAR Diplomatic). Issued on 11 April 2013. Valid until 10 April 2018.,,,Former Séléka General,,,,,Tullus,Southern Darfur,,Sudan,(UK Sanctions List Ref):CAF0007 (UN Ref):CFi.006 Is a diamond smuggler and a three-star general of the Séléka and close confident of former CAR interim president Michel Djotodia. Physical description: hair colour: black; height: 180cm; belongs to the Fulani ethnic group. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as at 11 October 2015 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Phone number):+236 75507560,Individual,AKA,Good quality,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13273 +YOUNOUS ABDOULAY,OUMAR,,,,,,,,,02/04/1970,,,Sudan,D00000898,(CAR Diplomatic). Issued on 11 April 2013. Valid until 10 April 2018.,,,Former Séléka General,,,,,,Birao,,Central African Republic,(UK Sanctions List Ref):CAF0007 (UN Ref):CFi.006 Is a diamond smuggler and a three-star general of the Séléka and close confident of former CAR interim president Michel Djotodia. Physical description: hair colour: black; height: 180cm; belongs to the Fulani ethnic group. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as at 11 October 2015 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Phone number):+236 75507560,Individual,Primary name,,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13273 +YOUNOUS ABDOULAY,OUMAR,,,,,,,,,02/04/1970,,,Sudan,D00000898,(CAR Diplomatic). Issued on 11 April 2013. Valid until 10 April 2018.,,,Former Séléka General,,,,,,Bria,,Central African Republic,(UK Sanctions List Ref):CAF0007 (UN Ref):CFi.006 Is a diamond smuggler and a three-star general of the Séléka and close confident of former CAR interim president Michel Djotodia. Physical description: hair colour: black; height: 180cm; belongs to the Fulani ethnic group. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as at 11 October 2015 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Phone number):+236 75507560,Individual,Primary name,,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13273 +YOUNOUS ABDOULAY,OUMAR,,,,,,,,,02/04/1970,,,Sudan,D00000898,(CAR Diplomatic). Issued on 11 April 2013. Valid until 10 April 2018.,,,Former Séléka General,,,,,Tullus,Southern Darfur,,Sudan,(UK Sanctions List Ref):CAF0007 (UN Ref):CFi.006 Is a diamond smuggler and a three-star general of the Séléka and close confident of former CAR interim president Michel Djotodia. Physical description: hair colour: black; height: 180cm; belongs to the Fulani ethnic group. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as at 11 October 2015 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Phone number):+236 75507560,Individual,Primary name,,Central African Republic,03/09/2015,20/08/2015,01/02/2021,13273 +YOUSAF,Mohamad,Mazen,Ali,,,,,,,17/05/1969,Countryside of Damascus,Syria,Syria,,,,,Former Minister for Industry,,,,,,,,,"(UK Sanctions List Ref):SYR0159 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Industry appointed in January 2018. As a Former Government Minister, shares responsibility for the violent repression of the Syrian people. (Gender):Male",Individual,Primary name variation,,Syria,27/02/2018,31/12/2020,31/12/2020,13613 +YOUSAF,Mohamed,Mazen,Ali,,,,,,,17/05/1969,Countryside of Damascus,Syria,Syria,,,,,Former Minister for Industry,,,,,,,,,"(UK Sanctions List Ref):SYR0159 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Industry appointed in January 2018. As a Former Government Minister, shares responsibility for the violent repression of the Syrian people. (Gender):Male",Individual,Primary name variation,,Syria,27/02/2018,31/12/2020,31/12/2020,13613 +YOUSAF,,,,,,,,,,17/05/1969,Countryside of Damascus,Syria,Syria,,,,,Former Minister for Industry,,,,,,,,,"(UK Sanctions List Ref):SYR0159 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Industry appointed in January 2018. As a Former Government Minister, shares responsibility for the violent repression of the Syrian people. (Gender):Male",Individual,AKA,,Syria,27/02/2018,31/12/2020,31/12/2020,13613 +YOUSEF,Mohamad,Mazen,Ali,,,,,,,17/05/1969,Countryside of Damascus,Syria,Syria,,,,,Former Minister for Industry,,,,,,,,,"(UK Sanctions List Ref):SYR0159 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Industry appointed in January 2018. As a Former Government Minister, shares responsibility for the violent repression of the Syrian people. (Gender):Male",Individual,Primary name variation,,Syria,27/02/2018,31/12/2020,31/12/2020,13613 +YOUSEF,Mohamed,Mazen,Ali,,,,محمد مازن علي يوسف,,,17/05/1969,Countryside of Damascus,Syria,Syria,,,,,Former Minister for Industry,,,,,,,,,"(UK Sanctions List Ref):SYR0159 Linked to Bashar Asad (UK Statement of Reasons):Former Minister of Industry appointed in January 2018. As a Former Government Minister, shares responsibility for the violent repression of the Syrian people. (Gender):Male",Individual,Primary name,,Syria,27/02/2018,31/12/2020,31/12/2020,13613 +YOUSEF,Nawfal,Hamadi,Sultan,,,,,,,23/02/1964,,Iraq,Iraq,,,71719043,,,,,,,,,,Iraq,"(UK Sanctions List Ref):GAC0027 (UK Statement of Reasons):Nawfal Hammadi Al-Sultan has been involved in serious corruption in Nineveh province, Iraq involving the misappropriation of state property to his benefit and the benefit of others. In his role as governor of Nineveh province, he misappropriated public funds intended for reconstruction efforts and to provide support for civilians and improperly awarded contracts and other state property. Additional information: in February 2021 Al-Sultan was convicted by the Central Anti-Corruption Criminal Court in Iraq in relation to some of his corrupt activities when governor of Nineveh Governorate. He was convicted of two offences of “harming a public body” under Article 340 of Iraq’s Penal Code and sentenced to a total of five years in prison, for: (i) wasting five billion Iraqi Dinars of public funds of Nineveh Governorate through fictitious works and contracts, and (ii) improperly disposing of 50 tons of asphalt delivered to him for paving the streets and for reconstruction in 2017. (Gender):Male",Individual,AKA,,Global Anti-Corruption,22/07/2021,22/07/2021,22/07/2021,14130 +YOUSEFF,Hany,,,,,,,,,01/03/1961,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +YOUSEFF,Hany,,,,,,,,,16/06/1960,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +YOUSSEF,Hany,Elsayed,,,,,,,,01/03/1961,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +YOUSSEF,Hany,Elsayed,,,,,,,,16/06/1960,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +YOUTH WING,,,,,,,,,,,,,,,,,,,,,,,,,,Somalia,(UK Sanctions List Ref):SOM0001 (UN Ref):SOe.001 INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5775567,Entity,AKA,,Somalia,28/04/2010,12/04/2010,31/12/2020,11090 +YU JONG 2,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0102 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V YU JONG 2 was involved in-ship-to ship transfer operations for oil in November 2017. M/V YU JONG 2 was also involved in a ship-to-ship transfer operation, likely for oil, with M/V MIN NING DE YOU 078 on 16 February 2018. Listed as asset of Korea Yujong Shipping Co Ltd (OFSI ID: 13637, UN Reference Number: UN Ref KPe.066) (IMO number):8604917 (Current owners):Korea Yujong Shipping (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):748 (Length of ship):62 (Year built):1986",Ship,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13653 +YU PHYONG 5,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0098 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). In late November 2017 the YU PHYONG 5 conducted a ship-to-ship transfer of 1,721 metric tons of fuel oil. Listed as asset of Korea Myongdok Shipping Co - OFSI ID: 13634. UN Reference Number: UN Ref KPe.063 (IMO number):8605026 (Current owners):Korea Myongdok Shipping Co (Flag of ship):North Korea (Previous flags):South Korea (Type of ship):Oil tanker (Tonnage of ship):795 (Length of ship):75 (Year built):1986",Ship,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13649 +YU SON,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0107 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK tanker M/V YU SON is believed to have been involved in ship-to-ship transfer operations for oil. Listed as asset of Myohyang Shipping Co (OFSI ID: 13639, UN Reference Number: UN Ref KPe.068) (IMO number):8691702 (Current owners):Myohyang Shipping Co (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):2228 (Length of ship):89 (Year built):2003",Ship,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13658 +YU_JONG_1,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0099 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK merchant vessel M/V SAM JONG 1 was involved in ship-to-ship transfer operations of oil in late January 2018. Listed as asset of Korea Samjong Shipping (OFSI ID: 13635, UN Reference Number: UN Ref KPe.064) (IMO number):8405311 (Current owners):Korea Samjong Shipping (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):1038 (Length of ship):70 (Year built):1984",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13650 +YU_JONG_3,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0100 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK merchant vessel M/V SAM JONG 2 was involved in ship-to-ship transfer operations of oil in late January 2018. Listed as asset of Korea Samjong Shipping (OFSI ID: 13635, UN Reference Number: UN Ref KPe.064) (IMO number):7408873 (Current owners):Korea Samjong Shipping (Flag of ship):North Korea (Previous flags):Russia (Type of ship):Oil tanker (Tonnage of ship):1676 (Length of ship):80 (Year built):1975",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13651 +YUAN TSANG,Yun,,,,,,,,,20/10/1957,,,North Korea,302001581,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0275 (UN Ref):KPi.080 Tsang Yung Yuan has coordinated DPRK coal exports with a DPRK broker operating in a third country, and he has a history of other sanctions evasion activities.",Individual,AKA,Good quality,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13625 +YUJONG1,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0099 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK merchant vessel M/V SAM JONG 1 was involved in ship-to-ship transfer operations of oil in late January 2018. Listed as asset of Korea Samjong Shipping (OFSI ID: 13635, UN Reference Number: UN Ref KPe.064) (IMO number):8405311 (Current owners):Korea Samjong Shipping (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):1038 (Length of ship):70 (Year built):1984",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13650 +YUJONG-2,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0102 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V YU JONG 2 was involved in-ship-to ship transfer operations for oil in November 2017. M/V YU JONG 2 was also involved in a ship-to-ship transfer operation, likely for oil, with M/V MIN NING DE YOU 078 on 16 February 2018. Listed as asset of Korea Yujong Shipping Co Ltd (OFSI ID: 13637, UN Reference Number: UN Ref KPe.066) (IMO number):8604917 (Current owners):Korea Yujong Shipping (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):748 (Length of ship):62 (Year built):1986",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13653 +YUK TUNG ENERGY PTE LTD,,,,,,,,,,,,,,,,,,,80 Raffles Place,17-22 UOB Plaza,,,Singapore,,048624,Singapore,"(UK Sanctions List Ref):DPR0198 (UN Ref):KPe.075 Ship manager and commercial manager of the YUK TUNG, which conducted ship-to-ship transfer of refined petroleum product. IMO number: 5987860.",Entity,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,02/08/2022,13646 +YUN,Chang,Hyok,,,,,,,,09/08/1965,,,North Korea,,,,,"Deputy Director, National Aerospace Development Administration",,,,,,,,,"(UK Sanctions List Ref):DPR0053 (UK Statement of Reasons):Deputy Director of the Satellite Control Centre, National Aerospace Development Administration (NADA). NADA is subject to sanctions under UNSCR 2270 (2016) for involvement in the DPRK’s development of space science and technology, including satellite launches and carrier rockets. UNSCR 2270 (2016) condemned the DPRK’s satellite launch of 7 February 2016 for using ballistic missile technology and being in serious violations of resolutions 1718 (2006), 1874 (2009), 2087 (2013) and 2094 (2013). (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,03/03/2022,13374 +YUN,Jong,Rin,,,,,,,,,,,,,,,,(1) Former Director of the Guard Command of the Korean People’s Army (2) Former member of the Central Military Commission of the Workers’ Party of Korea (3) Member of the National Defence Commission (4) General in the Korean People’s Army,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0054 (UK Statement of Reasons):General, former Director of the Guard Command of the Korean People’s Army and former member of the Central Military Commission of the Workers’ Party of Korea and member of the National Defence Commission, which was a key body for national defence matters in the DPRK before it was reformed into the State Affairs Commission (SAC) which are all key bodies for national defence matters in the DPRK. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-relation programmes. (Gender):Male",Individual,Primary name variation,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,03/03/2022,13370 +YUN,Jong-Rin,,,,,General,,,,,,,,,,,,(1) Former Director of the Guard Command of the Korean People’s Army (2) Former member of the Central Military Commission of the Workers’ Party of Korea (3) Member of the National Defence Commission (4) General in the Korean People’s Army,,,,,,,,North Korea,"(UK Sanctions List Ref):DPR0054 (UK Statement of Reasons):General, former Director of the Guard Command of the Korean People’s Army and former member of the Central Military Commission of the Workers’ Party of Korea and member of the National Defence Commission, which was a key body for national defence matters in the DPRK before it was reformed into the State Affairs Commission (SAC) which are all key bodies for national defence matters in the DPRK. As such, responsible for supporting or promoting the DPRK’s nuclear-related, ballistic missile-related or other weapons of mass destruction-relation programmes. (Gender):Male",Individual,Primary name,,Democratic People's Republic of Korea,20/05/2016,31/12/2020,03/03/2022,13370 +YUNES,Jamal,,,,,,,,,,Tartous,,Syria,,,,,(1) President of the Security and Intelligence Committee in the Eastern Region (2) Former Commander of the 555th Regiment,,,,,,,,,"(UK Sanctions List Ref):SYR0109 (UK Statement of Reasons):President of the Security and Intelligence Committee in the Eastern Region and former Commander of the 555th Regiment of the Fourth Armoured Division of the Syrian Arab Army. There are reasonable grounds to suspect that he is or has been involved in repressing the civilian population and supporting or benefitting from the Syrian regime while in these capacities, including giving orders to troops to shoot at protestors in Mo'adamiyeh. (Gender):Male",Individual,Primary name,,Syria,24/01/2012,31/12/2020,13/05/2022,12472 +YUNES,Tawfik,,,,,,,,,,,,,,,,,Former Head of the Department for Internal Security of the General Intelligence Directorate,,,,,,,,,(UK Sanctions List Ref):SYR0231 Linked to General Intelligence Directorate. (UK Statement of Reasons):Former Head of the Department for Internal Security of the General Intelligence Directorate; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,02/08/2011,31/12/2020,19/05/2022,12025 +YUNES,Tawfiq,,,,,,,,,,,,,,,,,Former Head of the Department for Internal Security of the General Intelligence Directorate,,,,,,,,,(UK Sanctions List Ref):SYR0231 Linked to General Intelligence Directorate. (UK Statement of Reasons):Former Head of the Department for Internal Security of the General Intelligence Directorate; involved in violence against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,02/08/2011,31/12/2020,19/05/2022,12025 +YUNG YUAN,TSANG,,,,,,,,,20/10/1957,,,North Korea,302001581,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0275 (UN Ref):KPi.080 Tsang Yung Yuan has coordinated DPRK coal exports with a DPRK broker operating in a third country, and he has a history of other sanctions evasion activities.",Individual,Primary name,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13625 +YUNOS,Mukhlis,,,,,,,,,07/07/1966,Lanao del Sur,Philippines,Philippines,,,,,,,,,,,,,Philippines,"(UK Sanctions List Ref):AQD0338 (UN Ref):QDi.126 Sentenced to life without parole in the Philippines on 23 Jan. 2009 for his involvement in the bombings of 30 Dec. 2000 in Manila, the Philippines. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427252. Philippines, remains incarcerated as of May 2017",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7835 +YUNOS,Muklis,,,,,,,,,07/07/1966,Lanao del Sur,Philippines,Philippines,,,,,,,,,,,,,Philippines,"(UK Sanctions List Ref):AQD0338 (UN Ref):QDi.126 Sentenced to life without parole in the Philippines on 23 Jan. 2009 for his involvement in the bombings of 30 Dec. 2000 in Manila, the Philippines. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427252. Philippines, remains incarcerated as of May 2017",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7835 +YUNOS,Saifulla,Moklis,,,,,,,,07/07/1966,Lanao del Sur,Philippines,Philippines,,,,,,,,,,,,,Philippines,"(UK Sanctions List Ref):AQD0338 (UN Ref):QDi.126 Sentenced to life without parole in the Philippines on 23 Jan. 2009 for his involvement in the bombings of 30 Dec. 2000 in Manila, the Philippines. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427252. Philippines, remains incarcerated as of May 2017",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7835 +YUNOS,Saifullah,Mukhlis,,,,,,,,07/07/1966,Lanao del Sur,Philippines,Philippines,,,,,,,,,,,,,Philippines,"(UK Sanctions List Ref):AQD0338 (UN Ref):QDi.126 Sentenced to life without parole in the Philippines on 23 Jan. 2009 for his involvement in the bombings of 30 Dec. 2000 in Manila, the Philippines. Review pursuant to Security Council resolution 1822 (2008) was concluded on 25 May 2010. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427252. Philippines, remains incarcerated as of May 2017",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/09/2003,09/09/2003,31/12/2020,7835 +YUNUS,Muhammad,,,,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +YUNUS,Muhammad,,,,,,,,,28/05/1984,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +YUNUS,Muhammad,,,,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +YUNUS,Muhammad,,,,,,,,,03/12/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +YUNUS,Muhammad,,,,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +YUNUS,Muhammad,,,,,,,,,03/03/1979,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +YUNUS,Muhammad,,,,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan Nakula of Witana Harja Complex Block C,Pamulang,,,,Banten,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +YUNUS,Muhammad,,,,,,,,,08/08/1980,"East Lombok, West Nusa Tenggara",Indonesia,Indonesia,S335026,False Indonesian,(1) 3219222002.2181558. (2) 2181558,(1) Indonesian. (2) - .,,Jalan M. Saidi,RT010 RW 001 Pesanggrahan,South Petukangan,,,South Jakarta,,Indonesia,(UK Sanctions List Ref):AQD0261 (UN Ref):QDi.295 Senior member of Jemaah Islamiyah (QDe.092) directly involved in obtaining funding for terrorist attacks. Sentenced in Indonesia to five years in prison on 29 Jun. 2010. Father’s name is Mohamad Iqbal Abdurrahman (QDi.086). Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4555825,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,25/08/2011,12/08/2011,12/01/2022,12037 +YU-RO,HAN,,,,,,,,,,,,,,,,,Director of Korea Ryongaksan General Trading Corporation,,,,,,,,,(UK Sanctions List Ref):DPR0211 (UN Ref):KPi.005,Individual,Primary name,,Democratic People's Republic of Korea,17/07/2009,16/07/2009,31/12/2020,10918 +YUROV,Yuriy,Pavlovich,,,,,ЮРОВ Юрий Павлович,Cyrillic,Russian,17/06/1969,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1304 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15256 +YUROV,Yury,Pavlovich,,,,,,,,17/06/1969,Luhansk,Ukraine,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1304 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15256 +YUSEF,Hajj,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,,Kermanshah,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +YUSEF,Hajj,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,Military Base,Ilam Province,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +YUSEF,Hani,,,,,,,,,01/03/1961,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +YUSEF,Hani,,,,,,,,,16/06/1960,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +YUSEF,Hani,El Sayyed,Elsebai,,,,,,,01/03/1961,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +YUSEF,Hani,El Sayyed,Elsebai,,,,,,,16/06/1960,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +YUSHCHENKO,Alexander,Andreevich,,,,,Ющенко Александр Андреевич,,,19/11/1969,Mazyr,Belarus,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0538 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14483 +YUSIF,Haji,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,,Kermanshah,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +YUSIF,Haji,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,Military Base,Ilam Province,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +YUSIF,Hajji,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,,Kermanshah,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +YUSIF,Hajji,,,,,,,,,00/00/1957,,Iran,,,,,,Deputy Commander,,,,,Military Base,Ilam Province,,Iran,"(UK Sanctions List Ref):CTI0013 Links to IRGC5: Soleimani, Arbabsiar, Abdollahi and Shahlai (UK Statement of Reasons):Abdul Reza Shahlai is Deputy Commander in the Iranian Revolutionary Guard-Qods Force (IRGC-QF) implicated in acts of terrorism, including through support for designated terrorist organisations. He has been accused of coordinating the attempted assassination of Adel al-Jubeir, the Saudi ambassador to the US in 2011. (Gender):Male",Individual,Primary name variation,,Counter-Terrorism (International),17/10/2011,31/12/2020,16/02/2022,12208 +YUSIF,HANI,AL-SAYYID,AL-SEBAI,,,,هاني السيد السباعي يوسف,,,01/03/1961,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +YUSIF,HANI,AL-SAYYID,AL-SEBAI,,,,هاني السيد السباعي يوسف,,,16/06/1960,Qaylubiyah,Egypt,Egypt,,,,,,,,,,,London,,United Kingdom,(UK Sanctions List Ref):AQD0192 (UN Ref):QDi.198 Father's name is Mohamed Elsayed Elsebai. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,10/10/2005,29/09/2005,31/12/2020,8720 +YUSUF,,,,,,,,,,06/03/1973,,,Kuwait,,,,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0085 (UN Ref):QDi.335 Provides support to Al-Qaida (QDe.004) and Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (AQI) (QDe.115), in Syria and Iraq. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5818202",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13132 +YUSUF,Muhammad,,,,,,,,,00/00/1973,"Loy Karez village, Spin Boldak District, Kandahar Province",Afghanistan,Afghanistan,,,,,Governor of Saripul Province under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0085 (UN Ref):TAi.107 Member of Taliban Supreme Council as at 2011. Belongs to Nurzai tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,7017 +YUSUF AL-'UYAYRI BATTALIONS OF THE ABDALLAH AZZAM BRIGADES,,,,,,,,,,,,,,,,,,,,,,,,,,Lebanon,(UK Sanctions List Ref):AQD0002 (UN Ref):QDe.144 An armed group that has carried out joint attacks with Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13141 +YUSUF AL-'UYAYRI BATTALIONS OF THE ABDALLAH AZZAM BRIGADES,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0002 (UN Ref):QDe.144 An armed group that has carried out joint attacks with Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13141 +ZA,Tay,,,,,U,,,,18/07/1964,Yangon,Myanmar,Myanmar,,,,,Chairman of Htoo Group of Companies,,,,,,,,Myanmar,"(UK Sanctions List Ref):MYA0028 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations in Myanmar for decades, including the ethnic cleansing of the Rohingya in 2017, ongoing attacks on other ethnic groups and the 2021 coup and associated repression of the civilian population and serious human rights violations including killings, arbitrary detention and torture. U Tay Za has provided support for these activities in his role as an arms dealer for the military responsible for brokering deals with Russia for arms. Further or alternatively, he has made funds or economic resources available and/or he is or has been involved in the supply of goods and/or technology, which could contribute to serious human rights violations. Further, and/or alternatively, U Tay Za is associated with the military through his extensive links with the former and current junta regimes. (Gender):Male",Individual,Primary name,,Myanmar,02/09/2021,02/09/2021,11/11/2022,14139 +ZA,Tay,,,,,U,,,,18/07/1964,Yangon,Myanmar,Myanmar,,,,,Chairman of Htoo Group of Companies,,,,,,,,Singapore,"(UK Sanctions List Ref):MYA0028 (UK Statement of Reasons):The Tatmadaw has a track record of committing serious human rights violations in Myanmar for decades, including the ethnic cleansing of the Rohingya in 2017, ongoing attacks on other ethnic groups and the 2021 coup and associated repression of the civilian population and serious human rights violations including killings, arbitrary detention and torture. U Tay Za has provided support for these activities in his role as an arms dealer for the military responsible for brokering deals with Russia for arms. Further or alternatively, he has made funds or economic resources available and/or he is or has been involved in the supply of goods and/or technology, which could contribute to serious human rights violations. Further, and/or alternatively, U Tay Za is associated with the military through his extensive links with the former and current junta regimes. (Gender):Male",Individual,Primary name,,Myanmar,02/09/2021,02/09/2021,11/11/2022,14139 +ZABIN,Abu,Sagar,,,,,,,,05/02/1986,"Razih District, Sa'dah Governorate",Yemen,Yemen,,,(1) 10010095104 (2) 20432,(1) Yemen. Issued on 26 December 2013. (2) Yemen military identification number. Issued in 2018.,"(1) Director, or General Manager, of the Criminal Investigation Department (CID), Sana’a based ministry of interior, in Sana’a, Yemen (2) Brigadier",,,,,,Sana'a,,Yemen,"(UK Sanctions List Ref):YEM0006 (UN Ref):YEi.006 Sultan Saleh Aida Aida Zabin has engaged in acts that threaten the peace, security and stability of Yemen, including violations of applicable international humanitarian law and human rights abuses in Yemen. Zabin has played a prominent role in a policy of intimidation and use of systematic arrest, detention, torture, sexual violence and rape against politically active women. Zabin as director for CID is directly responsible for, or by virtue of his authority responsible for, and complicit in the use of multiple places of detention including house arrest, police stations, formal prisons and detention centres and undisclosed detention centres. In these sites, women, including at least one minor, were forcibly disappeared, repeatedly interrogated, raped, tortured, denied timely medical treatment and subjected to forced labour. Zabin himself directly inflicted torture in some cases.",Individual,AKA,Low quality,Yemen,26/02/2021,25/02/2021,06/04/2021,14064 +ZABIN,Abu,Saqar,,,,,,,,05/02/1986,"Razih District, Sa'dah Governorate",Yemen,Yemen,,,(1) 10010095104 (2) 20432,(1) Yemen. Issued on 26 December 2013. (2) Yemen military identification number. Issued in 2018.,"(1) Director, or General Manager, of the Criminal Investigation Department (CID), Sana’a based ministry of interior, in Sana’a, Yemen (2) Brigadier",,,,,,Sana'a,,Yemen,"(UK Sanctions List Ref):YEM0006 (UN Ref):YEi.006 Sultan Saleh Aida Aida Zabin has engaged in acts that threaten the peace, security and stability of Yemen, including violations of applicable international humanitarian law and human rights abuses in Yemen. Zabin has played a prominent role in a policy of intimidation and use of systematic arrest, detention, torture, sexual violence and rape against politically active women. Zabin as director for CID is directly responsible for, or by virtue of his authority responsible for, and complicit in the use of multiple places of detention including house arrest, police stations, formal prisons and detention centres and undisclosed detention centres. In these sites, women, including at least one minor, were forcibly disappeared, repeatedly interrogated, raped, tortured, denied timely medical treatment and subjected to forced labour. Zabin himself directly inflicted torture in some cases.",Individual,AKA,Low quality,Yemen,26/02/2021,25/02/2021,06/04/2021,14064 +ZABIN,Sultan,Saleh,Aida Aida,,,,سلطان صالح عيضة عيضة زابن,,,05/02/1986,"Razih District, Sa'dah Governorate",Yemen,Yemen,,,(1) 10010095104 (2) 20432,(1) Yemen. Issued on 26 December 2013. (2) Yemen military identification number. Issued in 2018.,"(1) Director, or General Manager, of the Criminal Investigation Department (CID), Sana’a based ministry of interior, in Sana’a, Yemen (2) Brigadier",,,,,,Sana'a,,Yemen,"(UK Sanctions List Ref):YEM0006 (UN Ref):YEi.006 Sultan Saleh Aida Aida Zabin has engaged in acts that threaten the peace, security and stability of Yemen, including violations of applicable international humanitarian law and human rights abuses in Yemen. Zabin has played a prominent role in a policy of intimidation and use of systematic arrest, detention, torture, sexual violence and rape against politically active women. Zabin as director for CID is directly responsible for, or by virtue of his authority responsible for, and complicit in the use of multiple places of detention including house arrest, police stations, formal prisons and detention centres and undisclosed detention centres. In these sites, women, including at least one minor, were forcibly disappeared, repeatedly interrogated, raped, tortured, denied timely medical treatment and subjected to forced labour. Zabin himself directly inflicted torture in some cases.",Individual,Primary name,,Yemen,26/02/2021,25/02/2021,06/04/2021,14064 +ZABRALOVA,Olga,Sergeyevn,,,,,Ольга Сергеевна ЗАБРАЛОВА,,,30/03/1980,Moscow,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0909 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14860 +ZABROTSKY,Dmitry,Alexandrovich,,,,Colonel,ЗАБРОЦКИЙ Дмитрий Александрович,Cyrillic,Russian,02/07/1971,,,Belarus,,,,,First Deputy Head of the Main Financial and Economic Department of the Ministry of Defence,,,,,,,,,"(UK Sanctions List Ref):RUS0750 (UK Statement of Reasons):Colonel Dmitry Alexandrovich ZABROTSKY has been involved in engaging in and providing support for policies and actions that have destabilised Ukraine or undermined or threatened the territorial integrity, sovereignty and independence of Ukraine, namely the Government of Belarus’s policy of support for Russia’s invasion of Ukraine, and the involvement of the Belarusian military in a joint exercise with the Russian military ahead of Russia’s invasion of Ukraine which: (1) threatened Ukraine; and (2) provided cover for Russian military preparations to invade Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,04/07/2022,14701 +ZADA,Ahmad Jan,Akhund,,,,,,,,00/00/1966,"(1) Lablan village, Dehrawood District, Uruzgan Province. (2) Zurmat District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Zabol and Uruzgan Provinces under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0087 (UN Ref):TAi.109 Taliban member responsible for Uruzgan Province, Afghanistan, as at early 2007. Brother-in-law of Mullah Mohammed Omar (TAi.004). Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6946 +ZADA,Ahmad Jan,Akhund,,,,,,,,00/00/1967,"(1) Lablan village, Dehrawood District, Uruzgan Province. (2) Zurmat District, Paktia Province",(1) Afghanistan (2) Afghanistan,Afghanistan,,,,,Governor of Zabol and Uruzgan Provinces under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0087 (UN Ref):TAi.109 Taliban member responsible for Uruzgan Province, Afghanistan, as at early 2007. Brother-in-law of Mullah Mohammed Omar (TAi.004). Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,6946 +ZADIRAKA,Nelli,Akopovna,,,,,ЗАДИРАКА Нелли Акоповна,Cyrillic,Russian,24/08/1949,Akhaltsikhe,Georgia,,,,,,,9 Square of Heroes of the Great Patriotic War,,,,,Luhansk,,Ukraine,"(UK Sanctions List Ref):RUS1305 (UK Statement of Reasons):The individual is an involved person under the Russia (Sanctions) (EU Exit) Regulation 2019 on the basis that they have been, and are, involved in destabilising Ukraine and undermining and threatening the territorial integrity, sovereignty and independence of Ukraine. In particular, the individual is engaging in actions which destabilise Ukraine and which undermine and threaten the territorial integrity, sovereignty and independence of Ukraine by participating in the illegal separatist ‘People’s Council of the Luhansk People’s Republic’ within the territory of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15257 +ZADORNOV,Mikhail,Mikhailovich,,,,,Задорнов Михаил Михайлович,Cyrillic,Russian,04/05/1963,Moscow,Russia,Russia,760019543,Russia,,,President and Chairman of OTKRITIE BANK Management Board,8 29,Str. Malaya Molchanovka,,,,Moscow,121069,Russia,"(UK Sanctions List Ref):RUS1390 Linked To: PUBLIC JOINT STOCK COMPANY BANK FINANCIAL CORPORATION OTKRITIE (UK Statement of Reasons):Mikhail Mikhaylovich ZADORNOV is the Chairman of the Management Board of OTKRITIE BANK. In his role, ZADORNOV is a member of and associated with OTKRITIE BANK. OTKRITIE BANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Male",Individual,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15358 +ZADORNOV,Mikhail,Mikhaylovich,,,,,,,,04/05/1963,Moscow,Russia,Russia,760019543,Russia,,,President and Chairman of OTKRITIE BANK Management Board,8 29,Str. Malaya Molchanovka,,,,Moscow,121069,Russia,"(UK Sanctions List Ref):RUS1390 Linked To: PUBLIC JOINT STOCK COMPANY BANK FINANCIAL CORPORATION OTKRITIE (UK Statement of Reasons):Mikhail Mikhaylovich ZADORNOV is the Chairman of the Management Board of OTKRITIE BANK. In his role, ZADORNOV is a member of and associated with OTKRITIE BANK. OTKRITIE BANK is an involved person under the Russian (EU Exit) (Sanctions) regulations 2019. (Gender):Male",Individual,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15358 +ZADRAN,Ahmed Jan,,,,,,,,,00/00/1963,"Barlach Village, Qareh Bagh District, Ghazni Province",Afghanistan,,,,,,Official of the Ministry of Finance during the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0125 (UN Ref):TAi.159 Key commander of the Haqqani Network (TAe.012), which is based in Afghanistan/Pakistan border area. Acts as deputy, spokesperson and advisor for Haqqani Network senior leader Sirajuddin Jallaloudine Haqqani (TAi.144). Liaises with the Taliban Supreme Council. Has travelled abroad. Liaises with and provides Taliban commanders in Ghazni Province, Afghanistan, with money, weapons, communications equipment and supplies. Reportedly deceased as of 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UNNotices-Individuals click here",Individual,AKA,Good quality,Afghanistan,29/03/2012,06/01/2012,01/02/2021,12457 +ZADRAN,MUHAMMAD,OMAR,,,,(1) Maulavi (2) Mullah,محمد عمر ځدران,,,00/00/1958,"Sultan Kheyl Village, Spera District, Khost Province",Afghanistan,,,,,,,,,,,,,,Afghanistan,"(UK Sanctions List Ref):AFG0137 (UN Ref):TAi.171 Haqqani Network (HQN) (TAe.012) leader in command of over 100 militants active in Khost Province, Afghanistan as of 2013. Involved in the preparation of attacks against Afghan and international forces in Afghanistan. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-wework/Notices/View-UN-Notices-Individuals click here. Pakistan Border Area",Individual,Primary name,,Afghanistan,31/07/2014,31/07/2014,01/02/2021,13146 +ZAGHRAYBA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZAGHRAYBAH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZAGHRAYBE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZAHARCHENKO,Vitali,Yurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAHARCHENKO,Vitali,Yur'yevich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAHARCHENKO,Vitalii,Iurevich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAHARCHENKO,Vitalii,Iurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAHARCHENKO,Vitalij,Jur'evich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAHARCHENKO,Vitalij,Jurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAHARCHENKO,Vitalij,Yur'evich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAHARCHENKO,Vitalijj,Jur'evich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAHARCHENKO,Vitalijj,Jurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAHARCHENKO,Vitaliy,Yurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAHARCHENKO,Vitaliy,Yur'yevich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAHARCHENKO,Vitaly,Yurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAHARCHENKO,Vitaly,Yuryevich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAHARCHENKO,Vitaly,Yur'yevich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAHED,ABDUL RAHMAN,,,,,Mullah,عبدالرحمان زاهد,,,00/00/1963,"Kharwar District, Logar Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Foreign Affairs under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0031 (UN Ref):TAi.033 Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7557 +ZAHEDI,Mohammad,Raza,,,,,,,,00/00/1944,Isfahan,Iran,,,,,,(1) Brigadier General (2) Commander of IRGC Ground Forces,,,,,,,,,"(UK Sanctions List Ref):INU0206 (UN Ref):IRi.042 [Old Reference # I.47.D.3] (UK Statement of Reasons):As a Commander in the IRGC Qods Force, Mohammad Reza ZAHEDI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9059 +ZAHEDI,Mohammad,Raza,,,,,,,,,Isfahan,Iran,,,,,,(1) Brigadier General (2) Commander of IRGC Ground Forces,,,,,,,,,"(UK Sanctions List Ref):INU0206 (UN Ref):IRi.042 [Old Reference # I.47.D.3] (UK Statement of Reasons):As a Commander in the IRGC Qods Force, Mohammad Reza ZAHEDI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9059 +ZAHEDI,Mohammad,Raza,,,,,,,,02/11/1960,Isfahan,Iran,,,,,,(1) Brigadier General (2) Commander of IRGC Ground Forces,,,,,,,,,"(UK Sanctions List Ref):INU0206 (UN Ref):IRi.042 [Old Reference # I.47.D.3] (UK Statement of Reasons):As a Commander in the IRGC Qods Force, Mohammad Reza ZAHEDI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9059 +ZAHEDI,MOHAMMAD,REZA,,,,,,,,00/00/1944,Isfahan,Iran,,,,,,(1) Brigadier General (2) Commander of IRGC Ground Forces,,,,,,,,,"(UK Sanctions List Ref):INU0206 (UN Ref):IRi.042 [Old Reference # I.47.D.3] (UK Statement of Reasons):As a Commander in the IRGC Qods Force, Mohammad Reza ZAHEDI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9059 +ZAHEDI,MOHAMMAD,REZA,,,,,,,,,Isfahan,Iran,,,,,,(1) Brigadier General (2) Commander of IRGC Ground Forces,,,,,,,,,"(UK Sanctions List Ref):INU0206 (UN Ref):IRi.042 [Old Reference # I.47.D.3] (UK Statement of Reasons):As a Commander in the IRGC Qods Force, Mohammad Reza ZAHEDI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9059 +ZAHEDI,MOHAMMAD,REZA,,,,,,,,02/11/1960,Isfahan,Iran,,,,,,(1) Brigadier General (2) Commander of IRGC Ground Forces,,,,,,,,,"(UK Sanctions List Ref):INU0206 (UN Ref):IRi.042 [Old Reference # I.47.D.3] (UK Statement of Reasons):As a Commander in the IRGC Qods Force, Mohammad Reza ZAHEDI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9059 +ZAHID,Abdul Rehman,,,,,,,,,00/00/1963,"Kharwar District, Logar Province",Afghanistan,Afghanistan,,,,,Deputy Minister of Foreign Affairs under the Taliban regime,,,,,,,,,(UK Sanctions List Ref):AFG0031 (UN Ref):TAi.033 Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here,Individual,AKA,Good quality,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7557 +ZAHID,MOHAMMAD,,,,,Mullah,محمد زاهد,,,00/00/1971,Logar Province,Afghanistan,Afghanistan,D 001206,Afghanistan number. Issued on 17 Jul. 2000.,,,"Third Secretary, Taliban Embassy, Islamabad, Pakistan",,,,,,,,,(UK Sanctions List Ref):AFG0097 (UN Ref):TAi.127 Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council resolution 1822 (2008) was concluded on 29 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ How-we-work/Notices/View-UN-Notices-Individuals click here,Individual,Primary name,,Afghanistan,23/02/2001,25/01/2001,01/02/2021,7558 +ZAHIDI,Mohammad,Reza,,,,,,,,00/00/1944,Isfahan,Iran,,,,,,(1) Brigadier General (2) Commander of IRGC Ground Forces,,,,,,,,,"(UK Sanctions List Ref):INU0206 (UN Ref):IRi.042 [Old Reference # I.47.D.3] (UK Statement of Reasons):As a Commander in the IRGC Qods Force, Mohammad Reza ZAHEDI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9059 +ZAHIDI,Mohammad,Reza,,,,,,,,,Isfahan,Iran,,,,,,(1) Brigadier General (2) Commander of IRGC Ground Forces,,,,,,,,,"(UK Sanctions List Ref):INU0206 (UN Ref):IRi.042 [Old Reference # I.47.D.3] (UK Statement of Reasons):As a Commander in the IRGC Qods Force, Mohammad Reza ZAHEDI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9059 +ZAHIDI,Mohammad,Reza,,,,,,,,02/11/1960,Isfahan,Iran,,,,,,(1) Brigadier General (2) Commander of IRGC Ground Forces,,,,,,,,,"(UK Sanctions List Ref):INU0206 (UN Ref):IRi.042 [Old Reference # I.47.D.3] (UK Statement of Reasons):As a Commander in the IRGC Qods Force, Mohammad Reza ZAHEDI is a member of, or associated with, a person who is or has been involved in a relevant nuclear activity for the purposes of the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9059 +ZAHRA,Abu,,,,,,,,,05/04/1975,,Indonesia,Indonesia,A2062513,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0154 (UN Ref):QDi.349 A senior leader of Jemaah Islamiyah (QDe.092) who has held leadership positions in Hilal Ahmar Society Indonesia (HASI) (QDe.147). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5854969,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/03/2015,13/03/2015,31/12/2020,13243 +ZAHRA,Pak,,,,,,,,,05/04/1975,,Indonesia,Indonesia,A2062513,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0154 (UN Ref):QDi.349 A senior leader of Jemaah Islamiyah (QDe.092) who has held leadership positions in Hilal Ahmar Society Indonesia (HASI) (QDe.147). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5854969,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/03/2015,13/03/2015,31/12/2020,13243 +ZAHRANI,Abu,Sara,,,,,,,,19/01/1986,,,Saudi Arabia,(1) G579315 (2) K142736,"(1) Saudi Arabia (2) Saudi Arabia. issued on 14 Jul. 2011 in Al-Khafji, Saudi Arabia",,,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0172 (UN Ref):QDi.392 Was the lead oil and gas division official of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115), for Al Barakah Governorate, Syrian Arab Republic, as of May 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5943051",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/04/2016,20/04/2016,11/02/2022,13351 +ZAIMECHE,Abderrezak,,,,,,,,,01/01/1968,(1) Kef Rih (2) Guelma,(1) Algeria (2) Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0303 (UN Ref):QDi.152 In detention in Algeria since Oct. 2004. Former member of the GSPC listed as The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. El Para (combat name), Abderrezak Le Para (combat name).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/12/2003,04/12/2003,16/02/2022,7890 +ZAIMECHE,Abderrezak,,,,,,,,,24/04/1968,(1) Kef Rih (2) Guelma,(1) Algeria (2) Algeria,Algeria,,,,,,,,,,,,,Algeria,"(UK Sanctions List Ref):AQD0303 (UN Ref):QDi.152 In detention in Algeria since Oct. 2004. Former member of the GSPC listed as The Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals. El Para (combat name), Abderrezak Le Para (combat name).",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,05/12/2003,04/12/2003,16/02/2022,7890 +ZAINAL ARIFIN,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Gebang,Kecamatan Masaran,Kabupaten Sragen,,,Jawa Tengah,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ZAINAL ARIFIN,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Taman Fajar,Kecamatan Probolinggo,Kabupaten Lampung Timur,,,Lampung,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ZAIROVA,Nigina,,,,,,,,,14/11/1987,Tashkent,Uzbekistan,Uzbekistan,,,,,(1) Executive Assistant at Athlone House Ltd (2) Project Manager at Reashon Holding Ltd,Flat 12,Stafford Place,,,,London,SW1E 6NL,United Kingdom,"(UK Sanctions List Ref):RUS1336 (UK Statement of Reasons):Nigina ZAIROVA is associated with Mikhail FRIDMAN, who was designated by the UK under the Russia (Sanctions) (EU Exit) Regulations 2019 on 24 March 2022. ZAIROVA held positions as a director in two entities owned by FRIDMAN, Athlone House Ltd and Reashon Holdings Ltd. On 2 March 2022 FRIDMAN ceased to be the legal owner of both entities, together with a third entity, Reashon Ltd, and on the same day ZAIROVA became the legal owner of all three entities. There is no evidence that these were arms-length transactions. As such, there are reasonable grounds to suspect that ZAIROVA is acting on behalf or at the direction of FRIDMAN. ZAIROVA is therefore associated with and/or acting on the behalf of or at the direction of a person involved in destabilising Ukraine or undermining or threatening the territorial integrity, sovereignty or independence of Ukraine, or obtaining a benefit from or supporting the Government of Russia. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,13/04/2022,15274 +ZAITOUN,Mohammed,Deeb,,,,,,,,20/05/1951,"Jubba, Damascus province",Syria,Syria,D000001300,,,,"Former Head of General Intelligence Directorate (a.k.a General Security Directorate, State Security)",,,,,,,,,(UK Sanctions List Ref):SYR0174 (UK Statement of Reasons):Former Head of General Security Directorate; involved in violence against demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,13/05/2022,11907 +ZAITOUN,Muhammad,Deeb,,,,,,,,20/05/1951,"Jubba, Damascus province",Syria,Syria,D000001300,,,,"Former Head of General Intelligence Directorate (a.k.a General Security Directorate, State Security)",,,,,,,,,(UK Sanctions List Ref):SYR0174 (UK Statement of Reasons):Former Head of General Security Directorate; involved in violence against demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,13/05/2022,11907 +ZAITOUN,Muhammad,Dib,,,,,,,,20/05/1951,"Jubba, Damascus province",Syria,Syria,D000001300,,,,"Former Head of General Intelligence Directorate (a.k.a General Security Directorate, State Security)",,,,,,,,,(UK Sanctions List Ref):SYR0174 (UK Statement of Reasons):Former Head of General Security Directorate; involved in violence against demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,13/05/2022,11907 +ZAKABLUK,Yuri,Mikhailovich,,,,,ЗАКАБЛЮК Юрий Михайлович,Cyrillic,Russian,19/08/1957,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1218 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15170 +ZAKABLUK,Yury,Mikhailovich,,,,,,,,19/08/1957,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1218 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15170 +ZAKARIA,Jasem,Mohamed,,,,,,,,00/00/1968,,,Syria,,,,,Former Minister of Labour and Social Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0107 (UK Statement of Reasons):Former Minister of Labour and Social Affairs shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12779 +ZAKARIA,Jasem,Mohammad,,,,,,,,00/00/1968,,,Syria,,,,,Former Minister of Labour and Social Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0107 (UK Statement of Reasons):Former Minister of Labour and Social Affairs shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12779 +ZAKARIA,Jasem,Mohammed,,,,,,,,00/00/1968,,,Syria,,,,,Former Minister of Labour and Social Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0107 (UK Statement of Reasons):Former Minister of Labour and Social Affairs shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12779 +ZAKARIA,Jasem,Muhammad,,,,,,,,00/00/1968,,,Syria,,,,,Former Minister of Labour and Social Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0107 (UK Statement of Reasons):Former Minister of Labour and Social Affairs shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12779 +ZAKARIA,Jassem,Mohamed,,,,,,,,00/00/1968,,,Syria,,,,,Former Minister of Labour and Social Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0107 (UK Statement of Reasons):Former Minister of Labour and Social Affairs shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12779 +ZAKARIA,Jassem,Mohammad,,,,,,,,00/00/1968,,,Syria,,,,,Former Minister of Labour and Social Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0107 (UK Statement of Reasons):Former Minister of Labour and Social Affairs shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,16/10/2012,31/12/2020,13/05/2022,12779 +ZAKARIA,Jassem,Mohammed,,,,,,,,00/00/1968,,,Syria,,,,,Former Minister of Labour and Social Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0107 (UK Statement of Reasons):Former Minister of Labour and Social Affairs shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12779 +ZAKARIA,Jassem,Muhammad,,,,,,,,00/00/1968,,,Syria,,,,,Former Minister of Labour and Social Affairs,,,,,,,,,(UK Sanctions List Ref):SYR0107 (UK Statement of Reasons):Former Minister of Labour and Social Affairs shares responsibility for the regime’s violent repression against the civilian population. (Gender):Male,Individual,Primary name variation,,Syria,16/10/2012,31/12/2020,13/05/2022,12779 +ZAKARIYA,,,,,,,,,,14/07/1970,Tunis,Tunisia,Tunisia,M408665,Tunisian. Issued on 4 October 2000. Expired on 3 October 2005,(1) BNSDLA70L14Z352B (2) W334061,(1) Italian fiscal code (2) Tunisian national identity number. Issued on 9 March 2011,,,,,,,,,Tunisia,(UK Sanctions List Ref):AQD0119 (UN Ref):QDi.068 Deported from Italy to Tunisia on 28 February 2004. Serving a 12-year prison sentence in Tunisia for membership in a terrorist organization abroad as at Jan. 2010. Arrested in Tunisia in 2013. Legally changed family name from Ben Soltane to Hamdi in 2014. Review pursuant to Security Council resolution 1822 (2008) was concluded on 21 Jun. 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,05/09/2002,03/09/2002,31/12/2020,7092 +ZAKHARCHENKO,Vitali,Yurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAKHARCHENKO,Vitali,Yur'yevich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAKHARCHENKO,Vitalii,Iurevich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAKHARCHENKO,Vitalii,Iurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAKHARCHENKO,Vitalij,Jur'evich,,,,,Захарченко Виталий Юриевич,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAKHARCHENKO,Vitalij,Jurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAKHARCHENKO,Vitalij,Yur'evich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAKHARCHENKO,Vitalijj,Jur'evich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAKHARCHENKO,Vitalijj,Jurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAKHARCHENKO,Vitaliy,Yurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAKHARCHENKO,Vitaliy,Yur'yevich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAKHARCHENKO,Vitaly,Yurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAKHARCHENKO,Vitaly,Yuryevich,,,,,Захарченко Виталий Юрьевич,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAKHARCHENKO,Vitaly,Yur'yevich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAKHAROV,Konstantin,Yurievich,,,,,Захаров Константин Юрьевич,,,31/03/1973,Nizhny Tagil,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0386 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14331 +ZAKHAROVA,Maria,Vladimirovna,,,,,ЗАХАРОВА Мария Владимировна,Cyrillic,Russian,24/12/1975,Moscow,Russia,Russia,,,,,Director of the Information and Press Department of the Ministry of Affairs of the Russian Federation,Ministry of Foreign Affairs,,,,,,,,"(UK Sanctions List Ref):RUS0703 (UK Statement of Reasons):Maria ZAKHAROVA is the Russian Ministry of Foreign Affairs Spokesperson and vocal supporter of the Government of Russia in Russian media.  In articles and interviews, Maria ZAKHAROVA has promoted policies or actions which destabilise Ukraine or undermine or threaten the territorial integrity, sovereignty and independence of Ukraine, and supported the Government of Russia.  (Gender):Female",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14654 +ZAKIR,,,,,,,,,,00/00/1953,"(1) Baghran District, Helmand Province. (2) Now Zad District, Helmand Province",(1) Afghanistan. (2) Afghanistan,Afghanistan,,,,,Governor of Helmand Province under the Taliban regime,,,,,,,,,"(UK Sanctions List Ref):AFG0072 (UN Ref):TAi.094 Member of the Taliban Supreme Council as of 2009. Believed to be in Afghanistan/Pakistan border area. Belongs to Alokozai tribe. Member of Taliban leadership in Helmand Province, Afghanistan. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/ Notices/View-UN-Notices-Individuals click here",Individual,AKA,Low quality,Afghanistan,02/04/2001,23/02/2001,01/02/2021,6905 +ZAKIR,,,,,,Qari,,,,00/00/1969,Kabul Province,Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0130 (UN Ref):TAi.164 Chief of suicide operations for the Haqqani Network (TAe.012) under Sirajuddin Jallaloudine Haqqani (TAi.144) and in charge of all operations in Kabul, Takhar, Kunduz and Baghlan provinces. Oversees training of suicide attackers and provides instructions on how to construct improvised explosives devices (IEDs). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,06/12/2012,05/11/2012,01/02/2021,12810 +ZAKIR,,,,,,Qari,,,,00/00/1970,Kabul Province,Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0130 (UN Ref):TAi.164 Chief of suicide operations for the Haqqani Network (TAe.012) under Sirajuddin Jallaloudine Haqqani (TAi.144) and in charge of all operations in Kabul, Takhar, Kunduz and Baghlan provinces. Oversees training of suicide attackers and provides instructions on how to construct improvised explosives devices (IEDs). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,06/12/2012,05/11/2012,01/02/2021,12810 +ZAKIR,,,,,,Qari,,,,00/00/1971,Kabul Province,Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0130 (UN Ref):TAi.164 Chief of suicide operations for the Haqqani Network (TAe.012) under Sirajuddin Jallaloudine Haqqani (TAi.144) and in charge of all operations in Kabul, Takhar, Kunduz and Baghlan provinces. Oversees training of suicide attackers and provides instructions on how to construct improvised explosives devices (IEDs). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,AKA,Good quality,Afghanistan,06/12/2012,05/11/2012,01/02/2021,12810 +ZAKIR,ABDUL RAUF,,,,,Qari,عبد الروف ذاکر,,,00/00/1969,Kabul Province,Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0130 (UN Ref):TAi.164 Chief of suicide operations for the Haqqani Network (TAe.012) under Sirajuddin Jallaloudine Haqqani (TAi.144) and in charge of all operations in Kabul, Takhar, Kunduz and Baghlan provinces. Oversees training of suicide attackers and provides instructions on how to construct improvised explosives devices (IEDs). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,06/12/2012,05/11/2012,01/02/2021,12810 +ZAKIR,ABDUL RAUF,,,,,Qari,عبد الروف ذاکر,,,00/00/1970,Kabul Province,Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0130 (UN Ref):TAi.164 Chief of suicide operations for the Haqqani Network (TAe.012) under Sirajuddin Jallaloudine Haqqani (TAi.144) and in charge of all operations in Kabul, Takhar, Kunduz and Baghlan provinces. Oversees training of suicide attackers and provides instructions on how to construct improvised explosives devices (IEDs). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,06/12/2012,05/11/2012,01/02/2021,12810 +ZAKIR,ABDUL RAUF,,,,,Qari,عبد الروف ذاکر,,,00/00/1971,Kabul Province,Afghanistan,Afghanistan,,,,,,,,,,,,,,"(UK Sanctions List Ref):AFG0130 (UN Ref):TAi.164 Chief of suicide operations for the Haqqani Network (TAe.012) under Sirajuddin Jallaloudine Haqqani (TAi.144) and in charge of all operations in Kabul, Takhar, Kunduz and Baghlan provinces. Oversees training of suicide attackers and provides instructions on how to construct improvised explosives devices (IEDs). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here",Individual,Primary name,,Afghanistan,06/12/2012,05/11/2012,01/02/2021,12810 +ZALOMIKHINA,Larisa,,,,,,,,,,,,,,,,,Director of the Compliance Department at Sberbank,,,,,,,,,"(UK Sanctions List Ref):RUS1602 (UK Statement of Reasons):Larisa Zalomikhina is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK). (Gender):Female",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15546 +ZAMAAT MODZHAKHEDOV TSENTRALNOY ASII,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0051 (UN Ref):QDe.119 Founded and led by Najmiddin Kamolitdinovich Jalolov (deceased) and Suhayl Fatilloevich Buranov (deceased). Associated with the Islamic Movement of Uzbekistan (QDe.010) and Emarat Kavkaz (QDe.131). Active in the Afghanistan/Pakistan border area, Central Asia, South Asia region and some European States. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 May 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5278465",Entity,AKA,,ISIL (Da'esh) and Al-Qaida,06/06/2005,01/06/2005,31/12/2020,8652 +ZAMEL,Ghassan,,,,,,,,,00/00/1963,Damascus,Syria,Syria,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0371 (UK Statement of Reasons):Minister of Electricity. Appointed in August 2020. As a Government Minister shares responsibility for the Syrian regime's violent repression against the civilian population. (Gender):Male,Individual,Primary name,,Syria,06/11/2020,31/12/2020,31/12/2020,14001 +ZAMLELOVA,Svetlana,Georgiyevna,,,,,Светлана Георгиевна Замлелова,Cyrillic,Russian,22/08/1973,Almaty,Kazakhstan,Russia,,,,,Writer; editor-in-chief of Journal Kamerton,,,,,,,,,"(UK Sanctions List Ref):RUS1110 (UK Statement of Reasons):As a writer and editor, Svetlana ZAMLELOVA has supported policies and actions that destabilise Ukraine and undermine its territorial integrity and sovereignty. (Email address):svetlana-zamlelova@yandex.ru (Gender):Female",Individual,Primary name,,Russia,31/03/2022,31/03/2022,24/05/2022,15057 +ZAMRINI,Muhammed,,,,,,,,,,,,Syria,,,,,Branch Chief for Syrian Military Intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0180 (UK Statement of Reasons):Branch Chief for Syrian Military Intelligence (SMI) in Homs. Directly involved in repression and violence against the civilian population in Homs. (Gender):Male,Individual,Primary name,,Syria,24/08/2011,31/12/2020,13/05/2022,12049 +ZANJIREI,Mohammad,Ali,,,,,,,,,,,,,,,,Senior advisor to Head and Deputy Head of Iran's Prisons Organisation,,,,,,,,,"(UK Sanctions List Ref):IHR0052 (UK Statement of Reasons):As Senior Advisor to Head, and Deputy Head of Iran's Prisons Organisation, responsible for serious human rights violations against prisoners. Administered a system in which prisoners suffered abuse, torture and inhuman/degrading treatment and were accommodated in very poor living conditions. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/04/2011,31/12/2020,31/12/2020,11808 +ZAREER,Nazih,,,,,,,,,,,,,,,,,Deputy Director of General Intelligence Directorate,,,,,,,,,(UK Sanctions List Ref):SYR0192 (UK Statement of Reasons):Deputy Director of General Intelligence Directorate. Responsible for the use of violence across Syria and intimidation and torture of protestors. (Gender):Male,Individual,Primary name,,Syria,15/11/2011,31/12/2020,31/12/2020,12221 +ZAREPOUR,Eisa,,,,,,,,,00/00/1980,,Iran,Iran,,,,,Minister of Information and Communications Technology,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0092 (UK Statement of Reasons):Issa Zarepour is the Minister of Information and Communications Technology. In this role he is or has been involved in the commission of serious human rights violations in Iran, including being responsible for, engaging in and promoting violations of the right to freedom of expression and peaceful assembly. (Gender):Male",Individual,Primary name variation,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15612 +ZAREPOUR,Issa,,,,,,عیسی زارع پور,,Persian,00/00/1980,,Iran,Iran,,,,,Minister of Information and Communications Technology,,,,,,Tehran,,Iran,"(UK Sanctions List Ref):IHR0092 (UK Statement of Reasons):Issa Zarepour is the Minister of Information and Communications Technology. In this role he is or has been involved in the commission of serious human rights violations in Iran, including being responsible for, engaging in and promoting violations of the right to freedom of expression and peaceful assembly. (Gender):Male",Individual,Primary name,,Iran (Human Rights),14/11/2022,14/11/2022,14/11/2022,15612 +ZARGA,,,,,,,,,,15/01/1973,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +ZARGA,,,,,,,,,,15/01/1974,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +ZARGA,,,,,,,,,,31/03/1975,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +ZARGHAMI,Ezzatollah,,,,,,,,,22/07/1959,Dezful,Iran,,,,,,"(1) Minister of Cultural Heritage, Handicrafts and Tourism (2) Member of the Supreme Cyberspace Council and Cultural Revolution Council (3) Former Head of Islamic Republic of Iran Broadcasting (IRIB) until November 2014",,,,,,,,,"(UK Sanctions List Ref):IHR0028 (UK Statement of Reasons):Member of the Supreme Cyberspace Council and Cultural Revolution Council. Former Head of Islamic Republic of Iran Broadcasting (IRIB) until November 2014. Under his tenure at IRIB, he was responsible for all programming decisions. IRIB has broadcast forced confessions of detainees and a series of ‘show trials’ in August 2009 and December 2011. These constitute a clear violation of international provisions on fair trial and the right to due process. (Gender):Male",Individual,Primary name,,Iran (Human Rights),29/03/2012,31/12/2020,28/01/2022,12646 +ZARKAOUI,IMED,BEN MEKKI,,,,,عماد بن مكي زرقاوي,,,15/01/1973,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +ZARKAOUI,IMED,BEN MEKKI,,,,,عماد بن مكي زرقاوي,,,15/01/1974,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +ZARKAOUI,IMED,BEN MEKKI,,,,,عماد بن مكي زرقاوي,,,31/03/1975,(1) Tunis (2) - (3) -,(1) Tunisia (2) Morocco (3) Algeria,Tunisia,M174950,"Issue date: 27/04/1999, expiry date: 26/04/2004",,,,41-45 Rue Estienne d’Orves,Pré Saint Gervais,,,,,,France,(UK Sanctions List Ref):AQD0204 (UN Ref):QDi.139 Mother’s name is Zina al-Zarkaoui. Sentenced to seven years and one month of imprisonment by the Court of Appeals of Milan in Italy. Released on 31 Mar. 2014 on early release. Review pursuant to Security Council resolution 1822 (2008) was concluded on 6 May 2010. Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,18/11/2003,12/11/2003,31/12/2020,7876 +ZARYA BATTALION,,,,,,,,,,,,,,,,,,,,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS0207 Names of Director(s)/Management: Igor Plotnitsky. reportedly part of the so-called‘2nd Army Corps’ of the ‘Lugansk People’s Republic’ (UK Statement of Reasons):Armed separatist group which has actively supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and to further destabilise Ukraine. Reportedly part of the so-called “2nd Army Corps” of the “Lugansk People’s Republic”. (Type of entity):Armed Separatist Group",Entity,Primary name,,Russia,16/02/2015,31/12/2020,31/12/2020,13221 +ZATSEPILINA,Anna,Yakovlena,,,,,Анна Яковлевна Зацепилина,,,,,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1458 (UK Statement of Reasons):Anna ZATSEPILINA (henceforth ZATSEPILINA) is the grandmother of Alina KABAEVA, the Chair of the Board of Directors at Russia’s National Media Group. ZATSEPILINA is also associated with Gennady TIMCHENKO, from whom she has received property. TIMCHENKO is a major shareholder in Bank Rossiya, and was sanctioned by the United Kingdom on the 22nd February 2022 for his provision of support for policies and actions which have destabilised and undermined or threatened the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/05/2022,13/05/2022,13/05/2022,15389 +ZATSEPLINA,Anna,Yakovlena,,,,,,,,,,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1458 (UK Statement of Reasons):Anna ZATSEPILINA (henceforth ZATSEPILINA) is the grandmother of Alina KABAEVA, the Chair of the Board of Directors at Russia’s National Media Group. ZATSEPILINA is also associated with Gennady TIMCHENKO, from whom she has received property. TIMCHENKO is a major shareholder in Bank Rossiya, and was sanctioned by the United Kingdom on the 22nd February 2022 for his provision of support for policies and actions which have destabilised and undermined or threatened the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/05/2022,13/05/2022,13/05/2022,15389 +ZATULIN,Konstantin,Fedorovich,,,,,Затулин Константин Федорович,,,07/09/1958,Batumi,Georgia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0385 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14330 +ZAUERS,Dmitri,Vladimirovich,,,,,,,,00/00/1979,,,Russia,,,,,Member of Gazprombank’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1626 (UK Statement of Reasons):Dmitry Vladimirovich Zauers is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15570 +ZAUERS,Dmitrii,Vladimirovich,,,,,,,,00/00/1979,,,Russia,,,,,Member of Gazprombank’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1626 (UK Statement of Reasons):Dmitry Vladimirovich Zauers is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name variation,,Russia,26/09/2022,26/09/2022,26/09/2022,15570 +ZAUERS,Dmitry,Vladimirovich,,,,,Дмитрий Владимирович Зауэрс,Cyrillic,Russian,00/00/1979,,,Russia,,,,,Member of Gazprombank’s Management Board,,,,,,,,,"(UK Sanctions List Ref):RUS1626 (UK Statement of Reasons):Dmitry Vladimirovich Zauers is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because he has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a manager or equivalent of an entity which is carrying on business in a sector of strategic significance to the Government of Russia, namely Gazprombank JSC which carries on business in the Russian financial services sector; (2) working as a manager or equivalent of a Government of Russia-affiliated entity, namely Gazprombank JSC. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15570 +ZAVARSE PABON,Fabio,,,,,,ZAVARSE PABÓN,,,04/10/1967,Caracas,Venezuela,Venezuela,32131710,,V-6.967.914,,Commander of the National Guard (GNB),,,,,,,,Venezuela,"(UK Sanctions List Ref):GHR0071 (UK Statement of Reasons):Fabio Zavarse has held several high-ranking positions within the Venezuelan Armed Forces during different waves of protests in Venezuela. The military, responding to these protests with excessive use of force, committed serious human rights violations, including violations of the right to life. Zavarse bears responsibility for the serious violations of human rights conducted by GNB forces under his command in Caracas in seeking to quell the protests in 2016 and 2017. (Gender):Male",Individual,Primary name,,Global Human Rights,10/12/2020,10/12/2020,11/11/2022,14011 +ZAVIZENOV,Konstantin,,,,,,Константин Завизенов,,Russian,00/00/1974,Perm,Russia,Russia,,,,,So-called ‘Minister of Energy’,,,,,,,,,"(UK Sanctions List Ref):RUS1563 (UK Statement of Reasons):Konstantin ZAVIZENOV is an involved person within the meaning of the Russia (Sanctions) (EU Exit) Regulations 2019 because he is the so-called Minister of Energy for the non-government controlled area of Ukraine known as the Luhansk People’s Republic. Through this role, ZAVIZENOV is or has engaged in policies or actions which destabilise Ukraine and undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15507 +ZAVIZON,Aleksey,Vladimirovich,,,,Lieutenant General,ЗАВИЗОН Алексей Владимирович,,,13/05/1965,Narva,Estonia,Russia,,,,,COS & Deputy Commander Western Military District,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0834 (UK Statement of Reasons):Lieutenant General Aleksey Vladimirovich ZAVIZON is a member of the Armed Forces of the Russian Federation, he currently holds the position of Chief of Staff and Deputy Commander Western Military District. He is considered to have been in direct command of and/or to have otherwise been involved in the deployment of Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14785 +ZAW,Aung,Kyaw,,,,Lieutenant General,,,,20/08/1961,,,Myanmar,DM000826,Date of Issue: 22 November 2011 Date of Expiry: 21 November 2021,BC 17444,,"(1) Chief of No 3 and No 5 Bureau of Special Operations, Office of the Commander-in-Chief of the Defense Services, Myanmar Army (2) Currently Chief of Bureau of Special Operations No 6",,,,,,Nay Pyi Taw,,Myanmar,"(UK Sanctions List Ref):MYA0002 (UK Statement of Reasons):Lieutenant General Aung Kyaw Zaw, commander of the Myanmar Army’s Bureau of Special Operations 3. Oversaw the Myanmar Army’s Western Command, which committed atrocities and serious human rights violations, repression of the civilian population, and actions that threaten the peace, stability or security of Myanmar against the Rohingya population in Rakhine state. Senior responsibility for abuses including extra judicial killings, repression of the civilian population, sexual violence and systematic burning of Rohingya houses and buildings. (Gender):Male",Individual,Primary name,,Myanmar,26/06/2018,29/04/2021,11/11/2022,13681 +ZAWIYAH,Osama,,,,,,,,,04/04/1976,Tripoli,Libya,Libya,,,,,Manager of Al Nasr Detention Centre in Zawiyah,,,,,,Zawiyah,,Libya,"(UK Sanctions List Ref):LIB0075 (UN Ref):LYi.029 As de factor manager of the Al Nasr detention centre the person concerned has directly, and/or through subordinates engaged in or provided support to acts that violate applicable international human rights law, or acts that consistute human rights abuses in Libya. The person concerned has acted for or on behalf of or at the direction of two listed individuals intrinsically linked to the human trafficking activities of the Zawiyah network, namely Mohamed Kashlaf (LYi.025) and Abdulrahman al Milad (LYi.026). For years, the Al Nasr detention centre in Zawiyah has been singled out in public and in confidential reports describing the plight of migrants and asylum seekers in Libya, including torture, sexual and gender-based violence and human trafficking. Humanitarian organisations and victims of trafficking have consistently identified the person concerned as the de facto manager of the detention centre. Three individuals who had been working in the Al Nasr detention centre were served prison sentences for torturing migrants in the detention centre. (Gender):Male",Individual,AKA,Good quality,Libya,26/10/2021,25/10/2021,26/10/2021,14142 +ZAWIYAH,Osama,,,,,,,,,04/04/1976,Tripoli,Libya,Libya,,,,,Manager of Al Nasr Detention Centre in Zawiyah,,,,,,Zawiyah,,Libya,"(UK Sanctions List Ref):LIB0075 (UN Ref):LYi.029 As de factor manager of the Al Nasr detention centre the person concerned has directly, and/or through subordinates engaged in or provided support to acts that violate applicable international human rights law, or acts that consistute human rights abuses in Libya. The person concerned has acted for or on behalf of or at the direction of two listed individuals intrinsically linked to the human trafficking activities of the Zawiyah network, namely Mohamed Kashlaf (LYi.025) and Abdulrahman al Milad (LYi.026). For years, the Al Nasr detention centre in Zawiyah has been singled out in public and in confidential reports describing the plight of migrants and asylum seekers in Libya, including torture, sexual and gender-based violence and human trafficking. Humanitarian organisations and victims of trafficking have consistently identified the person concerned as the de facto manager of the detention centre. Three individuals who had been working in the Al Nasr detention centre were served prison sentences for torturing migrants in the detention centre. (Gender):Male",Individual,AKA,Good quality,Libya,26/10/2021,25/10/2021,26/10/2021,14142 +ZAXARCHENKO,Vitali,Yurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAXARCHENKO,Vitali,Yur'yevich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAXARCHENKO,Vitalii,Iurevich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAXARCHENKO,Vitalii,Iurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAXARCHENKO,Vitalij,Jur'evich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAXARCHENKO,Vitalij,Jurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAXARCHENKO,Vitalij,Yur'evich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAXARCHENKO,Vitalijj,Jur'evich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAXARCHENKO,Vitalijj,Jurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAXARCHENKO,Vitaliy,Yurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAXARCHENKO,Vitaliy,Yur'yevich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAXARCHENKO,Vitaly,Yurievich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAXARCHENKO,Vitaly,Yuryevich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAXARCHENKO,Vitaly,Yur'yevich,,,,,,,,20/01/1963,"Kostiantynivka, Donetsk oblast",Ukraine,Ukraine,,,,,Former Minister of Internal Affairs,,,,,,,,,"(UK Sanctions List Ref):GHR0074 He is subject to US sanctions for his role in the Ukraine maidan protests.and EU sanctions for Misappropriaton of state assets (UK Statement of Reasons):Vitaly Zakharchenko, former Minister of Internal Affairs, ordered police to clear protesters in Kyiv with the use of firearms in February 2014, causing the deaths of protesters and constituting a violation of the right to life. As Minister for Internal Affairs he was in overall charge of and bore responsibility for the actions of Ukrainian law enforcement, which repeatedly used violence, including incidences of torture, and killed protesters as part of government policy to suppress the Maidan protest movement. He was in overall charge of departments responsible for investigating torture and killings of protesters, which failed to carry out this responsibility. (Gender):Male",Individual,Primary name variation,,Global Human Rights,06/03/2014,31/12/2020,31/12/2020,12893 +ZAYNIYAH,Jamal,Husayn,,,,,,,,17/08/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,Arsal,Bekaa,,Lebanon,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +ZAYNIYAH,Jamal,Husayn,,,,,,,,17/08/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +ZAYNIYAH,Jamal,Husayn,,,,,,,,01/01/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +ZAYNIYAH,Jamal,Husayn,,,,,,,,01/01/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,Arsal,Bekaa,,Lebanon,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +ZAYTUN,Mohammed,Deeb,,,,,,,,20/05/1951,"Jubba, Damascus province",Syria,Syria,D000001300,,,,"Former Head of General Intelligence Directorate (a.k.a General Security Directorate, State Security)",,,,,,,,,(UK Sanctions List Ref):SYR0174 (UK Statement of Reasons):Former Head of General Security Directorate; involved in violence against demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,13/05/2022,11907 +ZAYTUN,Muhammad,Deeb,,,,,,,,20/05/1951,"Jubba, Damascus province",Syria,Syria,D000001300,,,,"Former Head of General Intelligence Directorate (a.k.a General Security Directorate, State Security)",,,,,,,,,(UK Sanctions List Ref):SYR0174 (UK Statement of Reasons):Former Head of General Security Directorate; involved in violence against demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,13/05/2022,11907 +ZAYTUN,Muhammad,Dib,,,,,محمدديب,,,20/05/1951,"Jubba, Damascus province",Syria,Syria,D000001300,,,,"Former Head of General Intelligence Directorate (a.k.a General Security Directorate, State Security)",,,,,,,,,(UK Sanctions List Ref):SYR0174 (UK Statement of Reasons):Former Head of General Security Directorate; involved in violence against demonstrators. (Gender):Male,Individual,Primary name,,Syria,10/05/2011,31/12/2020,13/05/2022,11907 +ZDRILIUK,Serhii,Anatoliyovych,,,,,,,,23/06/1972,"Frontovka village, Vinnytsia region",Ukraine,(1) Russia. (2) Ukraine,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0159 (UK Statement of Reasons):Senior aid to Igor Strelkov / Girkin who is responsible for actions which undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. In taking on and acting in this capacity, Zdriliuk has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Remains active in supporting separatist actions and policies. (Gender):Male",Individual,Primary name,,Russia,25/07/2014,31/12/2020,31/12/2020,13066 +ZDRILIUK,Serhii,Anatoliyovych,,,,,,,,23/07/1972,"Frontovka village, Vinnytsia region",Ukraine,(1) Russia. (2) Ukraine,,,,,,,,,,,,,Ukraine,"(UK Sanctions List Ref):RUS0159 (UK Statement of Reasons):Senior aid to Igor Strelkov / Girkin who is responsible for actions which undermine or threaten the territorial integrity, sovereignty and independence of Ukraine. In taking on and acting in this capacity, Zdriliuk has therefore supported actions and policies which undermine the territorial integrity, sovereignty and independence of Ukraine. Remains active in supporting separatist actions and policies. (Gender):Male",Individual,Primary name,,Russia,25/07/2014,31/12/2020,31/12/2020,13066 +ZEBHI,Hossein,,,,,,,,,,,,,,,,,First Deputy Advisor to the Judiciary,,,,,,,,,(UK Sanctions List Ref):IHR0043 (UK Statement of Reasons):First Deputy Advisor to the Judiciary and Judge of the Supreme Court. Former Deputy to the Prosecutor-General of Iran (2007-15). In this role he was responsible for judicial cases brought after the post-election protests in 2009 which were conducted in contravention of human rights. Also in this role he has condoned excessive punishments for drug offences. (Gender):Male,Individual,Primary name,,Iran (Human Rights),12/10/2011,31/12/2020,31/12/2020,12196 +ZEGHRAYBA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZEGHRAYBAH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZEGHRAYBE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZEGHRAYBEH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZEID,Abdelhamid,Abou,,,,,,,,12/12/1965,"Deb-Deb, Amenas, Wilaya (province) of Illizi",Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0137 (UN Ref):QDi.250 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Located in Northern Mali as of Jun. 2008. Mother’s name is Benarouba Bachira. Father’s name is Mabrouk. He usurped the identity of Abid Hammadou, who allegedly died in Chad in 2004. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529259",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,11/02/2022,10691 +ZEID,Abdelhamid,Abou,,,,,,,,00/00/1958,"Deb-Deb, Amenas, Wilaya (province) of Illizi",Algeria,Algeria,,,,,,,,,,,,,,"(UK Sanctions List Ref):AQD0137 (UN Ref):QDi.250 Associated with the Organization of Al-Qaida in the Islamic Maghreb (QDe.014). Located in Northern Mali as of Jun. 2008. Mother’s name is Benarouba Bachira. Father’s name is Mabrouk. He usurped the identity of Abid Hammadou, who allegedly died in Chad in 2004. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529259",Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,07/07/2008,03/07/2008,11/02/2022,10691 +ZEIN,Hisyam,Bin,,,,,,,,20/07/1966,Central Java,Indonesia,Indonesia,,,,,,,,,,,,,Indonesia,(UK Sanctions List Ref):AQD0331 (UN Ref):QDi.294 Senior member of Jemaah Islamiyah (QDe.092) involved in planning and funding multiple terrorist attacks in the Philippines and Indonesia. Provided training to Abu Sayyaf Group (QDe.001). Convicted for his role in the 2002 Bali bombings and sentenced to 20 years in prison in Jun. 2012. Remains in custody in Indonesia as at May 2015. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4173385,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,01/08/2011,19/07/2011,12/01/2022,12021 +ZEINIYE,Jamal,Hussein,Hassan,,,,جمال حسين حسن زينيه,,,17/08/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +ZEINIYE,Jamal,Hussein,Hassan,,,,جمال حسين حسن زينيه,,,17/08/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,Arsal,Bekaa,,Lebanon,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +ZEINIYE,Jamal,Hussein,Hassan,,,,جمال حسين حسن زينيه,,,01/01/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,Arsal,Bekaa,,Lebanon,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +ZEINIYE,Jamal,Hussein,Hassan,,,,جمال حسين حسن زينيه,,,01/01/1972,(1) Benghazi (2) Al Tall (3) Tell Mnin,(1) Libya (2) Syria (3) Syria,Syria,3987189,Syrian Passport,(1) 13080011550 (2) 5877002,(1) - (2) Syrian. Issued 25 May 2011.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0363 (UN Ref):QDi.428 Leader of Al-Nusrah Front for the People of the Levant (QDe.137) in West Kalamoun, Syrian Arab Republic. Mother’s name is Amina Tohmeh. INTERPOL-UN Security Council Special Notice web link: www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals.",Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,09/10/2020,08/10/2020,31/12/2020,13967 +ZEITOUN,Mohammed,Deeb,,,,,,,,20/05/1951,"Jubba, Damascus province",Syria,Syria,D000001300,,,,"Former Head of General Intelligence Directorate (a.k.a General Security Directorate, State Security)",,,,,,,,,(UK Sanctions List Ref):SYR0174 (UK Statement of Reasons):Former Head of General Security Directorate; involved in violence against demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,13/05/2022,11907 +ZEITOUN,Mohammed,Dib,,,,,,,,20/05/1951,"Jubba, Damascus province",Syria,Syria,D000001300,,,,"Former Head of General Intelligence Directorate (a.k.a General Security Directorate, State Security)",,,,,,,,,(UK Sanctions List Ref):SYR0174 (UK Statement of Reasons):Former Head of General Security Directorate; involved in violence against demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,13/05/2022,11907 +ZEITOUN,Muhammad,Deeb,,,,,,,,20/05/1951,"Jubba, Damascus province",Syria,Syria,D000001300,,,,"Former Head of General Intelligence Directorate (a.k.a General Security Directorate, State Security)",,,,,,,,,(UK Sanctions List Ref):SYR0174 (UK Statement of Reasons):Former Head of General Security Directorate; involved in violence against demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,13/05/2022,11907 +ZEITOUN,Muhammad,Dib,,,,,,,,20/05/1951,"Jubba, Damascus province",Syria,Syria,D000001300,,,,"Former Head of General Intelligence Directorate (a.k.a General Security Directorate, State Security)",,,,,,,,,(UK Sanctions List Ref):SYR0174 (UK Statement of Reasons):Former Head of General Security Directorate; involved in violence against demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,13/05/2022,11907 +ZEITUN,Mohamed,Dib,,,,,,,,20/05/1951,"Jubba, Damascus province",Syria,Syria,D000001300,,,,"Former Head of General Intelligence Directorate (a.k.a General Security Directorate, State Security)",,,,,,,,,(UK Sanctions List Ref):SYR0174 (UK Statement of Reasons):Former Head of General Security Directorate; involved in violence against demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,13/05/2022,11907 +ZEITUN,Mohammed,Deeb,,,,,,,,20/05/1951,"Jubba, Damascus province",Syria,Syria,D000001300,,,,"Former Head of General Intelligence Directorate (a.k.a General Security Directorate, State Security)",,,,,,,,,(UK Sanctions List Ref):SYR0174 (UK Statement of Reasons):Former Head of General Security Directorate; involved in violence against demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,13/05/2022,11907 +ZEITUN,Muhammad,Deeb,,,,,,,,20/05/1951,"Jubba, Damascus province",Syria,Syria,D000001300,,,,"Former Head of General Intelligence Directorate (a.k.a General Security Directorate, State Security)",,,,,,,,,(UK Sanctions List Ref):SYR0174 (UK Statement of Reasons):Former Head of General Security Directorate; involved in violence against demonstrators. (Gender):Male,Individual,Primary name variation,,Syria,10/05/2011,31/12/2020,13/05/2022,11907 +ZERIR,Nazih,,,,,,,,,,,,,,,,,Deputy Director of General Intelligence Directorate,,,,,,,,,(UK Sanctions List Ref):SYR0192 (UK Statement of Reasons):Deputy Director of General Intelligence Directorate. Responsible for the use of violence across Syria and intimidation and torture of protestors. (Gender):Male,Individual,Primary name variation,,Syria,15/11/2011,31/12/2020,31/12/2020,12221 +ZGBYE,Meri,Albdelfattah,,,,,,,,04/06/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZGBYE,Meri,Albdelfattah,,,,,,,,13/11/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZGBYE,Meri,Albdelfattah,,,,,,,,11/08/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZGBYE,Meri,Albdelfattah,,,,,,,,04/04/1969,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZGBYE,Meri,Albdelfattah,,,,,,,,04/04/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZGBYE,Meri,Albdelfattah,,,,,,,,14/01/1968,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZGHA'IB,Walid,,,,,,,,,,,,Syria,,,,,Head of Institute 2000 of the SSRC,,,,,,,,,"(UK Sanctions List Ref):CHW0002 Important employee at Scientific Studies and Research Centre (listed under both the Syria and Chemical Weapons sanctions regimes). Works under Amr Armanazi and Salam Tohme (both listed under the Syria sanctions regime). (UK Statement of Reasons):Walid Zughaib is the Director of Institute 2000, the division of the Scientific Studies and Research Centre (SSRC) responsible for mechanical development and production for Syria’s chemical weapons programme. As a result of his senior position within Institute 2000, he is also associated with the designated entity SSRC. (Gender):Male",Individual,Primary name variation,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13746 +ZGHRAYBA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZGHRAYBIH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZGHRAYBIH,Khalil,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,Primary name,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZGRAYBE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZGRAYBEH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZHAMSUYEV,Bair,Bayaskhalanovich,,,,,Баир Баясхаланович ЖАМСУЕВ,,,29/01/1959,Aginskoye,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0892 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14843 +ZHANG,Shilong,,,,,,,,,10/09/1981,,,China,,,,,,,,,,,,,,"(UK Sanctions List Ref):CYB0002 (UK Statement of Reasons):Zhang Shilong was involved in relevant cyber activity through his employment with Huaying Haitai, and therefore being responsible for, engaging in, providing support for, or promoting the commission, planning or preparation of relevant cyber activity. (Gender):Male",Individual,Primary name,,Cyber,31/07/2020,31/12/2020,31/12/2020,13904 +ZHAROV,Aleksandr,Aleksandrovich,,,,,Алекса́ндр Алекса́ндрович ЖА́РОВ,,,11/08/1964,Chelyabinsk,Russia,Russia,,,,,CEO of Gazprom-Media Holding,,,,,,,,,"(UK Sanctions List Ref):RUS1115 (UK Statement of Reasons):Aleksandr ZHAROV is CEO and a member of the Board of Directors of Gazprom-Media Holding, which is a company obtaining a benefit from or supporting the Government of Russia by carrying on business [as a Government of Russia affiliated entity and carrying on business] in a sector of strategic significance to the Government of Russia, namely the information, communications and digitial technologies sector. (Gender):Male",Individual,Primary name,,Russia,31/03/2022,31/03/2022,31/03/2022,15062 +ZHAROV,Alexander,Aleksandrovich,,,,,,,,11/08/1964,Chelyabinsk,Russia,Russia,,,,,CEO of Gazprom-Media Holding,,,,,,,,,"(UK Sanctions List Ref):RUS1115 (UK Statement of Reasons):Aleksandr ZHAROV is CEO and a member of the Board of Directors of Gazprom-Media Holding, which is a company obtaining a benefit from or supporting the Government of Russia by carrying on business [as a Government of Russia affiliated entity and carrying on business] in a sector of strategic significance to the Government of Russia, namely the information, communications and digitial technologies sector. (Gender):Male",Individual,Primary name variation,,Russia,31/03/2022,31/03/2022,31/03/2022,15062 +ZHEINOVA,Marina,Nikolayevna,,,,,,,,15/02/1985,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1219 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15171 +ZHELEZNYAK,Sergei,Vladimirovich,,,,,Сергей Владимирович ЖЕЛЕЗНЯК,,,30/07/1970,St Petersburg (former Leningrad),Russia,Russia,,,,,(1) Former Member of the State Duma (2) Former member of the Foreign Affairs Committee of the State Duma,,,,,,,,Russia,(UK Sanctions List Ref):RUS0160 (UK Statement of Reasons):Former Deputy Speaker of the State Duma of the Russian Federation. Actively supported the use of Russian Armed Forces in Ukraine and the annexation of Crimea. He led personally the demonstration in support of the use of Russian Armed Forces in Ukraine. Former Deputy Chairperson and former member of the Foreign Affairs Committee of the State Duma of the Russian Federation. (Gender):Male,Individual,Primary name,,Russia,18/03/2014,31/12/2020,16/09/2022,12920 +ZHELTYAKOV,Mikhail,Vasilevich,,,,,ЖЕЛЬТЯКОВ Михаил Васильевич,Cyrillic,Russian,01/01/1961,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1141 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15093 +ZHELTYAKOV,Mikhail,Vasilyevich,,,,,,,,01/01/1961,,,,,,,,,2a st. Universitetskaya,,,,,Donetsk,,Ukraine,"(UK Sanctions List Ref):RUS1141 (UK Statement of Reasons):As a minister in the illegal separatist ‘government’ of the ‘Donetsk People’s Republic’, they have engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15093 +ZHEYNOVA,Marina,Nikolaevna,,,,,ЖЕЙНОВА Марина Николаевна,Cyrillic,Russian,15/02/1985,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1219 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15171 +ZHIDKO,Gennady,Valeryevich,,,,Colonel General,ЖИДКО Геннадий Валерьевич,,,12/09/1965,Yangiabad,Uzbek SSR,Russia,,,,,(1) Deputy Minister of Defence of the Russian Federation (2) Head of the Main Military and Political Directorate of the Armed Forces of the Russian Federation,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0837 (UK Statement of Reasons):Colonel General Gennadiy Valeryevich ZHIDKO is a member of the Armed Forces of the Russian Federation, he currently holds the position of Deputy Minister of Defence and further are Head of the Main Military and Political Directorate of the Armed Forces of the Russian Federation. He is considered to have been either in direct command of and/or otherwise involved in deployment of Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14788 +ZHIGULIN,Aleksei,Mikhailovich,,,,,ЖИГУЛИН Алексей Михайлович,Cyrillic,Russian,29/01/1979,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1220 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15172 +ZHIGULIN,Alexey,Mikhailovich,,,,,,,,29/01/1979,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1220 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15172 +ZHIRINOVSKY,Vladimir,Volfovich,,,,,Владимир Вольфович Жириновски,,,25/04/1946,,Kazakhstan,Russia,,,,,(1) Member of the Council of the State Duma (2) Liberal Democratic Party Of Russia,,,,,,,,,"(UK Sanctions List Ref):RUS0161 (UK Statement of Reasons):Member of the Council of the State Duma; leader of the LDPR party. He actively supported the use of Russian Armed Forces in Ukraine and annexation of Crimea. He has actively called for the split of Ukraine. He signed on behalf of the LDPR party he chairs an agreement with the so-called, ‘Donetsk People’s Republic’. (Gender):Male",Individual,Primary name,,Russia,12/09/2014,31/12/2020,16/09/2022,13104 +ZHU,HAILUN,,,,,,,,,00/01/1958,"Lianshui, Jangsu",China,China,,,,,(1) Former Deputy Secretary and Deputy Director of the Party Leadership Group of the Standing Committee of the People's Congress of Xinjiang Uyghur Autonomous Region (XUAR) (2) Previously Deputy Secretary of the Party Committee of XUAR (March 2016 - January 2019) (3) Secretary of the Political and Legal Affairs Committee (November 2016 - January 2019),,,,,,Xinjiang,,China,"(UK Sanctions List Ref):GHR0078 (UK Statement of Reasons):Zhu Hailun was a provincial-level Chinese Communist Party and State official in the Xinjiang Uyghur Autonomous Region (XUAR) between 2016 and 2019. Between 2016 and 2019, he was both Deputy Secretary of the Party Committee of the Xinjiang Uyghur Autonomous Region and Secretary of the Political and Legal Affairs Committee of the XUAR. In these positions, he was responsible for the administration of China's so called ""re-education"" policy in the XUAR and therefore has been responsible for serious violations of the right not to be subject to torture or cruel, inhuman or degrading treatment or punishment that have taken place in so called ""training centres"". (Gender):Male",Individual,Primary name,,Global Human Rights,22/03/2021,22/03/2021,01/04/2021,14078 +ZHUK,Andrey,,,,,Major General,Андрей Жук,,,06/08/1969,"Gorki, Mogilev region",Belarus,Belarus,,,,,Deputy Minister of Defence,Ministry of Defence of the Republic of Belarus,1 Kommunisticheskaya St.,,,,Minsk,220034,Belarus,"(UK Sanctions List Ref):RUS0260 (UK Statement of Reasons):As Deputy Minister of Defence, Major General Andrey Zhuk is an active and senior military leader in Belarus and, as part of the top-level chain of command, is responsible for directing the actions of the Belarusian armed forces, which have supported and enabled Russia’s invasion of Ukraine. The Belarusian armed forces have conducted joint military exercises with Russian armed forces, and also consented to the deployment of Russian troops along the border of Belarus with Ukraine, which has directly contributed to Russia’s ability to both threaten and attack Ukraine, including from positions in Belarus. Zhuk therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,01/03/2022,01/03/2022,01/03/2022,14206 +ZHUKOV,Mikhail,Valerievich,,,,,ЖУКОВ Михаил Валерьевич,Cyrillic,Russian,01/11/1978,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1221 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15173 +ZHUKOV,Mikhail,Valeryevich,,,,,,,,01/11/1978,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1221 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15173 +ZHUKOV,Alexander,Dmitrievich,,,,,Жуков Александр Дмитриевич,,,01/06/1956,Moscow,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0383 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14328 +ZHUKOVA,Anastasia,Gennadyevna,,,,,Анастасия Геннадьевна Жукова,,,11/08/1974,Novgorod,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS1002 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14953 +ZHURAUSKI,Leanid,Vyacheslavovich,,,,,ЖУРАВСКИЙ Леонид Вячеславович,,,20/09/1975,,,Belarus,,,,,Head of OMON (‘Special Purpose Police Detachment’) in Vitebsk/Viciebsk,,,,,,,,,"(UK Sanctions List Ref):BEL0022 (UK Statement of Reasons):Leanid Zhurauski is Commander of the Special Purpose Police Unit (OMON) of Vitebsk. In his role as Commander, Zhurauski bears responsibility for the actions of OMON officers in Vitebsk. Zhuravski is therefore responsible for the serious human rights violations that were carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators. (Gender):Male",Individual,Primary name,,Belarus,05/10/2020,31/12/2020,18/03/2022,13944 +ZHURAUSKI,Leonid,,,,,,ЖУРАЎСКІ Леанід Вячаслававіч,,,20/09/1975,,,Belarus,,,,,Head of OMON (‘Special Purpose Police Detachment’) in Vitebsk/Viciebsk,,,,,,,,,"(UK Sanctions List Ref):BEL0022 (UK Statement of Reasons):Leanid Zhurauski is Commander of the Special Purpose Police Unit (OMON) of Vitebsk. In his role as Commander, Zhurauski bears responsibility for the actions of OMON officers in Vitebsk. Zhuravski is therefore responsible for the serious human rights violations that were carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13944 +ZHURAVLEV,Alexey,Alexandrovich,,,,,Журавлев Алексей Александрович,,,30/06/1962,Voronezh,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0384 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14329 +ZHURAVLEVA,Tatyana,Vladimirovna,,,,,ЖУРАВЛЕВА Татьяна Владимировна,Cyrillic,Russian,19/12/1967,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1222 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name,,Russia,13/04/2022,13/04/2022,27/05/2022,15174 +ZHURAVLYOV,Alexander,Alexandrovich,,,,Colonel General,ЖУРАВЛЕВ Александр Александрович,,,02/12/1965,Golyshmanovo,Russia,Russia,,,,,Commander Western Military District,Kolymazhnyy Pereulok,,,,,Moscow,119019,Russia,"(UK Sanctions List Ref):RUS0830 (UK Statement of Reasons):Colonel General Alexander Alexandrovich ZHURAVLYOV is a member of the Armed Forces of the Russian Federation, he currently holds the position of Commander of the Western District. He is considered to have been in direct command of and/or to have otherwise been involved in the deployment of Russian forces involved in the Russian invasion of Ukraine. There are therefore reasonable grounds to suspect that he is a person who is responsible for, engages in, provides support for, or promotes any policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14781 +ZHURAVLYOV,Nikolai,Andreyevich,,,,,Николай Андреевич ЖУРАВЛЁВ,,,01/09/1976,Moscow,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0903 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14854 +ZHURAVLYOVA,Tatiana,Vladimirovna,,,,,,,,19/12/1967,,,,,,,,,97 Artema St,,,,,Donetsk,283001,Ukraine,"(UK Sanctions List Ref):RUS1222 (UK Statement of Reasons):As a member of the ‘Donetsk People’s Council’, the ‘legislature’ of the illegal separatist ‘Donetsk People’s Republic’, they are or have been engaged in policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Female",Individual,Primary name variation,,Russia,13/04/2022,13/04/2022,27/05/2022,15174 +ZHURAVSKI,Leanid,Vyacheslavovich,,,,,,,,20/09/1975,,,Belarus,,,,,Head of OMON (‘Special Purpose Police Detachment’) in Vitebsk/Viciebsk,,,,,,,,,"(UK Sanctions List Ref):BEL0022 (UK Statement of Reasons):Leanid Zhurauski is Commander of the Special Purpose Police Unit (OMON) of Vitebsk. In his role as Commander, Zhurauski bears responsibility for the actions of OMON officers in Vitebsk. Zhuravski is therefore responsible for the serious human rights violations that were carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13944 +ZHURAVSKI,Leonid,,,,,,,,,20/09/1975,,,Belarus,,,,,Head of OMON (‘Special Purpose Police Detachment’) in Vitebsk/Viciebsk,,,,,,,,,"(UK Sanctions List Ref):BEL0022 (UK Statement of Reasons):Leanid Zhurauski is Commander of the Special Purpose Police Unit (OMON) of Vitebsk. In his role as Commander, Zhurauski bears responsibility for the actions of OMON officers in Vitebsk. Zhuravski is therefore responsible for the serious human rights violations that were carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13944 +ZHURAVSKI,Leonid,Vyacheslavovich,,,,,,,,20/09/1975,,,Belarus,,,,,Head of OMON (‘Special Purpose Police Detachment’) in Vitebsk/Viciebsk,,,,,,,,,"(UK Sanctions List Ref):BEL0022 (UK Statement of Reasons):Leanid Zhurauski is Commander of the Special Purpose Police Unit (OMON) of Vitebsk. In his role as Commander, Zhurauski bears responsibility for the actions of OMON officers in Vitebsk. Zhuravski is therefore responsible for the serious human rights violations that were carried out by OMON officers following the election of 9 August, in particular arbitrary arrests and ill-treatment, including torture, of peaceful demonstrators. (Gender):Male",Individual,Primary name variation,,Belarus,05/10/2020,31/12/2020,18/03/2022,13944 +ZHUROVA,Svetlana,Sergeevna,,,,,Светлана Сергеевна Журова,,,07/01/1972,Pavlov-on-the-Neva,Russia,Russia,,,,,"First Deputy Chairperson of the Committeeon Foreign Affairs, State Duma",,,,,,,,Russia,"(UK Sanctions List Ref):RUS0162 (UK Statement of Reasons):First Deputy Chairman of the Committee on Foreign Affairs, State Duma. On 20 March 2014 Svetlana Sergeevna ZHUROVA voted in favour of the draft Federal Constitutional Law ‘on the acceptance into the Russian Federation of the Republic of Crimea and the formation within the Russian Federation of new federal subjects- the republic of Crimea and the City of Federal Status Sevastopol’. (Gender):Female",Individual,Primary name,,Russia,12/09/2014,31/12/2020,31/12/2020,13113 +ZHYVITSA,Alena,Aliaksandravna,,,,,Алена Аляксандравна ЖЫВIЦА,,,09/04/1990,,,Belarus,,,,,Senior Judge of the Oktyabrsky district court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0089 (UK Statement of Reasons):As a senior Judge of the Oktyabrsky district court in Minsk, Alena Zhyvitsa is responsible the widespread sentencing of journalists, demonstrators and political activists in politically motivated decisions and without fair and transparent court proceedings. This has repressed civil society and undermined democracy in Belarus. (Gender):Female",Individual,Primary name,,Belarus,18/02/2021,18/02/2021,18/02/2021,14020 +ZHYVITSA,Elena,Aleksandrovna,,,,,Елена Александровна ЖИВИЦА,,,09/04/1990,,,Belarus,,,,,Senior Judge of the Oktyabrsky district court in Minsk,,,,,,,,,"(UK Sanctions List Ref):BEL0089 (UK Statement of Reasons):As a senior Judge of the Oktyabrsky district court in Minsk, Alena Zhyvitsa is responsible the widespread sentencing of journalists, demonstrators and political activists in politically motivated decisions and without fair and transparent court proceedings. This has repressed civil society and undermined democracy in Belarus. (Gender):Female",Individual,Primary name variation,,Belarus,18/02/2021,18/02/2021,18/02/2021,14020 +ZIDANE,MOHAMMED,SALAHALDIN,ABD EL HALIM,,,,محمد صلاح الدين عبدالحليم زيدان,,,11/04/1963,Monufia Governate,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0312 (UN Ref):QDi.001 Responsible for Usama bin Laden’s (deceased) security. Hair: Dark. Eyes: Dark. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681065 click here,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7424 +ZIDANE,MOHAMMED,SALAHALDIN,ABD EL HALIM,,,,محمد صلاح الدين عبدالحليم زيدان,,,11/04/1960,Monufia Governate,Egypt,Egypt,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0312 (UN Ref):QDi.001 Responsible for Usama bin Laden’s (deceased) security. Hair: Dark. Eyes: Dark. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Review pursuant to Security Council resolution 1822 (2008) was concluded on 15 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4681065 click here,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,23/02/2001,25/01/2001,31/12/2020,7424 +ZIGHRAYBA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZIGHRAYBE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZIGHRAYBEH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZIMA,Pyotr,Anatoliyovych,,,,,Петр Зима,,,18/01/1970,"Artemivsk (now Bakhmut), Donetsk Oblast",Ukraine,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0163 (UK Statement of Reasons):Zima was appointed as the new head of the Crimean Security Service (SBU) on 3 March 2014 by ‘Prime Minister’ Aksyonov and accepted this appointment. He has given relevant information including a database to the Russian Intelligence Service (SBU). This included information on Euro-Maidan activists and human rights defenders of Crimea. He played a relevant role in preventing Ukraine’s authorities from controlling the territory of Crimea. On 11 March 2014 the formation of an independent Security Service of Crimea was proclaimed by former SBU officers of Crimea. Active since 2015 in the Russian Intelligence Service (FSB). (Gender):Male,Individual,Primary name,,Russia,18/03/2014,31/12/2020,19/01/2021,12927 +ZIMBABWE DEFENCE INDUSTRIES,,,,,,,,,,,,,,,,,,,PO Box 6597,10th Floor,Trustee House,55 Samora Machel Avenue,,Harare,,Zimbabwe,(UK Sanctions List Ref):ZIM0003 Business Sector: Defence (UK Statement of Reasons):Associated with the Government of Zimbabwe. (Type of entity):State-owned company,Entity,Primary name,,Zimbabwe,24/07/2008,31/12/2020,18/03/2022,10734 +ZIMULINDA,,,,,,,,,,01/09/1972,"(1) Masisi. (2) Ngungu, Masisi Territory, North Kivu Province",(1) Congo (Democratic Republic) (2) Congo (Democratic Republic),Congo (Democratic Republic),,,,,"M23, Bde Comd, Rank: Colonel and in the FARDC",,,,,Masisi Territory,North Kivu Province,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0038 (UN Ref):CDi.031 Integrated in the FARDC in 2009 as a Lieutenant Colonel, brigade commander in FARDC Kimia II Ops, based in Ngungu area. In July 2009, Zimurinda was promoted to full Colonel and became FARDC Sector commander in Ngungu and subsequently in Kitchanga in FARDC Kimia II and Amani Leo Operations. Whereas Zimurinda did not appear in the 31 December 2010 DRC Presidential ordinance nominating high FARDC officers, Zimurinda de facto maintained his command position of FARDC 22nd sector in Kitchanga and wears the newly issued FARDC rank and uniform. In December 2010, recruitment activities carried out by elements under the command of Zimurinda were denounced in open source reports. Entered the Republic of Rwanda on 16 March 2013. As of late 2014, residing in Ngoma camp, Rwanda. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275315 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,03/12/2010,01/12/2010,20/01/2021,11278 +ZIMULINDA,,,,,,,,,,00/00/1975,"(1) Masisi. (2) Ngungu, Masisi Territory, North Kivu Province",(1) Congo (Democratic Republic) (2) Congo (Democratic Republic),Congo (Democratic Republic),,,,,"M23, Bde Comd, Rank: Colonel and in the FARDC",,,,,Masisi Territory,North Kivu Province,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0038 (UN Ref):CDi.031 Integrated in the FARDC in 2009 as a Lieutenant Colonel, brigade commander in FARDC Kimia II Ops, based in Ngungu area. In July 2009, Zimurinda was promoted to full Colonel and became FARDC Sector commander in Ngungu and subsequently in Kitchanga in FARDC Kimia II and Amani Leo Operations. Whereas Zimurinda did not appear in the 31 December 2010 DRC Presidential ordinance nominating high FARDC officers, Zimurinda de facto maintained his command position of FARDC 22nd sector in Kitchanga and wears the newly issued FARDC rank and uniform. In December 2010, recruitment activities carried out by elements under the command of Zimurinda were denounced in open source reports. Entered the Republic of Rwanda on 16 March 2013. As of late 2014, residing in Ngoma camp, Rwanda. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275315 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,03/12/2010,01/12/2010,20/01/2021,11278 +ZIMULINDA,,,,,,,,,,16/03/1972,"(1) Masisi. (2) Ngungu, Masisi Territory, North Kivu Province",(1) Congo (Democratic Republic) (2) Congo (Democratic Republic),Congo (Democratic Republic),,,,,"M23, Bde Comd, Rank: Colonel and in the FARDC",,,,,Masisi Territory,North Kivu Province,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0038 (UN Ref):CDi.031 Integrated in the FARDC in 2009 as a Lieutenant Colonel, brigade commander in FARDC Kimia II Ops, based in Ngungu area. In July 2009, Zimurinda was promoted to full Colonel and became FARDC Sector commander in Ngungu and subsequently in Kitchanga in FARDC Kimia II and Amani Leo Operations. Whereas Zimurinda did not appear in the 31 December 2010 DRC Presidential ordinance nominating high FARDC officers, Zimurinda de facto maintained his command position of FARDC 22nd sector in Kitchanga and wears the newly issued FARDC rank and uniform. In December 2010, recruitment activities carried out by elements under the command of Zimurinda were denounced in open source reports. Entered the Republic of Rwanda on 16 March 2013. As of late 2014, residing in Ngoma camp, Rwanda. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275315 (Gender):Male",Individual,AKA,Low quality,Democratic Republic of the Congo,03/12/2010,01/12/2010,20/01/2021,11278 +ZIMURINDA,INNOCENT,,,,,,,,,01/09/1972,"(1) Masisi. (2) Ngungu, Masisi Territory, North Kivu Province",(1) Congo (Democratic Republic) (2) Congo (Democratic Republic),Congo (Democratic Republic),,,,,"M23, Bde Comd, Rank: Colonel and in the FARDC",,,,,Masisi Territory,North Kivu Province,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0038 (UN Ref):CDi.031 Integrated in the FARDC in 2009 as a Lieutenant Colonel, brigade commander in FARDC Kimia II Ops, based in Ngungu area. In July 2009, Zimurinda was promoted to full Colonel and became FARDC Sector commander in Ngungu and subsequently in Kitchanga in FARDC Kimia II and Amani Leo Operations. Whereas Zimurinda did not appear in the 31 December 2010 DRC Presidential ordinance nominating high FARDC officers, Zimurinda de facto maintained his command position of FARDC 22nd sector in Kitchanga and wears the newly issued FARDC rank and uniform. In December 2010, recruitment activities carried out by elements under the command of Zimurinda were denounced in open source reports. Entered the Republic of Rwanda on 16 March 2013. As of late 2014, residing in Ngoma camp, Rwanda. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275315 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,03/12/2010,01/12/2010,20/01/2021,11278 +ZIMURINDA,INNOCENT,,,,,,,,,00/00/1975,"(1) Masisi. (2) Ngungu, Masisi Territory, North Kivu Province",(1) Congo (Democratic Republic) (2) Congo (Democratic Republic),Congo (Democratic Republic),,,,,"M23, Bde Comd, Rank: Colonel and in the FARDC",,,,,Masisi Territory,North Kivu Province,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0038 (UN Ref):CDi.031 Integrated in the FARDC in 2009 as a Lieutenant Colonel, brigade commander in FARDC Kimia II Ops, based in Ngungu area. In July 2009, Zimurinda was promoted to full Colonel and became FARDC Sector commander in Ngungu and subsequently in Kitchanga in FARDC Kimia II and Amani Leo Operations. Whereas Zimurinda did not appear in the 31 December 2010 DRC Presidential ordinance nominating high FARDC officers, Zimurinda de facto maintained his command position of FARDC 22nd sector in Kitchanga and wears the newly issued FARDC rank and uniform. In December 2010, recruitment activities carried out by elements under the command of Zimurinda were denounced in open source reports. Entered the Republic of Rwanda on 16 March 2013. As of late 2014, residing in Ngoma camp, Rwanda. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275315 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,03/12/2010,01/12/2010,20/01/2021,11278 +ZIMURINDA,INNOCENT,,,,,,,,,16/03/1972,"(1) Masisi. (2) Ngungu, Masisi Territory, North Kivu Province",(1) Congo (Democratic Republic) (2) Congo (Democratic Republic),Congo (Democratic Republic),,,,,"M23, Bde Comd, Rank: Colonel and in the FARDC",,,,,Masisi Territory,North Kivu Province,,Congo (Democratic Republic),"(UK Sanctions List Ref):DRC0038 (UN Ref):CDi.031 Integrated in the FARDC in 2009 as a Lieutenant Colonel, brigade commander in FARDC Kimia II Ops, based in Ngungu area. In July 2009, Zimurinda was promoted to full Colonel and became FARDC Sector commander in Ngungu and subsequently in Kitchanga in FARDC Kimia II and Amani Leo Operations. Whereas Zimurinda did not appear in the 31 December 2010 DRC Presidential ordinance nominating high FARDC officers, Zimurinda de facto maintained his command position of FARDC 22nd sector in Kitchanga and wears the newly issued FARDC rank and uniform. In December 2010, recruitment activities carried out by elements under the command of Zimurinda were denounced in open source reports. Entered the Republic of Rwanda on 16 March 2013. As of late 2014, residing in Ngoma camp, Rwanda. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5275315 (Gender):Male",Individual,Primary name,,Democratic Republic of the Congo,03/12/2010,01/12/2010,20/01/2021,11278 +ZINIRA,Abu,,,,,,,,,00/00/1973,,Kenya,Kenya,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0015 (UN Ref):SOi.016,Individual,AKA,Good quality,Somalia,09/03/2018,08/03/2018,31/12/2020,13618 +ZINIRA,Abu,,,,,,,,,00/00/1974,,Kenya,Kenya,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0015 (UN Ref):SOi.016,Individual,AKA,Good quality,Somalia,09/03/2018,08/03/2018,31/12/2020,13618 +ZIYAD AL-JARRAH BATTALIONS OF THE ABDALLAH AZZAM BRIGADES,,,,,,,,,,,,,,,,,,,,,,,,,,Lebanon,(UK Sanctions List Ref):AQD0002 (UN Ref):QDe.144 An armed group that has carried out joint attacks with Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13141 +ZIYAD AL-JARRAH BATTALIONS OF THE ABDALLAH AZZAM BRIGADES,,,,,,,,,,,,,,,,,,,,,,,,,,Syria,(UK Sanctions List Ref):AQD0002 (UN Ref):QDe.144 An armed group that has carried out joint attacks with Al-Nusrah Front for the People of the Levant (QDe.137). Review pursuant to Security Council resolution 2368 (2017) was concluded on 4 Dec. 2019. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Entities.,Entity,AKA,,ISIL (Da'esh) and Al-Qaida,09/10/2014,23/09/2014,31/12/2020,13141 +ZLATKIS,Bella,Illyinichna,,,,,,,,05/07/1948,Moscow,Russia,,,,,,(1) Deputy Chairman of Sberbank’s Executive Board (2) Member of Sberbank’s Supervisory Board,,,,,,,,,"(UK Sanctions List Ref):RUS1594 (UK Statement of Reasons):Bella Illyinichna Zlatkis is an “involved person” under the Russia (Sanctions) (EU Exit) Regulation 2019 because she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by: (1) working as a director, manager or equivalent of a person (other than an individual) which is carrying on business in a sector of strategic significance to the Government of Russia, namely SBERBANK which carries on business in the financial services sector;  (2) she has been, and is, involved in obtaining a benefit from or supporting the Government of Russia by working as a director, manager or equivalent of a Government of Russia-affiliated entity, namely SBERBANK (the Government of Russia directly holds more than 50% of the shares in SBERBANK and/or more than 50% of the voting rights in SBERBANK). (Gender):Female",Individual,Primary name,,Russia,26/09/2022,26/09/2022,26/09/2022,15538 +ZLENKO,Yelena,Gennadyevna,,,,,Елена Геннадьевна ЗЛЕНКО,,,20/06/1967,Tyumen,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0934 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14885 +ZLITNI,ABDELHAFIZ,,,,,,,,,00/00/1935,,,,,,,,(1) Minister for Planning and Finance in Colonel Qadhafi's Government (2) Secretary of the General People's Committee for Finance and Planning (3) Temporary Head of the Central Bank of Libya,,,,,,,,Libya,"(UK Sanctions List Ref):LIB0040 (UN Ref):LYi.020 Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5526035",Individual,Primary name,,Libya,22/03/2011,24/06/2011,31/12/2020,11701 +ZMARENA,Muhammed,,,,,,,,,,,,Syria,,,,,Branch Chief for Syrian Military Intelligence,,,,,,,,,(UK Sanctions List Ref):SYR0180 (UK Statement of Reasons):Branch Chief for Syrian Military Intelligence (SMI) in Homs. Directly involved in repression and violence against the civilian population in Homs. (Gender):Male,Individual,Primary name variation,,Syria,24/08/2011,31/12/2020,13/05/2022,12049 +ZOBNEV,Viktor,Viktororvich,,,,,Виктор Викторович ЗОБНЕВ,,,07/06/1964,Rubtsovsk,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0956 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14907 +ZOGHBAI,Merai,,,,,,مرعي زغبي,,,04/06/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZOGHBAI,Merai,,,,,,مرعي زغبي,,,13/11/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZOGHBAI,Merai,,,,,,مرعي زغبي,,,11/08/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZOGHBAI,Merai,,,,,,مرعي زغبي,,,04/04/1969,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZOGHBAI,Merai,,,,,,مرعي زغبي,,,04/04/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZOGHBAI,Merai,,,,,,مرعي زغبي,,,14/01/1968,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZOGHBI,MERAI,ABDEFATTAH,KHALIL,,,,مرعي عبدفتاح خليل زغبي,,,04/06/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZOGHBI,MERAI,ABDEFATTAH,KHALIL,,,,مرعي عبدفتاح خليل زغبي,,,13/11/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZOGHBI,MERAI,ABDEFATTAH,KHALIL,,,,مرعي عبدفتاح خليل زغبي,,,11/08/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZOGHBI,MERAI,ABDEFATTAH,KHALIL,,,,مرعي عبدفتاح خليل زغبي,,,04/04/1969,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZOGHBI,MERAI,ABDEFATTAH,KHALIL,,,,مرعي عبدفتاح خليل زغبي,,,04/04/1960,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZOGHBI,MERAI,ABDEFATTAH,KHALIL,,,,مرعي عبدفتاح خليل زغبي,,,14/01/1968,(1) Bengasi (2) Bendasi (3) - (4) -,(1-3) Libya (4) Morocco,Libya,,,,,,,,,,,,,,(UK Sanctions List Ref):AQD0232 (UN Ref):QDi.223 Considered a fugitive from justice by the Italian authorities and sentenced in absentia to 6 years imprisonment on 20 Nov. 2008. Member of Libyan Islamic Fighting Group (QDe.011). Son of Wanisa Abdessalam. Review pursuant to Security Council resolution 1822 (2008) was concluded on 20 Jul. 2009. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1440426,Individual,Primary name,,ISIL (Da'esh) and Al-Qaida,04/08/2006,02/08/2006,31/12/2020,8920 +ZOLKADR,Mohammad Bakr,,,,,,,,,00/00/1954,"Fasa, Shiraz",Iran,,,,,,(1) Deputy Interior Minister for Security Affairs (2) Former IRGC officer (3) General,,,,,,,,,"(UK Sanctions List Ref):INU0201 (UN Ref):IRi.043 [Old Reference # I.47.D.7] (UK Statement of Reasons):As Secretary of the Expediency Council of Iran and a former senior officer of the IRGC, Mohammad Baqer ZOLQADR has provided support to Iran’s nuclear activities and is a member of, or associated with, a person who is or has been involved in relevant nuclear activity for the purposes the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9063 +ZOLOTOV,Viktor,Vasilyevich,,,,General,ЗОЛОТОВ Виктор Васильевич,Cyrillic,Russian,27/01/1954,"Sasovo, Ryazan Oblast",Russia,Russia,,,,,"(1) Director of the Federal Service of the National Guard Troops, (2) Commander of the National Guard Troops, (3) Member of the Russian Security Council",,,,,,,,,"(UK Sanctions List Ref):RUS0816 (UK Statement of Reasons):Viktor Vasilyevich ZOLOTOV is a member of the Russian Security Council (RSC). At an extraordinary meeting of the RSC on 21 February 2022, ZOLOTOV spoke in favour of a proposal to recognise Donetsk and Luhansk as independent republics. ZOLOTOV has therefore been responsible for, provided support for, or promoted a policy or action which destabilises Ukraine or undermines or threatens the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,15/03/2022,15/03/2022,09/05/2022,14767 +ZOLQADER,Mohammad Baqer,Baqer,,,,,,,,00/00/1954,"Fasa, Shiraz",Iran,,,,,,(1) Deputy Interior Minister for Security Affairs (2) Former IRGC officer (3) General,,,,,,,,,"(UK Sanctions List Ref):INU0201 (UN Ref):IRi.043 [Old Reference # I.47.D.7] (UK Statement of Reasons):As Secretary of the Expediency Council of Iran and a former senior officer of the IRGC, Mohammad Baqer ZOLQADR has provided support to Iran’s nuclear activities and is a member of, or associated with, a person who is or has been involved in relevant nuclear activity for the purposes the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9063 +ZOLQADIR,Mohammad Baqer,,,,,,,,,00/00/1954,"Fasa, Shiraz",Iran,,,,,,(1) Deputy Interior Minister for Security Affairs (2) Former IRGC officer (3) General,,,,,,,,,"(UK Sanctions List Ref):INU0201 (UN Ref):IRi.043 [Old Reference # I.47.D.7] (UK Statement of Reasons):As Secretary of the Expediency Council of Iran and a former senior officer of the IRGC, Mohammad Baqer ZOLQADR has provided support to Iran’s nuclear activities and is a member of, or associated with, a person who is or has been involved in relevant nuclear activity for the purposes the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9063 +ZOLQADR,Mohammad Bakr,,,,,,,,,00/00/1954,"Fasa, Shiraz",Iran,,,,,,(1) Deputy Interior Minister for Security Affairs (2) Former IRGC officer (3) General,,,,,,,,,"(UK Sanctions List Ref):INU0201 (UN Ref):IRi.043 [Old Reference # I.47.D.7] (UK Statement of Reasons):As Secretary of the Expediency Council of Iran and a former senior officer of the IRGC, Mohammad Baqer ZOLQADR has provided support to Iran’s nuclear activities and is a member of, or associated with, a person who is or has been involved in relevant nuclear activity for the purposes the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,AKA,Good quality,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9063 +ZOLQADR,MOHAMMAD BAQER,,,,,,,,,00/00/1954,"Fasa, Shiraz",Iran,,,,,,(1) Deputy Interior Minister for Security Affairs (2) Former IRGC officer (3) General,,,,,,,,,"(UK Sanctions List Ref):INU0201 (UN Ref):IRi.043 [Old Reference # I.47.D.7] (UK Statement of Reasons):As Secretary of the Expediency Council of Iran and a former senior officer of the IRGC, Mohammad Baqer ZOLQADR has provided support to Iran’s nuclear activities and is a member of, or associated with, a person who is or has been involved in relevant nuclear activity for the purposes the Iran (Sanctions) (Nuclear) (EU Exit) Regulations 2019.",Individual,Primary name,,Iran (Nuclear),24/03/2007,24/03/2007,04/03/2022,9063 +ZOUAI,Mohamed,Abou,El-Kassim,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):LIB0018 (UK Statement of Reasons):Associated with individuals (Muammar and Saif Qadhafi) involved in activities connected to the repressive policies of the Qadhafi regime.,Individual,Primary name,,Libya,22/03/2011,31/12/2020,31/12/2020,11698 +ZOUBAIR,Abou,,,,,,,,,09/03/1986,Ariana,Tunisia,Tunisia,W342058,Tunisian. Issued on 14.3.2011. Expires on 13.3.2016,08705184,Tunisian. Issued on 24.2.2011.,,,,,,,,,Iraq,"(UK Sanctions List Ref):AQD0131 (UN Ref):QDi.353 Physical description: eye colour: brown; height: 171cm. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Previous occupation: trading agent. A member of Ansar al-Shari’a in Tunisia (QDe.143), active in recruitment of foreign terrorist fighters and arms smuggling. Detained and sentenced to 30 months imprisonment for planning terrorist acts in 2005 in Tunisia. Planned and perpetrated the attack against the Consulate of the United States in Benghazi, Libya on 11 Sep. 2012. Arrest warrant issued by the Tunisian National Guard (as at Mar. 2015). Father’s name is Taher Ouni Harzi, mother’s name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5860630. Address country Syria (located in as at Mar. 2015), Iraq (possible alternative location as at Mar. 2015)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/04/2015,10/04/2015,12/01/2022,13247 +ZOUBAIR,Abou,,,,,,,,,09/03/1986,Ariana,Tunisia,Tunisia,W342058,Tunisian. Issued on 14.3.2011. Expires on 13.3.2016,08705184,Tunisian. Issued on 24.2.2011.,,,,,,,,,Libya,"(UK Sanctions List Ref):AQD0131 (UN Ref):QDi.353 Physical description: eye colour: brown; height: 171cm. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Previous occupation: trading agent. A member of Ansar al-Shari’a in Tunisia (QDe.143), active in recruitment of foreign terrorist fighters and arms smuggling. Detained and sentenced to 30 months imprisonment for planning terrorist acts in 2005 in Tunisia. Planned and perpetrated the attack against the Consulate of the United States in Benghazi, Libya on 11 Sep. 2012. Arrest warrant issued by the Tunisian National Guard (as at Mar. 2015). Father’s name is Taher Ouni Harzi, mother’s name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5860630. Address country Syria (located in as at Mar. 2015), Iraq (possible alternative location as at Mar. 2015)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/04/2015,10/04/2015,12/01/2022,13247 +ZOUBAIR,Abou,,,,,,,,,09/03/1986,Ariana,Tunisia,Tunisia,W342058,Tunisian. Issued on 14.3.2011. Expires on 13.3.2016,08705184,Tunisian. Issued on 24.2.2011.,,,,,,,,,Syria,"(UK Sanctions List Ref):AQD0131 (UN Ref):QDi.353 Physical description: eye colour: brown; height: 171cm. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Previous occupation: trading agent. A member of Ansar al-Shari’a in Tunisia (QDe.143), active in recruitment of foreign terrorist fighters and arms smuggling. Detained and sentenced to 30 months imprisonment for planning terrorist acts in 2005 in Tunisia. Planned and perpetrated the attack against the Consulate of the United States in Benghazi, Libya on 11 Sep. 2012. Arrest warrant issued by the Tunisian National Guard (as at Mar. 2015). Father’s name is Taher Ouni Harzi, mother’s name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5860630. Address country Syria (located in as at Mar. 2015), Iraq (possible alternative location as at Mar. 2015)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/04/2015,10/04/2015,12/01/2022,13247 +ZOUBAIR,Abou,,,,,,,,,09/03/1986,Ariana,Tunisia,Tunisia,W342058,Tunisian. Issued on 14.3.2011. Expires on 13.3.2016,08705184,Tunisian. Issued on 24.2.2011.,,18 Mediterranean Street,Ariana,,,,,,Tunisia,"(UK Sanctions List Ref):AQD0131 (UN Ref):QDi.353 Physical description: eye colour: brown; height: 171cm. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Previous occupation: trading agent. A member of Ansar al-Shari’a in Tunisia (QDe.143), active in recruitment of foreign terrorist fighters and arms smuggling. Detained and sentenced to 30 months imprisonment for planning terrorist acts in 2005 in Tunisia. Planned and perpetrated the attack against the Consulate of the United States in Benghazi, Libya on 11 Sep. 2012. Arrest warrant issued by the Tunisian National Guard (as at Mar. 2015). Father’s name is Taher Ouni Harzi, mother’s name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5860630. Address country Syria (located in as at Mar. 2015), Iraq (possible alternative location as at Mar. 2015)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,21/04/2015,10/04/2015,12/01/2022,13247 +ZOUBAIR,Abu,,,,,,,,,08/03/1978,Amsterdam,Netherlands,Netherlands,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0006 (UK Statement of Reasons):Mohammed Bouyeri was a member of the (now disbanded) Islamist terrorist Hofstad Group. Bouyeri murdered the film director Theo van Gogh in the Netherlands 2004. In 2005 he was found guilty of murder and of membership of a terrorist organisation. (Gender):Male,Individual,AKA,,Counter-Terrorism (International),05/02/2007,31/12/2020,11/03/2022,9018 +ZRAE,Spen,,,,,,,,,00/00/1975,"(1) Lakhi village, Hazarjuft area, Garmsir District, Helmand Province (2) Laki village, Garmsir District, Helmand Province (3) Lakari village, Garmsir District, Helmand Province (4) Darvishan, Garmsir District, Helmand Province (5) De Luy Wiyalah village, Garmsir District, Helmand Province",(1) Afghanistan (2) Afghanistan (3) Afghanistan (4) Afghanistan (5) Afghanistan,Afghanistan,,,,,Deputy Minister of Civil Aviation under the Taliban,,,,,,,,,(UK Sanctions List Ref):AFG0015 (UN Ref):TAi.013 Member of the Taliban Military Commission as at mid-2013. Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals click here (Gender):Male,Individual,AKA,Low quality,Afghanistan,02/04/2001,23/02/2001,11/02/2022,7354 +ZU ZAG BONG 5,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0096 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V CHON MYONG 1 conducted a ship-to-ship transfer, likely for oil, in late December 2017. Listed as asset of Chonmyong Shipping Co (OFSI ID: 13627, UN Ref KPe.056) (IMO number):8712362 (Current owners):Chonmyong Shipping Co (Flag of ship):North Korea (Previous flags):Togo (Type of ship):Oil tanker (Tonnage of ship):1220 (Length of ship):82 (Year built):1987",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13647 +ZU ZAG BONG 6,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0106 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK crude oil tanker M/V NAM SAN 8 is believed to have been involved in ship-to-ship transfer operations for oil. Listed as asset of Hapjanggang Shipping Corp (OFSI ID: 13629, UN Reference Number: UN Ref KPe.058) (IMO number):8122347 (Current owners):Hapjanggang Shipping Corp (Flag of ship):North Korea (Type of ship):Oil tanker (Tonnage of ship):1914 (Length of ship):91 (Year built):1982",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13657 +ZUBAIDI,MUHAMMAD,HAMZA,,,,,محمد حمزة زبيدي,,,00/00/1938,"Babylon, Babil",Iraq,Iraq,,,,,,,,,,,,,,(UK Sanctions List Ref):IRQ0070 (UN Ref):IQi.009,Individual,Primary name,,Iraq,02/07/2003,27/06/2003,31/12/2020,7628 +ZUBAIR,Abu,,,,,,,,,08/03/1978,Amsterdam,Netherlands,Netherlands,,,,,,,,,,,,,,(UK Sanctions List Ref):CTI0006 (UK Statement of Reasons):Mohammed Bouyeri was a member of the (now disbanded) Islamist terrorist Hofstad Group. Bouyeri murdered the film director Theo van Gogh in the Netherlands 2004. In 2005 he was found guilty of murder and of membership of a terrorist organisation. (Gender):Male,Individual,AKA,,Counter-Terrorism (International),05/02/2007,31/12/2020,11/03/2022,9018 +ZUBAREV,Igor,Dmitryevich,,,,,Игорь Дмитриевич ЗУБАРЕВ,,,20/06/1966,Yantarny,Russia,,,,,,Member of the Federation Council of the Russian Federation,26 Bolshaya Dmitrovka Street,,,,,Moscow,103426,Russia,"(UK Sanctions List Ref):RUS0947 (UK Statement of Reasons):Member of the Federation Council of Russia who voted in favour of and/or expressed support for Federal Law No. 75577-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic"" and/or Federal Law No. 75578-8 ""On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic"". In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People's Republic and the Luhansk People's Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine.",Individual,Primary name,,Russia,15/03/2022,15/03/2022,26/04/2022,14898 +ZUBAREV,Viktor,Vladislavovich,,,,,Зубарев Виктор Владиславович,,,20/02/1961,Divnogorsk,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0387 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14332 +ZUBEYR,Abu,,,,,,,,,10/07/1977,Hargeysa,Somalia,Somalia,,,,,,,,,,,,,,(UK Sanctions List Ref):SOM0005 (UN Ref):SOi.004,Individual,AKA,Good quality,Somalia,28/04/2010,12/04/2010,31/12/2020,11091 +ZUBI,Khaldoon,,,,,,,,,00/00/1979,,,(1) Lebanon. (2) Syria,,,,,Syrian businessman. Vice-President of Aman Holding (A.k.a. Aman Group),,,,,,,,,"(UK Sanctions List Ref):SYR0261 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy; including his roles as Vice President of Aman Holding and majority shareholder of Fly Aman airline. In this capacity, he is linked to Samer Foz. Aman Holding is represented on the board of, and holds a majority stake in, ‘Aman Damascus’, a joint venture in the construction of Marota City, a regime-backed luxury residential and commercial development. Al-Zoubi benefits from and/or supports the regime through his position as Vice President of Aman Holding. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13757 +ZUBI,Khaldoun,,,,,,,,,00/00/1979,,,(1) Lebanon. (2) Syria,,,,,Syrian businessman. Vice-President of Aman Holding (A.k.a. Aman Group),,,,,,,,,"(UK Sanctions List Ref):SYR0261 (UK Statement of Reasons):Leading businessperson operating in Syria, with interests and activities in multiple sectors of Syria's economy; including his roles as Vice President of Aman Holding and majority shareholder of Fly Aman airline. In this capacity, he is linked to Samer Foz. Aman Holding is represented on the board of, and holds a majority stake in, ‘Aman Damascus’, a joint venture in the construction of Marota City, a regime-backed luxury residential and commercial development. Al-Zoubi benefits from and/or supports the regime through his position as Vice President of Aman Holding. (Gender):Male",Individual,Primary name variation,,Syria,22/01/2019,31/12/2020,31/12/2020,13757 +ZUBITSKIY,Evgeny,Borisovich,,,,,Евгений Борисoвич ЗУБИЦКИЙ,Cyrillic,Russian,10/03/1968,Kemerovo,Russia,Russia,,,,,,,,,,,,,,"(UK Sanctions List Ref):RUS1318 (UK Statement of Reasons):Evgeny Borisovich ZUBITSKIY is the co-owner and CEO of Industrial Metallurgical Holding (IMH) and owner of JSC Koks via IMH. ZUBITSKIY therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by indirectly owning an entity which is carrying on business in sectors of strategic significance to the Government of Russia, the Russian energy and extractives sectors. (Gender):Male",Individual,Primary name,,Russia,13/04/2022,13/04/2022,02/08/2022,15275 +ZUBKOU,Sergei,Yevgenevich,,,,,Сергей Евгеньевич Зубков,,,21/08/1975,,,Belarus,,,,,Commander of KGB ‘Alfa’ special forces unit,,,,,,,,,"(UK Sanctions List Ref):BEL0058 (UK Statement of Reasons):Siarhei Zubkou is the Commander of the ‘Alfa’ special forces/anti-terrorism unit of the State Security Committee (KGB) of Belarus. As Commander, he is in authority over the Alfa unit and therefore responsible for the serious human rights violations and abuses against protestors and journalists, and the repression of civil society or democratic opposition, which they carried out following the election of 9 August (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,18/03/2022,13994 +ZUBKOU,Siarhei,Yaugenavich,,,,,Сяргей Яўгенавіч Зубкоў,,,21/08/1975,,,Belarus,,,,,Commander of KGB ‘Alfa’ special forces unit,,,,,,,,,"(UK Sanctions List Ref):BEL0058 (UK Statement of Reasons):Siarhei Zubkou is the Commander of the ‘Alfa’ special forces/anti-terrorism unit of the State Security Committee (KGB) of Belarus. As Commander, he is in authority over the Alfa unit and therefore responsible for the serious human rights violations and abuses against protestors and journalists, and the repression of civil society or democratic opposition, which they carried out following the election of 9 August (Gender):Male",Individual,Primary name,,Belarus,06/11/2020,31/12/2020,18/03/2022,13994 +ZUBKOV,Sergei,Yevgenevich,,,,,,,,21/08/1975,,,Belarus,,,,,Commander of KGB ‘Alfa’ special forces unit,,,,,,,,,"(UK Sanctions List Ref):BEL0058 (UK Statement of Reasons):Siarhei Zubkou is the Commander of the ‘Alfa’ special forces/anti-terrorism unit of the State Security Committee (KGB) of Belarus. As Commander, he is in authority over the Alfa unit and therefore responsible for the serious human rights violations and abuses against protestors and journalists, and the repression of civil society or democratic opposition, which they carried out following the election of 9 August (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,18/03/2022,13994 +ZUBKOV,Siarhei,Yaugenavich,,,,,,,,21/08/1975,,,Belarus,,,,,Commander of KGB ‘Alfa’ special forces unit,,,,,,,,,"(UK Sanctions List Ref):BEL0058 (UK Statement of Reasons):Siarhei Zubkou is the Commander of the ‘Alfa’ special forces/anti-terrorism unit of the State Security Committee (KGB) of Belarus. As Commander, he is in authority over the Alfa unit and therefore responsible for the serious human rights violations and abuses against protestors and journalists, and the repression of civil society or democratic opposition, which they carried out following the election of 9 August (Gender):Male",Individual,Primary name variation,,Belarus,06/11/2020,31/12/2020,18/03/2022,13994 +ZUFAR,Abu,,,,,,,,,20/01/1964,Johor,Malaysia,Malaysia,A 10472263,,640120-01-5529,,,,,,,,,,Malaysia,"(UK Sanctions List Ref):AQD0337 (UN Ref):QDi.124 Founding member of Jemaah Islamiyah (JI) (QDe.092) who worked on Al-Qaida’s (QDe.004) biological weapons program, provided support to those involved in Al-Qaida’s 11 Sep. 2001 attacks in the United States of America, and was involved in JI bombing operations. Detained in Malaysia from 2001 to 2008. Arrested in Malaysia in 2013 and sentenced to 7 years in Jan. 2016 for failing to report information relating to terrorist acts. Due for release in Feb. 2020. Review pursuant to Security Council resolution 1989 (2011) was concluded on 6 Mar. 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424794. Malaysia (previous address)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/09/2003,09/09/2003,31/12/2020,7848 +ZUFAR,Abu,,,,,,,,,20/01/1964,Johor,Malaysia,Malaysia,A 10472263,,640120-01-5529,,,Taman Bukit Ampang,,,,,State of Selangor,,Malaysia,"(UK Sanctions List Ref):AQD0337 (UN Ref):QDi.124 Founding member of Jemaah Islamiyah (JI) (QDe.092) who worked on Al-Qaida’s (QDe.004) biological weapons program, provided support to those involved in Al-Qaida’s 11 Sep. 2001 attacks in the United States of America, and was involved in JI bombing operations. Detained in Malaysia from 2001 to 2008. Arrested in Malaysia in 2013 and sentenced to 7 years in Jan. 2016 for failing to report information relating to terrorist acts. Due for release in Feb. 2020. Review pursuant to Security Council resolution 1989 (2011) was concluded on 6 Mar. 2014. Review pursuant to Security Council resolution 2253 (2015) was concluded on 21 Feb. 2019. Photos included in INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1424794. Malaysia (previous address)",Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,12/09/2003,09/09/2003,31/12/2020,7848 +ZUGHAIB,Walid,,,,,Doctor,وليد زغيب,,,,,,Syria,,,,,Head of Institute 2000 of the SSRC,,,,,,,,,"(UK Sanctions List Ref):CHW0002 Important employee at Scientific Studies and Research Centre (listed under both the Syria and Chemical Weapons sanctions regimes). Works under Amr Armanazi and Salam Tohme (both listed under the Syria sanctions regime). (UK Statement of Reasons):Walid Zughaib is the Director of Institute 2000, the division of the Scientific Studies and Research Centre (SSRC) responsible for mechanical development and production for Syria’s chemical weapons programme. As a result of his senior position within Institute 2000, he is also associated with the designated entity SSRC. (Gender):Male",Individual,Primary name,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13746 +ZUGHAYB,Walid,,,,,,,,,,,,Syria,,,,,Head of Institute 2000 of the SSRC,,,,,,,,,"(UK Sanctions List Ref):CHW0002 Important employee at Scientific Studies and Research Centre (listed under both the Syria and Chemical Weapons sanctions regimes). Works under Amr Armanazi and Salam Tohme (both listed under the Syria sanctions regime). (UK Statement of Reasons):Walid Zughaib is the Director of Institute 2000, the division of the Scientific Studies and Research Centre (SSRC) responsible for mechanical development and production for Syria’s chemical weapons programme. As a result of his senior position within Institute 2000, he is also associated with the designated entity SSRC. (Gender):Male",Individual,Primary name variation,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13746 +ZUGHIB,Walid,,,,,,,,,,,,Syria,,,,,Head of Institute 2000 of the SSRC,,,,,,,,,"(UK Sanctions List Ref):CHW0002 Important employee at Scientific Studies and Research Centre (listed under both the Syria and Chemical Weapons sanctions regimes). Works under Amr Armanazi and Salam Tohme (both listed under the Syria sanctions regime). (UK Statement of Reasons):Walid Zughaib is the Director of Institute 2000, the division of the Scientific Studies and Research Centre (SSRC) responsible for mechanical development and production for Syria’s chemical weapons programme. As a result of his senior position within Institute 2000, he is also associated with the designated entity SSRC. (Gender):Male",Individual,Primary name variation,,Chemical Weapons,21/01/2019,31/12/2020,31/12/2020,13746 +ZUGHRAYBA,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZUGHRAYBAH,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZUGHRAYBE,,,,,,,,,,,,,,,,,,,,,,,,,,,(UK Sanctions List Ref):SYR0252 (UK Statement of Reasons):14th Division. Military official involved in the violence in Homs.,Individual,AKA,,Syria,02/12/2011,31/12/2020,14/02/2022,12416 +ZUK,Andrej,,,,,,Андрэй Жук,,,06/08/1969,"Gorki, Mogilev region",Belarus,Belarus,,,,,Deputy Minister of Defence,Ministry of Defence of the Republic of Belarus,1 Kommunisticheskaya St.,,,,Minsk,220034,Belarus,"(UK Sanctions List Ref):RUS0260 (UK Statement of Reasons):As Deputy Minister of Defence, Major General Andrey Zhuk is an active and senior military leader in Belarus and, as part of the top-level chain of command, is responsible for directing the actions of the Belarusian armed forces, which have supported and enabled Russia’s invasion of Ukraine. The Belarusian armed forces have conducted joint military exercises with Russian armed forces, and also consented to the deployment of Russian troops along the border of Belarus with Ukraine, which has directly contributed to Russia’s ability to both threaten and attack Ukraine, including from positions in Belarus. Zhuk therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14206 +ZUK,Andrej,,,,,,Andrej ŽUK,,,06/08/1969,"Gorki, Mogilev region",Belarus,Belarus,,,,,Deputy Minister of Defence,Ministry of Defence of the Republic of Belarus,1 Kommunisticheskaya St.,,,,Minsk,220034,Belarus,"(UK Sanctions List Ref):RUS0260 (UK Statement of Reasons):As Deputy Minister of Defence, Major General Andrey Zhuk is an active and senior military leader in Belarus and, as part of the top-level chain of command, is responsible for directing the actions of the Belarusian armed forces, which have supported and enabled Russia’s invasion of Ukraine. The Belarusian armed forces have conducted joint military exercises with Russian armed forces, and also consented to the deployment of Russian troops along the border of Belarus with Ukraine, which has directly contributed to Russia’s ability to both threaten and attack Ukraine, including from positions in Belarus. Zhuk therefore is or has been involved in destabilising Ukraine and undermining or threatening the territorial integrity, sovereignty and independence of Ukraine. (Gender):Male",Individual,Primary name variation,,Russia,01/03/2022,01/03/2022,01/03/2022,14206 +ZUL,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Gebang,Kecamatan Masaran,Kabupaten Sragen,,,Jawa Tengah,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ZUL,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Taman Fajar,Kecamatan Probolinggo,Kabupaten Lampung Timur,,,Lampung,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Low quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ZULKARNAEN,Ustad,Daud,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Gebang,Kecamatan Masaran,Kabupaten Sragen,,,Jawa Tengah,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ZULKARNAEN,Ustad,Daud,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Taman Fajar,Kecamatan Probolinggo,Kabupaten Lampung Timur,,,Lampung,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ZULKARNAIN,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Gebang,Kecamatan Masaran,Kabupaten Sragen,,,Jawa Tengah,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ZULKARNAIN,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Taman Fajar,Kecamatan Probolinggo,Kabupaten Lampung Timur,,,Lampung,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ZULKARNAN,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Gebang,Kecamatan Masaran,Kabupaten Sragen,,,Jawa Tengah,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ZULKARNAN,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Taman Fajar,Kecamatan Probolinggo,Kabupaten Lampung Timur,,,Lampung,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ZULKARNEN,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Gebang,Kecamatan Masaran,Kabupaten Sragen,,,Jawa Tengah,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ZULKARNEN,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Taman Fajar,Kecamatan Probolinggo,Kabupaten Lampung Timur,,,Lampung,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ZULKARNIN,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Gebang,Kecamatan Masaran,Kabupaten Sragen,,,Jawa Tengah,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ZULKARNIN,,,,,,,,,,19/04/1963,"Gebang village, Masaran, Sragen, Central Java",Indonesia,Indonesia,,,,,,Desa Taman Fajar,Kecamatan Probolinggo,Kabupaten Lampung Timur,,,Lampung,,Indonesia,(UK Sanctions List Ref):AQD0344 (UN Ref):QDi.187 Review pursuant to Security Council resolution 1822 (2008) was concluded on 8 Jun. 2010. Review pursuant to Security Council resolution 2253 (2015) was concluded on 7 Jun. 2018. Review pursuant to Security Council resolution 2368 (2017) was concluded on 15 November 2021. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/How-we-work/Notices/View-UN-Notices-Individuals,Individual,AKA,Good quality,ISIL (Da'esh) and Al-Qaida,18/05/2005,16/05/2005,14/06/2022,8636 +ZUZAGBONG-5,,,,,,,,,,,,,,,,,,,,,,,,,,,"(UK Sanctions List Ref):DPR0096 Pursuant to paragraph 6 of Security Council Resolution 2371 (2017), paragraph 6 of Security Council Resolution 2375 (2017)and paragraph 12 of Security Council resolution 2321 (2016). DPRK oil tanker M/V CHON MYONG 1 conducted a ship-to-ship transfer, likely for oil, in late December 2017. Listed as asset of Chonmyong Shipping Co (OFSI ID: 13627, UN Ref KPe.056) (IMO number):8712362 (Current owners):Chonmyong Shipping Co (Flag of ship):North Korea (Previous flags):Togo (Type of ship):Oil tanker (Tonnage of ship):1220 (Length of ship):82 (Year built):1987",Ship,AKA,,Democratic People's Republic of Korea,03/04/2018,30/03/2018,31/12/2020,13647 +ZVEZDA PAO,,,,,,,ПАО ЗВЕЗДА,Cyrillic,Russian,,,,,,,,,,123 Babushkina st.,,,,,St. Petersburg,192012,Russia,"(UK Sanctions List Ref):RUS1439 (UK Statement of Reasons):Zvezda PJSC is a leading supplier of diesel engines, generators and reverse gearboxes to the Russian Navy. Zvezda PJSC therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the defence sector. (Phone number):7 (812)-362-0747 (Website):www.zvezda.spb.ru (Email address):office@zvezda.spb.ru (Type of entity):Public Joint Stock Company",Entity,Primary name variation,,Russia,04/05/2022,04/05/2022,23/08/2022,15364 +ZVEZDA PJSC,,,,,,,ЗВЕЗДА,Cyrillic,Russian,,,,,,,,,,123 Babushkina st.,,,,,St. Petersburg,192012,Russia,"(UK Sanctions List Ref):RUS1439 (UK Statement of Reasons):Zvezda PJSC is a leading supplier of diesel engines, generators and reverse gearboxes to the Russian Navy. Zvezda PJSC therefore is or has been involved in obtaining a benefit from or supporting the Government of Russia by carrying on business in a sector of strategic significance to the Government of Russia, namely the defence sector. (Phone number):7 (812)-362-0747 (Website):www.zvezda.spb.ru (Email address):office@zvezda.spb.ru (Type of entity):Public Joint Stock Company",Entity,Primary name,,Russia,04/05/2022,04/05/2022,23/08/2022,15364 +ZYMA,Petro,Anatoliyovych,,,,,Петро Зима,,,18/01/1970,"Artemivsk (now Bakhmut), Donetsk Oblast",Ukraine,Ukraine,,,,,,,,,,,The Autonomous Republic of Crimea and the city of Sevastopol,,Ukraine,(UK Sanctions List Ref):RUS0163 (UK Statement of Reasons):Zima was appointed as the new head of the Crimean Security Service (SBU) on 3 March 2014 by ‘Prime Minister’ Aksyonov and accepted this appointment. He has given relevant information including a database to the Russian Intelligence Service (SBU). This included information on Euro-Maidan activists and human rights defenders of Crimea. He played a relevant role in preventing Ukraine’s authorities from controlling the territory of Crimea. On 11 March 2014 the formation of an independent Security Service of Crimea was proclaimed by former SBU officers of Crimea. Active since 2015 in the Russian Intelligence Service (FSB). (Gender):Male,Individual,Primary name variation,,Russia,18/03/2014,31/12/2020,19/01/2021,12927 +ZYUGANOV,Gennady,Andreevich,,,,,Зюганов Геннадий Андреевич,,,26/06/1944,Mymrino,Russia,Russia,,,,,Member of the State Duma of the Russian Federation,1 Okhotny Ryad str,,,,,,103265,Russia,"(UK Sanctions List Ref):RUS0388 (UK Statement of Reasons):Member of the State Duma of Russia who voted in favour of Federal Law No. 75577-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Luhansk People's Republic” and/or Federal Law No. 75578-8 “On the ratification of the Treaty of Friendship, Cooperation and Mutual Assistance between the Russian Federation and the Donetsk People's Republic”. In so doing, the member endorsed President Putin’s decision to recognise the Donetsk People’s Republic and the Luhansk People’s Republic as independent states, thereby providing support for policies and/or actions which destabilise Ukraine and/or undermine or threaten the territorial integrity, sovereignty or independence of Ukraine. (Gender):Male",Individual,Primary name,,Russia,11/03/2022,11/03/2022,11/03/2022,14333 +شركة صروح العقارية,,,,,,,,,,,,,,,,,,,Adra Free Zone Area,,,,,Damascus,,Syria,"(UK Sanctions List Ref):SYR0328 Real Estate (UK Statement of Reasons):Regime controlled company. Majority of the shares were previously owned directly or indirectly by Rami Makhlouf. As such, there are reasonable grounds to suspect that the company is or has been involved in supporting or benefitting from the Syrian regime through the provision of financial or other economic resources and/or is owned or controlled by or otherwise associated with the regime. (Phone number):(1) +963-11-5316396 (2) +963-11-5327266 (3) +963-932-878282 (4) +963-933-526812 (Website):http://sites.google.com/site/sorohco (Email address):sorohco@gmail.com",Entity,AKA,,Syria,26/09/2011,31/12/2020,19/05/2022,12066 diff --git a/test/testdata/UK_Sanctions_List.ods b/test/testdata/UK_Sanctions_List.ods new file mode 100644 index 0000000..d5a5581 Binary files /dev/null and b/test/testdata/UK_Sanctions_List.ods differ diff --git a/test/testdata/eu_csl.csv b/test/testdata/eu_csl.csv new file mode 100644 index 0000000..48290e2 --- /dev/null +++ b/test/testdata/eu_csl.csv @@ -0,0 +1,22620 @@ +fileGenerationDate;Entity_LogicalId;Entity_EU_ReferenceNumber;Entity_UnitedNationId;Entity_DesignationDate;Entity_DesignationDetails;Entity_Remark;Entity_SubjectType;Entity_SubjectType_ClassificationCode;Entity_Regulation_Type;Entity_Regulation_OrganisationType;Entity_Regulation_PublicationDate;Entity_Regulation_EntryIntoForceDate;Entity_Regulation_NumberTitle;Entity_Regulation_Programme;Entity_Regulation_PublicationUrl;NameAlias_LastName;NameAlias_FirstName;NameAlias_MiddleName;NameAlias_WholeName;NameAlias_NameLanguage;NameAlias_Gender;NameAlias_Title;NameAlias_Function;NameAlias_LogicalId;NameAlias_RegulationLanguage;NameAlias_Remark;NameAlias_Regulation_Type;NameAlias_Regulation_OrganisationType;NameAlias_Regulation_PublicationDate;NameAlias_Regulation_EntryIntoForceDate;NameAlias_Regulation_NumberTitle;NameAlias_Regulation_Programme;NameAlias_Regulation_PublicationUrl;Address_City;Address_Street;Address_PoBox;Address_ZipCode;Address_Region;Address_Place;Address_AsAtListingTime;Address_ContactInfo;Address_CountryIso2Code;Address_CountryDescription;Address_LogicalId;Address_RegulationLanguage;Address_Remark;Address_Regulation_Type;Address_Regulation_OrganisationType;Address_Regulation_PublicationDate;Address_Regulation_EntryIntoForceDate;Address_Regulation_NumberTitle;Address_Regulation_Programme;Address_Regulation_PublicationUrl;BirthDate_BirthDate;BirthDate_Day;BirthDate_Month;BirthDate_Year;BirthDate_YearRangeFrom;BirthDate_YearRangeTo;BirthDate_Circa;BirthDate_CalendarType;BirthDate_ZipCode;BirthDate_Region;BirthDate_Place;BirthDate_City;BirthDate_CountryIso2Code;BirthDate_CountryDescription;BirthDate_LogicalId;BirthDate_RegulationLanguage;BirthDate_Remark;BirthDate_Regulation_Type;BirthDate_Regulation_OrganisationType;BirthDate_Regulation_PublicationDate;BirthDate_Regulation_EntryIntoForceDate;BirthDate_Regulation_NumberTitle;BirthDate_Regulation_Programme;BirthDate_Regulation_PublicationUrl;Identification_Number;Identification_Diplomatic;Identification_KnownExpired;Identification_KnownFalse;Identification_ReportedLost;Identification_RevokedByIssuer;Identification_IssuedBy;Identification_IssuedDate;Identification_ValidFrom;Identification_ValidTo;Identification_LatinNumber;Identification_NameOnDocument;Identification_TypeCode;Identification_TypeDescription;Identification_Region;Identification_CountryIso2Code;Identification_CountryDescription;Identification_LogicalId;Identification_RegulationLanguage;Identification_Remark;Identification_Regulation_Type;Identification_Regulation_OrganisationType;Identification_Regulation_PublicationDate;Identification_Regulation_EntryIntoForceDate;Identification_Regulation_NumberTitle;Identification_Regulation_Programme;Identification_Regulation_PublicationUrl;Citizenship_Region;Citizenship_CountryIso2Code;Citizenship_CountryDescription;Citizenship_LogicalId;Citizenship_RegulationLanguage;Citizenship_Remark;Citizenship_Regulation_Type;Citizenship_Regulation_OrganisationType;Citizenship_Regulation_PublicationDate;Citizenship_Regulation_EntryIntoForceDate;Citizenship_Regulation_NumberTitle;Citizenship_Regulation_Programme;Citizenship_Regulation_PublicationUrl +28/10/2022;13;EU.27.28;;;;(UNSC RESOLUTION 1483);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;Hussein Al-Tikriti;Saddam;;Saddam Hussein Al-Tikriti;;M;;;17;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;13;EU.27.28;;;;(UNSC RESOLUTION 1483);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abu Ali;;;;;19;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;13;EU.27.28;;;;(UNSC RESOLUTION 1483);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abou Ali;FR;;;;380;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;13;EU.27.28;;;;(UNSC RESOLUTION 1483);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1937-04-28;28;4;1937;;;NO;GREGORIAN;;;;al-Awja, near Tikrit;IQ;IRAQ;14;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;13;EU.27.28;;;;(UNSC RESOLUTION 1483);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;1;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;20;EU.39.56;;;;(Saddam's second son);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;Hussein Al-Tikriti;Qusay;Saddam;Qusay Saddam Hussein Al-Tikriti;;M;;Oversaw Special Republican Guard, Special Security Organisation, and Republican Guard;26;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;20;EU.39.56;;;;(Saddam's second son);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;Hussein Al-Tikriti;Qoussaï;Saddam;Qoussaï Saddam Hussein Al-Tikriti;FR;;;;381;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;20;EU.39.56;;;;(Saddam's second son);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;NO;GREGORIAN;;;;Baghdad;00;UNKNOWN;19;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;20;EU.39.56;;;;(Saddam's second son);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;NO;GREGORIAN;;;;Baghdad;00;UNKNOWN;20;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;20;EU.39.56;;;;(Saddam's second son);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;2;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;23;EU.16.62;;;;(Saddam's eldest son);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;Hussein Al-Tikriti;Uday;Saddam;Uday Saddam Hussein Al-Tikriti;;M;;Leader of Paramilitary Organisation Fedayeen Saddam;29;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;23;EU.16.62;;;;(Saddam's eldest son);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;Hussein Al-Tikriti;Oudaï;Saddam;Oudaï Saddam Hussein Al-Tikriti;FR;;;;383;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;23;EU.16.62;;;;(Saddam's eldest son);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;Baghdad;00;UNKNOWN;23;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;23;EU.16.62;;;;(Saddam's eldest son);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;NO;GREGORIAN;;;;Baghdad;00;UNKNOWN;24;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;23;EU.16.62;;;;(Saddam's eldest son);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;4;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;25;EU.11.43;;;;;P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abid Hamid Mahmud Al-Tikriti;;M;;Saddam's Presidential Secretary and Key Advisor;31;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;25;EU.11.43;;;;;P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abid Hamid Bid Hamid Mahmud;;M;;Saddam's Presidential Secretary and Key Advisor;32;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;25;EU.11.43;;;;;P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abdel Hamid Mahmoud;;M;Col;Saddam's Presidential Secretary and Key Advisor;34;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;25;EU.11.43;;;;;P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abed Mahmoud Hammud;;M;;Saddam's Presidential Secretary and Key Advisor;35;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;25;EU.11.43;;;;;P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abid Hamid Mahmoud Al-Tikriti;FR;;;;384;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;25;EU.11.43;;;;;P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abid Hamid Bid Hamid Mahmoud;FR;;;;385;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;25;EU.11.43;;;;;P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abed Mahmoud Hammoud;FR;;;;386;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;25;EU.11.43;;;;;P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;YES;GREGORIAN;;;;al-Awja, near Tikrit;00;UNKNOWN;28;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;25;EU.11.43;;;;;P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;5;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;29;EU.22.9;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Ali Hassan Al-Majid Al-Tikriti;;M;;Presidential Advisor and Senior Member of Revolutionary Command Council;39;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;29;EU.22.9;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Al-Kimawi;;M;;Presidential Advisor and Senior Member of Revolutionary Command Council;40;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;29;EU.22.9;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1943;;;NO;GREGORIAN;;;;al-Awja, near Tikrit;IQ;IRAQ;31;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;29;EU.22.9;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Al-Awja, near Tikrit (J.O. ES);00;UNKNOWN;160;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;29;EU.22.9;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;6;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;33;EU.42.11;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Izzat Ibrahim al-Duri;;M;;Deputy Commander-in-Chief of Iraqi Military;44;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;33;EU.42.11;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abu Brays;;M;;Deputy Secretary, Ba'th Party Regional Command;45;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;33;EU.42.11;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abu Ahmad;;M;;Vice Chairman, Revolutionary Command Council;46;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;33;EU.42.11;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Izzat Ibrahim al-Duri;;M;;Deputy Secretary, Ba'th Party Regional Command;49;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;33;EU.42.11;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Izzat Ibrahim al-Duri;;M;;Vice Chairman, Revolutionary Command Council;51;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;33;EU.42.11;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abu Brays;;M;;Deputy Commander-in-Chief of Iraqi Military;52;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;33;EU.42.11;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abu Brays;;M;;Vice Chairman, Revolutionary Command Council;54;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;33;EU.42.11;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abu Ahmad;;M;;Deputy Commander-in-Chief of Iraqi Military,;55;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;33;EU.42.11;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abu Ahmad;;M;;Deputy Secretary, Ba'th Party Regional Command;56;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;33;EU.42.11;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Izzat Ibrahim Al-Duri;ES;;;;244;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;33;EU.42.11;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Izzat Ibrahim al-Douri;FR;;;;387;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;33;EU.42.11;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1942;;;NO;GREGORIAN;;;;al-Dur;00;UNKNOWN;33;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;33;EU.42.11;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Al-Dur (J.O. ES);00;UNKNOWN;161;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;33;EU.42.11;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;7;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;39;EU.35.2;;;;;P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Hani Abd-Al-Latif Tilfah Al-Tikriti;;;;No 2 in Special Security Organisation;59;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;39;EU.35.2;;;;;P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Hani Abdel-Latif Tilfah Al-Tikriti;FR;;;;388;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;39;EU.35.2;;;;;P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;;;YES;GREGORIAN;;;;al-Awja, near Tikrit;00;UNKNOWN;39;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;39;EU.35.2;;;;;P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;8;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;46;EU.106.12;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Muhammad Hamza Zubaidi;;;;Former Prime Minister;68;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;46;EU.106.12;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Mohammed Hamza Zoubaïdi;FR;;;;391;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;46;EU.106.12;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1938;;;NO;GREGORIAN;;;;Babylon, Babil;00;UNKNOWN;44;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;46;EU.106.12;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Babylone, Babil (J.O. FR);00;UNKNOWN;248;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;46;EU.106.12;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;10;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;53;EU.19.54;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Barzan Abd al-Ghafur Sulaiman Majid Al-Tikriti;;;;Commander, Special Republican Guard;79;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;53;EU.19.54;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Barzan Razuki Abd al-Ghafur;;;;Commander, Special Republican Guard;80;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;53;EU.19.54;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Barzan Razuki Abd Al-Ghafur;ES;;;;247;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;53;EU.19.54;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Barzan Abdel Ghafour Souleiman Majid Al-Tikriti;FR;;;;394;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;53;EU.19.54;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Barzan Razuki Abdel Ghafour;FR;;;;395;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;53;EU.19.54;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;;;Salah al-Din;00;UNKNOWN;50;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;53;EU.19.54;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Salaheddine (J.O. FR);00;UNKNOWN;196;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;53;EU.19.54;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Salah Al-Din (J.O. ES);00;UNKNOWN;252;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;53;EU.19.54;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;12;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;54;EU.20.79;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Muzahim Sa'b Hassan Al-Tikriti;;;;Led Iraq's Air Defence Forces;81;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;54;EU.20.79;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Muzahim Sa'b Hassan Al-Tikriti;;;;Deputy Director of Organisation of Military Industrialisation;82;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;54;EU.20.79;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Muzahem Saab Hassan Al-Tikriti;FR;;;;396;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;54;EU.20.79;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946;;;YES;GREGORIAN;;;;Salah al-Din;00;UNKNOWN;51;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;54;EU.20.79;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946;;;YES;GREGORIAN;;;;al-Awja near Tikrit;00;UNKNOWN;52;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;54;EU.20.79;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949;;;NO;GREGORIAN;;;;Salah al-Din;00;UNKNOWN;54;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;54;EU.20.79;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949;;;NO;GREGORIAN;;;;al-Awja near Tikrit;00;UNKNOWN;56;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;54;EU.20.79;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;;;Salah al-Din;00;UNKNOWN;57;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;54;EU.20.79;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;;;al-Awja near Tikrit;00;UNKNOWN;58;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;54;EU.20.79;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Salaheddine (J.O. FR);00;UNKNOWN;197;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;54;EU.20.79;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;13;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;58;EU.165.92;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Ibrahim Ahmad Abd al-Sattar Muhammed Al-Tikriti;;;;Armed Forces Chief of Staff;87;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;58;EU.165.92;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Ibrahim Ahmed Abdel Sattar Mohammed Al-Tikriti;FR;;;;397;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;58;EU.165.92;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950;;;NO;GREGORIAN;;;;Mosul;00;UNKNOWN;60;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;58;EU.165.92;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Mossoul (J.O. FR);00;UNKNOWN;198;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;58;EU.165.92;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;15;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;60;EU.45.3;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Saif-al-Din Fulayyih Hassan Taha Al-Rawi;;;;Republican Guard Chief of Staff;89;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;60;EU.45.3;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Ayad Futayyih Al-Rawi;;;;Republican Guard Chief of Staff;91;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;60;EU.45.3;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Saïf-al-Din Foulaï Hassan Taha Al-Raoui;FR;;;;398;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;60;EU.45.3;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Ayad Foutaï Al-Raoui;FR;;;;399;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;60;EU.45.3;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;NO;GREGORIAN;;;;Ramadi;00;UNKNOWN;63;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;60;EU.45.3;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;16;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;63;EU.52.12;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Rafi Abd-al-Latif Tilfah Al-Tikriti;;;;Director of Directorate of General Security;94;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;63;EU.52.12;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Rafi Abdel Latif Tilfa Al-Tikriti;FR;;;;400;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;63;EU.52.12;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954;;;YES;GREGORIAN;;;;Tikrit;00;UNKNOWN;65;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;63;EU.52.12;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;17;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;65;EU.120.33;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Tahir Jalil Habbush Al-Tikriti;;;;Director of Iraqi Intelligence Services;96;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;65;EU.120.33;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Tahir Jalil Habbush Al-Tikriti;;;;Head of Directorate of General Security 1997 to 1999;97;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;65;EU.120.33;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Tahir Jalil Habbouch Al-Tikriti;FR;;;;401;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;65;EU.120.33;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950;;;NO;GREGORIAN;;;;Tikrit;00;UNKNOWN;67;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;65;EU.120.33;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;18;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;67;EU.146.66;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Hamid Raja Shalah Al-Tikriti;;;;Air Force Commander;99;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;67;EU.146.66;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Hassan Al-Tikriti;;;;Air Force Commander;100;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;67;EU.146.66;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Hamid Raja-Shalah Hassum Al-Tikriti;;;;Air Force Commander;101;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;67;EU.146.66;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Hamid Raja Chala Al-Tikriti;FR;;;;402;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;67;EU.146.66;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Hamid Raja-Chala Hassoum Al-Tikriti;FR;;;;403;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;67;EU.146.66;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950;;;NO;GREGORIAN;;;;Bayji, Salah al-Din Governorate;00;UNKNOWN;69;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;67;EU.146.66;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Bayji, Gobernación de Salah Al-Din (J.O. ES);00;UNKNOWN;164;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;67;EU.146.66;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Salaheddine (J.O. FR);00;UNKNOWN;199;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;67;EU.146.66;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;19;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;69;EU.148.68;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abd-al-Tawwab Mullah Huwaysh;;;;Deputy Prime Minister;104;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;69;EU.148.68;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abd-al-Tawwab Mullah Huwaysh;;;;Director of Organisation of Military Industrialisation;105;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;69;EU.148.68;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Abdel-Taouab Moullah Houwaïch;FR;;;;405;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;69;EU.148.68;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;YES;GREGORIAN;;;;Mosul;00;UNKNOWN;71;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;69;EU.148.68;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;YES;GREGORIAN;;;;Baghdad;00;UNKNOWN;72;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;69;EU.148.68;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1942-03-14;14;3;1942;;;NO;GREGORIAN;;;;Mosul;00;UNKNOWN;73;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;69;EU.148.68;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1942-03-14;14;3;1942;;;NO;GREGORIAN;;;;Baghdad;00;UNKNOWN;74;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;69;EU.148.68;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;21;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;71;EU.157.32;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Taha Yassin Ramadan Al-Jizrawi;;;;Vice President since 1991;107;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;71;EU.157.32;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Taha Yassine Ramadan Al-Jizraoui;FR;;;;406;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;71;EU.157.32;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1938;;;YES;GREGORIAN;;;;Mosul;IQ;IRAQ;77;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;71;EU.157.32;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;22;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;76;EU.133.1;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Jamal Mustafa Abdallah Sultan Al-Tikriti;;;;Deputy Head of Tribal Affairs in Presidential Office;115;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;76;EU.133.1;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Jamal Mustafa Abdallah Sultan al-Tikriti;FI;;;;243;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;76;EU.133.1;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Jamal Moustafa Abdallah Soultan Al-Tikriti;FR;;;;412;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;76;EU.133.1;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-05-04;4;5;1955;;;NO;GREGORIAN;;;;al-Samnah, near Tikrit;IQ;IRAQ;81;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;76;EU.133.1;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;25;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;79;EU.69.59;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Mizban Khadr Hadi;;;;Member, Ba'th Party Regional Command and Revolutionary Command Council since 1991;119;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;79;EU.69.59;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1938;;;NO;GREGORIAN;;;;Mandali District, Diyala;00;UNKNOWN;84;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;79;EU.69.59;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Mandalin piiri, Diyala (J.O. FI);00;UNKNOWN;257;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;79;EU.69.59;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;26;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;81;EU.71.49;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Taha Muhyi-al-Din Ma'ruf;;;;Vice President, Revolutionary Command Council;122;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;81;EU.71.49;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Taha Mouhi-al-Din Marouf;FR;;;;413;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;81;EU.71.49;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1924;;;NO;GREGORIAN;;;;Sulaymaniyah;00;UNKNOWN;86;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;81;EU.71.49;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Souleimaniyah (J.O. FR);00;UNKNOWN;203;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;81;EU.71.49;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;28;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;83;EU.77.33;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;Aziz;Tariq;;Tariq Aziz;;;;Deputy Prime Minister;124;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;83;EU.77.33;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;Aziz;Tariq;Mikhail;Tariq Mikhail Aziz;;;;Deputy Prime Minister;125;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;83;EU.77.33;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;Aziz;Tarek;;Tarek Aziz;FR;;;;414;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;83;EU.77.33;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;Aziz;Tarek;Mikhail;Tarek Mikhail Aziz;FR;;;;1388;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;83;EU.77.33;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1936-07-01;1;7;1936;;;NO;GREGORIAN;;;;Mosul;IQ;IRAQ;89;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;83;EU.77.33;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1936-07-01;1;7;1936;;;NO;GREGORIAN;;;;Baghdad;IQ;IRAQ;90;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;83;EU.77.33;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34409/129 (other-Other identification number) (july 1997);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;1;EN;july 1997;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;; +28/10/2022;83;EU.77.33;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;30;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;86;EU.88.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Walid Hamid Tawfiq Al-Tikriti;;;;Governor of Basrah;127;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;86;EU.88.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Walid Hamid Tawfiq al-Nasiri;;;;Governor of Basrah;128;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;86;EU.88.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Walid Hamid Tawfiq Al-Nasiri;ES;;;;251;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;86;EU.88.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Walid Hamid Tawfik Al-Tikriti;FR;;;Gouverneur de Bassora;415;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;86;EU.88.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Walid Hamid Tawfik al-Nasiri;FR;;;Gouverneur de Bassora;1261;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;86;EU.88.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954;;;NO;GREGORIAN;;;;Tikrit;00;UNKNOWN;91;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;86;EU.88.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;32;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;87;EU.89.61;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Sultan Hashim Ahmad Al-Ta'i;;;;Minister of Defence;129;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;87;EU.89.61;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Soultan Hachim Ahmed Al-Tai;FR;;;;416;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;87;EU.89.61;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944;;;NO;GREGORIAN;;;;Mosul;00;UNKNOWN;93;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;87;EU.89.61;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Mossoul (J.O. FR);00;UNKNOWN;204;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;87;EU.89.61;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;33;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;89;EU.97.35;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Hikmat Mizban Ibrahim al-Azzawi;;;;Deputy Prime Minister and Finance Minister;132;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;89;EU.97.35;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Hikmat Mizban Ibrahim al-Azzaoui;FR;;;;417;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;89;EU.97.35;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1934;;;NO;GREGORIAN;;;;Diyala;00;UNKNOWN;95;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;89;EU.97.35;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;34;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;91;EU.99.62;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Ayad Futayyih Khalifa Al-Rawi;;;;Chief of Staff, Quds Force, 2001 to 2003;134;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;91;EU.99.62;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Ayad Futayyih Khalifa Al-Rawi;;;;Former Governor of Baghdad and Ta'mim;135;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;91;EU.99.62;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1942;;;YES;GREGORIAN;;;;Rawah;00;UNKNOWN;98;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;91;EU.99.62;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;36;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;93;EU.101.7;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Amir Hamudi Hassan Al-Sa'di;;;;Presidential Scientific Advisor;137;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;93;EU.101.7;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Amir Hamudi Hassan Al-Sa'di;;;;Senior Deputy, Organisation of Military Industrialisation, 1988 to 1991;138;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;93;EU.101.7;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Amir Hamudi Hassan Al-Sa'di;;;;Former President, Technical Corps for Special Projects;139;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;93;EU.101.7;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Amir Hamoudi Hassan Al-Sadi;FR;;;;420;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;93;EU.101.7;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1938-04-05;5;4;1938;;;NO;GREGORIAN;;;;Baghdad;IQ;IRAQ;100;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;93;EU.101.7;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33301/862 (other-Other identification number) (issued: 17 october 1997 expires: 1 october 2005);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;2;EN;issued: 17 october 1997 expires: 1 october 2005;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;; +28/10/2022;93;EU.101.7;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;M0003264580 (other-Other identification number) (?(issued: unknown expires: unknown));NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;4;EN;?(issued: unknown expires: unknown);regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;; +28/10/2022;93;EU.101.7;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;H0100009 (other-Other identification number) (?(issued: may 2001 expires: unknown));NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;5;EN;?(issued: may 2001 expires: unknown);regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;; +28/10/2022;93;EU.101.7;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;38;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;98;EU.59.58;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Sab'awi Ibrahim Hassan Al-Tikriti;;;;Presidential Advisor;145;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;98;EU.59.58;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Sab'awi Ibrahim Hassan Al-Tikriti;;;;Director of General Security, early 1990s;146;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;98;EU.59.58;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Sab'awi Ibrahim Hassan Al-Tikriti;;;;Chief, Iraqi Intelligence Services, 1990 to 1991;147;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;98;EU.59.58;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Sabaoui Ibrahim Hassan Al-Tikriti;FR;;;;424;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;98;EU.59.58;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947;;;NO;GREGORIAN;;;;Tikrit;00;UNKNOWN;106;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;98;EU.59.58;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;42;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;99;EU.62.13;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Watban Ibrahim Hassan Al-Tikriti;;;;Presidential Advisor;148;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;99;EU.62.13;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Watban Ibrahim Hassan Al-Tikriti;;;;Minister of Interior, Early 1990s;150;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;99;EU.62.13;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Watab Ibrahim al-Hassan;;;;Presidential Advisor;151;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;99;EU.62.13;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Watab Ibrahim al-Hassan;;;;Minister of Interior, Early 1990s;152;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;99;EU.62.13;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952;;;NO;GREGORIAN;;;;Tikrit;00;UNKNOWN;107;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;99;EU.62.13;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;43;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;101;EU.63.75;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Barzan Ibrahim Hassan Al-Tikriti;;;;Presidential Advisor;153;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;101;EU.63.75;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Barzan Ibrahim Hassan Al-Tikriti;;;;Permanent Representative to UN (Geneva), 1989 to 1998;154;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;101;EU.63.75;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Barzan Ibrahim Hassan Al-Tikriti;;;;Head, Iraqi Intelligence Services, early 1980s;155;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;101;EU.63.75;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951;;;NO;GREGORIAN;;;;Tikrit;00;UNKNOWN;109;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;101;EU.63.75;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;44;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;103;EU.65.5;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Huda Salih Mahdi Ammash;;;;Member, Ba'th Party Regional Command;156;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;103;EU.65.5;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Huda Salih Mahdi Ammash;;;;Head, Biological Laboratories, Military Industrial Organisation, mid-1990s;157;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;103;EU.65.5;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Huda Salih Mahdi Ammash;;;;Former Head, Student and Youth Bureau, Ba'th Party;158;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;103;EU.65.5;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Huda Salih Mahdi Ammash;;;;Former Head, Professional Bureau of Women's Affairs;159;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;103;EU.65.5;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Houda Sali Mahdi Ammach;FR;;;;425;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;103;EU.65.5;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;NO;GREGORIAN;;;;Baghdad;00;UNKNOWN;110;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;103;EU.65.5;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;45;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;124;EU.169.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Humam Abd-al-Khaliq Abd-al-Ghafur;;;;Minister of Higher Education and Research, 1992 to 1997, 2001 to 2003;170;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124;EU.169.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Humam Abd-al-Khaliq Abd-al-Ghafur;;;;Minister of Culture, 1997 to 2001;171;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124;EU.169.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Humam Abd-al-Khaliq Abd-al-Ghafur;;;;Director and Deputy Director, Iraqi Atomic Energy Organisation, 1980s;172;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124;EU.169.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Humam 'Abd al-Khaliq 'Abd al-Rahman;;;;Minister of Higher Education and Research, 1992 to 1997, 2001 to 2003;173;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124;EU.169.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Humam 'Abd al-Khaliq 'Abd al-Rahman;;;;Minister of Culture, 1997 to 2001;175;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124;EU.169.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Humam 'Abd al-Khaliq 'Abd al-Rahman;;;;Director and Deputy Director, Iraqi Atomic Energy Organisation, 1980s;177;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124;EU.169.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Humam 'Abd-al-Khaliq Rashid;;;;Minister of Higher Education and Research, 1992 to 1997, 2001 to 2003;179;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124;EU.169.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Humam 'Abd-al-Khaliq Rashid;;;;Minister of Culture, 1997 to 2001;180;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124;EU.169.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Humam 'Abd-al-Khaliq Rashid;;;;Director and Deputy Director, Iraqi Atomic Energy Organisation, 1980s;181;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124;EU.169.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Houmam Abdel-Khalik Abdel-Ghafour;FR;;;;429;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124;EU.169.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Houmam Abdel-Khalik Abdel-Rahman;FR;;;;430;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124;EU.169.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Houmam Abdel-Khalil Rachid;FR;;;;431;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124;EU.169.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1945;;;NO;GREGORIAN;;;;Ar-Ramadi;00;UNKNOWN;122;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124;EU.169.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0018061/104 (other-Other identification number) (issued 12 september 1993);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;3;EN;issued 12 september 1993;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;; +28/10/2022;124;EU.169.96;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;50;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;130;EU.150.25;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Yahia Abdallah Al-Ubaidi;;;;Ba'th Party Regional Command Chairman, al-Basrah;187;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130;EU.150.25;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Yahia Abdalla Al-Oubaïdi;FR;;;Commandant régional du parti Baas pour le gouvernorat de Bassora;432;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130;EU.150.25;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;51;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;133;EU.153.28;;;;((a) Died in 2003, (b) UNSC RESOLUTION 1483 BASIS: see function);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Nayif Shindakh Thamir Ghalib;;;;Ba'th Party Regional Command Chairman, An-Najaf;191;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133;EU.153.28;;;;((a) Died in 2003, (b) UNSC RESOLUTION 1483 BASIS: see function);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Nayif Shindakh Thamir Ghalib;;;;Member, Iraqi National Assembly;192;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133;EU.153.28;;;;((a) Died in 2003, (b) UNSC RESOLUTION 1483 BASIS: see function);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Nayif Shindakh Thamir Ghalib;DE;;;Vorsitzender der Bezirksleitung der Baath-Partei, Nedjef;1455;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133;EU.153.28;;;;((a) Died in 2003, (b) UNSC RESOLUTION 1483 BASIS: see function);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;52;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;136;EU.134.2;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Saif-al-Din Al-Mashhadani;;;;Ba'th Party Regional Command Chairman, Al-Muthanna;195;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136;EU.134.2;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Saif-al-Din Al-Machhadani;FR;;;;433;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136;EU.134.2;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Saif-al-Din Al-Machhadani;DE;;;Vorsitzender der Bezirksleitung der Baath-Partei, Muthanna;1446;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136;EU.134.2;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;;Baghdad;00;UNKNOWN;128;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136;EU.134.2;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;53;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;139;EU.90.86;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Fadil Mahmud Gharib;;;;Ba'th Party Regional Command Chairman, Babil;199;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139;EU.90.86;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Fadil Mahmud Gharib;;;;Chairman, General Federation of Iraqi Trade Unions;200;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139;EU.90.86;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Gharib Muhammad Fazel al-Mashaikhi;;;;Ba'th Party Regional Command Chairman, Babil;202;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139;EU.90.86;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Gharib Muhammad Fazel al-Mashaikhi;;;;Chairman, General Federation of Iraqi Trade Unions;203;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139;EU.90.86;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Fadil Mahmoud Gharib;FR;;;;434;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139;EU.90.86;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Gharib Mohammed Fazel al-Machaikhi;FR;;;;435;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139;EU.90.86;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944;;;NO;GREGORIAN;;;;Dujail;00;UNKNOWN;131;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139;EU.90.86;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;54;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;143;EU.103.9;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Muhsin Khadr Al-Khafaji;;;;Ba'th Party Regional Command Chairman, al-Qadisyah;206;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143;EU.103.9;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Mouhssin Khadr Al-Khafaji;FR;;;;436;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143;EU.103.9;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;55;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;146;EU.114.72;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Rashid Taan Kathim;;;;Ba'th Party Regional Command Chairman, al-Anbar;208;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;146;EU.114.72;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Rachid Taan Kazim;FR;;;;437;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;146;EU.114.72;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;57;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;147;EU.115.73;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Ugla Abid Sakr Al-Zubaisi;;;;Ba'th Party Regional Command Chairman, Maysan;211;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;147;EU.115.73;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Saqr al-Kabisi Abd Aqala;;;;Ba'th Party Regional Command Chairman, Maysan;212;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;147;EU.115.73;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Ougla Abid Sakr Al-Koubaïssi;FR;;;;438;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;147;EU.115.73;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944;;;NO;GREGORIAN;;;;Kubaisi, al-Anbar;00;UNKNOWN;135;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;147;EU.115.73;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;58;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;153;EU.124.37;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Ghazi Hammud Al-Ubaidi;;;;Ba'th Party Regional Command Chairman, Wasit;217;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;153;EU.124.37;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Ghazi Hammoud Al-Oubaïdi;FR;;;;439;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;153;EU.124.37;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944;;;NO;GREGORIAN;;;;Baghdad;00;UNKNOWN;141;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;153;EU.124.37;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;59;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;154;EU.125.38;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Adil Abdallah Mahdi;;;;Ba'th Party Regional Command Chairman, Dhi-Qar;218;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;154;EU.125.38;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Adil Abdallah Mahdi;;;;Former Ba'th Party Chairman for Diyala and al-Anbar;219;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;154;EU.125.38;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1945;;;NO;GREGORIAN;;;;al-Dur;00;UNKNOWN;142;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;154;EU.125.38;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Al-Dur (J.O. ES);00;UNKNOWN;264;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;154;EU.125.38;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;al-Dour (J.O. FR);00;UNKNOWN;265;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;154;EU.125.38;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;60;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;156;EU.127.40;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Khamis Sirhan Al-Muhammad;;;;Ba'th Party Regional Command Chairman, Karbala;222;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;156;EU.127.40;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Dr. Fnu Mnu Khamis;;;;Ba'th Party Regional Command Chairman, Karbala;223;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;156;EU.127.40;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Khamis Sirhan Al-Muhammad;DE;;;Vorsitzender der Bezirksleitung der Baath-Partei, Kerbela;1428;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;156;EU.127.40;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Khamis Sirhan Al-Muhammad;FR;;;Commandant régional du parti Baas pour le gouvernorat de Kerbala;1429;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;156;EU.127.40;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;62;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;157;EU.128.41;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Sa'd Abd-al-Majid Al-Faisal Al-Tikriti;;;;Ba'th Party Regional Command Chairman, Salah Ad-Din;224;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;157;EU.128.41;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Sa'd Abd-al-Majid Al-Faisal Al-Tikriti;;;;Former Undersecretary for Security Affairs, Foreign Ministry;225;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;157;EU.128.41;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Saad Abdul-Majid Al-Faissal Al-Tikriti;FR;;;Commandant régional du parti Baas pour le gouvernorat de Salaheddine;441;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;157;EU.128.41;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Sa'd Abd-al-Majid Al-Faisal Al-Tikriti;DE;;;Vorsitzender der Bezirksleitung der Baath-Partei, Salah ad-Din;1430;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;157;EU.128.41;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944;;;NO;GREGORIAN;;;;Tikrit;00;UNKNOWN;143;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;157;EU.128.41;;;;(UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;63;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;175;EU.3567.71;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;AL-NASSER Abdelkarim Hussein Mohamed;;;;;263;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;175;EU.3567.71;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Al Ihsa;SA;SAUDI ARABIA;169;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;175;EU.3567.71;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SA;;65;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF +28/10/2022;176;EU.3568.36;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;AL-YACOUB Ibrahim Salih Mohammed;;;;;264;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;176;EU.3568.36;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-10-16;16;10;1966;;;NO;GREGORIAN;;;;Tarut;SA;SAUDI ARABIA;170;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;176;EU.3568.36;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SA;;66;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF +28/10/2022;189;EU.3577.72;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;AL-DIN Izz Hasan;;;;;283;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;189;EU.3577.72;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Garbaya Ahmed;;M;;;284;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;189;EU.3577.72;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Sa’id;;M;;;285;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;189;EU.3577.72;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Salwwan Samir;;M;;;286;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;189;EU.3577.72;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;NO;GREGORIAN;;;;-;LB;LEBANON;181;EN;;amendment;council;2005-11-30;2005-11-30;2005/848/EC (OJ L314);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:314:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;189;EU.3577.72;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LB;;69;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF +28/10/2022;191;EU.3579.2;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;MOHAMMED Khalid Sheikh;;M;;;289;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;191;EU.3579.2;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ali Salem;;M;;;290;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;191;EU.3579.2;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Bin Khalid Fahd Bin Abdallah;;M;;;291;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;191;EU.3579.2;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Henin Ashraf Refaat Nabith;;M;;;292;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;191;EU.3579.2;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Wadood Khalid Abdul;;M;;;293;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;191;EU.3579.2;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-04-14;14;4;1965;;;NO;GREGORIAN;;;;-;PK;PAKISTAN;183;EN;;amendment;council;2005-11-30;2005-11-30;2005/848/EC (OJ L314);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:314:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;191;EU.3579.2;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-03-01;1;3;1964;;;NO;GREGORIAN;;;;-;PK;PAKISTAN;184;EN;;amendment;council;2005-11-30;2005-11-30;2005/848/EC (OJ L314);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:314:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;191;EU.3579.2;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"488555 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;6;EN;;repealing;council;2015-08-01;2015-08-02;2015/1325 (OJ L206);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R1325&rid=1;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Abu Nidal Organisation;;;;;311;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;ANO;;;;;312;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fatah Revolutionary Council;;;;;313;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Arab Revolutionary Brigades;;;;;314;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Black September;;;;;315;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolutionary Organisation of Socialist Muslims;;;;;316;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolutionaire Organisatie van Socialistische Moslims;NL;;;;123030;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Zwarte September;NL;;;;123031;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Arabische Revolutionaire Brigades;NL;;;;123032;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fatah Revolutionaire Raad;NL;;;;123033;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;l-Organizzazzjoni Rivoluzzjonarja tal-Musulmani Sojalisti;MT;;;;123034;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;s-Settembru l-Iswed;MT;;;;123035;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;l-Brigati Rivoluzzjonarji Garab;MT;;;;123036;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;l-Kunsill Rivoluzzjonarju tal-Fatah;MT;;;;123037;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;L-Organizzazzjoni Abu Nidal;MT;;;;123038;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Szocialista Muzulmánok Forradalmi Szervezete;HU;;;;123039;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fekete Szeptember;HU;;;;123040;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Arab Forradalmi Brigádok;HU;;;;123041;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fatah Forradalmi Tanács;HU;;;;123042;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Abu Nidal Szervezet;HU;;;;123043;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Musulmonų socialistų revoliucinė organizacija;LT;;;;123044;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Juodasis rugsėjis;LT;;;;123045;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Arabų revoliucinės brigados;LT;;;;123046;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fatah revoliucinė taryba;LT;;;;123047;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Abu Nidal organizacija;LT;;;;123048;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Organizzazione rivoluzionaria dei musulmani socialisti;IT;;;;123049;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Settembre nero;IT;;;;123050;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Brigate rivoluzionarie arabe;IT;;;;123051;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Consiglio rivoluzionario Fatah;IT;;;;123052;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Organizzazione Abu Nidal;IT;;;;123053;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolucionarna organizacija socijalističkih muslimana;HR;;;;123054;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Crni rujan;HR;;;;123055;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Arapske revolucionarne brigade;HR;;;;123056;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolucionarno vijeće Fataha;HR;;;;123057;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Organizacija Abu Nidal;HR;;;;123058;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Eagraíocht Réabhlóide na Moslamach Sóisialach;GA;;;;123059;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Lucht Mheán Fómhair Dubh;GA;;;;123060;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;na Briogáidí Réabhlóideacha Arabacha;GA;;;;123061;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Comhairle Réabhlóide Fatah;GA;;;;123062;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Eagraíocht Abu Nidal;GA;;;;123063;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Organisation révolutionnaire des musulmans socialistes;FR;;;;123064;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Septembre noir;FR;;;;123065;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Brigades révolutionnaires arabes;FR;;;;123066;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Conseil révolutionnaire du Fatah;FR;;;;123067;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Organisation Abou Nidal;FR;;;;123068;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Επαναστατική Οργάνωση Σοσιαλιστών Μουσουλμάνων;EL;;;;123069;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Μαύρος Σεπτέμβρης;EL;;;;123070;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Αραβικές Επαναστατικές Ταξιαρχίες;EL;;;;123071;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Επαναστατικό Συμβούλιο Φατάχ;EL;;;;123072;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Οργάνωση Abu Nidal;EL;;;;123073;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Sotsialistlike Moslemite Revolutsiooniline Organisatsioon;ET;;;;123074;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Must September;ET;;;;123075;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Araabia Revolutsioonilised Brigaadid;ET;;;;123076;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fatah' Revolutsiooniline Nõukogu;ET;;;;123077;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Abu Nidali Organisatsioon;ET;;;;123078;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolutionäre Organisation der Sozialistischen Moslems;DE;;;;123079;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Schwarzer September;DE;;;;123080;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Arabische Revolutionäre Brigaden;DE;;;;123081;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fatah-Revolutionsrat;DE;;;;123082;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revoluční organizace socialistických muslimů;CS;;;;123083;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Černé září;CS;;;;123084;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Arabské revoluční brigády;CS;;;;123085;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revoluční rada Fatáhu;CS;;;;123086;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Organizace Abú Nidal;CS;;;;123087;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Organización Revolucionaria de los Musulmanes Socialistas;ES;;;;123088;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Septiembre Negro;ES;;;;123089;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Brigadas Revolucionarias Árabes;ES;;;;123090;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Consejo Revolucionario de Al Fatah;ES;;;;123091;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Organización Abu Nidal;ES;;;;123092;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Революционна организация на мюсюлманите социалисти;BG;;;;123093;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Черен септември;BG;;;;123094;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Арабски революционни бригади;BG;;;;123095;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Революционен съвет на Фатах;BG;;;;123096;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Организация „Абу Нидал”;BG;;;;123097;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Abu Nidals grupp;SV;;;;123098;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Musta syyskuu;FI;;;;123099;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fatahin vallankumousneuvosto;FI;;;;123100;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Abu Nidal - järjestö;FI;;;;123101;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolucionarna organizacija socialističnih muslimanov;SL;;;;123102;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Črni September;SL;;;;123103;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Arabske revolucionarne brigade;SL;;;;123104;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolucionarni svet Fataha;SL;;;;123105;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Organizacija Abu Nidal;SL;;;;123106;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolučná organizácia moslimských socialistov;SK;;;;123107;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Čierny september;SK;;;;123108;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Arabské revolučné brigády;SK;;;;123109;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolučná rada Fatah;SK;;;;123110;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Organizácia Abú Nidála;SK;;;;123111;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Organizația Revoluționară a Musulmanilor Socialiști;RO;;;;123112;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Septembrie Negru;RO;;;;123113;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Brigăzile Revoluționare Arabe;RO;;;;123114;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Consiliul Revoluționar Fatah;RO;;;;123115;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Organizația Abu Nidal;RO;;;;123116;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Organização Revolucionária dos Muçulmanos Socialistas;PT;;;;123117;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Setembro Negro;PT;;;;123118;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Brigadas Revolucionárias Árabes;PT;;;;123119;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Conselho Revolucionário do Fatah;PT;;;;123120;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Organização Abu Nidal;PT;;;;123121;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Rewolucyjna Organizacja Muzułmańskich Socjalistów;PL;;;;123122;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Czarny Wrzesień;PL;;;;123123;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Rewolucyjne Brygady Arabskie;PL;;;;123124;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Rewolucyjna Rada Fatah;PL;;;;123125;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;201;EU.3502.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Organizacja Abu Nidala;PL;;;;123126;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Al-Aqsa Martyrs' Brigade;;;;;3890;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;al-Aqsa-martyrernas brigader;SV;;;;123135;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Al-Aqsan marttyyrien prikaati;SL;;;;123136;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Brigada mučenikov Al Akse;SL;;;;123137;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Brigáda mučeníkov Al-Aksá;SK;;;;123138;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Brigada Martirilor Al-Aqsa;RO;;;;123139;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Brigada dos Mártires de Al-Aqsa;PT;;;;123140;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Brygady Męczenników Al-Aksy;PL;;;;123141;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Al-Aqsa Martelarenbrigade;NL;;;;123142;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Il-Brigata tal-Martri ta' Al-Aqsa;MT;;;;123143;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Al-Aqsa Mártírjainak Brigádja;HU;;;;123144;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Al-Aqsa kankinių brigade;LT;;;;123145;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Brigata dei martiri di Al-Aqsa;IT;;;;123146;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Brigada mučenika Al-Aqse;HR;;;;123147;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Briogáid Máirtíreach Al-Aqsa;GA;;;;123148;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Brigade des martyrs d’Al-Aqsa;FR;;;;123149;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ταξιαρχία Μαρτύρων του Al-Aqsa;EL;;;;123150;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Al-Aqsa Märtrite Brigaad;ET;;;;123151;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Al-Aqsa-Märtyrerbrigade;DE;;;;123152;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Brigáda mučedníků al-Aksá;CS;;;;123153;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Brigada de los Mártires de Al‐Aqsa;ES;;;;123154;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;202;EU.3533.14;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Бригади на мъчениците от Ал-Акса;BG;;;;123155;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;205;EU.3557.70;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Babbar Khalsa;;;;;323;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;205;EU.3557.70;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Babbar Chalsa;PL;;;;123162;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;205;EU.3557.70;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Μπάμπαρ Χαλσά;EL;;;;123163;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;205;EU.3557.70;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Babbar Jalsa;ES;;;;123164;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;205;EU.3557.70;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Бабар Калса;BG;;;;123165;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Gama'a al-Islamiyya;;;;;324;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Islamic Group - IG;;;;;325;EN;;repealing;council;2015-08-01;2015-08-02;2015/1325 (OJ L206);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R1325&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Al-Gama'a al-Islamiyya;;;;;326;EN;;repealing;council;2015-08-01;2015-08-02;2015/1325 (OJ L206);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R1325&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;IG;;;;;2552;EN;;amendment;council;2019-08-09;2019-08-10;2019/1337 (OJ L209);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.209.01.0001.01.ENG&toc=OJ:L:2019:209:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Islamiska gruppen;SV;;;;123229;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Islamistična skupina;SL;;;;123230;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Islamská skupina;SK;;;;123231;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Grupul Islamic;RO;;;;123232;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Grupo Islâmico;PT;;;;123233;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Grupa Islamska;PL;;;;123234;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Islamitische Groep;NL;;;;123235;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;il-Grupp Iżlamiku;MT;;;;123236;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Iszlám Csoport;HU;;;;123237;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Islamo grupuotė;LT;;;;123238;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Islamska skupina;HR;;;;123239;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Grúpa Ioslamach;GA;;;;123240;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Groupe islamique;FR;;;;123241;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ισλαμική Ομάδα;EL;;;;123242;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Islamirühmitus;ET;;;;123243;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Islamische Gruppe;DE;;;;123244;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Islamisk Gruppe;DA;;;;123245;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Islámská skupina;CS;;;;123246;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Grupo Islámico;ES;;;;123247;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;206;EU.3512.47;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Джамаа Ислямия;BG;;;;123248;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Great Islamic Eastern Warriors Front;;;;;327;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;IBDA-C;;;;;328;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;İslami Büyük Doğu Akıncılar Cephesi;;;;;6068;EN;;amendment;council;2007-12-20;2007-12-20;2007/868/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:340:0100:0103:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Förtrupperna för ett islamiskt Stororienten;SV;;;;123260;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fronta islamskih bojevnikov velikega vzhoda;SL;;;;123261;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Front islamských bojovníkov Veľkého východu;SK;;;;123262;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Marele Front de Est Islamic al Războinicilor;RO;;;;123263;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Grande Frente Islâmica Oriental de Combatentes;PT;;;;123264;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Islamski Front Bojowników o Wielki Wschód;PL;;;;123265;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Front van Voorvechters voor het Grote Islamitische Oosten;NL;;;;123266;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;il-Front Iżlamiku tal-Ġellieda tal-Lvant il-Kbir;MT;;;;123267;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Nagy Iszlám Keleti Harci Front;HU;;;;123268;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Didysis islamo rytų karių frontas;LT;;;;123269;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fronte islamico dei combattenti del grande oriente;IT;;;;123270;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fronta ratnika velikog islamskog istoka;HR;;;;123271;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fronta Mór Laochra Ioslamacha an Oirthir;GA;;;;123272;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Front islamique des combattants du Grand Orient;FR;;;;123273;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Μέγα Ισλαμικό Μέτωπο των Πολεμιστών της Ανατολής;EL;;;;123274;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Suur Islami Idavõitlejate Rinne;ET;;;;123275;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Front der islamischen Kämpfer des Großen Ostens;DE;;;;123276;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fronta islámských bojovníků Velkého východu;CS;;;;123277;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Frente de Guerreros del Gran Oriente Islámico;ES;;;;123278;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;207;EU.3523.13;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Фронт на великите ислямски източни воини;BG;;;;123279;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;208;EU.3524.75;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hamas;;;;;329;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;208;EU.3524.75;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hamas-Izz al-Din al-Qassem;;;;;330;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdistan Workers' Party;;;;;336;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PKK;;;;;337;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Parti des travailleurs du Kurdistan;FR;;;;451;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Partido de los Trabajadores del Kurdistán;ES;;;;484;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Εργατικό Κόµµα του Κουρδιστάν;EL;;;;525;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Partido dos Trabalhadores do Curdistão;PT;;;;548;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdistanin työväenpuolue;FI;;;;576;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Det Kurdiske Arbejderparti;DA;;;;590;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdische Arbeiterpartei;DE;;;;619;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Koerdische Arbeiderspartij;NL;;;;647;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Partito dei lavoratori del Kurdistan;IT;;;;688;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;KONGRA-GEL;;;;;2545;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdská strana pracujících;CS;;;;3752;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdistani Töölispartei;ET;;;;3753;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurd Munkáspárt;HU;;;;3754;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdistano darbininkų partija;LT;;;;3756;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Partia Pracujących Kurdystanu;PL;;;;3757;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Strana kurdských pracujúcich;SK;;;;3758;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Delavska stranka Kurdistana;SL;;;;3759;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdistan Workers Party;;;;;3895;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Кюрдска работническа партия;BG;;;;5670;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Partidul Muncitoresc din Kurdistan;RO;;;;5671;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Il-Partit tal-Ħaddiema tal-Kurdistan;MT;;;;6728;EN;;amendment;council;2008-07-16;2008-07-16;2008/583/EC (OJ L188);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:188:0021:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;KADEK;EN;;;;105936;EN;;repealing;council;2015-08-01;2015-08-02;2015/1325 (OJ L206);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R1325&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Páirtí Oibrithe na Cordastáine;GA;;;;123316;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;212;EU.3678.2;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdistanska radnička stranka;HR;;;;123320;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;NPA, Philippines;;;;;351;EN;;repealing;council;2015-08-01;2015-08-02;2015/1325 (OJ L206);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R1325&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;New People's Army;;;;;456;EN;;amendment;council;2008-04-30;2008-04-30;2008/343/EC (OJ L116);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:116:0025:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Communist Party of the Philippines;;;;;4282;EN;;amendment;council;2005-10-18;2005-10-18;2005/722/EC (OJ L272);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:272:0015:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Nya folkarmén;SV;;;;123166;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Filippinernas kommunistparti;SV;;;;123167;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Uusi kansanarmeija;FI;;;;123168;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Filippiinien kommunistinen puolue;FI;;;;123169;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Nova ljudska vojska;SL;;;;123170;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Komunistična stranka Filipinov;SL;;;;123171;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Novej ľudovej armády;SK;;;;123172;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Komunistická strana Filipín;SK;;;;123173;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Noua Armată Populară;RO;;;;123174;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Partidul Comunist din Filipine;RO;;;;123175;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Novo Exército Popular (NEP);PT;;;;123176;EN;;amendment;council;2021-02-08;2021-02-09;2021/138 (OJ L43);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.043.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A043%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Partido Comunista das Filipinas;PT;;;;123177;EN;;amendment;council;2021-02-08;2021-02-09;2021/138 (OJ L43);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.043.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A043%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Nowa Armia Ludowa;PL;;;;123178;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Komunistyczna Partia Filipin;PL;;;;123179;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;l-Armata l-Ġdida tal-Poplu;MT;;;;123180;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Il-Partit Komunista tal-Filippini;MT;;;;123181;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fülöp-szigeteki Kommunista Párt;HU;;;;123182;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Új Néphadsereg;HU;;;;123183;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Naująją liaudies armiją;LT;;;;123184;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Filipinų komunistų partija;LT;;;;123185;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Nuovo esercito popolare;IT;;;;123186;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Partito comunista delle Filippine;IT;;;;123187;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Nova narodna vojska;HR;;;;123188;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Komunistička partija Filipina;HR;;;;123189;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Arm Nua an Phobail - APN;GA;;;;123190;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Páirtí Cumannach na nOileán Filipíneach;GA;;;;123191;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Nouvelle armée du peuple;FR;;;;123192;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Parti communiste des Philippines;FR;;;;123193;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Νέος Λαϊκός Στρατός;EL;;;;123194;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Κομμουνιστικό Κόμμα Φιλιππίνων;EL;;;;123195;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Uus Rahvaarmee;ET;;;;123196;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Filipiinide Kommunistlik Partei;ET;;;;123197;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Neue Volksarmee;DE;;;;123198;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kommunistische Partei der Philippinen;DE;;;;123199;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Det Filippinske Kommunistparti;DA;;;;123200;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Nové lidové armády;CS;;;;123201;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Komunistická strana Filipín;CS;;;;123202;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Nuevo Ejército del Pueblo;ES;;;;123203;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Partido Comunista de las Filipinas;ES;;;;123204;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Нова народна армия;BG;;;;123205;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;215;EU.3558.35;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Комунистическа партия на Филипините;BG;;;;123206;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestinian Islamic Jihad;;;;;357;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PIJ;;;;;358;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Jihad islamique palestinien;FR;;;;459;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Yihad islámica para la liberación de Palestina;ES;;;;491;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Παλαιστινιακή Ισλαµική Τζιχάντ;EL;;;;533;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Jihad Islâmica Palestiniana;PT;;;;556;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palästinensischer Islamischer Dschihad;DE;;;;568;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestiinan islamilainen jihad;FI;;;;580;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palæstinensisk Islamisk Jihad;DA;;;;595;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestina Islamic Jihad;NL;;;;654;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Jihad islamica palestinese;IT;;;;696;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestinský islámský džihád;CS;;;;3808;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestiina Islami Džihaad;ET;;;;3809;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palesztin Iszlám Dzsihád;HU;;;;3810;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestīniešu Islāma Jihad;LV;;;;3811;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestinos islamo džihadas;LT;;;;3812;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestyński Islamski Dżihad;PL;;;;3813;EN;;repealing;council;2009-06-16;2009-06-16;501/2009 (OJ L151);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:151:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestínsky islamský džihád;SK;;;;3814;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestinski islamski džihad;SL;;;;3815;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestinska islamiska Jihad;SV;;;;3816;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Палестински ислямски джихад;BG;;;;5688;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Jihadul Islamic Palestinian;RO;;;;5689;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;JIP;RO;;;;5690;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Il-Ġiħad Iżlamika tal-Palestina;MT;;;;6736;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestinski islamski džihad;HR;;;;123317;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;217;EU.3689.65;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Jiohád Ioslamach na Palaistíne;GA;;;;123318;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Popular Front for the Liberation of Palestine;;;;;359;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PFLP;;;;;360;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Front populaire de libération de la Palestine;FR;;;;460;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;FPLP;FR;;;;461;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Frente Popular de Liberación de Palestina;ES;;;;492;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;FPLP;ES;;;;493;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Λαϊκό Μέτωπο για την Απελευθέρωση της Παλαιστίνης;EL;;;;534;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Frente Popular de Libertação da Palestina;PT;;;;557;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestiinan vapautuksen kansanrintama;FI;;;;581;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Folkefronten til Palæstinas Befrielse;DA;;;;596;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Volksfront für die Befreiung Palästinas;DE;;;;629;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Volksfront voor de bevrijding van Palestina;NL;;;;655;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fronte popolare di liberazione della Palestina;IT;;;;697;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Lidová fronta za osvobození Palestiny;CS;;;;3817;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestiina Vabastamise Rahvarinne;ET;;;;3818;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Népi Front Palesztina Felszabadításért;HU;;;;3819;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestīnas atbrīvošanas Tautas Fronte;LV;;;;3820;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestinos išlaisvinimo liaudies frontas;LT;;;;3821;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PILF;LT;;;;3822;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ludowy Front Wyzwolenia Palestyny;PL;;;;3823;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ľudový front za oslobodenie Palestíny;SK;;;;3824;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ljudska fronta za osvoboditev Palestine;SL;;;;3825;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PATF;ET;;;;3896;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;FPLP;PT;;;;3897;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Народен Фронт за освобождение на Палестина;BG;;;;5691;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Frontul Popular pentru Eliberarea Palestinei;RO;;;;5692;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;FPEP;RO;;;;5693;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Il-Front Popolari għal-Liberazzjoni tal-Palestina;MT;;;;6737;EN;;amendment;council;2008-07-16;2008-07-16;2008/583/EC (OJ L188);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:188:0021:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Folkfronten för Palestinas befrielse;SV;;;;123343;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Narodna fronta za oslobođenje Palestine;HR;;;;123344;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;218;EU.3699.66;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fronta Pobail i gcomhair Shaoirse na Palaistíne;GA;;;;123345;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Popular Front for the Liberation of Palestine — General Command;;;;;361;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PFLP — General Command;;;;;362;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Front populaire de libération de la Palestine — Commandement général;FR;;;;462;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;FPLP — Commandement général;FR;;;;463;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Frente Popular de Liberación de Palestina — «Comando General»;ES;;;;494;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;FPLP — Comando General;ES;;;;495;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;FPLP-CG;ES;;;;496;EN;;repealing;council;2009-06-16;2009-06-16;501/2009 (OJ L151);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:151:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Λαϊκό Μέτωπο για την Απελευθέρωση της Παλαιστίνης — Γενική ∆ιοίκηση;EL;;;;535;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Frente Popular de Libertação da Palestina — Comando Geral;PT;;;;558;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;FPLP — Comando Geral;PT;;;;559;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Folkefronten til Palæstinas Befrielse-Generalkommandoen;DA;;;;597;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Generalkommando der Volksfront für die Befreiung Palästinas;DE;;;;630;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Volksfront voor de bevrijding van Palestina-Algemeen Commando;NL;;;;656;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fronte popolare di liberazione della Palestina — Comando generale;IT;;;;698;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Comando generale del PFLP;IT;;;;700;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Vrchní velitelství Lidové fronty za osvobození Palestiny;CS;;;;3826;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Népi Front Palesztina Felszabadításért – Főparancsnokság;HU;;;;3827;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestīnas atbrīvošanas Tautas Fronte – virsvadība;LV;;;;3828;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PFLP – virsvadība;LV;;;;3829;EN;;repealing;council;2009-06-16;2009-06-16;501/2009 (OJ L151);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:151:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestinos išlaisvinimo žmonių fronto Aukščiausioji vadovybė;LT;;;;3830;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PILF Aukščiausioji vadovybė;LT;;;;3831;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ludowy Front Wyzwolenia Palestyny – Naczelne Dowództwo;PL;;;;3833;EN;;repealing;council;2009-06-16;2009-06-16;501/2009 (OJ L151);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:151:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ľudový front za oslobodenie Palestíny – hlavné veliteľstvo;SK;;;;3835;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PFLP-Hlavné veliteľstvo;SK;;;;3836;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ljudska fronta za osvoboditev Palestine – glavno poveljstvo;SL;;;;3837;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PFLP – glavno poveljstvo;SL;;;;3838;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Народен Фронт за освобождение на Палестина – Общо командване;BG;;;;5694;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Frontul Popular pentru Eliberarea Palestinei – Comandamentul General;RO;;;;5695;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;FPEP – Comandamentul General;RO;;;;5696;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Il-Front Popolari għal-Liberazzjoni tal-Palestina – Kmand Ġenerali;MT;;;;6738;EN;;amendment;council;2008-07-16;2008-07-16;2008/583/EC (OJ L188);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:188:0021:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PFLP – Kmand Ġenerali;MT;;;;6739;EN;;amendment;council;2008-07-16;2008-07-16;2008/583/EC (OJ L188);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:188:0021:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PFLP -Főparancsnokság;HU;;;;7191;EN;;repealing;council;2009-06-16;2009-06-16;501/2009 (OJ L151);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:151:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Folkfronten för Palestinas befrielse – Generalkommandot;SV;;;;123346;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PFLP:n keskuskomento;FI;;;;123347;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestiinan vapautuksen kansanrintama – keskuskomento;FI;;;;123348;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PFLP – splošno poveljstvo;SL;;;;123349;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ljudska fronta za osvoboditev Palestine – splošno poveljstvo;SL;;;;123350;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PFLP – Naczelne Dowództwo;PL;;;;123351;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ludowy Front Wyzwolenia Palestyny – Naczelne Dowództwo;PL;;;;123352;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PFLP — Glavni stožer;HR;;;;123353;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Narodna fronta za oslobođenje Palestine — Glavni stožer;HR;;;;123354;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PFLP — Ceannas Ginearálta;GA;;;;123355;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fronta Pobail i gcomhair Shaoirse na Palaistíne — Ceannas Ginearálta;GA;;;;123356;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;PFLP peastaap;ET;;;;123357;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Palestiina Vabastamise Rahvarinde peastaap;ET;;;;123358;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;219;EU.3700.46;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Народен фронт за освобождение на Палестина — Главно командване;BG;;;;123359;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolutionary People's Liberation Army/Front/Party;EN;;;;366;EN;;amendment;council;2007-12-20;2007-12-20;2007/868/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:340:0100:0103:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;DHKP/C;;;;;367;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Devrimci Sol;;;;;368;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolutionary Left;EN;;;;369;EN;;amendment;council;2007-12-20;2007-12-20;2007/868/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:340:0100:0103:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Dev Sol;;;;;370;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Armée/Front/Parti révolutionnaire populaire de libération;FR;;;;466;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Gauche révolutionnaire;FR;;;;467;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ejército/Frente/Partido Revolucionario de Liberación Popular;ES;;;;498;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Izquierda revolucionaria;ES;;;;499;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Επαναστατικός Λαϊκός Απελευθερωτικός Στρατός/Μέτωπο;EL;;;;507;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Επαναστατική Αριστερά;EL;;;;508;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Exército/Frente/Partido Revolucionário Popular de Libertação;PT;;;;561;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Esquerda Revolucionária;PT;;;;562;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolutionäre Volksbefreiungsarmee/-front/- partei;DE;;;;632;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolutionäre Linke;DE;;;;633;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolutionair Volksbevrijdingsleger/front/partij;NL;;;;658;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolutionair Links;NL;;;;659;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Esercito/Fronte/Partito rivoluzionario popolare di liberazione;IT;;;;1414;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Sinistra rivoluzionaria;IT;;;;1415;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revoluční lidově osvobozenecká armáda/fronta/strana;CS;;;;3848;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revoluční levice;CS;;;;3849;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolutsiooniline Rahva Vabastusarmee/ Rinne/Partei;ET;;;;3850;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolutsioonilised Vasakpoolsed;ET;;;;3851;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Forradalmi Népi Felszabadítási Hadsereg/Front/Párt;HU;;;;3852;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Forradalmi Baloldal;HU;;;;3853;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolucionārā Tautas atbrīvošanās armija/fronte/partija;LV;;;;3854;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;revolucionāri kreisie;LV;;;;3855;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revoliucinė liaudies išlaisvinimo armija/frontas/partija;LT;;;;3856;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revoliucinė kairė;LT;;;;3857;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Partia/Front i Armia Wyzwolenia Ludu Tureckiego;PL;;;;3858;EN;;repealing;council;2009-06-16;2009-06-16;501/2009 (OJ L151);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:151:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Lewica Rewolucyjna;PL;;;;3859;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolučná ľudová oslobodzovacia armáda/front/strana;SK;;;;3860;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolučná ľavica;SK;;;;3861;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolucionarna ljudska osvobodilna vojska/fronta/stranka;SL;;;;3862;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolucionarna levica;SL;;;;3863;EN;;repealing;council;2009-06-16;2009-06-16;501/2009 (OJ L151);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:151:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Революционни армия/ фронт / партия за народно освобождение;BG;;;;5699;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Революционни леви;BG;;;;5700;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Armata/Frontul/Partidul de Eliberare Revoluționară Populară;RO;;;;5701;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Stânga Revoluționară;RO;;;;5702;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Devrimci Halk Kurtuluş Partisi-Cephesi;;;;;6069;EN;;amendment;council;2007-12-20;2007-12-20;2007/868/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:340:0100:0103:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Devrimci Halk Kurtulus Partisi-Cephesi;;;;;6072;EN;;amendment;council;2007-12-20;2007-12-20;2007/868/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:340:0100:0103:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;L-Armata/Il-Front/Il-Partit Rivoluzzjonarju/a għal-Liberazzjoni tal-Poplu;MT;;;;6741;EN;;amendment;council;2008-07-16;2008-07-16;2008/583/EC (OJ L188);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:188:0021:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Xellug Rivoluzzjonarju;MT;;;;6742;EN;;amendment;council;2008-07-16;2008-07-16;2008/583/EC (OJ L188);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:188:0021:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;An Eite Chlé Réabhlóideach;GA;;;;123360;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Arm/Fronta/Páirtí Saortha Réabhlóidigh an Phobail;GA;;;;123361;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Armata/Front/Partit Rivoluzzjonarju għall-Ħelsien tal-Poplu;MT;;;;123362;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Folkets revolutionära befrielsefront/parti;SV;;;;123363;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;ix-Xellug Rivoluzzjonarju;MT;;;;123364;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Narodna oslobodilačka revolucionarna vojska/fronta/stranka;HR;;;;123365;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Revolucionarna ljevica;HR;;;;123366;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Rewolucyjna Ludowa Partia/Front/Armia Wyzwolenia;PL;;;;123367;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Vallankumouksellinen vasemmisto;FI;;;;123368;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;221;EU.3703.38;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Επαναστατικός Λαϊκός Απελευθερωτικός Στρατός/Μέτωπο/Κόμμα;EL;;;;123369;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Shining Path;EN;;;;371;EN;;amendment;council;2007-12-20;2007-12-20;2007/868/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:340:0100:0103:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;SL;;;;;372;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Sendero Luminoso;;;;;373;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Sentier lumineux;FR;;;;468;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Φωτεινό Μονοπάτι;EL;;;;509;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Den lysande stigen;SV;;;;570;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Loistava polku;FI;;;;584;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Den Lysende Sti;DA;;;;601;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Leuchtender Pfad;DE;;;;634;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Lichtend Pad;NL;;;;660;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Sentiero luminoso;IT;;;;701;EN;;amendment;council;2003-12-22;2003-12-22;2003/902/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:340:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Světlá stezka;CS;;;;3864;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Särav Tee;ET;;;;3865;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fényes Ösvény;HU;;;;3866;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Mirdzošā taka;LV;;;;3867;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Šviečiantis kelias;LT;;;;3868;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Świetlisty Szlak;PL;;;;3869;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Svetlý chodník;SK;;;;3870;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Sijoča pot;SL;;;;3871;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Светъл път;BG;;;;5703;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Cărarea Luminoasă;RO;;;;5704;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;CL;RO;;;;5705;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;It-Triq li Tiddi;MT;;;;6743;EN;;amendment;council;2008-07-16;2008-07-16;2008/583/EC (OJ L188);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:188:0021:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;an Chonair Lonrach;GA;;;;123383;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Osvijetljeni put;HR;;;;123384;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Calea Luminoasă;RO;;;;123385;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Сияйната пътека;BG;;;;123386;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;222;EU.3709.22;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Caminho Luminoso;PT;;;;123395;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;326;EU.265.93;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abu Sayyaf Group;;;;;889;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;326;EU.265.93;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al Harakat Al Islamiyya;;;;;890;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;326;EU.265.93;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Grupo Abu Sayyaf;PT;;;;1720;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;326;EU.265.93;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abu Sayyaf Gruppe;DE;;;;1790;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;326;EU.265.93;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;De Groep Abu Sayyaf;NL;;;;1795;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;326;EU.265.93;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Gruppo Abu Sayyaf;IT;;;;1809;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;326;EU.265.93;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Grupo Abu Sayyaf;ES;;;;1846;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;326;EU.265.93;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Groupe Abu Sayyaf;FR;;;;1875;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;326;EU.265.93;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;PH;PHILIPPINES;2196;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;327;EU.266.94;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Afghan Support Committee;;;;;891;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;327;EU.266.94;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;ASC;;;;;892;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;327;EU.266.94;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Lajnat Ul Masa Eidatul Afghania;;;;;893;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;327;EU.266.94;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Jamiat Ayat-Ur-Rhas Al Islamia;;;;;894;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;327;EU.266.94;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Jamiat Ihya Ul Turath Al Islamia;;;;;895;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;327;EU.266.94;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ahya Ul Turas;;;;;896;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;327;EU.266.94;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Comité de Apoio ao Afeganistão;PT;;;;1721;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;327;EU.266.94;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Αφγανική Επιτροπή Στήριξης;EL;;;;1855;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;327;EU.266.94;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Comité de soutien afghan;FR;;;;1877;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;327;EU.266.94;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Peshawar;office locations: Headquarters — G. T. Road (probably Grand Trunk Road), near Pushtoon Garhi Pabbi;;;;;NO;;PK;PAKISTAN;47;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;327;EU.266.94;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Jalabad;Cheprahar Hadda, Mia Omar Sabaqah School;;;;;NO;;AF;AFGHANISTAN;48;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Qaida;;;;;898;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al Qa’ida/ Islamic Army;;;;;899;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;The Base;;;;;900;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al Qaeda;;;;;901;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Islamic Salvation Foundation;;;;;902;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;The Group for the Preservation of the Holy Sites;;;;;903;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;The Islamic Army for the Liberation of Holy Places;;;;;904;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;The World Islamic Front for Jihad Against Jews and Crusaders;;;;;905;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Usama Bin Laden Network;;;;;906;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Usama Bin Laden Organisation;;;;;907;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al Qaida/Exército islâmico;PT;;;;1722;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Fundação da Salvação Islâmica;PT;;;;1724;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Grupo para a Preservação dos Lugares Santos;PT;;;;1725;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Exército Islâmico de Libertação dos Lugares Santos;PT;;;;1726;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Frente Islâmica Mundial para o Jihad Contra os Judeus e os Cruzados;PT;;;;1727;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Rede de Osama bin Laden;PT;;;;1728;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Organização de Osama bin Laden;PT;;;;1729;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Usama Bin Laden Organization;SV;;;;1777;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Osama bin Laden-Netzwerk;DE;;;;1792;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Osama bin Laden-Organisation;DE;;;;1793;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;La Base;ES;;;;1848;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Usamah bin Laden Network;ES;;;;1850;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Usamah bin Laden Organisation;ES;;;;1851;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Αλ Κάιντα;EL;;;;1857;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Αλ Κάιντα/Ισλαμικός στρατός;EL;;;;1858;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Ισλαµικό Ίδρυµα Σωτηρίας;EL;;;;1859;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Όµιλος για τη Διαφύλαξη των Αγίων Τόπων;EL;;;;1860;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Ισλαµικός Στρατός για την Απελευθέρωση των Αγίων Τόπων;EL;;;;1861;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;∆ίκτυο του Οσάµα Μπιν Λάντεν;EL;;;;1862;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;armée islamique;FR;;;;1878;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;la base;FR;;;;1879;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Fondation du salut islamique;FR;;;;1880;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Groupe pour la préservation des lieux saints;FR;;;;1881;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Armée islamique pour la libération des lieux saints;FR;;;;1882;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Front islamique mondial pour le Jihad contre les Juifs et les croisés;FR;;;;1883;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Réseau d'Oussama ben Laden;FR;;;;1884;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Organisation d'Oussama ben Laden;FR;;;;1885;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Παγκόσµιο Ισλαµικό Μέτωπο για τον Ιερό Πόλεµο (Τζιχάντ) κατά των Εβραίων και Σταυροφόρων;EL;;;;1929;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al Qa’ida;;;;;7313;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Η Βάση;EL;;;;7395;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Ал Кайда;BG;;;;7396;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;базата;BG;;;;7397;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al Qa’ida/ Ислямска армия;BG;;;;7398;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Фондация за спасение на исляма;BG;;;;7399;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Група за опазване на светите места;BG;;;;7400;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Ислямска армия за освобождение на светите места;BG;;;;7401;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Световен ислямски фронт за джихад срещу евреите и кръстоносците;BG;;;;7402;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Мрежа Осама бин Ладен;BG;;;;7403;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Организация „Осама бин Ладен“;BG;;;;7404;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Kajdá;CS;;;;7405;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;síť Usámy Bin Ládina;CS;;;;7406;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;organizace Usámy Bin Ládina;CS;;;;7407;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Sieć Osamy Bin Lagena;PL;;;;7408;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Organizacja Osamy Bin Ladena;PL;;;;7409;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al Kaida;SL;;;;7410;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;baza;SL;;;;7411;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Islamska rešilna fundacija;SL;;;;7412;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Skupina za ohranitev svetih krajev;SL;;;;7413;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Islamska vojska za osvoboditev svetih krajev;SL;;;;7414;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Svetovna islamska fronta za džihad proti Judom in križarjem;SL;;;;7415;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;mreža Osame bin Ladna;SL;;;;7416;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;organizacija Osame bin Ladna;SL;;;;7417;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al Qa’ida / Islamska vojska;SL;;;;7418;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Baza;RO;;;;7419;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Fundația salvării islamice;RO;;;;7420;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Grupul pentru păstrarea locurilor sfinte;RO;;;;7421;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Armata islamică de eliberare a locurilor sfinte;RO;;;;7422;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Frontul islamic mondial pentru Jihadul împotriva evreilor și a cruciaților;RO;;;;7423;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Rețeaua lui Osama ben Laden;RO;;;;7424;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Organizația lui Osama ben Laden;RO;;;;7425;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;329;EU.176.58;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al Qa’ida/Armata islamică;RO;;;;7426;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al Rashid Trust;;;;;908;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al-Rasheed Trust;;;;;909;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al Rasheed Trust;;;;;2406;EN;;amendment;commission;2002-06-04;2002-06-03;951/2002 (OJ L145);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:145:0014:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al-Rashid Trust;;;;;2407;EN;;amendment;commission;2002-06-04;2002-06-03;951/2002 (OJ L145);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:145:0014:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Aid Organisation of the Ulema, Pakistan;;;;;2408;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al Amin Welfare Trust;;;;;7298;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al Amin Trust;;;;;7299;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al Ameen Trust;;;;;7300;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al-Ameen Trust;;;;;7301;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al Madina Trust;;;;;7302;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al-Madina Trust, Pakistan;;;;;7303;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Организация за подпомагане на Ulema, Пакистан;BG;;;;7393;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Organizzazzjoni tal- Għajnuna tal-Ulema, Pakistan;MT;;;;7394;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Lahore;Jamia Masjid Sulaiman Park Begum Pura;;;;;NO;PHONE[042-681 20 81];PK;PAKISTAN;366;EN;;amendment;commission;2002-06-04;2002-06-03;951/2002 (OJ L145);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:145:0014:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Karachi;Kitab Ghar, Darul Ifta Wal Irshad, Nazimbad No 4;;;;;NO;PHONE[668 33 01, 0300-820 91 99]\nFAX[662 38 14];PK;PAKISTAN;367;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Karachi;302b-40 Good Earth Court, Opposite Pia Planitarium, Block 13a, Gushan-I Iqbal;;;;;NO;PHONE[497 92 63];PK;PAKISTAN;368;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Karachi;Clifton Center, Block 5, 6th floor, Clifton, 617;;;;;NO;PHONE[587-25 45];PK;PAKISTAN;369;EN;;amendment;commission;2002-06-04;2002-06-03;951/2002 (OJ L145);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:145:0014:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Karachi;605 Landmark Plaza, 11 Chundrigar Road, Opposite Jang Building;;;;;NO;PHONE[262 38 18-19];PK;PAKISTAN;370;EN;;amendment;commission;2002-06-04;2002-06-03;951/2002 (OJ L145);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:145:0014:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Karachi;Kitas Ghar, Nazimabad 4, Dahgel-Iftah;;;;;NO;;PK;PAKISTAN;1327;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Lahore;Jamia Maajid, Sulalman Park, Melgium Pura;;;;;NO;;PK;PAKISTAN;1328;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Mansehra;Office Dha’rbi-M’unin, Opposite Khyber Bank, Abbottabad Road;;;;;NO;;PK;PAKISTAN;1329;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Peshawar;Office Dha’rbi-M’unin ZR Brothers, Katcherry Road, Chowk Yadgaar;;;;;NO;;PK;PAKISTAN;1330;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Rawalpindi;Office Dha’rbi-M’unin, Rm No. 3, Moti Plaza, Near Liaquat Bagh, Muree Road;;;;;NO;;PK;PAKISTAN;1331;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;330;EU.522.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Swat;Office Dha’rbi-M’unin, Top Floor, Dr. Dawa Khan Dental Clinic Surgeon, Main Baxae,Mingora;;;;;NO;;PK;PAKISTAN;1332;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;363;EU.490.82;;;;;E;enterprise;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;;;;Al-Itihaad Al-Islamiya;;;;;951;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;363;EU.490.82;;;;;E;enterprise;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;;;;AIAI;;;;;952;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;364;EU.527.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Egyptian Islamic Jihad;;;;;954;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;364;EU.527.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Egyptian Al-Jihad;;;;;957;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;364;EU.527.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Jihad Group;;;;;959;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;364;EU.527.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;New Jihad;;;;;960;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;364;EU.527.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Jihad islamique égyptien;FR;;;;1893;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;364;EU.527.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al-Jihad égyptien;FR;;;;1894;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;364;EU.527.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;nouveau Jihad;FR;;;;1895;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;364;EU.527.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Egyptian Islamic Movement;;;;;7309;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;364;EU.527.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;mouvement islamique égyptien;FR;;;;7310;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;364;EU.527.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al-Jihad;;;;;7312;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;364;EU.527.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Movimento Islâmico Egípcio;PL;;;;7378;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;364;EU.527.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Египетски ислямски джихад;BG;;;;7379;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;364;EU.527.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Египетски Al-Jihad;BG;;;;7380;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;364;EU.527.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Групата джихад;BG;;;;7381;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;364;EU.527.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Нов джихад;BG;;;;7382;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;364;EU.527.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Египетски ислямско движение;BG;;;;7383;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;379;EU.529.46;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Armed Islamic Group;;;;;987;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;379;EU.529.46;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;GIA;;;;;988;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;379;EU.529.46;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al Jamm'ah Al Islamiah Al-Musallah;;;;;989;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;379;EU.529.46;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Groupe Islamique Armé;;;;;990;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;379;EU.529.46;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Grupo Islâmico Armado;PT;;;;1740;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;379;EU.529.46;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Gruppo Islamico Armato;IT;;;;1827;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;379;EU.529.46;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ένοπλη Ισλαµική Οµάδα;EL;;;;1866;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;379;EU.529.46;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Groupe islamique armé;FR;;;;1896;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;379;EU.529.46;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Въоръжена ислямска група;BG;;;;6341;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;379;EU.529.46;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Grupp Islamiku Armat;MT;;;;6342;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;379;EU.529.46;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Grupul islamic armat;RO;;;;6343;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;379;EU.529.46;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ozbrojená islamská skupina;SK;;;;6344;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;382;EU.378.62;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Asbat al-Ansar;;;;;994;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;382;EU.378.62;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;Ein el-Hilweh camp;;;;;NO;;LB;LEBANON;1337;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;450;EU.495.87;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Harakat Ul-Mujahidin;;;;;1087;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;450;EU.495.87;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;HUM;;;;;1088;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;450;EU.495.87;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al-Faran;;;;;1089;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;450;EU.495.87;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al-Hadid;;;;;1090;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;450;EU.495.87;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al-Hadith;;;;;1092;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;450;EU.495.87;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Harakat Ul-Ansar;;;;;1093;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;450;EU.495.87;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;HUA;;;;;1096;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;450;EU.495.87;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Harakat Ul-Mujahideen;;;;;1097;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;450;EU.495.87;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;PK;PAKISTAN;2197;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;455;EU.547.71;;;;;E;enterprise;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;Islamic Army of Aden;;;;;1108;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;455;EU.547.71;;;;;E;enterprise;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;Exército Islâmico de Aden;PT;;;;1742;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;455;EU.547.71;;;;;E;enterprise;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;Esercito islamico di Aden;IT;;;;1828;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;455;EU.547.71;;;;;E;enterprise;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;Ισλαµικός στρατός του Άντεν;EL;;;;1867;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;455;EU.547.71;;;;;E;enterprise;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;Armée islamique d'Aden;FR;;;;1901;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;458;EU.465.95;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Islamic Movement of Uzbekistan;;;;;1113;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;458;EU.465.95;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;IMU;;;;;1116;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;458;EU.465.95;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Movimento Islâmico do Usbequistão;PT;;;;1744;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;458;EU.465.95;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;MIU;PT;;;;1745;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;458;EU.465.95;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Movimento islamico dell'Uzbekistan;IT;;;;1829;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;458;EU.465.95;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ισλαµικό Κίνηµα του Ουζµπεκιστάν;EL;;;;1868;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;458;EU.465.95;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Mouvement islamique de l'Ouzbékistan;FR;;;;1902;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;459;EU.466.96;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Jaish-I-Momhammed;;;;;1117;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;459;EU.466.96;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Army of Mohammed;;;;;1118;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;459;EU.466.96;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;ESERCITO DI MAOMETTO;IT;;;;1831;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;459;EU.466.96;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;ARMÉE de MOHAMMED;FR;;;;1903;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;459;EU.466.96;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;PK;PAKISTAN;145;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;460;EU.500.10;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Jam'yah Ta'awun Al-Islamia;;;;;1119;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;460;EU.500.10;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Society of Islamic Cooperation;;;;;1120;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;460;EU.500.10;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ja'miyat Al Ta'awun Al Islamiyya;;;;;1121;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;460;EU.500.10;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;JIT;;;;;1122;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;460;EU.500.10;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;SOCIEDADE DE COOPERAÇÃO ISLÂMICA;PT;;;;1747;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;460;EU.500.10;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;SOCIETÀ COOPERATIVA ISLAMICA;IT;;;;1832;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;460;EU.500.10;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;SOCIÉTÉ de COOPÉRATION ISLAMIQUE;FR;;;;1904;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;460;EU.500.10;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Kandahar City;;;;;;NO;;AF;AFGHANISTAN;146;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;461;EU.507.17;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Libyan Islamic Fighting Group;;;;;1123;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;461;EU.507.17;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Grupo Islâmico Combatente da Líbia;PT;;;;1749;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;461;EU.507.17;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Groupe libyen de combat pour l'Islam;FR;;;;1905;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;461;EU.507.17;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;LIFG;;;;;7335;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;461;EU.507.17;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Grupp Ġellied Iżlamiku Libjan;MT;;;;7462;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;461;EU.507.17;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Либийска ислямска бойна група;BG;;;;7463;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;461;EU.507.17;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;LY;LIBYA;2216;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;471;EU.413.74;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;RABITA TRUST;;;;;1138;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;471;EU.413.74;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Lahore;Room 9A, Second Floor, Wahdat Road, Education Town;;;;;NO;;PK;PAKISTAN;151;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;471;EU.413.74;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Lahore;Wares Colony;;;;;YES;;PK;PAKISTAN;152;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;480;EU.3088.19;;;;;E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Revival of Islamic Heritage Society;;;;;1145;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;480;EU.3088.19;;;;;E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;RIHS;;;;;1146;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;480;EU.3088.19;;;;;E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Jamiat Ihia Al-Turath Al-Islamiya;;;;;1147;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;480;EU.3088.19;;;;;E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Revival of Islamic Society Heritage on the African Continent;;;;;1148;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;480;EU.3088.19;;;;;E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Jamia Ihya Ul Turath;;;;;1149;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;480;EU.3088.19;;;;;E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Sociedade da Restauração do Património Islâmico;PT;;;;1750;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;480;EU.3088.19;;;;;E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Restauração do Património Social Islâmico do Continente Africano;PT;;;;1751;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;480;EU.3088.19;;;;;E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Islami Pärandi Taaselustamise Ühing;ET;;;;4869;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;480;EU.3088.19;;;;;E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Islami Pärandi Taaselustamise Ühing Aafrika Mandril, Jamia Ihya Ul Turath;ET;;;;4870;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;480;EU.3088.19;;;;;E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Al-Furqan Welfare Foundation;EN;;;;105950;EN;;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;480;EU.3088.19;;;;;E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Al-Furqan Foundation Welfare Trust;EN;;;;105951;EN;;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;480;EU.3088.19;;;;;E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;office locations: Pakistan;;;;;;NO;;PK;PAKISTAN;160;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;480;EU.3088.19;;;;;E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;office locations Afghanistan;;;;;;NO;;AF;AFGHANISTAN;161;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Salafist Group for Call and Combat;;;;;1150;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;GSPC;;;;;1151;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Le Groupe Salafiste pour la Prédiction et le Combat;;;;;1152;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Grupo Salafista de Prédica e Combate;PT;;;;1753;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Gruppo salafista per la predicazione e il combattimento;IT;;;;1835;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Οµάδα σαλαφιστών µαχητών και ιεροκηρύκων;EL;;;;1870;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;The Organization of Al-Qaida in the Islamic Maghreb;;;;;5609;EN;;amendment;commission;2007-05-09;2007-05-08;507/2007 (OJ L119);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:119:0027:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al Qaïda au Maghreb islamique;;;;;5610;EN;;amendment;commission;2007-05-09;2007-05-08;507/2007 (OJ L119);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:119:0027:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;AQMI;;;;;5611;EN;;amendment;commission;2007-05-09;2007-05-08;507/2007 (OJ L119);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:119:0027:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Grupo Salafista para la Predicación y el Combate;ES;;;;5612;EN;;amendment;commission;2007-05-09;2007-05-08;507/2007 (OJ L119);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:119:0027:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al-Qaida organizācija Islama Magrebas valstīs;LV;;;;5613;EN;;amendment;commission;2007-05-09;2007-05-08;507/2007 (OJ L119);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:119:0027:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Organização da Al-Qaida no Magrebe Islâmico;PT;;;;5614;EN;;amendment;commission;2007-05-09;2007-05-08;507/2007 (OJ L119);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:119:0027:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Organizația Al-Qaida în Magrebul islamic;RO;;;;5615;EN;;amendment;commission;2007-05-09;2007-05-08;507/2007 (OJ L119);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:119:0027:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;AQIM;;;;;15144;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;DZ;ALGERIA;2201;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;ML;MALI;2202;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;MR;MAURITANIA;2203;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;MA;MOROCCO;2204;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;NE;NIGER;2205;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;481;EU.459.37;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;TN;TUNISIA;2217;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;485;EU.526.43;;2001-10-06;;(Date of UN designation: 2001-10-06)\n(Other information: Headquarters was in Kandahar, Afghanistan as at 2001.);E;enterprise;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Wafa Humanitarian Organisation;;;;;1156;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;485;EU.526.43;;2001-10-06;;(Date of UN designation: 2001-10-06)\n(Other information: Headquarters was in Kandahar, Afghanistan as at 2001.);E;enterprise;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Al Wafa;;;;;1157;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;485;EU.526.43;;2001-10-06;;(Date of UN designation: 2001-10-06)\n(Other information: Headquarters was in Kandahar, Afghanistan as at 2001.);E;enterprise;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Al Wafa Organization;;;;;1158;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;485;EU.526.43;;2001-10-06;;(Date of UN designation: 2001-10-06)\n(Other information: Headquarters was in Kandahar, Afghanistan as at 2001.);E;enterprise;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Wafa Al-Igatha Al-Islamia;;;;;1159;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;485;EU.526.43;;2001-10-06;;(Date of UN designation: 2001-10-06)\n(Other information: Headquarters was in Kandahar, Afghanistan as at 2001.);E;enterprise;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Organização Humanitária Wafa;PT;;;;1756;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;485;EU.526.43;;2001-10-06;;(Date of UN designation: 2001-10-06)\n(Other information: Headquarters was in Kandahar, Afghanistan as at 2001.);E;enterprise;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Organização Al Wafa;PT;;;;1757;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;485;EU.526.43;;2001-10-06;;(Date of UN designation: 2001-10-06)\n(Other information: Headquarters was in Kandahar, Afghanistan as at 2001.);E;enterprise;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;L'organisation humanitaire de Wafa;FR;;;;1909;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;485;EU.526.43;;2001-10-06;;(Date of UN designation: 2001-10-06)\n(Other information: Headquarters was in Kandahar, Afghanistan as at 2001.);E;enterprise;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;Peshawar;Jordan house No 125, Street 54, Phase II Hayatabad;;;;;YES;((at the time of listing));PK;PAKISTAN;165;EN;(at the time of listing);amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;485;EU.526.43;;2001-10-06;;(Date of UN designation: 2001-10-06)\n(Other information: Headquarters was in Kandahar, Afghanistan as at 2001.);E;enterprise;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;YES;((at the time of listing));KW;KUWAIT;167;EN;(at the time of listing);amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;485;EU.526.43;;2001-10-06;;(Date of UN designation: 2001-10-06)\n(Other information: Headquarters was in Kandahar, Afghanistan as at 2001.);E;enterprise;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;YES;((at the time of listing));AE;UNITED ARAB EMIRATES;168;EN;(at the time of listing);amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;485;EU.526.43;;2001-10-06;;(Date of UN designation: 2001-10-06)\n(Other information: Headquarters was in Kandahar, Afghanistan as at 2001.);E;enterprise;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;YES;((at the time of listing));AF;AFGHANISTAN;2274;EN;(at the time of listing);amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;505;EU.471.56;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1446037);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Hai Hazem Abdul Qader;;;(a) Maulavi, (b) Mullah;First Secretary, Taliban Consulate General, Quetta, Pakistan.;16020;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;505;EU.471.56;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1446037);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Hai Hazem;;;;;111265;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;505;EU.471.56;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1446037);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Kabul City, Kabul Province;Puli Charkhi Area, District Number 9;;;;;NO;;AF;AFGHANISTAN;2271;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;505;EU.471.56;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1446037);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Iltifat village, Shakardara District,;;;;Kabul Province;Iltifat village;NO;(Iltifat village, Shakardara District, Kabul Province, Afghanistan);AF;AFGHANISTAN;111266;EN;Iltifat village, Shakardara District, Kabul Province, Afghanistan;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;505;EU.471.56;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1446037);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971;;;NO;GREGORIAN;;;Pashawal Yargatoo village;;AF;AFGHANISTAN;813;EN;Pashawal Yargatoo village, Andar District, Ghazni Province, Afghanistan;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;505;EU.471.56;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1446037);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D 0001203 (passport-National passport) ((afghan passport));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;AF;;779;EN;(afghan passport);amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;; +28/10/2022;505;EU.471.56;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1446037);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101637;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;506;EU.3204.81;;;;(Father's name: Abd al-Razzaq Abd al-Baqi, Mother's name: Nadira Ayoub Asaad. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abd al-Hadi al-Iraqi;;;;;1187;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;506;EU.3204.81;;;;(Father's name: Abd al-Razzaq Abd al-Baqi, Mother's name: Nadira Ayoub Asaad. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abu Abdallah;;;;;1188;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;506;EU.3204.81;;;;(Father's name: Abd al-Razzaq Abd al-Baqi, Mother's name: Nadira Ayoub Asaad. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abdal Al-Hadi Al-Iraqi;;;;;1189;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;506;EU.3204.81;;;;(Father's name: Abd al-Razzaq Abd al-Baqi, Mother's name: Nadira Ayoub Asaad. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;Abd Al-Baqi;Nashwan;Abd Al-Razzaq;Nashwan Abd Al-Razzaq Abd Al-Baqi;;;;;5616;EN;;amendment;commission;2007-05-23;2007-05-22;553/2007 (OJ L131);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:131:0016:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;506;EU.3204.81;;;;(Father's name: Abd al-Razzaq Abd al-Baqi, Mother's name: Nadira Ayoub Asaad. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abu Ayub;EN;;;;107244;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;506;EU.3204.81;;;;(Father's name: Abd al-Razzaq Abd al-Baqi, Mother's name: Nadira Ayoub Asaad. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abd al-Muhayman;EN;;;;107245;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;506;EU.3204.81;;;;(Father's name: Abd al-Razzaq Abd al-Baqi, Mother's name: Nadira Ayoub Asaad. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abd al-Hadi al-Ansari;EN;;;;107246;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;506;EU.3204.81;;;;(Father's name: Abd al-Razzaq Abd al-Baqi, Mother's name: Nadira Ayoub Asaad. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abdul Hadi al-Taweel;EN;;;;107247;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;506;EU.3204.81;;;;(Father's name: Abd al-Razzaq Abd al-Baqi, Mother's name: Nadira Ayoub Asaad. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abdul Hadi Arif Ali;EN;;;;107248;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;506;EU.3204.81;;;;(Father's name: Abd al-Razzaq Abd al-Baqi, Mother's name: Nadira Ayoub Asaad. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Omar Uthman Mohammed;EN;;;;107249;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;506;EU.3204.81;;;;(Father's name: Abd al-Razzaq Abd al-Baqi, Mother's name: Nadira Ayoub Asaad. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;;Mosul;IQ;IRAQ;878;EN;;amendment;commission;2007-05-23;2007-05-22;553/2007 (OJ L131);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:131:0016:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;506;EU.3204.81;;;;(Father's name: Abd al-Razzaq Abd al-Baqi, Mother's name: Nadira Ayoub Asaad. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Ration Card no. 0094195 (other-Other identification number) (Ration Card no. 0094195);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;107243;EN;Ration Card no. 0094195;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;; +28/10/2022;506;EU.3204.81;;;;(Father's name: Abd al-Razzaq Abd al-Baqi, Mother's name: Nadira Ayoub Asaad. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;376;EN;;amendment;commission;2007-05-23;2007-05-22;553/2007 (OJ L131);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:131:0016:0017:EN:PDF +28/10/2022;507;EU.513.75;;;;;P;person;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;Yasin;Abdul Rahman;;Abdul Rahman Yasin;;M;;;1190;EN;;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;507;EU.513.75;;;;;P;person;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;Abdul Rahman S. Taha;;;;;1191;EN;;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;507;EU.513.75;;;;;P;person;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;Abdul Rahman S. Taher;;;;;1192;EN;;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;507;EU.513.75;;;;;P;person;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;Yasin;Abdul Rahman Said;;Abdul Rahman Said Yasin;;;;;1193;EN;;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;507;EU.513.75;;;;;P;person;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;Yasin;Aboud;;Aboud Yasin;;;;;1194;EN;;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;507;EU.513.75;;;;;P;person;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;(SSN 156-92-9858 (USA));00;UNKNOWN;172;EN;SSN 156-92-9858 (USA);regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;507;EU.513.75;;;;;P;person;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-04-10;10;4;1960;;;NO;GREGORIAN;;;;Bloomington, Indiana;US;UNITED STATES;223;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;507;EU.513.75;;;;;P;person;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27082171 (passport-National passport) ((usa passport (issued 21.6.1992 in amman, jordan))\n(usa passport (issued 21.6.1992 in amman, jordan))\npassport no (usa) (issued 21.6.1992 in amman, jordan));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;US;;8;EN;(usa passport (issued 21.6.1992 in amman, jordan))\n(usa passport (issued 21.6.1992 in amman, jordan))\npassport no (usa) (issued 21.6.1992 in amman, jordan);amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;;;;;;;;;; +28/10/2022;507;EU.513.75;;;;;P;person;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;M0887925 (other-Other identification number) ((iraq)\npassport no (iraq)\n(iraq));NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;IQ;;9;EN;(iraq)\npassport no (iraq)\n(iraq);amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;;;;;;;;;; +28/10/2022;507;EU.513.75;;;;;P;person;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SSN 156-92-9858 (id-National identification card) ((usa national identification no)\n(usa national identification no));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;US;;428;EN;(usa national identification no)\n(usa national identification no);amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;;;;;;;;;; +28/10/2022;507;EU.513.75;;;;;P;person;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;US;;70;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF +28/10/2022;508;EU.544.68;;;;;P;person;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;El Alfi;Abdullah;Ahmed Abdullah;Abdullah Ahmed Abdullah El Alfi;;M;;;1195;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;508;EU.544.68;;;;;P;person;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;Abu Mariam;;;;;1196;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;508;EU.544.68;;;;;P;person;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;Al-Masri;Abu Mohamed;;Abu Mohamed Al-Masri;;;;;1197;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;508;EU.544.68;;;;;P;person;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;Saleh;;;;;1198;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;508;EU.544.68;;;;;P;person;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-06-06;6;6;1963;;;NO;GREGORIAN;;;;Gharbia;EG;EGYPT;224;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;508;EU.544.68;;;;;P;person;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EG;;71;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF +28/10/2022;510;EU.420.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;Abu Hafs the Mauritanian;;M;;;1200;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;510;EU.420.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;Al-Walid;Mahfouz;Ould;Mahfouz Ould Al-Walid;;;;;1201;EN;;amendment;commission;2007-06-09;2007-06-08;639/2007 (OJ L148);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:148:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;510;EU.420.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;Al-Shanqiti;Khalid;;Khalid Al-Shanqiti;;;;;1202;EN;;amendment;commission;2007-06-09;2007-06-08;639/2007 (OJ L148);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:148:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;510;EU.420.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;Al-Walid;Mafouz;Walad;Mafouz Walad Al-Walid;;;;;1203;EN;;amendment;commission;2007-06-09;2007-06-08;639/2007 (OJ L148);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:148:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;510;EU.420.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;Abu Hafs de Mauritaniër;NL;;;;1798;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;510;EU.420.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;Abu Hafs il Mauritano;IT;;;;1836;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;510;EU.420.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;Abu Hafs el Mauritano;ES;;;;1852;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;510;EU.420.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;Abu Hafs a mauritániai;HU;;;;5617;EN;;amendment;commission;2007-06-09;2007-06-08;639/2007 (OJ L148);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:148:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;510;EU.420.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;Abu Hafs il-Mawritani;MT;;;;5618;EN;;amendment;commission;2007-06-09;2007-06-08;639/2007 (OJ L148);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:148:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;510;EU.420.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;Abu Hafs Mauretańczyk;PL;;;;5619;EN;;amendment;commission;2007-06-09;2007-06-08;639/2007 (OJ L148);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:148:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;510;EU.420.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-01-01;1;1;1975;;;NO;GREGORIAN;;;;;MR;MAURITANIA;225;EN;;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;510;EU.420.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MR;;694;EN;;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF +28/10/2022;513;EU.549.73;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427565);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Agha, Abdul Rahman;;;Maulavi;Chief Justice of Military Court under the Taliban regime.;1212;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;513;EU.549.73;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427565);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;YES;GREGORIAN;;;;Arghandab district, Kandahar province;AF;AFGHANISTAN;101659;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;513;EU.549.73;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427565);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;754;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;513;EU.549.73;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427565);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101660;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;514;EU.367.96;;;;;P;person;amendment;commission;2013-07-10;2013-07-09;652/2013 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:189:0004:0005:EN:PDF;Agha;Abdul Manan;;Abdul Manan Agha;;;Haji;;1213;EN;;amendment;commission;2013-07-10;2013-07-09;652/2013 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:189:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;514;EU.367.96;;;;;P;person;amendment;commission;2013-07-10;2013-07-09;652/2013 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:189:0004:0005:EN:PDF;;;;Abdul Manan;;;;;1214;EN;;amendment;commission;2013-07-10;2013-07-09;652/2013 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:189:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;514;EU.367.96;;;;;P;person;amendment;commission;2013-07-10;2013-07-09;652/2013 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:189:0004:0005:EN:PDF;;;;Abdul Man’am Saiyid;;;;;1215;EN;;amendment;commission;2013-07-10;2013-07-09;652/2013 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:189:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;514;EU.367.96;;;;;P;person;amendment;commission;2013-07-10;2013-07-09;652/2013 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:189:0004:0005:EN:PDF;;;;Saiyid Abd al-Man;;;;;17520;EN;;amendment;commission;2013-07-10;2013-07-09;652/2013 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:189:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;515;EU.368.0;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427409);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Agha;Sayed;Mohammad Azim;Sayed Mohammad Azim Agha;;;Maulavi;Director of the Passport and Visa Department in the Ministry of Interior under the Taliban regime;1216;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;515;EU.368.0;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427409);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Sayed Mohammad Azim Agha;;;;;14040;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;515;EU.368.0;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427409);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Agha Saheb;;;;;101664;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;515;EU.368.0;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427409);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;YES;GREGORIAN;;;;Panjwai District, Kandahar province;AF;AFGHANISTAN;911;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;515;EU.368.0;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427409);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969;;;YES;GREGORIAN;;;;Panjwai District, Kandahar province;AF;AFGHANISTAN;1799;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;515;EU.368.0;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427409);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101663;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF +28/10/2022;516;EU.472.57;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4652713);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Agha;Sayyed Ghiassouddine;;Sayyed Ghiassouddine Agha;;;Maulavi;(a) Minister of Haj and Religious Affairs under the Taliban regime, (b) Education Minister under the Taliban regime.;5911;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;516;EU.472.57;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4652713);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Sayed Ghias;;;;;101670;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;516;EU.472.57;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4652713);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Sayed Ghiasuddin Sayed Ghousuddin;;;;;101671;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;516;EU.472.57;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4652713);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Sayyed Ghayasudin;;;;;101672;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;516;EU.472.57;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4652713);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;YES;GREGORIAN;;;;Kohistan District, Faryab Province;AF;AFGHANISTAN;111127;EN;Kohistan District, Faryab Province;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;516;EU.472.57;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4652713);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101667;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;517;EU.473.58;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(elieved to be in Afghanistan/Pakistan border area. Belongs to Kakar tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427516);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Ahmadi;Mohammad;;Mohammad Ahmadi;;;(a) Mullah, (b) Haji;(a) President of Central Bank (Da Afghanistan Bank) under the Taliban regime, (b) Minister of Finance under the Taliban regime.;6049;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;517;EU.473.58;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(elieved to be in Afghanistan/Pakistan border area. Belongs to Kakar tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427516);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Pashmul village, Panjwai District, Kandahar Province;AF;AFGHANISTAN;1812;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;517;EU.473.58;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(elieved to be in Afghanistan/Pakistan border area. Belongs to Kakar tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427516);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Daman district, Kandahar province;AF;AFGHANISTAN;101675;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;517;EU.473.58;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(elieved to be in Afghanistan/Pakistan border area. Belongs to Kakar tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427516);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101676;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;Ghailani;Ahmed;Khalfan;Ahmed Khalfan Ghailani;;M;;;1220;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Ahmed The Tanzanian;;;;;1221;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Foopie;;;;;1222;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Fupi;;;;;1223;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Ahmad, Abu Bakr;;;;;1224;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Ahmed, A;;;;;1226;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Ahmed, Abubakar;;;;;1227;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Ahmed, Abubakar K.;;;;;1228;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Ahmed, Abubakar Khalfan;;;;;1229;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Ahmed, Abubakary K.;;;;;1230;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Ahmed, Ahmed Khalfan;;;;;1231;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Al Tanzani, Ahmad;;;;;1232;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Ali, Ahmed Khalfan;;;;;1233;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Bakr, Abu;;;;;1234;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;Ghailani;Abubakary;Khalfan Ahmed;Abubakary Khalfan Ahmed Ghailani;;;;;1235;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;Ghailani;Ahmed;;Ahmed Ghailani;;;;;1236;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;Ghilani;Ahmad;Khalafan;Ahmad Khalafan Ghilani;;;;;1237;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Hussein, Mahafudh Abubakar Ahmed Abdallah;;;;;1238;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Khabar, Abu;;;;;1239;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Khalfan, Ahmed;;;;;1240;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Mohammed, Shariff Omar;;;;;1241;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Ahmed le Tanzanien;FR;;;;1912;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Haytham al-Kini;;;;;5930;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Ahmed el Tanzano;ES;;;;5992;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;Ahmed Tanzanianul;RO;;;;5993;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;US;UNITED STATES;1612;EN;;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-03-14;14;3;1974;;;NO;GREGORIAN;;;;Zanzibar;TZ;TANZANIA, UNITED REPUBLIC OF;228;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-04-13;13;4;1974;;;NO;GREGORIAN;;;;Zanzibar;TZ;TANZANIA, UNITED REPUBLIC OF;229;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-04-14;14;4;1974;;;NO;GREGORIAN;;;;Zanzibar;TZ;TANZANIA, UNITED REPUBLIC OF;230;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-08-01;1;8;1970;;;NO;GREGORIAN;;;;Zanzibar;TZ;TANZANIA, UNITED REPUBLIC OF;231;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;519;EU.379.63;;;;;P;person;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TZ;;72;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF +28/10/2022;521;EU.502.12;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4678353);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Ahmad Jan;;;;;16052;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;521;EU.502.12;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4678353);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ahmed Jan Akhund;;;;;16053;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;521;EU.502.12;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4678353);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ahmed Jan Akhundzada Wazir;;;Maulavi;Minister of Water and Electricity under the Taliban regime;111128;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;521;EU.502.12;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4678353);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;1958;YES;GREGORIAN;;;;Tirin Kot District, Uruzgan Province;AF;AFGHANISTAN;1865;EN;between 1953 and 1958;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;521;EU.502.12;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4678353);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;1958;YES;GREGORIAN;;;;Kandahar province;AF;AFGHANISTAN;101683;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;521;EU.502.12;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4678353);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101684;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;522;EU.509.19;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427423);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Akhund;Mohammad Essa;;Mohammad Essa Akhund;;;(a) Alhaj, (b) Mullah;Minister of Water, Sanitation and Electricity under the Taliban regime.;111131;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;522;EU.509.19;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427423);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;YES;GREGORIAN;;Kandahar Province;;Mial area, Spin Boldak District;AF;AFGHANISTAN;975;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;522;EU.509.19;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427423);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101687;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;523;EU.538.10;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427204);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Attiqullah Akhund;;;Maulavi;Deputy Minister of Agriculture under the Taliban regime.;1259;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;523;EU.538.10;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427204);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;YES;GREGORIAN;;;;Shah Wali Kot district, Kandahar Province;AF;AFGHANISTAN;973;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;523;EU.538.10;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427204);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101691;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;524;EU.539.11;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(One foot lost in landmine explosion. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427390);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Akhund;;;;;6051;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;524;EU.539.11;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(One foot lost in landmine explosion. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427390);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Shahidwror;;;;;16054;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;524;EU.539.11;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(One foot lost in landmine explosion. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427390);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Allahdad;;;;;111141;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;524;EU.539.11;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(One foot lost in landmine explosion. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427390);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Allah Dad Matin;;;Mullah;(a) Minister of Urban Development under the Taliban regime, (b) President of Central Bank (Da Afghanistan Bank) under the Taliban regime, (c) Head of Ariana Afghan Airlines under the Taliban regime.;111142;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;524;EU.539.11;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(One foot lost in landmine explosion. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427390);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;YES;GREGORIAN;;;;Kadani village, Spin Boldak district, Kandahar province;AF;AFGHANISTAN;979;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;524;EU.539.11;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(One foot lost in landmine explosion. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427390);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;YES;GREGORIAN;;;;Kadani village, Spin Boldak district, Kandahar province;AF;AFGHANISTAN;1825;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;524;EU.539.11;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(One foot lost in landmine explosion. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427390);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101694;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;525;EU.417.78;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Confirmed deceased in March 2010 and buried in Karachi, Pakistan. Linked by marriage to Saleh Mohammad Kakar Akhtar Muhammad. Belonged to Alokozai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4678686);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ubaidullah Akhund Yar Mohammed Akhund;;;(a) Mullah, (b) Hadji, (c) Maulavi.;Minister of Defence under the Taliban regime;1262;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;525;EU.417.78;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Confirmed deceased in March 2010 and buried in Karachi, Pakistan. Linked by marriage to Saleh Mohammad Kakar Akhtar Muhammad. Belonged to Alokozai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4678686);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Akhund;Obaidullah;;Obaidullah Akhund;;;;;5919;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;525;EU.417.78;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Confirmed deceased in March 2010 and buried in Karachi, Pakistan. Linked by marriage to Saleh Mohammad Kakar Akhtar Muhammad. Belonged to Alokozai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4678686);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Akhund;Obaid Ullah;;Obaid Ullah Akhund;;;;;5920;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;525;EU.417.78;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Confirmed deceased in March 2010 and buried in Karachi, Pakistan. Linked by marriage to Saleh Mohammad Kakar Akhtar Muhammad. Belonged to Alokozai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4678686);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;;;;00;UNKNOWN;925;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;525;EU.417.78;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Confirmed deceased in March 2010 and buried in Karachi, Pakistan. Linked by marriage to Saleh Mohammad Kakar Akhtar Muhammad. Belonged to Alokozai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4678686);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;1819;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;525;EU.417.78;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Confirmed deceased in March 2010 and buried in Karachi, Pakistan. Linked by marriage to Saleh Mohammad Kakar Akhtar Muhammad. Belonged to Alokozai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4678686);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Nalgham area, Zheray District, Kandahar Province;AF;AFGHANISTAN;1901;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;525;EU.417.78;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Confirmed deceased in March 2010 and buried in Karachi, Pakistan. Linked by marriage to Saleh Mohammad Kakar Akhtar Muhammad. Belonged to Alokozai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4678686);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;Kandahar Province;Arghandab District;;AF;AFGHANISTAN;111340;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;525;EU.417.78;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Confirmed deceased in March 2010 and buried in Karachi, Pakistan. Linked by marriage to Saleh Mohammad Kakar Akhtar Muhammad. Belonged to Alokozai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4678686);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;Kandahar Province;Sangisar village, Panjwai District;;AF;AFGHANISTAN;111341;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;525;EU.417.78;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Confirmed deceased in March 2010 and buried in Karachi, Pakistan. Linked by marriage to Saleh Mohammad Kakar Akhtar Muhammad. Belonged to Alokozai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4678686);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101698;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;526;EU.427.43;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barakzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427417);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Akhund;Mohammad Abbas;;Mohammad Abbas Akhund;;;Mullah;(a) Mayor of Kandahar under the Taliban regime, (b) Minister of Public Health under the Taliban regime.;17685;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;526;EU.427.43;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barakzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427417);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;Uruzgan Province;Khas Uruzgan District;;AF;AFGHANISTAN;111130;EN;Khas Uruzgan District, Uruzgan Province, Afghanistan.;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;526;EU.427.43;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barakzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427417);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101705;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;528;EU.514.76;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Hamati;Muhammad;;Muhammad Al-Hamati;;;;;1266;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;528;EU.514.76;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;Abu Asim Al-Makki;;;;;1267;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;528;EU.514.76;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Ahdal;Muhammad;Muhammad Abdullah;Muhammad Muhammad Abdullah Al-Ahdal;;;;;7351;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;528;EU.514.76;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Ahdal;Mohamed;Mohamed Abdullah;Mohamed Mohamed Abdullah Al-Ahdal;;;;;7735;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;528;EU.514.76;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;Ahmed;;;;;7736;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;528;EU.514.76;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Sadiq Al-Ahdal;Mohammad;Hamdi Mohammad;Mohammad Hamdi Mohammad Sadiq Al-Ahdal;;;;;7737;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;528;EU.514.76;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;Al-Hudaydah;Jamal Street, Al-Dahima alley;;;;;NO;;YE;YEMEN;1358;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;528;EU.514.76;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-11-19;19;11;1971;;;NO;GREGORIAN;;;;Medina;SA;SAUDI ARABIA;1169;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;528;EU.514.76;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"541939 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;YE;;368;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;; +28/10/2022;528;EU.514.76;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216040 (id-National identification card) ((national identity card number));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;YE;;369;EN;(national identity card number);amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;; +28/10/2022;528;EU.514.76;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;566;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF +28/10/2022;529;EU.521.38;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;Saam Khan;Amin;Muhammad Ul Haq;Amin Muhammad Ul Haq Saam Khan;;;;;1268;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;529;EU.521.38;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Amin, Muhammad;;;;;1269;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;529;EU.521.38;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Al-Haq, Amin;;;;;1270;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;529;EU.521.38;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Ul-Haq, Dr Amin;;;;;1271;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;529;EU.521.38;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Dr Amin;;;;;5979;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;529;EU.521.38;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;;;Nangarhar Province;AF;AFGHANISTAN;233;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;529;EU.521.38;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;426;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF +28/10/2022;533;EU.439.10;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Hamdan;Salim;Ahmad Salim;Salim Ahmad Salim Hamdan;;M;;;1275;EN;;amendment;commission;2007-05-04;2007-05-03;492/2007 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:116:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;533;EU.439.10;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Jaddawi;Saqr;;Saqr Al-Jaddawi;;;;;4852;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;533;EU.439.10;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al Jadawi;Saqar;;Saqar Al Jadawi;;;;;5607;EN;;amendment;commission;2007-05-04;2007-05-03;492/2007 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:116:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;533;EU.439.10;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Aljawadi;Saqar;;Saqar Aljawadi;;;;;7343;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;533;EU.439.10;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Hamdan;Salem;Ahmed Salem;Salem Ahmed Salem Hamdan;;;;;7730;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;533;EU.439.10;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;Sana’a;Shari Tunis;;;;;NO;;YE;YEMEN;972;EN;;amendment;commission;2007-05-04;2007-05-03;492/2007 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:116:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;533;EU.439.10;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;NO;GREGORIAN;;;;Al-Mukalla;YE;YEMEN;236;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;533;EU.439.10;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;NO;GREGORIAN;;;;Al-Mukala;YE;YEMEN;1244;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;533;EU.439.10;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;00385937 (passport-National passport) ((passport));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;YE;;185;EN;(passport);amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;; +28/10/2022;533;EU.439.10;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;74;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF +28/10/2022;534;EU.369.1;;;;(Other information: (a) Finance chief of the Afghan Support Committee (ASC), (b) Al-Qaida facilitator and communication expert, (c) Believed to be in Algeria as at April 2010, (d) Son of Mohamed and Fatma Aribi. Date of designation referred to in Article 7d(2)(i): 11.1.2002.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Boubekeur Boulghiti;;;;;1276;EN;;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;534;EU.369.1;;;;(Other information: (a) Finance chief of the Afghan Support Committee (ASC), (b) Al-Qaida facilitator and communication expert, (c) Believed to be in Algeria as at April 2010, (d) Son of Mohamed and Fatma Aribi. Date of designation referred to in Article 7d(2)(i): 11.1.2002.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Boubakeur Boulghit;;;;;5921;EN;;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;534;EU.369.1;;;;(Other information: (a) Finance chief of the Afghan Support Committee (ASC), (b) Al-Qaida facilitator and communication expert, (c) Believed to be in Algeria as at April 2010, (d) Son of Mohamed and Fatma Aribi. Date of designation referred to in Article 7d(2)(i): 11.1.2002.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Abou Yasser Al-Jaziri;;;;;122175;EN;;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;534;EU.369.1;;;;(Other information: (a) Finance chief of the Afghan Support Committee (ASC), (b) Al-Qaida facilitator and communication expert, (c) Believed to be in Algeria as at April 2010, (d) Son of Mohamed and Fatma Aribi. Date of designation referred to in Article 7d(2)(i): 11.1.2002.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Yasir Al-Jazari;;;;;122176;EN;;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;534;EU.369.1;;;;(Other information: (a) Finance chief of the Afghan Support Committee (ASC), (b) Al-Qaida facilitator and communication expert, (c) Believed to be in Algeria as at April 2010, (d) Son of Mohamed and Fatma Aribi. Date of designation referred to in Article 7d(2)(i): 11.1.2002.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Abou Yasser El Djazairi;;;;;122177;EN;;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;534;EU.369.1;;;;(Other information: (a) Finance chief of the Afghan Support Committee (ASC), (b) Al-Qaida facilitator and communication expert, (c) Believed to be in Algeria as at April 2010, (d) Son of Mohamed and Fatma Aribi. Date of designation referred to in Article 7d(2)(i): 11.1.2002.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Abou Bakr Al Djazairi;;;;;122178;EN;;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;534;EU.369.1;;;;(Other information: (a) Finance chief of the Afghan Support Committee (ASC), (b) Al-Qaida facilitator and communication expert, (c) Believed to be in Algeria as at April 2010, (d) Son of Mohamed and Fatma Aribi. Date of designation referred to in Article 7d(2)(i): 11.1.2002.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Abu Bakr al-Jaziri;;;;;122179;EN;;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;534;EU.369.1;;;;(Other information: (a) Finance chief of the Afghan Support Committee (ASC), (b) Al-Qaida facilitator and communication expert, (c) Believed to be in Algeria as at April 2010, (d) Son of Mohamed and Fatma Aribi. Date of designation referred to in Article 7d(2)(i): 11.1.2002.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-02-13;13;2;1970;;;NO;GREGORIAN;;;Rouiba;Algier;DZ;ALGERIA;122174;EN;;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;534;EU.369.1;;;;(Other information: (a) Finance chief of the Afghan Support Committee (ASC), (b) Al-Qaida facilitator and communication expert, (c) Believed to be in Algeria as at April 2010, (d) Son of Mohamed and Fatma Aribi. Date of designation referred to in Article 7d(2)(i): 11.1.2002.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;76;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF +28/10/2022;534;EU.369.1;;;;(Other information: (a) Finance chief of the Afghan Support Committee (ASC), (b) Al-Qaida facilitator and communication expert, (c) Believed to be in Algeria as at April 2010, (d) Son of Mohamed and Fatma Aribi. Date of designation referred to in Article 7d(2)(i): 11.1.2002.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PS;;399;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF +28/10/2022;537;EU.3097.55;;2002-01-11;;(Date of UN designation: 2002-01-11)\n(Associated with Afghan Support Committee (ASC), Revival of Islamic Heritage Society (RIHS) and the Libyan Islamic Fighting Group (LIFG) Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Date of designation referred to in Article 2a (4) (b): 11.1.2002.’);P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;Tantoush;Ibrahim;Ali Abu Bakr;Ibrahim Ali Abu Bakr Tantoush;;;;;1282;EN;;amendment;commission;2006-08-10;2006-08-09;1210/2006 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:219:0014:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;537;EU.3097.55;;2002-01-11;;(Date of UN designation: 2002-01-11)\n(Associated with Afghan Support Committee (ASC), Revival of Islamic Heritage Society (RIHS) and the Libyan Islamic Fighting Group (LIFG) Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Date of designation referred to in Article 2a (4) (b): 11.1.2002.’);P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Abd al-Muhsin;;;;;1283;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;537;EU.3097.55;;2002-01-11;;(Date of UN designation: 2002-01-11)\n(Associated with Afghan Support Committee (ASC), Revival of Islamic Heritage Society (RIHS) and the Libyan Islamic Fighting Group (LIFG) Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Date of designation referred to in Article 2a (4) (b): 11.1.2002.’);P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Ibrahim Ali Muhammad Abu Bakr;;;;;4912;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;537;EU.3097.55;;2002-01-11;;(Date of UN designation: 2002-01-11)\n(Associated with Afghan Support Committee (ASC), Revival of Islamic Heritage Society (RIHS) and the Libyan Islamic Fighting Group (LIFG) Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Date of designation referred to in Article 2a (4) (b): 11.1.2002.’);P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Abdul Rahman;;;;;4913;EN;;amendment;commission;2006-08-10;2006-08-09;1210/2006 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:219:0014:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;537;EU.3097.55;;2002-01-11;;(Date of UN designation: 2002-01-11)\n(Associated with Afghan Support Committee (ASC), Revival of Islamic Heritage Society (RIHS) and the Libyan Islamic Fighting Group (LIFG) Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Date of designation referred to in Article 2a (4) (b): 11.1.2002.’);P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Abu Anas;;;;;4914;EN;;amendment;commission;2006-08-10;2006-08-09;1210/2006 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:219:0014:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;537;EU.3097.55;;2002-01-11;;(Date of UN designation: 2002-01-11)\n(Associated with Afghan Support Committee (ASC), Revival of Islamic Heritage Society (RIHS) and the Libyan Islamic Fighting Group (LIFG) Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Date of designation referred to in Article 2a (4) (b): 11.1.2002.’);P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;Tantouche;Ibrahim;Abubaker;Ibrahim Abubaker Tantouche;;;;;4915;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;537;EU.3097.55;;2002-01-11;;(Date of UN designation: 2002-01-11)\n(Associated with Afghan Support Committee (ASC), Revival of Islamic Heritage Society (RIHS) and the Libyan Islamic Fighting Group (LIFG) Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Date of designation referred to in Article 2a (4) (b): 11.1.2002.’);P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;Tantoush;Ibrahim;Abubaker;Ibrahim Abubaker Tantoush;;;;;4983;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;537;EU.3097.55;;2002-01-11;;(Date of UN designation: 2002-01-11)\n(Associated with Afghan Support Committee (ASC), Revival of Islamic Heritage Society (RIHS) and the Libyan Islamic Fighting Group (LIFG) Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Date of designation referred to in Article 2a (4) (b): 11.1.2002.’);P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Abd al-Muhsi;;;;;4984;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;537;EU.3097.55;;2002-01-11;;(Date of UN designation: 2002-01-11)\n(Associated with Afghan Support Committee (ASC), Revival of Islamic Heritage Society (RIHS) and the Libyan Islamic Fighting Group (LIFG) Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Date of designation referred to in Article 2a (4) (b): 11.1.2002.’);P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Abd al-Rahman;;;;;4985;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;537;EU.3097.55;;2002-01-11;;(Date of UN designation: 2002-01-11)\n(Associated with Afghan Support Committee (ASC), Revival of Islamic Heritage Society (RIHS) and the Libyan Islamic Fighting Group (LIFG) Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Date of designation referred to in Article 2a (4) (b): 11.1.2002.’);P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Al-Libi;;;;;4986;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;537;EU.3097.55;;2002-01-11;;(Date of UN designation: 2002-01-11)\n(Associated with Afghan Support Committee (ASC), Revival of Islamic Heritage Society (RIHS) and the Libyan Islamic Fighting Group (LIFG) Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Date of designation referred to in Article 2a (4) (b): 11.1.2002.’);P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Abdel Ilah Sabri;EN;;;;106109;EN;;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;537;EU.3097.55;;2002-01-11;;(Date of UN designation: 2002-01-11)\n(Associated with Afghan Support Committee (ASC), Revival of Islamic Heritage Society (RIHS) and the Libyan Islamic Fighting Group (LIFG) Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Date of designation referred to in Article 2a (4) (b): 11.1.2002.’);P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;TRIPOLI;;;;;;NO;(AS AT FEB 2014);LY;LIBYA;1916;EN;AS AT FEB 2014;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;537;EU.3097.55;;2002-01-11;;(Date of UN designation: 2002-01-11)\n(Associated with Afghan Support Committee (ASC), Revival of Islamic Heritage Society (RIHS) and the Libyan Islamic Fighting Group (LIFG) Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Date of designation referred to in Article 2a (4) (b): 11.1.2002.’);P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-02-02;2;2;1966;;;NO;GREGORIAN;;;;al Aziziyya;LY;LIBYA;821;EN;;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;537;EU.3097.55;;2002-01-11;;(Date of UN designation: 2002-01-11)\n(Associated with Afghan Support Committee (ASC), Revival of Islamic Heritage Society (RIHS) and the Libyan Islamic Fighting Group (LIFG) Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Date of designation referred to in Article 2a (4) (b): 11.1.2002.’);P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203037 (passport-National passport) (in TRIPOLI);NO;NO;NO;NO;NO;;;;;;;passport;National passport;TRIPOLI;LY;;206;EN;;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;; +28/10/2022;537;EU.3097.55;;2002-01-11;;(Date of UN designation: 2002-01-11)\n(Associated with Afghan Support Committee (ASC), Revival of Islamic Heritage Society (RIHS) and the Libyan Islamic Fighting Group (LIFG) Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Date of designation referred to in Article 2a (4) (b): 11.1.2002.’);P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347834 (passport-National passport) (valid to 2014-02-21)[known to be expired](issued under name Ibrahim Ali Tantoush, expired on 21 Feb. 2014);NO;YES;NO;NO;NO;;;;2014-02-21;;;passport;National passport;;LY;;106108;EN;issued under name Ibrahim Ali Tantoush, expired on 21 Feb. 2014;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;; +28/10/2022;537;EU.3097.55;;2002-01-11;;(Date of UN designation: 2002-01-11)\n(Associated with Afghan Support Committee (ASC), Revival of Islamic Heritage Society (RIHS) and the Libyan Islamic Fighting Group (LIFG) Photograph and fingerprints available for inclusion in the INTERPOL-UNSC Special Notice. Date of designation referred to in Article 2a (4) (b): 11.1.2002.’);P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LY;;362;EN;;amendment;commission;2006-08-10;2006-08-09;1210/2006 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:219:0014:0019:EN:PDF +28/10/2022;540;EU.298.88;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678553);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Aminullah Amin Quddus;;;Maulavi;Governor of Saripul Province (Afghanistan) under the Taliban regime.;15998;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;540;EU.298.88;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678553);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Yusuf;Muhammad;;Muhammad Yusuf;;;;;15999;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;540;EU.298.88;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678553);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Amin;Aminullah;;Aminullah Amin;;;;;101712;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;540;EU.298.88;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678553);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;YES;GREGORIAN;;;;Loy Karez village, Spin Boldak District, Kandahar Province;AF;AFGHANISTAN;1828;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;540;EU.298.88;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678553);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101711;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;542;EU.318.78;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446026);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Waliullah;Nazirullah;Hanafi;Nazirullah Hanafi Waliullah;;;(a) Maulavi, (b) Haji;Commercial Attaché, Taliban Embassy, Islamabad, Pakistan;1290;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;542;EU.318.78;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446026);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Waliullah;Nazirullah;Aanafi;Nazirullah Aanafi Waliullah;;;Haji;;101717;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;542;EU.318.78;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446026);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;;;NO;GREGORIAN;;;;Spin Boldak District, Kandahar Province;AF;AFGHANISTAN;799;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;542;EU.318.78;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446026);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D 000912 (passport-National passport) (valid from 1998-06-30);NO;NO;NO;NO;NO;;;1998-06-30;;;;passport;National passport;;AF;;101715;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;542;EU.318.78;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446026);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101714;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF +28/10/2022;544;EU.314.74;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427388);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Anwari;Muhammad;Taher;Muhammad Taher Anwari;;;Mullah;(a) Director of Administrative Affairs under the Taliban regime, (b) Minister of Finance under the Taliban regime.;5897;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;544;EU.314.74;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427388);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Anwari;Mohammad;Taher;Mohammad Taher Anwari;;;;;5898;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;544;EU.314.74;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427388);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Anwari;Mohammad;Tahre;Mohammad Tahre Anwari;;;;;16000;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;544;EU.314.74;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427388);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Mudir;;;;;111237;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;544;EU.314.74;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427388);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Anwari;Muhammad;Tahir;Muhammad Tahir Anwari;;;;;111238;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;544;EU.314.74;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427388);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;YES;GREGORIAN;;;;Zurmat district, Paktia province;AF;AFGHANISTAN;101718;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;544;EU.314.74;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427388);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101719;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;545;EU.319.79;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427419 ();P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Arefullah Aref Ghazi Mohammad;;;Maulavi;(a) Deputy Minister of Finance under the Taliban regime, (b) Governor of Ghazni Province under the Taliban regime, (c) Governor of Paktia Province under the Taliban regime.;111239;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;545;EU.319.79;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427419 ();P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Arefullah Aref;;;;;111240;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;545;EU.319.79;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427419 ();P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;YES;GREGORIAN;;;;Lawang (Lawand) village, Gelan District, Ghazni Province;AF;AFGHANISTAN;980;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;545;EU.319.79;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427419 ();P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101725;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;547;EU.334.4;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/ Pakistan border area.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427438);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Sayed Esmatullah Asem Abdul Quddus;;;Maulavi;(a) Deputy Minister of Preventing Vice and Propagating Virtue under the Taliban regime, (b) Secretary- General of the Afghan Red Crescent Society (ARCS) under the Taliban regime.;1301;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;547;EU.334.4;;;;;P;person;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;Asem, Sayed Esmatullah;;;Maulavi;Deputy Minister of Preventing Vice and Propagating Virtue;5922;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;547;EU.334.4;;;;;P;person;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;Asem;Sayed Esmatullah;;Sayed Esmatullah Asem;;;;Secretary General of the Afghan Red Crescent Society (ARCS) under the Taliban regime;5923;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;547;EU.334.4;;;;;P;person;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;Asem;Esmatullah;;Esmatullah Asem;;;;;101731;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;547;EU.334.4;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/ Pakistan border area.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427438);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Asem;Asmatullah;;Asmatullah Asem;;;;;16005;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;547;EU.334.4;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/ Pakistan border area.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427438);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Asem;Sayed Esmatullah;;Sayed Esmatullah Asem;;;;;101729;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;547;EU.334.4;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/ Pakistan border area.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427438);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Asem;Esmatullah;;Esmatullah Asem;;;;;101730;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;547;EU.334.4;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/ Pakistan border area.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427438);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;YES;GREGORIAN;;;;Qalayi Shaikh, Chaparhar District, Nangarhar province;AF;AFGHANISTAN;926;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;547;EU.334.4;;;;;P;person;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;YES;GREGORIAN;;;;Ningarhar province;AF;AFGHANISTAN;101727;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;547;EU.334.4;;;;;P;person;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;400;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF +28/10/2022;547;EU.334.4;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/ Pakistan border area.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427438);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101728;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;548;EU.352.29;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Originally from Uruzgan, settled and lived later in Kandahar.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Alizai tribe. Brother of Abdul Jalil Haqqani Wali Mohammad. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5240911);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Atiqullah Wali Mohammad;;;(a) Haji, (b) Mullah;(a) Director of Foreign Relations, Kandahar Province under the Taliban regime, (b) Director of Public Works, Kandahar Province under the Taliban regime, (c) First Deputy Minister of Agriculture under the Taliban regime, (d) Deputy Minister of Public Works under the Taliban regime.;1302;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;548;EU.352.29;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Originally from Uruzgan, settled and lived later in Kandahar.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Alizai tribe. Brother of Abdul Jalil Haqqani Wali Mohammad. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5240911);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Atiqullah;;;;;6052;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;548;EU.352.29;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Originally from Uruzgan, settled and lived later in Kandahar.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Alizai tribe. Brother of Abdul Jalil Haqqani Wali Mohammad. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5240911);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;;;YES;GREGORIAN;;;;Khwaja Malik village, Arghadab District, Kandahar Province;AF;AFGHANISTAN;1831;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;548;EU.352.29;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Originally from Uruzgan, settled and lived later in Kandahar.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Alizai tribe. Brother of Abdul Jalil Haqqani Wali Mohammad. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5240911);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;;;YES;GREGORIAN;;;;Tirin Kot District, Uruzgan Province;AF;AFGHANISTAN;1972;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;548;EU.352.29;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Originally from Uruzgan, settled and lived later in Kandahar.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Alizai tribe. Brother of Abdul Jalil Haqqani Wali Mohammad. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5240911);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101732;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;550;EU.315.75;;;;;P;person;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;Aweys;Hassan;Dahir;Hassan Dahir Aweys;;;Sheikh;;1304;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;550;EU.315.75;;;;;P;person;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;Aweys;Hassan;Dahir;Hassan Dahir Aweys;;;Colonel;;1305;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;550;EU.315.75;;;;;P;person;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;Ali;Sheikh Hassan;Dahir Aweys;Sheikh Hassan Dahir Aweys Ali;;;;;1306;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;550;EU.315.75;;;;;P;person;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;Awes;Shaykh Hassan;Dahir;Shaykh Hassan Dahir Awes;;;;;6113;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;550;EU.315.75;;;;;P;person;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;Aweyes;Hassen;Dahir;Hassen Dahir Aweyes;;;;;6114;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;550;EU.315.75;;;;;P;person;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;Aweys;Ahmed;Dahir;Ahmed Dahir Aweys;;;;;6115;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;550;EU.315.75;;;;;P;person;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;Ibrahim;Mohammed;Hassan;Mohammed Hassan Ibrahim;;;;;6116;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;550;EU.315.75;;;;;P;person;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;Dahir;Aweys;Hassan;Aweys Hassan Dahir;;;;;6117;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;550;EU.315.75;;;;;P;person;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;Oais;Hassan;Tahir;Hassan Tahir Oais;;;;;7965;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;550;EU.315.75;;;;;P;person;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;Uways;Hassan;Tahir;Hassan Tahir Uways;;;;;7966;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;550;EU.315.75;;;;;P;person;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;Awes;Hassan;Dahir;Hassan Dahir Awes;;;;;7967;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;550;EU.315.75;;;;;P;person;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;;;;Sheikh Aweys;;;;;7968;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;550;EU.315.75;;;;;P;person;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;;;;Sheikh Hassan;;;;;7969;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;550;EU.315.75;;;;;P;person;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;Aweys;Sheikh Hassan;Dahir;Sheikh Hassan Dahir Aweys;;;;;7970;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;550;EU.315.75;;;;;P;person;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;SO;SOMALIA;1914;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;550;EU.315.75;;;;;P;person;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1935;;;NO;GREGORIAN;;;;;SO;SOMALIA;241;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;550;EU.315.75;;;;;P;person;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;80;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;Al-Zawahari;Ayman;;Ayman Al-Zawahari;;M;;;1307;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Ahmed Fuad Salim;;;;;1308;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;Al-Zawahiri;Aiman;Muhammed Rabi;Aiman Muhammed Rabi Al-Zawahiri;;;"Doctor; Dr.";(a) Leader of Al-Qaida, (b) Former operational and military leader of Egyptian Islamic Jihad, was a close associate of Usama Bin Laden (deceased), (c) Believed to be in the Afghanistan/Pakistan border area.;5738;EN;;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;Al Zawahry;Aiman;Mohamed Rabi Abdel Muaz;Aiman Mohamed Rabi Abdel Muaz Al Zawahry;;;;;5739;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;Al Zawahiri;Ayman;;Ayman Al Zawahiri;;;;;5740;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;Ayman;Al-Zawahari;;Al-Zawahari Ayman;;;;;5741;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Abdul Qader Abdul Aziz Abdul Moez Al Doctor;;;;;5742;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;Al Zawahry;Aiman;Mohamed Rabi;Aiman Mohamed Rabi Al Zawahry;;;;;5743;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;Al Zawahry;Aiman;Mohamed Rabie;Aiman Mohamed Rabie Al Zawahry;;;;;5744;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;Al Zawahry;Aiman;Mohamed Robi;Aiman Mohamed Robi Al Zawahry;;;;;5745;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Dhawahri Ayman;;;;;5746;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Eddaouahiri Ayman;;;;;5747;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Nur Al Deen Abu Mohammed;;;;;5748;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Abu Fatma;;;;;5749;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Abu Mohammed;;;;;5750;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Al Zawahry Aiman Mohamed Rabi;;;;;5844;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Ayman Al-Zawahari;;;;;5845;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Al Zawahry Aiman Mohamed Rabi Abdel Muaz;;;;;5846;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Al Zawahiri Ayman;;;;;5847;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Al Zawahry Aiman Mohamed Rabie;;;;;5848;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Al Zawahry Aiman Mohamed Robi;;;;;5849;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;Dhawahri;Ayman;;Ayman Dhawahri;;;;;5850;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;Eddaouahiri;Ayman;;Ayman Eddaouahiri;;;;;5851;EN;;amendment;commission;2007-08-29;2007-08-28;996/2007 (OJ L224);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:224:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Ahmad Fuad Salim;;;;;8958;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;Al Zawahari;Ayman;;Ayman Al Zawahari;;;;;8959;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-06-19;19;6;1951;;;NO;GREGORIAN;;;;Giza;EG;EGYPT;242;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1084010 (other-Other identification number) ";NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;EG;;10;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"19820215 (other-Other identification number) ";NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;11;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;; +28/10/2022;551;EU.3090.9;;;;;P;person;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EG;;670;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN +28/10/2022;552;EU.311.71;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4640065);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Azizirahman Abdul Ahad;;;Mr;Third Secretary, Taliban Embassy, Abu Dhabi, United Arab Emirates.;111241;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;552;EU.311.71;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4640065);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;NO;GREGORIAN;;;;Shega District, Kandahar Province;AF;AFGHANISTAN;1832;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;552;EU.311.71;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4640065);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44323 (id-National identification card) ((national identification card (tazkira)));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;AF;;772;EN;(national identification card (tazkira));amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;; +28/10/2022;552;EU.311.71;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4640065);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;104437;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;553;EU.312.72;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1493921);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Baqi Basir Awal Shah;;;(a) Maulavi, (b) Mullah;(a) Governor of Khost and Paktika provinces under the Taliban regime, (b) Vice-Minister of Information and Culture under the Taliban regime, (c) Consulate Department, Ministry of Foreign Affairs under the Taliban regime.;1310;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;553;EU.312.72;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1493921);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Baqi;;;;;16852;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;553;EU.312.72;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1493921);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;1962;YES;GREGORIAN;;;;Shinwar District, Nangarhar Province;AF;AFGHANISTAN;1795;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;553;EU.312.72;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1493921);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;1962;NO;GREGORIAN;;;;Jalalabad City, Nangarhar Province;AF;AFGHANISTAN;111339;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;553;EU.312.72;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1493921);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101749;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;Haq;Abdul;;Abdul Haq;;M;;;1311;EN;;amendment;commission;2009-04-25;2009-04-24;344/2009 (OJ L105);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:105:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Maimaitiming Maimaiti;;;;;7032;EN;;amendment;commission;2009-04-25;2009-04-24;344/2009 (OJ L105);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:105:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;Heq;Abdul;;Abdul Heq;;;;;7033;EN;;amendment;commission;2009-04-25;2009-04-24;344/2009 (OJ L105);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:105:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Abudu Hake;;;;;7034;EN;;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Abdul Heq Jundullah;;;;;7035;EN;;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;Al-Haq;'Abd;;'Abd Al-Haq;;;;;7036;EN;;amendment;commission;2009-04-25;2009-04-24;344/2009 (OJ L105);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:105:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Memetiming Memeti;;;;;7037;EN;;amendment;commission;2009-04-25;2009-04-24;344/2009 (OJ L105);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:105:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Memetiming Aximu;;;;;7038;EN;;amendment;commission;2009-04-25;2009-04-24;344/2009 (OJ L105);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:105:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Memetiming Qekeman;;;;;7039;EN;;amendment;commission;2009-04-25;2009-04-24;344/2009 (OJ L105);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:105:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Maiumaitimin Maimaiti;;;;;7040;EN;;amendment;commission;2009-04-25;2009-04-24;344/2009 (OJ L105);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:105:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;Saimaiti;Abdul;;Abdul Saimaiti;;;;;7041;EN;;amendment;commission;2009-04-25;2009-04-24;344/2009 (OJ L105);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:105:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;Khaliq;Muhammad;Ahmed;Muhammad Ahmed Khaliq;;;;;7042;EN;;amendment;commission;2009-04-25;2009-04-24;344/2009 (OJ L105);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:105:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Maimaiti Iman;;;;;7043;EN;;amendment;commission;2009-04-25;2009-04-24;344/2009 (OJ L105);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:105:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Muhelisi;;;;;7044;EN;;amendment;commission;2009-04-25;2009-04-24;344/2009 (OJ L105);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:105:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Qerman;;;;;7045;EN;;amendment;commission;2009-04-25;2009-04-24;344/2009 (OJ L105);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:105:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;Saifuding;;;;;7046;EN;;amendment;commission;2009-04-25;2009-04-24;344/2009 (OJ L105);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:105:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-10-10;10;10;1971;;;NO;GREGORIAN;;;Hetian Area, Xinjiang Uighur Autonomous Regio;Hetian Area, Region;CN;CHINA;1128;EN;;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"653225197110100533 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;CN;;341;EN;;amendment;commission;2009-04-25;2009-04-24;344/2009 (OJ L105);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:105:0003:0004:EN:PDF;;;;;;;;;;;;; +28/10/2022;554;EU.307.15;;;;(Other information: (a) Overall leader and commander of the Eastern Turkistan Islamic Movement. Involved in fundraising and recruitment for this organisation, (b) Located in Afghanistan as at July 2016, (c) Previously located in Pakistan as at April 2009. Date of designation referred to in Article 7d(2)(i): 15.4.2009.);P;person;amendment;commission;2020-02-18;2020-02-19;2020/218 (OJ L44);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0218&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CN;;548;EN;;amendment;commission;2009-04-25;2009-04-24;344/2009 (OJ L105);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:105:0003:0004:EN:PDF +28/10/2022;555;EU.322.37;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Popalzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427381);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Ghani Baradar;;;;;16008;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;555;EU.322.37;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Popalzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427381);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Baradar Akhund;;;;;101755;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;555;EU.322.37;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Popalzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427381);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Ghani Baradar Abdul Ahmad Turk;;;Mullah;Deputy Minister of Defence under the Taliban regime;111242;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;555;EU.322.37;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Popalzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427381);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;Uruzgan Province;Yatimak village;Dehrawood District;AF;AFGHANISTAN;111243;EN;Yatimak village, Dehrawood District, Uruzgan Province, Afghanistan;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;555;EU.322.37;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Popalzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427381);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101754;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;556;EU.323.38;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Alokozai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427430);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Zakir;;;;;15989;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;556;EU.323.38;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Alokozai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427430);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Akhund;Abdul Bari;;Abdul Bari Akhund;;;(a) Maulavi, (b) Mullah.;Governor of Helmand Province under the Taliban regime;101759;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;556;EU.323.38;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Alokozai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427430);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Mullah Sahib;;;;;101761;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;556;EU.323.38;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Alokozai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427430);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;YES;GREGORIAN;;;;Baghran District, Helmand province;AF;AFGHANISTAN;924;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;556;EU.323.38;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Alokozai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427430);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;YES;GREGORIAN;;;;Now Zad District, Helmand Province;AF;AFGHANISTAN;1814;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;556;EU.323.38;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Alokozai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427430);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101758;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;557;EU.324.39;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;Bin Marwan, Bilal;;M;;;1314;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;557;EU.324.39;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;Trémie Marwan;FR;;;;1915;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;557;EU.324.39;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947;;;NO;GREGORIAN;;;;;00;UNKNOWN;243;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;561;EU.332.2;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Deputy Head of Taliban Embassy in Riyadh, Saudi Arabia until 25 Sept. 1998. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427559);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Shahabuddin Delawar;;;Maulavi;Deputy of High Court under the Taliban regime;1323;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;561;EU.332.2;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Deputy Head of Taliban Embassy in Riyadh, Saudi Arabia until 25 Sept. 1998. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427559);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;NO;GREGORIAN;;;;Logar Province;AF;AFGHANISTAN;1834;EN;;amendment;council;2016-09-30;2016-09-30;2016/1736 (OJ L264);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1736&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;561;EU.332.2;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Deputy Head of Taliban Embassy in Riyadh, Saudi Arabia until 25 Sept. 1998. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427559);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;NO;GREGORIAN;;;;Logar province;AF;AFGHANISTAN;101762;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;561;EU.332.2;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Deputy Head of Taliban Embassy in Riyadh, Saudi Arabia until 25 Sept. 1998. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427559);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA296623 (passport-National passport) ((passport));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;AF;;858;EN;(passport);amendment;commission;2013-05-17;2013-05-16;451/2013 (OJ L133);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:133:0001:0004:EN:PDF;;;;;;;;;;;;; +28/10/2022;561;EU.332.2;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Deputy Head of Taliban Embassy in Riyadh, Saudi Arabia until 25 Sept. 1998. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427559);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101763;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;580;EU.335.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in the Gulf region. Belongs to Taraki tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427441);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ehsanullah Sarfida Hesamuddin Akhundzada;;;Maulavi;Deputy Minister of Security (Intelligence) under the Taliban regime.;1324;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;580;EU.335.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in the Gulf region. Belongs to Taraki tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427441);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ehsanullah Sarfadi;;;;;16001;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;580;EU.335.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in the Gulf region. Belongs to Taraki tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427441);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ehsanullah Sarfida;;;;;16002;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;580;EU.335.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in the Gulf region. Belongs to Taraki tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427441);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;1963;YES;GREGORIAN;;;;Khatak village, Gelan District, Ghazni Province;AF;AFGHANISTAN;1003;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;580;EU.335.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in the Gulf region. Belongs to Taraki tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427441);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101766;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;581;EU.350.27;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Reportedly deceased in 2005. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/4665205);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammad Azam Elmi;;;Maulavi;Deputy Minister of Mines and Industries under the Taliban regime;1325;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;581;EU.350.27;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Reportedly deceased in 2005. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/4665205);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Muhammad Azami;;;;;16010;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;581;EU.350.27;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Reportedly deceased in 2005. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/4665205);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;Paktia Province;Sayd Karam District;;AF;AFGHANISTAN;931;EN;Paktia Province, Afghanistan;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;581;EU.350.27;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Reportedly deceased in 2005. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/4665205);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101769;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;582;EU.351.28;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665076);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Akhund;Mohammad Ishaq;;Mohammad Ishaq Akhund;;;;;15995;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;582;EU.351.28;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665076);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Akhunzada;Mohammad Eshaq;;Mohammad Eshaq Akhunzada;;;Maulavi;Governor of Laghman Province (Afghanistan) under the Taliban regime.;111133;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;582;EU.351.28;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665076);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;1968;YES;GREGORIAN;;Ghazni Province;Andar District;;AF;AFGHANISTAN;111134;EN;Andar District, Ghazni Province, Afghanistan;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;582;EU.351.28;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665076);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101772;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;583;EU.296.86;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678668);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ezatullah Haqqani Khan Sayyid;;;Maulavi;Deputy Minister of Planning under the Taliban regime;101775;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;583;EU.296.86;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678668);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ezatullah Haqqani;;;;;101776;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;583;EU.296.86;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678668);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;YES;GREGORIAN;;;;Alingar District, Laghman province;AF;AFGHANISTAN;101774;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;583;EU.296.86;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678668);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;111252;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN +28/10/2022;585;EU.329.44;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1493746);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Faiz;;;Maulavi;Head of the Information Dept, Ministry of Foreign Affairs under the Taliban regime.;1336;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;585;EU.329.44;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1493746);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969;;;YES;GREGORIAN;;;;Ghazni province;AF;AFGHANISTAN;101777;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;585;EU.329.44;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1493746);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101778;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;590;EU.355.32;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665175);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Hakimi;Gul Ahmad;;Gul Ahmad Hakimi;;;Maulavi;Commercial Attaché, Taliban ‘Consulate General’, Karachi, Pakistan;101782;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;590;EU.355.32;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665175);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;Kabul Province;AF;AFGHANISTAN;1840;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;590;EU.355.32;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665175);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;Logar Province;AF;AFGHANISTAN;101780;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;590;EU.355.32;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665175);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101781;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;591;EU.356.33;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Baloch ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. Additional title: Hafiz. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665093);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Hamdullah Allah Noor;;;Maulavi;Repatriation Attaché, Taliban Consulate General, Quetta, Pakistan.;111250;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;591;EU.356.33;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Baloch ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. Additional title: Hafiz. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665093);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;NO;GREGORIAN;;;;District Number 6, Kandahar City, Kandahar Province;AF;AFGHANISTAN;1826;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;591;EU.356.33;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Baloch ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. Additional title: Hafiz. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665093);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4414 (id-National identification card) ((afghan identification card (tazkira)));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;AF;;778;EN;(afghan identification card (tazkira));amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;; +28/10/2022;591;EU.356.33;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Baloch ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. Additional title: Hafiz. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665093);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101783;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;593;EU.294.84;;;;;P;person;amendment;commission;2007-07-21;2007-07-21;859/2007 (OJ L190);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:190:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;593;EU.294.84;;;;;P;person;amendment;commission;2007-07-21;2007-07-21;859/2007 (OJ L190);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:190:0007:0009:EN:PDF;Akhund;Hamidullah;;Hamidullah Akhund;;;Mullah;Head of Ariana Afghan Airlines under the Taliban regime;1362;EN;;amendment;commission;2007-07-21;2007-07-21;859/2007 (OJ L190);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:190:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;593;EU.294.84;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427570);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Hamidullah Akhund Sher Mohammad;;;Mullah;Head of Ariana Afghan Airlines under the Taliban regime.;15992;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;593;EU.294.84;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427570);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Janat Gul;;;;;15993;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;593;EU.294.84;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427570);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Akhund;Hamidullah;;Hamidullah Akhund;;;Mullah;Head of Ariana Afghan Airlines under the Taliban regime;101787;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;593;EU.294.84;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427570);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;1973;YES;GREGORIAN;;;;Arghandab District, Kandahar Province;AF;AFGHANISTAN;1815;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;593;EU.294.84;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427570);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;1973;NO;GREGORIAN;;Helmand Province;Washer District;Sarpolad village;AF;AFGHANISTAN;111129;EN;Sarpolad village,Washer District, Helmand Province, Afghanistan;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;593;EU.294.84;;;;;P;person;amendment;commission;2007-07-21;2007-07-21;859/2007 (OJ L190);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:190:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;382;EN;;amendment;commission;2007-07-21;2007-07-21;859/2007 (OJ L190);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:190:0007:0009:EN:PDF +28/10/2022;593;EU.294.84;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427570);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101786;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;594;EU.295.85;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan/Iran border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427518);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Pahlawan Shamsuddin;;;;;16007;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;594;EU.295.85;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan/Iran border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427518);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Shamsuddin;;;(a) Maulavi, (b) Qari;Governor of Wardak (Maidan) Province (Afghanistan) under the Taliban regime;16062;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;594;EU.295.85;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan/Iran border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427518);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;;;Keshim district, Badakhshan province;AF;AFGHANISTAN;101788;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;594;EU.295.85;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan/Iran border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427518);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101789;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;595;EU.336.6;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Taliban member responsible for Jawzjan Province in Northern Afghanistan until 2008.\nBelieved to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427380);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Hanafi Saheb;;;;;5976;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;595;EU.336.6;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Taliban member responsible for Jawzjan Province in Northern Afghanistan until 2008.\nBelieved to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427380);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Qul;Abdul Salam;Hanafi Ali Mardan;Abdul Salam Hanafi Ali Mardan Qul;;;(a) Mullah, (b) Maulavi.;Deputy Minister of Education under the Taliban regime.;101794;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;595;EU.336.6;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Taliban member responsible for Jawzjan Province in Northern Afghanistan until 2008.\nBelieved to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427380);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Hanifi;Abdussalam;;Abdussalam Hanifi;;;;;101795;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;595;EU.336.6;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Taliban member responsible for Jawzjan Province in Northern Afghanistan until 2008.\nBelieved to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427380);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;;;Darzab district, Faryab district;AF;AFGHANISTAN;951;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;595;EU.336.6;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Taliban member responsible for Jawzjan Province in Northern Afghanistan until 2008.\nBelieved to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427380);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;;;Qush Tepa District, Jawzjan Province;AF;AFGHANISTAN;1818;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;595;EU.336.6;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Taliban member responsible for Jawzjan Province in Northern Afghanistan until 2008.\nBelieved to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427380);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101792;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;596;EU.337.7;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1493613.);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Qari Din Mohammad;;;;;5901;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;596;EU.337.7;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1493613.);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Iadena Mohammad;;;;;16854;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;596;EU.337.7;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1493613.);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Hanif;Din Mohammad;;Din Mohammad Hanif;;;Qari;(a) Minister of Planning under the Taliban regime, (b) Minister of Higher Education under the Taliban regime.;101800;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;596;EU.337.7;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1493613.);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955;;;YES;GREGORIAN;;;;Shakarlab village, Yaftali Pain District, Badakhshan Province;AF;AFGHANISTAN;101797;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;596;EU.337.7;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1493613.);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA 454044 (passport-National passport) ((as Iadena Mohammad));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;846;EN;(as Iadena Mohammad);amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;596;EU.337.7;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1493613.);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101798;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF +28/10/2022;597;EU.359.36;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Father of Sirajuddin Jallaloudine Haqqani, Nasiruddin Haqqani and Badruddin Haqqani (deceased). Brother of Mohammad Ibrahim Omari and Khalil Ahmed Haqqani. He is an active Taliban leader. \nBelieved to be in Afghanistan/Pakistan border area. Head of the Taliban Miram Shah Shura as at 2008. Belongs to Zadran tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of September 2018.INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427400);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;Haqqani;Jalaluddin;;Jalaluddin Haqqani;;M;Maulavi;Minister of Frontier Affairs under the Taliban regime;101804;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;597;EU.359.36;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Father of Sirajuddin Jallaloudine Haqqani, Nasiruddin Haqqani and Badruddin Haqqani (deceased). Brother of Mohammad Ibrahim Omari and Khalil Ahmed Haqqani. He is an active Taliban leader. \nBelieved to be in Afghanistan/Pakistan border area. Head of the Taliban Miram Shah Shura as at 2008. Belongs to Zadran tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of September 2018.INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427400);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;Haqani;Jalaluddin;;Jalaluddin Haqani;;;;;101805;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;597;EU.359.36;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Father of Sirajuddin Jallaloudine Haqqani, Nasiruddin Haqqani and Badruddin Haqqani (deceased). Brother of Mohammad Ibrahim Omari and Khalil Ahmed Haqqani. He is an active Taliban leader. \nBelieved to be in Afghanistan/Pakistan border area. Head of the Taliban Miram Shah Shura as at 2008. Belongs to Zadran tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of September 2018.INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427400);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;Haqqani;Jallalouddin;;Jallalouddin Haqqani;;;;;101806;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;597;EU.359.36;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Father of Sirajuddin Jallaloudine Haqqani, Nasiruddin Haqqani and Badruddin Haqqani (deceased). Brother of Mohammad Ibrahim Omari and Khalil Ahmed Haqqani. He is an active Taliban leader. \nBelieved to be in Afghanistan/Pakistan border area. Head of the Taliban Miram Shah Shura as at 2008. Belongs to Zadran tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of September 2018.INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427400);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;Haqani;Jallalouddine;;Jallalouddine Haqani;;;;;101807;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;597;EU.359.36;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Father of Sirajuddin Jallaloudine Haqqani, Nasiruddin Haqqani and Badruddin Haqqani (deceased). Brother of Mohammad Ibrahim Omari and Khalil Ahmed Haqqani. He is an active Taliban leader. \nBelieved to be in Afghanistan/Pakistan border area. Head of the Taliban Miram Shah Shura as at 2008. Belongs to Zadran tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of September 2018.INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427400);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948;;;YES;GREGORIAN;;;;;AF;AFGHANISTAN;101802;EN;Neka District, Paktika Province, Afghanistan;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;597;EU.359.36;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Father of Sirajuddin Jallaloudine Haqqani, Nasiruddin Haqqani and Badruddin Haqqani (deceased). Brother of Mohammad Ibrahim Omari and Khalil Ahmed Haqqani. He is an active Taliban leader. \nBelieved to be in Afghanistan/Pakistan border area. Head of the Taliban Miram Shah Shura as at 2008. Belongs to Zadran tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of September 2018.INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427400);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1942;;;YES;GREGORIAN;;;;Neka District, Paktika Province;AF;AFGHANISTAN;101803;EN;;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;597;EU.359.36;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Father of Sirajuddin Jallaloudine Haqqani, Nasiruddin Haqqani and Badruddin Haqqani (deceased). Brother of Mohammad Ibrahim Omari and Khalil Ahmed Haqqani. He is an active Taliban leader. \nBelieved to be in Afghanistan/Pakistan border area. Head of the Taliban Miram Shah Shura as at 2008. Belongs to Zadran tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of September 2018.INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427400);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1942;;;YES;GREGORIAN;;;;;AF;AFGHANISTAN;111353;EN;Garda Saray area, Waza Zadran District, Paktia Province, Afghanistan;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;597;EU.359.36;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Father of Sirajuddin Jallaloudine Haqqani, Nasiruddin Haqqani and Badruddin Haqqani (deceased). Brother of Mohammad Ibrahim Omari and Khalil Ahmed Haqqani. He is an active Taliban leader. \nBelieved to be in Afghanistan/Pakistan border area. Head of the Taliban Miram Shah Shura as at 2008. Belongs to Zadran tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of September 2018.INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427400);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948;;;YES;GREGORIAN;;;;;AF;AFGHANISTAN;111354;EN;Garda Saray area, Waza Zadran District, Paktia Province, Afghanistan;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;597;EU.359.36;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Father of Sirajuddin Jallaloudine Haqqani, Nasiruddin Haqqani and Badruddin Haqqani (deceased). Brother of Mohammad Ibrahim Omari and Khalil Ahmed Haqqani. He is an active Taliban leader. \nBelieved to be in Afghanistan/Pakistan border area. Head of the Taliban Miram Shah Shura as at 2008. Belongs to Zadran tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of September 2018.INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427400);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;111253;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN +28/10/2022;599;EU.303.11;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Graduate of the Haqqaniya madrasa in Akora Khattak, Pakistan.\nBelieved to be in Afghanistan/Pakistan border area.\nBelongs to Barakzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010.\nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of January 2016.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1493918);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqqani;Sayyed;Mohammed;Sayyed Mohammed Haqqani;;;Mullah;(a) Director of Administrative Affairs under the Taliban regime, (b) Head of Information and Culture in Kandahar Province under the Taliban regime.;5936;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;599;EU.303.11;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Graduate of the Haqqaniya madrasa in Akora Khattak, Pakistan.\nBelieved to be in Afghanistan/Pakistan border area.\nBelongs to Barakzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010.\nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of January 2016.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1493918);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqqani;Sayyed;Mohammad;Sayyed Mohammad Haqqani;;;;;101812;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;599;EU.303.11;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Graduate of the Haqqaniya madrasa in Akora Khattak, Pakistan.\nBelieved to be in Afghanistan/Pakistan border area.\nBelongs to Barakzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010.\nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of January 2016.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1493918);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;YES;GREGORIAN;;;;Chaharbagh village, Arghandab District, Kandahar Province;AF;AFGHANISTAN;937;EN;;amendment;council;2016-09-30;2016-09-30;2016/1736 (OJ L264);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1736&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;599;EU.303.11;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Graduate of the Haqqaniya madrasa in Akora Khattak, Pakistan.\nBelieved to be in Afghanistan/Pakistan border area.\nBelongs to Barakzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010.\nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice. Reportedly deceased as of January 2016.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1493918);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101809;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;600;EU.304.12;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Deputy Commander of Ezatullah Haqqani Khan Sayyid as at Mar. 2010.\nBelongs to Pashai ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494034);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammad Salim Haqqani;;;Maulavi;Deputy Minister of Preventing Vice and Propagating Virtue under the Taliban regime.;1369;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;600;EU.304.12;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Deputy Commander of Ezatullah Haqqani Khan Sayyid as at Mar. 2010.\nBelongs to Pashai ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494034);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;1967;YES;GREGORIAN;;Laghman Province;Alingar District;;AF;AFGHANISTAN;111263;EN;Alingar District, Laghman Province, Afghanistan.;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;600;EU.304.12;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Deputy Commander of Ezatullah Haqqani Khan Sayyid as at Mar. 2010.\nBelongs to Pashai ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494034);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101814;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;601;EU.308.16;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Ethnic Pashtun from Baghlan Province. Believed to be in Afghanistan/Pakistan border area. Speaks fluent English, Urdu and Arabic. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427425);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammad Moslim Haqqani Muhammadi Gul;;;Maulavi;(a) Deputy Minister of Haj and Religious Affairs under the Taliban regime, (b) Deputy Minister of Higher Education under the Taliban regime.;1370;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;601;EU.308.16;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Ethnic Pashtun from Baghlan Province. Believed to be in Afghanistan/Pakistan border area. Speaks fluent English, Urdu and Arabic. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427425);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqqani;Moslim;;Moslim Haqqani;;;;;101819;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;601;EU.308.16;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Ethnic Pashtun from Baghlan Province. Believed to be in Afghanistan/Pakistan border area. Speaks fluent English, Urdu and Arabic. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427425);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;NO;GREGORIAN;;;;Gawargan village, Pul-e-Khumri District, Baghlan Province;AF;AFGHANISTAN;936;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;601;EU.308.16;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Ethnic Pashtun from Baghlan Province. Believed to be in Afghanistan/Pakistan border area. Speaks fluent English, Urdu and Arabic. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427425);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1136 (id-National identification card) ((Afghan national identification card (tazkira)).);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;AF;;777;EN;(Afghan national identification card (tazkira)).;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;601;EU.308.16;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Ethnic Pashtun from Baghlan Province. Believed to be in Afghanistan/Pakistan border area. Speaks fluent English, Urdu and Arabic. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427425);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101817;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF +28/10/2022;602;EU.321.36;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Cousin of Moulavi Noor Jalal. Grandfather's name is Salam.\nBelieved to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1493752);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Hidayatullah;Najibullah;Haqqani;Najibullah Haqqani Hidayatullah;;;Maulavi;Deputy Minister of Finance of the Taliban regime;5938;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;602;EU.321.36;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Cousin of Moulavi Noor Jalal. Grandfather's name is Salam.\nBelieved to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1493752);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Najibullah Haqani;;;;;101824;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;602;EU.321.36;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Cousin of Moulavi Noor Jalal. Grandfather's name is Salam.\nBelieved to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1493752);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971;;;NO;GREGORIAN;;;;Moni village, Shigal District, Kunar Province;AF;AFGHANISTAN;1845;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;602;EU.321.36;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Cousin of Moulavi Noor Jalal. Grandfather's name is Salam.\nBelieved to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1493752);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;545167 (id-National identification card) (afghan national identification card (tazkira), issued in 1974);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;AF;;896;EN;afghan national identification card (tazkira), issued in 1974;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;; +28/10/2022;602;EU.321.36;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Cousin of Moulavi Noor Jalal. Grandfather's name is Salam.\nBelieved to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1493752);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101821;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;603;EU.341.63;;;;(A close associate of Mullah Mohammed Omar.\nBelongs to Kakar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1427207);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Akhund;Mohammad;Hassan;Mohammad Hassan Akhund;;;(a) Mullah, (b) Haji.;(a) First Deputy, Council of Ministers under the Taliban regime, (b) Foreign Minister under the Taliban regime, (c) Governor of Kandahar under the Taliban regime, (d) Political Advisor of Mullah Mohammed Omar.;5895;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;603;EU.341.63;;;;(A close associate of Mullah Mohammed Omar.\nBelongs to Kakar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1427207);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955;1958;YES;GREGORIAN;;;;Pashmul village, Panjwai District, Kandahar Province;AF;AFGHANISTAN;740;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;603;EU.341.63;;;;(A close associate of Mullah Mohammed Omar.\nBelongs to Kakar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1427207);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1945;1950;YES;GREGORIAN;;;;Pashmul village, Panjwai District, Kandahar Province;AF;AFGHANISTAN;1817;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;603;EU.341.63;;;;(A close associate of Mullah Mohammed Omar.\nBelongs to Kakar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1427207);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101826;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;604;EU.3851.78;;2001-10-17;;(Date of UN designation: 2001-10-17)\n(Father's name is Mohammad Hijazi. Mother's name is Sakina.);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;Hijazi;Raed M.;;Raed M. Hijazi;;;;;1376;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;604;EU.3851.78;;2001-10-17;;(Date of UN designation: 2001-10-17)\n(Father's name is Mohammad Hijazi. Mother's name is Sakina.);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;Abu- Ahmad Al-Hawen;;;;;1377;EN;;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;604;EU.3851.78;;2001-10-17;;(Date of UN designation: 2001-10-17)\n(Father's name is Mohammad Hijazi. Mother's name is Sakina.);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;Rashid Al-Maghribi (the Moroccan);;;;;1378;EN;;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;604;EU.3851.78;;2001-10-17;;(Date of UN designation: 2001-10-17)\n(Father's name is Mohammad Hijazi. Mother's name is Sakina.);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;Abu-Ahmad Al-Amriki (the American);;;;;1379;EN;;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;604;EU.3851.78;;2001-10-17;;(Date of UN designation: 2001-10-17)\n(Father's name is Mohammad Hijazi. Mother's name is Sakina.);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;Abu-Ahmad Al-Shahid;;;;;1380;EN;;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;604;EU.3851.78;;2001-10-17;;(Date of UN designation: 2001-10-17)\n(Father's name is Mohammad Hijazi. Mother's name is Sakina.);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;Raed Muhammad Hasan Muhammad Hijazi;;;;;12570;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;604;EU.3851.78;;2001-10-17;;(Date of UN designation: 2001-10-17)\n(Father's name is Mohammad Hijazi. Mother's name is Sakina.);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;Hijazi;Ri'ad;Muhammad Hasan Muhammad;Ri'ad Muhammad Hasan Muhammad Hijazi;;M;;;12727;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;604;EU.3851.78;;2001-10-17;;(Date of UN designation: 2001-10-17)\n(Father's name is Mohammad Hijazi. Mother's name is Sakina.);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(United States Social Security Number 548-91-5411.);JO;JORDAN;210;EN;United States Social Security Number 548-91-5411.;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;604;EU.3851.78;;2001-10-17;;(Date of UN designation: 2001-10-17)\n(Father's name is Mohammad Hijazi. Mother's name is Sakina.);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-12-30;30;12;1968;;;NO;GREGORIAN;;;;California;US;UNITED STATES;253;EN;;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;604;EU.3851.78;;2001-10-17;;(Date of UN designation: 2001-10-17)\n(Father's name is Mohammad Hijazi. Mother's name is Sakina.);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9681029476 (id-National identification card) (National identification No: Jordanian national number 9681029476.);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;JO;;80;EN;National identification No: Jordanian national number 9681029476.;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;; +28/10/2022;604;EU.3851.78;;2001-10-17;;(Date of UN designation: 2001-10-17)\n(Father's name is Mohammad Hijazi. Mother's name is Sakina.);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;548-91-5411 (ssn-Social Security Number) (united states social security number:);NO;NO;NO;NO;NO;;;;;;;ssn;Social Security Number;;US;;590;EN;united states social security number:;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;; +28/10/2022;604;EU.3851.78;;2001-10-17;;(Date of UN designation: 2001-10-17)\n(Father's name is Mohammad Hijazi. Mother's name is Sakina.);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;JO;;144;EN;;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF +28/10/2022;604;EU.3851.78;;2001-10-17;;(Date of UN designation: 2001-10-17)\n(Father's name is Mohammad Hijazi. Mother's name is Sakina.);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;US;;111644;EN;;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN +28/10/2022;607;EU.361.90;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494052);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Rahman Ahmad Hottak;;;Maulavi;(a) Deputy (Cultural) Minister of Information and Culture under the Taliban regime, (b) Head of Consular Department of Ministry of Foreign Affairs under the Taliban regime.;1383;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;607;EU.361.90;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494052);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Hottak Sahib;;;;;5905;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;607;EU.361.90;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494052);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;YES;GREGORIAN;;;;Ghazni province;AF;AFGHANISTAN;101864;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;607;EU.361.90;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494052);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101865;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;614;EU.301.9;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Hottak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427437);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Jabar;;;;;15990;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;614;EU.301.9;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Hottak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427437);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Muawin Jabbar;;;;;15991;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;614;EU.301.9;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Hottak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427437);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Omari;Abdul Jabbar;;Abdul Jabbar Omari;;;Maulavi;Governor of Baghlan Province (Afghanistan) under the Taliban regime;101870;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;614;EU.301.9;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Hottak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427437);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;YES;GREGORIAN;;;;Zabul Province;AF;AFGHANISTAN;996;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;614;EU.301.9;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Belongs to Hottak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427437);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101869;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;616;EU.320.35;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Alizai tribe. Brother of Atiqullah Wali Mohammad. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427402);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Akhter Mohmad;;;;;16017;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;616;EU.320.35;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Alizai tribe. Brother of Atiqullah Wali Mohammad. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427402);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Gulab Gul;;;;;18298;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;616;EU.320.35;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Alizai tribe. Brother of Atiqullah Wali Mohammad. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427402);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqqani;Abdul Jalil;;Abdul Jalil Haqqani;;;Mullah;;101876;EN;;amendment;commission;2013-03-22;2013-03-21;261/2013 (OJ L82);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:082:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;616;EU.320.35;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Alizai tribe. Brother of Atiqullah Wali Mohammad. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427402);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Nazar Jan;;;;;101877;EN;;amendment;commission;2013-03-22;2013-03-21;261/2013 (OJ L82);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:082:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;616;EU.320.35;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Alizai tribe. Brother of Atiqullah Wali Mohammad. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427402);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Akhund;Abdul Jalil;;Abdul Jalil Akhund;;;;;101878;EN;;amendment;commission;2013-03-22;2013-03-21;261/2013 (OJ L82);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:082:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;616;EU.320.35;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Alizai tribe. Brother of Atiqullah Wali Mohammad. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427402);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Jalil Haqqani Wali Mohammad;;;(a) Maulavi, (b) Mullah;Deputy Minister of Foreign Affairs under the Taliban regime.;111251;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;616;EU.320.35;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Alizai tribe. Brother of Atiqullah Wali Mohammad. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427402);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Khwaja Malik village, Arghandab district, Kandahar province;AF;AFGHANISTAN;919;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;616;EU.320.35;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Alizai tribe. Brother of Atiqullah Wali Mohammad. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427402);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Kandahar City, Kandahar Province;AF;AFGHANISTAN;101872;EN;;amendment;commission;2013-03-22;2013-03-21;261/2013 (OJ L82);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:082:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;616;EU.320.35;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Alizai tribe. Brother of Atiqullah Wali Mohammad. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427402);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OR 1961825 (other-Other identification number) (valid from 2003-02-04 to 2006-02-02)[known to be expired](issued under the name Akhter Mohmad, son of noor mohmad, born in 1965 in kandahar) issued on 4.2.2003 by the afghan consulate in quetta, pakistan, expired 2.2.2006);NO;YES;NO;NO;NO;;;2003-02-04;2006-02-02;;;other;Other identification number;;AF;;776;EN;issued under the name Akhter Mohmad, son of noor mohmad, born in 1965 in kandahar) issued on 4.2.2003 by the afghan consulate in quetta, pakistan, expired 2.2.2006;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;616;EU.320.35;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Alizai tribe. Brother of Atiqullah Wali Mohammad. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427402);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TR024417 (passport-National passport) (valid from 2003-12-20 to 2006-12-29)[known to be expired](passport number issued under the name Haji Gulab Gul);NO;YES;NO;NO;NO;;;2003-12-20;2006-12-29;;;passport;National passport;;AF;;894;EN;passport number issued under the name Haji Gulab Gul;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;616;EU.320.35;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Alizai tribe. Brother of Atiqullah Wali Mohammad. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/1427402);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101873;EN;;amendment;commission;2013-03-22;2013-03-21;261/2013 (OJ L82);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:082:0018:0020:EN:PDF +28/10/2022;618;EU.339.9;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427404);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Qudratullah Jamal;;;Maulavi;Minister of Information under the Taliban regime;1398;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;618;EU.339.9;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427404);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Sahib;;;;;101883;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;618;EU.339.9;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427404);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Gardez, Paktia province;AF;AFGHANISTAN;101880;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;618;EU.339.9;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427404);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101881;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;619;EU.340.62;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4706028);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Akhunzada;Ahmad Jan;;Ahmad Jan Akhunzada;;;;;7779;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;619;EU.340.62;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4706028);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ahmad Jan Akhund Zada;;;;;101888;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;619;EU.340.62;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4706028);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ahmad Jan Akhundzada Shukoor Akhundzada;;;(a) Maulavi, (b) Mullah;Governor of Zabol and Uruzgan Provinces under the Taliban regime.;111132;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;619;EU.340.62;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4706028);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;1967;YES;GREGORIAN;;;;Lablan village, Dehrawood District, Uruzgan Province;AF;AFGHANISTAN;977;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;619;EU.340.62;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4706028);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;1967;YES;GREGORIAN;;;;Zurmat District, Paktia Province;AF;AFGHANISTAN;1822;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;619;EU.340.62;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4706028);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101885;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;620;EU.358.35;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1428048 9.3.2017 L 63/22 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Janan Agha;;;Mullah;Governor of Fariab Province under the Taliban regime.;1401;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;620;EU.358.35;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1428048 9.3.2017 L 63/22 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdullah Jan Agha;;;;;17574;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;620;EU.358.35;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1428048 9.3.2017 L 63/22 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;YES;GREGORIAN;;Uruzgan province;;Tirin Kot city;AF;AFGHANISTAN;970;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;620;EU.358.35;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1428048 9.3.2017 L 63/22 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;YES;GREGORIAN;;Uruzgan province;;Tirin Kot city;AF;AFGHANISTAN;1798;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;620;EU.358.35;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Sadat ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1428048 9.3.2017 L 63/22 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101891;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;623;EU.449.72;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Family is originally from Neka District, Paktia Province, Afghanistan.\nBelongs to Zadran tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1493564);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Kabir Abdul;;;Maulavi;Second Deputy;1409;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;623;EU.449.72;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Family is originally from Neka District, Paktia Province, Afghanistan.\nBelongs to Zadran tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1493564);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;A. Kabir;;;;;5961;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;623;EU.449.72;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Family is originally from Neka District, Paktia Province, Afghanistan.\nBelongs to Zadran tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1493564);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Mohammad Jan;Abdul Kabir;;Abdul Kabir Mohammad Jan;;;Maulavi;(a) Second Deputy, Economic Affairs, Council of Ministers under the Taliban regime, (b) Governor of Nangarhar Province under the Taliban regime, (c) Head of Eastern Zone under the Taliban regime.;101898;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;623;EU.449.72;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Family is originally from Neka District, Paktia Province, Afghanistan.\nBelongs to Zadran tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1493564);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;Baghlan Province;Pul-e-Khumri or Baghlan Jadid District;;AF;AFGHANISTAN;1860;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;623;EU.449.72;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Family is originally from Neka District, Paktia Province, Afghanistan.\nBelongs to Zadran tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1493564);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101894;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;625;EU.364.93;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Suleimankheil tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/144605);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Kakazada;Rahmatullah;;Rahmatullah Kakazada;;;(a) Maulavi, (b) Mullah;Consul General, Taliban Consulate General, Karachi, Pakistan;1416;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;625;EU.364.93;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Suleimankheil tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/144605);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Rehmatullah;;;;;101904;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;625;EU.364.93;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Suleimankheil tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/144605);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Kakazada;;;;;101905;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;625;EU.364.93;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Suleimankheil tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/144605);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Nasir;;;;;101906;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;625;EU.364.93;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Suleimankheil tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/144605);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;NO;GREGORIAN;;;;Zurmat District, Paktia Province;AF;AFGHANISTAN;816;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;625;EU.364.93;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Suleimankheil tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/144605);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D 000952 (passport-National passport) (valid from 1999-01-07);NO;NO;NO;NO;NO;;;1999-01-07;;;;passport;National passport;;AF;;201;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;625;EU.364.93;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Suleimankheil tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/144605);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101901;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF +28/10/2022;626;EU.309.17;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427436);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Khairullah Khairkhwah;;;;;16037;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;626;EU.309.17;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427436);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Khirullah Said Wali Khairkhwa;;;;;16038;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;626;EU.309.17;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427436);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Khairkhwah;Khairullah;;Khairullah Khairkhwah;;;(a) Maulavi, (b) Mullah;(a) Governor of Herat Province (Afghanistan) under the Taliban regime, (b) Spokesperson of the Taliban regime, (c) Governor of Kabul Province under the Taliban regime, (d) Minister of Internal Affairs under the Taliban regime.;101910;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;626;EU.309.17;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427436);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;QA;QATAR;2577;EN;;amendment;council;2016-09-30;2016-09-30;2016/1736 (OJ L264);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1736&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;626;EU.309.17;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427436);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Poti village, Arghistan district, Kandahar province;AF;AFGHANISTAN;983;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;626;EU.309.17;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427436);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101909;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;630;EU.344.66;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Alizai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010.\nPicture available for inclusion in the INTERPOL-UN Security Council Special Notice.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5039466);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Jan Mohammad Madani Ikram;;M;Maulavi;Chargé d'Affaires, Taliban Embassy, Abu Dhabi, United Arab Emirates.;1425;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;630;EU.344.66;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Alizai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010.\nPicture available for inclusion in the INTERPOL-UN Security Council Special Notice.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5039466);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954;1955;NO;GREGORIAN;;;;Siyachoy village, Panjwai District, Kandahar Province;AF;AFGHANISTAN;1857;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;630;EU.344.66;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Alizai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010.\nPicture available for inclusion in the INTERPOL-UN Security Council Special Notice.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5039466);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101915;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;631;EU.345.67;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in the Gulf region. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494026);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Diya’ al-Rahman Madani;;;;;16045;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;631;EU.345.67;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in the Gulf region. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494026);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Madani;Zia-ur-Rahman;;Zia-ur-Rahman Madani;;;Maulavi;Governor of Logar Province (Afghanistan) under the Taliban regime;101919;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;631;EU.345.67;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in the Gulf region. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494026);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Madani;Ziaurrahman;;Ziaurrahman Madani;;;;;101920;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;631;EU.345.67;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in the Gulf region. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494026);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Madani;Zaia u Rahman;;Zaia u Rahman Madani;;;;;101921;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;631;EU.345.67;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in the Gulf region. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494026);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Madani Saheb;;;;;101922;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;631;EU.345.67;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in the Gulf region. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494026);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;YES;GREGORIAN;;;;Taluqan City, Takhar province;AF;AFGHANISTAN;942;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;631;EU.345.67;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in the Gulf region. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494026);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;YES;GREGORIAN;;;;Paliran village, Namakab District, Takhar Province;AF;AFGHANISTAN;2067;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;631;EU.345.67;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in the Gulf region. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494026);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101918;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;640;EU.365.94;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;Mahmood, Sultan Bashir-Ud-Din;;M;;;1431;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;640;EU.365.94;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;Mahmood, Sultan Bashiruddin;;;;;1432;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;640;EU.365.94;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;Mehmood, Bashir Uddin;;;Dr.;;1433;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;640;EU.365.94;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;Mekmud, Sultan Baishiruddin;;;;;1434;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;640;EU.365.94;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;Kabul;Street 13, Wazir Akbar Khan;;;;;NO;;AF;AFGHANISTAN;222;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;640;EU.365.94;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1937;;;NO;GREGORIAN;;;;;00;UNKNOWN;266;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;640;EU.365.94;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1938;;;NO;GREGORIAN;;;;;00;UNKNOWN;267;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;640;EU.365.94;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1939;;;NO;GREGORIAN;;;;;00;UNKNOWN;268;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;640;EU.365.94;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1940;;;NO;GREGORIAN;;;;;00;UNKNOWN;269;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;640;EU.365.94;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1941;;;NO;GREGORIAN;;;;;00;UNKNOWN;270;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;640;EU.365.94;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1942;;;NO;GREGORIAN;;;;;00;UNKNOWN;271;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;640;EU.365.94;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1943;;;NO;GREGORIAN;;;;;00;UNKNOWN;272;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;640;EU.365.94;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944;;;NO;GREGORIAN;;;;;00;UNKNOWN;273;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;640;EU.365.94;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1945;;;NO;GREGORIAN;;;;;00;UNKNOWN;274;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;640;EU.365.94;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;86;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF +28/10/2022;641;EU.366.95;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;Majeed, Abdul;;;;;1435;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;641;EU.366.95;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;Majeed Chaudhry Abdul;;;;;1436;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;641;EU.366.95;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;Majid, Abdul;;;;;1437;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;641;EU.366.95;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1939-04-15;15;4;1939;;;NO;GREGORIAN;;;;;00;UNKNOWN;275;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;641;EU.366.95;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1938;;;NO;GREGORIAN;;;;;00;UNKNOWN;276;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;641;EU.366.95;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;87;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF +28/10/2022;642;EU.290.80;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Makhtab Al-Khidamat;;;;;1438;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;642;EU.290.80;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al Kifah;;;;;1440;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;642;EU.290.80;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;MAK;;;;;7336;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;643;EU.327.42;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4652765);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Manan Mohammad Ishak;;M;Maulavi;(a) First Secretary, Taliban Embassy, Riyadh, Saudi Arabia, (b) Commercial Attaché, Taliban Embassy, Abu Dhabi, United Arab Emirates.;1441;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;643;EU.327.42;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4652765);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1940;1941;NO;GREGORIAN;;;;Siyachoy village, Panjwai District, Kandahar Province;AF;AFGHANISTAN;1796;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;643;EU.327.42;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4652765);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101923;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;644;EU.328.43;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Active in the provinces of Khost, Paktia and Paktika, Afghanistan as of May 2007. Taliban ‘Governor’ of Kandahar as of May 2007. Deputy to Mullah Abdul Ghani Baradar in the Taliban Supreme Council as of 2009. Taliban official responsible for four southern provinces of Afghanistan.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Ishaqzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. Reportedly killed in May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494260);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Naib Imam;;;;;16006;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;644;EU.328.43;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Active in the provinces of Khost, Paktia and Paktika, Afghanistan as of May 2007. Taliban ‘Governor’ of Kandahar as of May 2007. Deputy to Mullah Abdul Ghani Baradar in the Taliban Supreme Council as of 2009. Taliban official responsible for four southern provinces of Afghanistan.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Ishaqzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. Reportedly killed in May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494260);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Shah Mohammed;Akhtar;Mohammad Mansour;Akhtar Mohammad Mansour Shah Mohammed;;;(a) Maulavi, (b) Mullah;Minister of Civil Aviation and Transportation of the Taliban regime;101928;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;644;EU.328.43;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Active in the provinces of Khost, Paktia and Paktika, Afghanistan as of May 2007. Taliban ‘Governor’ of Kandahar as of May 2007. Deputy to Mullah Abdul Ghani Baradar in the Taliban Supreme Council as of 2009. Taliban official responsible for four southern provinces of Afghanistan.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Ishaqzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. Reportedly killed in May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494260);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Khan Muhammad;Akhtar;Mohammad Mansour;Akhtar Mohammad Mansour Khan Muhammad;;;;;101930;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;644;EU.328.43;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Active in the provinces of Khost, Paktia and Paktika, Afghanistan as of May 2007. Taliban ‘Governor’ of Kandahar as of May 2007. Deputy to Mullah Abdul Ghani Baradar in the Taliban Supreme Council as of 2009. Taliban official responsible for four southern provinces of Afghanistan.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Ishaqzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. Reportedly killed in May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494260);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Akhtar Muhammad Mansoor;;;;;101931;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;644;EU.328.43;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Active in the provinces of Khost, Paktia and Paktika, Afghanistan as of May 2007. Taliban ‘Governor’ of Kandahar as of May 2007. Deputy to Mullah Abdul Ghani Baradar in the Taliban Supreme Council as of 2009. Taliban official responsible for four southern provinces of Afghanistan.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Ishaqzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. Reportedly killed in May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494260);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Akhtar Mohammad Mansoor;;;;;101932;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;644;EU.328.43;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Active in the provinces of Khost, Paktia and Paktika, Afghanistan as of May 2007. Taliban ‘Governor’ of Kandahar as of May 2007. Deputy to Mullah Abdul Ghani Baradar in the Taliban Supreme Council as of 2009. Taliban official responsible for four southern provinces of Afghanistan.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Ishaqzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. Reportedly killed in May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494260);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;YES;GREGORIAN;;;;Band-e-Timur village, Maiwand District, Kandahar Province;AF;AFGHANISTAN;954;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;644;EU.328.43;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Active in the provinces of Khost, Paktia and Paktika, Afghanistan as of May 2007. Taliban ‘Governor’ of Kandahar as of May 2007. Deputy to Mullah Abdul Ghani Baradar in the Taliban Supreme Council as of 2009. Taliban official responsible for four southern provinces of Afghanistan.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Ishaqzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. Reportedly killed in May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494260);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;NO;GREGORIAN;;;;Band-e-Timur village, Maiwand District, Kandahar Province;AF;AFGHANISTAN;1830;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;644;EU.328.43;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Active in the provinces of Khost, Paktia and Paktika, Afghanistan as of May 2007. Taliban ‘Governor’ of Kandahar as of May 2007. Deputy to Mullah Abdul Ghani Baradar in the Taliban Supreme Council as of 2009. Taliban official responsible for four southern provinces of Afghanistan.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Ishaqzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. Reportedly killed in May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494260);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SE-011697 (passport-National passport) (valid from 1988-01-25 to 2000-02-23)[known to be expired](afghan passport number issued on 25 jan. 1988 in kabul, expired on 23 feb. 2000);NO;YES;NO;NO;NO;;;1988-01-25;2000-02-23;;;passport;National passport;;AF;;771;EN;afghan passport number issued on 25 jan. 1988 in kabul, expired on 23 feb. 2000;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;644;EU.328.43;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Active in the provinces of Khost, Paktia and Paktika, Afghanistan as of May 2007. Taliban ‘Governor’ of Kandahar as of May 2007. Deputy to Mullah Abdul Ghani Baradar in the Taliban Supreme Council as of 2009. Taliban official responsible for four southern provinces of Afghanistan.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Ishaqzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. Reportedly killed in May 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1494260);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101927;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;647;EU.754.35;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Taliban Shadow Governor for Logar Province as of late 2012. Believed to be in Afghanistan/ Pakistan border area. Belongs to Sahak tribe (Ghilzai). Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427385);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Latif Mansur;;;Maulavi;Minister of Agriculture under the Taliban regime.;1447;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;647;EU.754.35;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Taliban Shadow Governor for Logar Province as of late 2012. Believed to be in Afghanistan/ Pakistan border area. Belongs to Sahak tribe (Ghilzai). Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427385);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Wali Mohammad;;;;;16046;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;647;EU.754.35;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Taliban Shadow Governor for Logar Province as of late 2012. Believed to be in Afghanistan/ Pakistan border area. Belongs to Sahak tribe (Ghilzai). Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427385);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Mansoor;Abdul Latif;;Abdul Latif Mansoor;;;;;101936;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;647;EU.754.35;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Taliban Shadow Governor for Logar Province as of late 2012. Believed to be in Afghanistan/ Pakistan border area. Belongs to Sahak tribe (Ghilzai). Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427385);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;;;Garda Saray District, Paktia Province;AF;AFGHANISTAN;1858;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;647;EU.754.35;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Taliban Shadow Governor for Logar Province as of late 2012. Believed to be in Afghanistan/ Pakistan border area. Belongs to Sahak tribe (Ghilzai). Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427385);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;;;Zurmat district, Paktia province;AF;AFGHANISTAN;101933;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;647;EU.754.35;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Taliban Shadow Governor for Logar Province as of late 2012. Believed to be in Afghanistan/ Pakistan border area. Belongs to Sahak tribe (Ghilzai). Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427385);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101934;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;648;EU.755.36;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Lost one leg in 1980s.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Isakzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4665126);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammadullah Mati;;;Maulavi;Minister of Public Works under the Taliban regime.;1448;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;648;EU.755.36;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Lost one leg in 1980s.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Isakzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4665126);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Nanai;Mawlawi;;Mawlawi Nanai;;;;;16047;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;648;EU.755.36;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Lost one leg in 1980s.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Isakzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4665126);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;YES;GREGORIAN;;;;Arghandab district, Kandahar province;AF;AFGHANISTAN;101937;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;648;EU.755.36;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Lost one leg in 1980s.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Isakzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4665126);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101938;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;649;EU.768.4;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427413);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Matiullah;;;Mullah;Director, Kabul Custom House under the Taliban regime;101942;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;649;EU.768.4;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427413);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;YES;GREGORIAN;;;;Daman district, Kandahar province;AF;AFGHANISTAN;101940;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;649;EU.768.4;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427413);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101941;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN +28/10/2022;650;EU.800.13;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4707186);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Fazl;Molah;;Molah Fazl;;;;;7345;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;650;EU.800.13;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4707186);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Mazloom;Fazl Mohammad;;Fazl Mohammad Mazloom;;;Mullah;Deputy Chief of Army Staff of the Taliban regime;101945;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;650;EU.800.13;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4707186);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Mazloom;Fazel Mohammad;;Fazel Mohammad Mazloom;;;;;101947;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;650;EU.800.13;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4707186);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;QA;QATAR;2576;EN;;amendment;council;2016-09-30;2016-09-30;2016/1736 (OJ L264);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1736&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;650;EU.800.13;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4707186);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;1968;YES;GREGORIAN;;;;Uruzgan;AF;AFGHANISTAN;101943;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;650;EU.800.13;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4707186);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101944;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF +28/10/2022;651;EU.801.14;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1446044);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Quddus Mazhari;;;Maulavi;Education Attaché, Taliban Consulate General, Peshawar, Pakistan.;1451;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;651;EU.801.14;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1446044);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Maz-hari;Akhtar;Mohammad;Akhtar Mohammad Maz-hari;;;;;16048;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;651;EU.801.14;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1446044);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Kabul;Kushal Khan Mena, District Number 5;;;;;NO;;AF;AFGHANISTAN;2272;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;651;EU.801.14;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1446044);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;;;NO;GREGORIAN;;;;Kunduz Province;AF;AFGHANISTAN;814;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;651;EU.801.14;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1446044);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SE 012820 (passport-National passport) (valid from 2000-11-04);NO;NO;NO;NO;NO;;;2000-11-04;;;;passport;National passport;;AF;;200;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;651;EU.801.14;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1446044);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101949;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;652;EU.807.20;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Associated with Mullah Jalil Haqqani. Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4662447);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Dost Mohammad;;;(a) Mullah, (b) Maulavi;Governor of Ghazni Province under the Taliban regime;101954;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;652;EU.807.20;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Associated with Mullah Jalil Haqqani. Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4662447);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Doost Mohammad;;;;;101956;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;652;EU.807.20;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Associated with Mullah Jalil Haqqani. Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4662447);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;1973;YES;GREGORIAN;;;;Nawi Deh village, Daman district, Kandahar province;AF;AFGHANISTAN;930;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;652;EU.807.20;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Associated with Mullah Jalil Haqqani. Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4662447);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;1973;YES;GREGORIAN;;;;Marghankecha village, Daman District, Kandahar Province;AF;AFGHANISTAN;2068;EN;between 1968 and 1973;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;652;EU.807.20;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Associated with Mullah Jalil Haqqani. Believed to be in Afghanistan/Pakistan border area. Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4662447);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101953;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;653;EU.839.14;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Confirmed assassinated by Taliban on 9 November 2008.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665167);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Nazar Mohammad;;;;;1453;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;653;EU.839.14;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Confirmed assassinated by Taliban on 9 November 2008.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665167);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Nazir Mohammad Abdul Basir;;;a) Maulavi, b) Sar Muallim;(a) Mayor of Kunduz City, (b) Acting Governor of Kunduz Province (Afghanistan) under the Taliban regime;16249;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;653;EU.839.14;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Confirmed assassinated by Taliban on 9 November 2008.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665167);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954;;;NO;GREGORIAN;;;;Malaghi Village, Kunduz District, Kunduz Province;AF;AFGHANISTAN;1908;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;653;EU.839.14;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Confirmed assassinated by Taliban on 9 November 2008.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665167);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101957;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF +28/10/2022;654;EU.666.1;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/5039745);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Nik Mohammad;;;Maulavi;Deputy Minister of Commerce under the Taliban regime;1454;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;654;EU.666.1;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/5039745);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Nik Mohammad Dost Mohammad;;;;;16881;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;654;EU.666.1;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/5039745);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;YES;GREGORIAN;;;;Zangi Abad village, Panjwai District, Kandahar Province;AF;AFGHANISTAN;1806;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;654;EU.666.1;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/5039745);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101959;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;655;EU.694.88;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;Mohammad Qari Din;;;;Minister of Higher Education;1456;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;656;EU.695.89;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427517);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Mohammadi;Mohammad Shafiq;;Mohammad Shafiq Mohammadi;;;Maulavi;(a) Governor of Khost Province (Afghanistan) under the Taliban regime, (b) Governor General of Paktia, Paktika, Khost and Ghazni Provinces under the Taliban regime.;101963;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;656;EU.695.89;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427517);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948;;;YES;GREGORIAN;;Uruzgan province;Tirin Kot District;Uruzgan province;AF;AFGHANISTAN;987;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;656;EU.695.89;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427517);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101962;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;659;EU.745.71;;2001-01-25;;(Date of UN designation: 2001-01-25);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Motaqi Amir Khan;;;Mullah;a) Minister of Education under the Taliban regime, (b) Taliban representative in UN-led talks under the Taliban regime.;1460;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;659;EU.745.71;;2001-01-25;;(Date of UN designation: 2001-01-25);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Motaqi;Amir Khan;;Amir Khan Motaqi;;;;Taliban representative in UN-led talks during the Taliban regime;6055;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;659;EU.745.71;;2001-01-25;;(Date of UN designation: 2001-01-25);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Muttaqi;Amir Khan;;Amir Khan Muttaqi;;;;;101968;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;659;EU.745.71;;2001-01-25;;(Date of UN designation: 2001-01-25);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;;;Zurmat District, Paktia Province;AF;AFGHANISTAN;990;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;659;EU.745.71;;2001-01-25;;(Date of UN designation: 2001-01-25);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;;;Shin Kalai village, Nad-e-Ali District, Helmand Province;AF;AFGHANISTAN;1863;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;659;EU.745.71;;2001-01-25;;(Date of UN designation: 2001-01-25);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101965;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;661;EU.736.10;;2001-02-23;;(Date of UN designation: 2001-02-23);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Motmaen Abdulhai;;;;;1462;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;661;EU.736.10;;2001-02-23;;(Date of UN designation: 2001-02-23);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Motmaen;Abdulhai;;Abdulhai Motmaen;;;Maulavi;(a) Director of the Information and Culture Department in Kandahar Province under the Taliban regime, (b) Spokesperson of the Taliban regime.;16051;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;661;EU.736.10;;2001-02-23;;(Date of UN designation: 2001-02-23);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Haq;;;;;18299;EN;Abdul Haq son of M. Anwar Khan;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;661;EU.736.10;;2001-02-23;;(Date of UN designation: 2001-02-23);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;YES;GREGORIAN;;;;Zabul province;AF;AFGHANISTAN;991;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;661;EU.736.10;;2001-02-23;;(Date of UN designation: 2001-02-23);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;YES;GREGORIAN;;;;Shinkalai village, Nad-e-Ali District, Helmand Province;AF;AFGHANISTAN;1864;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;661;EU.736.10;;2001-02-23;;(Date of UN designation: 2001-02-23);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA462456 (passport-National passport) (valid from 2012-01-31)(afghan passport issued under the name abdul haq son of m. anwar khan) issued on 31.1.2012 (11-11-1390).);NO;NO;NO;NO;NO;;;2012-01-31;;;;passport;National passport;;AF;;895;EN;afghan passport issued under the name abdul haq son of m. anwar khan) issued on 31.1.2012 (11-11-1390).;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;661;EU.736.10;;2001-02-23;;(Date of UN designation: 2001-02-23);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101970;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;669;EU.793.88;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Baloch ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446048);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;al-Hammad;;;;;16014;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;669;EU.793.88;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Baloch ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446048);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdullah Hamad Mohammad Karim;;;Maulavi;Consul General, Taliban Consulate General, Quetta, Pakistan;101976;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;669;EU.793.88;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Baloch ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446048);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;NO;GREGORIAN;;;;Darweshan village, Hazar Juft area, Garmser District, Helmand Province;AF;AFGHANISTAN;101972;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;669;EU.793.88;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Baloch ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446048);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D 00857 (passport-National passport) (valid from 1997-11-20)((issued on 20.11.1997).);NO;NO;NO;NO;NO;;;1997-11-20;;;;passport;National passport;;AF;;101974;EN;(issued on 20.11.1997).;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;669;EU.793.88;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Baloch ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446048);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300786 (id-National identification card) ((Afghan national identification card (tazkira)).);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;AF;;101975;EN;(Afghan national identification card (tazkira)).;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;669;EU.793.88;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Baloch ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446048);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;101973;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;676;EU.796.91;;;;;P;person;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;Muttaqi Amir Khan;;;;Taliban representative in UN-led talks;1500;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Khudaidad;Mohammad;Naim Barich;Mohammad Naim Barich Khudaidad;;;Mullah;Deputy Minister of Civil Aviation under the Taliban regime;1510;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Naeem Baraich;;;;;15972;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Naimullah;;;;;15973;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Naim Bareh;;;;;15974;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammad Naim;;;;;15975;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Naim Barich;;;;;15976;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Naim Barech;;;;;15977;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Naim Barech Akhund;;;;;15978;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Naeem Baric;;;;;15979;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Gul Mohammed Naim Barich;;;;;15980;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Gul Mohammad;;;;;15981;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Ghul Mohammad;;;;;15982;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mawlawi Gul Mohammad;;;;;15983;EN;;amendment;commission;2013-05-17;2013-05-16;451/2013 (OJ L133);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:133:0001:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Naim Berich;;;;;16056;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Gul Mohammad Kamran;;;;;16851;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Spen Zrae;;;;;111225;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Naeem Barech;;;;;111226;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;;;YES;GREGORIAN;;;;Lakhi village, Hazarjuft Area, Garmsir District, Helmand Province;AF;AFGHANISTAN;1801;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;;;YES;GREGORIAN;;;;Laki village, Garmsir District, Helmand Province, Afghanistan;AF;AFGHANISTAN;1802;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;;;YES;GREGORIAN;;;;Lakari village, Garmsir District, Helmand Province;AF;AFGHANISTAN;1803;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;;;YES;GREGORIAN;;;;Darvishan, Garmsir District, Helmand Province;AF;AFGHANISTAN;1804;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;;;YES;GREGORIAN;;;;De Luy Wiyalah village, Garmsir District, Helmand Province;AF;AFGHANISTAN;1805;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;685;EU.769.5;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Barich tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665674);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102014;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;690;EU.702.14;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427573);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Ullah;Najib;;Najib Ullah;;;Maulavi;Consul General, Taliban ‘Consulate General’, Peshawar, Pakistan;102023;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;690;EU.702.14;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427573);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Muhammad Juma;Najibullah;;Najibullah Muhammad Juma;;;Maulavi;;102024;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;690;EU.702.14;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427573);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;NO;GREGORIAN;;;;Zere Kohi area, Shindand District, Farah Province;AF;AFGHANISTAN;1867;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;690;EU.702.14;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427573);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;000737 (passport-National passport) (valid from 1996-10-20);NO;NO;NO;NO;NO;;;1996-10-20;;;;passport;National passport;;AF;;102022;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;690;EU.702.14;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427573);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102021;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;693;EU.705.17;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Member of the Taliban Supreme Council. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427408);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Nomani Hamidullah;;;;;1518;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;693;EU.705.17;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Member of the Taliban Supreme Council. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427408);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Nomani;Hamdullah;;Hamdullah Nomani;;;Maulavi.;(a) Minister of Higher Education under the Taliban regime, (b) Mayor of Kabul City under the Taliban regime.;15984;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;693;EU.705.17;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Member of the Taliban Supreme Council. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427408);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;;;Sipayaw village, Andar District, Ghazni province;AF;AFGHANISTAN;993;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;693;EU.705.17;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Member of the Taliban Supreme Council. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427408);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102028;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;696;EU.697.91;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4665686);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammad Aleem Noorani;;;Mufti;First Secretary, Taliban Consulate General, Karachi, Pakistan.;111227;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;696;EU.697.91;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4665686);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Ghazni Province;AF;AFGHANISTAN;1807;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;696;EU.697.91;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4665686);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102031;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;698;EU.699.93;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Tokhi tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427439);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Noori;Norullah;;Norullah Noori;;;;;15985;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;698;EU.699.93;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Tokhi tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427439);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Nuri;Nurullah;;Nurullah Nuri;;;Maulavi;(a) Governor of Balkh Province (Afghanistan) under the Taliban regime, (b) Head of Northern Zone under the Taliban regime.;102037;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;698;EU.699.93;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Tokhi tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427439);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;QA;QATAR;2578;EN;;amendment;council;2016-09-30;2016-09-30;2016/1736 (OJ L264);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1736&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;698;EU.699.93;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Tokhi tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427439);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-01-01;1;1;1967;;;NO;GREGORIAN;;;;Shahjoe district, Zabul province;AF;AFGHANISTAN;1808;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;698;EU.699.93;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Tokhi tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427439);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;YES;GREGORIAN;;;;Shahjoe district, Zabul province;AF;AFGHANISTAN;102034;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;698;EU.699.93;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Tokhi tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427439);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102035;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;699;EU.746.72;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Nuristani tribe. Reportedly deceased in early 2012. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427427);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Hanafi Sahib;;;;;16011;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;699;EU.746.72;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Nuristani tribe. Reportedly deceased in early 2012. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427427);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Nuristani;Rostam;;Rostam Nuristani;;;;;102041;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;699;EU.746.72;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Nuristani tribe. Reportedly deceased in early 2012. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427427);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Rustum Hanafi Habibullah;;;Maulavi;Deputy Minister of Public Works under the Taliban regime;111247;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;699;EU.746.72;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Nuristani tribe. Reportedly deceased in early 2012. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427427);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Dara Kolum, Do Aab district, Nuristan province;AF;AFGHANISTAN;102038;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;699;EU.746.72;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Nuristani tribe. Reportedly deceased in early 2012. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427427);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102039;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;702;EU.756.37;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Taliban member responsible for Herat, Farah and Nimroz provinces as at mid-2013. Member of the Taliban Supreme Council and Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427440);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Nayazi;Abdul Manan;;Abdul Manan Nayazi;;;;;5968;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;702;EU.756.37;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Taliban member responsible for Herat, Farah and Nimroz provinces as at mid-2013. Member of the Taliban Supreme Council and Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427440);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Nyazi;Abdul Manan;;Abdul Manan Nyazi;;;Mullah;a) Governor of Kabul Province under the Taliban regime, b) Governor of Balk Province under the Taliban regime.;102044;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;702;EU.756.37;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Taliban member responsible for Herat, Farah and Nimroz provinces as at mid-2013. Member of the Taliban Supreme Council and Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427440);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Niazi;Abdul Manan;;Abdul Manan Niazi;;;;;102046;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;702;EU.756.37;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Taliban member responsible for Herat, Farah and Nimroz provinces as at mid-2013. Member of the Taliban Supreme Council and Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427440);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Baryaly;;;;;102047;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;702;EU.756.37;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Taliban member responsible for Herat, Farah and Nimroz provinces as at mid-2013. Member of the Taliban Supreme Council and Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427440);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Baryalai;;;;;102048;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;702;EU.756.37;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Taliban member responsible for Herat, Farah and Nimroz provinces as at mid-2013. Member of the Taliban Supreme Council and Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427440);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;;;Sardar village, Kohsan District, Herat Province;AF;AFGHANISTAN;1809;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;702;EU.756.37;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Taliban member responsible for Herat, Farah and Nimroz provinces as at mid-2013. Member of the Taliban Supreme Council and Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427440);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;;;Pashtoon Zarghoon district, Herat province;AF;AFGHANISTAN;102042;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;702;EU.756.37;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Taliban member responsible for Herat, Farah and Nimroz provinces as at mid-2013. Member of the Taliban Supreme Council and Quetta Shura. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427440);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102043;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;703;EU.792.87;;;;;P;person;amendment;commission;2007-10-24;2007-10-23;1239/2007 (OJ L280);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:280:0011:0021:EN:PDF;Omar;Mohammed;;Mohammed Omar;;;Mullah;Leader of the Faithful (‘Amir ul-Mumineen’), Afghanistan;1528;EN;;amendment;commission;2007-10-24;2007-10-23;1239/2007 (OJ L280);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:280:0011:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;703;EU.792.87;;;;;P;person;amendment;commission;2007-10-24;2007-10-23;1239/2007 (OJ L280);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:280:0011:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;AF;AFGHANISTAN;231;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;703;EU.792.87;;;;;P;person;amendment;commission;2007-10-24;2007-10-23;1239/2007 (OJ L280);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:280:0011:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;YES;GREGORIAN;;;;Adehrawood village, Uruzgan province;AF;AFGHANISTAN;102050;EN;;amendment;commission;2007-10-24;2007-10-23;1239/2007 (OJ L280);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:280:0011:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;703;EU.792.87;;;;;P;person;amendment;commission;2007-10-24;2007-10-23;1239/2007 (OJ L280);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:280:0011:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;476;EN;;amendment;commission;2007-10-24;2007-10-23;1239/2007 (OJ L280);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:280:0011:0021:EN:PDF +28/10/2022;704;EU.833.8;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Brother of Jalaluddin Haqqani Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1428541\n\nMohammad Ibrahim Omari is the brother of Jalaluddin Haqqani and Khalil Ahmed Haqqani, and the uncle of Sirajuddin Jallaloudine Haqqani, Nasiruddin Haqqani and Badruddin Haqqani (deceased).);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqqani;Ibrahim;;Ibrahim Haqqani;;;;;14559;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;704;EU.833.8;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Brother of Jalaluddin Haqqani Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1428541\n\nMohammad Ibrahim Omari is the brother of Jalaluddin Haqqani and Khalil Ahmed Haqqani, and the uncle of Sirajuddin Jallaloudine Haqqani, Nasiruddin Haqqani and Badruddin Haqqani (deceased).);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Omari;Mohammad Ibrahim;;Mohammad Ibrahim Omari;;;Alhaj;Deputy Minister of Frontier Affairs of the Taliban regime;102055;EN;;amendment;commission;2011-10-01;2011-10-01;968/2011 (OJ L257);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:257:0001:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;704;EU.833.8;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Brother of Jalaluddin Haqqani Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1428541\n\nMohammad Ibrahim Omari is the brother of Jalaluddin Haqqani and Khalil Ahmed Haqqani, and the uncle of Sirajuddin Jallaloudine Haqqani, Nasiruddin Haqqani and Badruddin Haqqani (deceased).);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;YES;GREGORIAN;;;;Garda Saray, Waza Zadran District, Paktia Province;AF;AFGHANISTAN;1871;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;704;EU.833.8;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Brother of Jalaluddin Haqqani Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1428541\n\nMohammad Ibrahim Omari is the brother of Jalaluddin Haqqani and Khalil Ahmed Haqqani, and the uncle of Sirajuddin Jallaloudine Haqqani, Nasiruddin Haqqani and Badruddin Haqqani (deceased).);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102054;EN;;amendment;commission;2011-10-01;2011-10-01;968/2011 (OJ L257);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:257:0001:0023:EN:PDF +28/10/2022;706;EU.701.13;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1474039);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Qadeer Basir Abdul Baseer;;;(a) General, (b) Maulavi;Military Attaché, Taliban Embassy, Islamabad, Pakistan;1533;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;706;EU.701.13;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1474039);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Qadir;Abdul;;Abdul Qadir;;;;;5909;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;706;EU.701.13;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1474039);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haji;Ahmad;;Ahmad Haji;;;;;15926;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;706;EU.701.13;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1474039);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqqani;Abdul;Qadir;Abdul Qadir Haqqani;;;;;15927;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;706;EU.701.13;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1474039);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Qadir Basir;;;;;16877;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;706;EU.701.13;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1474039);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;Surkh Rod District, Nangarhar Province;AF;AFGHANISTAN;800;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;706;EU.701.13;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1474039);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;Hisarak District, Nangarhar Province;AF;AFGHANISTAN;1979;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;706;EU.701.13;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1474039);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"D 000974 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;AF;;184;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;; +28/10/2022;706;EU.701.13;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1474039);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102057;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF +28/10/2022;709;EU.775.63;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Tajik ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741515);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Ghafar Qurishi Abdul Ghani;;;Maulavi;Repatriation Attaché Taliban ‘Embassy’ Islamabad, Pakistan.;1535;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;709;EU.775.63;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Tajik ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741515);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Qureshi;Abdul Ghaffar;;Abdul Ghaffar Qureshi;;;;;5978;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;709;EU.775.63;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Tajik ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741515);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Kabul;Khairkhana Section Number 3;;;;;NO;;AF;AFGHANISTAN;2268;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;709;EU.775.63;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Tajik ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741515);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;;;NO;GREGORIAN;;;;Turshut village, Warduj District, Takhar Province;AF;AFGHANISTAN;1820;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;709;EU.775.63;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Tajik ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741515);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;NO;GREGORIAN;;;;Turshut village, Warduj District, Takhar Province;AF;AFGHANISTAN;1821;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;709;EU.775.63;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Tajik ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741515);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55130 (id-National identification card) (Afghan national identification card (tazkira));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;AF;;770;EN;Afghan national identification card (tazkira);amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;709;EU.775.63;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Tajik ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741515);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D 000933 (passport-National passport) (valid from 1998-09-13)(Afghan passport issued in Kabul on 13 Sep. 1998);NO;NO;NO;NO;NO;;;1998-09-13;;;;passport;National passport;;AF;;781;EN;Afghan passport issued in Kabul on 13 Sep. 1998;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;709;EU.775.63;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Tajik ethnic group. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741515);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102063;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;711;EU.813.78;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Member of Taliban Supreme Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1427375);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Yar Mohammad Rahimi;;;Mullah.;Minister of Communication of the Taliban regime.;14038;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;711;EU.813.78;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Member of Taliban Supreme Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1427375);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;YES;GREGORIAN;;;;Talugan village, Panjwai District, Kandahar;AF;AFGHANISTAN;998;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;711;EU.813.78;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Member of Taliban Supreme Council as at 2009. Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1427375);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102067;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF +28/10/2022;716;EU.675.62;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Has a prosthetic right leg.Member of Taliban Supreme Council as of mid-2013, acted as deputy of Mullah Mohammed Omar in Mar. 2010. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. Deceased as of 9 February 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427431);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Hassan;Gud Mullah Mohammad;;Gud Mullah Mohammad Hassan;;;;;16057;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;716;EU.675.62;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Has a prosthetic right leg.Member of Taliban Supreme Council as of mid-2013, acted as deputy of Mullah Mohammed Omar in Mar. 2010. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. Deceased as of 9 February 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427431);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Rahmani;Mohammad Hasan;;Mohammad Hasan Rahmani;;;Mullah;Governor of Kandahar Province (Afghanistan) under the Taliban regime.;102073;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;716;EU.675.62;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Has a prosthetic right leg.Member of Taliban Supreme Council as of mid-2013, acted as deputy of Mullah Mohammed Omar in Mar. 2010. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. Deceased as of 9 February 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427431);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Deh Rawud District, Uruzgan province;AF;AFGHANISTAN;999;EN;;amendment;council;2016-09-30;2016-09-30;2016/1736 (OJ L264);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1736&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;716;EU.675.62;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Has a prosthetic right leg.Member of Taliban Supreme Council as of mid-2013, acted as deputy of Mullah Mohammed Omar in Mar. 2010. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. Deceased as of 9 February 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427431);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Chora District, Uruzgan Province;AF;AFGHANISTAN;1823;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;716;EU.675.62;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Has a prosthetic right leg.Member of Taliban Supreme Council as of mid-2013, acted as deputy of Mullah Mohammed Omar in Mar. 2010. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. Deceased as of 9 February 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427431);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Charchino District, Uruzgan Province;AF;AFGHANISTAN;109768;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;716;EU.675.62;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Has a prosthetic right leg.Member of Taliban Supreme Council as of mid-2013, acted as deputy of Mullah Mohammed Omar in Mar. 2010. Believed to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. Deceased as of 9 February 2016. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427431);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102072;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;717;EU.713.77;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4662451);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammad Rasul Ayyub;;;Maulavi.;Governor of Nimroz Province (Afghanistan) under the Taliban regime.;1544;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;717;EU.713.77;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4662451);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Gurg;;;;;16055;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;717;EU.713.77;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4662451);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;1963;YES;GREGORIAN;;Kandahar province;Robat village;Spin boldak district;AF;AFGHANISTAN;988;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;717;EU.713.77;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Nurzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4662451);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102075;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;719;EU.715.79;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4665146);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Abdul Rauf Aliza;;;;;16031;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;719;EU.715.79;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4665146);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Khadem;Abdul Rauf;;Abdul Rauf Khadem;;;Mullah;Commander of Central Corp under the Taliban regime;102080;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;719;EU.715.79;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4665146);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;1963;YES;GREGORIAN;;;;;00;UNKNOWN;982;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;719;EU.715.79;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4665146);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;;;YES;GREGORIAN;;;;;00;UNKNOWN;1852;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;719;EU.715.79;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4665146);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;Spin Boldak District, Kandahar Province;;AF;AFGHANISTAN;111328;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;719;EU.715.79;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4665146);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;Azan village, Kajaki District, Helmand Province;;AF;AFGHANISTAN;111329;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;719;EU.715.79;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4665146);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102079;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;724;EU.776.64;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Deputy of Mullah Mohammed Omar as at Mar. 2010.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427412);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Lala Akhund;Abdul Razaq;Akhund;Abdul Razaq Akhund Lala Akhund;;;;Chief of Kabul police under the Taliban regime;5948;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;724;EU.776.64;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Deputy of Mullah Mohammed Omar as at Mar. 2010.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427412);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;YES;GREGORIAN;;;;Spin Boldak District, Kandahar Province;AF;AFGHANISTAN;102084;EN;Spin Boldak District, Kandahar Province, Afghanistan, in the area bordering Chaman District, Quetta, Pakistan.;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;724;EU.776.64;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Deputy of Mullah Mohammed Omar as at Mar. 2010.\nBelieved to be in Afghanistan/Pakistan border area. Belongs to Achekzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427412);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;757;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;725;EU.805.18;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Deputy Head (Intelligence) of the Quetta Military Council as of 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678333);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Habibullah Reshad;;;Mullah;Head of Investigation Department, Ministry of Security (Intelligence) under the Taliban regime.;1552;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;725;EU.805.18;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Deputy Head (Intelligence) of the Quetta Military Council as of 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678333);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;1973;YES;GREGORIAN;;;;Waghaz District, Ghazni province;AF;AFGHANISTAN;1000;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;725;EU.805.18;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Deputy Head (Intelligence) of the Quetta Military Council as of 2009. Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678333);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102088;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;727;EU.815.80;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Reportedly deceased. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1446067 9.3.2017 L 63/27 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammad Sadiq Amir Mohammad;;M;(a) Alhaj, (b) Maulavi;Head of Afghan Trade Agency, Peshawar, Pakistan;4860;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;727;EU.815.80;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Reportedly deceased. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1446067 9.3.2017 L 63/27 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1934;;;NO;GREGORIAN;;;;Ghazni Province;AF;AFGHANISTAN;812;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;727;EU.815.80;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Reportedly deceased. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1446067 9.3.2017 L 63/27 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1934;;;NO;GREGORIAN;;;;Logar Province;AF;AFGHANISTAN;1980;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;727;EU.815.80;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Reportedly deceased. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1446067 9.3.2017 L 63/27 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"SE 011252 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;AF;;102093;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;; +28/10/2022;727;EU.815.80;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Reportedly deceased. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1446067 9.3.2017 L 63/27 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102092;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;733;EU.780.23;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Reportedly deceased in North Afghanistan in 1999. Belonged to Wardak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678489);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Salek;Abdulhai;;Abdulhai Salek;;;Maulavi;Governor of Uruzgan Province under the Taliban regime;102100;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;733;EU.780.23;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Reportedly deceased in North Afghanistan in 1999. Belonged to Wardak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678489);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;YES;GREGORIAN;;;;Awlyatak Village, Gardan Masjid Area, Chaki Wardak District, Maidan Wardak Province;AF;AFGHANISTAN;1824;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;733;EU.780.23;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Reportedly deceased in North Afghanistan in 1999. Belonged to Wardak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678489);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102099;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;734;EU.781.24;;2001-02-23;;(Date of UN designation: 2001-02-23);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Sanani;;;Maulavi;Head of Dar-ul-Efta (Fatwa Department) of Supreme Court under the Taliban regime.;1562;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;734;EU.781.24;;2001-02-23;;(Date of UN designation: 2001-02-23);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Sunani;Hamdullah;;Hamdullah Sunani;;;;;112892;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;734;EU.781.24;;2001-02-23;;(Date of UN designation: 2001-02-23);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1923;;;YES;GREGORIAN;;;Dai Chopan District;Zabul province;AF;AFGHANISTAN;1001;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;734;EU.781.24;;2001-02-23;;(Date of UN designation: 2001-02-23);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102102;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;739;EU.818.83;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Member of Taliban Supreme Council and Head of Taliban Religious Committee. Belongs to Ahmadzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427560);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Saqib;Noor Mohammad;;Noor Mohammad Saqib;;;;Chief Justice of Supreme Court under the Taliban regime;102109;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;739;EU.818.83;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Member of Taliban Supreme Council and Head of Taliban Religious Committee. Belongs to Ahmadzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427560);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;YES;GREGORIAN;;;;Tarakhel area, Deh Sabz District, Kabul Province;AF;AFGHANISTAN;1827;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;739;EU.818.83;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Member of Taliban Supreme Council and Head of Taliban Religious Committee. Belongs to Ahmadzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427560);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;YES;GREGORIAN;;;;Bagrami district, Kabul province;AF;AFGHANISTAN;102107;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;739;EU.818.83;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Member of Taliban Supreme Council and Head of Taliban Religious Committee. Belongs to Ahmadzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427560);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102108;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;750;EU.3724.5;;2001-01-25;;(Date of UN designation: 2001-01-25);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Sayf-Al Adl;;;;;1577;EN;;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;750;EU.3724.5;;2001-01-25;;(Date of UN designation: 2001-01-25);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Saif Al-'Adil;;;;;1578;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;750;EU.3724.5;;2001-01-25;;(Date of UN designation: 2001-01-25);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Seif al Adel;;;;;17554;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;750;EU.3724.5;;2001-01-25;;(Date of UN designation: 2001-01-25);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Muhamad Ibrahim Makkawi;;;;;17555;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;750;EU.3724.5;;2001-01-25;;(Date of UN designation: 2001-01-25);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Ibrahim al-Madani;;;;;17556;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;750;EU.3724.5;;2001-01-25;;(Date of UN designation: 2001-01-25);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Mohammed Salahaldin Abd El Halim Zidane;EN;;;;110823;EN;Responsible for Usama bin Laden's (deceased) security. Hair: Dark. Eyes: Dark.;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;750;EU.3724.5;;2001-01-25;;(Date of UN designation: 2001-01-25);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-04-11;11;4;1963;;;NO;GREGORIAN;;Monufia Governate;;;EG;EGYPT;2024;EN;;amendment;commission;2017-02-21;2017-02-22;2017/296 (OJ L43);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0296&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;750;EU.3724.5;;2001-01-25;;(Date of UN designation: 2001-01-25);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-04-11;11;4;1960;;;NO;GREGORIAN;;;;;EG;EGYPT;2025;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;750;EU.3724.5;;2001-01-25;;(Date of UN designation: 2001-01-25);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-04-11;11;4;1963;;;NO;GREGORIAN;;;Monufia Governorate;;EG;EGYPT;110824;EN;;amendment;commission;2017-02-21;2017-02-22;2017/296 (OJ L43);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0296&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;750;EU.3724.5;;2001-01-25;;(Date of UN designation: 2001-01-25);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-04-11;11;4;1960;;;NO;GREGORIAN;;;Monufia Governorate;;EG;EGYPT;119884;EN;;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;750;EU.3724.5;;2001-01-25;;(Date of UN designation: 2001-01-25);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EG;;93;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF +28/10/2022;756;EU.720.39;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Advisor to the Taliban Supreme Council as of mid-2013. Believed to be in Afghanistan/ Pakistan border area. Belongs to Barakzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427433);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Sayyed;Saduddin;;Saduddin Sayyed;;;(a) Maulavi, (b) Alhaj, (c) Mullah;(a) Vice-Minister of Work and Social Affairs under the Taliban regime, (b) Mayor of Kabul City under the Taliban regime.;102122;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;756;EU.720.39;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Advisor to the Taliban Supreme Council as of mid-2013. Believed to be in Afghanistan/ Pakistan border area. Belongs to Barakzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427433);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Sayed;Sadudin;;Sadudin Sayed;;;;;102125;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;756;EU.720.39;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Advisor to the Taliban Supreme Council as of mid-2013. Believed to be in Afghanistan/ Pakistan border area. Belongs to Barakzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427433);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Sadruddin;;;;;102126;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;756;EU.720.39;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Advisor to the Taliban Supreme Council as of mid-2013. Believed to be in Afghanistan/ Pakistan border area. Belongs to Barakzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427433);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;;;Spin Boldak District, Kandahar Province;AF;AFGHANISTAN;1829;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;756;EU.720.39;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Advisor to the Taliban Supreme Council as of mid-2013. Believed to be in Afghanistan/ Pakistan border area. Belongs to Barakzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427433);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;;;Chaman district;PK;PAKISTAN;102121;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;758;EU.706.18;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427520);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Wahed Shafiq;;;Maulavi;Deputy Governor of Kabul Province (Afghanistan) under the Taliban regime.;1586;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;758;EU.706.18;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427520);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;;;Nangarhar province;AF;AFGHANISTAN;1005;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;758;EU.706.18;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427520);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102128;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;760;EU.708.20;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Originally from Ghazni province, but later lived in Uruzgan.\nBelongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4706955);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammad Shafiqullah Ahmadi Fatih Khan;;;Mullah;Governor of Samangan Province (Afghanistan) under the Taliban regime;1588;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;760;EU.708.20;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Originally from Ghazni province, but later lived in Uruzgan.\nBelongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4706955);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammad Shafiq Ahmadi;;;;;16880;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;760;EU.708.20;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Originally from Ghazni province, but later lived in Uruzgan.\nBelongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4706955);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Shafiqullah;;;;;17684;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;760;EU.708.20;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Originally from Ghazni province, but later lived in Uruzgan.\nBelongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4706955);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;1957;NO;GREGORIAN;;;;Marghi village, Nawa District, Ghazni Province;AF;AFGHANISTAN;1910;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;760;EU.708.20;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Originally from Ghazni province, but later lived in Uruzgan.\nBelongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4706955);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;1957;NO;GREGORIAN;;;;Charmistan village, Tirin Kot District, Uruzgan Province;AF;AFGHANISTAN;109675;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;760;EU.708.20;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Originally from Ghazni province, but later lived in Uruzgan.\nBelongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4706955);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102131;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF +28/10/2022;765;EU.760.93;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Member of the Taliban leadership council as of mid-2013. Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427378);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Said Ahmed Shahidkhel;;;Maulavi;Deputy Minister of Education under the Taliban regime.;1592;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;765;EU.760.93;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Member of the Taliban leadership council as of mid-2013. Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427378);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;;;YES;GREGORIAN;;;;Spandeh (Espandi 'Olya) village, Andar District, Ghazni Province;AF;AFGHANISTAN;735;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;765;EU.760.93;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Member of the Taliban leadership council as of mid-2013. Belongs to Andar tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427378);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102137;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;767;EU.803.16;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4707215);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Shams Ur-Rahman Abdul Zahir;;;(a) Mullah, (b) Maulavi;Deputy Minister of Agriculture under the Taliban regime;1595;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;767;EU.803.16;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4707215);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Shamsurrahman;;;;;7772;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;767;EU.803.16;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4707215);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Shamsurrahman Abdurahman;;;;;16009;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;767;EU.803.16;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4707215);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Shams ur-Rahman Sher Alam;;;;;16228;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;767;EU.803.16;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4707215);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Shams-u-Rahman;;;;;102145;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;767;EU.803.16;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4707215);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969;;;NO;GREGORIAN;;;;Waka Uzbin village, Sarobi District, Kabul Province;AF;AFGHANISTAN;1250;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;767;EU.803.16;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4707215);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2132370 (id-National identification card) ((afghan national identification card (tazkira)));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;AF;;798;EN;(afghan national identification card (tazkira));amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;; +28/10/2022;767;EU.803.16;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4707215);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;812673 (id-National identification card) ((afghan national identification card (tazkira)));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;AF;;799;EN;(afghan national identification card (tazkira));amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;; +28/10/2022;767;EU.803.16;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area.\nBelongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4707215);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102141;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;779;EU.777.65;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Safi tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446032);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Ghafar Shinwari;;;Haji.;Third Secretary Taliban ‘Consulate General’ Karachi, Pakistan.;1615;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;779;EU.777.65;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Safi tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446032);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-03-29;29;3;1965;;;NO;GREGORIAN;;;;Nangarhar Province;AF;AFGHANISTAN;807;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;779;EU.777.65;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Safi tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446032);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D 000763 (passport-National passport) (valid from 1997-01-09);NO;NO;NO;NO;NO;;;1997-01-09;;;;passport;National passport;;AF;;193;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;779;EU.777.65;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Safi tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446032);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102159;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;781;EU.779.67;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Mangal tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4665692);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammad Sarwar Siddiqmal;;;;;1618;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;781;EU.779.67;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Mangal tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4665692);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammad Sarwar Siddiqmal Mohammad Masood;;;;Third Secretary, Taliban Embassy, Islamabad, Pakistan;16012;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;781;EU.779.67;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Mangal tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4665692);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;NO;GREGORIAN;;;;Jani Khel District, Paktia Province;AF;AFGHANISTAN;1835;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;781;EU.779.67;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Mangal tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4665692);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19657 (id-National identification card) ((afghan identification card (tazkira));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;AF;;774;EN;(afghan identification card (tazkira);amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;781;EU.779.67;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Mangal tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4665692);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102157;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;786;EU.826.46;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Member of Taliban Supreme Council responsible for Takhar and Badakhshan provinces as at Dec. 2009. Confirmed killed on 17 February in Peshawar, Pakistan and buried in Takhar Province, Afghanistan. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678374);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Takhari;Abdul Raqib;;Abdul Raqib Takhari;;;Maulavi;Minister of Repatriation of the Taliban regime;102164;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;786;EU.826.46;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Member of Taliban Supreme Council responsible for Takhar and Badakhshan provinces as at Dec. 2009. Confirmed killed on 17 February in Peshawar, Pakistan and buried in Takhar Province, Afghanistan. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678374);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;1973;YES;GREGORIAN;;;;Zardalu Darra village, Kalafgan District, Takhar Province;AF;AFGHANISTAN;1010;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;786;EU.826.46;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Member of Taliban Supreme Council responsible for Takhar and Badakhshan provinces as at Dec. 2009. Confirmed killed on 17 February in Peshawar, Pakistan and buried in Takhar Province, Afghanistan. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678374);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102163;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN +28/10/2022;789;EU.665.0;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Ahmed;Tariq;Anwar El-Sayed;Tariq Anwar El-Sayed Ahmed;;M;;;1625;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;789;EU.665.0;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Hamdi Ahmad Farag;;;;;1627;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;789;EU.665.0;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Amr Al-Fatih Fathi;;;;;1628;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;789;EU.665.0;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Tarek Anwar El Sayed Ahmad;;;;;12568;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;789;EU.665.0;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-03-15;15;3;1963;;;NO;GREGORIAN;;;;Alexandria;EG;EGYPT;290;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;789;EU.665.0;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EG;;679;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF +28/10/2022;793;EU.790.85;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Taliban member responsible for Nangarhar Province as at 2011. Believed to be in Afghanistan/Pakistan border area. Belongs to Zadran tribe. Close associate of Sirajuddin Jallaloudine Haqqani. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427521 9.3.2017 L 63/52 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ahmad Taha Khalid Abdul Qadir;;;Maulavi;Governor of Paktia Province (Afghanistan) under the Taliban regime.;1631;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;793;EU.790.85;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Taliban member responsible for Nangarhar Province as at 2011. Believed to be in Afghanistan/Pakistan border area. Belongs to Zadran tribe. Close associate of Sirajuddin Jallaloudine Haqqani. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427521 9.3.2017 L 63/52 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Nangarhar Province;AF;AFGHANISTAN;1009;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;793;EU.790.85;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Taliban member responsible for Nangarhar Province as at 2011. Believed to be in Afghanistan/Pakistan border area. Belongs to Zadran tribe. Close associate of Sirajuddin Jallaloudine Haqqani. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427521 9.3.2017 L 63/52 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Khost Province;AF;AFGHANISTAN;1836;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;793;EU.790.85;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Taliban member responsible for Nangarhar Province as at 2011. Believed to be in Afghanistan/Pakistan border area. Belongs to Zadran tribe. Close associate of Sirajuddin Jallaloudine Haqqani. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427521 9.3.2017 L 63/52 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Siddiq Khel village, Naka District, Paktia Province,;AF;AFGHANISTAN;1837;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;793;EU.790.85;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Taliban member responsible for Nangarhar Province as at 2011. Believed to be in Afghanistan/Pakistan border area. Belongs to Zadran tribe. Close associate of Sirajuddin Jallaloudine Haqqani. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 1 Jun. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427521 9.3.2017 L 63/52 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102166;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;794;EU.791.86;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010.\nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice. Deceased as of November 2015. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427415);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Allah Dad Tayyab;;;Haji;;5965;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;794;EU.791.86;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010.\nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice. Deceased as of November 2015. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427415);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Muhammad;Allah Dad;Tayeb Wali;Allah Dad Tayeb Wali Muhammad;;M;Mullah;Deputy Minister of Communication of the Taliban regime;102170;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;794;EU.791.86;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010.\nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice. Deceased as of November 2015. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427415);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Allah Dad Tabeeb;;;;;102173;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;794;EU.791.86;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010.\nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice. Deceased as of November 2015. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427415);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Ghorak District, Kandahar Province, Afghanistan;AF;AFGHANISTAN;948;EN;;amendment;council;2016-09-30;2016-09-30;2016/1736 (OJ L264);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1736&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;794;EU.791.86;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010.\nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice. Deceased as of November 2015. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427415);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Nesh District, Uruzgan Province;AF;AFGHANISTAN;1800;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;794;EU.791.86;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Belongs to Popalzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010.\nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice. Deceased as of November 2015. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427415);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102169;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;796;EU.831.6;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Tharwat Salah Shihata;;M;;;1634;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;796;EU.831.6;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Tarwat Salah Abdallah;;;;;1635;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;796;EU.831.6;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Salah Shihata Thirwat;;;;;1636;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;796;EU.831.6;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Shahata Thirwat;;;;;1638;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;796;EU.831.6;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;Ali;Tharwat;Salah Shihata;Tharwat Salah Shihata Ali;;;;;8574;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;796;EU.831.6;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-06-29;29;6;1960;;;NO;GREGORIAN;;;;;EG;EGYPT;291;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;796;EU.831.6;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EG;;615;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN +28/10/2022;826;EU.672.59;;;;;P;person;amendment;commission;2011-02-04;2011-02-03;98/2011 (OJ L30);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:030:0029:0030:EN:PDF;Tufail;Mohammed;;Mohammed Tufail;;;;;1668;EN;;amendment;commission;2011-02-04;2011-02-03;98/2011 (OJ L30);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:030:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;826;EU.672.59;;;;;P;person;amendment;commission;2011-02-04;2011-02-03;98/2011 (OJ L30);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:030:0029:0030:EN:PDF;Tufail;S.M;;S.M Tufail;;;;;1669;EN;;amendment;commission;2011-02-04;2011-02-03;98/2011 (OJ L30);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:030:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;826;EU.672.59;;;;;P;person;amendment;commission;2011-02-04;2011-02-03;98/2011 (OJ L30);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:030:0029:0030:EN:PDF;;;;Tufail Sheik Mohammed;;;;;1670;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;826;EU.672.59;;;;;P;person;amendment;commission;2011-02-04;2011-02-03;98/2011 (OJ L30);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:030:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1930-05-05;5;5;1930;;;NO;GREGORIAN;;;;;00;UNKNOWN;1405;EN;;amendment;commission;2011-02-04;2011-02-03;98/2011 (OJ L30);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:030:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;826;EU.672.59;;;;;P;person;amendment;commission;2011-02-04;2011-02-03;98/2011 (OJ L30);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:030:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;95;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF +28/10/2022;829;EU.588.29;;2001-03-08;;(Date of UN designation: 2001-03-08)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529230);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abu Turab;;;;;102185;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;829;EU.588.29;;2001-03-08;;(Date of UN designation: 2001-03-08)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529230);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Hidayatullah;;;;Deputy Minister of Civil Aviation and Tourism under the Taliban regime;111267;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;829;EU.588.29;;2001-03-08;;(Date of UN designation: 2001-03-08)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529230);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;;;Arghandab district, Kandahar province;AF;AFGHANISTAN;102182;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;829;EU.588.29;;2001-03-08;;(Date of UN designation: 2001-03-08)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Ghilzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1529230);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102183;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;831;EU.749.75;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Deputy to Mullah Mohammed Omar. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427426);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Karim;;;;;15994;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;831;EU.749.75;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Deputy to Mullah Mohammed Omar. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427426);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Qasim;Nooruddin;Turabi Muhammad;Nooruddin Turabi Muhammad Qasim;;;a) Mullah, (b) Maulavi.;Minister of Justice of the Taliban regime;102189;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;831;EU.749.75;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Deputy to Mullah Mohammed Omar. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427426);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Noor ud Din Turabi;;;;;102190;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;831;EU.749.75;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Deputy to Mullah Mohammed Omar. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427426);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;;AF;AFGHANISTAN;1011;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;831;EU.749.75;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Deputy to Mullah Mohammed Omar. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427426);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955;;;YES;GREGORIAN;;;;;AF;AFGHANISTAN;1816;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;831;EU.749.75;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Deputy to Mullah Mohammed Omar. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427426);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;;;AF;AFGHANISTAN;1872;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;831;EU.749.75;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Deputy to Mullah Mohammed Omar. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427426);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Dehrawood District, Uruzgan Province;AF;AFGHANISTAN;111228;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;831;EU.749.75;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Deputy to Mullah Mohammed Omar. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427426);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Chora District, Uruzgan Province;AF;AFGHANISTAN;111229;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;831;EU.749.75;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Deputy to Mullah Mohammed Omar. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427426);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Spin Boldak District, Kandahar Province;AF;AFGHANISTAN;111230;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;831;EU.749.75;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Deputy to Mullah Mohammed Omar. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/1427426);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102188;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;832;EU.785.28;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ummah Tameer E-Nau;;;;;1675;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;832;EU.785.28;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Utn;;;;;1676;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;832;EU.785.28;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Kabul;Street 13 Wazir Akbar Khan;;;;;NO;;AF;AFGHANISTAN;232;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;832;EU.785.28;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;PK;PAKISTAN;233;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;Bin Laden;Usama;Muhammed Awad;Usama Muhammed Awad Bin Laden;;M;"Shaykh; Hajj";;1678;EN;;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;Abu Abdallah Abd Al-Hakim;;;;;1682;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;Usama bin Ladin;;;Hajj;;5772;EN;;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;Ben Laden Osama;;;;;5773;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;Ben Laden Ossama;;;;;5774;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;Ben Laden Usama;;;;;5775;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;Bin Laden Osama Mohamed Awdh;;;;;5776;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;Bin Laden Usamah Bin Muhammad;;;;;5777;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;Shaykh Usama Bin Ladin;;;;;5778;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;Usamah Bin Muhammad Bin Ladin;;;;;5779;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;Al Qaqa;;;;;5780;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;Usama bin Laden;;;;;8954;EN;;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;bin Ladin;Osama;;Osama bin Ladin;;;;;8955;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;bin Ladin;Osama;bin Muhammad bin Awad;Osama bin Muhammad bin Awad bin Ladin;;;;;8956;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;bin Ladin;Usama;bin Muhammad bin Awad;Usama bin Muhammad bin Awad bin Ladin;;;;;8957;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;Usama Bin Muhammed Bin Awad, Osama Bin Laden;;;;;102205;EN;;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-07-30;30;7;1957;;;NO;GREGORIAN;;;;Jeddah;SA;SAUDI ARABIA;296;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-07-28;28;7;1957;;;NO;GREGORIAN;;;;Jeddah;SA;SAUDI ARABIA;891;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-03-10;10;3;1957;;;NO;GREGORIAN;;;;Jeddah;SA;SAUDI ARABIA;892;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-01-01;1;1;1957;;;NO;GREGORIAN;;;;Jeddah;SA;SAUDI ARABIA;893;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;;Jeddah;SA;SAUDI ARABIA;894;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;NO;GREGORIAN;;;;Jeddah;SA;SAUDI ARABIA;895;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-07-30;30;7;1957;;;NO;GREGORIAN;;;;;YE;YEMEN;896;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-07-28;28;7;1957;;;NO;GREGORIAN;;;;;YE;YEMEN;897;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-03-10;10;3;1957;;;NO;GREGORIAN;;;;;YE;YEMEN;898;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-01-01;1;1;1957;;;NO;GREGORIAN;;;;;YE;YEMEN;899;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;;;YE;YEMEN;900;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;NO;GREGORIAN;;;;;YE;YEMEN;901;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;833;EU.691.85;;;;(Other information: Confirmed to have died in Pakistan in May 2011. Date of designation referred to in Article 2a(4)(b): 25.1.2001.);P;person;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;125345;EN;Saudi citizenship withdrawn, Afghan nationality given by the Taliban regime.;amendment;commission;2013-06-25;2013-06-24;596/2013 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:172:0001:0003:EN:PDF +28/10/2022;836;EU.787.30;;;;;P;person;amendment;commission;2013-07-30;2013-07-29;731/2013 (OJ L203);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:203:0010:0011:EN:PDF;Uthman;Omar;Mahmoud;Omar Mahmoud Uthman;;M;;;1683;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;836;EU.787.30;;;;;P;person;amendment;commission;2013-07-30;2013-07-29;731/2013 (OJ L203);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:203:0010:0011:EN:PDF;;;;Abu Qatada Al-Filistini;;;;;1684;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;836;EU.787.30;;;;;P;person;amendment;commission;2013-07-30;2013-07-29;731/2013 (OJ L203);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:203:0010:0011:EN:PDF;;;;Abu Umr Takfiri;;;;;1685;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;836;EU.787.30;;;;;P;person;amendment;commission;2013-07-30;2013-07-29;731/2013 (OJ L203);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:203:0010:0011:EN:PDF;;;;Abu Omar Abu Umar;;;;;1686;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;836;EU.787.30;;;;;P;person;amendment;commission;2013-07-30;2013-07-29;731/2013 (OJ L203);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:203:0010:0011:EN:PDF;;;;Al-Samman Uthman;;;;;1687;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;836;EU.787.30;;;;;P;person;amendment;commission;2013-07-30;2013-07-29;731/2013 (OJ L203);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:203:0010:0011:EN:PDF;;;;Abu Umar Umar;;;;;1689;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;836;EU.787.30;;;;;P;person;amendment;commission;2013-07-30;2013-07-29;731/2013 (OJ L203);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:203:0010:0011:EN:PDF;;;;Umar Uthman;;;;;1690;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;836;EU.787.30;;;;;P;person;amendment;commission;2013-07-30;2013-07-29;731/2013 (OJ L203);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:203:0010:0011:EN:PDF;;;;Abu Ismail;;;;;1691;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;836;EU.787.30;;;;;P;person;amendment;commission;2013-07-30;2013-07-29;731/2013 (OJ L203);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:203:0010:0011:EN:PDF;;;;Omar Mohammed Othman;;;;;7731;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;836;EU.787.30;;;;;P;person;amendment;commission;2013-07-30;2013-07-29;731/2013 (OJ L203);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:203:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;JO;JORDAN;2534;EN;;amendment;commission;2013-07-30;2013-07-29;731/2013 (OJ L203);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:203:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;836;EU.787.30;;;;;P;person;amendment;commission;2013-07-30;2013-07-29;731/2013 (OJ L203);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:203:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-12-30;30;12;1960;;;NO;GREGORIAN;;;;Bethlehem, West Bank;PS;PALESTINIAN TERRITORY, Occupied;297;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;836;EU.787.30;;;;;P;person;amendment;commission;2013-07-30;2013-07-29;731/2013 (OJ L203);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:203:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-12-13;13;12;1960;;;NO;GREGORIAN;;;;Bethlehem, West Bank;PS;PALESTINIAN TERRITORY, Occupied;298;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;836;EU.787.30;;;;;P;person;amendment;commission;2013-07-30;2013-07-29;731/2013 (OJ L203);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:203:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;JO;;576;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF +28/10/2022;839;EU.636.9;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Reportedly deceased in December 2006 and buried in Panjwai District, Kandahar Province, Afghanistan. Belonged to Ghilzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427424);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammad Wali Mohammad Ewaz;;;Maulavi;Minister of Ministry of Preventing Vice and Propagating Virtue under the Taliban regime;1694;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;839;EU.636.9;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Reportedly deceased in December 2006 and buried in Panjwai District, Kandahar Province, Afghanistan. Belonged to Ghilzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427424);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammad Wali;;;;;16855;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;839;EU.636.9;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Reportedly deceased in December 2006 and buried in Panjwai District, Kandahar Province, Afghanistan. Belonged to Ghilzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427424);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;YES;GREGORIAN;;;;Jelawur village, Arghandab District, Kandahar province;AF;AFGHANISTAN;989;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;839;EU.636.9;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Reportedly deceased in December 2006 and buried in Panjwai District, Kandahar Province, Afghanistan. Belonged to Ghilzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427424);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;YES;GREGORIAN;;;;Siyachoy village, Panjwai District, Kandahar Province;AF;AFGHANISTAN;1861;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;839;EU.636.9;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Reportedly deceased in December 2006 and buried in Panjwai District, Kandahar Province, Afghanistan. Belonged to Ghilzai tribe.\nReview pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427424);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102231;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;840;EU.637.10;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446036);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Seddiqi;Abdul;Wali;Abdul Wali Seddiqi;;;Qari;First Secretary Taliban ‘Consulate General’ Peshawar, Pakistan.;1695;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;840;EU.637.10;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446036);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974;;;NO;GREGORIAN;;Ghazni Province;Zilzilay village, Andar District;Ghazni;AF;AFGHANISTAN;809;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;840;EU.637.10;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446036);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D 000769 (passport-National passport) (valid from 1997-02-02);NO;NO;NO;NO;NO;;;1997-02-02;;;;passport;National passport;;AF;;102235;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;840;EU.637.10;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1446036);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102234;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;841;EU.658.38;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Member of the Taliban Gerd-e-Jangal Shura and Head of the Taliban Prisoners and Refugees Committee. Belongs to Ishaqzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427434);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Walijan;;;Maulavi;Governor of Jawzjan Province (Afghanistan) under the Taliban regime;102238;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;841;EU.658.38;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Member of the Taliban Gerd-e-Jangal Shura and Head of the Taliban Prisoners and Refugees Committee. Belongs to Ishaqzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427434);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;;;Nimroz Province;AF;AFGHANISTAN;1838;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;841;EU.658.38;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Member of the Taliban Gerd-e-Jangal Shura and Head of the Taliban Prisoners and Refugees Committee. Belongs to Ishaqzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427434);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;YES;GREGORIAN;;;;Quetta;PK;PAKISTAN;102237;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;841;EU.658.38;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Member of the Taliban Gerd-e-Jangal Shura and Head of the Taliban Prisoners and Refugees Committee. Belongs to Ishaqzai tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/1427434);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;759;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;842;EU.659.39;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427442 9.3.2017 L 63/53 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Wassiq;Abdul-Haq;;Abdul-Haq Wassiq;;;Maulavi;Deputy Minister of Security (Intelligence) under the Taliban regime.;1697;EN;Deputy Minister of Security (Intelligence) under the Taliban regime.;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;842;EU.659.39;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427442 9.3.2017 L 63/53 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Wasseq;Abdul-Haq;;Abdul-Haq Wasseq;;;;;7479;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;842;EU.659.39;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427442 9.3.2017 L 63/53 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Wasiq;Abdul Haq;;Abdul Haq Wasiq;;;;;18297;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;842;EU.659.39;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427442 9.3.2017 L 63/53 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;QA;QATAR;2575;EN;;amendment;council;2016-09-30;2016-09-30;2016/1736 (OJ L264);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1736&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;842;EU.659.39;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427442 9.3.2017 L 63/53 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;;;YES;GREGORIAN;;;;Gharib village, Khogyani District, Ghazni province;AF;AFGHANISTAN;1013;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;842;EU.659.39;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427442 9.3.2017 L 63/53 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971;;;NO;GREGORIAN;;;;Gharib village, Khogyani District, Ghazni province;AF;AFGHANISTAN;1844;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;842;EU.659.39;;2001-01-31;;(Date of UN designation: 2001-01-31)\n(Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1427442 9.3.2017 L 63/53 Official Journal of the European Union EN);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102240;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF +28/10/2022;844;EU.571.57;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Kharoti (Taraki) tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741615);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Yaqoub Mohammad;;;Maulavi;Head of Bakhtar Information Agency (BIA) under the Taliban regime;1699;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;844;EU.571.57;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Kharoti (Taraki) tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741615);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;YES;GREGORIAN;;;;Shahjoi District, Zabul Province;AF;AFGHANISTAN;1862;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;844;EU.571.57;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Kharoti (Taraki) tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741615);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;YES;GREGORIAN;;;;Janda District, Ghazni Province;AF;AFGHANISTAN;1906;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;844;EU.571.57;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Kharoti (Taraki) tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5741615);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102245;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;849;EU.593.86;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678501);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Zahed;Abdul Rahman;;Abdul Rahman Zahed;;;Mullah;Deputy Minister of Foreign Affairs under the Taliban regime;102250;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;849;EU.593.86;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678501);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Zahid;Abdul Rehman;;Abdul Rehman Zahid;;;;;102251;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;849;EU.593.86;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678501);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Kharwar District, Logar Province;AF;AFGHANISTAN;956;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;849;EU.593.86;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 21 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678501);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102249;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;851;EU.595.88;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1446039);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Zahid;Mohammad;;Mohammad Zahid;;;Mullah;Third Secretary, Taliban Embassy, Islamabad, Pakistan;1706;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;851;EU.595.88;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1446039);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Zahid Ahmadzai;EN;;;;109758;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;851;EU.595.88;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1446039);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Jan Agha Ahmadzai;EN;;;;109759;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;851;EU.595.88;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1446039);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971;;;NO;GREGORIAN;;;;Logar Province;AF;AFGHANISTAN;803;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;851;EU.595.88;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1446039);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D 001206 (passport-National passport) (on 2000-07-17 valid from 2000-07-17);NO;NO;NO;NO;NO;;2000-07-17;2000-07-17;;;;passport;National passport;;AF;;187;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;851;EU.595.88;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010. Picture available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1446039);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;102254;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF +28/10/2022;923;EU.660.92;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;Al-Fawaz;Khalid;Abd Al-Rahman Hamd;Khalid Abd Al-Rahman Hamd Al-Fawaz;;M;;;1930;EN;;amendment;commission;2007-05-04;2007-05-03;492/2007 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:116:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;923;EU.660.92;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;AL-FAUWAZ;Khaled;;Khaled AL-FAUWAZ;;;;;1931;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;923;EU.660.92;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;Khaled;Al-Fauwaz;A.;Al-Fauwaz A. Khaled;;;;;1932;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;923;EU.660.92;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;Khalid;Al-Fawwaz;;Al-Fawwaz Khalid;;;;;1933;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;923;EU.660.92;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;Khalik;Al Fawwaz;;Al Fawwaz Khalik;;;;;1934;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;923;EU.660.92;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;Khaled;Al-Fawwaz;;Al-Fawwaz Khaled;;;;;1935;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;923;EU.660.92;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;Khaled;Al Fawwaz;;Al Fawwaz Khaled;;;;;1936;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;923;EU.660.92;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;Khalid;Al Fawaz;Abdulrahman H.;Al Fawaz Abdulrahman H. Khalid;;;;;5597;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;923;EU.660.92;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;US;UNITED STATES;245;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;923;EU.660.92;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-08-24;24;8;1962;;;NO;GREGORIAN;;;;;KW;KUWAIT;870;EN;;amendment;commission;2007-05-04;2007-05-03;492/2007 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:116:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;923;EU.660.92;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"456682 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;227;EN;;amendment;commission;2007-05-04;2007-05-03;492/2007 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:116:0005:0008:EN:PDF;;;;;;;;;;;;; +28/10/2022;923;EU.660.92;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SA;;371;EN;;amendment;commission;2007-05-04;2007-05-03;492/2007 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:116:0005:0008:EN:PDF +28/10/2022;926;EU.623.41;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;Ibrahim;Mostafa;Kamel Mostafa;Mostafa Kamel Mostafa Ibrahim;;M;;;1939;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;926;EU.623.41;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Mustafa Kamel Mustafa;;;;;1940;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;926;EU.623.41;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Adam Ramsey Eaman;;;;;2401;EN;;amendment;commission;2003-08-15;2003-08-14;1456/2003 (OJ L206);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:206:0027:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;926;EU.623.41;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;Abu Hamza;Al-Misri;;Al-Misri Abu Hamza;;;;;2403;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;926;EU.623.41;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;Abu Hamza;;;Abu Hamza;;;;;2405;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;926;EU.623.41;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Kamel Mustapha Mustapha;;;;;3574;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;926;EU.623.41;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Mustapha Kamel Mustapha;;;;;3575;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;926;EU.623.41;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Mostafa Kamel Mostafa;;;;;3576;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;926;EU.623.41;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abu Hamza Al-Masri;;;;;4862;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;926;EU.623.41;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;US;UNITED STATES;248;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;926;EU.623.41;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-04-15;15;4;1958;;;NO;GREGORIAN;;;;Alexandria;EG;EGYPT;626;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;926;EU.623.41;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GB;;355;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF +28/10/2022;927;EU.3343.85;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;Al-Aouadi;Mohamed;Ben Belgacem Ben Abdallah;Mohamed Ben Belgacem Ben Abdallah Al-Aouadi;;M;;;1941;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;927;EU.3343.85;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;Aouadi;Mohamed;Ben Belkacem;Mohamed Ben Belkacem Aouadi;;;;;1942;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;927;EU.3343.85;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;Fathi Hannachi;;;;;8437;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;927;EU.3343.85;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;Tunis;23 50th Street, Zehrouni;;;;;NO;(Italian Fiscal Code: DAOMMD74T11Z352Z);TN;TUNISIA;1623;EN;Italian Fiscal Code: DAOMMD74T11Z352Z;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;927;EU.3343.85;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-12-11;11;12;1974;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;322;EN;;amendment;commission;2005-09-23;2005-09-22;1551/2005 (OJ L247);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:247:0030:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;927;EU.3343.85;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"L191609 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;TN;;68;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;; +28/10/2022;927;EU.3343.85;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"04643632 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;69;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;; +28/10/2022;927;EU.3343.85;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;135;EN;;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF +28/10/2022;928;EU.590.83;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;Lakhal;Mohamed;;Mohamed Lakhal;;M;;;1943;EN;;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;928;EU.590.83;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;Ben Heni;Lased;;Lased Ben Heni;;;;;4910;EN;;amendment;commission;2006-08-10;2006-08-09;1210/2006 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:219:0014:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;928;EU.590.83;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;Mohamed Abu Abda;;;;;4911;EN;;amendment;commission;2006-08-10;2006-08-09;1210/2006 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:219:0014:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;928;EU.590.83;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;Ben Hani;Al-As’ad;;Al-As’ad Ben Hani;;;;;8439;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;928;EU.590.83;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;Mohamed Ben Belgacem Awani;;;;;8440;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;928;EU.590.83;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;Abu Obeida;;;;;8441;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;928;EU.590.83;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;Aouani;Mohamed;;Mohamed Aouani;;;;;18471;EN;;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;928;EU.590.83;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-02-05;5;2;1969;;;NO;GREGORIAN;;;;Tripoli;LY;LIBYA;323;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;928;EU.590.83;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-02-05;5;2;1970;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;1364;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;928;EU.590.83;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;W374031 (id-National identification card) (tunisian national identity number issued on 11.4.2011);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;902;EN;tunisian national identity number issued on 11.4.2011;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;928;EU.590.83;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;613;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN +28/10/2022;931;EU.654.34;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;El Sayed;Abd El Kader;Mahmoud Mohamed;Abd El Kader Mahmoud Mohamed El Sayed;;M;;;1948;EN;;amendment;commission;2007-06-28;2007-06-26;732/2007 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:166:0013:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;931;EU.654.34;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Es Sayed;Kader;;Kader Es Sayed;;;;;1949;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;931;EU.654.34;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Abdel Khader Mahmoud Mohamed el Sayed;;;;;12682;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;931;EU.654.34;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Italian Fiscal Code: SSYBLK62T26Z336L);00;UNKNOWN;1921;EN;Italian Fiscal Code: SSYBLK62T26Z336L;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;931;EU.654.34;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-12-26;26;12;1962;;;NO;GREGORIAN;;;;;EG;EGYPT;326;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;931;EU.654.34;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EG;;687;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF +28/10/2022;932;EU.625.43;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;Elsseid;Sami;Ben Khamis Ben Saleh;Sami Ben Khamis Ben Saleh Elsseid;;M;;;1950;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;932;EU.625.43;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;Omar El Mouhajer;;;;;2513;EN;;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;932;EU.625.43;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;Saber;;;;;2514;EN;;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;932;EU.625.43;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;Tunis;Ibn Al-Haythman Street, Manubah;;;;;NO;(Italian Fiscal Code: SSDSBN68B10Z352F);TN;TUNISIA;254;EN;Italian Fiscal Code: SSDSBN68B10Z352F;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;932;EU.625.43;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-02-10;10;2;1968;;;NO;GREGORIAN;;;;Menzel Jemil Bizerte;TN;TUNISIA;620;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;932;EU.625.43;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"K929139 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;TN;;70;EN;;amendment;commission;2008-01-19;2008-01-18;46/2008 (OJ L16);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:016:0011:0016:EN:PDF;;;;;;;;;;;;; +28/10/2022;932;EU.625.43;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00319547 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;71;EN;;amendment;commission;2007-06-28;2007-06-26;732/2007 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:166:0013:0015:EN:PDF;;;;;;;;;;;;; +28/10/2022;932;EU.625.43;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;136;EN;;amendment;commission;2003-05-20;2003-05-19;866/2003 (OJ L124);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0019:0022:EN:PDF +28/10/2022;937;EU.591.84;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;Ben Soltane;Adel;Ben Al-Azhar Ben Youssef;Adel Ben Al-Azhar Ben Youssef Ben Soltane;;M;;;1967;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;937;EU.591.84;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;Zakariya;;;;;102267;EN;;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;937;EU.591.84;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;Hamdi;Adel;Ben Al-Azhar Ben Youssef;Adel Ben Al-Azhar Ben Youssef Hamdi;;;;;18472;EN;;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;937;EU.591.84;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;TN;TUNISIA;1627;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;937;EU.591.84;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-07-14;14;7;1970;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;329;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;937;EU.591.84;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"M408665 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;TN;;177;EN;;amendment;commission;2007-06-28;2007-06-26;732/2007 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:166:0013:0015:EN:PDF;;;;;;;;;;;;; +28/10/2022;937;EU.591.84;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;327;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF +28/10/2022;939;EU.587.28;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;Chekkouri;Yassine;;Yassine Chekkouri;;M;;;1969;EN;;amendment;commission;2007-06-28;2007-06-26;732/2007 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:166:0013:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;939;EU.587.28;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;Hay Anas Safi;7 7th Street;;;;;NO;;MA;MOROCCO;1689;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;939;EU.587.28;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-10-06;6;10;1966;;;NO;GREGORIAN;;;;Safi;MA;MOROCCO;331;EN;;amendment;commission;2007-06-28;2007-06-26;732/2007 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:166:0013:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;939;EU.587.28;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;F46947 (passport-National passport) ((passport));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;MA;;499;EN;(passport);amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;; +28/10/2022;939;EU.587.28;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;H-135467 (id-National identification card) ((national identity card));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;MA;;500;EN;(national identity card);amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;; +28/10/2022;939;EU.587.28;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA;;614;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN +28/10/2022;941;EU.622.40;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;Kammoun;Mehdi;Ben Mohamed Ben Mohamed;Mehdi Ben Mohamed Ben Mohamed Kammoun;;M;;;1971;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;941;EU.622.40;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Salmane;;;;;8573;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;941;EU.622.40;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;Milano;Via Masina, 7;;;;;NO;;IT;ITALY;260;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;941;EU.622.40;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-04-03;3;4;1968;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;333;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;941;EU.622.40;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"M307707 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;TN;;158;EN;;amendment;commission;2007-06-28;2007-06-26;732/2007 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:166:0013:0015:EN:PDF;;;;;;;;;;;;; +28/10/2022;941;EU.622.40;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;304;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF +28/10/2022;943;EU.558.37;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;Al-Maaroufi;Tarek;Ben Habib Ben Al-Toumi;Tarek Ben Habib Ben Al-Toumi Al-Maaroufi;;M;;;1973;EN;;amendment;commission;2006-08-10;2006-08-09;1210/2006 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:219:0014:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;943;EU.558.37;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Abu Ismail;;;;;3572;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;943;EU.558.37;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Abou Ismail el Jendoubi;;;;;5735;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;943;EU.558.37;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Abou Ismail Al Djoundoubi;;;;;5736;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;943;EU.558.37;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;Jette, Brussels;107/1 rue Léon Théodore;;1090;;;NO;;BE;BELGIUM;1367;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;943;EU.558.37;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;Jette, Brussel;107/1 Léon Theodorestraat;;1090;;;NO;;BE;BELGIUM;1373;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;943;EU.558.37;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;Jette, Bruxelles;107/1 rue Léon Théodore;;1090;;;NO;;BE;BELGIUM;1376;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;943;EU.558.37;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-11-23;23;11;1965;;;NO;GREGORIAN;;;;Ghardimaou;TN;TUNISIA;335;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;943;EU.558.37;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"E590976 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;TN;;167;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;; +28/10/2022;943;EU.558.37;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;234;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF +28/10/2022;944;EU.631.4;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;Remadna;Abdelhalim Hafed;Abdelfattah;Abdelhalim Hafed Abdelfattah Remadna;;M;;;1974;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;944;EU.631.4;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;Remadna;Abdelhalim;;Abdelhalim Remadna;;;;;7476;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;944;EU.631.4;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Jalloul;;;;;7477;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;944;EU.631.4;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;DZ;ALGERIA;1138;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;944;EU.631.4;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-04-02;2;4;1966;;;NO;GREGORIAN;;;;Biskra;DZ;ALGERIA;336;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;944;EU.631.4;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;512;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF +28/10/2022;945;EU.653.33;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;Alouche;Isam;Ali Mohamed;Isam Ali Mohamed Alouche;;M;;;1975;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;945;EU.653.33;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Mansour Thaer;;;;;7358;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;945;EU.653.33;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-03-21;21;3;1974;;;NO;GREGORIAN;;;;Baghdad;IQ;IRAQ;337;EN;;amendment;commission;2006-08-30;2006-08-29;1286/2006 (OJ L235);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:235:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;945;EU.653.33;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;1170;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;945;EU.653.33;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;JO;;556;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF +28/10/2022;963;EU.612.75;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Eastern Turkistan Islamic Movement;;;;;2026;EN;;amendment;commission;2002-10-02;2002-10-01;1754/2002 (OJ L264);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:264:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;963;EU.612.75;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;The Eastern Turkistan Islamic Party;;;;;2028;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;963;EU.612.75;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Movimento Islâmico do Turquestão Oriental;PT;;;;2029;EN;;amendment;commission;2002-09-14;2002-09-13;1644/2002 (OJ L247);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:247:0025:0026:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;963;EU.612.75;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Partido Islâmico do Turquestão Oriental;PT;;;;2030;EN;;amendment;commission;2002-09-14;2002-09-13;1644/2002 (OJ L247);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:247:0025:0026:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;963;EU.612.75;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;The Eastern Turkistan Islamic Party of Allah;;;;;2415;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;963;EU.612.75;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Partido Islâmico de Alá do Turquestão Oriental;PT;;;;2426;EN;;amendment;commission;2002-10-02;2002-10-01;1754/2002 (OJ L264);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:264:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;963;EU.612.75;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Kelet-türkisztáni Iszlám Párt;HU;;;;4866;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;963;EU.612.75;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Allah Kelet-türkisztáni Iszlám Pártja;HU;;;;4867;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;963;EU.612.75;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Islamic Party of Turkestan;;;;;7316;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;963;EU.612.75;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Djamaat Turkistan;;;;;7317;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;963;EU.612.75;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Източно туркистанско ислямско движение;BG;;;;7442;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;963;EU.612.75;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Източно туркистанска ислямска партия;BG;;;;7443;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;963;EU.612.75;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Източно туркистанска ислямска партия на Аллах;BG;;;;7444;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;963;EU.612.75;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ислямска партия на Туркистан;BG;;;;7445;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;963;EU.612.75;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Türkisztáni Iszlám Párt;HU;;;;7446;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;963;EU.612.75;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Partido Islâmico do Turquestão;PT;;;;7447;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;965;EU.661.93;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;Bahaji;Said;;Said Bahaji;;M;;;2041;EN;;amendment;commission;2005-09-23;2005-09-22;1551/2005 (OJ L247);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:247:0030:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;965;EU.661.93;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Zouheir Al Maghribi;;;;;8443;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;965;EU.661.93;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Mohamed Abbattay;;;;;8444;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;965;EU.661.93;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Abderrahmane Al Maghribi;;;;;8445;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;965;EU.661.93;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;Hamburg;Bunatwiete, 23;;D-21073;;;NO;;DE;GERMANY;284;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;965;EU.661.93;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-07-15;15;7;1975;;;NO;GREGORIAN;;;;Haselünne (Lower Saxony);DE;GERMANY;341;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;965;EU.661.93;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28 642 163 (passport-National passport) ((provisional german passport issued by the city of hamburg));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;DE;;15;EN;(provisional german passport issued by the city of hamburg);amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;; +28/10/2022;965;EU.661.93;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BPA Nr. 1336597587 (id-National identification card) (national identification no);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;105;EN;national identification no;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;; +28/10/2022;965;EU.661.93;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;954242 (passport-National passport) [known to be expired]((expired moroccan passport issued on 28.6.1995 in meknas, morocco));NO;YES;NO;NO;NO;;;;;;;passport;National passport;;MA;;134;EN;(expired moroccan passport issued on 28.6.1995 in meknas, morocco);amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;; +28/10/2022;965;EU.661.93;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DE;;232;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF +28/10/2022;965;EU.661.93;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA;;233;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;Binalshibh;Ramzi;Mohamed Abdullah;Ramzi Mohamed Abdullah Binalshibh;;M;;;2042;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;Omar;Ramzi;Mohamed Abdellah;Ramzi Mohamed Abdellah Omar;;;;;2043;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;Binalsheidah;Ramzi;Mohamed Abdullah;Ramzi Mohamed Abdullah Binalsheidah;;;;;2044;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;Bin Al Shibh;Ramzi;;Ramzi Bin Al Shibh;;;;;2045;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Mohamed Ali Abdullah Bawazir;;;;;4854;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Ramzi Omar;;;;;4855;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;Binalshibh;Ramzi;Mohammed Abdullah;Ramzi Mohammed Abdullah Binalshibh;;;;;5767;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Ramzi Binalshib;;;;;5768;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Ramzi Mohamed Abdellah Omar Hassan Alassiri;;;;;5769;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;Binalshibh;Ramsi;Mohamed Abdullah;Ramsi Mohamed Abdullah Binalshibh;;;;;5770;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;Abu Ubaydah;;;;;5925;EN;;amendment;commission;2007-08-18;2007-08-17;969/2007 (OJ L215);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:215:0006:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;"Umar Muhammad ""Abdallah Ba"" Amar";;;;;5926;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-05-01;1;5;1972;;;NO;GREGORIAN;;;;Gheil Bawazir, Hadramawt;YE;YEMEN;342;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-05-01;1;5;1972;;;NO;GREGORIAN;;;;Khartoum;SD;SUDAN;343;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-09-16;16;9;1973;;;NO;GREGORIAN;;;;Gheil Bawazir, Hadramawt;YE;YEMEN;344;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-09-16;16;9;1973;;;NO;GREGORIAN;;;;Khartoum;SD;SUDAN;345;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00085243 (other-Other identification number) ";NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;YE;;16;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;; +28/10/2022;966;EU.639.12;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;99;EN;;amendment;commission;2002-10-02;2002-10-01;1754/2002 (OJ L264);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:264:0023:0024:EN:PDF +28/10/2022;967;EU.550.29;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;El Motassadeq;Mounir;;Mounir El Motassadeq;;M;;;2046;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;967;EU.550.29;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;El Moutassadeq;Mounir;;Mounir El Moutassadeq;;M;;;8571;EN;;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;967;EU.550.29;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-04-03;3;4;1974;;;NO;GREGORIAN;;;;Marrakesh;MA;MOROCCO;346;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;967;EU.550.29;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"H 236483 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;MA;;17;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;; +28/10/2022;967;EU.550.29;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;E-491591 (id-National identification card) ((national identity card));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;MA;;501;EN;(national identity card);amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;; +28/10/2022;967;EU.550.29;;;;;P;person;amendment;commission;2011-01-19;2011-01-18;36/2011 (OJ L14);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32011R0036&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA;;100;EN;;amendment;commission;2002-10-02;2002-10-01;1754/2002 (OJ L264);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:264:0023:0024:EN:PDF +28/10/2022;968;EU.574.60;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;Essabar;Zakarya;;Zakarya Essabar;;M;;;2047;EN;;amendment;commission;2002-10-02;2002-10-01;1754/2002 (OJ L264);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:264:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;968;EU.574.60;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;Essabar;Zakariya;;Zakariya Essabar;;;;;2048;EN;;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;968;EU.574.60;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-04-13;13;4;1977;;;NO;GREGORIAN;;;;Essaouria;MA;MOROCCO;347;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;968;EU.574.60;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;M 271 351 (passport-National passport) (passport no issued on 24 october 2000 by the embassy of morocco in berlin, germany);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;MA;;18;EN;passport no issued on 24 october 2000 by the embassy of morocco in berlin, germany;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;; +28/10/2022;968;EU.574.60;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;E-189935 (id-National identification card) ((moroccan national identity number));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;MA;;601;EN;(moroccan national identity number);amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;; +28/10/2022;968;EU.574.60;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;G-0343089 (id-National identification card) ((moroccan national identity card));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;MA;;602;EN;(moroccan national identity card);amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;; +28/10/2022;968;EU.574.60;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;K-348486 (passport-National passport) ((moroccan passport));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;MA;;604;EN;(moroccan passport);amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;; +28/10/2022;968;EU.574.60;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA;;101;EN;;amendment;commission;2002-10-02;2002-10-01;1754/2002 (OJ L264);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:264:0023:0024:EN:PDF +28/10/2022;969;EU.572.58;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Moroccan Islamic Combatant Group;;;;;2049;EN;;amendment;commission;2002-10-12;2002-10-11;1823/2002 (OJ L276);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:276:0026:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;969;EU.572.58;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;GICM;;;;;2050;EN;;amendment;commission;2002-10-12;2002-10-11;1823/2002 (OJ L276);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:276:0026:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;969;EU.572.58;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Grupo Islámico Combatiente Marroquí;ES;;;;2054;EN;;amendment;commission;2002-10-12;2002-10-11;1823/2002 (OJ L276);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:276:0026:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;969;EU.572.58;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Gruppo islamico combattente marocchino;IT;;;;2055;EN;;amendment;commission;2002-10-12;2002-10-11;1823/2002 (OJ L276);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:276:0026:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;969;EU.572.58;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Groupe Islamique Combattant Marocain;;;;;2058;EN;;amendment;commission;2002-10-12;2002-10-11;1823/2002 (OJ L276);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:276:0026:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;969;EU.572.58;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Marokkaanse Groep van Islamitische Strijders;NL;;;;2059;EN;;amendment;commission;2002-10-12;2002-10-11;1823/2002 (OJ L276);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:276:0026:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;969;EU.572.58;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Grupo islâmico combatente marroquino;PT;;;;2060;EN;;amendment;commission;2002-10-12;2002-10-11;1823/2002 (OJ L276);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:276:0026:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;969;EU.572.58;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;MA;MOROCCO;2212;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;970;EU.606.17;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Tunisian Combatant Group;;;;;2051;EN;;amendment;commission;2002-10-12;2002-10-11;1823/2002 (OJ L276);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:276:0026:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;970;EU.606.17;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Grupo Combatiente Tunecino;ES;;;;2053;EN;;amendment;commission;2002-10-12;2002-10-11;1823/2002 (OJ L276);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:276:0026:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;970;EU.606.17;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Groupe Combattant Tunisien;;;;;2353;EN;;amendment;commission;2002-10-12;2002-10-11;1823/2002 (OJ L276);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:276:0026:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;970;EU.606.17;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Groupe Islamiste Combattant Tunisien;;;;;3561;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;970;EU.606.17;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;GICT;;;;;3562;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;970;EU.606.17;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Tunéziai Harcoló Csoportok;HU;;;;3583;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;970;EU.606.17;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Tunezyjska Grupa Bojowa;PL;;;;3600;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;970;EU.606.17;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Тунизийска бойна група;BG;;;;7464;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;970;EU.606.17;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;TN;TUNISIA;2213;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;980;EU.589.30;;;;;E;enterprise;amendment;commission;2014-04-01;2014-03-31;329/2014 (OJ L98);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0329&from=EN;;;;Global Relief Foundation (GRF);;;;;2062;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;980;EU.589.30;;;;;E;enterprise;amendment;commission;2014-04-01;2014-03-31;329/2014 (OJ L98);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0329&from=EN;;;;;;;;;;;;;;;;;;;Bridgeview, Illinois;9935 South 76th Avenue, Unit 1;;60455;;;NO;;US;UNITED STATES;2251;EN;;amendment;commission;2012-03-02;2012-03-01;177/2012 (OJ L61);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:061:0010:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;980;EU.589.30;;;;;E;enterprise;amendment;commission;2014-04-01;2014-03-31;329/2014 (OJ L98);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0329&from=EN;;;;;;;;;;;;;;;;;;;Bridgeview, Illinois;;;PO Box 1406 - 60455;;;NO;;US;UNITED STATES;2252;EN;;amendment;commission;2012-03-02;2012-03-01;177/2012 (OJ L61);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:061:0010:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;982;EU.621.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Jemaah Islamiya;;;;;2074;EN;;amendment;commission;2002-10-30;2002-10-29;1935/2002 (OJ L295);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:295:0011:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;982;EU.621.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Jema'ah Islamiyah;;;;;2075;EN;;amendment;commission;2002-10-30;2002-10-29;1935/2002 (OJ L295);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:295:0011:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;982;EU.621.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Jemaah Islamiyah;;;;;2076;EN;;amendment;commission;2002-10-30;2002-10-29;1935/2002 (OJ L295);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:295:0011:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;982;EU.621.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Jemaah Islamiah;;;;;2077;EN;;amendment;commission;2002-10-30;2002-10-29;1935/2002 (OJ L295);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:295:0011:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;982;EU.621.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Jamaah Islamiyah;;;;;2078;EN;;amendment;commission;2002-10-30;2002-10-29;1935/2002 (OJ L295);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:295:0011:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;982;EU.621.39;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Jama'ah Islamiyah;;;;;2079;EN;;amendment;commission;2002-10-30;2002-10-29;1935/2002 (OJ L295);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:295:0011:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;983;EU.620.38;;;;;E;enterprise;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Benevolence International Foundation;;;;;2080;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;983;EU.620.38;;;;;E;enterprise;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;BIF;;;;;2081;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;983;EU.620.38;;;;;E;enterprise;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;BIF-USA;;;;;2082;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;983;EU.620.38;;;;;E;enterprise;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Al-Bir Al-Dawalia;;;;;2083;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;983;EU.620.38;;;;;E;enterprise;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Mezhdunarodnyj Blagotvoritel'nyj Fond;;;;;2084;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;983;EU.620.38;;;;;E;enterprise;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Meždunarodnyj Blagotvoritel'nyj Fond;CS;;;;2095;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;983;EU.620.38;;;;;E;enterprise;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Mezsdunarodnij Blagotvorityelnij Fond;HU;;;;6345;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;983;EU.620.38;;;;;E;enterprise;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Międzynarodowy Fundusz Dobroczynności;PL;;;;6346;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;983;EU.620.38;;;;;E;enterprise;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Mieżdunarodnyj Błagotworitielnyj Fond;PL;;;;6347;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;983;EU.620.38;;;;;E;enterprise;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;Oak Lawn - Illinois;8820 Mobile Avenue, 1A;;60453;;;NO;(US Federal Employer Identification Number 36-3823186\nUS Federal Employer Identification Number 36-3823186);US;UNITED STATES;300;EN;US Federal Employer Identification Number 36-3823186\nUS Federal Employer Identification Number 36-3823186;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;983;EU.620.38;;;;;E;enterprise;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;Worth, Illinois;PO box 548;;60482;;;NO;;US;UNITED STATES;301;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;983;EU.620.38;;;;;E;enterprise;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;Palos Hills, Illinois;S. Roberts Road, Suite 1W;;60465;;;NO;(former location\nformer location);US;UNITED STATES;302;EN;former location\nformer location;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;983;EU.620.38;;;;;E;enterprise;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;Newark, New Jersey;20-24 Branford Place, Suite 705;;07102;;;NO;(former location\nformer location);US;UNITED STATES;303;EN;former location\nformer location;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;983;EU.620.38;;;;;E;enterprise;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;Khartoum;PO box 1937;;;;;NO;;US;UNITED STATES;316;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;983;EU.620.38;;;;;E;enterprise;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;Gaza Strip;;;;;;NO;;PS;PALESTINIAN TERRITORY, Occupied;1135;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;983;EU.620.38;;;;;E;enterprise;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;YE;YEMEN;1749;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;983;EU.620.38;;;;;E;enterprise;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;BD;BANGLADESH;1750;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1003;EU.1003.87;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Isamuddin;Nurjaman;Riduan;Nurjaman Riduan Isamuddin;;M;;;2103;EN;;amendment;commission;2003-02-04;2003-02-04;215/2003 (OJ L28);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:028:0041:0042:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1003;EU.1003.87;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Hambali;;;;;2104;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1003;EU.1003.87;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Nurjaman;;;;;2105;EN;;amendment;commission;2003-02-04;2003-02-04;215/2003 (OJ L28);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:028:0041:0042:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1003;EU.1003.87;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Isomuddin;Nurjaman;Riduan;Nurjaman Riduan Isomuddin;;;;;2106;EN;;amendment;commission;2003-02-04;2003-02-04;215/2003 (OJ L28);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:028:0041:0042:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1003;EU.1003.87;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Encep Nurjaman (birth name);;;;;2108;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1003;EU.1003.87;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Hambali Bin Ending;;;;;5795;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1003;EU.1003.87;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Hambali Ending Hambali;;;;;5796;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1003;EU.1003.87;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Isamuddin Riduan;;;;;5797;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1003;EU.1003.87;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Isamudin Ridwan;;;;;5798;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1003;EU.1003.87;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Isomuddin, Nurjaman Riduan;;;;;5892;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1003;EU.1003.87;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-04-04;4;4;1964;;;NO;GREGORIAN;;;;Cianjur, West Java;ID;INDONESIA;348;EN;;amendment;commission;2003-02-04;2003-02-04;215/2003 (OJ L28);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:028:0041:0042:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1003;EU.1003.87;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;102;EN;;amendment;commission;2003-02-04;2003-02-04;215/2003 (OJ L28);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:028:0041:0042:EN:PDF +28/10/2022;1004;EU.1010.96;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;Abdurrahman;Mohamad Iqbal;;Mohamad Iqbal Abdurrahman;;M;;;2109;EN;;amendment;commission;2003-02-04;2003-02-04;215/2003 (OJ L28);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:028:0041:0042:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1004;EU.1010.96;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;Rahman;Mohamad Iqbal;;Mohamad Iqbal Rahman;;;;;2111;EN;;amendment;commission;2003-02-04;2003-02-04;215/2003 (OJ L28);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:028:0041:0042:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1004;EU.1010.96;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;A Rahman;Mohamad Iqbal;;Mohamad Iqbal A Rahman;;;;;2112;EN;;amendment;commission;2003-02-04;2003-02-04;215/2003 (OJ L28);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:028:0041:0042:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1004;EU.1010.96;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;Abu Jibril Abdurrahman;;;;;2113;EN;;amendment;commission;2003-02-04;2003-02-04;215/2003 (OJ L28);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:028:0041:0042:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1004;EU.1010.96;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;Fikiruddin Muqti;;;;;2114;EN;;amendment;commission;2003-02-04;2003-02-04;215/2003 (OJ L28);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:028:0041:0042:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1004;EU.1010.96;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;Fihiruddin Muqti;;;;;2115;EN;;amendment;commission;2003-02-04;2003-02-04;215/2003 (OJ L28);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:028:0041:0042:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1004;EU.1010.96;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;Abdul Rahman;Mohamad Iqbal;;Mohamad Iqbal Abdul Rahman;;;;;12734;EN;;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1004;EU.1010.96;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;Tangerang;Jalan Nakula, Komplek Witana Harja III Blok C 106-107;;;;;NO;;ID;INDONESIA;1924;EN;;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1004;EU.1010.96;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-08-17;17;8;1958;;;NO;GREGORIAN;;;;Tirpas-Selong Village, East Lombok;ID;INDONESIA;349;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1004;EU.1010.96;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-08-17;17;8;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;1618;EN;;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1004;EU.1010.96;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Korleko-Lombok Timur;ID;INDONESIA;1619;EN;;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1004;EU.1010.96;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3603251708570001 (id-National identification card) (no: (national identification number));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;603;EN;no: (national identification number);amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;; +28/10/2022;1004;EU.1010.96;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;103;EN;;amendment;commission;2003-02-04;2003-02-04;215/2003 (OJ L28);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:028:0041:0042:EN:PDF +28/10/2022;1006;EU.1014.53;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Lashkar i Jhangvi;;;;;2116;EN;;amendment;commission;2003-02-08;2003-02-07;244/2003 (OJ L33);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:033:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ansar al-Islam;;;;;2124;EN;;amendment;commission;2003-02-26;2003-02-25;350/2003 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:051:0019:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Jund al-Islam;;;;;2126;EN;;amendment;commission;2003-02-26;2003-02-25;350/2003 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:051:0019:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Soldiers of Islam;;;;;2127;EN;;amendment;commission;2003-02-26;2003-02-25;350/2003 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:051:0019:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Kurdistan Supporters of Islam;;;;;2128;EN;;amendment;commission;2003-02-26;2003-02-25;350/2003 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:051:0019:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Supporters of Islam in Kurdistan;;;;;2129;EN;;amendment;commission;2003-02-26;2003-02-25;350/2003 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:051:0019:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Followers of Islam in Kurdistan;;;;;2130;EN;;amendment;commission;2003-02-26;2003-02-25;350/2003 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:051:0019:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Soldados del Islam;ES;;;;2133;EN;;amendment;commission;2003-02-26;2003-02-25;350/2003 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:051:0019:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Simpatizantes kurdos del Islam;ES;;;;2134;EN;;amendment;commission;2003-02-26;2003-02-25;350/2003 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:051:0019:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Simpatizantes del Islam en Kurdistán;ES;;;;2135;EN;;amendment;commission;2003-02-26;2003-02-25;350/2003 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:051:0019:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Seguidores del Islam en Kurdistán;ES;;;;2136;EN;;amendment;commission;2003-02-26;2003-02-25;350/2003 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:051:0019:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Soldados do Islão;PT;;;;2145;EN;;amendment;commission;2003-02-26;2003-02-25;350/2003 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:051:0019:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Apoiantes Curdos do Islão;PT;;;;2146;EN;;amendment;commission;2003-02-26;2003-02-25;350/2003 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:051:0019:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Apoiantes do Islão no Curdistão;PT;;;;2147;EN;;amendment;commission;2003-02-26;2003-02-25;350/2003 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:051:0019:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Seguidores do Islão no Curdistão;PT;;;;2148;EN;;amendment;commission;2003-02-26;2003-02-25;350/2003 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:051:0019:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Devotees of Islam;;;;;2643;EN;;amendment;commission;2004-04-08;2004-04-07;667/2004 (OJ L104);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:104:0110:0111:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Kurdish Taliban;;;;;2644;EN;;amendment;commission;2004-04-08;2004-04-07;667/2004 (OJ L104);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:104:0110:0111:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Soldiers of God;;;;;2645;EN;;amendment;commission;2004-04-08;2004-04-07;667/2004 (OJ L104);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:104:0110:0111:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ansar al-Sunna Army;;;;;2646;EN;;amendment;commission;2004-04-08;2004-04-07;667/2004 (OJ L104);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:104:0110:0111:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Jaish Ansar al-Sunna;;;;;2647;EN;;amendment;commission;2004-04-08;2004-04-07;667/2004 (OJ L104);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:104:0110:0111:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ansar al-Sunna;;;;;2648;EN;;amendment;commission;2004-04-08;2004-04-07;667/2004 (OJ L104);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:104:0110:0111:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Devotos del Islam;ES;;;;2649;EN;;amendment;commission;2004-04-08;2004-04-07;667/2004 (OJ L104);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:104:0110:0111:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Talibanes kurdos;ES;;;;2650;EN;;amendment;commission;2004-04-08;2004-04-07;667/2004 (OJ L104);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:104:0110:0111:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Soldados de Dios;ES;;;;2651;EN;;amendment;commission;2004-04-08;2004-04-07;667/2004 (OJ L104);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:104:0110:0111:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ejército Ansar al-Sunna;ES;;;;2652;EN;;amendment;commission;2004-04-08;2004-04-07;667/2004 (OJ L104);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:104:0110:0111:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Devotos do Islão;PT;;;;2658;EN;;amendment;commission;2004-04-08;2004-04-07;667/2004 (OJ L104);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:104:0110:0111:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Soldados de Deus;PT;;;;2660;EN;;amendment;commission;2004-04-08;2004-04-07;667/2004 (OJ L104);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:104:0110:0111:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Exército Ansar al-Sunna;PT;;;;2661;EN;;amendment;commission;2004-04-08;2004-04-07;667/2004 (OJ L104);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:104:0110:0111:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Поданици на исляма;BG;;;;7432;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Войници на исляма;BG;;;;7433;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Кюрдски поддръжници на исляма;BG;;;;7434;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Поддръжници на исляма в Кюрдистан;BG;;;;7435;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Последователи на исляма в Кюрдистан;BG;;;;7436;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Кюрдски талибани;BG;;;;7437;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Войници на бог;BG;;;;7438;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1008;EU.888.32;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;IQ;IRAQ;329;EN;;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1010;EU.1039.74;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Islamic International Brigade;;;;;2151;EN;;amendment;commission;2003-03-06;2003-03-05;414/2003 (OJ L62);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:062:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1010;EU.1039.74;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;the Islamic Peacekeeping Brigade;;;;;2152;EN;;amendment;commission;2003-03-06;2003-03-05;414/2003 (OJ L62);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:062:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1010;EU.1039.74;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;the Islamic Peacekeeping Army;;;;;2153;EN;;amendment;commission;2003-03-06;2003-03-05;414/2003 (OJ L62);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:062:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1010;EU.1039.74;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Islamic Peacekeeping Battalion;;;;;2154;EN;;amendment;commission;2003-03-06;2003-03-05;414/2003 (OJ L62);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:062:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1010;EU.1039.74;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;International Battalion;;;;;2155;EN;;amendment;commission;2003-03-06;2003-03-05;414/2003 (OJ L62);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:062:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1010;EU.1039.74;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Islamic Peacekeeping International Brigade;;;;;2156;EN;;amendment;commission;2003-03-06;2003-03-05;414/2003 (OJ L62);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:062:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1010;EU.1039.74;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;the International Brigade;;;;;2157;EN;;amendment;commission;2003-03-06;2003-03-05;414/2003 (OJ L62);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:062:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1010;EU.1039.74;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Brigada Internacional Islámica;ES;;;;2158;EN;;amendment;commission;2003-03-06;2003-03-05;414/2003 (OJ L62);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:062:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1010;EU.1039.74;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Islamic Peacekeeping Brigade;NL;;;;2159;EN;;amendment;commission;2003-03-06;2003-03-05;414/2003 (OJ L62);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:062:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1010;EU.1039.74;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Islamic Peacekeeping Army;NL;;;;2160;EN;;amendment;commission;2003-03-06;2003-03-05;414/2003 (OJ L62);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:062:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1010;EU.1039.74;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;International Brigade;NL;;;;2161;EN;;amendment;commission;2003-03-06;2003-03-05;414/2003 (OJ L62);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:062:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1010;EU.1039.74;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Brigada Internacional Islâmica;PT;;;;2162;EN;;amendment;commission;2003-03-06;2003-03-05;414/2003 (OJ L62);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:062:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1011;EU.1053.92;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Special Purpose Islamic Regiment;;;;;2163;EN;;amendment;commission;2003-03-06;2003-03-05;414/2003 (OJ L62);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:062:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1011;EU.1053.92;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;The Islamic Special Purpose Regiment;;;;;2164;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1011;EU.1053.92;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;The al-Jihad-Fisi-Sabililah Special Islamic Regiment;;;;;2165;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1011;EU.1053.92;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Islamic Regiment of Special Meaning;;;;;4845;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1011;EU.1053.92;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;SPIR;;;;;4846;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1011;EU.1053.92;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Regimento Islâmico de Operações Especiais;PT;;;;4875;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1011;EU.1053.92;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Regimento Islâmico Especial al-Jihad-Fisi-Sabililah;PT;;;;4876;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1011;EU.1053.92;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Regimento Islâmico de Significado Especial;PT;;;;4877;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1012;EU.1013.88;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs;;;;;2170;EN;;amendment;commission;2003-03-06;2003-03-05;414/2003 (OJ L62);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:062:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1012;EU.1013.88;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Riyadus-Salikhin Reconnaissance and Sabotage Battalion;;;;;2171;EN;;amendment;commission;2003-03-06;2003-03-05;414/2003 (OJ L62);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:062:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1012;EU.1013.88;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Riyadh-as-Saliheen;;;;;2172;EN;;amendment;commission;2003-03-06;2003-03-05;414/2003 (OJ L62);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:062:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1012;EU.1013.88;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;The Sabotage and Military Surveillance Group of the Riyadh al-Salihin Martyrs;;;;;2173;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1012;EU.1013.88;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Firqat al-Takhrib wa al-Istitla al-Askariyah li Shuhada Riyadh al-Salihin;;;;;2174;EN;;amendment;commission;2003-03-06;2003-03-05;414/2003 (OJ L62);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:062:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1012;EU.1013.88;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Riyadu-Salikhin Reconnaissance and Sabotage battalion of Shahids (Martyrs);;;;;4843;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1012;EU.1013.88;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;RSRSBCM;;;;;4844;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1012;EU.1013.88;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Batalhão de Reconhecimento e Sabotagem dos Mártires Chechenos Riyadus-Salikhin;PT;;;;4871;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1012;EU.1013.88;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Batalhão de Reconhecimento e Sabotagem Riyadus-Salikhin;PT;;;;4872;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1012;EU.1013.88;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Grupo de Sabotagem e de Vigilância Militar dos Mártires Riyadh al-Salihin;PT;;;;4873;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1012;EU.1013.88;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Batalhão de Reconhecimento e Sabotagem dos Shahids (Mártires) Riyadu-Salikhin;PT;;;;4874;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1016;EU.1042.29;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Al-Amdouni;Mehrez;Ben Mahmoud Ben Sassi;Mehrez Ben Mahmoud Ben Sassi Al-Amdouni;;M;;;2190;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1016;EU.1042.29;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Fusco;Fabio;;Fabio Fusco;;;;;2191;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1016;EU.1042.29;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Mohamed Hassan;;;;;2192;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1016;EU.1042.29;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Abu Thale;;;;;2193;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1016;EU.1042.29;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Meherez Hamdouni;;;;;12578;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1016;EU.1042.29;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Amdouni Mehrez ben Tah;;;;;12579;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1016;EU.1042.29;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Meherez ben Ahdoud ben Amdouni;;;;;12580;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1016;EU.1042.29;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;IT;ITALY;1907;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1016;EU.1042.29;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-12-18;18;12;1969;;;NO;GREGORIAN;;;;Asima-Tunis;TN;TUNISIA;354;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1016;EU.1042.29;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-05-25;25;5;1968;;;NO;GREGORIAN;;;;Naples / Napoli;IT;ITALY;1583;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1016;EU.1042.29;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-05-25;25;5;1968;;;NO;GREGORIAN;;;;;DZ;ALGERIA;1584;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1016;EU.1042.29;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-07-14;14;7;1969;;;NO;GREGORIAN;;;;;TN;TUNISIA;1585;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1016;EU.1042.29;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-12-18;18;12;1968;;;NO;GREGORIAN;;;;;TN;TUNISIA;1614;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1016;EU.1042.29;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"G737411 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;TN;;151;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;; +28/10/2022;1016;EU.1042.29;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;292;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;Dumont;Lionel;;Lionel Dumont;;M;;;2198;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Bilal;;;;;2199;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Abu Hamza;;;;;2200;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;Brougere;Jacques;;Jacques Brougere;;;;;2201;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Di Karlo Antonio;;;;;3607;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Merlin Oliver Christian Rene;;;;;3608;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Arfauni Imad Ben Yousset Hamza;;;;;3609;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Imam Ben Yussuf Arfaj;;;;;3610;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Abou Hamza;;;;;5785;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Arfauni Imad;;;;;5786;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Hamza;;;;;5787;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Koumkal;;;;;5788;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Kumkal;;;;;5789;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Merlin;;;;;5790;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Tinet;;;;;5791;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Brugere;;;;;5792;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Dimon;;;;;5793;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;FR;FRANCE;1577;EN;;amendment;commission;2010-09-04;2010-09-03;787/2010 (OJ L234);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:234:0011:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-01-29;29;1;1971;;;NO;GREGORIAN;;;;Roubaix;FR;FRANCE;902;EN;;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1019;EU.3401.19;;2003-06-25;;(Date of UN designation: 2003-06-25)\n(In custody in France as of May 2004.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;FR;;562;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF +28/10/2022;1020;EU.1051.65;;2003-06-25;;(Date of UN designation: 2003-06-25);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;Essaadi;Moussa;Ben Omar Ben Ali;Moussa Ben Omar Ben Ali Essaadi;;M;;;2202;EN;;amendment;commission;2007-11-01;2007-10-31;1291/2007 (OJ L287);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:287:0012:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1020;EU.1051.65;;2003-06-25;;(Date of UN designation: 2003-06-25);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Dah Dah;;;;;2203;EN;low quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1020;EU.1051.65;;2003-06-25;;(Date of UN designation: 2003-06-25);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Abdelrahmman;;;;;2204;EN;low quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1020;EU.1051.65;;2003-06-25;;(Date of UN designation: 2003-06-25);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Bechir;;;;;2205;EN;low quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1020;EU.1051.65;;2003-06-25;;(Date of UN designation: 2003-06-25);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;موسى بن عمر بن علي السعدي;;;;;125584;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1020;EU.1051.65;;2003-06-25;;(Date of UN designation: 2003-06-25);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Left Sudan to Tunisia in 2011);TN;TUNISIA;2355;EN;Left Sudan to Tunisia in 2011;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1020;EU.1051.65;;2003-06-25;;(Date of UN designation: 2003-06-25);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-12-04;4;12;1964;;;NO;GREGORIAN;;;;Tabarka;TN;TUNISIA;358;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1020;EU.1051.65;;2003-06-25;;(Date of UN designation: 2003-06-25);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;L335915 (passport-National passport) (on 1996-11-08 valid to 2001-11-07)[known to be expired](Tunisian passport issued in Milan, Italy);NO;YES;NO;NO;NO;;1996-11-08;;2001-11-07;;;passport;National passport;;TN;;174;EN;Tunisian passport issued in Milan, Italy;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;; +28/10/2022;1020;EU.1051.65;;2003-06-25;;(Date of UN designation: 2003-06-25);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;324;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF +28/10/2022;1037;EU.1033.90;;;;;P;person;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;Dwikarna;Agus;;Agus Dwikarna;;M;;;2274;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1037;EU.1033.90;;;;;P;person;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-08-11;11;8;1964;;;NO;GREGORIAN;;;;Makassar, South Sulawesi;ID;INDONESIA;373;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1037;EU.1033.90;;;;;P;person;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;XD253038 (travelcardid-Temporary Travel Document) ((indonesian travel document number));NO;NO;NO;NO;NO;;;;;;;travelcardid;Temporary Travel Document;;ID;;869;EN;(indonesian travel document number);amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;1037;EU.1033.90;;;;;P;person;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;109;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF +28/10/2022;1040;EU.1006.79;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;JULKIPLI;Salim Y Salamuddin;;Salim Y Salamuddin JULKIPLI;;M;;;2284;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1040;EU.1006.79;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Kipli Sali;;;;;2285;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1040;EU.1006.79;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Julkipli Salim;;;;;2286;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1040;EU.1006.79;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-06-20;20;6;1967;;;NO;GREGORIAN;;;;Tulay, Jolo Sulu;PH;PHILIPPINES;377;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1040;EU.1006.79;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PH;;555;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF +28/10/2022;1064;EU.1048.13;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;Munandar;Aris;;Aris Munandar;;M;;;2294;EN;;amendment;commission;2005-09-23;2005-09-22;1551/2005 (OJ L247);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:247:0030:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1064;EU.1048.13;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;1968;YES;GREGORIAN;;;;Sambi, Boyolali, Java;ID;INDONESIA;382;EN;;amendment;commission;2005-09-23;2005-09-22;1551/2005 (OJ L247);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:247:0030:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1064;EU.1048.13;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-01-01;1;1;1971;;;NO;GREGORIAN;;;;Sambi, Boyolali, Java;ID;INDONESIA;835;EN;;amendment;commission;2006-10-12;2006-10-11;1508/2006 (OJ L280);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:280:0012:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1064;EU.1048.13;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;834;EN;;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN +28/10/2022;1065;EU.1026.81;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;MURAD;Abdul Hakim;;Abdul Hakim MURAD;;M;;;2295;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1065;EU.1026.81;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Murad;Abdul Hakim Hasim;;Abdul Hakim Hasim Murad;;;;;2296;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1065;EU.1026.81;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Murad;Abdul Hakim Ali Hashim;;Abdul Hakim Ali Hashim Murad;;;;;2297;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1065;EU.1026.81;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Saeed Akman;;;;;2299;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1065;EU.1026.81;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Saeed Ahmed;;;;;2300;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1065;EU.1026.81;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Murad;Abdul Hakim Ali al-Hashem;;Abdul Hakim Ali al-Hashem Murad;;;;;12595;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1065;EU.1026.81;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Murad;Abdul Hakim al Hashim;;Abdul Hakim al Hashim Murad;;;;;12596;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1065;EU.1026.81;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-04-11;11;4;1968;;;NO;GREGORIAN;;;;;KW;KUWAIT;1591;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1065;EU.1026.81;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;665334 (passport-National passport) ((pakistani passport issued in kuwait));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;PK;;596;EN;(pakistani passport issued in kuwait);amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;; +28/10/2022;1065;EU.1026.81;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;917739 (passport-National passport) [known to be expired](pakistani passport issued in pakistan on 1991-09-08, expired on 1996-08-07);NO;YES;NO;NO;NO;;;;;;;passport;National passport;;PK;;597;EN;pakistani passport issued in pakistan on 1991-09-08, expired on 1996-08-07;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;; +28/10/2022;1065;EU.1026.81;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;116;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF +28/10/2022;1067;EU.1035.20;;;;;P;person;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;SIREGAR;Parlindungan;;Parlindungan SIREGAR;;M;;;2310;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1067;EU.1035.20;;;;;P;person;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;Siregar;Parlin;;Parlin Siregar;;;;;2312;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1067;EU.1035.20;;;;;P;person;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;Siregar;Saleh Parlindungan;;Saleh Parlindungan Siregar;;;;;2313;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1067;EU.1035.20;;;;;P;person;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-04-25;25;4;1957;;;NO;GREGORIAN;;;;;ID;INDONESIA;385;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1067;EU.1035.20;;;;;P;person;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-04-25;25;4;1967;;;NO;GREGORIAN;;;;;ID;INDONESIA;386;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1067;EU.1035.20;;;;;P;person;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;117;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF +28/10/2022;1068;EU.4055.25;;;;(Date of listing: 09/09/2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;Sufaat;Yazid;;Yazid Sufaat;;;;;2314;EN;;amendment;commission;2008-03-12;2008-03-11;220/2008 (OJ L68);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0011:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1068;EU.4055.25;;;;(Date of listing: 09/09/2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Joe;;;;;2315;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1068;EU.4055.25;;;;(Date of listing: 09/09/2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Abu Zufar;;;;;2316;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1068;EU.4055.25;;;;(Date of listing: 09/09/2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;Selangor;Taman Bukit Ampang;;;;;NO;((prevoius address));MY;MALAYSIA;354;EN;(prevoius address);amendment;commission;2016-10-15;2016-10-16;2016/1827 (OJ L279);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1068;EU.4055.25;;;;(Date of listing: 09/09/2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(In prison since 2013.);MY;MALAYSIA;109828;EN;In prison since 2013.;amendment;commission;2016-10-15;2016-10-16;2016/1827 (OJ L279);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1068;EU.4055.25;;;;(Date of listing: 09/09/2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-01-20;20;1;1964;;;NO;GREGORIAN;;;;Johor;MY;MALAYSIA;387;EN;;amendment;commission;2008-03-12;2008-03-11;220/2008 (OJ L68);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0011:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1068;EU.4055.25;;;;(Date of listing: 09/09/2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"A 10472263 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;33;EN;;amendment;commission;2008-03-12;2008-03-11;220/2008 (OJ L68);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0011:0013:EN:PDF;;;;;;;;;;;;; +28/10/2022;1068;EU.4055.25;;;;(Date of listing: 09/09/2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"640120-01-5529 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;62;EN;;amendment;commission;2008-03-12;2008-03-11;220/2008 (OJ L68);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0011:0013:EN:PDF;;;;;;;;;;;;; +28/10/2022;1068;EU.4055.25;;;;(Date of listing: 09/09/2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MY;;118;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF +28/10/2022;1069;EU.1001.60;;2003-09-09;;(Date of UN designation: 2003-09-09);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;Syawal;Yassin;;Yassin Syawal;;M;;;2317;EN;At large as of December 2003;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1069;EU.1001.60;;2003-09-09;;(Date of UN designation: 2003-09-09);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Salim Yasin;;;;;2318;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1069;EU.1001.60;;2003-09-09;;(Date of UN designation: 2003-09-09);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Yasin Mahmud Mochtar;;;;;2319;EN;;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1069;EU.1001.60;;2003-09-09;;(Date of UN designation: 2003-09-09);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Abdul Hadi Yasin;;;;;2320;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1069;EU.1001.60;;2003-09-09;;(Date of UN designation: 2003-09-09);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Muhamad Mubarok;;;;;2321;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1069;EU.1001.60;;2003-09-09;;(Date of UN designation: 2003-09-09);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Muhammad Syawal;;;;;2322;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1069;EU.1001.60;;2003-09-09;;(Date of UN designation: 2003-09-09);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Abu Seta;;;;;2323;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1069;EU.1001.60;;2003-09-09;;(Date of UN designation: 2003-09-09);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Mahmud;;;;;2324;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1069;EU.1001.60;;2003-09-09;;(Date of UN designation: 2003-09-09);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Abu Muamar;;;;;2325;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1069;EU.1001.60;;2003-09-09;;(Date of UN designation: 2003-09-09);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Yassin Sywal;;;;;18469;EN;;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1069;EU.1001.60;;2003-09-09;;(Date of UN designation: 2003-09-09);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Mubarok;;;;;18470;EN;;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1069;EU.1001.60;;2003-09-09;;(Date of UN designation: 2003-09-09);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-09-03;3;9;1962;;;NO;GREGORIAN;;;;Makassar;ID;INDONESIA;388;EN;;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1069;EU.1001.60;;2003-09-09;;(Date of UN designation: 2003-09-09);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;119;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF +28/10/2022;1071;EU.4045.24;;;;(Date of listing: 9.9.2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;Yunos;Mukhlis;;Mukhlis Yunos;;M;;;2330;EN;;amendment;commission;2005-09-23;2005-09-22;1551/2005 (OJ L247);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:247:0030:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1071;EU.4045.24;;;;(Date of listing: 9.9.2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;Yunos;Muklis;;Muklis Yunos;;;;;2331;EN;;amendment;commission;2003-09-13;2003-09-12;1607/2003 (OJ L229);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:229:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1071;EU.4045.24;;;;(Date of listing: 9.9.2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;Yunos;Saifullah;Mukhlis;Saifullah Mukhlis Yunos;;;;;2332;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1071;EU.4045.24;;;;(Date of listing: 9.9.2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;Yunos;Saifulla;Moklis;Saifulla Moklis Yunos;;;;;7359;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1071;EU.4045.24;;;;(Date of listing: 9.9.2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Hadji Onos;;;;;7360;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1071;EU.4045.24;;;;(Date of listing: 9.9.2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;Moklis;Yunos;Umpara;Yunos Umpara Moklis;;;;;7480;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1071;EU.4045.24;;;;(Date of listing: 9.9.2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;PH;PHILIPPINES;1913;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1071;EU.4045.24;;;;(Date of listing: 9.9.2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-07-07;7;7;1966;;;NO;GREGORIAN;;;;Lanao del Sur;PH;PHILIPPINES;390;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1071;EU.4045.24;;;;(Date of listing: 9.9.2003);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PH;;685;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Moustfa;Djamel;;Djamel Moustfa;;M;;;2363;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Barkani;Ali;;Ali Barkani;;;;;2364;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Belkasam;Kalad;;Kalad Belkasam;;;;;2365;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Djamel;Mostafa;;Mostafa Djamel;;;;;2366;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Djamel;Mostefa;;Mostefa Djamel;;;;;2367;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Djamel;Mustafa;;Mustafa Djamel;;;;;2368;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Kalad;Balkasam;;Balkasam Kalad;;;;;2369;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Kalad;Bekasam;;Bekasam Kalad;;;;;2370;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Kalad;Belkasam;;Belkasam Kalad;;;;;2371;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Mostafa;Damel;;Damel Mostafa;;;;;2372;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Mostafa;Djamal;;Djamal Mostafa;;;;;2373;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Mostafa;Djamel;;Djamel Mostafa;;;;;2374;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Moustfa;Fjamel;;Fjamel Moustfa;;;;;2375;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Mustafa;Djamel;;Djamel Mustafa;;;;;2376;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Mustafa;;;;;2377;EN;;amendment;commission;2003-09-30;2003-09-29;1724/2003 (OJ L247);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:247:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Mostefa;Djamel;;Djamel Mostefa;;;;;2379;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;DZ;ALGERIA;1923;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-08-22;22;8;1973;;;NO;GREGORIAN;;;;;MA;MOROCCO;405;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-12-31;31;12;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;406;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-12-31;31;12;1979;;;NO;GREGORIAN;;;;Maskara;DZ;ALGERIA;407;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-09-26;26;9;1973;;;NO;GREGORIAN;;;;Mahdia;DZ;ALGERIA;408;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-12-31;31;12;1979;;;NO;GREGORIAN;;;;Mascara;DZ;ALGERIA;409;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-08-26;26;8;1973;;;NO;GREGORIAN;;;;Algiers;DZ;ALGERIA;410;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-12-31;31;12;1979;;;NO;GREGORIAN;;;;Algiers;DZ;ALGERIA;411;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-06-10;10;6;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;412;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-09-28;28;9;1973;;;NO;GREGORIAN;;;;Tiaret;DZ;ALGERIA;413;EN;;amendment;commission;2007-09-26;2007-09-25;1104/2007 (OJ L250);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32007R1104&rid=2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-12-22;22;12;1973;;;NO;GREGORIAN;;;;Algiers;DZ;ALGERIA;1592;EN;djamel mostafa;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20645897 (drivinglicence-Driving licence) [known to be false];NO;NO;YES;NO;NO;;;;;;;drivinglicence;Driving licence;;DK;;42;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;; +28/10/2022;1077;EU.1034.55;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;125;EN;;amendment;commission;2003-09-30;2003-09-29;1724/2003 (OJ L247);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:247:0018:0019:EN:PDF +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;Kaskar;Dawood;Ibrahim;Dawood Ibrahim Kaskar;;M;Sheikh;;2392;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Dawood Ebrahim;;;;;2393;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Sheikh Dawood Hassan;;;;;2394;EN;;amendment;commission;2003-11-13;2003-11-12;1991/2003 (OJ L295);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:295:0081:0082:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Hizrat;;;;;4864;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Abdul Hamid Abdul Aziz;;;;;5800;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Anis Ibrahim;;;;;5801;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Aziz Dilip;;;;;5802;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Daud Hasan Shaikh Ibrahim Kaskar;;;;;5803;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Daud Ibrahim Memon Kaskar;;;;;5804;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Dawood Hasan Ibrahim Kaskar;;;;;5805;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Dawood Ibrahim Memon;;;;;5806;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Dawood Sabri;;;;;5807;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Kaskar Dawood Hasan;;;;;5808;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Shaikh Mohd Ismail Abdul Rehman;;;;;5809;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Dowood Hassan Shaikh Ibrahim;;;;;5810;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Ibrahim Shaikh Mohd Anis;;;;;5811;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Shaikh Ismail Abdul;;;;;5812;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Haji Sahab;EN;;;;109372;EN;;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Mucchad;EN;;;;109373;EN;;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Iqbal Bhai;EN;;;;109374;EN;;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Bada Bhai;EN;;;;109375;EN;;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Bada Seth;EN;;;;109376;EN;;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Sheikh Farooqi;EN;;;;109377;EN;;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;Dawood Bhai;EN;;;;109378;EN;;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;Karachi;White House, Near Saudi Mosque, Clifton;;;;;NO;;PK;PAKISTAN;1035;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;Karachi;House No 37 – 30th Street – defence, Housing Authority;;;;;NO;;PK;PAKISTAN;1036;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;Palatial bungalow in the hilly area of Noorabad in Karachi;;;;;;NO;;PK;PAKISTAN;109379;EN;;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-12-26;26;12;1955;;;NO;GREGORIAN;;;;Kher, Ratnagiri, Maharashtra;IN;INDIA;417;EN;;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A-333602 (passport-National passport) (issued by Bombay on 1985-06-04)[revoked by issuer](Passport has been revoked by the Government of India);NO;NO;NO;NO;YES;Bombay;1985-06-04;;;;;passport;National passport;;IN;;51;EN;Passport has been revoked by the Government of India;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;M110522 (passport-National passport) (issued by Bombay on 1978-11-13);NO;NO;NO;NO;NO;Bombay;1978-11-13;;;;;passport;National passport;;IN;;245;EN;;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;R841697 (passport-National passport) (issued by Bombay on 1981-11-26);NO;NO;NO;NO;NO;Bombay;1981-11-26;;;;;passport;National passport;;IN;;246;EN;;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;F823692 (passport-National passport) (issued by CGI in Jeddah on 1989-09-02 in JEDDAH);NO;NO;NO;NO;NO;CGI in Jeddah;1989-09-02;;;;;passport;National passport;JEDDAH;IN;;247;EN;;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A501801 (passport-National passport) (on 1985-07-26 in BOMBAY);NO;NO;NO;NO;NO;;1985-07-26;;;;;passport;National passport;BOMBAY;IN;;248;EN;;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;K560098 (passport-National passport) (issued by BOMBAY on 1975-07-30 in BOMBAY);NO;NO;NO;NO;NO;BOMBAY;1975-07-30;;;;;passport;National passport;BOMBAY;IN;;249;EN;;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V57865 (passport-National passport) (on 1983-10-03 in BOMBAY);NO;NO;NO;NO;NO;;1983-10-03;;;;;passport;National passport;BOMBAY;IN;;250;EN;;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;P537849 (passport-National passport) (on 1979-07-30 in BOMBAY);NO;NO;NO;NO;NO;;1979-07-30;;;;;passport;National passport;BOMBAY;00;;251;EN;;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A717288 (passport-National passport) (on 1985-08-18 in Dubai)(MISUSE);NO;NO;NO;NO;NO;;1985-08-18;;;;;passport;National passport;Dubai;AE;;252;EN;MISUSE;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;G866537 (passport-National passport) (on 1991-08-12 in Rawalpindi)(misuse);NO;NO;NO;NO;NO;;1991-08-12;;;;;passport;National passport;Rawalpindi;PK;;253;EN;misuse;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;C-267185 (passport-National passport) (in Karachi)(issued July 1996);NO;NO;NO;NO;NO;;;;;;;passport;National passport;Karachi;PK;;436;EN;issued July 1996;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;H-123259 (passport-National passport) (in Rawalpindi)(issued in rawalpindi july 2001);NO;NO;NO;NO;NO;;;;;;;passport;National passport;Rawalpindi;00;;437;EN;issued in rawalpindi july 2001;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;G-869537 (passport-National passport) ((issued in rawalpindi));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;438;EN;(issued in rawalpindi);amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"KC-285901 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;439;EN;;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;; +28/10/2022;1079;EU.3510.20;;2003-11-03;;(Date of UN designation: 2003-11-03)\n((a) Passport No A-333602 has been revoked by the Government of India, (b) Father's name is Sheikh Ibrahim Ali Kaskar, mother's name is Amina Bi, wife's name is Mehjabeen Shaikh.);P;person;amendment;commission;2016-08-27;2016-08-28;2016/1430 (OJ L232);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1430&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IN;;130;EN;;amendment;commission;2003-11-13;2003-11-12;1991/2003 (OJ L295);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:295:0081:0082:EN:PDF +28/10/2022;1082;EU.935.11;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;BELMOKHTAR;Mokhtar;;Mokhtar BELMOKHTAR;;;;;102306;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1082;EU.935.11;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;Abou Abbes Khaled;;;;;5756;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1082;EU.935.11;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;Belaouar Khaled Abou El Abass;;;;;5757;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1082;EU.935.11;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;Belaouer Khaled Abou El Abass;;;;;5758;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1082;EU.935.11;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Belmokhtar;Khaled;Abou El Abes;Khaled Abou El Abes Belmokhtar;;;;;5759;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1082;EU.935.11;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;Khaled Abou El Abass;;;;;5760;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1082;EU.935.11;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;Khaled Abou El Abbes;;;;;5761;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1082;EU.935.11;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;Khaled Abou El Abes;;;;;5762;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1082;EU.935.11;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;Khaled Abulabbas Na Oor;;;;;5763;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1082;EU.935.11;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Belmukhtar;Mukhtar;;Mukhtar Belmukhtar;;;;;5764;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1082;EU.935.11;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;Belaoua;;;;;5765;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1082;EU.935.11;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;Belaour;;;;;5766;EN;;amendment;commission;2007-07-18;2007-07-17;844/2007 (OJ L186);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:186:0024:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1082;EU.935.11;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-06-01;1;6;1972;;;NO;GREGORIAN;;;;Ghardaia;DZ;ALGERIA;422;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1082;EU.935.11;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;509;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Zarga;;;;;2428;EN;low quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Nadra;;;;;2429;EN;low quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Imed Ben Mekki Zarkaoui;;;;;12707;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Dour Nadre;;;;;12709;EN;good quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Daour Nadre;;;;;12710;EN;good quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Imad ben al-Mekki ben al-Akhdar al-Zarkaoui;;;;;12712;EN;"good quality alias; as previously listed";amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;عماد بن مكي زرقاوي;;;;;125587;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;Pré Saint Gervais;41-45, Rue Estienne d’Orves;;;;;NO;;FR;FRANCE;1917;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-01-15;15;1;1973;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;424;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-01-15;15;1;1974;;;NO;GREGORIAN;;;;;MA;MOROCCO;1603;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-01-15;15;1;1973;;;NO;GREGORIAN;;;;;MA;MOROCCO;1604;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-03-31;31;3;1975;;;NO;GREGORIAN;;;;;DZ;ALGERIA;1605;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-03-31;31;3;1975;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;125597;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-03-31;31;3;1975;;;NO;GREGORIAN;;;;;MA;MOROCCO;125598;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-01-15;15;1;1974;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;125599;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-01-15;15;1;1974;;;NO;GREGORIAN;;;;;DZ;ALGERIA;125600;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-01-15;15;1;1973;;;NO;GREGORIAN;;;;;DZ;ALGERIA;125601;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;M174950 (passport-National passport) (on 1999-04-27 valid to 2004-04-26)[known to be expired];NO;YES;NO;NO;NO;;1999-04-27;;2004-04-26;;;passport;National passport;;TN;;175;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;; +28/10/2022;1084;EU.909.23;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(Mother's name is Zina al-Zarkaoui);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;325;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF +28/10/2022;1085;EU.955.38;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khamisah al-Kathiri; (b) Deported from Italy to Tunisia on 6.5.2015.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;Al-Hamraoui;Kamal;Ben Maoeldi Ben Hassan;Kamal Ben Maoeldi Ben Hassan Al-Hamraoui;;M;;;2430;EN;;amendment;commission;2006-08-10;2006-08-09;1210/2006 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:219:0014:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1085;EU.955.38;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khamisah al-Kathiri; (b) Deported from Italy to Tunisia on 6.5.2015.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Kamel;;;;;2431;EN;low quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1085;EU.955.38;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khamisah al-Kathiri; (b) Deported from Italy to Tunisia on 6.5.2015.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Kimo;;;;;2432;EN;low quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1085;EU.955.38;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khamisah al-Kathiri; (b) Deported from Italy to Tunisia on 6.5.2015.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Hamroui Kamel ben Mouldi;;;;;12717;EN;qood quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1085;EU.955.38;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khamisah al-Kathiri; (b) Deported from Italy to Tunisia on 6.5.2015.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Hamraoui Kamel;;;;;12718;EN;good quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1085;EU.955.38;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khamisah al-Kathiri; (b) Deported from Italy to Tunisia on 6.5.2015.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;كمال بن المولدي بن حسن الحمراوي;;;;;125593;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1085;EU.955.38;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khamisah al-Kathiri; (b) Deported from Italy to Tunisia on 6.5.2015.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;Cremona;Via Bertesi 27;;;;;NO;;IT;ITALY;374;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1085;EU.955.38;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khamisah al-Kathiri; (b) Deported from Italy to Tunisia on 6.5.2015.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;Cremona;Via Plebiscito 3;;;;;NO;;IT;ITALY;375;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1085;EU.955.38;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khamisah al-Kathiri; (b) Deported from Italy to Tunisia on 6.5.2015.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-10-21;21;10;1977;;;NO;GREGORIAN;;;;Beja;TN;TUNISIA;425;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1085;EU.955.38;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khamisah al-Kathiri; (b) Deported from Italy to Tunisia on 6.5.2015.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-11-21;21;11;1977;;;NO;GREGORIAN;;;;;MA;MOROCCO;1607;EN;hamraoui kamel;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1085;EU.955.38;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khamisah al-Kathiri; (b) Deported from Italy to Tunisia on 6.5.2015.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-10-21;21;10;1977;;;NO;GREGORIAN;;;;;TN;TUNISIA;1608;EN;hamraoui kamel;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1085;EU.955.38;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khamisah al-Kathiri; (b) Deported from Italy to Tunisia on 6.5.2015.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-11-21;21;11;1977;;;NO;GREGORIAN;;;;;TN;TUNISIA;125588;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1085;EU.955.38;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khamisah al-Kathiri; (b) Deported from Italy to Tunisia on 6.5.2015.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-11-21;21;11;1977;;;NO;GREGORIAN;;;;Beja;TN;TUNISIA;125602;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1085;EU.955.38;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khamisah al-Kathiri; (b) Deported from Italy to Tunisia on 6.5.2015.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-10-21;21;10;1977;;;NO;GREGORIAN;;;;;MA;MOROCCO;125603;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1085;EU.955.38;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khamisah al-Kathiri; (b) Deported from Italy to Tunisia on 6.5.2015.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;P229856 (passport-National passport) (on 2002-11-01 valid to 2007-10-31)[known to be expired];NO;YES;NO;NO;NO;;2002-11-01;;2007-10-31;;;passport;National passport;;TN;;162;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;; +28/10/2022;1085;EU.955.38;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khamisah al-Kathiri; (b) Deported from Italy to Tunisia on 6.5.2015.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;312;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF +28/10/2022;1086;EU.3109.38;;2003-11-12;;(Date of UN designation: 2003-11-12);P;person;amendment;council;2015-08-28;2015-08-28;2015/1473 (OJ L225);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_225_R_0003&from=EN;Ciise;Maxamed Cabdullaah;;Maxamed Cabdullaah Ciise;;;;;2433;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1086;EU.3109.38;;2003-11-12;;(Date of UN designation: 2003-11-12);P;person;amendment;council;2015-08-28;2015-08-28;2015/1473 (OJ L225);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_225_R_0003&from=EN;Ciise;Maxamed Cabdullaahi;;Maxamed Cabdullaahi Ciise;;;;;7340;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1086;EU.3109.38;;2003-11-12;;(Date of UN designation: 2003-11-12);P;person;amendment;council;2015-08-28;2015-08-28;2015/1473 (OJ L225);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_225_R_0003&from=EN;;;;Maxammed Cabdulllaahi;;;;;7341;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1086;EU.3109.38;;2003-11-12;;(Date of UN designation: 2003-11-12);P;person;amendment;council;2015-08-28;2015-08-28;2015/1473 (OJ L225);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_225_R_0003&from=EN;Ciise;Cabdullah Mayamed;;Cabdullah Mayamed Ciise;;;;;7342;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1086;EU.3109.38;;2003-11-12;;(Date of UN designation: 2003-11-12);P;person;amendment;council;2015-08-28;2015-08-28;2015/1473 (OJ L225);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_225_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;SO;SOMALIA;1613;EN;;amendment;commission;2010-11-06;2010-11-05;1001/2010 (OJ L290);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:290:0033:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1086;EU.3109.38;;2003-11-12;;(Date of UN designation: 2003-11-12);P;person;amendment;council;2015-08-28;2015-08-28;2015/1473 (OJ L225);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_225_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-10-08;8;10;1974;;;NO;GREGORIAN;;;;Kismaayo;SO;SOMALIA;426;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1086;EU.3109.38;;2003-11-12;;(Date of UN designation: 2003-11-12);P;person;amendment;council;2015-08-28;2015-08-28;2015/1473 (OJ L225);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_225_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;560;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF +28/10/2022;1087;EU.3768.63;;2003-11-12;;(Date of UN designation: 2003-11-12);P;person;amendment;commission;2017-04-04;2017-04-05;2017/630 (OJ L90);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0630&from=EN;El Ayashi;Radi;Abd El Samie Abou El Yazid;Radi Abd El Samie Abou El Yazid El Ayashi;;;;;2434;EN;;amendment;commission;2008-01-19;2008-01-18;46/2008 (OJ L16);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:016:0011:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1087;EU.3768.63;;2003-11-12;;(Date of UN designation: 2003-11-12);P;person;amendment;commission;2017-04-04;2017-04-05;2017/630 (OJ L90);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0630&from=EN;;;;Mera’i;;;;;12719;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1087;EU.3768.63;;2003-11-12;;(Date of UN designation: 2003-11-12);P;person;amendment;commission;2017-04-04;2017-04-05;2017/630 (OJ L90);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0630&from=EN;;;;;;;;;;;;;;;;;;;Milan;Via Cilea, 40 (domicile);;;;;NO;;IT;ITALY;377;EN;;amendment;commission;2008-01-19;2008-01-18;46/2008 (OJ L16);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:016:0011:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1087;EU.3768.63;;2003-11-12;;(Date of UN designation: 2003-11-12);P;person;amendment;commission;2017-04-04;2017-04-05;2017/630 (OJ L90);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0630&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-01-02;2;1;1972;;;NO;GREGORIAN;;;;El Gharbia Governorate;EG;EGYPT;427;EN;;amendment;commission;2017-04-04;2017-04-05;2017/630 (OJ L90);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0630&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1087;EU.3768.63;;2003-11-12;;(Date of UN designation: 2003-11-12);P;person;amendment;commission;2017-04-04;2017-04-05;2017/630 (OJ L90);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0630&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EG;;111728;EN;;amendment;commission;2017-04-04;2017-04-05;2017/630 (OJ L90);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0630&from=EN +28/10/2022;1088;EU.877.66;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(In prison in Italy until 6.2.2026.);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;Bouyehia;Hamadi;Ben Abdul Azis Ben Ali;Hamadi Ben Abdul Azis Ben Ali Bouyehia;;;;;2436;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1088;EU.877.66;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(In prison in Italy until 6.2.2026.);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Gamel Mohamed;;;;;2437;EN;good quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1088;EU.877.66;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(In prison in Italy until 6.2.2026.);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Abd el Wanis Abd Gawwad Abd el Latif Bahaa;;;;;12721;EN;good quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1088;EU.877.66;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(In prison in Italy until 6.2.2026.);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Mahmoud Hamid;;;;;12722;EN;good quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1088;EU.877.66;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(In prison in Italy until 6.2.2026.);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;حمادي بن عبد العزيز بن علي بويحي;;;;;125594;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1088;EU.877.66;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(In prison in Italy until 6.2.2026.);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;Milan;Corso XXII Marzo 39;;;;;NO;;IT;ITALY;378;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1088;EU.877.66;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(In prison in Italy until 6.2.2026.);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-05-29;29;5;1966;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;428;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1088;EU.877.66;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(In prison in Italy until 6.2.2026.);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-05-25;25;5;1966;;;NO;GREGORIAN;;;;;MA;MOROCCO;429;EN;For alias Gamel Mohamed;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1088;EU.877.66;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(In prison in Italy until 6.2.2026.);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-05-09;9;5;1986;;;NO;GREGORIAN;;;;;EG;EGYPT;1609;EN;For alias Abd el Wanis Abd Gawwad Abd el Latif Bahaa;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1088;EU.877.66;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(In prison in Italy until 6.2.2026.);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;L723315 (passport-National passport) (on 1998-05-05 valid to 2003-05-04)[known to be expired];NO;YES;NO;NO;NO;;1998-05-05;;2003-05-04;;;passport;National passport;;TN;;179;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;; +28/10/2022;1088;EU.877.66;;2003-11-12;;(Date of UN designation: 2003-11-12)\n(In prison in Italy until 6.2.2026.);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;328;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF +28/10/2022;1089;EU.3205.46;;;;(Mother's name: Attia Mohiuddin Taha.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;Hammid Hussein;Mohammad;Tahir;Mohammad Tahir Hammid Hussein;;;Imam;;2438;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1089;EU.3205.46;;;;(Mother's name: Attia Mohiuddin Taha.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abdelhamid Al Kurdi;;;;;2439;EN;;amendment;commission;2008-01-19;2008-01-18;46/2008 (OJ L16);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:016:0011:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1089;EU.3205.46;;;;(Mother's name: Attia Mohiuddin Taha.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;Sulaymaniya;;;;;;NO;;IQ;IRAQ;107250;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1089;EU.3205.46;;;;(Mother's name: Attia Mohiuddin Taha.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-11-01;1;11;1975;;;NO;GREGORIAN;;;;Poshok;IQ;IRAQ;430;EN;;amendment;commission;2008-01-19;2008-01-18;46/2008 (OJ L16);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:016:0011:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1089;EU.3205.46;;;;(Mother's name: Attia Mohiuddin Taha.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;107251;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN +28/10/2022;1092;EU.3496.47;;;;(Under administrative control measure in Italy scheduled to expire on 15 January 2012.);P;person;amendment;commission;2016-10-29;2016-10-30;2016/1906 (OJ L295);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1906&from=EN;Mostafa;Mohamed;Amin;Mohamed Amin Mostafa;;M;;;2443;EN;;amendment;commission;2007-06-28;2007-06-26;732/2007 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:166:0013:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1092;EU.3496.47;;;;(Under administrative control measure in Italy scheduled to expire on 15 January 2012.);P;person;amendment;commission;2016-10-29;2016-10-30;2016/1906 (OJ L295);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1906&from=EN;;;;;;;;;;;;;;;;;;;Parma;Via della Martinella, 132;;;;;NO;((Domicile));IT;ITALY;382;EN;(Domicile);amendment;commission;2016-10-29;2016-10-30;2016/1906 (OJ L295);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1092;EU.3496.47;;;;(Under administrative control measure in Italy scheduled to expire on 15 January 2012.);P;person;amendment;commission;2016-10-29;2016-10-30;2016/1906 (OJ L295);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-10-11;11;10;1975;;;NO;GREGORIAN;;;;Kirkuk;IQ;IRAQ;433;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1092;EU.3496.47;;;;(Under administrative control measure in Italy scheduled to expire on 15 January 2012.);P;person;amendment;commission;2016-10-29;2016-10-30;2016/1906 (OJ L295);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;109919;EN;;amendment;commission;2016-10-29;2016-10-30;2016/1906 (OJ L295);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1906&from=EN +28/10/2022;1095;EU.958.41;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khadijah al-Drissi; (b) Deported from Italy to Tunisia on 10.2.2013.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;Al-Drissi;Noureddine;Ben Ali Ben Belkassem;Noureddine Ben Ali Ben Belkassem Al-Drissi;;;;;2447;EN;;amendment;commission;2006-08-10;2006-08-09;1210/2006 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:219:0014:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1095;EU.958.41;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khadijah al-Drissi; (b) Deported from Italy to Tunisia on 10.2.2013.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Drissi Noureddine;;;;;12550;EN;good quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1095;EU.958.41;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khadijah al-Drissi; (b) Deported from Italy to Tunisia on 10.2.2013.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Abou Ali;;;;;12551;EN;low quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1095;EU.958.41;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khadijah al-Drissi; (b) Deported from Italy to Tunisia on 10.2.2013.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Faycal;;;;;12552;EN;low quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1095;EU.958.41;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khadijah al-Drissi; (b) Deported from Italy to Tunisia on 10.2.2013.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;نور الدين بن علي بن بلقاسم الدريسي;;;;;125589;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1095;EU.958.41;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khadijah al-Drissi; (b) Deported from Italy to Tunisia on 10.2.2013.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;Cremona;Via Plebiscito 3;;;;;NO;;IT;ITALY;385;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1095;EU.958.41;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khadijah al-Drissi; (b) Deported from Italy to Tunisia on 10.2.2013.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-04-30;30;4;1964;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;436;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1095;EU.958.41;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khadijah al-Drissi; (b) Deported from Italy to Tunisia on 10.2.2013.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;L851940 (passport-National passport) (on 1998-09-09 valid to 2003-09-08)[known to be expired];NO;YES;NO;NO;NO;;1998-09-09;;2003-09-08;;;passport;National passport;;TN;;157;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;; +28/10/2022;1095;EU.958.41;;2003-11-12;;"(Date of UN designation: 2003-11-12)\n(Other information: (a) Mother’s name is Khadijah al-Drissi; (b) Deported from Italy to Tunisia on 10.2.2013.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;303;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF +28/10/2022;1096;EU.3344.50;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;Rouine;Al-Azhar;Ben Khalifa Ben Ahmed;Al-Azhar Ben Khalifa Ben Ahmed Rouine;;;;;2448;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1096;EU.3344.50;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;Salmane;;;;;2449;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1096;EU.3344.50;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;Lazhar;;;;;2450;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1096;EU.3344.50;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;Zehrouni, Tunis,;No 2 89th Street;;;;;NO;;TN;TUNISIA;1900;EN;;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1096;EU.3344.50;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-11-20;20;11;1975;;;NO;GREGORIAN;;;;Sfax;TN;TUNISIA;437;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1096;EU.3344.50;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"P182583 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;TN;;152;EN;;amendment;commission;2008-01-19;2008-01-18;46/2008 (OJ L16);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:016:0011:0016:EN:PDF;;;;;;;;;;;;; +28/10/2022;1096;EU.3344.50;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"05258253 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;107663;EN;;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;; +28/10/2022;1096;EU.3344.50;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;294;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF +28/10/2022;1098;EU.875.64;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;Ammari;Saifi;;Saifi Ammari;;M;;;2461;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1098;EU.875.64;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;El Para;;;;;2462;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1098;EU.875.64;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Abderrezak Le Para;;;;;2463;EN;;amendment;commission;2003-12-11;2003-12-10;2157/2003 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:324:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1098;EU.875.64;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Abou Haidara;;;;;2464;EN;;amendment;commission;2003-12-11;2003-12-10;2157/2003 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:324:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1098;EU.875.64;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;El Ourassi;;;;;2465;EN;;amendment;commission;2003-12-11;2003-12-10;2157/2003 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:324:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1098;EU.875.64;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Abderrezak Zaimeche;;;;;2466;EN;;amendment;commission;2003-12-11;2003-12-10;2157/2003 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:324:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1098;EU.875.64;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Abdul Rasak Ammane Abu Haidra;;;;;2467;EN;;amendment;commission;2003-12-11;2003-12-10;2157/2003 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:324:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1098;EU.875.64;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;Abdalarak;;;;;2468;EN;;amendment;commission;2003-12-11;2003-12-10;2157/2003 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:324:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1098;EU.875.64;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;DZ;ALGERIA;1901;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1098;EU.875.64;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-01-01;1;1;1968;;;NO;GREGORIAN;;;;Kef Rih;DZ;ALGERIA;439;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1098;EU.875.64;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-01-01;1;1;1968;;;NO;GREGORIAN;;;;Guelma;DZ;ALGERIA;1056;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1098;EU.875.64;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-04-24;24;4;1968;;;NO;GREGORIAN;;;;Kef Rih;DZ;ALGERIA;1580;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1098;EU.875.64;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-04-24;24;4;1968;;;NO;GREGORIAN;;;;Guelma;DZ;ALGERIA;1617;EN;;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1098;EU.875.64;;;;;P;person;amendment;commission;2011-06-17;2011-06-16;577/2011 (OJ L159);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:159:0069:0085:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;131;EN;;amendment;commission;2003-12-11;2003-12-10;2157/2003 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:324:0017:0018:EN:PDF +28/10/2022;1101;EU.952.35;;;;;P;person;amendment;commission;2018-06-04;2018-06-05;2018/816 (OJ L137);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.137.01.0005.01.ENG&toc=OJ:L:2018:137:TOC;Lounici;Djamel;;Djamel Lounici;;;;;2472;EN;Father's name is Abdelkader and mother's name is Djohra Birouch.\nDate of designation referred to in Article 7d(2)(i): 16.1.2004.;amendment;commission;2018-06-04;2018-06-05;2018/816 (OJ L137);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.137.01.0005.01.ENG&toc=OJ:L:2018:137:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1101;EU.952.35;;;;;P;person;amendment;commission;2018-06-04;2018-06-05;2018/816 (OJ L137);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.137.01.0005.01.ENG&toc=OJ:L:2018:137:TOC;Lounici;Jamal;;Jamal Lounici;;;;;7473;EN;;amendment;commission;2018-02-21;2018-02-22;2018/256 (OJ L48);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0256&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1101;EU.952.35;;;;;P;person;amendment;commission;2018-06-04;2018-06-05;2018/816 (OJ L137);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.137.01.0005.01.ENG&toc=OJ:L:2018:137:TOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;;DZ;ALGERIA;115424;EN;;amendment;commission;2018-02-21;2018-02-22;2018/256 (OJ L48);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0256&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1101;EU.952.35;;;;;P;person;amendment;commission;2018-06-04;2018-06-05;2018/816 (OJ L137);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.137.01.0005.01.ENG&toc=OJ:L:2018:137:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-02-01;1;2;1962;;;NO;GREGORIAN;;;;Algiers;DZ;ALGERIA;456;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1101;EU.952.35;;;;;P;person;amendment;commission;2018-06-04;2018-06-05;2018/816 (OJ L137);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.137.01.0005.01.ENG&toc=OJ:L:2018:137:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;510;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF +28/10/2022;1102;EU.953.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;Al-Zindani;Abd-al-Majid;Aziz;Abd-al-Majid Aziz Al-Zindani;;;Sheikh;;2473;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1102;EU.953.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;Al-Zindani;Abdelmajid;;Abdelmajid Al-Zindani;;;;;2474;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1102;EU.953.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;Al-Zindani;Abd Al-Majid;;Abd Al-Majid Al-Zindani;;;;;2475;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1102;EU.953.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;Al-Zandani;Abd Al-Meguid;;Abd Al-Meguid Al-Zandani;;;;;4853;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1102;EU.953.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;Sana'a;P.O. Box 8096;;;;;NO;;YE;YEMEN;973;EN;;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1102;EU.953.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950;;;YES;GREGORIAN;;;;;YE;YEMEN;441;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1102;EU.953.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"A005487 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;YE;;58;EN;;amendment;commission;2006-08-04;2006-08-03;1189/2006 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:214:0021:0028:EN:PDF;;;;;;;;;;;;; +28/10/2022;1102;EU.953.36;;;;;P;person;amendment;commission;2011-06-22;2011-06-21;597/2011 (OJ L162);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:162:0003:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;133;EN;;amendment;commission;2004-03-02;2004-03-01;391/2004 (OJ L64);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:064:0036:0037:EN:PDF +28/10/2022;1104;EU.994.91;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain Foundation (Pakistan);;;;;2478;EN;;amendment;commission;2004-01-31;2004-01-30;180/2004 (OJ L28);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:028:0015:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1104;EU.994.91;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Islamabad;House No 279, Nazimuddin Road, F-10/1;;;;;YES;;PK;PAKISTAN;390;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1105;EU.912.78;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramayn Foundation (Kenya);;;;;2479;EN;;amendment;commission;2004-01-31;2004-01-30;180/2004 (OJ L28);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:028:0015:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1105;EU.912.78;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Nairobi;;;;;;YES;;KE;KENYA;391;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1105;EU.912.78;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Garissa;;;;;;YES;;KE;KENYA;392;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1105;EU.912.78;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Dadaab;;;;;;YES;;KE;KENYA;393;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1106;EU.913.79;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramayn Foundation (Tanzania);;;;;2480;EN;;amendment;commission;2004-01-31;2004-01-30;180/2004 (OJ L28);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:028:0015:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1106;EU.913.79;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Dar es Salaam;PO box 3616;;;;;YES;;TZ;TANZANIA, UNITED REPUBLIC OF;394;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1106;EU.913.79;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Tanga;;;;;;YES;;TZ;TANZANIA, UNITED REPUBLIC OF;395;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1106;EU.913.79;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Singida;;;;;;YES;;TZ;TANZANIA, UNITED REPUBLIC OF;396;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;National Liberation Army;EN;;;;2553;EN;;amendment;council;2007-12-20;2007-12-20;2007/868/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:340:0100:0103:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ejército de Liberación Nacional;;;;;2554;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Den Nationale Befrielseshær;DA;;;;2555;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Nationale Befreiungsarmee;DE;;;;2556;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Armée de libération nationale;FR;;;;2557;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Esercito di Liberazione Nazionale;IT;;;;2558;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Nationaal Bevrijdingsleger;NL;;;;2559;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Exército de Libertaçao Nacional;PT;;;;2560;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kansallinen vapautusarmeija;FI;;;;2561;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Nationella befrielsearmén;SV;;;;2562;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Εθνικός Απελευθερωτικός Στρατός;EL;;;;2563;EN;;amendment;council;2004-04-02;2004-04-02;2004/306/EC (OJ L99);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:099:0028:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Národně osvobozenecká armáda;CS;;;;3783;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Rahvuslik Vabastusarmee;ET;;;;3784;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Nemzeti Felszabadítási Hadsereg;HU;;;;3785;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Nacionālā atbrīvošanās armija;LV;;;;3786;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Nacionalinė išlaisvinimo armija;LT;;;;3787;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Narodowa Armia Wyzwolenia;PL;;;;3788;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Národná oslobodzovacia armáda;SK;;;;3789;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Nacionalna osvobodilna vojska;SL;;;;3790;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Национална армия за освобождение;BG;;;;5683;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Armata de Eliberare Națională;RO;;;;5684;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;L-Armata għal-Liberazzjoni Nazzjonali;MT;;;;6734;EN;;amendment;council;2008-07-16;2008-07-16;2008/583/EC (OJ L188);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:188:0021:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Exército de Libertação Nacional;PT;;;;7190;EN;;repealing;council;2009-06-16;2009-06-16;501/2009 (OJ L151);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:151:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;an tArm um Shaoradh Náisiúnta;GA;;;;123400;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1240;EU.3688.3;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Nacionalna oslobodilačka vojska;HR;;;;123401;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1880;EU.1391.61;;;;(in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Sajida Khayrallah Tilfah;;F;;;2771;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1880;EU.1391.61;;;;(in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1937;;;NO;GREGORIAN;;;;Al-Awja (near Tikrit);IQ;IRAQ;512;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1880;EU.1391.61;;;;(in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;155;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF +28/10/2022;1883;EU.1392.26;;;;(Daughter of Sajida Khayrallah Tilfah and Saddam Hussein. Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Raghad Saddam Hussein Al-Tikriti;;F;;;2772;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1883;EU.1392.26;;;;(Daughter of Sajida Khayrallah Tilfah and Saddam Hussein. Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Amman;;;;;;NO;;JO;JORDAN;431;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1883;EU.1392.26;;;;(Daughter of Sajida Khayrallah Tilfah and Saddam Hussein. Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;NO;GREGORIAN;;;;;IQ;IRAQ;513;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1883;EU.1392.26;;;;(Daughter of Sajida Khayrallah Tilfah and Saddam Hussein. Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;156;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF +28/10/2022;1886;EU.1393.88;;;;(Daughter of Sajida Khayrallah Tilfah and Saddam Hussein. Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Rana Saddam Hussein Al-Tikriti;;F;;;2773;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1886;EU.1393.88;;;;(Daughter of Sajida Khayrallah Tilfah and Saddam Hussein. Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Amman;;;;;;NO;;JO;JORDAN;432;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1886;EU.1393.88;;;;(Daughter of Sajida Khayrallah Tilfah and Saddam Hussein. Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969;;;NO;GREGORIAN;;;;;IQ;IRAQ;514;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1886;EU.1393.88;;;;(Daughter of Sajida Khayrallah Tilfah and Saddam Hussein. Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;157;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF +28/10/2022;1888;EU.1394.53;;;;(Daughter of Sajida Khayrallah Tilfah and Saddam Hussein. Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Hala Saddam Hussein Al-Tikriti;;F;;;2774;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1888;EU.1394.53;;;;(Daughter of Sajida Khayrallah Tilfah and Saddam Hussein. Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;NO;GREGORIAN;;;;;IQ;IRAQ;515;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1888;EU.1394.53;;;;(Daughter of Sajida Khayrallah Tilfah and Saddam Hussein. Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;158;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF +28/10/2022;1890;EU.1395.18;;;;(Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Samira Shahbandar;;F;;;2775;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1890;EU.1395.18;;;;(Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Chadian;;;;;2776;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1890;EU.1395.18;;;;(Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946;;;NO;GREGORIAN;;;;Baghdad;IQ;IRAQ;516;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1890;EU.1395.18;;;;(Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;159;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF +28/10/2022;1892;EU.1402.79;;;;(Son of Samira Shahbandar and Saddam Hussein. Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Ali Saddam Hussein Al-Tikriti;;M;;;2777;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1892;EU.1402.79;;;;(Son of Samira Shahbandar and Saddam Hussein. Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Hassan;;;;;2778;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1892;EU.1402.79;;;;(Son of Samira Shahbandar and Saddam Hussein. Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980;;;NO;GREGORIAN;;;;;IQ;IRAQ;517;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1892;EU.1402.79;;;;(Son of Samira Shahbandar and Saddam Hussein. Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983;;;NO;GREGORIAN;;;;;IQ;IRAQ;518;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1892;EU.1402.79;;;;(Son of Samira Shahbandar and Saddam Hussein. Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;160;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF +28/10/2022;1894;EU.1403.44;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Mohammad Barzan Ibrahim Hasan Al-Tikriti;;;;;2779;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1894;EU.1403.44;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Mohammad Barzan Ibrahim Hasan Al-Tikriti;FR;M;;;2789;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1894;EU.1403.44;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Geneva;;;;;;NO;;CH;SWITZERLAND;433;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1894;EU.1403.44;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Genève;;;;;;NO;;CH;SWITZERLAND;443;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1894;EU.1403.44;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Genf;;;;;;NO;;CH;SWITZERLAND;444;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1894;EU.1403.44;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Ginevra;;;;;;NO;;CH;SWITZERLAND;445;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1894;EU.1403.44;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-11-02;2;11;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;519;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1894;EU.1403.44;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;161;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF +28/10/2022;1896;EU.1451.22;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Saja Barzan Ibrahim Hasan Al-Tikriti;;;;;2780;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1896;EU.1451.22;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Saja Barzan Ibrahim Hasan Al-Tikriti;FR;F;;;2790;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1896;EU.1451.22;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Geneva;;;;;;NO;;CH;SWITZERLAND;434;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1896;EU.1451.22;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Genève;;;;;;NO;;CH;SWITZERLAND;446;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1896;EU.1451.22;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Genf;;;;;;NO;;CH;SWITZERLAND;447;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1896;EU.1451.22;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Ginevra;;;;;;NO;;CH;SWITZERLAND;448;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1896;EU.1451.22;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-01-01;1;1;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;520;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1896;EU.1451.22;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;162;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF +28/10/2022;1898;EU.1452.84;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Ali Barzan Ibrahim Hasan Al-Tikriti;;;;;2781;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1898;EU.1452.84;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Ali Barzan Ibrahim Hasan Al-Tikriti;FR;M;;;2791;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1898;EU.1452.84;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Geneva;;;;;;NO;;CH;SWITZERLAND;435;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1898;EU.1452.84;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Genève;;;;;;NO;;CH;SWITZERLAND;449;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1898;EU.1452.84;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Genf;;;;;;NO;;CH;SWITZERLAND;450;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1898;EU.1452.84;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Ginevra;;;;;;NO;;CH;SWITZERLAND;451;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1898;EU.1452.84;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-04-18;18;4;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;521;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1898;EU.1452.84;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;163;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF +28/10/2022;1900;EU.1453.49;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Noor Barzan Ibrahim Hasan Al-Tikriti;;;;;2782;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1900;EU.1453.49;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Noor Barzan Ibrahim Hasan Al-Tikriti;FR;F;;;2792;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1900;EU.1453.49;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Geneva;;;;;;NO;;CH;SWITZERLAND;436;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1900;EU.1453.49;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Genève;;;;;;NO;;CH;SWITZERLAND;452;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1900;EU.1453.49;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Genf;;;;;;NO;;CH;SWITZERLAND;453;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1900;EU.1453.49;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Ginevra;;;;;;NO;;CH;SWITZERLAND;454;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1900;EU.1453.49;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-11-02;2;11;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;522;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1900;EU.1453.49;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;164;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF +28/10/2022;1920;EU.1462.85;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Khawla Barzan Ibrahim Hasan Al-Tikriti;;;;;2783;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1920;EU.1462.85;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Khawla Barzan Ibrahim Hasan Al-Tikriti;FR;F;;;2793;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1920;EU.1462.85;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Geneva;;;;;;NO;;CH;SWITZERLAND;437;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1920;EU.1462.85;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Genève;;;;;;NO;;CH;SWITZERLAND;455;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1920;EU.1462.85;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Genf;;;;;;NO;;CH;SWITZERLAND;456;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1920;EU.1462.85;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;Ginevra;;;;;;NO;;CH;SWITZERLAND;457;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1920;EU.1462.85;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-12-03;3;12;1986;;;NO;GREGORIAN;;;;;00;UNKNOWN;523;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1920;EU.1462.85;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;165;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF +28/10/2022;1922;EU.1344.48;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Thoraya Barzan Ibrahim Hasan Al-Tikriti;;;;;2784;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1922;EU.1344.48;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Thoraya Barzan Ibrahim Hasan Al-Tikriti;FR;F;;;2794;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1922;EU.1344.48;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;IQ;IRAQ;438;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1922;EU.1344.48;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-12-19;19;12;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;524;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1922;EU.1344.48;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-01-19;19;1;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;525;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1922;EU.1344.48;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;166;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF +28/10/2022;1923;EU.1345.13;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Jawhar Majid Al-Duri;;F;;;2785;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1923;EU.1345.13;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;IQ;IRAQ;439;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1923;EU.1345.13;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1942;;;YES;GREGORIAN;;;;Al-Dur;IQ;IRAQ;526;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1923;EU.1345.13;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;167;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF +28/10/2022;1924;EU.1346.75;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Sundus Abd Al-Ghafur;;F;;;2786;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1924;EU.1346.75;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;IQ;IRAQ;440;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1924;EU.1346.75;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;YES;GREGORIAN;;;;Kirkuk;IQ;IRAQ;527;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1924;EU.1346.75;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;168;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF +28/10/2022;1925;EU.1347.40;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Nidal Al-Rabi'i;;F;;;2787;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1925;EU.1347.40;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;IQ;IRAQ;441;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1925;EU.1347.40;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;YES;GREGORIAN;;;;Al-Dur;IQ;IRAQ;528;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1925;EU.1347.40;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;169;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF +28/10/2022;1926;EU.1354.49;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;Intissar Al-Ubaydi;;F;;;2788;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1926;EU.1354.49;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;IQ;IRAQ;442;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1926;EU.1354.49;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974;;;YES;GREGORIAN;;;;;00;UNKNOWN;529;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1926;EU.1354.49;;;;;P;person;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;170;EN;;amendment;commission;2004-04-30;2004-04-29;924/2004 (OJ L163);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:163:0100:0101:EN:PDF +28/10/2022;1964;EU.1447.5;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Djermane;Kamel;;Kamel Djermane;;M;;;2806;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1964;EU.1447.5;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Bilal;;;;;2807;EN;;amendment;commission;2004-05-07;2004-05-06;950/2004 (OJ L173);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:173:0006:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1964;EU.1447.5;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Adel;;;;;2808;EN;;amendment;commission;2004-05-07;2004-05-06;950/2004 (OJ L173);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:173:0006:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1964;EU.1447.5;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Fodhil;;;;;2809;EN;;amendment;commission;2004-05-07;2004-05-06;950/2004 (OJ L173);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:173:0006:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1964;EU.1447.5;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abou Abdeljalil;;;;;6350;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1964;EU.1447.5;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;DZ;ALGERIA;1136;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1964;EU.1447.5;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-10-12;12;10;1965;;;NO;GREGORIAN;;;;Oum el Bouaghi;DZ;ALGERIA;535;EN;;amendment;commission;2008-04-25;2008-04-24;374/2008 (OJ L113);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:113:0015:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1964;EU.1447.5;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;172;EN;;amendment;commission;2004-05-07;2004-05-06;950/2004 (OJ L173);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:173:0006:0007:EN:PDF +28/10/2022;1981;EU.1106.44;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;Al-Arabi Trading Company;;;;;2828;EN;;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1981;EU.1106.44;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;Baghdad;Hai Babil, Lane 11, District 929;;;;;NO;;IQ;IRAQ;459;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1981;EU.1106.44;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;Baghdad;Hai Al-Wahda, Lane 15, Area 902, Office 10;;;;;NO;;IQ;IRAQ;460;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1981;EU.1106.44;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;Baghdad;P.O. Box 2337, Alwiyah;;;;;NO;;IQ;IRAQ;461;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1982;EU.1415.72;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain (Albanian branch);;;;;3281;EN;;amendment;commission;2004-07-13;2004-07-12;1277/2004 (OJ L241);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:241:0012:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1982;EU.1415.72;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Tirana;Irfan Tomini Street, 58;;;;;YES;;AL;ALBANIA;750;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1983;EU.1416.37;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;Al-Bashair Trading Company, Ltd;;;;;2829;EN;;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1983;EU.1416.37;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;Al-Bashaer Trading Company, Ltd;;;;;2830;EN;;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1983;EU.1416.37;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;Al-Bashir Trading Company, Ltd;;;;;2831;EN;;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1983;EU.1416.37;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;Al-Basha'ir Trading Company, Ltd;;;;;2832;EN;;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1983;EU.1416.37;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;Al-Bashaair Trading Company, Ltd;;;;;2833;EN;;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1983;EU.1416.37;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;Al-Bushair Trading Company, Ltd;;;;;2834;EN;;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1983;EU.1416.37;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;Baghdad;Sadoon St, Al-Ani Building, first floor;;;;;NO;;IQ;IRAQ;462;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1987;EU.1467.7;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;Al Wasel and Babel General Trading LLC;;;;;2841;EN;;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1987;EU.1467.7;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;Dubai;Ibrahim Saeed Lootah Building, Al Ramool Street, P.O. Box 10631;;;;;NO;;AE;UNITED ARAB EMIRATES;466;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1987;EU.1467.7;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;Dubai;Rashidiya, 638;;;;;NO;;AE;UNITED ARAB EMIRATES;467;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1987;EU.1467.7;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;Dubai;Lootah Building, Airport Road, near Aviation Club, Rashidya;;;;;NO;;AE;UNITED ARAB EMIRATES;468;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1987;EU.1467.7;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;Baghdad;Villa in the Harasiyah area;;;;;NO;;IQ;IRAQ;469;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1994;EU.1376.78;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;Aviatrans Anstalt;;;;;2848;EN;;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1994;EU.1376.78;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;Aviatrans Establishment;;;;;2849;EN;;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;1994;EU.1376.78;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;Ruggell;;;;;;NO;;LI;LIECHTENSTEIN;476;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2004;EU.1442.83;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain (Bangladesh branch);;;;;3282;EN;;amendment;commission;2004-07-13;2004-07-12;1277/2004 (OJ L241);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:241:0012:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2004;EU.1442.83;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Dhaka;House 1, Road 1, S-6, Uttara;;;;;YES;;BD;BANGLADESH;751;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2029;EU.1301.52;;;;;E;enterprise;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;IDLEB COMPANY FOR SPINNING;;;;;2891;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2029;EU.1301.52;;;;;E;enterprise;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Idleb;P.O. Box 9;;;;;NO;;IQ;IRAQ;529;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2052;EU.1123.54;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;Logarcheo S.A.;;;;;2926;EN;;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2052;EU.1123.54;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;Logarcheo AG;;;;;2927;EN;;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2052;EU.1123.54;;;;;E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;Le Paquier-Montbarry;Chemin du Carmel;;1661;;;NO;;CH;SWITZERLAND;558;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2099;EU.1321.54;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain (Ethiopia branch);;;;;3283;EN;;amendment;commission;2004-07-13;2004-07-12;1277/2004 (OJ L241);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:241:0012:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2099;EU.1321.54;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Addis Abeba;Woreda District 24 Kebele Section 13;;;;;YES;;ET;ETHIOPIA;752;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2189;EU.1104.17;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain (Afghanistan branch);;;;;3280;EN;;amendment;commission;2004-07-13;2004-07-12;1277/2004 (OJ L241);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:241:0012:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2189;EU.1104.17;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;YES;;AF;AFGHANISTAN;749;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2193;EU.1335.12;;;;;P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;Adnan S. Hasan Ahmed;;;;;3123;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2193;EU.1335.12;;;;;P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;Hasan Ahmed S. Adnan;;;;;3124;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2193;EU.1335.12;;;;;P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;Ahmed Sultan;;;;;3125;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2193;EU.1335.12;;;;;P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;Amman;;;;;;NO;;JO;JORDAN;733;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2194;EU.1386.79;;;;;P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;Munir Al Qubaysi;;;;;3126;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2194;EU.1386.79;;;;;P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;Munir Al-Kubaysi;;;;;3127;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2194;EU.1386.79;;;;;P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;Muneer Al-Kubaisi;;;;;3128;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2194;EU.1386.79;;;;;P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;Munir Awad;;;;;3129;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2194;EU.1386.79;;;;;P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;Munir A Mamduh Awad;;;;;3130;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2194;EU.1386.79;;;;;P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;734;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2194;EU.1386.79;;;;;P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;NO;GREGORIAN;;;;Heet;IQ;IRAQ;540;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2194;EU.1386.79;;;;;P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;176;EN;;amendment;commission;2004-05-15;2004-05-14;979/2004 (OJ L180);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0009:0019:EN:PDF +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al Furqan;;;;;3131;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Dzemilijati Furkan;;;;;3132;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Dzem’ijjetul Furqan;;;;;3133;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Association for Citizens' Rights and Resistance to Lies;;;;;3134;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Dzemijetul Furkan;;;;;3135;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Association of Citizens for the Support of Truth and Suppression of Lies;;;;;3136;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Sirat;;;;;3137;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Association for Education, Culture and Building Society ― Sirat;;;;;3139;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Association for Education, Cultural and to Create Society ― Sirat;;;;;3140;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Istikamet;;;;;3141;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;In Siratel;;;;;3142;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Stowarzyszenie na rzecz Praw Obywatelskich i Oporu Przeciw Kłamstwu;PL;;;;3152;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Stowarzyszenie Obywatelskie na rzecz Wspierania Prawdy i Eliminowania Kłamstw;PL;;;;3154;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Stowarzyszenie na rzecz Edukacji, Kultury i Społeczeństwa – Sirat;PL;;;;3155;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Zveza za pravice državljanov in zatiranje laži;SL;;;;3587;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Zveza državljanov za podporo pravici in zatiranje laži;SL;;;;3588;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Zveza za izobraževanje, kulturo in družbo ― Sirat;SL;;;;3589;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Citizens' Association for Support and Prevention of lies — Furqan;;;;;7314;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Zveza državljanov za podporo in preprečevanje laži – Furqan;SL;;;;7315;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Stowarzyszenie na rzecz Edukacji, Kultury i Społeczeństwa — Sirat;PL;;;;7427;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Асоциация за граждански права и борба с лъжите;BG;;;;7428;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Гражданска асоциация за защита на истината и премахването на лъжата;BG;;;;7429;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Асоциация за образование, култура и за изграждане на общество — Sirat;BG;;;;7430;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Гражданска асоциация за защита на истината и премахването на лъжата — Furqan;BG;;;;7431;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Sarajevo;Put Mladih Muslimana, 30a (former name ul. Palva Lukaca / Palva Lukaca Street);;71 000;;;NO;;BA;BOSNIA AND HERZEGOWINA;735;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Zenica;ul. Strossmajerova, 72;;;;;NO;;BA;BOSNIA AND HERZEGOWINA;736;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Sarajevo;Muhameda Hadzijahica, 42;;;;;NO;;BA;BOSNIA AND HERZEGOWINA;737;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Sarajevo;42 Muhameda Hadžijahića;;;;;NO;;BA;BOSNIA AND HERZEGOWINA;840;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Zenica;70 and 53 Strosmajerova Street;;;;;NO;;BA;BOSNIA AND HERZEGOWINA;1335;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2196;EU.1292.61;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Zavidovici;Zlatnih Ljiljana Street;;;;;NO;;BA;BOSNIA AND HERZEGOWINA;1336;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2197;EU.1111.26;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Taibah International - Bosnia Offices;;;;;3143;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2197;EU.1111.26;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Taibah International Aid Agency;;;;;3144;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2197;EU.1111.26;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Taibah International Aid Association;;;;;3145;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2197;EU.1111.26;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al Taibah, Intl.;;;;;3146;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2197;EU.1111.26;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Taibah International Aide Association;;;;;3147;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2197;EU.1111.26;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Taibah Międzynarodowa Agencja Pomocy;PL;;;;3158;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2197;EU.1111.26;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Międzynarodowe Stowarzyszenie Pomocy Taibah;PL;;;;3159;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2197;EU.1111.26;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Taibah International – босненски офиси;BG;;;;7465;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2197;EU.1111.26;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Агенция за международна помощ „Taibah“;BG;;;;7466;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2197;EU.1111.26;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Асоциация за международна помощ „Taibah“;BG;;;;7467;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2197;EU.1111.26;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Асоциация за международно подпомагане „Taibah“;BG;;;;7468;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2197;EU.1111.26;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Novo Sarajevo;Avde Smajlovic Street, 6;;;;;NO;;BA;BOSNIA AND HERZEGOWINA;738;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2197;EU.1111.26;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Visoko;Tabhanska Street, 26;;;;;NO;;BA;BOSNIA AND HERZEGOWINA;739;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2197;EU.1111.26;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Visoko;Velika Cilna Ulica, 3;;;;;NO;;BA;BOSNIA AND HERZEGOWINA;740;EN;;amendment;commission;2004-05-15;2004-05-14;984/2004 (OJ L180);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:180:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2208;EU.1337.39;;;;(Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;Adib Shaban Al-Ani;;;;;3262;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2208;EU.1337.39;;;;(Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;Adib Sha’ban;;;Dr.;;3263;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2208;EU.1337.39;;;;(Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;Adib Shaban;;;;;3264;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2208;EU.1337.39;;;;(Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;542;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2208;EU.1337.39;;;;(Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;178;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF +28/10/2022;2220;EU.1338.4;;;;;E;enterprise;amendment;commission;2012-04-20;2012-04-19;335/2012 (OJ L108);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:108:0009:0010:EN:PDF;;;;Al-Haramain (Netherlands branch);;;;;3284;EN;;amendment;commission;2004-07-13;2004-07-12;1277/2004 (OJ L241);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:241:0012:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2220;EU.1338.4;;;;;E;enterprise;amendment;commission;2012-04-20;2012-04-19;335/2012 (OJ L108);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:108:0009:0010:EN:PDF;;;;Stichting Al Haramain Humanitarian Aid;;;;;3285;EN;;amendment;commission;2004-07-13;2004-07-12;1277/2004 (OJ L241);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:241:0012:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2220;EU.1338.4;;;;;E;enterprise;amendment;commission;2012-04-20;2012-04-19;335/2012 (OJ L108);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:108:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;Amsterdam;Jan Hanzenstraat, 114;;1053 SV;;;YES;;NL;NETHERLANDS;753;EN;;amendment;commission;2012-04-20;2012-04-19;335/2012 (OJ L108);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:108:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2223;EU.1352.22;;;;(Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;Roodi Slewa;;;;;3295;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2223;EU.1352.22;;;;(Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;Rudi Slaiwah;;;;;3296;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2223;EU.1352.22;;;;(Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;Rudi Untaywan Slaywah;;;;;3297;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2223;EU.1352.22;;;;(Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;Rudi Saliwa;;;;;3298;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2223;EU.1352.22;;;;(Name in Arabic script: http://www.un.org/Docs/sc/committees/1518/1483_lst.htm);P;person;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;181;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF +28/10/2022;2225;EU.1401.17;;;;;E;enterprise;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;ALFA COMPANY LIMITED FOR INTERNATIONAL TRADING AND MARKETING;;;;;3300;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2225;EU.1401.17;;;;;E;enterprise;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;ALFA TRADING COMPANY;;;;;3301;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2225;EU.1401.17;;;;;E;enterprise;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;ALFA INVESTMENT AND INTERNATIONAL TRADING;;;;;3302;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2225;EU.1401.17;;;;;E;enterprise;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;Amman;P.O. Box 910606;;11191;;;NO;;JO;JORDAN;759;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2226;EU.1413.45;;;;;E;enterprise;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;TRADING AND TRANSPORT SERVICES COMPANY, LTD;;;;;3303;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2226;EU.1413.45;;;;;E;enterprise;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;Amman;Al-Razi Medical Complex, Jabal Al-Hussein;;;;;NO;;JO;JORDAN;760;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2226;EU.1413.45;;;;;E;enterprise;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;Amman;P.O. Box 212953;;11121;;;NO;;JO;JORDAN;761;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2226;EU.1413.45;;;;;E;enterprise;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;Amman;P.O. Box 910606;;11191;;;NO;;JO;JORDAN;762;EN;;amendment;commission;2004-06-10;2004-06-09;1086/2004 (OJ L207);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:207:0010:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2325;EU.3453.51;;;;(Mother's name is Fatima al-Galasi);P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;Al-Loubiri;Habib;Ben Ahmed;Habib Ben Ahmed Al-Loubiri;;M;;;3373;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2325;EU.3453.51;;;;(Mother's name is Fatima al-Galasi);P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;Al-Habib ben Ahmad ben al-Tayib al-Lubiri;;;;;15138;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2325;EU.3453.51;;;;(Mother's name is Fatima al-Galasi);P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Italian Fiscal Code: LBR HBB 61S17 Z352F);00;UNKNOWN;769;EN;Italian Fiscal Code: LBR HBB 61S17 Z352F;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2325;EU.3453.51;;;;(Mother's name is Fatima al-Galasi);P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;Sidi Mesoud;Salam Marnaq Ben Arous district;;;;;NO;;TN;TUNISIA;2194;EN;;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2325;EU.3453.51;;;;(Mother's name is Fatima al-Galasi);P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-11-17;17;11;1961;;;NO;GREGORIAN;;;;Menzel Temime;TN;TUNISIA;574;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2325;EU.3453.51;;;;(Mother's name is Fatima al-Galasi);P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"M788439 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;TN;;166;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF;;;;;;;;;;;;; +28/10/2022;2325;EU.3453.51;;;;(Mother's name is Fatima al-Galasi);P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"01817002 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;107666;EN;;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;; +28/10/2022;2325;EU.3453.51;;;;(Mother's name is Fatima al-Galasi);P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;316;EN;;amendment;commission;2006-01-18;2006-01-17;76/2006 (OJ L12);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:012:0007:0016:EN:PDF +28/10/2022;2340;EU.1274.86;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Al-Haramayn og Al Masjid Al Aqsa Charitable Foundation;DA;;;;3394;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2340;EU.1274.86;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Al Harammein Al Masjed Al-Aqsa Charity Foundation;;;;;7308;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2340;EU.1274.86;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Institución benéfica Al Harammein Al Masjed Al-Aqsa;ES;;;;7370;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2340;EU.1274.86;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Al-Haramayn u Al Masjid Al Aqsa Charitable Foundation;MT;;;;7371;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2340;EU.1274.86;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Благотворителна фондация „Al-Haramain & Al Masjed Al-Aqsa;BG;;;;7375;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2340;EU.1274.86;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Благотворителна фондация Al-Haramayn and Al Masjid Al Aqsa;BG;;;;7376;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2340;EU.1274.86;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Благотворителна фондация Al Harammein Al Masjed Al-Aqsa;BG;;;;7377;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2340;EU.1274.86;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;Sarajevo;Bihacka St., 14;;;;;NO;;BA;BOSNIA AND HERZEGOWINA;828;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2340;EU.1274.86;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;Travnik;Potur mahala St., 64;;;;;NO;;BA;BOSNIA AND HERZEGOWINA;829;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2340;EU.1274.86;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;Zenica;;;;;;NO;;BA;BOSNIA AND HERZEGOWINA;1333;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2442;EU.1254.84;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain Foundation (Union of the Comoros);;;;;3399;EN;;amendment;commission;2004-10-02;2004-10-01;1728/2004 (OJ L306);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:306:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2442;EU.1254.84;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain Foundation (Unionen Comorerne);DA;;;;3401;EN;;amendment;commission;2004-10-02;2004-10-01;1728/2004 (OJ L306);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:306:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2442;EU.1254.84;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain Foundation (Union der Komoren);DE;;;;3402;EN;;amendment;commission;2004-10-02;2004-10-01;1728/2004 (OJ L306);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:306:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2442;EU.1254.84;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain Foundation (Κομόρες);EL;;;;3403;EN;;amendment;commission;2004-10-02;2004-10-01;1728/2004 (OJ L306);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:306:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2442;EU.1254.84;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain Foundation (Unión de la Comoras);ES;;;;3404;EN;;amendment;commission;2004-10-02;2004-10-01;1728/2004 (OJ L306);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:306:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2442;EU.1254.84;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain Foundation (Komorien liitto);FI;;;;3405;EN;;amendment;commission;2004-10-02;2004-10-01;1728/2004 (OJ L306);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:306:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2442;EU.1254.84;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain Foundation (Comore-szigetek);HU;;;;3406;EN;;amendment;commission;2004-10-02;2004-10-01;1728/2004 (OJ L306);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:306:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2442;EU.1254.84;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain Foundation (Unione delle Comore);IT;;;;3407;EN;;amendment;commission;2004-10-02;2004-10-01;1728/2004 (OJ L306);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:306:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2442;EU.1254.84;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain Foundation (Komorų Sąjunga);LT;;;;3408;EN;;amendment;commission;2004-10-02;2004-10-01;1728/2004 (OJ L306);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:306:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2442;EU.1254.84;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain Foundation (Komoru salas);LV;;;;3409;EN;;amendment;commission;2004-10-02;2004-10-01;1728/2004 (OJ L306);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:306:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2442;EU.1254.84;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain Foundation (Unie der Comoren);NL;;;;3410;EN;;amendment;commission;2004-10-02;2004-10-01;1728/2004 (OJ L306);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:306:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2442;EU.1254.84;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain Foundation (União das Ilhas Comores);PT;;;;3411;EN;;amendment;commission;2004-10-02;2004-10-01;1728/2004 (OJ L306);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:306:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2442;EU.1254.84;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Al-Haramain Foundation (Komorerna);SV;;;;3412;EN;;amendment;commission;2004-10-02;2004-10-01;1728/2004 (OJ L306);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:306:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2442;EU.1254.84;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;Fondation Al-Haramain (Union des Comores);FR;;;;3427;EN;;amendment;commission;2004-10-02;2004-10-01;1728/2004 (OJ L306);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:306:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2442;EU.1254.84;;;;;E;enterprise;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Moroni;B/P: 1652;;;;;YES;;KM;COMOROS;772;EN;;amendment;commission;2012-04-13;2012-04-12;316/2012 (OJ L103);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:103:0042:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Jama’at al-Tawhid Wa'al-Jihad;;;;;3483;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;JTJ;;;;;3484;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;al-Zarqawi network;;;;;3485;EN;;amendment;commission;2004-10-23;2004-10-21;1840/2004 (OJ L322);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:322:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;al-Tawhid;;;;;3486;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;the Monotheism and Jihad Group;;;;;3488;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Al-Zarqawi-Netzwerk;DE;;;;3492;EN;;amendment;commission;2004-10-23;2004-10-21;1840/2004 (OJ L322);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:322:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Gruppe ,Einheit Gottes und Heiliger Krieg';DE;;;;3493;EN;;amendment;commission;2004-10-23;2004-10-21;1840/2004 (OJ L322);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:322:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;réseau al-Zarqawi;FR;;;;3496;EN;;amendment;commission;2004-10-23;2004-10-21;1840/2004 (OJ L322);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:322:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Grupa „Monoteizm i Jihad”;PL;;;;3506;EN;;amendment;commission;2004-10-23;2004-10-21;1840/2004 (OJ L322);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:322:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;mreža al-Zarqawi;SL;;;;3509;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Monoteizem in skupina džihad;SL;;;;3510;EN;;amendment;commission;2004-10-23;2004-10-21;1840/2004 (OJ L322);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:322:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Qaida of the Jihad in the Land of the Two Rivers;;;;;3554;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Al-Qaida of Jihad in the Land of the Two Rivers;;;;;3555;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;The Organization of Jihad’s Base in the Country of the Two Rivers;;;;;3556;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;The Organization Base of Jihad/Country of the Two Rivers;;;;;3557;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;The Organization Base of Jihad/Mesopotamia;;;;;3558;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Tanzim Qa’idat Al-Jihad fi Bilad al-Rafidayn;;;;;3559;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Tanzeem Qa’idat al Jihad/Bilad al Raafidaini;;;;;3560;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;rete al-Zarqawi;IT;;;;3582;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Džihadska Kaida v deželi dveh rek;SL;;;;3595;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Džihadska Al-Kaida v deželi dveh rek;SL;;;;3596;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Organizacija džihad v deželi dveh rek;SL;;;;3597;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Organizacijski sedež džihad/Dežela dveh rek;SL;;;;3598;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Organizacijski sedež džihad/Mezopotamija;SL;;;;3599;EN;;amendment;commission;2004-12-17;2004-12-15;2145/2004 (OJ L370);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:370:0006:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Al-Qaida in Iraq;;;;;7318;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;AQI;;;;;7319;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Al-Qaida no Iraque;PT;;;;7320;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Islamic State of Iraq;;;;;7321;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;ISI;;;;;7322;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Estado Islâmico do Irão;PT;;;;7448;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Al-Kaida v Iraku;SL;;;;7449;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Ал Кайда в Ирак;BG;;;;7450;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Групата за монотеизъм и джихад;BG;;;;7451;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Кайда на джихад в страната на двете реки;BG;;;;7452;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Ал Кайда на джихад в станата на двете реки;BG;;;;7453;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Организацията на основата на джихад в страната на двете реки;BG;;;;7454;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Организацията на основата на джихад/Страната на двете реки;BG;;;;7455;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Базата на организацията на джихад/Месопотамия;BG;;;;7456;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Ислямска държава Ирак;BG;;;;7457;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Мрежата „al-Zarqawi”;BG;;;;7458;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Islamic State in Iraq and the Levant;;;;;17514;EN;;amendment;commission;2013-06-29;2013-06-28;632/2013 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:179:0085:0086:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Победният фронт;BG;;;;17516;EN;;amendment;commission;2013-06-29;2013-06-28;632/2013 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:179:0085:0086:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Фронтът Al-Nusrah за хората от Изтока;BG;;;;17517;EN;;amendment;commission;2013-06-29;2013-06-28;632/2013 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:179:0085:0086:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Ислямска държава в Ирак и в Изтока;BG;;;;17518;EN;;amendment;commission;2013-06-29;2013-06-28;632/2013 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:179:0085:0086:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2560;EU.1163.58;;;;;E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Islamska država v Iraku in Levantu;SL;;;;17519;EN;;amendment;commission;2013-06-29;2013-06-28;632/2013 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:179:0085:0086:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2700;EU.1168.77;;;;;P;person;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;Ashour Al-Fadhli;Muhsin;Fadhil Ayed;Muhsin Fadhil Ayed Ashour Al-Fadhli;;M;;;3629;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2700;EU.1168.77;;;;;P;person;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;al Fadhli;Muhsin;Fadhil ‘Ayyid;Muhsin Fadhil ‘Ayyid al Fadhli;;;;;3630;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2700;EU.1168.77;;;;;P;person;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;Ashur al Fadhli;Muhsin;Fadil Ayid;Muhsin Fadil Ayid Ashur al Fadhli;;;;;3631;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2700;EU.1168.77;;;;;P;person;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;Abu Majid Samiyah;;;;;3632;EN;;amendment;commission;2005-02-24;2005-02-23;301/2005 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:051:0015:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2700;EU.1168.77;;;;;P;person;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;Abu Samia;;;;;3633;EN;;amendment;commission;2005-02-24;2005-02-23;301/2005 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:051:0015:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2700;EU.1168.77;;;;;P;person;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;Kuwait City, Al-Riqqa area;Block Four, Street 13, House No 179;;;;;NO;;KW;KUWAIT;845;EN;;amendment;commission;2005-02-24;2005-02-23;301/2005 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:051:0015:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2700;EU.1168.77;;;;;P;person;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-04-24;24;4;1981;;;NO;GREGORIAN;;;;;KW;KUWAIT;635;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2700;EU.1168.77;;;;;P;person;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"106261543 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KW;;109;EN;;amendment;commission;2005-02-24;2005-02-23;301/2005 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:051:0015:0016:EN:PDF;;;;;;;;;;;;; +28/10/2022;2700;EU.1168.77;;;;;P;person;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1420529 (passport-National passport) [known to be expired](passport issued in kuwait, expired on 2006-03-31);NO;YES;NO;NO;NO;;;;;;;passport;National passport;;KW;;293;EN;passport issued in kuwait, expired on 2006-03-31;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;; +28/10/2022;2700;EU.1168.77;;;;;P;person;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KW;;527;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF +28/10/2022;2720;EU.3556.8;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Al-Aqsa e.V.;;;;;3698;EN;;amendment;council;2005-03-16;2005-03-16;2005/221/CFSP (OJ L69);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32005D0221&qid=1410439221593&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2720;EU.3556.8;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Združenie al-Aksá;SL;;;;123156;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2720;EU.3556.8;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Združenie al-Aksá;SK;;;;123157;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2720;EU.3556.8;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Stowarzyszenie Al-Aksa;PL;;;;123158;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2720;EU.3556.8;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Σωματείο Αλ-Ακσά;EL;;;;123159;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2720;EU.3556.8;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Sdružení Al-Aksá e.V.;CS;;;;123160;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2720;EU.3556.8;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Сдружение „Ал-Акса;BG;;;;123161;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Lashkar e-Tayyiba;;;;;4025;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Lashkar-e-Toiba;;;;;4026;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Lashkar-i-Taiba;;;;;4027;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;al Mansoorian;;;;;4028;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;al Mansooreen;;;;;4029;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Army of the Pure;;;;;4030;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Army of the Righteous;;;;;4031;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Army of the Pure and Righteous;;;;;4032;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Paasban-e-Kashmir;;;;;4033;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Paasban-i-Ahle-Hadith;;;;;4034;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Pasban-e-Kashmir;;;;;4035;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Pasban-e-Ahle-Hadith;;;;;4036;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Paasban-e-Ahle-Hadis;;;;;4037;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;A tiszták hadserege;HU;;;;4041;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Az erényesek hadserege;HU;;;;4042;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;A tiszták és erényesek hadserege;HU;;;;4043;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Exército dos Puros;PT;;;;4044;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Exército dos Justos;PT;;;;4045;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Exército dos Puros e dos Justos;PT;;;;4046;EN;;amendment;commission;2005-05-13;2005-05-11;717/2005 (OJ L121);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:121:0062:0063:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Pashan-e-ahle Hadis;;;;;4300;EN;;amendment;commission;2005-11-10;2005-11-09;1825/2005 (OJ L294);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Lashkar e Tayyaba;;;;;4301;EN;;amendment;commission;2005-11-10;2005-11-09;1825/2005 (OJ L294);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;LET;;;;;4302;EN;;amendment;commission;2005-11-10;2005-11-09;1825/2005 (OJ L294);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Ejército de los Puros;ES;;;;4376;EN;;amendment;commission;2005-11-10;2005-11-09;1825/2005 (OJ L294);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Ejército de los Justos;ES;;;;4377;EN;;amendment;commission;2005-11-10;2005-11-09;1825/2005 (OJ L294);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Ejército de los Puros y de los Justos;ES;;;;4378;EN;;amendment;commission;2005-11-10;2005-11-09;1825/2005 (OJ L294);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0005:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Jamaat-ud-Dawa;;;;;7324;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;JUD;;;;;7325;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Jama'at al-Dawa;;;;;7326;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Jamaat ud-Daawa;;;;;7327;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Jamaat ul-Dawah;;;;;7328;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Jamaat-ul-Dawa;;;;;7329;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Jama'at-i-Dawat;;;;;7330;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Jamaiat-ud-Dawa;;;;;7331;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Jama'at-ud-Da'awah;;;;;7332;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Jama'at-ud-Da'awa;;;;;7333;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Jamaati-ud-Dawa;;;;;7334;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Армията на „чистите“;BG;;;;7459;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Армията на праведните;BG;;;;7460;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Армията на „чистите“ и праведните;BG;;;;7461;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Falah-i-Insaniat Foundation;;;;;15797;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2900;EU.1157.14;;;;;E;enterprise;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;FIF;;;;;15798;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2921;EU.1251.92;;;;;P;person;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;Rusdan;Abu;;Abu Rusdan;;;;;4062;EN;;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2921;EU.1251.92;;;;;P;person;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;Thoriq;Abu;;Abu Thoriq;;;;;4063;EN;;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2921;EU.1251.92;;;;;P;person;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;Rusdjan;;;;;4064;EN;;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2921;EU.1251.92;;;;;P;person;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;Rusjan;;;;;4065;EN;;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2921;EU.1251.92;;;;;P;person;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;Rusydan;;;;;4066;EN;;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2921;EU.1251.92;;;;;P;person;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;Thoriquddin;;;;;4067;EN;;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2921;EU.1251.92;;;;;P;person;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;Thoriquiddin;;;;;4068;EN;;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2921;EU.1251.92;;;;;P;person;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;Toriquddin;;;;;4069;EN;;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2921;EU.1251.92;;;;;P;person;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;Thoriquidin;;;;;4070;EN;;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2921;EU.1251.92;;;;;P;person;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;Thorik;Abu;;Abu Thorik;ES;;;;4071;EN;;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2921;EU.1251.92;;;;;P;person;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-08-16;16;8;1960;;;NO;GREGORIAN;;;;Kudus, Central Java;ID;INDONESIA;654;EN;;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Zulkarnaen;;;;;4072;EN;Good quality alias;amendment;commission;2019-04-26;2019-04-27;2019/663 (OJ L112);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:112:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Zulkarnan;;;;;4073;EN;Good quality alias;amendment;commission;2019-04-26;2019-04-27;2019/663 (OJ L112);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:112:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Zulkarnain;;;;;4074;EN;Good quality alias;amendment;commission;2019-04-26;2019-04-27;2019/663 (OJ L112);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:112:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Zulkarnin;;;;;4075;EN;Good quality alias;amendment;commission;2019-04-26;2019-04-27;2019/663 (OJ L112);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:112:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;Sunarso;Arif;;Arif Sunarso;;;;;4076;EN;Good quality alias;amendment;commission;2019-04-26;2019-04-27;2019/663 (OJ L112);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:112:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;Sumarsono;Aris;;Aris Sumarsono;;;;;4077;EN;;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;Sunarso;Aris;;Aris Sunarso;;;;;4078;EN;Good quality alias;amendment;commission;2019-04-26;2019-04-27;2019/663 (OJ L112);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:112:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;Zulkarnaen;Ustad;Daud;Ustad Daud Zulkarnaen;;;;;4079;EN;Good quality alias;amendment;commission;2019-04-26;2019-04-27;2019/663 (OJ L112);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:112:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Murshid;;;;;4080;EN;Low quality alias;amendment;commission;2019-04-26;2019-04-27;2019/663 (OJ L112);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:112:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Abdurrahman;;;;;141016;EN;low quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Abdul;;;;;141017;EN;low quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Abdullah Abdurrahman;;;;;141018;EN;low quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Zul;;;;;141019;EN;low quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Zainal Arifin;;;;;141020;EN;low quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Mbah Zul;;;;;141021;EN;low quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Pak Ud;;;;;141022;EN;low quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Daud;;;;;141023;EN;low quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;Desa Taman Fajar, Kecamatan Probolinggo, Kabupaten Lampung Timur, Lampung;;;;;;NO;;ID;INDONESIA;141024;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;Desa Gebang, Kecamatan Masaran, Kabupaten Sragen, Jawa Tengah;;;;;;NO;;ID;INDONESIA;141025;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-04-19;19;4;1963;;;NO;GREGORIAN;;;;Gebang village, Masaran, Sragen, Central Java;ID;INDONESIA;655;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2922;EU.1252.57;;2005-05-16;;(Date of UN designation: 2005-05-16)\n(Date of designation referred to in Article 7d(2)(i): 16.5.2005.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;241;EN;;amendment;commission;2005-05-19;2005-05-18;757/2005 (OJ L126);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:126:0038:0039:EN:PDF +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Islamic Jihad Group;;;;;4081;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Jama’at al-Jihad;;;;;4082;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Libyan Society;;;;;4083;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Kazakh Jama’at;;;;;4084;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Jamaat Mojahedin;;;;;4085;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Jamiyat;;;;;4086;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Jamiat al-Jihad al-Islami;;;;;4087;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Dzhamaat Modzhakhedov;;;;;4088;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Islamic Jihad Group of Uzbekistan;;;;;4089;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;al-Djihad al-Islami;;;;;4090;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Grupo Islámico Jihad;ES;;;;4092;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Sociedad Libia;ES;;;;4093;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Grupo Islámico Jihad de Uzbekistan;ES;;;;4094;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Islami rühmitus Jihad;ET;;;;4095;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Liibüa ühendus;ET;;;;4096;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Usbekistani islami rühmitus Jihad;ET;;;;4097;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Gruppo Jihad islamica;IT;;;;4098;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Società libica;IT;;;;4099;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Gruppo Jihad islamica dell’Uzbekistan;IT;;;;4100;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Islamska Grupa Dżihad;PL;;;;4101;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Grupo Islâmico Jihad;PT;;;;4102;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Skupina Islamský džihád;SK;;;;4103;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Skupina Islamski džihad;SL;;;;4104;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Libijsko združenje;SL;;;;4105;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Skupina Islamski džihad v Uzbekistanu;SL;;;;4106;EN;;amendment;commission;2005-06-04;2005-06-03;853/2005 (OJ L141);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:141:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Zamaat Modzhakhedov Tsentralnoy Asii;;;;;4636;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Islamic Jihad Union;;;;;6171;EN;;amendment;commission;2008-03-04;2008-03-03;198/2008 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:059:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Unión de la Jihad Islámica;ES;;;;6172;EN;;amendment;commission;2008-03-04;2008-03-03;198/2008 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:059:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;skupina islámský džihád;CS;;;;6173;EN;;amendment;commission;2008-03-04;2008-03-03;198/2008 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:059:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Unione della Jihad islamica;IT;;;;6174;EN;;amendment;commission;2008-03-04;2008-03-03;198/2008 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:059:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Il-Grupp tal-Ġiħad Iżlamiku;MT;;;;6175;EN;;amendment;commission;2008-03-04;2008-03-03;198/2008 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:059:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;is-Soċjetà Libjana;MT;;;;6176;EN;;amendment;commission;2008-03-04;2008-03-03;198/2008 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:059:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;il-Grupp tal-Ġiħad Iżlamiku ta’ l-Użbekistan;MT;;;;6177;EN;;amendment;commission;2008-03-04;2008-03-03;198/2008 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:059:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;l-Unjoni tal-Jihad Iżlamika;MT;;;;6178;EN;;amendment;commission;2008-03-04;2008-03-03;198/2008 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:059:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Unia Islamska Dżihad;PL;;;;6179;EN;;amendment;commission;2008-03-04;2008-03-03;198/2008 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:059:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Gruparea islamică Jihad;RO;;;;6180;EN;;amendment;commission;2008-03-04;2008-03-03;198/2008 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:059:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Societatea libaneză;RO;;;;6181;EN;;amendment;commission;2008-03-04;2008-03-03;198/2008 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:059:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Gruparea islamică Jihad din Uzbekistan;RO;;;;6182;EN;;amendment;commission;2008-03-04;2008-03-03;198/2008 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:059:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Uniunea Jihadului Islamic;RO;;;;6183;EN;;amendment;commission;2008-03-04;2008-03-03;198/2008 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:059:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Líbyjská organizácia;SK;;;;6184;EN;;amendment;commission;2008-03-04;2008-03-03;198/2008 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:059:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Skupina islamského džihádu Uzbekistanu;SK;;;;6185;EN;;amendment;commission;2008-03-04;2008-03-03;198/2008 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:059:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Únia islamského džihádu;SK;;;;6186;EN;;amendment;commission;2008-03-04;2008-03-03;198/2008 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:059:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;2940;EU.1094.61;;;;;E;enterprise;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Zveza islamskega džihada;SL;;;;6187;EN;;amendment;commission;2008-03-04;2008-03-03;198/2008 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:059:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3000;EU.1543.13;;;;(For name in Arabic script see http://www.un.org/Docs/sc/committees/1518/040602_inds.htm);P;person;amendment;commission;2005-07-09;2005-07-08;1087/2005 (OJ L177);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:177:0032:0033:EN:PDF;Ahmad;Muhammad;Yunis;Muhammad Yunis Ahmad;;M;;;4159;EN;;amendment;commission;2005-07-09;2005-07-08;1087/2005 (OJ L177);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:177:0032:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3000;EU.1543.13;;;;(For name in Arabic script see http://www.un.org/Docs/sc/committees/1518/040602_inds.htm);P;person;amendment;commission;2005-07-09;2005-07-08;1087/2005 (OJ L177);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:177:0032:0033:EN:PDF;Al-Ahmed;Muhammad;Yunis;Muhammad Yunis Al-Ahmed;;;;;4160;EN;;amendment;commission;2005-07-09;2005-07-08;1087/2005 (OJ L177);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:177:0032:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3000;EU.1543.13;;;;(For name in Arabic script see http://www.un.org/Docs/sc/committees/1518/040602_inds.htm);P;person;amendment;commission;2005-07-09;2005-07-08;1087/2005 (OJ L177);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:177:0032:0033:EN:PDF;Ahmed;Muhammad;Yunis;Muhammad Yunis Ahmed;;;;;4161;EN;;amendment;commission;2005-07-09;2005-07-08;1087/2005 (OJ L177);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:177:0032:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3000;EU.1543.13;;;;(For name in Arabic script see http://www.un.org/Docs/sc/committees/1518/040602_inds.htm);P;person;amendment;commission;2005-07-09;2005-07-08;1087/2005 (OJ L177);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:177:0032:0033:EN:PDF;Al-Badrani;Muhammad;Yunis Ahmad;Muhammad Yunis Ahmad Al-Badrani;;;;;4162;EN;;amendment;commission;2005-07-09;2005-07-08;1087/2005 (OJ L177);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:177:0032:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3000;EU.1543.13;;;;(For name in Arabic script see http://www.un.org/Docs/sc/committees/1518/040602_inds.htm);P;person;amendment;commission;2005-07-09;2005-07-08;1087/2005 (OJ L177);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:177:0032:0033:EN:PDF;Al-Moali;Muhammad;Yunis Ahmed;Muhammad Yunis Ahmed Al-Moali;;;;;4163;EN;;amendment;commission;2005-07-09;2005-07-08;1087/2005 (OJ L177);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:177:0032:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3000;EU.1543.13;;;;(For name in Arabic script see http://www.un.org/Docs/sc/committees/1518/040602_inds.htm);P;person;amendment;commission;2005-07-09;2005-07-08;1087/2005 (OJ L177);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:177:0032:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949;;;NO;GREGORIAN;;;;Al-Mowall, Mosul;IQ;IRAQ;683;EN;;amendment;commission;2005-07-09;2005-07-08;1087/2005 (OJ L177);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:177:0032:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3000;EU.1543.13;;;;(For name in Arabic script see http://www.un.org/Docs/sc/committees/1518/040602_inds.htm);P;person;amendment;commission;2005-07-09;2005-07-08;1087/2005 (OJ L177);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:177:0032:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;245;EN;;amendment;commission;2005-07-09;2005-07-08;1087/2005 (OJ L177);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:177:0032:0033:EN:PDF +28/10/2022;3060;EU.1489.36;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Boughanemi;Faycal;;Faycal Boughanemi;;;;;4192;EN;;amendment;commission;2005-08-03;2005-08-02;1278/2005 (OJ L202);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:202:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3060;EU.1489.36;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Boughanmi;Faical;;Faical Boughanmi;;;;;4193;EN;;amendment;commission;2005-08-03;2005-08-02;1278/2005 (OJ L202);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:202:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3060;EU.1489.36;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;al-Bughanimi;Faysal;;Faysal al-Bughanimi;;;;;7481;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3060;EU.1489.36;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Cremona;Number 5/B viale Cambonino;;;;;NO;(Italian fiscal code BGHFCL66R28Z352G);IT;ITALY;856;EN;Italian fiscal code BGHFCL66R28Z352G;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3060;EU.1489.36;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-10-28;28;10;1966;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;684;EN;;amendment;commission;2005-08-03;2005-08-02;1278/2005 (OJ L202);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:202:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3060;EU.1489.36;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;246;EN;;amendment;commission;2005-08-03;2005-08-02;1278/2005 (OJ L202);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:202:0034:0035:EN:PDF +28/10/2022;3062;EU.1474.16;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Laagoub;Abdelkader;;Abdelkader Laagoub;;;;;4197;EN;;amendment;commission;2005-08-03;2005-08-02;1278/2005 (OJ L202);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:202:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3062;EU.1474.16;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Rachid;;;;;15141;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3062;EU.1474.16;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Paderno Ponchielli (Cremona);Number 4 via Europa;;;;;NO;(Italian fiscal code LGBBLK66D23Z330U);IT;ITALY;858;EN;Italian fiscal code LGBBLK66D23Z330U;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3062;EU.1474.16;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-04-23;23;4;1966;;;NO;GREGORIAN;;;;Casablanca;MA;MOROCCO;686;EN;;amendment;commission;2005-08-03;2005-08-02;1278/2005 (OJ L202);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:202:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3062;EU.1474.16;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D-379312 (passport-National passport) ((moroccan passport));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;MA;;628;EN;(moroccan passport);amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;; +28/10/2022;3062;EU.1474.16;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DE-473900 (id-National identification card) ((moroccan identity card));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;MA;;629;EN;(moroccan identity card);amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;; +28/10/2022;3062;EU.1474.16;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA;;248;EN;;amendment;commission;2005-08-03;2005-08-02;1278/2005 (OJ L202);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:202:0034:0035:EN:PDF +28/10/2022;3080;EU.1475.78;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Yasir Sabawi Ibrahim Hasan Al-Tikriti;;M;;;4198;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3080;EU.1475.78;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Yassir Sabawi Ibrahim Hasan Al-Tikriti;;;;;4199;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3080;EU.1475.78;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Yasser Sabawi Ibrahim Hasan Al-Tikriti;;;;;4200;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3080;EU.1475.78;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Yasir Sab’awi Ibrahim Hasan Al-Tikriti;;;;;4201;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3080;EU.1475.78;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Yasir Sabawi Ibrahim Hassan Al-Tikriti;;;;;4202;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3080;EU.1475.78;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Ali Thafir Abdallah;;;;;4203;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3080;EU.1475.78;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;Mosul;;;;;;NO;;IQ;IRAQ;859;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3080;EU.1475.78;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;Az Zabadani;;;;;;NO;;IQ;IRAQ;860;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3080;EU.1475.78;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-05-15;15;5;1968;;;NO;GREGORIAN;;;;Al-Owja;IQ;IRAQ;687;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3080;EU.1475.78;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;;;NO;GREGORIAN;;;;Baghdad;IQ;IRAQ;688;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3080;EU.1475.78;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"284158 (other-Other identification number) ((expires 21.8.2005; name: ali thafir abdallah; date of birth: 1970; place of birth: baghdad, iraq))";NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;IQ;;131;EN;"(expires 21.8.2005; name: ali thafir abdallah; date of birth: 1970; place of birth: baghdad, iraq)";amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;; +28/10/2022;3080;EU.1475.78;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;249;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF +28/10/2022;3081;EU.1546.5;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Omar Sabawi Ibrahim Hasan Al-Tikriti;;M;;;4204;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3081;EU.1546.5;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Umar Sabawi Ibrahim Hasan Al-Tikriti;;;;;4205;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3081;EU.1546.5;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Omar Sab’awi Ibrahim Hasan Al-Tikriti;;;;;4206;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3081;EU.1546.5;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Omar Sabawi Ibrahim Hassan Al-Tikriti;;;;;4207;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3081;EU.1546.5;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Umar Ahmad Ali Al-Alusi;;;;;4208;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3081;EU.1546.5;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;Damascus;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;861;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3081;EU.1546.5;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;Az Zabadani;Al-Shahid Street, Al-Mahata Neighbourhood;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;862;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3081;EU.1546.5;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;YE;YEMEN;863;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3081;EU.1546.5;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;;;YES;GREGORIAN;;;;Baghdad;IQ;IRAQ;689;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3081;EU.1546.5;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;;;NO;GREGORIAN;;;;Baghdad;IQ;IRAQ;690;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3081;EU.1546.5;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"2863795 S (other-Other identification number) ((expires 23.8.2005; name: umar ahmad ali al- alusi; date of birth: 1970; place of birth: baghdad, iraq))";NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;IQ;;130;EN;"(expires 23.8.2005; name: umar ahmad ali al- alusi; date of birth: 1970; place of birth: baghdad, iraq)";amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;; +28/10/2022;3081;EU.1546.5;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;250;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF +28/10/2022;3082;EU.1547.67;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Ayman Sabawi Ibrahim Hasan Al-Tikriti;;M;;;4209;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3082;EU.1547.67;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Aiman Sabawi Ibrahim Hasan Al-Tikriti;;;;;4210;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3082;EU.1547.67;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Ayman Sab’awi Ibrahim Hasan Al-Tikriti;;;;;4211;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3082;EU.1547.67;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Ayman Sabawi Ibrahim Hassan Al-Tikriti;;;;;4212;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3082;EU.1547.67;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Qais Muhammad Salman;;;;;4213;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3082;EU.1547.67;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;Bludan;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;864;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3082;EU.1547.67;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;Baghdad;Mutanabi Area, Al Monsur;;;;;NO;;IQ;IRAQ;865;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3082;EU.1547.67;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;Al Monsur, Baghdad;Mutanabi Area;;;;;NO;;IQ;IRAQ;866;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3082;EU.1547.67;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-10-21;21;10;1971;;;NO;GREGORIAN;;;;Baghdad;IQ;IRAQ;691;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3082;EU.1547.67;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-10-21;21;10;1971;;;NO;GREGORIAN;;;;Al-Owja;IQ;IRAQ;692;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3082;EU.1547.67;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;251;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF +28/10/2022;3083;EU.1548.32;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Ibrahim Sabawi Ibrahim Hasan Al-Tikriti;;M;;;4214;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3083;EU.1548.32;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Ibrahim Sab’awi Ibrahim Hasan Al-Tikriti;;;;;4215;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3083;EU.1548.32;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Ibrahim Sabawi Ibrahim Hassan Al-Tikriti;;;;;4216;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3083;EU.1548.32;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Ibrahim Sabawi Ibrahim Al-Hassan Al-Tikriti;;;;;4217;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3083;EU.1548.32;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Muhammad Da’ud Salman;;;;;4218;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3083;EU.1548.32;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;Az Zabadani;Al-Shahid Street, Al-Mahata Neighbourhood;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;867;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3083;EU.1548.32;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;Az Zabadani, Damascus;Fuad Dawod Farm;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;868;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3083;EU.1548.32;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;Damascus;Fuad Dawod Farm, Az Zabadani;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;869;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3083;EU.1548.32;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;IQ;IRAQ;870;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3083;EU.1548.32;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-10-25;25;10;1983;;;NO;GREGORIAN;;;;Baghdad;IQ;IRAQ;693;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3083;EU.1548.32;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;;;NO;GREGORIAN;;;;Baghdad;IQ;IRAQ;694;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3083;EU.1548.32;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"284173 (other-Other identification number) ((expires 21.8.2005; name: muhammad da’ud salman; date of birth: 1977; place of birth: baghdad, iraq))";NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;IQ;;132;EN;"(expires 21.8.2005; name: muhammad da’ud salman; date of birth: 1977; place of birth: baghdad, iraq)";amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;; +28/10/2022;3083;EU.1548.32;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;252;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF +28/10/2022;3084;EU.1566.7;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Bashar Sabawi Ibrahim Hasan Al-Tikriti;;M;;;4219;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3084;EU.1566.7;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Bashar Sab’awi Ibrahim Hasan Al-Tikriti;;;;;4220;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3084;EU.1566.7;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Bashir Sab’awi Ibrahim Al-Hasan Al-Tikriti;;;;;4221;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3084;EU.1566.7;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Bashir Sabawi Ibrahim Al-Hassan Al-Tikriti;;;;;4222;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3084;EU.1566.7;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Bashar Sabawi Ibrahim Hasan Al-Bayjat;;;;;4223;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3084;EU.1566.7;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Ali Zafir ‘Abdullah’;;;;;4224;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3084;EU.1566.7;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;Az Zabadani, Damascus;Fuad Dawod Farm;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;871;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3084;EU.1566.7;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;Damascus;Fuad Dawod Farm, Az Zabadani;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;872;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3084;EU.1566.7;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;Beirut;;;;;;NO;;LB;LEBANON;873;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3084;EU.1566.7;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-07-17;17;7;1970;;;NO;GREGORIAN;;;;Baghdad;IQ;IRAQ;695;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3084;EU.1566.7;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;253;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF +28/10/2022;3085;EU.1567.69;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Sa’d Sabawi Ibrahim Hasan Al-Tikriti;;M;;;4225;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3085;EU.1567.69;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Sa’ad Sabawi Ibrahim Hasan Al-Tikriti;;;;;4226;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3085;EU.1567.69;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;Sa’d Sab’awi Hasan Al-Tikriti;;;;;4227;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3085;EU.1567.69;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;Az Zabadani;Al-Shahid Street, Al-Mahata Neighbourhood;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;874;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3085;EU.1567.69;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;YE;YEMEN;875;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3085;EU.1567.69;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-09-19;19;9;1988;;;NO;GREGORIAN;;;;;00;UNKNOWN;696;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3085;EU.1567.69;;;;(Son of Sabawi Ibrahim Hasan Al-Tikriti, former Presidential Advisor to Saddam Hussein);P;person;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;254;EN;;amendment;commission;2005-08-04;2005-08-03;1286/2005 (OJ L203);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:203:0017:0018:EN:PDF +28/10/2022;3100;EU.1601.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al-Akhtar Trust International;;;;;4228;EN;;amendment;commission;2005-08-24;2005-08-22;1378/2005 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:219:0027:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3100;EU.1601.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al Akhtar Trust;;;;;4229;EN;;amendment;commission;2005-08-24;2005-08-22;1378/2005 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:219:0027:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3100;EU.1601.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Al-Akhtar Medical Centre;;;;;4230;EN;;amendment;commission;2005-08-24;2005-08-22;1378/2005 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:219:0027:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3100;EU.1601.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Akhtarabad Medical Camp;;;;;4231;EN;;amendment;commission;2005-08-24;2005-08-22;1378/2005 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:219:0027:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3100;EU.1601.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Pakistan Relief Foundation;;;;;7304;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3100;EU.1601.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Pakistani Relief Foundation;;;;;7305;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3100;EU.1601.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Azmat-e-Pakistan Trust;;;;;7306;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3100;EU.1601.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Azmat Pakistan Trust;;;;;7307;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3100;EU.1601.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Karachi;ST-1/A, Gulsahn-e-Iqbal, Block 2;;25300;;;NO;;PK;PAKISTAN;876;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3100;EU.1601.44;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Karachi;Gulistan-e-Jauhar, Block 12;;;;;NO;;PK;PAKISTAN;877;EN;;amendment;commission;2005-08-24;2005-08-22;1378/2005 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:219:0027:0028:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3140;EU.1516.2;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Abdel Rahman;Abd Allah;Mohamed Ragab;Abd Allah Mohamed Ragab Abdel Rahman;;;;;4239;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3140;EU.1516.2;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abu Al-Khayr;;;;;4240;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3140;EU.1516.2;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ahmad Hasan;;;;;4241;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3140;EU.1516.2;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abu Jihad;;;;;4242;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3140;EU.1516.2;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-11-03;3;11;1957;;;NO;GREGORIAN;;;;Kafr Al-Shaykh;EG;EGYPT;699;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3140;EU.1516.2;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EG;;257;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF +28/10/2022;3141;EU.1549.94;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Ahmed;Zaki;Ezat Zaki;Zaki Ezat Zaki Ahmed;;M;;;4243;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3141;EU.1549.94;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Rif’at Salim;;;;;4244;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3141;EU.1549.94;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abu Usama;;;;;4245;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3141;EU.1549.94;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-04-21;21;4;1960;;;NO;GREGORIAN;;;;Sharqiyah;EG;EGYPT;700;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3141;EU.1549.94;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-04-21;21;4;1960;;;NO;GREGORIAN;;;;Zaqazig;EG;EGYPT;1708;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3141;EU.1549.94;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EG;;258;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF +28/10/2022;3144;EU.1602.9;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Mustafa Bakri;Ali;Sayyid Muhamed;Ali Sayyid Muhamed Mustafa Bakri;;M;;;4253;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3144;EU.1602.9;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ali Salim;;;;;4254;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3144;EU.1602.9;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abd Al-Aziz al-Masri;;;;;4255;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3144;EU.1602.9;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-04-18;18;4;1966;;;NO;GREGORIAN;;;;Beni-Suef;EG;EGYPT;703;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3144;EU.1602.9;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EG;;261;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;Yusef;Hani;El Sayyed Elsebai;Hani El Sayyed Elsebai Yusef;;M;;;4261;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;Abu Karim;;;;;4262;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;Yusif;Hani;Al-Sayyid Al-Sebai;Hani Al-Sayyid Al-Sebai Yusif;;;;;4263;EN;;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;Al-Sebai;Hani;Yousef;Hani Yousef Al-Sebai;;;;;4264;EN;;amendment;commission;2006-08-30;2006-08-29;1286/2006 (OJ L235);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:235:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;Hani Youssef;;;;;4265;EN;;amendment;commission;2005-10-15;2005-10-14;1690/2005 (OJ L271);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:271:0031:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;Hany Youseff;;;;;4266;EN;;amendment;commission;2005-10-15;2005-10-14;1690/2005 (OJ L271);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:271:0031:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;Hani Yusef;;;;;4267;EN;;amendment;commission;2005-10-15;2005-10-14;1690/2005 (OJ L271);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:271:0031:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;Al-Sabai;Hani;al-Sayyid;Hani al-Sayyid Al-Sabai;;;;;4268;EN;;amendment;commission;2006-08-30;2006-08-29;1286/2006 (OJ L235);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:235:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;El Sebai;Hani;al-Sayyid;Hani al-Sayyid El Sebai;;;;;4269;EN;;amendment;commission;2006-08-30;2006-08-29;1286/2006 (OJ L235);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:235:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;Al Siba’i;Hani;al-Sayyid;Hani al-Sayyid Al Siba’i;;;;;4270;EN;;amendment;commission;2006-08-30;2006-08-29;1286/2006 (OJ L235);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:235:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;El Sabaay;Hani;al-Sayyid;Hani al-Sayyid El Sabaay;;;;;4271;EN;;amendment;commission;2006-08-30;2006-08-29;1286/2006 (OJ L235);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:235:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;El-Sababt;;;;;4272;EN;;amendment;commission;2005-10-15;2005-10-14;1690/2005 (OJ L271);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:271:0031:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;Abu Tusnin;;;;;4273;EN;;amendment;commission;2005-10-15;2005-10-14;1690/2005 (OJ L271);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:271:0031:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;Abu Akram;;;;;4274;EN;;amendment;commission;2005-10-15;2005-10-14;1690/2005 (OJ L271);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:271:0031:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;Youssef;Hani;Elsayed;Hani Elsayed Youssef;;;;;4979;EN;;amendment;commission;2006-08-30;2006-08-29;1286/2006 (OJ L235);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:235:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;London;;;;;;NO;;GB;UNITED KINGDOM;879;EN;;amendment;commission;2005-10-15;2005-10-14;1690/2005 (OJ L271);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:271:0031:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-03-01;1;3;1961;;;NO;GREGORIAN;;;;Qaylubiyah;EG;EGYPT;705;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-06-16;16;6;1960;;;NO;GREGORIAN;;;;Qaylubiyah;EG;EGYPT;706;EN;;amendment;commission;2006-08-30;2006-08-29;1286/2006 (OJ L235);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:235:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3146;EU.1550.22;;;;;P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EG;;263;EN;;amendment;commission;2005-10-06;2005-10-05;1629/2005 (OJ L260);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:260:0009:0010:EN:PDF +28/10/2022;3181;EU.3607.30;;2005-11-01;Date of UN designation: 1 November 2005.;(Date of UN designation: 2005-11-01)\n(Designation details: Date of UN designation: 1 November 2005.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Bwambale;Frank;Kakolele;Frank Kakolele Bwambale;;M;;FARDC General;4303;EN;;amendment;council;2015-04-21;2015-04-22;2015/614 (OJ L102);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3181;EU.3607.30;;2005-11-01;Date of UN designation: 1 November 2005.;(Date of UN designation: 2005-11-01)\n(Designation details: Date of UN designation: 1 November 2005.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Kakorere;Frank;;Frank Kakorere;;;;;4304;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3181;EU.3607.30;;2005-11-01;Date of UN designation: 1 November 2005.;(Date of UN designation: 2005-11-01)\n(Designation details: Date of UN designation: 1 November 2005.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Bwambale;Frank;Kakorere;Frank Kakorere Bwambale;;;;;4305;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3181;EU.3607.30;;2005-11-01;Date of UN designation: 1 November 2005.;(Date of UN designation: 2005-11-01)\n(Designation details: Date of UN designation: 1 November 2005.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;AIGLE BLANC;EN;;;;110760;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3181;EU.3607.30;;2005-11-01;Date of UN designation: 1 November 2005.;(Date of UN designation: 2005-11-01)\n(Designation details: Date of UN designation: 1 November 2005.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;Kinshasa;;;;;;NO;(Address: Kinshasa, Democratic Republic of the Congo (as of June 2016));CD;CONGO, Democratic Republic of (was Zaire);110761;EN;Address: Kinshasa, Democratic Republic of the Congo (as of June 2016);amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3181;EU.3607.30;;2005-11-01;Date of UN designation: 1 November 2005.;(Date of UN designation: 2005-11-01)\n(Designation details: Date of UN designation: 1 November 2005.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;716;EN;;amendment;commission;2011-11-01;2011-10-25;1097/2011 (OJ L285);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:285:0002:0005:EN:PDF +28/10/2022;3182;EU.3621.48;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Given the rank of General in the FARDC in December 2004; (b) As of June 2011, detained in Makala Prison in Kinshasa; (c) As of 25 March 2011, the High Military Court in Kinshasa opened a trial against Kakwavu for war crimes; (d) In November 2014, convicted by a DRC military court to ten years in prison.)";P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Kakwavu Bukande;Jérôme;;Jérôme Kakwavu Bukande;;M;General;;4306;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3182;EU.3621.48;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Given the rank of General in the FARDC in December 2004; (b) As of June 2011, detained in Makala Prison in Kinshasa; (c) As of 25 March 2011, the High Military Court in Kinshasa opened a trial against Kakwavu for war crimes; (d) In November 2014, convicted by a DRC military court to ten years in prison.)";P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Kakwavu;Jérôme;;Jérôme Kakwavu;;;;;4307;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3182;EU.3621.48;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Given the rank of General in the FARDC in December 2004; (b) As of June 2011, detained in Makala Prison in Kinshasa; (c) As of 25 March 2011, the High Military Court in Kinshasa opened a trial against Kakwavu for war crimes; (d) In November 2014, convicted by a DRC military court to ten years in prison.)";P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Commandant Jérôme;;;;;4308;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3182;EU.3621.48;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Given the rank of General in the FARDC in December 2004; (b) As of June 2011, detained in Makala Prison in Kinshasa; (c) As of 25 March 2011, the High Military Court in Kinshasa opened a trial against Kakwavu for war crimes; (d) In November 2014, convicted by a DRC military court to ten years in prison.)";P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;264;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF +28/10/2022;3183;EU.3712.74;;2005-11-01;Date of UN designation: 1 November 2005.;(Date of UN designation: 2005-11-01)\n(Designation details: Date of UN designation: 1 November 2005.)\n(Appointed General in the FARDC in December 2004.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Katanga;Germain;;Germain Katanga;;M;General;;4309;EN;;amendment;council;2014-12-01;2014-12-01;1275/2014 (OJ L346);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3183;EU.3712.74;;2005-11-01;Date of UN designation: 1 November 2005.;(Date of UN designation: 2005-11-01)\n(Designation details: Date of UN designation: 1 November 2005.)\n(Appointed General in the FARDC in December 2004.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Address: Democratic Republic of the Congo (in prison).);CD;CONGO, Democratic Republic of (was Zaire);110765;EN;Address: Democratic Republic of the Congo (in prison).;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3183;EU.3712.74;;2005-11-01;Date of UN designation: 1 November 2005.;(Date of UN designation: 2005-11-01)\n(Designation details: Date of UN designation: 1 November 2005.)\n(Appointed General in the FARDC in December 2004.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-04-28;28;4;1978;;;NO;GREGORIAN;;;Ituri Province;Mambasa;CD;CONGO, Democratic Republic of (was Zaire);110766;EN;Place of birth: Mambasa, Ituri Province, Democratic Republic of the Congo;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3183;EU.3712.74;;2005-11-01;Date of UN designation: 1 November 2005.;(Date of UN designation: 2005-11-01)\n(Designation details: Date of UN designation: 1 November 2005.)\n(Appointed General in the FARDC in December 2004.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;265;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF +28/10/2022;3184;EU.3622.13;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2020-12-18;2020-12-18;2020/2133 (OJ L430);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.430.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A430%3ATOC;;;;Thomas LUBANGA;;M;;Former President of the UPC/L;4310;EN;;amendment;council;2020-12-18;2020-12-18;2020/2133 (OJ L430);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.430.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A430%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3184;EU.3622.13;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2020-12-18;2020-12-18;2020/2133 (OJ L430);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.430.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A430%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);110767;EN;;amendment;council;2020-12-18;2020-12-18;2020/2133 (OJ L430);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.430.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A430%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3184;EU.3622.13;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2020-12-18;2020-12-18;2020/2133 (OJ L430);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.430.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A430%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Ituri;CD;CONGO, Democratic Republic of (was Zaire);708;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3184;EU.3622.13;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2020-12-18;2020-12-18;2020/2133 (OJ L430);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.430.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A430%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;266;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF +28/10/2022;3185;EU.3731.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Mandro;Khawa;Panga;Khawa Panga Mandro;;;;Former President of PUSIC;4311;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3185;EU.3731.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Panga;Kawa;;Kawa Panga;;;;;4312;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3185;EU.3731.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Mandro;Kawa;Panga;Kawa Panga Mandro;;;;;4313;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3185;EU.3731.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Yves Andoul Karim;;;;;4314;EN;;amendment;commission;2007-02-28;2007-02-28;201/2007 (OJ L59);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:059:0073:0074:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3185;EU.3731.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Chief Kahwa;;;;;4315;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3185;EU.3731.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Kawa;;;;;4316;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3185;EU.3731.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Kawa Mandro;;;;;5112;EN;;amendment;commission;2007-02-28;2007-02-28;201/2007 (OJ L59);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:059:0073:0074:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3185;EU.3731.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Mandro Panga Kahwa;;;;;5113;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3185;EU.3731.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Yves Khawa Panga Mandro;;;;;5114;EN;;amendment;commission;2007-02-28;2007-02-28;201/2007 (OJ L59);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:059:0073:0074:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3185;EU.3731.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Address: Uganda (as of May 2016));UG;UGANDA;110768;EN;Address: Uganda (as of May 2016);amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3185;EU.3731.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-08-20;20;8;1973;;;NO;GREGORIAN;;;;Bunia;CD;CONGO, Democratic Republic of (was Zaire);709;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3185;EU.3731.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;267;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF +28/10/2022;3186;EU.3733.41;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;MPAMO;Iruta;Douglas;Iruta Douglas MPAMO;;M;;Owner/Manager of the Compagnie Aérienne des Grands Lacs and of Great Lakes Business Company.;4317;EN;;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3186;EU.3733.41;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Mpano;;;;;5115;EN;;amendment;commission;2007-02-28;2007-02-28;201/2007 (OJ L59);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:059:0073:0074:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3186;EU.3733.41;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Mpamo;Doulas;Iruta;Doulas Iruta Mpamo;;;;;5116;EN;;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3186;EU.3733.41;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;Gisenyi;;;;;;NO;(Gisenyi, Rwanda (as of June 2011).);RW;RWANDA;112917;EN;Gisenyi, Rwanda (as of June 2011).;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3186;EU.3733.41;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-12-28;28;12;1965;;;NO;GREGORIAN;;;;Bashali, Masisi;CD;CONGO, Democratic Republic of (was Zaire);853;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3186;EU.3733.41;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-12-29;29;12;1965;;;NO;GREGORIAN;;;;Goma;CD;CONGO, Democratic Republic of (was Zaire);854;EN;;amendment;commission;2007-02-28;2007-02-28;201/2007 (OJ L59);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:059:0073:0074:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3186;EU.3733.41;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Uvira;00;UNKNOWN;1681;EN;;amendment;council;2014-12-01;2014-12-01;1275/2014 (OJ L346);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3186;EU.3733.41;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;268;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;Mudacumura;Sylvestre;;Sylvestre Mudacumura;;M;;a) FDLR-FOCA Commander, b) FDLR-FOCA Lieutenant General;4318;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;Radja;;;;;4319;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;Mupenzi;Bernard;;Bernard Mupenzi;;;;FDLR-FOCA Commander;4320;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;General Major Mupenzi;;;;FDLR-FOCA Lieutenant General;4321;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;Υποστράτηγος Mupenzi;EL;;;;4371;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;Général Major Mupenzi;FR;;;;4372;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;generaal-majoor Mupenzi;NL;;;;4373;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;General Mudacumura;;;;;8388;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;generaal Mudacumura;NL;;;;8418;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;Général Mudacumura;FR;;;;8419;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;Στρατηγός Mudacumura;EL;;;;8420;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;генерал-майор Mupenzi;BG;;;;8421;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;генерал Mudacumura;BG;;;;8422;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;generálmajor Mupenzi;SK;;;;8423;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;generál Mudacumura;SK;;;;8424;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;generalmajor Mupenzi;SV;;;;8425;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;Pharaoh;EN;;;;110771;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;North Kivu Province;;NO;(Address: North Kivu Province, Democratic Republic of the Congo (as of June 2016));CD;CONGO, Democratic Republic of (was Zaire);110769;EN;Address: North Kivu Province, Democratic Republic of the Congo (as of June 2016);amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954;;;NO;GREGORIAN;;Gisenyi prefecture;Kibilira commune;Cellule Ferege;RW;RWANDA;110770;EN;Place of birth: Cellule Ferege, Gatumba sector, Kibilira commune, Gisenyi prefecture, Rwanda;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3187;EU.3704.3;;2005-11-01;;"(Date of UN designation: 2005-11-01)\n((a) Military commander of FDLR-FOCA, also political 1st Vice-President and head of FOCA High Command; (b) As of 2014, based at the FDLR's headquarters in Nganga, North Kivu.)";P;person;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RW;;269;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF +28/10/2022;3188;EU.3623.75;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Died in prison in Germany on 16 April 2019. Arrested by German authorities on 17 November 2009 and found guilty by a German court on 28 September 2015 of leadership of a foreign terrorist group and aiding in war crimes. Received a 13-year sentence and is in prison in Germany as of June 2016. Re-elected FDLR President on 29 November 2014 for a five-year term.);P;person;amendment;council;2020-03-20;2020-03-20;2020/415 (OJ L86);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0415&from=EN;Murwanashyaka;Ignace;;Ignace Murwanashyaka;;M;Dr;FDLR President;4322;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3188;EU.3623.75;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Died in prison in Germany on 16 April 2019. Arrested by German authorities on 17 November 2009 and found guilty by a German court on 28 September 2015 of leadership of a foreign terrorist group and aiding in war crimes. Received a 13-year sentence and is in prison in Germany as of June 2016. Re-elected FDLR President on 29 November 2014 for a five-year term.);P;person;amendment;council;2020-03-20;2020-03-20;2020/415 (OJ L86);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0415&from=EN;;;;Ignace;;;;;4323;EN;;amendment;commission;2006-01-20;2006-01-20;84/2006 (OJ L14);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:014:0014:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3188;EU.3623.75;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Died in prison in Germany on 16 April 2019. Arrested by German authorities on 17 November 2009 and found guilty by a German court on 28 September 2015 of leadership of a foreign terrorist group and aiding in war crimes. Received a 13-year sentence and is in prison in Germany as of June 2016. Re-elected FDLR President on 29 November 2014 for a five-year term.);P;person;amendment;council;2020-03-20;2020-03-20;2020/415 (OJ L86);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0415&from=EN;;;;Dr Ignace;EN;;Dr.;FDLR President;110778;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3188;EU.3623.75;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Died in prison in Germany on 16 April 2019. Arrested by German authorities on 17 November 2009 and found guilty by a German court on 28 September 2015 of leadership of a foreign terrorist group and aiding in war crimes. Received a 13-year sentence and is in prison in Germany as of June 2016. Re-elected FDLR President on 29 November 2014 for a five-year term.);P;person;amendment;council;2020-03-20;2020-03-20;2020/415 (OJ L86);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0415&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Address: Germany (in prison).);DE;GERMANY;110777;EN;Address: Germany (in prison).;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3188;EU.3623.75;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Died in prison in Germany on 16 April 2019. Arrested by German authorities on 17 November 2009 and found guilty by a German court on 28 September 2015 of leadership of a foreign terrorist group and aiding in war crimes. Received a 13-year sentence and is in prison in Germany as of June 2016. Re-elected FDLR President on 29 November 2014 for a five-year term.);P;person;amendment;council;2020-03-20;2020-03-20;2020/415 (OJ L86);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0415&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-05-14;14;5;1963;;;NO;GREGORIAN;;;;Butera;RW;RWANDA;741;EN;;amendment;commission;2007-02-28;2007-02-28;201/2007 (OJ L59);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:059:0073:0074:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3188;EU.3623.75;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Died in prison in Germany on 16 April 2019. Arrested by German authorities on 17 November 2009 and found guilty by a German court on 28 September 2015 of leadership of a foreign terrorist group and aiding in war crimes. Received a 13-year sentence and is in prison in Germany as of June 2016. Re-elected FDLR President on 29 November 2014 for a five-year term.);P;person;amendment;council;2020-03-20;2020-03-20;2020/415 (OJ L86);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0415&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-05-14;14;5;1963;;;NO;GREGORIAN;;;;Ngoma, Butare;RW;RWANDA;855;EN;;amendment;commission;2007-02-28;2007-02-28;201/2007 (OJ L59);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:059:0073:0074:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3188;EU.3623.75;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Died in prison in Germany on 16 April 2019. Arrested by German authorities on 17 November 2009 and found guilty by a German court on 28 September 2015 of leadership of a foreign terrorist group and aiding in war crimes. Received a 13-year sentence and is in prison in Germany as of June 2016. Re-elected FDLR President on 29 November 2014 for a five-year term.);P;person;amendment;council;2020-03-20;2020-03-20;2020/415 (OJ L86);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0415&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RW;;270;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF +28/10/2022;3189;EU.3625.5;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Former FARDC Deputy Military Regional Commander of 10th Military Region in April 2004.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Mutebutsi;Jules;;Jules Mutebutsi;;M;;;4324;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3189;EU.3625.5;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Former FARDC Deputy Military Regional Commander of 10th Military Region in April 2004.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Mutebusi;Jules;;Jules Mutebusi;;;;;4325;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3189;EU.3625.5;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Former FARDC Deputy Military Regional Commander of 10th Military Region in April 2004.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Mutebuzi;Jules;;Jules Mutebuzi;;;;;4326;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3189;EU.3625.5;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Former FARDC Deputy Military Regional Commander of 10th Military Region in April 2004.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Colonel Mutebutsi;;;;;4327;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3189;EU.3625.5;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Former FARDC Deputy Military Regional Commander of 10th Military Region in April 2004.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Συνταγματάρχης Mutebutsi;EL;;;;4354;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3189;EU.3625.5;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Former FARDC Deputy Military Regional Commander of 10th Military Region in April 2004.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Kolonel Mutebutsi;NL;;;;4359;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3189;EU.3625.5;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Former FARDC Deputy Military Regional Commander of 10th Military Region in April 2004.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;полковник Mutebutsi;BG;;;;8426;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3189;EU.3625.5;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Former FARDC Deputy Military Regional Commander of 10th Military Region in April 2004.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;plukovník Mutebutsi;SK;;;;8427;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3189;EU.3625.5;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Former FARDC Deputy Military Regional Commander of 10th Military Region in April 2004.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;pulkvedis Mutebutsi;LV;;;;8428;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3189;EU.3625.5;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Former FARDC Deputy Military Regional Commander of 10th Military Region in April 2004.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;Minembwe South Kivu;CD;CONGO, Democratic Republic of (was Zaire);710;EN;;amendment;commission;2011-11-01;2011-10-25;1097/2011 (OJ L285);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:285:0002:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3189;EU.3625.5;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Former FARDC Deputy Military Regional Commander of 10th Military Region in April 2004.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;271;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF +28/10/2022;3190;EU.3631.49;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Mathieu Chui Ngudjolo was the Chief of Staff of the FRPI, exercising influence over policies and maintaining command and control the activities of FRPI forces.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Ngudjolo;Mathieu;Chui;Mathieu Chui Ngudjolo;;M;;Chief of Staff and former Chief of Staff of the FRPI;4328;EN;;amendment;council;2014-12-01;2014-12-01;1275/2014 (OJ L346);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3190;EU.3631.49;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Mathieu Chui Ngudjolo was the Chief of Staff of the FRPI, exercising influence over policies and maintaining command and control the activities of FRPI forces.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Ngudjolo;Cui;;Cui Ngudjolo;;;;;4329;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3190;EU.3631.49;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Mathieu Chui Ngudjolo was the Chief of Staff of the FRPI, exercising influence over policies and maintaining command and control the activities of FRPI forces.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);110779;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3190;EU.3631.49;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Mathieu Chui Ngudjolo was the Chief of Staff of the FRPI, exercising influence over policies and maintaining command and control the activities of FRPI forces.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-10-08;8;10;1970;;;NO;GREGORIAN;;Ituri Province;Bunia;;CD;CONGO, Democratic Republic of (was Zaire);110780;EN;Place of birth: Bunia, Ituri Province, Democratic Republic of the Congo;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3190;EU.3631.49;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(Mathieu Chui Ngudjolo was the Chief of Staff of the FRPI, exercising influence over policies and maintaining command and control the activities of FRPI forces.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;110781;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN +28/10/2022;3191;EU.3632.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(President of FNI);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Njabu;Floribert;Ngabu;Floribert Ngabu Njabu;;M;;;4330;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3191;EU.3632.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(President of FNI);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Njabu;Floribert;;Floribert Njabu;;;;;4331;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3191;EU.3632.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(President of FNI);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Ndjabu;Floribert;;Floribert Ndjabu;;;;;4332;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3191;EU.3632.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(President of FNI);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Ngabu;Floribert;;Floribert Ngabu;;;;;4333;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3191;EU.3632.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(President of FNI);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Ndjabu;;;;;4334;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3191;EU.3632.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(President of FNI);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Floribert Njabu Ngabu;EN;;;;110784;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3191;EU.3632.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(President of FNI);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Ndjabu;Floribert;Ngabu;Floribert Ngabu Ndjabu;EN;;;;110788;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3191;EU.3632.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(President of FNI);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-05-23;23;5;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;110782;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3191;EU.3632.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(President of FNI);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"OB 0243318 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;CD;;110783;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;; +28/10/2022;3191;EU.3632.14;;2005-11-01;;(Date of UN designation: 2005-11-01)\n(President of FNI);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;110789;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN +28/10/2022;3192;EU.3633.76;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Nkunda;Laurent;;Laurent Nkunda;;M;;;4335;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3192;EU.3633.76;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Bwatare;Laurent;Nkunda;Laurent Nkunda Bwatare;;;;;4336;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3192;EU.3633.76;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Nkundabatware;Laurent;;Laurent Nkundabatware;;;;;4337;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3192;EU.3633.76;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Mahoro Batware;Laurent;Nkunda;Laurent Nkunda Mahoro Batware;;;;;4338;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3192;EU.3633.76;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;General Nkunda;;;;;4339;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3192;EU.3633.76;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Général Nkunda;FR;;;;4357;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3192;EU.3633.76;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Generaal Nkunda;NL;;;;4360;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3192;EU.3633.76;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Batware;Laurent;Nkunda;Laurent Nkunda Batware;;;;;5117;EN;;amendment;commission;2007-02-28;2007-02-28;201/2007 (OJ L59);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:059:0073:0074:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3192;EU.3633.76;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Nkunda Mihigo;Laurent;;Laurent Nkunda Mihigo;;;;;7006;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3192;EU.3633.76;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;генерал Nkunda;BG;;;;8429;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3192;EU.3633.76;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;ģenerālis Nkunda;LV;;;;8430;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3192;EU.3633.76;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;'Chairman';;;;;14764;EN;;amendment;commission;2011-11-01;2011-10-25;1097/2011 (OJ L285);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:285:0002:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3192;EU.3633.76;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;'Papa Six';;;;;14765;EN;;amendment;commission;2011-11-01;2011-10-25;1097/2011 (OJ L285);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:285:0002:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3192;EU.3633.76;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-02-06;6;2;1967;;;NO;GREGORIAN;;;;North Kivu/Rutshuru;CD;CONGO, Democratic Republic of (was Zaire);711;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3192;EU.3633.76;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-02-02;2;2;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;856;EN;;amendment;commission;2007-02-28;2007-02-28;201/2007 (OJ L59);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:059:0073:0074:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3192;EU.3633.76;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;272;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF +28/10/2022;3193;EU.3639.60;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Nyakuni;James;;James Nyakuni;;M;;;4340;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3193;EU.3639.60;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UG;;273;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF +28/10/2022;3194;EU.3641.50;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Ozia Mazio;Dieudonné;;Dieudonné Ozia Mazio;;M;;President of Fédération des entreprises congolaises -FEC- in Aru territory.;4341;EN;;amendment;council;2014-12-01;2014-12-01;1275/2014 (OJ L346);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3194;EU.3641.50;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Ozia Mazio;;;;;4342;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3194;EU.3641.50;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Omari;;;;;4343;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3194;EU.3641.50;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Mr Omari;;;;;4344;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3194;EU.3641.50;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-06-06;6;6;1949;;;NO;GREGORIAN;;;;Ariwara;CD;CONGO, Democratic Republic of (was Zaire);712;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3194;EU.3641.50;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;274;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF +28/10/2022;3195;EU.3649.61;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;Bosco TAGANDA;;;;Nominated FARDC Brigadier-General by Presidential Decree on 11 December 2004, following Ituri peace agreements. Formerly Chief of Staff in CNDP and became CNDP military commander since the arrest of Laurent Nkunda in January 2009. Since January 2009, de facto Deputy Commander of consecutive anti-FDLR operations ‘Umoja Wetu’, ‘Kimia II’, and ‘Amani Leo’ in North and South Kivu.;4345;EN;;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3195;EU.3649.61;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;Ntaganda;Bosco;;Bosco Ntaganda;;;;;4346;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3195;EU.3649.61;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;Ntagenda;Bosco;;Bosco Ntagenda;;;;;4347;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3195;EU.3649.61;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;Terminator;;;;;4348;EN;;amendment;commission;2011-11-01;2011-10-25;1097/2011 (OJ L285);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:285:0002:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3195;EU.3649.61;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;Major;;;;;4349;EN;;amendment;commission;2011-11-01;2011-10-25;1097/2011 (OJ L285);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:285:0002:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3195;EU.3649.61;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;General Taganda;;;;;7017;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3195;EU.3649.61;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;Lydia;;;;;14760;EN;(When he was part of APR);amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3195;EU.3649.61;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;Tango Romeo;;;;;14762;EN;(Call sign);amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3195;EU.3649.61;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;Romeo;;;;;112920;EN;(Call sign);amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3195;EU.3649.61;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;The Hague;;;;;;NO;((as of June 2016));NL;NETHERLANDS;110786;EN;(as of June 2016);amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3195;EU.3649.61;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;1974;NO;GREGORIAN;;;Bigogwe;;RW;RWANDA;110792;EN;Between 1973 and 1974;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3195;EU.3649.61;;2005-11-01;;(Date of UN designation: 2005-11-01);P;person;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;275;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF +28/10/2022;3196;EU.3676.72;;2005-11-01;;(Date of UN designation: 2005-11-01);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;TPD;;;;;4351;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3196;EU.3676.72;;2005-11-01;;(Date of UN designation: 2005-11-01);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Tous Pour la Paix et le développement;;;;;4358;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3196;EU.3676.72;;2005-11-01;;(Date of UN designation: 2005-11-01);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;TOUS POUR LA PAIX ET LE DEVELOPPEMENT (NGO);EN;;;;18745;EN;;amendment;council;2015-04-21;2015-04-22;2015/614 (OJ L102);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3196;EU.3676.72;;2005-11-01;;(Date of UN designation: 2005-11-01);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;Goma, North Kivu;;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);880;EN;;amendment;commission;2005-11-10;2005-11-10;1824/2005 (OJ L294);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:294:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3200;EU.3665.9;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizbul Mujahideen;;;;;4379;EN;;amendment;council;2005-11-30;2005-11-30;2005/848/EC (OJ L314);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:314:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3200;EU.3665.9;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;HM;;;;;4380;EN;;amendment;council;2005-11-30;2005-11-30;2005/848/EC (OJ L314);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:314:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3200;EU.3665.9;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizbul Muyahidín;ES;;;;4381;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3200;EU.3665.9;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizb al-Mudžáhidín;CS;;;;4382;EN;;amendment;council;2005-11-30;2005-11-30;2005/848/EC (OJ L314);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:314:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3200;EU.3665.9;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hisbollah-Mudschaheddin;DE;;;;4383;EN;;amendment;council;2005-11-30;2005-11-30;2005/848/EC (OJ L314);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:314:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3200;EU.3665.9;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Χιζμπουλ Μουτζαχεντιν;EL;;;;4384;EN;;amendment;council;2005-11-30;2005-11-30;2005/848/EC (OJ L314);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:314:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3200;EU.3665.9;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizbul Mujahedin;FR;;;;4385;EN;;amendment;council;2005-11-30;2005-11-30;2005/848/EC (OJ L314);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:314:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3200;EU.3665.9;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizbul Mudzsahedin;HU;;;;4386;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3200;EU.3665.9;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizbul Mudżahedin;PL;;;;4387;EN;;amendment;council;2005-11-30;2005-11-30;2005/848/EC (OJ L314);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:314:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3200;EU.3665.9;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizbul Mujaïdine;PT;;;;4388;EN;;amendment;council;2005-11-30;2005-11-30;2005/848/EC (OJ L314);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:314:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3200;EU.3665.9;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizbu-l-mudžáhidín;SK;;;;4389;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3200;EU.3665.9;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizbul Mujahidin;FI;;;;4391;EN;;amendment;council;2005-11-30;2005-11-30;2005/848/EC (OJ L314);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:314:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3200;EU.3665.9;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizbul mujahidin;SV;;;;4392;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3200;EU.3665.9;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Муджахидини на Хизбула;BG;;;;5662;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3200;EU.3665.9;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizbul Mudjahideen;SL;;;;7188;EN;;repealing;council;2009-06-16;2009-06-16;501/2009 (OJ L151);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:151:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3224;EU.3206.11;;2005-12-06;;(Date of UN designation: 2005-12-06)\n(Mother's name: Farida Hussein Khadir.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;Ahmad;Farhad;Kanabi;Farhad Kanabi Ahmad;;;;;4405;EN;;amendment;commission;2006-08-10;2006-08-09;1210/2006 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:219:0014:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3224;EU.3206.11;;2005-12-06;;(Date of UN designation: 2005-12-06)\n(Mother's name: Farida Hussein Khadir.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;Achmed;Kaua;Omar;Kaua Omar Achmed;;;;;4406;EN;;amendment;commission;2006-08-10;2006-08-09;1210/2006 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:219:0014:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3224;EU.3206.11;;2005-12-06;;(Date of UN designation: 2005-12-06)\n(Mother's name: Farida Hussein Khadir.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;Hamawandi;Kawa;;Kawa Hamawandi;;;;;4906;EN;;amendment;commission;2006-08-10;2006-08-09;1210/2006 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:219:0014:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3224;EU.3206.11;;2005-12-06;;(Date of UN designation: 2005-12-06)\n(Mother's name: Farida Hussein Khadir.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Kawa Hamawandi;;;;;15151;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3224;EU.3206.11;;2005-12-06;;(Date of UN designation: 2005-12-06)\n(Mother's name: Farida Hussein Khadir.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Kawa Omar Ahmed;EN;;;;107254;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3224;EU.3206.11;;2005-12-06;;(Date of UN designation: 2005-12-06)\n(Mother's name: Farida Hussein Khadir.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;IQ;IRAQ;2207;EN;;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3224;EU.3206.11;;2005-12-06;;(Date of UN designation: 2005-12-06)\n(Mother's name: Farida Hussein Khadir.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;Arbil — Qushtuba;house no. SH 11, alley 5380;;;;;NO;(house no. SH 11, alley 5380);IQ;IRAQ;107253;EN;house no. SH 11, alley 5380;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3224;EU.3206.11;;2005-12-06;;(Date of UN designation: 2005-12-06)\n(Mother's name: Farida Hussein Khadir.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-07-01;1;7;1971;;;NO;GREGORIAN;;;;Arbil;IQ;IRAQ;718;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3224;EU.3206.11;;2005-12-06;;(Date of UN designation: 2005-12-06)\n(Mother's name: Farida Hussein Khadir.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A 0139243 German travel document (travelcardid-Temporary Travel Document) [revoked by issuer](‘reiseausweis’ . revoked as at sep.2012.);NO;NO;NO;NO;YES;;;;;;;travelcardid;Temporary Travel Document;;DE;;142;EN;‘reiseausweis’ . revoked as at sep.2012.;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;; +28/10/2022;3224;EU.3206.11;;2005-12-06;;(Date of UN designation: 2005-12-06)\n(Mother's name: Farida Hussein Khadir.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;279;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF +28/10/2022;3225;EU.4066.88;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-10-10;2017-10-11;2017/1834 (OJ L260);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1834&from=EN;Hapilon;Isnilon;Totoni;Isnilon Totoni Hapilon;;;;;4407;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3225;EU.4066.88;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-10-10;2017-10-11;2017/1834 (OJ L260);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1834&from=EN;Hapilun;Isnilon;;Isnilon Hapilun;;;;;4408;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3225;EU.4066.88;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-10-10;2017-10-11;2017/1834 (OJ L260);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1834&from=EN;Hapilun;Isnilun;;Isnilun Hapilun;;;;;4409;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3225;EU.4066.88;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-10-10;2017-10-11;2017/1834 (OJ L260);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1834&from=EN;;;;Abu Musab;;;;;4410;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3225;EU.4066.88;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-10-10;2017-10-11;2017/1834 (OJ L260);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1834&from=EN;;;;Salahudin;;;;;4411;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3225;EU.4066.88;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-10-10;2017-10-11;2017/1834 (OJ L260);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1834&from=EN;;;;Tuan Isnilon;;;;;4412;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3225;EU.4066.88;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-10-10;2017-10-11;2017/1834 (OJ L260);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1834&from=EN;;;;;;;;;;;;;;;;;;;Lanao del Sur;;;;;;NO;(Lanao del Sur, the Philippines (location since 2016));PH;PHILIPPINES;114564;EN;Lanao del Sur, the Philippines (location since 2016);amendment;commission;2017-10-10;2017-10-11;2017/1834 (OJ L260);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1834&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3225;EU.4066.88;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-10-10;2017-10-11;2017/1834 (OJ L260);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1834&from=EN;;;;;;;;;;;;;;;;;;;Basilan;;;;;;NO;(Basilan, the Philippines (previous location until 2016));PH;PHILIPPINES;114565;EN;Basilan, the Philippines (previous location until 2016);amendment;commission;2017-10-10;2017-10-11;2017/1834 (OJ L260);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1834&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3225;EU.4066.88;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-10-10;2017-10-11;2017/1834 (OJ L260);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1834&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-03-18;18;3;1966;;;NO;GREGORIAN;;;;Bulanza, Lantawan, Basilan;PH;PHILIPPINES;719;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3225;EU.4066.88;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-10-10;2017-10-11;2017/1834 (OJ L260);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1834&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-03-10;10;3;1967;;;NO;GREGORIAN;;;;Bulanza, Lantawan, Basilan;PH;PHILIPPINES;720;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3225;EU.4066.88;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-10-10;2017-10-11;2017/1834 (OJ L260);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1834&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PH;;280;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF +28/10/2022;3229;EU.4046.86;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;Sahiron;Radulan;;Radulan Sahiron;;;;;4423;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3229;EU.4046.86;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;Sahiron;Radullan;;Radullan Sahiron;;;;;4424;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3229;EU.4046.86;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;Sahirun;Radulan;;Radulan Sahirun;;;;;4425;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3229;EU.4046.86;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;Sajirun;Radulan;;Radulan Sajirun;;;;;4426;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3229;EU.4046.86;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Commander Putol;;;;;4427;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3229;EU.4046.86;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;Sulu region;;NO;(Sulu region, Philippines (reported location));PH;PHILIPPINES;114503;EN;Sulu region, Philippines (reported location);amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3229;EU.4046.86;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955;;;NO;GREGORIAN;;;;Kaunayan, Patikul, Jolo Island;PH;PHILIPPINES;728;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3229;EU.4046.86;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952;;;YES;GREGORIAN;;;;Kaunayan, Patikul, Jolo Island;PH;PHILIPPINES;729;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3229;EU.4046.86;;;;(Date of listing: 6.12.2005);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PH;;284;EN;;amendment;commission;2005-12-10;2005-12-09;2018/2005 (OJ L324);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:324:0021:0022:EN:PDF +28/10/2022;3280;EU.3666.71;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Khalistan Zindabad Force;;;;;4539;EN;;repealing;council;2009-01-27;2009-01-27;2009/62/EC (OJ L23);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:023:0025:0029:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3280;EU.3666.71;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;KZF;;;;;4540;EN;;amendment;council;2005-12-23;2005-12-23;2005/930/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:340:0064:0066:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3280;EU.3666.71;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fuerza de Jalistán Zindabad;ES;;;;4541;EN;;amendment;council;2005-12-23;2005-12-23;2005/930/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:340:0064:0066:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3280;EU.3666.71;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Δύναμη Ζιντμπάντ του Χαλιστάν;EL;;;;4542;EN;;amendment;council;2005-12-23;2005-12-23;2005/930/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:340:0064:0066:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3280;EU.3666.71;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Khalistano Zindabad pajėgos;LT;;;;4543;EN;;amendment;council;2005-12-23;2005-12-23;2005/930/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:340:0064:0066:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3280;EU.3666.71;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Khaliszán Zindabad Erő;HU;;;;4544;EN;;amendment;council;2005-12-23;2005-12-23;2005/930/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:340:0064:0066:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3280;EU.3666.71;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Siły Chalistan Zindabad;PL;;;;4545;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3280;EU.3666.71;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Sila Kalistan Zindabad;SL;;;;4546;EN;;amendment;council;2005-12-23;2005-12-23;2005/930/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:340:0064:0066:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3280;EU.3666.71;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Forța Khalistan Zindabad;RO;;;;5669;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3280;EU.3666.71;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Il-Forza Khalistan Zindabad;MT;;;;6727;EN;;repealing;council;2009-06-16;2009-06-16;501/2009 (OJ L151);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:151:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3280;EU.3666.71;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Força Khalistan Zindabad;PT;;;;7189;EN;;repealing;council;2009-06-16;2009-06-16;501/2009 (OJ L151);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:151:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3280;EU.3666.71;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Skupina Kalistan Zindabad;SL;;;;123280;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3280;EU.3666.71;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Snage Khalistan Zindabad;HR;;;;123281;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3280;EU.3666.71;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fórsa Zindabad na Cálastáine;GA;;;;123282;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3280;EU.3666.71;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Khalistan Zindabadi Relvajõud;ET;;;;123283;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3280;EU.3666.71;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Силата на Калистан Зиндабад;BG;;;;123284;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3340;EU.1533.12;;;;;P;person;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;Anshori;Abdullah;;Abdullah Anshori;;M;;;4601;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3340;EU.1533.12;;;;;P;person;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;Abu Fatih;;;;;4602;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3340;EU.1533.12;;;;;P;person;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;Thoyib;Ibnu;;Ibnu Thoyib;;;;;4603;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3340;EU.1533.12;;;;;P;person;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;Toyib;Ibnu;;Ibnu Toyib;;;;;4604;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3340;EU.1533.12;;;;;P;person;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;Abu Fathi;;;;;4605;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3340;EU.1533.12;;;;;P;person;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;NO;GREGORIAN;;;;Pacitan, East Java;ID;INDONESIA;752;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3340;EU.1533.12;;;;;P;person;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;336;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF +28/10/2022;3341;EU.3282.62;;2006-04-21;;(Date of UN designation: 2006-04-21);P;person;amendment;commission;2021-04-13;2021-04-14;2021/589 (OJ L125);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0013.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;Ba’asyir;Abu;Bakar;Abu Bakar Ba’asyir;;M;;;4606;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3341;EU.3282.62;;2006-04-21;;(Date of UN designation: 2006-04-21);P;person;amendment;commission;2021-04-13;2021-04-14;2021/589 (OJ L125);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0013.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;Baasyir;Abu;Bakar;Abu Bakar Baasyir;;;;;4607;EN;good quality alias;amendment;commission;2021-04-13;2021-04-14;2021/589 (OJ L125);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0013.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3341;EU.3282.62;;2006-04-21;;(Date of UN designation: 2006-04-21);P;person;amendment;commission;2021-04-13;2021-04-14;2021/589 (OJ L125);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0013.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;Bashir;Abu;Bakar;Abu Bakar Bashir;;;;;4608;EN;god quality alias;amendment;commission;2021-04-13;2021-04-14;2021/589 (OJ L125);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0013.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3341;EU.3282.62;;2006-04-21;;(Date of UN designation: 2006-04-21);P;person;amendment;commission;2021-04-13;2021-04-14;2021/589 (OJ L125);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0013.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Abdus Samad;;;;;4609;EN;good quality alias;amendment;commission;2021-04-13;2021-04-14;2021/589 (OJ L125);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0013.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3341;EU.3282.62;;2006-04-21;;(Date of UN designation: 2006-04-21);P;person;amendment;commission;2021-04-13;2021-04-14;2021/589 (OJ L125);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0013.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Abdus Somad;;;;;4610;EN;good quality alias;amendment;commission;2021-04-13;2021-04-14;2021/589 (OJ L125);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0013.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3341;EU.3282.62;;2006-04-21;;(Date of UN designation: 2006-04-21);P;person;amendment;commission;2021-04-13;2021-04-14;2021/589 (OJ L125);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0013.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;;ID;INDONESIA;107081;EN;;amendment;commission;2015-12-04;2015-12-05;2015/2245 (OJ L318);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_318_R_0006&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3341;EU.3282.62;;2006-04-21;;(Date of UN designation: 2006-04-21);P;person;amendment;commission;2021-04-13;2021-04-14;2021/589 (OJ L125);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0013.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1938-08-17;17;8;1938;;;NO;GREGORIAN;;;;Jombang, East Java;ID;INDONESIA;753;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3341;EU.3282.62;;2006-04-21;;(Date of UN designation: 2006-04-21);P;person;amendment;commission;2021-04-13;2021-04-14;2021/589 (OJ L125);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0013.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;337;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF +28/10/2022;3342;EU.1518.29;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Gunawan;Gun Gun;Rusman;Gun Gun Rusman Gunawan;;;;;4611;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3342;EU.1518.29;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Gunawan;Rusman;;Rusman Gunawan;;;;;4612;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3342;EU.1518.29;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abd Al-Hadi;;;;;4613;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3342;EU.1518.29;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abdul Hadi;;;;;4614;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3342;EU.1518.29;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abdul Karim;;;;;4615;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3342;EU.1518.29;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Bukhori;;;;;4616;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3342;EU.1518.29;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Bukhory;;;;;4617;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3342;EU.1518.29;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-07-06;6;7;1977;;;NO;GREGORIAN;;;;Cianjur, West Java;ID;INDONESIA;754;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3342;EU.1518.29;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;338;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Rifki;Taufik;;Taufik Rifki;;;;;4618;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Refke;Taufek;;Taufek Refke;;;;;4619;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Rifqi;Taufik;;Taufik Rifqi;;;;;4620;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Rifqi;Tawfiq;;Tawfiq Rifqi;;;;;4621;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ami Iraq;;;;;4622;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ami Irza;;;;;4623;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Amy Erja;;;;;4624;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ammy Erza;;;;;4625;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ammy Izza;;;;;4626;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ami Kusoman;;;;;4627;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abu Obaida;;;;;4628;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abu Obaidah;;;;;4629;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abu Obeida;;;;;4630;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abu Ubaidah;;;;;4631;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Obaidah;;;;;4632;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abu Obayda;;;;;4633;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Izza Kusoman;;;;;4634;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Yacub;Eric;;Eric Yacub;;;;;4635;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;PH;PHILIPPINES;2210;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-08-19;19;8;1974;;;NO;GREGORIAN;;;;Dacusuman Surakarta, Central Java;ID;INDONESIA;757;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3343;EU.1527.65;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;339;EN;;amendment;commission;2006-04-29;2006-04-28;674/2006 (OJ L116);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:116:0058:0060:EN:PDF +28/10/2022;3360;EU.3974.37;;2006-04-25;;(Date of UN designation: 2006-04-25)\n(Ex-serviceman's identification card 4302);P;person;amendment;council;2017-03-09;2017-03-09;2017/401 (OJ L63);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0401&from=EN;Elhassan;Gaffar Mohammed;;Gaffar Mohammed Elhassan;;M;Major-General;Major-General and Commander of the Western Military Region for the Sudanese Armed Forces (SAF).Retired from the Sudanese Army.;4638;EN;;amendment;council;2017-03-09;2017-03-09;2017/401 (OJ L63);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0401&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3360;EU.3974.37;;2006-04-25;;(Date of UN designation: 2006-04-25)\n(Ex-serviceman's identification card 4302);P;person;amendment;council;2017-03-09;2017-03-09;2017/401 (OJ L63);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0401&from=EN;Elhassan;Gaffar Mohmed;;Gaffar Mohmed Elhassan;;;;;17890;EN;;amendment;council;2017-03-09;2017-03-09;2017/401 (OJ L63);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0401&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3360;EU.3974.37;;2006-04-25;;(Date of UN designation: 2006-04-25)\n(Ex-serviceman's identification card 4302);P;person;amendment;council;2017-03-09;2017-03-09;2017/401 (OJ L63);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0401&from=EN;;;;;;;;;;;;;;;;;;;El Waha, Omdurman;;;;;;NO;;SD;SUDAN;2598;EN;;repealing;council;2014-07-10;2014-07-10;747/2014 (OJ L203);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_203_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3360;EU.3974.37;;2006-04-25;;(Date of UN designation: 2006-04-25)\n(Ex-serviceman's identification card 4302);P;person;amendment;council;2017-03-09;2017-03-09;2017/401 (OJ L63);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0401&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-06-24;24;6;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;957;EN;;amendment;commission;2014-01-29;2014-01-27;75/2014 (OJ L26);SDN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2014:026:0002:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3360;EU.3974.37;;2006-04-25;;(Date of UN designation: 2006-04-25)\n(Ex-serviceman's identification card 4302);P;person;amendment;council;2017-03-09;2017-03-09;2017/401 (OJ L63);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0401&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4302 (other-Other identification number) (Ex-serviceman's identification card 4302);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;112578;EN;Ex-serviceman's identification card 4302;amendment;council;2017-03-09;2017-03-09;2017/401 (OJ L63);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0401&from=EN;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;ALNSIEM;Musa Hilal Abdalla;;Musa Hilal Abdalla ALNSIEM;;;;"a) formerly Member of the National Assembly of Sudan from Al-Waha district; b) formerly special adviser to the Ministry of Federal Affairs; c) Paramount Chief of the Mahamid Tribe in North Darfur";4639;EN;;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;Sheikh Musa Hilal;;;;;17879;EN;;repealing;council;2014-07-10;2014-07-10;747/2014 (OJ L203);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_203_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;Abd Allah;;;;;17880;EN;;repealing;council;2014-07-10;2014-07-10;747/2014 (OJ L203);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_203_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;Abdallah;;;;;17881;EN;;repealing;council;2014-07-10;2014-07-10;747/2014 (OJ L203);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_203_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;AlNasim;;;;;17882;EN;;repealing;council;2014-07-10;2014-07-10;747/2014 (OJ L203);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_203_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;Al Nasim;;;;;17883;EN;;repealing;council;2014-07-10;2014-07-10;747/2014 (OJ L203);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_203_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;AlNaseem;;;;;17884;EN;;repealing;council;2014-07-10;2014-07-10;747/2014 (OJ L203);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_203_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;Al Naseem;;;;;17885;EN;;repealing;council;2014-07-10;2014-07-10;747/2014 (OJ L203);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_203_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;AlNasseem;;;;;17886;EN;;repealing;council;2014-07-10;2014-07-10;747/2014 (OJ L203);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_203_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;Al Nasseem;;;;;17887;EN;;repealing;council;2014-07-10;2014-07-10;747/2014 (OJ L203);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_203_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;;;;;;;;Kutum;;;;;;NO;(Kutum, Sudan (resides in Kabkabiya and the city of Kutum, Northern Darfur and has resided in Khartoum));SD;SUDAN;2595;EN;Kutum, Sudan (resides in Kabkabiya and the city of Kutum, Northern Darfur and has resided in Khartoum);amendment;council;2017-03-09;2017-03-09;2017/401 (OJ L63);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0401&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;;;;;;;;Kabkabiya;;;;;;NO;;SD;SUDAN;2597;EN;;repealing;council;2014-07-10;2014-07-10;747/2014 (OJ L203);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_203_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-01-01;1;1;1964;;;NO;GREGORIAN;;;;Kutum;00;UNKNOWN;2152;EN;;amendment;council;2017-03-09;2017-03-09;2017/401 (OJ L63);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0401&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;111079;EN;;regulation;commission;2005-07-23;2005-07-18;1184/2005 (OJ L193);SDN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:193:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"D014433 (passport-National passport) (on 2013-02-21 valid to 2015-02-21 diplomatic)[known to be expired](a) Diplomatic Passport D014433, \nissued on 21 Feb. 2013 (Expired \non 21 Feb. 2015);)";YES;YES;NO;NO;NO;;2013-02-21;;2015-02-21;;;passport;National passport;;00;;873;EN;"a) Diplomatic Passport D014433, \nissued on 21 Feb. 2013 (Expired \non 21 Feb. 2015);";amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A0680623 (other-Other identification number) ((certificate of nationality number));NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;875;EN;(certificate of nationality number);amendment;council;2017-03-09;2017-03-09;2017/401 (OJ L63);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0401&from=EN;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D009889 (passport-National passport) (on 2011-02-17 valid to 2013-02-17 diplomatic)[known to be expired](b) Diplomatic Passport D009889, issued on 17 Feb. 2011 (Expired on 17 Feb. 2013));YES;YES;NO;NO;NO;;2011-02-17;;2013-02-17;;;passport;National passport;;00;;114646;EN;b) Diplomatic Passport D009889, issued on 17 Feb. 2011 (Expired on 17 Feb. 2013);amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;; +28/10/2022;3361;EU.3950.78;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SD;;114645;EN;;amendment;council;2017-10-26;2017-10-26;2017/1942 (OJ L276);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1942&from=EN +28/10/2022;3363;EU.3819.85;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;MAYU;Jibril Abdulkarim Ibrahim;;Jibril Abdulkarim Ibrahim MAYU;;;General;National Movement for Reform and Development (NMRD) Field Commander;4641;EN;;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3363;EU.3819.85;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;‘Tek’;;;;;17661;EN;;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3363;EU.3819.85;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;General Gibril Abdul Kareem Barey;;;;;17888;EN;;repealing;council;2014-07-10;2014-07-10;747/2014 (OJ L203);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_203_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3363;EU.3819.85;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;Gabril Abdul Kareem Badri;;;;;17889;EN;;repealing;council;2014-07-10;2014-07-10;747/2014 (OJ L203);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_203_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3363;EU.3819.85;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;;;;;;;;Tine;;;;;;NO;(Tine, Sudan (resides in Tine, on the Sudanese side of the border with Chad));SD;SUDAN;2596;EN;Tine, Sudan (resides in Tine, on the Sudanese side of the border with Chad);regulation;commission;2005-07-23;2005-07-18;1184/2005 (OJ L193);SDN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:193:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3363;EU.3819.85;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-01-01;1;1;1967;;;NO;GREGORIAN;;;North Darfur;El-Fasher;00;UNKNOWN;2154;EN;;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3363;EU.3819.85;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192-3238459-9 (id-National identification card) ((national identification number));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;876;EN;(national identification number);amendment;council;2017-03-09;2017-03-09;2017/401 (OJ L63);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0401&from=EN;;;;;;;;;;;;; +28/10/2022;3363;EU.3819.85;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;302581 (other-Other identification number) ((certificate of nationality acquired through birth 302581));NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;877;EN;(certificate of nationality acquired through birth 302581);amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;; +28/10/2022;3363;EU.3819.85;;2006-04-25;;(Date of UN designation: 2006-04-25);P;person;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SD;;809;EN;Sudanese by birth;amendment;council;2018-03-28;2018-03-28;2018/512 (OJ L84);SDN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0512&from=EN +28/10/2022;3411;EU.3334.49;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Viktar Uladzimiravich SHEIMAN;;M;;Former Head of the Belarus President Property Management Directorate;4772;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3411;EU.3334.49;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Виктор Владимирович ШЕЙМАН;RU;M;;;8613;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3411;EU.3334.49;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Viktar Uladzimiravitj SJEJMAN;SV;M;;;13020;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3411;EU.3334.49;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Viktor Vladimirovitj SJEJMAN;SV;M;;;13021;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3411;EU.3334.49;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Віктар Уладзіміравіч ШЭЙМАН;BE;M;;;102650;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3411;EU.3334.49;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Viktar Uladzimiravich SHEYMAN;;M;;;102652;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3411;EU.3334.49;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Viktor Vladimirovich SHEIMAN;;M;;;102653;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3411;EU.3334.49;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Viktor Vladimirovich SHEYMAN;;M;;;106945;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3411;EU.3334.49;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;Belarus President Property Management Directorate, 38 Karl Marx St.;;220016;;;NO;;BY;BELARUS;108030;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3411;EU.3334.49;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-05-26;26;5;1958;;;NO;GREGORIAN;;Grodno/Hrodna Region/Oblast;;Soltanishki;BY;BELARUS;785;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3412;EU.3480.62;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Dmitri Valerievich PAVLICHENKO;;M;;;4773;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3412;EU.3480.62;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Дмитрий Валериевич ПАВЛИЧЕНКО;RU;M;;;8615;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3412;EU.3480.62;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Дзмітрый Валер'евіч ПАЎЛІЧЭНКА;BE;M;;;9739;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3412;EU.3480.62;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Dzmitryj Valerjevitj PAULITJENKA;SV;M;;;13062;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3412;EU.3480.62;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Dmitrij Valerijevitj PAVLITJENKO;SV;M;;;13063;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3412;EU.3480.62;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Dmitriy Valeriyevich PAVLICHENKO;;M;;;102656;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3412;EU.3480.62;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Dzmitry Valerievich PAULICHENKA;;M;;"Former Commander of the Special Rapid Response Unit (SOBR); Commander of an OMON unit";102658;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3412;EU.3480.62;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;Belarusian Association of Veterans of Special Forces of the Ministry of Internal Affairs ‘Honour’, 111 Mayakovskogo St.;;220028;;;NO;;BY;BELARUS;2671;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3412;EU.3480.62;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;NO;GREGORIAN;;;;Vitebsk/Viciebsk;BY;BELARUS;786;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3413;EU.3479.37;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Vladimir Vladimirovich NAUMOV;;M;;;4775;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3413;EU.3479.37;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Владимир Владимирович НАУМОВ;RU;M;;;8614;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3413;EU.3479.37;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Uladzimir Uladzimiravitj NAVUMAU;SV;M;;;13050;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3413;EU.3479.37;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Vladimir Vladimirovitj NAUMOV;SV;M;;;13051;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3413;EU.3479.37;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Уладзімір Уладзіміравіч НАВУМАЎ;BE;M;;;102662;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3413;EU.3479.37;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Uladzimir Uladzimiravich NAVUMAU;;M;;"former Minister of Internal Affairs; former Head of the President’s Security Service";102663;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3413;EU.3479.37;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-02-07;7;2;1956;;;NO;GREGORIAN;;;;Smolensk;RU;RUSSIAN FEDERATION;787;EN;former USSR (now Russian Federation);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3420;EU.1914.29;;;;(Last known directors: Hana Paul Jon, Adnan Talib Hashim Al-Amiri, Dr. Safa Hadi Jawad Al-Habobi);E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;Technology and Development Group Limited;;;;;4778;EN;;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3420;EU.1914.29;;;;(Last known directors: Hana Paul Jon, Adnan Talib Hashim Al-Amiri, Dr. Safa Hadi Jawad Al-Habobi);E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;TDG Ltd;;;;;4779;EN;;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3420;EU.1914.29;;;;(Last known directors: Hana Paul Jon, Adnan Talib Hashim Al-Amiri, Dr. Safa Hadi Jawad Al-Habobi);E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;London;53/64 Chancery Lane;;WC2A 1QU;;;NO;(Registered company number: 02150590 (United Kingdom));GB;UNITED KINGDOM;964;EN;Registered company number: 02150590 (United Kingdom);amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3421;EU.1915.91;;;;(Last known directors: Hana Paul Jon, Adnan Talib Hashim Al-Amiri, Dr. Safa Hadi Jawad Al-Habobi);E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;T.M.G. Engineering Limited;;;;;4780;EN;;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3421;EU.1915.91;;;;(Last known directors: Hana Paul Jon, Adnan Talib Hashim Al-Amiri, Dr. Safa Hadi Jawad Al-Habobi);E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;TMG Ltd.;;;;;4781;EN;;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3421;EU.1915.91;;;;(Last known directors: Hana Paul Jon, Adnan Talib Hashim Al-Amiri, Dr. Safa Hadi Jawad Al-Habobi);E;enterprise;amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;London;53/64 Chancery Lane;;WC2A 1QU;;;NO;(Registered company number: 02142819 (United Kingdom));GB;UNITED KINGDOM;965;EN;Registered company number: 02142819 (United Kingdom);amendment;commission;2006-05-25;2006-05-23;785/2006 (OJ L138);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:138:0007:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Liberation Tigers of Tamil Eelam;;;;;4808;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;LTTE;;;;;4809;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tigres de Liberación de Eelam Tamil;ES;;;;4810;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tygři osvobození tamilského Ílamu;CS;;;;4811;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;De Tamilske Tigre;DA;;;;4813;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tamili Eelami Vabastustiigrid;ET;;;;4814;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Απελευθερωτικοί Τίγρεις του Ταμιλ Ιλάμ;EL;;;;4815;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tigres de libération de l'Eelam tamoul (TLET);FR;;;;4816;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tigri per la liberazione della patria Tamil;IT;;;;4817;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tamil Elamo išlaisvinimo tigrai (TEIT);LT;;;;4819;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;A Tamil Eelam Felszabadító Tigrisei;HU;;;;4820;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Bevrijdingstijgers van Tamil Eelam;NL;;;;4821;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tygrysy Wyzwolenia Tamilskiego Ilamu;PL;;;;4822;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tigres de Libertação do Elam Tamil;PT;;;;4824;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tigre oslobodenia tamilského Ílamu;SK;;;;4825;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Osvobodilni tigri tamilskega Eelama;SL;;;;4826;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tamil Eelamin vapautuksen tiikerit;FI;;;;4827;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tamilska befrielsetigrarna;SV;;;;4828;EN;;amendment;council;2006-05-31;2006-05-31;2006/379/EC (OJ L144);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:144:0021:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Тигри за освобождението на Tamil Eelam;BG;;;;5672;EN;;repealing;council;2009-06-16;2009-06-16;501/2009 (OJ L151);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:151:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tigrii Eliberării din Tamil Eelam;RO;;;;5673;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;TITE;RO;;;;5674;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tigri għal-Liberazzjoni ta' Tamil Eelam;MT;;;;6729;EN;;amendment;council;2008-07-16;2008-07-16;2008/583/EC (OJ L188);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:188:0021:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;It-Tigri għal-Liberazzjoni tat-Tamil Eelam;MT;;;;123321;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Oslobodilački tigrovi tamilskog Eelama;HR;;;;123322;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tamil Eelami Vabadusvõitluse Tiigrid;ET;;;;123323;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tamilų Elamo išlaisvinimo tigrai;LT;;;;123324;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tigres para la Liberación de la Patria Tamil;ES;;;;123325;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tíogair Shaortha Tamil Eelam;GA;;;;123326;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Tygrysy – Wyzwoliciele Tamilskiego Ilamu;PL;;;;123327;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Τίγρεις για την Απελευθέρωση του Ταμίλ Ιλάμ;EL;;;;123328;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3480;EU.3679.64;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Тигри за освобождение на Тамил Илам;BG;;;;123329;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3562;EU.1656.68;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Sahraoui;Nessim;Ben Romdhane;Nessim Ben Romdhane Sahraoui;;M;;;4921;EN;;amendment;commission;2006-08-11;2006-08-10;1217/2006 (OJ L220);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:220:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3562;EU.1656.68;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Dass;;;;;4922;EN;;amendment;commission;2006-08-11;2006-08-10;1217/2006 (OJ L220);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:220:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3562;EU.1656.68;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Nasim al Sahrawi;;;;;7483;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3562;EU.1656.68;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;TN;TUNISIA;2211;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3562;EU.1656.68;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-08-03;3;8;1973;;;NO;GREGORIAN;;;;Bizerta;TN;TUNISIA;825;EN;;amendment;commission;2006-08-11;2006-08-10;1217/2006 (OJ L220);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:220:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3562;EU.1656.68;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;737;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;Zoghbai;Merai;;Merai Zoghbai;;M;;;4923;EN;;amendment;commission;2006-08-11;2006-08-10;1217/2006 (OJ L220);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:220:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;F’raji di Singapore;;;;;4924;EN;;amendment;commission;2006-08-11;2006-08-10;1217/2006 (OJ L220);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:220:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;F’raji il Libico;;;;;4925;EN;;amendment;commission;2006-08-11;2006-08-10;1217/2006 (OJ L220);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:220:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;Lebachir;Mohamed;;Mohamed Lebachir;;;;;4926;EN;;amendment;commission;2006-08-11;2006-08-10;1217/2006 (OJ L220);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:220:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;Zgbye;Meri;Albdelfattah;Meri Albdelfattah Zgbye;;;;;4927;EN;;amendment;commission;2006-08-11;2006-08-10;1217/2006 (OJ L220);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:220:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;Zoghbai Merai Abdul Fattah;;;;;4928;EN;;amendment;commission;2006-08-11;2006-08-10;1217/2006 (OJ L220);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:220:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;Ben Ila;Larzg;;Larzg Ben Ila;;;;;4930;EN;;amendment;commission;2006-08-11;2006-08-10;1217/2006 (OJ L220);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:220:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;Lazrag Faraj;;;;;4931;EN;;amendment;commission;2006-08-11;2006-08-10;1217/2006 (OJ L220);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:220:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;Farag;;;;;4932;EN;;amendment;commission;2006-08-11;2006-08-10;1217/2006 (OJ L220);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:220:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;Fredj;;;;;4933;EN;;amendment;commission;2006-08-11;2006-08-10;1217/2006 (OJ L220);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:220:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;El Besir;Muhammed;;Muhammed El Besir;;;;;4937;EN;;amendment;commission;2006-08-11;2006-08-10;1217/2006 (OJ L220);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:220:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;Zoghbi;Merai;Abdefattah Khalil;Merai Abdefattah Khalil Zoghbi;;;;;111646;EN;;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-04-04;4;4;1969;;;NO;GREGORIAN;;;;Bengasi;LY;LIBYA;826;EN;;amendment;commission;2006-08-11;2006-08-10;1217/2006 (OJ L220);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:220:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-06-04;4;6;1960;;;NO;GREGORIAN;;;;Bendasi;LY;LIBYA;827;EN;;amendment;commission;2006-08-11;2006-08-10;1217/2006 (OJ L220);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:220:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-11-13;13;11;1960;;;NO;GREGORIAN;;;;;LY;LIBYA;828;EN;;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-08-11;11;8;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;829;EN;;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-04-04;4;4;1960;;;NO;GREGORIAN;;;;;MA;MOROCCO;1171;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-01-14;14;1;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;1172;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3563;EU.3962.9;;2006-08-02;;(Date of UN designation: 2006-08-02)\n(Son of Wanisa Abdessalam);P;person;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LY;;111645;EN;;amendment;commission;2017-03-25;2017-03-26;2017/557 (OJ L80);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0557&from=EN +28/10/2022;3641;EU.3310.90;;;;(Mother’s name: Masouma Abd al-Rahman. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;Ahmad;Najmuddin;Faraj;Najmuddin Faraj Ahmad;;;;;5030;EN;;amendment;commission;2006-12-13;2006-12-12;1823/2006 (OJ L351);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:351:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3641;EU.3310.90;;;;(Mother’s name: Masouma Abd al-Rahman. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;Mullah Krekar;;;;;5031;EN;;amendment;commission;2006-12-13;2006-12-12;1823/2006 (OJ L351);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:351:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3641;EU.3310.90;;;;(Mother’s name: Masouma Abd al-Rahman. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;Farraj;Fateh;Najm Eddine;Fateh Najm Eddine Farraj;;;;;5032;EN;;amendment;commission;2006-12-13;2006-12-12;1823/2006 (OJ L351);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:351:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3641;EU.3310.90;;;;(Mother’s name: Masouma Abd al-Rahman. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;Najmuddin;Faraj;Ahmad;Faraj Ahmad Najmuddin;;;;;5033;EN;;amendment;commission;2006-12-13;2006-12-12;1823/2006 (OJ L351);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:351:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3641;EU.3310.90;;;;(Mother’s name: Masouma Abd al-Rahman. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;Oslo;36-V Heimdalsgate;;0578;;;NO;;NO;NORWAY;1003;EN;;amendment;commission;2006-12-13;2006-12-12;1823/2006 (OJ L351);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:351:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3641;EU.3310.90;;;;(Mother’s name: Masouma Abd al-Rahman. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-07-07;7;7;1956;;;NO;GREGORIAN;;;;Olaqloo Sharbajer, Al-Sulaymaniyah Governorate;IQ;IRAQ;839;EN;;amendment;commission;2006-12-13;2006-12-12;1823/2006 (OJ L351);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:351:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3641;EU.3310.90;;;;(Mother’s name: Masouma Abd al-Rahman. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-06-17;17;6;1963;;;NO;GREGORIAN;;;;Olaqloo Sharbajer, Al-Sulaymaniyah Governorate;IQ;IRAQ;840;EN;;amendment;commission;2006-12-13;2006-12-12;1823/2006 (OJ L351);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:351:0009:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3641;EU.3310.90;;;;(Mother’s name: Masouma Abd al-Rahman. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"Ration Card Number 0075258 (other-Other identification number) ";NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;107267;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;; +28/10/2022;3641;EU.3310.90;;;;(Mother’s name: Masouma Abd al-Rahman. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;366;EN;;amendment;commission;2006-12-13;2006-12-12;1823/2006 (OJ L351);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:351:0009:0010:EN:PDF +28/10/2022;3663;EU.3571.88;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;BOUYERI Mohammed;;;;;5053;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3663;EU.3571.88;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Abu Zubair;;;;;5054;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3663;EU.3571.88;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Sobiar;;;;;5055;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3663;EU.3571.88;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Abu Zoubair;;;;;5056;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3663;EU.3571.88;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-03-08;8;3;1978;;;NO;GREGORIAN;;;;Amsterdam;NL;NETHERLANDS;846;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Teyrêbazên Azadîya Kurdistan;;;;;5080;EN;;amendment;council;2021-02-08;2021-02-09;2021/138 (OJ L43);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.043.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A043%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;TAK;;;;;5081;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdistan Freedom Falcons;EN;;;;5082;EN;;amendment;council;2007-12-20;2007-12-20;2007/868/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:340:0100:0103:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdistan Freedom Hawks;EN;;;;5083;EN;;amendment;council;2007-12-20;2007-12-20;2007/868/EC (OJ L340);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:340:0100:0103:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Faucons de la liberté du Kurdistan;FR;;;;5084;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Freiheitsfalken Kurdistans;DE;;;;5086;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Terêbazên Azadiya Kürdistan;DE;;;;5087;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Koerdische Vrijheidsvalken;NL;;;;5088;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Koerdische Vrijheidshaviken;NL;;;;5089;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Γεράκια της Λευτεριάς του Κουρδιστάν;EL;;;;5090;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Falchi per la libertà del Kurdistan;IT;;;;5091;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Halcones de la Libertad del Kurdistán;ES;;;;5092;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Falcões da Liberdade do Curdistão;PT;;;;5093;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdistans frihetsfalkar;SV;;;;5094;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdistans frihetshökar;SV;;;;5095;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Sokoli za osvobození Kurdistánu;CS;;;;5096;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Jestřábi za osvobození Kurdistánu;CS;;;;5097;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Sokoły Wolności Kurdystanu;PL;;;;5098;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Jastrzębie Wolności Kurdystanu;PL;;;;5099;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Sokoly za slobodu Kurdistanu;SK;;;;5100;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Jastraby za slobodu Kurdistanu;SK;;;;5101;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdistanski sokoli svobode;SL;;;;5102;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdisztáni Szabadság Sólymai;HU;;;;5104;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdisztáni Szabadság Héjái;HU;;;;5105;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdistani Vabastuspistrikud;ET;;;;5106;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdistano laisvės sakalai;LT;;;;5107;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdistano laisvės vanagai;LT;;;;5108;EN;;amendment;council;2006-12-28;2006-12-28;2006/1008/EC (OJ L379);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2006:379:0123:0124:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Șoimii Eliberării din Kurdistan;RO;;;;5708;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Vulturii Eiberării din Kurdistan;RO;;;;5709;EN;;amendment;council;2007-06-29;2007-06-26;2007/445/EC (OJ L169);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:169:0058:0062:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Соколи за свободата на Кюрдистан;BG;;;;7195;EN;;repealing;council;2009-06-16;2009-06-16;501/2009 (OJ L151);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:151:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ястреби за свободата на Кюрдистан;BG;;;;7196;EN;;repealing;council;2009-06-16;2009-06-16;501/2009 (OJ L151);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:151:0014:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;l-Isqra għall-Ħelsien tal-Kurdistan;MT;;;;123387;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;l-Falkuni għall-Ħelsien tal-Kurdistan;MT;;;;123388;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdistanski jastrebovi slobode;HR;;;;123389;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdistanski sokoli slobode;HR;;;;123390;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Seabhaic Saoirse na Cordastáine;GA;;;;123391;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Fabhcúin Saoirse na Cordastáine;GA;;;;123392;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3670;EU.3723.40;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Kurdistani Vabastuskullid;ET;;;;123393;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3700;EU.3084.62;;2006-12-12;;(Date of UN designation: 2006-12-12)\n(Father's name is Mohamed Ayman Ghabra. Mother's name is Dalal);P;person;amendment;commission;2015-08-01;2015-07-31;2015/1330 (OJ L206);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;Al Ghabra;Mohammed;;Mohammed Al Ghabra;;M;;;5111;EN;;amendment;commission;2007-01-11;2007-01-10;14/2007 (OJ L6);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:006:0006:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3700;EU.3084.62;;2006-12-12;;(Date of UN designation: 2006-12-12)\n(Father's name is Mohamed Ayman Ghabra. Mother's name is Dalal);P;person;amendment;commission;2015-08-01;2015-07-31;2015/1330 (OJ L206);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;Danial Adam;EN;;;;105900;EN;;amendment;commission;2015-08-01;2015-07-31;2015/1330 (OJ L206);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3700;EU.3084.62;;2006-12-12;;(Date of UN designation: 2006-12-12)\n(Father's name is Mohamed Ayman Ghabra. Mother's name is Dalal);P;person;amendment;commission;2015-08-01;2015-07-31;2015/1330 (OJ L206);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;El' Ghabra;Mohammed;;Mohammed El' Ghabra;EN;M;;;105901;EN;;amendment;commission;2015-08-01;2015-07-31;2015/1330 (OJ L206);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3700;EU.3084.62;;2006-12-12;;(Date of UN designation: 2006-12-12)\n(Father's name is Mohamed Ayman Ghabra. Mother's name is Dalal);P;person;amendment;commission;2015-08-01;2015-07-31;2015/1330 (OJ L206);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;East London;;;;;;NO;;GB;UNITED KINGDOM;1008;EN;;amendment;commission;2007-01-11;2007-01-10;14/2007 (OJ L6);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:006:0006:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3700;EU.3084.62;;2006-12-12;;(Date of UN designation: 2006-12-12)\n(Father's name is Mohamed Ayman Ghabra. Mother's name is Dalal);P;person;amendment;commission;2015-08-01;2015-07-31;2015/1330 (OJ L206);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-06-01;1;6;1980;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;852;EN;;amendment;commission;2007-01-11;2007-01-10;14/2007 (OJ L6);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:006:0006:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3700;EU.3084.62;;2006-12-12;;(Date of UN designation: 2006-12-12)\n(Father's name is Mohamed Ayman Ghabra. Mother's name is Dalal);P;person;amendment;commission;2015-08-01;2015-07-31;2015/1330 (OJ L206);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"094629366 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;GB;;223;EN;;amendment;commission;2015-08-01;2015-07-31;2015/1330 (OJ L206);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;3700;EU.3084.62;;2006-12-12;;(Date of UN designation: 2006-12-12)\n(Father's name is Mohamed Ayman Ghabra. Mother's name is Dalal);P;person;amendment;commission;2015-08-01;2015-07-31;2015/1330 (OJ L206);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GB;;369;EN;;amendment;commission;2007-01-11;2007-01-10;14/2007 (OJ L6);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:006:0006:0007:EN:PDF +28/10/2022;3741;EU.3624.40;;2007-03-29;;(Date of UN designation: 2007-03-29)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Musoni;Straton;;Straton Musoni;;;;Former FDLR Vice President;5123;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3741;EU.3624.40;;2007-03-29;;(Date of UN designation: 2007-03-29)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Musoni;I.O.;;I.O. Musoni;;;;Former FDLR Vice President;5124;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3741;EU.3624.40;;2007-03-29;;(Date of UN designation: 2007-03-29)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-04-06;6;4;1961;;;NO;GREGORIAN;;;;Mugambazi, Kigali;RW;RWANDA;858;EN;;amendment;commission;2007-04-13;2007-04-13;400/2007 (OJ L98);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:098:0020:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3741;EU.3624.40;;2007-03-29;;(Date of UN designation: 2007-03-29)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-06-04;4;6;1961;;;NO;GREGORIAN;;;;Mugambazi, Kigali;RW;RWANDA;859;EN;;amendment;commission;2007-04-13;2007-04-13;400/2007 (OJ L98);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:098:0020:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3741;EU.3624.40;;2007-03-29;;(Date of UN designation: 2007-03-29)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RW;;715;EN;;amendment;commission;2011-11-01;2011-10-25;1097/2011 (OJ L285);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:285:0002:0005:EN:PDF +28/10/2022;3742;EU.3677.37;;2007-03-29;;(Date of UN designation: 2007-03-29);E;enterprise;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;UGANDA COMMERCIAL IMPEX (UCI) LTD;;;;Gold export company. (Directors Mr. Jamnadas V. LODHIA — known as ‘Chuni’- and his sons Mr. Kunal J. LODHIA and Jitendra J. LODHIA);5125;EN;;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3742;EU.3677.37;;2007-03-29;;(Date of UN designation: 2007-03-29);E;enterprise;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;Kamwokya, Kampala;Plot 22, Kanjokya Street;;;;;NO;PHONE[+256 41 533 578/9];UG;UGANDA;1010;EN;;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3742;EU.3677.37;;2007-03-29;;(Date of UN designation: 2007-03-29);E;enterprise;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;Kampala;;PO BOX 22 709;;;;NO;;UG;UGANDA;1011;EN;;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3743;EU.3675.10;;2007-03-29;;(Date of UN designation: 2007-03-29);E;enterprise;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;Machanga Ltd.;;;;Gold export company (Directors: Mr. Rajendra Kumar Vaya and mr. Hirendra M. Vaya);5127;EN;;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3743;EU.3675.10;;2007-03-29;;(Date of UN designation: 2007-03-29);E;enterprise;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;Kampala;Plot 55A, Upper Kololo Terrace;;;;;NO;;UG;UGANDA;1012;EN;;amendment;council;2015-04-21;2015-04-22;2015/614 (OJ L102);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3744;EU.3652.16;;2007-03-29;;(Date of UN designation: 2007-03-29)\n(Privately-owned airline, operates out of Butembo. Since December 2008, BAL no longer holds an aircraft operating license in the DRC.);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Butembo Airlines;;;;;5128;EN;;amendment;commission;2007-04-13;2007-04-13;400/2007 (OJ L98);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:098:0020:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3744;EU.3652.16;;2007-03-29;;(Date of UN designation: 2007-03-29)\n(Privately-owned airline, operates out of Butembo. Since December 2008, BAL no longer holds an aircraft operating license in the DRC.);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;BAL;;;;;5129;EN;;amendment;commission;2007-04-13;2007-04-13;400/2007 (OJ L98);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:098:0020:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3744;EU.3652.16;;2007-03-29;;(Date of UN designation: 2007-03-29)\n(Privately-owned airline, operates out of Butembo. Since December 2008, BAL no longer holds an aircraft operating license in the DRC.);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;Butembo;;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);1013;EN;;amendment;commission;2007-04-13;2007-04-13;400/2007 (OJ L98);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:098:0020:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3745;EU.3672.18;;2007-03-29;;(Date of UN designation: 2007-03-29);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Congomet Trading House;;;;;5130;EN;;amendment;commission;2011-11-01;2011-10-25;1097/2011 (OJ L285);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:285:0002:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3745;EU.3672.18;;2007-03-29;;(Date of UN designation: 2007-03-29);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;Butembo, North Kivu;;;;;;NO;PHONE[+253 (0) 99 983 784];CD;CONGO, Democratic Republic of (was Zaire);1014;EN;;amendment;commission;2011-11-01;2011-10-25;1097/2011 (OJ L285);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:285:0002:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3746;EU.3653.78;;2007-03-29;;(Date of UN designation: 2007-03-29);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Compagnie Aérienne des Grands Lacs;;;;;5131;EN;;amendment;commission;2007-04-13;2007-04-13;400/2007 (OJ L98);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:098:0020:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3746;EU.3653.78;;2007-03-29;;(Date of UN designation: 2007-03-29);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;CAGL;;;;;5132;EN;;amendment;commission;2007-04-13;2007-04-13;400/2007 (OJ L98);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:098:0020:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3746;EU.3653.78;;2007-03-29;;(Date of UN designation: 2007-03-29);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Great Lakes Business Company;;;;;5133;EN;;amendment;commission;2007-04-13;2007-04-13;400/2007 (OJ L98);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:098:0020:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3746;EU.3653.78;;2007-03-29;;(Date of UN designation: 2007-03-29);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;GLBC;;;;;5134;EN;;amendment;commission;2007-04-13;2007-04-13;400/2007 (OJ L98);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:098:0020:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3746;EU.3653.78;;2007-03-29;;(Date of UN designation: 2007-03-29);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;Goma;Avenue President Mobutu;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);1015;EN;;amendment;commission;2007-04-13;2007-04-13;400/2007 (OJ L98);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:098:0020:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3746;EU.3653.78;;2007-03-29;;(Date of UN designation: 2007-03-29);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;Goma;PO Box 315;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);1017;EN;;amendment;commission;2007-04-13;2007-04-13;400/2007 (OJ L98);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:098:0020:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3746;EU.3653.78;;2007-03-29;;(Date of UN designation: 2007-03-29);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;Gisenyi;;;;;;NO;;RW;RWANDA;1018;EN;;amendment;commission;2007-04-13;2007-04-13;400/2007 (OJ L98);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:098:0020:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3780;EU.3862.44;;2007-03-24;;(Date of UN designation: 2007-03-24)\n(Has “links to the Institute of Applied Physics. Working closely with Mohsen Fakhrizadeh-Mahabadi.”);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Abbasi-Davani;Fereidoun;;Fereidoun Abbasi-Davani;;;;Senior Ministry of Defence and Armed Forces Logistics (MODAFL) Scientist;5151;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3780;EU.3862.44;;2007-03-24;;(Date of UN designation: 2007-03-24)\n(Has “links to the Institute of Applied Physics. Working closely with Mohsen Fakhrizadeh-Mahabadi.”);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959;;;NO;GREGORIAN;;;Abadan;;IR;IRAN (ISLAMIC REPUBLIC OF);112804;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3780;EU.3862.44;;2007-03-24;;(Date of UN designation: 2007-03-24)\n(Has “links to the Institute of Applied Physics. Working closely with Mohsen Fakhrizadeh-Mahabadi.”);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;NO;GREGORIAN;;;Abadan;;IR;IRAN (ISLAMIC REPUBLIC OF);112805;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3782;EU.3863.9;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Ahmadian;Ali;Akbar;Ali Akbar Ahmadian;;;Vice Admiral;Chief of Iranian Revolutionary Guard Corps (IRGC) Joint Staff;5153;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3782;EU.3863.9;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Ahmedian;Ali;Akbar;Ali Akbar Ahmedian;;;Vice Admiral;Chief of Iranian Revolutionary Guard Corps (IRGC) Joint Staff;112807;EN;Position change;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3782;EU.3863.9;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;Kerman;;IR;IRAN (ISLAMIC REPUBLIC OF);112806;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3784;EU.3864.71;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Bahmanyar;Bahmanyar;Morteza;Bahmanyar Morteza Bahmanyar;;;;Head of Finance & Budget Dept, Aerospace Industries Organisation (AIO);5155;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3784;EU.3864.71;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-12-31;31;12;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;112808;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3784;EU.3864.71;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;I0005159 (passport-National passport) (issued in Iran);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;IR;;112810;EN;issued in Iran;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;; +28/10/2022;3784;EU.3864.71;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10005159 (passport-National passport) (issued in Iran);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;IR;;112811;EN;issued in Iran;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;; +28/10/2022;3784;EU.3864.71;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;112809;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN +28/10/2022;3787;EU.3865.36;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Dastjerdi;Ahmad;Vahid;Ahmad Vahid Dastjerdi;;;;Head of the Aerospace Industries Organisation (AIO). Served as Deputy Defence Minister.;5156;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3787;EU.3865.36;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-01-15;15;1;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;112812;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3787;EU.3865.36;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"A0002987 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;IR;;112813;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;; +28/10/2022;3788;EU.3866.1;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Derakhshandeh;Ahmad;;Ahmad Derakhshandeh;;;;Chairman and Managing Director of Bank Sepah, which provides support for the AIO and subordinates, including SHIG and SBIG, both of which were designated under resolution 173 (2006).;5157;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3788;EU.3866.1;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;Tehran;33 Hormozan Building, Pirozan St., Sharaj Ghods,;;;;;NO;(33 Hormozan Building, Pirozan St., Sharaj Ghods, Tehran, Iran (Islamic Republic of).);IR;IRAN (ISLAMIC REPUBLIC OF);112815;EN;33 Hormozan Building, Pirozan St., Sharaj Ghods, Tehran, Iran (Islamic Republic of).;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3788;EU.3866.1;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-08-11;11;8;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;112814;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3789;EU.3875.37;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Esmaeli;Reza-Gholi;;Reza-Gholi Esmaeli;;;;Head of Trade & International Affairs Dept, Aerospace Industries Organisation (AIO);5158;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3789;EU.3875.37;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Ismaili;Reza-Gholi;;Reza-Gholi Ismaili;;;;Head of Trade & International Affairs Dept, Aerospace Industries Organisation (AIO);112819;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3789;EU.3875.37;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-04-03;3;4;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;112821;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3789;EU.3875.37;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"A0002302 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;IR;;112820;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;; +28/10/2022;3790;EU.3876.2;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Fakhrizadeh-Mahabadi;Mohsen;;Mohsen Fakhrizadeh-Mahabadi;;;;Senior MODAFL scientist and former head of the Physics Research Centre (PHRC).;5159;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3790;EU.3876.2;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A0009228 (passport-National passport) (A0009228 (Unconfirmed (likely Iran)));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;112822;EN;A0009228 (Unconfirmed (likely Iran));amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;; +28/10/2022;3790;EU.3876.2;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4229533 (passport-National passport) (4229533 (Unconfirmed (likely Iran)).);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;112823;EN;4229533 (Unconfirmed (likely Iran)).;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;; +28/10/2022;3791;EU.3877.64;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Hejazi;Mohammad;;Mohammad Hejazi;;;Brigadier General;Commander of Bassij resistance force;5160;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3791;EU.3877.64;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Hijazi;Mohammed;;Mohammed Hijazi;;;Brigadier General;Commander of Bassij resistance force;112824;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3791;EU.3877.64;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959;;;NO;GREGORIAN;;;Isfahan;;IR;IRAN (ISLAMIC REPUBLIC OF);112829;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3792;EU.3878.29;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Hojati;Mohsen;;Mohsen Hojati;;;;Head of Fajr Industrial Group;5161;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3792;EU.3878.29;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-09-28;28;9;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;112830;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3792;EU.3878.29;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"G4506013 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;IR;;112831;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;; +28/10/2022;3793;EU.3879.91;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Ketabachi;Mehrdada;Akhlaghi;Mehrdada Akhlaghi Ketabachi;;;;Head of Shahid Bagheri Industrial Group (SBIG);5162;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3793;EU.3879.91;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-09-10;10;9;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;112832;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3793;EU.3879.91;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"A0030940 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;IR;;112833;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;; +28/10/2022;3795;EU.3880.19;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Maleki;Naser;;Naser Maleki;;;;Head of Shahid Hemmat Industrial Group (SHIG). Naser Maleki is also a MODAFL official overseeing work on the Shahab-3 ballistic missile programme. The Shahab-3 is Iran's long-range ballistic missile currently in service.;5164;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3795;EU.3880.19;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;112834;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3795;EU.3880.19;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"A0003039 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;IR;;112835;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;; +28/10/2022;3795;EU.3880.19;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0035-11785 (other-Other identification number) (National Identification number Iran);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;IR;;112836;EN;National Identification number Iran;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;; +28/10/2022;3798;EU.3887.65;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Nouri;Mohammad;Mehdi Nejad;Mohammad Mehdi Nejad Nouri;;;Lt Gen.;Rector of Malek Ashtar University of Defence Technology. Deputy Minister of Science, Research and Technology.;5167;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3801;EU.3888.30;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Rezaie;Morteza;;Morteza Rezaie;;;Brigadier General;Deputy Commander of IRGC;5170;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3801;EU.3888.30;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Rezaie;Mortaza;;Mortaza Rezaie;;;Brigadier General;Deputy Commander of IRGC;112838;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3801;EU.3888.30;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Rezai;Mortaza;;Mortaza Rezai;;;Brigadier General;Deputy Commander of IRGC;112839;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3801;EU.3888.30;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Rezai;Morteza;;Morteza Rezai;;;Brigadier General;Deputy Commander of IRGC;112840;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3801;EU.3888.30;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;112837;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3802;EU.3889.92;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Safari;Morteza;;Morteza Safari;;;Rear Admiral;Commander of IRGC Navy;5171;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3802;EU.3889.92;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Safari;Mortaza;;Mortaza Safari;;;Rear Admiral;Commander of IRGC Navy;112841;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3802;EU.3889.92;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Safari;Murtaza;;Murtaza Safari;;;Rear Admiral;Commander of IRGC Navy;112842;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3802;EU.3889.92;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Saferi;Murtaza;;Murtaza Saferi;;;Rear Admiral;Commander of IRGC Navy;112843;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3802;EU.3889.92;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Saferi;Morteza;;Morteza Saferi;;;Rear Admiral;Commander of IRGC Navy;112844;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3803;EU.3916.58;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Safavi;Yahya;Rahim;Yahya Rahim Safavi;;;Major General;Commander, IRGC (Pasdaran);5172;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3803;EU.3916.58;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Safavi;Yahya;Raheem;Yahya Raheem Safavi;;;Major General;Commander, IRGC (Pasdaran);112846;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3803;EU.3916.58;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952;;;NO;GREGORIAN;;;;Isfahan;IR;IRAN (ISLAMIC REPUBLIC OF);112845;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3805;EU.3917.23;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Salimi;Hosein;;Hosein Salimi;;;General;Commander of the Air Force, IRGC (Pasdaran);5174;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3805;EU.3917.23;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Saleemi;Hossein;;Hossein Saleemi;;;General;Commander of the Air Force, IRGC (Pasdaran);112849;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3805;EU.3917.23;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Salimi;Hossein;;Hossein Salimi;;;General;Commander of the Air Force, IRGC (Pasdaran);112850;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3805;EU.3917.23;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Saleemi;Hussain;;Hussain Saleemi;;;General;Commander of the Air Force, IRGC (Pasdaran);112851;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3805;EU.3917.23;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Saleemi;Hosain;;Hosain Saleemi;;;General;Commander of the Air Force, IRGC (Pasdaran);112852;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3805;EU.3917.23;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Saleemi;Husain;;Husain Saleemi;;;General;Commander of the Air Force, IRGC (Pasdaran);112853;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3805;EU.3917.23;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Saleemi;Hosein;;Hosein Saleemi;;;General;Commander of the Air Force, IRGC (Pasdaran);112854;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3805;EU.3917.23;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Salimi;Hussain;;Hussain Salimi;;;General;Commander of the Air Force, IRGC (Pasdaran);112855;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3805;EU.3917.23;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Salimi;Hosain;;Hosain Salimi;;;General;Commander of the Air Force, IRGC (Pasdaran);112856;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3805;EU.3917.23;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Salimi;Husain;;Husain Salimi;;;General;Commander of the Air Force, IRGC (Pasdaran);112857;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3805;EU.3917.23;;2006-12-23;;(Date of UN designation: 2006-12-23);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"D08531177 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;IR;;112848;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;; +28/10/2022;3806;EU.3918.85;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Soleimani;Qasem;;Qasem Soleimani;;;Brigadier General;Commander of Qods force. Promoted to Major General, retaining his position as Commander of Qods Force.;5175;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3806;EU.3918.85;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Sulaymani;Qasim;;Qasim Sulaymani;;;;;112860;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3806;EU.3918.85;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Sulaimani;Qasim;;Qasim Sulaimani;;;;;112861;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3806;EU.3918.85;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Sulaimani;Qasem;;Qasem Sulaimani;;;;;112862;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3806;EU.3918.85;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Soleimani;Qasim;;Qasim Soleimani;;;;;112863;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3806;EU.3918.85;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Soleimani;Sarder;;Sarder Soleimani;;;;;112864;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3806;EU.3918.85;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Haji Qassem;;;;;112865;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3806;EU.3918.85;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Haj Qasem;;;;;112866;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3806;EU.3918.85;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Sulaymani;Kasim;;Kasim Sulaymani;;;;;112867;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3806;EU.3918.85;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Sulaimani;Kasim;;Kasim Sulaimani;;;;;112868;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3806;EU.3918.85;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Soleimani;Kasim;;Kasim Soleimani;;;;;112869;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3806;EU.3918.85;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Sulaymani;Qasem;;Qasem Sulaymani;;;;;112870;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3806;EU.3918.85;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-03-11;11;3;1957;;;NO;GREGORIAN;;;Qom;;IR;IRAN (ISLAMIC REPUBLIC OF);112858;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3806;EU.3918.85;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"008827 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;IR;;112859;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;; +28/10/2022;3807;EU.3919.50;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Zahedi;Mohammad;Reza;Mohammad Reza Zahedi;;;Brigadier General;Commander of IRGC Ground Forces;5176;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3807;EU.3919.50;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Zahedi;Mohammad;Raza;Mohammad Raza Zahedi;;;;;112872;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3807;EU.3919.50;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Zahidi;Mohammad;Reza;Mohammad Reza Zahidi;;;;;112873;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3807;EU.3919.50;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944;;;NO;GREGORIAN;;;;Isfahan;IR;IRAN (ISLAMIC REPUBLIC OF);112871;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3808;EU.3927.24;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Zolqadr;Mohammad;Baqer;Mohammad Baqer Zolqadr;;;General;Deputy Interior Minister for Security Affairs, IRGC officer;5177;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3808;EU.3927.24;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Zolqader;Mohammad;Baqer;Mohammad Baqer Zolqader;;;;;112874;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3808;EU.3927.24;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Zolqadir;Mohammad;Baqer;Mohammad Baqer Zolqadir;;;;;112875;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3808;EU.3927.24;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Zolkadr;Mohammad;Bakr;Mohammad Bakr Zolkadr;;;;;112876;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3808;EU.3927.24;;2007-03-24;;(Date of UN designation: 2007-03-24);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Zolqadr;Mohammad;Bakr;Mohammad Bakr Zolqadr;;;;;112877;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3809;EU.3930.76;;2007-03-24;;(Date of UN designation: 2007-03-24);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Ammunition and Metallurgy Industries Group;;;;AMIG controls 7th of Tir, which is designated under resolution 1737 (2006) for its role in Iran's centrifuge programme. AMIG is in turn owned and controlled by DIO, which is designated under resolution 1737 (2006).;5178;EN;AMIG controls 7th of Tir, which is designated under resolution 1737 (2006) for its role in Iran's centrifuge programme. AMIG is in turn owned and controlled by DIO, which is designated under resolution 1737 (2006).;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3809;EU.3930.76;;2007-03-24;;(Date of UN designation: 2007-03-24);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;AMIG;;;;;5179;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3809;EU.3930.76;;2007-03-24;;(Date of UN designation: 2007-03-24);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Ammunition Industries Group;;;;;5180;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3812;EU.3939.52;;2008-03-03;;(Date of UN designation: 2008-03-03);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Cruise Missile Industry Group;;;;;5185;EN;Production and development of cruise missiles. Responsible for naval missiles including cruise missiles.;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3812;EU.3939.52;;2008-03-03;;(Date of UN designation: 2008-03-03);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Naval Defence Missile Industry Group;;;;;5186;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3813;EU.3940.77;;2006-12-23;;(Date of UN designation: 2006-12-23);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Defence Industries Organisation;;;;;5187;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3813;EU.3940.77;;2006-12-23;;(Date of UN designation: 2006-12-23);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;DIO;;;;;5188;EN;Overarching MODAFL-controlled entity, some of whose subordinates have been involved in the centrifuge programme making components, and in the missile programme.;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3815;EU.3951.43;;2006-12-23;;(Date of UN designation: 2006-12-23);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Fajr Industrial Group;;;;;5193;EN;(a) Instrumentation Factory Plant, (b) Subordinate entity of AIO.;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3816;EU.1882.44;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Farayand Technique;;;;;5194;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3816;EU.1882.44;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Podnik Farayand Technique;CS;;;;5258;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3816;EU.1882.44;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Družba Farayand Technique;SL;;;;5417;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3817;EU.3952.8;;2006-12-23;;(Date of UN designation: 2006-12-23);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Kala-Electric;;;;;5195;EN;Provider for PFEP — Natanz.;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3817;EU.3952.8;;2006-12-23;;(Date of UN designation: 2006-12-23);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Kalaye Electric;;;;;5196;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3822;EU.3953.70;;2007-03-24;;(Date of UN designation: 2007-03-24);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Parchin Chemical Industries;;;;;5202;EN;Branch of DIO, which produces ammunition, explosives, as well as solid propellants for rockets and missiles.;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3823;EU.3954.35;;2007-03-24;;(Date of UN designation: 2007-03-24);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Pars Aviation Services Company;;;;;5203;EN;maintains various aircraft, including MI-171, used by IRGC Air Force.;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3825;EU.3963.71;;2007-03-24;;(Date of UN designation: 2007-03-24);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Qods Aeronautics Industries;;;;;5205;EN;It produces unmanned aerial vehicles (UAVs), parachutes, paragliders, para-motors, etc. IRGC has boasted to use these products as part of its asymmetric warfare doctrine.;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3826;EU.3964.36;;2007-03-24;;(Date of UN designation: 2007-03-24);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Sanam Industrial Group;;;;;5206;EN;subordinate to AIO, which has purchased equipment on AIO's behalf for the missile programme.;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3827;EU.3965.1;;2006-12-23;;(Date of UN designation: 2006-12-23);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;7th of Tir;;;;;5207;EN;subordinate to AIO, which has purchased equipment on AIO's behalf for the missile programme.;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3828;EU.3966.63;;2006-12-23;;(Date of UN designation: 2006-12-23);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Shahid Bagheri Industrial Group;;;;;5208;EN;Subordinate entity of AIO.;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3828;EU.3966.63;;2006-12-23;;(Date of UN designation: 2006-12-23);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;SBIG;;;;;5209;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3829;EU.3976.64;;2006-12-23;;(Date of UN designation: 2006-12-23);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Shahid Hemmat Industrial Group;;;;;5210;EN;Subordinate entity of AIO.;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3829;EU.3976.64;;2006-12-23;;(Date of UN designation: 2006-12-23);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;SHIG;;;;;5211;EN;;amendment;commission;2007-04-21;2007-04-21;441/2007 (OJ L104);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:104:0028:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3830;EU.3977.29;;2007-03-24;;(Date of UN designation: 2007-03-24);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Sho'a' Aviation;;;;;5212;EN;It produces micro-lights, which IRGC has claimed it is using as part of its asymmetric warfare doctrine.;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3831;EU.3978.91;;2007-03-24;;(Date of UN designation: 2007-03-24);E;enterprise;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;Ya Mahdi Industries Group;;;;;5213;EN;subordinate to AIO, which is involved in international purchase of missile equipment.;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3840;EU.1807.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Aerospace Industries Organisation;;;;;5436;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3840;EU.1807.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;AIO;;;;;5437;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3840;EU.1807.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Организация за авиационна промишленост;BG;;;;5472;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3840;EU.1807.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Organización de Industrias Aeroespaciales;ES;;;;5476;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3840;EU.1807.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Organizacija za vesoljsko industrijo;SL;;;;5481;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3840;EU.1807.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Organizaci pro letectví a kosmonautiku;CS;;;;5490;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3840;EU.1807.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Organizácia pre letecký a kozmický priemysel;SK;;;;5496;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3840;EU.1807.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Organisation der Luft- und Raumfahrtindustrien;DE;;;;5505;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3840;EU.1807.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;OLI;DE;;;;5506;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3840;EU.1807.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Organisation des industries aérospatiales;FR;;;;5507;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3840;EU.1807.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Órganização das Indústrias Aeroespaciais;PT;;;;5509;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3840;EU.1807.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Organizzazione delle industrie aerospaziali;IT;;;;5523;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3840;EU.1807.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Gaisa un Kosmosa telpas nozares uzņēmumu organizācija;LV;;;;5533;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3840;EU.1807.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;28 Shian 5, Lavizan;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1020;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3840;EU.1807.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Langare Street, Nobonyad Square;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1589;EN;;repealing;commission;2010-10-27;2010-10-27;961/2010 (OJ L281);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:281:0001:0077:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3841;EU.1644.40;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Armament Industries;;;;;5438;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3841;EU.1644.40;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Industrias Armamentísticas;ES;;;;5477;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3841;EU.1644.40;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Oborožitvena industrija;SL;;;;5482;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3841;EU.1644.40;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Zbrojařský závod;CS;;;;5492;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3841;EU.1644.40;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Industries d'armement;FR;;;;5508;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3841;EU.1644.40;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Indústrias de Armamento;PT;;;;5510;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3841;EU.1644.40;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Industrie degli armamenti;IT;;;;5524;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3841;EU.1644.40;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Industriji ta' l-Armamenti;MT;;;;6592;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3841;EU.1644.40;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Spoločnosť zbrojného priemyslu;SK;;;;6593;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3841;EU.1644.40;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Armament Industries Group;;;;;8048;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3841;EU.1644.40;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Groupe des industries de l'armement;FR;;;;8049;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3841;EU.1644.40;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Gruppo delle industrie dell'armamento;IT;;;;8050;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3841;EU.1644.40;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Il-Grupp tal-Industriji tal-Armamenti;MT;;;;8051;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3841;EU.1644.40;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Pasdaran Av., PO Box 19585/777;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1019;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3841;EU.1644.40;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;;Sepah Islam Road, Karaj Special Road Km 10;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1453;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Defence Technology and Science Research Centre;;;;;5439;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;DTSRC;;;;;5440;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Educational Research Institute;;;;;5441;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;MAVT Co.;;;;;5442;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Център за отбранителни технологии и научни изследвания;BG;;;;5473;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Centro de Tecnología de Defensa y de Investigación Científica;ES;;;;5478;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Instituto de Investigación Pedagógica/Moassese Amozeh Va Tahgiaghati;ES;;;;5479;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Raziskovalni center za obrambno tehnologijo in znanost;SL;;;;5483;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Raziskovalni center za izobraževanje/Moassese Amozeh Va Tahgiaghati;SL;;;;5484;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Středisko obranné technologie a vědeckého výzkumu;CS;;;;5494;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Vzdělávací výzkumný institut/Moassese Amozeh Va Tahgiaghati;CS;;;;5495;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Centrum obrannej technológie a vedeckého výskumu;SK;;;;5498;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Vzdelávací výskumný inštitút Moassese Amozeh Va Tahgiaghati;SK;;;;5503;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Centre de recherche sur les sciences et les technologies de la défense;FR;;;;5511;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Centro de Investigação no domínio da Ciência e da Tecnologia da Defesa;PT;;;;5512;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;d'Institut d'enseignement pour la recherche/Moassese Amozeh Va Tahgiaghati;FR;;;;5513;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Instituto de Investigação, de Educação/ /Moassese Amozeh Va Tahgiaghati;PT;;;;5515;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Centro di ricerca sulle tecnologie e le scienze della difesa;IT;;;;5525;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Védelmi Technológiai és Tudományos Kutatóközpont;HU;;;;5527;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Oktató Kutatóintézet/Moassese Amozeh Va Tahgiaghati;HU;;;;5530;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Aizsardzības tehnoloģiju un zinātniskās pētniecības centrs;LV;;;;5534;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Gynybos technologijų ir mokslinių tyrimų centras;LT;;;;5535;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Izglītības pētniecības institūts;LV;;;;5536;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Mokomuoju mokslinių tyrimų institutu arba Moassese Amozeh Va Tahgiaghati;LT;;;;5537;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Moassese Amozeh Va Tahgiaghati;;;;;5538;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;ERI;;;;;5539;EN;;amendment;commission;2009-11-18;2009-11-18;1100/2009 (OJ L303);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0031:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Ċentru tat-Teknoloġija tad-Difiża u r-Riċerka Xjentifika;MT;;;;6613;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;l-Istitut tar-Riċerka Edukattiva/Moassese Amozeh Va Tahgiaghati;MT;;;;6614;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Vědecké výzkumné středisko obranných technologií;CS;;;;8052;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Κέντρο τεχνολογικής άμυνας και επιστημονικής έρευνας;EL;;;;8053;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Centre de recherche en science et technologie de la défense;FR;;;;8054;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Centro di ricerca in scienza e tecnologia della difesa;IT;;;;8055;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Aizsardzības tehnoloģiju un zinātnes un pētniecības centrs;LV;;;;8056;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Defense Technology and Science Research Center;;;;;8069;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3842;EU.1847.59;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Pasdaran Av., PO Box 19585/777;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1021;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3844;EU.1848.24;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Marine Industries;;;;;5446;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3844;EU.1848.24;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Industrias Marítimas;ES;;;;5480;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3844;EU.1848.24;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Pomorska industrija;SL;;;;5486;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3844;EU.1848.24;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Závod námořního průmyslu;CS;;;;5499;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3844;EU.1848.24;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Indústrias Marinhas;PT;;;;5514;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3844;EU.1848.24;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Industries maritimes;FR;;;;5519;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3844;EU.1848.24;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Industrie nautiche;IT;;;;5526;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3844;EU.1848.24;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Industriji Marittimi;MT;;;;6685;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3844;EU.1848.24;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Námorný priemysel;SK;;;;6701;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3844;EU.1848.24;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Pasdaran Av., PO Box 19585/777;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1024;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3846;EU.1779.27;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Special Industries Group;;;;;5450;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3846;EU.1779.27;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Grupo de Industrias Especiales;ES;;;;5487;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3846;EU.1779.27;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Skupina za specialno industrijo;SL;;;;5491;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3846;EU.1779.27;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Skupina speciálního průmyslu;CS;;;;5501;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3846;EU.1779.27;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Grupo das Indústrias Especiais;PT;;;;5517;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3846;EU.1779.27;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Groupe des industries spéciales;FR;;;;5521;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3846;EU.1779.27;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Gruppo industrie speciali;IT;;;;5529;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3846;EU.1779.27;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Grupp ta' Industriji Speċjali;MT;;;;6691;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3846;EU.1779.27;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Grupo de Indústrias Especiais;PT;;;;6699;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3846;EU.1779.27;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Pracoval na technikách pohonu na účely iránskeho programu balistických striel;SK;;;;6706;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3846;EU.1779.27;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Pasdaran Av., PO Box 19585/777;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1026;EN;;amendment;council;2007-04-24;2007-04-24;2007/242/EC (OJ L106);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:106:0051:0054:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3862;EU.1780.52;;2007-04-23;;(Date of UN designation: 2007-04-23);P;person;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Abdollah SOLAT SANA;;;;Managing Director of the Uranium Conversion Facility (UCF) in Esfahan. This is the facility that produces the feed material (UF6) for the enrichment facilities at Natanz.;5471;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3862;EU.1780.52;;2007-04-23;;(Date of UN designation: 2007-04-23);P;person;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Sovlat Thana;;;;;131090;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3862;EU.1780.52;;2007-04-23;;(Date of UN designation: 2007-04-23);P;person;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Sowlat Senna;;;;;131091;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3862;EU.1780.52;;2007-04-23;;(Date of UN designation: 2007-04-23);P;person;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Solatsana Solat Sanna;;;;;131092;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3960;EU.1693.80;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Al-Dabski;Salem;Nor Eldin Amohamed;Salem Nor Eldin Amohamed Al-Dabski;;;;;5620;EN;;amendment;commission;2007-06-30;2007-06-29;760/2007 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:172:0050:0051:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3960;EU.1693.80;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abu Al-Ward;;;;;5621;EN;;amendment;commission;2007-06-30;2007-06-29;760/2007 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:172:0050:0051:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3960;EU.1693.80;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abdullah Ragab;;;;;5622;EN;;amendment;commission;2007-06-30;2007-06-29;760/2007 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:172:0050:0051:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3960;EU.1693.80;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abu Naim;;;;;5623;EN;;amendment;commission;2007-06-30;2007-06-29;760/2007 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:172:0050:0051:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3960;EU.1693.80;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abdallah al- Masri;;;;;15152;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3960;EU.1693.80;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Tripoli;Bab Ben Ghasheer;;;;;NO;;LY;LIBYA;1032;EN;;amendment;commission;2007-06-30;2007-06-29;760/2007 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:172:0050:0051:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3960;EU.1693.80;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;NO;GREGORIAN;;;;Tripoli;LY;LIBYA;879;EN;;amendment;commission;2007-06-30;2007-06-29;760/2007 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:172:0050:0051:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3960;EU.1693.80;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1990/345751 (other-Other identification number) ";NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;LY;;240;EN;;amendment;commission;2007-06-30;2007-06-29;760/2007 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:172:0050:0051:EN:PDF;;;;;;;;;;;;; +28/10/2022;3960;EU.1693.80;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"345751 (other-Other identification number) ";NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;LY;;632;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;; +28/10/2022;3960;EU.1693.80;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220334 (id-National identification card) (national identification no:);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;633;EN;national identification no:;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;; +28/10/2022;3960;EU.1693.80;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LY;;379;EN;;amendment;commission;2007-06-30;2007-06-29;760/2007 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:172:0050:0051:EN:PDF +28/10/2022;3962;EU.1743.40;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Abdul Sayed;Aly;Soliman Massoud;Aly Soliman Massoud Abdul Sayed;;;;;5626;EN;;amendment;commission;2007-06-30;2007-06-29;760/2007 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:172:0050:0051:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3962;EU.1743.40;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ibn El Qaim;;;;;5627;EN;;amendment;commission;2007-06-30;2007-06-29;760/2007 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:172:0050:0051:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3962;EU.1743.40;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Mohamed Osman;;;;;5628;EN;;amendment;commission;2007-06-30;2007-06-29;760/2007 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:172:0050:0051:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3962;EU.1743.40;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Adam;;;;;5629;EN;;amendment;commission;2007-06-30;2007-06-29;760/2007 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:172:0050:0051:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3962;EU.1743.40;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Tripoli;Ghout El Shamal;;;;;NO;;LY;LIBYA;1033;EN;;amendment;commission;2007-06-30;2007-06-29;760/2007 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:172:0050:0051:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3962;EU.1743.40;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969;;;NO;GREGORIAN;;;;Tripoli;LY;LIBYA;881;EN;;amendment;commission;2007-06-30;2007-06-29;760/2007 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:172:0050:0051:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;3962;EU.1743.40;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"96/184442 (other-Other identification number) ";NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;LY;;242;EN;;amendment;commission;2007-06-30;2007-06-29;760/2007 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:172:0050:0051:EN:PDF;;;;;;;;;;;;; +28/10/2022;3962;EU.1743.40;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LY;;378;EN;;amendment;commission;2007-06-30;2007-06-29;760/2007 (OJ L172);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:172:0050:0051:EN:PDF +28/10/2022;4000;EU.1786.36;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Droukdel;Abdelmalek;;Abdelmalek Droukdel;;;;;5995;EN;;amendment;commission;2007-09-04;2007-09-03;1025/2007 (OJ L231);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:231:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4000;EU.1786.36;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abou Mossaab Abdelouadoud;;;;;5996;EN;;amendment;commission;2007-09-04;2007-09-03;1025/2007 (OJ L231);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:231:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4000;EU.1786.36;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;DZ;ALGERIA;1051;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4000;EU.1786.36;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-04-20;20;4;1970;;;NO;GREGORIAN;;;;Meftah, Wilaya of Blida;DZ;ALGERIA;958;EN;;amendment;commission;2007-09-04;2007-09-03;1025/2007 (OJ L231);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:231:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4000;EU.1786.36;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;430;EN;;amendment;commission;2007-09-04;2007-09-03;1025/2007 (OJ L231);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:231:0004:0005:EN:PDF +28/10/2022;4020;EU.1787.1;;2007-09-13;;(Date of UN designation: 2007-09-13)\n(Heading the Haqqani Network as of late 2012. Son of Jalaluddin Haqqani. Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1491193);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqqani;Sirajuddin;Jallaloudine;Sirajuddin Jallaloudine Haqqani;;;;Na’ib Amir (Deputy Commander);103217;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4020;EU.1787.1;;2007-09-13;;(Date of UN designation: 2007-09-13)\n(Heading the Haqqani Network as of late 2012. Son of Jalaluddin Haqqani. Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1491193);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqqani;Siraj;;Siraj Haqqani;;;;;103218;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4020;EU.1787.1;;2007-09-13;;(Date of UN designation: 2007-09-13)\n(Heading the Haqqani Network as of late 2012. Son of Jalaluddin Haqqani. Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1491193);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqani;Serajuddin;;Serajuddin Haqani;;;;;103219;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4020;EU.1787.1;;2007-09-13;;(Date of UN designation: 2007-09-13)\n(Heading the Haqqani Network as of late 2012. Son of Jalaluddin Haqqani. Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1491193);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqani;Siraj;;Siraj Haqani;;;;;103220;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4020;EU.1787.1;;2007-09-13;;(Date of UN designation: 2007-09-13)\n(Heading the Haqqani Network as of late 2012. Son of Jalaluddin Haqqani. Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1491193);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqani;Saraj;;Saraj Haqani;;;;;103221;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4020;EU.1787.1;;2007-09-13;;(Date of UN designation: 2007-09-13)\n(Heading the Haqqani Network as of late 2012. Son of Jalaluddin Haqqani. Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1491193);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Khalifa;;;;;103222;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4020;EU.1787.1;;2007-09-13;;(Date of UN designation: 2007-09-13)\n(Heading the Haqqani Network as of late 2012. Son of Jalaluddin Haqqani. Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1491193);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Miramshah, North Waziristan;Kela neighbourhood/Danda neighbourhood;;;;;NO;;PK;PAKISTAN;103209;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4020;EU.1787.1;;2007-09-13;;(Date of UN designation: 2007-09-13)\n(Heading the Haqqani Network as of late 2012. Son of Jalaluddin Haqqani. Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1491193);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Miramshah, North Waziristan;Manba’ul uloom Madrasa;;;;;NO;;PK;PAKISTAN;103210;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4020;EU.1787.1;;2007-09-13;;(Date of UN designation: 2007-09-13)\n(Heading the Haqqani Network as of late 2012. Son of Jalaluddin Haqqani. Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1491193);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Miramshah, North Waziristan;Dergey Manday Madrasa;;;;;NO;;PK;PAKISTAN;103211;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4020;EU.1787.1;;2007-09-13;;(Date of UN designation: 2007-09-13)\n(Heading the Haqqani Network as of late 2012. Son of Jalaluddin Haqqani. Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1491193);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;1978;YES;GREGORIAN;;;;Danda, Miramshah, North Waziristan;PK;PAKISTAN;103212;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4020;EU.1787.1;;2007-09-13;;(Date of UN designation: 2007-09-13)\n(Heading the Haqqani Network as of late 2012. Son of Jalaluddin Haqqani. Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1491193);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;1978;YES;GREGORIAN;;;;Srana village, Garda Saray district, Paktia province;AF;AFGHANISTAN;103213;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4020;EU.1787.1;;2007-09-13;;(Date of UN designation: 2007-09-13)\n(Heading the Haqqani Network as of late 2012. Son of Jalaluddin Haqqani. Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1491193);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;1978;YES;GREGORIAN;;;;Neka district, Paktika province;AF;AFGHANISTAN;103214;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4020;EU.1787.1;;2007-09-13;;(Date of UN designation: 2007-09-13)\n(Heading the Haqqani Network as of late 2012. Son of Jalaluddin Haqqani. Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1491193);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;1978;YES;GREGORIAN;;;;Khost province;AF;AFGHANISTAN;103215;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4020;EU.1787.1;;2007-09-13;;(Date of UN designation: 2007-09-13)\n(Heading the Haqqani Network as of late 2012. Son of Jalaluddin Haqqani. Belongs to Sultan Khel section, Zadran tribe of Garda Saray of Paktia province, Afghanistan. Believed to be in the Afghanistan/ Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1491193);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;103216;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;4140;EU.1742.75;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Ali;Hamid;Abdallah Ahmad;Hamid Abdallah Ahmad Al-Ali;;;;;6126;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4140;EU.1742.75;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Ali;Hamed;Abdullah;Hamed Abdullah Al-Ali;;;Dr;;6127;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4140;EU.1742.75;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-'Ali;Hamed;;Hamed Al-'Ali;;;;;6128;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4140;EU.1742.75;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-'Ali;Hamed;bin 'Abdallah;Hamed bin 'Abdallah Al-'Ali;;;;;6129;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4140;EU.1742.75;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-'Ali;Hamid;'Abdallah;Hamid 'Abdallah Al-'Ali;;;;;6130;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4140;EU.1742.75;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-'Ali;Hamid;'Abdallah Ahmad;Hamid 'Abdallah Ahmad Al-'Ali;;;;;6131;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4140;EU.1742.75;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Ali;Hamid;bin Abdallah Ahmed;Hamid bin Abdallah Ahmed Al-Ali;;;;;6132;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4140;EU.1742.75;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Ali;Hamid;Abdallah Ahmed;Hamid Abdallah Ahmed Al-Ali;;;;;6133;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4140;EU.1742.75;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;Abu Salim;;;;;6809;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4140;EU.1742.75;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;Kuwait (residence as at March 2009);;;;;;NO;;KW;KUWAIT;1365;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4140;EU.1742.75;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-01-20;20;1;1960;;;NO;GREGORIAN;;;;;KW;KUWAIT;1017;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4140;EU.1742.75;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1739010 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KW;;291;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;; +28/10/2022;4140;EU.1742.75;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KW;;503;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF +28/10/2022;4141;EU.1790.53;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Ahmad Al-Jalahmah;Jaber;Abdallah Jaber;Jaber Abdallah Jaber Ahmad Al-Jalahmah;;;;;6134;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4141;EU.1790.53;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Jalamah;Jaber;;Jaber Al-Jalamah;;;;;6135;EN;;amendment;commission;2008-07-17;2008-07-16;678/2008 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:189:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4141;EU.1790.53;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Jalahmah;Abu Muhammad;;Abu Muhammad Al-Jalahmah;;;;;6136;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4141;EU.1790.53;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Jalahmah;Jabir;Abdallah Jabir Ahmad;Jabir Abdallah Jabir Ahmad Jalahmah;;;;;6137;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4141;EU.1790.53;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Jalamah;Jabir;'Abdallah Jabir Ahmad;Jabir 'Abdallah Jabir Ahmad Al-Jalamah;;;;;6138;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4141;EU.1790.53;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Jalhami;Jabir;;Jabir Al-Jalhami;;;;;6139;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4141;EU.1790.53;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;Abdul-Ghani;;;;;6140;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4141;EU.1790.53;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;Abu Muhammad;;;;;6141;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4141;EU.1790.53;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-09-24;24;9;1959;;;NO;GREGORIAN;;;;Al-Khitan area;KW;KUWAIT;1018;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4141;EU.1790.53;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"101423404 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;272;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;; +28/10/2022;4141;EU.1790.53;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"2541451 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KW;;294;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;; +28/10/2022;4141;EU.1790.53;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;002327881 (passport-National passport) ((passport));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KW;;431;EN;(passport);amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;; +28/10/2022;4141;EU.1790.53;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259092401188 (id-National identification card) ((national identification no));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;KW;;432;EN;(national identification no);amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;; +28/10/2022;4141;EU.1790.53;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KW;;504;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF +28/10/2022;4142;EU.1649.59;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Mubarak Al-Bathali;Mubarak;Mushakhas Sanad;Mubarak Mushakhas Sanad Mubarak Al-Bathali;;;;;6142;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4142;EU.1649.59;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Bathali;Mubarak;Mishkhis Sanad;Mubarak Mishkhis Sanad Al-Bathali;;;;;6143;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4142;EU.1649.59;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Badhali;Mubarak;Mishkhis Sanad;Mubarak Mishkhis Sanad Al-Badhali;;;;;6144;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4142;EU.1649.59;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Bathali;Mubarak;Mishkhas Sanad;Mubarak Mishkhas Sanad Al-Bathali;;;;;6145;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4142;EU.1649.59;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Bazali;Mubarak;Mishkhas Sanad;Mubarak Mishkhas Sanad Al-Bazali;;;;;6146;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4142;EU.1649.59;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Bthaly;Mobarak;Meshkhas Sanad;Mobarak Meshkhas Sanad Al-Bthaly;;;;;6147;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4142;EU.1649.59;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;Al-Bathali;Mubarak;-;Mubarak - Al-Bathali;;;;;6148;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4142;EU.1649.59;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;Abu Abdulrahman;;;;;7732;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4142;EU.1649.59;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;Kuwait;Al-Salibekhat area;;;;;NO;;KW;KUWAIT;1205;EN;;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4142;EU.1649.59;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-10-01;1;10;1961;;;NO;GREGORIAN;;;;;KW;KUWAIT;1019;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4142;EU.1649.59;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"101856740 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KW;;273;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;; +28/10/2022;4142;EU.1649.59;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;002955916 (passport-National passport) ((passport));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KW;;433;EN;(passport);amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;; +28/10/2022;4142;EU.1649.59;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26112240061 (id-National identification card) ((national identification no));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;KW;;434;EN;(national identification no);amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;; +28/10/2022;4142;EU.1649.59;;;;;P;person;amendment;commission;2010-02-09;2010-02-05;110/2010 (OJ L36);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:036:0009:0016:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KW;;505;EN;;amendment;commission;2008-01-25;2008-01-24;59/2008 (OJ L22);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:022:0004:0005:EN:PDF +28/10/2022;4280;EU.1816.91;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Abzar Boresh Kaveh Co.;;;;;6240;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4280;EU.1816.91;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;BK Co.;;;;;6241;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4281;EU.1707.90;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Barzagani Tejarat Tavanmad Saccal companies;;;;;6242;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4281;EU.1707.90;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Дружества Barzagani Tejarat Tavanmad Saccal;BG;;;;6269;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4281;EU.1707.90;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Empresas Barzagani Tejarat Tavanmad Saccal;ES;;;;6270;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4281;EU.1707.90;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Společnosti Barzagani Tejarat Tavanmad Saccal;CS;;;;6271;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4281;EU.1707.90;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Barzagani Tejarat Tavanmad Saccal vállalatok;HU;;;;6272;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4281;EU.1707.90;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Il-kumpaniji Barzagani Tejarat Tavanmad Saccal;MT;;;;6273;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4281;EU.1707.90;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Spółki Barzagani Tejarat Tavanmad Saccal;PL;;;;6274;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4281;EU.1707.90;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Empresas Barzagani Tejarat Tavanmad Saccal;PT;;;;6275;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4281;EU.1707.90;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Întreprinderile Barzagani Tejarat Tavanmad Saccal;RO;;;;6276;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4281;EU.1707.90;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Spoločnosti Barzagani Tejarat Tavanmad Saccal;SK;;;;6277;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4281;EU.1707.90;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Družba Barzagani Tejarat Tavanmad Saccal;SL;;;;6278;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4282;EU.1708.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Electro Sanam Company;;;;;6243;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4282;EU.1708.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;E. S. Co.;;;;;6244;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4282;EU.1708.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;E. X. Co.;;;;;6245;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4282;EU.1708.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Společnost Electro Sanam Company;CS;;;;6284;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4282;EU.1708.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Il-Kumpanija Electro Sanam;MT;;;;6285;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4282;EU.1708.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Spółka Electro Sanam;PL;;;;6286;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4282;EU.1708.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Družba Electro Sanam Company;SL;;;;6287;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4283;EU.1709.20;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Ettehad Technical Group;;;;;6246;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4283;EU.1709.20;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Technická skupina Ettehad;CS;;;;6290;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4283;EU.1709.20;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Groupe technique Ettehad;FR;;;;6291;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4283;EU.1709.20;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Ettehad műszaki csoport;HU;;;;6292;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4283;EU.1709.20;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Grupp Tekniku Ettehad;MT;;;;6293;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4283;EU.1709.20;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Grupa technologiczna Ettehad;PL;;;;6294;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4283;EU.1709.20;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Grupul tehnic Ettehad;RO;;;;6295;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4283;EU.1709.20;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Skupina Ettehad Technical Group;SL;;;;6296;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4284;EU.1756.33;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Industrial Factories of Precision (IFP) Machinery;;;;;6247;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4284;EU.1756.33;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Instrumentation Factories Plant;;;;;6248;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4284;EU.1756.33;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Průmyslový podnik na výrobu přesných obráběcích strojů;CS;;;;6299;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4284;EU.1756.33;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Podnikový závod na výrobu přístrojů;CS;;;;6300;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4284;EU.1756.33;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Usines de machines de précision;FR;;;;6301;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4284;EU.1756.33;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Fabbriki Industrijali ta’ Preċiżjoni (IFP) Makkinarju;MT;;;;6302;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4284;EU.1756.33;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Impjant ta’ Fabbriki ta’ Strumentazzjoni;MT;;;;6303;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4284;EU.1756.33;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Przemysłowe Fabryki Maszyn Precyzyjnych;PL;;;;6304;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4284;EU.1756.33;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Zakłady Oprzyrządowania;PL;;;;6305;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4284;EU.1756.33;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Družba Industrial Factories of Precision (IFP) Machinery;SL;;;;6306;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4286;EU.1757.95;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Joza Industrial Co.;;;;;6250;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4287;EU.1758.60;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Khorasan Metallurgy Industries;;;;;6251;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4287;EU.1758.60;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Podnik metalurgického průmyslu Khorasan;CS;;;;6308;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4287;EU.1758.60;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Industries métallurgiques du Khorasan;FR;;;;6309;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4287;EU.1758.60;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Karajaus branduolinių tyrimų centras;LT;;;;6310;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4287;EU.1758.60;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;L-industriji Metallurġiċi Khorasan;MT;;;;6311;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4287;EU.1758.60;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Chorasańskie Zakłady Przemysłu Metalurgicznego;PL;;;;6312;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4287;EU.1758.60;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Družba Khorasan Metallurgy Industries;SL;;;;6313;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4288;EU.1759.25;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Niru Battery Manufacturing Company;;;;;6252;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4288;EU.1759.25;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Výrobní společnost Niru Battery;CS;;;;6314;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4288;EU.1759.25;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Przedsiębiorstwo wyrobu baterii Niru;PL;;;;6315;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4288;EU.1759.25;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Družba Niru Battery Manufacturing Company;SL;;;;6316;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4290;EU.1773.43;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Safety Equipment Procurement;;;;;6254;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4290;EU.1773.43;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;SEP;;;;;6255;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4290;EU.1773.43;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Nákup bezpečnostního vybavení;CS;;;;6324;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4290;EU.1773.43;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Przedsiębiorstwo zaopatrzenia w wyposażenie ochronne;PL;;;;6325;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4290;EU.1773.43;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Družba za zagotavljanje varnostne opreme;SL;;;;6326;EN;;amendment;commission;2008-03-12;2008-03-12;219/2008 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:068:0005:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4292;EU.3874.72;;2008-03-03;;(Date of UN designation: 2008-03-03);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Eslami;Mohammad;;Mohammad Eslami;;;Dr.;Head of Defence Industries Training and Research Institute. Served as Deputy Defence Minister from 2012 to 2013;6257;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4292;EU.3874.72;;2008-03-03;;(Date of UN designation: 2008-03-03);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Islami;Mohammed;;Mohammed Islami;;;Dr.;Head of Defence Industries Training and Research Institute. Served as Deputy Defence Minister from 2012 to 2013;112816;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4292;EU.3874.72;;2008-03-03;;(Date of UN designation: 2008-03-03);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Islami;Mohamed;;Mohamed Islami;;;Dr.;Head of Defence Industries Training and Research Institute. Served as Deputy Defence Minister from 2012 to 2013;112817;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4292;EU.3874.72;;2008-03-03;;(Date of UN designation: 2008-03-03);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Islami;Mohammad;;Mohammad Islami;;;Dr.;Head of Defence Industries Training and Research Institute. Served as Deputy Defence Minister from 2012 to 2013;112818;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4300;EU.3774.10;;2008-03-03;Date of listing: 26.7.2010;(Date of UN designation: 2008-03-03)\n(Designation details: Date of listing: 26.7.2010)\n(See the logical id 5756. The person was listed by the UN in 2008. In 2010 was listed by the EU.);P;person;amendment;council;2020-06-19;2020-06-20;2020/847 (OJ L196);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.196.01.0001.01.ENG&toc=OJ:L:2020:196:TOC;NAQDI;Mohammad;Reza;Mohammad Reza NAQDI;;;IRGC Brigadier-General;Deputy Coordinator of the IRGC. Former Deputy Commander of IRGC for Cultural and Social Affairs. Former Commander of Basij Resistance Force.;6258;EN;;amendment;council;2020-06-19;2020-06-20;2020/847 (OJ L196);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.196.01.0001.01.ENG&toc=OJ:L:2020:196:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4300;EU.3774.10;;2008-03-03;Date of listing: 26.7.2010;(Date of UN designation: 2008-03-03)\n(Designation details: Date of listing: 26.7.2010)\n(See the logical id 5756. The person was listed by the UN in 2008. In 2010 was listed by the EU.);P;person;amendment;council;2020-06-19;2020-06-20;2020/847 (OJ L196);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.196.01.0001.01.ENG&toc=OJ:L:2020:196:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;NO;GREGORIAN;;;;Nadjaf;IQ;IRAQ;112939;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4686;EU.3735.68;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Became acting FDLR-FOCA Deputy Commander in 2014.\nLeopold Mujyambere was Commander of the Second Division of FOCA.\nIn June 2011, he was the FOCA Commander of the South Kivu operational sector, then called “Amazon”. He was later promoted to FOCA Chief of Staff, and then acting Deputy Commander in 2014.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Mujyambere;Leopold;;Leopold Mujyambere;;;;a) FDLR-FOCA Chief of Staff, b) FDLR-FOCA Interim Deputy Commander;6802;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4686;EU.3735.68;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Became acting FDLR-FOCA Deputy Commander in 2014.\nLeopold Mujyambere was Commander of the Second Division of FOCA.\nIn June 2011, he was the FOCA Commander of the South Kivu operational sector, then called “Amazon”. He was later promoted to FOCA Chief of Staff, and then acting Deputy Commander in 2014.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Musenyeri;;;;FDLR-FOCA Chief of Staff;7002;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4686;EU.3735.68;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Became acting FDLR-FOCA Deputy Commander in 2014.\nLeopold Mujyambere was Commander of the Second Division of FOCA.\nIn June 2011, he was the FOCA Commander of the South Kivu operational sector, then called “Amazon”. He was later promoted to FOCA Chief of Staff, and then acting Deputy Commander in 2014.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Achille;;;;FDLR-FOCA Interim Deputy Commander;7003;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4686;EU.3735.68;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Became acting FDLR-FOCA Deputy Commander in 2014.\nLeopold Mujyambere was Commander of the Second Division of FOCA.\nIn June 2011, he was the FOCA Commander of the South Kivu operational sector, then called “Amazon”. He was later promoted to FOCA Chief of Staff, and then acting Deputy Commander in 2014.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Frere Petrus Ibrahim;;;;;7004;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4686;EU.3735.68;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Became acting FDLR-FOCA Deputy Commander in 2014.\nLeopold Mujyambere was Commander of the Second Division of FOCA.\nIn June 2011, he was the FOCA Commander of the South Kivu operational sector, then called “Amazon”. He was later promoted to FOCA Chief of Staff, and then acting Deputy Commander in 2014.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;Kinshasa;;;;;;NO;(Address: Kinshasa, Democratic Republic of the Congo (as of June 2016));CD;CONGO, Democratic Republic of (was Zaire);110772;EN;Address: Kinshasa, Democratic Republic of the Congo (as of June 2016);amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4686;EU.3735.68;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Became acting FDLR-FOCA Deputy Commander in 2014.\nLeopold Mujyambere was Commander of the Second Division of FOCA.\nIn June 2011, he was the FOCA Commander of the South Kivu operational sector, then called “Amazon”. He was later promoted to FOCA Chief of Staff, and then acting Deputy Commander in 2014.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-03-17;17;3;1962;;;NO;GREGORIAN;;;;Kigali;RW;RWANDA;1117;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4686;EU.3735.68;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Became acting FDLR-FOCA Deputy Commander in 2014.\nLeopold Mujyambere was Commander of the Second Division of FOCA.\nIn June 2011, he was the FOCA Commander of the South Kivu operational sector, then called “Amazon”. He was later promoted to FOCA Chief of Staff, and then acting Deputy Commander in 2014.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;YES;GREGORIAN;;;;Kigali;RW;RWANDA;1118;EN;Approximately 1966.;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;4686;EU.3735.68;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Became acting FDLR-FOCA Deputy Commander in 2014.\nLeopold Mujyambere was Commander of the Second Division of FOCA.\nIn June 2011, he was the FOCA Commander of the South Kivu operational sector, then called “Amazon”. He was later promoted to FOCA Chief of Staff, and then acting Deputy Commander in 2014.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RW;;542;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF +28/10/2022;5220;EU.1580.25;;2008-06-04;;(Date of UN designation: 2008-06-04);E;enterprise;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;Rajah Solaiman Movement;;;;;6493;EN;Founded and headed by Hilarion Del Rosario Santos III.;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5220;EU.1580.25;;2008-06-04;;(Date of UN designation: 2008-06-04);E;enterprise;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;Rajah Solaiman Islamic Movement;;;;;6494;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5220;EU.1580.25;;2008-06-04;;(Date of UN designation: 2008-06-04);E;enterprise;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;Rajah Solaiman Revolutionary Movement;;;;;6495;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5220;EU.1580.25;;2008-06-04;;(Date of UN designation: 2008-06-04);E;enterprise;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;Barangay Mal-Ong, Anda, Pangasinan Province;;;;;;NO;;PH;PHILIPPINES;1167;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5220;EU.1580.25;;2008-06-04;;(Date of UN designation: 2008-06-04);E;enterprise;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;Sitio Dueg, Barangay Maasin, San Clemente, Tarlac Province;;;;;;NO;;PH;PHILIPPINES;1168;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5220;EU.1580.25;;2008-06-04;;(Date of UN designation: 2008-06-04);E;enterprise;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;Cubao, Quezon City;50 Purdue Street;;;;;NO;;PH;PHILIPPINES;1169;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5240;EU.1493.53;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Ayeras;Ricardo;Perez;Ricardo Perez Ayeras;;;;;6496;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5240;EU.1493.53;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Ayeras;Abdul;Kareem;Abdul Kareem Ayeras;;;;;6497;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5240;EU.1493.53;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Ayeras;Abdul;Karim;Abdul Karim Ayeras;;;;;6498;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5240;EU.1493.53;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Ayeras;Ricky;;Ricky Ayeras;;;;;6499;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5240;EU.1493.53;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Jimboy;;;;;6500;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5240;EU.1493.53;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Isaac Jay Galang Perez;;;;;6501;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5240;EU.1493.53;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abdul Mujib;;;;;6502;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5240;EU.1493.53;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Barangay Mangayao, Tagkawayan, Quezon;;;;;;NO;;PH;PHILIPPINES;1170;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5240;EU.1493.53;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Barangay Tigib, Ayungon, Negros Oriental;;;;;;NO;;PH;PHILIPPINES;1171;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5240;EU.1493.53;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-09-15;15;9;1973;;;NO;GREGORIAN;;;;24 Paraiso Street, Barangay Poblacion, Mandaluyong City;PH;PHILIPPINES;1061;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5240;EU.1493.53;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PH;;515;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF +28/10/2022;5260;EU.1530.20;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;De Vera;Pio;Abogne;Pio Abogne De Vera;;;;;6503;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5260;EU.1530.20;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;De Vera;Ismael;;Ismael De Vera;;;;;6504;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5260;EU.1530.20;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Khalid;;;;;6505;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5260;EU.1530.20;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ismael;;;;;6506;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5260;EU.1530.20;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Ismail;;;;;6507;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5260;EU.1530.20;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Manex;;;;;6508;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5260;EU.1530.20;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Tito Art;;;;;6509;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5260;EU.1530.20;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Dave;;;;;6510;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5260;EU.1530.20;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Leo;;;;;6511;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5260;EU.1530.20;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Concepcion, Zaragosa, Nueva Ecija;;;;;;NO;;PH;PHILIPPINES;1175;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5260;EU.1530.20;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-12-19;19;12;1969;;;NO;GREGORIAN;;;;Bagac, Bagamanok, Catanduanes;PH;PHILIPPINES;1062;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5260;EU.1530.20;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PH;;516;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF +28/10/2022;5261;EU.1736.31;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Dellosa;Redendo;Cain;Redendo Cain Dellosa;;;;;6512;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5261;EU.1736.31;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Punta, Santa Ana, Manila;3111 Ma. Bautista;;;;;NO;;PH;PHILIPPINES;1176;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5261;EU.1736.31;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-05-15;15;5;1972;;;NO;GREGORIAN;;;;Punta, Santa Ana, Manila;PH;PHILIPPINES;1063;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5261;EU.1736.31;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PH;;517;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF +28/10/2022;5262;EU.1620.81;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Delos Reyes (jr);Feliciano;Semborio;Feliciano Semborio Delos Reyes (jr);;;Ustadz;;6521;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5262;EU.1620.81;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abubakar Abdillah;;;;;6522;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5262;EU.1620.81;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abdul Abdillah;;;;;6523;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5262;EU.1620.81;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;PH;PHILIPPINES;1181;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5262;EU.1620.81;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-11-04;4;11;1963;;;NO;GREGORIAN;;;;Arco, Lamitan, Basilan;PH;PHILIPPINES;1064;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5262;EU.1620.81;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PH;;518;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;Lavilla (jr);Ruben;Pestano;Ruben Pestano Lavilla (jr);;;Sheik;;6524;EN;In detention in the Philippines as of May 2011.;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;Lavilla;Reuben;;Reuben Lavilla;;;;;6525;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;Sheik Omar;;;;;6526;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;Lavilla;Mile;D;Mile D Lavilla;;;;;6527;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;Lavilla;Reymund;;Reymund Lavilla;;;;;6528;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;Lavilla;Ramo;;Ramo Lavilla;;;;;6529;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;Lavilla;Mike;de;Mike de Lavilla;;;;;6530;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;Abdullah Muddaris;;;;;6531;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;Ali Omar;;;;;6532;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;Lavilla;Omar;;Omar Lavilla;;;;;6533;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;Omar Labella;;;;;6534;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;So;;;;;6535;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;Eso;;;;;6536;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;Junjun;;;;;6537;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;Caloocan City;10th Avenue;;;;;NO;;PH;PHILIPPINES;1184;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-10-04;4;10;1972;;;NO;GREGORIAN;;;;Sitio Banga Maiti, Barangay Tranghawan, Lambunao, Iloilo;PH;PHILIPPINES;1065;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM611523 (passport-National passport) ((Filipino passport, 2004));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;PH;;286;EN;(Filipino passport, 2004);amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EE947317 (passport-National passport) (Filipino passport 2000-2001);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;PH;;287;EN;Filipino passport 2000-2001;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;P421967 (passport-National passport) ((Filipino passport number (1995- 1997));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;PH;;288;EN;(Filipino passport number (1995- 1997);amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;; +28/10/2022;5263;EU.1628.92;;2008-06-04;;(Date of UN designation: 2008-06-04);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PH;;519;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF +28/10/2022;5264;EU.1679.62;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Pareja;Dinno;Amor Rosalejos;Dinno Amor Rosalejos Pareja;;;;;6538;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5264;EU.1679.62;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Pareja;Johnny;;Johnny Pareja;;;;;6539;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5264;EU.1679.62;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Pareja;Khalil;;Khalil Pareja;;;;;6540;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5264;EU.1679.62;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Mohammad;;;;;6541;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5264;EU.1679.62;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Akmad;;;;;6542;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5264;EU.1679.62;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Mighty;;;;;6543;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5264;EU.1679.62;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Rash;;;;;6544;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5264;EU.1679.62;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Atimonana, Quezon Province;;;;;;NO;;PH;PHILIPPINES;1186;EN;;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5264;EU.1679.62;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-07-19;19;7;1981;;;NO;GREGORIAN;;;;Cebu City;PH;PHILIPPINES;1066;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5264;EU.1679.62;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PH;;520;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF +28/10/2022;5265;EU.4047.51;;;;(date of listing: 4.6.2008);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;Santos;Hilarion;Del Rosario;Hilarion Del Rosario Santos;;;Amir;;6545;EN;;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5265;EU.4047.51;;;;(date of listing: 4.6.2008);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;Santos;Akmad;;Akmad Santos;;;;;6546;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5265;EU.4047.51;;;;(date of listing: 4.6.2008);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Ahmed Islam;;;;;6547;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5265;EU.4047.51;;;;(date of listing: 4.6.2008);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;Santos;Ahmad;Islam;Ahmad Islam Santos;;;;;6548;EN;;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5265;EU.4047.51;;;;(date of listing: 4.6.2008);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Abu Hamsa;;;;;6549;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5265;EU.4047.51;;;;(date of listing: 4.6.2008);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Hilarion Santos, III (third);;;;;6550;EN;;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5265;EU.4047.51;;;;(date of listing: 4.6.2008);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;Santos;Abu Abdullah;;Abu Abdullah Santos;;;;;6551;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5265;EU.4047.51;;;;(date of listing: 4.6.2008);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;Santos;Faisal;;Faisal Santos;;;;;6552;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5265;EU.4047.51;;;;(date of listing: 4.6.2008);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Lakay;;;;;6553;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5265;EU.4047.51;;;;(date of listing: 4.6.2008);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Aki;;;;;6554;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5265;EU.4047.51;;;;(date of listing: 4.6.2008);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Aqi;;;;;6555;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5265;EU.4047.51;;;;(date of listing: 4.6.2008);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Hilarion Del Rosario Santos, III (third);;;;;114504;EN;;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5265;EU.4047.51;;;;(date of listing: 4.6.2008);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;Cubao, Quezon City;50 Purdue Street;;;;;NO;;PH;PHILIPPINES;1188;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5265;EU.4047.51;;;;(date of listing: 4.6.2008);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-03-12;12;3;1966;;;NO;GREGORIAN;;;;686 A. Mabini Street, Sangandaan, Caloocan City;PH;PHILIPPINES;1067;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5265;EU.4047.51;;;;(date of listing: 4.6.2008);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA780554 (passport-National passport) ((Filipino passport).);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;PH;;289;EN;(Filipino passport).;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;; +28/10/2022;5265;EU.4047.51;;;;(date of listing: 4.6.2008);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PH;;521;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF +28/10/2022;5266;EU.2122.90;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Trinidad;Angelo;Ramirez;Angelo Ramirez Trinidad;;;;;6556;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5266;EU.2122.90;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Trinidad;Calib;;Calib Trinidad;;;;;6557;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5266;EU.2122.90;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Trinidad;Kalib;;Kalib Trinidad;;;;;6558;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5266;EU.2122.90;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abdul Khalil;;;;;6559;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5266;EU.2122.90;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abdukahlil;;;;;6560;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5266;EU.2122.90;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Abu Khalil;;;;;6561;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5266;EU.2122.90;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Anis;;;;;6562;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5266;EU.2122.90;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Punta, Santa Ana, Manila;3111 Ma. Bautista;;;;;NO;;PH;PHILIPPINES;1191;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5266;EU.2122.90;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-03-20;20;3;1978;;;NO;GREGORIAN;;;;Gattaran, Cagayan Province;PH;PHILIPPINES;1068;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5266;EU.2122.90;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PH;;522;EN;;amendment;commission;2008-06-20;2008-06-18;580/2008 (OJ L161);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:161:0025:0027:EN:PDF +28/10/2022;5267;EU.2123.55;;2008-06-23;;(Date of UN designation: 2008-06-23);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;DARVISH-VAND;Javad;;Javad DARVISH-VAND;;M;IRGC Brigadier-General;Former Deputy Minister of Defence and Inspector General of MODAFL.;6578;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5268;EU.2124.20;;2008-06-23;;(Date of UN designation: 2008-06-23);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;FARAHI;Seyyed;Mahdi;Seyyed Mahdi FARAHI;;M;IRGC Brigadier-General;Deputy Minister of Defence and Armed Forces Support since 2021. Previously Deputy Minister of Defence and Industrial Affairs of the Ministry of Defence, head of the Defence Industries and Aerospace Organizations of the Ministry of Defence, as well as commander of the Armed Forces Personnel Training Camp. Former head of Iran's Aerospace Industries Organisation (AIO) and former managing director of the UN-designated Defence Industries Organisation (DIO). Member of the IRGC .;6579;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5269;EU.2125.82;;;;;P;person;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;Haeri;Mojtaba;;Mojtaba Haeri;;;Engineer;MODAFL Deputy for Industry. Supervisory role over AIO and DIO;6580;EN;;amendment;commission;2009-11-18;2009-11-18;1100/2009 (OJ L303);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0031:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5270;EU.2160.67;;;date of listing: 23.06.2008;(Designation details: date of listing: 23.06.2008);P;person;amendment;council;2019-05-28;2019-05-29;2019/855 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0855&from=EN;HOSEYNITASH;Ali;;Ali HOSEYNITASH;;;IRGC Brigadier-General;Member of the IRGC. Member of the Supreme National Security Council and involved in formulating policy on nuclear issues.;6581;EN;;amendment;council;2019-05-28;2019-05-29;2019/855 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0855&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5271;EU.2171.33;;2008-06-23;;(Date of UN designation: 2008-06-23);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;JAFARI;Mohammad;Ali;Mohammad Ali JAFARI;;M;;Former Commander of the IRGC. Currently head of the Hazrat Baqiatollah al-Azam Cultural and Social \nHeadquarters.;6582;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5273;EU.2172.95;;2008-06-23;;(Date of UN designation: 2008-06-23);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;MAHMUDZADEH;Ebrahim;;Ebrahim MAHMUDZADEH;;M;;Head of the Management Board of Iran Telecommunications. Former Managing Director of Iran Electronic Industries. Director \ngeneral of the Armed Forces Social Security Organization until September 2020. Iranian Deputy Defense Minister until December 2020.;6584;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5274;EU.2173.60;;;;;P;person;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;Mohammadlu;Beik;;Beik Mohammadlu;;;Brigadier-General;MODAFL Deputy for Supplies and Logistics;6585;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5275;EU.2174.25;;2021-07-31;;(Date of UN designation: 2021-07-31);P;person;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Anis NACCACHE;;;;"Former administrator of Barzagani Tejarat Tavanmad Saccal companies; his company has attempted to procure sensitive goods for entities designated under Resolution 1737 (2006).";6586;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5276;EU.2175.87;;;date of listing: 23.6.2008;(Designation details: date of listing: 23.6.2008);P;person;amendment;council;2019-05-28;2019-05-29;2019/855 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0855&from=EN;NADERI;Mohammad;;Mohammad NADERI;;;Brigadier-General;Head of Iran's Aviation Industries Organisation (IAIO). Former Head of Iran's Aerospace Industries Organisation \n(AIO).;6587;EN;;amendment;council;2019-05-28;2019-05-29;2019/855 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0855&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5277;EU.2176.52;;2008-06-23;;(Date of UN designation: 2008-06-23);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;NAJJAR;Mostafa;Mohammad;Mostafa Mohammad NAJJAR;;M;IRGC Brigadier-General;Former Minister for the Interior and former Minister of MODAFL, responsible for all military programmes. Since September 2013, Senior Advisor to the Chief of General Staff of the Armed Forces on Knowledge and Technology Industry.;6588;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5278;EU.2177.17;;2021-07-31;;(Date of UN designation: 2021-07-31);P;person;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Mohammad SHAFI'I RUDSARI;;;Rear Admiral;Former MODAFL \nDeputy for Coordination;6589;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5278;EU.2177.17;;2021-07-31;;(Date of UN designation: 2021-07-31);P;person;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Mohammad Shafiei RUDSARI;;;;;131084;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5278;EU.2177.17;;2021-07-31;;(Date of UN designation: 2021-07-31);P;person;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Mohammad Shafi’I RUDSARI;;;;;131085;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5278;EU.2177.17;;2021-07-31;;(Date of UN designation: 2021-07-31);P;person;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Mohammad Hossein Shafiei RUDSARI;;;;;131086;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5278;EU.2177.17;;2021-07-31;;(Date of UN designation: 2021-07-31);P;person;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Mohammad Shafiei ROODSARI;;;;;131087;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5278;EU.2177.17;;2021-07-31;;(Date of UN designation: 2021-07-31);P;person;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Mohammad Shafi’I ROODSARI;;;;;131088;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5278;EU.2177.17;;2021-07-31;;(Date of UN designation: 2021-07-31);P;person;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Mohammad Hossein Shafiei ROODSARI;;;;;131089;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5279;EU.2216.11;;2008-06-23;;(Date of UN designation: 2008-06-23);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;SHAMSHIRI;Ali;;Ali SHAMSHIRI;;;IRGC Brigadier-General;Advisor to the director of the Defence Science and Education Research Institute.;6590;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5280;EU.2222.55;;2008-06-23;;(Date of UN designation: 2008-06-23);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;VAHIDI;Ahmad;;Ahmad VAHIDI;;M;IRGC Brigadier-General;Since 25 August 2021, Minister of Interior. Former President of the Supreme National Defence University and former Minister of MODAFL.;7392;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5281;EU.2223.20;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Armed Forces Geographical Organisation;;;;;6594;EN;A subsidiary of MODAFL \nassessed to provide \ngeospatial data for the \nBallistic Missile \nprogramme;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5281;EU.2223.20;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Географска организация на въоръжените сили;BG;;;;6595;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5281;EU.2223.20;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Organización geográfica de las fuerzas armadas;ES;;;;6596;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5281;EU.2223.20;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Útvar ozbrojených sil pro geografii;CS;;;;6597;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5281;EU.2223.20;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Organisation géographique des forces armées;FR;;;;6598;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5281;EU.2223.20;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Organizzazione geografica delle forze armate;IT;;;;6599;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5281;EU.2223.20;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Organizzazjoni Ġeografika tal-Forzi Armati;HU;;;;6600;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5281;EU.2223.20;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Organização Geográfica das Forças Armadas;PT;;;;6601;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5281;EU.2223.20;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Organizația geografică a forțelor armate;RO;;;;6602;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5281;EU.2223.20;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Geografická organizácia ozbrojených síl;SK;;;;6603;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5281;EU.2223.20;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Organizacija Armed Forces Geographical Organisation;SL;;;;6604;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5281;EU.2223.20;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Asevoimien maantieteellinen organisaatio;FI;;;;6605;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5283;EU.2267.78;;2008-06-23;;(Date of UN designation: 2008-06-23)\n(Wholly-owned subsidiary of MODAFL (and therefore a sister-organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian\nweapons systems.);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Iran Electronics Industries;;;;;6615;EN;;repealing;commission;2010-10-27;2010-10-27;961/2010 (OJ L281);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:281:0001:0077:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5283;EU.2267.78;;2008-06-23;;(Date of UN designation: 2008-06-23)\n(Wholly-owned subsidiary of MODAFL (and therefore a sister-organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian\nweapons systems.);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Industrias Electrónicas de Irán;ES;;;;141550;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5283;EU.2267.78;;2008-06-23;;(Date of UN designation: 2008-06-23)\n(Wholly-owned subsidiary of MODAFL (and therefore a sister-organisation to AIO, AvIO and DIO). Its role is to manufacture electronic components for Iranian\nweapons systems.);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;Tehran;P.O. Box 18575-365;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1195;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5284;EU.2166.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;IRGC Air Force;;;;;6619;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5284;EU.2166.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Военновъздушни сили на Корпуса на гвардейците на иранската революция;BG;;;;6620;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5284;EU.2166.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Fuerza Aérea de los Guardianes de la Revolución;ES;;;;6621;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5284;EU.2166.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Vzdušné síly IRGC;CS;;;;6622;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5284;EU.2166.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Αεροπο-ρική δύναμη IRGC;EL;;;;6623;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5284;EU.2166.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Forces aériennes du Corps des gardiens de la révolution islamique;FR;;;;6624;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5284;EU.2166.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Forza aerea dell'IRGC;IT;;;;6625;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5284;EU.2166.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;IRGC gaisa spēki;LV;;;;6626;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5284;EU.2166.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Islamo revoliucijos gvardijos oro pajėgos;LT;;;;6627;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5284;EU.2166.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Forza ta' l-Ajru IRGC;MT;;;;6628;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5284;EU.2166.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;IRGC-luchtmacht;NL;;;;6629;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5284;EU.2166.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Siły lotnicze IRGC;PL;;;;6630;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5284;EU.2166.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Força Aérea do IRGC;PT;;;;6631;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5284;EU.2166.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Vzdušné sily IRGC;SK;;;;6632;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5284;EU.2166.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Zračne sile IRGC;SL;;;;6633;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5284;EU.2166.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;IRGC:n ilmavoimat;FI;;;;6634;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5285;EU.2179.44;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Khatem-ol Anbiya Construction Organisation;;;;;6635;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5285;EU.2179.44;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Строителна организация Khatem-ol Anbiya;BG;;;;6636;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5285;EU.2179.44;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Stavební organizace Khatem-ol Anbiya;CS;;;;6637;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5285;EU.2179.44;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Khatem-ol Anbiya statybos organizacija;LT;;;;6638;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5285;EU.2179.44;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Organizzazzjoni ta' Kostruzzjoni Khatem-ol Anbiya;MT;;;;6639;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5285;EU.2179.44;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Khatem-ol Anbiya Organisatie van de bouwsector;NL;;;;6640;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5285;EU.2179.44;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Stavebná organizácia Khatem-ol Anbiya;SK;;;;6641;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5285;EU.2179.44;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Khatam al-Anbiya Construction Headquarters;;;;;8057;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5285;EU.2179.44;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;KAA;;;;;8071;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5285;EU.2179.44;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;221 North Falamak-Zarafshan Intersection, 4th Phase, Shahkrak-E-Ghods;;14678;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1196;EN;;amendment;commission;2009-11-18;2009-11-18;1100/2009 (OJ L303);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0031:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5286;EU.2225.47;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Malek Ashtar University;;;;;6642;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5286;EU.2225.47;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Университет Malek Ashtar;BG;;;;6651;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5286;EU.2225.47;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Univerzita Maleka Aštara;CS;;;;6652;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5286;EU.2225.47;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Malek Ashtar-Universität;DE;;;;6653;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5286;EU.2225.47;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Πανεπιστήμιο Malek Ashtar;EL;;;;6654;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5286;EU.2225.47;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Université Malek Ashtar;FR;;;;6655;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5286;EU.2225.47;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Malek Ashtar universitetas;LT;;;;6656;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5286;EU.2225.47;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Università Malek Ashtar;MT;;;;6657;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5286;EU.2225.47;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Universidade Malek Ashtar;PT;;;;6658;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5286;EU.2225.47;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Universitatea Malek Ashtar;RO;;;;6659;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5286;EU.2225.47;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Univerzita Malek Ashtar;SK;;;;6660;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5286;EU.2225.47;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Univerza za obrambno tehnologijo Malek Ashtar;SL;;;;6661;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5286;EU.2225.47;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Università Malek Ashtar;IT;;;;8058;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5286;EU.2225.47;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Corner of Imam Ali Highway and Babaei Highway;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1454;EN;;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5287;EU.2226.12;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Mechanic Industries Group;;;;;6643;EN;Took part in the production of components for the ballistics programme.;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5287;EU.2226.12;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Skupina strojního průmyslu;CS;;;;6666;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5287;EU.2226.12;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Grupp ta' Industriji Mekkaniċi;HU;;;;6686;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5287;EU.2226.12;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Grupo das Indústrias Mecânicas;PT;;;;6696;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5287;EU.2226.12;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Skupina mechanického priemyslu;SK;;;;6702;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5287;EU.2226.12;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Skupina Mechanic Industries Group;SL;;;;6708;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5287;EU.2226.12;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Sanaye Mechanic;;;;;131098;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5287;EU.2226.12;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Mechanical Industries Group;;;;;131099;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5287;EU.2226.12;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Mechanical Industries Complex;;;;;131100;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5287;EU.2226.12;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Mechanic Industries Organisation;;;;;131101;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;MODAFL;;;;;6645;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ministerium für Verteidigung und Logistik der Streitkräfte;DE;;;;6670;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ministère de la défense et du soutien logistique aux forces armées;FR;;;;6674;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ministero della difesa e del supporto logistico delle forze armate;IT;;;;6677;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ministerstvo obrany a logistiky ozbrojených síl;SK;;;;6703;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ministry Of Defense And Support For Armed Forces Logistics;;;;;12490;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ministry Of Defense For Armed Forces Logistics;;;;;12491;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;MODSAF;;;;;12492;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;ministère de la défense pour la logistique des forces armées;FR;;;;12517;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ministerium für Verteidigung und Unterstützung für die Logistik der Streitkräfte;DE;;;;12518;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ministerio de Defensa y Logística de las Fuerzas Armadas;ES;;;;12519;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ministerio de Defensa para la Logística de las Fuerzas Armadas;ES;;;;12520;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ministério da Defesa e Apoio à Logística das Forças Armadas;PT;;;;12524;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ministério da Defesa para a Logística das Forças Armadas;PT;;;;12525;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ministrstvo za obrambo in podporo logistiki oboroženih sil;SL;;;;12526;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ministerstvo obrany a podpory pre logistiku ozbrojených síl;SK;;;;12527;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ministerstvo obrany a podpory pro logistiku ozbrojených sil;CS;;;;12528;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Gynybos ir ginkluotųjų pajėgtų logistinės paramos ministerija;LT;;;;12529;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Gynybos ministerija ginkluotųjų pajėgų logistikai;LT;;;;12530;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Aizsardzības un bruņoto spēku loģistikas atbalsta ministrija;LV;;;;12531;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5288;EU.2091.70;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Abbas Abad District, Tehran;West side of Dabestan Street;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1197;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Ministry of Defence Logistics Export;;;;;6646;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;MODLEX;;;;;6647;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Министерство по въпросите на износа на отбранителна логистика;BG;;;;6663;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Exportaciones Logísticas del Ministerio de Defensa;ES;;;;6665;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Ministerstvo obrany, útvar logistiky a vývozu;CS;;;;6668;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Ministerium für die Ausfuhr von Verteidigungslogistik;DE;;;;6671;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Ministère de l'exportation de logistique de la défense;FR;;;;6675;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Servizio esportazioni del MODAFL;IT;;;;6678;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Aizsardzības ministrijas loģistikas eksports;LV;;;;6681;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Gynybos logistikos eksporto ministerija;LT;;;;6683;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Ministeru ta' l-Esportazzjoni tal-Loġistika għad-Difiża;MT;;;;6688;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Ministerstwo obrony logistyka eksportu;PL;;;;6694;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Centro de Exportações do Ministério da Defesa;PT;;;;6698;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Ministerstvo pre vývoz obrannej logistiky;SK;;;;6704;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Ministrstvo za obrambo – logistika, izvoz;SL;;;;6710;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Puolustusministeriön logistiikkavienti;FI;;;;6712;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Износ на логистика към Министерство на отбраната;BG;;;;8059;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Forsvarministeriets eksportafdeling;DA;;;;8060;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Departamento de Exportaciones Logísticas del Ministerio de Defensa;ES;;;;8061;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Kaitselogistika ekspordi ministeerium;ET;;;;8062;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;a védelmi célú logisztikáért és exportért felelős minisztérium;HU;;;;8063;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Ministero dell'esportazione della logistica della difesa;IT;;;;8064;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Il-Ministeru tal-Esportazzjoni tal-Loġistika tad-Difiża;MT;;;;8065;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Exportný subjekt Ministerstva obrany a logistiky ozbrojených síl;SK;;;;8066;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Ministry of Defense Logistics Export;;;;;8072;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;P.O. Box 16315-189;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1198;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5289;EU.2120.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;located on the west side of Dabestan Street, Abbas Abad District;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1455;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5290;EU.2121.28;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;3M Mizan Machinery Manufacturing;;;;;6648;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5290;EU.2121.28;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Manifattura ta' Makkinarju 3M Mizan;MT;;;;6689;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5290;EU.2121.28;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Strojárne 3M Mizan;SK;;;;6705;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5290;EU.2121.28;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;3MG;;;;;8067;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5290;EU.2121.28;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Mizan Machinery Manufacturing;;;;;8073;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5290;EU.2121.28;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;P.O. Box 16595-365;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1456;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5291;EU.2153.58;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;State Purchasing Organisation;;;;;6649;EN;The SPO appears to facilitate the import of whole weapons. It appears to be a subsidiary of MODAFL.;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5291;EU.2153.58;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;SPO;;;;;6650;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5291;EU.2153.58;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Státní nákupní organizace;CS;;;;6669;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5291;EU.2153.58;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Κρατικός οργανισμός αγορών;EL;;;;6673;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5291;EU.2153.58;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Organisation des achats publics;FR;;;;6676;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5291;EU.2153.58;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Organizzazione per le acquisizioni dello stato;IT;;;;6679;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5291;EU.2153.58;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Organizzazzjoni ta' Akkwist Statali;MT;;;;6692;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5291;EU.2153.58;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Organização de Aquisições do Estado;PT;;;;6700;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5291;EU.2153.58;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Organizácia štátneho nákupu;SK;;;;6707;EN;;amendment;commission;2008-06-24;2008-06-24;2008/475/EC (OJ L163);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:163:0029:0033:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5291;EU.2153.58;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;State Purchasing Organization;;;;;131105;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5291;EU.2153.58;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;State Purchasing Office;;;;;131106;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5292;EU.2154.23;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;Deghdegh;Ahmed;;Ahmed Deghdegh;;;;;6713;EN;;amendment;commission;2008-07-17;2008-07-16;678/2008 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:189:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5292;EU.2154.23;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;Abd El Illah;;;;;6714;EN;;amendment;commission;2008-07-17;2008-07-16;678/2008 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:189:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5292;EU.2154.23;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;Abdellillah;;;;;16846;EN;;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5292;EU.2154.23;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;Abdellah Ahmed;;;;;16847;EN;;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5292;EU.2154.23;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;Said;;;;;16848;EN;;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5292;EU.2154.23;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-01-17;17;1;1967;;;NO;GREGORIAN;;;;Anser, Wilaya (province) of Jijel;DZ;ALGERIA;1071;EN;;amendment;commission;2008-07-17;2008-07-16;678/2008 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:189:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5292;EU.2154.23;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;523;EN;;amendment;commission;2008-07-17;2008-07-16;678/2008 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:189:0023:0024:EN:PDF +28/10/2022;5293;EU.2167.16;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;Djouadi;Yahia;;Yahia Djouadi;;;;;6715;EN;;amendment;commission;2008-07-17;2008-07-16;678/2008 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:189:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5293;EU.2167.16;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;Yahia Abou Ammar;;;;;6716;EN;;amendment;commission;2008-07-17;2008-07-16;678/2008 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:189:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5293;EU.2167.16;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;Abou Ala;;;;;6717;EN;;amendment;commission;2008-07-17;2008-07-16;678/2008 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:189:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5293;EU.2167.16;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-01-01;1;1;1967;;;NO;GREGORIAN;;;;M’Hamid, Wilaya (province) of Sidi Bel Abbes;DZ;ALGERIA;1072;EN;;amendment;commission;2008-07-17;2008-07-16;678/2008 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:189:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5293;EU.2167.16;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;524;EN;;amendment;commission;2008-07-17;2008-07-16;678/2008 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:189:0023:0024:EN:PDF +28/10/2022;5294;EU.3342.23;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;Gasmi;Salah;Eddine;Salah Eddine Gasmi;;;;;6718;EN;;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5294;EU.3342.23;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;Abou Mohamed Salah;;;;;6719;EN;;amendment;commission;2008-07-17;2008-07-16;678/2008 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:189:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5294;EU.3342.23;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;Bounouadher;;;;;6720;EN;;amendment;commission;2008-07-17;2008-07-16;678/2008 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:189:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5294;EU.3342.23;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;DZ;ALGERIA;2453;EN;;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5294;EU.3342.23;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-04-13;13;4;1971;;;NO;GREGORIAN;;;;Zeribet El Oued, Wilaya (province) of Biskra;DZ;ALGERIA;1073;EN;;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5294;EU.3342.23;;;;;P;person;amendment;commission;2016-03-02;2016-03-03;2016/294 (OJ L55);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_055_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;525;EN;;amendment;commission;2008-07-17;2008-07-16;678/2008 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:189:0023:0024:EN:PDF +28/10/2022;5295;EU.2026.82;;2008-07-03;;(Date of UN designation: 2008-07-03);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Amor Mohamed Ghedeir;;;;;6721;EN;"(a) Mother's name is Benarouba Bachira; (b) Father's name is Mabrouk. Other information: Reportedly deceased as of 24 February 2013.";amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5295;EU.2026.82;;2008-07-03;;(Date of UN designation: 2008-07-03);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Abdelhamid Abou Zeid;;;;;6722;EN;;amendment;commission;2008-07-17;2008-07-16;678/2008 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:189:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5295;EU.2026.82;;2008-07-03;;(Date of UN designation: 2008-07-03);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Youcef Adel;;;;;6723;EN;;amendment;commission;2008-07-17;2008-07-16;678/2008 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:189:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5295;EU.2026.82;;2008-07-03;;(Date of UN designation: 2008-07-03);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Abou Abdellah;;;;;6724;EN;;amendment;commission;2008-07-17;2008-07-16;678/2008 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:189:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5295;EU.2026.82;;2008-07-03;;(Date of UN designation: 2008-07-03);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;Hammadou;Abid;;Abid Hammadou;;;;;16353;EN;;amendment;commission;2012-07-06;2012-07-05;598/2012 (OJ L176);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:176:0059:0061:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5295;EU.2026.82;;2008-07-03;;(Date of UN designation: 2008-07-03);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;YES;GREGORIAN;;;;Deb-Deb, Amenas, Wilaya (province) of Illizi;DZ;ALGERIA;1074;EN;;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5295;EU.2026.82;;2008-07-03;;(Date of UN designation: 2008-07-03);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-12-12;12;12;1965;;;NO;GREGORIAN;;;;Touggourt, Wilaya (province) of Ouargla;DZ;ALGERIA;119885;EN;;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5295;EU.2026.82;;2008-07-03;;(Date of UN designation: 2008-07-03);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;526;EN;;amendment;commission;2008-07-17;2008-07-16;678/2008 (OJ L189);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:189:0023:0024:EN:PDF +28/10/2022;5352;EU.2257.77;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;El Habhab;Redouane;;Redouane El Habhab;;M;;;6854;EN;;amendment;commission;2008-12-23;2008-12-22;1330/2008 (OJ L345);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:345:0060:0061:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5352;EU.2257.77;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;Abdelrahman;;M;;;6855;EN;;amendment;commission;2008-12-23;2008-12-22;1330/2008 (OJ L345);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:345:0060:0061:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5352;EU.2257.77;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;;;;;;;;Kiel;58 Iltisstrasse;;24143;;;NO;;DE;GERMANY;1214;EN;;amendment;commission;2008-12-23;2008-12-22;1330/2008 (OJ L345);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:345:0060:0061:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5352;EU.2257.77;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-12-20;20;12;1969;;;NO;GREGORIAN;;;;Casablanca;MA;MOROCCO;1079;EN;;amendment;commission;2008-12-23;2008-12-22;1330/2008 (OJ L345);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:345:0060:0061:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5352;EU.2257.77;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1005552350 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;DE;;306;EN;;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;; +28/10/2022;5352;EU.2257.77;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1007850441 (id-National identification card) [known to be expired](identity card issued on 2001-03-27 by municipality of kiel, germany, expired on 2011-03-26);NO;YES;NO;NO;NO;;;;;;;id;National identification card;;DE;;307;EN;identity card issued on 2001-03-27 by municipality of kiel, germany, expired on 2011-03-26;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;; +28/10/2022;5352;EU.2257.77;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DE;;531;EN;;amendment;commission;2008-12-23;2008-12-22;1330/2008 (OJ L345);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:345:0060:0061:EN:PDF +28/10/2022;5352;EU.2257.77;;;;;P;person;amendment;commission;2012-12-04;2012-12-03;1142/2012 (OJ L332);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0012:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA;;563;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF +28/10/2022;5357;EU.2158.77;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;Yilmaz;Adem;;Adem Yilmaz;;M;;;6874;EN;;amendment;commission;2008-12-23;2008-12-22;1330/2008 (OJ L345);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:345:0060:0061:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5357;EU.2158.77;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Talha;;;;;6875;EN;;amendment;commission;2008-12-23;2008-12-22;1330/2008 (OJ L345);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:345:0060:0061:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5357;EU.2158.77;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;Langen;133 Südliche Ringstrasse;;63225;;;NO;;DE;GERMANY;1220;EN;;amendment;commission;2008-12-23;2008-12-22;1330/2008 (OJ L345);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:345:0060:0061:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5357;EU.2158.77;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-11-04;4;11;1978;;;NO;GREGORIAN;;;;Bayburt;TR;TURKEY;1087;EN;;amendment;commission;2008-12-23;2008-12-22;1330/2008 (OJ L345);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:345:0060:0061:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5357;EU.2158.77;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TR- P 614166 (passport-National passport) [known to be expired](passport issued by the turkish consulate general in frankfurt/ main on 2006-03-22, expired on 2009-09-15);NO;YES;NO;NO;NO;;;;;;;passport;National passport;;TR;;314;EN;passport issued by the turkish consulate general in frankfurt/ main on 2006-03-22, expired on 2009-09-15;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;; +28/10/2022;5357;EU.2158.77;;;;;P;person;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TR;;536;EN;;amendment;commission;2008-12-23;2008-12-22;1330/2008 (OJ L345);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:345:0060:0061:EN:PDF +28/10/2022;5416;EU.2168.78;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;Ashraf;Haji;Muhammad;Haji Muhammad Ashraf;;;;;6976;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5416;EU.2168.78;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;Ashraf;Haji;M.;Haji M. Ashraf;;;;;6977;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5416;EU.2168.78;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;Muhammad Ashraf Manshah;;;;;17552;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5416;EU.2168.78;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;Muhammad Ashraf Munsha;;;;;17553;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5416;EU.2168.78;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-03-01;1;3;1965;;;NO;GREGORIAN;;;;Faisalabad;PK;PAKISTAN;1111;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5416;EU.2168.78;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955;;;NO;GREGORIAN;;;;Faisalabad;PK;PAKISTAN;2023;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5416;EU.2168.78;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AT0712501 (passport-National passport) [known to be expired](passport issued on 12.3.2008, expired 11.3.2013);NO;YES;NO;NO;NO;;;;;;;passport;National passport;;PK;;860;EN;passport issued on 12.3.2008, expired 11.3.2013;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;; +28/10/2022;5416;EU.2168.78;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A-374184 (passport-National passport) ((passport));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;PK;;861;EN;(passport);amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;; +28/10/2022;5416;EU.2168.78;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6110125312507 (id-National identification card) ((national identification no. ));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;PK;;862;EN;(national identification no. );amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;; +28/10/2022;5416;EU.2168.78;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24492025390 (id-National identification card) ((national identification no. ));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;PK;;863;EN;(national identification no. );amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;; +28/10/2022;5416;EU.2168.78;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;538;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF +28/10/2022;5417;EU.2169.43;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;Bahaziq;Mahmoud;Mohammad Ahmed;Mahmoud Mohammad Ahmed Bahaziq;;;;;6978;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5417;EU.2169.43;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;Bahaziq;Mahmoud;-;Mahmoud - Bahaziq;;;;;6979;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5417;EU.2169.43;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;Abu Abd al-Aziz;EN;;;;6980;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5417;EU.2169.43;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;Abu Abdul Aziz;;;;;6981;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5417;EU.2169.43;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;Shaykh Sahib;;;;;6982;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5417;EU.2169.43;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;Abu Abd al-‘Aziz;;;;;7000;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5417;EU.2169.43;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;Abu Abd al-Aziz;LV;;;;7001;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5417;EU.2169.43;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1943-08-17;17;8;1943;;;NO;GREGORIAN;;;;;IN;INDIA;1112;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5417;EU.2169.43;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1943;;;NO;GREGORIAN;;;;;IN;INDIA;1113;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5417;EU.2169.43;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944;;;NO;GREGORIAN;;;;;IN;INDIA;1114;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5417;EU.2169.43;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4-6032-0048-1 (id-National identification card) ((national identification no));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;SA;;330;EN;(national identification no);amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;5417;EU.2169.43;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SA;;539;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF +28/10/2022;5418;EU.2170.68;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Address in Rinala Khurd is previous location. Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;Lakhvi;Zaki-ur-Rehman;;Zaki-ur-Rehman Lakhvi;;;;;6983;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5418;EU.2170.68;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Address in Rinala Khurd is previous location. Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;Lakvi;Zakir;Rehman;Zakir Rehman Lakvi;;;;;6984;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5418;EU.2170.68;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Address in Rinala Khurd is previous location. Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;Lakvi;Zaki;Ur-Rehman;Zaki Ur-Rehman Lakvi;;;;;6985;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5418;EU.2170.68;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Address in Rinala Khurd is previous location. Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;Kaki Ur-Rehman;;;;;6986;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5418;EU.2170.68;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Address in Rinala Khurd is previous location. Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;Zakir Rehman;;;;;6987;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5418;EU.2170.68;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Address in Rinala Khurd is previous location. Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;Abu Waheed Irshad Ahmad Arshad;;;;;6988;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5418;EU.2170.68;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Address in Rinala Khurd is previous location. Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;Chachajee;;;;;6989;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5418;EU.2170.68;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Address in Rinala Khurd is previous location. Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;Islamabad (Tehsil and District);Barahkoh, P.O. DO;;;;;NO;;PK;PAKISTAN;1291;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5418;EU.2170.68;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Address in Rinala Khurd is previous location. Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;Rinala Khurd, Tehsil Rinala Khurd, District Okara;Chak No. 18/IL;;;;;NO;;PK;PAKISTAN;1292;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5418;EU.2170.68;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Address in Rinala Khurd is previous location. Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-12-30;30;12;1960;;;NO;GREGORIAN;;;;Okara;PK;PAKISTAN;1115;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5418;EU.2170.68;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Address in Rinala Khurd is previous location. Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61101-9618232-1 (id-National identification card) ((national identification no));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;PK;;331;EN;(national identification no);amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;5418;EU.2170.68;;2008-12-10;;(Date of UN designation: 2008-12-10)\n(Address in Rinala Khurd is previous location. Date of designation referred to in Article 2a(4)(b): 10.12.2008.);P;person;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;540;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF +28/10/2022;5419;EU.2221.90;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;Saeed;Hafiz;Muhammad;Hafiz Muhammad Saeed;;;;;6990;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5419;EU.2221.90;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Hafiz Muhammad;;;;;6991;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5419;EU.2221.90;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;Saeed;Hafiz;;Hafiz Saeed;;;;;6992;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5419;EU.2221.90;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Hafiz Mohammad Sahib;;;;;6993;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5419;EU.2221.90;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;Saeed;Hafez;Mohammad;Hafez Mohammad Saeed;;;;;6994;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5419;EU.2221.90;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;Sayeed;Hafiz;Mohammad;Hafiz Mohammad Sayeed;;;;;6995;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5419;EU.2221.90;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;Sayid;Hafiz;Mohammad;Hafiz Mohammad Sayid;;;;;6996;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5419;EU.2221.90;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;Syeed;Tata;Mohammad;Tata Mohammad Syeed;;;;;6997;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5419;EU.2221.90;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;Sayed;Mohammad;;Mohammad Sayed;;;;;6998;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5419;EU.2221.90;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;Hafiz Ji;;;;;6999;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5419;EU.2221.90;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;Saeed;Muhammad;;Muhammad Saeed;;;;;7478;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5419;EU.2221.90;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;Lahore, Tehsil, Lahore City, Lahore District;116E Mohalla Johar;;;;;NO;;PK;PAKISTAN;1293;EN;;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5419;EU.2221.90;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-06-05;5;6;1950;;;NO;GREGORIAN;;;;Sargodha, Punjab;PK;PAKISTAN;1116;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5419;EU.2221.90;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"3520025509842-7 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;PK;;332;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;5419;EU.2221.90;;;;;P;person;amendment;commission;2009-11-18;2009-11-16;1102/2009 (OJ L303);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:303:0039:0059:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;541;EN;;amendment;commission;2009-03-07;2009-03-06;184/2009 (OJ L63);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:063:0011:0012:EN:PDF +28/10/2022;5420;EU.3732.76;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Mbarushimana;Callixte;;Callixte Mbarushimana;;M;;FDLR Executive Secretary;7005;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5420;EU.3732.76;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-07-24;24;7;1963;;;NO;GREGORIAN;;;;Ndusu/Ruhengeri, Northern Province;RW;RWANDA;1119;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5420;EU.3732.76;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Null);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RW;;544;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF +28/10/2022;5421;EU.3638.95;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Pacifique Ntawunguka was the commander of the First Division of FOCA);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Ntawunguka;Pacifique;;Pacifique Ntawunguka;;M;;a) FDLR-FOCA “SONOKI” Sector Commander, b) FDLR-FOCA Brigadier General;7007;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5421;EU.3638.95;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Pacifique Ntawunguka was the commander of the First Division of FOCA);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Colonel Omega;;;;FDLR-FOCA Brigadier General;7008;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5421;EU.3638.95;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Pacifique Ntawunguka was the commander of the First Division of FOCA);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Nzeri;;;;;7009;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5421;EU.3638.95;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Pacifique Ntawunguka was the commander of the First Division of FOCA);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Israel;;;;;7010;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5421;EU.3638.95;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Pacifique Ntawunguka was the commander of the First Division of FOCA);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Ntawungula;Pacifique;;Pacifique Ntawungula;;;;;7011;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5421;EU.3638.95;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Pacifique Ntawunguka was the commander of the First Division of FOCA);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;полковник Omega;BG;;;;7018;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5421;EU.3638.95;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Pacifique Ntawunguka was the commander of the First Division of FOCA);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Kolonel Omega;NL;;;;7019;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5421;EU.3638.95;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Pacifique Ntawunguka was the commander of the First Division of FOCA);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;pulkvedis Omega;LV;;;;7020;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5421;EU.3638.95;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Pacifique Ntawunguka was the commander of the First Division of FOCA);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;plukovník Omega;SK;;;;8431;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5421;EU.3638.95;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Pacifique Ntawunguka was the commander of the First Division of FOCA);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;Rutshuru Territory, North Kivu;NO;(Address: Rutshuru Territory, North Kivu, Democratic Republic of the Congo (As of June 2016).);CD;CONGO, Democratic Republic of (was Zaire);110785;EN;Address: Rutshuru Territory, North Kivu, Democratic Republic of the Congo (As of June 2016).;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5421;EU.3638.95;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Pacifique Ntawunguka was the commander of the First Division of FOCA);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-01-01;1;1;1964;;;NO;GREGORIAN;;;;Gaseke, Gisenyi Province;RW;RWANDA;1120;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5421;EU.3638.95;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Pacifique Ntawunguka was the commander of the First Division of FOCA);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;YES;GREGORIAN;;;;;RW;RWANDA;1124;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5421;EU.3638.95;;2009-03-03;;(Date of UN designation: 2009-03-03)\n(Pacifique Ntawunguka was the commander of the First Division of FOCA);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RW;;545;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF +28/10/2022;5422;EU.3640.85;;2009-03-03;;(Date of UN designation: 2009-03-03);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Nzeyimana;Stanislas;;Stanislas Nzeyimana;;M;;Former FDLR-FOCA Deputy Commander;7012;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5422;EU.3640.85;;2009-03-03;;(Date of UN designation: 2009-03-03);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Bigaruka Izabayo;Deogratias;;Deogratias Bigaruka Izabayo;;;;Former FDLR-FOCA Deputy Commander;7013;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5422;EU.3640.85;;2009-03-03;;(Date of UN designation: 2009-03-03);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Bigaruka;;;;;7014;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5422;EU.3640.85;;2009-03-03;;(Date of UN designation: 2009-03-03);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Bigurura;;;;;7015;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5422;EU.3640.85;;2009-03-03;;(Date of UN designation: 2009-03-03);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Izabayo Deo;;;;;7016;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5422;EU.3640.85;;2009-03-03;;(Date of UN designation: 2009-03-03);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Jules Mateso Mlamba;;;;;8389;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5422;EU.3640.85;;2009-03-03;;(Date of UN designation: 2009-03-03);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-01-01;1;1;1966;;;NO;GREGORIAN;;;;Mugusa (Butare);RW;RWANDA;1121;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5422;EU.3640.85;;2009-03-03;;(Date of UN designation: 2009-03-03);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;YES;GREGORIAN;;;;Mugusa (Butare);RW;RWANDA;1122;EN;Approximately 1967;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5422;EU.3640.85;;2009-03-03;;(Date of UN designation: 2009-03-03);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-08-28;28;8;1966;;;NO;GREGORIAN;;;;Mugusa (Butare);RW;RWANDA;1123;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5422;EU.3640.85;;2009-03-03;;(Date of UN designation: 2009-03-03);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RW;;543;EN;;amendment;commission;2009-03-21;2009-03-21;242/2009 (OJ L75);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:075:0008:0010:EN:PDF +28/10/2022;5463;EU.4011.64;;2009-07-16;;(Date of UN designation: 2009-07-16);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Han;Yu-ro;;Yu-ro Han;;;;Director of Korea Ryongaksan General Trading Corporation;7105;EN;;amendment;commission;2009-07-31;2009-07-31;689/2009 (OJ L199);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:199:0003:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5468;EU.4009.74;;2009-07-16;;(Date of UN designation: 2009-07-16);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Hwang;Sok-hwa;;Sok-hwa Hwang;;;;Director of the General Bureau of Atomic Energy (GBAE);7111;EN;;amendment;commission;2009-07-31;2009-07-31;689/2009 (OJ L199);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:199:0003:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5469;EU.4010.2;;2009-07-16;;(Date of UN designation: 2009-07-16);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Ri;Hong-sop;;Hong-sop Ri;;;;Former director, Yongbyon Nuclear Research Centre, and Head of Nuclear Weapons Institute.;7136;EN;Former director, Yongbyon Nuclear Research Centre, \nand Head of Nuclear Weapons Institute.;amendment;council;2018-07-18;2018-07-18;2018/1009 (OJ L181);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1009&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5469;EU.4010.2;;2009-07-16;;(Date of UN designation: 2009-07-16);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;143125;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5469;EU.4010.2;;2009-07-16;;(Date of UN designation: 2009-07-16);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1940;;;NO;GREGORIAN;;;;;00;UNKNOWN;1158;EN;;amendment;commission;2009-07-31;2009-07-31;689/2009 (OJ L199);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:199:0003:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5469;EU.4010.2;;2009-07-16;;(Date of UN designation: 2009-07-16);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;143126;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503 +28/10/2022;5474;EU.4008.12;;2009-07-16;;(Date of UN designation: 2009-07-16);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Ri;Je-son;;Je-son Ri;;;;Minister of Atomic Energy Industry (since April 2014).Former Director of the General Bureau of Atomic Energy (GBAE).;7135;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5474;EU.4008.12;;2009-07-16;;(Date of UN designation: 2009-07-16);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Ri;Che son;;Che son Ri;;;;;7220;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5474;EU.4008.12;;2009-07-16;;(Date of UN designation: 2009-07-16);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1938;;;NO;GREGORIAN;;;;;00;UNKNOWN;1159;EN;;amendment;commission;2009-07-31;2009-07-31;689/2009 (OJ L199);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:199:0003:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5475;EU.4097.56;;2009-07-16;;(Date of UN designation: 2009-07-16);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Yun;Ho-jin;;Ho-jin Yun;;;;Director of Namchongang Trading Corporation;7134;EN;;amendment;commission;2009-07-31;2009-07-31;689/2009 (OJ L199);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:199:0003:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5475;EU.4097.56;;2009-07-16;;(Date of UN designation: 2009-07-16);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Yun;Ho-chin;;Ho-chin Yun;;;;;7221;EN;;amendment;commission;2009-07-31;2009-07-31;689/2009 (OJ L199);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:199:0003:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5475;EU.4097.56;;2009-07-16;;(Date of UN designation: 2009-07-16);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;143123;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5475;EU.4097.56;;2009-07-16;;(Date of UN designation: 2009-07-16);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944-10-13;13;10;1944;;;NO;GREGORIAN;;;;;00;UNKNOWN;1160;EN;;amendment;commission;2009-07-31;2009-07-31;689/2009 (OJ L199);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:199:0003:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5475;EU.4097.56;;2009-07-16;;(Date of UN designation: 2009-07-16);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;143124;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503 +28/10/2022;5482;EU.4204.82;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;General Bureau of Atomic Energy;;;;The GBAE is responsible for the DPRK's nuclear programme.;7133;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5482;EU.4204.82;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;GBAE;;;;;7222;EN;;amendment;commission;2009-07-31;2009-07-31;689/2009 (OJ L199);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:199:0003:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5482;EU.4204.82;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;General Department of Atomic Energy;;;;;7223;EN;;amendment;commission;2009-07-31;2009-07-31;689/2009 (OJ L199);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:199:0003:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5482;EU.4204.82;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;GDAE;;;;;7224;EN;;amendment;commission;2009-07-31;2009-07-31;689/2009 (OJ L199);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:199:0003:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5482;EU.4204.82;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;Haeudong, Pyongchen District;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;1310;EN;;amendment;commission;2009-07-31;2009-07-31;689/2009 (OJ L199);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:199:0003:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5492;EU.4187.20;;2009-04-24;;(Date of UN designation: 2009-04-24);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Mining Development Trading Corporation;;;;Primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons.;7138;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5492;EU.4187.20;;2009-04-24;;(Date of UN designation: 2009-04-24);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;CHANGGWANG SINYONG CORPORATION;;;;;7139;EN;;amendment;commission;2009-05-13;2009-05-13;389/2009 (OJ L118);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:118:0078:0079:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5492;EU.4187.20;;2009-04-24;;(Date of UN designation: 2009-04-24);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;EXTERNAL TECHNOLOGY GENERAL CORPORATION;;;;;7140;EN;;amendment;commission;2009-05-13;2009-05-13;389/2009 (OJ L118);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:118:0078:0079:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5492;EU.4187.20;;2009-04-24;;(Date of UN designation: 2009-04-24);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;DPRKN MINING DEVELOPMENT TRADING COOPERATION;;;;;7141;EN;;amendment;commission;2009-05-13;2009-05-13;389/2009 (OJ L118);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:118:0078:0079:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5492;EU.4187.20;;2009-04-24;;(Date of UN designation: 2009-04-24);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;‘KOMID’;;;;;7142;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5492;EU.4187.20;;2009-04-24;;(Date of UN designation: 2009-04-24);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;Central District;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;1302;EN;;amendment;commission;2009-05-13;2009-05-13;389/2009 (OJ L118);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:118:0078:0079:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5493;EU.4188.82;;2009-04-24;;(Date of UN designation: 2009-04-24);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Ryonbong General Corporation;;;;Defence conglomerate specialising in acquisition for DPRK defence industries and support to that country's military-related sales.;7143;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5493;EU.4188.82;;2009-04-24;;(Date of UN designation: 2009-04-24);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;KOREA YONBONG GENERAL CORPORATION;;;;;7144;EN;;amendment;commission;2009-05-13;2009-05-13;389/2009 (OJ L118);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:118:0078:0079:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5493;EU.4188.82;;2009-04-24;;(Date of UN designation: 2009-04-24);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;LYON-GAKSAN GENERAL TRADING CORPORATION;;;;;7145;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5493;EU.4188.82;;2009-04-24;;(Date of UN designation: 2009-04-24);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;Pot’onggang District;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;1303;EN;;amendment;commission;2009-05-13;2009-05-13;389/2009 (OJ L118);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:118:0078:0079:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5493;EU.4188.82;;2009-04-24;;(Date of UN designation: 2009-04-24);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;Rakwon-dong, Pothonggang District;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;1304;EN;;amendment;commission;2009-05-13;2009-05-13;389/2009 (OJ L118);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:118:0078:0079:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5494;EU.4189.47;;2009-04-24;;(Date of UN designation: 2009-04-24);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Tanchon Commercial Bank;;;;Main DPRK financial entity for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons.;7146;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5494;EU.4189.47;;2009-04-24;;(Date of UN designation: 2009-04-24);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;CHANGGWANG CREDIT BANK;;;;;7147;EN;;amendment;commission;2009-05-13;2009-05-13;389/2009 (OJ L118);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:118:0078:0079:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5494;EU.4189.47;;2009-04-24;;(Date of UN designation: 2009-04-24);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;KOREA CHANGGWANG CREDIT BANK;;;;;7148;EN;;amendment;commission;2009-05-13;2009-05-13;389/2009 (OJ L118);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:118:0078:0079:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5494;EU.4189.47;;2009-04-24;;(Date of UN designation: 2009-04-24);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;1 Saemul - Dong Pyongchon District;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;1305;EN;;amendment;commission;2009-05-13;2009-05-13;389/2009 (OJ L118);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:118:0078:0079:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5496;EU.4202.55;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Hong Kong Electronics;;;;Owned or controlled by, or acts or purports to act for or on behalf of Tanchon Commercial Bank and KOMID.;7217;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5496;EU.4202.55;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;HONG KONG ELECTRONICS KISH CO;;;;;7225;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5496;EU.4202.55;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Kish Island;Sanaee St.;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1311;EN;;amendment;commission;2009-07-31;2009-07-31;689/2009 (OJ L199);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:199:0003:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5497;EU.4203.20;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Hyoksin Trading Corporation;;;;A DPRK company based in Pyongyang that is subordinate to Korea Ryonbong General Corporation.;7197;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5497;EU.4203.20;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;KOREA HYOKSIN EXPORT AND IMPORT CORPORATION;;;;;7198;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5497;EU.4203.20;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;Rakwon-dong, Pothonggang District;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;1312;EN;;amendment;commission;2009-07-31;2009-07-31;689/2009 (OJ L199);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:199:0003:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5499;EU.2128.74;;2009-06-29;;(Date of UN designation: 2009-06-29)\n(In detention as of June 2009. Date of designation referred to in Article 2a(4)(b): 29.6.2009.);P;person;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;Mujahid;Mohammed;Yahya;Mohammed Yahya Mujahid;;;;;7207;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5499;EU.2128.74;;2009-06-29;;(Date of UN designation: 2009-06-29)\n(In detention as of June 2009. Date of designation referred to in Article 2a(4)(b): 29.6.2009.);P;person;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;Mohammad Yahya Aziz;;;;;7219;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5499;EU.2128.74;;2009-06-29;;(Date of UN designation: 2009-06-29)\n(In detention as of June 2009. Date of designation referred to in Article 2a(4)(b): 29.6.2009.);P;person;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-03-12;12;3;1961;;;NO;GREGORIAN;;;;Lahore, Punjab Province;PK;PAKISTAN;1153;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5499;EU.2128.74;;2009-06-29;;(Date of UN designation: 2009-06-29)\n(In detention as of June 2009. Date of designation referred to in Article 2a(4)(b): 29.6.2009.);P;person;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35404-1577309-9 (id-National identification card) ((pakistani national identification number));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;PK;;350;EN;(pakistani national identification number);amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;; +28/10/2022;5499;EU.2128.74;;2009-06-29;;(Date of UN designation: 2009-06-29)\n(In detention as of June 2009. Date of designation referred to in Article 2a(4)(b): 29.6.2009.);P;person;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;552;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF +28/10/2022;5500;EU.2037.48;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;Al-Peshawari;Fazeel-A-Tul;Shaykh Abu Mohammed Ameen;Fazeel-A-Tul Shaykh Abu Mohammed Ameen Al-Peshawari;;;;;7208;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5500;EU.2037.48;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;Shaykh Aminullah;;;;;7209;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5500;EU.2037.48;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;Sheik Aminullah;;;;;7210;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5500;EU.2037.48;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;Peshawari;Abu Mohammad;Aminullah;Abu Mohammad Aminullah Peshawari;;;;;7211;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5500;EU.2037.48;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;Bishawri;Abu Mohammad;Amin;Abu Mohammad Amin Bishawri;;;;;7212;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5500;EU.2037.48;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;Al- Bishauri;Abu Mohammad;Shaykh Aminullah;Abu Mohammad Shaykh Aminullah Al- Bishauri;;;;;7213;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5500;EU.2037.48;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;al-Peshawari;Shaykh;Abu Mohammed Ameen;Shaykh Abu Mohammed Ameen al-Peshawari;;;;;7214;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5500;EU.2037.48;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;Al-Peshawari;Shaykh;Aminullah;Shaykh Aminullah Al-Peshawari;;;;;7216;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5500;EU.2037.48;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;Peshawar;Ganj District;;;;;NO;;PK;PAKISTAN;1309;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5500;EU.2037.48;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;YES;GREGORIAN;;;;Shunkrai village, Sarkani District, Konar province;AF;AFGHANISTAN;1154;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5500;EU.2037.48;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;YES;GREGORIAN;;;;Shunkrai village, Sarkani District, Konar province;AF;AFGHANISTAN;1155;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5500;EU.2037.48;;;;;P;person;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;YES;GREGORIAN;;;;Shunkrai village, Sarkani District, Konar province;AF;AFGHANISTAN;1156;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5501;EU.4205.47;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Korean Tangun Trading Corporation;;;;Korea Tangun Trading Corporation is subordinate to DPRK's Second Academy of Natural Sciences and is primarily responsible for the procurement of commodities and technologies to support DPRK's defence research and development programmes.;7226;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5501;EU.4205.47;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Kore Kuryonggang Trading Corporation;;;;;143166;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5501;EU.4205.47;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Ryungsong Trading Corporation;;;;;143167;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5501;EU.4205.47;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Ryung Seng Trading Corporation;;;;;143168;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5501;EU.4205.47;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Ryungseng Trading Corporation;;;;;143169;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5501;EU.4205.47;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Kuryonggang Trading Corporation;;;;;143170;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5501;EU.4205.47;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;114054;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5502;EU.4190.72;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Namchongang Trading Corporation;;;;Namchongang is a North Korean trading company subordinate to the GBAE. Namchongang has been involved in the procurement of Japanese-origin vacuum pumps that were identified at a North Korean nuclear facility, as well as nuclear-related procurement associated with a German individual.;7227;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5502;EU.4190.72;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;NCG;;;;;7228;EN;Namchongang trading;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5502;EU.4190.72;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Namhung Trading Corporation;EN;;;;107997;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5502;EU.4190.72;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Korea Tearyonggang Trading Corporation;;;;;113146;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5502;EU.4190.72;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Korea Daeryonggang Trading Corporation;;;;;113147;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5502;EU.4190.72;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;NAM CHONG GAN TRADING CORPORATION;;;;;113148;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5502;EU.4190.72;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;NOMCHONGANG TRADING CO.;;;;;113149;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5502;EU.4190.72;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;NAM CHON GANG CORPORATION;;;;;113150;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5502;EU.4190.72;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;NAMCHONGANG TRADING;;;;;113151;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5502;EU.4190.72;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Chilgol, Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;107915;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5502;EU.4190.72;;2009-07-16;;(Date of UN designation: 2009-07-16);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Sengujadong 11-2/(or Kwangbok-dong), Mangyongdae District;;;;;NO;PHONE[+850-2-18111, 18222 (ext. 8573)]\nFAX[+850-2-381-4687]\n(Sengujadong 11-2/(or Kwangbok-dong), Mangyongdae District, Pyongyang, North Korea.\n\nTelephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687.);KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;113152;EN;Sengujadong 11-2/(or Kwangbok-dong), Mangyongdae District, Pyongyang, North Korea.\n\nTelephone numbers: +850-2-18111, 18222 (ext. 8573). Facsimile number: +850-2-381-4687.;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5522;EU.2200.26;;2021-08-05;;(Date of UN designation: 2021-08-05);P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;CAMARA;Moussa;Dadis;Moussa Dadis CAMARA;;M;Captain;Former military and head of the military junta of the CNDD (Conseil National pour la Democratie et le Developpement).;7484;EN;;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5522;EU.2200.26;;2021-08-05;;(Date of UN designation: 2021-08-05);P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;Ouagadougou;;;;;;NO;;BF;BURKINA FASO;131331;EN;;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5522;EU.2200.26;;2021-08-05;;(Date of UN designation: 2021-08-05);P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-01-01;1;1;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;1173;EN;;regulation;commission;2009-12-23;2009-12-22;1284/2009 (OJ L346);GIN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:346:0026:0038:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5522;EU.2200.26;;2021-08-05;;(Date of UN designation: 2021-08-05);P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-12-29;29;12;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;1174;EN;;regulation;commission;2009-12-23;2009-12-22;1284/2009 (OJ L346);GIN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:346:0026:0038:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5522;EU.2200.26;;2021-08-05;;(Date of UN designation: 2021-08-05);P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"R0001318 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;371;EN;;amendment;council;2018-10-26;2018-10-27;2018/1604 (OJ L268);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1604&from=EN;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida in the Arabian Peninsula;;;;;7486;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;AQAP;;;;;7487;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida of Jihad Organization in the Arabian Peninsula;;;;;7640;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Tanzim Qa'idat al-Jihad fi Jazirat al-Arabm;;;;;7641;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida Organization in the Arabian Peninsula;;;;;7642;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida in the South Arabian Peninsula;;;;;7643;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida in Yemen;;;;;7644;EN;;regulation;council;2002-05-29;2002-05-30;881/2002 (OJ L139);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2002:139:0009:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida dans la péninsule arabique;FR;;;;7645;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaid a de l’organisation du Djihad dans la péninsule arabique;FR;;;;7646;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida på Den Arabiske Halvø;DA;;;;7647;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida of Jihad Organization på Den Arabiske Halvø,;DA;;;;7648;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida στην Αραβική Χερσόνησο;EL;;;;7649;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida της οργάνωσης Jihad στην Αραβική Χερσόνησο;EL;;;;7650;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaeda en la península arábiga;ES;;;;7651;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qa‘ida van het Arabisch Schiereiland;NL;;;;7652;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qa‘ida van de Jihad-organisatie van het Arabisch Schiereiland;NL;;;;7653;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida fil-Peniżola Għarbija;MT;;;;7654;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida tal-Jihad Organization fil-Peniżola Għarbija,;MT;;;;7655;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Kaida na Półwyspie Arabskim;PL;;;;7656;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Organizacja dżihadu na Półwyspie arabskim Al-Kaida,;PL;;;;7657;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Kaida z Arabskega polotoka;SL;;;;7658;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Kaida organizacije Džihad z Arabskega polotoka,;SL;;;;7659;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida din Peninsula Arabia;RO;;;;7660;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida of Jihad Organization din Peninsula Arabia;RO;;;;7661;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;AQY;;;;;7662;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;AQPA;FR;;;;7663;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;organisation Al-Qaida dans la péninsule arabique;FR;;;;7664;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida dans la péninsule sud-arabique;FR;;;;7665;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida au Yémen;FR;;;;7666;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida Organization på Den Arabiske Halvø;DA;;;;7667;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida i den sydlige del af Den Arabiske Halvø;DA;;;;7668;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida i Yemen;DA;;;;7669;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;οργάνωση Al-Qaida στην Αραβική Χερσόνησο;EL;;;;7670;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida στην Νότια Αραβική Χερσόνησο;EL;;;;7671;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida στην Υεμένη;EL;;;;7672;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qa'ida-organisatie van het Arabisch Schiereiland;NL;;;;7673;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qa'ida van het zuidelijk Arabisch Schiereiland;NL;;;;7674;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qa'ida Jemen;NL;;;;7675;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida Organization fil-Peniżola Għarbija;MT;;;;7676;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida fil-Peniżola t'Isfel Għarbija;MT;;;;7677;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida fil-Jemen;MT;;;;7678;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Organizacja na Półwyspie Arabskim Al-Kaida;PL;;;;7679;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Kaida w południowej części Półwyspu Arabskiego;PL;;;;7680;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Kaida w Jemenie;PL;;;;7681;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;organizacija Al-Kaida z Arabskega polotoka;SL;;;;7682;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Kaida z južnega dela Arabskega polotoka;SL;;;;7683;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida iz Jemna;SL;;;;7684;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Organizația Al-Qaida din Peninsula Arabia;RO;;;;7685;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida din Peninsula Arabia de Sud;RO;;;;7686;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Al-Qaida din Yemen;RO;;;;7687;EN;;amendment;commission;2010-01-26;2010-01-25;70/2010 (OJ L20);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:020:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Ansar al-Shari’a;;;;;16466;EN;;amendment;commission;2012-10-12;2012-10-11;933/2012 (OJ L278);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:278:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;AAS;;;;;16467;EN;;amendment;commission;2012-10-12;2012-10-11;933/2012 (OJ L278);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:278:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;SA;SAUDI ARABIA;105952;EN;;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5523;EU.3415.74;;2010-01-19;;(Date of UN designation: 2010-01-19)\n(Location: Yemen or Saudi-Arabia (2004 — 2006).);E;enterprise;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;YE;YEMEN;105953;EN;;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;Al-Dari;Muthanna;Harith;Muthanna Harith Al-Dari;;;Doctor;;7494;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;Al Dari;Muthanna;;Muthanna Al Dari;;;Dr.;;7759;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;Al Dari;Muthana;Harith;Muthana Harith Al Dari;;;;;7760;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;Al-Dari;Muthanna;Harith Sulayman;Muthanna Harith Sulayman Al-Dari;;;;;7761;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;Al-Dhari;Muthanna;Harith Sulayman;Muthanna Harith Sulayman Al-Dhari;;;;;7762;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;Al-Dhari;Muthanna;Hareth;Muthanna Hareth Al-Dhari;;;;;7763;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;Al-Dhari;Muthana;Haris;Muthana Haris Al-Dhari;;;;;7764;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Doctor Muthanna Harith Sulayman Al Dari Al-Zawba’;;;;;7765;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Muthanna Harith Sulayman Al-Dari Al-Zobai;;;;;7766;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Muthanna Harith Sulayman Al-Dari al-Zawba’i;;;;;7767;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;al-Dari;Muthanna;Hareth;Muthanna Hareth al-Dari;;;;;7768;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;al-Dari;Muthana;Haris;Muthana Haris al-Dari;;;;;7769;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;al-Dari;Muthanna;;Muthanna al-Dari;;;Doctor;;7770;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Dr. Muthanna Harith al-Dari al-Zowbai;;;;;7771;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;Amman;;;;;;NO;;JO;JORDAN;1380;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;Khan Dari;;;;;;NO;;IQ;IRAQ;1381;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;Asas Village, Abu Ghurayb;;;;;;NO;;IQ;IRAQ;1382;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;EG;EGYPT;1383;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-06-16;16;6;1969;;;NO;GREGORIAN;;;;;IQ;IRAQ;1180;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"Ration card number 1729765 (other-Other identification number) ";NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;107259;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;; +28/10/2022;5529;EU.3298.47;;2010-03-25;;(Date of UN designation: 2010-03-25)\n(Mother's name: Heba Khamis Dari. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;578;EN;;amendment;commission;2010-04-07;2010-04-06;290/2010 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:087:0029:0030:EN:PDF +28/10/2022;5545;EU.2082.34;;2021-08-05;;(Date of UN designation: 2021-08-05);P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;PIVI;Jean-Claude;;Jean-Claude PIVI;;M;Colonel;Minister in charge of Presidential Security.;7514;EN;;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5545;EU.2082.34;;2021-08-05;;(Date of UN designation: 2021-08-05);P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;PIVI;Coplan;;Coplan PIVI;;;;;7577;EN;;amendment;council;2018-10-26;2018-10-27;2018/1604 (OJ L268);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1604&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5545;EU.2082.34;;2021-08-05;;(Date of UN designation: 2021-08-05);P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-01-01;1;1;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;1192;EN;;amendment;commission;2011-03-22;2011-03-21;269/2011 (OJ L76);GIN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:076:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5553;EU.1982.9;;;;;P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;CAMARA;Moussa;Tiégboro;Moussa Tiégboro CAMARA;;M;Colonel;Secretary-General, Presidency of the Republic of Guinea.;7524;EN;;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5553;EU.1982.9;;;;;P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;Moussa Thiegboro CAMARA;;M;;;131332;EN;;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5553;EU.1982.9;;;;;P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-01-01;1;1;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;1195;EN;;amendment;commission;2011-03-22;2011-03-21;269/2011 (OJ L76);GIN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:076:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5553;EU.1982.9;;;;;P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7190 (passport-National passport) ((passport number));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;389;EN;(passport number);amendment;council;2018-10-26;2018-10-27;2018/1604 (OJ L268);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1604&from=EN;;;;;;;;;;;;; +28/10/2022;5555;EU.1984.36;;2021-08-05;;(Date of UN designation: 2021-08-05);P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;DIABY;Abdoulaye;Chérif;Abdoulaye Chérif DIABY;;M;Colonel Dr.;Military doctor.;7526;EN;;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5555;EU.1984.36;;2021-08-05;;(Date of UN designation: 2021-08-05);P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-02-26;26;2;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;1196;EN;;regulation;commission;2009-12-23;2009-12-22;1284/2009 (OJ L346);GIN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:346:0026:0038:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5555;EU.1984.36;;2021-08-05;;(Date of UN designation: 2021-08-05);P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13683 (passport-National passport) ((passport number));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;390;EN;(passport number);amendment;commission;2011-03-22;2011-03-21;269/2011 (OJ L76);GIN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:076:0001:0003:EN:PDF;;;;;;;;;;;;; +28/10/2022;5562;EU.1885.36;;2021-08-05;;(Date of UN designation: 2021-08-05);P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;DIAKITÉ;Aboubacar;Chérif;Aboubacar Chérif DIAKITÉ;;M;Lieutenant;former military.;7534;EN;in detention.;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5562;EU.1885.36;;2021-08-05;;(Date of UN designation: 2021-08-05);P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;DIAKITÉ;Toumba;;Toumba DIAKITÉ;;;;;7535;EN;;amendment;council;2018-10-26;2018-10-27;2018/1604 (OJ L268);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1604&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5562;EU.1885.36;;2021-08-05;;(Date of UN designation: 2021-08-05);P;person;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;Conakry;;;;;;NO;;GN;GUINEA;131333;EN;;amendment;council;2021-08-07;2021-08-07;2021/1301 (OJ L283);GIN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5597;EU.4157.17;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;RYOM Yong;;M;;Director of the General Bureau of Atomic Energy (entity designated by the United Nations), in charge of international relations.;7596;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5597;EU.4157.17;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;렴영;;M;;;141973;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5599;EU.4151.33;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;CHON Chi Bu;;M;;Member of the General Bureau of Atomic Energy, former technical director of Yongbyon.;7582;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5599;EU.4151.33;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;CHON Chi-bu;;M;;;15987;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5599;EU.4151.33;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;전지부;;M;;;141960;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5603;EU.4224.84;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Tong-un;;M;;Former director of 'Office 39' of the Centra Committee of the Workers' Party of Korea;7587;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5603;EU.4224.84;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Tong Un;;M;;;112458;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5603;EU.4224.84;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;김동운;;M;;;141952;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5603;EU.4224.84;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1936-11-01;1;11;1936;;;NO;GREGORIAN;;;;;00;UNKNOWN;131169;EN;;amendment;council;2021-08-06;2021-08-07;2021/1300 (OJ L283);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5603;EU.4224.84;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"554410660 (other-Other identification number) ";NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;KP;;424;EN;;amendment;commission;2010-12-23;2010-12-23;1251/2010 (OJ L341);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0015:0018:EN:PDF;;;;;;;;;;;;; +28/10/2022;5605;EU.4155.87;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;O Kuk-Ryol;;M;;Korean People’s Army General, former deputy Chairman of the National Defence Commission. Former Member of the Workers’ Party of Korea, Central Committee.;7590;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5605;EU.4155.87;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;O Kuk Ryol;;M;;;112437;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5605;EU.4155.87;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;오극렬;;M;;;141966;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5605;EU.4155.87;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1930-01-07;7;1;1930;;;NO;GREGORIAN;;;;Jilin Province;CN;CHINA;1233;EN;;amendment;council;2020-07-31;2020-08-01;2020/1129 (OJ L247);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.247.01.0005.01.ENG&toc=OJ:L:2020:247:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5606;EU.3785.73;;;;(Former Chairman of the Second Economic Committee (responsible for the ballistics programme) of the Central Committee of the Korean Workers' Party. Member of the National Defence Commission.Promoted to Major-General.);P;person;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;PAEK;Se-bong;;Se-bong PAEK;;;;Former chairman of the Second Economic Committee (responsible for the ballistics programme) of the Central Committee of the Korean Workers' Party. Member of the National Defence Commission.Promoted to Major-General.;7591;EN;;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5606;EU.3785.73;;;;(Former Chairman of the Second Economic Committee (responsible for the ballistics programme) of the Central Committee of the Korean Workers' Party. Member of the National Defence Commission.Promoted to Major-General.);P;person;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;PAEK;Se Bong;;Se Bong PAEK;;;;;112438;EN;;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5606;EU.3785.73;;;;(Former Chairman of the Second Economic Committee (responsible for the ballistics programme) of the Central Committee of the Korean Workers' Party. Member of the National Defence Commission.Promoted to Major-General.);P;person;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946;;;NO;GREGORIAN;;;;;00;UNKNOWN;1234;EN;;amendment;commission;2009-12-23;2009-12-22;1283/2009 (OJ L346);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:346:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5607;EU.4156.52;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;PAK Jae-gyong;;M;;General of the Korean People’s Army. Former Deputy Director of the General Political Department of the People’s Armed Forces and former Deputy Director of the Logistics Bureau of the People’s Armed Forces (military adviser to late Kim Jong-Il). Former member of the Central Committee of the Workers’ Party of Korea. President of the Korean Committee of Veterans against Imperialism.;7592;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5607;EU.4156.52;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;PAK Chae-Kyong;;M;;;7593;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5607;EU.4156.52;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;PAK Jae Gyong;;M;;;112439;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5607;EU.4156.52;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;박재경;;M;;;141967;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5607;EU.4156.52;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1933-06-10;10;6;1933;;;NO;GREGORIAN;;;;;00;UNKNOWN;1235;EN;;amendment;council;2020-07-31;2020-08-01;2020/1129 (OJ L247);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.247.01.0005.01.ENG&toc=OJ:L:2020:247:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5607;EU.4156.52;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"554410661 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KP;;425;EN;;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;;;;;;;;;;;;; +28/10/2022;5609;EU.3711.12;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Aweys;Hassan;Dahir;Hassan Dahir Aweys;;;;"Hassan Dahir Aweys has acted and continues to act as a senior political and ideological leader of a variety of armed opposition groups responsible for repeated violations of the general and complete arms embargo and/or acts that threaten the Djibouti peace agreement, the Transitional Federal Government (TFG) and the African Union Mission in Somalia (AMISOM) forces. Between June 2006 and September 2007, AWEYSs served as chairman of the central committee of the Islamic Courts Union; in July 2008 he declared himself chairman of the Alliance for the Re-Liberation of Somalia-Asmara wing; and in May 2009 he was named chairman of Hisbul Islam, an alliance of groups opposed to the TFG. In each of these positions, AWEYS's statements and actions have demonstrated an unequivocal and sustained intention to dismantle the TFG and expel AMISOM by force from Somalia.";7604;EN;;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5609;EU.3711.12;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Ali;Sheikh Hassan;Dahir Aweys;Sheikh Hassan Dahir Aweys Ali;;;;;7797;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5609;EU.3711.12;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Awes;Hassan;Dahir;Hassan Dahir Awes;;;;;7798;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5609;EU.3711.12;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Awes;Shaykh Hassan;Dahir;Shaykh Hassan Dahir Awes;;;;;7799;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5609;EU.3711.12;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Aweyes;Hassen;Dahir;Hassen Dahir Aweyes;;;;;7800;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5609;EU.3711.12;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Aweys;Ahmed;Dahir;Ahmed Dahir Aweys;;;;;7801;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5609;EU.3711.12;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Sheikh Aweys;;;;;7802;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5609;EU.3711.12;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Aweys;Sheikh Hassan;Dahir;Sheikh Hassan Dahir Aweys;;;;;7803;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5609;EU.3711.12;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Dahir;Aweys;Hassan;Aweys Hassan Dahir;;;;;7804;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5609;EU.3711.12;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Ibrahim;Mohammed;Hassan;Mohammed Hassan Ibrahim;;;;;7805;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5609;EU.3711.12;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Oais;Hassan;Tahir;Hassan Tahir Oais;;;;;7806;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5609;EU.3711.12;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Uways;Hassan;Tahir;Hassan Tahir Uways;;;;;7807;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5609;EU.3711.12;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Sheikh Hassan;;;;;7808;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5609;EU.3711.12;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1935;;;NO;GREGORIAN;;;;;00;UNKNOWN;1253;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5609;EU.3711.12;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;581;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF +28/10/2022;5610;EU.3730.49;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia. See also 1961 [TAQA]);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Al-Turki;Hassan;Abdullah Hersi;Hassan Abdullah Hersi Al-Turki;;;;;7597;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5610;EU.3730.49;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia. See also 1961 [TAQA]);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Al-Turki;Hassan;-;Hassan - Al-Turki;;;;;7809;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5610;EU.3730.49;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia. See also 1961 [TAQA]);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Turki;Hassan;;Hassan Turki;;;;;7810;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5610;EU.3730.49;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia. See also 1961 [TAQA]);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Turki;Hassan;Abdillahi Hersi;Hassan Abdillahi Hersi Turki;;;;;7811;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5610;EU.3730.49;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia. See also 1961 [TAQA]);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Turki;Sheikh Hassan;;Sheikh Hassan Turki;;;;;7812;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5610;EU.3730.49;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia. See also 1961 [TAQA]);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Xirsi;Xasan;Cabdilaahi;Xasan Cabdilaahi Xirsi;;;;;7813;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5610;EU.3730.49;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia. See also 1961 [TAQA]);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Xirsi;Xasan;Cabdulle;Xasan Cabdulle Xirsi;;;;;7814;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5610;EU.3730.49;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia. See also 1961 [TAQA]);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944;;;YES;GREGORIAN;;;;Ogaden Region;ET;ETHIOPIA;1254;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5610;EU.3730.49;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia. See also 1961 [TAQA]);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;582;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Yongbyon Nuclear Research Centre;;;;;7598;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;녕변 원자력 연구소 영변 원자력 연구소;;;;;141949;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Centre de recherche scientifique nucléaire de Yongbyon;FR;;;;143005;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Κέντρο Πυρηνικών Ερευνών της Yongbyon;EL;;;;143006;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Centro de Investigación Nuclear de Yongbyon;ES;;;;143010;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Centro de Investigação Científica Nuclear de Yongbyon;PT;;;;143014;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Ċentru ta' Riċerka Xjentifika Nukleari ta' Yongbyon;MT;;;;143018;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Wetenschappelijk onderzoekscentrum voor kernenergie van Yongbyon;NL;;;;143025;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Zentrum für wissenschaftliche Kernforschung Yongbyon;DE;;;;143028;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Centro di ricerca scientifica nucleare di Yongbyon;IT;;;;143040;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Centar za nuklearna znanstvena istraživanja Yongbyon;HR;;;;143042;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Znanstveni center za jedrske raziskave Jongbjon;SL;;;;143044;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Stredisko jadrového vedeckého výskumu v Yongbyone;SK;;;;143050;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Jongbjoni Nukleáris Kutatóközpont;HU;;;;143053;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Център за ядрени научни изследвания Yongbyon;BG;;;;143054;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Centrul de Cercetare Științifică Nucleară de la Yongbyon;RO;;;;143057;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Středisko jaderného vědeckého výzkumu v Yongbyonu;CS;;;;143061;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Yongbyonin tieteellinen ydintutkimus-keskus;FI;;;;143065;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Yongbyon zinātniskais kodolpētījumu centrs;LV;;;;143070;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5611;EU.4222.57;;2009-12-22;;(Date of UN designation: 2009-12-22);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Njongbjono branduolinių mokslinių tyrimų centras;LT;;;;143083;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5612;EU.4218.40;;;;(Date of designation: 22.12.2009);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Pugang Mining and Machinery Corporation ltd;;;;"Subsidiary of Korea Ryongbong General Corporation (entity designated by the United Nations, 2009-04-24); operates facilities for the production of aluminium powder, which can be used in missiles.";7599;EN;;amendment;commission;2009-12-23;2009-12-22;1283/2009 (OJ L346);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:346:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5613;EU.4219.5;;;;(Date of listing: 22.12.2009);E;enterprise;amendment;council;2020-07-31;2020-08-01;2020/1129 (OJ L247);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.247.01.0005.01.ENG&toc=OJ:L:2020:247:TOC;;;;Korean Ryengwang Trading Corporation;;;;Subsidiary of Korea Ryongbong General Corporation (entity designated by the United Nations, 2009-04-24).;7600;EN;;amendment;commission;2009-12-23;2009-12-22;1283/2009 (OJ L346);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:346:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5613;EU.4219.5;;;;(Date of listing: 22.12.2009);E;enterprise;amendment;council;2020-07-31;2020-08-01;2020/1129 (OJ L247);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.247.01.0005.01.ENG&toc=OJ:L:2020:247:TOC;;;;KOREA RYONGWANG TRADING CORPORATION;;;;;124485;EN;;amendment;council;2020-07-31;2020-08-01;2020/1129 (OJ L247);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.247.01.0005.01.ENG&toc=OJ:L:2020:247:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5613;EU.4219.5;;;;(Date of listing: 22.12.2009);E;enterprise;amendment;council;2020-07-31;2020-08-01;2020/1129 (OJ L247);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.247.01.0005.01.ENG&toc=OJ:L:2020:247:TOC;;;;;;;;;;;;;;;;;;;Pyongyang;Rakwon-dong, Pothonggang District;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;1617;EN;;amendment;commission;2010-12-23;2010-12-23;1251/2010 (OJ L341);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0015:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5614;EU.4220.30;;;;(Date of designation: 22.12.2009);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Sobaeku United Corp.;;;;State-owned company, involved in research into, and the acquisition of, sensitive products and equipment. It possesses several deposits of natural graphite, which provide raw material for two processing facilities which, inter alia, produce graphite blocks that can be used in missiles.;7601;EN;;amendment;commission;2009-12-23;2009-12-22;1283/2009 (OJ L346);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:346:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5614;EU.4220.30;;;;(Date of designation: 22.12.2009);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Sobaeksu United Corp.;;;;;7602;EN;;amendment;commission;2009-12-23;2009-12-22;1283/2009 (OJ L346);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:346:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5615;EU.4158.79;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;SO Sang-kuk;;M;;Head of the Department of Nuclear Physics, Kim II Sung University;7603;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5615;EU.4158.79;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;SO Sang Kuk;;M;;;112440;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5615;EU.4158.79;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;서상국;;M;;;141979;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5615;EU.4158.79;;2009-12-22;;(Date of UN designation: 2009-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1938-11-30;30;11;1938;;;NO;GREGORIAN;;;;;00;UNKNOWN;131168;EN;;amendment;council;2021-08-06;2021-08-07;2021/1300 (OJ L283);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5616;EU.3738.60;;2010-04-12;;(Date of UN designation: 2010-04-12);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;aw-Mohamed;Ahmed;Abdi;Ahmed Abdi aw-Mohamed;;;;;7815;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5616;EU.3738.60;;2010-04-12;;(Date of UN designation: 2010-04-12);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Abu Zubeyr;Muktar;Abdirahman;Muktar Abdirahman Abu Zubeyr;;;;;7816;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5616;EU.3738.60;;2010-04-12;;(Date of UN designation: 2010-04-12);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Abuzubair;Muktar;Abdulrahim;Muktar Abdulrahim Abuzubair;;;;;7817;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5616;EU.3738.60;;2010-04-12;;(Date of UN designation: 2010-04-12);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Aw Mohammed;Ahmed;Abdi;Ahmed Abdi Aw Mohammed;;;;;7818;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5616;EU.3738.60;;2010-04-12;;(Date of UN designation: 2010-04-12);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Aw-Mohamud;Ahmed;Abdi;Ahmed Abdi Aw-Mohamud;;;;;7819;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5616;EU.3738.60;;2010-04-12;;(Date of UN designation: 2010-04-12);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Godane;;;;;7820;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5616;EU.3738.60;;2010-04-12;;(Date of UN designation: 2010-04-12);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Godani;;;;;7821;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5616;EU.3738.60;;2010-04-12;;(Date of UN designation: 2010-04-12);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Shaykh Mukhtar;;;;;7822;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5616;EU.3738.60;;2010-04-12;;(Date of UN designation: 2010-04-12);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Abu Zubeyr;;;;;7823;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5616;EU.3738.60;;2010-04-12;;(Date of UN designation: 2010-04-12);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-07-10;10;7;1977;;;NO;GREGORIAN;;;;Hargeysa;SO;SOMALIA;1255;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5616;EU.3738.60;;2010-04-12;;(Date of UN designation: 2010-04-12);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;583;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF +28/10/2022;5617;EU.2011.62;;;;(Location: Mogadishu, Somalia. Alternative location: Somalia.);P;person;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;Fuad Mohamed Khalaf;;;;;7824;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5617;EU.2011.62;;;;(Location: Mogadishu, Somalia. Alternative location: Somalia.);P;person;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;Fuad Mohamed Khalif;;;;;7847;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5617;EU.2011.62;;;;(Location: Mogadishu, Somalia. Alternative location: Somalia.);P;person;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;Fuad Mohamed Qalaf;;;;;7848;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5617;EU.2011.62;;;;(Location: Mogadishu, Somalia. Alternative location: Somalia.);P;person;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;Fuad Mohammed Kalaf;;;;;7849;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5617;EU.2011.62;;;;(Location: Mogadishu, Somalia. Alternative location: Somalia.);P;person;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;Fuad Mohamed Kalaf;;;;;7850;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5617;EU.2011.62;;;;(Location: Mogadishu, Somalia. Alternative location: Somalia.);P;person;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;Fuad Mohammed Khalif;;;;;7851;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5617;EU.2011.62;;;;(Location: Mogadishu, Somalia. Alternative location: Somalia.);P;person;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;Fuad Khalaf;;;;;7852;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5617;EU.2011.62;;;;(Location: Mogadishu, Somalia. Alternative location: Somalia.);P;person;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;Fuad Shongale;;;;;7853;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5617;EU.2011.62;;;;(Location: Mogadishu, Somalia. Alternative location: Somalia.);P;person;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;Fuad Shongole;;;;;7854;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5617;EU.2011.62;;;;(Location: Mogadishu, Somalia. Alternative location: Somalia.);P;person;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;Fuad Shangole;;;;;7855;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5617;EU.2011.62;;;;(Location: Mogadishu, Somalia. Alternative location: Somalia.);P;person;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;Fuad Songale;;;;;7856;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5617;EU.2011.62;;;;(Location: Mogadishu, Somalia. Alternative location: Somalia.);P;person;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;Fouad Shongale;;;;;7857;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5617;EU.2011.62;;;;(Location: Mogadishu, Somalia. Alternative location: Somalia.);P;person;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;Fuad Muhammad Khalaf Shongole;;;;;7858;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5617;EU.2011.62;;;;(Location: Mogadishu, Somalia. Alternative location: Somalia.);P;person;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;584;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF +28/10/2022;5618;EU.3299.12;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;Al-Mazidih;Akram;Turki Hishan;Akram Turki Hishan Al-Mazidih;;;;;7747;EN;;amendment;commission;2010-03-26;2010-03-24;262/2010 (OJ L80);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:080:0040:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5618;EU.3299.12;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;Al-Hishan;Akram;Turki;Akram Turki Al-Hishan;;;;;7748;EN;;amendment;commission;2010-03-26;2010-03-24;262/2010 (OJ L80);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:080:0040:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5618;EU.3299.12;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abu Jarrah;;;;;7749;EN;;amendment;commission;2010-03-26;2010-03-24;262/2010 (OJ L80);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:080:0040:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5618;EU.3299.12;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abu Akram;;;;;7750;EN;;amendment;commission;2010-03-26;2010-03-24;262/2010 (OJ L80);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:080:0040:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5618;EU.3299.12;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;Deir ez-Zor Governorate;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;1378;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5618;EU.3299.12;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;JO;JORDAN;107256;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5618;EU.3299.12;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;IQ;IRAQ;107257;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5618;EU.3299.12;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;1245;EN;;amendment;commission;2010-03-26;2010-03-24;262/2010 (OJ L80);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:080:0040:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5618;EU.3299.12;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;1246;EN;;amendment;commission;2010-03-26;2010-03-24;262/2010 (OJ L80);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:080:0040:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5618;EU.3299.12;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;1247;EN;;amendment;commission;2010-03-26;2010-03-24;262/2010 (OJ L80);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:080:0040:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5619;EU.3304.46;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;Al-Mazidih;Ghazy;Fezza Hishan;Ghazy Fezza Hishan Al-Mazidih;;;;;7751;EN;;amendment;commission;2010-03-26;2010-03-24;262/2010 (OJ L80);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:080:0040:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5619;EU.3304.46;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;Hishan;Ghazy;Fezzaa;Ghazy Fezzaa Hishan;;;;;7752;EN;;amendment;commission;2010-03-26;2010-03-24;262/2010 (OJ L80);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:080:0040:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5619;EU.3304.46;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;Shlash;Mushari;Abd Aziz Saleh;Mushari Abd Aziz Saleh Shlash;;;;;7753;EN;;amendment;commission;2010-03-26;2010-03-24;262/2010 (OJ L80);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:080:0040:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5619;EU.3304.46;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abu Faysal;;;;;7754;EN;;amendment;commission;2010-03-26;2010-03-24;262/2010 (OJ L80);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:080:0040:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5619;EU.3304.46;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abu Ghazzy;;;;;7755;EN;;amendment;commission;2010-03-26;2010-03-24;262/2010 (OJ L80);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:080:0040:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5619;EU.3304.46;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;1379;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5619;EU.3304.46;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;IQ;IRAQ;107258;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5619;EU.3304.46;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;1248;EN;;amendment;commission;2010-03-26;2010-03-24;262/2010 (OJ L80);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:080:0040:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5619;EU.3304.46;;2010-03-11;;(Date of UN designation: 2010-03-11)\n(Date of designation referred to in Article 2a (4) (b): 11.3.2010.);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;1249;EN;;amendment;commission;2010-03-26;2010-03-24;262/2010 (OJ L80);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:080:0040:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Baynah;Yasin;Ali;Yasin Ali Baynah;;;;;7781;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Ali;Yasin;Baynah;Yasin Baynah Ali;;;;;7782;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Ali;Yassin;Mohamed;Yassin Mohamed Ali;;;;;7783;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Baynah;Yasin;-;Yasin - Baynah;;;;;7784;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Baynah;Yassin;;Yassin Baynah;;;;;7785;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Baynax;Yasiin;Cali;Yasiin Cali Baynax;;;;;7786;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Beenah;Yasin;;Yasin Beenah;;;;;7787;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Beenah;Yassin;;Yassin Beenah;;;;;7788;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Beenax;Yasin;;Yasin Beenax;;;;;7789;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Beenax;Yassin;;Yassin Beenax;;;;;7790;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Benah;Yasin;;Yasin Benah;;;;;7791;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Benah;Yassin;;Yassin Benah;;;;;7792;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Benax;Yassin;;Yassin Benax;;;;;7793;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Beynah;Yasin;;Yasin Beynah;;;;;7794;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Binah;Yassin;;Yassin Binah;;;;;7795;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;Cali;Yasiin;Baynax;Yasiin Baynax Cali;;;;;7796;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-12-24;24;12;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;112925;EN;;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;579;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF +28/10/2022;5620;EU.3710.47;;2010-04-12;;"(Date of UN designation: 2010-04-12)\n(Location: Rinkeby, Stockholm, Sweden; Mogadishu, Somalia.)";P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SE;;580;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF +28/10/2022;5621;EU.3739.25;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Mogadishu, Somalia.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Bashir Mohamed Mahamoud;;;;;7825;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5621;EU.3739.25;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Mogadishu, Somalia.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Bashir Mohamed Mahmoud;;;;;7859;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5621;EU.3739.25;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Mogadishu, Somalia.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Bashir Mahmud Mohammed;;;;;7860;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5621;EU.3739.25;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Mogadishu, Somalia.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Bashir Mohamed Mohamud;;;;;7861;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5621;EU.3739.25;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Mogadishu, Somalia.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Bashir Mohamed Mohamoud;;;;;7862;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5621;EU.3739.25;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Mogadishu, Somalia.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Bashir Yare;;;;;7863;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5621;EU.3739.25;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Mogadishu, Somalia.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Bashir Qorgab;;;;;7864;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5621;EU.3739.25;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Mogadishu, Somalia.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Gure Gap;;;;;7865;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5621;EU.3739.25;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Mogadishu, Somalia.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Abu Muscab;;;;;7866;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5621;EU.3739.25;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Mogadishu, Somalia.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Qorgab;;;;;7867;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5621;EU.3739.25;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Mogadishu, Somalia.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979;1982;YES;GREGORIAN;;;;;00;UNKNOWN;1257;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5621;EU.3739.25;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Mogadishu, Somalia.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;1258;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5621;EU.3739.25;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Mogadishu, Somalia.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;585;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF +28/10/2022;5623;EU.3740.50;;2010-04-12;;(Date of UN designation: 2010-04-12);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Fares Mohammed Mana'a;;;;;7827;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5623;EU.3740.50;;2010-04-12;;(Date of UN designation: 2010-04-12);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Faris Mana'a;;;;;7871;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5623;EU.3740.50;;2010-04-12;;(Date of UN designation: 2010-04-12);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Fares Mohammed Manaa;;;;;7872;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5623;EU.3740.50;;2010-04-12;;(Date of UN designation: 2010-04-12);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-02-08;8;2;1965;;;NO;GREGORIAN;;;;Sadah;YE;YEMEN;1256;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5623;EU.3740.50;;2010-04-12;;(Date of UN designation: 2010-04-12);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00514146 (passport-National passport) ((passport; place of issue: sanaa, yemen))";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;YE;;440;EN;"(passport; place of issue: sanaa, yemen)";regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;; +28/10/2022;5623;EU.3740.50;;2010-04-12;;(Date of UN designation: 2010-04-12);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1417576 (id-National identification card) (id card; place of issue: al- amana, yemen; date of issue: 7 january 1996)";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;YE;;441;EN;"id card; place of issue: al- amana, yemen; date of issue: 7 january 1996";regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Al-Shabaab;;;;;7828;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Al-Shabab;;;;;7829;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Shabaab;;;;;7830;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;The Youth;;;;;7831;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Mujahidin Al-Shabaab Movement;;;;;7832;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Mujahideen Youth Movement;;;;;7833;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Mujahidin Youth Movement;;;;;7834;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;MYM;;;;;7835;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Harakat Shabab Al-Mujahidin;;;;;7836;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Hizbul Shabaab;;;;;7837;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Hisb'ul Shabaab;;;;;7838;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Al-Shabaab Al-Islamiya;;;;;7839;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Youth Wing;;;;;7840;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Al-Shabaab Al-Islaam;;;;;7841;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Al-Shabaab Al-Jihaad;;;;;7842;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;The Unity Of Islamic Youth;;;;;7843;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Harakat Al-Shabaab Al-Mujaahidiin;;;;;7844;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Harakatul Shabaab Al Mujaahidiin;;;;;7845;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Mujaahidiin Youth Movement;;;;;7846;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Tineretul (The Youth);RO;;;;7873;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Mișcarea Mujahidin Al-Shabaab;RO;;;;7874;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Mișcarea de tineret Mujahideen;RO;;;;7875;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Mișcarea de tineret Mujahidin;RO;;;;7876;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Aripa tânără (Youth Wing);RO;;;;7877;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Unitatea tineretului islamic;RO;;;;7878;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5624;EU.3600.81;;2010-04-12;;(Date of UN designation: 2010-04-12)\n(Location: Somalia.);E;enterprise;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Mișcarea de tineret Mujaahidiin;RO;;;;7879;EN;;regulation;commission;2010-04-27;2010-04-26;356/2010 (OJ L105);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:105:0001:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5625;EU.1946.59;;2010-04-22;;(Date of UN designation: 2010-04-22)\n(Other information: (a) Father’s name is Ali Belkalem, mother’s name is Fatma Saadoudi.Date of designation referred to in Article 2a (4) (b): 22.4.2010.);P;person;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;Belkalem;Mohamed;;Mohamed Belkalem;;;;;7885;EN;;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5625;EU.1946.59;;2010-04-22;;(Date of UN designation: 2010-04-22)\n(Other information: (a) Father’s name is Ali Belkalem, mother’s name is Fatma Saadoudi.Date of designation referred to in Article 2a (4) (b): 22.4.2010.);P;person;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;Abdelali Abou Dher;;;;;7886;EN;;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5625;EU.1946.59;;2010-04-22;;(Date of UN designation: 2010-04-22)\n(Other information: (a) Father’s name is Ali Belkalem, mother’s name is Fatma Saadoudi.Date of designation referred to in Article 2a (4) (b): 22.4.2010.);P;person;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;El Harrachi;;;;;7887;EN;;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5625;EU.1946.59;;2010-04-22;;(Date of UN designation: 2010-04-22)\n(Other information: (a) Father’s name is Ali Belkalem, mother’s name is Fatma Saadoudi.Date of designation referred to in Article 2a (4) (b): 22.4.2010.);P;person;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-12-19;19;12;1969;;;NO;GREGORIAN;;;;Hussein Dey, Algiers;DZ;ALGERIA;1260;EN;;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5625;EU.1946.59;;2010-04-22;;(Date of UN designation: 2010-04-22)\n(Other information: (a) Father’s name is Ali Belkalem, mother’s name is Fatma Saadoudi.Date of designation referred to in Article 2a (4) (b): 22.4.2010.);P;person;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;586;EN;;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF +28/10/2022;5626;EU.1985.1;;2010-04-22;;(Date of UN designation: 2010-04-22)\n(The year of birth 1976 relates to Mohamed Ould Ahmed Ould Ali. Other information: (a) Father’s name was Benazouz Nail, mother’s name is Belkheiri Oum El Kheir . Date of designation referred to in Article 2a (4) (b): 22.4.2010.);P;person;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;Nail;Tayeb;;Tayeb Nail;;;;;7888;EN;;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5626;EU.1985.1;;2010-04-22;;(Date of UN designation: 2010-04-22)\n(The year of birth 1976 relates to Mohamed Ould Ahmed Ould Ali. Other information: (a) Father’s name was Benazouz Nail, mother’s name is Belkheiri Oum El Kheir . Date of designation referred to in Article 2a (4) (b): 22.4.2010.);P;person;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;Djaafar Abou Mohamed;;;;;7889;EN;;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5626;EU.1985.1;;2010-04-22;;(Date of UN designation: 2010-04-22)\n(The year of birth 1976 relates to Mohamed Ould Ahmed Ould Ali. Other information: (a) Father’s name was Benazouz Nail, mother’s name is Belkheiri Oum El Kheir . Date of designation referred to in Article 2a (4) (b): 22.4.2010.);P;person;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;Abou Mouhadjir;;;;;7890;EN;;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5626;EU.1985.1;;2010-04-22;;(Date of UN designation: 2010-04-22)\n(The year of birth 1976 relates to Mohamed Ould Ahmed Ould Ali. Other information: (a) Father’s name was Benazouz Nail, mother’s name is Belkheiri Oum El Kheir . Date of designation referred to in Article 2a (4) (b): 22.4.2010.);P;person;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;Mohamed Ould Ahmed Ould Ali;;;;;7891;EN;;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5626;EU.1985.1;;2010-04-22;;(Date of UN designation: 2010-04-22)\n(The year of birth 1976 relates to Mohamed Ould Ahmed Ould Ali. Other information: (a) Father’s name was Benazouz Nail, mother’s name is Belkheiri Oum El Kheir . Date of designation referred to in Article 2a (4) (b): 22.4.2010.);P;person;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;YES;GREGORIAN;;;;Faidh El Batma, Djelfa;DZ;ALGERIA;1261;EN;;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5626;EU.1985.1;;2010-04-22;;(Date of UN designation: 2010-04-22)\n(The year of birth 1976 relates to Mohamed Ould Ahmed Ould Ali. Other information: (a) Father’s name was Benazouz Nail, mother’s name is Belkheiri Oum El Kheir . Date of designation referred to in Article 2a (4) (b): 22.4.2010.);P;person;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976;;;NO;GREGORIAN;;;;Faidh El Batma, Djelfa;DZ;ALGERIA;1262;EN;;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5626;EU.1985.1;;2010-04-22;;(Date of UN designation: 2010-04-22)\n(The year of birth 1976 relates to Mohamed Ould Ahmed Ould Ali. Other information: (a) Father’s name was Benazouz Nail, mother’s name is Belkheiri Oum El Kheir . Date of designation referred to in Article 2a (4) (b): 22.4.2010.);P;person;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;587;EN;;amendment;commission;2010-05-01;2010-04-30;372/2010 (OJ L110);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:110:0022:0023:EN:PDF +28/10/2022;5629;EU.3414.12;;2010-05-11;;(Date of UN designation: 2010-05-11)\n(Mother's name: Fatima Muthanna Yahya.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;Al-Rimi;Qasim;;Qasim Al-Rimi;;;;;7902;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5629;EU.3414.12;;2010-05-11;;(Date of UN designation: 2010-05-11)\n(Mother's name: Fatima Muthanna Yahya.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;al-Rimi;Qasim;Mohamed Mahdi;Qasim Mohamed Mahdi al-Rimi;;;;;7939;EN;;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5629;EU.3414.12;;2010-05-11;;(Date of UN designation: 2010-05-11)\n(Mother's name: Fatima Muthanna Yahya.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;al-Raymi;Qassim;;Qassim al-Raymi;;;;;7953;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5629;EU.3414.12;;2010-05-11;;(Date of UN designation: 2010-05-11)\n(Mother's name: Fatima Muthanna Yahya.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;al-Rami;Qasim;;Qasim al-Rami;;;;;7954;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5629;EU.3414.12;;2010-05-11;;(Date of UN designation: 2010-05-11)\n(Mother's name: Fatima Muthanna Yahya.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;al-Rimi;Qasim;Yahya Mahdi ’Abd;Qasim Yahya Mahdi ’Abd al-Rimi;;;;;7955;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5629;EU.3414.12;;2010-05-11;;(Date of UN designation: 2010-05-11)\n(Mother's name: Fatima Muthanna Yahya.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Abu Hurayrah al-Sana’ai;;;;;7956;EN;;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5629;EU.3414.12;;2010-05-11;;(Date of UN designation: 2010-05-11)\n(Mother's name: Fatima Muthanna Yahya.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Abu ’Ammar;;;;;7957;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5629;EU.3414.12;;2010-05-11;;(Date of UN designation: 2010-05-11)\n(Mother's name: Fatima Muthanna Yahya.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;al-Raymi;Qasim;;Qasim al-Raymi;;;;;7964;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5629;EU.3414.12;;2010-05-11;;(Date of UN designation: 2010-05-11)\n(Mother's name: Fatima Muthanna Yahya.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Abu Hurayrah;EN;;;;108985;EN;;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5629;EU.3414.12;;2010-05-11;;(Date of UN designation: 2010-05-11)\n(Mother's name: Fatima Muthanna Yahya.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Qassim Mohammad Mahdi Al Rimi;EN;;;;108986;EN;;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5629;EU.3414.12;;2010-05-11;;(Date of UN designation: 2010-05-11)\n(Mother's name: Fatima Muthanna Yahya.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Qasim Mohammed Mahdi Al Remi;EN;;;;108987;EN;;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5629;EU.3414.12;;2010-05-11;;(Date of UN designation: 2010-05-11)\n(Mother's name: Fatima Muthanna Yahya.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;YE;YEMEN;1414;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5629;EU.3414.12;;2010-05-11;;(Date of UN designation: 2010-05-11)\n(Mother's name: Fatima Muthanna Yahya.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-06-05;5;6;1978;;;NO;GREGORIAN;;Sanaa Governorate;Raymah village;;YE;YEMEN;1278;EN;;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5629;EU.3414.12;;2010-05-11;;(Date of UN designation: 2010-05-11)\n(Mother's name: Fatima Muthanna Yahya.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;00344994 (passport-National passport) (yemeni passport issued on 3 july 1999 in Sanaa);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;YE;;445;EN;yemeni passport issued on 3 july 1999 in Sanaa;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;; +28/10/2022;5629;EU.3414.12;;2010-05-11;;(Date of UN designation: 2010-05-11)\n(Mother's name: Fatima Muthanna Yahya.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;973406 (id-National identification card) (on 1996-07-03);NO;NO;NO;NO;NO;;1996-07-03;;;;;id;National identification card;;00;;108984;EN;;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;; +28/10/2022;5629;EU.3414.12;;2010-05-11;;(Date of UN designation: 2010-05-11)\n(Mother's name: Fatima Muthanna Yahya.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;590;EN;;amendment;commission;2010-05-26;2010-05-21;450/2010 (OJ L127);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:127:0008:0009:EN:PDF +28/10/2022;5646;EU.2059.77;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Amin Industrial Complex;;;;;7977;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5646;EU.2059.77;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Amin Industrial Compound;;;;;7978;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5646;EU.2059.77;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Amin Industrial Company;;;;;7979;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5646;EU.2059.77;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Complexe industriel Amin;FR;;;;8029;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5646;EU.2059.77;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Complesso industriale Amin;IT;;;;8030;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5646;EU.2059.77;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Il-Kumpless Industrijali Amin;MT;;;;8031;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5646;EU.2059.77;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Mashad;P.O. Box 91735-549;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1416;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5646;EU.2059.77;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Mashad;Khalage Rd. (Amin Industrial Estate), Seyedi District;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1417;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5646;EU.2059.77;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Mashad;Khalaj Rd. (Kaveh Complex), Seyedi St.;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1418;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5649;EU.2030.2;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Doostan International Company;;;;;7982;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5650;EU.2031.64;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Farasakht Industries;;;;;7983;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5650;EU.2031.64;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Esfahan;P.O. Box 83145-311, Kilometer 28, Esfahan-Tehran Freeway, Shahin Shahr;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1422;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5651;EU.2032.29;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Fater Institute;;;;;7984;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5651;EU.2032.29;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Institut Fater;FR;;;;8032;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5651;EU.2032.29;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Istituto Fater;IT;;;;8033;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5651;EU.2032.29;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;L-Istitut Fater;MT;;;;8034;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5651;EU.2032.29;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Faater Institute;;;;;8070;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5653;EU.2033.91;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Gharagahe Sazandegi Ghaem;;;;;7986;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5654;EU.2060.5;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Ghorb Karbala;;;;;7987;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5655;EU.2061.67;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Ghorb Nooh;;;;;7988;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5656;EU.2062.32;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Hara Company;;;;;7989;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5657;EU.2063.94;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Imensazan Consultant Engineers Institute;;;;;7990;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5657;EU.2063.94;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Institut de conseil en ingénierie Imensazan;FR;;;;8035;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5660;EU.2067.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Kaveh Cutting Tools Company;;;;;7993;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5660;EU.2067.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Mashad;Seyyedi Street, 3rd Km of Khalaj Road;;91638;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1427;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5660;EU.2067.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Mashad;End of Seyedi Street, Km 4 of Khalaj Road;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1428;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5660;EU.2067.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Mashad;P.O. Box 91735-549;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1429;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5660;EU.2067.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Mashad;Khalaj Rd., End of Seyyedi Alley;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1430;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5660;EU.2067.51;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Moqan St., Pasdaran St., Pasdaran Cross Rd.;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1431;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5662;EU.2021.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;M. Babaie Industries;;;;;7995;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5662;EU.2021.63;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;P.O. Box 16535-76;;16548;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1432;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5663;EU.2022.28;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Makin;;;;;7996;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5669;EU.1905.90;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Omran Sahel;;;;;8009;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5670;EU.1828.22;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Oriental Oil Kish;;;;;8010;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5671;EU.1829.84;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Pejman Industrial Services Corporation;;;;;8011;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5671;EU.1829.84;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;P.O. Box 16785-195;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1439;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5672;EU.1830.12;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Rah Sahel;;;;;8012;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5673;EU.1831.74;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Rahab Engineering Institute;;;;;8013;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5673;EU.1831.74;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Institut d'ingénierie Rahab;FR;;;;8043;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5673;EU.1831.74;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;L-Istitut tal-Inġinerija Rahab;MT;;;;8044;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5674;EU.1832.39;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Sabalan Company;;;;;8014;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5674;EU.1832.39;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Damavand Tehran Highway;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1440;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5675;EU.1833.4;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Sahand Aluminum Parts Industrial Company;;;;;8015;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5675;EU.1833.4;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;SAPICO;;;;;8075;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5675;EU.1833.4;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Damavand Tehran Highway;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1441;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5676;EU.1834.66;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Sahel Consultant Engineers;;;;;8016;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5676;EU.1834.66;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Conseils en ingénierie Sahel;FR;;;;8046;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5677;EU.1835.31;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Sepanir;;;;;8017;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5678;EU.1836.93;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Sepasad Engineering Company;;;;;8018;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5678;EU.1836.93;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Société d'ingénierie Sepasad;FR;;;;8045;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5679;EU.1837.58;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Shahid Karrazi Industries;;;;;8019;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5679;EU.1837.58;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1458;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5680;EU.1856.95;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Shahid Satarri Industries;;;;;8020;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5680;EU.1856.95;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Shahid Sattari Group Equipment Industries;;;;;8021;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5680;EU.1856.95;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Southeast Tehran;;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1442;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5681;EU.1858.25;;2010-06-09;;(Date of UN designation: 2010-06-09)\n(Shahid Sayyade Shirazi Industries (SSSI) is owned or controlled by, or acts on behalf of, the DIO. Date of UN designation: 9.6.2010.);E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Shahid Sayyade Shirazi Industries;;;;;8022;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5681;EU.1858.25;;2010-06-09;;(Date of UN designation: 2010-06-09)\n(Shahid Sayyade Shirazi Industries (SSSI) is owned or controlled by, or acts on behalf of, the DIO. Date of UN designation: 9.6.2010.);E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;SSSI;;;;;8076;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5681;EU.1858.25;;2010-06-09;;(Date of UN designation: 2010-06-09)\n(Shahid Sayyade Shirazi Industries (SSSI) is owned or controlled by, or acts on behalf of, the DIO. Date of UN designation: 9.6.2010.);E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Next to Nirou Battery Mfg. Co, Shahid Babaii Expressway, Nobonyad Square;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1443;EN;;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5681;EU.1858.25;;2010-06-09;;(Date of UN designation: 2010-06-09)\n(Shahid Sayyade Shirazi Industries (SSSI) is owned or controlled by, or acts on behalf of, the DIO. Date of UN designation: 9.6.2010.);E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Pasdaran St., P.O. Box 16765;;1835;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1444;EN;;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5681;EU.1858.25;;2010-06-09;;(Date of UN designation: 2010-06-09)\n(Shahid Sayyade Shirazi Industries (SSSI) is owned or controlled by, or acts on behalf of, the DIO. Date of UN designation: 9.6.2010.);E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Babaei Highway — Next to Niru M.F.G;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1445;EN;;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5683;EU.1859.87;;2010-06-09;;(Date of UN designation: 2010-06-09)\n(Tiz Pars is a cover name for SHIG, (b) Between April and July 2007, Tiz Pars attempted to procure a five axis laser welding and cutting machine, which could make a material contribution to Iran’s missile program, on behalf of SHIG. Date of UN designation: 9.6.2010.);E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Tiz Pars;;;;;8024;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5683;EU.1859.87;;2010-06-09;;(Date of UN designation: 2010-06-09)\n(Tiz Pars is a cover name for SHIG, (b) Between April and July 2007, Tiz Pars attempted to procure a five axis laser welding and cutting machine, which could make a material contribution to Iran’s missile program, on behalf of SHIG. Date of UN designation: 9.6.2010.);E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Damavand Tehran Highway;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1448;EN;;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5684;EU.1860.15;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Yazd Metallurgy Industries;;;;;8025;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5684;EU.1860.15;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Yazd Ammunition Manufacturing and Metallurgy Industries;;;;;8026;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5684;EU.1860.15;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Directorate of Yazd Ammunition and Metallurgy Industries.;;;;;8027;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5684;EU.1860.15;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Pasdaran Avenue, Next to Telecommunication Industry;;16588;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1449;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5684;EU.1860.15;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;;Postal Box 89195/878;;Yazd;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1450;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5684;EU.1860.15;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;;P.O. Box 89195-678;;Yazd;;;NO;;00;UNKNOWN;1451;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5684;EU.1860.15;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;;Km 5 of Taft Road;;Yazd;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1452;EN;;amendment;commission;2010-06-19;2010-06-19;532/2010 (OJ L154);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:154:0005:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5689;EU.2077.52;;;;;P;person;amendment;council;2020-06-19;2020-06-20;2020/847 (OJ L196);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.196.01.0001.01.ENG&toc=OJ:L:2020:196:TOC;;;;Mohammad Reza MOVASAGHNIA;;;;Former head of Samen Al A'Emmeh Industries Group (SAIG), also known as the Cruise Missile Industry Group.;8081;EN;;amendment;council;2020-06-19;2020-06-20;2020/847 (OJ L196);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.196.01.0001.01.ENG&toc=OJ:L:2020:196:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5713;EU.1955.95;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;ESNICO;;;;;8116;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5713;EU.1955.95;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Equipment Supplier for Nuclear Industries Corporation;;;;;8117;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5713;EU.1955.95;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;1 37th Avenue, Asadabadi Street;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1493;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5714;EU.1956.60;;2010-07-26;;(Date of UN designation: 2010-07-26);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Etemad Amin Invest Co Mobin;;;;;8118;EN;A company owned or controlled by IRGC;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5714;EU.1956.60;;2010-07-26;;(Date of UN designation: 2010-07-26);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Etemad-e Mobin Consortium;;;;;131121;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5714;EU.1956.60;;2010-07-26;;(Date of UN designation: 2010-07-26);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Mobin Trust Consortium;;;;;131122;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5714;EU.1956.60;;2010-07-26;;(Date of UN designation: 2010-07-26);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Etemade Mobin Company;;;;;131123;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5714;EU.1956.60;;2010-07-26;;(Date of UN designation: 2010-07-26);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Etemad Mobin Trust Co.;;;;;131124;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5714;EU.1956.60;;2010-07-26;;(Date of UN designation: 2010-07-26);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Etemad Mobin Co.;;;;;131125;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5714;EU.1956.60;;2010-07-26;;(Date of UN designation: 2010-07-26);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Etemad Amin Invest Company Mobin;;;;;131126;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5714;EU.1956.60;;2010-07-26;;(Date of UN designation: 2010-07-26);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Etemad-e Mobin;;;;;131127;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5714;EU.1956.60;;2010-07-26;;(Date of UN designation: 2010-07-26);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Etemad Amin Investment Company Mobin;;;;;131128;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5714;EU.1956.60;;2010-07-26;;(Date of UN designation: 2010-07-26);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;Tehran;Pasadaran Av.;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1494;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5719;EU.2001.61;;;date of listing: 26.7.2010;(Designation details: date of listing: 26.7.2010);E;enterprise;amendment;council;2019-05-28;2019-05-29;2019/855 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0855&from=EN;;;;Fajr Aviation Composite Industries;;;;A subsidiary of the IAIO within MODAFL both designated by the EU which primarily produces composite materials for the aircraft industry.;8124;EN;;amendment;council;2019-05-28;2019-05-29;2019/855 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0855&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5719;EU.2001.61;;;date of listing: 26.7.2010;(Designation details: date of listing: 26.7.2010);E;enterprise;amendment;council;2019-05-28;2019-05-29;2019/855 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0855&from=EN;;;;;;;;;;;;;;;;;;;Tehran;Mehrabad Airport;13445-885;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1501;EN;;amendment;council;2019-05-28;2019-05-29;2019/855 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0855&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5724;EU.2041.65;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Iran Aircraft Industries;;;;;8130;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5724;EU.2041.65;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;IACI;;;;;8131;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5725;EU.2042.30;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Iran Aircraft Manufacturing Company;;;;;8132;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5725;EU.2042.30;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;HESA;;;;;8133;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5725;EU.2042.30;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;HESA Trade Center;;;;;8134;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5725;EU.2042.30;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;HTC;;;;;8135;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5725;EU.2042.30;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;IAMCO;;;;;8136;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5725;EU.2042.30;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;IAMI;;;;;8137;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5725;EU.2042.30;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Iran Aircraft Manufacturing Industries;;;;;8138;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5725;EU.2042.30;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Karkhanejate Sanaye Havapaymaie Iran;;;;;8139;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5725;EU.2042.30;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Hava Peyma Sazi-e Iran;;;;;8140;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5725;EU.2042.30;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Havapeyma Sazhran;;;;;8141;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5725;EU.2042.30;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Havapeyma Sazi Iran;;;;;8142;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5725;EU.2042.30;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Hevapeimasazi;;;;;8143;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5725;EU.2042.30;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Esfahan;P.O. Box 83145-311, 28 km Esfahan – Tehran Freeway, Shahin Shahr;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1505;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5725;EU.2042.30;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;P.O. Box 14155-5568, No. 27 Ahahamat Aave., Vallie Asr Square;;15946;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1506;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5725;EU.2042.30;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Esfahan;P.O. Box 81465-935;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1507;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5725;EU.2042.30;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Isfahan;Shahih Shar Industrial Zone;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1508;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5725;EU.2042.30;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;P.O. Box 8140, No. 107 Sepahbod Gharany Ave.;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1509;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5726;EU.2068.16;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Iran Centrifuge Technology Company;;;;;8144;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5726;EU.2068.16;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;TSA;;;;;8145;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5726;EU.2068.16;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;TESA;;;;;8146;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5726;EU.2068.16;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Irano centrifugų technologijos bendrovė;LT;;;;12534;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5726;EU.2068.16;;;;;E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Saradr-e Jangal, Tehran;156 Golestan Street;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1872;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5727;EU.2069.78;;2010-07-26;;(Date of UN designation: 2010-07-26)\n(Subsidiary of Iran Electronics Industries.\nHoda Trading is a Hong Kong based subsidiary of ICI.);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Iran Communications Industries;;;;;8147;EN;a subsidiary of \nIran Electronics Industries;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5727;EU.2069.78;;2010-07-26;;(Date of UN designation: 2010-07-26)\n(Subsidiary of Iran Electronics Industries.\nHoda Trading is a Hong Kong based subsidiary of ICI.);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;ICI;;;;;8148;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5727;EU.2069.78;;2010-07-26;;(Date of UN designation: 2010-07-26)\n(Subsidiary of Iran Electronics Industries.\nHoda Trading is a Hong Kong based subsidiary of ICI.);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Iran Communications Industries Co.;;;;;131094;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5727;EU.2069.78;;2010-07-26;;(Date of UN designation: 2010-07-26)\n(Subsidiary of Iran Electronics Industries.\nHoda Trading is a Hong Kong based subsidiary of ICI.);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Iran Communications Industries Group;;;;;131095;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5727;EU.2069.78;;2010-07-26;;(Date of UN designation: 2010-07-26)\n(Subsidiary of Iran Electronics Industries.\nHoda Trading is a Hong Kong based subsidiary of ICI.);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Iran Communication Industries;;;;;131096;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5727;EU.2069.78;;2010-07-26;;(Date of UN designation: 2010-07-26)\n(Subsidiary of Iran Electronics Industries.\nHoda Trading is a Hong Kong based subsidiary of ICI.);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Sanaye Mokhaberat Iran;;;;;131097;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5727;EU.2069.78;;2010-07-26;;(Date of UN designation: 2010-07-26)\n(Subsidiary of Iran Electronics Industries.\nHoda Trading is a Hong Kong based subsidiary of ICI.);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;Tehran;Pasdaran Avenue;19295-4731;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1510;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5727;EU.2069.78;;2010-07-26;;(Date of UN designation: 2010-07-26)\n(Subsidiary of Iran Electronics Industries.\nHoda Trading is a Hong Kong based subsidiary of ICI.);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;Tehran;34 Apadana Avenue;19575-131;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1511;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5727;EU.2069.78;;2010-07-26;;(Date of UN designation: 2010-07-26)\n(Subsidiary of Iran Electronics Industries.\nHoda Trading is a Hong Kong based subsidiary of ICI.);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;Tehran;Shahid Langary Street, Nobonyad Square Ave, Pasdaran;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1512;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5729;EU.2079.79;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Iranian Aviation Industries Organization;;;;;8151;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5729;EU.2079.79;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;IAIO;;;;;8152;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5729;EU.2079.79;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;107 Sepahbod Gharani Avenue;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1514;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5729;EU.2079.79;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Ave. Sepahbod Gharani P.O. Box 15815/1775;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1603;EN;;repealing;commission;2010-10-27;2010-10-27;961/2010 (OJ L281);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:281:0001:0077:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5729;EU.2079.79;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Ave. Sepahbod Gharani P.O. Box 15815/3446;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1604;EN;;repealing;commission;2010-10-27;2010-10-27;961/2010 (OJ L281);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:281:0001:0077:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5730;EU.1958.87;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Isfahan Optics;;;;;8153;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5730;EU.1958.87;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Isfahan;P.O. Box 81465-117,;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1515;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5730;EU.1958.87;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Isfahan;P.O. Box 81465-313 Kaveh Ave.;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1601;EN;;repealing;commission;2010-10-27;2010-10-27;961/2010 (OJ L281);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:281:0001:0077:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5731;EU.1959.52;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Javedan Mehr Toos;;;;;8154;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5735;EU.2005.18;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Parto Sanat Co;;;;;8158;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5735;EU.2005.18;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;1281 Valiasr Ave., Next to 14th St;;15178;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1521;EN;;repealing;commission;2010-10-27;2010-10-27;961/2010 (OJ L281);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:281:0001:0077:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5736;EU.2006.80;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Passive Defense Organization;;;;;8159;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5736;EU.2006.80;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Organizace pasivní obrany;CS;;;;8294;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5738;EU.2012.27;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Raka;;;;;8161;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5740;EU.1880.17;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Schiller Novin;;;;;8164;EN;Acting on behalf of \nDefense Industries \nOrganisation (DIO).;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5740;EU.1880.17;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Shiller Novin;;;;;131102;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5740;EU.1880.17;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Schiller Novin Co.;;;;;131103;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5740;EU.1880.17;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Schiler Novin Co.;;;;;131104;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5740;EU.1880.17;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;Tehran;Gheytariyeh Avenue - no 153 - 3rd Floor - PO BOX 17665/153 6 19389;17665/153 6 19389;;;;NO;;00;UNKNOWN;1523;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5741;EU.1881.79;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Shahid Ahmad Kazemi Industrial Group (SAKIG);;;;;8165;EN;Entity subordinate to Iran’s Aerospace Industries Organisation (AIO) It maintains military, missile, and air defense projects and procures goods from Russia, Belarus, and North Korea.;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5742;EU.1883.9;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Shakhese Behbud Sanat;;;;;8166;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Technology Cooperation Office of the Iranian President’s Office;;;;;8167;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;TCO of the Iranian President’s Office;;;;;8168;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Amt für technologische Zusammenarbeit;DE;;;;8268;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Ufficio per la cooperazione tecnologica;IT;;;;8269;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Úřad pro technologickou spolupráci (TCO) Kanceláře íránského prezidenta;CS;;;;8270;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Iraani presidendi kantselei Technology Cooperation Office (TCO);ET;;;;8271;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Urad za tehnološko sodelovanje urada iranskega predsednika;SL;;;;8273;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Center for Innovation and Technology;;;;;16945;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;CITC;;;;;16946;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Centro di innovazione e tecnologia;IT;;;;16962;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;innovatsiooni- ja tehnoloogiakeskus;ET;;;;16963;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Center za inovacije in tehnologijo;SL;;;;16964;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Bureau de coopération technologique du Bureau du Président iranien;FR;;;;16965;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Служба за сътрудничество в областта на технологиите към службата на иранския президент;BG;;;;16966;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Център за иновации и технологии;BG;;;;16967;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Technology Cooperation Office (TCO) under den iranske præsidents kontor;DA;;;;16968;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Γραφείο Τεχνολογικής Συνεργασίας της Ιρανικής Προεδρίας;EL;;;;16969;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Κέντρο Καινοτομίας και Τεχνολογίας;EL;;;;16970;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Irano prezidentūros technologinio bendradarbiavimo biuras;LT;;;;16981;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;dar žinomas kaip Inovacijų ir technologijų centras;LT;;;;16982;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;tal-Uffiċċju tal-President Iranjan;MT;;;;16985;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Biuro Współpracy w zakresie Technologii w gabinecie prezydenta Iranu;PL;;;;16986;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Centrum Innowacji i Technologii;PL;;;;16987;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Gabinete de Cooperação Tecnológica da Presidência Iraniana;PT;;;;16988;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Centro de Inovação e Tecnologia;PT;;;;16989;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Biroul de cooperare tehnologică al Biroului președintelui iranian;RO;;;;17003;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Centrul pentru inovare și tehnologie;RO;;;;17004;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Technology Cooperation Office (TCO) vid den iranske presidentens kansli;SV;;;;17009;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5743;EU.1884.71;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;Tehran;;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);2493;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5744;EU.1906.55;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Yasa Part;;;;;8169;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5745;EU.1907.20;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Arfa Paint Company;;;;;8170;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5746;EU.1908.82;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Arfeh Company;;;;;8171;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5747;EU.1909.47;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Farasepehr Engineering Company;;;;;8172;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5748;EU.1910.72;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Hosseini Nejad Trading Co.;;;;;8173;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5749;EU.1911.37;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Iran Saffron Company or Iransaffron Co.;;;;;8174;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5750;EU.1912.2;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Shetab G.;;;;;8175;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5751;EU.1838.23;;;Date of listing: 26.7.2010;(Designation details: Date of listing: 26.7.2010);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Shetab Gaman;;;;;8176;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5751;EU.1838.23;;;Date of listing: 26.7.2010;(Designation details: Date of listing: 26.7.2010);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Taamin Gostaran Pishgaman Azar;;;;;118044;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5751;EU.1838.23;;;Date of listing: 26.7.2010;(Designation details: Date of listing: 26.7.2010);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;Teheran;Norouzi Alley, No 2, Larestan Street, Motahar i Avenue;;;;;NO;;00;UNKNOWN;118045;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5752;EU.1839.85;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Shetab Trading;;;;;8177;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5753;EU.1840.13;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Y.A.S. Co. Ltd;;;;;8178;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5754;EU.1841.75;;2010-07-26;;(Date of UN designation: 2010-07-26);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;FADAVI;Ali;;Ali FADAVI;;M;Rear Admiral;Deputy Commander-General of the Islamic Revolutionary Guard Corps \n(IRGC). Former Commander of IRGC Navy.;8179;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5755;EU.1842.40;;2010-07-26;;(Date of UN designation: 2010-07-26);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;FATAH;Parviz;;Parviz FATAH;;M;;Former Minister of Energy. Since July 2019, head of the “Mostazafan Foundation”, former member of the Board of Trustees of the Imam Khomeini Foundation.;8180;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5755;EU.1842.40;;2010-07-26;;(Date of UN designation: 2010-07-26);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;1282;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5757;EU.1843.5;;;;;P;person;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;Pakpur;Mohammad;;Mohammad Pakpur;;;Brig-Gen;Commander of IRGC Ground Forces;8182;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5758;EU.1844.67;;2010-07-26;;(Date of UN designation: 2010-07-26);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;QASEMI;Rostam;;Rostam QASEMI;;M;;Since 25 August 2021, Minister for Road and Urban Development. Former Commander of Khatam al-Anbiya.;8184;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5758;EU.1844.67;;2010-07-26;;(Date of UN designation: 2010-07-26);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;GHASEMI;Rostam;;Rostam GHASEMI;;;;;8185;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5758;EU.1844.67;;2010-07-26;;(Date of UN designation: 2010-07-26);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;Qassemi;Rostam;;Rostam Qassemi;;M;;;141444;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5758;EU.1844.67;;2010-07-26;;(Date of UN designation: 2010-07-26);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;1290;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5759;EU.1845.32;;;;;P;person;amendment;council;2020-06-19;2020-06-20;2020/847 (OJ L196);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.196.01.0001.01.ENG&toc=OJ:L:2020:196:TOC;;;;Hossein SALAMI;;;IRGC Brigadier-General;Commander of the IRGC;8186;EN;;amendment;council;2020-06-19;2020-06-20;2020/847 (OJ L196);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.196.01.0001.01.ENG&toc=OJ:L:2020:196:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5760;EU.2078.17;;2010-07-26;;(Date of UN designation: 2010-07-26)\n(Corrigendum 267/2012 (OJ L88) [corr. 04/12/2012-2]);E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Iranian Revolutionary Guard Corps;;;;;8187;EN;;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5760;EU.2078.17;;2010-07-26;;(Date of UN designation: 2010-07-26)\n(Corrigendum 267/2012 (OJ L88) [corr. 04/12/2012-2]);E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;IRGC;;;;;8188;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5760;EU.2078.17;;2010-07-26;;(Date of UN designation: 2010-07-26)\n(Corrigendum 267/2012 (OJ L88) [corr. 04/12/2012-2]);E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1524;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5761;EU.1953.68;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;IRGC-Air Force Al-Ghadir Missile Command;;;;;8189;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5761;EU.1953.68;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Luftstreitkräfte des Korps der Islamischen Revolutionsgarden – Raketenkommando Al Ghadir;DE;;;;8274;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5761;EU.1953.68;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;IRGC:n ilmavoimien Al-Ghadir ohjuskomentokeskus;FI;;;;8275;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5761;EU.1953.68;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Comando missilistico dell'aeronautica dell'IRGC Al-Ghadir;IT;;;;8276;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5761;EU.1953.68;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Força Aérea do CGRI Comando de Mísseis da Al-Ghadir;PT;;;;8277;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5761;EU.1953.68;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Velitelství raketového vojska vzdušných sil IRGC Al-Ghadir;CS;;;;8278;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5761;EU.1953.68;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Islamo revoliucijos gvardijos oro pajėgų Al-Ghadir raketų vadavietė;ET;;;;8279;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5761;EU.1953.68;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;IRGC Gaisa spēku Al-Ghadir raķešu komanda;LV;;;;8280;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5761;EU.1953.68;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Kmandant tal-Missili ta’ Al- Ghadir għall-Forza tal-Ajru tal- IRGC;MT;;;;8281;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5761;EU.1953.68;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Poveljstvo zračnih sil IRGC Al- Ghadir, pristojno za raketne izstrelke;SL;;;;8282;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5761;EU.1953.68;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Forțele Aeriene ale IRGG, unitatea de comandă a rachetelor Al-Ghadir;RO;;;;8283;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5762;EU.1954.33;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Naserin Vahid;;;;;8190;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5763;EU.1965.96;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;IRGC Qods Force;;;;;8191;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5763;EU.1965.96;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Quds-Truppe im Korps der Islamischen Revolutionsgarden;DE;;;;8284;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5763;EU.1965.96;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Forza Qods dell'IRGC;IT;;;;8285;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5763;EU.1965.96;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Qods-strijdkrachten van de IRG;NL;;;;8286;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5763;EU.1965.96;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Força Qods do CGRI;PT;;;;8287;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5763;EU.1965.96;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Síly al-Kuds islámských revolučních gard;CS;;;;8288;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5763;EU.1965.96;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Islamo revoliucijos gvardijos Qods pajėgos;ET;;;;8289;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5763;EU.1965.96;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Forțele Qods ale IRGC;RO;;;;8290;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5764;EU.2039.75;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Sepanir Oil and Gas Energy Engineering Company;;;;;8192;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5764;EU.2039.75;;;;;E;enterprise;repealing;commission;2012-03-24;2012-03-23;267/2012 (OJ L88);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:088:0001:0112:EN:PDF;;;;Sepah Nir;;;;;8193;EN;;amendment;commission;2010-07-27;2010-07-27;668/2010 (OJ L195);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:195:0025:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5793;EU.2291.0;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1621271);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Abdullah;Amir;;Amir Abdullah;;;;Former Kandahar Province Deputy Taliban Governor;103939;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5793;EU.2291.0;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1621271);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Amir Abdullah Sahib;;;;;103940;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5793;EU.2291.0;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1621271);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Karachi;;;;;;NO;;PK;PAKISTAN;103936;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5793;EU.2291.0;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1621271);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;YES;GREGORIAN;;;;Paktika Province;AF;AFGHANISTAN;103937;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5793;EU.2291.0;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1621271);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;103938;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;5794;EU.2292.62;;;;;P;person;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;Al-Aulaqi;Anwar;Nasser Abdulla;Anwar Nasser Abdulla Al-Aulaqi;;;;;8231;EN;;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5794;EU.2292.62;;;;;P;person;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;al-Aulaqi;Anwar;;Anwar al-Aulaqi;;;;;8232;EN;;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5794;EU.2292.62;;;;;P;person;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;al-Awlaki;Anwar;;Anwar al-Awlaki;;;;;8233;EN;;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5794;EU.2292.62;;;;;P;person;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;al-Awlaqi;Anwar;;Anwar al-Awlaqi;;;;;8234;EN;;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5794;EU.2292.62;;;;;P;person;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;Aulaqi;Anwar;Nasser;Anwar Nasser Aulaqi;;;;;8235;EN;;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5794;EU.2292.62;;;;;P;person;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;Aulaqi;Anwar;Nasser Abdullah;Anwar Nasser Abdullah Aulaqi;;;;;8236;EN;;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5794;EU.2292.62;;;;;P;person;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;Aulaqi;Anwar;Nasser Abdulla;Anwar Nasser Abdulla Aulaqi;;;;;8237;EN;;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5794;EU.2292.62;;;;;P;person;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-04-21;21;4;1971;;;NO;GREGORIAN;;;;Las Cruces, New Mexico;US;UNITED STATES;1285;EN;;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5794;EU.2292.62;;;;;P;person;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-04-22;22;4;1971;;;NO;GREGORIAN;;;;Las Cruces, New Mexico;US;UNITED STATES;1286;EN;;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5794;EU.2292.62;;;;;P;person;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;US;;598;EN;;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF +28/10/2022;5794;EU.2292.62;;;;;P;person;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;599;EN;;amendment;commission;2011-12-10;2011-12-08;1285/2011 (OJ L328);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:328:0034:0035:EN:PDF +28/10/2022;5795;EU.2272.60;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani.\nReportedly deceased as of 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621257);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqqani;Nasiruddin;;Nasiruddin Haqqani;;;;A leader of the Haqqani Network, which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan.;103944;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5795;EU.2272.60;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani.\nReportedly deceased as of 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621257);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqqani;Naseer;;Naseer Haqqani;;;;;103945;EN;;amendment;commission;2011-10-01;2011-10-01;968/2011 (OJ L257);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:257:0001:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5795;EU.2272.60;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani.\nReportedly deceased as of 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621257);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Dr. Naseer Haqqani;;;Dr.;;103946;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5795;EU.2272.60;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani.\nReportedly deceased as of 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621257);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqqani;Nassir;;Nassir Haqqani;;;;;103947;EN;;amendment;commission;2011-10-01;2011-10-01;968/2011 (OJ L257);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:257:0001:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5795;EU.2272.60;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani.\nReportedly deceased as of 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621257);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqqani;Nashir;;Nashir Haqqani;;;;;103948;EN;;amendment;commission;2011-10-01;2011-10-01;968/2011 (OJ L257);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:257:0001:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5795;EU.2272.60;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani.\nReportedly deceased as of 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621257);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Dr. Alim Ghair;;;Dr.;;103950;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5795;EU.2272.60;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani.\nReportedly deceased as of 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621257);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;PK;PAKISTAN;103941;EN;;amendment;commission;2011-10-01;2011-10-01;968/2011 (OJ L257);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:257:0001:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5795;EU.2272.60;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani.\nReportedly deceased as of 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621257);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;1973;YES;GREGORIAN;;;Neka District;;AF;AFGHANISTAN;1287;EN;Neka District, Paktika Province, Afghanistan;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5795;EU.2272.60;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(A leader of the Haqqani Network (TAe.012), which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan. Son of Jalaluddin Haqqani.\nReportedly deceased as of 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1621257);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;103943;EN;;amendment;commission;2011-10-01;2011-10-01;968/2011 (OJ L257);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:257:0001:0023:EN:PDF +28/10/2022;5796;EU.2274.87;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(Belongs to Ishaqzai tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1621285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Ishakzai;Gul;Agha;Gul Agha Ishakzai;;;;;103953;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5796;EU.2274.87;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(Belongs to Ishaqzai tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1621285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Gul Agha;;;;;103954;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5796;EU.2274.87;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(Belongs to Ishaqzai tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1621285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Gul Agha Akhund;;;;;103955;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5796;EU.2274.87;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(Belongs to Ishaqzai tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1621285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Hidayatullah;;;;;103956;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5796;EU.2274.87;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(Belongs to Ishaqzai tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1621285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Hidayatullah;;;;;103957;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5796;EU.2274.87;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(Belongs to Ishaqzai tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1621285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Hayadatullah;;;;;103958;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5796;EU.2274.87;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(Belongs to Ishaqzai tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1621285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;PK;PAKISTAN;103951;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5796;EU.2274.87;;2010-07-20;;(Date of UN designation: 2010-07-20)\n(Belongs to Ishaqzai tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 1621285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;YES;GREGORIAN;;;;Band-e-Temur, Maiwand District, Kandahar Province;AF;AFGHANISTAN;1288;EN;;amendment;commission;2014-03-15;2014-03-14;263/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0263&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5797;EU.2334.48;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Harakat-ul Jihad Islami;;;;;8307;EN;;amendment;commission;2010-09-04;2010-09-03;787/2010 (OJ L234);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:234:0011:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5797;EU.2334.48;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;HUJI;;;;;8308;EN;;amendment;commission;2010-09-04;2010-09-03;787/2010 (OJ L234);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:234:0011:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5797;EU.2334.48;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Movement of Islamic Holy War;;;;;8309;EN;;amendment;commission;2010-09-04;2010-09-03;787/2010 (OJ L234);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:234:0011:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5797;EU.2334.48;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Harkat-ul-Jihad-al Islami;;;;;8310;EN;;amendment;commission;2010-09-04;2010-09-03;787/2010 (OJ L234);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:234:0011:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5797;EU.2334.48;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Harkat-ul-Jehad-al-Islami;;;;;8311;EN;;amendment;commission;2010-09-04;2010-09-03;787/2010 (OJ L234);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:234:0011:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5797;EU.2334.48;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Harakat ul Jihad-e-Islami;;;;;8312;EN;;amendment;commission;2010-09-04;2010-09-03;787/2010 (OJ L234);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:234:0011:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5797;EU.2334.48;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Harakat-ul-Ansar;;;;;8313;EN;;amendment;commission;2010-09-04;2010-09-03;787/2010 (OJ L234);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:234:0011:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5797;EU.2334.48;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;HUA;;;;;8314;EN;;amendment;commission;2010-09-04;2010-09-03;787/2010 (OJ L234);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:234:0011:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5797;EU.2334.48;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Harkat-al-Jihad-ul Islami;;;;;8331;EN;;amendment;commission;2010-09-04;2010-09-03;787/2010 (OJ L234);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:234:0011:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5797;EU.2334.48;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Mouvement de la guerre sainte islamique;FR;;;;8332;EN;;amendment;commission;2010-09-04;2010-09-03;787/2010 (OJ L234);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:234:0011:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5797;EU.2334.48;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Movimento da Guerra Santa Islâmica;PT;;;;8333;EN;;amendment;commission;2010-09-04;2010-09-03;787/2010 (OJ L234);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:234:0011:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5797;EU.2334.48;;;;;E;enterprise;amendment;commission;2012-01-18;2012-01-17;34/2012 (OJ L15);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:015:0001:0019:EN:PDF;;;;Движение на ислямската свещена война;BG;;;;8334;EN;;amendment;commission;2010-09-04;2010-09-03;787/2010 (OJ L234);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:234:0011:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5803;EU.2301.53;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1684147);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Habib;;;;;16849;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5803;EU.2301.53;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1684147);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Habib Alizai;;;Haji;Has managed a drug trafficking network in Helmand Province, Afghanistan;18296;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5803;EU.2301.53;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1684147);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Hajji Agha Jan;;;;;103968;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5803;EU.2301.53;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1684147);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Agha Jan Alazai;;;;;103969;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5803;EU.2301.53;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1684147);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Loi Lala;;;;;103970;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5803;EU.2301.53;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1684147);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Loi Agha;;;;;103971;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5803;EU.2301.53;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1684147);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Agha Jan Alizai;;;;;111135;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5803;EU.2301.53;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1684147);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Agha JanAlizai;;;;;111136;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5803;EU.2301.53;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1684147);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Kandahar;AF;AFGHANISTAN;1303;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5803;EU.2301.53;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1684147);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-02-14;14;2;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;1305;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5803;EU.2301.53;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1684147);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;1307;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5803;EU.2301.53;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1684147);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-10-15;15;10;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;103961;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5803;EU.2301.53;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1684147);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;103963;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5803;EU.2301.53;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1684147);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YES;GREGORIAN;;Helmand Province;Musa Qala District;Yatimchai village;AF;AFGHANISTAN;111140;EN;Yatimchai village, Musa Qala District, Helmand Province, Afghanistan;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5803;EU.2301.53;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/1684147);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;103965;EN;;regulation;commission;2011-08-02;2011-08-01;753/2011 (OJ L199);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:199:0001:0022:EN:PDF +28/10/2022;5804;EU.2337.40;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(Linked by marriage to Mullah Ubaidullah Akhund Yar Mohammad Akhund. Belongs to Kakar tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4652885);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Saleh Mohammad Kakar Akhtar Muhammad;;;;;8367;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5804;EU.2337.40;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(Linked by marriage to Mullah Ubaidullah Akhund Yar Mohammad Akhund. Belongs to Kakar tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4652885);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Saleh Mohammad;;;;;103975;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5804;EU.2337.40;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(Linked by marriage to Mullah Ubaidullah Akhund Yar Mohammad Akhund. Belongs to Kakar tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4652885);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Kandahar Province;Daman District;;;;;NO;;AF;AFGHANISTAN;2650;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5804;EU.2337.40;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(Linked by marriage to Mullah Ubaidullah Akhund Yar Mohammad Akhund. Belongs to Kakar tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4652885);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;;;YES;GREGORIAN;;;;Nalghan Village, Panjwai District, Kandahar Province, Afghanistan;AF;AFGHANISTAN;1308;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5804;EU.2337.40;;2010-11-04;;(Date of UN designation: 2010-11-04)\n(Linked by marriage to Mullah Ubaidullah Akhund Yar Mohammad Akhund. Belongs to Kakar tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4652885);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;103973;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;5806;EU.3608.92;;2010-12-01;Date of UN designation: 1 December 2010.;(Date of UN designation: 2010-12-01)\n(Designation details: Date of UN designation: 1 December 2010.)\n(Gaston Iyamuremye is the 1st Vice-President of the FDLR, as well as the interim president. He also has the rank of Major General in the FDLR's armed wing, called FOCA. As of June 2016, Iyamuremye is in North Kivu province of the Democratic Republic of the Congo.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Iyamuremye;Gaston;;Gaston Iyamuremye;;;Brigadier General;"a) FDLR Interim President, b) FDLR-FOCA 1st Vice-President; c) FDLR-FOCA Major General";8390;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5806;EU.3608.92;;2010-12-01;Date of UN designation: 1 December 2010.;(Date of UN designation: 2010-12-01)\n(Designation details: Date of UN designation: 1 December 2010.)\n(Gaston Iyamuremye is the 1st Vice-President of the FDLR, as well as the interim president. He also has the rank of Major General in the FDLR's armed wing, called FOCA. As of June 2016, Iyamuremye is in North Kivu province of the Democratic Republic of the Congo.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Rumuli;;;;;8391;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5806;EU.3608.92;;2010-12-01;Date of UN designation: 1 December 2010.;(Date of UN designation: 2010-12-01)\n(Designation details: Date of UN designation: 1 December 2010.)\n(Gaston Iyamuremye is the 1st Vice-President of the FDLR, as well as the interim president. He also has the rank of Major General in the FDLR's armed wing, called FOCA. As of June 2016, Iyamuremye is in North Kivu province of the Democratic Republic of the Congo.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Byiringiro Victor Rumuli;;;;FDLR Interim President;8392;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5806;EU.3608.92;;2010-12-01;Date of UN designation: 1 December 2010.;(Date of UN designation: 2010-12-01)\n(Designation details: Date of UN designation: 1 December 2010.)\n(Gaston Iyamuremye is the 1st Vice-President of the FDLR, as well as the interim president. He also has the rank of Major General in the FDLR's armed wing, called FOCA. As of June 2016, Iyamuremye is in North Kivu province of the Democratic Republic of the Congo.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Victor Rumuri;;;;FDLR-FOCA 1st Vice-President;8393;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5806;EU.3608.92;;2010-12-01;Date of UN designation: 1 December 2010.;(Date of UN designation: 2010-12-01)\n(Designation details: Date of UN designation: 1 December 2010.)\n(Gaston Iyamuremye is the 1st Vice-President of the FDLR, as well as the interim president. He also has the rank of Major General in the FDLR's armed wing, called FOCA. As of June 2016, Iyamuremye is in North Kivu province of the Democratic Republic of the Congo.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Michel Byiringiro;;;;FDLR-FOCA Major General;8394;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5806;EU.3608.92;;2010-12-01;Date of UN designation: 1 December 2010.;(Date of UN designation: 2010-12-01)\n(Designation details: Date of UN designation: 1 December 2010.)\n(Gaston Iyamuremye is the 1st Vice-President of the FDLR, as well as the interim president. He also has the rank of Major General in the FDLR's armed wing, called FOCA. As of June 2016, Iyamuremye is in North Kivu province of the Democratic Republic of the Congo.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;North Kivu Province;;;;North Kivu Province;;NO;(Address: North Kivu Province, Democratic Republic of the Congo (as of June 2016).);CD;CONGO, Democratic Republic of (was Zaire);110764;EN;Address: North Kivu Province, Democratic Republic of the Congo (as of June 2016).;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5806;EU.3608.92;;2010-12-01;Date of UN designation: 1 December 2010.;(Date of UN designation: 2010-12-01)\n(Designation details: Date of UN designation: 1 December 2010.)\n(Gaston Iyamuremye is the 1st Vice-President of the FDLR, as well as the interim president. He also has the rank of Major General in the FDLR's armed wing, called FOCA. As of June 2016, Iyamuremye is in North Kivu province of the Democratic Republic of the Congo.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948;;;NO;GREGORIAN;;;;Musanze District (Northern Province);RW;RWANDA;1312;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5806;EU.3608.92;;2010-12-01;Date of UN designation: 1 December 2010.;(Date of UN designation: 2010-12-01)\n(Designation details: Date of UN designation: 1 December 2010.)\n(Gaston Iyamuremye is the 1st Vice-President of the FDLR, as well as the interim president. He also has the rank of Major General in the FDLR's armed wing, called FOCA. As of June 2016, Iyamuremye is in North Kivu province of the Democratic Republic of the Congo.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948;;;NO;GREGORIAN;;;;Ruhengeri;RW;RWANDA;1313;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5806;EU.3608.92;;2010-12-01;Date of UN designation: 1 December 2010.;(Date of UN designation: 2010-12-01)\n(Designation details: Date of UN designation: 1 December 2010.)\n(Gaston Iyamuremye is the 1st Vice-President of the FDLR, as well as the interim president. He also has the rank of Major General in the FDLR's armed wing, called FOCA. As of June 2016, Iyamuremye is in North Kivu province of the Democratic Republic of the Congo.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RW;;714;EN;;amendment;commission;2011-11-01;2011-10-25;1097/2011 (OJ L285);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:285:0002:0005:EN:PDF +28/10/2022;5807;EU.3734.6;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Mugaragu;Leodomir;;Leodomir Mugaragu;;;;FDLR/FOCA Chief of Staff, in charge of administration;8396;EN;;amendment;commission;2011-11-01;2011-10-25;1097/2011 (OJ L285);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:285:0002:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5807;EU.3734.6;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Manzi Leon;;;;;8397;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5807;EU.3734.6;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Leo Manzi;;;;;8398;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5807;EU.3734.6;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;North Kivu;Kikoma forest, Bogoyi, Walikale;NO;(FDLR HQ at Kikoma forest, Bogoyi, Walikale, North Kivu, Democratic Republic of the Congo (as of June 2011).);CD;CONGO, Democratic Republic of (was Zaire);111053;EN;FDLR HQ at Kikoma forest, Bogoyi, Walikale, North Kivu, Democratic Republic of the Congo (as of June 2011).;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5807;EU.3734.6;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954;;;NO;GREGORIAN;;;;Kigali;RW;RWANDA;1314;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5807;EU.3734.6;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;NO;GREGORIAN;;;;Rushashi (Northern Province);RW;RWANDA;1315;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5807;EU.3734.6;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;NO;GREGORIAN;;;;Kigali;RW;RWANDA;1316;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5807;EU.3734.6;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954;;;NO;GREGORIAN;;;;Rushashi (Northern Province);RW;RWANDA;1317;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5807;EU.3734.6;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RW;;111052;EN;;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN +28/10/2022;5808;EU.3634.41;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Nsanzubukire;Félicien;;Félicien Nsanzubukire;;;;a) FDLR-FOCA Subsector Commander, b) FDLR-FOCA Colonel;8399;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5808;EU.3634.41;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Fred Irakeza;;;;FDLR-FOCA Colonel;8400;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5808;EU.3634.41;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;South Kivu;;NO;(As of June 2016);CD;CONGO, Democratic Republic of (was Zaire);2682;EN;As of June 2016;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5808;EU.3634.41;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;NO;GREGORIAN;;;;Murama, Kinyinya, Rubungo, Kigali,;RW;RWANDA;1319;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5808;EU.3634.41;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;Kinyinya;Kigali;RW;RWANDA;110790;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5808;EU.3634.41;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;Rubungo;Kigali;RW;RWANDA;110791;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5808;EU.3634.41;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RW;;717;EN;;amendment;commission;2011-11-01;2011-10-25;1097/2011 (OJ L285);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:285:0002:0005:EN:PDF +28/10/2022;5809;EU.3650.86;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Zimurinda;Innocent;;Innocent Zimurinda;;;Colonel (Colonel in the FARDC);;8401;EN;;amendment;council;2015-04-21;2015-04-22;2015/614 (OJ L102);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5809;EU.3650.86;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Zimulinda;;;Zimulinda;;;;;14766;EN;;amendment;commission;2011-11-01;2011-10-25;1097/2011 (OJ L285);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:285:0002:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5809;EU.3650.86;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;Rubavu;;;;Mudende;;NO;;RW;RWANDA;2714;EN;;amendment;council;2015-04-21;2015-04-22;2015/614 (OJ L102);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5809;EU.3650.86;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-09-01;1;9;1972;;;NO;GREGORIAN;;;;Ngungu, Masisi Territory, North Kivu Province;CD;CONGO, Democratic Republic of (was Zaire);1318;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5809;EU.3650.86;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;;;NO;GREGORIAN;;;;Ngungu, Masisi Territory, North Kivu Province;CD;CONGO, Democratic Republic of (was Zaire);1320;EN;;amendment;commission;2010-12-23;2010-12-23;1250/2010 (OJ L341);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0011:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5809;EU.3650.86;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-03-16;16;3;1972;;;NO;GREGORIAN;;;;Ngungu, Masisi Territory, North Kivu Province;CD;CONGO, Democratic Republic of (was Zaire);2277;EN;;amendment;council;2014-12-01;2014-12-01;1275/2014 (OJ L346);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5809;EU.3650.86;;2010-12-01;;(Date of UN designation: 2010-12-01);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;718;EN;;amendment;commission;2011-11-01;2011-10-25;1097/2011 (OJ L285);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:285:0002:0005:EN:PDF +28/10/2022;5810;EU.4183.63;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Green Pine Associated Corporation;;;;Green Pine Associated Corporation (‘Green Pine’) has taken over many of the activities of the Korea Mining Development Trading Corporation (KOMID). KOMID was designated by the Sanctions Committee in April 2009 and is North Korea's primary arms dealer and main exporter of goods and equipment related to ballistic missiles and conventional weapons.;8403;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5810;EU.4183.63;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Saeng Pil Trading Corporation;;;;;113153;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5810;EU.4183.63;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;National Resources Development and Investment Corporation;;;;;113154;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5810;EU.4183.63;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Saeingp'il Company;;;;;113155;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5810;EU.4183.63;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Natural Resources Development and Investment Corporation;;;;;113156;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5810;EU.4183.63;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Ku'm- haeryong Company LTD;;;;;113157;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5810;EU.4183.63;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Jindallae;;;;;113158;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5810;EU.4183.63;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Chosun Chawo'n Kaebal T'uja Hoesa;;;;;113159;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5810;EU.4183.63;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Ch'o'ngsong Yo'nhap;;;;;113160;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5810;EU.4183.63;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Chongsong Yonhap;;;;;113161;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5810;EU.4183.63;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Cho'ngsong United Trading Company;;;;;113162;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5810;EU.4183.63;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;c/o Reconnaissance General Bureau Headquarters, Hyongjesan-Guyok;;;;;NO;PHONE[+850-2-18111(ext. 8327)]\nEMAIL[pac@silibank.com and kndic@co.chesin.com]\n(Email addresses: pac@silibank.com and kndic@co.chesin.com.\n\nTelephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2- 3814685 and +850-2- 3813372);KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;1621;EN;Email addresses: pac@silibank.com and kndic@co.chesin.com.\n\nTelephone number: +850-2-18111(ext. 8327). Facsimile number: +850-2- 3814685 and +850-2- 3813372;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5810;EU.4183.63;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;Nungrado;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;1622;EN;;amendment;commission;2014-10-08;2014-10-08;1059/2014 (OJ L293);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5810;EU.4183.63;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;Chilgol-1 dong;;;;Mangyongdae District;NO;(Chilgol-1 dong, Mangyongdae District, Pyongyang, North Korea);KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;113163;EN;Chilgol-1 dong, Mangyongdae District, Pyongyang, North Korea;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5810;EU.4183.63;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;Rakrang No. 1;;;;Rakrang District;NO;PHONE[+850-2-18111 (ext. 8327).]\nEMAIL[pac@silibank. com and kndic@co.chesin.com]\nFAX[+850-2-3814685 and +850-2-3813372]\n(Rakrang No. 1 Rakrang District Pyongyang Korea \n\nTelephone number: +850-2- 18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank. com and kndic@co.chesin.com);KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;113164;EN;Rakrang No. 1 Rakrang District Pyongyang Korea \n\nTelephone number: +850-2- 18111(ext. 8327). Facsimile number: +850-2-3814685 and +850-2-3813372. Email addresses: pac@silibank. com and kndic@co.chesin.com;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5811;EU.4185.90;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Heungjin Trading Company;;;;The Korea Heungjin Trading Company is used by KOMID for trading purposes.;8406;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5811;EU.4185.90;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Hunjin Trading Co.;;;;;17058;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5811;EU.4185.90;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Henjin Trading Co.;;;;;17059;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5811;EU.4185.90;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Hengjin Trading Company;;;;;17060;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5811;EU.4185.90;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;1615;EN;;amendment;commission;2014-10-08;2014-10-08;1059/2014 (OJ L293);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5812;EU.4126.49;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Taesong Trading Company;;;;Korea Taesong Trading Company has acted on behalf of KOMID in dealings with Syria.;8407;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5812;EU.4126.49;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;1616;EN;;amendment;commission;2010-12-23;2010-12-23;1251/2010 (OJ L341);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0015:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5813;EU.4102.90;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Second Economic Committee;;;;The Second Economic Committee is involved in key aspects of the DPRK's missile program. The Second Economic Committee is responsible for overseeing the production of the DPRK's ballistic missiles, and directs the activities of KOMID.;8408;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5813;EU.4102.90;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Kangdong;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;107914;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5814;EU.4223.22;;2010-12-22;;(Date of UN designation: 2010-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;JON Il-chun;;M;;Former Director of ‘Office 39’, an office of the Worker’s Party of Korea responsible for acquiring hard currency and former Director General of the State Development Bank.;8409;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5814;EU.4223.22;;2010-12-22;;(Date of UN designation: 2010-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;JON Il Chun;;M;;;112456;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5814;EU.4223.22;;2010-12-22;;(Date of UN designation: 2010-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;전일춘;;M;;;141951;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5814;EU.4223.22;;2010-12-22;;(Date of UN designation: 2010-12-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1941-08-24;24;8;1941;;;NO;GREGORIAN;;;;;00;UNKNOWN;112457;EN;;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5815;EU.4105.82;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Daesong Bank;;;;Daesong Bank is owned and controlled by Office 39 of the Workers Party of Korea, a designated entity.;8410;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5815;EU.4105.82;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Choson Taesong Unhaeng;;;;;8411;EN;;amendment;commission;2010-12-23;2010-12-23;1251/2010 (OJ L341);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0015:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5815;EU.4105.82;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Taesong Bank;;;;;8412;EN;;amendment;commission;2010-12-23;2010-12-23;1251/2010 (OJ L341);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0015:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5815;EU.4105.82;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;Segori-dong, Gyongheung St., Potonggang District;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;1618;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5815;EU.4105.82;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"KDBKKPPY (swiftbic-SWIFT BIC) ";NO;NO;NO;NO;NO;;;;;;;swiftbic;SWIFT BIC;;00;;110329;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;; +28/10/2022;5816;EU.4127.14;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Korea Daesong General Trading Corporation;;;;Korea Daesong General Trading Corporation is affiliated with Office 39 through minerals (gold) exports, metals, machinery, agricultural products, ginseng, jewellery, and light industry products.;8413;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5816;EU.4127.14;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Daesong Trading;;;;;8414;EN;;amendment;commission;2010-12-23;2010-12-23;1251/2010 (OJ L341);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0015:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5816;EU.4127.14;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Daesong Trading Company;;;;;8415;EN;;amendment;commission;2010-12-23;2010-12-23;1251/2010 (OJ L341);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0015:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5816;EU.4127.14;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Korea Daesong Trading Company;;;;;8416;EN;;amendment;commission;2010-12-23;2010-12-23;1251/2010 (OJ L341);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0015:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5816;EU.4127.14;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Korea Daesong Trading Corporation;;;;;8417;EN;;amendment;commission;2010-12-23;2010-12-23;1251/2010 (OJ L341);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:341:0015:0018:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5816;EU.4127.14;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Pulgan Gori Dong 1, Potonggang District;;;;;NO;PHONE[+850-2-18111-8208]\nEMAIL[daesong@star-co.net.kp]\nFAX[+850-2-381-4432];KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;1620;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5925;EU.2320.90;;2011-02-09;;(Date of UN designation: 2011-02-09)\n(Senior member of the Haqqani Network, which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan.\nBrother of Jalaluddin Haqqani and uncle of Sirajuddin Jallaloudine Haqqani. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1929286);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqqani;Khalil;Ahmed;Khalil Ahmed Haqqani;;M;Haji;;8610;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5925;EU.2320.90;;2011-02-09;;(Date of UN designation: 2011-02-09)\n(Senior member of the Haqqani Network, which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan.\nBrother of Jalaluddin Haqqani and uncle of Sirajuddin Jallaloudine Haqqani. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1929286);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqqani;Khalil;Al-Rahman;Khalil Al-Rahman Haqqani;;;;;8611;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5925;EU.2320.90;;2011-02-09;;(Date of UN designation: 2011-02-09)\n(Senior member of the Haqqani Network, which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan.\nBrother of Jalaluddin Haqqani and uncle of Sirajuddin Jallaloudine Haqqani. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1929286);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqqani;Khalil;ur Rahman;Khalil ur Rahman Haqqani;;;;;8960;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5925;EU.2320.90;;2011-02-09;;(Date of UN designation: 2011-02-09)\n(Senior member of the Haqqani Network, which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan.\nBrother of Jalaluddin Haqqani and uncle of Sirajuddin Jallaloudine Haqqani. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1929286);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Haqqani;Khaleel;;Khaleel Haqqani;;;;;8961;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5925;EU.2320.90;;2011-02-09;;(Date of UN designation: 2011-02-09)\n(Senior member of the Haqqani Network, which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan.\nBrother of Jalaluddin Haqqani and uncle of Sirajuddin Jallaloudine Haqqani. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1929286);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Dergey Manday Village, near Miram Shah, North Waziristan Agency (NWA), Federally Administered Tribal Areas (FATA);Near Dergey Manday Madrasa;;;;;NO;;PK;PAKISTAN;103980;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5925;EU.2320.90;;2011-02-09;;(Date of UN designation: 2011-02-09)\n(Senior member of the Haqqani Network, which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan.\nBrother of Jalaluddin Haqqani and uncle of Sirajuddin Jallaloudine Haqqani. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1929286);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Kayla Village near Miram Shah, North Waziristan Agency (NWA), Federally Administered Tribal Areas (FATA);;;;;;NO;;PK;PAKISTAN;103981;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5925;EU.2320.90;;2011-02-09;;(Date of UN designation: 2011-02-09)\n(Senior member of the Haqqani Network, which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan.\nBrother of Jalaluddin Haqqani and uncle of Sirajuddin Jallaloudine Haqqani. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1929286);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Peshawar;;;;;;NO;;PK;PAKISTAN;103988;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5925;EU.2320.90;;2011-02-09;;(Date of UN designation: 2011-02-09)\n(Senior member of the Haqqani Network, which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan.\nBrother of Jalaluddin Haqqani and uncle of Sirajuddin Jallaloudine Haqqani. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1929286);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Sarana Zadran Village, Paktia Province,;;;;;;NO;;AF;AFGHANISTAN;111355;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5925;EU.2320.90;;2011-02-09;;(Date of UN designation: 2011-02-09)\n(Senior member of the Haqqani Network, which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan.\nBrother of Jalaluddin Haqqani and uncle of Sirajuddin Jallaloudine Haqqani. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1929286);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-01-01;1;1;1966;;;NO;GREGORIAN;;;;Sarana Village, Garda Saray area, Waza Zadran District, Paktia Province;AF;AFGHANISTAN;1386;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5925;EU.2320.90;;2011-02-09;;(Date of UN designation: 2011-02-09)\n(Senior member of the Haqqani Network, which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan.\nBrother of Jalaluddin Haqqani and uncle of Sirajuddin Jallaloudine Haqqani. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1929286);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;1964;YES;GREGORIAN;;Paktia Province;;Sarana Village, Garda Saray area, Waza Zadran District;00;UNKNOWN;103983;EN;between 1958 and 1964;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;5925;EU.2320.90;;2011-02-09;;(Date of UN designation: 2011-02-09)\n(Senior member of the Haqqani Network, which operates out of North Waziristan in the Federally Administered Tribal Areas of Pakistan.\nBrother of Jalaluddin Haqqani and uncle of Sirajuddin Jallaloudine Haqqani. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1929286);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;103992;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF +28/10/2022;6017;EU.2393.89;;;;;P;person;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;‘Abd Al-Salam;Said;Jan;Said Jan ‘Abd Al-Salam;;M;;;8872;EN;;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6017;EU.2393.89;;;;;P;person;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;‘Abd-al-Salam;Sa’id;Jan;Sa’id Jan ‘Abd-al-Salam;;;;;8962;EN;;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6017;EU.2393.89;;;;;P;person;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;Dilawar Khan Zain Khan;;;;;8963;EN;;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6017;EU.2393.89;;;;;P;person;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;Qazi ‘Abdallah;;;;;8964;EN;;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6017;EU.2393.89;;;;;P;person;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;Qazi Abdullah;;;;;8965;EN;;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6017;EU.2393.89;;;;;P;person;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;Ibrahim Walid;;;;;8966;EN;;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6017;EU.2393.89;;;;;P;person;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;Qasi Sa’id Jan;;;;;8967;EN;;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6017;EU.2393.89;;;;;P;person;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;Said Jhan;;;;;8968;EN;;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6017;EU.2393.89;;;;;P;person;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;Farhan Khan;;;;;8969;EN;;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6017;EU.2393.89;;;;;P;person;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;Aziz Cairo;;;;;8970;EN;;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6017;EU.2393.89;;;;;P;person;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;Nangiali;;;;;8971;EN;;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6017;EU.2393.89;;;;;P;person;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-02-05;5;2;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;1455;EN;;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6017;EU.2393.89;;;;;P;person;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-01-01;1;1;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;1456;EN;;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6017;EU.2393.89;;;;;P;person;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OR801168 (passport-National passport) (afghan passport under the name of said jan ‘abd al- salam issued on 28.2.2006, expires on 27.2.2011);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;AF;;556;EN;afghan passport under the name of said jan ‘abd al- salam issued on 28.2.2006, expires on 27.2.2011;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;; +28/10/2022;6017;EU.2393.89;;;;;P;person;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4117921 (passport-National passport) (pakistani passport under the name of dilawar khan zain khan issued on 9.9.2008, expires on 9.9.2013);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;AF;;557;EN;pakistani passport under the name of dilawar khan zain khan issued on 9.9.2008, expires on 9.9.2013;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;; +28/10/2022;6017;EU.2393.89;;;;;P;person;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281020505755 (id-National identification card) ((kuwaiti civil identification number under the name said jan ‘abd al- salam));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;KW;;558;EN;(kuwaiti civil identification number under the name said jan ‘abd al- salam);amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;; +28/10/2022;6017;EU.2393.89;;;;;P;person;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;672;EN;;amendment;commission;2011-02-25;2011-02-24;178/2011 (OJ L51);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:051:0010:0011:EN:PDF +28/10/2022;6044;EU.3364.52;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;BEN ALI;Zine;El Abidine Ben Haj Hamda Ben Haj Hassen;Zine El Abidine Ben Haj Hamda Ben Haj Hassen BEN ALI;;M;;Ex-president of Tunisia;8874;EN;Son of Selma HASSEN. Married to Leïla TRABELSI. Deceased.;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6044;EU.3364.52;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1936-09-03;3;9;1936;;;NO;GREGORIAN;;;;Hammam-Sousse;TN;TUNISIA;1406;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6044;EU.3364.52;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00354671 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;509;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6044;EU.3364.52;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;121741;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN +28/10/2022;6045;EU.3365.17;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;TRABELSI;Leila;Bent Mohamed Ben Rhouma;Leila Bent Mohamed Ben Rhouma TRABELSI;;F;;;8875;EN;Daughter of Saida DHERIF. Married to Zine El Abidine BEN ALI.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6045;EU.3365.17;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-10-24;24;10;1956;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;1407;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6045;EU.3365.17;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00683530 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;510;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6045;EU.3365.17;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;620;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6046;EU.3366.79;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;TRABELSI;Moncef;Ben Mohamed Ben Rhouma;Moncef Ben Mohamed Ben Rhouma TRABELSI;;M;;managing director;8876;EN;Son of Saida DHERIF. Married to Yamina SOUIEI. Person is deceased.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6046;EU.3366.79;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Radès Ben Arous;11 Rue de France;;;;;NO;(Last known address);TN;TUNISIA;1646;EN;Last known address;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6046;EU.3366.79;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944-03-04;4;3;1944;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;1408;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6046;EU.3366.79;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;05000799 (id-National identification card) ((national identity card));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;551;EN;(national identity card);regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6046;EU.3366.79;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;621;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6047;EU.3367.44;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;BEN ALI;Sofiene;Ben Habib Ben Haj Hamda;Sofiene Ben Habib Ben Haj Hamda BEN ALI;;M;;Sales director;8877;EN;Son of Leila DEROUICHE.;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6047;EU.3367.44;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Tunis - El Manar 2;23 rue Ali Zlitni;;;;;NO;;TN;TUNISIA;1647;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6047;EU.3367.44;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-08-28;28;8;1974;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;1409;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6047;EU.3367.44;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"04622472 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;511;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6047;EU.3367.44;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;622;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6049;EU.3369.71;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;BEN ALI;Mehdi;Ben Tijani Ben Haj Hamda Ben Haj Hassen;Mehdi Ben Tijani Ben Haj Hamda Ben Haj Hassen BEN ALI;;M;;company director;8883;EN;Son of Paulette HAZAT.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6049;EU.3369.71;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Hammam-Sousse;Chouket El Arressa;;;;;NO;;TN;TUNISIA;1649;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6049;EU.3369.71;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-10-27;27;10;1966;;;NO;GREGORIAN;;;;Paris;FR;FRANCE;1411;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6049;EU.3369.71;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;05515496 (id-National identification card) ((dual nationality));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;513;EN;(dual nationality);amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;; +28/10/2022;6049;EU.3369.71;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;624;EN;Double nationality French and Tunisian;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN +28/10/2022;6049;EU.3369.71;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;FR;;121790;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN +28/10/2022;6052;EU.3372.26;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;MATERI;Fahd;Mohamed Sakher Ben Moncef Ben Mohamed Hfaiez;Fahd Mohamed Sakher Ben Moncef Ben Mohamed Hfaiez MATERI;;M;;;8891;EN;Son of Naïma BOUTIBA. Married to Nesrine BEN ALI.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6052;EU.3372.26;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-12-02;2;12;1981;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;1413;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6052;EU.3372.26;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"04682068 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;515;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6052;EU.3372.26;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;627;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6053;EU.3389.73;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;BEN ALI;Nesrine;Bent Zine El Abidine Ben Haj Hamda;Nesrine Bent Zine El Abidine Ben Haj Hamda BEN ALI;;F;;;8892;EN;Daughter of Leïla TRABELSI. Married to Fahd Mohamed Sakher MATERI.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6053;EU.3389.73;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-01-16;16;1;1987;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;1415;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6053;EU.3389.73;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00299177 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;516;EN;;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;; +28/10/2022;6053;EU.3389.73;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;629;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6054;EU.3390.1;;;;;P;person;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;BEN ALI;Halima;Bent Zine El Abidine Ben Haj Hamda;Halima Bent Zine El Abidine Ben Haj Hamda BEN ALI;;F;;;8893;EN;Other information: \ndaughter of Leïla TRABELSI;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6054;EU.3390.1;;;;;P;person;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;Tunis;the Presidential Palace;;;;;NO;(Last known address);TN;TUNISIA;1652;EN;Last known address;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6054;EU.3390.1;;;;;P;person;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1992-07-17;17;7;1992;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;1416;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6054;EU.3390.1;;;;;P;person;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;09006300 (other-Other identification number) (ID no);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;TN;;518;EN;ID no;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;; +28/10/2022;6054;EU.3390.1;;;;;P;person;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;631;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6056;EU.3392.28;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;TRABELSI;Belhassen;Ben Mohamed Ben Rhouma;Belhassen Ben Mohamed Ben Rhouma TRABELSI;;M;;managing director;8896;EN;Son of Saida DHERIF.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6056;EU.3392.28;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Tunis;32 Rue Hédi Karray - El Menzah;;;;;NO;;TN;TUNISIA;1654;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6056;EU.3392.28;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-11-05;5;11;1962;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;1417;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6056;EU.3392.28;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00777029 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;519;EN;;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;; +28/10/2022;6056;EU.3392.28;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;633;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6058;EU.3394.55;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;TRABELSI;Mohamed;Naceur Ben Mohamed Ben Rhouma;Mohamed Naceur Ben Mohamed Ben Rhouma TRABELSI;;M;;Acting manager of an agricultural undertaking;8899;EN;Son of Saida DHERIF. Married to Nadia MAKNI.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6058;EU.3394.55;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Tunis;20 Rue El Achfat - Carthage;;;;;NO;;TN;TUNISIA;1655;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6058;EU.3394.55;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-06-24;24;6;1948;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;1419;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6058;EU.3394.55;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00104253 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;521;EN;;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;; +28/10/2022;6058;EU.3394.55;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;635;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6059;EU.3395.20;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;TRABELSI;Jalila;Bent Mohamed Ben Rhouma;Jalila Bent Mohamed Ben Rhouma TRABELSI;;F;;managing director;8900;EN;Daughter of Saida DHERIF. Married to Mohamed MAHJOUB.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6059;EU.3395.20;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Tunis;21 Rue d'Aristote - Carthage Salammbô;;;;;NO;(Last known address);TN;TUNISIA;1656;EN;Last known address;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6059;EU.3395.20;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-02-19;19;2;1953;;;NO;GREGORIAN;;;;Radès;00;UNKNOWN;1421;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6059;EU.3395.20;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00403106 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;522;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6059;EU.3395.20;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;637;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6060;EU.3396.82;;;;;P;person;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;BOUAOUINA;Ghazoua;Bent Hamed Ben Taher;Ghazoua Bent Hamed Ben Taher BOUAOUINA;;F;;;8901;EN;Other information: daughter of Hayet BEN ALI, married to Badreddine BENNOUR;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6060;EU.3396.82;;;;;P;person;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;Sousse;rue Ibn Maja - Khezama est;;;;;NO;(Last known address);TN;TUNISIA;1658;EN;Last known address;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6060;EU.3396.82;;;;;P;person;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-08-30;30;8;1982;;;NO;GREGORIAN;;;;Monastir;00;UNKNOWN;1422;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6060;EU.3396.82;;;;;P;person;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;08434380 (other-Other identification number) (ID no);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;TN;;524;EN;ID no;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;; +28/10/2022;6060;EU.3396.82;;;;;P;person;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;640;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6061;EU.3397.47;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;TRABELSI;Mohamed;Imed Ben Mohamed Naceur Ben Mohamed;Mohamed Imed Ben Mohamed Naceur Ben Mohamed TRABELSI;;M;;businessman;8903;EN;Son of Najia JERIDI.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6061;EU.3397.47;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;124 Avenue Habib Bourguiba - Carthage presidence;;;;;NO;(Last known address);TN;TUNISIA;1660;EN;Last known address;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6061;EU.3397.47;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-08-26;26;8;1974;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;1423;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6061;EU.3397.47;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"05417770 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;526;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6061;EU.3397.47;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;638;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6063;EU.3407.3;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;BOUAOUINA;Douraied;Ben Hamed Ben Taher;Douraied Ben Hamed Ben Taher BOUAOUINA;;M;;company director;8906;EN;Son of Hayet BEN ALI.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6063;EU.3407.3;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Hammam-Sousse;17 avenue de la République;;;;;NO;;00;UNKNOWN;1661;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6063;EU.3407.3;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-10-08;8;10;1978;;;NO;GREGORIAN;;;;Hammam - Sousse;00;UNKNOWN;1425;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6063;EU.3407.3;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"05590835 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;527;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6063;EU.3407.3;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;641;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6064;EU.3408.65;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;TRABELSI;Mohamed;Adel Ben Mohamed Ben Rehouma;Mohamed Adel Ben Mohamed Ben Rehouma TRABELSI;;M;;managing director;8908;EN;Son of Saida DHERIF. Married to Souad BEN JEMIA.\nPerson is deceased.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6064;EU.3408.65;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Gammarth;3 Rue de la Colombe - Gammarth Supérieur;;;;;NO;(Last known address);TN;TUNISIA;1662;EN;Last known address;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6064;EU.3408.65;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-04-26;26;4;1950;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;1426;EN;;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6064;EU.3408.65;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;00178522 (id-National identification card) ((national identity card));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;528;EN;(national identity card);regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6064;EU.3408.65;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;642;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6066;EU.3410.55;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;TRABELSI;Mohamed;Mourad Ben Mohamed Ben Rehouma;Mohamed Mourad Ben Mohamed Ben Rehouma TRABELSI;;M;;CEO;8909;EN;Son of Saida DHERIF. Married to Hela BELHAJ.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6066;EU.3410.55;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Tunis;20 Rue Ibn Chabat - Salammbô - Carthage;;;;;NO;;TN;TUNISIA;1663;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6066;EU.3410.55;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-09-25;25;9;1955;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;1427;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6066;EU.3410.55;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"05150331 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;529;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6066;EU.3410.55;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;668;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6067;EU.3411.20;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;TRABELSI;Samira;Bent Mohamed Ben Rhouma;Samira Bent Mohamed Ben Rhouma TRABELSI;;F;;sales director;8910;EN;Daughter of Saida DHERIF. Married to Mohamed Montassar MEHERZI.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6067;EU.3411.20;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;La Marsa;4 Rue Taoufik EI Hakim;;;;;NO;(Last known address);TN;TUNISIA;1664;EN;Last known address;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6067;EU.3411.20;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-12-27;27;12;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;1429;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6067;EU.3411.20;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00166569 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;530;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6067;EU.3411.20;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;643;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6068;EU.3412.82;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;MEHERZI;Mohamed;Montassar Ben Kbaier Ben Mohamed;Mohamed Montassar Ben Kbaier Ben Mohamed MEHERZI;;M;;CEO;8914;EN;Son of Fatma SFAR. Married to Samira TRABELSI.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6068;EU.3412.82;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;La Marsa;4 Rue Taoufik El Hakim;;;;;NO;(Last known address);TN;TUNISIA;1666;EN;Last known address;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6068;EU.3412.82;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-05-05;5;5;1959;;;NO;GREGORIAN;;;;La Marsa;TN;TUNISIA;1430;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6068;EU.3412.82;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00046988 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;532;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6068;EU.3412.82;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;645;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6070;EU.3417.4;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;TRABELSI;Nefissa;Bent Mohamed Ben Rhouma;Nefissa Bent Mohamed Ben Rhouma TRABELSI;;F;;;8918;EN;Daughter of Saida DHERIF. Married to Habib ZAKIR.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6070;EU.3417.4;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Gammarth Supérieur;4 Rue de la Mouette;;;;;NO;;00;UNKNOWN;1668;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6070;EU.3417.4;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-02-01;1;2;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;1432;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6070;EU.3417.4;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00235016 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;535;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6070;EU.3417.4;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;648;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6073;EU.3420.56;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;BEN ZAKIR;Habib;Ben Kaddour Ben Mustapha;Habib Ben Kaddour Ben Mustapha BEN ZAKIR;;M;;property developer;8925;EN;Son of Saida BEN ABDALLAH. Married to Nefissa TRABELSI.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6073;EU.3420.56;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Gammarth Supérieur;4 Rue Ennawras;;;;;NO;;00;UNKNOWN;1671;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6073;EU.3420.56;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-03-05;5;3;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;1434;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6073;EU.3420.56;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00547946 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;536;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6073;EU.3420.56;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;650;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6074;EU.3421.21;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;BEN ALI;Slaheddine;Ben Haj Hamda Ben Haj Hassen;Slaheddine Ben Haj Hamda Ben Haj Hassen BEN ALI;;M;;retired;8926;EN;Son of Selma HASSEN, retired, widower of Selma MANSOUR.;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6074;EU.3421.21;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Monastir;255 cité El Bassatine;;;;;NO;;00;UNKNOWN;1672;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6074;EU.3421.21;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1938-10-28;28;10;1938;;;NO;GREGORIAN;;;;;00;UNKNOWN;1436;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6074;EU.3421.21;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"02810614 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;538;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6074;EU.3421.21;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;651;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6075;EU.3422.83;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;TRABELSI;Moez;Ben Moncef Ben Mohamed;Moez Ben Moncef Ben Mohamed TRABELSI;;M;;managing director, property developer;8928;EN;Son of Yamina SOUIEI.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6075;EU.3422.83;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Tunis;Rue du Lac Turkana-Les Berges du Lac - Apartment block Amine El Bouhaira;;;;;NO;;TN;TUNISIA;1673;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6075;EU.3422.83;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-07-03;3;7;1973;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;1437;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6075;EU.3422.83;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"05411511 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;539;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6075;EU.3422.83;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;652;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6076;EU.3423.48;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;BEN ALI;Najet;Bent Haj Hamda Ben Raj Hassen;Najet Bent Haj Hamda Ben Raj Hassen BEN ALI;;F;;company manager;8929;EN;Daughter of Selma HASSEN. Married to Sadok Habib MHIRI.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6076;EU.3423.48;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Sousse;avenue de l'Imam Muslim - Khezama ouest;;;;;NO;;00;UNKNOWN;1675;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6076;EU.3423.48;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-09-18;18;9;1956;;;NO;GREGORIAN;;;;Sousse;00;UNKNOWN;1439;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6076;EU.3423.48;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"02804872 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;540;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6076;EU.3423.48;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;653;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6077;EU.3424.13;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;NACEF;Lilia;Bent Noureddine Ben Ahmed;Lilia Bent Noureddine Ben Ahmed NACEF;;F;;managing director;8931;EN;Daughter of Mounira TRABELSI (sister of Leila TRABELSI). Married to Mourad MEHDOUI.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6077;EU.3424.13;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Tunis;41 Rue Garibaldi;;;;;NO;;TN;TUNISIA;1674;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6077;EU.3424.13;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-06-25;25;6;1975;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;1438;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6077;EU.3424.13;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"05417907 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;541;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6077;EU.3424.13;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;654;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6078;EU.3425.75;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;BEN ALI;Hayet;Bent Haj Hamda Ben Haj Hassen;Hayet Bent Haj Hamda Ben Haj Hassen BEN ALI;;F;;Tunisair representative;8932;EN;Daughter of Selma HASSEN. Married to Fathi REFAT.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6078;EU.3425.75;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Hammam-Sousse;17 avenue de la République;;;;;NO;;00;UNKNOWN;1677;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6078;EU.3425.75;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-05-16;16;5;1952;;;NO;GREGORIAN;;;;Hammam-Sousse;00;UNKNOWN;1440;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6078;EU.3425.75;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"02914657 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;542;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6078;EU.3425.75;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;655;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6079;EU.3440.58;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;MEHDOUI;Mourad;Ben Hédi Ben Ali;Mourad Ben Hédi Ben Ali MEHDOUI;;M;;CEO;8933;EN;Son of de Neila BARTAJI. married to Lilia NACEF.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6079;EU.3440.58;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Tunis;41 Rue Garibaldi;;;;;NO;;TN;TUNISIA;1676;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6079;EU.3440.58;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-05-03;3;5;1962;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;1441;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6079;EU.3440.58;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"05189459 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;543;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6079;EU.3440.58;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;656;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6080;EU.3441.23;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;BEN ALI;Faouzi;Ben Haj Hamda Ben Haj Hassen;Faouzi Ben Haj Hamda Ben Haj Hassen BEN ALI;;M;;managing director;8935;EN;Married to Zohra BEN AMMAR. Person is deceased.;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6080;EU.3441.23;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Hammam - Sousse;rue El Moez;;;;;NO;;00;UNKNOWN;1678;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6080;EU.3441.23;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947-03-13;13;3;1947;;;NO;GREGORIAN;;;;Hammam-Sousse;00;UNKNOWN;1442;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6080;EU.3441.23;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;02800443 (id-National identification card) ((identity card));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;544;EN;(identity card);regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6080;EU.3441.23;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;657;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6081;EU.3442.85;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;TRABELSI;Houssem;Ben Mohamed Naceur Ben Mohamed;Houssem Ben Mohamed Naceur Ben Mohamed TRABELSI;;M;;CEO;8937;EN;Son of Najia JERIDI.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6081;EU.3442.85;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Tunis;housing estate Erriadh.2-Gammarth;;;;;NO;;TN;TUNISIA;1679;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6081;EU.3442.85;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-09-18;18;9;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;1443;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6081;EU.3442.85;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"05412560 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;545;EN;;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;; +28/10/2022;6081;EU.3442.85;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;658;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6082;EU.3443.50;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;BEN ALI;Farid;Ben Haj Hamda Ben Haj Hassen;Farid Ben Haj Hamda Ben Haj Hassen BEN ALI;;M;;press photographer in Germany;8938;EN;Son of Selma HASSEN.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6082;EU.3443.50;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Hammam - Sousse;11 rue Sidi el Gharbi;;;;;NO;;00;UNKNOWN;1680;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6082;EU.3443.50;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-11-22;22;11;1949;;;NO;GREGORIAN;;;;Hammam-Sousse;00;UNKNOWN;1444;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6082;EU.3443.50;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"02951793 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;546;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6082;EU.3443.50;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;659;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6084;EU.3445.77;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;ZARROUK;Slim;Ben Mohamed Salah Ben Ahmed;Slim Ben Mohamed Salah Ben Ahmed ZARROUK;;M;;CEO;8940;EN;Son of Maherzia GUEDIRA. Married to Ghazoua BEN ALI.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6084;EU.3445.77;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Carthage;49 avenue Habib Bourguiba;;;;;NO;;00;UNKNOWN;1682;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6084;EU.3445.77;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-08-13;13;8;1960;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;1445;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6084;EU.3445.77;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00642271 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;548;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6084;EU.3445.77;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;660;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6085;EU.3446.42;;;;;P;person;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;BEN ALI;Ghazoua;Bent Zine El Abidine Ben Haj Hamda;Ghazoua Bent Zine El Abidine Ben Haj Hamda BEN ALI;;F;;medical doctor;8943;EN;Other information: \nmedical doctor, daughter of Naïma EL KEFI, married to Slim ZARROUK;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6085;EU.3446.42;;;;;P;person;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;Carthage;49 avenue Habib Bourguiba;;;;;NO;(Last known address);TN;TUNISIA;1683;EN;Last known address;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6085;EU.3446.42;;;;;P;person;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-03-08;8;3;1963;;;NO;GREGORIAN;;;;Le Bardo;00;UNKNOWN;1446;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6085;EU.3446.42;;;;;P;person;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;00589758 (other-Other identification number) (ID no);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;TN;;549;EN;ID no;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;; +28/10/2022;6085;EU.3446.42;;;;;P;person;amendment;council;2022-01-28;2022-01-29;2022/113 (OJ L19);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.019.01.0007.01.ENG&toc=OJ%3AL%3A2022%3A019%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;662;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6088;EU.3564.79;;;;(Daughter of Naïma EL KEFI, married to Mohamed Marwan MABROUK, holder of NIC No 05409131. \n\nPerson subject to judicial investigations by the Tunisian authorities for complicity in the misappropriation of public monies by a public office-holder, complicity in the misuse of office by a public office-holder to procure an unjustified advantage for a third party and to cause a loss to the administration, and exerting wrongful influence over a public office- holder with a view to obtaining directly or indirectly an advantage for another person.);P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;BEN ALI;Sirine;Bent Zine El Abidine Ben Haj Hamda;Sirine Bent Zine El Abidine Ben Haj Hamda BEN ALI;;F;;;110685;EN;Daughter of Naïma EL KEFI. Married to Mohamed Marwan MABROUK.;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6088;EU.3564.79;;;;(Daughter of Naïma EL KEFI, married to Mohamed Marwan MABROUK, holder of NIC No 05409131. \n\nPerson subject to judicial investigations by the Tunisian authorities for complicity in the misappropriation of public monies by a public office-holder, complicity in the misuse of office by a public office-holder to procure an unjustified advantage for a third party and to cause a loss to the administration, and exerting wrongful influence over a public office- holder with a view to obtaining directly or indirectly an advantage for another person.);P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;BEN ALI;Cyrine;Bent Zine El Abidine Ben Haj Hamda;Cyrine Bent Zine El Abidine Ben Haj Hamda BEN ALI;;;;;110686;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6088;EU.3564.79;;;;(Daughter of Naïma EL KEFI, married to Mohamed Marwan MABROUK, holder of NIC No 05409131. \n\nPerson subject to judicial investigations by the Tunisian authorities for complicity in the misappropriation of public monies by a public office-holder, complicity in the misuse of office by a public office-holder to procure an unjustified advantage for a third party and to cause a loss to the administration, and exerting wrongful influence over a public office- holder with a view to obtaining directly or indirectly an advantage for another person.);P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-08-21;21;8;1971;;;NO;GREGORIAN;;;;Le Bardo;00;UNKNOWN;1448;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6088;EU.3564.79;;;;(Daughter of Naïma EL KEFI, married to Mohamed Marwan MABROUK, holder of NIC No 05409131. \n\nPerson subject to judicial investigations by the Tunisian authorities for complicity in the misappropriation of public monies by a public office-holder, complicity in the misuse of office by a public office-holder to procure an unjustified advantage for a third party and to cause a loss to the administration, and exerting wrongful influence over a public office- holder with a view to obtaining directly or indirectly an advantage for another person.);P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"05409131 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;552;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6088;EU.3564.79;;;;(Daughter of Naïma EL KEFI, married to Mohamed Marwan MABROUK, holder of NIC No 05409131. \n\nPerson subject to judicial investigations by the Tunisian authorities for complicity in the misappropriation of public monies by a public office-holder, complicity in the misuse of office by a public office-holder to procure an unjustified advantage for a third party and to cause a loss to the administration, and exerting wrongful influence over a public office- holder with a view to obtaining directly or indirectly an advantage for another person.);P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;x599070 (passport-National passport) (valid from 2016-11-01 to 2021-11-21)(Holder of Tunisian Passport No x599070 issued in November 2016 expiring on 21.11.2021.);NO;NO;NO;NO;NO;;;2016-11-01;2021-11-21;;;passport;National passport;;TN;;110684;EN;Holder of Tunisian Passport No x599070 issued in November 2016 expiring on 21.11.2021.;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;; +28/10/2022;6088;EU.3564.79;;;;(Daughter of Naïma EL KEFI, married to Mohamed Marwan MABROUK, holder of NIC No 05409131. \n\nPerson subject to judicial investigations by the Tunisian authorities for complicity in the misappropriation of public monies by a public office-holder, complicity in the misuse of office by a public office-holder to procure an unjustified advantage for a third party and to cause a loss to the administration, and exerting wrongful influence over a public office- holder with a view to obtaining directly or indirectly an advantage for another person.);P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;664;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6089;EU.3449.34;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;BEN GAIED;Mehdi;Ben Ridha Ben Mohamed;Mehdi Ben Ridha Ben Mohamed BEN GAIED;;M;;CEO of Stafim Peugeot;8951;EN;Son of de Kaouther Feriel HAMZA.;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6089;EU.3449.34;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Tunis;4 Rue Mohamed Makhlouf - El Manar.2;;;;;NO;;TN;TUNISIA;1686;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6089;EU.3449.34;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-01-29;29;1;1988;;;NO;GREGORIAN;;;;;00;UNKNOWN;1450;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6089;EU.3449.34;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;669;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6090;EU.3450.59;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;CHIBOUB;Mohamed;Slim Ben Mohamed Hassen Ben Salah;Mohamed Slim Ben Mohamed Hassen Ben Salah CHIBOUB;;M;;CEO;8952;EN;Son of Leïla CHAIBI. Married to Dorsaf BEN ALI.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6090;EU.3450.59;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Tunis;rue du Jardin - Sidi Bousaid;;;;;NO;;TN;TUNISIA;1687;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6090;EU.3450.59;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-01-13;13;1;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;1453;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6090;EU.3450.59;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00400688 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;554;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;; +28/10/2022;6090;EU.3450.59;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;666;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6091;EU.3451.24;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;BEN ALI;Dorsaf;Bent Zine El Abidine Ben Haj Hamda;Dorsaf Bent Zine El Abidine Ben Haj Hamda BEN ALI;;F;;;8953;EN;Daughter of Naïma EL KEFI. Married to Mohamed Slim CHIBOUB.;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6091;EU.3451.24;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;Tunis;5 Rue El Montazah - Sidi Bousaid;;;;;NO;;TN;TUNISIA;1688;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6091;EU.3451.24;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-07-05;5;7;1965;;;NO;GREGORIAN;;;;Le Bardo;00;UNKNOWN;1451;EN;;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6091;EU.3451.24;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00589759 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;555;EN;;amendment;council;2016-01-29;2016-01-30;2016/111 (OJ L23);TUN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0111&from=EN;;;;;;;;;;;;; +28/10/2022;6091;EU.3451.24;;;;;P;person;amendment;council;2020-01-28;2020-01-29;2020/115 (OJ L22);TUN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;667;EN;;regulation;commission;2011-02-05;2011-02-04;101/2011 (OJ L31);TUN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:031:0001:0012:EN:PDF +28/10/2022;6092;EU.3829.86;LYi.009;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(UN ID: LYi.009)\n(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).);P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;AISHA MUAMMAR MUHAMMED ABU MINYAR QADHAFI;EN;;;;105186;EN;;amendment;council;2015-05-27;2015-05-28;2015/814 (OJ L 129);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_129_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6092;EU.3829.86;LYi.009;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(UN ID: LYi.009)\n(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).);P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;Aisha Muhammed Abdul Salam;EN;;;;107522;EN;;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6092;EU.3829.86;LYi.009;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(UN ID: LYi.009)\n(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).);P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;((Believed status/location: Sultanate of Oman));OM;OMAN;105183;EN;(Believed status/location: Sultanate of Oman);amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6092;EU.3829.86;LYi.009;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(UN ID: LYi.009)\n(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).);P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-01-01;1;1;1978;;;NO;GREGORIAN;;;;Tripoli;LY;LIBYA;122751;EN;;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6092;EU.3829.86;LYi.009;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(UN ID: LYi.009)\n(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).);P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"428720 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;LY;;105184;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;; +28/10/2022;6092;EU.3829.86;LYi.009;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(UN ID: LYi.009)\n(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).);P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215215 (passport-National passport) (name on doc. 'Aisha Muhammed Abdul Salam')(Aisha Muhammed Abdul Salam);NO;NO;NO;NO;NO;;;;;;(name on doc. 'Aisha Muhammed Abdul Salam');passport;National passport;;LY;;105185;EN;Aisha Muhammed Abdul Salam;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;; +28/10/2022;6092;EU.3829.86;LYi.009;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(UN ID: LYi.009)\n(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).);P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98606612 (other-Other identification number) (National identification no.);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;122752;EN;National identification no.;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;; +28/10/2022;6092;EU.3829.86;LYi.009;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(UN ID: LYi.009)\n(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).);P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"B/011641 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;122753;EN;;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;; +28/10/2022;6092;EU.3829.86;LYi.009;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(UN ID: LYi.009)\n(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).);P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;03824970 (passport-National passport) (on 2014-05-04 in Muscat valid to 2024-05-03);NO;NO;NO;NO;NO;;2014-05-04;;2024-05-03;;;passport;National passport;Muscat;OM;;122754;EN;;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;; +28/10/2022;6093;EU.3830.14;;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;QADHAFI;Hannibal;Muammar;Hannibal Muammar QADHAFI;;M;;;8973;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6093;EU.3830.14;;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Lebanon (In custody));LB;LEBANON;111614;EN;Lebanon (In custody);amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6093;EU.3830.14;;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-09-20;20;9;1975;;;NO;GREGORIAN;;;;Tripoli;LY;LIBYA;1458;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6093;EU.3830.14;;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"B/002210 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;559;EN;;amendment;council;2015-05-27;2015-05-28;2015/814 (OJ L 129);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_129_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;6094;EU.3848.26;;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).)\n(Believed status/location: deceased.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;QADHAFI;Khamis;Muammar;Khamis Muammar QADHAFI;;M;;;8974;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6094;EU.3848.26;;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).)\n(Believed status/location: deceased.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978;;;NO;GREGORIAN;;;;Tripoli;LY;LIBYA;1459;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6095;EU.3850.16;;2011-02-26;UN listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: UN listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).)\n(Believed status/location: deceased.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;QADHAFI;Muammar;Mohammed Abu Minyar;Muammar Mohammed Abu Minyar QADHAFI;;M;;Leader of the Revolution, Supreme Commander of Armed Forces;8975;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6095;EU.3850.16;;2011-02-26;UN listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: UN listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).)\n(Believed status/location: deceased.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1942;;;NO;GREGORIAN;;;;Sirte;LY;LIBYA;1460;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6096;EU.3426.40;;2011-02-26;;(Date of UN designation: 2011-02-26)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on October 20 2011.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;QADHAFI;Mutassim;;Mutassim QADHAFI;;M;;National Security Adviser;8976;EN;;amendment;commission;2013-01-23;2013-01-22;50/2013 (OJ L20);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:020:0029:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6096;EU.3426.40;;2011-02-26;;(Date of UN designation: 2011-02-26)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on October 20 2011.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;MUATASIMBLLAH;EN;;;;109282;EN;;amendment;council;2016-05-05;2016-05-05;2016/690 (OJ L120);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_120_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6096;EU.3426.40;;2011-02-26;;(Date of UN designation: 2011-02-26)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on October 20 2011.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;MUATASMBLLA;EN;;;;109283;EN;;amendment;council;2016-05-05;2016-05-05;2016/690 (OJ L120);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_120_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6096;EU.3426.40;;2011-02-26;;(Date of UN designation: 2011-02-26)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on October 20 2011.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;MOATASSAM;EN;;;;109284;EN;;amendment;council;2016-05-05;2016-05-05;2016/690 (OJ L120);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_120_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6096;EU.3426.40;;2011-02-26;;(Date of UN designation: 2011-02-26)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on October 20 2011.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;MUTASSIM BILLAH ABUMINYAR QADHAFI;EN;;;;109285;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6096;EU.3426.40;;2011-02-26;;(Date of UN designation: 2011-02-26)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on October 20 2011.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;ALMUATESEM BELLAH MUAMMER QADHAFI;EN;;;;109286;EN;;amendment;council;2016-05-05;2016-05-05;2016/690 (OJ L120);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_120_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6096;EU.3426.40;;2011-02-26;;(Date of UN designation: 2011-02-26)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on October 20 2011.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976;;;NO;GREGORIAN;;;;Tripoli;LY;LIBYA;1461;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6096;EU.3426.40;;2011-02-26;;(Date of UN designation: 2011-02-26)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on October 20 2011.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-02-05;5;2;1974;;;NO;GREGORIAN;;;;Tripoli;LY;LIBYA;111615;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6096;EU.3426.40;;2011-02-26;;(Date of UN designation: 2011-02-26)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze). Believed status/location: deceased. Reportedly deceased in Sirte, Libya, on October 20 2011.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"B/001897 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;LY;;109281;EN;;amendment;council;2016-05-05;2016-05-05;2016/690 (OJ L120);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_120_R_0001&from=EN;;;;;;;;;;;;; +28/10/2022;6097;EU.3858.27;;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).)\n(Believed status/location: Libya.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;QADHAFI;Saif;al-Islam;Saif al-Islam QADHAFI;;M;;Director, Qadhafi Foundation;8977;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6097;EU.3858.27;;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).)\n(Believed status/location: Libya.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;LY;LIBYA;105192;EN;;amendment;council;2015-05-27;2015-05-28;2015/814 (OJ L 129);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_129_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6097;EU.3858.27;;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).)\n(Believed status/location: Libya.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-06-25;25;6;1972;;;NO;GREGORIAN;;;;Tripoli;LY;LIBYA;1462;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6097;EU.3858.27;;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).)\n(Believed status/location: Libya.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"B014995 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;LY;;560;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;; +28/10/2022;6101;EU.3347.42;;2011-02-28;;(Date of UN designation: 2011-02-28);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;ABU SHAARIYA;;M;;Deputy Head, External Security Organisation;8981;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6105;EU.3361.60;;2011-02-28;;(Date of UN designation: 2011-02-28);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;DIBRI;Abdulqader;Yusef;Abdulqader Yusef DIBRI;;;;Head of Muammar QADHAFI's personal security;8985;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6105;EU.3361.60;;2011-02-28;;(Date of UN designation: 2011-02-28);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946;;;NO;GREGORIAN;;;;Houn;LY;LIBYA;1466;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6106;EU.3886.3;LYi.006;2011-02-26;;(UN ID: LYi.006)\n(Date of UN designation: 2011-02-26)\n(Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).);P;person;amendment;council;2022-09-12;2022-09-13;2022/1502 (OJ L235);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.235.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A235%3ATOC;DORDA;Abu;Zayd Umar;Abu Zayd Umar DORDA;;;;Director, External Security Organisation. Head of external intelligence agency.;8986;EN;;amendment;council;2014-10-20;2014-10-20;1103/2014 (OJ L301);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6106;EU.3886.3;LYi.006;2011-02-26;;(UN ID: LYi.006)\n(Date of UN designation: 2011-02-26)\n(Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).);P;person;amendment;council;2022-09-12;2022-09-13;2022/1502 (OJ L235);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.235.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A235%3ATOC;;;;Dorda Abuzed OE;;;;;122750;EN;Good quality alias;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6106;EU.3886.3;LYi.006;2011-02-26;;(UN ID: LYi.006)\n(Date of UN designation: 2011-02-26)\n(Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).);P;person;amendment;council;2022-09-12;2022-09-13;2022/1502 (OJ L235);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.235.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A235%3ATOC;;;;Abu Zayd Umar Hmeid Dorda;;;;;143087;EN;Good quality alias;amendment;council;2022-09-12;2022-09-13;2022/1502 (OJ L235);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.235.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A235%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6106;EU.3886.3;LYi.006;2011-02-26;;(UN ID: LYi.006)\n(Date of UN designation: 2011-02-26)\n(Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).);P;person;amendment;council;2022-09-12;2022-09-13;2022/1502 (OJ L235);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.235.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A235%3ATOC;;;;ABÚ ZAJD UMAR DÚRDA;CS;;;;143588;EN;;amendment;council;2022-09-12;2022-09-13;2022/1502 (OJ L235);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.235.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A235%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6106;EU.3886.3;LYi.006;2011-02-26;;(UN ID: LYi.006)\n(Date of UN designation: 2011-02-26)\n(Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).);P;person;amendment;council;2022-09-12;2022-09-13;2022/1502 (OJ L235);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.235.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A235%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Libya (Believed status/location: residing in Egypt));LY;LIBYA;107521;EN;Libya (Believed status/location: residing in Egypt);amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6106;EU.3886.3;LYi.006;2011-02-26;;(UN ID: LYi.006)\n(Date of UN designation: 2011-02-26)\n(Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).);P;person;amendment;council;2022-09-12;2022-09-13;2022/1502 (OJ L235);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.235.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A235%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944-04-04;4;4;1944;;;NO;GREGORIAN;;;Alrhaybat;;00;UNKNOWN;111613;EN;;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6106;EU.3886.3;LYi.006;2011-02-26;;(UN ID: LYi.006)\n(Date of UN designation: 2011-02-26)\n(Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).);P;person;amendment;council;2022-09-12;2022-09-13;2022/1502 (OJ L235);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.235.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A235%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;FK117RK0 (passport-National passport) (on 2018-11-25 in Tripoli valid to 2026-11-24);NO;NO;NO;NO;NO;;2018-11-25;;2026-11-24;;;passport;National passport;Tripoli;LY;;122749;EN;;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;; +28/10/2022;6107;EU.3827.59;;2011-02-26;UN listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: UN listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).)\n(Believed status/location: deceased.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;JABIR;Abu;Bakr Yunis;Abu Bakr Yunis JABIR;;;Major General;Defence Minister;8987;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6107;EU.3827.59;;2011-02-26;UN listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: UN listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).)\n(Believed status/location: deceased.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952;;;NO;GREGORIAN;;;;Jalo;LY;LIBYA;1467;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6108;EU.3828.24;;2011-02-26;;(Date of UN designation: 2011-02-26);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;MATUQ;Matuq;Mohammed;Matuq Mohammed MATUQ;;;;Secretary for Utilities;8988;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6108;EU.3828.24;;2011-02-26;;(Date of UN designation: 2011-02-26);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;;Khoms;LY;LIBYA;1468;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6110;EU.3362.25;;2011-02-28;;(Date of UN designation: 2011-02-28)\n(Cousin of Muammar Qadhafi.);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;QADHAF AL-DAM;Sayyid;Mohammed;Sayyid Mohammed QADHAF AL-DAM;;M;;;8990;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6110;EU.3362.25;;2011-02-28;;(Date of UN designation: 2011-02-28)\n(Cousin of Muammar Qadhafi.);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;KADDAF AL-DAM;Sayyid;Mohammed;Sayyid Mohammed KADDAF AL-DAM;CS;;;;9077;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6110;EU.3362.25;;2011-02-28;;(Date of UN designation: 2011-02-28)\n(Cousin of Muammar Qadhafi.);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;GADDAF AL-DAM;Sayyid;Mohammed;Sayyid Mohammed GADDAF AL-DAM;SV;;;;9080;EN;;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6110;EU.3362.25;;2011-02-28;;(Date of UN designation: 2011-02-28)\n(Cousin of Muammar Qadhafi.);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948;;;NO;GREGORIAN;;;;Sirte;LY;LIBYA;1470;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6111;EU.3849.88;;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).)\n(Believed status/ location: Sultanate of Oman);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;QADHAFI;Mohammed;Muammar;Mohammed Muammar QADHAFI;;M;;;8991;EN;;amendment;commission;2011-03-24;2011-03-24;288/2011 (OJ L78);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:078:0013:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6111;EU.3849.88;;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).)\n(Believed status/ location: Sultanate of Oman);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;Sultanate of Oman;NO;;OM;OMAN;105188;EN;;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6111;EU.3849.88;;2011-02-26;Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze).)\n(Believed status/ location: Sultanate of Oman);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;;;NO;GREGORIAN;;;;Tripoli;LY;LIBYA;1471;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6112;EU.3856.0;;2011-02-26;;(Date of UN designation: 2011-02-26);P;person;amendment;council;2022-02-11;2022-02-12;2022/183 (OJ L30);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.030.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A030%3ATOC;QADHAFI;Saadi;;Saadi QADHAFI;;M;;Commander Special Forces;8992;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6112;EU.3856.0;;2011-02-26;;(Date of UN designation: 2011-02-26);P;person;amendment;council;2022-02-11;2022-02-12;2022/183 (OJ L30);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.030.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A030%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Libya (in custody));LY;LIBYA;107523;EN;Libya (in custody);amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6112;EU.3856.0;;2011-02-26;;(Date of UN designation: 2011-02-26);P;person;amendment;council;2022-02-11;2022-02-12;2022/183 (OJ L30);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.030.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A030%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-05-27;27;5;1973;;;NO;GREGORIAN;;;;Tripoli;LY;LIBYA;1472;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6112;EU.3856.0;;2011-02-26;;(Date of UN designation: 2011-02-26);P;person;amendment;council;2022-02-11;2022-02-12;2022/183 (OJ L30);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.030.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A030%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-01-01;1;1;1975;;;NO;GREGORIAN;;;;Tripoli;LY;LIBYA;1987;EN;;amendment;commission;2013-01-23;2013-01-22;50/2013 (OJ L20);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:020:0029:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6112;EU.3856.0;;2011-02-26;;(Date of UN designation: 2011-02-26);P;person;amendment;council;2022-02-11;2022-02-12;2022/183 (OJ L30);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.030.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A030%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;014797 (passport-National passport) ((passport number));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;850;EN;(passport number);amendment;commission;2013-01-23;2013-01-22;50/2013 (OJ L20);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:020:0029:0032:EN:PDF;;;;;;;;;;;;; +28/10/2022;6112;EU.3856.0;;2011-02-26;;(Date of UN designation: 2011-02-26);P;person;amendment;council;2022-02-11;2022-02-12;2022/183 (OJ L30);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.030.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A030%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;524521 (passport-National passport) ((passport number));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;851;EN;(passport number);amendment;commission;2013-01-23;2013-01-22;50/2013 (OJ L20);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:020:0029:0032:EN:PDF;;;;;;;;;;;;; +28/10/2022;6112;EU.3856.0;;2011-02-26;;(Date of UN designation: 2011-02-26);P;person;amendment;council;2022-02-11;2022-02-12;2022/183 (OJ L30);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.030.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A030%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA862825 (passport-National passport) (on 2021-05-19 in Tripoli valid to 2029-05-18);NO;NO;NO;NO;NO;;2021-05-19;;2029-05-18;;;passport;National passport;Tripoli;LY;;133688;EN;;amendment;council;2022-02-11;2022-02-12;2022/183 (OJ L30);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.030.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A030%3ATOC;;;;;;;;;;;;; +28/10/2022;6113;EU.3857.62;;2011-02-26;Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).)\n(Believed status/location: deceased.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;QADHAFI;Saif;al-Arab;Saif al-Arab QADHAFI;;M;;;8993;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6113;EU.3857.62;;2011-02-26;Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).)\n(Believed status/location: deceased.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982;;;NO;GREGORIAN;;;;Tripoli;LY;LIBYA;1473;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6114;EU.3859.89;;2011-02-26;Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).)\n(Believed status/location: Libya.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;AL-SENUSSI;Abdullah;;Abdullah AL-SENUSSI;;M;Colonel;Director Military Intelligence;8994;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6114;EU.3859.89;;2011-02-26;Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).)\n(Believed status/location: Libya.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;Ould Ahmed;Abdoullah;;Abdoullah Ould Ahmed;;;;;18305;EN;;amendment;council;2014-10-20;2014-10-20;1103/2014 (OJ L301);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6114;EU.3859.89;;2011-02-26;Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).)\n(Believed status/location: Libya.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Libya (Believed status/location: in custody in Libya.));LY;LIBYA;105193;EN;Libya (Believed status/location: in custody in Libya.);amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6114;EU.3859.89;;2011-02-26;Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).)\n(Believed status/location: Libya.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949;;;NO;GREGORIAN;;;;;SD;SUDAN;1474;EN;;amendment;council;2014-10-20;2014-10-20;1103/2014 (OJ L301);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6114;EU.3859.89;;2011-02-26;Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).)\n(Believed status/location: Libya.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948;;;NO;GREGORIAN;;;;Anefif (Kidal);ML;MALI;2248;EN;;amendment;council;2014-10-20;2014-10-20;1103/2014 (OJ L301);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6114;EU.3859.89;;2011-02-26;Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).)\n(Believed status/location: Libya.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;B0515260 (passport-National passport) (on 2012-01-10 in Bamako valid to 2017-01-10)(passport number, date of issue: 10 jan 2012, place of issue: bamako, mali, date of expiration: 10 jan 2017\n\nAbdoullah Ould Ahmed (Passport number: B0515260));NO;NO;NO;NO;NO;;2012-01-10;;2017-01-10;;;passport;National passport;Bamako;ML;;897;EN;passport number, date of issue: 10 jan 2012, place of issue: bamako, mali, date of expiration: 10 jan 2017\n\nAbdoullah Ould Ahmed (Passport number: B0515260);amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;; +28/10/2022;6114;EU.3859.89;;2011-02-26;Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).;(Date of UN designation: 2011-02-26)\n(Designation details: Listed pursuant to paragraph 15 of resolution 1970 (Travel Ban). Listed on 17 March 2011 pursuant to paragraph 17 of resolution 1970 (Asset Freeze).)\n(Believed status/location: Libya.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;073/ SPICRE (other-Other identification number) (on 2011-12-06 in Essouck)((mali id number, date of issue: 6 dec 2011, place of issue: essouck, mali).);NO;NO;NO;NO;NO;;2011-12-06;;;;;other;Other identification number;Essouck;ML;;898;EN;(mali id number, date of issue: 6 dec 2011, place of issue: essouck, mali).;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;; +28/10/2022;6116;EU.3349.69;;2011-02-28;;(Date of UN designation: 2011-02-28);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;ALSHARGAWI;Bashir;Saleh Bashir;Bashir Saleh Bashir ALSHARGAWI;EN;M;;Head of Cabinet of Muammar Qadhafi;105809;EN;;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6116;EU.3349.69;;2011-02-28;;(Date of UN designation: 2011-02-28);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946;;;NO;GREGORIAN;;;;Traghen;LY;LIBYA;1476;EN;;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6118;EU.3351.59;;2011-02-28;;(Date of UN designation: 2011-02-28);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;FARKASH;Mohammed;Boucharaya;Mohammed Boucharaya FARKASH;;;;Former Director of intelligence in External Security Office;8999;EN;;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6118;EU.3351.59;;2011-02-28;;(Date of UN designation: 2011-02-28);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-07-01;1;7;1949;;;NO;GREGORIAN;;;;Al-Bayda;00;UNKNOWN;1478;EN;;regulation;commission;2011-03-03;2011-03-02;204/2011 (OJ L58);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:058:0001:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6121;EU.3871.80;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Libyan Africa Investment Portfolio;;;;;9113;EN;;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6121;EU.3871.80;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Cartera Africana Libia de Inversiones;ES;;;;9133;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6121;EU.3871.80;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Lībijas Āfrikas ieguldījumu portfelis;LV;;;;9136;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6121;EU.3871.80;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Líbiai Afrikai Befektetési Társaság;HU;;;;9137;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6121;EU.3871.80;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Portofoliul de Investiții Libia Africa;RO;;;;9138;EN;;amendment;commission;2011-03-11;2011-03-11;233/2011 (OJ L64);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:064:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6121;EU.3871.80;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Líbyjské africké investičné portfólio;SK;;;;9139;EN;;amendment;commission;2011-03-11;2011-03-11;233/2011 (OJ L64);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:064:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6121;EU.3871.80;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Libyjské africké investiční portfolio;CS;;;;141473;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6121;EU.3871.80;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Liibüa Aafrika Investeerimisportfell;ET;;;;141474;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6121;EU.3871.80;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Libijski investicijski portfelj za Afriku;HR;;;;141475;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6121;EU.3871.80;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Libijski Portfel Inwestycyjny w Afryce;PL;;;;141476;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6121;EU.3871.80;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;Tripoli;Jamahiriya Street, LAP Building, PO Box 91330;;;;;NO;;LY;LIBYA;1694;EN;;amendment;commission;2011-03-11;2011-03-11;233/2011 (OJ L64);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:064:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6124;EU.3870.18;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Libyan Investment Authority;;;;;9117;EN;;amendment;commission;2011-03-11;2011-03-11;233/2011 (OJ L64);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:064:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6124;EU.3870.18;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Libyan Foreign Investment Company (LFIC);;;;;9119;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6124;EU.3870.18;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Libyjská investiční agentura;CS;;;;9156;EN;;amendment;commission;2011-03-11;2011-03-11;233/2011 (OJ L64);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:064:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6124;EU.3870.18;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Libysche Investitionsbehörde;DE;;;;9157;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6124;EU.3870.18;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Sociedad de inversiones extranjeras de Libia;ES;;;;9158;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6124;EU.3870.18;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Lībijas ieguldījumu iestāde;LV;;;;9160;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6124;EU.3870.18;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Líbiai Beruházási Hatóság;HU;;;;9164;EN;;amendment;commission;2011-03-11;2011-03-11;233/2011 (OJ L64);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:064:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6124;EU.3870.18;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Autoritatea Libiană pentru Investiții;RO;;;;9166;EN;;amendment;commission;2011-03-11;2011-03-11;233/2011 (OJ L64);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:064:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6124;EU.3870.18;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Compania Libiană pentru Investiții Străine;RO;;;;9167;EN;;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6124;EU.3870.18;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Líbyjská investičná agentúra;SK;;;;9168;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6124;EU.3870.18;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Organismo de Inversiones de Libia;ES;;;;141468;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6124;EU.3870.18;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Liibüa Investeerimisamet;ET;;;;141469;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6124;EU.3870.18;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Libijsko Tijelo za Ulaganja;HR;;;;141470;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6124;EU.3870.18;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Libijskie Przedsiębiorstwo Inwestycji Zagranicznych;PL;;;;141471;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6124;EU.3870.18;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;Libijski Urząd ds. Inwestycji;PL;;;;141472;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6124;EU.3870.18;;2011-03-17;;(Date of UN designation: 2011-03-17)\n(Note: This entity is targeted by a limited asset freeze concerning assets belonging to, or owned, held or controlled on 16 September 2011 by it and located outside Libya on that date. There is no prohibition to make funds or economic resources available to this entity, whether directly or indirectly.);E;enterprise;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;Tripoli;1 Fateh Tower Office No.99 22nd Floor, Borgaida Street;;1103;;;NO;PHONE[218 21 336 2091]\nFAX[218 21 336 2082];LY;LIBYA;1696;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6125;EU.2557.69;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;Umarov;Doku;Khamatovich;Doku Khamatovich Umarov;;;;;9170;EN;;amendment;commission;2011-03-17;2011-03-16;260/2011 (OJ L70);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:070:0033:0034:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6125;EU.2557.69;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;Умаров;Доку;Хаматович;Доку Хаматович Умаров;;;;;9171;EN;;amendment;commission;2011-03-17;2011-03-16;260/2011 (OJ L70);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:070:0033:0034:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6125;EU.2557.69;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;Umarow;Doku;Chamatowicz;Doku Chamatowicz Umarow;PL;;;;9172;EN;;amendment;commission;2011-03-17;2011-03-16;260/2011 (OJ L70);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:070:0033:0034:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6125;EU.2557.69;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;Umarov;Doku;Hamatovič;Doku Hamatovič Umarov;SL;;;;9173;EN;;amendment;commission;2011-03-17;2011-03-16;260/2011 (OJ L70);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:070:0033:0034:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6125;EU.2557.69;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;Lom-ali Butayev (Butaev);;;;;18468;EN;;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6125;EU.2557.69;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-05-12;12;5;1964;;;NO;GREGORIAN;;;;Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika;RU;RUSSIAN FEDERATION;1480;EN;;amendment;commission;2011-03-17;2011-03-16;260/2011 (OJ L70);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:070:0033:0034:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6125;EU.2557.69;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955;;;NO;GREGORIAN;;;;Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika;RU;RUSSIAN FEDERATION;2285;EN;;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6125;EU.2557.69;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-04-13;13;4;1965;;;NO;GREGORIAN;;;;Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika;RU;RUSSIAN FEDERATION;2286;EN;;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6125;EU.2557.69;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-04-13;13;4;1964;;;NO;GREGORIAN;;;;Kharsenoy Village, Shatoyskiy (Sovetskiy) District, Chechenskaya Respublika;RU;RUSSIAN FEDERATION;2287;EN;;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6125;EU.2557.69;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9603464086 (passport-National passport) (russian passport number issued on 1.6.2003);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;RU;;903;EN;russian passport number issued on 1.6.2003;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;6125;EU.2557.69;;;;;P;person;amendment;commission;2015-01-16;2015-01-17;2015/64 (OJ L11);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:011:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;674;EN;;amendment;commission;2011-03-17;2011-03-16;260/2011 (OJ L70);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:070:0033:0034:EN:PDF +28/10/2022;6126;EU.3352.24;;2011-03-21;;(Date of UN designation: 2011-03-21);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;El-Kassim Zouai;Mohamed;Abou;Mohamed Abou El-Kassim Zouai;;;;former Secretary General of the General People's Congress;9177;EN;;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6128;EU.3354.51;;2011-03-21;;(Date of UN designation: 2011-03-21);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;Hijazi;Mohamad;Mahmoud;Mohamad Mahmoud Hijazi;;;;Minister for Health and Environment in Colonel Qadhafi’s Government;9179;EN;;amendment;commission;2011-03-22;2011-03-22;272/2011 (OJ L76);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:076:0032:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6129;EU.3869.90;;;;;P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;Zlitni;Abdelhafiz;;Abdelhafiz Zlitni;;;;Minister for Planning and Finance in Colonel Qadhafi’s Government. Secretary of the General People's Committee for Finance and Planning. Temporary head of the Central Bank of Libya;9180;EN;;amendment;council;2015-05-27;2015-05-28;2015/814 (OJ L 129);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_129_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6129;EU.3869.90;;;;;P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;LY;LIBYA;112480;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6129;EU.3869.90;;;;;P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1935;;;NO;GREGORIAN;;;;;00;UNKNOWN;1503;EN;;amendment;commission;2011-03-24;2011-03-24;288/2011 (OJ L78);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:078:0013:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6130;EU.3355.16;;2011-03-21;;(Date of UN designation: 2011-03-21);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;Houej;Mohamad;Ali;Mohamad Ali Houej;;;;Minister for Industry, Economy and Trade in Colonel Qadhafi’s Government;9181;EN;;amendment;commission;2011-03-22;2011-03-22;272/2011 (OJ L76);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:076:0032:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6130;EU.3355.16;;2011-03-21;;(Date of UN designation: 2011-03-21);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949;;;NO;GREGORIAN;;;;Al-Azizia (near Tripoli);LY;LIBYA;1504;EN;;amendment;commission;2011-03-24;2011-03-24;288/2011 (OJ L78);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:078:0013:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6132;EU.3357.43;;2011-03-21;;(Date of UN designation: 2011-03-21);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;Al-Charif;Ibrahim;Zarroug;Ibrahim Zarroug Al-Charif;;;;Minister for Social Affairs in Colonel Qadhafi’s Government;9183;EN;;amendment;commission;2011-03-22;2011-03-22;272/2011 (OJ L76);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:076:0032:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6133;EU.3358.8;;2011-03-21;;(Date of UN designation: 2011-03-21);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;Fakhiri;Abdelkebir;Mohamad;Abdelkebir Mohamad Fakhiri;;;;Minister for Education, Higher Education and Research in Colonel Qadhafi’s Government;9184;EN;;amendment;commission;2011-03-22;2011-03-22;272/2011 (OJ L76);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:076:0032:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6133;EU.3358.8;;2011-03-21;;(Date of UN designation: 2011-03-21);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-05-04;4;5;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;1520;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6133;EU.3358.8;;2011-03-21;;(Date of UN designation: 2011-03-21);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;B/014965 (passport-National passport) [known to be expired](Expired end 2013);NO;YES;NO;NO;NO;;;;;;;passport;National passport;;00;;105822;EN;Expired end 2013;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;6136;EU.3359.70;;2011-03-21;;(Date of UN designation: 2011-03-21);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;Mansour;Abdallah;;Abdallah Mansour;;;;former director of radio and television;9189;EN;;amendment;commission;2011-03-22;2011-03-22;272/2011 (OJ L76);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:076:0032:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6136;EU.3359.70;;2011-03-21;;(Date of UN designation: 2011-03-21);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-07-08;8;7;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;1523;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6136;EU.3359.70;;2011-03-21;;(Date of UN designation: 2011-03-21);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;B/014924 (passport-National passport) (expired end 2013);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;568;EN;expired end 2013;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;6138;EU.3375.18;;2011-03-21;;(Date of UN designation: 2011-03-21)\n(Company established in 1981);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Libyan Arab African Investment Company - LAAICO;;;;;9209;EN;;amendment;commission;2011-03-22;2011-03-22;272/2011 (OJ L76);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:076:0032:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6138;EU.3375.18;;2011-03-21;;(Date of UN designation: 2011-03-21)\n(Company established in 1981);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;Tripoli;;;81370;;;NO;WEB[http://www.laaico.com]\nPHONE[00218 (21) 4890146 -4890586 - 4892613]\nEMAIL[info@laaico.com]\nFAX[00 218 (21) 4893800 - 4891867];LY;LIBYA;1698;EN;;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6138;EU.3375.18;;2011-03-21;;(Date of UN designation: 2011-03-21)\n(Company established in 1981);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;Janzour;;;76351;;;NO;;LY;LIBYA;1699;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6139;EU.3376.80;;2011-03-21;;(Date of UN designation: 2011-03-21);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Gaddafi International Charity and Development Foundation;EN;;;;9217;EN;;amendment;commission;2011-03-22;2011-03-22;272/2011 (OJ L76);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:076:0032:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6139;EU.3376.80;;2011-03-21;;(Date of UN designation: 2011-03-21);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;Tripoli;Hay Alandalus – Jian St.;1101;;;;NO;PHONE[(+218) 214778301]\nEMAIL[info@gicdf.org]\nFAX[(+218) 214778766];LY;LIBYA;1700;EN;;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6140;EU.3377.45;;2011-03-21;;(Date of UN designation: 2011-03-21);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Waatassimou Foundation;EN;;;;9232;EN;;amendment;commission;2011-03-22;2011-03-22;272/2011 (OJ L76);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:076:0032:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6140;EU.3377.45;;2011-03-21;;(Date of UN designation: 2011-03-21);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;Tripoli;;;;;;NO;;LY;LIBYA;1701;EN;;amendment;commission;2011-03-22;2011-03-22;272/2011 (OJ L76);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:076:0032:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6141;EU.3378.10;;2011-03-21;;(Date of UN designation: 2011-03-21);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Libyan Jamahirya Broadcasting Corporation;;;;;9250;EN;;amendment;commission;2011-03-22;2011-03-22;272/2011 (OJ L76);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:076:0032:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6141;EU.3378.10;;2011-03-21;;(Date of UN designation: 2011-03-21);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;NO;WEB[http://www.ljbc.net]\nPHONE[00 218 21 444 59 26 -00 21 444 59 00]\nEMAIL[info@ljbc.net]\nFAX[00 218 21 340 21 07];00;UNKNOWN;1702;EN;;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6142;EU.3379.72;;2011-03-21;;(Date of UN designation: 2011-03-21);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Revolutionary Guard Corps;EN;;;;9271;EN;;amendment;commission;2011-03-22;2011-03-22;272/2011 (OJ L76);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:076:0032:0035:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6165;EU.2955.96;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Iury Leanidavich SIVAKAU;EN;M;;"former Minister of Internal Affairs; former Deputy Head of the Presidential Administration";108323;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6165;EU.2955.96;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Юрий Леонидович СИВАКОВ;RU;M;;;108863;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6165;EU.2955.96;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Юрый Леанідавіч СІВАКАЎ;BE;M;;;108864;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6165;EU.2955.96;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Juryj Leanidavitj SIVAKOU;SV;M;;;108865;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6165;EU.2955.96;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Juryj Leanidavitj SIVAKAU;SV;M;;;108866;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6165;EU.2955.96;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Iury Leonidovich SIVAKOV;EN;M;;;108867;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6165;EU.2955.96;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Yuri Leonidovich SIVAKOV;EN;M;;;108868;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6165;EU.2955.96;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Yuri Leanidavich SIVAKOU;;M;;;128151;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6165;EU.2955.96;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Юрый Леанідавіч СІВАКОЎ;BE;M;;;128152;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6165;EU.2955.96;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Yuri Leanidavich SIVAKAU;;M;;;128153;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6165;EU.2955.96;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Jurij Leonidovitj SIVAKOV;SV;M;;;128154;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6165;EU.2955.96;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;Belarusian Association of Veterans of Special Forces of the Ministry of Internal Affairs ‘Honour’, 111 Mayakovskogo St.;;220028;;;NO;;BY;BELARUS;2667;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6165;EU.2955.96;;2004-09-24;;(Date of UN designation: 2004-09-24);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946-08-05;5;8;1946;;;NO;GREGORIAN;;;Onor, Sakhalin Region/Oblast;;RU;RUSSIAN FEDERATION;1501;EN;former USSR (now Russian Federation);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;Al-Asiri;Ibrahim;Hassan Tali;Ibrahim Hassan Tali Al-Asiri;;;;;10473;EN;Believed to be hiding in Yemen as at March 2011.;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;Asiri;Ibrahim;Hassan Tali;Ibrahim Hassan Tali Asiri;;;;;10475;EN;;amendment;commission;2011-04-01;2011-03-31;317/2011 (OJ L86);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:086:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;Aseeri;Ibrahim;Hasan Talea;Ibrahim Hasan Talea Aseeri;;;;;10477;EN;;amendment;commission;2011-04-01;2011-03-31;317/2011 (OJ L86);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:086:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;al-Asiri;Ibrahim;Hassan;Ibrahim Hassan al-Asiri;;;;;10478;EN;;amendment;commission;2011-04-01;2011-03-31;317/2011 (OJ L86);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:086:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;Asiri;Ibrahim;Hasan Tali;Ibrahim Hasan Tali Asiri;;;;;10481;EN;;amendment;commission;2011-04-01;2011-03-31;317/2011 (OJ L86);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:086:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;Assiri;Ibrahim;Hassan Tali;Ibrahim Hassan Tali Assiri;;;;;10482;EN;;amendment;commission;2011-04-01;2011-03-31;317/2011 (OJ L86);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:086:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;’Asiri;Ibrahim;Hasan Tali’A;Ibrahim Hasan Tali’A ’Asiri;;;;;10486;EN;;amendment;commission;2011-04-01;2011-03-31;317/2011 (OJ L86);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:086:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;al-’Asiri;Ibrahim;Hasan Tali;Ibrahim Hasan Tali al-’Asiri;;;;;10488;EN;;amendment;commission;2011-04-01;2011-03-31;317/2011 (OJ L86);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:086:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;Al Asiri;Ibrahim;Hassan;Ibrahim Hassan Al Asiri;;;;;10490;EN;;amendment;commission;2011-04-01;2011-03-31;317/2011 (OJ L86);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:086:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;Saleh;Abu;;Abu Saleh;;;;;10491;EN;;amendment;commission;2011-04-01;2011-03-31;317/2011 (OJ L86);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:086:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;Abosslah;;;;;10492;EN;;amendment;commission;2011-04-01;2011-03-31;317/2011 (OJ L86);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:086:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;Abu-Salaah;;;;;10494;EN;;amendment;commission;2011-04-01;2011-03-31;317/2011 (OJ L86);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:086:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;Ibrahim al-'Asiri;EN;;;;106107;EN;;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;YE;YEMEN;1716;EN;;amendment;commission;2011-04-01;2011-03-31;317/2011 (OJ L86);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:086:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-04-19;19;4;1982;;;NO;GREGORIAN;;;;Riyadh;SA;SAUDI ARABIA;1508;EN;;amendment;commission;2011-04-01;2011-03-31;317/2011 (OJ L86);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:086:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-04-18;18;4;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;1509;EN;;amendment;commission;2011-04-01;2011-03-31;317/2011 (OJ L86);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:086:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-04-19;24;6;1402;;;NO;ISLAMIC;;;;;00;UNKNOWN;1510;EN;hijri calendar;amendment;commission;2011-04-01;2011-03-31;317/2011 (OJ L86);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:086:0063:0064:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;F654645 (passport-National passport) (valid from 2005-04-30 to 2010-03-07)[known to be expired](Saudi Arabian passport number, issued on 30.4.2005, expired on 7.3.2010, issue date in Hijri Calendar 24.06.1426, expiry date in Hijri Calendar 21.03.1431).);NO;YES;NO;NO;NO;;;2005-04-30;2010-03-07;;;passport;National passport;;SA;;564;EN;Saudi Arabian passport number, issued on 30.4.2005, expired on 7.3.2010, issue date in Hijri Calendar 24.06.1426, expiry date in Hijri Calendar 21.03.1431).;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1028745097 (id-National identification card) ((national civil identification number));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;SA;;565;EN;(national civil identification number);amendment;commission;2011-04-01;2011-03-31;317/2011 (OJ L86);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:086:0063:0064:EN:PDF;;;;;;;;;;;;; +28/10/2022;6177;EU.3092.36;;2011-03-24;;(Date of UN designation: 2011-03-24)\n(Date of designation referred to in Article 2a(4)(b): 24.3.2011.);P;person;amendment;commission;2018-05-18;2018-05-19;2018/733 (OJ L123);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0733&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SA;;675;EN;;amendment;commission;2011-04-01;2011-03-31;317/2011 (OJ L86);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:086:0063:0064:EN:PDF +28/10/2022;6206;EU.3456.43;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;AHMADI-MOQADDAM;Esmail;;Esmail AHMADI-MOQADDAM;;M;;Director of the University and the Higher national Defence Research Institute since 20 September 2021. Former Senior Advisor for Security Affairs to the Chief of the Armed Forces General Staff. Chief of Iran's National Police from 2005 until early 2015. Also Head of the Iranian Cyber Police (listed) from January 2011 until early 2015. Former head of Iran's Headquarters in support of the Yemeni People.;11944;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6206;EU.3456.43;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;;Tehran;IR;IRAN (ISLAMIC REPUBLIC OF);1512;EN;;regulation;commission;2011-04-14;2011-04-12;359/2011 (OJ L100);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0001:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6207;EU.3457.8;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;ALLAHKARAM;Hossein;;Hossein ALLAHKARAM;;M;;Head of Ansar-e Hezbollah Coordination Council and former general in the IRGC. He co-founded Ansar-e Hezbollah.;11945;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6207;EU.3457.8;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1945;;;NO;GREGORIAN;;;;Najafabad;IR;IRAN (ISLAMIC REPUBLIC OF);108286;EN;;amendment;council;2016-04-12;2016-04-13;2016/556 (OJ L96);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2016.096.01.0003.01.ENG&toc=OJ:L:2016:096:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6208;EU.2494.19;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;ARAGHI;Abdollah;;Abdollah ARAGHI;;M;Brigadier-General;Brigadier-General in the IRGC. Head of the Security Department of the General Staff of the Armed Forces. Former Deputy Head of IRGC's Ground Forces.;11946;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6208;EU.2494.19;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;ERAGHI;Abdollah;;Abdollah ERAGHI;;M;;Brigadier-General in the IRGC. Head of the Security Department of the General Staff of the Armed Forces. Former Deputy Head of IRGC's Ground Forces.;11947;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6209;EU.3458.70;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;FAZLI;Ali;;Ali FAZLI;;M;Brigadier-General;Former Chief of the Imam Hossein Cadet College (2018-June 2020). Former deputy Commander of the Basij (2009-2018), Head of the IRGC's Seyyed al-Shohada Corps, Tehran Province (until February 2010).;11948;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6211;EU.2495.81;;;;(Date of listing 14.4.2011.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;JAFARI;Mohammad-Ali;;Mohammad-Ali JAFARI;;M;;Director of the Hazrat-e Baqiatollah Social and Cultural Base. Former Commander of the IRGC (September 2007 - April 2019).;11950;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6211;EU.2495.81;;;;(Date of listing 14.4.2011.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;Aziz Jafari;;M;;Director of the Hazrat-e Baqiatollah Social and Cultural Base. Former Commander of the IRGC (September 2007 - April 2019).;11951;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6211;EU.2495.81;;;;(Date of listing 14.4.2011.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-09-01;1;9;1957;;;NO;GREGORIAN;;;;Yazd;IR;IRAN (ISLAMIC REPUBLIC OF);1513;EN;;regulation;commission;2011-04-14;2011-04-12;359/2011 (OJ L100);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0001:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6212;EU.2496.46;;;Date of listing 12.04.2011;(Designation details: Date of listing 12.04.2011);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;KHALILI;Ali;;Ali KHALILI;;M;;IRGC General, in a senior role within the Sarollah Base.;11952;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6213;EU.3459.35;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Bahram Hosseini MOTLAGH;;M;;Member of the teaching staff of Imam Hossein University (Guardians of the Revolution). Former Head of the Army Command and General Staff College (DAFOOS). Former Head of the IRGC’s Seyyed al-Shohada Corps, Tehran Province.;11953;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6214;EU.2522.47;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;NAQDI;Mohammad-Reza;;Mohammad-Reza NAQDI;;M;Brigadier-General;Deputy Coordinator of the Islamic Revolutionary Guard Corps (IRGC). Former Deputy Chief of the IRGC for cultural and social affairs. \nFormer Commander of the Basij (2009-2016).;11954;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6214;EU.2522.47;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952;;;YES;GREGORIAN;;;;Najaf;IQ;IRAQ;1514;EN;;regulation;commission;2011-04-14;2011-04-12;359/2011 (OJ L100);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0001:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6215;EU.3473.53;;;Date of listing: 12/04/2011;(Designation details: Date of listing: 12/04/2011);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;RADAN;Ahmad-Reza;;Ahmad-Reza RADAN;;M;;Head of the Centre for Strategic Studies of the Iranian Law Enforcement Force, a body linked to the National Police. Deputy Chief of Iran's National Police until June 2014. Currently IRGC commander in charge of training Iraqi “anti-terrorist” forces.;11955;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6215;EU.3473.53;;;Date of listing: 12/04/2011;(Designation details: Date of listing: 12/04/2011);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;NO;GREGORIAN;;;;Isfahan;IR;IRAN (ISLAMIC REPUBLIC OF);1515;EN;;regulation;commission;2011-04-14;2011-04-12;359/2011 (OJ L100);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0001:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6216;EU.2531.83;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;RAJABZADEH;Azizollah;;Azizollah RAJABZADEH;;M;;Commander of the Urban Order Headquarters since 2014. Former Head of Tehran Disaster Mitigation Organisation (2010-2013).;11956;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6217;EU.2532.48;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;SAJEDI-NIA;Hossein;;Hossein SAJEDI-NIA;;M;;Police Operations Deputy Commander. Former head of Tehran Police, former Deputy Chief of Iran's National Police responsible for Police Operations.;11957;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6218;EU.2960.78;;;Date of listing: 12/04/2011;(Designation details: Date of listing: 12/04/2011);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;TAEB;Hossein;;Hossein TAEB;;M;;Head of the IRGC intelligence organization since October 2009. Commander of the Basij until October 2009.;11958;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6218;EU.2960.78;;;Date of listing: 12/04/2011;(Designation details: Date of listing: 12/04/2011);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;NO;GREGORIAN;;;;Tehran;IR;IRAN (ISLAMIC REPUBLIC OF);1516;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6219;EU.3474.18;;;Date of listing: 12/04/2011.;(Designation details: Date of listing: 12/04/2011.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;SHARIATI;Seyeed;Hassan;Seyeed Hassan SHARIATI;;M;;Advisor and Member of the 28th Section of the Supreme Court. Head of Mashhad Judiciary until September 2014.;12001;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6220;EU.2961.43;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Ghorban-Ali DORRI-NADJAFABADI;;M;;Member of the Assembly of Experts and representative of the Supreme Leader in Markazi (“Central”) Province and Head of the Supreme Administrative Court. Prosecutor General of Iran until September 2009, as well as former Intelligence Minister under Khatami presidency.;12002;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6220;EU.2961.43;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-12-03;3;12;1950;;;NO;GREGORIAN;;;;Najafabad;IR;IRAN (ISLAMIC REPUBLIC OF);1522;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6223;EU.3460.60;;;Date of listing: 12/04/2011.;(Designation details: Date of listing: 12/04/2011.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;SOLTANI;Hodjatoleslam;Seyed Mohammad;Hodjatoleslam Seyed Mohammad SOLTANI;;M;;Head of the Organisation for Islamic Propaganda in the province of Khorasan-Razavi. Judge, Mashhad Revolutionary Court until 2013.;11968;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6224;EU.2962.8;;;Date of listing 12.04.2011;(Designation details: Date of listing 12.04.2011);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;HEYDARIFAR;Ali-Akbar;;Ali-Akbar HEYDARIFAR;;M;;Former judge, Tehran Revolutionary Court;11969;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6225;EU.2963.70;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Abbas JAFARI-DOLATABADI;;M;;Advisor to the Supreme Disciplinary Court of judges since 29 April 2019. Former Prosecutor General of Tehran (August 2009-April 2019).;11970;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6225;EU.2963.70;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;NO;GREGORIAN;;;;Yazd;IR;IRAN (ISLAMIC REPUBLIC OF);2348;EN;;amendment;council;2015-04-08;2015-04-09;2015/548 (OJ L 92);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6226;EU.3923.67;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;MOGHISSEH;Mohammad;;Mohammad MOGHISSEH;;M;;Judge at the Supreme Court since November 2020. Former head of Tehran Revolutionary Court, branch 28.;11971;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6226;EU.3923.67;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;NASSERIAN;Mohammad;;Mohammad NASSERIAN;;M;;Judge, Head of Tehran Revolutionary Court, branch 28;11972;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6227;EU.2438.67;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;MOHSENI-EJEI;Gholam-Hossein;;Gholam-Hossein MOHSENI-EJEI;;M;;Chief of Justice since July 2021. Member of the Expediency Council. Prosecutor General of Iran from September 2009 until 2014. Former Deputy Head (2014 until July 2021) and spokesperson of the Judiciary. Intelligence Minister from 2005 until 2009.;11973;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6227;EU.2438.67;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;YES;GREGORIAN;;;;Ejiyeh;IR;IRAN (ISLAMIC REPUBLIC OF);1518;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6228;EU.3924.32;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;MORTAZAVI;Said;;Said MORTAZAVI;;M;;Head of the Welfare System from 2011 to 2013. Prosecutor General of Tehran until August 2009.;11974;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6228;EU.3924.32;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;MORTAZAVI;Saeed;;Saeed MORTAZAVI;;M;;;139145;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6228;EU.3924.32;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;NO;GREGORIAN;;;;Meybod, Yazd;IR;IRAN (ISLAMIC REPUBLIC OF);1519;EN;;regulation;commission;2011-04-14;2011-04-12;359/2011 (OJ L100);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0001:0011:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6229;EU.3925.94;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(Former Judge, Tehran Revolutionary Court, branch 26.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;PIR-ABASSI;Abbas;;Abbas PIR-ABASSI;;M;;Magistrate of a Criminal chamber. Former Judge, Tehran Revolutionary Court, branch 26.;11975;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6230;EU.3461.25;;;Date of listing: 12/04/2011;(Designation details: Date of listing: 12/04/2011);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;MORTAZAVI;Amir;;Amir MORTAZAVI;;M;;Deputy head of the Unit for Social Affairs and Crime Prevention at the judiciary in the province of Khorasan-Razavi. Deputy Prosecutor of Mashhad until at least 2015.;11976;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6231;EU.3893.12;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;SALAVATI;Abdolghassem;;Abdolghassem SALAVATI;;M;;Judge of the Special Court for Financial Crimes, branch 4 since 2019. Former Head of Tehran Revolutionary Court, branch 15.;11977;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6234;EU.2964.35;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;YASAGHI;Ali-Akbar;;Ali-Akbar YASAGHI;;M;;Judge at the Supreme Court, head of the 13th section. Deputy Chief Executive Officer of Setad-e Dieh Foundation. Chief Judge, Mashhad Revolutionary Court (2001-2011).;11980;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6235;EU.2440.57;;;;(Date of listing 14.4.2011.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;BOZORGNIA;Mostafa;;Mostafa BOZORGNIA;;M;;Head of ward 350 of Evin Prison.;11981;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6236;EU.2965.0;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;ESMAILI;Gholam-Hossein;;Gholam-Hossein ESMAILI;;M;;Chief of Staff of Iranian President Raisi since August 2021. Judiciary spokesman from April 2019 until July 2021. Former head of the Tehran Judiciary. Former Head of Iran’s Prisons Organisation.;11982;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6236;EU.2965.0;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;ESMAILI;Gholam Hossein;;Gholam Hossein ESMAILI;;M;;;139146;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6237;EU.2408.64;;;Date of listing: 12/04/2011.;(Designation details: Date of listing: 12/04/2011.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;SEDAQAT;Farajollah;;Farajollah SEDAQAT;;M;;Assistant Secretary of the General Prison Administration in Tehran. Head of Evin’s prison, Tehran until October 2010;11983;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6237;EU.2408.64;;;Date of listing: 12/04/2011.;(Designation details: Date of listing: 12/04/2011.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;Farajollah Sedaghat;;M;;Assistant Secretary of the General Prison Administration in Tehran. Head of Evin’s prison, Tehran until October 2010;123003;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6238;EU.2409.29;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;ZANJIREI;Mohammad-Ali;;Mohammad-Ali ZANJIREI;;M;;Senior advisor to Head, and Deputy Head of Iran's Prisons Organisation.;11984;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6239;EU.3373.88;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;AL QADHAFI;Quren;Salih Quren;Quren Salih Quren AL QADHAFI;;M;;Former Libyan Ambassador to Chad. Has left Chad for Sabha. Member of the Popular Front for the Liberation of Libya (PFLL).;11985;EN;;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6239;EU.3373.88;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;;;;Salah Egreen;;M;;;141686;EN;;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6239;EU.3373.88;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;Al Qadhafi;Qu’ren;Salih Qu’ren;Qu’ren Salih Qu’ren Al Qadhafi;;M;;;141687;EN;;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6239;EU.3373.88;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;Al Qadhafi;Qurayn;Salih Qurayn;Qurayn Salih Qurayn Al Qadhafi;;M;;;141688;EN;;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6239;EU.3373.88;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;;;;Akrin Akrin Saleh;;M;;;141689;EN;;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6239;EU.3373.88;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;AL GADAFI;Quren;Salih Quren;Quren Salih Quren AL GADAFI;ES;M;;;142872;EN;;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6239;EU.3373.88;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;AL KADDÁFÍ;Kuren;Sálih Kuren;Kuren Sálih Kuren AL KADDÁFÍ;CS;M;;;142873;EN;;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6239;EU.3373.88;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;GADDAFI;Quren;Salih Quren;Quren Salih Quren GADDAFI;DA;M;;;142874;EN;;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6240;EU.3374.53;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(Believed status/location: South Libya. Date of listing 12.4.2011.);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;AL KUNI;Amid;Husain;Amid Husain AL KUNI;;;Colonel;former Governor of Ghat (South Libya);11986;EN;;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6240;EU.3374.53;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(Believed status/location: South Libya. Date of listing 12.4.2011.);P;person;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Believed status/location: South Libya);LY;LIBYA;107527;EN;Believed status/location: South Libya;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6241;EU.3380.0;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(Libyan subsidiary of the Central Bank of Libya.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Libyan Agricultural Bank;;;;;11987;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6241;EU.3380.0;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(Libyan subsidiary of the Central Bank of Libya.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Agricultural Bank;;;;;11988;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6241;EU.3380.0;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(Libyan subsidiary of the Central Bank of Libya.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Al Masraf Al Zirae Agricultural Bank;;;;;11989;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6241;EU.3380.0;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(Libyan subsidiary of the Central Bank of Libya.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Al Masraf Al Zirae;;;;;11990;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6241;EU.3380.0;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(Libyan subsidiary of the Central Bank of Libya.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;Tripoli;El Ghayran Area, Ganzor El Sharqya;1100;;;;NO;"PHONE[(218)214870586]\nEMAIL[agbank@agribankly.org]\nFAX[(218) 214870747]\n(SWIFT/BIC AGRULYLT (Libya)\n\nTel No. (218) 214870714; Tel No. (218) 214870745; Tel No. (218) 213338366; Tel No. (218) 213331533; Tel No. (218) 213333541; Tel No. (218) 213333544; Tel No. (218) 213333543; Tel No. (218) 213333542; Fax No. (218) 214870767; Fax No. (218) 214870777; Fax No. (218) 213330927; Fax No. (218) 213333545)";LY;LIBYA;1717;EN;"SWIFT/BIC AGRULYLT (Libya)\n\nTel No. (218) 214870714; Tel No. (218) 214870745; Tel No. (218) 213338366; Tel No. (218) 213331533; Tel No. (218) 213333541; Tel No. (218) 213333544; Tel No. (218) 213333543; Tel No. (218) 213333542; Fax No. (218) 214870767; Fax No. (218) 214870777; Fax No. (218) 213330927; Fax No. (218) 213333545";amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6241;EU.3380.0;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(Libyan subsidiary of the Central Bank of Libya.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;Tripoli;Al Jumhouria Street, East Junzour, Al Gheran;;;;;NO;(SWIFT/BIC AGRULYLT (Libya));LY;LIBYA;1718;EN;SWIFT/BIC AGRULYLT (Libya);amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6243;EU.3381.62;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(Libyan subsidiary of the Economic & Social Development Fund.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Al-Inma Holding Co. for Services Investments;;;;;11993;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6244;EU.3382.27;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(Libyan subsidiary of the Economic & Social Development Fund.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Al-Inma Holding Co. For Industrial Investments;;;;;11994;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6245;EU.3383.89;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(Libyan subsidiary of the Economic & Social Development Fund.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Al-Inma Holding Company for Tourism Investment;;;;;11995;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6245;EU.3383.89;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(Libyan subsidiary of the Economic & Social Development Fund.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;Hasan al-Mashay Street (off al- Zawiyah Street);;;;;NO;PHONE[(218) 213345187]\nEMAIL[info@ethic.ly]\nFAX[+218.21.334.5188];LY;LIBYA;1721;EN;;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6247;EU.3384.54;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(Libyan subsidiary of the Economic & Social Development Fund.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Al-Inma Holding Co. for Construction and Real Estate Developments;;;;;11997;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6249;EU.3385.19;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(Libyan subsidiary of the Libyan Africa Investment Portfolio.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;LAP Green Networks;;;;;11999;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6249;EU.3385.19;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(Libyan subsidiary of the Libyan Africa Investment Portfolio.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;LAP Green Holding Company;;;;;12000;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6258;EU.3386.81;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(UK-incorporated subsidiary of the Libyan Investment Authority.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Sabtina Ltd;;;;;12019;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6258;EU.3386.81;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(UK-incorporated subsidiary of the Libyan Investment Authority.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;Milton Keynes;530-532 Elder Gate, Elder House;;;;;NO;;GB;UNITED KINGDOM;1734;EN;;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6258;EU.3386.81;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(UK-incorporated subsidiary of the Libyan Investment Authority.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"01794877 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;GB;;105836;EN;;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;6260;EU.3387.46;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(BVI-incorporated subsidiary of the Libyan Investment Authority.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Ashton Global Investments Limited;;;;;12021;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6260;EU.3387.46;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(BVI-incorporated subsidiary of the Libyan Investment Authority.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;Road Town, Tortola;Woodbourne Hall;3162;;;;NO;;VG;VIRGIN ISLANDS (BRITISH);1736;EN;;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6260;EU.3387.46;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(BVI-incorporated subsidiary of the Libyan Investment Authority.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1510484 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;VG;;105837;EN;;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;6261;EU.3398.12;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(BVI -incorporated entity owned by Saadi Qadhafi);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Capitana Seas Limited;;;;;12022;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6262;EU.3399.74;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(BVI -incorporated subsidiary of the Libyan Investment Authority.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Kinloss Property Limited;;;;;12023;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6262;EU.3399.74;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(BVI -incorporated subsidiary of the Libyan Investment Authority.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;Road Town, Tortola;Woodbourne Hall;3162;;;;NO;;VG;VIRGIN ISLANDS (BRITISH);1738;EN;;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6262;EU.3399.74;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(BVI -incorporated subsidiary of the Libyan Investment Authority.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1534407 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;VG;;105838;EN;;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;6263;EU.3400.54;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(IOM-incorporated subsidiary of the Libyan Investment Authority.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;Baroque Investments Limited;;;;;12024;EN;;amendment;commission;2011-04-14;2011-04-12;360/2011 (OJ L100);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:100:0012:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6263;EU.3400.54;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(IOM-incorporated subsidiary of the Libyan Investment Authority.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;Douglas, Isle of Man;c/o ILS Fiduciaries (IOM) Ltd, First Floor, Millennium House, Victoria Road;;;;;NO;(Isle of Man);GB;UNITED KINGDOM;1739;EN;Isle of Man;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6263;EU.3400.54;;2011-04-12;;(Date of UN designation: 2011-04-12)\n(IOM-incorporated subsidiary of the Libyan Investment Authority.);E;enterprise;amendment;council;2016-01-19;2016-01-20;2016/44 (OJ L12);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0044&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59058C (regnumber-Registration Number) (Registration number: Isle of Man);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;GB;;105847;EN;Registration number: Isle of Man;amendment;council;2015-08-01;2015-08-02;2015/1323 (OJ L206);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;6303;EU.3589.3;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Syria Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011; Major General of the 42nd Brigade and former Brigadier Commander of the Army's 4th Armoured Division. Member of the Assad family; brother of President Bashar Al-Assad.)";P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Maher AL-ASSAD;;M;;Major General of the 42nd Brigade and former Brigadier Commander of the Army's 4th Armoured Division;12275;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6303;EU.3589.3;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Syria Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011; Major General of the 42nd Brigade and former Brigadier Commander of the Army's 4th Armoured Division. Member of the Assad family; brother of President Bashar Al-Assad.)";P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mahir AL-ASSAD;;;;;12437;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6303;EU.3589.3;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Syria Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011; Major General of the 42nd Brigade and former Brigadier Commander of the Army's 4th Armoured Division. Member of the Assad family; brother of President Bashar Al-Assad.)";P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ماهر الاسد;AR;M;;;124361;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6303;EU.3589.3;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Syria Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011; Major General of the 42nd Brigade and former Brigadier Commander of the Army's 4th Armoured Division. Member of the Assad family; brother of President Bashar Al-Assad.)";P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-12-08;8;12;1967;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;1543;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6303;EU.3589.3;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Syria Armed Forces of the rank of ‘colonel’ and the equivalent or higher in post after May 2011; Major General of the 42nd Brigade and former Brigadier Commander of the Army's 4th Armoured Division. Member of the Assad family; brother of President Bashar Al-Assad.)";P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4138 (passport-National passport) (diplomatic)(Diplomatic passport);YES;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;569;EN;Diplomatic passport;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;; +28/10/2022;6304;EU.3085.27;;2011-05-09;;(Date of UN designation: 2011-05-09);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Ali MAMLUK;;M;;Vice President of the Syrian Arab Republic for Security Affairs. Former Director of the National Security Bureau. Former Head of Syrian Intelligence Directorate.;12462;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6304;EU.3085.27;;2011-05-09;;(Date of UN designation: 2011-05-09);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;"علي المملوك; أبو أيهم; علي مملوك";AR;M;;;124362;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6304;EU.3085.27;;2011-05-09;;(Date of UN designation: 2011-05-09);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Abu Ayham;;M;;;140876;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6304;EU.3085.27;;2011-05-09;;(Date of UN designation: 2011-05-09);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;Al-Mamlouk;Ali;;Ali Al-Mamlouk;;M;;;140877;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6304;EU.3085.27;;2011-05-09;;(Date of UN designation: 2011-05-09);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;Mamlouk;Ali;;Ali Mamlouk;;M;;;140878;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6304;EU.3085.27;;2011-05-09;;(Date of UN designation: 2011-05-09);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946-02-19;19;2;1946;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;1544;EN;;regulation;commission;2011-05-10;2011-05-10;442/2011 (OJ L121);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:121:0001:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6304;EU.3085.27;;2011-05-09;;(Date of UN designation: 2011-05-09);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;983 (passport-National passport) (diplomatic)(Diplomatic passport);YES;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;570;EN;Diplomatic passport;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;; +28/10/2022;6305;EU.2413.46;;;Date of listing: 01.12.2011;(Designation details: Date of listing: 01.12.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Ibrahim AL‐SHA'AR;;M;;Former Minister of Interior. Vice Chair of the National Progressive Front of Syria.;104100;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6305;EU.2413.46;;;Date of listing: 01.12.2011;(Designation details: Date of listing: 01.12.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;;Aleppo;SY;SYRIAN ARAB REPUBLIC;104098;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6306;EU.3490.63;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Assad family; cousin of President Bashar Al-Assad.)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Atef NAJIB;;M;;;12278;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6306;EU.3490.63;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Assad family; cousin of President Bashar Al-Assad.)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Atej NAJIB;;M;;Former Head of the Political Security Directorate in Dara’a.;12483;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6306;EU.3490.63;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Assad family; cousin of President Bashar Al-Assad.)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;NAJIB;Atif;;Atif NAJIB;;M;"Brigadier General;";;12484;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6306;EU.3490.63;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Assad family; cousin of President Bashar Al-Assad.)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Atej NAJEEB;EN;;;;109780;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6306;EU.3490.63;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Assad family; cousin of President Bashar Al-Assad.)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Atif NAJEEB;;;;;123890;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6306;EU.3490.63;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Assad family; cousin of President Bashar Al-Assad.)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Atef NAJEEB;;;;;123891;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6306;EU.3490.63;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Assad family; cousin of President Bashar Al-Assad.)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;عاطف نجيب;AR;M;;;124363;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6306;EU.3490.63;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Assad family; cousin of President Bashar Al-Assad.)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Jablah;SY;SYRIAN ARAB REPUBLIC;109695;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6307;EU.3582.54;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Makhlouf family; Cousin of President Bashar Al-Assad.)";P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Makhlouf;Hafez;;Hafez Makhlouf;;;;;12279;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6307;EU.3582.54;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Makhlouf family; Cousin of President Bashar Al-Assad.)";P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hafiz MAKHLOUF;;M;;Former Colonel and Head of Unit in General Intelligence Di­rectorate, Damascus Branch in post after May 2011.;12488;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6307;EU.3582.54;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Makhlouf family; Cousin of President Bashar Al-Assad.)";P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;حافظ مخلوف;AR;M;;;124364;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6307;EU.3582.54;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Makhlouf family; Cousin of President Bashar Al-Assad.)";P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-04-02;2;4;1971;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;1545;EN;;regulation;commission;2011-05-10;2011-05-10;442/2011 (OJ L121);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:121:0001:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6307;EU.3582.54;;2011-05-09;;"(Date of UN designation: 2011-05-09)\n(Member of the Makhlouf family; Cousin of President Bashar Al-Assad.)";P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2246 (passport-National passport) (diplomatic)(Diplomatic passport);YES;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;571;EN;Diplomatic passport;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;; +28/10/2022;6308;EU.3086.89;;;Date of designation: 09/05/2011;(Designation details: Date of designation: 09/05/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Zeitoun;Mohammed;Dib;Mohammed Dib Zeitoun;;M;;;12280;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6308;EU.3086.89;;;Date of designation: 09/05/2011;(Designation details: Date of designation: 09/05/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Dib ZAYTUN;;M;;Director of the National Security Bureau since July 2019. Former Head of the General Security Directorate.;12489;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6308;EU.3086.89;;;Date of designation: 09/05/2011;(Designation details: Date of designation: 09/05/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Dib Zeitun;EN;;;;105220;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6308;EU.3086.89;;;Date of designation: 09/05/2011;(Designation details: Date of designation: 09/05/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد ديب زيتون;AR;M;;;124380;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6308;EU.3086.89;;;Date of designation: 09/05/2011;(Designation details: Date of designation: 09/05/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-05-20;20;5;1951;;;NO;GREGORIAN;;;Jubba, Damascus province;;SY;SYRIAN ARAB REPUBLIC;1553;EN;;amendment;council;2019-05-20;2019-05-21;2019/798 (OJ L132);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.132.01.0001.01.ENG&toc=OJ:L:2019:132:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6308;EU.3086.89;;;Date of designation: 09/05/2011;(Designation details: Date of designation: 09/05/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D000001300 (passport-National passport) (diplomatic)(Diplomatic passport);YES;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;575;EN;Diplomatic passport;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;; +28/10/2022;6309;EU.2415.73;;;Date of designation: 09/05/2011;(Designation details: Date of designation: 09/05/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Amjad AL-ABBAS;;;;;12281;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6309;EU.2415.73;;;Date of designation: 09/05/2011;(Designation details: Date of designation: 09/05/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Amjad ABBAS;;M;;Former head of Political Security in Banyas. Promoted to the rank of Colonel in 2018.;120215;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6309;EU.2415.73;;;Date of designation: 09/05/2011;(Designation details: Date of designation: 09/05/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;أمجد عباس;;;;;124381;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6310;EU.3320.91;;2011-05-09;;(Date of UN designation: 2011-05-09);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rami MAKHLOUF;;M;;"Leading businessman. An influential member of the Makhlouf family and clo­sely connected to the Assad family; cousin of President Bashar Al‐Assad.";12282;EN;"Leading businessman operating in Syria with interests in the telecommunications, financial services, transport and property sectors; he has financial interest in and/or \nholds senior and executive positions in Syriatel, the leading \nmobile telephone operator in Syria, the investment \nfunds Al Mashreq, Bena Properties and Cham Holding. \nHe furnishes financing and support to the Syrian regime, \nthrough his business interests. He is an influential member \nof the Makhlouf family and closely connected to the Assad \nfamily; cousin of President Bashar al-Assad.";amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6310;EU.3320.91;;2011-05-09;;(Date of UN designation: 2011-05-09);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;رامي مخلوف;AR;M;;;124382;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6310;EU.3320.91;;2011-05-09;;(Date of UN designation: 2011-05-09);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-07-10;10;7;1969;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;1546;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6310;EU.3320.91;;2011-05-09;;(Date of UN designation: 2011-05-09);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"000098044 (passport-National passport) (passport no 000098044; \nIssue number 002-03- 0015187)";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;572;EN;"passport no 000098044; \nIssue number 002-03- 0015187";amendment;council;2018-05-29;2018-05-30;2018/774 (OJ L131);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:131:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;6311;EU.2416.38;;2011-05-09;;(Date of UN designation: 2011-05-09);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abd Al-Fatah QUDSIYAH;;M;;Officer of the rank of Major General in the Syrian Armed Forces in post after May 2011. \nDeputy Director of the National Security Bureau of the Ba'ath Party. Former Head of Syrian Military Intelligence Directorate;12283;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6311;EU.2416.38;;2011-05-09;;(Date of UN designation: 2011-05-09);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;عبد الفتاح قدسية;AR;M;;;124383;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6311;EU.2416.38;;2011-05-09;;(Date of UN designation: 2011-05-09);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;NO;GREGORIAN;;;;Hama;SY;SYRIAN ARAB REPUBLIC;1554;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6311;EU.2416.38;;2011-05-09;;(Date of UN designation: 2011-05-09);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D0005788 (passport-National passport) (diplomatic)(Diplomatic passport);YES;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;576;EN;Diplomatic passport;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;; +28/10/2022;6312;EU.3560.25;;;Date of listing: 09/05/2011;(Designation details: Date of listing: 09/05/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jamil HASSAN;;M;;Officer of the rank of Major‐General in the Syrian Air Force in post after May 2011. Former head of the Syrian Air Force In­telligence in post after May 2011 and until July 2019.;12284;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6312;EU.3560.25;;;Date of listing: 09/05/2011;(Designation details: Date of listing: 09/05/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jameel HASSAN;;;;;17146;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6312;EU.3560.25;;;Date of listing: 09/05/2011;(Designation details: Date of listing: 09/05/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jamil AL-HASSAN;EN;;;;109736;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6312;EU.3560.25;;;Date of listing: 09/05/2011;(Designation details: Date of listing: 09/05/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jameel AL-HASSAN;;;;;120419;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6312;EU.3560.25;;;Date of listing: 09/05/2011;(Designation details: Date of listing: 09/05/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;جميل حسن;AR;M;;;124384;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6312;EU.3560.25;;;Date of listing: 09/05/2011;(Designation details: Date of listing: 09/05/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-07-07;7;7;1953;;;NO;GREGORIAN;;Homs province;Qusayr;;SY;SYRIAN ARAB REPUBLIC;109735;EN;;amendment;council;2019-05-20;2019-05-21;2019/798 (OJ L132);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.132.01.0001.01.ENG&toc=OJ:L:2019:132:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6315;EU.3861.79;;2011-05-09;;(Date of UN designation: 2011-05-09)\n(Date of listing: 9.5.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Munzir Jamil AL-ASSAD;;M;;;12287;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6315;EU.3861.79;;2011-05-09;;(Date of UN designation: 2011-05-09)\n(Date of listing: 9.5.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Monzer Jamil AL-ASSAD;;;;;112185;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6315;EU.3861.79;;2011-05-09;;(Date of UN designation: 2011-05-09)\n(Date of listing: 9.5.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mundhir Jamil AL-ASSAD;;;;;112186;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6315;EU.3861.79;;2011-05-09;;(Date of UN designation: 2011-05-09)\n(Date of listing: 9.5.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;منذر جميل الأسد;AR;M;;;124385;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6315;EU.3861.79;;2011-05-09;;(Date of UN designation: 2011-05-09)\n(Date of listing: 9.5.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-03-01;1;3;1961;;;NO;GREGORIAN;;;;Kerdaha, Latakia Province;SY;SYRIAN ARAB REPUBLIC;1557;EN;;amendment;council;2017-05-30;2017-05-31;2017/907 (OJ L139);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0907&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6315;EU.3861.79;;2011-05-09;;(Date of UN designation: 2011-05-09)\n(Date of listing: 9.5.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"86449 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;579;EN;;amendment;commission;2011-05-24;2011-05-24;504/2011 (OJ L136);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0045:0047:EN:PDF;;;;;;;;;;;;; +28/10/2022;6315;EU.3861.79;;2011-05-09;;(Date of UN designation: 2011-05-09)\n(Date of listing: 9.5.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"842781 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;580;EN;;amendment;council;2018-05-29;2018-05-30;2018/774 (OJ L131);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:131:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;6333;EU.2400.53;;2011-06-23;;(Date of UN designation: 2011-06-23);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Bena Properties;;;;;12521;EN;Syria’s largest real estate company and the real estate and investment arm of Cham Holding.;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6333;EU.2400.53;;2011-06-23;;(Date of UN designation: 2011-06-23);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Ashrafiyat Sahnaya Rif Dimashq;Cham Holding Building, Daraa Highway;9525;;;;NO;;SY;SYRIAN ARAB REPUBLIC;129696;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6334;EU.2401.18;;;;;E;enterprise;amendment;commission;2012-08-03;2012-08-02;709/2012 (OJ L208);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:208:0002:0005:EN:PDF;;;;Shahid Beheshti University;;;;;12336;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6334;EU.2401.18;;;;;E;enterprise;amendment;commission;2012-08-03;2012-08-02;709/2012 (OJ L208);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:208:0002:0005:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Daneshju Blvd., Yaman St., Chamran Blvd.;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1755;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6334;EU.2401.18;;;;;E;enterprise;amendment;commission;2012-08-03;2012-08-02;709/2012 (OJ L208);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:208:0002:0005:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;P.O. Box 19839-63113;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1873;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6335;EU.2404.10;;;;(Bonyad Taavon Sepah, also known as the IRGC Cooperative Foundation, was formed by the Commanders of the IRGC to structure the IRGC's investments. It is controlled by the IRGC. Bonyad Taavon Sepah's Board of Trustees is composed of nine members, of whom eight are IRGC members. These officers include the IRGC's Commander in Chief, who is the Chairman of the Board of Trustees, the Supreme Leader's representative to the IRGC, the Basij commander, the IRGC Ground Forces commander, the IRGC Air Force commander, the IRGC Navy commander, the head of the IRGC Information Security Organization, a senior IRGC officer from the Armed Forces General Staff, and a senior IRGC officer from MODAFL. Date of listing: 23.05.2011);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Bonyad Taavon Sepah;;;;;12337;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6335;EU.2404.10;;;;(Bonyad Taavon Sepah, also known as the IRGC Cooperative Foundation, was formed by the Commanders of the IRGC to structure the IRGC's investments. It is controlled by the IRGC. Bonyad Taavon Sepah's Board of Trustees is composed of nine members, of whom eight are IRGC members. These officers include the IRGC's Commander in Chief, who is the Chairman of the Board of Trustees, the Supreme Leader's representative to the IRGC, the Basij commander, the IRGC Ground Forces commander, the IRGC Air Force commander, the IRGC Navy commander, the head of the IRGC Information Security Organization, a senior IRGC officer from the Armed Forces General Staff, and a senior IRGC officer from MODAFL. Date of listing: 23.05.2011);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;IRGC Cooperative Foundation;;;;;12506;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6335;EU.2404.10;;;;(Bonyad Taavon Sepah, also known as the IRGC Cooperative Foundation, was formed by the Commanders of the IRGC to structure the IRGC's investments. It is controlled by the IRGC. Bonyad Taavon Sepah's Board of Trustees is composed of nine members, of whom eight are IRGC members. These officers include the IRGC's Commander in Chief, who is the Chairman of the Board of Trustees, the Supreme Leader's representative to the IRGC, the Basij commander, the IRGC Ground Forces commander, the IRGC Air Force commander, the IRGC Navy commander, the head of the IRGC Information Security Organization, a senior IRGC officer from the Armed Forces General Staff, and a senior IRGC officer from MODAFL. Date of listing: 23.05.2011);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Bonyad-e Ta'avon-Sepah;;;;;12507;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6335;EU.2404.10;;;;(Bonyad Taavon Sepah, also known as the IRGC Cooperative Foundation, was formed by the Commanders of the IRGC to structure the IRGC's investments. It is controlled by the IRGC. Bonyad Taavon Sepah's Board of Trustees is composed of nine members, of whom eight are IRGC members. These officers include the IRGC's Commander in Chief, who is the Chairman of the Board of Trustees, the Supreme Leader's representative to the IRGC, the Basij commander, the IRGC Ground Forces commander, the IRGC Air Force commander, the IRGC Navy commander, the head of the IRGC Information Security Organization, a senior IRGC officer from the Armed Forces General Staff, and a senior IRGC officer from MODAFL. Date of listing: 23.05.2011);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Sepah Cooperative Foundation;;;;;12508;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6335;EU.2404.10;;;;(Bonyad Taavon Sepah, also known as the IRGC Cooperative Foundation, was formed by the Commanders of the IRGC to structure the IRGC's investments. It is controlled by the IRGC. Bonyad Taavon Sepah's Board of Trustees is composed of nine members, of whom eight are IRGC members. These officers include the IRGC's Commander in Chief, who is the Chairman of the Board of Trustees, the Supreme Leader's representative to the IRGC, the Basij commander, the IRGC Ground Forces commander, the IRGC Air Force commander, the IRGC Navy commander, the head of the IRGC Information Security Organization, a senior IRGC officer from the Armed Forces General Staff, and a senior IRGC officer from MODAFL. Date of listing: 23.05.2011);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Niayes Highway, Seoul Street;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1756;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6336;EU.2405.72;;;;(Bonyad Taavon Sepah created Ansar Bank to provide financial and credit services to IRGC personnel. Initially, Ansar Bank operated as a credit union and transitioned in to a fully fledged bank in mid 2009, upon receiving a licence from Iran's Central bank. Ansar Bank, formerly known as Ansar al Mojahedin, has been linked to the IRGC for over 20 years. IRGC members received their salaries through Ansar bank. In addition, Ansar bank provided special benefits to IRGC personnel, including reduced rates for home furnishings and free, or reduced-cost, health care. Date of listing: 23.05.2011);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ansar Bank;;;;;12338;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6336;EU.2405.72;;;;(Bonyad Taavon Sepah created Ansar Bank to provide financial and credit services to IRGC personnel. Initially, Ansar Bank operated as a credit union and transitioned in to a fully fledged bank in mid 2009, upon receiving a licence from Iran's Central bank. Ansar Bank, formerly known as Ansar al Mojahedin, has been linked to the IRGC for over 20 years. IRGC members received their salaries through Ansar bank. In addition, Ansar bank provided special benefits to IRGC personnel, including reduced rates for home furnishings and free, or reduced-cost, health care. Date of listing: 23.05.2011);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ansar Saving and Interest Free-Loans Fund;;;;;12509;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6336;EU.2405.72;;;;(Bonyad Taavon Sepah created Ansar Bank to provide financial and credit services to IRGC personnel. Initially, Ansar Bank operated as a credit union and transitioned in to a fully fledged bank in mid 2009, upon receiving a licence from Iran's Central bank. Ansar Bank, formerly known as Ansar al Mojahedin, has been linked to the IRGC for over 20 years. IRGC members received their salaries through Ansar bank. In addition, Ansar bank provided special benefits to IRGC personnel, including reduced rates for home furnishings and free, or reduced-cost, health care. Date of listing: 23.05.2011);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ansar al-Mojahedin No-Interest Loan Institute;;;;;12510;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6336;EU.2405.72;;;;(Bonyad Taavon Sepah created Ansar Bank to provide financial and credit services to IRGC personnel. Initially, Ansar Bank operated as a credit union and transitioned in to a fully fledged bank in mid 2009, upon receiving a licence from Iran's Central bank. Ansar Bank, formerly known as Ansar al Mojahedin, has been linked to the IRGC for over 20 years. IRGC members received their salaries through Ansar bank. In addition, Ansar bank provided special benefits to IRGC personnel, including reduced rates for home furnishings and free, or reduced-cost, health care. Date of listing: 23.05.2011);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ansae Institute;;;;;12511;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6336;EU.2405.72;;;;(Bonyad Taavon Sepah created Ansar Bank to provide financial and credit services to IRGC personnel. Initially, Ansar Bank operated as a credit union and transitioned in to a fully fledged bank in mid 2009, upon receiving a licence from Iran's Central bank. Ansar Bank, formerly known as Ansar al Mojahedin, has been linked to the IRGC for over 20 years. IRGC members received their salaries through Ansar bank. In addition, Ansar bank provided special benefits to IRGC personnel, including reduced rates for home furnishings and free, or reduced-cost, health care. Date of listing: 23.05.2011);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ansar Financial and Credit Institute;;;;;12512;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6336;EU.2405.72;;;;(Bonyad Taavon Sepah created Ansar Bank to provide financial and credit services to IRGC personnel. Initially, Ansar Bank operated as a credit union and transitioned in to a fully fledged bank in mid 2009, upon receiving a licence from Iran's Central bank. Ansar Bank, formerly known as Ansar al Mojahedin, has been linked to the IRGC for over 20 years. IRGC members received their salaries through Ansar bank. In addition, Ansar bank provided special benefits to IRGC personnel, including reduced rates for home furnishings and free, or reduced-cost, health care. Date of listing: 23.05.2011);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Ansar Finance and Credit Fund;;;;;12513;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6336;EU.2405.72;;;;(Bonyad Taavon Sepah created Ansar Bank to provide financial and credit services to IRGC personnel. Initially, Ansar Bank operated as a credit union and transitioned in to a fully fledged bank in mid 2009, upon receiving a licence from Iran's Central bank. Ansar Bank, formerly known as Ansar al Mojahedin, has been linked to the IRGC for over 20 years. IRGC members received their salaries through Ansar bank. In addition, Ansar bank provided special benefits to IRGC personnel, including reduced rates for home furnishings and free, or reduced-cost, health care. Date of listing: 23.05.2011);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;539 North Pasdaran Avenue, Tehran;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1757;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6336;EU.2405.72;;;;(Bonyad Taavon Sepah created Ansar Bank to provide financial and credit services to IRGC personnel. Initially, Ansar Bank operated as a credit union and transitioned in to a fully fledged bank in mid 2009, upon receiving a licence from Iran's Central bank. Ansar Bank, formerly known as Ansar al Mojahedin, has been linked to the IRGC for over 20 years. IRGC members received their salaries through Ansar bank. In addition, Ansar bank provided special benefits to IRGC personnel, including reduced rates for home furnishings and free, or reduced-cost, health care. Date of listing: 23.05.2011);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;North Khaje Nasir Street [Ansar Building];;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1874;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6337;EU.2407.2;;2011-05-23;;(Date of UN designation: 2011-05-23)\n(Mehr Bank is controlled by Bonyas Taavon Sepah and the IRGC. Mehr Bank provides financial services to the IRGC. According to an open source interview with the head of Bonyad Taavon Sepah, Parviz Fattah, Bonyad Taavon Sepah created Mehr Bank to serve the Basij (paramilitary arm of the IRGC).);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Mehr Bank;;;;;12339;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6337;EU.2407.2;;2011-05-23;;(Date of UN designation: 2011-05-23)\n(Mehr Bank is controlled by Bonyas Taavon Sepah and the IRGC. Mehr Bank provides financial services to the IRGC. According to an open source interview with the head of Bonyad Taavon Sepah, Parviz Fattah, Bonyad Taavon Sepah created Mehr Bank to serve the Basij (paramilitary arm of the IRGC).);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Mehr Finance and Credit Institute;;;;;12514;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6337;EU.2407.2;;2011-05-23;;(Date of UN designation: 2011-05-23)\n(Mehr Bank is controlled by Bonyas Taavon Sepah and the IRGC. Mehr Bank provides financial services to the IRGC. According to an open source interview with the head of Bonyad Taavon Sepah, Parviz Fattah, Bonyad Taavon Sepah created Mehr Bank to serve the Basij (paramilitary arm of the IRGC).);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Mehr Interest-Free Bank;;;;;12515;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6337;EU.2407.2;;2011-05-23;;(Date of UN designation: 2011-05-23)\n(Mehr Bank is controlled by Bonyas Taavon Sepah and the IRGC. Mehr Bank provides financial services to the IRGC. According to an open source interview with the head of Bonyad Taavon Sepah, Parviz Fattah, Bonyad Taavon Sepah created Mehr Bank to serve the Basij (paramilitary arm of the IRGC).);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Banca Mehr;IT;;;;141549;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6337;EU.2407.2;;2011-05-23;;(Date of UN designation: 2011-05-23)\n(Mehr Bank is controlled by Bonyas Taavon Sepah and the IRGC. Mehr Bank provides financial services to the IRGC. According to an open source interview with the head of Bonyad Taavon Sepah, Parviz Fattah, Bonyad Taavon Sepah created Mehr Bank to serve the Basij (paramilitary arm of the IRGC).);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;Tehran,1666943;No. 182, Shahid Tohidi St, 4th Golsetan, Pasdaran Ave.;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1758;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6342;EU.2488.72;;2011-06-23;;(Date of UN designation: 2011-06-23);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Al Mashreq Investment Fund;;;;;12522;EN;;amendment;commission;2011-06-24;2011-06-24;611/2011 (OJ L164);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:164:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6342;EU.2488.72;;2011-06-23;;(Date of UN designation: 2011-06-23);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;AMIF;;;;;12878;EN;;amendment;commission;2011-06-24;2011-06-24;611/2011 (OJ L164);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:164:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6342;EU.2488.72;;2011-06-23;;(Date of UN designation: 2011-06-23);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Sunduq Al Mashrek Al Istithmari;;;;;12879;EN;;amendment;commission;2011-06-24;2011-06-24;611/2011 (OJ L164);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:164:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6342;EU.2488.72;;2011-06-23;;(Date of UN designation: 2011-06-23);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Damascus;P.O. Box 108;P.O. Box 108;;;Damascus;NO;PHONE[963 112110059/963112110043]\nFAX[963 933333149];SY;SYRIAN ARAB REPUBLIC;1931;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6343;EU.2489.37;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hamcho International;;;;;12523;EN;Hamcho International is a large Syrian holding company owned by Mohammed Hamcho.;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6343;EU.2489.37;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hamsho International Group;;;;;12880;EN;;amendment;commission;2011-06-24;2011-06-24;611/2011 (OJ L164);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:164:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6343;EU.2489.37;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Baghdad Street;P.O. Box 8254;;;;NO;WEB[http://www.hamshointl.com]\nPHONE[+963 112316675 ]\nEMAIL[info@hamshointl.com and hamshogrou­p@yahoo.com ]\nFAX[+963 112318875];SY;SYRIAN ARAB REPUBLIC;1932;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6376;EU.2500.18;;;;(Involved in procurement of materials for EU-sanctioned Iran Centrifuge Technology Company. Date of listing 23.5.2011);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Aras Farayande;;;;;12378;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6376;EU.2500.18;;;;(Involved in procurement of materials for EU-sanctioned Iran Centrifuge Technology Company. Date of listing 23.5.2011);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;35 Kooshesh Street, Unit 12;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1807;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6387;EU.2497.11;;;Date of listing 23.5.2011.;(Designation details: Date of listing 23.5.2011.)\n(Involved in procurement of materials that are controlled and have direct application in the manufacture of centrifuges for Iran's uranium enrichment programme. Date of listing 23.5.2011.);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Noavaran Pooyamoj;;;;;12390;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6387;EU.2497.11;;;Date of listing 23.5.2011.;(Designation details: Date of listing 23.5.2011.)\n(Involved in procurement of materials that are controlled and have direct application in the manufacture of centrifuges for Iran's uranium enrichment programme. Date of listing 23.5.2011.);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Towsee Fanavari Boshra;;;;;118046;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6387;EU.2497.11;;;Date of listing 23.5.2011.;(Designation details: Date of listing 23.5.2011.)\n(Involved in procurement of materials that are controlled and have direct application in the manufacture of centrifuges for Iran's uranium enrichment programme. Date of listing 23.5.2011.);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Pooya Wave Company;;;;;118047;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6387;EU.2497.11;;;Date of listing 23.5.2011.;(Designation details: Date of listing 23.5.2011.)\n(Involved in procurement of materials that are controlled and have direct application in the manufacture of centrifuges for Iran's uranium enrichment programme. Date of listing 23.5.2011.);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Mohandesi Hedayat Control Paya;;;;;118048;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6387;EU.2497.11;;;Date of listing 23.5.2011.;(Designation details: Date of listing 23.5.2011.)\n(Involved in procurement of materials that are controlled and have direct application in the manufacture of centrifuges for Iran's uranium enrichment programme. Date of listing 23.5.2011.);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Mehbang Sana;;;;;118049;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6387;EU.2497.11;;;Date of listing 23.5.2011.;(Designation details: Date of listing 23.5.2011.)\n(Involved in procurement of materials that are controlled and have direct application in the manufacture of centrifuges for Iran's uranium enrichment programme. Date of listing 23.5.2011.);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Green Emirate Paya;;;;;118050;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6387;EU.2497.11;;;Date of listing 23.5.2011.;(Designation details: Date of listing 23.5.2011.)\n(Involved in procurement of materials that are controlled and have direct application in the manufacture of centrifuges for Iran's uranium enrichment programme. Date of listing 23.5.2011.);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Tosee Danesh Fanavari Faramoj;;;;;118051;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6387;EU.2497.11;;;Date of listing 23.5.2011.;(Designation details: Date of listing 23.5.2011.)\n(Involved in procurement of materials that are controlled and have direct application in the manufacture of centrifuges for Iran's uranium enrichment programme. Date of listing 23.5.2011.);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Faramoj Company;;;;;118052;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6387;EU.2497.11;;;Date of listing 23.5.2011.;(Designation details: Date of listing 23.5.2011.)\n(Involved in procurement of materials that are controlled and have direct application in the manufacture of centrifuges for Iran's uranium enrichment programme. Date of listing 23.5.2011.);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Fanavaran Mojpooya;;;;;118053;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6387;EU.2497.11;;;Date of listing 23.5.2011.;(Designation details: Date of listing 23.5.2011.)\n(Involved in procurement of materials that are controlled and have direct application in the manufacture of centrifuges for Iran's uranium enrichment programme. Date of listing 23.5.2011.);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Behdis Tejarat General Trading Company;;;;;118054;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6387;EU.2497.11;;;Date of listing 23.5.2011.;(Designation details: Date of listing 23.5.2011.)\n(Involved in procurement of materials that are controlled and have direct application in the manufacture of centrifuges for Iran's uranium enrichment programme. Date of listing 23.5.2011.);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Bazarganis Behdis Tejarat Alborz Company;;;;;118055;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6387;EU.2497.11;;;Date of listing 23.5.2011.;(Designation details: Date of listing 23.5.2011.)\n(Involved in procurement of materials that are controlled and have direct application in the manufacture of centrifuges for Iran's uranium enrichment programme. Date of listing 23.5.2011.);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Behdis Tejarat;;;;;118056;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6387;EU.2497.11;;;Date of listing 23.5.2011.;(Designation details: Date of listing 23.5.2011.)\n(Involved in procurement of materials that are controlled and have direct application in the manufacture of centrifuges for Iran's uranium enrichment programme. Date of listing 23.5.2011.);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Bastan Tejerat Mabna;;;;;118057;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6387;EU.2497.11;;;Date of listing 23.5.2011.;(Designation details: Date of listing 23.5.2011.)\n(Involved in procurement of materials that are controlled and have direct application in the manufacture of centrifuges for Iran's uranium enrichment programme. Date of listing 23.5.2011.);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Noavaran Tejarat Paya;;;;;118058;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6396;EU.2537.67;;2011-05-23;;(Date of UN designation: 2011-05-23);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Raad Iran;;;;;12402;EN;A company involved in procurement of inverters for Iran's proscribed enrichment programme. Raad Iran was established to produce and design controlling systems and provides the sale and installation of inverters and programmable Logic Controllers.;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6396;EU.2537.67;;2011-05-23;;(Date of UN designation: 2011-05-23);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Raad Automation Company;;;;;12403;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6396;EU.2537.67;;2011-05-23;;(Date of UN designation: 2011-05-23);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Automation Raad Khavar Mianeh Nabbet Co;;;;;131107;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6396;EU.2537.67;;2011-05-23;;(Date of UN designation: 2011-05-23);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Automasion RAAD Khavar Mianeh;;;;;131108;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6396;EU.2537.67;;2011-05-23;;(Date of UN designation: 2011-05-23);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Middle East RAAD Automation Co.;;;;;131109;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6396;EU.2537.67;;2011-05-23;;(Date of UN designation: 2011-05-23);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;RAADIRAN;;;;;131110;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6396;EU.2537.67;;2011-05-23;;(Date of UN designation: 2011-05-23);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Raad Iran Automation Co.;;;;;131111;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6396;EU.2537.67;;2011-05-23;;(Date of UN designation: 2011-05-23);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;RAAD Automation Co.;;;;;131112;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6396;EU.2537.67;;2011-05-23;;(Date of UN designation: 2011-05-23);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Middle East Raad Automation;;;;;131113;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6396;EU.2537.67;;2011-05-23;;(Date of UN designation: 2011-05-23);E;enterprise;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;Tehran;Unit 1, No 35, Bouali Sina Sharghi, Chehel Sotoun Street, Fatemi Square;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1825;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6400;EU.2437.5;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Bashar AL-ASSAD;;M;;President of the Republic;12409;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6400;EU.2437.5;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;بشارالاسد;AR;M;President of the Republic;;124360;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6400;EU.2437.5;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-09-11;11;9;1965;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;1552;EN;;amendment;commission;2011-05-24;2011-05-24;504/2011 (OJ L136);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0045:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6400;EU.2437.5;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D1903 (passport-National passport) (diplomatic)(Diplomatic passport);YES;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;574;EN;Diplomatic passport;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;; +28/10/2022;6403;EU.2470.60;;;;(A company that procures sensitive goods for the Nuclear Reactors Fuel Company (SUREH). Sun Middle East uses intermediaries based outside of Iran to source goods SUREH requires. Sun Middle East provides these intermediaries with false end user details for when the goods are sent to Iran, thereby seeking to circumvent the relevant country's Customs regime. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Sun Middle East FZ Company;;;;;12411;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6404;EU.2471.25;;;Date of listing 23.5.2011.;(Designation details: Date of listing 23.5.2011.);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Ashtian Tablo;;;;;12412;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6404;EU.2471.25;;;Date of listing 23.5.2011.;(Designation details: Date of listing 23.5.2011.);E;enterprise;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;Tehran;Ashtian Tablo - No 67, Ghods mirheydari St, Yoosefabad;;;;;NO;;00;UNKNOWN;1833;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6407;EU.2472.87;;;;(A manufacturer of electrical equipment (switchgear) involved in the ongoing construction of the Fordow (Qom) facility built without being declared to the IAEA. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Bals Alman;;;;;12414;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6408;EU.2473.52;;;;(A company that has procured goods and equipment destined for Iran's Nuclear and Ballistic Missile programmes for the UN- sanctioned Kalaye Electric Company (KEC). Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Hirbod Co;;;;;12416;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6408;EU.2473.52;;;;(A company that has procured goods and equipment destined for Iran's Nuclear and Ballistic Missile programmes for the UN- sanctioned Kalaye Electric Company (KEC). Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;3 Second Street [Flat 2], Asad Abadi Avenue;;14316;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1835;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6412;EU.2498.73;;;;(Procurement firm that has acted for Mesbah Energy which was designated under UNSCR 1737. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Marou Sanat;;;;;12424;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6412;EU.2498.73;;;;(Procurement firm that has acted for Mesbah Energy which was designated under UNSCR 1737. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Mohandesi Tarh Va Toseh Maro Sanat Company;;;;;12425;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6412;EU.2498.73;;;;(Procurement firm that has acted for Mesbah Energy which was designated under UNSCR 1737. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;9 Zohre Street [Ground Floor], Mofateh Street;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1840;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6422;EU.2412.81;;;;(Subsidiary of Novin Energy, which was sanctioned under UNSCR 1747, involved in laser welding. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Paya Parto;;;;;12438;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6422;EU.2412.81;;;;(Subsidiary of Novin Energy, which was sanctioned under UNSCR 1747, involved in laser welding. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Paya Partov;;;;;12440;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6428;EU.2417.3;;;;(Engineering firm that procures equipment for Iran's IR-40 heavy water research reactor. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Taghtiran;;;;;12446;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6440;EU.2501.80;;;;(Involved in procurement of components for Iranian fighter planes. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;MAAA Synergy;;;;;12464;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6440;EU.2501.80;;;;(Involved in procurement of components for Iranian fighter planes. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;MY;MALAYSIA;1861;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6441;EU.2502.45;;;;(Involved in procurement of components for Iranian nuclear programme. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Modern Technologies FZC;;;;;12465;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6441;EU.2502.45;;;;(Involved in procurement of components for Iranian nuclear programme. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;MTFZC;;;;;12466;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6441;EU.2502.45;;;;(Involved in procurement of components for Iranian nuclear programme. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Sharjah;PO Box 8032;;;;;NO;;AE;UNITED ARAB EMIRATES;1862;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6444;EU.2516.3;;;;(Involved in procurement of components for Iranian nuclear programme. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Tajhiz Sanat Shayan;;;;;12470;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6444;EU.2516.3;;;;(Involved in procurement of components for Iranian nuclear programme. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;TSS;;;;;12471;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6444;EU.2516.3;;;;(Involved in procurement of components for Iranian nuclear programme. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Teheran;Unit 7, No. 40, Yazdanpanah, Afriqa Blvd.;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1865;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6445;EU.2517.65;;;;(Conducts research into military applications of Iranian nuclear programme. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Institute of Applied Physics;;;;;12472;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6445;EU.2517.65;;;;(Conducts research into military applications of Iranian nuclear programme. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;IAP;;;;;12473;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6446;EU.2518.30;;;;(Affiliated to MTFZC network. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Aran Modern Devices;;;;;12474;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6446;EU.2518.30;;;;(Affiliated to MTFZC network. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;AMD;;;;;12475;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6448;EU.2541.84;;;;(Subsidiary of Iran Electronics Industries. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Electronic Components Industries;;;;;12480;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6448;EU.2541.84;;;;(Subsidiary of Iran Electronics Industries. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;ECI;;;;;12481;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6448;EU.2541.84;;;;(Subsidiary of Iran Electronics Industries. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Shiraz;Hossain Abad Avenue;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1868;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6449;EU.2542.49;;;;(Subsidiary of Iran Electronics Industries. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;Shiraz Electronics Industries;;;;;12485;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6449;EU.2542.49;;;;(Subsidiary of Iran Electronics Industries. Date of listing 23.5.2011.);E;enterprise;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;Shiraz;Mirzaie Shirazi, P.O. Box 71365-1589;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1869;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6450;EU.3091.71;;;;(Controlled by Sepanir Oil & Gas Energy Engineering Company. Date of listing 23.5.2011.);E;enterprise;amendment;council;2015-06-26;2015-06-27;2015/1001 (OJ L 161);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_161_R_0001&from=EN;;;;Iran Marine Industrial Company;;;;;12486;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6450;EU.3091.71;;;;(Controlled by Sepanir Oil & Gas Energy Engineering Company. Date of listing 23.5.2011.);E;enterprise;amendment;council;2015-06-26;2015-06-27;2015/1001 (OJ L 161);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_161_R_0001&from=EN;;;;SADRA;;;;;12487;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6450;EU.3091.71;;;;(Controlled by Sepanir Oil & Gas Energy Engineering Company. Date of listing 23.5.2011.);E;enterprise;amendment;council;2015-06-26;2015-06-27;2015/1001 (OJ L 161);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_161_R_0001&from=EN;;;;;;;;;;;;;;;;;;;Tehran;3 Shafagh St. [Sadra Building], Poonak Khavari Blvd., Shahrak Ghods, P.O. Box 14669- 56491;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1870;EN;;amendment;commission;2011-05-24;2011-05-24;503/2011 (OJ L136);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0026:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6453;EU.3087.54;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Faruq AL SHAR';;M;;Former Vice-President of Syria;12495;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6453;EU.3087.54;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Farouq AL SHAR';;;;;17152;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6453;EU.3087.54;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Farouk AL SHAR';;;;;17153;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6453;EU.3087.54;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Faruq AL CHAR';;;;;17154;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6453;EU.3087.54;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Faruq AL SHARA';;;;;17155;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6453;EU.3087.54;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Faruq AL SHARA;;;;;17156;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6453;EU.3087.54;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Farouk AL SHARA;EN;;;;105234;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6453;EU.3087.54;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Farouk AL SHARA';EN;;;;105235;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6453;EU.3087.54;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Farouk AL CHAR';EN;;;;105236;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6453;EU.3087.54;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Farouq AL SHARA;EN;;;;105237;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6453;EU.3087.54;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Farouq AL SHARA';EN;;;;105238;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6453;EU.3087.54;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Farouq AL CHAR';EN;;;;105239;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6453;EU.3087.54;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;فاروق الشرع;AR;M;;;124386;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6453;EU.3087.54;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1938-12-10;10;12;1938;;;NO;GREGORIAN;;;;;00;UNKNOWN;1560;EN;;amendment;commission;2011-05-24;2011-05-24;504/2011 (OJ L136);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0045:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6455;EU.2485.80;;;;;P;person;amendment;council;2015-01-26;2015-01-26;2015/108 (OJ L20);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_020_R_0002&from=EN;Hamcho;Mohamed;;Mohamed Hamcho;;;;;12497;EN;;amendment;commission;2011-05-24;2011-05-24;504/2011 (OJ L136);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0045:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6455;EU.2485.80;;;;;P;person;amendment;council;2015-01-26;2015-01-26;2015/108 (OJ L20);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_020_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-05-20;20;5;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;1563;EN;;amendment;council;2015-01-26;2015-01-26;2015/108 (OJ L20);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_020_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6455;EU.2485.80;;;;;P;person;amendment;council;2015-01-26;2015-01-26;2015/108 (OJ L20);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_020_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"002954347 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;582;EN;;amendment;commission;2011-05-24;2011-05-24;504/2011 (OJ L136);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0045:0047:EN:PDF;;;;;;;;;;;;; +28/10/2022;6456;EU.2486.45;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Iyad MAKHLOUF;;M;;;12498;EN;"Member of the Makhlouf family; son of Mohammed Makhlouf, brother of Hafez and Rami and brother \nof Ihab Makhlouf; cousin of President Bashar al-Assad. \nMember of the Syrian security and intelli­gence services in post after May 2011.";amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6456;EU.2486.45;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Eyad MAKHLOUF;;;;;12499;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6456;EU.2486.45;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;اياد مخلوف;AR;M;;;124388;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6456;EU.2486.45;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-01-21;21;1;1973;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;1564;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6456;EU.2486.45;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"N001820740 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;583;EN;;amendment;commission;2011-05-24;2011-05-24;504/2011 (OJ L136);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0045:0047:EN:PDF;;;;;;;;;;;;; +28/10/2022;6457;EU.2729.23;;;Date of designation: 23.5.2011;(Designation details: Date of designation: 23.5.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Bassam AL HASSAN;;M;Major General;"Presidential Advisor for Strategic Affairs; head of the General Secretariat of the National Defence.";12500;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6457;EU.2729.23;;;Date of designation: 23.5.2011;(Designation details: Date of designation: 23.5.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Bassam AL HASAN;;;;;17163;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6457;EU.2729.23;;;Date of designation: 23.5.2011;(Designation details: Date of designation: 23.5.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;بسام الحسن;AR;M;;;124389;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6457;EU.2729.23;;;Date of designation: 23.5.2011;(Designation details: Date of designation: 23.5.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;Sheen, Hom;;SY;SYRIAN ARAB REPUBLIC;120218;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6459;EU.3322.21;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ihab MAKHLOUF;;M;;"Leading businessman operating in Syria. An influential member of the Makhlouf family and clo­sely connected to the Assad family; cousin of President Bashar al‐Assad.";12502;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6459;EU.3322.21;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ehab MAKHLOUF;;M;;;12503;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6459;EU.3322.21;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Iehab MAKHLOUF;;M;;;12504;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6459;EU.3322.21;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;إيهاب مخلوف;AR;M;;;124390;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6459;EU.3322.21;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-01-21;21;1;1973;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;1565;EN;;amendment;commission;2011-05-24;2011-05-24;504/2011 (OJ L136);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0045:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6459;EU.3322.21;;2011-05-23;;(Date of UN designation: 2011-05-23);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"N002848852 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;584;EN;;amendment;commission;2011-05-24;2011-05-24;504/2011 (OJ L136);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:136:0045:0047:EN:PDF;;;;;;;;;;;;; +28/10/2022;6462;EU.2784.10;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Military Housing Establishment;;;;;12538;EN;;amendment;commission;2011-06-24;2011-06-24;611/2011 (OJ L164);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:164:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6462;EU.2784.10;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;MILIHOUSE;;;;;12881;EN;;amendment;commission;2011-06-24;2011-06-24;611/2011 (OJ L164);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:164:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6463;EU.2785.72;;2011-06-16;;(Date of UN designation: 2011-06-16)\n((a) Father’s name is Ahmed Othman Al Omirah (b) Date of designation referred to in Article 2a(4)(b): 16.6.2011.);P;person;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;Al-Ghamdi;Othman;Ahmed Othman;Othman Ahmed Othman Al-Ghamdi;;;;;104143;EN;;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6463;EU.2785.72;;2011-06-16;;(Date of UN designation: 2011-06-16)\n((a) Father’s name is Ahmed Othman Al Omirah (b) Date of designation referred to in Article 2a(4)(b): 16.6.2011.);P;person;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;Othman al-Ghamdi;;;;;104144;EN;;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6463;EU.2785.72;;2011-06-16;;(Date of UN designation: 2011-06-16)\n((a) Father’s name is Ahmed Othman Al Omirah (b) Date of designation referred to in Article 2a(4)(b): 16.6.2011.);P;person;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;Uthman al-Ghamdi;;;;;104145;EN;;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6463;EU.2785.72;;2011-06-16;;(Date of UN designation: 2011-06-16)\n((a) Father’s name is Ahmed Othman Al Omirah (b) Date of designation referred to in Article 2a(4)(b): 16.6.2011.);P;person;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;Uthman al-Ghamidi;;;;;104146;EN;;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6463;EU.2785.72;;2011-06-16;;(Date of UN designation: 2011-06-16)\n((a) Father’s name is Ahmed Othman Al Omirah (b) Date of designation referred to in Article 2a(4)(b): 16.6.2011.);P;person;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;Othman bin Ahmed bin Othman Alghamdi;;;;;104147;EN;;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6463;EU.2785.72;;2011-06-16;;(Date of UN designation: 2011-06-16)\n((a) Father’s name is Ahmed Othman Al Omirah (b) Date of designation referred to in Article 2a(4)(b): 16.6.2011.);P;person;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;Othman Ahmed Othman Al Omairah;;;;;104148;EN;;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6463;EU.2785.72;;2011-06-16;;(Date of UN designation: 2011-06-16)\n((a) Father’s name is Ahmed Othman Al Omirah (b) Date of designation referred to in Article 2a(4)(b): 16.6.2011.);P;person;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;Uthman Ahmad Uthman al-Ghamdi;;;;;104149;EN;;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6463;EU.2785.72;;2011-06-16;;(Date of UN designation: 2011-06-16)\n((a) Father’s name is Ahmed Othman Al Omirah (b) Date of designation referred to in Article 2a(4)(b): 16.6.2011.);P;person;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;Othman Ahmed Othman al-Omirah;;;;;104150;EN;;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6463;EU.2785.72;;2011-06-16;;(Date of UN designation: 2011-06-16)\n((a) Father’s name is Ahmed Othman Al Omirah (b) Date of designation referred to in Article 2a(4)(b): 16.6.2011.);P;person;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;Al Umairah al-Ghamdi;;;;;104151;EN;;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6463;EU.2785.72;;2011-06-16;;(Date of UN designation: 2011-06-16)\n((a) Father’s name is Ahmed Othman Al Omirah (b) Date of designation referred to in Article 2a(4)(b): 16.6.2011.);P;person;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;Othman Bin Ahmed Bin Othman;;;;;104152;EN;;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6463;EU.2785.72;;2011-06-16;;(Date of UN designation: 2011-06-16)\n((a) Father’s name is Ahmed Othman Al Omirah (b) Date of designation referred to in Article 2a(4)(b): 16.6.2011.);P;person;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;YE;YEMEN;104137;EN;;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6463;EU.2785.72;;2011-06-16;;(Date of UN designation: 2011-06-16)\n((a) Father’s name is Ahmed Othman Al Omirah (b) Date of designation referred to in Article 2a(4)(b): 16.6.2011.);P;person;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-05-27;27;5;1979;;;NO;GREGORIAN;;;;;SA;SAUDI ARABIA;104138;EN;;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6463;EU.2785.72;;2011-06-16;;(Date of UN designation: 2011-06-16)\n((a) Father’s name is Ahmed Othman Al Omirah (b) Date of designation referred to in Article 2a(4)(b): 16.6.2011.);P;person;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;NO;GREGORIAN;;;;;YE;YEMEN;104139;EN;;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6463;EU.2785.72;;2011-06-16;;(Date of UN designation: 2011-06-16)\n((a) Father’s name is Ahmed Othman Al Omirah (b) Date of designation referred to in Article 2a(4)(b): 16.6.2011.);P;person;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1089516791 (id-National identification card) ((saudi arabian national identity card));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;SA;;104142;EN;(saudi arabian national identity card);amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;; +28/10/2022;6463;EU.2785.72;;2011-06-16;;(Date of UN designation: 2011-06-16)\n((a) Father’s name is Ahmed Othman Al Omirah (b) Date of designation referred to in Article 2a(4)(b): 16.6.2011.);P;person;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SA;;104140;EN;;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF +28/10/2022;6463;EU.2785.72;;2011-06-16;;(Date of UN designation: 2011-06-16)\n((a) Father’s name is Ahmed Othman Al Omirah (b) Date of designation referred to in Article 2a(4)(b): 16.6.2011.);P;person;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;697;EN;;amendment;commission;2011-06-25;2011-06-24;621/2011 (OJ L166);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:166:0018:0019:EN:PDF +28/10/2022;6476;EU.2743.41;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;CHALICHE;Zoulhima;;Zoulhima CHALICHE;;M;Major General;Officer of the Syrian security and intelligence services in post after May 2011.;12882;EN;Former Head of Presidential Security. \nMember of the Syrian Armed Forces of the rank of Major General in post after May 2011. \nMember of the Assad family: cousin of Presi­dent Bashar \nAl-Assad.;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6476;EU.2743.41;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;SHALISH;Zoulhima;;Zoulhima SHALISH;;;;;12883;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6476;EU.2743.41;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;CHALICHE;Zu al-Himma;;Zu al-Himma CHALICHE;;;;;17164;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6476;EU.2743.41;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Zoulhima SHALEESH;;;;;17165;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6476;EU.2743.41;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Shalish;Dhu al-Himma;;Dhu al-Himma Shalish;;;;;17166;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6476;EU.2743.41;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ذو الهمة شاليش;AR;M;;;124391;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6476;EU.2743.41;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946;;;NO;GREGORIAN;;;;Kerdaha;SY;SYRIAN ARAB REPUBLIC;1623;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6476;EU.2743.41;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951;;;NO;GREGORIAN;;;;Kerdaha;SY;SYRIAN ARAB REPUBLIC;1624;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6476;EU.2743.41;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;;Kerdaha;SY;SYRIAN ARAB REPUBLIC;2008;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6477;EU.2767.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;CHALICHE;Riyad;;Riyad CHALICHE;;M;;chairman of Riyad Isa Development Corporation;12884;EN;Former Director of Military Housing Establishment;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6477;EU.2767.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;SHALISH;Riyad;;Riyad SHALISH;;;;;12901;EN;;amendment;commission;2011-06-24;2011-06-24;611/2011 (OJ L164);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:164:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6477;EU.2767.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;SHALEESH;Riyad;;Riyad SHALEESH;;;;;17170;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6477;EU.2767.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Riyad Shalish;;;;;123886;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6477;EU.2767.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;رياض شاليش;AR;M;;;124392;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6478;EU.2768.62;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;JAFARI;Mohammad;Ali;Mohammad Ali JAFARI;;M;Brigadier Commander;Head of ‘Baqiayt Allah’, cultural organisation of the Islamic Revolutionary Guard Corps. General Commander of the Isla­mic Revolutionary Guard Corps until 21.4.2019,;12885;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6478;EU.2768.62;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ja'fari, Aziz;;;;;12886;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6478;EU.2768.62;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jaafari, Aziz;;;;;12887;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6478;EU.2768.62;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;JA'FARI;Mohammad;Ali;Mohammad Ali JA'FARI;;;;;12889;EN;;amendment;commission;2011-06-24;2011-06-24;611/2011 (OJ L164);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:164:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6478;EU.2768.62;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;JAFARI-NAJAFABADI;Mohammad;Ali;Mohammad Ali JAFARI-NAJAFABADI;;;;;12890;EN;;amendment;commission;2011-06-24;2011-06-24;611/2011 (OJ L164);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:164:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6478;EU.2768.62;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;JAFARI;Mohamed;Ali;Mohamed Ali JAFARI;;;;;17186;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6478;EU.2768.62;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;JAFARI;Muhammad;Ali;Muhammad Ali JAFARI;;;;;17187;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6478;EU.2768.62;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;JAFARI;Mohammed;Ali;Mohammed Ali JAFARI;;;;;17188;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6478;EU.2768.62;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;JAAFARI;Mohammad;Ali;Mohammad Ali JAAFARI;;;;;17190;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6478;EU.2768.62;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jafari, Mohammad Ali;;;;;124102;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6478;EU.2768.62;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ja'fari, Mo­hammad Ali;;;;;124103;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6478;EU.2768.62;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jafari‐Naja‐fabadi, Mohammad Ali;;;;;124104;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6478;EU.2768.62;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jafari, Ali;;;;;124270;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6478;EU.2768.62;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد علي جعفري;AR;M;;;124393;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6478;EU.2768.62;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-09-01;1;9;1957;;;NO;GREGORIAN;;;;Yazd;IR;IRAN (ISLAMIC REPUBLIC OF);1626;EN;;amendment;commission;2011-06-24;2011-06-24;611/2011 (OJ L164);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:164:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6480;EU.2791.19;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hossein TAEB;;M;;Director of the Islamic Revolutionary Guard Corps Intelli­gence Service. Former Deputy Commander for Intelligence of the Islamic Revolutionary Guard Corps.;12893;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6480;EU.2791.19;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Taeb, Hassan;;;;;12894;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6480;EU.2791.19;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Taeb, Hosein;;;;;12895;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6480;EU.2791.19;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Taeb, Hussayn;;;;;12896;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6480;EU.2791.19;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hojjatoleslam Hossein Ta'eb;;;;;12897;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6480;EU.2791.19;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Taeb, Hossein;;;;;124105;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6480;EU.2791.19;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;حسين طائب;AR;M;;;124394;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6480;EU.2791.19;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;NO;GREGORIAN;;;;Tehran;IR;IRAN (ISLAMIC REPUBLIC OF);1625;EN;;amendment;commission;2011-06-24;2011-06-24;611/2011 (OJ L164);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:164:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6481;EU.2792.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;QADDUR;Khalid;;Khalid QADDUR;;;;;12898;EN;;amendment;commission;2011-06-24;2011-06-24;611/2011 (OJ L164);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:164:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6481;EU.2792.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;QADDUR;Khaled;;Khaled QADDUR;;;;;17194;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6481;EU.2792.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;QADOUR;Khalid;;Khalid QADOUR;;;;;17196;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6481;EU.2792.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;QADDOUR;Khalid;;Khalid QADDOUR;;;;;17197;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6481;EU.2792.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;خالد قدور;AR;M;;;124861;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6482;EU.3324.48;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;AL-QUWATLY;Ra'if;;Ra'if AL-QUWATLY;;M;;Business associate of Maher al‐Assad and responsible for managing some of his business interests.;12899;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6482;EU.3324.48;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ri'af al-Quwatli;;;;;12900;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6482;EU.3324.48;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Raeef al-Kouatly;;;;;15815;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6482;EU.3324.48;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;رئيف القوتلي;AR;M;;;124395;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6482;EU.3324.48;;2011-06-23;;(Date of UN designation: 2011-06-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-02-03;3;2;1967;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;108728;EN;;amendment;council;2016-05-28;2016-05-29;2016/840 (OJ L141);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0840&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;Ba’aysir;Abdul;Rahim;Abdul Rahim Ba’aysir;;;;;14009;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;Bashir;Abdul;Rahim;Abdul Rahim Bashir;;;;;14010;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;Ba’asyir;’Abd;Al-Rahim;’Abd Al-Rahim Ba’asyir;;;;;14011;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;Bashir;’Abd;Al-Rahim;’Abd Al-Rahim Bashir;;;;;14012;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;Ba’asyir;Abdurrahim;;Abdurrahim Ba’asyir;;;;;14013;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;Bashir;Abdurrahim;;Abdurrahim Bashir;;;;;14014;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;Ba’asyir;Abdul;Rachim;Abdul Rachim Ba’asyir;;;;;14015;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;Bashir;Abdul;Rachim;Abdul Rachim Bashir;;;;;14016;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;Ba’asyir;Abdul;Rochim;Abdul Rochim Ba’asyir;;;;;14017;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;Bashir;Abdul;Rochim;Abdul Rochim Bashir;;;;;14018;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;Ba’asyir;Abdurochim;;Abdurochim Ba’asyir;;;;;14019;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;Bashir;Abdurochim;;Abdurochim Bashir;;;;;14020;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;Ba’asyir;Abdurrochim;;Abdurrochim Ba’asyir;;;;;14021;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;Bashir;Abdurrochim;;Abdurrochim Bashir;;;;;14022;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;Ba’asyir;Abdurrahman;;Abdurrahman Ba’asyir;;;;;14023;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;Bashir;Abdurrahman;;Abdurrahman Bashir;;;;;14024;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;ID;INDONESIA;1934;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-11-16;16;11;1977;;;NO;GREGORIAN;;;;Solo;IN;INDIA;1627;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-11-16;16;11;1974;;;NO;GREGORIAN;;;;Sukoharjo, Central Java;IN;INDIA;1628;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6483;EU.2799.30;;;;;P;person;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;699;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF +28/10/2022;6484;EU.4057.52;;;;(Date of listing: 19.7.2011);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;Patek;Umar;;Umar Patek;;;;;14025;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6484;EU.4057.52;;;;(Date of listing: 19.7.2011);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;Patek;Omar;;Omar Patek;;;;;14026;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6484;EU.4057.52;;;;(Date of listing: 19.7.2011);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Pa’tek;;;;;14027;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6484;EU.4057.52;;;;(Date of listing: 19.7.2011);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Pak Taek;;;;;14028;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6484;EU.4057.52;;;;(Date of listing: 19.7.2011);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Umar Kecil;;;;;14029;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6484;EU.4057.52;;;;(Date of listing: 19.7.2011);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Al Abu Syekh Al Zacky;;;;;14030;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6484;EU.4057.52;;;;(Date of listing: 19.7.2011);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Umangis Mike;;;;;14031;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6484;EU.4057.52;;;;(Date of listing: 19.7.2011);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Mike Arsalan;;;;;15423;EN;;amendment;commission;2012-03-02;2012-03-01;177/2012 (OJ L61);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:061:0010:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6484;EU.4057.52;;;;(Date of listing: 19.7.2011);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Hisyam Bin Zein;;;;;15424;EN;;amendment;commission;2012-03-02;2012-03-01;177/2012 (OJ L61);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:061:0010:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6484;EU.4057.52;;;;(Date of listing: 19.7.2011);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;Anis Alawi Jafar;;;;;15425;EN;;amendment;commission;2012-03-02;2012-03-01;177/2012 (OJ L61);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:061:0010:0013:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6484;EU.4057.52;;;;(Date of listing: 19.7.2011);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;ID;INDONESIA;1935;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6484;EU.4057.52;;;;(Date of listing: 19.7.2011);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-07-20;20;7;1970;;;NO;GREGORIAN;;;;Central Java;ID;INDONESIA;1631;EN;;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6484;EU.4057.52;;;;(Date of listing: 19.7.2011);P;person;amendment;commission;2017-09-29;2017-09-30;2017/1773 (OJ L251);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1773&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;698;EN;;amendment;commission;2011-07-30;2011-07-28;748/2011 (OJ L198);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:198:0001:0002:EN:PDF +28/10/2022;6485;EU.2825.31;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad MUFLEH;;M;;Head of Syrian Military Intelligence in the town of Hama.;14032;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6485;EU.2825.31;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad MUFLEH;;;;;17199;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6485;EU.2825.31;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed MUFLEH;;;;;17200;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6485;EU.2825.31;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed MUFLEH;;;;;17201;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6485;EU.2825.31;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad MUFLIH;;;;;17202;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6485;EU.2825.31;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed MUFLIH;;;;;123887;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6485;EU.2825.31;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed MUFLIH;;;;;123888;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6485;EU.2825.31;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad MUFLIH;;;;;123889;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6485;EU.2825.31;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد مفلح;AR;M;;;124396;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6486;EU.2731.13;;;Date of designation: 1.8.2011;(Designation details: Date of designation: 1.8.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Tawfiq YOUNES;;M;Major General;Former head of the Department for Internal Security of the General Intelligence Directorate;14033;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6486;EU.2731.13;;;Date of designation: 1.8.2011;(Designation details: Date of designation: 1.8.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Tawfik YOUNES;;;;;17214;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6486;EU.2731.13;;;Date of designation: 1.8.2011;(Designation details: Date of designation: 1.8.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Tawfiq YUNES;;;Major General;;17215;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6486;EU.2731.13;;;Date of designation: 1.8.2011;(Designation details: Date of designation: 1.8.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Tawfik YUNES;;M;;;120219;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6486;EU.2731.13;;;Date of designation: 1.8.2011;(Designation details: Date of designation: 1.8.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;توفيق يونس;AR;M;;;124397;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6488;EU.2732.75;;2015-01-27;;(Date of UN designation: 2015-01-27);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;JABIR;Ayman;;Ayman JABIR;;M;;Leading businessman operating in Syria. Honorary president of “Wafa lil-Watan” (loyalty to homeland), an association providing aid to families of Syrian soldiers and militias.;14036;EN;Associate of Rami Makhlouf through his business activities, and an associate of Maher al-Assad through his role in regime-affiliated militias.;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6488;EU.2732.75;;2015-01-27;;(Date of UN designation: 2015-01-27);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;JABER;Aiman;;Aiman JABER;;M;;;17216;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6488;EU.2732.75;;2015-01-27;;(Date of UN designation: 2015-01-27);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;أيمن جابر;AR;M;;;124399;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6488;EU.2732.75;;2015-01-27;;(Date of UN designation: 2015-01-27);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Latakia;SY;SYRIAN ARAB REPUBLIC;1634;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6490;EU.2775.71;;2011-07-29;;(Date of UN designation: 2011-07-29)\n(Date of designation referred to in Article 2a(4)(b): 29.7.2011.);E;enterprise;amendment;commission;2011-08-10;2011-08-08;796/2011 (OJ L205);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:205:0001:0002:EN:PDF;;;;Emarat Kavkaz;;;;;14190;EN;;amendment;commission;2011-08-10;2011-08-08;796/2011 (OJ L205);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:205:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6491;EU.3089.81;;2011-07-29;;(Date of UN designation: 2011-07-29)\n(Tehrik-e Taliban is based in the tribal areas along the Afghanistan/ Pakistan border.\nFormed in 2007, its leader is Maulana Fazlullah.);E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Tehrik-e Taliban Pakistan;;;;;14191;EN;;amendment;commission;2011-08-10;2011-08-08;796/2011 (OJ L205);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:205:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6491;EU.3089.81;;2011-07-29;;(Date of UN designation: 2011-07-29)\n(Tehrik-e Taliban is based in the tribal areas along the Afghanistan/ Pakistan border.\nFormed in 2007, its leader is Maulana Fazlullah.);E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;TTP;;;;;14192;EN;;amendment;commission;2011-08-10;2011-08-08;796/2011 (OJ L205);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:205:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6491;EU.3089.81;;2011-07-29;;(Date of UN designation: 2011-07-29)\n(Tehrik-e Taliban is based in the tribal areas along the Afghanistan/ Pakistan border.\nFormed in 2007, its leader is Maulana Fazlullah.);E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Tehrik-I-Taliban Pakistan;;;;;14193;EN;;amendment;commission;2011-08-10;2011-08-08;796/2011 (OJ L205);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:205:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6491;EU.3089.81;;2011-07-29;;(Date of UN designation: 2011-07-29)\n(Tehrik-e Taliban is based in the tribal areas along the Afghanistan/ Pakistan border.\nFormed in 2007, its leader is Maulana Fazlullah.);E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Tehrik-e-Taliban;;;;;14194;EN;;amendment;commission;2011-08-10;2011-08-08;796/2011 (OJ L205);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:205:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6491;EU.3089.81;;2011-07-29;;(Date of UN designation: 2011-07-29)\n(Tehrik-e Taliban is based in the tribal areas along the Afghanistan/ Pakistan border.\nFormed in 2007, its leader is Maulana Fazlullah.);E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Pakistani Taliban;;;;;14195;EN;;amendment;commission;2011-08-10;2011-08-08;796/2011 (OJ L205);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:205:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6491;EU.3089.81;;2011-07-29;;(Date of UN designation: 2011-07-29)\n(Tehrik-e Taliban is based in the tribal areas along the Afghanistan/ Pakistan border.\nFormed in 2007, its leader is Maulana Fazlullah.);E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Tehreek-e-Taliban;;;;;14196;EN;;amendment;commission;2011-08-10;2011-08-08;796/2011 (OJ L205);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:205:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;Abdul Rahmam;Muhammad;Jibril;Muhammad Jibril Abdul Rahmam;;;;;14252;EN;;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;Abdurrahman;Mohammad;Jibril;Mohammad Jibril Abdurrahman;;;;;14253;EN;;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;Abdul Rahman;Muhammad;Jibriel;Muhammad Jibriel Abdul Rahman;;;;;14254;EN;;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;Abdurrahman;Mohammad;Jibriel;Mohammad Jibriel Abdurrahman;;;;;14255;EN;;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;Muhamad Ricky Ardhan;;;;;14256;EN;;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;Muhammad Ricky Ardhan bin Muhammad Iqbal;;;;;14257;EN;;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;Muhammad Ricky Ardhan bin Abu Jibril;;;;;14258;EN;;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;Muhammad Yunus;;;;;14259;EN;;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;Heris Syah;;;;;14260;EN;;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;South Jakarta;Jalan M. Saidi RT 010 RW 001 Pesanggrahan, South Petukangan;;;;;NO;(2181558 (Identification number));ID;INDONESIA;1939;EN;2181558 (Identification number);amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;Banten;Jalan Nakula of Witana Harja Complex Block C, Pamulang;;;;;NO;;ID;INDONESIA;1940;EN;;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-05-28;28;5;1984;;;NO;GREGORIAN;;;;East Lombok, West Nusa Tenggara;ID;INDONESIA;1635;EN;;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-12-03;3;12;1979;;;NO;GREGORIAN;;;;East Lombok, West Nusa Tenggara;ID;INDONESIA;1636;EN;;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-03-03;3;3;1979;;;NO;GREGORIAN;;;;East Lombok, West Nusa Tenggara;ID;INDONESIA;1637;EN;;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-08-08;8;8;1980;;;NO;GREGORIAN;;;;East Lombok, West Nusa Tenggara;ID;INDONESIA;1638;EN;;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;S335026 (passport-National passport) ((false indonesian passport));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;ID;;608;EN;(false indonesian passport);amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3219222002.2181558 (id-National identification card) ((indonesian national identity card));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;ID;;609;EN;(indonesian national identity card);amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2181558 (id-National identification card) ((indonesian identification number));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;ID;;610;EN;(indonesian identification number);amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;; +28/10/2022;6494;EU.2796.38;;2011-08-12;;(Date of UN designation: 2011-08-12)\n((a) Father’s name is Mohamad Iqbal Abdurrahman. Date of designation referred to in Article 2a(4)(b): 12.8.2011.);P;person;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;700;EN;;amendment;commission;2011-08-25;2011-08-24;853/2011 (OJ L219);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:219:0003:0004:EN:PDF +28/10/2022;6495;EU.2817.57;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hael al-Asad;;;;Assistant to Maher Al-Assad, Head of the military police unit of the army's 4th Division;14261;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6495;EU.2817.57;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hayel AL-ASSAD;;M;;"Assistant to Maher al‐Assad; Head of the military police unit of the army’s 4th Division.";14293;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6495;EU.2817.57;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;هايل الأسد;AR;M;;;124400;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6496;EU.2818.22;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ali AL-SALIM;;M;;Director of the supplies office of the Syrian Ministry of Defence;14262;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6496;EU.2818.22;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ali AL-SALEEM;;;;;14296;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6496;EU.2818.22;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;علي السليم;AR;M;;;124401;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;Nizar AL-ASSAD;;M;;Leading Syrian businessperson with close ties to the regime. Associated with the Assad and Makhlouf families. Leading oil investor, founder and head of the Lead Contracting & Trading Ltd company.;14786;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;Nizar al-Asad;;M;;;116858;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;Nizar Assad;;M;;;120923;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;Nizar Asad;;M;;;120924;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;نزار الأسد;AR;M;;;124402;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;Nizar Al-Assaad;;M;;;127627;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;Nizar Asaad;;M;;;127628;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;Nizar Assaad;;M;;;127629;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;نزارالاسعد;;;;;129665;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;نزاراسعد;AR;;;;129666;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1948;;;NO;GREGORIAN;;;;;00;UNKNOWN;127618;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-03-23;23;3;1948;;;NO;GREGORIAN;;;;;00;UNKNOWN;127619;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-03-02;2;3;1948;;;NO;GREGORIAN;;;;;00;UNKNOWN;127620;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"AG629220 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;CA;;127624;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;; +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"RL0003434 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;LB;;127625;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;; +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"011090258 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;SY;;127626;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;; +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA;;127621;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LB;;127622;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC +28/10/2022;6497;EU.2829.85;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;127623;EN;;amendment;council;2021-05-07;2021-05-08;2021/743 (OJ L160);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.160.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A160%3ATOC +28/10/2022;6498;EU.3817.58;;;date of listing: 23/08/2011.;(Designation details: date of listing: 23/08/2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rafiq SHAHADAH;;M;Major General;Member of the Syrian Armed Forces of the rank of Major General in post after May 2011. Former Head of Syrian Military Intelligence (SMI) Branch 293 (Internal Affairs) in Damascus. Advisor to President Bashar Al-Assad for strategic questions and military intelligence;14264;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6498;EU.3817.58;;;date of listing: 23/08/2011.;(Designation details: date of listing: 23/08/2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rafiq SHAHADA;;;;;17219;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6498;EU.3817.58;;;date of listing: 23/08/2011.;(Designation details: date of listing: 23/08/2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rafiq SHAHADE;;;;;17220;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6498;EU.3817.58;;;date of listing: 23/08/2011.;(Designation details: date of listing: 23/08/2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rafiq SHAHADEH;;;;;17221;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6498;EU.3817.58;;;date of listing: 23/08/2011.;(Designation details: date of listing: 23/08/2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rafiq CHAHADA;;;;;17222;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6498;EU.3817.58;;;date of listing: 23/08/2011.;(Designation details: date of listing: 23/08/2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rafiq CHAHADE;;;;;17223;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6498;EU.3817.58;;;date of listing: 23/08/2011.;(Designation details: date of listing: 23/08/2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rafiq CHAHADEH;;;;;17224;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6498;EU.3817.58;;;date of listing: 23/08/2011.;(Designation details: date of listing: 23/08/2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rafeeq CHAHADEH;EN;;;;105227;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6498;EU.3817.58;;;date of listing: 23/08/2011.;(Designation details: date of listing: 23/08/2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rafeeq CHAHADE;EN;;;;105228;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6498;EU.3817.58;;;date of listing: 23/08/2011.;(Designation details: date of listing: 23/08/2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rafeeq CHAHADA;EN;;;;105229;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6498;EU.3817.58;;;date of listing: 23/08/2011.;(Designation details: date of listing: 23/08/2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rafeeq SHAHADEH;EN;;;;105230;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6498;EU.3817.58;;;date of listing: 23/08/2011.;(Designation details: date of listing: 23/08/2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rafeeq SHAHADE;EN;;;;105231;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6498;EU.3817.58;;;date of listing: 23/08/2011.;(Designation details: date of listing: 23/08/2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rafeeq SHAHADA;EN;;;;105232;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6498;EU.3817.58;;;date of listing: 23/08/2011.;(Designation details: date of listing: 23/08/2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rafeeq SHAHADAH;EN;;;;105233;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6498;EU.3817.58;;;date of listing: 23/08/2011.;(Designation details: date of listing: 23/08/2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;رفيق شحادة;AR;M;;;124403;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6498;EU.3817.58;;;date of listing: 23/08/2011.;(Designation details: date of listing: 23/08/2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;Jablah, Latakia Province;;SY;SYRIAN ARAB REPUBLIC;112192;EN;Place of birth: Jablah, Latakia Province;amendment;council;2018-05-29;2018-05-30;2018/774 (OJ L131);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:131:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6502;EU.3327.40;;;Date of designation: 23/08/2011;(Designation details: Date of designation: 23/08/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ali DOUBA;;M;;Special Advisor to President Al-Assad;14269;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6502;EU.3327.40;;;Date of designation: 23/08/2011;(Designation details: Date of designation: 23/08/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;علي دوبا;AR;M;;;124405;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6502;EU.3327.40;;;Date of designation: 23/08/2011;(Designation details: Date of designation: 23/08/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1933;;;NO;GREGORIAN;;;;Karfis;SY;SYRIAN ARAB REPUBLIC;108729;EN;;amendment;council;2016-05-28;2016-05-29;2016/840 (OJ L141);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0840&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6503;EU.3103.54;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nawful AL-HUSAYN;;M;Brigadier-General;Idlib Syrian Military Intelligence (SMI) Branch Chief.;14270;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6503;EU.3103.54;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;AL HUSAYN;Nawful;;Nawful AL HUSAYN;DA;;;;14424;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6503;EU.3103.54;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nawfal AL-HUSAYN;;;Brigadier-General;Idlib Syrian Military Intelligence (SMI) Branch Chief.;17231;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6503;EU.3103.54;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nofal AL-HUSAYN;;;Brigadier-General;Idlib Syrian Military Intelligence (SMI) Branch Chief.;17232;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6503;EU.3103.54;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nawful AL-HUSSAIN;;;Brigadier-General;Idlib Syrian Military Intelligence (SMI) Branch Chief.;17233;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6503;EU.3103.54;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nawful AL-HUSSEIN;;;Brigadier-General;Idlib Syrian Military Intelligence (SMI) Branch Chief.;17234;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6503;EU.3103.54;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nawfel AL-HUSSEIN;EN;;Brigadier-General;Idlib Syrian Military Intelligence (SMI) Branch Chief.;105240;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6503;EU.3103.54;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nawfel AL-HUSSAIN;EN;;Brigadier-General;Idlib Syrian Military Intelligence (SMI) Branch Chief.;105241;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6503;EU.3103.54;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nawfel AL-HUSAYN;EN;;Brigadier-General;Idlib Syrian Military Intelligence (SMI) Branch Chief.;105242;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6503;EU.3103.54;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nofal AL-HUSSEIN;EN;;Brigadier-General;Idlib Syrian Military Intelligence (SMI) Branch Chief.;105243;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6503;EU.3103.54;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nofal AL-HUSSAIN;EN;;Brigadier-General;Idlib Syrian Military Intelligence (SMI) Branch Chief.;105244;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6503;EU.3103.54;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nawfal AL-HUSSEIN;EN;;Brigadier-General;Idlib Syrian Military Intelligence (SMI) Branch Chief.;105245;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6503;EU.3103.54;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nawfal AL-HUSSAIN;EN;;Brigadier-General;Idlib Syrian Military Intelligence (SMI) Branch Chief.;105246;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6503;EU.3103.54;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;نوفل الحسين;AR;M;;;124406;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6504;EU.2696.73;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Husam SUKKAR;;M;Brigadier;Presidential Adviser on Security Affairs.;14271;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6504;EU.2696.73;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;حسام سكر;AR;M;;;124407;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6505;EU.3104.19;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammed ZAMRINI;;M;Brigadier-General;Branch Chief for Syrian Military Intelligence (SMI) in Homs.;14272;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6505;EU.3104.19;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed ZAMRINI;FR;;;;14287;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6505;EU.3104.19;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed ZAMRINI;ES;;;;14425;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6505;EU.3104.19;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed ZAMRINI;PT;;;;14426;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6505;EU.3104.19;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhamad ZAMRENI;EN;;Brigadier-General;Branch Chief for Syrian Military Intelligence (SMI) in Homs.;105224;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6505;EU.3104.19;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhamad ZAMRINI;EN;;Brigadier-General;Branch Chief for Syrian Military Intelligence (SMI) in Homs.;105225;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6505;EU.3104.19;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammed ZAMRENI;EN;;Brigadier-General;Branch Chief for Syrian Military Intelligence (SMI) in Homs.;105226;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6505;EU.3104.19;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد زمريني;AR;M;;;124408;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6506;EU.3584.81;;2011-08-23;;(Date of UN designation: 2011-08-23)\n(Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Munir ADANOV;;M;Lieutenant-General, Syrian Arab Army;Deputy Chief of General Staff, Operations and Training, Syrian Army;14273;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6506;EU.3584.81;;2011-08-23;;(Date of UN designation: 2011-08-23)\n(Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mounir ADANOV;;;;;17235;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6506;EU.3584.81;;2011-08-23;;(Date of UN designation: 2011-08-23)\n(Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mouneer ADANOV;;;;;17236;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6506;EU.3584.81;;2011-08-23;;(Date of UN designation: 2011-08-23)\n(Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Monir ADANOV;;;;;17237;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6506;EU.3584.81;;2011-08-23;;(Date of UN designation: 2011-08-23)\n(Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Moneer ADANOV;;;;;17238;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6506;EU.3584.81;;2011-08-23;;(Date of UN designation: 2011-08-23)\n(Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muneer ADANOV;;;;;17239;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6506;EU.3584.81;;2011-08-23;;(Date of UN designation: 2011-08-23)\n(Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Adanof;EN;;;;109700;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6506;EU.3584.81;;2011-08-23;;(Date of UN designation: 2011-08-23)\n(Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Adnuf;EN;;;;109701;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6506;EU.3584.81;;2011-08-23;;(Date of UN designation: 2011-08-23)\n(Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;منير ادنوف;AR;M;;;124409;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6506;EU.3584.81;;2011-08-23;;(Date of UN designation: 2011-08-23)\n(Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951;;;NO;GREGORIAN;;;;Homs;SY;SYRIAN ARAB REPUBLIC;2009;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6506;EU.3584.81;;2011-08-23;;(Date of UN designation: 2011-08-23)\n(Officer of the rank of Lieutenant General and Deputy Chief of General Staff, Operations and Training for the Syrian Army in post after May 2011.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"0000092405 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;109699;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;; +28/10/2022;6507;EU.2717.92;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ghassan KHALIL;;M;Brigadier-General;Head of General Intelligence Directorate’s Information Branch;14275;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6507;EU.2717.92;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Khaleel;Ghassan;;Ghassan Khaleel;;M;;;17241;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6507;EU.2717.92;;2011-08-23;;(Date of UN designation: 2011-08-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;غسان خليل;AR;M;;;126576;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6508;EU.2614.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed JABIR;;;;Shabiha militia. Associate of Maher al‐Assad for the Shabiha militia.;14276;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6508;EU.2614.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad JABIR;;;;;17242;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6508;EU.2614.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad JABIR;;;;;17243;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6508;EU.2614.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed JABIR;;;;;17244;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6508;EU.2614.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed JABER;;;;;17245;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6508;EU.2614.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed JABER;;;;;123898;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6508;EU.2614.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad JABER;;;;;123899;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6508;EU.2614.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad JABER;;;;;123900;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6508;EU.2614.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد جابر;AR;M;;;124411;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6508;EU.2614.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Latakia;SY;SYRIAN ARAB REPUBLIC;1640;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6509;EU.3328.5;;2014-09-27;;(Date of UN designation: 2014-09-27);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Samir HASSAN;;M;;Leading businessperson operating in Syria. President of the \nSyrian-Russian business council.;14277;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6509;EU.3328.5;;2014-09-27;;(Date of UN designation: 2014-09-27);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;سمير حسن;AR;M;;;124412;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Political Security Directorate [Syria];;;;;14278;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Directorat de la sécurité politique [Syrie];FR;;;;14288;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direktorat Politische Sicherheit [Syrien];DE;;;;14321;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Dirección de Seguridad política [Siria];ES;;;;14322;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Дирекция за политическа сигурност [Сирия];BG;;;;14323;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ředitelství pro bezpečnostní politiku [Sýrie];CS;;;;14324;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direktoratet for politisk sikkerhed [Syrien];DA;;;;14325;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Poliitilise julgeoleku direktoraat [Süüria];ET;;;;14326;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Διεύθυνση πολιτικής ασφάλειας [Συρία];EL;;;;14327;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direzione della sicurezza politica [Siria];IT;;;;14328;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Politiskās drošības direktorāts [Sīrija];LV;;;;14329;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Politinio saugumo direktoratas [Sirija];LT;;;;14330;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Politikai Biztonsági Igazgatóság [szíria];HU;;;;14331;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direttorat tal-politika ta' sigurtà [Sirja];MT;;;;14332;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Directoraat politieke veiligheid [Syrië];NL;;;;14333;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Dyrekcja bezpieczeństwa politycznego [Syria];PL;;;;14334;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direcção de Segurança Política [Síria];PT;;;;14335;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direcția de securitate politică [Siria];RO;;;;14336;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Riaditeľstvo pre politickú bezpečnosť [Sýria];SK;;;;14337;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direktorat za politično varnost [Sirija];SL;;;;14338;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;poliittisen turvallisuuden pääosasto [Syyria];FI;;;;14339;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6510;EU.2628.93;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direktoratet för statens säkerhet [Syrien];SV;;;;14340;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;General Intelligence Directorate [Syria];;;;;14279;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Directorat des renseignements généraux [Syrie];FR;;;;14289;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direktorat Allgemeiner Nachrichtendienst [Syrien];DE;;;;14341;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Дирекция „Общо разузнаване“ [Сирия];BG;;;;14357;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Dirección de Información general [Siria];ES;;;;14358;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ředitelství pro všeobecné zpravodajství [Sýrie];CS;;;;14359;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direktoratet for almindelige ef-terretninger [Syrien];DA;;;;14360;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Pealuuredirektoraat [Süüria];ET;;;;14361;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Διεύθυνση γενικών πληροφοριών [Συρία];EL;;;;14362;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direzione delle informazioni generali [Siria];IT;;;;14363;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Galvenā izlūkdienesta direktorāts [Sīrija];LV;;;;14364;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Bendrosios žvalgybos direktoratas [Sirija];LT;;;;14365;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Általános Hírszerzési Igazgatóság [szíria];HU;;;;14366;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direttorat tal-informazzjoni ġenerali [Sirja];MT;;;;14367;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Directoraat algemene inlichtingen [Syrië];NL;;;;14368;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Dyrekcja wywiadu ogólnego [Syria];PL;;;;14369;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direcção de Informações Gerais [Síria];PT;;;;14370;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direcția informațiilor generale [Siria];RO;;;;14371;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Riaditeľstvo pre všeobecné spravodajstvo [Sýria];SK;;;;14372;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Splošna obveščevalna služba [Sirija];SL;;;;14373;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;yleisen tiedustelun pääosasto [Syyria];FI;;;;14374;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6511;EU.2780.53;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direktoratet för säkerhetstjänsten [Syrien];SV;;;;14375;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Military Intelligence Directorate [Syria];;;;;14280;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Directorat des renseignements militaires [Syrie];FR;;;;14290;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direktorat Militärischer Nachrichtendienst [Syrien];DE;;;;14342;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Дирекция за военно разузнаване [Сирия];BG;;;;14376;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Dirección de Información militar [Siria];ES;;;;14377;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ředitelství pro vojenské zpravodajství [Sýrie];CS;;;;14378;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direktoratet for militære efterret-ninger [Syrien];DA;;;;14379;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sõjaväeluuredirektoraat [Süüria];ET;;;;14380;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Διεύθυνση στρατιωτικών πληροφοριών [Συρία];EL;;;;14381;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direzione delle informazioni militari [Siria];IT;;;;14382;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Militārā izlūkdienesta direktorāts [Sīrija];LV;;;;14383;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Karinės žvalgybos direktoratas [Sirija];LT;;;;14384;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Katonai Hírszerzési Igazgatóság [szíria];HU;;;;14385;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direttorat tal-informazzjoni militari [Sirja];MT;;;;14386;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Directoraat militaire inlichtingen [Syrië];NL;;;;14387;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Dyrekcja wywiadu wojskowego [Syria];PL;;;;14388;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direcção de Informações Militares [Síria];PT;;;;14389;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direcția informațiilor militare [Siria];RO;;;;14390;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Riaditeľstvo pre vojenské spravodajstvo [Sýria];SK;;;;14391;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Vojaška obveščevalna služba [Sirija];SL;;;;14392;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;sotilastiedustelun pääosasto [Syyria];FI;;;;14393;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6512;EU.2807.56;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direktoratet för den militära underrättelse-tjänsten [Syrien];SV;;;;14394;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Air Force Intelligence Agency [Syria];;;;;14281;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Service des renseignements de l'Armée de l'air [Syrie];FR;;;;14291;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nachrichtendienst der Luftwaffe [Syrien];DE;;;;14343;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Отдел за разузнаване на военновъздушните сили [Сирия];BG;;;;14395;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Servicios de Información del Ejército del Aire [Siria];ES;;;;14396;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;zpravodajská služba vojenského letectva [Sýrie];CS;;;;14397;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Flyvevåbnets ef-terretnings- tjeneste [Syrien];DA;;;;14398;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Lennuväe luureteenistus [Süüria];ET;;;;14399;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Υπηρεσία πληροφοριών της αεροπορίας [Συρία];EL;;;;14400;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Direzione delle informazioni dell'aeronautica militare [Siria];IT;;;;14401;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Gaisa spēku izlūkdienests [Sīrija];LV;;;;14402;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Karinių oro pajėgų žvalgybos tarnyba [Sirija];LT;;;;14403;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;A légierő hírszerzési szolgálata [szíria];HU;;;;14404;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Servizz tal-Informazzjoni tal- Armata tal-ajru [Sirja];MT;;;;14405;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Inlichtingendienst luchtmacht [Syrië];NL;;;;14406;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Urząd wywiadu sił powietrznych [Syria];PL;;;;14407;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Serviço de Informações da Força Aérea [Síria];PT;;;;14408;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Serviciul de informații al Forțelor Armate Aeriene [Siria];RO;;;;14409;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Spravodajská služba vojenského letectva [Sýria];SK;;;;14410;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Obveščevalna služba zračnih sil [Sirija];SL;;;;14411;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ilmavoimien tiedustelupalvelu [Syyria];FI;;;;14412;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6513;EU.2744.6;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Flygvapnets underrättelsetjänst [Syrien];SV;;;;14413;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;IRGC Qods Force;;;;;14282;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;IRGC Quds Force;;;;;14283;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Quds Force;;;;;14284;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Qods Force;;;;;14285;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Forces Qods du Corps des gardiens de la révolution;FR;;;;14436;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Quds-Truppe im Korps der Islamischen Revolutionsgarden;DE;;;;14437;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Forza Qods dell'IRGC;IT;;;;14438;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Qods-strijdkrachten van de IRG;NL;;;;14439;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Força Qods do CGRI;PT;;;;14440;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Síly al-Kuds islámských revolučních gard;CS;;;;14441;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Islamo revoliucijos gvardijos Qods pajėgos;ET;;;;14442;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Forțele Qods ale IRGC;RO;;;;14443;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Сили „Qods“ (известни също като на Корпуса на пазителите на ислямската революция (IRGC);BG;;;;14444;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fuerza Qods del IRGC;ES;;;;14445;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;IRGC Δύναμη Qods;EL;;;;14446;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;IRGC Qods spēki;LV;;;;14447;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;IRGC Qods Erők;HU;;;;14448;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Il-Forza Qods tal- IRGC;MT;;;;14449;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jednostka IRGC Qods;PL;;;;14450;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jednotka Qods iránskych islamských revolučných gárd;SK;;;;14451;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Enota IRGC Qods;SL;;;;14452;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;IRGC:n Qods-erityisjoukot;FI;;;;14453;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Qods-styrkan inom Islamiska revolutionsgardet i Iran;SV;;;;14454;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6514;EU.2773.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Teheran;;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1941;EN;;amendment;commission;2011-08-24;2011-08-24;843/2011 (OJ L218);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:218:0001:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6515;EU.2800.10;;;;;P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Mati ur-Rehman Ali Muhammad;;;;;14414;EN;;amendment;commission;2012-07-06;2012-07-05;598/2012 (OJ L176);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:176:0059:0061:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6515;EU.2800.10;;;;;P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Mati-ur Rehman;;;;;14415;EN;;amendment;commission;2011-09-02;2011-09-01;876/2011 (OJ L227);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:227:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6515;EU.2800.10;;;;;P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Mati ur Rehman;;;;;14416;EN;;amendment;commission;2011-09-02;2011-09-01;876/2011 (OJ L227);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:227:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6515;EU.2800.10;;;;;P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Matiur Rahman;;;;;14417;EN;;amendment;commission;2011-09-02;2011-09-01;876/2011 (OJ L227);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:227:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6515;EU.2800.10;;;;;P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Matiur Rehman;;;;;14418;EN;;amendment;commission;2011-09-02;2011-09-01;876/2011 (OJ L227);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:227:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6515;EU.2800.10;;;;;P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Matti al-Rehman;;;;;14419;EN;;amendment;commission;2011-09-02;2011-09-01;876/2011 (OJ L227);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:227:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6515;EU.2800.10;;;;;P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Abdul Samad;;;;;14420;EN;;amendment;commission;2011-09-02;2011-09-01;876/2011 (OJ L227);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:227:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6515;EU.2800.10;;;;;P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Samad Sial;;;;;14421;EN;;amendment;commission;2011-09-02;2011-09-01;876/2011 (OJ L227);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:227:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6515;EU.2800.10;;;;;P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Abdul Samad Sial;;;;;14422;EN;;amendment;commission;2011-09-02;2011-09-01;876/2011 (OJ L227);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:227:0011:0012:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6515;EU.2800.10;;;;;P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Ustad Talha;;;;;16354;EN;;amendment;commission;2012-07-06;2012-07-05;598/2012 (OJ L176);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:176:0059:0061:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6515;EU.2800.10;;;;;P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Qari Mushtaq;;;;;16355;EN;;amendment;commission;2012-07-06;2012-07-05;598/2012 (OJ L176);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:176:0059:0061:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6515;EU.2800.10;;;;;P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Tariq;;;;;16356;EN;;amendment;commission;2012-07-06;2012-07-05;598/2012 (OJ L176);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:176:0059:0061:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6515;EU.2800.10;;;;;P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Hussain;;;;;16357;EN;;amendment;commission;2012-07-06;2012-07-05;598/2012 (OJ L176);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:176:0059:0061:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6515;EU.2800.10;;;;;P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;;;YES;GREGORIAN;;;;Chak number 36/DNB, Rajkan, Madina Colony, Bahawalpur District, Punjab Province;PK;PAKISTAN;1641;EN;;amendment;commission;2012-07-06;2012-07-05;598/2012 (OJ L176);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:176:0059:0061:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6515;EU.2800.10;;;;;P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;701;EN;;amendment;commission;2011-09-02;2011-09-01;876/2011 (OJ L227);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:227:0011:0012:EN:PDF +28/10/2022;6516;EU.2826.93;;;Date of designation: 2.9.2011;(Designation details: Date of designation: 2.9.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fares CHEHABI;;M;;"President of Aleppo Chamber of Industry; Chairman of the Federation of Chambers of Industry since 16.12.2018. Vice-chairman of Cham Holding. Member of Syrian Parliament since 2016.";14428;EN;Son of Ahmad Chehabi;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6516;EU.2826.93;;;Date of designation: 2.9.2011;(Designation details: Date of designation: 2.9.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fares Shihabi;;;;;14429;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6516;EU.2826.93;;;Date of designation: 2.9.2011;(Designation details: Date of designation: 2.9.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fares Chihabi;;;;;16840;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6516;EU.2826.93;;;Date of designation: 2.9.2011;(Designation details: Date of designation: 2.9.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;فارس الشهابي;AR;M;;;124413;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6516;EU.2826.93;;;Date of designation: 2.9.2011;(Designation details: Date of designation: 2.9.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-05-07;7;5;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;1970;EN;;amendment;commission;2012-11-30;2012-11-30;1117/2012 (OJ L330);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:330:0009:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6518;EU.2828.23;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;AKHRAS;Tarif;;Tarif AKHRAS;;M;;Businessman. Founder of the Akhras Group (commodities, trading, processing and logistics) and former Chairman of the Homs Chamber of Commerce.;14431;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6518;EU.2828.23;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;AL AKHRAS;Tarif;;Tarif AL AKHRAS;;;;;17246;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6518;EU.2828.23;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;طريف اخرس;AR;M;;;124420;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6518;EU.2828.23;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-06-02;2;6;1951;;;NO;GREGORIAN;;;;Homs;SY;SYRIAN ARAB REPUBLIC;1663;EN;;amendment;commission;2012-03-24;2012-03-24;266/2012 (OJ L87);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0045:0048:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6518;EU.2828.23;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"0000092405 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;SY;;766;EN;;amendment;commission;2012-03-24;2012-03-24;266/2012 (OJ L87);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0045:0048:EN:PDF;;;;;;;;;;;;; +28/10/2022;6519;EU.2847.60;;;Date of designation: 2.9.2011;(Designation details: Date of designation: 2.9.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Issam ANBOUBA;;M;;President of Anbouba for Agricultural Industries Co. Co-founder and member of the board of Cham Holding.;14432;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6519;EU.2847.60;;;Date of designation: 2.9.2011;(Designation details: Date of designation: 2.9.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;عصام أنبوبا;AR;M;;;124421;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6519;EU.2847.60;;;Date of designation: 2.9.2011;(Designation details: Date of designation: 2.9.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952;;;NO;GREGORIAN;;;;Homs;SY;SYRIAN ARAB REPUBLIC;1664;EN;;amendment;commission;2012-03-24;2012-03-24;266/2012 (OJ L87);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0045:0048:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6520;EU.2776.36;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mada Transport;;;Subsidiary of Cham Holding;;14433;EN;;amendment;commission;2011-09-03;2011-09-03;878/2011 (OJ L228);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:228:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6520;EU.2776.36;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;Sehanya Dara'a Highway, PO Box 9525;;;;;NO;PHONE[00 963 11 99 62];00;UNKNOWN;1942;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6521;EU.2777.1;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Cham Investment Group;;;;Subsidiary of Cham Holding;14434;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6521;EU.2777.1;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;Sehanya Daraa Highway, PO Box 9525;;;;;NO;PHONE[00 963 11 99 62];00;UNKNOWN;1943;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6523;EU.2801.72;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Real Estate Bank;;;;;14435;EN;;amendment;commission;2011-09-03;2011-09-03;878/2011 (OJ L228);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:228:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6523;EU.2801.72;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Insurance Building, Yousef al-Azmeh Square;P.O. Box: 2337;;;;NO;WEB[http://www.reb.sy]\nPHONE[+963 11 2456777 and 2218602]\nEMAIL[Publicrelations@reb.sy]\nFAX[+963 11 2237938 and 2211186];SY;SYRIAN ARAB REPUBLIC;1945;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6552;EU.3741.15;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Date of UN designation 28.7.2011);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Hassan Mahat Omar;;;;;14496;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6552;EU.3741.15;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Date of UN designation 28.7.2011);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Hassaan Hussein Adam;;;;;14498;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6552;EU.3741.15;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Date of UN designation 28.7.2011);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Hassane Mahad Omar;;;;;14499;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6552;EU.3741.15;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Date of UN designation 28.7.2011);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Xassaan Xuseen Adan;;;;;14500;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6552;EU.3741.15;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Date of UN designation 28.7.2011);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Asan Mahad Cumar;;;;;14501;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6552;EU.3741.15;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Date of UN designation 28.7.2011);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Abu Salman;;;;;14502;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6552;EU.3741.15;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Date of UN designation 28.7.2011);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Abu Salmaan;;;;;14503;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6552;EU.3741.15;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Date of UN designation 28.7.2011);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Sheikh Hassaan Hussein;;;;;14504;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6552;EU.3741.15;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Date of UN designation 28.7.2011);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-04-10;10;4;1979;;;NO;GREGORIAN;;;;Garissa;KE;KENYA;1647;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6552;EU.3741.15;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Date of UN designation 28.7.2011);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A 1180173 (passport-National passport) (expiry 20.8.2017);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KE;;611;EN;expiry 20.8.2017;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;; +28/10/2022;6552;EU.3741.15;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Date of UN designation 28.7.2011);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23446085 (id-National identification card) ((id card));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;KE;;612;EN;(id card);amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;; +28/10/2022;6552;EU.3741.15;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Date of UN designation 28.7.2011);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ET;;703;EN;Possibly Ethiopian;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN +28/10/2022;6553;EU.3753.43;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Other information: Also believed to have Syrian nationality. Date of UN designation 28.7.2011.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Omar Hammami;;;;;14505;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6553;EU.3753.43;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Other information: Also believed to have Syrian nationality. Date of UN designation 28.7.2011.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Abu Maansuur Al-Amriki;;;;;14506;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6553;EU.3753.43;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Other information: Also believed to have Syrian nationality. Date of UN designation 28.7.2011.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Abu Mansour Al-Amriki;;;;;14507;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6553;EU.3753.43;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Other information: Also believed to have Syrian nationality. Date of UN designation 28.7.2011.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Abu Mansuur Al-Amriki;;;;;14508;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6553;EU.3753.43;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Other information: Also believed to have Syrian nationality. Date of UN designation 28.7.2011.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Umar Hammami;;;;;14509;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6553;EU.3753.43;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Other information: Also believed to have Syrian nationality. Date of UN designation 28.7.2011.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Abu Mansur Al-Amriki;;;;;14510;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6553;EU.3753.43;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Other information: Also believed to have Syrian nationality. Date of UN designation 28.7.2011.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;SO;SOMALIA;1946;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6553;EU.3753.43;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Other information: Also believed to have Syrian nationality. Date of UN designation 28.7.2011.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-05-06;6;5;1984;;;NO;GREGORIAN;;;;ALABAMA;US;UNITED STATES;1644;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6553;EU.3753.43;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Other information: Also believed to have Syrian nationality. Date of UN designation 28.7.2011.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;403062567 (passport-National passport) ((passport));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;US;;613;EN;(passport);amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;; +28/10/2022;6553;EU.3753.43;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Other information: Also believed to have Syrian nationality. Date of UN designation 28.7.2011.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;423-31-3021 (ssn-Social Security Number) ((social security number));NO;NO;NO;NO;NO;;;;;;;ssn;Social Security Number;;US;;614;EN;(social security number);amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF;;;;;;;;;;;;; +28/10/2022;6553;EU.3753.43;;2011-07-28;;(Date of UN designation: 2011-07-28)\n(Other information: Also believed to have Syrian nationality. Date of UN designation 28.7.2011.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;US;;702;EN;;amendment;commission;2011-09-27;2011-09-26;956/2011 (OJ L249);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:249:0001:0005:EN:PDF +28/10/2022;6554;EU.2736.32;;2011-09-23;;(Date of UN designation: 2011-09-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Tayseer Qala AWWAD;;M;;Former Minister of Justice. Former Head of Military Court. Member of the High Judicial Council.;14511;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6554;EU.2736.32;;2011-09-23;;(Date of UN designation: 2011-09-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;تيسير قلا عواد;AR;M;;;124644;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6554;EU.2736.32;;2011-09-23;;(Date of UN designation: 2011-09-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1943;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;1645;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6555;EU.3994.39;;2011-09-23;;(Date of UN designation: 2011-09-23);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Adnan Hassan MAHMOUD;;M;;Former Syrian Ambassador to Iran until 2020. Former Minister of Information in power after May 2011.;14512;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6555;EU.3994.39;;2011-09-23;;(Date of UN designation: 2011-09-23);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;عدنان حسن محمود;AR;M;;;124832;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6555;EU.3994.39;;2011-09-23;;(Date of UN designation: 2011-09-23);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;NO;GREGORIAN;;;;Tartous;SY;SYRIAN ARAB REPUBLIC;1646;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6556;EU.2737.94;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Addounia TV;;;;;14513;EN;;amendment;commission;2011-09-24;2011-09-24;950/2011 (OJ L247);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:247:0003:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6556;EU.2737.94;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Dounia TV;;;;;14514;EN;;amendment;commission;2011-09-24;2011-09-24;950/2011 (OJ L247);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:247:0003:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6556;EU.2737.94;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;"WEB[http://www.addounia.tv]\nPHONE[+963-11-5667274]\nFAX[+963-11-5667272]\n(Relatives/business associates/entities or partner­s/links: SAMA TV (sister company); website: www.sama‐tv.net)";00;UNKNOWN;1947;EN;"Relatives/business associates/entities or partner­s/links: SAMA TV (sister company); website: www.sama‐tv.net";amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6557;EU.2738.59;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Cham Holding;;;;;14515;EN;;amendment;commission;2011-09-24;2011-09-24;950/2011 (OJ L247);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:247:0003:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6557;EU.2738.59;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;Cham Holding Building - Daraa Highway - Ashrafiyat Sahnaya Rif Dimashq;PO Box 9525;;;;NO;"WEB[http://www.chamholding.sy]\nPHONE[+963 11 9962; +963 11 668 14000; +963 11 673 1044]\nEMAIL[info@chamholding.sy]\nFAX[+963 11 673 1274]";SY;SYRIAN ARAB REPUBLIC;1948;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6558;EU.2640.84;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;El-Tel. Co.;;;;;14516;EN;Company owner: Maher Dsouki;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6558;EU.2640.84;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;El-Tel. Middle East Company;;;;;14517;EN;;amendment;commission;2012-03-24;2012-03-24;266/2012 (OJ L87);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0045:0048:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6558;EU.2640.84;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abraj Tech;;;;;123880;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6558;EU.2640.84;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Dair Ali Jordan Highway;P.O. Box 13052;;;;NO;WEB[ www.eltelme.com, www.abrajtec.com]\nPHONE[+963 11 2212345]\nEMAIL[sales@eltelme.com]\nFAX[+963 11 44694450];SY;SYRIAN ARAB REPUBLIC;1949;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6559;EU.2641.49;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ramak Constructions Co.;;;;;14518;EN;;amendment;commission;2011-09-24;2011-09-24;950/2011 (OJ L247);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:247:0003:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6559;EU.2641.49;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sociedad de Construcciones Ramak;ES;;;;14524;EN;;amendment;commission;2011-09-24;2011-09-24;950/2011 (OJ L247);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:247:0003:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6559;EU.2641.49;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Dara'a Highway;;;;;NO;PHONE[+963 11 6858111]\n(Mobile: +963 933 240231);SY;SYRIAN ARAB REPUBLIC;1950;EN;Mobile: +963 933 240231;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6560;EU.2642.14;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Souruh Company;;;;;14519;EN;;amendment;commission;2011-09-24;2011-09-24;950/2011 (OJ L247);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:247:0003:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6560;EU.2642.14;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;SOROH Al Cham Company;;;;;14520;EN;;amendment;commission;2011-09-24;2011-09-24;950/2011 (OJ L247);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:247:0003:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6560;EU.2642.14;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sociedad Souruh;ES;;;;14525;EN;;amendment;commission;2011-09-24;2011-09-24;950/2011 (OJ L247);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:247:0003:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6560;EU.2642.14;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sociedad SOROH Al Cham;ES;;;;14526;EN;;amendment;commission;2011-09-24;2011-09-24;950/2011 (OJ L247);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:247:0003:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6560;EU.2642.14;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Adra Free Zone Area;;;;;NO;"WEB[http://sites.google.com/site/sorohco]\nPHONE[+963-11-5327266, +963-933-526812 +963-932-878282]\nEMAIL[sorohco@gmail.com]\nFAX[+963-11-5316396]\n(Telephone:+963-11-5327266; Mobile:+963-933-526812 +963-932-878282; Fax:+963-11-5316396; Email: sorohco@gmail.com; Website: http://sites.google.com/site/sorohco)";SY;SYRIAN ARAB REPUBLIC;1951;EN;"Telephone:+963-11-5327266; Mobile:+963-933-526812 +963-932-878282; Fax:+963-11-5316396; Email: sorohco@gmail.com; Website: http://sites.google.com/site/sorohco";amendment;council;2014-10-20;2014-10-20;1105/2014 (OJ L301);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6561;EU.2643.76;;2011-09-23;;(Date of UN designation: 2011-09-23);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Syriatel;;;;;14521;EN;;amendment;commission;2011-09-24;2011-09-24;950/2011 (OJ L247);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:247:0003:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6561;EU.2643.76;;2011-09-23;;(Date of UN designation: 2011-09-23);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Damascus;Syriatel Mobile Telecom Building, Amman Road, Daraa Highway, Ashrafiyat Sahnaya Area;P.O. Box 2900;;;Damascus;NO;WEB[http://syriatel.sy/]\nPHONE[+963 11 61 26 270]\nEMAIL[info@syriatel.com.sy]\nFAX[+963 11 23 73 97 19];SY;SYRIAN ARAB REPUBLIC;1952;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6563;EU.2670.87;;2011-09-15;;(Date of UN designation: 2011-09-15)\n(Date of designation referred to in Article 2a(4)(b): 15.9.2011.);P;person;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;Abd Al-Rahman Ould Muhammad Al-Husayn Ould Muhammad Salim;;;;;14543;EN;;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6563;EU.2670.87;;2011-09-15;;(Date of UN designation: 2011-09-15)\n(Date of designation referred to in Article 2a(4)(b): 15.9.2011.);P;person;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;Abdarrahmane ould Mohamed el Houcein ould Mohamed Salem;;;;;14544;EN;;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6563;EU.2670.87;;2011-09-15;;(Date of UN designation: 2011-09-15)\n(Date of designation referred to in Article 2a(4)(b): 15.9.2011.);P;person;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;Yunis al-Mauritani;;;;;14545;EN;;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6563;EU.2670.87;;2011-09-15;;(Date of UN designation: 2011-09-15)\n(Date of designation referred to in Article 2a(4)(b): 15.9.2011.);P;person;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;Younis al-Mauritani;;;;;14546;EN;;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6563;EU.2670.87;;2011-09-15;;(Date of UN designation: 2011-09-15)\n(Date of designation referred to in Article 2a(4)(b): 15.9.2011.);P;person;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;Sheikh Yunis al-Mauritani;;;;;14547;EN;;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6563;EU.2670.87;;2011-09-15;;(Date of UN designation: 2011-09-15)\n(Date of designation referred to in Article 2a(4)(b): 15.9.2011.);P;person;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;Shaykh Yunis the Mauritanian;;;;;14548;EN;;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6563;EU.2670.87;;2011-09-15;;(Date of UN designation: 2011-09-15)\n(Date of designation referred to in Article 2a(4)(b): 15.9.2011.);P;person;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;Salih the Mauritanian;;;;;14549;EN;;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6563;EU.2670.87;;2011-09-15;;(Date of UN designation: 2011-09-15)\n(Date of designation referred to in Article 2a(4)(b): 15.9.2011.);P;person;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;Mohamed Salem;;;;;14550;EN;;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6563;EU.2670.87;;2011-09-15;;(Date of UN designation: 2011-09-15)\n(Date of designation referred to in Article 2a(4)(b): 15.9.2011.);P;person;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;Youssef Ould Abdel Jelil;;;;;14551;EN;;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6563;EU.2670.87;;2011-09-15;;(Date of UN designation: 2011-09-15)\n(Date of designation referred to in Article 2a(4)(b): 15.9.2011.);P;person;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;El Hadj Ould Abdel Ghader;;;;;14552;EN;;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6563;EU.2670.87;;2011-09-15;;(Date of UN designation: 2011-09-15)\n(Date of designation referred to in Article 2a(4)(b): 15.9.2011.);P;person;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;Abdel Khader;;;;;14553;EN;;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6563;EU.2670.87;;2011-09-15;;(Date of UN designation: 2011-09-15)\n(Date of designation referred to in Article 2a(4)(b): 15.9.2011.);P;person;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;Abou Souleimane;;;;;14554;EN;;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6563;EU.2670.87;;2011-09-15;;(Date of UN designation: 2011-09-15)\n(Date of designation referred to in Article 2a(4)(b): 15.9.2011.);P;person;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;Chingheity;;;;;14555;EN;;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6563;EU.2670.87;;2011-09-15;;(Date of UN designation: 2011-09-15)\n(Date of designation referred to in Article 2a(4)(b): 15.9.2011.);P;person;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;Ould Muhammad Salim;Abd Al-Rahman;Ould Muhammad Al-Husayn;Abd Al-Rahman Ould Muhammad Al-Husayn Ould Muhammad Salim;;;;;14557;EN;;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6563;EU.2670.87;;2011-09-15;;(Date of UN designation: 2011-09-15)\n(Date of designation referred to in Article 2a(4)(b): 15.9.2011.);P;person;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981;;;YES;GREGORIAN;;;;;SA;SAUDI ARABIA;1650;EN;;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6563;EU.2670.87;;2011-09-15;;(Date of UN designation: 2011-09-15)\n(Date of designation referred to in Article 2a(4)(b): 15.9.2011.);P;person;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MR;;706;EN;;amendment;commission;2011-09-28;2011-09-26;960/2011 (OJ L252);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:252:0008:0009:EN:PDF +28/10/2022;6569;EU.3894.74;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;ABBASZADEH-MESHKINI;Mahmoud;;Mahmoud ABBASZADEH-MESHKINI;;M;;Member of Parliament (since February 2020) and Speaker of the Parliament’s Committee for National Security and Foreign Affairs. Former Advisor to Iran’s High Council for Human Rights (until 2019). Former secretary of the High Council for Human Rights. Former Governor of Ilam Province. Former Political Director of the Interior Ministry.;14595;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6582;EU.3471.26;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Ali-Reza AKBARSHAHI;;M;;Former Director-General of Iran’s Drug Control Headquarters (a.k.a. Anti-Narcotics Headquarters). Former Commander of Tehran Police. Until 2018, head of the railway police.;14654;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6583;EU.3895.39;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;AKHARIAN;Hassan;;Hassan AKHARIAN;;M;;"Head of Ward 5 and in charge of solitary confinement in EU-listed Rajaee Shahr Prison since 2015; formerly Keeper of Ward 1 of Rajaee Shahr Prison, Karadj until July 2010.";14655;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6584;EU.3896.4;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;AVAEE;Seyyed;Ali-Reza;Seyyed Ali-Reza AVAEE;;M;;Minister of Justice until 25 August 2021. Former Director of the special investigations office. Deputy Minister of the Interior and Head of the Public Register until July 2016. Advisor to the Disciplinary Court for Judges in April 2014. Former President of the Tehran Judiciary.;14656;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6584;EU.3896.4;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;AVAEE;Seyyed;Alireza;Seyyed Alireza AVAEE;;M;;;14657;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6584;EU.3896.4;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;AVAIE;Alireza;;Alireza AVAIE;;M;;;129369;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6584;EU.3896.4;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-05-20;20;5;1956;;;NO;GREGORIAN;;;;Dezful;IR;IRAN (ISLAMIC REPUBLIC OF);129370;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6585;EU.2926.58;;;;(Date of listing: 10.10.2011.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;BANESHI;Jaber;;Jaber BANESHI;;M;;Head of Branch 22 of the Appeals Court of Shiraz from November 2011. Prosecutor of Shiraz until October 2011;14658;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6587;EU.3898.31;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Mostafa Barzegar GANJI;;M;;General Director of Inspection Supervision and Performance Evaluation of Courts since June 2020. Former Prosecutor General of Qom (2008-2017) and former Head of the Directorate-General for prisons.;14663;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6588;EU.3899.93;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Mohammad Reza HABIBI;;M;;Chief Justice of Isfahan. Former Attorney General of Isfahan. Former Head of the Ministry of Justice office in Yazd. Former Deputy Prosecutor of Isfahan.;14664;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6591;EU.3462.87;;;Date of listing: 10/10/2011.;(Designation details: Date of listing: 10/10/2011.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;JAVANI;Yadollah;;Yadollah JAVANI;;M;;IRGC deputy commander for political affairs.;14667;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6592;EU.2781.18;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;JAZAYERI;Massoud;;Massoud JAZAYERI;;M;Brigadier-General;Cultural advisor to the Joint Chief of Staff of Iran’s Armed Forces since April 2018. Within the joint military staff of Iran’s Armed Forces, Brigadier-General Massoud Jazayeri was the Deputy Chief of Staff for cultural and media affairs (a.k.a. State Defence Publicity HQ).;14668;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6593;EU.2786.37;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Mohammad Saleh JOKAR;;M;;Member of Parliament for the Province of Yazd. Former Deputy for Parliamentary Affairs of the Revolutionary Guards. From 2011 to 2016, parliamentary deputy for the Province of Yazd and Member of the Parliamentary Committee for National Security and Foreign Policy. Former Commander of Student Basij Forces.;14669;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6593;EU.2786.37;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;NO;GREGORIAN;;;;Yazd;IR;IRAN (ISLAMIC REPUBLIC OF);127283;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6594;EU.3901.38;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;KAMALIAN;Behrouz;;Behrouz KAMALIAN;;M;;Head of the “Ashiyaneh” cyber group linked with the Iranian regime.;14670;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6594;EU.3901.38;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;Hackers Brain;;M;;"Head of the ""Ashiyaneh"" cyber group linked with the Iranian regime.";111901;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6594;EU.3901.38;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;Behrooz_Ice;;M;;"Head of the ""Ashiyaneh"" cyber group linked with the Iranian regime.";119908;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6594;EU.3901.38;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983;;;NO;GREGORIAN;;;;Tehran;IR;IRAN (ISLAMIC REPUBLIC OF);1660;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6595;EU.2927.23;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;KHALILOLLAHI;Moussa;;Moussa KHALILOLLAHI;;M;;Chief of Justice of East Azerbaijan province. Former prosecutor of Tabriz from 2010 to 2019.;14671;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6595;EU.2927.23;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;KHALILOLLAHI;Mousa;;Mousa KHALILOLLAHI;;M;;;14672;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6595;EU.2927.23;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;ELAHI;Mousa;Khalil;Mousa Khalil ELAHI;EN;M;;;18735;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6595;EU.2927.23;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;NO;GREGORIAN;;;;Tabriz;IR;IRAN (ISLAMIC REPUBLIC OF);127284;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6596;EU.2928.85;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Sadeq MAHSOULI;;M;;Deputy Secretary-General of the Paydari Front (Front of Islamic Stability). Former Advisor to Former President Mahmoud Ahmadinejad, former member of the Expediency Council and former Deputy Chief of the Perseverance Front. Minister of Welfare and Social Security between 2009 and 2011. Minister of the Interior until August 2009.;14673;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6596;EU.2928.85;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Sadeq MAHSULI;;M;;;14674;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6596;EU.2928.85;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959;;;NO;GREGORIAN;;;;Oroumieh;IR;IRAN (ISLAMIC REPUBLIC OF);1655;EN;;amendment;commission;2011-10-12;2011-10-10;1002/2011 (OJ L267);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:267:0001:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6596;EU.2928.85;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;;;Oroumieh;IR;IRAN (ISLAMIC REPUBLIC OF);1656;EN;;amendment;commission;2011-10-12;2011-10-10;1002/2011 (OJ L267);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:267:0001:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6597;EU.3902.3;;;;(Date of listing: 10.10.2011.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;MALEKI;Mojtaba;;Mojtaba MALEKI;;M;;Deputy head of the Ministry of Justice in the Khorasan Razavi province. Former prosecutor of Kermanshah.;14675;EN;;amendment;council;2017-04-12;2017-04-13;2017/685 (OJ L99);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0685&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6598;EU.3463.52;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;OMIDI;Mehrdad;;Mehrdad OMIDI;;M;;Head of section VI of the police, investigation department. Former Head of the Intelligence Services within the Iranian Police. \nFormer Head of the Computer Crimes Unit of the Iranian Police.;14676;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6598;EU.3463.52;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;Reza;;M;;Head of section VI of the police, investigation department. Former Head of the Intelligence Services within the Iranian Police. Former Head of the Computer Crimes Unit of the Iranian Police.;116425;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6598;EU.3463.52;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;OMIDI;Reza;;Reza OMIDI;;M;;Head of section VI of the police, investigation department. Former Head of the Intelligence Services within the Iranian Police. Former Head of the Computer Crimes Unit of the Iranian Police.;116426;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6599;EU.3903.65;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;SALARKIA;Mahmoud;;Mahmoud SALARKIA;;M;;Currently working as a lawyer. Former Head of the Petrol and Transport commission of the City of Tehran. \nDeputy to the Prosecutor-General of Tehran for Prison Affairs during the crackdown of 2009. \nFormer director of Tehran Football Club ‘Persepolis’;14677;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6600;EU.2929.50;;;;;P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;KHODAEI SOURI;Hojatollah;;Hojatollah KHODAEI SOURI;;M;;Member of the National Security and Foreign policy Committee. Parliamentary deputy for Lorestan Province. Member of the Parliamentary Commission for Foreign and Security Policy. Head of Evin prison until 2012.;14678;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6600;EU.2929.50;;;;;P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;Selseleh;IR;IRAN (ISLAMIC REPUBLIC OF);2349;EN;;amendment;council;2015-04-08;2015-04-09;2015/548 (OJ L 92);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6601;EU.3904.30;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;TALA;Hossein;;Hossein TALA;;M;;Mayor of Eslamshahr until 2020. Former Iranian MP. Former Governor General (‘Farmandar’) of Tehran Province until September 2010;14679;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6601;EU.3904.30;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;TALA;Hosseyn;;Hosseyn TALA;;M;;;14680;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6601;EU.3904.30;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969;;;NO;GREGORIAN;;;;Tehran;IR;IRAN (ISLAMIC REPUBLIC OF);129371;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6602;EU.2930.75;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Morteza TAMADDON;;M;;Former Head of Tehran provincial Public Security Council. Former IRGC Governor-General of Tehran Province. Currently board member at Khajeh Nasireddin Tusi University of Technology.;14681;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6602;EU.2930.75;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Morteza TAMADON;;M;;;14682;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6602;EU.2930.75;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959;;;NO;GREGORIAN;;;;Shahr Kord-Isfahan;IR;IRAN (ISLAMIC REPUBLIC OF);1661;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6603;EU.2811.73;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;ZEBHI;Hossein;;Hossein ZEBHI;;M;;First Deputy Advisor to the Judiciary and Judge of the Supreme Court (head of Branch 41 of the Supreme Court, dealing in particular with security offences and drugs). Deputy to the Prosecutor-General of Iran (2007-2015).;14683;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6604;EU.3905.92;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;BAHRAMI;Mohammad-Kazem;;Mohammad-Kazem BAHRAMI;;M;;Head of the administrative justice court until April 2021.;14684;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6605;EU.2931.40;;;;(Date of listing: 10.10.2011.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;HAJMOHAM-MADI;Aziz;;Aziz HAJMOHAM-MADI;;M;;Judge at the Tehran Provincial Criminal Court.;14685;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6605;EU.2931.40;;;;(Date of listing: 10.10.2011.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;Noorollah Azizmohammadi;;M;;Judge at the Tehran Provincial Criminal Court.;123005;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6605;EU.2931.40;;;;(Date of listing: 10.10.2011.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;Aziz Hajmohammadi;;M;;Judge at the Tehran Provincial Criminal Court.;123006;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6605;EU.2931.40;;;;(Date of listing: 10.10.2011.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948;;;NO;GREGORIAN;;;;Tehran;IR;IRAN (ISLAMIC REPUBLIC OF);123004;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6606;EU.2723.39;;;;(Date of listing: 10.10.2011.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;BAGHERI;Mohammad-Bagher;;Mohammad-Bagher BAGHERI;;M;;Judge at the Supreme court since December 2015. Former vice-chairman of the judiciary administration of South Khorasan province, in charge of crime prevention;14686;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6607;EU.3470.61;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;BAKHTIARI;Seyyed;Morteza;Seyyed Morteza BAKHTIARI;;M;;President of the Imam Khomeini Relief Foundation (since July 2019). Former deputy custodian of Imam Reza shrine. Former Official of the Special Clerical Tribunal. \nFormer Minister of Jus­tice from 2009 to 2013.;14687;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6607;EU.3470.61;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952;;;NO;GREGORIAN;;;;Mashhad;IR;IRAN (ISLAMIC REPUBLIC OF);1657;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6608;EU.2946.60;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;HOSSEINI;Mohammad;;Mohammad HOSSEINI;;M;Dr;Vice-president for parliamentary affairs under President Raisi since August 2021. Former advisor to President Mahmoud Ahmadinejad and spokesperson for YEKTA, a hard-line political faction. Minister of Culture and Islamic Guidance (2009-2013). Ex-IRGC;14688;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6608;EU.2946.60;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;HOSSEYNI;Seyyed;Mohammad;Seyyed Mohammad HOSSEYNI;;M;Dr;;14689;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6608;EU.2946.60;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;HOSSEYNI;Seyed;Mohammad;Seyed Mohammad HOSSEYNI;;M;Dr;;14690;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6608;EU.2946.60;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;HOSSEYNI;Sayyed;Mohammad;Sayyed Mohammad HOSSEYNI;;M;Dr;;14691;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6608;EU.2946.60;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;HOSSEYNI;Sayyid;Mohammad;Sayyid Mohammad HOSSEYNI;;M;Dr;;14692;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6608;EU.2946.60;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-07-23;23;7;1961;;;NO;GREGORIAN;;;;Rafsanjan, Kerman;IR;IRAN (ISLAMIC REPUBLIC OF);1659;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6609;EU.3469.36;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;MOSLEHI;Heydar;;Heydar MOSLEHI;;M;;Representative of the Ideological-Political Bureau of the Commander in Chief of Iran's Armed Forces (since 2018). Former advisor of Supreme Jurisprudence in the IRGC. Head of the organization for publications on the role of the clergy at war. Former Minister of Intelligence (2009-2013).;14693;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6609;EU.3469.36;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;MOSLEHI;Heidar;;Heidar MOSLEHI;;M;;Representative of the Ideological-Political Bureau of the Commander in Chief of Iran’s Armed Forces (since 2018). Former advisor of Supreme Jurisprudence in the IRGC. Head of the organisation for publications on the role of the clergy at war. Former Minister of Intelligence (2009-2013).;14694;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6609;EU.3469.36;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;MOSLEHI;Haidar;;Haidar MOSLEHI;;M;;Representative of the Ideological-Political Bureau of the Commander in Chief of Iran’s Armed Forces (since 2018). Former advisor of Supreme Jurisprudence in the IRGC. Head of the organisation for publications on the role of the clergy at war. Former Minister of Intelligence (2009-2013).;14695;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6609;EU.3469.36;;2011-10-10;;(Date of UN designation: 2011-10-10);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;;Isfahan;IR;IRAN (ISLAMIC REPUBLIC OF);1658;EN;;amendment;commission;2011-10-12;2011-10-10;1002/2011 (OJ L267);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:267:0001:0006:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6611;EU.2760.51;;;;;E;enterprise;amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;Commercial Bank of Syria;;;;;14696;EN;;amendment;commission;2011-10-14;2011-10-14;1011/2011 (OJ L269);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:269:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6611;EU.2760.51;;;;;E;enterprise;amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;Banco Comercial de Siria;ES;;;;14697;EN;;amendment;commission;2011-10-14;2011-10-14;1011/2011 (OJ L269);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:269:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6611;EU.2760.51;;;;;E;enterprise;amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;Търговска банка на Сирия;BG;;;;14698;EN;;amendment;commission;2011-10-14;2011-10-14;1011/2011 (OJ L269);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:269:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6611;EU.2760.51;;;;;E;enterprise;amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;Banca Comercială a Siriei;RO;;;;14699;EN;;amendment;commission;2011-10-14;2011-10-14;1011/2011 (OJ L269);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:269:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6611;EU.2760.51;;;;;E;enterprise;amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;Szíriai Kereskedelmi Bank;HU;;;;14700;EN;;amendment;commission;2011-10-14;2011-10-14;1011/2011 (OJ L269);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:269:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6611;EU.2760.51;;;;;E;enterprise;amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;Obchodná banka Sýrie;SK;;;;14701;EN;;amendment;commission;2011-10-14;2011-10-14;1011/2011 (OJ L269);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:269:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6611;EU.2760.51;;;;;E;enterprise;amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;Syrská obchodní banka;CS;;;;14702;EN;;amendment;commission;2011-10-14;2011-10-14;1011/2011 (OJ L269);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:269:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6611;EU.2760.51;;;;;E;enterprise;amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;Sirijos komercijos bankas;LT;;;;14703;EN;;amendment;commission;2011-10-14;2011-10-14;1011/2011 (OJ L269);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:269:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6611;EU.2760.51;;;;;E;enterprise;amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;Sīrijas Komercbanka;LV;;;;14704;EN;;amendment;commission;2011-10-14;2011-10-14;1011/2011 (OJ L269);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:269:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6611;EU.2760.51;;;;;E;enterprise;amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;Süüria Kommertspank;ET;;;;14705;EN;;amendment;commission;2011-10-14;2011-10-14;1011/2011 (OJ L269);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:269:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6611;EU.2760.51;;;;;E;enterprise;amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;al-Masraf al- tajariyy al- suriyy;SV;;;;14706;EN;;amendment;commission;2011-10-14;2011-10-14;1011/2011 (OJ L269);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:269:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6611;EU.2760.51;;;;;E;enterprise;amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;;;;;;;;;;;;;;;;Damascus;Moawiya St.;2231;;;;NO;WEB[http://cbs-bank.sy/En-index.php]\nPHONE[+963 11 2218890]\nEMAIL[dir.cbs@mail.sy]\nFAX[+963 11 2216975];SY;SYRIAN ARAB REPUBLIC;1953;EN;;amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6611;EU.2760.51;;;;;E;enterprise;amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;;;;;;;;;;;;;;;;Damascus;Yousef Azmeh Square (Damascus Branch);933;;;;NO;;SY;SYRIAN ARAB REPUBLIC;1956;EN;;amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6611;EU.2760.51;;;;;E;enterprise;amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;;;;;;;;;;;;;;;;Aleppo;Kastel Hajjarin St. (Aleppo Branch);2;;;;NO;"(SWIFT/ BIC CMSYSYDA; \nall offices worldwide [NPWMD])";SY;SYRIAN ARAB REPUBLIC;1958;EN;"SWIFT/ BIC CMSYSYDA; \nall offices worldwide [NPWMD]";amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6611;EU.2760.51;;;;;E;enterprise;amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"CMSYSYDA (swiftbic-SWIFT BIC) (Aleppo Branch, P.O. Box 2, Kastel Hajjarin St., Aleppo, Syria; \nSWIFT/ BIC CMSYSYDA; \nall offices worldwide [NPWMD])";NO;NO;NO;NO;NO;;;;;;;swiftbic;SWIFT BIC;;SY;;117727;EN;"Aleppo Branch, P.O. Box 2, Kastel Hajjarin St., Aleppo, Syria; \nSWIFT/ BIC CMSYSYDA; \nall offices worldwide [NPWMD]";amendment;opoce;2018-07-27;2018-07-27;36/2012 (OJ L16) [corr. 27.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.190.01.0020.01.ENG&toc=OJ:L:2018:190:TOC;;;;;;;;;;;;; +28/10/2022;6612;EU.3311.55;;;;"(Currently based in Iraq and Syria; \nProminently known by nom de guerre (Abu Du'a, Abu Duaa'); \nWife's name: Saja Hamid al-Dulaimi; Asma Fawzi Mohammed al-Kubaissi. \nDescription: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;Al-Badri Al-Samarrai;Ibrahim;Awwad Ibrahim Ali;Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai;;;Dr.;;14708;EN;;amendment;commission;2011-10-15;2011-10-14;1024/2011 (OJ L270);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:270:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6612;EU.3311.55;;;;"(Currently based in Iraq and Syria; \nProminently known by nom de guerre (Abu Du'a, Abu Duaa'); \nWife's name: Saja Hamid al-Dulaimi; Asma Fawzi Mohammed al-Kubaissi. \nDescription: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;Ibrahim 'Awad Ibrahim al-Badri al-Samarrai;;;;;14710;EN;;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6612;EU.3311.55;;;;"(Currently based in Iraq and Syria; \nProminently known by nom de guerre (Abu Du'a, Abu Duaa'); \nWife's name: Saja Hamid al-Dulaimi; Asma Fawzi Mohammed al-Kubaissi. \nDescription: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;Abu Du’a;;;;;14713;EN;;amendment;commission;2011-10-15;2011-10-14;1024/2011 (OJ L270);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:270:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6612;EU.3311.55;;;;"(Currently based in Iraq and Syria; \nProminently known by nom de guerre (Abu Du'a, Abu Duaa'); \nWife's name: Saja Hamid al-Dulaimi; Asma Fawzi Mohammed al-Kubaissi. \nDescription: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;Abu Duaa';;;;;14714;EN;;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6612;EU.3311.55;;;;"(Currently based in Iraq and Syria; \nProminently known by nom de guerre (Abu Du'a, Abu Duaa'); \nWife's name: Saja Hamid al-Dulaimi; Asma Fawzi Mohammed al-Kubaissi. \nDescription: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;Dr. Ibrahim;;;;;14715;EN;;amendment;commission;2011-10-15;2011-10-14;1024/2011 (OJ L270);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:270:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6612;EU.3311.55;;;;"(Currently based in Iraq and Syria; \nProminently known by nom de guerre (Abu Du'a, Abu Duaa'); \nWife's name: Saja Hamid al-Dulaimi; Asma Fawzi Mohammed al-Kubaissi. \nDescription: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;Abu Bakr al-Baghdadi al-Husayni al-Quraishi;;;;;14716;EN;;amendment;commission;2011-10-15;2011-10-14;1024/2011 (OJ L270);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:270:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6612;EU.3311.55;;;;"(Currently based in Iraq and Syria; \nProminently known by nom de guerre (Abu Du'a, Abu Duaa'); \nWife's name: Saja Hamid al-Dulaimi; Asma Fawzi Mohammed al-Kubaissi. \nDescription: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;Abu Bakr al-Baghdadi;;;;;14717;EN;;amendment;commission;2012-08-02;2012-08-01;706/2012 (OJ L206);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:206:0007:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6612;EU.3311.55;;;;"(Currently based in Iraq and Syria; \nProminently known by nom de guerre (Abu Du'a, Abu Duaa'); \nWife's name: Saja Hamid al-Dulaimi; Asma Fawzi Mohammed al-Kubaissi. \nDescription: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;Ibrahim 'Awad Ibrahim al-Samarra'i;EN;;;;107506;EN;;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6612;EU.3311.55;;;;"(Currently based in Iraq and Syria; \nProminently known by nom de guerre (Abu Du'a, Abu Duaa'); \nWife's name: Saja Hamid al-Dulaimi; Asma Fawzi Mohammed al-Kubaissi. \nDescription: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;Dr Ibrahim Awwad Ibrahim al-Samarra'i;EN;;;;107507;EN;;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6612;EU.3311.55;;;;"(Currently based in Iraq and Syria; \nProminently known by nom de guerre (Abu Du'a, Abu Duaa'); \nWife's name: Saja Hamid al-Dulaimi; Asma Fawzi Mohammed al-Kubaissi. \nDescription: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;Dr Ibrahim “Awwad Ibrahim” Ali al-Badri al- Samarrai';EN;;;;107508;EN;;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6612;EU.3311.55;;;;"(Currently based in Iraq and Syria; \nProminently known by nom de guerre (Abu Du'a, Abu Duaa'); \nWife's name: Saja Hamid al-Dulaimi; Asma Fawzi Mohammed al-Kubaissi. \nDescription: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;IQ;IRAQ;1959;EN;;amendment;commission;2011-10-15;2011-10-14;1024/2011 (OJ L270);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:270:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6612;EU.3311.55;;;;"(Currently based in Iraq and Syria; \nProminently known by nom de guerre (Abu Du'a, Abu Duaa'); \nWife's name: Saja Hamid al-Dulaimi; Asma Fawzi Mohammed al-Kubaissi. \nDescription: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;107260;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6612;EU.3311.55;;;;"(Currently based in Iraq and Syria; \nProminently known by nom de guerre (Abu Du'a, Abu Duaa'); \nWife's name: Saja Hamid al-Dulaimi; Asma Fawzi Mohammed al-Kubaissi. \nDescription: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971;;;NO;GREGORIAN;;;;Samarra;IQ;IRAQ;1665;EN;;amendment;commission;2011-10-15;2011-10-14;1024/2011 (OJ L270);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:270:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6612;EU.3311.55;;;;"(Currently based in Iraq and Syria; \nProminently known by nom de guerre (Abu Du'a, Abu Duaa'); \nWife's name: Saja Hamid al-Dulaimi; Asma Fawzi Mohammed al-Kubaissi. \nDescription: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971;;;NO;GREGORIAN;;;;-;IQ;IRAQ;1928;EN;;amendment;commission;2012-08-02;2012-08-01;706/2012 (OJ L206);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:206:0007:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6612;EU.3311.55;;;;"(Currently based in Iraq and Syria; \nProminently known by nom de guerre (Abu Du'a, Abu Duaa'); \nWife's name: Saja Hamid al-Dulaimi; Asma Fawzi Mohammed al-Kubaissi. \nDescription: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"Ration card number 0134852 (other-Other identification number) ";NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;107261;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;; +28/10/2022;6612;EU.3311.55;;;;"(Currently based in Iraq and Syria; \nProminently known by nom de guerre (Abu Du'a, Abu Duaa'); \nWife's name: Saja Hamid al-Dulaimi; Asma Fawzi Mohammed al-Kubaissi. \nDescription: Height: 1.65 m. Weight: 85 kg. Black hair and eyes. White skin. \nPhoto available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;707;EN;;amendment;commission;2011-10-15;2011-10-14;1024/2011 (OJ L270);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:270:0024:0025:EN:PDF +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Noorzai;Faizullah;Khan;Faizullah Khan Noorzai;;M;Haji;;14718;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Hajji Faizullah Khan Noorzai;;;;;14719;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Faizuulah Khan Norezai;;;;;14720;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Faizullah Khan;;;;;14721;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Fiazullah;;;;;14722;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Faizullah Noori;;;;;14723;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Mullah Faizullah;;;;;14724;EN;;amendment;commission;2011-10-21;2011-10-21;1049/2011 (OJ L276);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:276:0002:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Faizullah Noor;;;;;14725;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Faizullah Noorzai Akhtar Mohammed Mira Khan;;;;;14733;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Pazullah Noorzai;;;;;16021;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Miralzei Village, Chaman, Baluchistan Province;Boghra Road;;;;;NO;;PK;PAKISTAN;1960;EN;;amendment;commission;2011-10-21;2011-10-21;1049/2011 (OJ L276);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:276:0002:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Kalay Rangin, Spin Boldak District, Kandahar Province;;;;;;NO;;AF;AFGHANISTAN;2291;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;;;NO;GREGORIAN;;;;;AF;AFGHANISTAN;1666;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;;;AF;AFGHANISTAN;1667;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;1970;YES;GREGORIAN;;;;;AF;AFGHANISTAN;1668;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Chaman, Baluchistan Province;PK;PAKISTAN;111231;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Kadanay, Spin Boldak District Kandahar Province;AF;AFGHANISTAN;111232;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Lowy Kariz, Spin Boldak District, Kandahar Province;AF;AFGHANISTAN;111233;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;NO;GREGORIAN;;;;;AF;AFGHANISTAN;111234;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6613;EU.3748.61;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(As of 2010, travelled to and owned businesses in Dubai, United Arab Emirates, and Japan. Belongs to Noorzai tribe, Miralzai sub-tribe. Brother of Malik Noorzai. Father's name is Akhtar Mohammed (a.k.a.: Haji Mira Khan). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/4678606);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;708;EN;;amendment;commission;2011-10-21;2011-10-21;1049/2011 (OJ L276);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:276:0002:0004:EN:PDF +28/10/2022;6614;EU.3760.52;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai. Father's name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4670985);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Noorzai;Malik;;Malik Noorzai;;M;Haji;Taliban financier.;14726;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6614;EU.3760.52;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai. Father's name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4670985);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Hajji Malik Noorzai;;;;;14727;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6614;EU.3760.52;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai. Father's name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4670985);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Hajji Malak Noorzai;;;;;14728;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6614;EU.3760.52;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai. Father's name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4670985);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Aminullah;;;;;14729;EN;;amendment;commission;2011-10-21;2011-10-21;1049/2011 (OJ L276);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:276:0002:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6614;EU.3760.52;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai. Father's name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4670985);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Malek Noorzai;;;;;14730;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6614;EU.3760.52;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai. Father's name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4670985);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Maluk;;;;;14734;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6614;EU.3760.52;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai. Father's name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4670985);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Allah Muhammad;;;;;18301;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6614;EU.3760.52;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai. Father's name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4670985);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Miralzei Village, Chaman, Baluchistan Province;Boghra Road;;;;;NO;;PK;PAKISTAN;2289;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6614;EU.3760.52;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai. Father's name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4670985);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Kalay Rangin, Spin Boldak District, Kandahar Province;;;;;;NO;;AF;AFGHANISTAN;2290;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6614;EU.3760.52;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai. Father's name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4670985);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;1672;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6614;EU.3760.52;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai. Father's name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4670985);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;1673;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6614;EU.3760.52;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai. Father's name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4670985);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-01-01;1;1;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;2244;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6614;EU.3760.52;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai. Father's name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4670985);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Pishin, Baluchistan Province;PK;PAKISTAN;111235;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6614;EU.3760.52;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai. Father's name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4670985);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Chaman border town;PK;PAKISTAN;111236;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6614;EU.3760.52;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai. Father's name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4670985);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;FA0157612 (passport-National passport) (valid from 2009-07-23 to 2014-07-22)(pakistani passport issued on 23 jul. 2009, expires on 22 jul. 2014, officially cancelled as of 2013, issued under name allah muhammad);NO;NO;NO;NO;NO;;;2009-07-23;2014-07-22;;;passport;National passport;;PK;;892;EN;pakistani passport issued on 23 jul. 2009, expires on 22 jul. 2014, officially cancelled as of 2013, issued under name allah muhammad;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;6614;EU.3760.52;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai. Father's name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4670985);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54201-247561-5 (id-National identification card) (54201-247561-5, (pakistani national id, officially cancelled as of 2013 ));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;PK;;893;EN;54201-247561-5, (pakistani national id, officially cancelled as of 2013 );amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;6614;EU.3760.52;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Taliban financier. Owns businesses in Japan and frequently travels to Dubai, United Arab Emirates, and Japan. As of 2009, facilitated Taliban activities, including through recruitment and the provision of logistical support. Believed to be in the Afghanistan/Pakistan border area. Belongs to Noorzai tribe. Brother of Faizullah Khan Noorzai. Father's name is Haji Akhtar Muhammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4670985);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;709;EN;;amendment;commission;2011-10-21;2011-10-21;1049/2011 (OJ L276);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:276:0002:0004:EN:PDF +28/10/2022;6615;EU.3761.17;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Key commander in the Haqqani Network under Sirajuddin Jallaloudine Haqqani. Taliban Shadow Governor for Orgun District, Paktika Province as of early 2010.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4639645);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Abbasin;Abdul Aziz;;Abdul Aziz Abbasin;;M;;;14731;EN;;amendment;commission;2011-10-21;2011-10-21;1049/2011 (OJ L276);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:276:0002:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6615;EU.3761.17;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Key commander in the Haqqani Network under Sirajuddin Jallaloudine Haqqani. Taliban Shadow Governor for Orgun District, Paktika Province as of early 2010.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4639645);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Mahsud;Abdul Aziz;;Abdul Aziz Mahsud;;;;;14732;EN;;amendment;commission;2011-10-21;2011-10-21;1049/2011 (OJ L276);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:276:0002:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6615;EU.3761.17;;2011-10-04;;(Date of UN designation: 2011-10-04)\n(Key commander in the Haqqani Network under Sirajuddin Jallaloudine Haqqani. Taliban Shadow Governor for Orgun District, Paktika Province as of early 2010.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4639645);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969;;;NO;GREGORIAN;;;;Sheykhan Village, Pirkowti Area, Orgun District, Paktika Province;AF;AFGHANISTAN;1674;EN;;amendment;commission;2011-10-21;2011-10-21;1049/2011 (OJ L276);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:276:0002:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6616;EU.3566.9;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;ABDOLLAHI Hamed;;;;;14735;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6616;EU.3566.9;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Mustafa Abdullahi;;;;;14736;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6616;EU.3566.9;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-08-11;11;8;1960;;;NO;GREGORIAN;;;;;IR;IRAN (ISLAMIC REPUBLIC OF);1675;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6616;EU.3566.9;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"D9004878 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;617;EN;;repealing;council;2015-08-01;2015-08-02;2015/1325 (OJ L206);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R1325&rid=1;;;;;;;;;;;;; +28/10/2022;6617;EU.3570.26;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;ARBABSIAR Manssor;;;;;14737;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6617;EU.3570.26;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;Arbabsiar;Mansour;;Mansour Arbabsiar;;;;;14738;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6617;EU.3570.26;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-03-06;6;3;1955;;;NO;GREGORIAN;;;;;IR;IRAN (ISLAMIC REPUBLIC OF);1676;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6617;EU.3570.26;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-03-15;15;3;1955;;;NO;GREGORIAN;;;;;IR;IRAN (ISLAMIC REPUBLIC OF);1677;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6617;EU.3570.26;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"C2002515 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;IR;;618;EN;;repealing;council;2015-08-01;2015-08-02;2015/1325 (OJ L206);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R1325&rid=1;;;;;;;;;;;;; +28/10/2022;6617;EU.3570.26;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"477845448 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;US;;619;EN;;repealing;council;2015-08-01;2015-08-02;2015/1325 (OJ L206);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R1325&rid=1;;;;;;;;;;;;; +28/10/2022;6617;EU.3570.26;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;07442833 (drivinglicence-Driving licence) (valid to 2016-03-15)(National ID No);NO;NO;NO;NO;NO;;;;2016-03-15;;;drivinglicence;Driving licence;;US;;620;EN;National ID No;repealing;council;2015-08-01;2015-08-02;2015/1325 (OJ L206);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R1325&rid=1;;;;;;;;;;;;; +28/10/2022;6617;EU.3570.26;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;711;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF +28/10/2022;6617;EU.3570.26;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;US;;712;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF +28/10/2022;6618;EU.3580.27;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;SHAHLAI Abdul Reza;;;;;14739;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6618;EU.3580.27;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;Shala'i;Abdol;Reza;Abdol Reza Shala'i;;;;;14740;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6618;EU.3580.27;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;Shalai;Abd-al Reza;;Abd-al Reza Shalai;;;;;14741;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6618;EU.3580.27;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;Shahlai;Abdorreza;;Abdorreza Shahlai;;;;;14742;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6618;EU.3580.27;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;Shahla'i;Abdolreza;;Abdolreza Shahla'i;;;;;14743;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6618;EU.3580.27;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;Shahlaee;Abdul-Reza;;Abdul-Reza Shahlaee;;;;;14744;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6618;EU.3580.27;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hajj Yusef;;;;;14745;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6618;EU.3580.27;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Haji Yusif;;;;;14746;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6618;EU.3580.27;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hajji Yasir;;;;;14747;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6618;EU.3580.27;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hajji Yusif;;;;;14748;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6618;EU.3580.27;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Yusuf Abu-al-Karkh;;;;;14749;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6618;EU.3580.27;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;Kermanshah;;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1961;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6618;EU.3580.27;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;Mehran Military Base, Ilam Province;;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1962;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6618;EU.3580.27;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;YES;GREGORIAN;;;;;IR;IRAN (ISLAMIC REPUBLIC OF);1678;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6619;EU.3500.19;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;SHAKURI Ali Gholam;;;;;14750;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6619;EU.3500.19;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;YES;GREGORIAN;;;;Tehran;IR;IRAN (ISLAMIC REPUBLIC OF);1679;EN;;amendment;commission;2011-10-22;2011-10-21;1063/2011 (OJ L277);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:277:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6621;EU.2645.6;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jumah AL-AHMAD;;M;Major General;Commander Special Forces;14767;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6621;EU.2645.6;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jumah AL-AHMED;;;;;17247;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6621;EU.2645.6;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;جمعة الأحمد;AR;M;;;124423;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6622;EU.3105.81;;;Date of designation: 14/11/2011;(Designation details: Date of designation: 14/11/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Lu’ai AL-ALI;;M;Colonel;Head of Syrian Military Intelligence, Dara'a Branch.;14768;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6622;EU.3105.81;;;Date of designation: 14/11/2011;(Designation details: Date of designation: 14/11/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Louay AL-ALI;;M;Colonel;Head of Syrian Military Intelligence, Dara'a Branch.;17248;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6622;EU.3105.81;;;Date of designation: 14/11/2011;(Designation details: Date of designation: 14/11/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Loai AL-ALI;;M;Colonel;Head of Syrian Military Intelligence, Dara'a Branch.;105222;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6622;EU.3105.81;;;Date of designation: 14/11/2011;(Designation details: Date of designation: 14/11/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;لؤي العلي;AR;M;;;124424;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6622;EU.3105.81;;;Date of designation: 14/11/2011;(Designation details: Date of designation: 14/11/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;Jablah, Latakia Province;;SY;SYRIAN ARAB REPUBLIC;120266;EN;Jablah, Latakia Province;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6623;EU.3585.46;;2011-11-14;;(Date of UN designation: 2011-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ali Abdullah AYYUB;;M;;Vice President of the Council of Ministers and Minister of Defence. Appointed in January 2018.\n\nOfficer of the rank of General in the Syrian Army, in post after May 2011. Former Chief of General Staff of the Syrian Armed Forces.;14769;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6623;EU.3585.46;;2011-11-14;;(Date of UN designation: 2011-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ali Abdallah AYYUB;;;;;17249;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6623;EU.3585.46;;2011-11-14;;(Date of UN designation: 2011-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ali Abdallah AYOB;;;;;111504;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6623;EU.3585.46;;2011-11-14;;(Date of UN designation: 2011-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ali Abdallah AYOUB;;;;;111505;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6623;EU.3585.46;;2011-11-14;;(Date of UN designation: 2011-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ali Abdallah AYUB;;;;;111506;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6623;EU.3585.46;;2011-11-14;;(Date of UN designation: 2011-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ali Abdallah AYYOUB;;;;;111507;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6623;EU.3585.46;;2011-11-14;;(Date of UN designation: 2011-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ali Abdullah AYOB;;;;;111508;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6623;EU.3585.46;;2011-11-14;;(Date of UN designation: 2011-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ali Abdullah AYOUB;;;;;111509;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6623;EU.3585.46;;2011-11-14;;(Date of UN designation: 2011-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ali Abdullah AYUB;;;;;111510;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6623;EU.3585.46;;2011-11-14;;(Date of UN designation: 2011-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ali Abdullah AYYOUB;;;;;111511;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6623;EU.3585.46;;2011-11-14;;(Date of UN designation: 2011-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;علي عبدالله أيوب;;M;;;124425;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6623;EU.3585.46;;2011-11-14;;(Date of UN designation: 2011-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952;;;NO;GREGORIAN;;;;Lattakia;SY;SYRIAN ARAB REPUBLIC;115605;EN;;amendment;council;2018-02-26;2018-02-26;2018/282 (OJ L54 I);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0282&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahd Jasim AL-FURAYJ;;M;;Former Minister of Defence;14770;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahd Jasem AL-FURAYJ;;;;;17250;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahd Jassim AL-FURAYJ;;;;;17251;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahd Jassem AL-FURAYJ;;;;;17252;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahd Jasim AL-FREIJ;;;;;17253;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahed Jasim AL-FURAYJ;EN;;;;109707;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahid Jasim AL-FURAYJ;EN;;;;109708;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahid Jassem AL-FURAYJ;;;;;123901;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahid Jassim AL-FURAYJ;;;;;123902;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahid Jasem AL-FURAYJ;;;;;123903;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahd Jassem AL-FREIJ;;;;;123904;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahd Jassim AL-FREIJ;;;;;123905;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahd Jasem AL-FREIJ;;;;;123906;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahed Jassem AL-FURAYJ;;;;;123907;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahed Jassim AL-FURAYJ;;;;;123908;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahed Jasem AL-FURAYJ;;;;;123909;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahid Jassem AL-FREIJ;;;;;123910;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahed Jassim AL-FREIJ;;;;;123911;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahed Jasem AL-FREIJ;;;;;123912;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahed Jasim AL-FREIJ;;;;;123913;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahid Jassim AL-FREIJ;;;;;123914;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahid Jasem AL-FREIJ;;;;;123915;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fahid Jasim AL-FREIJ;;;;;123916;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;فهد جاسم الفريج;AR;M;;;124426;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6624;EU.3586.11;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Former Minister of Defence.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-01-01;1;1;1950;;;NO;GREGORIAN;;;;Hama;SY;SYRIAN ARAB REPUBLIC;109706;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6625;EU.2787.2;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Aous ‘Ali’ ASLAN;;M;Major General;"High‐ranking officer. Close to Maher al‐Assad and President Bashar al‐Assad. Former positions: Commander of the 40th Brigade (4th Division) between 2011 and 2014; deputy Commander of the 4th Division in 2015; Commander of the 2nd Corps in 2016.";14771;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6625;EU.2787.2;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Aws ‘Ali’ ASLAN;;;;;14772;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6625;EU.2787.2;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Aus ‘Ali’ ASLAN;;;;;123917;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6625;EU.2787.2;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;أوس أصلان;AR;M;;;124427;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6625;EU.2787.2;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;1684;EN;;amendment;commission;2011-11-15;2011-11-15;1150/2011 (OJ L296);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:296:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6626;EU.3989.57;;;;(Date of listing: 14.11.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;BELAL;Ghassan;;Ghassan BELAL;;M;General;Head of the 4th Division security bureau, head of the 555th paratrooper regiment. Adviser to Maher al‐Assad and coor­dinator of security operations.;14773;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6626;EU.3989.57;;;;(Date of listing: 14.11.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ghassan BILAL;;;;;123918;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6626;EU.3989.57;;;;(Date of listing: 14.11.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;غسان بلال;AR;M;;;124428;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6627;EU.2788.64;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;BERRI;Abdullah;;Abdullah BERRI;;M;;Head of Berri family militia.;14774;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6627;EU.2788.64;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;BERRI;Abdallah;;Abdallah BERRI;;;;;17254;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6627;EU.2788.64;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;عبدالله بري;AR;M;;;124429;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6628;EU.2789.29;;2011-11-14;;(Date of UN designation: 2011-11-14);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;CHAOUI;George;;George CHAOUI;;M;;Member of the Syrian electronic army (territorial army intelligence \nservice).;14775;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6628;EU.2789.29;;2011-11-14;;(Date of UN designation: 2011-11-14);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;جورج شاوي;AR;M;;;124430;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6629;EU.3591.90;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Officer of the rank of Major General in the Syrian Armed Forces in post after May 2011. Deputy Head of General Intelligence Directorate.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Zuhair HAMAD;;M;Major General;Deputy Head of General Intelligence Directorate (a.k.a. General Security Directorate) since July 2012;14776;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6629;EU.3591.90;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Officer of the rank of Major General in the Syrian Armed Forces in post after May 2011. Deputy Head of General Intelligence Directorate.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Zouheir HAMAD;;;;;17255;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6629;EU.3591.90;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Officer of the rank of Major General in the Syrian Armed Forces in post after May 2011. Deputy Head of General Intelligence Directorate.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Zuheir HAMAD;;;;;17256;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6629;EU.3591.90;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Officer of the rank of Major General in the Syrian Armed Forces in post after May 2011. Deputy Head of General Intelligence Directorate.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Zouhair HAMAD;;;;;17257;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6629;EU.3591.90;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Officer of the rank of Major General in the Syrian Armed Forces in post after May 2011. Deputy Head of General Intelligence Directorate.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;زهير حمد;AR;M;;;124431;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6629;EU.3591.90;;2011-11-14;;(Date of UN designation: 2011-11-14)\n(Officer of the rank of Major General in the Syrian Armed Forces in post after May 2011. Deputy Head of General Intelligence Directorate.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;109709;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6630;EU.2618.92;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;ISMAEL;Ammar;;Ammar ISMAEL;;;;;14777;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6630;EU.2618.92;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;ISMAEL;Amar;;Amar ISMAEL;;M;;Civilian ‐ Head of Syrian electronic army (territorial army in­telligence service);17258;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6630;EU.2618.92;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;ISMAIL;Amar;;Amar ISMAIL;;;;;17259;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6630;EU.2618.92;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ammar ISMAIL;;;;;123927;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6630;EU.2618.92;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;عمار اسماعيل;AR;M;;;124432;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6630;EU.2618.92;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-04-03;3;4;1973;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;2010;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6630;EU.2618.92;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-04-03;3;4;1973;;;YES;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;2014;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6631;EU.2619.57;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;ISMAIL;Mujahed;;Mujahed ISMAIL;;M;;Member of Syrian electronic army.;14778;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6631;EU.2619.57;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;ISMAEL;Mujahed;;Mujahed ISMAEL;;;;;17260;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6631;EU.2619.57;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;مجاهد إسماعيل;AR;M;;;124433;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6633;EU.2629.58;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nazih;;M;Major General;Deputy Director of General Intelligence Directorate.;14780;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6633;EU.2629.58;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;نزيه;AR;M;;;124434;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6634;EU.3990.82;;;;(Date of listing: 14.11.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;MOULHEM;Kifah;;Kifah MOULHEM;;M;Major General;Head of the Military Intelligence Directorate since March 2019. Former Head of the Security Committee in the Southern region and former deputy head of the Military Intelligence directorate.;14781;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6634;EU.3990.82;;;;(Date of listing: 14.11.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;MOULHIM;Kifah;;Kifah MOULHIM;;;;;17261;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6634;EU.3990.82;;;;(Date of listing: 14.11.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;MULHEM;Kifah;;Kifah MULHEM;;;;;17262;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6634;EU.3990.82;;;;(Date of listing: 14.11.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;MULHIM;Kifah;;Kifah MULHIM;;;;;17263;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6634;EU.3990.82;;;;(Date of listing: 14.11.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Kifah MILHEM;;;;;123928;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6634;EU.3990.82;;;;(Date of listing: 14.11.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;كفاح ملحم;AR;M;;;124435;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6634;EU.3990.82;;;;(Date of listing: 14.11.2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;Junaynat Ruslan, Tartous province;;SY;SYRIAN ARAB REPUBLIC;123929;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6635;EU.2630.83;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Wajih MAHMUD;;M;Major General;Commander 18th Armoured Division.;14782;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6635;EU.2630.83;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Wajeeh MAHMUD;;;;;17264;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6635;EU.2630.83;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;وجيه محمود;AR;M;;;124600;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6637;EU.2646.68;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Talal Mustafa TLASS;;M;Lt. General;Deputy Chief of General Staff (Logistics and supplies).;14784;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6637;EU.2646.68;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;طلال مصطفى طلاس;AR;M;;;124601;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6638;EU.2647.33;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fu’ad TAWIL;;M;Major General;Deputy head Syrian Air Force Intelligence.;14785;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6638;EU.2647.33;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;فؤاد طويل;AR;M;;;124602;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6641;EU.2657.34;;2021-07-31;;(Date of UN designation: 2021-07-31);P;person;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;BABAEI;Davoud;;Davoud BABAEI;;;;Current head of security for the Ministry Of Defence Armed Forces Logistics' research institute the Organisation of Defensive Innovation and Research (SPND). The IAEA have identified SPND with their concerns over possible military dimensions to Iran's nuclear programme over which Iran refuses to co-operate.;14986;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6646;EU.2675.9;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;DANESHJOO;Kamran;;Kamran DANESHJOO;;M;;Former Minister of Science, Research and Technology;14793;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6646;EU.2675.9;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;DANESHJOU;Kamran;;Kamran DANESHJOU;;M;;;14794;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6648;EU.2677.36;;2021-07-31;;(Date of UN designation: 2021-07-31);P;person;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;JAFARI;Milad;;Milad JAFARI;;;;An Iranian national supplying goods, mostly metals, to UN designated SHIG front companies. Delivered goods to SHIG between January and November 2010. Payments for some of the goods were made at the central branch of EU-designated Export Development Bank of Iran (EDBI) in Tehran after November 2010.;14796;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6648;EU.2677.36;;2021-07-31;;(Date of UN designation: 2021-07-31);P;person;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Milad JAFERI;;;;;131093;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6648;EU.2677.36;;2021-07-31;;(Date of UN designation: 2021-07-31);P;person;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-09-20;20;9;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;1686;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6648;EU.2677.36;;2021-07-31;;(Date of UN designation: 2021-07-31);P;person;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;731;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF +28/10/2022;6650;EU.2679.63;;;;(Date of listing 1.12.2011);P;person;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;KARIMIAN;Ali;;Ali KARIMIAN;;;;;14798;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6650;EU.2679.63;;;;(Date of listing 1.12.2011);P;person;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;732;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF +28/10/2022;6652;EU.2680.88;;;;(Date of listing 1.12.2011);P;person;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;KHANSARI;Majid;;Majid KHANSARI;;;;Managing Director of UN-designated Kalaye Electric Company;14800;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6656;EU.2705.64;;;;(Date of listing 1.12.2011);P;person;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;MOHAMMADI;Mohammad;;Mohammad MOHAMMADI;;;;Managing Director of MATSA;14804;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6659;EU.2707.91;;;;(Date of listing 1.12.2011);P;person;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;NASERI;Mohammad;Sadegh;Mohammad Sadegh NASERI;;;;Head of the Physics Research Institute (formerly known as the Institute of Applied Physics);14807;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6663;EU.2709.21;;;;(Date of listing 1.12.2011);P;person;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;SOLTANI;Hamid;;Hamid SOLTANI;;;;Managing Director of the EU-designated Management Company for Nuclear Power Plant Construction (MASNA);14811;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6665;EU.2711.11;;;;(Date of listing 1.12.2011);P;person;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;AL YASIN;Javad;;Javad AL YASIN;;;;Head of the Research Centre for Explosion and Impact, also known as METFAZ;14813;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6667;EU.2719.22;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Aria Nikan;;;;;14815;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6667;EU.2719.22;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Pergas Aria Movalled Ltd;;;;;14816;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6667;EU.2719.22;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;59 Azadi Ali North Sohrevardi Avenue [Suite 1];;1576935561;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1969;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6668;EU.2621.47;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Bargh Azaraksh;;;;;14817;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6668;EU.2621.47;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Barghe Azerakhsh Sakht;;;;;14818;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6668;EU.2621.47;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;Esfahan;599 Ata Al Malek Blvd [Stage 3], Emam Khomeini Street;;;;;NO;;00;UNKNOWN;1970;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6669;EU.2622.12;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Behineh Trading Co;;;;;14819;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6669;EU.2622.12;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1971;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6670;EU.2623.74;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Eyvaz Technic;;;;;14820;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6670;EU.2623.74;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;3 Shahid Hamid Sadigh Alley [Building 3], Shariati Street;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1972;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6672;EU.2624.39;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Ghani Sazi Uranium Company;;;;;14822;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6672;EU.2624.39;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Iran Uranium Enrichment Company;;;;;14823;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6672;EU.2624.39;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;3 Qarqavol Close, 20th Street;;;;;NO;;00;UNKNOWN;1974;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6673;EU.2625.4;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Iran Pooya;;;;;14824;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6673;EU.2625.4;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Iran Pouya;;;;;14825;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6675;EU.2626.66;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Karanir;;;;;14827;EN;Involved in purchasing equipment and materials, which have direct applications in the Iranian nuclear programme.;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6675;EU.2626.66;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Moaser;;;;;14828;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6675;EU.2626.66;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Tajhiz Sanat;;;;;14829;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6675;EU.2626.66;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Karanir Sanat;;;;;131114;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6675;EU.2626.66;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;Tehran;1139/1 Unit 104 Gol Building, Gol Alley, North Side of Sae, Vali Asr Avenue. PO Box 19395-6439;;;;;NO;;00;UNKNOWN;1976;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6676;EU.2644.41;;;;(Date of listing 1.12.2011);E;enterprise;amendment;council;2020-06-19;2020-06-20;2020/847 (OJ L196);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.196.01.0001.01.ENG&toc=OJ:L:2020:196:TOC;;;;Khala Afarin Pars;;;;Involved in purchasing equipment and materials which have direct applications in the Iranian nuclear programme.;14830;EN;;amendment;council;2020-06-19;2020-06-20;2020/847 (OJ L196);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.196.01.0001.01.ENG&toc=OJ:L:2020:196:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6676;EU.2644.41;;;;(Date of listing 1.12.2011);E;enterprise;amendment;council;2020-06-19;2020-06-20;2020/847 (OJ L196);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.196.01.0001.01.ENG&toc=OJ:L:2020:196:TOC;;;;PISHRO KHALA AFARIN COMPANY;;;;Involved in purchasing equipment and materials which have direct applications in the Iranian nuclear programme.;124242;EN;;amendment;council;2020-06-19;2020-06-20;2020/847 (OJ L196);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.196.01.0001.01.ENG&toc=OJ:L:2020:196:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6676;EU.2644.41;;;;(Date of listing 1.12.2011);E;enterprise;amendment;council;2020-06-19;2020-06-20;2020/847 (OJ L196);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.196.01.0001.01.ENG&toc=OJ:L:2020:196:TOC;;;;;;;;;;;;;;;;;;;Tehran;Unit 5, 2nd Floor, No75, Mehran Afrand St, Sattarkhan St;;;;;NO;(Last address known);00;UNKNOWN;1977;EN;Last address known;amendment;council;2020-06-19;2020-06-20;2020/847 (OJ L196);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.196.01.0001.01.ENG&toc=OJ:L:2020:196:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6677;EU.2648.95;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;MACPAR Makina San Ve Tic;;;;;14831;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6677;EU.2648.95;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;Istanbul;79/2 Istasyon MH, Sehitler cad, Guldeniz Sit, Tuzla;;34930;;;NO;;00;UNKNOWN;1978;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6678;EU.2649.60;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;MATSA (Mohandesi Toseh Sokht Atomi Company);;;;;14832;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6678;EU.2649.60;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;90 Fathi Shaghaghi Street;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1979;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6679;EU.2650.85;;;;;E;enterprise;amendment;commission;2012-08-03;2012-08-02;709/2012 (OJ L208);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:208:0002:0005:EN:PDF;;;;Mobin Sanjesh;;;;;14833;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6679;EU.2650.85;;;;;E;enterprise;amendment;commission;2012-08-03;2012-08-02;709/2012 (OJ L208);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:208:0002:0005:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;11 12th Street [Entry 3], Miremad Alley, Abbas Abad;;;;;NO;;00;UNKNOWN;1980;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6680;EU.2651.50;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Multimat lc ve Dis Ticaret Pazarlama Limited Sirketi;;;;;14835;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6681;EU.2652.15;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Research Centre for Explosion and Impact;;;;;14836;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6681;EU.2652.15;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;METFAZ;;;;;14837;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6681;EU.2652.15;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;44 180th Street West;;16539-75751;;;NO;;00;UNKNOWN;1981;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6682;EU.2653.77;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Saman Nasb Zayendeh Rood;;;;;14838;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6682;EU.2653.77;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Saman Nasbzainde Rood;;;;;14839;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6682;EU.2653.77;;;;(Date of listing 1.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;Esfahan;Kahorz Blvd [Unit 7, 3rd Floor Mehdi Building];;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1982;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6683;EU.2654.42;;;;(Date of listing 01.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Saman Tose'e Asia;;;;;14993;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6683;EU.2654.42;;;;(Date of listing 01.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;SATA;;;;;14994;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6684;EU.2655.7;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Samen Industries;;;;Shell name for UN-designated Khorasan Metallurgy Industries, subsidiary of Ammunition Industries Group (AMIG).;14840;EN;;amendment;council;2019-05-28;2019-05-29;2019/855 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0855&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6684;EU.2655.7;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Khorasan Metallurgy Industries;;;;;131115;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6684;EU.2655.7;;2021-07-31;;(Date of UN designation: 2021-07-31);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;Mashhad;2nd km of Khalaj Road End of Seyyedi St;91735-549, 91735;;;;NO;PHONE[+98 511 3853008, +98 511 3870225];IR;IRAN (ISLAMIC REPUBLIC OF);1984;EN;;amendment;council;2019-05-28;2019-05-29;2019/855 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0855&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6686;EU.2681.53;;;;(Date of listing 01.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;STEP Standart Teknik Parca San ve TIC A.S.;;;;;14842;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6686;EU.2681.53;;;;(Date of listing 01.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;Istanbul;79/2 Tuzla;;34940;;;NO;;TR;TURKEY;1989;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6687;EU.2682.18;;;;(Date of listing 01.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;SURENA;;;;;14843;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6687;EU.2682.18;;;;(Date of listing 01.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Sakhd Va Rah-An-Da-Zi;;;;;14844;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6688;EU.2683.80;;2021-07-31;;(Date of UN designation: 2021-07-31)\n(Owned or controlled by EU-sanctioned TESA, Involved in manufacturing equipment and materials, which have direct applications in the Iranian nuclear programme.);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;TABA (Iran Cutting Tools Manufacturing company - Taba Towlid Abzar Boreshi Iran);;;;;14845;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6688;EU.2683.80;;2021-07-31;;(Date of UN designation: 2021-07-31)\n(Owned or controlled by EU-sanctioned TESA, Involved in manufacturing equipment and materials, which have direct applications in the Iranian nuclear programme.);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;TSA;;;;;131116;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6688;EU.2683.80;;2021-07-31;;(Date of UN designation: 2021-07-31)\n(Owned or controlled by EU-sanctioned TESA, Involved in manufacturing equipment and materials, which have direct applications in the Iranian nuclear programme.);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;TESA;;;;;131117;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6688;EU.2683.80;;2021-07-31;;(Date of UN designation: 2021-07-31)\n(Owned or controlled by EU-sanctioned TESA, Involved in manufacturing equipment and materials, which have direct applications in the Iranian nuclear programme.);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Sherkate Technology Centrifuge Iran;;;;;131118;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6688;EU.2683.80;;2021-07-31;;(Date of UN designation: 2021-07-31)\n(Owned or controlled by EU-sanctioned TESA, Involved in manufacturing equipment and materials, which have direct applications in the Iranian nuclear programme.);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Iran's Centrifuge Technology Company;;;;;131119;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6688;EU.2683.80;;2021-07-31;;(Date of UN designation: 2021-07-31)\n(Owned or controlled by EU-sanctioned TESA, Involved in manufacturing equipment and materials, which have direct applications in the Iranian nuclear programme.);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Iran Centrifuge Technology Co.;;;;;131120;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6688;EU.2683.80;;2021-07-31;;(Date of UN designation: 2021-07-31)\n(Owned or controlled by EU-sanctioned TESA, Involved in manufacturing equipment and materials, which have direct applications in the Iranian nuclear programme.);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;Tehran;12 Ferdowsi, Avenue Sakhaee, avenue 30 Tir (sud), nr 66;;;;;NO;;00;UNKNOWN;1990;EN;;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6689;EU.2684.45;;;;(Date of listing 01.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Test Tafsir;;;;;14846;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6689;EU.2684.45;;;;(Date of listing 01.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;11 Tawhid 6 Street, Moj Street, Darya Blvd, Shahrak Gharb;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1991;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6692;EU.2685.10;;;;(Date of listing 01.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Tosse Silooha;;;;;14847;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6692;EU.2685.10;;;;(Date of listing 01.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Tosseh Jahad E Silo;;;;;14848;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6693;EU.2686.72;;;;(Date of listing 01.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Yarsanat;;;;;14849;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6693;EU.2686.72;;;;(Date of listing 01.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Yar Sanat;;;;;14850;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6693;EU.2686.72;;;;(Date of listing 01.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;Yarestan Vacuumi;;;;;14851;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6693;EU.2686.72;;;;(Date of listing 01.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;101 West Zardosht Street, 3rd Floor;;14157;;;NO;;00;UNKNOWN;1992;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6693;EU.2686.72;;;;(Date of listing 01.12.2011);E;enterprise;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;139 Hoveyzeh Street;;15337;;;NO;;00;UNKNOWN;1993;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6694;EU.3928.86;;2012-04-18;;(Date of UN designation: 2012-04-18)\n(Member of IRGC. Date of listing 01.12.2011);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;AGHAJANI;Azim;;Azim AGHAJANI;;;;Member of the IRGC-Qods Force operating under the direction of Qods Force Commander, Major General Qasem Soleimani, who was designated by the UN Security Council in Resolution 1747 (2007).;14852;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6694;EU.3928.86;;2012-04-18;;(Date of UN designation: 2012-04-18)\n(Member of IRGC. Date of listing 01.12.2011);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;ADHAJANI;Azim;;Azim ADHAJANI;;;;;14853;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6694;EU.3928.86;;2012-04-18;;(Date of UN designation: 2012-04-18)\n(Member of IRGC. Date of listing 01.12.2011);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Agha-Jani;Azim;;Azim Agha-Jani;;;;;112878;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6694;EU.3928.86;;2012-04-18;;(Date of UN designation: 2012-04-18)\n(Member of IRGC. Date of listing 01.12.2011);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"9003213 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;IR;;112880;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;; +28/10/2022;6694;EU.3928.86;;2012-04-18;;(Date of UN designation: 2012-04-18)\n(Member of IRGC. Date of listing 01.12.2011);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"6620505 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;IR;;112881;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;; +28/10/2022;6694;EU.3928.86;;2012-04-18;;(Date of UN designation: 2012-04-18)\n(Member of IRGC. Date of listing 01.12.2011);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;112879;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN +28/10/2022;6695;EU.2687.37;;;Date of listing 01.12.2011;(Designation details: Date of listing 01.12.2011);P;person;amendment;council;2019-05-28;2019-05-29;2019/855 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0855&from=EN;SHAMS;Abolghassem;Mozaffari;Abolghassem Mozaffari SHAMS;;;;Former head of Khatam al-Anbiya Construction Headquarters.;14854;EN;;amendment;council;2019-05-28;2019-05-29;2019/855 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0855&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6696;EU.3929.51;;2012-04-18;;(Date of UN designation: 2012-04-18)\n(Member of Islamic Revoluationary Guard Corps (IRGC). Date of listing 01.12.2011);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Tabatabaei;Ali;Akbar;Ali Akbar Tabatabaei;;;;Member of the IRGC Qods Force operating under the direction of Qods Force Commander, Major General Qasem Soleimani, who was designated by the UN Security Council in Resolution 1747 (2007).;14855;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6696;EU.3929.51;;2012-04-18;;(Date of UN designation: 2012-04-18)\n(Member of Islamic Revoluationary Guard Corps (IRGC). Date of listing 01.12.2011);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Tahmaesebi;Sayed;Akbar;Sayed Akbar Tahmaesebi;;;;;14856;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6696;EU.3929.51;;2012-04-18;;(Date of UN designation: 2012-04-18)\n(Member of Islamic Revoluationary Guard Corps (IRGC). Date of listing 01.12.2011);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Tahmaesebi;Ali;Akbar;Ali Akbar Tahmaesebi;;;;;112883;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6696;EU.3929.51;;2012-04-18;;(Date of UN designation: 2012-04-18)\n(Member of Islamic Revoluationary Guard Corps (IRGC). Date of listing 01.12.2011);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Tahmaesebi;Ali;Akber;Ali Akber Tahmaesebi;;;;;112884;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6696;EU.3929.51;;2012-04-18;;(Date of UN designation: 2012-04-18)\n(Member of Islamic Revoluationary Guard Corps (IRGC). Date of listing 01.12.2011);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Tabatabaei;Ali;Akber;Ali Akber Tabatabaei;;;;;112885;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6696;EU.3929.51;;2012-04-18;;(Date of UN designation: 2012-04-18)\n(Member of Islamic Revoluationary Guard Corps (IRGC). Date of listing 01.12.2011);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;Tahmaesebi;Syed;Akber;Syed Akber Tahmaesebi;;;;;112886;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6696;EU.3929.51;;2012-04-18;;(Date of UN designation: 2012-04-18)\n(Member of Islamic Revoluationary Guard Corps (IRGC). Date of listing 01.12.2011);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;112882;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6696;EU.3929.51;;2012-04-18;;(Date of UN designation: 2012-04-18)\n(Member of Islamic Revoluationary Guard Corps (IRGC). Date of listing 01.12.2011);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6620505 (passport-National passport) ((b) 6620505 issued in Iran/unknown.);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;IR;;112890;EN;(b) 6620505 issued in Iran/unknown.;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;; +28/10/2022;6696;EU.3929.51;;2012-04-18;;(Date of UN designation: 2012-04-18)\n(Member of Islamic Revoluationary Guard Corps (IRGC). Date of listing 01.12.2011);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9003213 (passport-National passport) ((a) 9003213 issued in Iran/unknown);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;IR;;112891;EN;(a) 9003213 issued in Iran/unknown;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;; +28/10/2022;6696;EU.3929.51;;2012-04-18;;(Date of UN designation: 2012-04-18)\n(Member of Islamic Revoluationary Guard Corps (IRGC). Date of listing 01.12.2011);P;person;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;112887;EN;;amendment;council;2017-06-24;2017-06-25;2017/1124 (OJ L163);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1124&from=EN +28/10/2022;6697;EU.2712.73;;2012-12-10;;(Date of UN designation: 2012-12-10)\n(Date of UN designation: 10.12.2012. Yas Air is the new name for Pars Air, a company that was owned by Pars Aviation Services Company, which in turn was designated by the United Nations Security Council in Resolution 1747 (2007). Yas Air has assisted Pars Aviation Services Company, a United Nations-designated entity, in violating paragraph 5 of Resolution 1747 (2007).);E;enterprise;amendment;commission;2013-06-08;2013-06-06;522/2013 (OJ L156);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:156:0003:0007:EN:PDF;;;;Yas Air;;;;;14857;EN;;amendment;commission;2011-12-01;2011-12-01;1245/2011 (OJ L319);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0011:0031:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6697;EU.2712.73;;2012-12-10;;(Date of UN designation: 2012-12-10)\n(Date of UN designation: 10.12.2012. Yas Air is the new name for Pars Air, a company that was owned by Pars Aviation Services Company, which in turn was designated by the United Nations Security Council in Resolution 1747 (2007). Yas Air has assisted Pars Aviation Services Company, a United Nations-designated entity, in violating paragraph 5 of Resolution 1747 (2007).);E;enterprise;amendment;commission;2013-06-08;2013-06-06;522/2013 (OJ L156);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:156:0003:0007:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Mehrabad Airport;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);1994;EN;;amendment;commission;2013-06-08;2013-06-06;522/2013 (OJ L156);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:156:0003:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6822;EU.3329.67;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad AL-JLEILATI;;M;;Former Minister of Finance, in office until 9.2.2013.;14998;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6822;EU.3329.67;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed AL-JLEILATI;;;;;17411;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6822;EU.3329.67;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad AL-JLEILATI;;;;;17414;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6822;EU.3329.67;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed AL-JLEILATI;;;;;17415;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6822;EU.3329.67;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد جليلاتي;AR;M;;;124635;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6822;EU.3329.67;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد الجليلاتي;AR;M;;;124636;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6822;EU.3329.67;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1945;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;1931;EN;;amendment;council;2016-05-28;2016-05-29;2016/840 (OJ L141);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0840&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6825;EU.2692.19;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ibrahim AL-HASSAN;;M;Major General;Deputy Chief of Staff.;15012;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6825;EU.2692.19;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ibrahim AL-HASAN;;;;;17275;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6825;EU.2692.19;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ابراهيم الحسن;AR;M;;;124606;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZGHRAYBIH;;;Brigadier;;15013;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZGHRAYBIH;;;;;17278;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZGHRAYBEH;;;;;17280;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZGHRAYBE;;;;;17281;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZGHRAYBA;;;;;17282;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZGHRAYBAH;;;;;17283;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZAGHRAYBEH;;;;;17284;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZAGHRAYBE;;;;;17285;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZAGHRAYBA;;;;;17286;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZAGHRAYBAH;;;;;17287;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZEGHRAYBEH;;;;;17289;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZEGHRAYBE;;;;;17290;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZEGHRAYBA;;;;;17291;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZEGHRAYBAH;;;;;17293;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZUGHRAYBEH;;;;;17296;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZUGHRAYBE;;;;;17297;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZUGHRAYBA;;;;;17299;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZUGHRAYBAH;;;;;17300;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZIGHRAYBEH;;;;;17301;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZIGHRAYBE;;;;;17302;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZIGHRAYBA;;;;;17303;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalil ZIGHRAYBAH;;;;;17304;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZAGHRAYBAH;;;;;124106;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZAGHRAYBA;;;;;124107;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZAGHRAYBE;;;;;124108;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZAGHRAYBEH;;;;;124109;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZGHRAYBAH;;;;;124110;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZGHRAYBA;;;;;124111;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZGHRAYBE;;;;;124112;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZGHRAYBEH;;;;;124113;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZUGHRAYBA;;;;;124114;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZUGHRAYBE;;;;;124115;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZUGHRAYBEH;;;;;124116;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZEGHRAYBAH;;;;;124117;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZEGHRAYBA;;;;;124118;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZEGHRAYBE;;;;;124119;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZEGHRAYBEH;;;;;124120;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZIGHRAYBAH;;;;;124121;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZIGHRAYBA;;;;;124122;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZIGHRAYBE;;;;;124123;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZIGHRAYBEH;;;;;124124;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaleel ZUGHRAYBAH;;;;;124125;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;خليل زغربية;AR;M;;;124607;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6826;EU.2693.81;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;خليل زغريبه;AR;M;;;124608;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6827;EU.2694.46;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ali BARAKAT;;M;;Military official. Currently serves in the 30th Mobile Infantry Division of the Republican Guard.;15014;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6827;EU.2694.46;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;علي بركات;AR;M;;;124609;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6827;EU.2694.46;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;بركات علي بركات;AR;M;;;129725;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6827;EU.2694.46;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Barakat Ali Barakat;;M;;;129726;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6828;EU.2716.30;;;Date of designation: 01/12/2011;(Designation details: Date of designation: 01/12/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Talal MAKHLUF;;M;Major General;Former commander of the 105th Brigade of the Republican Guards. Former commander general of the Republican Guards. Current commander of the 2nd Corps. Member of the Syrian Armed Forces of the rank of Major General in post after May 2011.;15015;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6828;EU.2716.30;;;Date of designation: 01/12/2011;(Designation details: Date of designation: 01/12/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Talal MAKHLOUF;;;;;17305;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6828;EU.2716.30;;;Date of designation: 01/12/2011;(Designation details: Date of designation: 01/12/2011);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;طلال مخلوف;AR;M;;;124610;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6829;EU.3106.46;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nazih HASSUN;;M;Major General;Officer of the rank of Major General in the Syrian Armed Forces in post after May 2011. \nHead of the Political Security Directorate of the Syrian security services in post after May 2011.;15016;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6829;EU.3106.46;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nazeeh HASSUN;;;;;17316;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6829;EU.3106.46;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nazih HASSOUN;;;;;17317;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6829;EU.3106.46;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nazeeh HASSOUN;EN;;;;105247;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6829;EU.3106.46;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;نزيه حسون;AR;M;;;124611;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6830;EU.2615.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Maan JDIID;;M;Captain;Presidential guard;15017;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6830;EU.2615.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ma'an JDIID;;;;;17321;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6830;EU.2615.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Maan JDID;;;;;17322;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6830;EU.2615.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Maan JEDID;;;;;17323;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6830;EU.2615.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Maan JEDEED;;;;;17324;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6830;EU.2615.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Maan JADEED;;;;;17325;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6830;EU.2615.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Maan JDEED;;;;;17327;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6830;EU.2615.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ma'an JDEED;;;;;123946;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6830;EU.2615.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ma'an JADEED;;;;;123947;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6830;EU.2615.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ma'an JEDEED;;;;;123948;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6830;EU.2615.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ma'an JEDID;;;;;123949;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6830;EU.2615.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ma'an JDID;;;;;123950;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6830;EU.2615.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;معن جديد;AR;M;;;124612;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6831;EU.3493.55;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;Al-Shaar;Mohammad;Ibrahim;Mohammad Ibrahim Al-Shaar;;;;;15018;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6831;EU.3493.55;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;Al-Shaar;Mohamed;Ibrahim;Mohamed Ibrahim Al-Shaar;;;;;17332;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6831;EU.3493.55;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;Al-Shaar;Muhammad;Ibrahim;Muhammad Ibrahim Al-Shaar;;;;;17333;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6831;EU.3493.55;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;Al-Shaar;Mohammed;Ibrahim;Mohammed Ibrahim Al-Shaar;;;;;17334;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6831;EU.3493.55;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;Al-Chaar;Mohammad;Ibrahim;Mohammad Ibrahim Al-Chaar;;;;;17335;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6831;EU.3493.55;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;Al-Sha'ar;Mohammad;Ibrahim;Mohammad Ibrahim Al-Sha'ar;;;;Minister of the Interior in power after May 2011.;17338;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6831;EU.3493.55;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;Mohammad Ibrahim Al Chaar;;;;;17407;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6831;EU.3493.55;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;Al-Sha'ar;Mohammed;Ibrahim;Mohammed Ibrahim Al-Sha'ar;EN;;;null;109712;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6831;EU.3493.55;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;Al-Sha'ar;Muhammad;Ibrahim;Muhammad Ibrahim Al-Sha'ar;EN;;;Minister of the Interior in power after May 2011.;109713;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6831;EU.3493.55;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;Al-Sha'ar;Mohamed;Ibrahim;Mohamed Ibrahim Al-Sha'ar;EN;;;null;109714;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6831;EU.3493.55;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;;Aleppo;SY;SYRIAN ARAB REPUBLIC;109711;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6832;EU.2616.65;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khald AL-TAWEEL;;M;;Political Security Division;15019;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6832;EU.2616.65;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaled AL-TAWEEL;;;;;17342;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6832;EU.2616.65;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khald AL-TAWIL;;;;;17344;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6832;EU.2616.65;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaled AL-TAWIL;;;;;123951;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6832;EU.2616.65;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;خالد الطويل;AR;M;;;124614;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6833;EU.2617.30;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ghiath FAYAD;;M;;Political Security Division;15034;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6833;EU.2617.30;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ghiath FAYYAD;;;;;17346;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6833;EU.2617.30;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;غياث فياض;AR;M;;;124615;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6834;EU.2575.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Cham Press TV;;;;;15020;EN;;amendment;commission;2011-12-02;2011-12-02;1244/2011 (OJ L319);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6834;EU.2575.44;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Al Qudsi building, 2nd Floor, Baramkeh;;;;;NO;WEB[http://www.champress.net]\nPHONE[+963 11 2260805 ]\nEMAIL[mail@champress.com]\nFAX[+963 11 2260806];SY;SYRIAN ARAB REPUBLIC;2152;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6835;EU.2576.9;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Al Watan;;;;;15021;EN;;amendment;commission;2011-12-02;2011-12-02;1244/2011 (OJ L319);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6835;EU.2576.9;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus, Duty Free Zone;Al Watan Newspaper;;;;;NO;PHONE[+963 11 2137400]\nFAX[+963 11 2139928];00;UNKNOWN;2153;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6836;EU.4031.66;;;;(date of listing: 1.12.2011);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Centre d’études et de recherches syrien (CERS);;;;;15022;EN;;amendment;council;2017-09-26;2017-09-27;2017/1751 (OJ L246);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1751&qid=1506424462675&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6836;EU.4031.66;;;;(date of listing: 1.12.2011);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Centre d’Etude et de Recherche Scientifique (CERS);;;;;15023;EN;;amendment;council;2017-09-26;2017-09-27;2017/1751 (OJ L246);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1751&qid=1506424462675&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6836;EU.4031.66;;;;(date of listing: 1.12.2011);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Scientific Studies and Research Center (SSRC);;;;;15024;EN;;amendment;council;2017-09-26;2017-09-27;2017/1751 (OJ L246);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1751&qid=1506424462675&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6836;EU.4031.66;;;;(date of listing: 1.12.2011);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Centre de Recherche de Kaboun;;;;;15025;EN;;amendment;commission;2011-12-02;2011-12-02;1244/2011 (OJ L319);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6836;EU.4031.66;;;;(date of listing: 1.12.2011);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;CERS;;;;;16844;EN;;amendment;commission;2012-11-30;2012-11-30;1117/2012 (OJ L330);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:330:0009:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6836;EU.4031.66;;;;(date of listing: 1.12.2011);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;SSRC;;;;;16845;EN;;amendment;commission;2012-11-30;2012-11-30;1117/2012 (OJ L330);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:330:0009:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6836;EU.4031.66;;;;(date of listing: 1.12.2011);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Barzeh Street;P.O. Box 4470;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2154;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6837;EU.2578.36;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Business Lab;;;;;15026;EN;;amendment;commission;2011-12-02;2011-12-02;1244/2011 (OJ L319);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6837;EU.2578.36;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Maysat Square, Al Rasafi Street Bldg. 9;P.O. Box 7155;;;;NO;PHONE[+963 11 2725499]\nFAX[+963 11 2725399];SY;SYRIAN ARAB REPUBLIC;2156;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6838;EU.2589.2;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Industrial Solutions;;;;;15027;EN;;amendment;commission;2011-12-02;2011-12-02;1244/2011 (OJ L319);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6838;EU.2589.2;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Baghdad Street 5;P.O. Box 6394;;;;NO;(Tel/Fax: +963 11 4471080);SY;SYRIAN ARAB REPUBLIC;2158;EN;Tel/Fax: +963 11 4471080;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6839;EU.2590.27;;2011-12-01;;(Date of UN designation: 2011-12-01);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Mechanical Construction Factory (MCF);;;;;15028;EN;;amendment;commission;2011-12-02;2011-12-02;1244/2011 (OJ L319);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6839;EU.2590.27;;2011-12-01;;(Date of UN designation: 2011-12-01);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Damascus;P.O. Box 35202, Industrial Zone, Al-Qadam Road;P.O. Box 35202;;;Damascus;NO;"PHONE[+963 011 5810719]\nEMAIL[info@metallic-sy.com / shaamco@mail.sy]\n(Tel :+963 011 5810719 ; +963 11 4474579 ; +963 11 5810718 ; +963 11 5810719)";SY;SYRIAN ARAB REPUBLIC;2160;EN;"Tel :+963 011 5810719 ; +963 11 4474579 ; +963 11 5810718 ; +963 11 5810719";amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6840;EU.2591.89;;2021-12-01;;(Date of UN designation: 2021-12-01);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Syronics – Syrian Arab Co. for Electronic Industries;;;;;15029;EN;;amendment;commission;2011-12-02;2011-12-02;1244/2011 (OJ L319);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6840;EU.2591.89;;2021-12-01;;(Date of UN designation: 2021-12-01);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Syronics – sirska arabska družba za elektronsko industrijo;SL;;;;140968;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6840;EU.2591.89;;2021-12-01;;(Date of UN designation: 2021-12-01);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Damascus;Kaboon Street;P.O. Box 5966;;;;NO;PHONE[+963 11 5111352]\nEMAIL[info@syronics.com.sy]\nFAX[+963 11 5110117];SY;SYRIAN ARAB REPUBLIC;2161;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6841;EU.2592.54;;2011-12-01;;(Date of UN designation: 2011-12-01);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Handasieh – Organization for Engineering Industries;;;;;15030;EN;;amendment;commission;2011-12-02;2011-12-02;1244/2011 (OJ L319);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6841;EU.2592.54;;2011-12-01;;(Date of UN designation: 2011-12-01);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Handasieh – Organizzazzjoni għall-Industrji tal-Inġenerija;MT;;;;140950;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6841;EU.2592.54;;2011-12-01;;(Date of UN designation: 2011-12-01);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Handasieh – organisation för verkstadsindustri;SV;;;;140953;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6841;EU.2592.54;;2011-12-01;;(Date of UN designation: 2011-12-01);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Handasieh – organizacija za strojno industrijo;SL;;;;140971;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6841;EU.2592.54;;2011-12-01;;(Date of UN designation: 2011-12-01);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Damascus;P.O. Box 5966, Abou Bakr Al‐Seddeq St.;P.O. Box 5966;;;Damascus;NO;"PHONE[+ 963 11 2121824]\nEMAIL[g.o.eng.ind@net.sy]\n(Tel:+ 963 11 2121824; +963 11 2121825; +963 11 2131307)";SY;SYRIAN ARAB REPUBLIC;2163;EN;"Tel:+ 963 11 2121824; +963 11 2121825; +963 11 2131307";amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6841;EU.2592.54;;2011-12-01;;(Date of UN designation: 2011-12-01);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Damascus;PO BOX 2849, Al-Moutanabi Street;PO BOX 2849;;;Damascus;NO;"PHONE[+ 963 11 2121824]\nEMAIL[g.o.eng.ind@net.sy]\n(Tel: + 963 11 2121824; +963 11 2121825; +963 11 2131307)";SY;SYRIAN ARAB REPUBLIC;2165;EN;"Tel: + 963 11 2121824; +963 11 2121825; +963 11 2131307";amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6841;EU.2592.54;;2011-12-01;;(Date of UN designation: 2011-12-01);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Damascus;PO BOX 21120, Baramkeh;PO BOX 21120;;;Damascus;NO;"PHONE[+ 963 11 2121824]\nEMAIL[g.o.eng.ind@net.sy]\n(Tel: + 96311 2121824; +963 11 2121825; +963 11 2131307)";SY;SYRIAN ARAB REPUBLIC;2166;EN;"Tel: + 96311 2121824; +963 11 2121825; +963 11 2131307";amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6842;EU.2611.46;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syria Trading Oil Company (Sytrol);;;;;15031;EN;;amendment;commission;2011-12-02;2011-12-02;1244/2011 (OJ L319);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6842;EU.2611.46;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Prime Minister Building, 17 Street Nissan;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2167;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6843;EU.2612.11;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;General Petroleum Corporation (GPC);;;;;15032;EN;;amendment;commission;2011-12-02;2011-12-02;1244/2011 (OJ L319);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6843;EU.2612.11;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;New Sham - Building of Syrian Oil Company;P.O. Box 60694;;;;NO;PHONE[+963 11 3141635]\nEMAIL[info@gpc‐sy.com]\nFAX[+963 11 3141634];SY;SYRIAN ARAB REPUBLIC;2168;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6844;EU.2613.73;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Al Furat Petroleum Company;;;;;15033;EN;;amendment;commission;2011-12-02;2011-12-02;1244/2011 (OJ L319);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:319:0008:0010:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6844;EU.2613.73;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Dummar - New Sham - Western Dummer 1st. Island - Property 2299 - AFPC Building;P.O. Box 7660;;;;NO;"PHONE[+963 11 6183333; +963 11 31913333]\nEMAIL[afpc@afpc.net.sy]\nFAX[+963 11 6184444; +963 11 31914444]";SY;SYRIAN ARAB REPUBLIC;2169;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6847;EU.4159.44;;2011-12-19;;(Date of UN designation: 2011-12-19);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Yong Chol;;M;;Member of the Workers’ Party of Korea Political Bureau, the State Affairs Commission of the Democratic People’s Republic of Korea and until June 2022. Director of the United Front Department. Former commander of Reconnaissance General Bureau (RGB), an entity sanctioned by the United Nations Security Council.;15068;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6847;EU.4159.44;;2011-12-19;;(Date of UN designation: 2011-12-19);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Yong-Chol;;M;;;15069;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6847;EU.4159.44;;2011-12-19;;(Date of UN designation: 2011-12-19);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Young-Chul;;M;;;15070;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6847;EU.4159.44;;2011-12-19;;(Date of UN designation: 2011-12-19);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Young-Cheol;;M;;;15071;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6847;EU.4159.44;;2011-12-19;;(Date of UN designation: 2011-12-19);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Young-Chol;;M;;;15072;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6847;EU.4159.44;;2011-12-19;;(Date of UN designation: 2011-12-19);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;김영철;;M;;;141990;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6847;EU.4159.44;;2011-12-19;;(Date of UN designation: 2011-12-19);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946;;;NO;GREGORIAN;;;;Pyongan-Pukto;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;1699;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6849;EU.3786.38;;;;(Date of listing: 2011-12-20.);P;person;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;Pak;To-Chun;;To-Chun Pak;;;;Member of the National Security Council. He is in charge of the arms industry. It is reported that he commands the office for nuclear energy.;15073;EN;;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6849;EU.3786.38;;;;(Date of listing: 2011-12-20.);P;person;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;PAK;To Chun;;To Chun PAK;;;;;112441;EN;;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6849;EU.3786.38;;;;(Date of listing: 2011-12-20.);P;person;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944-03-09;9;3;1944;;;NO;GREGORIAN;;;;Jagang, Rangrim;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;1700;EN;;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6850;EU.4200.28;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Hesong Trading Company;;;;The Korea Mining Development Corporation (KOMID) is the parent company of Hesong Trading Corporation;15074;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6850;EU.4200.28;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;2172;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6851;EU.4061.69;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Tosong Technology Trading Corporation;;;;The Korea Mining Development Corporation (KOMID) is the parent company of Tosong Technology Trading Corporation.;15075;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6851;EU.4061.69;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;2173;EN;;amendment;commission;2014-10-08;2014-10-08;1059/2014 (OJ L293);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6852;EU.4195.91;;2013-03-07;;(Date of UN designation: 2013-03-07);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Complex Equipment Import Corporation;;;;Korea Ryonbong General Corporation is the parent company of Korea Complex Equipment Import Corporation.;15076;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6852;EU.4195.91;;2013-03-07;;(Date of UN designation: 2013-03-07);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Rakwon-dong, Pothonggang District, Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;2174;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6854;EU.4201.90;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Kwangsong Trading Corporation;;;;The Korea Ryongbong General Corporation is the parent company of Korea Kwangsong Trading Corporation.;15081;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6854;EU.4201.90;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Rakwon-dong, Pothonggang District, Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;2178;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Ryonha Machinery Joint Venture Corporation;;;;Korea Ryonbong General Corporation is the parent company of Korea Ryonha Machinery Joint Venture Corporation.;15082;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Chosun Yunha Machinery Joint Operation Company;;;;;15083;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Ryenha Machinery J/V Corporation;;;;;15084;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Ryonha Machinery Joint Venture Corporation;;;;;15085;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Ryonha Machinery Corporation;;;;;17722;EN;;amendment;commission;2014-04-15;2014-04-14;386/2014 (OJ L111);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0386&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Ryonha Machinery;;;;;17723;EN;;amendment;commission;2014-04-15;2014-04-14;386/2014 (OJ L111);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0386&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Ryonha Machine Tool;;;;;17724;EN;;amendment;commission;2014-04-15;2014-04-14;386/2014 (OJ L111);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0386&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Ryonha Machine Tool Corporation;;;;;17725;EN;;amendment;commission;2014-04-15;2014-04-14;386/2014 (OJ L111);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0386&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Ryonha Machinery Corp;;;;;17726;EN;;amendment;commission;2014-04-15;2014-04-14;386/2014 (OJ L111);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0386&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Ryonhwa Machinery Joint Venture Corporation;;;;;17727;EN;;amendment;commission;2014-04-15;2014-04-14;386/2014 (OJ L111);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0386&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Ryonhwa Machinery JV;;;;;17728;EN;;amendment;commission;2014-04-15;2014-04-14;386/2014 (OJ L111);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0386&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Huichon Ryonha Machinery General Plant;;;;;17729;EN;;amendment;commission;2014-04-15;2014-04-14;386/2014 (OJ L111);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0386&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Unsan;;;;;17730;EN;;amendment;commission;2014-04-15;2014-04-14;386/2014 (OJ L111);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0386&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Unsan Solid Tools;;;;;17731;EN;;amendment;commission;2014-04-15;2014-04-14;386/2014 (OJ L111);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0386&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Millim Technology Company;;;;;17732;EN;;amendment;commission;2014-04-15;2014-04-14;386/2014 (OJ L111);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0386&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Tongan-dong, Central District, Pyongyang;;;;;;NO;"PHONE[8502- 18111; 8502-18111-8642; and 850 2 18111- 3818642]\nEMAIL[ryonha@ silibank.com; sjc117@ hotmail.com; and millim@ silibank.com]\n(email addresses:ryonha@ silibank.com; sjc117@ hotmail.com; and millim@ silibank.com\n\ntelephone numbers:8502- 18111; 8502-18111-8642; and 850 2 18111- 3818642\n\nFacsimile number: 8502- 381-4410)";KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;2179;EN;"email addresses:ryonha@ silibank.com; sjc117@ hotmail.com; and millim@ silibank.com\n\ntelephone numbers:8502- 18111; 8502-18111-8642; and 850 2 18111- 3818642\n\nFacsimile number: 8502- 381-4410";repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Mangungdae-gu, Pyongyang;;;;;;NO;"PHONE[8502- 18111; 8502-18111-8642; and 850 2 18111- 3818642]\nEMAIL[ryonha@ silibank.com; sjc117@ hotmail.com; and millim@ silibank.com]\n(email addresses: ryonha@ silibank.com; sjc117@ hotmail.com; and millim@ silibank.com\n\ntelephone numbers: 8502- 18111; 8502-18111-8642; and 850 2 18111- 3818642\n\nFacsimile number: 8502- 381-4410)";KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;2180;EN;"email addresses: ryonha@ silibank.com; sjc117@ hotmail.com; and millim@ silibank.com\n\ntelephone numbers: 8502- 18111; 8502-18111-8642; and 850 2 18111- 3818642\n\nFacsimile number: 8502- 381-4410";repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6855;EU.4062.34;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Mangyongdae District, Pyongyang;;;;;;NO;"PHONE[8502- 18111; 8502-18111-8642; and 850 2 18111- 3818642]\nEMAIL[ryonha@ silibank.com; sjc117@ hotmail.com; and millim@ silibank.com]\n(email addresses: ryonha@ silibank.com; sjc117@ hotmail.com; and millim@ silibank.com\n\ntelephone numbers: 8502- 18111; 8502-18111-8642; and 850 2 18111- 3818642\n\nFacsimile number: 8502- 381-4410)";KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;2181;EN;"email addresses: ryonha@ silibank.com; sjc117@ hotmail.com; and millim@ silibank.com\n\ntelephone numbers: 8502- 18111; 8502-18111-8642; and 850 2 18111- 3818642\n\nFacsimile number: 8502- 381-4410";repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6856;EU.4100.63;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2018-07-18;2018-07-18;2018/1009 (OJ L181);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1009&from=EN;;;;Munitions Industry Department;;;;The Munitions Industry Department is involved in key aspects of the DPRK's missile program.;15086;EN;MID is responsible for overseeing the development of the DPRK's ballistic missiles, including the Taepo Dong-2. The MID oversees the DPRK's weapons production and R & D programmes, including the DPRK's ballistic missile programme. The Second Economic Committee and the Second Academy of Natural Sciences — also designated in August 2010 — are subordinate to the MID. The MID in recent years has worked to develop the KN08 road-mobile ICBM. The MID oversees the DPRK's nuclear programme. \nThe Nuclear Weapons Institute is subordinate to the MID.’;amendment;council;2018-07-18;2018-07-18;2018/1009 (OJ L181);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1009&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6856;EU.4100.63;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2018-07-18;2018-07-18;2018/1009 (OJ L181);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1009&from=EN;;;;Military Supplies Industry Department;;;;;15087;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6856;EU.4100.63;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2018-07-18;2018-07-18;2018/1009 (OJ L181);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1009&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;2182;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6857;EU.3319.66;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Reconnaissance General Bureau;;;;The Reconnaissance General Bureau is the DPRK's premiere intelligence organization, created in early 2009 by the merger of existing intelligence organizations from the Korean Workers' Party, the Operations Department and Office 35, and the Reconnaissance Bureau of the Korean People's Army.;15088;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6857;EU.3319.66;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Chongch’al Ch’ongguk;;;;;15089;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6857;EU.3319.66;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;RGB;;;;;15090;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6857;EU.3319.66;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;KPA Unit 586;;;;;15091;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6857;EU.3319.66;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Hyongjesan-Guyok, Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;2183;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6857;EU.3319.66;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Nungrado, Pyongyang;;;;;;NO;(Alternate Address: Nungrado, Pyongyang, DPRK);KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;2184;EN;Alternate Address: Nungrado, Pyongyang, DPRK;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6859;EU.3464.17;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;KIM;Tong My'ong;;Tong My'ong KIM;;;;President of Tanchon Commercial Bank (TCB) and has held various positions within TCB since at least 2002. He has also played a role in managing Amroggang’s affairs.;15099;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6859;EU.3464.17;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;KIM;Chin-so'k;;Chin-so'k KIM;;;;;15100;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6859;EU.3464.17;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;KIM;Hyok-Chol;;Hyok-Chol KIM;EN;;;;108844;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6859;EU.3464.17;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;KIM;Jin-Sok;;Jin-Sok KIM;EN;;;;108846;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6859;EU.3464.17;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;KIM;Tong-Myong;;Tong-Myong KIM;EN;;;;108847;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6859;EU.3464.17;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;KIM;Hyok Chol;;Hyok Chol KIM;;;;;143138;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6859;EU.3464.17;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;KIM;Tong Myong;;Tong Myong KIM;;;;;143139;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6859;EU.3464.17;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;KIM;Tong-Myo’ng;;Tong-Myo’ng KIM;;;;;143140;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6859;EU.3464.17;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;KIM;Tong-Myong;;Tong-Myong KIM;;;;;143141;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6859;EU.3464.17;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Kim;Chin-sok;;Chin-sok Kim;SV;M;;;143602;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6859;EU.3464.17;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;1702;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6859;EU.3464.17;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-08-28;28;8;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;143136;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6859;EU.3464.17;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"290320764 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KP;;143137;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;6859;EU.3464.17;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;733;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF +28/10/2022;6860;EU.3317.39;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Kwangson Banking Corporation (KKBC);;;;KKBC provides financial services in support to Tanchon Commercial Bank and Korea Hyoksin Trading Corporation, a subordinate of the Korea Ryonbong General Corporation. Tanchon Commercial Bank has used KKBC to facilitate funds transfers likely amounting to millions of dollars, including transfers involving Korea Mining Development Corporation related funds.;15101;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6860;EU.3317.39;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;KKBC;;;;;15103;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6860;EU.3317.39;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Jungson-dong, Sungri Street, Central District, Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;2187;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Office 39;;;;DPRK government entity;15104;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Office #39;;;;;15105;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Office No. 39;;;;;15106;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Bureau 39;;;;;15107;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Central Committee Bureau 39;;;;;15108;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Third Floor;;;;;15109;EN;"DPRK government entity ""Office 39""";amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Division 39;EN;;;;108256;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Γραφείο 39;EL;;;;143591;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Γραφείο αριθ. 39;EL;;;;143592;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Τμήμα 39;EL;;;;143593;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Τρίτος όροφος;EL;;;;143594;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Γραφείο 39 της Κεντρικής Επιτροπής;EL;;;;143595;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Бюро 39;BG;;;;143596;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;39. Hivatal;HU;;;;143597;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Byrå 39;SV;;;;143604;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Biuro 39;PL;;;;143607;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;kancelář 39;CS;;;;143608;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Kancelária 39;SK;;;;143610;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Ured 39;HR;;;;143611;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;39. büroo;ET;;;;143612;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;39 biuras;LT;;;;143614;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;39 padalinys;LT;;;;143615;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Trečiasis aukštas;LT;;;;143616;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Centrinio komiteto 39 biuras;LT;;;;143617;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Gabinete 39;PT;;;;143620;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Second KWP Government Building (Korean – Ch’o’ngsa, Urban Town (Korean-Dong), Chung Ward;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;108257;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Changwang Street;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;143176;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6861;EU.3318.4;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Chung-Guyok (Central District), Sosong Street, Kyongrim-Dong;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;143177;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6862;EU.4184.28;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Amroggang Development Banking Corporation;;;;Amroggang, which was established in 2006, is a Tanchon Commercial Bank- related company managed by Tanchon officials.;15110;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6862;EU.4184.28;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Amroggang Development Bank;;;;;15111;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6862;EU.4184.28;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Amnokkang Development Bank;;;;;15112;EN;;amendment;commission;2014-10-08;2014-10-08;1059/2014 (OJ L293);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6862;EU.4184.28;;2012-05-02;;(Date of UN designation: 2012-05-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Tongan-dong, Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;2191;EN;;amendment;commission;2014-10-08;2014-10-08;1059/2014 (OJ L293);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6863;EU.4063.96;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Bank of East Land;;;;DPRK financial institution Bank of East Land facilitates weapons-related transactions for, and other support to, arms manufacturer and exporter Green Pine Associated Corporation (Green Pine).;15113;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6863;EU.4063.96;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Dongbang Bank;;;;;15114;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6863;EU.4063.96;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Tongbang U'Nhaeng;;;;;15115;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6863;EU.4063.96;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Tongbang Bank;;;;;15116;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6863;EU.4063.96;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;PO Box 32, BEL Building, Jonseung-Dung, Moranbong District;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;2192;EN;;amendment;commission;2014-10-08;2014-10-08;1059/2014 (OJ L293);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Mukulu;Jamil;;Jamil Mukulu;;;;Head of the Allied Democratic Forces (ADF);15121;EN;;amendment;commission;2012-01-07;2012-01-05;7/2012 (OJ L4);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:004:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Musharaf;;;Musharaf;;;Professor;Commander, Allied Democratic Forces;15124;EN;;amendment;commission;2012-01-07;2012-01-05;7/2012 (OJ L4);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:004:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Alirabaki;Steven;;Steven Alirabaki;;;;Head of the Allied Democratic Forces (ADF);15125;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Kyagulanyi;David;;David Kyagulanyi;;;;;15126;EN;Commander, Allied Democratic Forces;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Talengelanimiro;Musezi;;Musezi Talengelanimiro;;;;;15127;EN;;amendment;commission;2012-01-07;2012-01-05;7/2012 (OJ L4);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:004:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Tutu;Mzee;;Mzee Tutu;;;;;15128;EN;;amendment;commission;2012-01-07;2012-01-05;7/2012 (OJ L4);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:004:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Junjuaka;Abdullah;;Abdullah Junjuaka;;;;;15129;EN;;amendment;commission;2012-01-07;2012-01-05;7/2012 (OJ L4);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:004:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Kyagulanyi;Alilabaki;;Alilabaki Kyagulanyi;;;;;15130;EN;;amendment;commission;2012-01-07;2012-01-05;7/2012 (OJ L4);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:004:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Muhammad;Hussein;;Hussein Muhammad;;;;;15131;EN;;amendment;commission;2012-01-07;2012-01-05;7/2012 (OJ L4);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:004:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Luumu;Nicolas;;Nicolas Luumu;;;;;15132;EN;;amendment;commission;2012-01-07;2012-01-05;7/2012 (OJ L4);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:004:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Talengelanimiro;;;;;15133;EN;;amendment;commission;2012-01-07;2012-01-05;7/2012 (OJ L4);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:004:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Professor Musharaf;EN;;;;110774;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;David Amos Mazengo;EN;;;;110775;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Julius Elius Mashauri;EN;;;;110776;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Address: reportedly in prison in Uganda (as of September 2016));UG;UGANDA;110773;EN;Address: reportedly in prison in Uganda (as of September 2016);amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;NO;GREGORIAN;;;;Ntoke Village, Ntenjeru Sub County, Kayunga District;UG;UGANDA;1703;EN;;amendment;commission;2012-01-07;2012-01-05;7/2012 (OJ L4);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:004:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-01-01;1;1;1964;;;NO;GREGORIAN;;;;Ntoke Village, Ntenjeru Sub County, Kayunga District;UG;UGANDA;1704;EN;;amendment;commission;2012-01-07;2012-01-05;7/2012 (OJ L4);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:004:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6864;EU.3736.33;;2011-10-12;;(Date of UN designation: 2011-10-12)\n(M. Jamil Mukulu is the military Head of ADF.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UG;;734;EN;;amendment;commission;2012-01-07;2012-01-05;7/2012 (OJ L4);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:004:0001:0002:EN:PDF +28/10/2022;6865;EU.3643.77;;2011-11-28;;(Date of UN designation: 2011-11-28);P;person;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;Ntabo Ntaberi SHEKA;;;;Commander-in-Chief, Nduma Defence of Congo, Mayi Mayi Sheka group;15134;EN;;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6865;EU.3643.77;;2011-11-28;;(Date of UN designation: 2011-11-28);P;person;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;;Goma, North Kivu;;;;;NO;((in prison));CD;CONGO, Democratic Republic of (was Zaire);125621;EN;(in prison);amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6865;EU.3643.77;;2011-11-28;;(Date of UN designation: 2011-11-28);P;person;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-04-04;4;4;1976;;;NO;GREGORIAN;;;Walikalele territory;Walikale;CD;CONGO, Democratic Republic of (was Zaire);1705;EN;;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6865;EU.3643.77;;2011-11-28;;(Date of UN designation: 2011-11-28);P;person;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;735;EN;;amendment;commission;2012-01-07;2012-01-05;7/2012 (OJ L4);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:004:0001:0002:EN:PDF +28/10/2022;6866;EU.2638.94;;;;(Date of listing: 23.1.2012.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jawdat Ibrahim SAFI;;M;Brigadier General;Commander of 154th Regiment;15156;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6866;EU.2638.94;;;;(Date of listing: 23.1.2012.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;جودت ابراهيم صافي;AR;M;;;124616;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6867;EU.2639.59;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Ali DURGHAM;;M;Major General;Commander in 4th Division;15157;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6867;EU.2639.59;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Ali DURGHAM;;;;;17349;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6867;EU.2639.59;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Ali DURGHAM;;;;;17350;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6867;EU.2639.59;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد علي;AR;M;;;124617;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6868;EU.2661.51;;;;(Date of listing: 23.1.2012.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ramadan Mahmoud RAMADAN;;M;Major General;Commander of 35th Special Forces Regiment;15158;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6868;EU.2661.51;;;;(Date of listing: 23.1.2012.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;رمضان محمود رمضان;AR;M;;;124618;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6870;EU.2666.70;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Naim Jasem SULEIMAN;;M;Major General;Commander of the 3rd Division;15160;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6870;EU.2666.70;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Naaeem Jasem SULEIMAN;;;;;17358;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6870;EU.2666.70;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Naeem Jasem SULEIMAN;;;;;17360;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6870;EU.2666.70;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Na'eem Jasem SULEIMAN;;;;;17362;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6870;EU.2666.70;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Naaim Jasem SULEIMAN;;;;;17364;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6870;EU.2666.70;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Na'im Jasem SULEIMAN;;;;;17366;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6870;EU.2666.70;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;نعيم جاسم سليمان;AR;M;;;124619;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6871;EU.2667.35;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jihad Mohamed SULTAN;;M;Brigadier General;Commander of 65th Brigade;15161;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6871;EU.2667.35;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jihad Mohammad SULTAN;;;;;17408;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6871;EU.2667.35;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jihad Muhammad SULTAN;;;;;17409;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6871;EU.2667.35;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jihad Mohammed SULTAN;;;;;17410;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6871;EU.2667.35;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;جهاد محمد سلطان;AR;M;;;124620;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6872;EU.2668.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fo'ad HAMOUDEH;;M;Major General;Commander of the military operations in Idlib;15162;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6872;EU.2668.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fouad HAMOUDEH;;;;;17412;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6872;EU.2668.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fu'ad HAMOUDEH;;;;;17413;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6872;EU.2668.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fo'ad HAMMOUDEH;;;;;17416;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6872;EU.2668.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fo'ad HAMMOUDE;;;;;17417;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6872;EU.2668.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fo'ad HAMMOUDA;;;;;17418;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6872;EU.2668.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fo'ad HAMMOUDAH;;;;;17419;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6872;EU.2668.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fouad HAMMOUDAH;;;;;123952;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6872;EU.2668.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fouad HAMMOUDA;;;;;123953;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6872;EU.2668.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fouad HAMMOUDE;;;;;123954;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6872;EU.2668.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fouad HAMMOUDEH;;;;;123955;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6872;EU.2668.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fu'ad HAMMOUDAH;;;;;123956;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6872;EU.2668.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fu'ad HAMMOUDA;;;;;123957;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6872;EU.2668.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fu'ad HAMMOUDE;;;;;123958;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6872;EU.2668.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fu'ad HAMMOUDEH;;;;;123959;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6872;EU.2668.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;فؤاد حمودة;AR;M;;;124621;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6873;EU.2669.62;;;;(Date of listing: 23.1.2012.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Bader AQEL;;M;Major General;Special Forces Commander;15163;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6873;EU.2669.62;;;;(Date of listing: 23.1.2012.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;بدر عاقل;AR;M;;;124622;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6874;EU.2695.11;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ghassan AFIF;;M;Brigadier General;Commander from the 45th Regiment;15164;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6874;EU.2695.11;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ghassan AFEEF;;;;;17420;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6874;EU.2695.11;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;غسان عفيف;AR;M;;;124623;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6875;EU.2697.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed MAARUF;;M;Brigadier General;Commander from the 45th Regiment;15165;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6875;EU.2697.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad MAARUF;;;;;17426;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6875;EU.2697.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad MAARUF;;;;;17427;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6875;EU.2697.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed MAARUF;;;;;17429;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6875;EU.2697.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed MAAROUF;;;;;17430;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6875;EU.2697.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed MA'RUF;;;;;17431;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6875;EU.2697.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed MA'RUF;;;;;123960;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6875;EU.2697.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad MA'RUF;;;;;123961;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6875;EU.2697.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad MA'RUF;;;;;123962;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6875;EU.2697.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed MAAROUF;;;;;123963;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6875;EU.2697.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad MAAROUF;;;;;123964;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6875;EU.2697.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad MAAROUF;;;;;123965;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6875;EU.2697.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد معروف;AR;M;;;124624;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6876;EU.2698.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yousef ISMAIL;;M;Brigadier General;Commander of the 134th Brigade;15166;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6876;EU.2698.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yousef ISMAEL;;;;;17433;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6876;EU.2698.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;يوسف إسماعيل;AR;M;;;124625;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6877;EU.2699.65;;2012-01-23;;(Date of UN designation: 2012-01-23);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Jamal YUNES;;M;Brigadier General;"Commander of the 555th Regiment; Head of the Military Security Committee in Hama in 2018.";15167;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6877;EU.2699.65;;2012-01-23;;(Date of UN designation: 2012-01-23);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Jamal YOUNES;;M;;;17434;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6877;EU.2699.65;;2012-01-23;;(Date of UN designation: 2012-01-23);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;جمال يونس;AR;M;;;124626;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6880;EU.2562.51;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Tidewater;;;;;15171;EN;;amendment;commission;2012-01-24;2012-01-24;54/2012 (OJ L19);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6880;EU.2562.51;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Tidewater Middle East Co.;;;;;15172;EN;;amendment;commission;2012-01-24;2012-01-24;54/2012 (OJ L19);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6880;EU.2562.51;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Faraz Royal Qeshm Company LLC;;;;;16951;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6880;EU.2562.51;;;;;E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;Tehran;80 Tidewater Building, Vozara Street, Next to Saie Park;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);2222;EN;;amendment;commission;2012-01-24;2012-01-24;54/2012 (OJ L19);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6882;EU.2564.78;;;;(Date of listing: 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ali DAWWA;;M;Brigadier General;;15174;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6882;EU.2564.78;;;;(Date of listing: 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;علي;AR;M;;;124627;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed KHADDOR;;M;Major General;Commander of the 106th Brigade, Presidential Guard;15175;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad KHADDOR;;;;;17436;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad KHADDOR;;;;;17437;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed KHADDOR;;;;;17438;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed KHADDOUR;;;;;17439;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed KHADDUR;;;;;17440;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed KHADOUR;;;;;17441;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed KHUDOUR;;;;;17442;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad KHADDOUR;;;;;120222;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad KHADDUR;;;;;120223;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad KHADOUR;;;;;120225;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad KHUDOUR;;;;;120226;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad KHADDOUR;;;;;120227;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad KHADDUR;;M;;;120228;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad KHADOUR;;;;;120229;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad KHUDOUR;;;;;120230;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed KHADDOUR;;;;;120231;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed KHADDUR;;;;;120232;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed KHADOUR;;;;;120233;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed KHUDOUR;;;;;120234;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6883;EU.2565.43;;;Date of designation : 23.1.2012;(Designation details: Date of designation : 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد خضور;AR;M;;;124628;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6885;EU.2579.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Wafiq NASSER;;M;;Head of Suwayda Regional Branch (Department of Military Intelligence);15177;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6885;EU.2579.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Wafeeq NASSER;;;;;17444;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6885;EU.2579.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;وفيق ناصر;AR;M;;;124629;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6886;EU.2580.26;;;;(Used as a front company by designated Iran Aircraft Industries (IACI) for covert procurement activities. Date of listing 23.1.2012.);E;enterprise;amendment;commission;2012-01-24;2012-01-24;54/2012 (OJ L19);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0001:0005:EN:PDF;;;;Turbine Engineering Manufacturing;;;;;15178;EN;;amendment;commission;2012-01-24;2012-01-24;54/2012 (OJ L19);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6886;EU.2580.26;;;;(Used as a front company by designated Iran Aircraft Industries (IACI) for covert procurement activities. Date of listing 23.1.2012.);E;enterprise;amendment;commission;2012-01-24;2012-01-24;54/2012 (OJ L19);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0001:0005:EN:PDF;;;;TEM;;;;;15179;EN;;amendment;commission;2012-01-24;2012-01-24;54/2012 (OJ L19);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6886;EU.2580.26;;;;(Used as a front company by designated Iran Aircraft Industries (IACI) for covert procurement activities. Date of listing 23.1.2012.);E;enterprise;amendment;commission;2012-01-24;2012-01-24;54/2012 (OJ L19);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0001:0005:EN:PDF;;;;T.E.M. Co.;;;;;15180;EN;;amendment;commission;2012-01-24;2012-01-24;54/2012 (OJ L19);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6886;EU.2580.26;;;;(Used as a front company by designated Iran Aircraft Industries (IACI) for covert procurement activities. Date of listing 23.1.2012.);E;enterprise;amendment;commission;2012-01-24;2012-01-24;54/2012 (OJ L19);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;Postal address: Shishesh Mina Street, Karaj Special Road;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);2223;EN;;amendment;commission;2012-01-24;2012-01-24;54/2012 (OJ L19);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6887;EU.2581.88;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ahmed DIBE;;M;;Head of Deraa Regional Branch (General Security Directorate);15181;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6887;EU.2581.88;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ahmad DIBE;;;;;17445;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6887;EU.2581.88;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ahmed DIB;;;;;17446;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6887;EU.2581.88;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ahmed DEEB;;;;;17447;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6887;EU.2581.88;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ahmad DEEB;;;;;123966;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6887;EU.2581.88;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ahmad DIB;;;;;123967;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6887;EU.2581.88;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;أحمد ديبي;AR;M;;;124630;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6888;EU.2583.18;;;;(Date of listing: 23.1.2012.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Makhmoud AL-KHATTIB;;M;;Head of Investigative Branch (Political Security Directorate);15182;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6888;EU.2583.18;;;;(Date of listing: 23.1.2012.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Makhmoud AL-KHATIB;;;;;112240;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6888;EU.2583.18;;;;(Date of listing: 23.1.2012.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mahmoud AL-KHATTIB;;;;;112241;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6888;EU.2583.18;;;;(Date of listing: 23.1.2012.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mahmoud AL-KHATIB;;;;;112242;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6888;EU.2583.18;;;;(Date of listing: 23.1.2012.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mahmoud AL-KHATEEB;;;;;112243;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6888;EU.2583.18;;;;(Date of listing: 23.1.2012.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Makhmoud AL-KHATEEB;;;;;112244;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6888;EU.2583.18;;;;(Date of listing: 23.1.2012.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمود الخطيب;AR;M;;;124631;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6889;EU.2584.80;;;Date of designation: 23.1.2012;(Designation details: Date of designation: 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Heikmat IBRAHIM;;M;Major General;Head of the police of Al‐ Hassaka. ormer Head of the Operations Branch of the Political Security Di­rectorate,;15183;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6889;EU.2584.80;;;Date of designation: 23.1.2012;(Designation details: Date of designation: 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Heikmat IBRAHIM;;;;;17450;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6889;EU.2584.80;;;Date of designation: 23.1.2012;(Designation details: Date of designation: 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Heikmat IBRAHIM;;;;;17451;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6889;EU.2584.80;;;Date of designation: 23.1.2012;(Designation details: Date of designation: 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Heikmat IBRAHIM;;;;;17452;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6889;EU.2584.80;;;Date of designation: 23.1.2012;(Designation details: Date of designation: 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Hikmat IBRAHIM;;;;;17453;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6889;EU.2584.80;;;Date of designation: 23.1.2012;(Designation details: Date of designation: 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Hekmat IBRAHIM;;;;;17454;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6889;EU.2584.80;;;Date of designation: 23.1.2012;(Designation details: Date of designation: 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Hikmat IBRAHIM;;;;;120235;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6889;EU.2584.80;;;Date of designation: 23.1.2012;(Designation details: Date of designation: 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Hekmat IBRAHIM;;;;;120236;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6889;EU.2584.80;;;Date of designation: 23.1.2012;(Designation details: Date of designation: 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Hikmat IBRAHIM;;;;;120237;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6889;EU.2584.80;;;Date of designation: 23.1.2012;(Designation details: Date of designation: 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Hekmat IBRAHIM;;;;;120238;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6889;EU.2584.80;;;Date of designation: 23.1.2012;(Designation details: Date of designation: 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Hikmat IBRAHIM;;;;;120239;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6889;EU.2584.80;;;Date of designation: 23.1.2012;(Designation details: Date of designation: 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Hekmat IBRAHIM;;;;;120240;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6889;EU.2584.80;;;Date of designation: 23.1.2012;(Designation details: Date of designation: 23.1.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد حكمت إبراهيم;AR;M;;;124632;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6890;EU.2585.45;;;;;E;enterprise;amendment;commission;2013-06-08;2013-06-06;522/2013 (OJ L156);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:156:0003:0007:EN:PDF;;;;SAD Import & Export Company;;;;;15185;EN;;amendment;commission;2013-06-08;2013-06-06;522/2013 (OJ L156);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:156:0003:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6890;EU.2585.45;;;;;E;enterprise;amendment;commission;2013-06-08;2013-06-06;522/2013 (OJ L156);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:156:0003:0007:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;"Haftom Tir Square, South Mofte Avenue, Tour Line No; 3/1, Tehran, Iran P.O. Box 1584864813";;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);2224;EN;;amendment;commission;2013-06-08;2013-06-06;522/2013 (OJ L156);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:156:0003:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6891;EU.2593.19;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nasser AL-ALI;;M;;Head of the Political Security Directorate since July 2019.;15186;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6891;EU.2593.19;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nasr al-Ali;;;Brigadier General;;16841;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6891;EU.2593.19;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Naser AL-ALI;;;;;17405;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6891;EU.2593.19;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ناصر العلي;AR;M;;;124633;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6892;EU.2594.81;;;;(Front company of Sad Export Import Company. Involved in illicit arms transfer aboard M/V Monchgorsk. Date of listing 23.1.2012.);E;enterprise;amendment;commission;2012-01-24;2012-01-24;54/2012 (OJ L19);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0001:0005:EN:PDF;;;;Rosmachin;;;;;15187;EN;;amendment;commission;2012-01-24;2012-01-24;54/2012 (OJ L19);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6892;EU.2594.81;;;;(Front company of Sad Export Import Company. Involved in illicit arms transfer aboard M/V Monchgorsk. Date of listing 23.1.2012.);E;enterprise;amendment;commission;2012-01-24;2012-01-24;54/2012 (OJ L19);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;Tehran;"Postal address: Haftom Tir Square, South Mofte Avenue, Tour Line No; 3/1 P.O. Box 1584864813";;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);2225;EN;;amendment;commission;2012-01-24;2012-01-24;54/2012 (OJ L19);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6894;EU.2602.10;;2012-01-23;;(Date of UN designation: 2012-01-23);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;NOURI;Ali;Ashraf;Ali Ashraf NOURI;;M;;Head of the Basij Islamic Revolution Art Educational and Research Complex.;15190;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6895;EU.2603.72;;;;(State-owned bank. Provides financial support to the regime. Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Industrial Bank;;;;;15191;EN;;amendment;commission;2012-01-24;2012-01-24;55/2012 (OJ L19);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0006:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6895;EU.2603.72;;;;(State-owned bank. Provides financial support to the regime. Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Banca Industrială;RO;;;;15224;EN;;amendment;commission;2012-01-24;2012-01-24;55/2012 (OJ L19);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0006:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6895;EU.2603.72;;;;(State-owned bank. Provides financial support to the regime. Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Dar Al Muhanisen Building, 7th Floor, Maysa­loun Street;P.O. Box 7572;;;;NO;"PHONE[+963 11 222 8200; +963 11 2227910]\nFAX[+963 11 222 8412]";SY;SYRIAN ARAB REPUBLIC;2226;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6896;EU.2604.37;;2012-01-23;;(Date of UN designation: 2012-01-23)\n(Representative of the Supreme Leader to the IRGC. Date of listing 23.1.2012.);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;SAIDI;Hojatoleslam;Ali;Hojatoleslam Ali SAIDI;;M;;Since March 2017, head of the ideological and political bureau of the Supreme Leader in his role as Commander-in-chief.;15192;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6896;EU.2604.37;;2012-01-23;;(Date of UN designation: 2012-01-23)\n(Representative of the Supreme Leader to the IRGC. Date of listing 23.1.2012.);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Hojjat-al-Eslam Ali Saidi;;M;;;15193;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6896;EU.2604.37;;2012-01-23;;(Date of UN designation: 2012-01-23)\n(Representative of the Supreme Leader to the IRGC. Date of listing 23.1.2012.);P;person;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;Hojjat-al-Eslam Ali Saeedi;;M;;;15195;EN;;amendment;council;2022-06-28;2022-06-29;2022/1010 (OJ L170);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6897;EU.2550.23;;;;(State-owned bank. Provides financial support to the regime. Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Popular Credit Bank;;;;;15194;EN;;amendment;commission;2012-01-24;2012-01-24;55/2012 (OJ L19);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0006:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6897;EU.2550.23;;;;(State-owned bank. Provides financial support to the regime. Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Banca Populară de Credit;RO;;;;15225;EN;;amendment;commission;2012-01-24;2012-01-24;55/2012 (OJ L19);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0006:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6897;EU.2550.23;;;;(State-owned bank. Provides financial support to the regime. Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Dar Al Muhanisen Building, 6th Floor, Maysa­loun Street;;;;;NO;"PHONE[+963 11 222 7604; +963 11 221 8376]\nFAX[+963 11 2210124]";SY;SYRIAN ARAB REPUBLIC;2227;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6898;EU.2551.85;;;Date of listing 23.1.2012.;(Designation details: Date of listing 23.1.2012.);P;person;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;ZADEH;Amir;Ali Haji;Amir Ali Haji ZADEH;;;IRGC Brigadier-General;IRGC Aerospace Force Commander.;15196;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6898;EU.2551.85;;;Date of listing 23.1.2012.;(Designation details: Date of listing 23.1.2012.);P;person;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;Amir Ali HAJIZADEH;;;;;15198;EN;;amendment;council;2018-06-06;2018-06-07;2018/827 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0827&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6899;EU.2552.50;;;;(Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saving Bank;;;;;15197;EN;"formerly known as The General Establishment of Mail Saving Fund; formerly known as The Post Saving Fund";amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6899;EU.2552.50;;;;(Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Banca de Economii;RO;;;;15226;EN;;amendment;commission;2012-01-24;2012-01-24;55/2012 (OJ L19);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0006:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6899;EU.2552.50;;;;(Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Savings Bank;;;;;123881;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6899;EU.2552.50;;;;(Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Syria‐Damascus – Merjah – Al‐Furat St.;P.O. Box 5467;;;;NO;"PHONE[+963 11 222 8403]\nEMAIL[s.bank@scs‐net.org, post‐gm@net.sy]\nFAX[+963 11 224 4909; +963 11 245 3471]";SY;SYRIAN ARAB REPUBLIC;2228;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6900;EU.2553.15;;;Date of listing 23.1.2012.;(Designation details: Date of listing 23.1.2012.);E;enterprise;amendment;council;2019-05-28;2019-05-29;2019/855 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0855&from=EN;;;;Behnam Sahriyari Trading Company;;;;;15199;EN;;amendment;commission;2012-01-24;2012-01-24;54/2012 (OJ L19);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6900;EU.2553.15;;;Date of listing 23.1.2012.;(Designation details: Date of listing 23.1.2012.);E;enterprise;amendment;council;2019-05-28;2019-05-29;2019/855 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0855&from=EN;;;;;;;;;;;;;;;;;;;Tehran;Postal address: Ziba Building, 10th Floor, Northern Sohrevardi Street;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);2241;EN;;amendment;commission;2012-01-24;2012-01-24;54/2012 (OJ L19);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0001:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6901;EU.2555.42;;;;(Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Agricultural Cooperative Bank;;;;;15200;EN;;amendment;commission;2012-01-24;2012-01-24;55/2012 (OJ L19);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0006:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6901;EU.2555.42;;;;(Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Banca Cooperativă Agricolă;RO;;;;15228;EN;;amendment;commission;2012-01-24;2012-01-24;55/2012 (OJ L19);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0006:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6901;EU.2555.42;;;;(Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ACB;;;;;123882;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6901;EU.2555.42;;;;(Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Al Masraf Al Zeraei Al Taweni;;;;;123883;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6901;EU.2555.42;;;;(Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Agricultural Cooperative Bank Building, Damascus Tajhez;P.O. Box 4325;;;;NO;"WEB[http://www.agrobank.org]\nPHONE[+963 11 221 3462; +963 112 22 1393]\nFAX[+963 11 224 1261]";SY;SYRIAN ARAB REPUBLIC;2231;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6903;EU.2556.7;;2012-01-23;;(Date of UN designation: 2012-01-23)\n(Subsidiary of the Commercial Bank of Syria already listed.);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Syrian Lebanese Commercial Bank;;;;;15202;EN;;amendment;commission;2012-01-24;2012-01-24;55/2012 (OJ L19);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0006:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6903;EU.2556.7;;2012-01-23;;(Date of UN designation: 2012-01-23)\n(Subsidiary of the Commercial Bank of Syria already listed.);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Banca Comercială Siriano- Libaneză;RO;;;;15230;EN;;amendment;commission;2012-01-24;2012-01-24;55/2012 (OJ L19);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0006:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6903;EU.2556.7;;2012-01-23;;(Date of UN designation: 2012-01-23)\n(Subsidiary of the Commercial Bank of Syria already listed.);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Szíriai Libanoni Kereskedelmi Bank;HU;;;;140965;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6903;EU.2556.7;;2012-01-23;;(Date of UN designation: 2012-01-23)\n(Subsidiary of the Commercial Bank of Syria already listed.);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Beirut;Syrian Lebanese Commercial Bank Building, 6th Floor, Makdessi Street, Hamra;P.O. Box 11-8701;;;Beirut;NO;WEB[http://www.slcb.com.lb]\nPHONE[+961 1 741666]\nFAX[+961 1 738214];LB;LEBANON;2234;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6903;EU.2556.7;;2012-01-23;;(Date of UN designation: 2012-01-23)\n(Subsidiary of the Commercial Bank of Syria already listed.);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Beirut;Hamra Street, Darwish and Fakhro Building;P.O. Box 113-5127/11-8701;;;Beirut;NO;(Hamra Branch);LB;LEBANON;140729;EN;Hamra Branch;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6903;EU.2556.7;;2012-01-23;;(Date of UN designation: 2012-01-23)\n(Subsidiary of the Commercial Bank of Syria already listed.);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Beirut;Mar Elias Street, Fakhani Building;P.O. Box 145 796;;;Beirut;NO;(Mar Elias branch);LB;LEBANON;140730;EN;Mar Elias branch;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6905;EU.2560.24;;;;(Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Deir ez-Zur Petroleum Company;;;;;15210;EN;;amendment;commission;2012-01-24;2012-01-24;55/2012 (OJ L19);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0006:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6905;EU.2560.24;;;;(Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Deir ez-Zur naftos bendrovė;LT;;;;15213;EN;;amendment;commission;2012-01-24;2012-01-24;55/2012 (OJ L19);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0006:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6905;EU.2560.24;;;;(Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Dar Al Saadi Building 1st, 5th, and 6th Floor Zillat Street Mazza Area;P.O. Box 9120;;;;NO;"PHONE[+963 11 662 1175; +963 11 662 1400]\nFAX[+963 11 662 1848 ]";SY;SYRIAN ARAB REPUBLIC;2237;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6906;EU.3915.93;;;;(Joint venture of GPC. Provides financial support to the regime. Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ebla Petroleum Company;;;;;15211;EN;;amendment;commission;2012-01-24;2012-01-24;55/2012 (OJ L19);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0006:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6906;EU.3915.93;;;;(Joint venture of GPC. Provides financial support to the regime. Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ebco;;;;;112206;EN;;amendment;council;2017-05-30;2017-05-31;2017/907 (OJ L139);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0907&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6906;EU.3915.93;;;;(Joint venture of GPC. Provides financial support to the regime. Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Head Office Mazzeh Villat Ghabia Dar Es Saa­da 16;P.O. Box 9120;;;;NO;PHONE[+963 11 6691100]\n(Tel: +963 116691100);SY;SYRIAN ARAB REPUBLIC;2239;EN;Tel: +963 116691100;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6907;EU.2567.70;;;;(Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Dijla Petroleum Company;;;;;15212;EN;;amendment;commission;2012-01-24;2012-01-24;55/2012 (OJ L19);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0006:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6907;EU.2567.70;;;;(Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Dijla naftos bendrovė;LT;;;;15215;EN;;amendment;commission;2012-01-24;2012-01-24;55/2012 (OJ L19);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:019:0006:0009:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6907;EU.2567.70;;;;(Date of listing: 23.1.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Building No. 653 – 1st Floor, Daraa Highway;P.O. Box 81;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2240;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6908;EU.2568.35;;2012-01-25;;(Date of UN designation: 2012-01-25)\n((a) Previous address: Ungartenstraße 6, Bonn, 53229, Germany. Date of designation referred to in Article 2a(4)(b): 25.1.2012.);P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;Chouka;Monir;;Monir Chouka;;;;;15251;EN;;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6908;EU.2568.35;;2012-01-25;;(Date of UN designation: 2012-01-25)\n((a) Previous address: Ungartenstraße 6, Bonn, 53229, Germany. Date of designation referred to in Article 2a(4)(b): 25.1.2012.);P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;Abu Adam;;;;;15252;EN;;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6908;EU.2568.35;;2012-01-25;;(Date of UN designation: 2012-01-25)\n((a) Previous address: Ungartenstraße 6, Bonn, 53229, Germany. Date of designation referred to in Article 2a(4)(b): 25.1.2012.);P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-07-30;30;7;1981;;;NO;GREGORIAN;;;;Bonn;DE;GERMANY;1717;EN;;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6908;EU.2568.35;;2012-01-25;;(Date of UN designation: 2012-01-25)\n((a) Previous address: Ungartenstraße 6, Bonn, 53229, Germany. Date of designation referred to in Article 2a(4)(b): 25.1.2012.);P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5208323009 (passport-National passport) (passport issued in stadt bonn, germany on 2.2.2007, expires on 1.2.2012);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;DE;;637;EN;passport issued in stadt bonn, germany on 2.2.2007, expires on 1.2.2012;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;; +28/10/2022;6908;EU.2568.35;;2012-01-25;;(Date of UN designation: 2012-01-25)\n((a) Previous address: Ungartenstraße 6, Bonn, 53229, Germany. Date of designation referred to in Article 2a(4)(b): 25.1.2012.);P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5209530116 (id-National identification card) [known to be expired](national identity card issued in stadt bonn, germany on 21.6.2006, expired on 20.6.2011);NO;YES;NO;NO;NO;;;;;;;id;National identification card;;DE;;638;EN;national identity card issued in stadt bonn, germany on 21.6.2006, expired on 20.6.2011;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;; +28/10/2022;6908;EU.2568.35;;2012-01-25;;(Date of UN designation: 2012-01-25)\n((a) Previous address: Ungartenstraße 6, Bonn, 53229, Germany. Date of designation referred to in Article 2a(4)(b): 25.1.2012.);P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DE;;738;EN;;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF +28/10/2022;6908;EU.2568.35;;2012-01-25;;(Date of UN designation: 2012-01-25)\n((a) Previous address: Ungartenstraße 6, Bonn, 53229, Germany. Date of designation referred to in Article 2a(4)(b): 25.1.2012.);P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA;;739;EN;;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF +28/10/2022;6909;EU.2569.0;;2012-01-25;;(Date of UN designation: 2012-01-25)\n((a) Previous address: Karl- Barth-Straße 14, Bonn, 53129, Germany. Date of designation referred to in Article 2a(4)(b): 25.1.2012.);P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;Chouka;Yassin;;Yassin Chouka;;;;;15253;EN;;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6909;EU.2569.0;;2012-01-25;;(Date of UN designation: 2012-01-25)\n((a) Previous address: Karl- Barth-Straße 14, Bonn, 53129, Germany. Date of designation referred to in Article 2a(4)(b): 25.1.2012.);P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;Abu Ibraheem;;;;;15254;EN;;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6909;EU.2569.0;;2012-01-25;;(Date of UN designation: 2012-01-25)\n((a) Previous address: Karl- Barth-Straße 14, Bonn, 53129, Germany. Date of designation referred to in Article 2a(4)(b): 25.1.2012.);P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-12-11;11;12;1984;;;NO;GREGORIAN;;;;Bonn;DE;GERMANY;1718;EN;;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6909;EU.2569.0;;2012-01-25;;(Date of UN designation: 2012-01-25)\n((a) Previous address: Karl- Barth-Straße 14, Bonn, 53129, Germany. Date of designation referred to in Article 2a(4)(b): 25.1.2012.);P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5204893014 (passport-National passport) [known to be expired](passport number issued in stadt bonn, germany on 5.10.2000, expired on 5.10.2005);NO;YES;NO;NO;NO;;;;;;;passport;National passport;;DE;;639;EN;passport number issued in stadt bonn, germany on 5.10.2000, expired on 5.10.2005;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;; +28/10/2022;6909;EU.2569.0;;2012-01-25;;(Date of UN designation: 2012-01-25)\n((a) Previous address: Karl- Barth-Straße 14, Bonn, 53129, Germany. Date of designation referred to in Article 2a(4)(b): 25.1.2012.);P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5209445304 (id-National identification card) [known to be expired](national identity card issued in stadt bonn, germany on 5.9.2005, expired on 4.9.2010);NO;YES;NO;NO;NO;;;;;;;id;National identification card;;DE;;640;EN;national identity card issued in stadt bonn, germany on 5.9.2005, expired on 4.9.2010;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;; +28/10/2022;6909;EU.2569.0;;2012-01-25;;(Date of UN designation: 2012-01-25)\n((a) Previous address: Karl- Barth-Straße 14, Bonn, 53129, Germany. Date of designation referred to in Article 2a(4)(b): 25.1.2012.);P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DE;;740;EN;;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF +28/10/2022;6909;EU.2569.0;;2012-01-25;;(Date of UN designation: 2012-01-25)\n((a) Previous address: Karl- Barth-Straße 14, Bonn, 53129, Germany. Date of designation referred to in Article 2a(4)(b): 25.1.2012.);P;person;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA;;741;EN;;amendment;commission;2012-02-08;2012-02-06;97/2012 (OJ L35);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:035:0004:0005:EN:PDF +28/10/2022;6912;EU.2672.17;;2012-02-27;;(Date of UN designation: 2012-02-27);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Central Bank of Syria;;;;;15287;EN;;repealing;commission;2012-01-19;2012-01-18;36/2012 (OJ L16);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:016:0001:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6912;EU.2672.17;;2012-02-27;;(Date of UN designation: 2012-02-27);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Централна банка на Сирия;BG;;;;15295;EN;;repealing;commission;2012-01-19;2012-01-18;36/2012 (OJ L16);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:016:0001:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6912;EU.2672.17;;2012-02-27;;(Date of UN designation: 2012-02-27);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Zentralbank Syriens;DE;;;;15298;EN;;repealing;commission;2012-01-19;2012-01-18;36/2012 (OJ L16);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:016:0001:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6912;EU.2672.17;;2012-02-27;;(Date of UN designation: 2012-02-27);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Sirijos Centrinis Bankas;LT;;;;15299;EN;;repealing;commission;2012-01-19;2012-01-18;36/2012 (OJ L16);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:016:0001:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6912;EU.2672.17;;2012-02-27;;(Date of UN designation: 2012-02-27);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Szíriai Központi Bank;HU;;;;15300;EN;;repealing;commission;2012-01-19;2012-01-18;36/2012 (OJ L16);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:016:0001:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6912;EU.2672.17;;2012-02-27;;(Date of UN designation: 2012-02-27);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Centralny Bank Syrii;PL;;;;15302;EN;;repealing;commission;2012-01-19;2012-01-18;36/2012 (OJ L16);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:016:0001:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6912;EU.2672.17;;2012-02-27;;(Date of UN designation: 2012-02-27);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Banco Central da Síria;PT;;;;15303;EN;;repealing;commission;2012-01-19;2012-01-18;36/2012 (OJ L16);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:016:0001:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6912;EU.2672.17;;2012-02-27;;(Date of UN designation: 2012-02-27);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Banca Centrală a Siriei;RO;;;;15304;EN;;repealing;commission;2012-01-19;2012-01-18;36/2012 (OJ L16);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:016:0001:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6912;EU.2672.17;;2012-02-27;;(Date of UN designation: 2012-02-27);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Syyrian keskuspankki;FI;;;;140881;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6912;EU.2672.17;;2012-02-27;;(Date of UN designation: 2012-02-27);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Syriens centralbank;SV;;;;140882;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6912;EU.2672.17;;2012-02-27;;(Date of UN designation: 2012-02-27);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Sýrska centrálna banka;SK;;;;140883;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6912;EU.2672.17;;2012-02-27;;(Date of UN designation: 2012-02-27);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Središnja banka Sirije;HR;;;;140884;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6912;EU.2672.17;;2012-02-27;;(Date of UN designation: 2012-02-27);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Damascus;Sabah Bahrat Square;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2247;EN;;repealing;commission;2012-01-19;2012-01-18;36/2012 (OJ L16);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:016:0001:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6912;EU.2672.17;;2012-02-27;;(Date of UN designation: 2012-02-27);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Damascus;Altjreda al Maghrebeh Square;P.O. Box 2254;;;;NO;WEB[https://www.cb.gov.sy]\nPHONE[+961 011 985]\nEMAIL[info@cb.gov.sy]\n(Postal address);SY;SYRIAN ARAB REPUBLIC;2248;EN;Postal address;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6913;EU.3991.47;;;;(Date of listing: 27/02/2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Wael Nader AL-HALQI;;M;Dr.;Former Prime Minister, in office until 3.7.2016, and former Minister of Health.;15288;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6913;EU.3991.47;;;;(Date of listing: 27/02/2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Wael Nader AL-HALKI;;;;;17406;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6913;EU.3991.47;;;;(Date of listing: 27/02/2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;وائل نادر الحلقي;AR;M;;;124634;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6913;EU.3991.47;;;;(Date of listing: 27/02/2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;Dara’a Province;;SY;SYRIAN ARAB REPUBLIC;1754;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6914;EU.2700.45;;;;(Date of listing: 2012-02-27);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mansour Fadlallah AZZAM;;M;;Minister for Presidency Affairs.;15289;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6914;EU.2700.45;;;;(Date of listing: 2012-02-27);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mansur Fadl Allah Azzam;;;;;16568;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6914;EU.2700.45;;;;(Date of listing: 2012-02-27);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;منصور فضل الله عزام;AR;M;;;124641;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6914;EU.2700.45;;;;(Date of listing: 2012-02-27);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;;;Sweida Province;SY;SYRIAN ARAB REPUBLIC;1755;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6915;EU.3339.68;;2012-02-27;;(Date of UN designation: 2012-02-27);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;SABOUNI;Emad;Abdul-Ghani;Emad Abdul-Ghani SABOUNI;;M;;Former Minister of Telecommunications and Technology, in office until at least April 2014. Former Head of Planning and International Cooperation Agency (PICC).;15290;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6915;EU.3339.68;;2012-02-27;;(Date of UN designation: 2012-02-27);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;Al Sabuni;Imad;Abdul Ghani;Imad Abdul Ghani Al Sabuni;;M;;;16567;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6915;EU.3339.68;;2012-02-27;;(Date of UN designation: 2012-02-27);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;عماد عبد الغني صابوني;AR;M;;;124642;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6915;EU.3339.68;;2012-02-27;;(Date of UN designation: 2012-02-27);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;1756;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6916;EU.2701.10;;;;(Date of listing: 2012-02-27);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sufian ALLAW;;M;;Former Minister for Oil and Mineral Resources;15291;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6916;EU.2701.10;;;;(Date of listing: 2012-02-27);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;سفيان علو;AR;M;;;124645;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6916;EU.2701.10;;;;(Date of listing: 2012-02-27);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944;;;NO;GREGORIAN;;;;al-Bukamal, Deir Ezzor;SY;SYRIAN ARAB REPUBLIC;1757;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6917;EU.2702.72;;;;(Date of listing: 2012-02-27);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Adnan SLAKHO;;M;Dr;Former Minister for Industry;15292;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6917;EU.2702.72;;;;(Date of listing: 2012-02-27);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;عدنان سلاخو;AR;M;;;124646;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6917;EU.2702.72;;;;(Date of listing: 2012-02-27);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;1758;EN;;repealing;commission;2012-01-19;2012-01-18;36/2012 (OJ L16);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:016:0001:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6918;EU.2703.37;;;;(Date of listing: 2012-02-27);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saleh AL-RASHED;;M;Dr.;Former Minister for Education;15293;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6918;EU.2703.37;;;;(Date of listing: 2012-02-27);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;صالح الراشد;AR;;;;124647;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6918;EU.2703.37;;;;(Date of listing: 2012-02-27);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;Aleppo Province;SY;SYRIAN ARAB REPUBLIC;1759;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6919;EU.2704.2;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fayssal ABBAS;;M;Dr.;Former Minister for Transport;15294;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6919;EU.2704.2;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Faysal ABBAS;;;;;17470;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6919;EU.2704.2;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;فيصل عباس;AR;M;;;124648;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6919;EU.2704.2;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955;;;NO;GREGORIAN;;;;Hama Province;SY;SYRIAN ARAB REPUBLIC;1760;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6942;EU.2851.77;;;;(Date of designation referred to in Article 2a(4)(b): 5.3.2012);P;person;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;Rahim;Fazal;;Fazal Rahim;;;;;15736;EN;;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6942;EU.2851.77;;;;(Date of designation referred to in Article 2a(4)(b): 5.3.2012);P;person;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;Rahim;Fazel;;Fazel Rahim;;;;;15737;EN;;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6942;EU.2851.77;;;;(Date of designation referred to in Article 2a(4)(b): 5.3.2012);P;person;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;Rahim;Fazil;;Fazil Rahim;;;;;15738;EN;;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6942;EU.2851.77;;;;(Date of designation referred to in Article 2a(4)(b): 5.3.2012);P;person;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;Rahman;Fazil;;Fazil Rahman;;;;;15739;EN;;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6942;EU.2851.77;;;;(Date of designation referred to in Article 2a(4)(b): 5.3.2012);P;person;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;Kabul;A2 City Computer Plaza, Shar- e-Now;;;;;NO;(previous address);AF;AFGHANISTAN;2253;EN;previous address;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6942;EU.2851.77;;;;(Date of designation referred to in Article 2a(4)(b): 5.3.2012);P;person;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;Kabul;Apt. 45, block 21 Microrayan 3rd;;;;;NO;(previous address);AF;AFGHANISTAN;2254;EN;previous address;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6942;EU.2851.77;;;;(Date of designation referred to in Article 2a(4)(b): 5.3.2012);P;person;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-01-05;5;1;1974;;;NO;GREGORIAN;;;;Kabul;AF;AFGHANISTAN;1763;EN;;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6942;EU.2851.77;;;;(Date of designation referred to in Article 2a(4)(b): 5.3.2012);P;person;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;;;NO;GREGORIAN;;;;Kabul;AF;AFGHANISTAN;1764;EN;;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6942;EU.2851.77;;;;(Date of designation referred to in Article 2a(4)(b): 5.3.2012);P;person;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;;;NO;GREGORIAN;;;;Kabul;AF;AFGHANISTAN;1765;EN;;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6942;EU.2851.77;;;;(Date of designation referred to in Article 2a(4)(b): 5.3.2012);P;person;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-01-24;24;1;1973;;;NO;GREGORIAN;;;;Kabul;AF;AFGHANISTAN;1766;EN;;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6942;EU.2851.77;;;;(Date of designation referred to in Article 2a(4)(b): 5.3.2012);P;person;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;R512768 (passport-National passport) ((passport));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;AF;;755;EN;(passport);amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;; +28/10/2022;6942;EU.2851.77;;;;(Date of designation referred to in Article 2a(4)(b): 5.3.2012);P;person;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;745;EN;;amendment;commission;2012-03-14;2012-03-13;215/2012 (OJ L74);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:074:0004:0005:EN:PDF +28/10/2022;6943;EU.2874.71;;;;;E;enterprise;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;Jemmah Anshorut Tauhid;;;;;15740;EN;"(a) A group affiliated with the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq, that has perpetrated attacks in Indonesia. (b) Founded and led by Abu Bakar Ba'asyir; (c) Established on 27 Jul. 2008 in Solo, Indonesia; (d) Had been associated with Jemmah Islamiya";amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6943;EU.2874.71;;;;;E;enterprise;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;JAT;;;;;15741;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6943;EU.2874.71;;;;;E;enterprise;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;Jemaah Anshorut Tauhid;;;;;15742;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6943;EU.2874.71;;;;;E;enterprise;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;Jemmah Ansharut Tauhid;;;;;15743;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6943;EU.2874.71;;;;;E;enterprise;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;Jem’mah Ansharut Tauhid;;;;;15744;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6943;EU.2874.71;;;;;E;enterprise;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;Jamaah Ansharut Tauhid;;;;;15745;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6943;EU.2874.71;;;;;E;enterprise;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;Jama’ah Ansharut Tauhid;;;;;15746;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6943;EU.2874.71;;;;;E;enterprise;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;Laskar 99;;;;;15747;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6943;EU.2874.71;;;;;E;enterprise;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;;;;;;;;;;;;;;;;Cemani, Grogol, Sukoharjo, Jawa Tengah;58 Jl. Semenromo, 04/XV Ngruki;;;;;NO;PHONE[0271-2167285]\n(Telephone: 0271-2167285);ID;INDONESIA;2255;EN;Telephone: 0271-2167285;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6943;EU.2874.71;;;;;E;enterprise;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;EMAIL[info@ansharuttauhid.com]\n(Email: info@ansharuttauhid.com);00;UNKNOWN;2256;EN;Email: info@ansharuttauhid.com;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6943;EU.2874.71;;;;;E;enterprise;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;WEB[http://ansharuttauhid.com/]\n(Website: http:/ansharuttauhid.com/);00;UNKNOWN;2257;EN;Website: http:/ansharuttauhid.com/;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6944;EU.2875.36;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;Achwan;Mochammad;;Mochammad Achwan;;;;Acting emir of Jemmah Anshorut Tauhid (JAT). Associated with Abu Bakar Ba’asyir, Abdul Rahim Ba’aysir and Jemaah Islamiyah.;15748;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6944;EU.2875.36;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;Achwan;Muhammad;;Muhammad Achwan;;;;;15749;EN;good quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6944;EU.2875.36;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;Akhwan;Muhammad;;Muhammad Akhwan;;;;;15750;EN;good quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6944;EU.2875.36;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;Achwan;Mochtar;;Mochtar Achwan;;;;;15751;EN;good quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6944;EU.2875.36;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;Akhwan;Mochtar;;Mochtar Akhwan;;;;;15752;EN;good quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6944;EU.2875.36;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;Akwan;Mochtar;;Mochtar Akwan;;;;;15753;EN;good quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6944;EU.2875.36;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;Jodipan, Blimbing, Malang;Jalan Ir. H. Juanda 8/10, RT/RW 002/001;;65127;;;NO;;ID;INDONESIA;2258;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6944;EU.2875.36;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-05-04;4;5;1948;;;NO;GREGORIAN;;;;Tulungagung;ID;INDONESIA;1767;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6944;EU.2875.36;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946-05-04;4;5;1946;;;NO;GREGORIAN;;;;Tulungagung;ID;INDONESIA;1768;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6944;EU.2875.36;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"3573010405480001 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;ID;;756;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;; +28/10/2022;6944;EU.2875.36;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"353010405480001 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;ID;;141026;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;; +28/10/2022;6944;EU.2875.36;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;746;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF +28/10/2022;6945;EU.2876.1;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Ba’asyir;Abdul;Rosyid Ridho;Abdul Rosyid Ridho Ba’asyir;;;;;15754;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6945;EU.2876.1;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Bashir;Abdul;Rosyid Ridho;Abdul Rosyid Ridho Bashir;;;;;15755;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6945;EU.2876.1;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Ba’aysir;Rashid;Rida;Rashid Rida Ba’aysir;;;;;15756;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6945;EU.2876.1;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Bashir;Rashid;Rida;Rashid Rida Bashir;;;;;15757;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6945;EU.2876.1;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;Sumber Agung Magetan, East Java;Podok Pesantren AL Wayain Ngrandu;;;;;NO;;ID;INDONESIA;2259;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6945;EU.2876.1;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-01-31;31;1;1974;;;NO;GREGORIAN;;;;Sukoharjo;ID;INDONESIA;1769;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6945;EU.2876.1;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1127083101740003 (id-National identification card) ((identity card under name abdul rosyid ridho ba’asyir));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;ID;;757;EN;(identity card under name abdul rosyid ridho ba’asyir);amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;; +28/10/2022;6945;EU.2876.1;;2012-03-12;;(Date of UN designation: 2012-03-12)\n(Date of designation referred to in Article 2a(4)(b): 12.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;747;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF +28/10/2022;6947;EU.3007.46;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Bhuttavi;Hafiz;Abdul Salam;Hafiz Abdul Salam Bhuttavi;;;;;104300;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6947;EU.3007.46;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Bhattvi;Hafiz;Abdul Salam;Hafiz Abdul Salam Bhattvi;;;;;104301;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6947;EU.3007.46;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Budvi;Hafiz;Abdusalam;Hafiz Abdusalam Budvi;;;;;15770;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6947;EU.3007.46;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Bhutvi;Hafiz;Abdussalaam;Hafiz Abdussalaam Bhutvi;;;;;15771;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6947;EU.3007.46;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Budvi;Abdul;Salam;Abdul Salam Budvi;;;;;15772;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6947;EU.3007.46;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Bhattwi;Abdul;Salam;Abdul Salam Bhattwi;;;;;15773;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6947;EU.3007.46;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Bhutvi;Abdul;Salam;Abdul Salam Bhutvi;;;;;15774;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6947;EU.3007.46;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Bhattvi;Mullah;Abdul Salaam;Mullah Abdul Salaam Bhattvi;;;;;15775;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6947;EU.3007.46;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Bhattvi;Molvi;Abdursalam;Molvi Abdursalam Bhattvi;;;;;15776;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6947;EU.3007.46;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1940;;;NO;GREGORIAN;;;;Gujranwala, Punjab Province;PK;PAKISTAN;1774;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6947;EU.3007.46;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;750;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF +28/10/2022;6949;EU.2867.62;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Rehman;Abdur;;Abdur Rehman;;;;;15786;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6949;EU.2867.62;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Rehman;Abdul;;Abdul Rehman;;;;;15787;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6949;EU.2867.62;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Ur-Rehman;Abd;;Abd Ur-Rehman;;;;;15788;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6949;EU.2867.62;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Rahman;Abdur;;Abdur Rahman;;;;;15789;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6949;EU.2867.62;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Abdul Rehman Sindhi;;;;;15790;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6949;EU.2867.62;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Abdul Rehman al-Sindhi;;;;;15791;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6949;EU.2867.62;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Abdur Rahman al-Sindhi;;;;;15792;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6949;EU.2867.62;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Abdur Rehman Sindhi;;;;;15793;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6949;EU.2867.62;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Abdurahman Sindhi;;;;;15794;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6949;EU.2867.62;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Abdullah Sindhi;;;;;15795;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6949;EU.2867.62;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Abdur Rehman Muhammad Yamin;;;;;15796;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6949;EU.2867.62;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;Karachi;;;;;;NO;;PK;PAKISTAN;2261;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6949;EU.2867.62;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-10-03;3;10;1965;;;NO;GREGORIAN;;;;Mirpur Khas;PK;PAKISTAN;1775;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6949;EU.2867.62;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CV9157521 (passport-National passport) (passport issued on 8.9.2008, expires on 7.9.2013);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;PK;;761;EN;passport issued on 8.9.2008, expires on 7.9.2013;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;; +28/10/2022;6949;EU.2867.62;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44103-5251752-5 (id-National identification card) ((national identification no.);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;762;EN;(national identification no.;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;; +28/10/2022;6949;EU.2867.62;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;753;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF +28/10/2022;6951;EU.3992.12;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Imad Mohammad Deeb KHAMIS;;M;;Former Prime Minister and Former Minister of Electricity.;15808;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6951;EU.3992.12;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Imad Mohammad Dib Khamees;;;;;16564;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6951;EU.3992.12;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Imad Mohamed Deeb KHAMIS;;;;;17421;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6951;EU.3992.12;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Imad Muhammad Deeb KHAMIS;;;;;17422;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6951;EU.3992.12;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Imad Mohammed Deeb KHAMIS;;;;;17423;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6951;EU.3992.12;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;عماد محمد ديب خميس;AR;M;;;124637;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6951;EU.3992.12;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-08-01;1;8;1961;;;NO;GREGORIAN;;;Near Damascus;;SY;SYRIAN ARAB REPUBLIC;1780;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6952;EU.3592.55;;;;(Date of listing: 23.3.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Bushra AL-ASSAD;;F;;"Member of the Assad family; sister of President Bashar al‐As­sad.";15801;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6952;EU.3592.55;;;;(Date of listing: 23.3.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Shawkat;Bushra;;Bushra Shawkat;;F;;;15802;EN;;amendment;commission;2012-03-24;2012-03-24;266/2012 (OJ L87);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0045:0048:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6952;EU.3592.55;;;;(Date of listing: 23.3.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Al Assad;Bouchra;;Bouchra Al Assad;;;;;113608;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6952;EU.3592.55;;;;(Date of listing: 23.3.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;بشرى الأسد;AR;F;;;124603;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6952;EU.3592.55;;;;(Date of listing: 23.3.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-10-24;24;10;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;1777;EN;;amendment;commission;2012-03-24;2012-03-24;266/2012 (OJ L87);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0045:0048:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6953;EU.3593.20;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Asma AL-ASSAD;;F;;"Member of the Assad family and closely connected to key re­gime figures; wife of President Bashar al‐Assad.";15803;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6953;EU.3593.20;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Asma Fawaz AL AKHRAS;;F;;;15804;EN;Maiden name: Al Akhras;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6953;EU.3593.20;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;أسماء الأسد;AR;F;;;124604;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6953;EU.3593.20;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-08-11;11;8;1975;;;NO;GREGORIAN;;;;London;GB;UNITED KINGDOM;1778;EN;;amendment;commission;2012-03-24;2012-03-24;266/2012 (OJ L87);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0045:0048:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6953;EU.3593.20;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;707512830 (passport-National passport) (valid to 2020-09-22)(expires 2020-09-22);NO;NO;NO;NO;NO;;;;2020-09-22;;;passport;National passport;;00;;763;EN;expires 2020-09-22;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;; +28/10/2022;6954;EU.3993.74;;;;(Date of listing: 23.03.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Omar Ibrahim GHALAWANJI;;M;;Former Vice Prime Minister for Services Affairs, former Minister of Local Administration.;15807;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6954;EU.3993.74;;;;(Date of listing: 23.03.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;عمر ابراهيم غلاونجي;AR;M;;;124638;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6954;EU.3993.74;;;;(Date of listing: 23.03.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954;;;NO;GREGORIAN;;;;Tartous;SY;SYRIAN ARAB REPUBLIC;1781;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6955;EU.2895.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Manal AL-ASSAD;;F;;Wife of Maher al‐Assad;15805;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6955;EU.2895.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Manal AL AHMAD;;F;;;15806;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6955;EU.2895.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Manal AL JADAAN;;F;;;16206;EN;Maiden name: Al Jadaan;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6955;EU.2895.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;منال الأسد;AR;F;;;124605;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6955;EU.2895.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-02-02;2;2;1970;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;1779;EN;;amendment;commission;2012-03-24;2012-03-24;266/2012 (OJ L87);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0045:0048:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6955;EU.2895.38;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"0000000914 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;SY;;764;EN;;amendment;commission;2012-03-24;2012-03-24;266/2012 (OJ L87);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0045:0048:EN:PDF;;;;;;;;;;;;; +28/10/2022;6956;EU.3330.92;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Joseph SUWAID;;M;;Former Minister of State, in office until at least 21.1.2014;15809;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6956;EU.3330.92;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;جوزيف سويد;AR;M;;;124639;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6956;EU.3330.92;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;1782;EN;;amendment;commission;2012-03-24;2012-03-24;266/2012 (OJ L87);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0045:0048:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6957;EU.2896.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ghiath JERAATLI;;M;;Former Minister of State;15810;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6957;EU.2896.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ghiath JER'ATLI;;;;;17471;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6957;EU.2896.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ghiath JIR'ATLI;;;;;17472;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6957;EU.2896.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ghiath JIRAATLI;;;;;17473;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6957;EU.2896.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;غياث جرعتلي;AR;M;;;124649;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6957;EU.2896.3;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950;;;NO;GREGORIAN;;;;Salamiya;SY;SYRIAN ARAB REPUBLIC;1783;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6958;EU.3338.6;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hussein Mahmoud FARZAT;;M;;Former Minister of State, in office until at least 2014;15811;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6958;EU.3338.6;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hussein Mahmud FARZAT;;;;;16566;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6958;EU.3338.6;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hussain Mahmoud FARZAT;;;;;17432;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6958;EU.3338.6;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;حسين محمود فرزات;AR;M;;;124640;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6958;EU.3338.6;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;NO;GREGORIAN;;;;Hama;SY;SYRIAN ARAB REPUBLIC;1784;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6959;EU.2906.56;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yousef Suleiman AL-AHMAD;;M;;Former Minister of State;15812;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6959;EU.2906.56;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yousef Suleiman AL-AHMED;;;;;17474;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6959;EU.2906.56;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;يوسف سليمان الأحمد;AR;M;;;124650;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6959;EU.2906.56;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;;Hasaka;SY;SYRIAN ARAB REPUBLIC;1785;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6960;EU.2907.21;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hassan AL-SARI;;M;;Former Minister of State;15813;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6960;EU.2907.21;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;الحسن الساري;AR;M;;;124651;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6960;EU.2907.21;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;حسن الساري;AR;M;;;124652;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6960;EU.2907.21;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;NO;GREGORIAN;;;;Hama;SY;SYRIAN ARAB REPUBLIC;1786;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6963;EU.2850.15;;;;(Date of listing: 23.3.2012);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syrian Petroleum company;;;;;15825;EN;;amendment;commission;2012-03-24;2012-03-24;266/2012 (OJ L87);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0045:0048:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6963;EU.2850.15;;;;(Date of listing: 23.3.2012);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;Dummar Province, Expansion Square, Island 19‐ Building 32;P.O. Box: 2849 or 3378;;;;NO;WEB[www.spc.com.sy or www.spc‐sy.com]\nPHONE[+963 11 3137935 or 3137913]\nEMAIL[spccom2@scs‐net.org or spccom1@scsnet.org ]\nFAX[+963 11 3137979 or 3137977 ];SY;SYRIAN ARAB REPUBLIC;2262;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6964;EU.2863.8;;;;(Date of listing: 23.3.2012);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mahrukat Company;;;;;15826;EN;;amendment;commission;2012-03-24;2012-03-24;266/2012 (OJ L87);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0045:0048:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6964;EU.2863.8;;;;(Date of listing: 23.3.2012);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;The Syrian Company for the Storage and Distribution of Petroleum Products;;;;;15898;EN;;amendment;commission;2012-03-24;2012-03-24;266/2012 (OJ L87);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0045:0048:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6964;EU.2863.8;;;;(Date of listing: 23.3.2012);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Headquarters: Al Adawi St., Petroleum building;;;;;NO;WEB[http://www.mahrukat.gov.sy/indexeng.php]\nPHONE[+963 11 44451348 – 4451349]\nEMAIL[mahrukat@net.sy]\nFAX[+963 11 4445796];SY;SYRIAN ARAB REPUBLIC;2264;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6966;EU.3468.71;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;ZARGHAMI;Ezzatollah;;Ezzatollah ZARGHAMI;;M;;Minister of Culture, Crafts and Tourism since 25 August 2021. Member of the Supreme Cyberspace Council and Cultural Revolution Council since 2014. Former Head of Islamic Republic of Iran Broadcasting (IRIB) until November 2014.;104309;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6966;EU.3468.71;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-07-22;22;7;1959;;;NO;GREGORIAN;;;;Dezful;IR;IRAN (ISLAMIC REPUBLIC OF);2350;EN;;amendment;council;2015-04-08;2015-04-09;2015/548 (OJ L 92);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6968;EU.3465.79;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;TAGHIPOUR;Reza;;Reza TAGHIPOUR;;M;;Member of the 11th Iranian parliament (Tehran constituency). Member of the Supreme Cyberspace Council. Former Member of the City Council of Tehran. Former Minister for Information and Communications (2009-2012).;15835;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6968;EU.3465.79;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;NO;GREGORIAN;;;;Maragheh;IR;IRAN (ISLAMIC REPUBLIC OF);1790;EN;;amendment;commission;2012-03-24;2012-03-23;264/2012 (OJ L87);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0026:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6970;EU.3466.44;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;KAZEMI;Toraj;;Toraj KAZEMI;;M;;Chief of the Greater Tehran division of the EU-designated Cyber Police until June 2020.;15840;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6971;EU.2909.48;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;LARIJANI;Sadeq;;Sadeq LARIJANI;;M;;Head of the Expediency Council since 29 December 2018. Former member of the Guardian Council (until September 2021). Former Head of the Judiciary (2009-2019).;15843;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6971;EU.2909.48;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;;;Najaf;IQ;IRAQ;1791;EN;;amendment;commission;2012-03-24;2012-03-23;264/2012 (OJ L87);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0026:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6971;EU.2909.48;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1961;;;NO;GREGORIAN;;;;Najaf;IQ;IRAQ;1792;EN;;amendment;commission;2012-03-24;2012-03-23;264/2012 (OJ L87);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0026:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6972;EU.2932.5;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;MIRHEJAZI;Ali;;Ali MIRHEJAZI;;M;;Part of the Supreme Leader's inner circle.;15844;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6973;EU.2910.73;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;SAEEDI;Ali;;Ali SAEEDI;;M;;Head of the Supreme Leader's political ideology bureau. Former representative of the Supreme Leader for the Pasdaran (1995-2020) after spending his whole career within the institution of the military, and specifically in the Pasdaran intelligence service.;15845;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6974;EU.2933.67;;;;(Date of listing: 23.3.2012);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;RAMIN;Mohammad-Ali;;Mohammad-Ali RAMIN;;M;;Secretary-general of the World Holocaust Foundation.;15846;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6974;EU.2933.67;;;;(Date of listing: 23.3.2012);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954;;;NO;GREGORIAN;;;;Dezful;IR;IRAN (ISLAMIC REPUBLIC OF);1793;EN;;amendment;commission;2012-03-24;2012-03-23;264/2012 (OJ L87);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0026:0036:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6975;EU.3467.9;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;MORTAZAVI;Seyyed;Solat;Seyyed Solat MORTAZAVI;;M;;Since 5 September 2021, Vice-President for Executive Affairs of Iran and Head of the Presidential Office. Head of the real estate branch of the Mostazafan Foundation, which was directly run by Supreme Leader Khamenei from 16 September 2019 until September 2021. Until November 2019, Director of the Tehran branch of the Foundation Astan Qods Razavi. Former mayor of the second largest city of Iran, Mashhad. Former Deputy Interior Minister for Political Affairs, appointed in 2009.;15847;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6975;EU.3467.9;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;NO;GREGORIAN;;;Tchar Mahal-o-Bakhtiari (South);Farsan;IR;IRAN (ISLAMIC REPUBLIC OF);1794;EN;;amendment;council;2016-04-12;2016-04-13;2016/556 (OJ L96);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2016.096.01.0003.01.ENG&toc=OJ:L:2016:096:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6982;EU.3475.80;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;SHARIFI;Malek;Adjar;Malek Adjar SHARIFI;;M;;Judge at the Supreme Court, head of the 43rd section. Former Head of East Azerbaidjan Judiciary.;15875;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6982;EU.3475.80;;2011-04-12;;(Date of UN designation: 2011-04-12);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;SHARIFI;Malek;Ajdar;Malek Ajdar SHARIFI;;M;;Judge at the Supreme Court, head of the 43rd section. Former Head of East Azerbaidjan Judiciary.;116424;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6988;EU.3906.57;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Ali FARHADI;;M;;Deputy Head of Inspectorate of Legal Affairs and Public Inspection of the Ministry of Justice of Tehran. Former prosecutor of Karaj.;15900;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6989;EU.3907.22;;2012-03-23;;(Date of UN designation: 2012-03-23);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;REZVANMA-NESH;Ali;;Ali REZVANMA-NESH;;M;;Deputy prosecutor in the province of Karaj, region of Alborz in the period 2010-2016.;15901;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6990;EU.2934.32;;;;(Date of listing: 23.3.2012);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;RAMEZANI;Gholamhossein;;Gholamhossein RAMEZANI;;M;;"Since 2011 Chief of the Intelligence of the Ministry of Defence; from November 2009 to March 2011: Commander of Intelligence of the Pasdaran; from March 2008 to November 2009: Deputy Commander of Intelligence of the Pasdaran; from April 2006 to March 2008: Head of Protection and Intelligence of the Pasdaran.";15902;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6991;EU.3908.84;;;;(Date of listing: 23.3.2012);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;SADEGHI;Mohamed;;Mohamed SADEGHI;;M;;Colonel and Deputy of IRGC technical and cyber intelligence and in charge of the centre of analysis and fight against organised crime within the Pasdaran.;15903;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6992;EU.2942.6;;;;(Date of listing: 23.3.2012);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;JAFARI;Reza;;Reza JAFARI;;M;;Advisor to the Disciplinary Court for Judges since 2012. Member of the ‘Committee for Determining Criminal Web Content’, a body responsible for web sites and social media censorship. Former Head of special prosecution of cyber crime between 2007 and 2012.;15904;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6992;EU.2942.6;;;;(Date of listing: 23.3.2012);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;2351;EN;;amendment;council;2015-04-08;2015-04-09;2015/548 (OJ L 92);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;6993;EU.2950.77;;;;(Date of listing: 23.3.2012);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;RESHTE-AHMADI;Bahram;;Bahram RESHTE-AHMADI;;M;;Judge of an ordinary court of northern Tehran. Former Supervisor of Public Prosecution Office in Tehran. Deputy Head of the Office of Prison Affairs of Tehran Province. Former Deputy Prosecutor in Tehran until 2013.;15905;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7023;EU.3762.79;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Date of UN designation: 6.1.2012.\nSenior Taliban official with military and financial responsibilities as at 2011. Leader of the Taliban's Military Council as of 2010.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4653034);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ahmad Zia Agha;;;Haji;;16022;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7023;EU.3762.79;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Date of UN designation: 6.1.2012.\nSenior Taliban official with military and financial responsibilities as at 2011. Leader of the Taliban's Military Council as of 2010.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4653034);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Zia Agha;;;;;16023;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7023;EU.3762.79;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Date of UN designation: 6.1.2012.\nSenior Taliban official with military and financial responsibilities as at 2011. Leader of the Taliban's Military Council as of 2010.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4653034);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Noor Ahmad;;;;;16024;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7023;EU.3762.79;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Date of UN designation: 6.1.2012.\nSenior Taliban official with military and financial responsibilities as at 2011. Leader of the Taliban's Military Council as of 2010.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4653034);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Noor Ahmed;;;;;16025;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7023;EU.3762.79;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Date of UN designation: 6.1.2012.\nSenior Taliban official with military and financial responsibilities as at 2011. Leader of the Taliban's Military Council as of 2010.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4653034);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Sia Agha Sayeed;;;;;16026;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7023;EU.3762.79;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Date of UN designation: 6.1.2012.\nSenior Taliban official with military and financial responsibilities as at 2011. Leader of the Taliban's Military Council as of 2010.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4653034);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974;;;NO;GREGORIAN;;;;Maiwand District, Kandahar Province,;AF;AFGHANISTAN;1847;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7024;EU.3763.44;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Represents and provides financial and logistical support to the Haqqani Network, which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani, Jalaluddin Haqqani, the Haqqani network and the Taliban. Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678547);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Fazl Rabi;;;;Senior official in Konar Province during the Taliban regime;16027;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7024;EU.3763.44;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Represents and provides financial and logistical support to the Haqqani Network, which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani, Jalaluddin Haqqani, the Haqqani network and the Taliban. Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678547);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Fazl Rabbi;;;;;16028;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7024;EU.3763.44;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Represents and provides financial and logistical support to the Haqqani Network, which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani, Jalaluddin Haqqani, the Haqqani network and the Taliban. Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678547);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Fazal Rabi;;;;;16029;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7024;EU.3763.44;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Represents and provides financial and logistical support to the Haqqani Network, which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani, Jalaluddin Haqqani, the Haqqani network and the Taliban. Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678547);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Faisal Rabbi;;;;;16030;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7024;EU.3763.44;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Represents and provides financial and logistical support to the Haqqani Network, which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani, Jalaluddin Haqqani, the Haqqani network and the Taliban. Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678547);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Kohe Safi District Parwan Province;AF;AFGHANISTAN;1848;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7024;EU.3763.44;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Represents and provides financial and logistical support to the Haqqani Network, which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani, Jalaluddin Haqqani, the Haqqani network and the Taliban. Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678547);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Kapisa Province;AF;AFGHANISTAN;1849;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7024;EU.3763.44;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Represents and provides financial and logistical support to the Haqqani Network, which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani, Jalaluddin Haqqani, the Haqqani network and the Taliban. Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678547);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Nangarhar Province;AF;AFGHANISTAN;1850;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7024;EU.3763.44;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Represents and provides financial and logistical support to the Haqqani Network, which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani, Jalaluddin Haqqani, the Haqqani network and the Taliban. Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678547);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Kabul Province;AF;AFGHANISTAN;1851;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7024;EU.3763.44;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Represents and provides financial and logistical support to the Haqqani Network, which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani, Jalaluddin Haqqani, the Haqqani network and the Taliban. Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678547);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;1880;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7024;EU.3763.44;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Represents and provides financial and logistical support to the Haqqani Network, which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani, Jalaluddin Haqqani, the Haqqani network and the Taliban. Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678547);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;1881;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7024;EU.3763.44;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Represents and provides financial and logistical support to the Haqqani Network, which is based in Afghanistan/Pakistan border area. Member of the Taliban Financial Council. Has travelled abroad to raise funds on behalf of Sirajuddin Jallaloudine Haqqani, Jalaluddin Haqqani, the Haqqani network and the Taliban. Believed to be in Afghanistan/Pakistan border area. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678547);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;804;EN;;amendment;commission;2014-03-15;2014-03-14;261/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0261&from=EN +28/10/2022;7025;EU.3609.57;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Senior Taliban member as at 2011 with financial duties, including raising funds on behalf of the leadership.\nHas acted as secretary to Taliban leader Mullah Mohammed Omar and as his messenger at senior-level meetings of the Taliban. Also associated with Gul Agha Ishakzai. Member of Mullah Mohammed Omar's inner circle during the Taliban regime. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammad Aman Akhund;;;;;16032;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7025;EU.3609.57;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Senior Taliban member as at 2011 with financial duties, including raising funds on behalf of the leadership.\nHas acted as secretary to Taliban leader Mullah Mohammed Omar and as his messenger at senior-level meetings of the Taliban. Also associated with Gul Agha Ishakzai. Member of Mullah Mohammed Omar's inner circle during the Taliban regime. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammed Aman;;;;;16033;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7025;EU.3609.57;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Senior Taliban member as at 2011 with financial duties, including raising funds on behalf of the leadership.\nHas acted as secretary to Taliban leader Mullah Mohammed Omar and as his messenger at senior-level meetings of the Taliban. Also associated with Gul Agha Ishakzai. Member of Mullah Mohammed Omar's inner circle during the Taliban regime. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Mohammed Oman;;;;;16034;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7025;EU.3609.57;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Senior Taliban member as at 2011 with financial duties, including raising funds on behalf of the leadership.\nHas acted as secretary to Taliban leader Mullah Mohammed Omar and as his messenger at senior-level meetings of the Taliban. Also associated with Gul Agha Ishakzai. Member of Mullah Mohammed Omar's inner circle during the Taliban regime. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Mad Aman Ustad Noorzai;;;;;16035;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7025;EU.3609.57;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Senior Taliban member as at 2011 with financial duties, including raising funds on behalf of the leadership.\nHas acted as secretary to Taliban leader Mullah Mohammed Omar and as his messenger at senior-level meetings of the Taliban. Also associated with Gul Agha Ishakzai. Member of Mullah Mohammed Omar's inner circle during the Taliban regime. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Sanaullah;;;;;16036;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7025;EU.3609.57;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Senior Taliban member as at 2011 with financial duties, including raising funds on behalf of the leadership.\nHas acted as secretary to Taliban leader Mullah Mohammed Omar and as his messenger at senior-level meetings of the Taliban. Also associated with Gul Agha Ishakzai. Member of Mullah Mohammed Omar's inner circle during the Taliban regime. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Mohammad Aman Ustad Noorzai;;;;;17682;EN;;amendment;commission;2014-03-15;2014-03-14;261/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0261&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7025;EU.3609.57;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Senior Taliban member as at 2011 with financial duties, including raising funds on behalf of the leadership.\nHas acted as secretary to Taliban leader Mullah Mohammed Omar and as his messenger at senior-level meetings of the Taliban. Also associated with Gul Agha Ishakzai. Member of Mullah Mohammed Omar's inner circle during the Taliban regime. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4665005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;;;NO;GREGORIAN;;;;Bande Tumur Village, Maiwand District, Kandahar Province;AF;AFGHANISTAN;1853;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7026;EU.3610.82;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Key commander of the Haqqani Network, which is based in Afghanistan/Pakistan border area. Acts as deputy, spokesperson and advisor for Haqqani Network senior leader Sirajuddin Jallaloudine Haqqani. Liaises with the Taliban Supreme Council. Has travelled abroad. Liaises with and provides Taliban commanders in Ghazni Province, Afghanistan.\nReportedly deceased as of 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/4678368);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ahmed Jan Wazir Akhtar Mohammad;;;;Official of the Ministry of Finance during the Taliban regime.;16039;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7026;EU.3610.82;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Key commander of the Haqqani Network, which is based in Afghanistan/Pakistan border area. Acts as deputy, spokesperson and advisor for Haqqani Network senior leader Sirajuddin Jallaloudine Haqqani. Liaises with the Taliban Supreme Council. Has travelled abroad. Liaises with and provides Taliban commanders in Ghazni Province, Afghanistan.\nReportedly deceased as of 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/4678368);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ahmed Jan Kuchi;;;;;16040;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7026;EU.3610.82;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Key commander of the Haqqani Network, which is based in Afghanistan/Pakistan border area. Acts as deputy, spokesperson and advisor for Haqqani Network senior leader Sirajuddin Jallaloudine Haqqani. Liaises with the Taliban Supreme Council. Has travelled abroad. Liaises with and provides Taliban commanders in Ghazni Province, Afghanistan.\nReportedly deceased as of 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/4678368);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ahmed Jan Zadran;;;;;16041;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7026;EU.3610.82;;2012-01-06;;(Date of UN designation: 2012-01-06)\n(Key commander of the Haqqani Network, which is based in Afghanistan/Pakistan border area. Acts as deputy, spokesperson and advisor for Haqqani Network senior leader Sirajuddin Jallaloudine Haqqani. Liaises with the Taliban Supreme Council. Has travelled abroad. Liaises with and provides Taliban commanders in Ghazni Province, Afghanistan.\nReportedly deceased as of 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/4678368);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;NO;GREGORIAN;;;;Barlach Village, Qareh Bagh District, Ghazni Province;AF;AFGHANISTAN;1855;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7027;EU.3611.47;;2012-03-02;;(Date of UN designation: 2012-03-02)\n(Date of UN designation: 2.3.2012.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4652670);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Samad Achekzai;;;;;16042;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7027;EU.3611.47;;2012-03-02;;(Date of UN designation: 2012-03-02)\n(Date of UN designation: 2.3.2012.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4652670);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Samad;;;;;16043;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7027;EU.3611.47;;2012-03-02;;(Date of UN designation: 2012-03-02)\n(Date of UN designation: 2.3.2012.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4652670);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;;;NO;GREGORIAN;;;;;AF;AFGHANISTAN;1856;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7027;EU.3611.47;;2012-03-02;;(Date of UN designation: 2012-03-02)\n(Date of UN designation: 2.3.2012.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4652670);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;756;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;7029;EU.3601.46;;2012-05-18;;(Date of UN designation: 2012-05-18)\n(Date of listing: 2012-05-03. Parentage: Wasna Injai and Quiritche Cofte\n\nDate of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;INJAI;António;;António INJAI;;;General;Lieutenant General – Chefe de Estado-Maior Geral das Forças Armadas (official function);16188;EN;;regulation;commission;2012-05-04;2012-05-03;377/2012 (OJ L119);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:119:0001:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7029;EU.3601.46;;2012-05-18;;(Date of UN designation: 2012-05-18)\n(Date of listing: 2012-05-03. Parentage: Wasna Injai and Quiritche Cofte\n\nDate of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;INDJAI;António;;António INDJAI;;;;;16189;EN;;regulation;commission;2012-05-04;2012-05-03;377/2012 (OJ L119);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:119:0001:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7029;EU.3601.46;;2012-05-18;;(Date of UN designation: 2012-05-18)\n(Date of listing: 2012-05-03. Parentage: Wasna Injai and Quiritche Cofte\n\nDate of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-01-20;20;1;1955;;;NO;GREGORIAN;;;;Encheia, Sector de Bissorá, Região de Oio;GW;GUINEA-BISSAU;1884;EN;;regulation;commission;2012-05-04;2012-05-03;377/2012 (OJ L119);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:119:0001:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7029;EU.3601.46;;2012-05-18;;(Date of UN designation: 2012-05-18)\n(Date of listing: 2012-05-03. Parentage: Wasna Injai and Quiritche Cofte\n\nDate of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Unknown national ID (other-Other identification number) (unknown national id);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;GW;;784;EN;unknown national id;regulation;commission;2012-05-04;2012-05-03;377/2012 (OJ L119);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:119:0001:0008:EN:PDF;;;;;;;;;;;;; +28/10/2022;7029;EU.3601.46;;2012-05-18;;(Date of UN designation: 2012-05-18)\n(Date of listing: 2012-05-03. Parentage: Wasna Injai and Quiritche Cofte\n\nDate of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"AAID00435 (passport-National passport) (on 2010-02-18 valid to 2013-02-18 diplomatic)(diplomatic passport; date of issue: 2010-02-18; place of issue: guinea- bissau; date of expiry: 2013-02-18)";YES;NO;NO;NO;NO;;2010-02-18;;2013-02-18;;;passport;National passport;;GW;;785;EN;"diplomatic passport; date of issue: 2010-02-18; place of issue: guinea- bissau; date of expiry: 2013-02-18";amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;; +28/10/2022;7029;EU.3601.46;;2012-05-18;;(Date of UN designation: 2012-05-18)\n(Date of listing: 2012-05-03. Parentage: Wasna Injai and Quiritche Cofte\n\nDate of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GW;;761;EN;;regulation;commission;2012-05-04;2012-05-03;377/2012 (OJ L119);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:119:0001:0008:EN:PDF +28/10/2022;7030;EU.3602.11;;2012-05-18;;(Date of UN designation: 2012-05-18)\n(Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;TURE;Mamadu;;Mamadu TURE;;;Major General;Deputy Chief of Staff of the Armed Forces;16190;EN;;regulation;commission;2012-05-04;2012-05-03;377/2012 (OJ L119);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:119:0001:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7030;EU.3602.11;;2012-05-18;;(Date of UN designation: 2012-05-18)\n(Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;N'KRUMAH;Mamadu;;Mamadu N'KRUMAH;;;;;16191;EN;;regulation;commission;2012-05-04;2012-05-03;377/2012 (OJ L119);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:119:0001:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7030;EU.3602.11;;2012-05-18;;(Date of UN designation: 2012-05-18)\n(Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947-04-26;26;4;1947;;;NO;GREGORIAN;;;;;00;UNKNOWN;1885;EN;;regulation;commission;2012-05-04;2012-05-03;377/2012 (OJ L119);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:119:0001:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7030;EU.3602.11;;2012-05-18;;(Date of UN designation: 2012-05-18)\n(Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DA0002186 (passport-National passport) (on 2007-03-30 valid to 2013-08-26 diplomatic);YES;NO;NO;NO;NO;;2007-03-30;;2013-08-26;;;passport;National passport;;GW;;786;EN;;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;; +28/10/2022;7030;EU.3602.11;;2012-05-18;;(Date of UN designation: 2012-05-18)\n(Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GW;;762;EN;;regulation;commission;2012-05-04;2012-05-03;377/2012 (OJ L119);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:119:0001:0008:EN:PDF +28/10/2022;7032;EU.3742.77;;2012-05-18;Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012));(Date of UN designation: 2012-05-18)\n(Designation details: Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;NA MENA;Estêvão;;Estêvão NA MENA;;;General;Inspector-General of the Armed Forces;16194;EN;;amendment;commission;2012-06-01;2012-05-31;458/2012 (OJ L142);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:142:0011:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7032;EU.3742.77;;2012-05-18;Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012));(Date of UN designation: 2012-05-18)\n(Designation details: Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-03-07;7;3;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;1900;EN;;amendment;commission;2012-06-01;2012-05-31;458/2012 (OJ L142);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:142:0011:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7032;EU.3742.77;;2012-05-18;Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012));(Date of UN designation: 2012-05-18)\n(Designation details: Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GW;;111030;EN;;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN +28/10/2022;7033;EU.3743.42;;2012-05-18;Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012));(Date of UN designation: 2012-05-18)\n(Designation details: Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)))\n(Parentage: Suareba Camará (father's name) and Sale Queita (mother's name));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;CAMARA;Ibraima;;Ibraima CAMARA;;;Brigadier General;Chief of Staff of the Air Force;16195;EN;;amendment;commission;2012-06-01;2012-05-31;458/2012 (OJ L142);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:142:0011:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7033;EU.3743.42;;2012-05-18;Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012));(Date of UN designation: 2012-05-18)\n(Designation details: Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)))\n(Parentage: Suareba Camará (father's name) and Sale Queita (mother's name));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;Papa Camara;;;;;16196;EN;;amendment;commission;2012-06-01;2012-05-31;458/2012 (OJ L142);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:142:0011:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7033;EU.3743.42;;2012-05-18;Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012));(Date of UN designation: 2012-05-18)\n(Designation details: Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)))\n(Parentage: Suareba Camará (father's name) and Sale Queita (mother's name));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-05-11;11;5;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;1886;EN;;regulation;commission;2012-05-04;2012-05-03;377/2012 (OJ L119);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:119:0001:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7033;EU.3743.42;;2012-05-18;Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012));(Date of UN designation: 2012-05-18)\n(Designation details: Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)))\n(Parentage: Suareba Camará (father's name) and Sale Queita (mother's name));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAID00437 (passport-National passport) (on 2010-02-18 valid to 2013-02-18 diplomatic);YES;NO;NO;NO;NO;;2010-02-18;;2013-02-18;;;passport;National passport;;GW;;787;EN;;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;; +28/10/2022;7033;EU.3743.42;;2012-05-18;Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012));(Date of UN designation: 2012-05-18)\n(Designation details: Date of UN designation: 18.05.2012 (pursuant to para. 4 of UNSCR 2048 (2012)))\n(Parentage: Suareba Camará (father's name) and Sale Queita (mother's name));P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GW;;763;EN;;regulation;commission;2012-05-04;2012-05-03;377/2012 (OJ L119);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:119:0001:0008:EN:PDF +28/10/2022;7034;EU.3744.7;;2012-05-18;3.5.2012;(Date of UN designation: 2012-05-18)\n(Designation details: 3.5.2012);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;Daba Na Walna;;;;;16198;EN;;regulation;commission;2012-05-04;2012-05-03;377/2012 (OJ L119);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:119:0001:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7034;EU.3744.7;;2012-05-18;3.5.2012;(Date of UN designation: 2012-05-18)\n(Designation details: 3.5.2012);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;NAUALNA;Daba;;Daba NAUALNA;;;a) Lieutenant-Colonel b) Spokesperson of the ‘Military Command’;Spokesperson of the ‘Military Command’ which has assumed responsibility for the coup d'état of 12 April 2012.;121120;EN;Samba Naualna (Father's name) and In-Uasne Nanfafe (Mother's name);amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7034;EU.3744.7;;2012-05-18;3.5.2012;(Date of UN designation: 2012-05-18)\n(Designation details: 3.5.2012);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-06-06;6;6;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;1887;EN;;regulation;commission;2012-05-04;2012-05-03;377/2012 (OJ L119);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:119:0001:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7034;EU.3744.7;;2012-05-18;3.5.2012;(Date of UN designation: 2012-05-18)\n(Designation details: 3.5.2012);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SA 0000417 (passport-National passport) (on 2003-10-29 valid to 2013-03-10);NO;NO;NO;NO;NO;;2003-10-29;;2013-03-10;;;passport;National passport;;GW;;788;EN;;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;; +28/10/2022;7034;EU.3744.7;;2012-05-18;3.5.2012;(Date of UN designation: 2012-05-18)\n(Designation details: 3.5.2012);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GW;;764;EN;;regulation;commission;2012-05-04;2012-05-03;377/2012 (OJ L119);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:119:0001:0008:EN:PDF +28/10/2022;7035;EU.3988.92;;2012-05-15;;(Date of UN designation: 2012-05-15);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Adib MAYALEH;;M;;Former Governor and Chairman of the Board of Directors of the Central Bank of Syria. \nFormer Minister of Economy and Foreign Trade in power after May 2011.;16199;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7035;EU.3988.92;;2012-05-15;;(Date of UN designation: 2012-05-15);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Mayard;André;;André Mayard;EN;;;;105221;EN;;amendment;council;2018-05-29;2018-05-30;2018/774 (OJ L131);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:131:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7035;EU.3988.92;;2012-05-15;;(Date of UN designation: 2012-05-15);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;أديب ميالة;AR;M;;;124422;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7035;EU.3988.92;;2012-05-15;;(Date of UN designation: 2012-05-15);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-05-15;15;5;1955;;;NO;GREGORIAN;;;Bassir;;SY;SYRIAN ARAB REPUBLIC;1888;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7038;EU.2992.11;;;;(Date of listing: 15.5.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;General Organisation of Tobacco;;;;;16204;EN;;amendment;commission;2012-05-15;2012-05-15;410/2012 (OJ L126);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:126:0003:0005:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7038;EU.2992.11;;;;(Date of listing: 15.5.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Salhieh Street 616;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2277;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7046;EU.3747.96;;2012-07-18;Date of UN designation: 18.07.2012 (pursuant to para. 4 of UNSCR 2048 (2012));(Date of UN designation: 2012-07-18)\n(Designation details: Date of UN designation: 18.07.2012 (pursuant to para. 4 of UNSCR 2048 (2012)))\n(Date of listing: 2012-06-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;NHATE;Júlio;;Júlio NHATE;;;Lieutenant-colonel;Commander of the Paratroop Regiment;16216;EN;;amendment;commission;2012-06-01;2012-05-31;458/2012 (OJ L142);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:142:0011:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7046;EU.3747.96;;2012-07-18;Date of UN designation: 18.07.2012 (pursuant to para. 4 of UNSCR 2048 (2012));(Date of UN designation: 2012-07-18)\n(Designation details: Date of UN designation: 18.07.2012 (pursuant to para. 4 of UNSCR 2048 (2012)))\n(Date of listing: 2012-06-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;1893;EN;;amendment;commission;2012-06-01;2012-05-31;458/2012 (OJ L142);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:142:0011:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7046;EU.3747.96;;2012-07-18;Date of UN designation: 18.07.2012 (pursuant to para. 4 of UNSCR 2048 (2012));(Date of UN designation: 2012-07-18)\n(Designation details: Date of UN designation: 18.07.2012 (pursuant to para. 4 of UNSCR 2048 (2012)))\n(Date of listing: 2012-06-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-09-28;28;9;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;111034;EN;;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7046;EU.3747.96;;2012-07-18;Date of UN designation: 18.07.2012 (pursuant to para. 4 of UNSCR 2048 (2012));(Date of UN designation: 2012-07-18)\n(Designation details: Date of UN designation: 18.07.2012 (pursuant to para. 4 of UNSCR 2048 (2012)))\n(Date of listing: 2012-06-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GW;;771;EN;;amendment;commission;2012-06-01;2012-05-31;458/2012 (OJ L142);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:142:0011:0015:EN:PDF +28/10/2022;7047;EU.3603.73;;2012-07-18;Date of UN designation: 18.07.2012 (pursuant to para. 4 of UNSCR 2048 (2012));(Date of UN designation: 2012-07-18)\n(Designation details: Date of UN designation: 18.07.2012 (pursuant to para. 4 of UNSCR 2048 (2012)))\n(Parentage: “Nabidom”. Date of listing: 2012-06-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;NA BIDON;Tchipa;;Tchipa NA BIDON;;;Lieutenant-colonel;Head of the Military Intelligence;16217;EN;;amendment;commission;2012-06-01;2012-05-31;458/2012 (OJ L142);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:142:0011:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7047;EU.3603.73;;2012-07-18;Date of UN designation: 18.07.2012 (pursuant to para. 4 of UNSCR 2048 (2012));(Date of UN designation: 2012-07-18)\n(Designation details: Date of UN designation: 18.07.2012 (pursuant to para. 4 of UNSCR 2048 (2012)))\n(Parentage: “Nabidom”. Date of listing: 2012-06-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-05-28;28;5;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;1894;EN;;amendment;commission;2012-06-01;2012-05-31;458/2012 (OJ L142);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:142:0011:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7047;EU.3603.73;;2012-07-18;Date of UN designation: 18.07.2012 (pursuant to para. 4 of UNSCR 2048 (2012));(Date of UN designation: 2012-07-18)\n(Designation details: Date of UN designation: 18.07.2012 (pursuant to para. 4 of UNSCR 2048 (2012)))\n(Parentage: “Nabidom”. Date of listing: 2012-06-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"DA0001564 (passport-National passport) (on 2005-11-30 valid to 2011-05-15 diplomatic)[known to be expired](diplomatic passport, issued 2005-11-30; expired 2011-05-15)";YES;YES;NO;NO;NO;;2005-11-30;;2011-05-15;;;passport;National passport;;GW;;793;EN;"diplomatic passport, issued 2005-11-30; expired 2011-05-15";amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;; +28/10/2022;7047;EU.3603.73;;2012-07-18;Date of UN designation: 18.07.2012 (pursuant to para. 4 of UNSCR 2048 (2012));(Date of UN designation: 2012-07-18)\n(Designation details: Date of UN designation: 18.07.2012 (pursuant to para. 4 of UNSCR 2048 (2012)))\n(Parentage: “Nabidom”. Date of listing: 2012-06-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GW;;772;EN;;amendment;commission;2012-06-01;2012-05-31;458/2012 (OJ L142);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:142:0011:0015:EN:PDF +28/10/2022;7050;EU.3605.3;;2012-07-18;;(Date of UN designation: 2012-07-18);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;DJALÓ;Idrissa;;Idrissa DJALÓ;;M;Major;"Protocol advisor to the Armed Forces Chief of Staff; Colonel; Chief of Protocol of the Headquarters of the Armed Forces (subsequently)";17508;EN;;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7050;EU.3605.3;;2012-07-18;;(Date of UN designation: 2012-07-18);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;Djaló;Idriça;;Idriça Djaló;;;;;112912;EN;;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7050;EU.3605.3;;2012-07-18;;(Date of UN designation: 2012-07-18);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-12-18;18;12;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;112911;EN;;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7050;EU.3605.3;;2012-07-18;;(Date of UN designation: 2012-07-18);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAISO40158 (passport-National passport) (on 2012-10-12 valid to 2015-10-02)(passport issued on 2012-10-02 in guinea bissau, expiring on 2015-10-02);NO;NO;NO;NO;NO;;2012-10-12;;2015-10-02;;;passport;National passport;;GW;;859;EN;passport issued on 2012-10-02 in guinea bissau, expiring on 2015-10-02;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;; +28/10/2022;7050;EU.3605.3;;2012-07-18;;(Date of UN designation: 2012-07-18);P;person;amendment;council;2017-03-09;2017-03-09;2017/403 (OJ L63);GNB;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0403&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GW;;775;EN;;amendment;commission;2012-06-01;2012-05-31;458/2012 (OJ L142);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:142:0011:0015:EN:PDF +28/10/2022;7055;EU.3054.59;;2012-06-01;;(Date of UN designation: 2012-06-01)\n(Date of designation: 2012-06-01.);P;person;amendment;commission;2012-06-01;2012-05-31;458/2012 (OJ L142);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:142:0011:0015:EN:PDF;NA MAN;Julio;;Julio NA MAN;;M;Lieutenant;Aide-de-Camp of the Chief of Staff of the Armed Forces;16227;EN;;amendment;commission;2012-06-01;2012-05-31;458/2012 (OJ L142);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:142:0011:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7055;EU.3054.59;;2012-06-01;;(Date of UN designation: 2012-06-01)\n(Date of designation: 2012-06-01.);P;person;amendment;commission;2012-06-01;2012-05-31;458/2012 (OJ L142);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:142:0011:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GW;;779;EN;;amendment;commission;2012-06-01;2012-05-31;458/2012 (OJ L142);GNB;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:142:0011:0015:EN:PDF +28/10/2022;7056;EU.3055.24;;;;(Date of listing: 26.6.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Bouthaina SHAABAN;;F;;Political and Media Advisor to the President since July 2008;16246;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7056;EU.3055.24;;;;(Date of listing: 26.6.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Shaaban;Buthaina;;Buthaina Shaaban;;;;;16247;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7056;EU.3055.24;;;;(Date of listing: 26.6.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;بثينة شعبان;AR;;;;125068;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7056;EU.3055.24;;;;(Date of listing: 26.6.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;NO;GREGORIAN;;;;Homs;SY;SYRIAN ARAB REPUBLIC;1904;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministry of Defence [Syria];;;;;16231;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Министерство на отбраната;BG;;;;16250;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syrský národní bezpečnostní úřad;CS;;;;16259;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Forsvarsministeriet;DA;;;;16260;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Verteidigungs-ministerium;DE;;;;16265;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Kaitseministeerium;ET;;;;16266;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Υπουργείο Άμυνας;EL;;;;16277;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministrerio de Defensa;ES;;;;16278;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministère de la défense;FR;;;;16291;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministero della difesa;IT;;;;16292;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Aizsardzības ministrija;LV;;;;16297;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Gynybos ministerija;LT;;;;16308;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Védelmi Minisztérium;HU;;;;16309;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministeru tad-Difiża;MT;;;;16316;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministerie van Defensie;NL;;;;16317;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministerstwo Obrony;PL;;;;16322;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministério da Defesa;PT;;;;16328;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministerul Apărării;RO;;;;16329;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministerstvo obrany;SK;;;;16343;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministrstvo za obrambo;SL;;;;16344;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Puolustusministeriö;FI;;;;16349;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Försvarsministeriet;SV;;;;16350;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7057;EU.3056.86;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Umayyad Square;;;;;NO;PHONE[+963 11 7770700];SY;SYRIAN ARAB REPUBLIC;2280;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministry of Interior [Syria];;;;;16232;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Министерство на вътрешните работи;BG;;;;16251;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministerstvo vnitra;CS;;;;16258;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Indenrigsministeriet;DA;;;;16261;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Innenministerium;DE;;;;16264;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Siseministeerium;ET;;;;16267;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Υπουργείο Εσωτερικών;EL;;;;16276;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministerio del Interior;ES;;;;16279;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministère de l'intérieur;FR;;;;16290;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministero dell'interno;IT;;;;16293;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Iekšlietu ministrija;LV;;;;16296;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Vidaus reikalų ministerija;LT;;;;16307;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Belügyminisztérium;HU;;;;16310;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministeru tal-Intern;MT;;;;16315;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministerie van Binnenlandse Zaken;NL;;;;16318;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministerstwo Spraw Wewnętrznych;PL;;;;16321;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministério do Interior;PT;;;;16327;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministerul de Interne;RO;;;;16330;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministerstvo vnútra;SK;;;;16342;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ministrstvo za notranje zadeve;SL;;;;16345;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sisäasiainministeriö;FI;;;;16348;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Inrikesministeriet;SV;;;;16351;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7058;EU.3074.61;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Merjeh Square;;;;;NO;"PHONE[+963 11 2219400; +963 11 2219401; +963 11 2220220; +963 11 2210404]";SY;SYRIAN ARAB REPUBLIC;2281;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syrian National Security Bureau;;;;;16233;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Сирийско национално бюро за сигурност;BG;;;;16252;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syrský národní bezpečnostní úřad;CS;;;;16257;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syriens nationale sikkerhedsbureau;DA;;;;16262;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syrisches Büro für Nationale Sicherheit;DE;;;;16263;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Süüria riiklik julgeolekubüroo;ET;;;;16268;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Γραφείο εθνικής ασφάλειας της Συρίας;EL;;;;16275;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Oficina de Seguridad Nacional siria;ES;;;;16280;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Bureau de la sécurité nationale syrien;FR;;;;16289;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ufficio per la sicurezza nazionale siriana;IT;;;;16294;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sīrijas Valsts drošības birojs;LV;;;;16295;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sirijos nacionalinio saugumo tarnyba;LT;;;;16306;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Szíriai Nemzetbiztonsági Hivatal;HU;;;;16311;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syrisch bureau van nationale veiligheid;NL;;;;16319;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syryjskie Biuro Bezpieczeństwa Narodowego;PL;;;;16320;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Serviço Nacional de Segurança sírio;PT;;;;16326;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Biroul sirian de securitate națională;RO;;;;16331;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sýrsky národný bezpečnostný úrad;SK;;;;16341;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sirski državni varnostni urad;SL;;;;16346;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syyrian kansallisen turvallisuuden virasto;FI;;;;16347;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7059;EU.2988.91;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syriens nationella säkerhetsbyrå;SV;;;;16352;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7060;EU.2996.65;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Benghazi, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;Ansar Al Charia Benghazi;;;;;16248;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7060;EU.2996.65;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Benghazi, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;Ansar al Charia;;;;;18376;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7060;EU.2996.65;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Benghazi, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;Ansar al-Charia;;;;;18377;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7060;EU.2996.65;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Benghazi, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;Ansar al-Sharia;;;;;18378;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7060;EU.2996.65;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Benghazi, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;Ansar al-Charia Benghazi;;;;;18379;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7060;EU.2996.65;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Benghazi, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;Ansar al-Sharia Benghazi;;;;;18380;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7060;EU.2996.65;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Benghazi, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;Ansar al Charia in Libya (ASL);;;;;18381;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7060;EU.2996.65;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Benghazi, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;Katibat Ansar al Charia;;;;;18382;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7060;EU.2996.65;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Benghazi, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;Ansar al Sharia;;;;;18383;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7060;EU.2996.65;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Benghazi, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;Benghazi;;;;;;NO;;LY;LIBYA;2676;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;General Organisation of Radio and TV [Syria];;;;;16237;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syrian Directorate General of Radio & Television Est;;;;;16238;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;General Radio and Television Corporation [Syria];;;;;16239;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Radio and Television Corporation [Syria];;;;;16240;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;GORT;;;;;16241;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Обща организация за радио и телевизия;BG;;;;16253;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Сирийска главна дирекция за радио и телевизия;BG;;;;16254;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Главна радио- и телевизионна корпорация;BG;;;;16255;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Радио- и телевизионна корпорация;BG;;;;16256;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Raadio ja Televisiooni Keskorganisatsioon);ET;;;;16271;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Süüria raadio ja televisiooni peadirektoraat EST;ET;;;;16272;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Organización General de Radio y Televisión;ES;;;;16283;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Dirección General de Radio & Televisión Est;ES;;;;16284;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ente General de Radio y Televión;ES;;;;16285;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Empresa Pública de Radio y Televisión;ES;;;;16286;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Vispārējā radio un televīzijas raidorganizācija;LV;;;;16300;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sīrijas Radio un televīzijas ģenerāldirektorāts;LV;;;;16301;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Vispārējā Radio un televīzijas sabiedrība;LV;;;;16302;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Radio un televīzijas sabiedrība;LV;;;;16303;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Általános Rádiós és Televíziós Szervezet;HU;;;;16313;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Powszechna Organizacja Radiowo-Telewizyjna;PL;;;;16324;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Organizația generală de radio și televiziune;RO;;;;16332;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Directoratul General sirian de radio și televiziune Est;RO;;;;16333;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Corporația generală de radio și televiziune;RO;;;;16334;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Generálna organizácia rádia a televízie;SK;;;;16337;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sýrske generálne riaditeľstvo pre rádio a televíziu;SK;;;;16338;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Generálna spoločnosť pre rádiové a televízne vysielanie;SK;;;;16339;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7062;EU.2898.30;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Al Oumaween Square;P.O. Box 250;;;;NO;PHONE[+963 11 223 4930];SY;SYRIAN ARAB REPUBLIC;2284;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7063;EU.3001.62;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syrian Company for Oil Transport;;;;;16242;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7063;EU.3001.62;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syrian Crude Oil Transportation Company;;;;;16243;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7063;EU.3001.62;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;SCOT;;;;;16244;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7063;EU.3001.62;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;SCOTRACO;;;;;16245;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7063;EU.3001.62;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Süüria naftatranspordi- ettevõte;ET;;;;16273;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7063;EU.3001.62;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Süüria toornafta transpordiettevõte;ET;;;;16274;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7063;EU.3001.62;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Compañía Siria de Transporte de Petróleo;ES;;;;16287;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7063;EU.3001.62;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Compañía Siria de Transporte de Crudos;ES;;;;16288;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7063;EU.3001.62;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sīrijas Naftas transporta uzņēmums;LV;;;;16304;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7063;EU.3001.62;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sīrijas Jēlnaftas transportēšanas uzņēmums;LV;;;;16305;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7063;EU.3001.62;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Szíriai Olajszállító Vállalat;HU;;;;16314;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7063;EU.3001.62;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syryjskie Przedsiębiorstwo Transportu Paliw;PL;;;;16325;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7063;EU.3001.62;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Compania siriană de transport petrolier;RO;;;;16335;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7063;EU.3001.62;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sýrska spoločnosť pre prepravu ropy;SK;;;;16336;EN;;amendment;commission;2012-06-26;2012-06-26;544/2012 (OJ L165);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0020:0022:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7063;EU.3001.62;;;;(Date of listing: 26.6.2012.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Banias;Banias Industrial Area, Latakia Entrance Way;P.O. Box 13;;;;NO;WEB[http://www.scot-syria.com]\nEMAIL[scot50@scn-net.org];SY;SYRIAN ARAB REPUBLIC;2285;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7064;EU.3612.12;;2012-06-27;;(Date of UN designation: 2012-06-27)\n(Communications assistant to Badruddin Haqqani (deceased). Belongs to Zadran tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4721045);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Bakht Gul;;;;;16358;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7064;EU.3612.12;;2012-06-27;;(Date of UN designation: 2012-06-27)\n(Communications assistant to Badruddin Haqqani (deceased). Belongs to Zadran tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4721045);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Bakhta Gul;;;;;16359;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7064;EU.3612.12;;2012-06-27;;(Date of UN designation: 2012-06-27)\n(Communications assistant to Badruddin Haqqani (deceased). Belongs to Zadran tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4721045);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Bakht Gul Bahar;;;;;16360;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7064;EU.3612.12;;2012-06-27;;(Date of UN designation: 2012-06-27)\n(Communications assistant to Badruddin Haqqani (deceased). Belongs to Zadran tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4721045);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Shuqib;;;;;16361;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7064;EU.3612.12;;2012-06-27;;(Date of UN designation: 2012-06-27)\n(Communications assistant to Badruddin Haqqani (deceased). Belongs to Zadran tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4721045);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Miram Shah, North Waziristan, Federally Administered Tribal Areas;;;;;;NO;;PK;PAKISTAN;2292;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7064;EU.3612.12;;2012-06-27;;(Date of UN designation: 2012-06-27)\n(Communications assistant to Badruddin Haqqani (deceased). Belongs to Zadran tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4721045);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980;;;NO;GREGORIAN;;;;Aki Village, Zadran District, Paktiya Province;AF;AFGHANISTAN;1911;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7064;EU.3612.12;;2012-06-27;;(Date of UN designation: 2012-06-27)\n(Communications assistant to Badruddin Haqqani (deceased). Belongs to Zadran tribe. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 4721045);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;780;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF +28/10/2022;7065;EU.3698.4;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange and associated also with Khairullah Barakzai. Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-al-Manaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4998005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Satar Abdul Manan;;;Haji;;16362;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7065;EU.3698.4;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange and associated also with Khairullah Barakzai. Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-al-Manaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4998005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Abdul Sattar Barakzai;;;;;16363;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7065;EU.3698.4;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange and associated also with Khairullah Barakzai. Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-al-Manaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4998005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Abdul Satar;;;;;16364;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7065;EU.3698.4;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange and associated also with Khairullah Barakzai. Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-al-Manaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4998005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Satar Barakzai;;;;;16365;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7065;EU.3698.4;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange and associated also with Khairullah Barakzai. Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-al-Manaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4998005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdulasattar;;;;;16366;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7065;EU.3698.4;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange and associated also with Khairullah Barakzai. Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-al-Manaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4998005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Pashtunabad, Quetta, Baluchistan Province;Kachray Road;;;;;NO;;PK;PAKISTAN;2293;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7065;EU.3698.4;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange and associated also with Khairullah Barakzai. Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-al-Manaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4998005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Nasrullah Khan Chowk, Pashtunabad Area, Baluchistan Province;;;;;;NO;;PK;PAKISTAN;2294;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7065;EU.3698.4;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange and associated also with Khairullah Barakzai. Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-al-Manaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4998005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Chaman, Baluchistan Province;;;;;;NO;;PK;PAKISTAN;2295;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7065;EU.3698.4;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange and associated also with Khairullah Barakzai. Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-al-Manaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4998005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Kandahar Province;Abdul Satar Food Shop, Ayno Mina 0093;;;;;NO;;PK;PAKISTAN;2296;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7065;EU.3698.4;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange and associated also with Khairullah Barakzai. Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-al-Manaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4998005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;Mirmandaw village, Nahr-e Saraj District, Helmand Province;AF;AFGHANISTAN;1912;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7065;EU.3698.4;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange and associated also with Khairullah Barakzai. Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-al-Manaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4998005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;Mirmadaw village, Gereshk District, Helmand Province;AF;AFGHANISTAN;1913;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7065;EU.3698.4;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange and associated also with Khairullah Barakzai. Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-al-Manaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4998005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;Qilla Abdullah, Baluchistan Province;PK;PAKISTAN;1914;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7065;EU.3698.4;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange and associated also with Khairullah Barakzai. Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-al-Manaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4998005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AM5421691 (passport-National passport) (valid to 2013-08-11)(pakistan passport, expires on 11 aug. 2013);NO;NO;NO;NO;NO;;;;2013-08-11;;;passport;National passport;;PK;;801;EN;pakistan passport, expires on 11 aug. 2013;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;7065;EU.3698.4;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange and associated also with Khairullah Barakzai. Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-al-Manaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4998005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5420250161699 (id-National identification card) ((national identification number));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;PK;;802;EN;(national identification number);amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;; +28/10/2022;7065;EU.3698.4;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange and associated also with Khairullah Barakzai. Belongs to Barakzai tribe. Father’s name is Hajji ‘Abd-al-Manaf. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4998005);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;585629 (id-National identification card) ((national identification number));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;AF;;803;EN;(national identification number);amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;; +28/10/2022;7066;EU.3701.11;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan. Belongs to Barakzai tribe. Father's name is Haji Khudai Nazar. Alternative father's name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4722167);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Khairullah Barakzai Khudai Nazar;;;Haji;Co-owner of Haji Khairullah Haji Sattar Money Exchange;16367;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7066;EU.3701.11;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan. Belongs to Barakzai tribe. Father's name is Haji Khudai Nazar. Alternative father's name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4722167);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Khairullah;;;;;16368;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7066;EU.3701.11;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan. Belongs to Barakzai tribe. Father's name is Haji Khudai Nazar. Alternative father's name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4722167);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Khair Ullah;;;;;16369;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7066;EU.3701.11;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan. Belongs to Barakzai tribe. Father's name is Haji Khudai Nazar. Alternative father's name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4722167);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Kheirullah;;;;;16370;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7066;EU.3701.11;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan. Belongs to Barakzai tribe. Father's name is Haji Khudai Nazar. Alternative father's name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4722167);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Karimullah;;;;;16371;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7066;EU.3701.11;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan. Belongs to Barakzai tribe. Father's name is Haji Khudai Nazar. Alternative father's name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4722167);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Khair Mohammad;;;;;16372;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7066;EU.3701.11;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan. Belongs to Barakzai tribe. Father's name is Haji Khudai Nazar. Alternative father's name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4722167);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta, Baluchistan Province;Abdul Manan Chowk, Pashtunabad;;;;;NO;;PK;PAKISTAN;2648;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7066;EU.3701.11;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan. Belongs to Barakzai tribe. Father's name is Haji Khudai Nazar. Alternative father's name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4722167);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;NO;GREGORIAN;;;;Zumbaleh village, Nahr-e Saraj District, Helmand Province;AF;AFGHANISTAN;1916;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7066;EU.3701.11;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan. Belongs to Barakzai tribe. Father's name is Haji Khudai Nazar. Alternative father's name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4722167);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;NO;GREGORIAN;;;;Mirmadaw village, Gereshk District, Helmand Province;AF;AFGHANISTAN;1917;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7066;EU.3701.11;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan. Belongs to Barakzai tribe. Father's name is Haji Khudai Nazar. Alternative father's name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4722167);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;NO;GREGORIAN;;;;Qilla Abdullah, Baluchistan Province;PK;PAKISTAN;1918;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7066;EU.3701.11;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan. Belongs to Barakzai tribe. Father's name is Haji Khudai Nazar. Alternative father's name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4722167);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BP4199631 (passport-National passport) (valid to 2014-06-25)(pakistan passport, expires on 25 june 2014, officially cancelled as of 2013 .);NO;NO;NO;NO;NO;;;;2014-06-25;;;passport;National passport;;PK;;804;EN;pakistan passport, expires on 25 june 2014, officially cancelled as of 2013 .;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;7066;EU.3701.11;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Co-owner of Haji Khairullah Haji Sattar Money Exchange (TAe.010) and associated also with Abdul Satar Abdul Manan. Belongs to Barakzai tribe. Father's name is Haji Khudai Nazar. Alternative father's name is Nazar Mohammad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/ notice/search/un/4722167);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5440005229635 (id-National identification card) (national identification number, officially cancelled as of 2013);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;PK;;805;EN;national identification number, officially cancelled as of 2013;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Khairullah Haji Sattar money exhange;;;;;16373;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Khairullah-Haji Sattar Sarafi;;;;;16374;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Khairullah and Abdul Sattar and Company;;;;;16375;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Hai Khairullah Money Exchange;;;;;16376;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Khair Ullah Money Service;;;;;16377;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Salam Hawala;;;;;16378;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Hakim Hawala;;;;;16379;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Alim Hawala;;;;;16380;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Мрежа от обменни бюра Haji Khairullah Haji Sattar;BG;;;;16390;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Společnost zabývající se převody peněz Haji Khairullah Haji Sattar;CS;;;;16393;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ανταλλακτήρια συναλλάγματος Haji Khairullah Haji Sattar;EL;;;;16394;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Agencia de cambio Haji Khairullah Haji Sattar;ES;;;;16399;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Agencia de cambio Haji Khairullah;ES;;;;16400;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Servicios monetarios Haji Khair Ullah;ES;;;;16401;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ufficio cambi Haji Khairullah Haji Sattar;IT;;;;16402;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Khairullah e Abdul Sattar & Co;IT;;;;16403;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ufficio cambi Haji Khairullah;IT;;;;16404;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Servizio finanziario Haji Khair Ullah;IT;;;;16405;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Menjalnica Haji Khairullah Haji Sattar;SL;;;;16407;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Khairullah Haji Sattar money exhange -rahanvaihtotoimisto;FI;;;;16408;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Sarafi-yi Haji Khairullah Haji Satar Haji Esmatullah;;;;;16856;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Kandahari Bazaar, Quetta City, Baluchistan Province;Branch Office 1 Chohar Mir Road;;;;;NO;;PK;PAKISTAN;2297;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta, Baluchistan Province;Branch Office 1, Room number 1 Abdul Sattar Plaza, Hafiz Saleem Street, Munsafi Road;;;;;NO;;PK;PAKISTAN;2298;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta, Baluchistan Province;Branch Office 1, Shop number 3 Dr Bano Road;;;;;NO;;PK;PAKISTAN;2299;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta, Baluchistan Province;Branch Office 1, Office number 3 Near Fatima Jinnah Road, Dr Bano Road;;;;;NO;;PK;PAKISTAN;2300;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta, Baluchistan Province;Branch Office 1 Kachara Road, Nasrullah Khan Chowk;;;;;NO;;PK;PAKISTAN;2301;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta, Baluchistan Province;Branch Office 1 Wazir Mohammad Road;;;;;NO;;PK;PAKISTAN;2302;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Peshawar, Khyber Paktunkhwa Province;Branch Office 2;;;;;NO;;PK;PAKISTAN;2303;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Lahore, Punjab Province;Branch Office 3 Moishah Chowk Road;;;;;NO;;PK;PAKISTAN;2304;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Karachi, Sindh Province;Branch Office 4;;;;;NO;;PK;PAKISTAN;2305;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Chaman, Baluchistan Province;Branch Office 5, 2 Larran Road;;;;;NO;;PK;PAKISTAN;2306;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Chaman, Baluchistan Province;Branch Office 5 Chaman Central Bazaar;;;;;NO;;PK;PAKISTAN;2307;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Kabul;Branch Office 6, Shop number 237 Shah Zada Market (also known as Sarai Shahzada), Puli Khishti area, Police District 1;;;;;NO;PHONE[+93-202-103386, +93-202-101714, 0202-104748, Mobile: +93-797-059059, +93-702-222222,]\nEMAIL[helmand_exchange_msp@ yahoo.com]\n(Telephone: +93-202-103386, +93-202-101714, 0202-104748, Mobile: +93-797-059059, +93-702-222222,);AF;AFGHANISTAN;2308;EN;Telephone: +93-202-103386, +93-202-101714, 0202-104748, Mobile: +93-797-059059, +93-702-222222,;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Kandahar City, Kandahar Province;Branch Office 7, Shops number 21 and 22, 2nd Floor Kandahar City Sarafi Market;;;;;NO;;AF;AFGHANISTAN;2310;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Kandahar City, Kandahar Province;Branch Office 7, New Sarafi Market, 2nd Floor;;;;;NO;;AF;AFGHANISTAN;2311;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Kandahar City, Kandahar Province;Branch Office 7 Safi Market;;;;;NO;;AF;AFGHANISTAN;2312;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Gereshk City, Nahr-e Saraj District, Helmand Province;Branch Office 8;;;;;NO;;AF;AFGHANISTAN;2313;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Lashkar Gah, Lashkar Gah District, Helmand Province;Branch Office 9 Lashkar Gah Bazaar;;;;;NO;;AF;AFGHANISTAN;2314;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Lashkar Gah District, Helmand Province;Branch Office 9, Haji Ghulam Nabi Market, 2nd Floor;;;;;NO;;AF;AFGHANISTAN;2315;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Herat City, Herat Province;Branch Office 10, Suite numbers 196-197, 3rd Floor Khorasan Market;;;;;NO;;AF;AFGHANISTAN;2316;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;District 5, Herat City, Herat Province;Branch Office 10 Khorasan Market, Shahre Naw;;;;;NO;;AF;AFGHANISTAN;2317;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Zaranj District, Nimroz Province;Branch Office 11 Sarafi Market;;;;;NO;;AF;AFGHANISTAN;2318;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Nimroz Province;Branch Office 11 Ansari Market, 2nd Floor;;;;;NO;;AF;AFGHANISTAN;2319;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Wesh, Spin Boldak District;Branch Office 12 Sarafi Market;;;;;NO;;AF;AFGHANISTAN;2320;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Farah;Branch Office 13 Sarafi Market;;;;;NO;;AF;AFGHANISTAN;2321;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Dubai;Branch Office 14;;;;;NO;;AE;UNITED ARAB EMIRATES;2322;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Zahedan;Branch Office 15;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);2323;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Zabul;Branch Office 16;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);2324;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;044 (tradelic-Trade license) (Afghan Money Service Provider License Number);NO;NO;NO;NO;NO;;;;;;;tradelic;Trade license;;AF;;111258;EN;Afghan Money Service Provider License Number;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3187777 (fiscalcode-National Fiscal Code) (Pakistan National Tax Number);NO;NO;NO;NO;NO;;;;;;;fiscalcode;National Fiscal Code;;PK;;111259;EN;Pakistan National Tax Number;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0980338 (fiscalcode-National Fiscal Code) (Pakistan National Tax Number);NO;NO;NO;NO;NO;;;;;;;fiscalcode;National Fiscal Code;;PK;;111260;EN;Pakistan National Tax Number;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;7067;EU.3726.32;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Associated with Abdul Sattar Abdul Manan and Khairullah Barakzai Khudai Nazar. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5235593\n\nHaji Khairullah Haji Sattar Money Exchange (HKHS) is co-owned by Abdul Satar Abdul Manan and Khairullah Barakzai Khudai Nazar.);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1774308 (fiscalcode-National Fiscal Code) ";NO;NO;NO;NO;NO;;;;;;;fiscalcode;National Fiscal Code;;PK;;111261;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Roshan money exchange;;;;;16381;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Roshan Sarafi;;;;;16382;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Roshan Trading Company;;;;;16383;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Rushaan Trading Company;;;;;16384;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Roshan Shirkat;;;;;16385;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Maulawi Ahmed Shah Hawala;;;;;16386;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Ahmed Shah Hawala;;;;;16387;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Ahmad Shah Hawala;;;;;16388;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ahmad Shah Hawala;;;;;16389;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Мрежа от обменни бюра Roshan money exchange;BG;;;;16391;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Společnost zabývající se převody peněz Roshan;CS;;;;16392;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ανταλλακτήρια συναλλάγματος Roshan;EL;;;;16395;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;εμπορική εταιρεία Roshan;EL;;;;16396;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;εμπορική εταιρεία Rushaan;EL;;;;16397;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Agencia de cambio Roshan;ES;;;;16398;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ufficio cambi Roshan;IT;;;;16406;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Roshan money exchange -rahanvaihtotoimisto;FI;;;;16409;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta, Baluchistan Province;Branch Office 1, Shop number 1584 Furqan (variant Fahr Khan) Center, Chalhor Mal Road;;;;;NO;;PK;PAKISTAN;2325;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta, Baluchistan Province;Branch Office 1, Flat number 4 Furqan Center, Jamaluddin Afghani Road;;;;;NO;;PK;PAKISTAN;2326;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta, Baluchistan Province;Branch Office 1, Office number 4, 2nd Floor Muslim Plaza Building, Doctor Banu Road;;;;;NO;;PK;PAKISTAN;2327;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta, Baluchistan Province;Branch Office 1 Cholmon Road;;;;;NO;;PK;PAKISTAN;2328;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta, Baluchistan Province;Branch Office 1, Shop number 1, 1st Floor Kadari Place, Abdul Samad Khan Street (next to Fatima Jena Road);;;;;NO;;PK;PAKISTAN;2329;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Garmser District, Helmand Province;Branch Office 2 Safar Bazaar;;;;;NO;;AF;AFGHANISTAN;2330;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Safar, Helmand Province;Branch Office 2 Main Bazaar;;;;;NO;;AF;AFGHANISTAN;2331;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Lashkar Gah, Helmand Province;Branch Office 3 Haji Ghulam Nabi Market;;;;;NO;;AF;AFGHANISTAN;2332;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Lashkar Gah, Helmand Province;Branch Office 3 Money Exchange Market;;;;;NO;;AF;AFGHANISTAN;2333;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Helmand Province;Branch Office 3 Lashkar Gah Bazaar;;;;;NO;;AF;AFGHANISTAN;2334;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Garmser District, Helmand Province;Branch Office 4 Hazar Joft;;;;;NO;;AF;AFGHANISTAN;2335;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Marjah District, Helmand Province;Branch Office 5 Ismat Bazaar;;;;;NO;;AF;AFGHANISTAN;2336;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Zaranj, Nimruz Province;Branch Office 6;;;;;NO;;AF;AFGHANISTAN;2337;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;District number 1, Kandahar City, Kandahar Province;Branch Office 7, Suite number 8, 4th Floor Sarafi Market;;;;;NO;;AF;AFGHANISTAN;2338;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Kandahar City, Kandahar District, Kandahar Province;Branch Office 7, Shop number 25, 5th Floor Sarafi Market;;;;;NO;;AF;AFGHANISTAN;2339;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Lakri City, Helmand Province;Branch Office 8;;;;;NO;;AF;AFGHANISTAN;2340;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Gerd-e-Jangal, Chaghi District, Baluchistan Province;Branch Office 9;;;;;NO;;PK;PAKISTAN;2341;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Chaghi, Chaghi District, Baluchistan Province;Branch Office 10;;;;;NO;;PK;PAKISTAN;2342;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Waish Border, Spin Boldak District, Kandahar Province;Branch Office 11 Aziz Market, in front of Azizi Bank;;;;;NO;;AF;AFGHANISTAN;2343;EN;;amendment;commission;2012-07-17;2012-07-16;643/2012 (OJ L187);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:187:0013:0017:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7068;EU.3737.95;;2012-06-29;;(Date of UN designation: 2012-06-29)\n(Owned by Ahmed Shah Noorzai Obaidullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282182);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta, Baluchistan Provinc;Branch Office 1 Munsafi Road;;;;;NO;;PK;PAKISTAN;111264;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7069;EU.2855.34;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sha’afiq MASA;;M;Brigadier General;Head of Branch 215 (Damascus) of the army's intelligence service;16410;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7069;EU.2855.34;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sha'afiq MASSA;;;;;17455;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7069;EU.2855.34;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Shafiq MASA;;;;;17456;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7069;EU.2855.34;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Shafik MASA;;;;;17457;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7069;EU.2855.34;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Shafik MASSA;;;;;123969;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7069;EU.2855.34;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Shafiq MASSA;;;;;123970;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7069;EU.2855.34;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;شفيق ماسا;AR;M;;;124654;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7069;EU.2855.34;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;;Al-Zara (Hama);SY;SYRIAN ARAB REPUBLIC;123968;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7070;EU.2856.96;;;Date of designation: 24.07.2012;(Designation details: Date of designation: 24.07.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Burhan QADOUR;;M;Brigadier General;Former head of Branch 291 (Damascus) of the army's intelligence service.;16411;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7070;EU.2856.96;;;Date of designation: 24.07.2012;(Designation details: Date of designation: 24.07.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Burhan QADDOUR;;;;;17458;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7070;EU.2856.96;;;Date of designation: 24.07.2012;(Designation details: Date of designation: 24.07.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Burhan QADDUR;;;;;17459;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7070;EU.2856.96;;;Date of designation: 24.07.2012;(Designation details: Date of designation: 24.07.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;برهان قدور;AR;M;;;124655;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7071;EU.2857.61;;;;(Date of listing: 24.7.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Salah HAMAD;;M;Brigadier General;Deputy Head of Branch 291 of the army's intelligence service;16413;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7071;EU.2857.61;;;;(Date of listing: 24.7.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;صلاح حمد;AR;M;;;124656;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7072;EU.2858.26;;;;(Date of listing: 24.7.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad KHALLOUF;;M;Brigadier General;Former (2009‐2014) Head of Branch 235 a.k.a. ‘Palestine’ (Damascus) of the army’s intelligence service;16414;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7072;EU.2858.26;;;;(Date of listing: 24.7.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed KHALLOUF;;;;;16415;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7072;EU.2858.26;;;;(Date of listing: 24.7.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abou Ezzat;;;;;16416;EN;;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7072;EU.2858.26;;;;(Date of listing: 24.7.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد خلوف;AR;M;;;124657;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7073;EU.2864.70;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Riad AL-AHMED;;M;Major General;Deputy Head of Latakia Branch of the army's intelligence service;16417;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7073;EU.2864.70;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Riyad AL-AHMED;;;;;17468;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7073;EU.2864.70;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Riad AL-AHMAD;;;;;17469;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7073;EU.2864.70;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Riyad AL-AHMAD;;;;;123971;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7073;EU.2864.70;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;رياض الأحمد;AR;M;;;124658;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7074;EU.2865.35;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Abdul-Salam Fajr MAHMOUD;;M;Brigadier General;Head of the Security Committee of \nthe Southern Region since December 2020. Former Head of the Bab Tuma (Damascus) Branch of the Syrian Air Force Intelligence Service. Former Head of the Mezze Airport Air Force intelligence investigation branch.;16418;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7074;EU.2865.35;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;عبد السلام فجر محمود;AR;M;;;124659;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7074;EU.2865.35;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;129686;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7075;EU.2866.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jawdat AL-AHMED;;M;Brigadier General;Head of the Homs Branch of the air force's intelligence service;16419;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7075;EU.2866.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jawdat AL-AHMAD;;;;;17465;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7075;EU.2866.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;جودت الأحمد;AR;M;;;124660;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7075;EU.2866.0;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;Qardaha, Lattakia province;;SY;SYRIAN ARAB REPUBLIC;123972;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7076;EU.2877.63;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Qusay Ibrahim MIHOUB;;M;Colonel;High‐ranking officer at the Syrian Air Force Intelligence Ser­vice. Former Head of the Deraa branch of the air force's intel­ligence service;16420;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7076;EU.2877.63;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;قصي إبراهيم ميهوب;AR;M;;;124661;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7076;EU.2877.63;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;Derghamo, Jableh, Lattakia;;SY;SYRIAN ARAB REPUBLIC;123973;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7077;EU.2878.28;;;24.7.2012;(Designation details: 24.7.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suhail AL-ABDULLAH;;M;Brigadier General;Head of the Latakia Branch of the Syrian Air Force Intelligence Service;16421;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7077;EU.2878.28;;;24.7.2012;(Designation details: 24.7.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suheil AL-ABDULLAH;;;;;17167;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7077;EU.2878.28;;;24.7.2012;(Designation details: 24.7.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suhail AL-Abdallah;;;;;17168;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7077;EU.2878.28;;;24.7.2012;(Designation details: 24.7.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suheil AL-Abdallah;;;;;120241;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7077;EU.2878.28;;;24.7.2012;(Designation details: 24.7.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;سهيل العبدالله;AR;;;;125069;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7078;EU.2879.90;;;;(Date of listing: 24.7.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khudr KHUDR;;M;Brigadier General;Head of the Latakia branch of the General Intelligence Directorate;16422;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7078;EU.2879.90;;;;(Date of listing: 24.7.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;خضر خضر;AR;M;;;124663;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7079;EU.3107.11;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ibrahim MA'ALA;;M;Brigadier General;Head of Branch 285 (Damascus) of the General Intelligence Directorate (replaced Brigadier General Hussam Fendi at the end of 2011).;16423;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7079;EU.3107.11;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ibrahim MAALA;;;;;17403;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7079;EU.3107.11;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ibrahim MAALE;;;;;17404;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7079;EU.3107.11;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ibrahim MA'LA;EN;;;;105223;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7079;EU.3107.11;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;ابراهيم معلى;AR;M;;;124664;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7080;EU.2880.18;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Firas AL-HAMED;;M;Brigadier General;Head of branch 318 (Homs) of the General Intelligence Directorate;16424;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7080;EU.2880.18;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Firas AL-HAMID;;;;;17169;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7080;EU.2880.18;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;فراس الحامد;AR;M;;;124665;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;LUQA;Hussam;;Hussam LUQA;;M;Major General;Former Head of the Security Committee of the Southern Region from 2018 to 2020. Former Head of the General Security Directorate. From April 2012 to 2 December.2018, head of the Homs branch of the Political Security Directorate (succeeded Brigadier General. Nasr al-Ali). Since 3 December.2018, head of the Political Security Directorate. Director of the General Intelligence Department since 2019.;16425;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Husam LUQA;;M;;;17171;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Housam LUQA;;M;;;17172;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Houssam LUQA;;M;;;17173;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;LOUQA;Hussam;;Hussam LOUQA;;M;;;17174;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Hussam LOUCA;;M;;;17175;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Hussam LOUKA;;M;;;17176;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Hussam LUKA;;M;;;17177;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Husam LOUQA;;M;;;120242;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Husam LOUCA;;M;;;120243;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Husam LOUKA;;;;;120244;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Husam LUKA;;M;;;120245;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Housam LOUQA;;M;;;120246;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Housam LOUCA;;;;;120247;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Housam LOUKA;;M;;;120248;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Housam LUKA;;;;;120249;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Houssam LOUQA;;M;;;120250;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Houssam LOUCA;;M;;;120251;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Houssam LOUKA;;M;;;120252;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Houssam LUKA;;M;;;120253;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;حسام لوقا;AR;M;;;124666;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7081;EU.2881.80;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;Damascus;Damascus;SY;SYRIAN ARAB REPUBLIC;120254;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7082;EU.2882.45;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Taha TAHA;;M;Brigadier General;Deputy assistant to the Head of the \nPolitical Security Division. Former site manager of the Latakia branch of the Political Security Directorate.;16426;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7082;EU.2882.45;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;طه طه;AR;M;;;124667;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7084;EU.2888.29;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Bassel BILAL;;M;;Police officer at Idlib central prison;16429;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7084;EU.2888.29;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Basel BILAL;;;;;17178;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7084;EU.2888.29;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;باسل بلال;AR;M;;;124680;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7085;EU.2889.91;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ahmad KAFAN;;M;;Police officer at Idlib central prison;16430;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7085;EU.2889.91;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ahmed KAFAN;;;;;17179;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7085;EU.2889.91;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;أحمد كافان;AR;M;;;124681;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7086;EU.2890.19;;;;(Date of listing: 24.7.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Bassam AL-MISRI;;M;;Police officer at Idlib central prison;16431;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7086;EU.2890.19;;;;(Date of listing: 24.7.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;بسام المصري;AR;M;;;124682;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7087;EU.2891.81;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ahmed AL-JARROUCHEH;;M;Major General;Former head of the foreign branch of General Intelligence (Branch 279).;16432;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7087;EU.2891.81;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ahmad AL-JARROUCHEH;;;;;17180;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7087;EU.2891.81;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ahmed AL-JAROUSHA;;;;;17181;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7087;EU.2891.81;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ahmed AL-JAROUSHEH;;;;;17182;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7087;EU.2891.81;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ahmed AL-JAROUCHA;;;;;17183;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7087;EU.2891.81;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ahmed AL-JAROUCHAH;;;;;17184;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7087;EU.2891.81;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ahmed AL-JAROUCHEH;;;;;17185;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7087;EU.2891.81;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ahmad AL-JAROUSHA;;;;;120255;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7087;EU.2891.81;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ahmad AL-JAROUSHEH;;;;;120256;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7087;EU.2891.81;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ahmad AL-JAROUCHA;;;;;120257;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7087;EU.2891.81;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ahmad AL-JAROUCHAH;;M;;;120258;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7087;EU.2891.81;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ahmad AL-JAROUCHEH;;;;;120259;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7087;EU.2891.81;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;احمد الجاروشة;AR;M;;;124683;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7087;EU.2891.81;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;1919;EN;;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7088;EU.2892.46;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Michel KASSOUHA;;M;;Member of the Syrian security services since the early 1970s. Since March 2006, has been responsible for public re­lations of Branch 273 of the Syrian General Intelligence Di­rectorate.;16433;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7088;EU.2892.46;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ahmed Salem;;;;;16434;EN;;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7088;EU.2892.46;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ahmed Salem Hassan;;;;;16435;EN;;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7088;EU.2892.46;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Kasouha;Michel;;Michel Kasouha;;;;;17189;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7088;EU.2892.46;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ميشال كسوحة;AR;M;;;124684;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7088;EU.2892.46;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-02-01;1;2;1948;;;NO;GREGORIAN;;;;;00;UNKNOWN;1920;EN;;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7089;EU.2894.73;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ghassan Jaoudat ISMAIL;;M;General;Head of the Syrian Air Force Intelligence Service since 2019. Former deputy director of the Air Force Intelligence Service and previously in charge of the missions branch of the Air Force Intelligence Service.;16436;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7089;EU.2894.73;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ghassan Jaoudat ISMAEL;;M;;;17191;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7089;EU.2894.73;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;غسان جودة إسماعيل;AR;M;;;124685;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7089;EU.2894.73;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;Darkoush, Tartous region;;Junaynat Ruslan;SY;SYRIAN ARAB REPUBLIC;1921;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7090;EU.2899.92;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Amer AL-ACHI;;M;Major General;Former Governor of the Sweida \nGovernorate, appointed by President Bashar al-Assad in July 2016. Former Head of the intelligence branch of the Syrian Air Force Intelligence Service (2012-2016).;16437;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7090;EU.2899.92;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;al Ashi;Amis;;Amis al Ashi;;;;;16438;EN;;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7090;EU.2899.92;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;Aachi;Ammar;;Ammar Aachi;;;;;16439;EN;;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7090;EU.2899.92;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;Ashi;Amer;;Amer Ashi;;;;;16440;EN;;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7090;EU.2899.92;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;al-Achi;Amer;Ibrahim;Amer Ibrahim al-Achi;;;;;116861;EN;;amendment;council;2018-05-29;2018-05-30;2018/774 (OJ L131);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:131:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7090;EU.2899.92;;2012-07-24;;(Date of UN designation: 2012-07-24);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;عامر ابراهيم العشي;AR;M;;;124686;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7091;EU.2900.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Ali NASR;;M;General;Close to Maher al‐Assad, younger brother of President Bashar al‐Assad. Most of his career has been spent in the Republican Guard. In 2010 he joined the internal branch (Branch 251) of the General Intelligence Directorate.;16441;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7091;EU.2900.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Ali Naser;Mohammed;;Mohammed Ali Naser;;;;;16442;EN;;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7091;EU.2900.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Ali NASR;;;;;17192;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7091;EU.2900.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Ali NASR;;;;;17193;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7091;EU.2900.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Ali NASR;;;;;17195;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7091;EU.2900.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد علي نصر;AR;M;;;124687;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7091;EU.2900.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;YES;GREGORIAN;;;;;00;UNKNOWN;1922;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7092;EU.2901.37;;;;(Date of listing: 24.7.2012.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Issam HALLAQ;;M;General;Air Force Chief of Staff since 2010.;16443;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7092;EU.2901.37;;;;(Date of listing: 24.7.2012.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;عصام حلاق;AR;M;;;124688;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7093;EU.2902.2;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ezzedine ISMAEL;;M;General (retired);Retired general, longstanding member of the managerial staff of the Air Force Intelligence Service, of which he became the head in the early 2000s. Was appointed political and security adviser to the President in 2006.;16445;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7093;EU.2902.2;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ezzedine ISMAIL;;;;;17198;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7093;EU.2902.2;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;عزالدين اسماعيل;AR;M;;;124689;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7093;EU.2902.2;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947;;;YES;GREGORIAN;;;Bastir, Jableh region;;SY;SYRIAN ARAB REPUBLIC;1924;EN;Date of birth: middle of the 1940s (prob­ably 1947);amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7094;EU.2905.91;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Samir JOUMAA;;M;;For almost 20 years he has been head of the office of Mo­hammad Nassif Kheir Bek, one of the main security advisers of President Bashar al‐Assad (and officially deputy to the Vice President, Farouk al‐Sharaa).;16448;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7094;EU.2905.91;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abou Sami;;;;;17203;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7094;EU.2905.91;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sameer JOUMAA;;;;;17204;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7094;EU.2905.91;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Samir JUMAA;;;;;17205;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7094;EU.2905.91;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Samir JUM'A;;;;;17206;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7094;EU.2905.91;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Samir JOUM'A;;;;;17207;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7094;EU.2905.91;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sameer JOUM'A;;;;;123974;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7094;EU.2905.91;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sameer JUM'A;;;;;123975;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7094;EU.2905.91;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sameer JUMAA;;;;;123976;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7094;EU.2905.91;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;سمير جمعة;AR;M;;;124690;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7094;EU.2905.91;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;;;YES;GREGORIAN;;;;;00;UNKNOWN;1925;EN;;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7095;EU.2859.88;;;;(Date of listing: 24.07.2012);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Drex Technologies S.A.;;;;;16450;EN;;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7095;EU.2859.88;;;;(Date of listing: 24.07.2012);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Incorporation date: 4.7.2000);00;UNKNOWN;2344;EN;Incorporation date: 4.7.2000;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7095;EU.2859.88;;;;(Date of listing: 24.07.2012);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(394678 (Incorporation number));00;UNKNOWN;2345;EN;394678 (Incorporation number);amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7095;EU.2859.88;;;;(Date of listing: 24.07.2012);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Director: Rami Makhlouf);00;UNKNOWN;2353;EN;Director: Rami Makhlouf;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7095;EU.2859.88;;;;(Date of listing: 24.07.2012);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Registered agent: Mossack Fonseca & Co (BVI) Ltd);00;UNKNOWN;2354;EN;Registered agent: Mossack Fonseca & Co (BVI) Ltd;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7096;EU.2860.16;;;;(Date of listing: 24.07.2012);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Cotton Marketing Organisation;;;;;16451;EN;;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7096;EU.2860.16;;;;(Date of listing: 24.07.2012);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Aleppo;Bab Al-Faraj;P.O. Box 729;;;;NO;WEB[www.cmo.gov.sy]\nPHONE[+963 21 2239495/6/7/8]\nEMAIL[Cmo‐aleppo@mail.sy];SY;SYRIAN ARAB REPUBLIC;2346;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7097;EU.2861.78;;;;(Date of listing: 24.7.2012);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syrian Arab Airlines;;;;;16452;EN;;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7097;EU.2861.78;;;;(Date of listing: 24.7.2012);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;SAA;;;;;16453;EN;;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7097;EU.2861.78;;;;(Date of listing: 24.7.2012);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syrian Air;;;;;16454;EN;;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7097;EU.2861.78;;;;(Date of listing: 24.7.2012);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Líneas Aéreas Árabes Sirias;ES;;;;16455;EN;;amendment;commission;2012-07-24;2012-07-24;673/2012 (OJ L196);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:196:0008:0011:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7097;EU.2861.78;;;;(Date of listing: 24.7.2012);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Al-Mohafazeh Square;P.O. Box 417;;;;NO;PHONE[+963 11 2240774];SY;SYRIAN ARAB REPUBLIC;2351;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7126;EU.3002.27;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Qadri JAMEEL;;;;;16514;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7126;EU.3002.27;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Qadri JAMIL;;M;Dr.;Former Vice Prime Minister for Economic Affairs, former Minister of Domestic Trade and Consumer Protection.;16515;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7126;EU.3002.27;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Kadri JAMIL;;;;;17208;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7126;EU.3002.27;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Kadri JAMEEL;;;;;17209;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7126;EU.3002.27;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;قدري جميل;AR;M;;;124691;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7126;EU.3002.27;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;123977;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Abdul-Sattar AL SAYED;;M;Dr.;Minister of Religious Endowments;16519;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Abdul-Sattar AL SAYED;;;;;17270;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Abdul-Sattar AL SAYED;;;;;17271;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Abdul-Sattar AL SAYED;;;;;17272;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Abd al-Sattar AL SAYED;;;;;17273;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Abdul-Sattar AL SAYYED;;;;;17274;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Abd al-Sattar AL SAYED;;;;;123982;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Abd al-Sattar AL SAYED;;;;;123983;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Abd al-Sattar AL SAYED;;;;;123984;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Abdul-Sattar AL SAYYED;;;;;123985;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Abdul-Sattar AL SAYYED;;;;;123986;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Abdul-Sattar AL SAYYED;;;;;123987;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Abd al-Sattar AL SAYYED;;;;;123988;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Abd al-Sattar AL SAYYED;;;;;123989;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Abd al-Sattar AL SAYYED;;;;;123990;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Abd al-Sattar AL SAYYED;;;;;123991;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد عبد الستار السيد;AR;M;;;124694;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7129;EU.3010.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;NO;GREGORIAN;;;;Tartous;SY;SYRIAN ARAB REPUBLIC;123992;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7130;EU.3028.13;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Hala Mohammad AL NASSER;;F;;Former Minister of Tourism;16520;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7130;EU.3028.13;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Hala Mohamed AL NASSER;;F;;;17276;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7130;EU.3028.13;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Hala Muhammad AL NASSER;;F;;;17277;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7130;EU.3028.13;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Hala Mohammed AL NASSER;;F;;;17279;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7130;EU.3028.13;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;هالة محمد الناصر;AR;F;;;124695;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7130;EU.3028.13;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;Raqqa;SY;SYRIAN ARAB REPUBLIC;123981;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7131;EU.3995.4;;;;(Date of listing: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Bassam HANNA;;M;;Former Minister of Water Resources in power after May 2011.;16521;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7131;EU.3995.4;;;;(Date of listing: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;بسام حنا;AR;M;;;124696;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7131;EU.3995.4;;;;(Date of listing: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954;;;NO;GREGORIAN;;;;Aleppo;SY;SYRIAN ARAB REPUBLIC;119360;EN;;amendment;council;2018-05-29;2018-05-30;2018/774 (OJ L131);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:131:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7132;EU.3036.84;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Subhi Ahmad AL ABDALLAH;;M;;Former Minister of Agriculture and Agrarian Reform;16522;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7132;EU.3036.84;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Subhi Ahmad AL-ABDULLAH;;;;;17288;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7132;EU.3036.84;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;صبحي احمد العبدالله;AR;M;;;124697;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahiya MOALLA;;M;Dr.;Former Minister of Higher Education;16569;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahiya MOALLA;;;;;17292;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahiya MOALLA;;;;;17294;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahiya MOALLA;;;;;17295;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yehya MOALLA;;;;;17298;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahya MOALLA;;;;;17306;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yihya MOALLA;;;;;17307;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yihia MOALLA;;;;;17308;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahia MOALLA;;;;;17309;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahiya MU'LA;;;;;17310;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahiya MA'LA;;;;;17311;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahiya MUALA;;;;;17312;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahiya MAALA;;;;;17313;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahiya MALA;;;;;17314;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahia MOALLA;;;;;124007;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yihia MOALLA;;;;;124008;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yihya MOALLA;;;;;124009;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahya MOALLA;;;;;124010;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yehya MOALLA;;;;;124011;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahia MOALLA;;;;;124012;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yihia MOALLA;;;;;124013;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahya MOALLA;;;;;124015;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yehya MOALLA;;;;;124016;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahia MOALLA;;;;;124017;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yihia MOALLA;;;;;124018;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yihya MOALLA;;;;;124019;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahya MOALLA;;;;;124020;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yehya MOALLA;;;;;124021;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahiya MU'LA;;;;;124126;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahiya MU'LA;;;;;124127;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahiya MU'LA;;;;;124128;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yehya MU'LA;;;;;124129;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yehya MU'LA;;;;;124130;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yehya MU'LA;;;;;124131;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yehya MU'LA;;;;;124132;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yihya MU'LA;;;;;124133;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yihya MU'LA;;;;;124134;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yihya MU'LA;;;;;124135;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yihya MU'LA;;;;;124136;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahya MU'LA;;;;;124137;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahya MU'LA;;;;;124138;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahya MU'LA;;;;;124139;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahya MU'LA;;;;;124140;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yihia MU'LA;;;;;124141;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yihia MU'LA;;;;;124142;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yihia MU'LA;;;;;124143;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yihia MU'LA;;;;;124144;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahia MU'LA;;;;;124145;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahia MU'LA;;;;;124146;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahia MU'LA;;;;;124147;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahia MU'LA;;;;;124148;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahia MA'LA;;;;;124149;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yihia MA'LA;;;;;124150;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yihya MA'LA;;;;;124151;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahya MA'LA;;;;;124152;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yehya MA'LA;;;;;124153;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yihya MOALLA;;;;;124154;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahia MA'LA;;;;;124155;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yihia MA'LA;;;;;124156;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yihya MA'LA;;;;;124157;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahya MA'LA;;;;;124158;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yehya MA'LA;;;;;124159;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahiya MA'LA;;;;;124160;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahia MA'LA;;;;;124161;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yihia MA'LA;;;;;124162;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yihya MA'LA;;;;;124163;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahya MA'LA;;;;;124164;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yehya MA'LA;;;;;124165;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahiya MA'LA;;;;;124166;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahia MA'LA;;;;;124167;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yihia MA'LA;;;;;124168;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yihya MA'LA;;;;;124169;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahya MA'LA;;;;;124170;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yehya MA'LA;;;;;124171;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahiya MA'LA;;;;;124172;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahia MUALA;;;;;124173;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yihia MUALA;;;;;124174;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yihya MUALA;;;;;124175;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahya MUALA;;;;;124176;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yehya MUALA;;;;;124177;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahiya MUALA;;;;;124178;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahia MUALA;;;;;124179;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yihia MUALA;;;;;124180;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yihya MUALA;;;;;124181;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahya MUALA;;;;;124182;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yehya MUALA;;;;;124183;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahia MUALA;;;;;124184;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yihia MUALA;;;;;124185;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yihya MUALA;;;;;124186;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahya MUALA;;;;;124187;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yehya MUALA;;;;;124188;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahiya MUALA;;;;;124189;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahia MUALA;;;;;124190;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yihia MUALA;;;;;124191;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yihya MUALA;;;;;124192;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahya MUALA;;;;;124193;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yehya MUALA;;;;;124194;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahiya MUALA;;;;;124195;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahia MAALA;;;;;124196;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yihia MAALA;;;;;124197;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yihya MAALA;;;;;124198;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahya MAALA;;;;;124199;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yehya MAALA;;;;;124200;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahiya MAALA;;;;;124201;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahia MAALA;;;;;124202;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yihia MAALA;;;;;124203;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yihya MAALA;;;;;124204;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahya MAALA;;;;;124205;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yehya MAALA;;;;;124206;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahia MAALA;;;;;124207;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yihia MAALA;;;;;124208;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yihya MAALA;;;;;124209;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahya MAALA;;;;;124210;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yehya MAALA;;;;;124211;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahiya MAALA;;;;;124212;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahia MAALA;;;;;124213;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yihia MAALA;;;;;124214;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yihya MAALA;;;;;124215;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahya MAALA;;;;;124216;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yehya MAALA;;;;;124217;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahiya MAALA;;;;;124218;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahia MALA;;;;;124219;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yihia MALA;;;;;124220;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yihya MALA;;;;;124221;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahya MALA;;;;;124222;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yehya MALA;;;;;124223;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Yahiya MALA;;;;;124224;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahia MALA;;;;;124225;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yihia MALA;;;;;124226;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yihya MALA;;;;;124227;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yahya MALA;;;;;124228;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Yehya MALA;;;;;124229;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahia MALA;;;;;124230;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yihia MALA;;;;;124231;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yihya MALA;;;;;124232;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahya MALA;;;;;124233;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yehya MALA;;;;;124234;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Yahiya MALA;;;;;124235;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahia MALA;;;;;124236;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yihia MALA;;;;;124237;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yihya MALA;;;;;124238;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahya MALA;;;;;124239;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yehya MALA;;;;;124240;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Yahiya MALA;;;;;124241;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد يحيى معل;AR;M;;;124698;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7133;EU.3037.49;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951;;;NO;GREGORIAN;;;;Lattakia;SY;SYRIAN ARAB REPUBLIC;124006;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7134;EU.3063.95;;;Date of designation: 16/10/2012;(Designation details: Date of designation: 16/10/2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hazwan AL WEZ;;M;Dr.;Former Minister of Education, appointed in July 2016.;16523;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7134;EU.3063.95;;;Date of designation: 16/10/2012;(Designation details: Date of designation: 16/10/2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hazwan AL WAZZ;;;;;17315;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7134;EU.3063.95;;;Date of designation: 16/10/2012;(Designation details: Date of designation: 16/10/2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;هزوان الوز;AR;M;;;124699;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamad Zafer MOHABAK;;M;Dr.;Former Minister of Economy and Foreign Trade;16524;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Zafer MOHABAK;;;;;17318;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Zafer MOHABAK;;;;;17319;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Zafer MOHABAK;;;;;17320;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Zafer MOHABAK;;;;;17326;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamad Dhafer MOHABAK;;;;;17328;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamad Zafer MOHABBAK;;;;;17329;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamad Zafer MUHABAK;;;;;17330;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamad Zafer MUHABBAK;;;;;17331;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Dhafer MOHABAK;;;;;124023;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Dhafer MOHABAK;;;;;124024;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Dhafer MOHABAK;;;;;124025;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Dhafer MOHABAK;;;;;124026;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Zafer MOHABBAK;;;;;124027;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Zafer MOHABBAK;;;;;124028;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Zafer MOHABBAK;;;;;124029;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Zafer MOHABBAK;;;;;124030;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Dhafer MOHABBAK;;;;;124031;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Dhafer MOHABBAK;;;;;124032;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Dhafer MOHABBAK;;;;;124033;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Dhafer MOHABBAK;;;;;124034;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamad Dhafer MOHABBAK;;;;;124035;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Zafer MUHABAK;;;;;124036;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Zafer MUHABAK;;;;;124037;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Zafer MUHABAK;;;;;124038;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Zafer MUHABAK;;;;;124039;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Dhafer MUHABAK;;;;;124040;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Dhafer MUHABAK;;;;;124041;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Dhafer MUHABAK;;;;;124042;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Dhafer MUHABAK;;;;;124043;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamad Dhafer MUHABAK;;;;;124044;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Zafer MUHABBAK;;;;;124045;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Zafer MUHABBAK;;;;;124046;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Zafer MUHABBAK;;;;;124047;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Zafer MUHABBAK;;;;;124048;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Dhafer MUHABBAK;;;;;124049;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Dhafer MUHABBAK;;;;;124050;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Dhafer MUHABBAK;;;;;124051;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Dhafer MUHABBAK;;;;;124052;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamad Dhafer MUHABBAK;;;;;124053;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد ظافر محبك;AR;M;;;124700;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7135;EU.3069.79;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1945;;;NO;GREGORIAN;;;;Alepp;SY;SYRIAN ARAB REPUBLIC;124022;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7136;EU.3996.66;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mahmoud Ibraheem SA'IID;;M;Dr.;Former Minister of Transport in power after May 2011;16525;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7136;EU.3996.66;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mahmoud Ibrahim SA'IID;;;;;17336;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7136;EU.3996.66;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mahmoud Ibraheem SAID;;;;;17337;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7136;EU.3996.66;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mahmoud Ibraheem SAEED;;;;;17340;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7136;EU.3996.66;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mahmoud Ibraheem SA'EED;;;;;17341;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7136;EU.3996.66;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mahmoud Ibrahim SA'EED;;;;;124055;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7136;EU.3996.66;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mahmoud Ibrahim SAID;;;;;124056;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7136;EU.3996.66;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mahmoud Ibrahim SAEED;;;;;124057;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7136;EU.3996.66;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمود ابراهيم سعيد;AR;M;;;124701;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7136;EU.3996.66;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;NO;GREGORIAN;;;;Lattakia;SY;SYRIAN ARAB REPUBLIC;124054;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7137;EU.2974.36;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Safwan AL ASSAF;;M;Dr.;Former Minister of Housing and Urban Development;16526;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7137;EU.2974.36;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;صفوان العساف;AR;M;;;124702;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7138;EU.2975.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yasser AL SIBA'II;;M;;Former Minister of Public Works;16527;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7138;EU.2975.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yaser AL SIBA'II;;;;;17343;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7138;EU.2975.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yasser AL-SIBAI;;;;;17345;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7138;EU.2975.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yasser AL-SIBA'I;;;;;17347;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7138;EU.2975.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yasser AL SIBAEI;;;;;17348;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7138;EU.2975.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yaser AL SIBAEI;;;;;124058;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7138;EU.2975.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yaser AL-SIBA'I;;;;;124059;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7138;EU.2975.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yaser AL-SIBAI;;;;;124060;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7138;EU.2975.1;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ياسر السباعي;AR;M;;;124703;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa’iid MA'THI Hneidi;;M;;Former Minister of Oil and Mineral Resources;16528;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa’id MA'THI Hneidi;;;;;17352;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa’eed MA'THI Hneidi;;;;;17354;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saeed MA'THI Hneidi;;;;;17356;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa’iid Mu’zi Hneidi;;;;;17357;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa’iid Mu'dhi Hneidi;;;;;17359;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa’iid Ma'dhi Hneidi;;;;;17361;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa’iid Ma'zi Hneidi;;;;;17363;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa’iid Maazi Hneidi;;;;;17365;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa'id Maazi Hneidi;;;;;124062;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa'id Ma'zi Hneidi;;;;;124063;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa'id Ma'dhi Hneidi;;;;;124064;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa'id Mu'dhi Hneidi;;;;;124065;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa'id Mu'zi Hneidi;;;;;124066;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa'eed Maazi Hneidi;;;;;124067;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa'eed Ma'zi Hneidi;;;;;124068;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa'eed Ma'dhi Hneidi;;;;;124069;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa'eed Mu'dhi Hneidi;;;;;124070;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sa'eed Mu'zi Hneidi;;;;;124071;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saeed Maazi Hneidi;;;;;124072;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saeed Ma'zi Hneidi;;;;;124073;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saeed Ma'dhi Hneidi;;;;;124074;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saeed Mu'dhi Hneidi;;;;;124075;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saeed Mu'zi Hneidi;;;;;124076;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7139;EU.2983.72;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;سعيد معدي هنيدي;AR;M;;;124780;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7140;EU.3769.28;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Lubana MUSHAWEH;;F;Dr.;Former Minister of Culture in power after May 2011;16529;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7140;EU.3769.28;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Lubanah MUSHAWEH;;;;;17371;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7140;EU.3769.28;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Lubana MSHAWEH;;;;;17372;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7140;EU.3769.28;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Lubana MSHAWWEH;;;;;17373;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7140;EU.3769.28;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Lubana MUSHAWWEH;;;;;17374;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7140;EU.3769.28;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;لبانة مشوح;AR;;;;125071;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7140;EU.3769.28;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Lubanah MUSHAWWEH;;;;;125072;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7140;EU.3769.28;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Lubanah MSHAWWEH;;;;;125073;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7140;EU.3769.28;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Lubanah MSHAWEH;;;;;125074;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7140;EU.3769.28;;;;(Date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;2012;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7141;EU.3003.89;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Jassem Mohammad ZAKARIA;;M;Dr.;Former Minister of Labour and Social Affairs;16530;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7141;EU.3003.89;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Jasem Mohammad ZAKARIA;;;;;17367;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7141;EU.3003.89;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Jassem Mohamed ZAKARIA;;;;;17368;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7141;EU.3003.89;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Jassem Muhammad ZAKARIA;;;;;17369;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7141;EU.3003.89;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Jassem Mohammed ZAKARIA;;;;;17370;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7141;EU.3003.89;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Jasem Mohammed ZAKARIA;;;;;124003;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7141;EU.3003.89;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Jasem Muhammad ZAKARIA;;;;;124004;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7141;EU.3003.89;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Jasem Mohamed ZAKARIA;;;;;124005;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7141;EU.3003.89;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;2011;EN;;amendment;commission;2013-04-23;2013-04-22;363/2013 (OJ L111);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0001:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7143;EU.3011.63;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Adnan Abdo AL SIKHNY;;M;Dr.;Former Minister of Industry;16532;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7143;EU.3011.63;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Adnan Abdou AL SIKHNY;;;;;17383;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7143;EU.3011.63;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Adnan Abdo AL-SIKHNI;;;;;17384;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7143;EU.3011.63;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Adnan Abdo AL-SEKHNY;;;;;17385;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7143;EU.3011.63;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Adnan Abdo AL-SEKHNI;;;;;17386;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7143;EU.3011.63;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Adnan Abdou AL-SEKHNI;;;;;124080;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7143;EU.3011.63;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Adnan Abdou AL-SEKHNY;;;;;124081;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7143;EU.3011.63;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Adnan Abdou AL-SIKHNI;;;;;124082;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7143;EU.3011.63;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;عدنان عبدو السخني;AR;M;;;124706;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7143;EU.3011.63;;;;;P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;;Aleppo;SY;SYRIAN ARAB REPUBLIC;119361;EN;;amendment;opoce;2018-07-04;2018-07-04;2018/774 (OJ L131) [corr. 04.07.2018];SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.167.01.0036.02.ENG&toc=OJ:L:2018:167:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7144;EU.3771.18;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Najm Hamad AL AHMAD;;M;;Former Minister of Justice in power after May 2011.;16533;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7144;EU.3771.18;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nejm Hamad AL AHMAD;;;;;17381;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7144;EU.3771.18;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Najm Hamad AL-AHMED;;;;;17382;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7144;EU.3771.18;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nejm Hamad AL-AHMED;;;;;123994;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7144;EU.3771.18;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;نجم حمد الأحمد;AR;M;;;124707;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7145;EU.3772.80;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abdul-Salam AL NAYEF;;M;Dr.;Former Minister of Health in power after May 2011.;16534;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7145;EU.3772.80;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;عبد السلام النايف;AR;M;;;124708;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7145;EU.3772.80;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959;;;NO;GREGORIAN;;;;Aleppo;SY;SYRIAN ARAB REPUBLIC;123993;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7146;EU.2904.29;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ali HADAR;;M;;Head of the National Reconciliation Agency and former State Minister for National Reconciliation Affairs. Chair of the Intifada wing of the Syrian Social Nationalist Party.;119560;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7146;EU.2904.29;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ali HAIDAR;;M;;;129687;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7146;EU.2904.29;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;123885;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7147;EU.3773.45;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nazeera Farah SARKEES;;F;Dr.;Former State Minister for Environmental Affairs, in power after May 2011;16536;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7147;EU.3773.45;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nazira Farah SARKEES;;;;;17387;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7147;EU.3773.45;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nadheera Farah SARKEES;;;;;17388;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7147;EU.3773.45;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nadhira Farah SARKEES;;;;;17389;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7147;EU.3773.45;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nazeera Farah SARKIS;;;;;17390;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7147;EU.3773.45;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;نظيرة فرح سركيس;AR;;;;125076;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7147;EU.3773.45;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nadhira Farah SARKIS;;;;;125077;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7147;EU.3773.45;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nadheera Farah SARKIS;;;;;125078;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7147;EU.3773.45;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nazira Farah SARKIS;;;;;125079;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7147;EU.3773.45;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;;;NO;GREGORIAN;;;;Aleppo;SY;SYRIAN ARAB REPUBLIC;125075;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7149;EU.3072.34;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Najm-eddin KHREIT;;M;;Former State Minister;16538;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7149;EU.3072.34;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Najm-eddin KHRAIT;;;;;17395;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7149;EU.3072.34;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nejm-eddin KHREIT;;;;;17396;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7149;EU.3072.34;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nejm-eddeen KHREIT;;;;;17397;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7149;EU.3072.34;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Najm-eddeen KHREIT;;;;;17398;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7149;EU.3072.34;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nejm-addin KHREIT;;;;;17399;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7149;EU.3072.34;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nejm-addeen KHREIT;;;;;17400;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7149;EU.3072.34;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Najm-addeen KHREIT;;;;;17401;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7149;EU.3072.34;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Najm-addin KHREIT;;;;;17402;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7149;EU.3072.34;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Najm-addin KHRAIT;;;;;124083;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7149;EU.3072.34;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Najm-addeen KHRAIT;;;;;124084;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7149;EU.3072.34;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nejm-addeen KHRAIT;;;;;124085;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7149;EU.3072.34;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nejm-addin KHRAIT;;;;;124086;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7149;EU.3072.34;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Najm-eddeen KHRAIT;;;;;124087;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7149;EU.3072.34;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nejm-eddeen KHRAIT;;;;;124088;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7149;EU.3072.34;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nejm-eddin KHRAIT;;;;;124089;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7149;EU.3072.34;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;نجم الدين خريت;AR;M;;;124710;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7150;EU.3790.55;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abdullah Khaleel HUSSEIN;;M;;Former State Minister in power after May 2011.;16539;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7150;EU.3790.55;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abdallah Khaleel HUSSEIN;;;;;17392;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7150;EU.3790.55;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abdullah Khalil HUSSEIN;;;;;17393;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7150;EU.3790.55;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abdullah Khaleel HUSSAIN;;;;;17394;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7150;EU.3790.55;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abdallah Khalil HUSSAIN;;;;;123995;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7150;EU.3790.55;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abdallah Khaleel HUSSAIN;;;;;123996;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7150;EU.3790.55;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abdullah Khalil HUSSAIN;;;;;123997;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7150;EU.3790.55;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abdallah Khalil HUSSEIN;;;;;123998;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7150;EU.3790.55;;2012-10-16;;(Date of UN designation: 2012-10-16);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;عبدالله خليل حسين;AR;M;;;124711;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7151;EU.3791.20;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jamal Sha’ban SHAHEEN;;M;;Former State Minister in power after May 2011;16540;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7151;EU.3791.20;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jamal Shaaban SHAHEEN;;;;;17391;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7151;EU.3791.20;;;;(date of listing: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;جمال شعبان شاهين;AR;M;;;124712;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7153;EU.2997.30;;;16.10.2012;(Designation details: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Razan OTHMAN;;F;;Wife of Rami Makhlouf, daughter of Waleed (alias Walid) Othman.;16545;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7153;EU.2997.30;;;16.10.2012;(Designation details: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;رزان عثمان;AR;;;;125080;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7153;EU.2997.30;;;16.10.2012;(Designation details: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-01-31;31;1;1977;;;NO;GREGORIAN;;;;Governorate of Latakia;SY;SYRIAN ARAB REPUBLIC;1971;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7153;EU.2997.30;;;16.10.2012;(Designation details: 16.10.2012);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"06090034007 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;845;EN;;amendment;commission;2012-11-30;2012-11-30;1117/2012 (OJ L330);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:330:0009:0011:en:PDF;;;;;;;;;;;;; +28/10/2022;7154;EU.2998.92;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Megatrade;;;;;16570;EN;;amendment;commission;2012-10-16;2012-10-16;944/2012 (OJ L282);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0009:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7154;EU.2998.92;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Aleppo Street;P.O. Box 5966;;;;NO;FAX[+963 11 4471081];SY;SYRIAN ARAB REPUBLIC;2393;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7155;EU.2999.57;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Expert Partners;;;;;16546;EN;;amendment;commission;2012-10-16;2012-10-16;944/2012 (OJ L282);SYR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0009:0015:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7155;EU.2999.57;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Rukn Addin, Saladin Street, Building 5;P.O. Box 7006;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2394;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7165;EU.3754.8;;;;(Date of UN designation: 25 July 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Aboud Rogo Mohammed;;;;;16571;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7165;EU.3754.8;;;;(Date of UN designation: 25 July 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Aboud Mohammad Rogo;;;;;16572;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7165;EU.3754.8;;;;(Date of UN designation: 25 July 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Aboud Seif Rogo;;;;;16573;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7165;EU.3754.8;;;;(Date of UN designation: 25 July 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Aboud Mohammed Rogo;;;;;16574;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7165;EU.3754.8;;;;(Date of UN designation: 25 July 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Sheikh Aboud Rogo;;;;;16575;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7165;EU.3754.8;;;;(Date of UN designation: 25 July 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Aboud Rogo Muhammad;;;;;16576;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7165;EU.3754.8;;;;(Date of UN designation: 25 July 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Aboud Rogo Mohamed;;;;;16577;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7165;EU.3754.8;;;;(Date of UN designation: 25 July 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-11-11;11;11;1960;;;NO;GREGORIAN;;;;Lamu Island;KE;KENYA;1932;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7165;EU.3754.8;;;;(Date of UN designation: 25 July 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-11-11;11;11;1967;;;NO;GREGORIAN;;;;Lamu Island;KE;KENYA;1933;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7165;EU.3754.8;;;;(Date of UN designation: 25 July 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-01-01;1;1;1969;;;NO;GREGORIAN;;;;Lamu Island;KE;KENYA;1934;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7165;EU.3754.8;;;;(Date of UN designation: 25 July 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-11-11;11;11;1969;;;NO;GREGORIAN;;;;Lamu Island;KE;KENYA;1937;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7166;EU.3755.70;;2012-08-23;;(Date of UN designation: 2012-08-23)\n(Date of UN designation: 23 August 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Abubaker Shariff Ahmed;;;;;16578;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7166;EU.3755.70;;2012-08-23;;(Date of UN designation: 2012-08-23)\n(Date of UN designation: 23 August 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Makaburi;;;;;16579;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7166;EU.3755.70;;2012-08-23;;(Date of UN designation: 2012-08-23)\n(Date of UN designation: 23 August 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Sheikh Abubakar Ahmed;;;;;16580;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7166;EU.3755.70;;2012-08-23;;(Date of UN designation: 2012-08-23)\n(Date of UN designation: 23 August 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Abu Makaburi Shariff;;;;;16581;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7166;EU.3755.70;;2012-08-23;;(Date of UN designation: 2012-08-23)\n(Date of UN designation: 23 August 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Abubaker Shariff;;;;;16582;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7166;EU.3755.70;;2012-08-23;;(Date of UN designation: 2012-08-23)\n(Date of UN designation: 23 August 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Abubakar Ahmed;;;;;16583;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7166;EU.3755.70;;2012-08-23;;(Date of UN designation: 2012-08-23)\n(Date of UN designation: 23 August 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;Majengo area, Mombasa;;;;;;NO;;KE;KENYA;2445;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7166;EU.3755.70;;2012-08-23;;(Date of UN designation: 2012-08-23)\n(Date of UN designation: 23 August 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;;;NO;GREGORIAN;;;;;KE;KENYA;1935;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7166;EU.3755.70;;2012-08-23;;(Date of UN designation: 2012-08-23)\n(Date of UN designation: 23 August 2012.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;NO;GREGORIAN;;;;;KE;KENYA;1936;EN;;amendment;commission;2012-10-16;2012-10-15;943/2012 (OJ L282);SOM;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:282:0006:0008:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7167;EU.3057.51;;;;(Date of designation referred to in Article 2a (4) (b): 18.10.2012);P;person;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;Bashir;Ayyub;;Ayyub Bashir;;;1. Qari, 2. Alhaj;;16589;EN;reportedly deceased in an airstrike in Chordar, Kunduz Province of Afghanistan in Dec. 2015.;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7167;EU.3057.51;;;;(Date of designation referred to in Article 2a (4) (b): 18.10.2012);P;person;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;Alhaj Qari Ayub Bashar;;;;;16590;EN;;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7167;EU.3057.51;;;;(Date of designation referred to in Article 2a (4) (b): 18.10.2012);P;person;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;Qari Muhammad Ayub;;;;;16591;EN;;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7167;EU.3057.51;;;;(Date of designation referred to in Article 2a (4) (b): 18.10.2012);P;person;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;;;;;;;;;;;;;;;;Mir Ali, North Waziristan Agency, Federal Administered Tribal Areas;;;;;;NO;;PK;PAKISTAN;2446;EN;;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7167;EU.3057.51;;;;(Date of designation referred to in Article 2a (4) (b): 18.10.2012);P;person;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;1938;EN;;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7167;EU.3057.51;;;;(Date of designation referred to in Article 2a (4) (b): 18.10.2012);P;person;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;1939;EN;;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7167;EU.3057.51;;;;(Date of designation referred to in Article 2a (4) (b): 18.10.2012);P;person;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;1940;EN;;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7167;EU.3057.51;;;;(Date of designation referred to in Article 2a (4) (b): 18.10.2012);P;person;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;1941;EN;;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7167;EU.3057.51;;;;(Date of designation referred to in Article 2a (4) (b): 18.10.2012);P;person;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UZ;;784;EN;;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF +28/10/2022;7167;EU.3057.51;;;;(Date of designation referred to in Article 2a (4) (b): 18.10.2012);P;person;amendment;commission;2018-07-23;2018-07-24;2018/1033 (OJ L185);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.185.01.0014.01.ENG&toc=OJ:L:2018:185:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;785;EN;;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF +28/10/2022;7168;EU.3073.96;;2012-10-18;;(Date of UN designation: 2012-10-18)\n(Date of designation referred to in Article 2a (4) (b): 18.10.2012.);P;person;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;Chaudhry;Aamir;Ali;Aamir Ali Chaudhry;;;;;16592;EN;;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7168;EU.3073.96;;2012-10-18;;(Date of UN designation: 2012-10-18)\n(Date of designation referred to in Article 2a (4) (b): 18.10.2012.);P;person;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;Aamir Ali Chaudary;;;;;16593;EN;;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7168;EU.3073.96;;2012-10-18;;(Date of UN designation: 2012-10-18)\n(Date of designation referred to in Article 2a (4) (b): 18.10.2012.);P;person;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;Aamir Ali Choudry;;;;;16594;EN;;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7168;EU.3073.96;;2012-10-18;;(Date of UN designation: 2012-10-18)\n(Date of designation referred to in Article 2a (4) (b): 18.10.2012.);P;person;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;Amir Ali Chaudry;;;;;16595;EN;;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7168;EU.3073.96;;2012-10-18;;(Date of UN designation: 2012-10-18)\n(Date of designation referred to in Article 2a (4) (b): 18.10.2012.);P;person;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;Huzaifa;;;;;16596;EN;;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7168;EU.3073.96;;2012-10-18;;(Date of UN designation: 2012-10-18)\n(Date of designation referred to in Article 2a (4) (b): 18.10.2012.);P;person;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-08-03;3;8;1986;;;NO;GREGORIAN;;;;;00;UNKNOWN;1942;EN;;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7168;EU.3073.96;;2012-10-18;;(Date of UN designation: 2012-10-18)\n(Date of designation referred to in Article 2a (4) (b): 18.10.2012.);P;person;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BN 4196361 (passport-National passport) (pakistani passport issued on 28.10.2008, expiring 27.10.2013);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;PK;;808;EN;pakistani passport issued on 28.10.2008, expiring 27.10.2013;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;; +28/10/2022;7168;EU.3073.96;;2012-10-18;;(Date of UN designation: 2012-10-18)\n(Date of designation referred to in Article 2a (4) (b): 18.10.2012.);P;person;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33202-7126636-9 (id-National identification card) ((pakistani national identity card));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;PK;;809;EN;(pakistani national identity card);amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;; +28/10/2022;7168;EU.3073.96;;2012-10-18;;(Date of UN designation: 2012-10-18)\n(Date of designation referred to in Article 2a (4) (b): 18.10.2012.);P;person;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;783;EN;;amendment;commission;2012-10-30;2012-10-29;1002/2012 (OJ L300);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:300:0043:0044:EN:PDF +28/10/2022;7172;EU.3702.73;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5039797);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Rauf Zakir;;;Qari;;16857;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7172;EU.3702.73;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5039797);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Qari Zakir;;;;;16858;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7172;EU.3702.73;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5039797);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969;1971;NO;GREGORIAN;;;;Kabul Province;AF;AFGHANISTAN;1976;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7172;EU.3702.73;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5039797);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;788;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haqqani Network;;;;;16859;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;HQN;;;;;16860;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Мрежа „Haqqani“;BG;;;;16861;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Síť Haqqani;CS;;;;16862;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haqqaninetværket;DA;;;;16863;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Δίκτυο Haqqani;EL;;;;16864;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Red Haqqani;ES;;;;16865;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haqqani võrgustik;ET;;;;16866;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haqqani-verkosto;FI;;;;16867;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Réseau Haqqani;FR;;;;16868;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Rete Haqqani;IT;;;;16869;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haqqani tinklas;LT;;;;16870;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haqqani-hálózat;HU;;;;16871;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haqqani-netwerk;NL;;;;16872;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Sieć Haqqani;PL;;;;16873;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Rede Haqqani;PT;;;;16874;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Rețeaua Haqqani;RO;;;;16875;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;sieť Haqqani;SK;;;;16876;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mreža Haqqani;SL;;;;16878;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7173;EU.3613.74;;2012-11-05;;(Date of UN designation: 2012-11-05)\n(Founded by Jalaluddin Haqqani and currently headed by his son Sirajuddin Jallaloudine Haqqani.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ une/5282012);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haqqani-nätverket;SV;;;;16879;EN;;amendment;commission;2012-12-04;2012-12-03;1139/2012 (OJ L332);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:332:0001:0007:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7174;EU.3025.21;;2012-12-05;;(Date of UN designation: 2012-12-05)\n(Date of designation referred to in Article 2a (4) (b): 5.12.2012.);E;enterprise;amendment;commission;2012-12-12;2012-12-11;1187/2012 (OJ L338);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:338:0023:0024:EN:PDF;;;;Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest;;;;;16891;EN;;amendment;commission;2012-12-12;2012-12-11;1187/2012 (OJ L338);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:338:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7174;EU.3025.21;;2012-12-05;;(Date of UN designation: 2012-12-05)\n(Date of designation referred to in Article 2a (4) (b): 5.12.2012.);E;enterprise;amendment;commission;2012-12-12;2012-12-11;1187/2012 (OJ L338);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:338:0023:0024:EN:PDF;;;;MUJAO;;;;;16892;EN;;amendment;commission;2012-12-12;2012-12-11;1187/2012 (OJ L338);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:338:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7174;EU.3025.21;;2012-12-05;;(Date of UN designation: 2012-12-05)\n(Date of designation referred to in Article 2a (4) (b): 5.12.2012.);E;enterprise;amendment;commission;2012-12-12;2012-12-11;1187/2012 (OJ L338);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:338:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;ML;MALI;2454;EN;;amendment;commission;2012-12-12;2012-12-11;1187/2012 (OJ L338);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:338:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7174;EU.3025.21;;2012-12-05;;(Date of UN designation: 2012-12-05)\n(Date of designation referred to in Article 2a (4) (b): 5.12.2012.);E;enterprise;amendment;commission;2012-12-12;2012-12-11;1187/2012 (OJ L338);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:338:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;DZ;ALGERIA;2455;EN;;amendment;commission;2012-12-12;2012-12-11;1187/2012 (OJ L338);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:338:0023:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7175;EU.3708.57;;2012-11-12;;"(Date of UN designation: 2012-11-12)\n((a) Military leader of the Mouvement du 23 Mars (M23) group operating in the Democratic Republic of the Congo; (b) In Uganda as of late 2014.)";P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Makenga;Sultani;;Sultani Makenga;;;;Military leader of the Mouvement du 23 Mars (M23) group;16893;EN;;amendment;commission;2012-12-21;2012-12-20;1251/2012 (OJ L352);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0042:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7175;EU.3708.57;;2012-11-12;;"(Date of UN designation: 2012-11-12)\n((a) Military leader of the Mouvement du 23 Mars (M23) group operating in the Democratic Republic of the Congo; (b) In Uganda as of late 2014.)";P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Colonel Sultani Makenga;;;;;16894;EN;;amendment;commission;2012-12-21;2012-12-20;1251/2012 (OJ L352);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0042:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7175;EU.3708.57;;2012-11-12;;"(Date of UN designation: 2012-11-12)\n((a) Military leader of the Mouvement du 23 Mars (M23) group operating in the Democratic Republic of the Congo; (b) In Uganda as of late 2014.)";P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Emmanuel Sultani Makenga;;;;;16895;EN;;amendment;commission;2012-12-21;2012-12-20;1251/2012 (OJ L352);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0042:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7175;EU.3708.57;;2012-11-12;;"(Date of UN designation: 2012-11-12)\n((a) Military leader of the Mouvement du 23 Mars (M23) group operating in the Democratic Republic of the Congo; (b) In Uganda as of late 2014.)";P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-12-25;25;12;1973;;;NO;GREGORIAN;;;;Rutshuru;CD;CONGO, Democratic Republic of (was Zaire);1981;EN;;amendment;commission;2012-12-21;2012-12-20;1251/2012 (OJ L352);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0042:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7175;EU.3708.57;;2012-11-12;;"(Date of UN designation: 2012-11-12)\n((a) Military leader of the Mouvement du 23 Mars (M23) group operating in the Democratic Republic of the Congo; (b) In Uganda as of late 2014.)";P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;789;EN;;amendment;commission;2012-12-21;2012-12-20;1251/2012 (OJ L352);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0042:0043:EN:PDF +28/10/2022;7176;EU.3620.83;;2012-11-30;Date of UN designation: 30 November 2012.;(Date of UN designation: 2012-11-30)\n(Designation details: Date of UN designation: 30 November 2012.)\n(Became M23 deputy commander after the flight of Bosco Taganda's faction to Rwanda in March 2013. Fled to Uganda in November 2013. In Uganda as of early 2016.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Kaina;Innocent;;Innocent Kaina;;;;Former M23 Deputy Commander;16896;EN;Innocent Kaina was Sector Commander and then Deputy Commander in the Mouvement du 23 Mars (M23).;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7176;EU.3620.83;;2012-11-30;Date of UN designation: 30 November 2012.;(Date of UN designation: 2012-11-30)\n(Designation details: Date of UN designation: 30 November 2012.)\n(Became M23 deputy commander after the flight of Bosco Taganda's faction to Rwanda in March 2013. Fled to Uganda in November 2013. In Uganda as of early 2016.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Colonel Innocent Kaina;;;;Former M23 Deputy Commander;16897;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7176;EU.3620.83;;2012-11-30;Date of UN designation: 30 November 2012.;(Date of UN designation: 2012-11-30)\n(Designation details: Date of UN designation: 30 November 2012.)\n(Became M23 deputy commander after the flight of Bosco Taganda's faction to Rwanda in March 2013. Fled to Uganda in November 2013. In Uganda as of early 2016.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;India Queen;;;;;16898;EN;;amendment;commission;2012-12-21;2012-12-20;1251/2012 (OJ L352);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0042:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7176;EU.3620.83;;2012-11-30;Date of UN designation: 30 November 2012.;(Date of UN designation: 2012-11-30)\n(Designation details: Date of UN designation: 30 November 2012.)\n(Became M23 deputy commander after the flight of Bosco Taganda's faction to Rwanda in March 2013. Fled to Uganda in November 2013. In Uganda as of early 2016.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Address: Uganda (as of early 2016));UG;UGANDA;110763;EN;Address: Uganda (as of early 2016);amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7176;EU.3620.83;;2012-11-30;Date of UN designation: 30 November 2012.;(Date of UN designation: 2012-11-30)\n(Designation details: Date of UN designation: 30 November 2012.)\n(Became M23 deputy commander after the flight of Bosco Taganda's faction to Rwanda in March 2013. Fled to Uganda in November 2013. In Uganda as of early 2016.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Bunagana, Rutshuru territory;CD;CONGO, Democratic Republic of (was Zaire);1982;EN;;amendment;commission;2012-12-21;2012-12-20;1251/2012 (OJ L352);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0042:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7176;EU.3620.83;;2012-11-30;Date of UN designation: 30 November 2012.;(Date of UN designation: 2012-11-30)\n(Designation details: Date of UN designation: 30 November 2012.)\n(Became M23 deputy commander after the flight of Bosco Taganda's faction to Rwanda in March 2013. Fled to Uganda in November 2013. In Uganda as of early 2016.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;1973;;;NO;GREGORIAN;;;;Bunagana, Rutshuru territory;CD;CONGO, Democratic Republic of (was Zaire);110762;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7177;EU.3630.84;;2012-11-30;;(Date of UN designation: 2012-11-30);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Ngaruye Wa Myamuro;Baudoin;;Baudoin Ngaruye Wa Myamuro;;;Brigadier General;Military leader of the Mouvement du 23 Mars (M23);16899;EN;;amendment;council;2014-12-01;2014-12-01;1275/2014 (OJ L346);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7177;EU.3630.84;;2012-11-30;;(Date of UN designation: 2012-11-30);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Colonel Baudoin Ngaruye;;;;;16900;EN;;amendment;commission;2012-12-21;2012-12-20;1251/2012 (OJ L352);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0042:0043:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7177;EU.3630.84;;2012-11-30;;(Date of UN designation: 2012-11-30);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;Rubavu/Mudende;;;;;;NO;;RW;RWANDA;2681;EN;;amendment;council;2014-12-01;2014-12-01;1275/2014 (OJ L346);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7177;EU.3630.84;;2012-11-30;;(Date of UN designation: 2012-11-30);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-04-01;1;4;1978;;;NO;GREGORIAN;;;;Lusamambo, Lubero territory;CD;CONGO, Democratic Republic of (was Zaire);1983;EN;;amendment;council;2014-12-01;2014-12-01;1275/2014 (OJ L346);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7177;EU.3630.84;;2012-11-30;;(Date of UN designation: 2012-11-30);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-04-01;1;4;1978;;;NO;GREGORIAN;;;;Bibwe;CD;CONGO, Democratic Republic of (was Zaire);2275;EN;;amendment;council;2014-12-01;2014-12-01;1275/2014 (OJ L346);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7177;EU.3630.84;;2012-11-30;;(Date of UN designation: 2012-11-30);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;111054;EN;;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7177;EU.3630.84;;2012-11-30;;(Date of UN designation: 2012-11-30);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1-78-09-44621-80 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;847;EN;;amendment;commission;2012-12-21;2012-12-20;1251/2012 (OJ L352);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0042:0043:EN:PDF;;;;;;;;;;;;; +28/10/2022;7178;EU.3705.65;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 5041285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammed Qasim Mir Wali Khudai Rahim;;;Haji;Owner of Rahat Ltd;16901;EN;;amendment;commission;2013-05-17;2013-05-16;451/2013 (OJ L133);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:133:0001:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7178;EU.3705.65;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 5041285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Muhammad Qasim;;;;;16902;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7178;EU.3705.65;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 5041285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Salam;;;;;17491;EN;;amendment;commission;2013-05-17;2013-05-16;451/2013 (OJ L133);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:133:0001:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7178;EU.3705.65;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 5041285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Wesh, Spin Boldak District, Kandahar Province;;;;;;NO;;AF;AFGHANISTAN;2456;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7178;EU.3705.65;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 5041285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Safaar Bazaar, Garmser District, Helmand Province;;;;;;NO;;AF;AFGHANISTAN;2457;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7178;EU.3705.65;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 5041285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Kandahar City, Kandahar Province;Room number 33, 5th Floor Sarafi Market;;;;;NO;;AF;AFGHANISTAN;2458;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7178;EU.3705.65;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 5041285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;1976;NO;GREGORIAN;;;;Minar village, Garmser District, Helmand Province;AF;AFGHANISTAN;1984;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7178;EU.3705.65;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 5041285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;1976;NO;GREGORIAN;;;;Darweshan village, Garmser District, Helmand Province;AF;AFGHANISTAN;2021;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7178;EU.3705.65;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 5041285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57388 (id-National identification card) ((afghan national identification card - tazkira- issued in lashkar gah district, helmand province, afghanistan);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;AF;;848;EN;(afghan national identification card - tazkira- issued in lashkar gah district, helmand province, afghanistan;amendment;commission;2013-05-17;2013-05-16;451/2013 (OJ L133);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:133:0001:0004:EN:PDF;;;;;;;;;;;;; +28/10/2022;7178;EU.3705.65;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 5041285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;665 (other-Other identification number) ((residential card number, Ayno Maina, Kandahar Province, Afghanistan));NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;AF;;849;EN;(residential card number, Ayno Maina, Kandahar Province, Afghanistan);amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;7178;EU.3705.65;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/ 5041285);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;790;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF +28/10/2022;7179;EU.3626.67;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(Owned by Mohammed Qasim Mir Wali Khudai Rahim. Also associated Mohammad Naim Barich Khudaidad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282195);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Rahat Ltd;;;;;16903;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7179;EU.3626.67;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(Owned by Mohammed Qasim Mir Wali Khudai Rahim. Also associated Mohammad Naim Barich Khudaidad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282195);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Rahat Trading Company;;;;;16904;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7179;EU.3626.67;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(Owned by Mohammed Qasim Mir Wali Khudai Rahim. Also associated Mohammad Naim Barich Khudaidad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282195);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Muhammad Qasim Sarafi;;;;;16905;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7179;EU.3626.67;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(Owned by Mohammed Qasim Mir Wali Khudai Rahim. Also associated Mohammad Naim Barich Khudaidad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282195);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;New Chagai Trading;;;;;16906;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7179;EU.3626.67;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(Owned by Mohammed Qasim Mir Wali Khudai Rahim. Also associated Mohammad Naim Barich Khudaidad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282195);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Musa Kalim Hawala;;;;;17683;EN;;amendment;commission;2014-03-15;2014-03-14;261/2014 (OJ L76);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0261&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7179;EU.3626.67;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(Owned by Mohammed Qasim Mir Wali Khudai Rahim. Also associated Mohammad Naim Barich Khudaidad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282195);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Kandahar city, Kandahar Province;Branch Office 1: Room number 33, 5th Floor, Sarafi Market;;;;;NO;;AF;AFGHANISTAN;2459;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7179;EU.3626.67;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(Owned by Mohammed Qasim Mir Wali Khudai Rahim. Also associated Mohammad Naim Barich Khudaidad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282195);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Kandahar Province;Branch Office 2: Shop number 4, Azizi Bank, Haji Muhammad Isa Market, Wesh, Spin Boldak;;;;;NO;;AF;AFGHANISTAN;2460;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7179;EU.3626.67;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(Owned by Mohammed Qasim Mir Wali Khudai Rahim. Also associated Mohammad Naim Barich Khudaidad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282195);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Helmand Province;Branch Office 3: Safaar Bazaar, Garmser District;;;;;NO;;AF;AFGHANISTAN;2461;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7179;EU.3626.67;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(Owned by Mohammed Qasim Mir Wali Khudai Rahim. Also associated Mohammad Naim Barich Khudaidad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282195);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Helmand Province;Branch Office 4: Lashkar Gah;;;;;NO;;AF;AFGHANISTAN;2462;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7179;EU.3626.67;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(Owned by Mohammed Qasim Mir Wali Khudai Rahim. Also associated Mohammad Naim Barich Khudaidad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282195);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Helmand Province;Branch Office 5: Gereshk District;;;;;NO;;AF;AFGHANISTAN;2463;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7179;EU.3626.67;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(Owned by Mohammed Qasim Mir Wali Khudai Rahim. Also associated Mohammad Naim Barich Khudaidad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282195);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Nimroz Province;Branch Office 6: Zaranj District;;;;;NO;;AF;AFGHANISTAN;2464;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7179;EU.3626.67;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(Owned by Mohammed Qasim Mir Wali Khudai Rahim. Also associated Mohammad Naim Barich Khudaidad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282195);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta;Branch Office 7: Dr Barno Road,;;;;;NO;;PK;PAKISTAN;2465;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7179;EU.3626.67;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(Owned by Mohammed Qasim Mir Wali Khudai Rahim. Also associated Mohammad Naim Barich Khudaidad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282195);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta;Branch Office 7: Haji Mohammed Plaza, Tol Aram Road, near Jamaluddin Afghani Road;;;;;NO;;PK;PAKISTAN;2466;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7179;EU.3626.67;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(Owned by Mohammed Qasim Mir Wali Khudai Rahim. Also associated Mohammad Naim Barich Khudaidad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282195);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta;Branch Office 7: Kandahari Bazaar;;;;;NO;;PK;PAKISTAN;2467;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7179;EU.3626.67;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(Owned by Mohammed Qasim Mir Wali Khudai Rahim. Also associated Mohammad Naim Barich Khudaidad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282195);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Baluchistan Province;Branch Office 8: Chaman;;;;;NO;;PK;PAKISTAN;2468;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7179;EU.3626.67;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(Owned by Mohammed Qasim Mir Wali Khudai Rahim. Also associated Mohammad Naim Barich Khudaidad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282195);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Chaghi, Baluchistan Province;Branch Office 9: Chaghi Bazaar;;;;;NO;;AF;AFGHANISTAN;2469;EN;;amendment;commission;2012-12-21;2012-12-20;1244/2012 (OJ L352);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:352:0013:0014:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7179;EU.3626.67;;2012-11-21;;(Date of UN designation: 2012-11-21)\n(Owned by Mohammed Qasim Mir Wali Khudai Rahim. Also associated Mohammad Naim Barich Khudaidad. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5282195);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Zahedan, Zabol Province;Branch Office 10;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);2470;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7181;EU.2991.46;;2021-07-31;;(Date of UN designation: 2021-07-31)\n(The Organisation of Defensive Innovation and Research (SPND) directly supports Iran's proliferation sensitive nuclear activities. SPND was run by UN-designated Mohsen Fakhrizadeh-Mahabadi and is part of the Ministry of Defence For Armed Forces Logistics (MODAFL) designated by the EU.);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Organisation of Defensive Innovation and Research;;;;The Organisation of Defensive Innovation and Research (SPND) directly supports Iran's proliferation sensitive nuclear activities.;16910;EN;;amendment;council;2019-05-28;2019-05-29;2019/855 (OJ L140);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0855&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7181;EU.2991.46;;2021-07-31;;(Date of UN designation: 2021-07-31)\n(The Organisation of Defensive Innovation and Research (SPND) directly supports Iran's proliferation sensitive nuclear activities. SPND was run by UN-designated Mohsen Fakhrizadeh-Mahabadi and is part of the Ministry of Defence For Armed Forces Logistics (MODAFL) designated by the EU.);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;SPND;;;;;16911;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7186;EU.2764.8;;;;(Date of listing 22-12-2012.);E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Iran Composites Institute;;;;;16918;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7186;EU.2764.8;;;;(Date of listing 22-12-2012.);E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;ICI;;;;;16942;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7186;EU.2764.8;;;;(Date of listing 22-12-2012.);E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Composite Institute of Iran;;;;;16943;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7186;EU.2764.8;;;;(Date of listing 22-12-2012.);E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Instituto de Compuestos Iraní;ES;;;;16974;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7186;EU.2764.8;;;;(Date of listing 22-12-2012.);E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Institutul iranian de compoziți;RO;;;;16992;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7186;EU.2764.8;;;;(Date of listing 22-12-2012.);E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Iránsky ústav pre kompozitné materiály;SK;;;;17005;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7186;EU.2764.8;;;;(Date of listing 22-12-2012.);E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;Tehran;Iran Composites Institute, Iranian University of Science and Technology;;16845-188;;;NO;WEB[http://www.irancomposites.org]\nPHONE[98 2173912858]\nEMAIL[ici@iust.ac.ir]\nFAX[98 217 7491206]\n(Telephone: 98 2173912858/Fax: 98 217 7491206/E-mail: ici@iust.ac.ir/Website: http://www.irancomposites.org);IR;IRAN (ISLAMIC REPUBLIC OF);2479;EN;Telephone: 98 2173912858/Fax: 98 217 7491206/E-mail: ici@iust.ac.ir/Website: http://www.irancomposites.org;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7187;EU.2765.70;;;;(Date of listing 22-12-2012.);E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Jelvesazan Company;;;;;16919;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7187;EU.2765.70;;;;(Date of listing 22-12-2012.);E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Compania Jelvesazan;RO;;;;16993;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7187;EU.2765.70;;;;(Date of listing 22-12-2012.);E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;Esfahan;22 Bahman St., Bozorgmehr Ave;;84155666;;;NO;PHONE[98 0311 265831115]\nFAX[98 0311 2679097]\n(Tel: 98 0311 265831115/Fax: 98 0311 2679097);IR;IRAN (ISLAMIC REPUBLIC OF);2481;EN;Tel: 98 0311 265831115/Fax: 98 0311 2679097;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7191;EU.2815.30;;;;(Date of listing 22-12-2012.);E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Simatec Development Company;;;;;16926;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7191;EU.2815.30;;;;(Date of listing 22-12-2012.);E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Compania de dezvoltare Simatec;RO;;;;16995;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7192;EU.2816.92;;;;(Date of listing 22-12-2012.);E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;Aluminat;;;;;16927;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7192;EU.2816.92;;;;(Date of listing 22-12-2012.);E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;Arak;Factory: Parcham St, 13th Km of Qom Rd;;38135;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);2486;EN;;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7192;EU.2816.92;;;;(Date of listing 22-12-2012.);E;enterprise;amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;Tehran;Unit 38,5th Fl, Bldg, No 60 Golfam St, Jordan;;19395-5716;;;NO;"WEB[http://www.aluminat.com]\nPHONE[98 212 2049216/22049928/22045237]\nFAX[98 21 22057127]\n(Tel: 98 212 2049216/22049928/22045237; Fax: 98 21 22057127/Website: www.aluminat.com)";IR;IRAN (ISLAMIC REPUBLIC OF);2487;EN;"Tel: 98 212 2049216/22049928/22045237; Fax: 98 21 22057127/Website: www.aluminat.com";amendment;commission;2012-12-22;2012-12-21;1264/2012 (OJ L356);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:356:0055:0060:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7195;EU.2734.5;;2021-07-31;;(Date of UN designation: 2021-07-31)\n(Sharif University of Technology (SUT) has a number of cooperation agreements with Iranian Government organisations which are designated by the UN and/or the EU and which operate in military or military-related fields, particularly in the field of ballistic missile production and procurement.);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Sharif University of Technology;;;;;16931;EN;;amendment;council;2014-11-07;2014-11-07;1202/2014 (OJ L325);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_325_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7195;EU.2734.5;;2021-07-31;;(Date of UN designation: 2021-07-31)\n(Sharif University of Technology (SUT) has a number of cooperation agreements with Iranian Government organisations which are designated by the UN and/or the EU and which operate in military or military-related fields, particularly in the field of ballistic missile production and procurement.);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Sharif technologijos universitetas;LT;;;;16980;EN;;amendment;council;2014-11-07;2014-11-07;1202/2014 (OJ L325);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_325_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7195;EU.2734.5;;2021-07-31;;(Date of UN designation: 2021-07-31)\n(Sharif University of Technology (SUT) has a number of cooperation agreements with Iranian Government organisations which are designated by the UN and/or the EU and which operate in military or military-related fields, particularly in the field of ballistic missile production and procurement.);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;Universitatea de tehnologie Sharif;RO;;;;16999;EN;;amendment;council;2014-11-07;2014-11-07;1202/2014 (OJ L325);IRN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_325_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7195;EU.2734.5;;2021-07-31;;(Date of UN designation: 2021-07-31)\n(Sharif University of Technology (SUT) has a number of cooperation agreements with Iranian Government organisations which are designated by the UN and/or the EU and which operate in military or military-related fields, particularly in the field of ballistic missile production and procurement.);E;enterprise;amendment;council;2021-07-30;2021-07-31;2021/1242 (OJ L272);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.272.01.0004.01.ENG&toc=OJ%3AL%3A2021%3A272%3ATOC;;;;;;;;;;;;;;;;;;;Tehran;Azadi Ave/Street;11365-11155;;;;NO;PHONE[+98 21 66 161]\nEMAIL[info@sharif.ir]\n(Last address known: Azadi Ave/Street, PO Box 11365-11155, Tehran, Iran, Tel: +98 21 66 161 Email: info@sharif.ir);IR;IRAN (ISLAMIC REPUBLIC OF);2489;EN;Last address known: Azadi Ave/Street, PO Box 11365-11155, Tehran, Iran, Tel: +98 21 66 161 Email: info@sharif.ir;amendment;council;2020-06-19;2020-06-20;2020/847 (OJ L196);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.196.01.0001.01.ENG&toc=OJ:L:2020:196:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7199;EU.3868.28;;2011-06-24;Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-06-24)\n(Designation details: Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze).)\n(Her sister Fatima FARKASH is married to ABDALLAH SANUSSI, head of Libyan military intelligence.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;AL-BARASSI;Safia;Farkash;Safia Farkash AL-BARASSI;;F;;;16952;EN;;amendment;commission;2013-01-23;2013-01-22;50/2013 (OJ L20);LBY;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:020:0029:0032:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7199;EU.3868.28;;2011-06-24;Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-06-24)\n(Designation details: Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze).)\n(Her sister Fatima FARKASH is married to ABDALLAH SANUSSI, head of Libyan military intelligence.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;Al-Hadad;Safia;Farkash Mohammed;Safia Farkash Mohammed Al-Hadad;EN;;;;105191;EN;;amendment;council;2015-05-27;2015-05-28;2015/814 (OJ L 129);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_129_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7199;EU.3868.28;;2011-06-24;Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-06-24)\n(Designation details: Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze).)\n(Her sister Fatima FARKASH is married to ABDALLAH SANUSSI, head of Libyan military intelligence.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;Sultanate of Oman;NO;(Believed location — Egypt);OM;OMAN;107524;EN;Believed location — Egypt;amendment;council;2016-05-05;2016-05-05;2016/690 (OJ L120);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_120_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7199;EU.3868.28;;2011-06-24;Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-06-24)\n(Designation details: Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze).)\n(Her sister Fatima FARKASH is married to ABDALLAH SANUSSI, head of Libyan military intelligence.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-01-01;1;1;1953;;;NO;GREGORIAN;;;Al Bayda;;LY;LIBYA;105189;EN;;amendment;council;2016-05-05;2016-05-05;2016/690 (OJ L120);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_120_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7199;EU.3868.28;;2011-06-24;Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-06-24)\n(Designation details: Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze).)\n(Her sister Fatima FARKASH is married to ABDALLAH SANUSSI, head of Libyan military intelligence.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952;;;YES;GREGORIAN;;;;Al Bayda;LY;LIBYA;111616;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7199;EU.3868.28;;2011-06-24;Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-06-24)\n(Designation details: Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze).)\n(Her sister Fatima FARKASH is married to ABDALLAH SANUSSI, head of Libyan military intelligence.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;03825239 (passport-National passport) (name on doc. 'Safia Farkash Mohammed Al-Hadad') (on 2014-05-04 valid to 2024-05-03);NO;NO;NO;NO;NO;;2014-05-04;;2024-05-03;;(name on doc. 'Safia Farkash Mohammed Al-Hadad');passport;National passport;;OM;;105190;EN;;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;; +28/10/2022;7199;EU.3868.28;;2011-06-24;Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze).;(Date of UN designation: 2011-06-24)\n(Designation details: Listed pursuant to paragraph 15 of resolution 1970 and paragraph 19 of resolution 1973 (Travel Ban, Asset Freeze).)\n(Her sister Fatima FARKASH is married to ABDALLAH SANUSSI, head of Libyan military intelligence.);P;person;amendment;council;2017-03-22;2017-03-23;2017/489 (OJ L76);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0489&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"98606491 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;OM;;108583;EN;;amendment;council;2016-05-05;2016-05-05;2016/690 (OJ L120);LBY;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_120_R_0001&from=EN;;;;;;;;;;;;; +28/10/2022;7200;EU.3606.65;;2012-12-31;Date of UN designation: 31 December 2012.;(Date of UN designation: 2012-12-31)\n(Designation details: Date of UN designation: 31 December 2012.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Badege;Eric;;Eric Badege;;;LTL. Colonel;;16953;EN;Eric Badege was a Lieutenant Colonel and focal point for M23 in Masisi;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7200;EU.3606.65;;2012-12-31;Date of UN designation: 31 December 2012.;(Date of UN designation: 2012-12-31)\n(Designation details: Date of UN designation: 31 December 2012.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Address: Rwanda (as of early 2016).\n\nOther information: \nHe fled to Rwanda in March 2013 and is still living there as of early 2016.);RW;RWANDA;110759;EN;Address: Rwanda (as of early 2016).\n\nOther information: \nHe fled to Rwanda in March 2013 and is still living there as of early 2016.;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7200;EU.3606.65;;2012-12-31;Date of UN designation: 31 December 2012.;(Date of UN designation: 2012-12-31)\n(Designation details: Date of UN designation: 31 December 2012.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;1989;EN;;amendment;commission;2013-01-23;2013-01-22;53/2013 (OJ L20);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:020:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7200;EU.3606.65;;2012-12-31;Date of UN designation: 31 December 2012.;(Date of UN designation: 2012-12-31)\n(Designation details: Date of UN designation: 31 December 2012.);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;845;EN;;amendment;council;2015-04-21;2015-04-22;2015/614 (OJ L102);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0003&from=EN +28/10/2022;7201;EU.3642.15;;2012-12-31;;(Date of UN designation: 2012-12-31);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Runiga;Jean-Marie;Lugerero;Jean-Marie Lugerero Runiga;;;;President of M23.;16954;EN;;amendment;council;2014-12-01;2014-12-01;1275/2014 (OJ L346);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7201;EU.3642.15;;2012-12-31;;(Date of UN designation: 2012-12-31);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;Rugerero;Jean-Marie;;Jean-Marie Rugerero;;;;Designation: M23, President.;18449;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7201;EU.3642.15;;2012-12-31;;(Date of UN designation: 2012-12-31);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;Rubavu/Mudende;;;;;;NO;;RW;RWANDA;2683;EN;;amendment;council;2014-12-01;2014-12-01;1275/2014 (OJ L346);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7201;EU.3642.15;;2012-12-31;;(Date of UN designation: 2012-12-31);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;YES;GREGORIAN;;;;Bukavu;CD;CONGO, Democratic Republic of (was Zaire);1990;EN;Approximately 1960;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7201;EU.3642.15;;2012-12-31;;(Date of UN designation: 2012-12-31);P;person;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-09-09;9;9;1966;;;NO;GREGORIAN;;;;Bukavu;CD;CONGO, Democratic Republic of (was Zaire);2276;EN;;amendment;council;2014-12-01;2014-12-01;1275/2014 (OJ L346);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7202;EU.3673.80;;2012-12-31;;(Date of UN designation: 2012-12-31)\n(Date of designation referred to in Article 5(1)(b): 31.12.2012.);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Forces Democratiques De Liberation Du Rwanda;;;;;16955;EN;;amendment;commission;2013-01-23;2013-01-22;53/2013 (OJ L20);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:020:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7202;EU.3673.80;;2012-12-31;;(Date of UN designation: 2012-12-31)\n(Date of designation referred to in Article 5(1)(b): 31.12.2012.);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;FDLR;;;;;16956;EN;;amendment;commission;2013-01-23;2013-01-22;53/2013 (OJ L20);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:020:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7202;EU.3673.80;;2012-12-31;;(Date of UN designation: 2012-12-31)\n(Date of designation referred to in Article 5(1)(b): 31.12.2012.);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Force Combattante Abacunguzi;;;;;16957;EN;;amendment;commission;2013-01-23;2013-01-22;53/2013 (OJ L20);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:020:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7202;EU.3673.80;;2012-12-31;;(Date of UN designation: 2012-12-31)\n(Date of designation referred to in Article 5(1)(b): 31.12.2012.);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;FOCA;;;;;16958;EN;;amendment;commission;2013-01-23;2013-01-22;53/2013 (OJ L20);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:020:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7202;EU.3673.80;;2012-12-31;;(Date of UN designation: 2012-12-31)\n(Date of designation referred to in Article 5(1)(b): 31.12.2012.);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Combatant Force for the Liberation of Rwanda;;;;;16959;EN;;amendment;commission;2013-01-23;2013-01-22;53/2013 (OJ L20);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:020:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7202;EU.3673.80;;2012-12-31;;(Date of UN designation: 2012-12-31)\n(Date of designation referred to in Article 5(1)(b): 31.12.2012.);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Rwanda demokraatlik vabastusjõud;ET;;;;17010;EN;;amendment;commission;2013-01-23;2013-01-22;53/2013 (OJ L20);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:020:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7202;EU.3673.80;;2012-12-31;;(Date of UN designation: 2012-12-31)\n(Date of designation referred to in Article 5(1)(b): 31.12.2012.);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Forças Democráticas de Libertação do Ruanda;PT;;;;17011;EN;;amendment;commission;2013-01-23;2013-01-22;53/2013 (OJ L20);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:020:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7202;EU.3673.80;;2012-12-31;;(Date of UN designation: 2012-12-31)\n(Date of designation referred to in Article 5(1)(b): 31.12.2012.);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Forças Combatentes para a Libertação do Ruanda;PT;;;;17012;EN;;amendment;commission;2013-01-23;2013-01-22;53/2013 (OJ L20);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:020:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7202;EU.3673.80;;2012-12-31;;(Date of UN designation: 2012-12-31)\n(Date of designation referred to in Article 5(1)(b): 31.12.2012.);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;North and South Kivu;;;;;;NO;"EMAIL[fldrrse@yahoo.fr]\n(E-mail addresses: Fdlr@fmx.de; fldrrse@yahoo.fr; fdlr@gmx.net; fdlrsrt@gmail.com; humura2020@gmail.com)";CD;CONGO, Democratic Republic of (was Zaire);2494;EN;"E-mail addresses: Fdlr@fmx.de; fldrrse@yahoo.fr; fdlr@gmx.net; fdlrsrt@gmail.com; humura2020@gmail.com";amendment;council;2015-04-21;2015-04-22;2015/614 (OJ L102);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7203;EU.3674.45;;2012-12-31;;(Date of UN designation: 2012-12-31)\n(Date of designation referred to in Article 5(1)(b): 31.12.2012);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;M23;;;;;16960;EN;;amendment;commission;2013-01-23;2013-01-22;53/2013 (OJ L20);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:020:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7203;EU.3674.45;;2012-12-31;;(Date of UN designation: 2012-12-31)\n(Date of designation referred to in Article 5(1)(b): 31.12.2012);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Mouvement Du 23 Mars;;;;;16961;EN;;amendment;commission;2013-01-23;2013-01-22;53/2013 (OJ L20);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:020:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7203;EU.3674.45;;2012-12-31;;(Date of UN designation: 2012-12-31)\n(Date of designation referred to in Article 5(1)(b): 31.12.2012);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;Movimento de 23 de março;PT;;;;17013;EN;;amendment;commission;2013-01-23;2013-01-22;53/2013 (OJ L20);COD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:020:0046:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7203;EU.3674.45;;2012-12-31;;(Date of UN designation: 2012-12-31)\n(Date of designation referred to in Article 5(1)(b): 31.12.2012);E;enterprise;amendment;council;2017-03-08;2017-03-09;2017/396 (OJ L60);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0396&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;EMAIL[mouvementdu23mars1@gmail.com];00;UNKNOWN;2713;EN;;amendment;council;2015-04-21;2015-04-22;2015/614 (OJ L102);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7204;EU.3029.75;;2013-02-05;;(Date of UN designation: 2013-02-05)\n(Father’s name is Slimane. Mother’s name is Akrouf Khadidja. Date of designation referred to in Article 2a (4) (b): 5.2.2013.);P;person;amendment;commission;2013-02-13;2013-02-12;123/2013 (OJ L42);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:042:0018:0019:EN:PDF;Akkacha;Djamel;;Djamel Akkacha;;;;;17014;EN;;amendment;commission;2013-02-13;2013-02-12;123/2013 (OJ L42);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:042:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7204;EU.3029.75;;2013-02-05;;(Date of UN designation: 2013-02-05)\n(Father’s name is Slimane. Mother’s name is Akrouf Khadidja. Date of designation referred to in Article 2a (4) (b): 5.2.2013.);P;person;amendment;commission;2013-02-13;2013-02-12;123/2013 (OJ L42);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:042:0018:0019:EN:PDF;;;;Yahia Abou el Hoummam;;;;;17015;EN;;amendment;commission;2013-02-13;2013-02-12;123/2013 (OJ L42);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:042:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7204;EU.3029.75;;2013-02-05;;(Date of UN designation: 2013-02-05)\n(Father’s name is Slimane. Mother’s name is Akrouf Khadidja. Date of designation referred to in Article 2a (4) (b): 5.2.2013.);P;person;amendment;commission;2013-02-13;2013-02-12;123/2013 (OJ L42);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:042:0018:0019:EN:PDF;;;;Yahia Abou el Hammam;;;;;17016;EN;;amendment;commission;2013-02-13;2013-02-12;123/2013 (OJ L42);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:042:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7204;EU.3029.75;;2013-02-05;;(Date of UN designation: 2013-02-05)\n(Father’s name is Slimane. Mother’s name is Akrouf Khadidja. Date of designation referred to in Article 2a (4) (b): 5.2.2013.);P;person;amendment;commission;2013-02-13;2013-02-12;123/2013 (OJ L42);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:042:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;ML;MALI;2495;EN;;amendment;commission;2013-02-13;2013-02-12;123/2013 (OJ L42);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:042:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7204;EU.3029.75;;2013-02-05;;(Date of UN designation: 2013-02-05)\n(Father’s name is Slimane. Mother’s name is Akrouf Khadidja. Date of designation referred to in Article 2a (4) (b): 5.2.2013.);P;person;amendment;commission;2013-02-13;2013-02-12;123/2013 (OJ L42);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:042:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-05-09;9;5;1978;;;NO;GREGORIAN;;;;Rouiba, Algiers;DZ;ALGERIA;1991;EN;;amendment;commission;2013-02-13;2013-02-12;123/2013 (OJ L42);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:042:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7204;EU.3029.75;;2013-02-05;;(Date of UN designation: 2013-02-05)\n(Father’s name is Slimane. Mother’s name is Akrouf Khadidja. Date of designation referred to in Article 2a (4) (b): 5.2.2013.);P;person;amendment;commission;2013-02-13;2013-02-12;123/2013 (OJ L42);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:042:0018:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;791;EN;;amendment;commission;2013-02-13;2013-02-12;123/2013 (OJ L42);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:042:0018:0019:EN:PDF +28/10/2022;7205;EU.4012.29;;2013-01-22;;(Date of UN designation: 2013-01-22)\n(Date of designation: 22.1.2013.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Paek;Chang-Ho;;Chang-Ho Paek;;;;Senior official and head of the satellite control center of Korean Committee for Space Technology;17017;EN;;amendment;commission;2013-02-19;2013-02-18;137/2013 (OJ L46);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:046:0019:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7205;EU.4012.29;;2013-01-22;;(Date of UN designation: 2013-01-22)\n(Date of designation: 22.1.2013.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Pak Chang-Ho;;;;;17018;EN;;amendment;commission;2013-02-19;2013-02-18;137/2013 (OJ L46);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:046:0019:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7205;EU.4012.29;;2013-01-22;;(Date of UN designation: 2013-01-22)\n(Date of designation: 22.1.2013.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Paek Ch’ang-Ho;;;;;17019;EN;;amendment;commission;2013-02-19;2013-02-18;137/2013 (OJ L46);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:046:0019:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7205;EU.4012.29;;2013-01-22;;(Date of UN designation: 2013-01-22)\n(Date of designation: 22.1.2013.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-06-18;18;6;1964;;;NO;GREGORIAN;;;;Kaesong;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;1992;EN;;amendment;commission;2013-02-19;2013-02-18;137/2013 (OJ L46);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:046:0019:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7205;EU.4012.29;;2013-01-22;;(Date of UN designation: 2013-01-22)\n(Date of designation: 22.1.2013.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381420754 (passport-National passport) (on 2011-12-07 valid to 2016-12-07)(passport issued on 7.12.2011, expiring on 7.12.2016);NO;NO;NO;NO;NO;;2011-12-07;;2016-12-07;;;passport;National passport;;00;;852;EN;passport issued on 7.12.2011, expiring on 7.12.2016;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;; +28/10/2022;7206;EU.4013.91;;2013-01-22;;(Date of UN designation: 2013-01-22);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Chang;Myong-Chin;;Myong-Chin Chang;;M;;General Manager of the Sohae Satellite Launching Station;17020;EN;;amendment;commission;2014-10-08;2014-10-08;1059/2014 (OJ L293);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7206;EU.4013.91;;2013-01-22;;(Date of UN designation: 2013-01-22);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Jang Myong-Jin;;;;;17021;EN;;amendment;commission;2013-02-19;2013-02-18;137/2013 (OJ L46);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:046:0019:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7206;EU.4013.91;;2013-01-22;;(Date of UN designation: 2013-01-22);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;1993;EN;;amendment;commission;2013-02-19;2013-02-18;137/2013 (OJ L46);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:046:0019:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7206;EU.4013.91;;2013-01-22;;(Date of UN designation: 2013-01-22);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;1994;EN;;amendment;commission;2013-02-19;2013-02-18;137/2013 (OJ L46);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:046:0019:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7206;EU.4013.91;;2013-01-22;;(Date of UN designation: 2013-01-22);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-02-19;19;2;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;2232;EN;;amendment;commission;2014-10-08;2014-10-08;1059/2014 (OJ L293);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7207;EU.3427.5;;2013-01-22;;(Date of UN designation: 2013-01-22)\n(In this capacity he has facilitated transactions for TCB. Tanchon was designated by the Committee in April 2009 as the main DPRK financial entity responsible for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Ra;Ky’ong-Su;;Ky’ong-Su Ra;;M;;Tanchon Commercial Bank (TCB) official;17022;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7207;EU.3427.5;;2013-01-22;;(Date of UN designation: 2013-01-22)\n(In this capacity he has facilitated transactions for TCB. Tanchon was designated by the Committee in April 2009 as the main DPRK financial entity responsible for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Ra;Kyung-Su;;Kyung-Su Ra;;M;;;18281;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7207;EU.3427.5;;2013-01-22;;(Date of UN designation: 2013-01-22)\n(In this capacity he has facilitated transactions for TCB. Tanchon was designated by the Committee in April 2009 as the main DPRK financial entity responsible for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Chang;Myong Ho;;Myong Ho Chang;EN;M;;;108039;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7207;EU.3427.5;;2013-01-22;;(Date of UN designation: 2013-01-22)\n(In this capacity he has facilitated transactions for TCB. Tanchon was designated by the Committee in April 2009 as the main DPRK financial entity responsible for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Chang;Myong-Ho;;Myong-Ho Chang;;M;;;143128;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7207;EU.3427.5;;2013-01-22;;(Date of UN designation: 2013-01-22)\n(In this capacity he has facilitated transactions for TCB. Tanchon was designated by the Committee in April 2009 as the main DPRK financial entity responsible for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Chang;Myo'ng-Ho;;Myo'ng-Ho Chang;;M;;;143129;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7207;EU.3427.5;;2013-01-22;;(Date of UN designation: 2013-01-22)\n(In this capacity he has facilitated transactions for TCB. Tanchon was designated by the Committee in April 2009 as the main DPRK financial entity responsible for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Ra;Kyong-su;;Kyong-su Ra;SV;M;;;143600;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7207;EU.3427.5;;2013-01-22;;(Date of UN designation: 2013-01-22)\n(In this capacity he has facilitated transactions for TCB. Tanchon was designated by the Committee in April 2009 as the main DPRK financial entity responsible for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-06-04;4;6;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;2233;EN;;amendment;commission;2014-10-08;2014-10-08;1059/2014 (OJ L293);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7207;EU.3427.5;;2013-01-22;;(Date of UN designation: 2013-01-22)\n(In this capacity he has facilitated transactions for TCB. Tanchon was designated by the Committee in April 2009 as the main DPRK financial entity responsible for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"645120196 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KP;;890;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;7207;EU.3427.5;;2013-01-22;;(Date of UN designation: 2013-01-22)\n(In this capacity he has facilitated transactions for TCB. Tanchon was designated by the Committee in April 2009 as the main DPRK financial entity responsible for sales of conventional arms, ballistic missiles, and goods related to the assembly and manufacture of such weapons.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;143127;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503 +28/10/2022;7208;EU.4098.21;;2013-01-22;;(Date of UN designation: 2013-01-22);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Kim;Kwang-il;;Kwang-il Kim;;M;;Tanchon Commercial Bank (TCB) official;17023;EN;;amendment;commission;2014-10-08;2014-10-08;1059/2014 (OJ L293);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7208;EU.4098.21;;2013-01-22;;(Date of UN designation: 2013-01-22);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-09-01;1;9;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;2234;EN;;amendment;commission;2014-10-08;2014-10-08;1059/2014 (OJ L293);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7208;EU.4098.21;;2013-01-22;;(Date of UN designation: 2013-01-22);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PS381420397 (passport-National passport) ((passport no. ));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;891;EN;(passport no. );amendment;commission;2014-10-08;2014-10-08;1059/2014 (OJ L293);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0003&from=EN;;;;;;;;;;;;; +28/10/2022;7212;EU.4206.12;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korean Committee for Space Technology;;;;;17040;EN;;amendment;commission;2013-02-19;2013-02-18;137/2013 (OJ L46);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:046:0019:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7212;EU.4206.12;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;DPRK Committee for Space Technology;;;;;17041;EN;;amendment;commission;2013-02-19;2013-02-18;137/2013 (OJ L46);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:046:0019:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7212;EU.4206.12;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Department of Space Technology of the DPRK;;;;;17042;EN;;amendment;commission;2013-02-19;2013-02-18;137/2013 (OJ L46);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:046:0019:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7212;EU.4206.12;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Committee for Space Technology;;;;;17043;EN;;amendment;commission;2013-02-19;2013-02-18;137/2013 (OJ L46);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:046:0019:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7212;EU.4206.12;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;KCST;;;;;17044;EN;;amendment;commission;2013-02-19;2013-02-18;137/2013 (OJ L46);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:046:0019:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7212;EU.4206.12;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;2500;EN;;amendment;commission;2013-02-19;2013-02-18;137/2013 (OJ L46);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:046:0019:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7214;EU.4060.7;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Kumryong Trading Corporation;;;;Used as an alias by the Korea Mining Development Trading Corporation (KOMID) to carry out procurement activities.;17049;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7217;EU.4064.61;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Leader (Hong Kong) International;;;;Leader International (Hong Kong company registration number 1177053), facilitates shipments on behalf of the Korea Mining Development Trading Corporation (KOMID).;17054;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7217;EU.4064.61;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Leader International Trading Limited;;;;;17055;EN;;amendment;commission;2013-02-19;2013-02-18;137/2013 (OJ L46);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:046:0019:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7217;EU.4064.61;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Leader (Hong Kong) International Trading Limited;;;;;18280;EN;;amendment;commission;2014-10-08;2014-10-08;1059/2014 (OJ L293);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7217;EU.4064.61;;2013-01-22;;(Date of UN designation: 2013-01-22);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Hong Kong;383 Hennessy Road, LM-873, RM B, 14/F, Wah Hen Commercial Centre, Wanchai;;;;;NO;(Hong Kong company registration number 1177053);CN;CHINA;2506;EN;Hong Kong company registration number 1177053;amendment;commission;2014-10-08;2014-10-08;1059/2014 (OJ L293);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7218;EU.3004.54;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Father’s name is Leewemere. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;Ould El Amar;Abderrahmane;;Abderrahmane Ould El Amar;;;;;17061;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7218;EU.3004.54;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Father’s name is Leewemere. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;Ahmed el Tilemsi;;;;;17062;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7218;EU.3004.54;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Father’s name is Leewemere. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;Abderrahmane Ould el Amar Ould Sidahmed Loukbeiti;;;;;17063;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7218;EU.3004.54;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Father’s name is Leewemere. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;Ahmad Ould Amar;;;;;17064;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7218;EU.3004.54;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Father’s name is Leewemere. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;Gao;;;;;;NO;;ML;MALI;2507;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7218;EU.3004.54;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Father’s name is Leewemere. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;Tabankort;;;;;;NO;;ML;MALI;2508;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7218;EU.3004.54;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Father’s name is Leewemere. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;In Khalil;;;;;;NO;;ML;MALI;2510;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7218;EU.3004.54;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Father’s name is Leewemere. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;Al Moustarat;;;;;;NO;;ML;MALI;2511;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7218;EU.3004.54;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Father’s name is Leewemere. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;;;NO;GREGORIAN;;;;Tabankort;ML;MALI;1995;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7218;EU.3004.54;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Father’s name is Leewemere. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;1996;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7218;EU.3004.54;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Father’s name is Leewemere. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;1999;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7218;EU.3004.54;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Father’s name is Leewemere. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;2000;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7218;EU.3004.54;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Father’s name is Leewemere. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;2001;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7218;EU.3004.54;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Father’s name is Leewemere. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;2002;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7218;EU.3004.54;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Father’s name is Leewemere. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ML;;792;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF +28/10/2022;7219;EU.3005.19;;;;;P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;ag Ghali;Iyad;;Iyad ag Ghali;;;;Leader of Ansar Eddine.;17065;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7219;EU.3005.19;;;;;P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Sidi Mohamed Arhali;;;;;18264;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7219;EU.3005.19;;;;;P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;ML;MALI;2643;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7219;EU.3005.19;;;;;P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;NO;GREGORIAN;;;;Abeibara, Kidal region;ML;MALI;1997;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7219;EU.3005.19;;;;;P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-01-01;1;1;1958;;;NO;GREGORIAN;;;;Abeibara, Kidal region;ML;MALI;2229;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7219;EU.3005.19;;;;;P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;NO;GREGORIAN;;;;Bouressa, Bourem Region;ML;MALI;2230;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7219;EU.3005.19;;;;;P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-01-01;1;1;1958;;;NO;GREGORIAN;;;;Bouressa, Bourem Region;ML;MALI;2231;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7219;EU.3005.19;;;;;P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A1037434 (passport-National passport) (malian passport issued on 10.8.2001, expires on 31.12.2014);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;ML;;889;EN;malian passport issued on 10.8.2001, expires on 31.12.2014;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;7219;EU.3005.19;;;;;P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ML;;793;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF +28/10/2022;7220;EU.3006.81;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Mother’s name is Tijal Bint Mohamed Dadda. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;Ould Mohamed El Khairy;Hamada;;Hamada Ould Mohamed El Khairy;;;;;17066;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7220;EU.3006.81;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Mother’s name is Tijal Bint Mohamed Dadda. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;Hamad el Khairy;;;;;17067;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7220;EU.3006.81;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Mother’s name is Tijal Bint Mohamed Dadda. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;Hamada Ould Mohamed Lemine Ould Mohamed el Khairy;;;;;17068;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7220;EU.3006.81;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Mother’s name is Tijal Bint Mohamed Dadda. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;Ould Kheirou;;;;;17069;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7220;EU.3006.81;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Mother’s name is Tijal Bint Mohamed Dadda. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;Abou QumQum;;;;;17071;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7220;EU.3006.81;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Mother’s name is Tijal Bint Mohamed Dadda. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;Gao;;;;;;NO;;ML;MALI;2509;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7220;EU.3006.81;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Mother’s name is Tijal Bint Mohamed Dadda. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;;;NO;GREGORIAN;;;;Nouakchott;MR;MAURITANIA;1998;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7220;EU.3006.81;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Mother’s name is Tijal Bint Mohamed Dadda. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A1447120 (passport-National passport) [known to be expired](malian passport, expired on 19.10.2011);NO;YES;NO;NO;NO;;;;;;;passport;National passport;;ML;;853;EN;malian passport, expired on 19.10.2011;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;; +28/10/2022;7220;EU.3006.81;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Mother’s name is Tijal Bint Mohamed Dadda. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MR;;794;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF +28/10/2022;7220;EU.3006.81;;2013-02-22;;(Date of UN designation: 2013-02-22)\n(Mother’s name is Tijal Bint Mohamed Dadda. Date of designation referred to in Article 2a (4) (b): 22.2.2013.);P;person;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ML;;795;EN;;amendment;commission;2013-03-02;2013-03-01;180/2013 (OJ L59);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:059:0001:0002:EN:PDF +28/10/2022;7221;EU.3909.49;;2013-03-12;;(Date of UN designation: 2013-03-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;RASHIDI AGHDAM;Ali;Ashraf;Ali Ashraf RASHIDI AGHDAM;;M;;Deputy Director of Health, Correction and Education of Tehran Prisons. Former head of Evin Prison (2012-2015).;17072;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7222;EU.3024.56;;2013-03-12;;(Date of UN designation: 2013-03-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;KIASATI;Morteza;;Morteza KIASATI;;M;;Judge of branch 54 of the Revolutionary Court of Tehran and of the Ahwaz Revolutionary Court, Branch 4;17073;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7223;EU.2943.68;;;;(Date of listing: 12.3.2013);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;MOUSSAVI;Seyed;Mohammad Bagher;Seyed Mohammad Bagher MOUSSAVI;;M;;Ahwaz Revolutionary Court judge, Branch 2;17074;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7224;EU.3910.74;;2013-03-12;;(Date of UN designation: 2013-03-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Mohammad SARAFRAZ;;M;Dr.;Former member of the Supreme Cyberspace Council. Former President of the Islamic Republic of Iran Broadcasting (IRIB) (2014-2016). Former Head of IRIB World Service and Press TV.;17075;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7224;EU.3910.74;;2013-03-12;;(Date of UN designation: 2013-03-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Haj-agha Sarafraz;;M;Dr.;;17077;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7224;EU.3910.74;;2013-03-12;;(Date of UN designation: 2013-03-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;Tehran;;;;;;NO;(Place of Residence: \nTehran);00;UNKNOWN;2512;EN;Place of Residence: \nTehran;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7224;EU.3910.74;;2013-03-12;;(Date of UN designation: 2013-03-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;;;Tehran;IR;IRAN (ISLAMIC REPUBLIC OF);2003;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7225;EU.3031.65;;2013-03-12;;(Date of UN designation: 2013-03-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;JAFARI;Asadollah;;Asadollah JAFARI;;M;;Currently Attorney General in Isfahan. Former Prosecutor of Mazandaran Province.;17076;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7226;EU.3032.30;;2013-03-12;;(Date of UN designation: 2013-03-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Hamid Reza EMADI;;M;;Press TV Newsroom Director. Former Press TV Senior Producer.;17078;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7226;EU.3032.30;;2013-03-12;;(Date of UN designation: 2013-03-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Hamidreza Emadi;;M;;;17079;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7226;EU.3032.30;;2013-03-12;;(Date of UN designation: 2013-03-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;Tehran;;;;;;NO;(Place of residence: Tehran \n\nPlace of work: Press TV HQ, Tehran);00;UNKNOWN;2513;EN;Place of residence: Tehran \n\nPlace of work: Press TV HQ, Tehran;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7226;EU.3032.30;;2013-03-12;;(Date of UN designation: 2013-03-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;YES;GREGORIAN;;;;Hamedan;IR;IRAN (ISLAMIC REPUBLIC OF);2004;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7227;EU.3033.92;;;;(Date of listing: 12.3.2013.);P;person;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;HAMLBAR;Rahim;;Rahim HAMLBAR;;M;;Judge of Branch 1 of Tabriz Revolutionary Court;17080;EN;;amendment;commission;2013-03-12;2013-03-11;206/2013 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:068:0009:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7228;EU.3911.39;;2013-03-12;;(Date of UN designation: 2013-03-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Seyyed Reza MUSAVI-TABAR;;M;;Former head of the Revolutionary Prosecution of Shiraz.;17081;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7228;EU.3911.39;;2013-03-12;;(Date of UN designation: 2013-03-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;Jahrom;IR;IRAN (ISLAMIC REPUBLIC OF);129372;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7229;EU.2978.90;;2013-03-12;;(Date of UN designation: 2013-03-12);P;person;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;KHORAMABADI;Abdolsamad;;Abdolsamad KHORAMABADI;;M;;Deputy Director for Judicial Oversight (since 13 October 2018). Former head of “Commission to Determine the Instances of Criminal Content”;17082;EN;;amendment;council;2020-04-08;2020-04-08;2020/510 (OJ L113);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0510&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Cyber Police;;;;;17085;EN;The Iranian Cyber Police, founded in January 2011, is a unit of the Islamic Republic of Iran Police, headed by Vahid Majid.;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Cyber Police (it-polisen);SV;;;;127099;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Kyberpoliisi;FI;;;;127100;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Kibernetska policija;SL;;;;127101;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Počítačová polícia;SK;;;;127102;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Poliția informatică;RO;;;;127103;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Polícia anticibercriminalidade;PT;;;;127104;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Cyberpolicja;PL;;;;127105;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Cyberpolitie;NL;;;;127106;EN;;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Pulizija Ċibernetika;MT;;;;127107;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;A számítástechnikai bűnözésre szakosodott rendőrségi egység;HU;;;;127108;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Kovos su elektroniniais nusikaltimais policija;LT;;;;127109;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Kiberdrošības policija;LV;;;;127110;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Polizia Criminalità informatica;IT;;;;127111;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Kiberpolicija;HR;;;;127112;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Αστυνομία Κυβερνοχώρου;EL;;;;127113;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Cyber Police (küberpolitsei);ET;;;;127114;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Cyber-Polizei;DE;;;;127115;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;IT-politi;DA;;;;127116;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Policejní útvar pro počítačovou trestnou činnost;CS;;;;127117;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Policía Cibernética;ES;;;;127118;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;Киберполиция;BG;;;;127119;EN;;amendment;council;2019-04-09;2019-04-09;2019/560 (OJ L98);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.098.01.0001.01.ENG&toc=OJ:L:2019:098:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7230;EU.2951.42;;2013-03-12;;(Date of UN designation: 2013-03-12);E;enterprise;amendment;council;2021-04-13;2021-04-13;2021/587 (OJ L125);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.125.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A125%3ATOC;;;;;;;;;;;;;;;;;;;Tehran;;;;;;NO;WEB[http://www.cyberpolice.ir]\n(Website: http://www.cyberpolice.ir);IR;IRAN (ISLAMIC REPUBLIC OF);2514;EN;Website: http://www.cyberpolice.ir;amendment;commission;2013-03-12;2013-03-11;206/2013 (OJ L68);IRN;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:068:0009:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7231;EU.3706.30;;2013-02-26;;(Date of UN designation: 2013-02-26)\n(Owns and operates the Roshan Money Exchange. Provided financial services to Ghul Agha Ishakzai and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278407);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Ahmed Shah Noorzai Obaidullah;;;(a) Mullah, (b) Maulavi;Provided financial services to Ghul Agha Ishakzai and other Taliban in Helmand Province.;17134;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7231;EU.3706.30;;2013-02-26;;(Date of UN designation: 2013-02-26)\n(Owns and operates the Roshan Money Exchange. Provided financial services to Ghul Agha Ishakzai and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278407);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Ahmed Shah Noorzai;;;;;17135;EN;;amendment;commission;2013-03-22;2013-03-21;261/2013 (OJ L82);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:082:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7231;EU.3706.30;;2013-02-26;;(Date of UN designation: 2013-02-26)\n(Owns and operates the Roshan Money Exchange. Provided financial services to Ghul Agha Ishakzai and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278407);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Ahmad Shah;;;Maulavi;;17136;EN;;amendment;commission;2013-03-22;2013-03-21;261/2013 (OJ L82);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:082:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7231;EU.3706.30;;2013-02-26;;(Date of UN designation: 2013-02-26)\n(Owns and operates the Roshan Money Exchange. Provided financial services to Ghul Agha Ishakzai and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278407);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Mullah Ahmad Shah;;;;;17137;EN;;amendment;commission;2013-03-22;2013-03-21;261/2013 (OJ L82);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:082:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7231;EU.3706.30;;2013-02-26;;(Date of UN designation: 2013-02-26)\n(Owns and operates the Roshan Money Exchange. Provided financial services to Ghul Agha Ishakzai and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278407);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Maulawi Ahmed Shah;;;;;17138;EN;;amendment;commission;2013-03-22;2013-03-21;261/2013 (OJ L82);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:082:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7231;EU.3706.30;;2013-02-26;;(Date of UN designation: 2013-02-26)\n(Owns and operates the Roshan Money Exchange. Provided financial services to Ghul Agha Ishakzai and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278407);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mullah Mohammed Shah;;;;;17139;EN;;amendment;commission;2013-03-22;2013-03-21;261/2013 (OJ L82);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:082:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7231;EU.3706.30;;2013-02-26;;(Date of UN designation: 2013-02-26)\n(Owns and operates the Roshan Money Exchange. Provided financial services to Ghul Agha Ishakzai and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278407);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta;;;;;;NO;;PK;PAKISTAN;2649;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7231;EU.3706.30;;2013-02-26;;(Date of UN designation: 2013-02-26)\n(Owns and operates the Roshan Money Exchange. Provided financial services to Ghul Agha Ishakzai and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278407);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-01-01;1;1;1985;;;NO;GREGORIAN;;;;Quetta;PK;PAKISTAN;2005;EN;;amendment;commission;2013-03-22;2013-03-21;261/2013 (OJ L82);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:082:0018:0020:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7231;EU.3706.30;;2013-02-26;;(Date of UN designation: 2013-02-26)\n(Owns and operates the Roshan Money Exchange. Provided financial services to Ghul Agha Ishakzai and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278407);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981;;;NO;GREGORIAN;;;;Quetta;PK;PAKISTAN;2006;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7231;EU.3706.30;;2013-02-26;;(Date of UN designation: 2013-02-26)\n(Owns and operates the Roshan Money Exchange. Provided financial services to Ghul Agha Ishakzai and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278407);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NC5140251 (passport-National passport) (valid from 2009-10-23 to 2014-10-22)(pakistani passport issued on 23 october 2009 expires on 22 october 2014, officially cancelled as of 2013);NO;NO;NO;NO;NO;;;2009-10-23;2014-10-22;;;passport;National passport;;PK;;854;EN;pakistani passport issued on 23 october 2009 expires on 22 october 2014, officially cancelled as of 2013;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;7231;EU.3706.30;;2013-02-26;;(Date of UN designation: 2013-02-26)\n(Owns and operates the Roshan Money Exchange. Provided financial services to Ghul Agha Ishakzai and other Taliban in Helmand Province. Alternative title is Maulavi. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5278407);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54401-2288025-9 (id-National identification card) (national identity card number, officially cancelled as of 2013);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;PK;;855;EN;national identity card number, officially cancelled as of 2013;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;; +28/10/2022;7233;EU.4114.21;;2013-03-07;;(Date of UN designation: 2013-03-07)\n(Date of designation: 7.3.2013);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Yo’n;Cho’ng Nam;;Cho’ng Nam Yo’n;;;;Chief Representative for the Korea Mining Development Trading Corporation (KOMID);17475;EN;;amendment;commission;2013-04-23;2013-04-22;370/2013 (OJ L111);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0043:0045:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7234;EU.4115.83;;2013-03-07;;(Date of UN designation: 2013-03-07)\n(Date of designation: 7.3.2013);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Ko;Ch’o’l-Chae;;Ch’o’l-Chae Ko;;;;Deputy Chief Representative for the Korea Mining Development Trading Corporation (KOMID);17477;EN;;amendment;commission;2013-04-23;2013-04-22;370/2013 (OJ L111);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0043:0045:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7235;EU.4116.48;;2013-03-07;;(Date of UN designation: 2013-03-07);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Mun;Cho’ng-Ch’o’l;;Cho’ng-Ch’o’l Mun;;M;;Tanchon Commercial Bank (TCB) official;17478;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7235;EU.4116.48;;2013-03-07;;(Date of UN designation: 2013-03-07);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Mun;Chong-chol;;Chong-chol Mun;SV;M;;;143601;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7235;EU.4116.48;;2013-03-07;;(Date of UN designation: 2013-03-07);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;C/O Tanchon Commercial Bank, Saemaeul 1-Dong, Pyongchon District;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;143130;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7235;EU.4116.48;;2013-03-07;;(Date of UN designation: 2013-03-07);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;143131;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503 +28/10/2022;7236;EU.4194.29;;2013-03-07;;(Date of UN designation: 2013-03-07);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Second Academy of Natural Sciences;;;;The Second Academy of Natural Sciences is a national-level organisation responsible for research and development of the DPRK's advanced weapons systems, including missiles and probably nuclear weapons.;17479;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7236;EU.4194.29;;2013-03-07;;(Date of UN designation: 2013-03-07);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;2nd Academy of Natural Sciences;;;;;17480;EN;;amendment;commission;2013-04-23;2013-04-22;370/2013 (OJ L111);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0043:0045:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7236;EU.4194.29;;2013-03-07;;(Date of UN designation: 2013-03-07);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Che 2 Chayon Kwahakwon;;;;;17481;EN;;amendment;commission;2013-04-23;2013-04-22;370/2013 (OJ L111);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0043:0045:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7236;EU.4194.29;;2013-03-07;;(Date of UN designation: 2013-03-07);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Academy of Natural Sciences;;;;;17482;EN;;amendment;commission;2013-04-23;2013-04-22;370/2013 (OJ L111);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0043:0045:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7236;EU.4194.29;;2013-03-07;;(Date of UN designation: 2013-03-07);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Chayon Kwahak-Won;;;;;17483;EN;;amendment;commission;2013-04-23;2013-04-22;370/2013 (OJ L111);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0043:0045:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7236;EU.4194.29;;2013-03-07;;(Date of UN designation: 2013-03-07);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;National Defense Academy;;;;;17484;EN;;amendment;commission;2013-04-23;2013-04-22;370/2013 (OJ L111);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0043:0045:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7236;EU.4194.29;;2013-03-07;;(Date of UN designation: 2013-03-07);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Kukpang Kwahak-Won;;;;;17485;EN;;amendment;commission;2013-04-23;2013-04-22;370/2013 (OJ L111);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0043:0045:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7236;EU.4194.29;;2013-03-07;;(Date of UN designation: 2013-03-07);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Second Academy of Natural Sciences Research Institute;;;;;17486;EN;;amendment;commission;2013-04-23;2013-04-22;370/2013 (OJ L111);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0043:0045:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7236;EU.4194.29;;2013-03-07;;(Date of UN designation: 2013-03-07);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Sansri;;;;;17487;EN;;amendment;commission;2013-04-23;2013-04-22;370/2013 (OJ L111);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0043:0045:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7236;EU.4194.29;;2013-03-07;;(Date of UN designation: 2013-03-07);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;2517;EN;;amendment;commission;2013-04-23;2013-04-22;370/2013 (OJ L111);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:111:0043:0045:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7237;EU.3707.92;;2013-04-16;;(Date of UN designation: 2013-04-16)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5304878);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Adam Khan Achekzai;;;Maulavi;;17488;EN;;amendment;commission;2013-05-17;2013-05-16;451/2013 (OJ L133);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:133:0001:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7237;EU.3707.92;;2013-04-16;;(Date of UN designation: 2013-04-16)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5304878);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Maulavi Adam Khan;;;;;17489;EN;;amendment;commission;2013-05-17;2013-05-16;451/2013 (OJ L133);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:133:0001:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7237;EU.3707.92;;2013-04-16;;(Date of UN designation: 2013-04-16)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5304878);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Maulavi Adam;;;;;17490;EN;;amendment;commission;2013-05-17;2013-05-16;451/2013 (OJ L133);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:133:0001:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7237;EU.3707.92;;2013-04-16;;(Date of UN designation: 2013-04-16)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5304878);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Chaman, Baluchistan Province;;;;;;NO;;PK;PAKISTAN;2518;EN;;amendment;commission;2013-05-17;2013-05-16;451/2013 (OJ L133);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:133:0001:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7237;EU.3707.92;;2013-04-16;;(Date of UN designation: 2013-04-16)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5304878);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;;;NO;GREGORIAN;;;;Kandahar Province;AF;AFGHANISTAN;2015;EN;;amendment;commission;2013-05-17;2013-05-16;451/2013 (OJ L133);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:133:0001:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7237;EU.3707.92;;2013-04-16;;(Date of UN designation: 2013-04-16)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5304878);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;NO;GREGORIAN;;;;Kandahar Province;AF;AFGHANISTAN;2016;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7237;EU.3707.92;;2013-04-16;;(Date of UN designation: 2013-04-16)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5304878);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971;;;NO;GREGORIAN;;;;Kandahar Province;AF;AFGHANISTAN;2017;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7237;EU.3707.92;;2013-04-16;;(Date of UN designation: 2013-04-16)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5304878);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;NO;GREGORIAN;;;;Kandahar Province;AF;AFGHANISTAN;2018;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7237;EU.3707.92;;2013-04-16;;(Date of UN designation: 2013-04-16)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5304878);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974;;;NO;GREGORIAN;;;;Kandahar Province;AF;AFGHANISTAN;2019;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7237;EU.3707.92;;2013-04-16;;(Date of UN designation: 2013-04-16)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5304878);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;;;NO;GREGORIAN;;;;Kandahar Province;AF;AFGHANISTAN;2020;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7237;EU.3707.92;;2013-04-16;;(Date of UN designation: 2013-04-16)\n(INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5304878);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;796;EN;;amendment;commission;2013-05-17;2013-05-16;451/2013 (OJ L133);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:133:0001:0004:EN:PDF +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizballah Military Wing;;;;;17521;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hezbollah Military Wing;;;;;17522;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizbullah Military Wing;;;;;17523;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizbollah Military Wing;;;;;17524;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hezballah Military Wing;;;;;17525;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hisbollah Military Wing;;;;;17526;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizbu'llah Military Wing;;;;;17527;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizb Allah Military Wing;;;;;17528;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Jihad Council;;;;;17529;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Conseil du Djihad;FR;;;;17531;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Militaire vleugel van Hezbollah;NL;;;;17532;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Raad van de Jihad;NL;;;;17534;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Rama militar de Hizballah;ES;;;;17535;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Rama militar de Hezbollah;ES;;;;17536;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Rama militar de Hizbullah;ES;;;;17537;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Rama militar de Hizbollah;ES;;;;17538;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Rama militar de Hezballah;ES;;;;17539;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Rama militar de Hisbollah;ES;;;;17540;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Rama militar de Hizbu'llah;ES;;;;17541;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Rama militar de Hizb Allah;ES;;;;17542;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Consejo de la Jihad;ES;;;;17543;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ala Militar do Hezbolá;PT;;;;17544;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Conselho da Jihad;PT;;;;17545;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Zbrojne Ramię Hezbollahu;PL;;;;17546;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ala militare di Hezbollah;IT;;;;17547;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Consiglio della Jihad;IT;;;;17548;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizbollahs militære gren;DA;;;;17549;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;aripa militară a Hezbollahului;RO;;;;17550;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Consiliul Jihadului;RO;;;;17551;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Militaire vleugel van Hizb Allah;NL;;;;17567;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Militaire vleugel van Hizbu'llah;NL;;;;17568;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Militaire vleugel van Hisbollah;NL;;;;17569;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Militaire vleugel van Hezballah;NL;;;;17570;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Militaire vleugel van Hizbollah;NL;;;;17571;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Militaire vleugel van Hizbullah;NL;;;;17572;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Militaire vleugel van Hizballah;NL;;;;17573;EN;;amendment;council;2013-07-26;2013-07-26;714/2013 (OJ L201);TERR;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:201:0010:0013:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;External Security Organisation;EN;;;;105935;EN;;repealing;council;2015-08-01;2015-08-02;2015/1325 (OJ L206);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R1325&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizbollahs väpnade gren;SV;;;;123285;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Vojaško krilo Hezbolaha;SL;;;;123286;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Vojenské krídlo Hizballáhu;SK;;;;123287;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Conselho da Jiade;PT;;;;123290;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Rada Dżihadu;PL;;;;123292;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Wojskowe Skrzydło Hizballah;PL;;;;123293;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;"l-""Kunsill tal-Ġihad";MT;;;;123294;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Il-Fergħa Militari ta' Hizballah;MT;;;;123295;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Dzsihád Tanács;HU;;;;123296;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizballah Katonai Szárny;HU;;;;123297;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Džihado taryba;LT;;;;123298;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizballah karinis sparnas;LT;;;;123299;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Consiglio della Jihad;IT;;;;123300;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Vijeće džihada;HR;;;;123302;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Vojno krilo Hezbolaha;HR;;;;123303;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Comhairle Jiohád;GA;;;;123304;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Sciathán Míleata Hizbollah;GA;;;;123305;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Branche militaire du Hezbollah;FR;;;;123307;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Συμβούλιο της Τζιχάντ;EL;;;;123308;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Στρατιωτική πτέρυγα της Χεζμπολάχ;EL;;;;123309;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Džihaadi Nõukogu;ET;;;;123310;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Hizballahi sõjaline tiib;ET;;;;123311;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Vojenské křídlo Hizballáhu;CS;;;;123312;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Consejo de la Yihad;ES;;;;123313;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ala militar de Hizbulá;ES;;;;123314;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7245;EU.3071.69;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Военно крило на ливанската „Хизбула;BG;;;;123315;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7246;EU.3305.11;;;;(Mother's name: Fatma Ali Majour. Description: Dark complexion. Height: 1.70 m. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abu Mohammed Al-Jawlani;;;;Since January 2012, he is the Leader of Al-Nusrah Front for the People of the Levant;17557;EN;;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7246;EU.3305.11;;;;(Mother's name: Fatma Ali Majour. Description: Dark complexion. Height: 1.70 m. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abu Mohamed al-Jawlani;;;;;17558;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7246;EU.3305.11;;;;(Mother's name: Fatma Ali Majour. Description: Dark complexion. Height: 1.70 m. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abu Muhammad al-Jawlani;;;;;17559;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7246;EU.3305.11;;;;(Mother's name: Fatma Ali Majour. Description: Dark complexion. Height: 1.70 m. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abu Mohammed al-Julani;;;;;17560;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7246;EU.3305.11;;;;(Mother's name: Fatma Ali Majour. Description: Dark complexion. Height: 1.70 m. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abu Mohammed al-Golani;;;;;17561;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7246;EU.3305.11;;;;(Mother's name: Fatma Ali Majour. Description: Dark complexion. Height: 1.70 m. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abu Muhammad al-Golani;;;;;17562;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7246;EU.3305.11;;;;(Mother's name: Fatma Ali Majour. Description: Dark complexion. Height: 1.70 m. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abu Muhammad Aljawlani;;;;;17563;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7246;EU.3305.11;;;;(Mother's name: Fatma Ali Majour. Description: Dark complexion. Height: 1.70 m. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Muhammad al-Jawlani;;;;;17564;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7246;EU.3305.11;;;;(Mother's name: Fatma Ali Majour. Description: Dark complexion. Height: 1.70 m. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Shaykh al-Fatih;;;;;17565;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7246;EU.3305.11;;;;(Mother's name: Fatma Ali Majour. Description: Dark complexion. Height: 1.70 m. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Al Fatih;;;;;17566;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7246;EU.3305.11;;;;(Mother's name: Fatma Ali Majour. Description: Dark complexion. Height: 1.70 m. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Abu Ashraf;EN;;;;107265;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7246;EU.3305.11;;;;(Mother's name: Fatma Ali Majour. Description: Dark complexion. Height: 1.70 m. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;Amjad Muzaffar Hussein Ali al-Naimi;EN;;;;107266;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7246;EU.3305.11;;;;(Mother's name: Fatma Ali Majour. Description: Dark complexion. Height: 1.70 m. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(In Syria as at June 2013);SY;SYRIAN ARAB REPUBLIC;107262;EN;In Syria as at June 2013;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7246;EU.3305.11;;;;(Mother's name: Fatma Ali Majour. Description: Dark complexion. Height: 1.70 m. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;Mosul, Souq al-Nabi Yunis;;;;;;NO;;IQ;IRAQ;107263;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7246;EU.3305.11;;;;(Mother's name: Fatma Ali Majour. Description: Dark complexion. Height: 1.70 m. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;1979;YES;GREGORIAN;;;;;SY;SYRIAN ARAB REPUBLIC;2026;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7246;EU.3305.11;;;;(Mother's name: Fatma Ali Majour. Description: Dark complexion. Height: 1.70 m. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980;;;NO;GREGORIAN;;;;;SY;SYRIAN ARAB REPUBLIC;107264;EN;;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7246;EU.3305.11;;;;(Mother's name: Fatma Ali Majour. Description: Dark complexion. Height: 1.70 m. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;council;2016-01-07;2016-01-07;2016/13 (OJ L4/10);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0013&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;798;EN;;amendment;commission;2013-08-06;2013-08-05;754/2013 (OJ L210);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:210:0024:0025:EN:PDF +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Muhammad Jamal Abd-Al Rahim Ahmad Al-Kashif;;;;;17591;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Muhammad Jamal Abdo Al-Kashif;;;;;17592;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Muhammad Jamal Abdo Al Kashef;;;;;17593;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Muhammad Jamal Abd-Al Rahim Al-Kashif;;;;;17594;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Muhammad Jamal Abdu;;;;;17595;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Muhammad Jamal;;;;;17596;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Muhammad Jamal Abu Ahmad;;;;;17597;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Abu Ahmad;;;;;17598;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Abu Jamal;;;;;17599;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Muhammad Gamal Abu Ahmed;;;;;17600;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Mohammad Jamal Abdo Ahmed;;;;;17601;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Muhammad Jamal Abduh;;;;;17602;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Muhammad Jamal Ahmad Abdu;;;;;17603;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Riyadh;;;;;17604;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-01-01;1;1;1964;;;NO;GREGORIAN;;;;Cairo;EG;EGYPT;2031;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-02-01;1;2;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;2032;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6487 (passport-National passport) ((passport issued 30.1.1984, under name muhammad jamal abdu);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;EG;;864;EN;(passport issued 30.1.1984, under name muhammad jamal abdu;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;388181 (other-Other identification number) ((under name muhammad jamal abd- al rahim al- kashif));NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;YE;;865;EN;(under name muhammad jamal abd- al rahim al- kashif);amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;; +28/10/2022;7250;EU.2982.10;;;;(Also has an Egyptian passport issued in 1993, under name Muhammad Jamal Abd-Al Rahim Ahmad Al. Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013.);P;person;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EG;;799;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF +28/10/2022;7251;EU.2984.37;;2013-10-24;;(Date of UN designation: 2013-10-24);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;Lahbous;Mohamed;;Mohamed Lahbous;;;;Member of the Mouvement pour l'Unification et le Jihad en Afrique de l'Ouest (MUJAO). Reportedly deceased as of 14 February 2018.;17605;EN;;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7251;EU.2984.37;;2013-10-24;;(Date of UN designation: 2013-10-24);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;Ennouini;Mohamed;;Mohamed Ennouini;;;;;17606;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7251;EU.2984.37;;2013-10-24;;(Date of UN designation: 2013-10-24);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Hassan;;;;;17607;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7251;EU.2984.37;;2013-10-24;;(Date of UN designation: 2013-10-24);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;Hocine;;;;;17608;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7251;EU.2984.37;;2013-10-24;;(Date of UN designation: 2013-10-24);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;ML;MALI;2538;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7251;EU.2984.37;;2013-10-24;;(Date of UN designation: 2013-10-24);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978;;;NO;GREGORIAN;;;;;ML;MALI;2033;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7251;EU.2984.37;;2013-10-24;;(Date of UN designation: 2013-10-24);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ML;;800;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF +28/10/2022;7252;EU.2985.2;;;;(Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013. Operates in Egypt, Libya, and Mali.);E;enterprise;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Muhammad Jamal Network;;;;;17609;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7252;EU.2985.2;;;;(Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013. Operates in Egypt, Libya, and Mali.);E;enterprise;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;MJN;;;;;17610;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7252;EU.2985.2;;;;(Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013. Operates in Egypt, Libya, and Mali.);E;enterprise;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Muhammad Jamal Group;;;;;17611;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7252;EU.2985.2;;;;(Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013. Operates in Egypt, Libya, and Mali.);E;enterprise;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Jamal Network;;;;;17612;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7252;EU.2985.2;;;;(Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013. Operates in Egypt, Libya, and Mali.);E;enterprise;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Abu Ahmed Group;;;;;17613;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7252;EU.2985.2;;;;(Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013. Operates in Egypt, Libya, and Mali.);E;enterprise;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;Al-Qaida in Egypt;;;;;17614;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7252;EU.2985.2;;;;(Date of designation referred to in Article 2a (4) (b): 21 Oct. 2013. Operates in Egypt, Libya, and Mali.);E;enterprise;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;AQE;;;;;17615;EN;;amendment;commission;2013-11-05;2013-11-04;1091/2013 (OJ L293);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:293:0036:0037:en:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7262;EU.3060.6;;2013-11-26;;(Date of UN designation: 2013-11-26)\n(Date of designation referred to in Article 2a (4) (b): 26.11.2013. Other information: Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan.);P;person;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;Al-Masli;Abd-Al-Hamid;;Abd-Al-Hamid Al-Masli;;;;;17644;EN;;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7262;EU.3060.6;;2013-11-26;;(Date of UN designation: 2013-11-26)\n(Date of designation referred to in Article 2a (4) (b): 26.11.2013. Other information: Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan.);P;person;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;Abd-al-Hamid Muhammad Abd-al-Hamid Al-Masli;;;;;17645;EN;;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7262;EU.3060.6;;2013-11-26;;(Date of UN designation: 2013-11-26)\n(Date of designation referred to in Article 2a (4) (b): 26.11.2013. Other information: Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan.);P;person;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;Musalli;Abd-al-Hamid;;Abd-al-Hamid Musalli;;;;;17646;EN;;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7262;EU.3060.6;;2013-11-26;;(Date of UN designation: 2013-11-26)\n(Date of designation referred to in Article 2a (4) (b): 26.11.2013. Other information: Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan.);P;person;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;Masli;Hamid;;Hamid Masli;;;;;17647;EN;;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7262;EU.3060.6;;2013-11-26;;(Date of UN designation: 2013-11-26)\n(Date of designation referred to in Article 2a (4) (b): 26.11.2013. Other information: Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan.);P;person;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;al-Darnawi;Hamza;;Hamza al-Darnawi;;;;;17648;EN;;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7262;EU.3060.6;;2013-11-26;;(Date of UN designation: 2013-11-26)\n(Date of designation referred to in Article 2a (4) (b): 26.11.2013. Other information: Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan.);P;person;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;al-Darnawi;Hamzah;;Hamzah al-Darnawi;;;;;17649;EN;;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7262;EU.3060.6;;2013-11-26;;(Date of UN designation: 2013-11-26)\n(Date of designation referred to in Article 2a (4) (b): 26.11.2013. Other information: Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan.);P;person;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;Darnawi;Hamza;;Hamza Darnawi;;;;;17650;EN;;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7262;EU.3060.6;;2013-11-26;;(Date of UN designation: 2013-11-26)\n(Date of designation referred to in Article 2a (4) (b): 26.11.2013. Other information: Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan.);P;person;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;Darnawi;Hamzah;;Hamzah Darnawi;;;;;17651;EN;;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7262;EU.3060.6;;2013-11-26;;(Date of UN designation: 2013-11-26)\n(Date of designation referred to in Article 2a (4) (b): 26.11.2013. Other information: Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan.);P;person;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;Dirnawi;Hamzah;;Hamzah Dirnawi;;;;;17652;EN;;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7262;EU.3060.6;;2013-11-26;;(Date of UN designation: 2013-11-26)\n(Date of designation referred to in Article 2a (4) (b): 26.11.2013. Other information: Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan.);P;person;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;Darnavi;Hamza;;Hamza Darnavi;;;;;17653;EN;;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7262;EU.3060.6;;2013-11-26;;(Date of UN designation: 2013-11-26)\n(Date of designation referred to in Article 2a (4) (b): 26.11.2013. Other information: Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan.);P;person;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;al-Darnavi;Hamza;;Hamza al-Darnavi;;;;;17654;EN;;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7262;EU.3060.6;;2013-11-26;;(Date of UN designation: 2013-11-26)\n(Date of designation referred to in Article 2a (4) (b): 26.11.2013. Other information: Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan.);P;person;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;Darnawi;Abdullah;;Abdullah Darnawi;;;;;17655;EN;;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7262;EU.3060.6;;2013-11-26;;(Date of UN designation: 2013-11-26)\n(Date of designation referred to in Article 2a (4) (b): 26.11.2013. Other information: Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan.);P;person;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;al-Darnawi;Abu-Hamzah;;Abu-Hamzah al-Darnawi;;;;;17656;EN;;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7262;EU.3060.6;;2013-11-26;;(Date of UN designation: 2013-11-26)\n(Date of designation referred to in Article 2a (4) (b): 26.11.2013. Other information: Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan.);P;person;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976;;;NO;GREGORIAN;;;;Darnah;LY;LIBYA;2047;EN;;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7262;EU.3060.6;;2013-11-26;;(Date of UN designation: 2013-11-26)\n(Date of designation referred to in Article 2a (4) (b): 26.11.2013. Other information: Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan.);P;person;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976;;;NO;GREGORIAN;;;;Danar;LY;LIBYA;2048;EN;;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7262;EU.3060.6;;2013-11-26;;(Date of UN designation: 2013-11-26)\n(Date of designation referred to in Article 2a (4) (b): 26.11.2013. Other information: Reportedly located in Waziristan, Federally Administered Tribal Areas, Pakistan.);P;person;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LY;;802;EN;;amendment;commission;2013-12-06;2013-12-05;1267/2013 (OJ L326);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:326:0039:0040:EN:PDF +28/10/2022;7264;EU.3331.57;;2016-03-06;;(Date of UN designation: 2016-03-06)\n(Corrigendum 2019/352 (OJ L64) [corr. 28/03/2019-1]);P;person;amendment;council;2019-03-05;2019-03-05;2019/352 (OJ L64);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0352&from=EN;Zakharchenko;Vitalii;Yuriyovych;Vitalii Yuriyovych Zakharchenko;;M;;Former Minister of Internal Affairs;17665;EN;Vitalii Yuriyovych Zakharchenko;amendment;council;2019-03-05;2019-03-05;2019/352 (OJ L64);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0352&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7264;EU.3331.57;;2016-03-06;;(Date of UN designation: 2016-03-06)\n(Corrigendum 2019/352 (OJ L64) [corr. 28/03/2019-1]);P;person;amendment;council;2019-03-05;2019-03-05;2019/352 (OJ L64);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0352&from=EN;Захарченко;Віталій;Юрійович;Віталій Юрійович Захарченко;;;;;18632;EN;;amendment;council;2015-03-05;2015-03-06;2015/357 (OJ L62);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_062_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7264;EU.3331.57;;2016-03-06;;(Date of UN designation: 2016-03-06)\n(Corrigendum 2019/352 (OJ L64) [corr. 28/03/2019-1]);P;person;amendment;council;2019-03-05;2019-03-05;2019/352 (OJ L64);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0352&from=EN;Zakharchenko;Vitaliy;Yurievich;Vitaliy Yurievich Zakharchenko;;;;;18633;EN;;amendment;council;2015-03-05;2015-03-06;2015/357 (OJ L62);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_062_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7264;EU.3331.57;;2016-03-06;;(Date of UN designation: 2016-03-06)\n(Corrigendum 2019/352 (OJ L64) [corr. 28/03/2019-1]);P;person;amendment;council;2019-03-05;2019-03-05;2019/352 (OJ L64);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0352&from=EN;Захарченко;Виталий;Юрьевич;Виталий Юрьевич Захарченко;;;;;18634;EN;;amendment;council;2015-03-05;2015-03-06;2015/357 (OJ L62);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_062_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7264;EU.3331.57;;2016-03-06;;(Date of UN designation: 2016-03-06)\n(Corrigendum 2019/352 (OJ L64) [corr. 28/03/2019-1]);P;person;amendment;council;2019-03-05;2019-03-05;2019/352 (OJ L64);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0352&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-01-20;20;1;1963;;;NO;GREGORIAN;;;;Kostiantynivka (Donetsk oblast);UA;UKRAINE;2051;EN;;amendment;council;2015-03-05;2015-03-06;2015/357 (OJ L62);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_062_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7270;EU.3026.83;;;;;P;person;amendment;council;2019-03-05;2019-03-05;2019/352 (OJ L64);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0352&from=EN;Ratushniak;Viktor;Ivanovych;Viktor Ivanovych Ratushniak;;M;;Former Deputy Minister of Internal Affairs;17671;EN;;regulation;commission;2014-03-06;2014-03-05;208/2014 (OJ L66);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0208&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7270;EU.3026.83;;;;;P;person;amendment;council;2019-03-05;2019-03-05;2019/352 (OJ L64);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0352&from=EN;Ратушняк;Віктор;Іванович;Віктор Іванович Ратушняк;;;;;18641;EN;;amendment;council;2015-03-05;2015-03-06;2015/357 (OJ L62);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_062_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7270;EU.3026.83;;;;;P;person;amendment;council;2019-03-05;2019-03-05;2019/352 (OJ L64);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0352&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-10-16;16;10;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;2057;EN;;regulation;commission;2014-03-06;2014-03-05;208/2014 (OJ L66);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0208&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7277;EU.3068.17;;;;;P;person;amendment;council;2019-03-05;2019-03-05;2019/352 (OJ L64);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0352&from=EN;Kurchenko;Serhiy;Vitalyovych;Serhiy Vitalyovych Kurchenko;;M;;Businessman;17678;EN;;amendment;council;2018-03-06;2018-03-06;2018/326 (OJ L63);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7277;EU.3068.17;;;;;P;person;amendment;council;2019-03-05;2019-03-05;2019/352 (OJ L64);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0352&from=EN;Курченко;Сергій;Віталійович;Сергій Віталійович Курченко;;;;;18650;EN;;amendment;council;2015-03-05;2015-03-06;2015/357 (OJ L62);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_062_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7277;EU.3068.17;;;;;P;person;amendment;council;2019-03-05;2019-03-05;2019/352 (OJ L64);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0352&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-09-21;21;9;1985;;;NO;GREGORIAN;;;;Kharkiv;UA;UKRAINE;2063;EN;;amendment;council;2015-03-05;2015-03-06;2015/357 (OJ L62);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_062_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7281;EU.4230.31;;;;(Date of listing: 17/03/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;AKSYONOV;Sergey;Valeryevich;Sergey Valeryevich AKSYONOV;;M;;Former Prime Minister of Crimea”. Since 9 October 2014, 'Head' of the so-called 'Republic of Crimea.\nMember of the Russia State Council.;17686;EN;;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7281;EU.4230.31;;;;(Date of listing: 17/03/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;AKSENOV;Sergei;Valerievich;Sergei Valerievich AKSENOV;;;;;18662;EN;;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7281;EU.4230.31;;;;(Date of listing: 17/03/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;АКСЁНОВ;Сергей;Валерьевич;Сергей Валерьевич АКСЁНОВ;;;;;18663;EN;;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7281;EU.4230.31;;;;(Date of listing: 17/03/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;AKSYONOV;Serhiy;Valeriyovych;Serhiy Valeriyovych AKSYONOV;;;;;18664;EN;;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7281;EU.4230.31;;;;(Date of listing: 17/03/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Сергій Валерійович АКСЬОНОВ;;;;;18665;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7281;EU.4230.31;;;;(Date of listing: 17/03/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-11-26;26;11;1972;;;NO;GREGORIAN;;;;Beltsy (Bălți);MD;MOLDOVA, REPUBLIC OF;2069;EN;Moldavian SSR (now Republic of Moldova);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7282;EU.2980.80;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Vladimir Andreevich KONSTANTINOV;;M;;Speaker of the Supreme Council of the Autonomous Republic of Crimea. Since 17 March 2014 ‘Chairman’ of the ‘State Council’ of the so-called Republic of Crimea’.;104361;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7282;EU.2980.80;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Владимир Андреевич КОНСТАНТИНОВ;EN;;;;106307;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7282;EU.2980.80;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Володимир Андрійович КОНСТАНТІНОВ;;;;;111380;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7282;EU.2980.80;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KONSTANTINOV;Volodymyr;Andriyovych;Volodymyr Andriyovych KONSTANTINOV;;;;;111381;EN;;amendment;council;2017-03-14;2017-03-15;2017/437 (OJ L67);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0437&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7282;EU.2980.80;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-11-19;19;11;1956;;;NO;GREGORIAN;;;;Bogomol;MD;MOLDOVA, REPUBLIC OF;122831;EN;Bogomol, Moldavian SSR (now Republic of Moldova);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7282;EU.2980.80;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-11-19;19;11;1956;;;NO;GREGORIAN;;Slobozia Regio;;Vladimirovka;MD;MOLDOVA, REPUBLIC OF;122832;EN;Vladimirovka (a.k.a. Vladimirovca), Slobozia Region, Moldavian SSR (now Republic of Moldova);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7283;EU.4231.93;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TEMIRGALIEV;Rustam;Ilmirovich;Rustam Ilmirovich TEMIRGALIEV;;M;;Former Deputy Prime Minister of Crimea.\nOn 11 June 2014, he resigned from his function as ‘First Deputy Prime Minister’ of the so-called ‘Republic of Crimea’. \nFormer General Director of the Managing Company of the Russian-Chinese Investment Fund for Regional Development.;17688;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7283;EU.4231.93;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТЕМИРГАЛИЕВ;Рустам;Ильмирович;Рустам Ильмирович ТЕМИРГАЛИЕВ;RU;M;;;106233;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7283;EU.4231.93;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТЕМІРГАЛІЄВ;Рустам;Ільмирович;Рустам Ільмирович ТЕМІРГАЛІЄВ;UK;M;;;111382;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7283;EU.4231.93;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TEMIRHALIIEV;Rustam;Ilmyrovych;Rustam Ilmyrovych TEMIRHALIIEV;;M;;;111383;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7283;EU.4231.93;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Rustam Ilmyrovytj TEMIRHALIJEV;SV;M;;;143700;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7283;EU.4231.93;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Rustam Ilmirovitj TEMIRGALIJEV;SV;M;;;143701;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7283;EU.4231.93;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-08-15;15;8;1976;;;NO;GREGORIAN;;;;Ulan-Ude, Buryat ASSR;RU;RUSSIAN FEDERATION;2071;EN;Russian SFSR;amendment;council;2016-09-16;2016-09-16;2016/1661 (OJ L249);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1661&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7284;EU.3637.33;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;BEREZOVSKIY;Denis;Valentinovich;Denis Valentinovich BEREZOVSKIY;;M;;He was Deputy Commander of the Black Sea Fleet of the Russian Federation until October 2015.\n\nDeputy Commander of the Pacific Fleet of the Russian Federation and Vice-Admiral.;17689;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7284;EU.3637.33;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Денис Валентинович БЕРЕЗОВСКИЙ;;M;;;106234;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7284;EU.3637.33;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Денис Валентинович БЕРЕЗОВСЬКИЙ;;M;;;111384;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7284;EU.3637.33;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;BEREZOVSKYY;Denys;Valentynovych;Denys Valentynovych BEREZOVSKYY;;M;;;111385;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7284;EU.3637.33;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Denys Valentynovytj BERESOVSKYJ;SV;M;;;131406;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7284;EU.3637.33;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Denis Valentinovitj BEREZOVSKIJ;SV;M;;;131407;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7284;EU.3637.33;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Denis Walentinowitsch BERESOWSKI;DE;M;;;131408;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7284;EU.3637.33;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-07-15;15;7;1974;;;NO;GREGORIAN;;;;Kharkiv;UA;UKRAINE;2085;EN;Ukrainian SSR (now Ukraine);amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7285;EU.4232.58;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;CHALIY;Aleksei;Mikhailovich;Aleksei Mikhailovich CHALIY;;M;;"He became ""People's Mayor of Sevastopol"" on 23 February 2014. Acting 'governor' of Sevastopol from 1 to 14 April 2014. A former 'elected' Chairman of the 'Legislative Assembly' of the City of Sevastopol. Former ""elected"" Chaiman and former member of the “Legislative Assembly” of the City of Sevastopol (until September 2019). President of the Charitable Fund for Historical and Cultural Development Of the City ""35th Coast Battery"". General manager of Smart Electric Networks LLC (OOO “Разумные электрические сети”).";17690;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7285;EU.4232.58;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЧАЛЫЙ;Алексей;Михайлович;Алексей Михайлович ЧАЛЫЙ;RU;M;;;106236;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7285;EU.4232.58;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЧАЛИЙ;Олексій;Михайлович;Олексій Михайлович ЧАЛИЙ;UK;M;;;111386;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7285;EU.4232.58;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;CHALYY;Oleksiy;Mykhaylovych;Oleksiy Mykhaylovych CHALYY;;M;;;111387;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7285;EU.4232.58;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleksij Mychajlovytj TJALYJ;SV;M;;;128351;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7285;EU.4232.58;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Michajlovitj TJALYJ;SV;M;;;128352;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7285;EU.4232.58;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-06-13;13;6;1961;;;NO;GREGORIAN;;;;Sevastopol;UA;UKRAINE;122829;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7285;EU.4232.58;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-06-13;13;6;1961;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;122830;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7286;EU.2981.45;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;ZIMA;Pyotr;Anatoliyovych;Pyotr Anatoliyovych ZIMA;;;;Head of the Crimean Security Service (SBU);104362;EN;;amendment;council;2018-03-13;2018-03-14;2018/388 (OJ L69);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0388&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7286;EU.2981.45;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;Анатольевич ЗИМА;Пётр;;Пётр Анатольевич ЗИМА;EN;;;;109290;EN;Пётр Анатольевич ЗИМА;amendment;council;2018-03-13;2018-03-14;2018/388 (OJ L69);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0388&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7286;EU.2981.45;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Петро Анатолійович ЗИМА;;;;;111388;EN;Петро Анатолiйович ЗИМА;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7286;EU.2981.45;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;ZYMA;Petro;Anatoliyovych;Petro Anatoliyovych ZYMA;;;;;111389;EN;;amendment;council;2017-03-14;2017-03-15;2017/437 (OJ L67);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0437&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7286;EU.2981.45;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-03-29;29;3;1965;;;NO;GREGORIAN;;;Artemivsk (Артемовск);Donetsk Oblast;UA;UKRAINE;109289;EN;Artemivsk (Артемовск) (2016 renamed back to Bakhmut/Бахмут), Donetsk Oblast, Ukraine;amendment;council;2017-03-14;2017-03-15;2017/437 (OJ L67);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0437&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7286;EU.2981.45;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-01-18;18;1;1970;;;NO;GREGORIAN;;;Artemivsk (Артемовск);Donetsk Oblast;UA;UKRAINE;115864;EN;DOB: 18.1.1970\nArtemivsk (Артемовск) (2016 renamed back to Bakhmut/Бахмут), Donetsk Oblast, Ukraine;amendment;council;2018-03-13;2018-03-14;2018/388 (OJ L69);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0388&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7288;EU.3644.42;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Sergey Pavlovych TSEKOV;;M;;"Vice Speaker of the Verkhovna Rada of Crimea; Member of the Federation Council of the Russian Federation from the so-called ‘Republic of Crimea’ since 2014, reappointed in September 2019. Member of the Council of the Federation Committee on Foreign Affairs.";17693;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7288;EU.3644.42;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Сергей Павлович ЦЕКОВ;;M;;;106240;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7288;EU.3644.42;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Сергій Павлович ЦЕКОВ;;M;;;111391;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7288;EU.3644.42;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;TSEKOV;Serhiy;Pavlovych;Serhiy Pavlovych TSEKOV;;M;;;111392;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7288;EU.3644.42;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Serhij Pavlovytj TSEKOV;SV;;;;137427;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7288;EU.3644.42;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Sergej Pavlovitj TSEKOV;SV;;;;137428;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7288;EU.3644.42;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-08-28;28;8;1953;;;NO;GREGORIAN;;;;Simferopol;UA;UKRAINE;122833;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7288;EU.3644.42;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-09-28;28;9;1953;;;NO;GREGORIAN;;;;Simferopol;UA;UKRAINE;122834;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7289;EU.3505.38;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;OZEROV;Viktor;Alekseevich;Viktor Alekseevich OZEROV;;M;;"Former Chairman of the Security and Defence Committee of the Federation Council of the Russian Federation. In July 2017, he filed his resignation as the Chairman of the Security and Defence Committee. He continues to be a member of the Council and is a member of the Committee on internal regulation and parliamentary affairs.\nOn 10 October 2017, he was included in the temporary commission of the Federation Council on protection of state sovereignty and prevention of interference in the internal affairs of the Russian Federation.\nHis mandate in the Federation Council expired in September 2019. Consultant of the Foundation Rospolitika since October 2019.\nCurrently, he is the Deputy Head of the Consulting Centre ""Tactical Solutions Agency"" in the Russian Presidential Academy of National Economy and Public Administration.";17694;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7289;EU.3505.38;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ОЗЕРОВ;Виктор;Алексеевич;Виктор Алексеевич ОЗЕРОВ;RU;M;;;106241;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7289;EU.3505.38;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Aleksejevitj OZEROV;SV;M;;;143702;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7289;EU.3505.38;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-01-05;5;1;1958;;;NO;GREGORIAN;;Khakassia;;Abakan;RU;RUSSIAN FEDERATION;122835;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7290;EU.3506.3;;2014-03-17;;(Date of UN designation: 2014-03-17)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Vladimir Michailovich DZHABAROV;;M;;First Deputy-Chairman of the International Affairs Committee of the Federation Council of the Russian Federation;17695;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7290;EU.3506.3;;2014-03-17;;(Date of UN designation: 2014-03-17)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Владимир Михайлович ДЖАБАРОВ;EN;M;;;106242;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7290;EU.3506.3;;2014-03-17;;(Date of UN designation: 2014-03-17)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-09-29;29;9;1952;;;NO;GREGORIAN;;;;Samarkand;UZ;UZBEKISTAN;122836;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7291;EU.3098.20;;2014-03-17;;(Date of UN designation: 2014-03-17)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KLISHAS;Andrei;Aleksandrovich;Andrei Aleksandrovich KLISHAS;;M;;Chairman of the Committee on Constitutional Law of the Federation Council of the Russian Federation.;17696;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7291;EU.3098.20;;2014-03-17;;(Date of UN designation: 2014-03-17)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Андрей Александрович КЛИШАС;EN;M;;;109291;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7291;EU.3098.20;;2014-03-17;;(Date of UN designation: 2014-03-17)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-11-09;9;11;1972;;;NO;GREGORIAN;;;;Sverdlovsk (Ekaterinburg);RU;RUSSIAN FEDERATION;122837;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7292;EU.3507.65;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Nikolai Ivanovich RYZHKOV;;M;;Member of the Committee for federal issues, regional politics and the North of the Federation Council of the Russian Federation.;17697;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7292;EU.3507.65;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Николай Иванович РЫЖКОВ;;M;;;106244;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7292;EU.3507.65;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Nikolaj Ivanovitj RYZJKOV;SV;M;;;128353;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7292;EU.3507.65;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1929-09-28;28;9;1929;;;NO;GREGORIAN;;Donetsk region;;Dyleevka;UA;UKRAINE;2077;EN;Ukrainian SSR, now Ukraine;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7294;EU.3509.92;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;TOTOONOV;Aleksandr;Borisovich;Aleksandr Borisovich TOTOONOV;;M;;Former Member of the Committee of International Affairs of the Federation Council of the Russian Federation. His duties as a Member \nof the Council of the Russian Federation ended in September 2017. Since September 2017 he is the First Deputy Chair of the Parliament of North Ossetia.;17699;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7294;EU.3509.92;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Александр Борисович ТОТООНОВ;EN;M;;;106311;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7294;EU.3509.92;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-04-03;3;4;1957;;;NO;GREGORIAN;;North Ossetia;;Ordzhonikidze (Vladikavkaz);RU;RUSSIAN FEDERATION;122838;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7296;EU.3513.12;;2014-03-17;;(Date of UN designation: 2014-03-17)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Sergei Mikhailovich MIRONOV;;M;;"Member of the Council of the State Duma; Leader of Fair Russia faction in the Duma of the Russian Federation.";17701;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7296;EU.3513.12;;2014-03-17;;(Date of UN designation: 2014-03-17)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Сергей Михайлович МИРОНОВ;EN;M;;;106247;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7296;EU.3513.12;;2014-03-17;;(Date of UN designation: 2014-03-17)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-02-14;14;2;1953;;;NO;GREGORIAN;;Leningrad region;;Pushkin;RU;RUSSIAN FEDERATION;2081;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7297;EU.3645.7;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;ZHELEZNYAK;Sergei;Vladimirovich;Sergei Vladimirovich ZHELEZNYAK;;M;;Former Deputy Speaker of the State Duma of the Russian Federation. Former Deputy Chairperson and former member of the State Duma Committee on International Affairs.\n\nMember of the Presidium of the General Council of the United Russia party.;17702;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7297;EU.3645.7;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Сергей Владимирович ЖЕЛЕЗНЯК;;M;;;106248;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7297;EU.3645.7;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Sergej Vladimirovitj ZJELEZNJAK;SV;M;;;131409;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7297;EU.3645.7;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Sergej Wladimirowitsch SCHELESNJAK;DE;M;;;131410;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7297;EU.3645.7;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-07-30;30;7;1970;;;NO;GREGORIAN;;;;St Petersburg (former Leningrad);RU;RUSSIAN FEDERATION;2082;EN;;regulation;commission;2014-03-17;2014-03-17;269/2014 (OJ L78);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0269&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7298;EU.3646.69;;2014-03-17;;(Date of UN designation: 2014-03-17)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Leonid Eduardovich SLUTSKI;;M;;Former Chairman of the Commonwealth of Independent States (CIS) Committee of the State Duma of the Russian Federation (member of the LDPR).\nCurrently Chairperson of the Foreign Affairs Committee of the State Duma of the Russian Federation.;17703;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7298;EU.3646.69;;2014-03-17;;(Date of UN designation: 2014-03-17)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Леонид Эдуардович СЛУЦКИЙ;EN;;;;106249;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7298;EU.3646.69;;2014-03-17;;(Date of UN designation: 2014-03-17)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-01-04;4;1;1968;;;NO;GREGORIAN;;;;Моscow;RU;RUSSIAN FEDERATION;2083;EN;;regulation;commission;2014-03-17;2014-03-17;269/2014 (OJ L78);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0269&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7299;EU.3514.74;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Aleksandr Viktorovich VITKO;;M;;Former Commander of the Black Sea Fleet, Admiral. Former Chief of Staff and First Deputy Commander in Chief of the Russian Navy.;17704;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7299;EU.3514.74;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Александр Викторович ВИТКО;;M;;;106250;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7299;EU.3514.74;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Aleksandr Viktorovitj VITKO;SV;;;;137429;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7299;EU.3514.74;;2014-03-17;;(Date of UN designation: 2014-03-17);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-09-13;13;9;1961;;;NO;GREGORIAN;;;;Vitebsk;BY;BELARUS;2084;EN;Vitebsk (Belarusian SSR), now Belarus;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7300;EU.2797.3;;2014-03-17;;(Date of UN designation: 2014-03-17)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Anatoliy Alekseevich SIDOROV;;M;;Commander, Russia's Western Military District.;104364;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7300;EU.2797.3;;2014-03-17;;(Date of UN designation: 2014-03-17)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Анатолий Алексеевич СИДОРОВ;EN;M;;;106251;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7300;EU.2797.3;;2014-03-17;;(Date of UN designation: 2014-03-17)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-07-02;2;7;1958;;;NO;GREGORIAN;;Perm region;;Siva;RU;RUSSIAN FEDERATION;122839;EN;Siva, Perm region, USSR (now Russian Federation);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7301;EU.2798.65;;;;(date of listing: 17/03/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;GALKIN;Aleksandr;Viktorovich;Aleksandr Viktorovich GALKIN;;;;"Former Commander of Russia's Southern Military District (""SMD"").\nCurrently employed by the Central apparatus of the Russian Ministry of Defence.";104365;EN;;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7301;EU.2798.65;;;;(date of listing: 17/03/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Александр Викторович ГАЛКИН;EN;;;;106253;EN;;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7301;EU.2798.65;;;;(date of listing: 17/03/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-03-22;22;3;1958;;;NO;GREGORIAN;;North Ossetian ASSR;;Ordzhonikidze (Vladikavkaz);RU;RUSSIAN FEDERATION;122840;EN;Ordzhonikidze (Vladikavkaz) , North Ossetian ASSR, USSR (now Russian Federation);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7302;EU.3515.39;;;Date of listing: 21/03/2014;(Designation details: Date of listing: 21/03/2014)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;ROGOZIN;Dmitry;Olegovich;Dmitry Olegovich ROGOZIN;;M;;Former Deputy Prime Minister of the Russian Federation. Since 2018 holds the position of General Director in a State corporation.;17708;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7302;EU.3515.39;;;Date of listing: 21/03/2014;(Designation details: Date of listing: 21/03/2014)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Дмитрий Олегович РОГОЗИН;EN;M;;;106254;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7302;EU.3515.39;;;Date of listing: 21/03/2014;(Designation details: Date of listing: 21/03/2014)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-12-21;21;12;1963;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;122841;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7303;EU.3516.4;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Sergey Yurievich GLAZYEV;;M;;Adviser to the President of the Russian Federation.;17709;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7303;EU.3516.4;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Сергей Юрьевич ГЛАЗЬЕВ;EN;M;;;106255;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7303;EU.3516.4;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-01-01;1;1;1961;;;NO;GREGORIAN;;;;Zaporozhye;UA;UKRAINE;2087;EN;Zaporozhye (Ukrainian SSR);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7304;EU.3517.66;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Valentina Ivanova MATVIYENKO;;F;;Speaker of the Federation Council.;17710;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7304;EU.3517.66;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Валентина Ивановна МАТВИЕНКО;EN;F;;;106258;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7304;EU.3517.66;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Валентина Ивановна ТЮТИНА;;F;;;123528;EN;maiden name;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7304;EU.3517.66;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Valentina Ivanova TYUTINA;;F;;;123529;EN;maiden name;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7304;EU.3517.66;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-04-07;7;4;1949;;;NO;GREGORIAN;;Khmelnitsky (Kamenets- Podolsky) region;;Shepetovka;UA;UKRAINE;2088;EN;Shepetovka, Khmelnitsky (Kamenets-Podolsky) region (Ukrainian SSR), now Ukraine;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7305;EU.3647.34;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Sergei Evgenevich NARYSHKIN;;M;;Former Speaker of the State Duma.\nCurrently Director of the Foreign Intelligence Service of the Russian Federation as of October 2016. Permanent member and Secretary of the Security Council of the Russian Federation.;17711;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7305;EU.3647.34;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Сергей Евгеньевич НАРЫШКИН;EN;M;;;106259;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7305;EU.3647.34;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-10-27;27;10;1954;;;NO;GREGORIAN;;;;St Petersburg (former Leningrad);RU;RUSSIAN FEDERATION;2089;EN;;amendment;commission;2014-03-21;2014-03-21;284/2014 (OJ L86);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0284&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7306;EU.268.96;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Dmitry Konstantinovich KISELYOV;;M;;"Head of the Russian Federal State news agency ""Rossiya Segodnya""";17712;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7306;EU.268.96;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Dmitrii Konstantinovich KISELEV;;M;;;18666;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7306;EU.268.96;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Дмитрий Константинович КИСЕЛЁВ;;M;;;18667;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7306;EU.268.96;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-04-26;26;4;1954;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;2090;EN;;amendment;council;2015-03-13;2015-03-14;2015/427 (OJ L70);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_070_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7307;EU.3648.96;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(====);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Alexander Mihailovich NOSATOV;;M;;Former Commander of the Black Sea Fleet, Rear-Admiral. Currently Admiral, Chief of the Main Staff of the Russian Navy.;17713;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7307;EU.3648.96;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(====);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Александр Михайлович НОСАТОВ;;M;;;106260;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7307;EU.3648.96;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(====);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Aleksandr Michajlovitj NOSATOV;SV;;;;137430;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7307;EU.3648.96;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(====);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-03-27;27;3;1963;;;NO;GREGORIAN;;;;Sevastopol;UA;UKRAINE;2091;EN;Sevastopol (Ukrainian SSR);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7308;EU.3525.40;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;KULIKOV;Valery;Vladimirovich;Valery Vladimirovich KULIKOV;;M;;Former Deputy-Commander of the Black Sea Fleet, Rear Admiral. On 26 September 2017, with a Decree of the President of Russian Federation, he was dismissed from this post and from military service. Former member of the Federation Council of Russian Federation, representing the annexed City of Sevastopol. Currently serves as deputy in the “Legislative Assembly” of the City of Sevastopol.;17714;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7308;EU.3525.40;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Валерий Владимирович КУЛИКОВ;;M;;;106261;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7308;EU.3525.40;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Valerij Vladimirovitj KULIKOV;SV;M;;;128354;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7308;EU.3525.40;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-09-01;1;9;1956;;;NO;GREGORIAN;;;;Zaporozhye;UA;UKRAINE;122842;EN;Ukrainian SSR, now Ukraine;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7309;EU.3526.5;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Vladislav Yurievich SURKOV;;M;;Former Aide to the President of the Russian Federation.;17715;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7309;EU.3526.5;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Владислав Юрьевич СУРКОВ;EN;M;;;106262;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7309;EU.3526.5;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-09-21;21;9;1964;;;NO;GREGORIAN;;Lipetsk region;;Solntsevo;RU;RUSSIAN FEDERATION;2093;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7310;EU.2819.84;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Mikhail Grigorievich MALYSHEV;;M;;Chair of the Crimea Electoral Commission.;104366;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7310;EU.2819.84;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Михаил Григорьевич МАЛЫШЕВ;EN;M;;;106264;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7310;EU.2819.84;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Михайло Григорович МАЛИШЕВ;;M;;;111393;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7310;EU.2819.84;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;MALYSHEV;Mykhaylo;Hryhorovych;Mykhaylo Hryhorovych MALYSHEV;;M;;;111394;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7310;EU.2819.84;;2014-03-21;;(Date of UN designation: 2014-03-21)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-10-10;10;10;1955;;;NO;GREGORIAN;;Crimea;;Simferopol;UA;UKRAINE;122843;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7312;EU.2821.74;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Igor Nikolaevich TURCHENYUK;;M;Lt. Gen.;"Former de facto Commander of Russian troops deployed on the ground in the illegally annexed Crimea; Former Deputy Commander of the Southern Military District.\n\nHead of the Southern District of the Russian National Guard.";104368;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7312;EU.2821.74;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Игорь Николаевич ТУРЧЕНЮК;;M;;;106268;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7312;EU.2821.74;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Igor Mykolayovich TURCHENYUK;EN;M;;;106313;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7312;EU.2821.74;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Igor Mykolajovytj TURTJENJUK;SV;;;;137431;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7312;EU.2821.74;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Igor Nikolajevitj TURTJENJUK;SV;;;;137432;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7312;EU.2821.74;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-12-05;5;12;1959;;;NO;GREGORIAN;;;;Osh;KG;KYRGYZSTAN;122844;EN;Osh, Kyrgyz SSR, now Kyrgyzstan;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7313;EU.2822.39;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;MIZULINA;Elena;Borisovna;Elena Borisovna MIZULINA;;F;;Former Deputy in the State Duma.\n\nAs of September 2015, a Member of the Federation Council from Omsk region. Currently Deputy Chairman of the Federation Council Committee on Constitutional Legislation and State Building.;104369;EN;born DMITRIYEVA;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7313;EU.2822.39;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Елена Борисовна ДМИТРИЕВА;EN;F;;;106272;EN;maiden name;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7313;EU.2822.39;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Елена Борисовна МИЗУЛИНА;EN;F;;;106273;EN;born Дмитриева;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7313;EU.2822.39;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Elena Borisovna DMITRIYEVA;EN;F;;;106274;EN;maiden name;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7313;EU.2822.39;;2014-03-21;;(Date of UN designation: 2014-03-21);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-12-09;9;12;1954;;;NO;GREGORIAN;;Kostroma region;Bui;;RU;RUSSIAN FEDERATION;106271;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7320;EU.3527.67;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;KOZAK;Dmitry;Nikolayevich;Dmitry Nikolayevich KOZAK;;M;;Former Deputy Prime Minister. Deputy Chief of Staff of the Presidential Administration of the Russian Federation. He is the President’s Special Envoy for conflict-management in Ukraine.;17739;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7320;EU.3527.67;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Дмитрий Николаевич КОЗАК;;M;;;106277;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7320;EU.3527.67;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Dmitrij Nikolajevitj KOZAK;SV;M;;;128355;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7320;EU.3527.67;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-11-07;7;11;1958;;;NO;GREGORIAN;;Kirovograd region;;Bandurovo;UA;UKRAINE;122846;EN;Ukrainian SSR, now Ukraine;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7320;EU.3527.67;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;122847;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN +28/10/2022;7321;EU.3654.43;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;BELAVENTSEV;Oleg;Yevgenyvich;Oleg Yevgenyvich BELAVENTSEV;;M;;Former Plenipotentiary Representative of the President of the Russian Federation into the so-called ‘Crimean Federal District’. Former non-permanent member of the Russian Security Council. Former Plenipotentiary Representative of the President of the Russian Federation into the North Caucasus Federal District (until June 2018). Honorary Consul of Nicaragua in Crimea since October 2020.;17740;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7321;EU.3654.43;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Олег Евгеньевич БЕЛАВЕНЦЕВ;;M;;;106278;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7321;EU.3654.43;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Oleg Jevgenjevitj BELAVENTSEV;SV;M;;;128356;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7321;EU.3654.43;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-09-15;15;9;1949;;;NO;GREGORIAN;;Pskov region;;Ostrov;RU;RUSSIAN FEDERATION;122848;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7321;EU.3654.43;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-09-15;15;9;1949;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;122849;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7322;EU.3477.10;;;Date of listing: 29/04/2014;(Designation details: Date of listing: 29/04/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;SAVELYEV;Oleg;Genrikhovich;Oleg Genrikhovich SAVELYEV;;M;;Former Minister for Crimean Affairs. Responsible for the integration of the annexed Autonomous ‘Republic of Crimea’ into the Russian Federation.\n\nFormer Deputy Chief of Staff of the Russian Government, responsible for the organisation of the work of the Governmental Commission on the socio-economic development of the so‐called ‘Republic of Crimea’.\nFormer Chief of Staff of the Accounts Chamber of the Russian Federation. Since September 2019 Auditor of the Accounts Chamber of the Russian Federation.;17741;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7322;EU.3477.10;;;Date of listing: 29/04/2014;(Designation details: Date of listing: 29/04/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Олег Генрихович САВЕЛЬЕВ;EN;M;;;106279;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7322;EU.3477.10;;;Date of listing: 29/04/2014;(Designation details: Date of listing: 29/04/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-10-27;27;10;1965;;;NO;GREGORIAN;;;;Leningrad;RU;RUSSIAN FEDERATION;122850;EN;Leningrad, USSR (now St Petersburg, Russian Federation);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7323;EU.3655.8;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;MENYAILO;Sergei;Ivanovich;Sergei Ivanovich MENYAILO;;M;;Former Governor of the Ukrainian annexed city of Sevastopol.\n\nFormer Plenipotentiary Representative of the President of the Russian Federation to the Siberian Federal District. Member of the Security Council of the Russian Federation.\n\nHead of Northern Ossetia since 19 September 2021.;17742;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7323;EU.3655.8;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Сергей Иванович МЕНЯЙЛО;;M;;;106282;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7323;EU.3655.8;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Sergej Iwanowitsch MENJAILO;DE;M;;;131411;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7323;EU.3655.8;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Sergej Ivanovitj MENJAJLO;SV;M;;;131412;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7323;EU.3655.8;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-08-22;22;8;1960;;;NO;GREGORIAN;;North-Ossetian Autonomous SSR;;Alagir;RU;RUSSIAN FEDERATION;122851;EN;RSFSR (now Russian Federation);amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7324;EU.3528.32;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;KOVITIDI;Olga;Fedorovna;Olga Fedorovna KOVITIDI;;F;;Member of the Russian Federation Council from the annexed Autonomous ‘Republic of Crimea’ since 2014, reappointed in 2019.\n\nMember of the Federation Council Committee on Constitutional Legislation and State Building.;17743;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7324;EU.3528.32;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Ольга Фёдоровна КОВИТИДИ;;F;;;106283;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7324;EU.3528.32;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Olga Fjodorovna KOVITIDI;SV;;;;137433;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7324;EU.3528.32;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-05-07;7;5;1962;;;NO;GREGORIAN;;;;Simferopol;UA;UKRAINE;2104;EN;Ukrainian SSR;amendment;council;2016-09-16;2016-09-16;2016/1661 (OJ L249);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1661&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7326;EU.3529.94;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;NEVEROV;Sergei;Ivanovich;Sergei Ivanovich NEVEROV;;M;;Former Deputy Chairman of State Duma. Member of the Duma, head of the United Russia faction.;17745;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7326;EU.3529.94;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Сергей Иванович НЕВЕРОВ;EN;M;;;106284;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7326;EU.3529.94;;2014-04-29;;(Date of UN designation: 2014-04-29);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-12-21;21;12;1961;;;NO;GREGORIAN;;;;Tashtagol;RU;RUSSIAN FEDERATION;2106;EN;Tashtagol, USSR (now Russian Federation);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7328;EU.3530.22;;2014-04-29;;(Date of UN designation: 2014-04-29)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;GERASIMOV;Valery;Vasilevich;Valery Vasilevich GERASIMOV;;M;General of the Army;Chief of the General Staff of the Armed Forces of the Russian Federation, First Deputy Minister of Defence of the Russian Federation, General of the Army.;17747;EN;;amendment;commission;2014-04-29;2014-04-28;433/2014 (OJ L126);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0433&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7328;EU.3530.22;;2014-04-29;;(Date of UN designation: 2014-04-29)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Валерий Васильевич ГЕРАСИМОВ;EN;M;;;106285;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7328;EU.3530.22;;2014-04-29;;(Date of UN designation: 2014-04-29)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-09-08;8;9;1955;;;NO;GREGORIAN;;;;Kazan;RU;RUSSIAN FEDERATION;122852;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7329;EU.3656.70;;2014-04-29;;(Date of UN designation: 2014-04-29)\n(none);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;PROKOPIV;German;;German PROKOPIV;;M;;Active member of the ‘Lugansk Guard’. Remains an active military fighter of the LNR.;17748;EN;;amendment;council;2017-03-14;2017-03-15;2017/437 (OJ L67);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0437&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7329;EU.3656.70;;2014-04-29;;(Date of UN designation: 2014-04-29)\n(none);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Герман ПРОКОПИВ;EN;M;;;109534;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7329;EU.3656.70;;2014-04-29;;(Date of UN designation: 2014-04-29)\n(none);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Ли Ван Чоль;;M;;;111398;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7329;EU.3656.70;;2014-04-29;;(Date of UN designation: 2014-04-29)\n(none);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Li Van Chol;;M;;;111399;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7329;EU.3656.70;;2014-04-29;;(Date of UN designation: 2014-04-29)\n(none);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Герман ПРОКОПІВ;;M;;;111400;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7329;EU.3656.70;;2014-04-29;;(Date of UN designation: 2014-04-29)\n(none);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;PROKOPIV;Herman;;Herman PROKOPIV;;M;;;111401;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7329;EU.3656.70;;2014-04-29;;(Date of UN designation: 2014-04-29)\n(none);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1993-07-06;6;7;1993;;;NO;GREGORIAN;;;;Prague;CZ;CZECH REPUBLIC;111397;EN;;amendment;council;2017-03-14;2017-03-15;2017/437 (OJ L67);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0437&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7329;EU.3656.70;;2014-04-29;;(Date of UN designation: 2014-04-29)\n(none);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1991-07-06;6;7;1991;;;NO;GREGORIAN;;;;Prague;CZ;CZECH REPUBLIC;125014;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7331;EU.3038.14;;;;(date of listing: 29/04/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;PURHIN;Andriy;Yevhenovych;Andriy Yevhenovych PURHIN;;M;;Co‐founder of a ‘Civic Initiative of Donbass for the Eurasian Union’. Former ‘First Deputy Chairman of the Council of Ministers’. Until 4 September 2015‘Chairman’ of the ‘People’s Council of the Donetsk People’s Republic’.;17750;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7331;EU.3038.14;;;;(date of listing: 29/04/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Андрій Євгенович ПУРГІН;;M;;;18669;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7331;EU.3038.14;;;;(date of listing: 29/04/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;PURGIN;Andrei;Evgenevich;Andrei Evgenevich PURGIN;;M;;;18670;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7331;EU.3038.14;;;;(date of listing: 29/04/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;ПУРГИН;Андрей;Евгеньевич;Андрей Евгеньевич ПУРГИН;;M;;;104373;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7331;EU.3038.14;;;;(date of listing: 29/04/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-01-26;26;1;1972;;;NO;GREGORIAN;;;;Donetsk;UA;UKRAINE;122853;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7332;EU.3481.27;;;Date of listing: 29/04/2014;(Designation details: Date of listing: 29/04/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Denys Volodymyrovych PUSHYLIN;;M;;One of the leaders of the “Donetsk People's Republic”. Participated in the seizure and occupation of the regional administration in Donetsk in 2014. Until 4 September 2015 so-called Deputy Chairman of the “People's Council” of the so-called “Donetsk People's Republic”. Since 4 September 2015 “Chairman” of the “People's Council of the Donetsk People's Republic”. So-called “acting Head of the Donetsk People's Republic” after 7 September 2018. So-called “Head of the Donetsk People's Republic” following the so-called elections of 11 November 2018.;17751;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7332;EU.3481.27;;;Date of listing: 29/04/2014;(Designation details: Date of listing: 29/04/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Денис Володимирович ПУШИЛIН;;M;;;18671;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7332;EU.3481.27;;;Date of listing: 29/04/2014;(Designation details: Date of listing: 29/04/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Denis Vladimirovich PUSHILIN;;M;;;18672;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7332;EU.3481.27;;;Date of listing: 29/04/2014;(Designation details: Date of listing: 29/04/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Денис Владимирович ПУШИЛИН;;M;;;18673;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7332;EU.3481.27;;;Date of listing: 29/04/2014;(Designation details: Date of listing: 29/04/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-05-09;9;5;1981;;;NO;GREGORIAN;;;;Makiivka (Donetsk oblast);UA;UKRAINE;122854;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7333;EU.3039.76;;;29.4.2014;(Designation details: 29.4.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Сергей Геннадьевич ЦЫПЛАКОВ;;M;;;111404;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7333;EU.3039.76;;;29.4.2014;(Designation details: 29.4.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;TSYPLAKOV;Serhiy;Hennadiyovych;Serhiy Hennadiyovych TSYPLAKOV;;M;;;111405;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7333;EU.3039.76;;;29.4.2014;(Designation details: 29.4.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Сергій Геннадійович ЦИПЛАКОВ;;M;;;111406;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7333;EU.3039.76;;;29.4.2014;(Designation details: 29.4.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;TSYPLAKOV;Sergey;Gennadevich;Sergey Gennadevich TSYPLAKOV;;M;;One of the leaders of the ideologically radical organisation ‘People's Militia of Donbas’. Former member of the ‘People's Council of the Donetsk People's Republic’, and of its Committee on Foreign Policy, External Relations, Information Policy and Information Technology.;111407;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7333;EU.3039.76;;;29.4.2014;(Designation details: 29.4.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-05-01;1;5;1983;;;NO;GREGORIAN;;Donetsk region;;Khartsyzsk;UA;UKRAINE;122855;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7334;EU.3040.4;;2014-04-29;;(Date of UN designation: 2014-04-29)\n(Head of ‘Novorossia’ public movement.);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;STRELKOV;Igor;;Igor STRELKOV;;M;;Staff of Main Intelligence Directorate of the General Staff of the Armed Forces of the Russian Federation (GRU). Assistant on security issues to Sergey Aksionov, self- proclaimed prime-minister of Crimea.;104375;EN;;amendment;commission;2014-04-29;2014-04-28;433/2014 (OJ L126);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0433&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7334;EU.3040.4;;2014-04-29;;(Date of UN designation: 2014-04-29)\n(Head of ‘Novorossia’ public movement.);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Ihor STRIELKOV;;M;;;104376;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7334;EU.3040.4;;2014-04-29;;(Date of UN designation: 2014-04-29)\n(Head of ‘Novorossia’ public movement.);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Игорь Всеволодович ГИРКИН;EN;M;;;106305;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7334;EU.3040.4;;2014-04-29;;(Date of UN designation: 2014-04-29)\n(Head of ‘Novorossia’ public movement.);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Igor Vsevolodovich GIRKIN;EN;M;;Identified as staff of Main Intelligence Directorate of the General Staff of the Armed Forces of the Russian Federation (GRU). \nFormer ‘Minister of Defence’ of the so-called ‘Donetsk People's Republic’.;106306;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7334;EU.3040.4;;2014-04-29;;(Date of UN designation: 2014-04-29)\n(Head of ‘Novorossia’ public movement.);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-12-17;17;12;1970;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;122856;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7335;EU.3657.35;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;VOLODIN;Vyacheslav;Viktorovich;Vyacheslav Viktorovich VOLODIN;;M;;Former First Deputy Chief of Staff of the Presidential Administration of Russia.\nCurrently Speaker of the State Duma of the Russian Federation since 5 October 2016.;17755;EN;;amendment;council;2017-03-14;2017-03-15;2017/437 (OJ L67);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0437&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7335;EU.3657.35;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Вячеслав Викторович ВОЛОДИН;EN;M;;;106289;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7335;EU.3657.35;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-02-04;4;2;1964;;;NO;GREGORIAN;;Saratov region;;Alekseevka;RU;RUSSIAN FEDERATION;122857;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7336;EU.3658.0;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHAMANOV;Vladimir;Anatolievich;Vladimir Anatolievich SHAMANOV;;M;Colonel-General;Former Commander of the Russian Airborne Troops, Former Chairperson of the Defence Committee of the State Duma of the Russian Federation. Deputy Chairman of the State Duma Committee on Development of the Civil Society.;17756;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7336;EU.3658.0;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ШАМАНОВ;Владимир;Анатольевич;Владимир Анатольевич ШАМАНОВ;RU;M;;;106290;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7336;EU.3658.0;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Anatoljevitj SJAMANOV;SV;;;;137434;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7336;EU.3658.0;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-02-15;15;2;1957;;;NO;GREGORIAN;;;;Barnaul;RU;RUSSIAN FEDERATION;122858;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7337;EU.3667.36;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PLIGIN;Vladimir;Nikolaevich;Vladimir Nikolaevich PLIGIN;;M;;Former member of the State Duma and former Chair of the Duma Constitutional Law Committee. Former member of the Supreme Council of the United Russia party. Advisor to the Speaker of the Duma, Volodin. Currently leading researcher at the Institute of State and Law at the Russian Academy of Sciences. Co-chairman of the Russian Lawyers’ Association.;17757;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7337;EU.3667.36;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПЛИГИН;Владимир;Николаевич;Владимир Николаевич ПЛИГИН;RU;M;;;106291;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7337;EU.3667.36;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Nikolajevitj PLIGIN;SV;M;;;128357;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7337;EU.3667.36;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-05-19;19;5;1960;;;NO;GREGORIAN;;;Vologodsk Oblast;Ignatovo;RU;RUSSIAN FEDERATION;2112;EN;USSR (now Russian Federation);amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7338;EU.3668.1;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Petr Grigorievich JAROSH;;M;;Former head of the Federal Migration Service office for Crimea.;17758;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7338;EU.3668.1;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Петр Григорьевич ЯРОШ;;M;;;18674;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7338;EU.3668.1;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;ЯРОШ;Петро;Григорович;Петро Григорович ЯРОШ;;M;;;111408;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7338;EU.3668.1;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;YAROSH (IAROSH);Petro;Hryhorovych;Petro Hryhorovych YAROSH (IAROSH);;M;;;111409;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7338;EU.3668.1;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-01-30;30;1;1971;;;NO;GREGORIAN;;Simferopol region, Crimea;;Skvortsovo village;UA;UKRAINE;122859;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7339;EU.3998.93;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;KOZYURA;Oleg;Grigorievich;Oleg Grigorievich KOZYURA;;M;;Former Head of the Federal Migration Service office for Sevastopol. Former Chief of Staff of the \nLegislative Assembly of \nSevastopol.\nAdvisor to the Governor of \nSevastopol.;17759;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7339;EU.3998.93;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;КОЗЮРА;Олег;Григорьевич;Олег Григорьевич КОЗЮРА;;M;;;106315;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7339;EU.3998.93;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;КОЗЮРА;Олег;Григорович;Олег Григорович КОЗЮРА;;M;;;111410;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7339;EU.3998.93;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;KOZYURA;Oleh;Hryhorovych;Oleh Hryhorovych KOZYURA;;M;;;111411;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7339;EU.3998.93;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Oleg Grigorjewitsch KOSJURA;DE;M;;;131415;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7339;EU.3998.93;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Oleh Hryhorovytj KOZIURA;SV;M;;;131416;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7339;EU.3998.93;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Oleg Grigorjevitj KOZIURA;SV;M;;;131417;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7339;EU.3998.93;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-12-30;30;12;1965;;;NO;GREGORIAN;;Crimea;;Simferopol;UA;UKRAINE;114346;EN;DOB: 30.12.1965 or 19.12.1962;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7339;EU.3998.93;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-12-19;19;12;1962;;;NO;GREGORIAN;;Crimea;;Simferopol;UA;UKRAINE;114347;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7339;EU.3998.93;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-12-19;19;12;1962;;;NO;GREGORIAN;;;;Zaporizhia;UA;UKRAINE;122926;EN;DOB: 30.12.1965 or 19.12.1962;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7339;EU.3998.93;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-12-30;30;12;1965;;;NO;GREGORIAN;;;;Zaporizhia;UA;UKRAINE;122927;EN;DOB: 30.12.1965 or 19.12.1962;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7340;EU.3070.7;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Viacheslav PONOMARIOV;;M;;Former self-declared mayor of Slaviansk.;17760;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7340;EU.3070.7;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Vyacheslav Volodymyrovich PONOMARYOV;;M;;;18675;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7340;EU.3070.7;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;В'ячеслав Володимирович ПОНОМАРЬОВ;;M;;;18676;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7340;EU.3070.7;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Viacheslav Vladimirovich PONOMAREV;;M;;;18677;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7340;EU.3070.7;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Вячеслав Владимирович ПОНОМАРËВ;;M;;;18678;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7340;EU.3070.7;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-05-02;2;5;1965;;;NO;GREGORIAN;;Donetsk oblast;;Sloviansk;UA;UKRAINE;2128;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BEZLER;Igor;Nikolaevich;Igor Nikolaevich BEZLER;;M;;One of the former leaders of the self-proclaimed militia of Horlivka.;104381;EN;"Returned to Berdyansk in April 2022 and would be involved in ""ensuring public order"" in the region.";amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes (devil);EN;M;;;106294;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БЕЗЛЕР;Игорь;Николаевич;Игорь Николаевич БЕЗЛЕР;RU;M;;;106295;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БЕЗЛЕР;Ігор;Миколайович;Ігор Миколайович БЕЗЛЕР;UK;M;;;111412;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BEZLER;Ihor;Mykolayovych;Ihor Mykolayovych BEZLER;;M;;;111413;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БЕРЕГОВОЙ;Игорь;Николаевич;Игорь Николаевич БЕРЕГОВОЙ;RU;M;;;125015;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BEREGOVOY;Igor;Nikolaevich;Igor Nikolaevich BEREGOVOY;;M;;;125016;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Igor Nikolajevitj BEREGOVOJ;SV;;;;143704;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ihor Mykolajovytj BEZLER;SV;;;;143705;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes (djävul);SV;;;;143706;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Igor Nikolajevitj BEZLER;SV;;;;143707;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes (diavol);RO;;;;143709;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes (čert);SK;;;;143710;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes (hudič);SL;;;;143711;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes [paholainen];FI;;;;143712;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes [ördög];HU;;;;143713;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes (duivel);NL;;;;143714;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes (Diabeł);PL;;;;143715;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes (diabo);PT;;;;143716;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes (velns);LV;;;;143717;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes („Velnias“);LT;;;;143718;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes (le diable);FR;;;;143719;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes (vrag);HR;;;;143720;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes (djævlen);DA;;;;143721;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes (Teufel);DE;;;;143722;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes (Saatan);ET;;;;143723;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bes (διάβολος);EL;;;;143724;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Беса (дявол);BG;;;;143725;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;“Bes” (el diablo);ES;;;;143726;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Běs;CS;;;;143727;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7341;EU.2771.17;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-12-30;30;12;1965;;;NO;GREGORIAN;;Crimea;;Simferopol;UA;UKRAINE;104380;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7342;EU.3669.63;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KAKIDZYANOV;Igor;Evgenevich;Igor Evgenevich KAKIDZYANOV;;M;;One of the leaders of armed forces of the self- proclaimed ‘Donetsk People's Republic’.;17762;EN;;amendment;council;2015-03-13;2015-03-14;2015/427 (OJ L70);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_070_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7342;EU.3669.63;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;КАКИДЗЯНОВ;Игорь;Евгеньевич;Игорь Евгеньевич КАКИДЗЯНОВ;;M;;;18679;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7342;EU.3669.63;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KHAKIMZYANOV;Igor;Evegenevich;Igor Evegenevich KHAKIMZYANOV;;M;;;18680;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7342;EU.3669.63;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Игорь Евгеньевич ХАКИМЗЯНОВ;;M;;;18681;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7342;EU.3669.63;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KHAKIMZIANOV;Ihor;Yevhenovych;Ihor Yevhenovych KHAKIMZIANOV;;M;;;120360;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7342;EU.3669.63;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KAKIDZIANOV;Ihor;Yevhenovych;Ihor Yevhenovych KAKIDZIANOV;;M;;;120361;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7342;EU.3669.63;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Ігор Євгенович ХАКІМЗЯНОВ;;M;;;120362;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7342;EU.3669.63;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Ігор Євгенович КАКІДЗЯНОВ;;M;;;120363;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7342;EU.3669.63;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-07-25;25;7;1980;;;NO;GREGORIAN;;Donetsk oblast;;Makiivka;UA;UKRAINE;2313;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7343;EU.2778.63;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;Tsariov;Oleg;;Oleg Tsariov;;M;;Former Member of the Rada.\nFormer ‘Speaker’ of the so-called ‘Parliament of the Union of the People’s Republics’ (‘Parliament of Novorossiya’).;17763;EN;;amendment;council;2016-03-12;2016-03-13;2016/353 (OJ L67);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0353&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7343;EU.2778.63;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;Tsarov;Oleh;Anatoliyovych;Oleh Anatoliyovych Tsarov;;M;;;17787;EN;;amendment;council;2015-03-13;2015-03-14;2015/427 (OJ L70);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_070_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7343;EU.2778.63;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Олег Анатолійович Царьов;;M;;;17788;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7343;EU.2778.63;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;Царёв;Олег;Анатольевич;Олег Анатольевич Царёв;;M;;;17789;EN;;amendment;council;2015-03-13;2015-03-14;2015/427 (OJ L70);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_070_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7343;EU.2778.63;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;TSARYOV;Oleg;Anatolevich;Oleg Anatolevich TSARYOV;;;;;18682;EN;;amendment;council;2017-03-14;2017-03-15;2017/437 (OJ L67);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0437&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7343;EU.2778.63;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-06-02;2;6;1970;;;NO;GREGORIAN;;;;Dnepropetrovsk (now Dnipro);UA;UKRAINE;122860;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7344;EU.2779.28;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;LYAGIN;Roman;Viktorovich;Roman Viktorovich LYAGIN;;M;;Former head of the “Donetsk People’s Republic” Central Electoral Commission. Former “Minister of Labour and Social Policy”.;104387;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7344;EU.2779.28;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Роман Викторович ЛЯГИН;;M;;;106296;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7344;EU.2779.28;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Роман Вікторович ЛЯГІН;;M;;;111416;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7344;EU.2779.28;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;LIAHIN;Roman;Viktorovych;Roman Viktorovych LIAHIN;;M;;;111417;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7344;EU.2779.28;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Roman Wiktorowitsch LJAGIN;DE;M;;;131418;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7344;EU.2779.28;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Roman Viktorovytj LJAHIN;SV;M;;;131419;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7344;EU.2779.28;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Roman Viktorovitj LJAGIN;SV;M;;;131420;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7344;EU.2779.28;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-05-30;30;5;1980;;;NO;GREGORIAN;;;;Donetsk;UA;UKRAINE;106316;EN;;amendment;council;2015-09-15;2015-09-15;2015/1514 (OJ L239);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_239_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7345;EU.3670.88;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(Corrigendum 31.3.2020 (OJ L98));P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;MALYKHIN;Aleksandr;Sergeevich;Aleksandr Sergeevich MALYKHIN;;M;;Former head of the ‘Lugansk People's Republic’ Central Electoral Commission.;17765;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7345;EU.3670.88;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(Corrigendum 31.3.2020 (OJ L98));P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;MALYHIN;Alexander;Sergeevich;Alexander Sergeevich MALYHIN;;M;;;18683;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7345;EU.3670.88;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(Corrigendum 31.3.2020 (OJ L98));P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Александр Сергеевич МАЛЫХИН;;M;;;18684;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7345;EU.3670.88;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(Corrigendum 31.3.2020 (OJ L98));P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Олександр Сергійович МАЛИХІН;EN;M;;;109533;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7345;EU.3670.88;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(Corrigendum 31.3.2020 (OJ L98));P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Oleksandr Serhiyovych (Sergiyovych) MALYKHIN;;M;;;111418;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7345;EU.3670.88;;2014-05-12;;(Date of UN designation: 2014-05-12)\n(Corrigendum 31.3.2020 (OJ L98));P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-01-12;12;1;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;2314;EN;;amendment;council;2015-03-13;2015-03-14;2015/427 (OJ L70);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_070_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7346;EU.3534.76;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;POKLONSKAYA;Natalia;Vladimirovna;Natalia Vladimirovna POKLONSKAYA;;F;;Currently the Deputy head of the Federal Agency for Compatriots Living Abroad (CIS), and International Humanitarian Cooperation (Rossotrudnichestvo).\n\nFormer Prosecutor of the so-called ‘Republic of Crimea’. Actively implemented Russia’s annexation of Crimea.\n\nFormer Member of the State Duma, elected from the illegally annexed Autonomous ‘Republic of Crimea’. Former Deputy Chairperson of the Committee for International affairs, member of the Commission on the investigation on foreign interference in the internal affairs of the Russian Federation, member of the Committee for security and countering corruption of the State Duma of the Russian Federation. Former Ambassador in the diplomatic corps of the Russian Federation.;17766;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7346;EU.3534.76;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПОКЛОНСКАЯ;Наталья;Владимировна;Наталья Владимировна ПОКЛОНСКАЯ;RU;F;;;106297;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7346;EU.3534.76;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Natalja Vladimirovna POKLONSKAJA;SV;;;;137435;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7346;EU.3534.76;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-03-18;18;3;1980;;;NO;GREGORIAN;;Voroshilovgrad region;;Mikhailovka;UA;UKRAINE;2114;EN;Ukrainian SSR;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7346;EU.3534.76;;2014-05-12;;(Date of UN designation: 2014-05-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-03-18;18;3;1980;;;NO;GREGORIAN;;;;Yevpatoria;UA;UKRAINE;106317;EN;Ukrainian SSR;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7347;EU.3999.58;;;;(date of listing: 12/05/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;SHEVCHENKO;Igor;Sergeievich;Igor Sergeievich SHEVCHENKO;;M;;Former Prosecutor of Sevastopol. Prosecutor of the Republic of Adygea.;17767;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7347;EU.3999.58;;;;(date of listing: 12/05/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Игорь Сергеевич ШЕВЧЕНКО;EN;M;;;106299;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7347;EU.3999.58;;;;(date of listing: 12/05/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-02-09;9;2;1979;;;NO;GREGORIAN;;Crimea;;Sevastopol;UA;UKRAINE;106298;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;State Unitary Enterprise of the ‘Republic of Crimea’ ‘Chernomorneftegaz’;EN;;;;108161;EN;formerly known as PJSC ‘Chernomorneftegaz’;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Státní jednotný podnik „Republiky Krym“„Chernomorneftegaz“;CS;;;;137463;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Empresa Unitaria Estatal de la “República de Crimea”“Chernomorneftegaz”;ES;;;;137464;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Държавно единно предприятие на „Република Крим“„Черноморнефтегаз“;BG;;;;137465;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;PJSC ‘Chernomorneftegaz’;;;;;137466;EN;formerly known as;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Staatliches Einheitsunternehmen der „Republik Krim“„Chernomorneftegaz“;DE;;;;137467;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;»Republikken Krims« statsejede virksomhed »Chernomorneftegaz«;DA;;;;137468;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Fiontar Aonadach Stáit de chuid ‘Republic of Crimea’‘Chernomorneftegaz’;GA;;;;137469;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Entreprise unitaire d’État de la “République de Crimée”“Chernomorneftegaz”;FR;;;;137470;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Κρατική ενιαία επιχείρηση της “Δημοκρατίας της Κριμαίας”“Chernomorneftegaz”;EL;;;;137471;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;“Krimas republikas” valsts unitārs uzņēmums “Chernomorneftegaz”;LV;;;;137472;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Impresa unitaria statale della “Repubblica di Crimea”“Chernomorneftegaz”;IT;;;;137473;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Državno unitarno poduzeće „Republike Krima”„Chernomorneftegaz”;HR;;;;137474;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;„Chernomorneftegaz”, a „Krími Köztársaság” állami egységes vállalata;HU;;;;137475;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;„Krymo Respublikos“ valstybės unitarinė įmonė „Chernomorneftegaz“;LT;;;;137476;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;State Unitary Enterprise van de “Republiek Krim”“Chernomorneftegaz”;NL;;;;137477;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Intrapriża Unitarja Statali tar-“Repubblika tal-Krimea”“Chernomorneftegaz”;MT;;;;137478;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Empresa Pública Unitária da «República da Crimeia»«Chernomorneftegaz»;PT;;;;137479;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;jednolite przedsiębiorstwo państwowe »Republiki Krymu«»Chernomorneftegaz«;PL;;;;137480;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Štátny unitárny podnik „Krymskej republiky“„Chernomorneftegaz“;SK;;;;137481;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Întreprinderea unitară de stat a «Republicii Crimeea»«Chernomorneftegaz»;RO;;;;137482;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;”Republiken Krims” statliga företag ”Chernomorneftegaz”;SV;;;;137483;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;”Krimin tasavallan” omistama valtion unitaarinen yritys ”Chernomorneftegaz”;FI;;;;137484;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Državno unitarno podjetje ‚Republike Krim‘‚Černomorneftegaz‘;SL;;;;137485;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;Simferopol;Prospekt Kirov 52;;295000;;Crimea;NO;"WEB[http://gas.crimea.ru/]\nPHONE[+7 (3652) 66-70-00; +7 (3652) 66-78-00]\nEMAIL[office@chernomorneftegaz.ru ]\n(Prospekt Kirov 52, Simferopol, Crimea, Ukraine 295000 пр. Кирова 52, г. Симферополь, Крым, Украина 295000)";UA;UKRAINE;114373;EN;Prospekt Kirov 52, Simferopol, Crimea, Ukraine 295000 пр. Кирова 52, г. Симферополь, Крым, Украина 295000;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7349;EU.2804.64;;2014-05-12;;(Date of UN designation: 2014-05-12);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1149102099717 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125039;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;7350;EU.2805.29;;2014-05-22;;(Date of UN designation: 2014-05-22)\n(Other information: (a) Affiliate of Al-Qaida and the Organization of Al-Qaida in the Islamic Maghreb (AQIM), (b) Associated with and Jama'atu Ansarul Muslimina Fi Biladis-Sudan (Ansaru), (c) The leader is Abubakar Shekau. Date of designation referred to in Article 2a(4)(b): 22.5.2014.);E;enterprise;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad;;;;;17794;EN;;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7350;EU.2805.29;;2014-05-22;;(Date of UN designation: 2014-05-22)\n(Other information: (a) Affiliate of Al-Qaida and the Organization of Al-Qaida in the Islamic Maghreb (AQIM), (b) Associated with and Jama'atu Ansarul Muslimina Fi Biladis-Sudan (Ansaru), (c) The leader is Abubakar Shekau. Date of designation referred to in Article 2a(4)(b): 22.5.2014.);E;enterprise;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;Jama'atu Ahlus-Sunnah Lidda'Awati Wal Jihad;;;;;17795;EN;;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7350;EU.2805.29;;2014-05-22;;(Date of UN designation: 2014-05-22)\n(Other information: (a) Affiliate of Al-Qaida and the Organization of Al-Qaida in the Islamic Maghreb (AQIM), (b) Associated with and Jama'atu Ansarul Muslimina Fi Biladis-Sudan (Ansaru), (c) The leader is Abubakar Shekau. Date of designation referred to in Article 2a(4)(b): 22.5.2014.);E;enterprise;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;Jama'atu Ahlus-Sunna Lidda'Awati Wal Jihad;;;;;17796;EN;;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7350;EU.2805.29;;2014-05-22;;(Date of UN designation: 2014-05-22)\n(Other information: (a) Affiliate of Al-Qaida and the Organization of Al-Qaida in the Islamic Maghreb (AQIM), (b) Associated with and Jama'atu Ansarul Muslimina Fi Biladis-Sudan (Ansaru), (c) The leader is Abubakar Shekau. Date of designation referred to in Article 2a(4)(b): 22.5.2014.);E;enterprise;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;Boko Haram;;;;;17797;EN;;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7350;EU.2805.29;;2014-05-22;;(Date of UN designation: 2014-05-22)\n(Other information: (a) Affiliate of Al-Qaida and the Organization of Al-Qaida in the Islamic Maghreb (AQIM), (b) Associated with and Jama'atu Ansarul Muslimina Fi Biladis-Sudan (Ansaru), (c) The leader is Abubakar Shekau. Date of designation referred to in Article 2a(4)(b): 22.5.2014.);E;enterprise;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;Western Education is a Sin;;;;;17798;EN;;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7350;EU.2805.29;;2014-05-22;;(Date of UN designation: 2014-05-22)\n(Other information: (a) Affiliate of Al-Qaida and the Organization of Al-Qaida in the Islamic Maghreb (AQIM), (b) Associated with and Jama'atu Ansarul Muslimina Fi Biladis-Sudan (Ansaru), (c) The leader is Abubakar Shekau. Date of designation referred to in Article 2a(4)(b): 22.5.2014.);E;enterprise;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;NG;NIGERIA;2583;EN;;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Al-Nusrah Front for the People of the Levant;;;;;17799;EN;"Other information: (a) Operates in Syrian Arab Republic; (b) Iraq; (c) Previously listed between 30 May 2013 and 13 May 2014 as an aka of Al-Qaida in Iraq. Date of designation referred to in Article 7d(2)(i): 14.5.2014.";amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;the Victory Front;;;;;17800;EN;;amendment;commission;2017-06-14;2017-06-15;2017/998 (OJ L150);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Jabhat al-Nusrah;;;;;17801;EN;;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Jabhet al-Nusra;;;;;17802;EN;;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Al-Nusrah Front;;;;;17803;EN;;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Al-Nusra Front;;;;;17804;EN;;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Ansar al-Mujahideen Network;;;;;17805;EN;;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Levantine Mujahideen on the Battlefields of Jihad;;;;;17806;EN;;amendment;commission;2014-05-29;2014-05-29;583/2014 (OJ L160);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:160:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Front for the Conquest of Syria;;;;;112501;EN;;amendment;commission;2017-06-14;2017-06-15;2017/998 (OJ L150);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Front for the Liberation of the Levant;;;;;112502;EN;;amendment;commission;2017-06-14;2017-06-15;2017/998 (OJ L150);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Front for the Conquest of Syria/the Levant;;;;;112503;EN;;amendment;commission;2017-06-14;2017-06-15;2017/998 (OJ L150);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;The Front for the Liberation of al Sham;;;;;112504;EN;;amendment;commission;2017-06-14;2017-06-15;2017/998 (OJ L150);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Conquest of the Levant Front;;;;;112505;EN;;amendment;commission;2017-06-14;2017-06-15;2017/998 (OJ L150);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Fateh al-Sham Front;;;;;112506;EN;;amendment;commission;2017-06-14;2017-06-15;2017/998 (OJ L150);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Fatah al-Sham Front;;;;;112507;EN;;amendment;commission;2017-06-14;2017-06-15;2017/998 (OJ L150);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Jabhat Fateh Al-Sham;;;;;112508;EN;;amendment;commission;2017-06-14;2017-06-15;2017/998 (OJ L150);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Jabhat Fatah al-Sham;;;;;112509;EN;;amendment;commission;2017-06-14;2017-06-15;2017/998 (OJ L150);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Jabhat Fath al-Sham;;;;;112510;EN;;amendment;commission;2017-06-14;2017-06-15;2017/998 (OJ L150);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Jabhat Fath al Sham;;;;;112511;EN;;amendment;commission;2017-06-14;2017-06-15;2017/998 (OJ L150);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Tahrir al-Sham Hay'at;;;;;116990;EN;;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Liberation of the Levant Organisation Tahrir al-Sham;;;;;116991;EN;;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Liberation of al-Sham Commission;;;;;116992;EN;;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Assembly for the Liberation of the Levant;;;;;116993;EN;;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Assembly for the Liberation of Syria;;;;;116994;EN;;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Hayat Tahrir al-Sham;;;;;116995;EN;;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Hay'et Tahrir al-Sham;;;;;116996;EN;;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7351;EU.3802.38;;;;;E;enterprise;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;Hay'at Tahrir al-Sham (HTS);;;;;116997;EN;;amendment;commission;2018-06-11;2018-06-12;2018/855 (OJ L146);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.146.01.0003.01.ENG&toc=OJ:L:2018:146:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7352;EU.2806.91;;2014-06-02;;(Date of UN designation: 2014-06-02)\n(Date of designation referred to in Article 2a(4)(b): 2.6.2014.);E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Al Mouakaoune Biddam;;;;;17807;EN;;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7352;EU.2806.91;;2014-06-02;;(Date of UN designation: 2014-06-02)\n(Date of designation referred to in Article 2a(4)(b): 2.6.2014.);E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Les Signataires par le Sang;;;;;17808;EN;;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7352;EU.2806.91;;2014-06-02;;(Date of UN designation: 2014-06-02)\n(Date of designation referred to in Article 2a(4)(b): 2.6.2014.);E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Ceux Qui Signent avec le Sang;;;;;17809;EN;;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7352;EU.2806.91;;2014-06-02;;(Date of UN designation: 2014-06-02)\n(Date of designation referred to in Article 2a(4)(b): 2.6.2014.);E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Those Who Sign in Blood;;;;;17810;EN;;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7352;EU.2806.91;;2014-06-02;;(Date of UN designation: 2014-06-02)\n(Date of designation referred to in Article 2a(4)(b): 2.6.2014.);E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;ML;MALI;2584;EN;;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7353;EU.2823.4;;2014-06-02;;(Date of UN designation: 2014-06-02)\n(Active in the Sahel/Sahara. Date of designation referred to in Article 2a(4)(b): 2.6.2014.);E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Al Moulathamoun;;;;;17811;EN;;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7353;EU.2823.4;;2014-06-02;;(Date of UN designation: 2014-06-02)\n(Active in the Sahel/Sahara. Date of designation referred to in Article 2a(4)(b): 2.6.2014.);E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Les Enturbannés;;;;;17812;EN;;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7353;EU.2823.4;;2014-06-02;;(Date of UN designation: 2014-06-02)\n(Active in the Sahel/Sahara. Date of designation referred to in Article 2a(4)(b): 2.6.2014.);E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;The Veiled;;;;;17813;EN;;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7353;EU.2823.4;;2014-06-02;;(Date of UN designation: 2014-06-02)\n(Active in the Sahel/Sahara. Date of designation referred to in Article 2a(4)(b): 2.6.2014.);E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;DZ;ALGERIA;2585;EN;;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7353;EU.2823.4;;2014-06-02;;(Date of UN designation: 2014-06-02)\n(Active in the Sahel/Sahara. Date of designation referred to in Article 2a(4)(b): 2.6.2014.);E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;ML;MALI;2586;EN;;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7353;EU.2823.4;;2014-06-02;;(Date of UN designation: 2014-06-02)\n(Active in the Sahel/Sahara. Date of designation referred to in Article 2a(4)(b): 2.6.2014.);E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;NE;NIGER;2587;EN;;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7354;EU.2844.68;;2014-06-02;;(Date of UN designation: 2014-06-02)\n(Active in the Sahel/Sahara region. Date of designation referred to in Article 2a(4)(b): 2.6.2014.);E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Al Mourabitoun;;;;;17814;EN;;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7354;EU.2844.68;;2014-06-02;;(Date of UN designation: 2014-06-02)\n(Active in the Sahel/Sahara region. Date of designation referred to in Article 2a(4)(b): 2.6.2014.);E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;Les Sentinelles;;;;;17815;EN;;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7354;EU.2844.68;;2014-06-02;;(Date of UN designation: 2014-06-02)\n(Active in the Sahel/Sahara region. Date of designation referred to in Article 2a(4)(b): 2.6.2014.);E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;The Sentinels;;;;;17816;EN;;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7354;EU.2844.68;;2014-06-02;;(Date of UN designation: 2014-06-02)\n(Active in the Sahel/Sahara region. Date of designation referred to in Article 2a(4)(b): 2.6.2014.);E;enterprise;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;ML;MALI;2588;EN;;amendment;commission;2014-06-13;2014-06-13;630/2014 (OJ L174);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_174_R_0011&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7355;EU.3891.82;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Mother's name is Martine Kofio);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;BOZIZÉ;François Yangouvonda;;François Yangouvonda BOZIZÉ;;;;"Former Head of State Central African Republic; \nProfessor";17817;EN;;amendment;council;2018-03-06;2018-03-06;2018/325 (OJ L63);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:063:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7355;EU.3891.82;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Mother's name is Martine Kofio);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Bozize Yangouvonda;;;;;17818;EN;;amendment;council;2018-03-06;2018-03-06;2018/325 (OJ L63);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:063:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7355;EU.3891.82;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Mother's name is Martine Kofio);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Samuel Peter Mudde;;;;;115682;EN;(born 16 December 1948, in Izo South Sudan);amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7355;EU.3891.82;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Mother's name is Martine Kofio);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;;UG;UGANDA;112527;EN;;amendment;council;2014-12-01;2014-12-01;1276/2014 (OJ L346);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7355;EU.3891.82;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Mother's name is Martine Kofio);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;Bangui;;;;;;NO;(since his return from Uganda in December 2019);CF;CENTRAL AFRICAN REPUBLIC;125143;EN;since his return from Uganda in December 2019;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7355;EU.3891.82;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Mother's name is Martine Kofio);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946-10-14;14;10;1946;;;NO;GREGORIAN;;;;Mouila;GA;GABON;2131;EN;;amendment;council;2014-06-24;2014-06-24;691/2014 (OJ L183);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7355;EU.3891.82;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Mother's name is Martine Kofio);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-12-16;16;12;1948;;;NO;GREGORIAN;;;;Izo;SS;SOUTH SUDAN;115678;EN;;amendment;council;2018-03-06;2018-03-06;2018/325 (OJ L63);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:063:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7355;EU.3891.82;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Mother's name is Martine Kofio);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946-10-14;14;10;1946;;;NO;GREGORIAN;;;;Izo;SS;SOUTH SUDAN;125167;EN;;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7355;EU.3891.82;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Mother's name is Martine Kofio);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-12-16;16;12;1948;;;NO;GREGORIAN;;;;Mouila;GA;GABON;125168;EN;;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7355;EU.3891.82;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Mother's name is Martine Kofio);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;M4800002143743 (id-National identification card) (Personal number on passport);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;115680;EN;Personal number on passport;amendment;council;2018-03-06;2018-03-06;2018/325 (OJ L63);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:063:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;7355;EU.3891.82;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Mother's name is Martine Kofio);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D00002264 (passport-National passport) (name on doc. 'Samuel Peter Mudde') (issued by Minister of Foreign Affairs on 2013-06-11 in Juba valid to 2017-06-11 diplomatic)(Diplomatic passport issued under name Samuel Peter Mudde);YES;NO;NO;NO;NO;Minister of Foreign Affairs;2013-06-11;;2017-06-11;;(name on doc. 'Samuel Peter Mudde');passport;National passport;Juba;SS;;115681;EN;Diplomatic passport issued under name Samuel Peter Mudde;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;; +28/10/2022;7355;EU.3891.82;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Mother's name is Martine Kofio);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CF;;112526;EN;;amendment;council;2014-12-01;2014-12-01;1276/2014 (OJ L346);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN +28/10/2022;7355;EU.3891.82;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Mother's name is Martine Kofio);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SS;;115679;EN;;amendment;council;2018-03-06;2018-03-06;2018/325 (OJ L63);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:063:FULL&from=EN +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;ADAM;Nourredine;;Nourredine ADAM;;;;He is one of the original leaders of the Séléka. He has been identified as both a General and the President of one of the armed rebel groups of the Séléka, the Central PJCC, a group formally known as the Convention of Patriots for Justice and Peace and whose acronym is also acknowledged as CPJP.;17819;EN;Designation: a) General b) Minister for Security c) Director-General of the ‘Extraordinary Committee for the Defence of Democratic Achievements’;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;Nureldine Adam;;;;"a) General; b) Minister for Security; c) Director-General of the “Extraordinary Committee for the Defence of Democratic Achievements”.";17821;EN;;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;Nourreldine Adam;;;;;17822;EN;;amendment;council;2014-06-24;2014-06-24;691/2014 (OJ L183);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;Nourreddine Adam;;;;;17823;EN;;amendment;council;2014-06-24;2014-06-24;691/2014 (OJ L183);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;Adam;Mahamat;Nouradine;Mahamat Nouradine Adam;;;;;112519;EN;;amendment;council;2014-12-01;2014-12-01;1276/2014 (OJ L346);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;Mohamed Adam Brema Abdallah;;;;;120986;EN;;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;Birao;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;112523;EN;;amendment;council;2014-12-01;2014-12-01;1276/2014 (OJ L346);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;;SD;SUDAN;120994;EN;;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;;;NO;GREGORIAN;;;;Ndele;CF;CENTRAL AFRICAN REPUBLIC;2132;EN;;amendment;council;2014-06-24;2014-06-24;691/2014 (OJ L183);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969;;;NO;GREGORIAN;;;;Ndele;CF;CENTRAL AFRICAN REPUBLIC;2133;EN;;amendment;council;2014-06-24;2014-06-24;691/2014 (OJ L183);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971;;;NO;GREGORIAN;;;;Ndele;CF;CENTRAL AFRICAN REPUBLIC;2134;EN;;amendment;council;2014-06-24;2014-06-24;691/2014 (OJ L183);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-01-01;1;1;1970;;;NO;GREGORIAN;;;Ndele;;CF;CENTRAL AFRICAN REPUBLIC;112520;EN;;amendment;council;2014-12-01;2014-12-01;1276/2014 (OJ L346);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;;;NO;GREGORIAN;;;;Algenana;SD;SUDAN;120987;EN;;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969;;;NO;GREGORIAN;;;;Algenana;SD;SUDAN;120988;EN;;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971;;;NO;GREGORIAN;;;;Algenana;SD;SUDAN;120989;EN;;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-01-01;1;1;1970;;;NO;GREGORIAN;;;;Algenana;SD;SUDAN;120990;EN;;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-01-01;1;1;1971;;;NO;GREGORIAN;;;;Algenana;SD;SUDAN;120991;EN;;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-01-01;1;1;1971;;;NO;GREGORIAN;;;;Ndele;CF;CENTRAL AFRICAN REPUBLIC;120992;EN;;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"D00001184 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;CF;;112522;EN;;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;P04838205 (passport-National passport) (name on doc. 'Mohamed Adam Brema Abdallah') (on 2018-06-10 in Bahri valid to 2023-06-09);NO;NO;NO;NO;NO;;2018-06-10;;2023-06-09;;(name on doc. 'Mohamed Adam Brema Abdallah');passport;National passport;Bahri;SD;;120995;EN;;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"202-2708-8368 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;SD;;120996;EN;;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;; +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CF;;112521;EN;;amendment;council;2014-12-01;2014-12-01;1276/2014 (OJ L346);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN +28/10/2022;7356;EU.3890.20;;2014-05-09;;(Date of UN designation: 2014-05-09)\n(Other information: Former head of the ‘Fundamental’ splinter group of the Convention of Patriots for Justice and Peace (CPJP/F), he was the military coordinator of the ex-Séléka during offensives in the former rebellion in the Central African Republic between early December 2012 and March 2013.);P;person;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SD;;120993;EN;;amendment;council;2019-09-23;2019-09-23;2019/1574 (OJ L243);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.243.01.0001.01.ENG&toc=OJ:L:2019:243:TOC +28/10/2022;7359;EU.3792.82;;2014-06-24;;(Date of UN designation: 2014-06-24)\n(Date of listing: 24.6.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suleiman AL ABBAS;;M;;Former Oil and Mineral Resources Minister in power after May 2011.;17828;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7360;EU.3793.47;;;;(Date of listing: 24.6.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Kamal Eddin TU'MA;;M;;Former Industry Minister in power after May 2011;17829;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7360;EU.3793.47;;;;(Date of listing: 24.6.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;2138;EN;;amendment;council;2014-06-24;2014-06-24;693/2014 (OJ L183);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7361;EU.3794.12;;;;(Date of listing: 24.6.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Kinda AL-SHAMMAT;;F;;Former Social Affairs Minister in power after May 2011.;17830;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7361;EU.3794.12;;;;(Date of listing: 24.6.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Shmat;;;;;17831;EN;;amendment;council;2014-06-24;2014-06-24;693/2014 (OJ L183);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7361;EU.3794.12;;;;(Date of listing: 24.6.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;2139;EN;;amendment;council;2014-06-24;2014-06-24;693/2014 (OJ L183);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7362;EU.3795.74;;;;(date of listing: 24.06.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hassan HIJAZI;;M;Minister;Former Minister for Labour in power after May 2011.;17832;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7362;EU.3795.74;;;;(date of listing: 24.06.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;2140;EN;;amendment;council;2014-06-24;2014-06-24;693/2014 (OJ L183);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7363;EU.3796.39;;;;(date of listing: 24/06/2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ismael ISMAEL;;M;Minister;Former Finance Minister in power after May 2011.;17833;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7363;EU.3796.39;;;;(date of listing: 24/06/2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ismail Ismail;;;;;17834;EN;;amendment;council;2014-06-24;2014-06-24;693/2014 (OJ L183);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7363;EU.3796.39;;;;(date of listing: 24/06/2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Isma'Il Isma'il;;;;;17835;EN;;amendment;council;2014-06-24;2014-06-24;693/2014 (OJ L183);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7363;EU.3796.39;;;;(date of listing: 24/06/2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;2141;EN;;amendment;council;2014-06-24;2014-06-24;693/2014 (OJ L183);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7364;EU.3797.4;;;;(Date of listing: 24.6.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khodr ORFALI;;M;Dr;Former Economy and Foreign Trade Minister in power after May 2011.;17836;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7364;EU.3797.4;;;;(Date of listing: 24.6.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khud Urfali;;;;;17837;EN;;amendment;council;2014-06-24;2014-06-24;693/2014 (OJ L183);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7364;EU.3797.4;;;;(Date of listing: 24.6.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khud Orphaly;;;;;17838;EN;;amendment;council;2014-06-24;2014-06-24;693/2014 (OJ L183);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7364;EU.3797.4;;;;(Date of listing: 24.6.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khudr Urfali;;;;;17839;EN;;amendment;council;2014-06-24;2014-06-24;693/2014 (OJ L183);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7364;EU.3797.4;;;;(Date of listing: 24.6.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khudr Orphaly;;;;;17840;EN;;amendment;council;2014-06-24;2014-06-24;693/2014 (OJ L183);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7364;EU.3797.4;;;;(Date of listing: 24.6.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;2142;EN;;amendment;council;2014-06-24;2014-06-24;693/2014 (OJ L183);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7365;EU.3798.66;;;;(date of listing: 24.06.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Samir Izzat Qadi AMIN;;M;;Former Internal Trade and Consumer Protection Minister in power after May 2011.;17841;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7365;EU.3798.66;;;;(date of listing: 24.06.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;2143;EN;;amendment;council;2014-06-24;2014-06-24;693/2014 (OJ L183);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7366;EU.2759.26;;;Date of listing: 24.6.2014.;(Designation details: Date of listing: 24.6.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Bishr Riyad YAZIGI;;M;;Advisor to the President Bashar al-Assad. Former Minister of Tourism.;17842;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7366;EU.2759.26;;;Date of listing: 24.6.2014.;(Designation details: Date of listing: 24.6.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;2144;EN;;amendment;council;2014-06-24;2014-06-24;693/2014 (OJ L183);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7367;EU.3799.31;;2014-06-24;;(Date of UN designation: 2014-06-24);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Malek ALI;;M;Dr.;Former Higher Education Minister in power after May 2011.;17843;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7367;EU.3799.31;;2014-06-24;;(Date of UN designation: 2014-06-24);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Ali;Malik;;Malik Ali;;;;;17844;EN;;amendment;council;2018-05-29;2018-05-30;2018/774 (OJ L131);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:131:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7367;EU.3799.31;;2014-06-24;;(Date of UN designation: 2014-06-24);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;مالك علي;AR;M;;;124714;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7367;EU.3799.31;;2014-06-24;;(Date of UN designation: 2014-06-24);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;Tartous;Tartous;SY;SYRIAN ARAB REPUBLIC;2145;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7368;EU.3014.55;;2014-06-24;;(Date of UN designation: 2014-06-24);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Hussein ARNOUS;;M;;Prime Minister. Appointed in August 2020.;17845;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7368;EU.3014.55;;2014-06-24;;(Date of UN designation: 2014-06-24);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Hussein Arnus;;M;;;17846;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7368;EU.3014.55;;2014-06-24;;(Date of UN designation: 2014-06-24);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;حسين عرنوس;AR;M;;;126572;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7368;EU.3014.55;;2014-06-24;;(Date of UN designation: 2014-06-24);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;NO;GREGORIAN;;;;Idleb;SY;SYRIAN ARAB REPUBLIC;2146;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7369;EU.3800.11;;;;(Date of listing: 24.6.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hassib Elias SHAMMAS;;M;Dr.;Former State Minister in power after May 2011.;17847;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7369;EU.3800.11;;;;(Date of listing: 24.6.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hasib;;;;;17848;EN;;amendment;council;2014-06-24;2014-06-24;693/2014 (OJ L183);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_183_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7369;EU.3800.11;;;;(Date of listing: 24.6.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;NO;GREGORIAN;;;;Aleppo;SY;SYRIAN ARAB REPUBLIC;2147;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7370;EU.3015.20;;2014-06-26;;"(Date of UN designation: 2014-06-26)\n(Other information: (a) Physical description: eye colour: black; hair colour: black; (b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Date of designation referred to in Article 2a(4)(b): 26.6.2014.)";P;person;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;Abubakar;Shekau;Mohammed;Shekau Mohammed Abubakar;;;Imam;Leader of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram);17849;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7370;EU.3015.20;;2014-06-26;;"(Date of UN designation: 2014-06-26)\n(Other information: (a) Physical description: eye colour: black; hair colour: black; (b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Date of designation referred to in Article 2a(4)(b): 26.6.2014.)";P;person;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;Abubakar Shekau;;;;;17850;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7370;EU.3015.20;;2014-06-26;;"(Date of UN designation: 2014-06-26)\n(Other information: (a) Physical description: eye colour: black; hair colour: black; (b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Date of designation referred to in Article 2a(4)(b): 26.6.2014.)";P;person;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;Abu Mohammed Abubakar bin Mohammed;;;;;17851;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7370;EU.3015.20;;2014-06-26;;"(Date of UN designation: 2014-06-26)\n(Other information: (a) Physical description: eye colour: black; hair colour: black; (b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Date of designation referred to in Article 2a(4)(b): 26.6.2014.)";P;person;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;Abu Muhammed Abubakar bi Mohammed;;;;;17852;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7370;EU.3015.20;;2014-06-26;;"(Date of UN designation: 2014-06-26)\n(Other information: (a) Physical description: eye colour: black; hair colour: black; (b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Date of designation referred to in Article 2a(4)(b): 26.6.2014.)";P;person;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;Shekau;;;;;17853;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7370;EU.3015.20;;2014-06-26;;"(Date of UN designation: 2014-06-26)\n(Other information: (a) Physical description: eye colour: black; hair colour: black; (b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Date of designation referred to in Article 2a(4)(b): 26.6.2014.)";P;person;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;Shehu;;;;;17854;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7370;EU.3015.20;;2014-06-26;;"(Date of UN designation: 2014-06-26)\n(Other information: (a) Physical description: eye colour: black; hair colour: black; (b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Date of designation referred to in Article 2a(4)(b): 26.6.2014.)";P;person;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;Shayku;;;;;17855;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7370;EU.3015.20;;2014-06-26;;"(Date of UN designation: 2014-06-26)\n(Other information: (a) Physical description: eye colour: black; hair colour: black; (b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Date of designation referred to in Article 2a(4)(b): 26.6.2014.)";P;person;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;Imam Darul Tauhid;;;;;17856;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7370;EU.3015.20;;2014-06-26;;"(Date of UN designation: 2014-06-26)\n(Other information: (a) Physical description: eye colour: black; hair colour: black; (b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Date of designation referred to in Article 2a(4)(b): 26.6.2014.)";P;person;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;Imam Darul Tawheed;;;;;17857;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7370;EU.3015.20;;2014-06-26;;"(Date of UN designation: 2014-06-26)\n(Other information: (a) Physical description: eye colour: black; hair colour: black; (b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Date of designation referred to in Article 2a(4)(b): 26.6.2014.)";P;person;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;NG;NIGERIA;2589;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7370;EU.3015.20;;2014-06-26;;"(Date of UN designation: 2014-06-26)\n(Other information: (a) Physical description: eye colour: black; hair colour: black; (b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Date of designation referred to in Article 2a(4)(b): 26.6.2014.)";P;person;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969;;;NO;GREGORIAN;;;;Shekau Village, Yobe State;NG;NIGERIA;2148;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7370;EU.3015.20;;2014-06-26;;"(Date of UN designation: 2014-06-26)\n(Other information: (a) Physical description: eye colour: black; hair colour: black; (b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. Date of designation referred to in Article 2a(4)(b): 26.6.2014.)";P;person;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NG;;807;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN +28/10/2022;7371;EU.3016.82;;;;"((a) Group established in 2012; (b) Operates in Nigeria. Date of designation referred to in Article 2a(4)(b): 26.6.2014)";E;enterprise;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;Ansarul Muslimina Fi Biladis Sudan;;;;;17858;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7371;EU.3016.82;;;;"((a) Group established in 2012; (b) Operates in Nigeria. Date of designation referred to in Article 2a(4)(b): 26.6.2014)";E;enterprise;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;Ansaru;;;;;17859;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7371;EU.3016.82;;;;"((a) Group established in 2012; (b) Operates in Nigeria. Date of designation referred to in Article 2a(4)(b): 26.6.2014)";E;enterprise;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;Ansarul Muslimina fi Biladis Sudan;;;;;17860;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7371;EU.3016.82;;;;"((a) Group established in 2012; (b) Operates in Nigeria. Date of designation referred to in Article 2a(4)(b): 26.6.2014)";E;enterprise;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;Jama'atu Ansaril Muslimina fi Biladis Sudan (JAMBS);;;;;17861;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7371;EU.3016.82;;;;"((a) Group established in 2012; (b) Operates in Nigeria. Date of designation referred to in Article 2a(4)(b): 26.6.2014)";E;enterprise;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;Jama'atu Ansarul Muslimina fi Biladis-Sudan (JAMBS);;;;;17862;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7371;EU.3016.82;;;;"((a) Group established in 2012; (b) Operates in Nigeria. Date of designation referred to in Article 2a(4)(b): 26.6.2014)";E;enterprise;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;Jamma'atu Ansarul Muslimina fi Biladis-Sudan (JAMBS);;;;;17863;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7371;EU.3016.82;;;;"((a) Group established in 2012; (b) Operates in Nigeria. Date of designation referred to in Article 2a(4)(b): 26.6.2014)";E;enterprise;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;Vanguards for the Protection of Muslims in Black Africa;;;;;17864;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7371;EU.3016.82;;;;"((a) Group established in 2012; (b) Operates in Nigeria. Date of designation referred to in Article 2a(4)(b): 26.6.2014)";E;enterprise;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;Vanguard for the Protection of Muslims in Black Africa;;;;;17865;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7371;EU.3016.82;;;;"((a) Group established in 2012; (b) Operates in Nigeria. Date of designation referred to in Article 2a(4)(b): 26.6.2014)";E;enterprise;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;NG;NIGERIA;2590;EN;;amendment;commission;2014-07-04;2014-07-04;735/2014 (OJ L198);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_198_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7375;EU.3671.53;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BORODAI;Aleksandr;Yurevich;Aleksandr Yurevich BORODAI;;M;;"Former so-called ‘Prime Minister of the Donetsk People’s Republic’; Chairman of the Board of the Union of Volunteers of Donbass. Involved actively in recruitment and training of ‘volunteers’ sent to fight in Donbas.\n\nMember of the State Duma since September 2021. Deputy Chairman of the Committee of the State Duma for the Commonwealth of Independent States, Eurasian Integration and Relations with Compatriots.";17899;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7375;EU.3671.53;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БОРОДАЙ;Александр;Юрьевич;Александр Юрьевич БОРОДАЙ;RU;M;;;17900;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7375;EU.3671.53;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Jurjevitj BORODAJ;SV;M;;;128358;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7375;EU.3671.53;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-07-25;25;7;1972;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;2156;EN;;amendment;council;2014-07-10;2014-07-10;753/2014 (OJ L205);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_205_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7376;EU.3680.89;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KHODAKOVSKY;Alexander;;Alexander KHODAKOVSKY;;M;;"Former so-called ‘Minister of Security of the Donetsk People's Republic’. Commander of the ""Vostok"" battalion of “the Ministry of Internal Affairs of the so-called Donetsk People's Republic”.";17901;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7376;EU.3680.89;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ХОДАКОВСКИЙ;Александр;Сергеевич;Александр Сергеевич ХОДАКОВСКИЙ;RU;M;;;17902;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7376;EU.3680.89;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleksandr Serhiyovych KHODAKOVSKYY;;M;;;18685;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7376;EU.3680.89;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KHODAKOVSKII;Aleksandr;Sergeevich;Aleksandr Sergeevich KHODAKOVSKII;;M;;;18686;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7376;EU.3680.89;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ХОДАКОВСЬКИЙ;Олександр;Сергійович;Олександр Сергійович ХОДАКОВСЬКИЙ;UK;M;;;18687;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7376;EU.3680.89;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Sergejevitj CHODAKOVSKIJ;SV;;;;143733;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7376;EU.3680.89;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleksandr Serhijovytj CHODAKOVSKYJ;SV;;;;143734;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7376;EU.3680.89;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr CHODAKOVSKIJ;SV;;;;143735;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7376;EU.3680.89;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleksandr Serhiyovych KHODAKOVSKYI;;M;;;143736;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7376;EU.3680.89;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-12-18;18;12;1972;;;NO;GREGORIAN;;;;Donetsk;UA;UKRAINE;2315;EN;;amendment;council;2015-03-13;2015-03-14;2015/427 (OJ L70);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_070_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7377;EU.3538.33;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KALYUSSKY;Alexandr;Arkadievich;Alexandr Arkadievich KALYUSSKY;;M;;Former so-called ‘de facto Deputy Prime Minister for Social Affairs of the Donetsk People’s Republic’.;17903;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7377;EU.3538.33;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;КАЛЮССКИЙ;Александр;Аркадьевич;Александр Аркадьевич КАЛЮССКИЙ;;M;;;17904;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7377;EU.3538.33;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Олександр Аркадійович КАЛЮСЬКИЙ;EN;M;;;109531;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7377;EU.3538.33;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KALYUSSKIY;Oleksandr;Arkadiyovych;Oleksandr Arkadiyovych KALYUSSKIY;EN;M;;;109532;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7377;EU.3538.33;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-10-09;9;10;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;2316;EN;;amendment;council;2015-03-13;2015-03-14;2015/427 (OJ L70);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_070_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7378;EU.3681.54;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;KHRYAKOV;Alexander;;Alexander KHRYAKOV;;M;;Former so-called ‘Information and Mass Communications Minister’ of the ‘Donetsk People’s Republic’. Currently a member of the so-called ‘People’s Council’ of the ‘Donetsk People’s Republic’ Committee on Budget, Finance and Economic Policy.;17905;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7378;EU.3681.54;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;KHRYAKOV;Aleksandr;Vitalievich;Aleksandr Vitalievich KHRYAKOV;;M;;;18688;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7378;EU.3681.54;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;ХРЯКОВ;Александр;Витальевич;Александр Витальевич ХРЯКОВ;;M;;;18689;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7378;EU.3681.54;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;KHRYAKOV;Oleksandr;Vitaliyovych;Oleksandr Vitaliyovych KHRYAKOV;;M;;;18690;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7378;EU.3681.54;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Олександр Віталійович ХРЯКОВ;;M;;;18691;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7378;EU.3681.54;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Oleksandr Vitalijovytj CHRJAKOV;SV;;;;137436;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7378;EU.3681.54;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Aleksandr Vitaljevitj CHRJAKOV;SV;;;;137437;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7378;EU.3681.54;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-11-06;6;11;1958;;;NO;GREGORIAN;;;;Donetsk;UA;UKRAINE;2317;EN;;amendment;council;2015-03-13;2015-03-14;2015/427 (OJ L70);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_070_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7379;EU.3682.19;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;BASHIROV;Marat;Faatovich;Marat Faatovich BASHIROV;;M;;Former so-called ‘Prime Minister of the Council of Ministers of the Luhansk People’s Republic’, confirmed on 8 July 2014. Currently political scientist at the Institute of Communication Management and Director of the Centre for the Study of Problems of International Sanctions Regimes.;17906;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7379;EU.3682.19;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;БАШИРОВ;Марат;Фаатович;Марат Фаатович БАШИРОВ;;M;;;18692;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7379;EU.3682.19;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Marat Faatovitj BASJIROV;SV;;;;137438;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7379;EU.3682.19;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-01-20;20;1;1964;;;NO;GREGORIAN;;;;Izhevsk;RU;RUSSIAN FEDERATION;2318;EN;;amendment;council;2015-03-13;2015-03-14;2015/427 (OJ L70);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_070_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7380;EU.3683.81;;2014-07-12;;(Date of UN designation: 2014-07-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;NIKITIN;Vasilii;Aleksandrovich;Vasilii Aleksandrovich NIKITIN;;M;;Former so-called “Vice Prime Minister of the Council of Ministers of the Lugansk People's Republic” (used to be the so-called “Prime Minister of the Lugansk People's Republic”, and former spokesman of the “Army of the South-East”).;18693;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7380;EU.3683.81;;2014-07-12;;(Date of UN designation: 2014-07-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;НИКИТИН;Василий;Александрович;Василий Александрович НИКИТИН;;M;;;18694;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7380;EU.3683.81;;2014-07-12;;(Date of UN designation: 2014-07-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;NIKITIN;Vasyl;Oleksandrovych;Vasyl Oleksandrovych NIKITIN;;M;;;111419;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7380;EU.3683.81;;2014-07-12;;(Date of UN designation: 2014-07-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;НІКІТІН;Василь;Олександрович;Василь Олександрович НІКІТІН;;M;;;111479;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7380;EU.3683.81;;2014-07-12;;(Date of UN designation: 2014-07-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-11-25;25;11;1971;;;NO;GREGORIAN;;;;Shargun;UZ;UZBEKISTAN;2319;EN;;amendment;council;2015-03-13;2015-03-14;2015/427 (OJ L70);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_070_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7381;EU.4000.1;;;;(date of listing: 12/07/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KARYAKIN;Aleksey;Vyacheslavovich;Aleksey Vyacheslavovich KARYAKIN;;M;;Until 25 March 2016 so-called ‘Supreme Council Chair of the Luhansk People’s Republic’. Currently Chairman of the so-called ‘Public Chamber of the Luhansk People’s Republic’.;17908;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7381;EU.4000.1;;;;(date of listing: 12/07/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;КАРЯКИН;Алексей;Вячеславович;Алексей Вячеславович КАРЯКИН;;M;;;18695;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7381;EU.4000.1;;;;(date of listing: 12/07/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Олексій В'ячеславович КАРЯКІН;;M;;;111420;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7381;EU.4000.1;;;;(date of listing: 12/07/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KARYAKIN;Oleksiy;Vyacheslavovych;Oleksiy Vyacheslavovych KARYAKIN;;M;;;111421;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7381;EU.4000.1;;;;(date of listing: 12/07/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-04-07;7;4;1979;;;NO;GREGORIAN;;Luhansk region;;Stakhanov;UA;UKRAINE;2157;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7381;EU.4000.1;;;;(date of listing: 12/07/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-04-07;7;4;1980;;;NO;GREGORIAN;;Luhansk region;;Stakhanov;UA;UKRAINE;2320;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7382;EU.209.16;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;IVAKIN;Yuriy;Volodymyrovych;Yuriy Volodymyrovych IVAKIN;;M;;Former so-called ‘Minister of Internal Affairs of the Luhansk People’s Republic’;17909;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7382;EU.209.16;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Юрий Владимирович ИВАКИН;;M;;;17910;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7382;EU.209.16;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;ІВАКІН;Юрій;Володимирович;Юрій Володимирович ІВАКІН;;M;;;18696;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7382;EU.209.16;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;IVAKIN;Iurii;Vladimirovich;Iurii Vladimirovich IVAKIN;;M;;;18697;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7382;EU.209.16;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-08-13;13;8;1954;;;NO;GREGORIAN;;Luhansk oblast;;Perevalsk;UA;UKRAINE;2321;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7383;EU.3684.46;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;PLOTNITSKY;Igor;;Igor PLOTNITSKY;;M;;Former so-called ‘Defence Minister’ and former so- called ‘Head’ of the ‘Luhansk People's Republic’. Former Special Envoy of the so-called ‘Luhansk People's Republic’ on Minsk implementation.;17911;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7383;EU.3684.46;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;PLOTNITSKII;Igor;Venediktovich;Igor Venediktovich PLOTNITSKII;;M;;;18698;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7383;EU.3684.46;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;ПЛОТНИЦЬКИЙ;Ігор;Венедиктович;Ігор Венедиктович ПЛОТНИЦЬКИЙ;;M;;;18699;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7383;EU.3684.46;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;ПЛОТНИЦКИЙ;Игорь;Венедиктович;Игорь Венедиктович ПЛОТНИЦКИЙ;;M;;;111422;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7383;EU.3684.46;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;PLOTNYTSKYY;Ihor (Igor);Venedyktovych;Ihor (Igor) Venedyktovych PLOTNYTSKYY;;M;;;111423;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7383;EU.3684.46;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-06-24;24;6;1964;;;NO;GREGORIAN;;;;Luhansk (possibly in Kelmentsi, Chernivtsi oblast);UA;UKRAINE;2322;EN;(possibly in Kelmentsi, Chernivtsi oblast);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7383;EU.3684.46;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-06-25;25;6;1964;;;NO;GREGORIAN;;;;Luhansk (possibly in Kelmentsi, Chernivtsi oblast);UA;UKRAINE;2323;EN;(possibly in Kelmentsi, Chernivtsi oblast);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7383;EU.3684.46;;2014-07-12;;(Date of UN designation: 2014-07-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-06-26;26;6;1964;;;NO;GREGORIAN;;;;Luhansk (possibly in Kelmentsi, Chernivtsi oblast);UA;UKRAINE;106302;EN;(possibly in Kelmentsi, Chernivtsi oblast);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7384;EU.3539.95;;2014-07-12;;(Date of UN designation: 2014-07-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KOZITSYN;Nikolay;Ivanovich;Nikolay Ivanovich KOZITSYN;;M;;Commander of Cossack forces.;17912;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7384;EU.3539.95;;2014-07-12;;(Date of UN designation: 2014-07-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;КОЗИЦЫН;Николай;Иванович;Николай Иванович КОЗИЦЫН;EN;M;;;108156;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7384;EU.3539.95;;2014-07-12;;(Date of UN designation: 2014-07-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-06-20;20;6;1956;;;NO;GREGORIAN;;Donetsk region;;Djerzjinsk;UA;UKRAINE;2158;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7384;EU.3539.95;;2014-07-12;;(Date of UN designation: 2014-07-12)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-10-06;6;10;1956;;;NO;GREGORIAN;;Donetsk region;;Djerzjinsk;UA;UKRAINE;122861;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7386;EU.3340.93;;2014-07-23;;(Date of UN designation: 2014-07-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hashim Anwar AL‐AQQAD;;M;;Leading businessperson operating in Syria. Also worked as a member of the Syrian Parliament as recently as 2012.;17915;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7386;EU.3340.93;;2014-07-23;;(Date of UN designation: 2014-07-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hashem Aqqad;;;;;17916;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7386;EU.3340.93;;2014-07-23;;(Date of UN designation: 2014-07-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hashem Akkad;;;;;17917;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7386;EU.3340.93;;2014-07-23;;(Date of UN designation: 2014-07-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hashim Akkad;;;;;17918;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7386;EU.3340.93;;2014-07-23;;(Date of UN designation: 2014-07-23);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;;Mohagirine;SY;SYRIAN ARAB REPUBLIC;2159;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suhayl Hasan;;;;;17919;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suhayl al-Hasan;;;Colonel;;17920;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sohail Hassan;;;;;17922;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sohail al-Hassan;;;;;17923;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suhail Hassan;;;;;17924;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suhayl HASSAN;;M;Major-General;Commander of Qawat al‐Nimr (Divi­sion 25 Special Mission Forces, formerly known as Tiger Forces).;17925;EN;Officer of the rank of Major‐General in the Syrian Army after May 2011. Commander of army division known as ‘Tiger Forces’. Since August 2019, ‘Tiger Forces’ has been renamed ‘Division 25 Special Mission Forces’ and placed under the ar­my’s central command.;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suhayl al-Hassan;;;;;17926;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sohail al-Hasan;;;;;113612;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;‘The Tiger’;;;;;113613;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;al-Nimr;;;;;113614;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sohail Hasan;;;;;113615;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suhail Hasan;;;;;113616;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suheil Hasan;;;;;113617;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suheil Hassan;;;;;113618;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suhail al-Hassan;;;;;113619;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suhail al-Hasan;;;;;113620;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suheil al-Hasan;;;;;113621;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suheil al-Hassan;;;;;113622;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7387;EU.3561.87;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;;;NO;GREGORIAN;;Latakia Province;Jableh;;SY;SYRIAN ARAB REPUBLIC;113611;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7388;EU.3017.47;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Amr ARMANAZI;;M;;Director General of the Syrian Scientific Studies and Research Centre (SSRC).;17927;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7388;EU.3017.47;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Amr Muhammad Najib Al-Armanazi;;;;;17928;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7388;EU.3017.47;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Amr Najib Armanazi;;;;;17929;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7388;EU.3017.47;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Amrou Al-Armanazy;;;;;17930;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7388;EU.3017.47;;;;(Date of listing: 23.7.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944-02-07;7;2;1944;;;NO;GREGORIAN;;;;;00;UNKNOWN;2160;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7389;EU.3018.12;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Overseas Petroleum Trading;;;;;17931;EN;;amendment;council;2014-09-26;2014-09-26;1013/2014 (OJ L283);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_283_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7389;EU.3018.12;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Overseas Petroleum Trading SAL (Off-Shore);;;;;17932;EN;;amendment;council;2014-09-26;2014-09-26;1013/2014 (OJ L283);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_283_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7389;EU.3018.12;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Overseas Petroleum Company;;;;;17934;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7389;EU.3018.12;;;;;E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Beirut;Dunant Street, Snoubra Sector;;;;;NO;;LB;LEBANON;2599;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7391;EU.3019.74;;2014-07-23;;(Date of UN designation: 2014-07-23)\n(Date of listing: 23.7.2014. Other information: Subsidiary of the General Corporation for Refining and Distribution of Petroleum Products (GCRDPP).);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;The Baniyas Refinery Company;;;;;17936;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7391;EU.3019.74;;2014-07-23;;(Date of UN designation: 2014-07-23)\n(Date of listing: 23.7.2014. Other information: Subsidiary of the General Corporation for Refining and Distribution of Petroleum Products (GCRDPP).);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Banias;;;;;17937;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7391;EU.3019.74;;2014-07-23;;(Date of UN designation: 2014-07-23)\n(Date of listing: 23.7.2014. Other information: Subsidiary of the General Corporation for Refining and Distribution of Petroleum Products (GCRDPP).);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Banyas;;;;;17938;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7391;EU.3019.74;;2014-07-23;;(Date of UN designation: 2014-07-23)\n(Date of listing: 23.7.2014. Other information: Subsidiary of the General Corporation for Refining and Distribution of Petroleum Products (GCRDPP).);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Tartous;Banias Refinery Building, 26 Latkia Main Road;P.O. Box 26;;;Tartous;NO;;SY;SYRIAN ARAB REPUBLIC;2601;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7391;EU.3019.74;;2014-07-23;;(Date of UN designation: 2014-07-23)\n(Date of listing: 23.7.2014. Other information: Subsidiary of the General Corporation for Refining and Distribution of Petroleum Products (GCRDPP).);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Homs;352, Tripoli Street;PO Box 352;;;Homs;NO;;SY;SYRIAN ARAB REPUBLIC;140728;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7392;EU.3041.66;;2014-07-13;;(Date of UN designation: 2014-07-13)\n(Date of listing: 23.7.2014. Other Information: Subsidiary of the General Corporation for Refining and Distribution of Petroleum Products (GCRDPP));E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;The Homs Refinery Company;;;;;17939;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7392;EU.3041.66;;2014-07-13;;(Date of UN designation: 2014-07-13)\n(Date of listing: 23.7.2014. Other Information: Subsidiary of the General Corporation for Refining and Distribution of Petroleum Products (GCRDPP));E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Hims;;;;;17940;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7392;EU.3041.66;;2014-07-13;;(Date of UN designation: 2014-07-13)\n(Date of listing: 23.7.2014. Other Information: Subsidiary of the General Corporation for Refining and Distribution of Petroleum Products (GCRDPP));E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;General Company for Homs Refinery;;;;;17941;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7392;EU.3041.66;;2014-07-13;;(Date of UN designation: 2014-07-13)\n(Date of listing: 23.7.2014. Other Information: Subsidiary of the General Corporation for Refining and Distribution of Petroleum Products (GCRDPP));E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Homs;General Company for Homs Refinery Building, 352 Tripoli Street;P.O. Box 352;;;Homs;NO;PHONE[+963-3125-16401]\nEMAIL[homs-refine@mail.sy]\nFAX[+963-3124-70101];SY;SYRIAN ARAB REPUBLIC;2602;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7393;EU.3042.31;;;;(Date of listing: 23.7.2014. Other information: Branch of Syrian Ministry of Defence.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Army Supply Bureau;;;;Branch of Syrian Ministry of Defence.;17942;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7393;EU.3042.31;;;;(Date of listing: 23.7.2014. Other information: Branch of Syrian Ministry of Defence.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;;P.O. Box 3361;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2603;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7394;EU.3043.93;;;;(Date of listing: 23.7.2014. Other information: Branch of Syrian Ministry of Defence.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Industrial Establishment of Defence;;;;Branch of Syrian Ministry of Defence.;17943;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7394;EU.3043.93;;;;(Date of listing: 23.7.2014. Other information: Branch of Syrian Ministry of Defence.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Industrial Establishment of Defense;;;;;17944;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7394;EU.3043.93;;;;(Date of listing: 23.7.2014. Other information: Branch of Syrian Ministry of Defence.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;IED;;;;;17945;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7394;EU.3043.93;;;;(Date of listing: 23.7.2014. Other information: Branch of Syrian Ministry of Defence.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Industrial Establishment for Defence;;;;;17946;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7394;EU.3043.93;;;;(Date of listing: 23.7.2014. Other information: Branch of Syrian Ministry of Defence.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Defence Factories Establishment;;;;;17947;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7394;EU.3043.93;;;;(Date of listing: 23.7.2014. Other information: Branch of Syrian Ministry of Defence.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Establissements Industriels de la Defense;;;;;17948;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7394;EU.3043.93;;;;(Date of listing: 23.7.2014. Other information: Branch of Syrian Ministry of Defence.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;EID;;;;;17949;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7394;EU.3043.93;;;;(Date of listing: 23.7.2014. Other information: Branch of Syrian Ministry of Defence.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Establissement Industrial de la Defence;;;;;17950;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7394;EU.3043.93;;;;(Date of listing: 23.7.2014. Other information: Branch of Syrian Ministry of Defence.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ETINDE;;;;;17951;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7394;EU.3043.93;;;;(Date of listing: 23.7.2014. Other information: Branch of Syrian Ministry of Defence.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Coefficient Defense Foundation;;;;;17952;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7394;EU.3043.93;;;;(Date of listing: 23.7.2014. Other information: Branch of Syrian Ministry of Defence.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Al Thawraa Street, P.O. Box 2330;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2604;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7394;EU.3043.93;;;;(Date of listing: 23.7.2014. Other information: Branch of Syrian Ministry of Defence.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Al-Hameh, Damascus Countryside, P.O. Box 2230;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2605;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7395;EU.3047.50;;;Date of listing: 23.7.2014.;(Designation details: Date of listing: 23.7.2014.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Higher Institute for Applied Sciences and Technology;;;;Affiliated to and a subsidiary of the Syrian Scientific Studies and Research Centre (SSRC) which is already designated.;17953;EN;;amendment;council;2018-05-29;2018-05-30;2018/774 (OJ L131);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:131:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7395;EU.3047.50;;;Date of listing: 23.7.2014.;(Designation details: Date of listing: 23.7.2014.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;HIAST;;;;;17954;EN;;amendment;council;2018-05-29;2018-05-30;2018/774 (OJ L131);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:131:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7395;EU.3047.50;;;Date of listing: 23.7.2014.;(Designation details: Date of listing: 23.7.2014.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Institut Supérieur des Sciences Appliquées et de Technologie;;;;;120340;EN;;amendment;council;2018-05-29;2018-05-30;2018/774 (OJ L131);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:131:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7395;EU.3047.50;;;Date of listing: 23.7.2014.;(Designation details: Date of listing: 23.7.2014.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ISSAT;;;;;120341;EN;;amendment;council;2018-05-29;2018-05-30;2018/774 (OJ L131);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:131:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7395;EU.3047.50;;;Date of listing: 23.7.2014.;(Designation details: Date of listing: 23.7.2014.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;والتكنولوجيا المعد العالي العلوم التطبيقية;AR;;;;124860;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7395;EU.3047.50;;;Date of listing: 23.7.2014.;(Designation details: Date of listing: 23.7.2014.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Barzeh;;P.O. Box 31983;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2606;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7396;EU.3048.15;;;;(Date of listing: 23.7.2014. Other information: Affiliated to and a subsidiary of the Syrian Scientific Studies and Research Centre (SSRC) which is already designated.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;National Standards & Calibration Laboratory;;;;Provides training and support to the SSRC.;17955;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7396;EU.3048.15;;;;(Date of listing: 23.7.2014. Other information: Affiliated to and a subsidiary of the Syrian Scientific Studies and Research Centre (SSRC) which is already designated.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;NSCL;;;;;17956;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7396;EU.3048.15;;;;(Date of listing: 23.7.2014. Other information: Affiliated to and a subsidiary of the Syrian Scientific Studies and Research Centre (SSRC) which is already designated.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;P.O. Box 4470;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2607;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7398;EU.4001.63;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;FRADKOV;Mikhail;Efimovich;Mikhail Efimovich FRADKOV;;M;;"Former permanent member of the Security Council of the Russian Federation; Former Director of the Foreign Intelligence Service of the Russian Federation. As of 4 January 2017, Director of the Russian Institute for Strategic Studies. He is also the Chairperson of the Board of Directors of ‘Almaz‐Antey’.";17959;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7398;EU.4001.63;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;ФРАДКОВ;Михаил;Ефимович;Михаил Ефимович ФРАДКОВ;;M;;;17960;EN;;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7398;EU.4001.63;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-09-01;1;9;1950;;;NO;GREGORIAN;;Kuibyshev region;;Kurumoch;RU;RUSSIAN FEDERATION;2161;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7399;EU.207.14;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;PATRUSHEV;Nikolai;Platonovich;Nikolai Platonovich PATRUSHEV;;M;;Permanent member and Secretary of the Security Council of the Russian Federation.;17961;EN;;amendment;council;2014-07-25;2014-07-25;810/2014 (OJ L221);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_221_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7399;EU.207.14;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;ПАТРУШЕВ;Николай;Платонович;Николай Платонович ПАТРУШЕВ;;M;;;17962;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7399;EU.207.14;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-07-11;11;7;1951;;;NO;GREGORIAN;;;;Leningrad (St Petersburg);RU;RUSSIAN FEDERATION;2162;EN;;amendment;council;2014-07-25;2014-07-25;810/2014 (OJ L221);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_221_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7400;EU.1588.36;;2014-07-27;;(Date of UN designation: 2014-07-27)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;BORTNIKOV;Aleksandr;Vasilievich;Aleksandr Vasilievich BORTNIKOV;;M;;"Permanent member of the Security Council of the Russian Federation; Director of the Federal Security Service (FSB).";17963;EN;;amendment;council;2014-07-25;2014-07-25;810/2014 (OJ L221);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_221_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7400;EU.1588.36;;2014-07-27;;(Date of UN designation: 2014-07-27)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;БОРТНИКОВ;Александр;Васильевич;Александр Васильевич БОРТНИКОВ;;M;;;17964;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7400;EU.1588.36;;2014-07-27;;(Date of UN designation: 2014-07-27)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-11-15;15;11;1951;;;NO;GREGORIAN;;;;Perm;RU;RUSSIAN FEDERATION;2163;EN;;amendment;council;2014-07-25;2014-07-25;810/2014 (OJ L221);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_221_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7401;EU.288.26;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;NURGALIEV;Rashid;Gumarovich;Rashid Gumarovich NURGALIEV;;M;;Member and Deputy Secretary of the Security Council of the Russian Federation.;17965;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7401;EU.288.26;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;НУРГАЛИЕВ;Рашид;Гумарович;Рашид Гумарович НУРГАЛИЕВ;;M;;;17966;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7401;EU.288.26;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-10-08;8;10;1956;;;NO;GREGORIAN;;;;Zhetikara, Kazakh Soviet Socialist Republic;KZ;KAZAKHSTAN;2164;EN;POB: Zhetikara, Kazakh Soviet Socialist Republic (now Kazakhstan);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7402;EU.3685.11;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GRYZLOV;Boris;Vyacheslavovich;Boris Vyacheslavovich GRYZLOV;;M;;Former permanent member of the Security Council of the Russian Federation. He remains chairman of the Supreme Council of the United Russia party and plenipotentiary representative of the Russian Federation in the Contact Group on settling the situation in Ukraine.\nChairperson of the Board of Directors of the State-owned enterprise Tactical Missiles Corporation JSC.\nHolds the position of an Ambassador in the diplomatic corps of the Russian Federation.;17967;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7402;EU.3685.11;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГРЫЗЛОВ;Борис;Вячеславович;Борис Вячеславович ГРЫЗЛОВ;RU;M;;;17968;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7402;EU.3685.11;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Boris Vjatjeslavovitj GRYZLOV;SV;;;;137439;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7402;EU.3685.11;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-12-15;15;12;1950;;;NO;GREGORIAN;;;;Vladivostok;RU;RUSSIAN FEDERATION;2165;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7403;EU.3540.23;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;BESEDA;Sergei;Orestovich;Sergei Orestovich BESEDA;;M;;Commander of the Fifth Service of the FSB, Federal Security Service of the Russian Federation. Senior FSB officer (Colonel-General);17969;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7403;EU.3540.23;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;БЕСЕДА;Сергей;Орестович;Сергей Орестович БЕСЕДА;;M;;;17970;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7403;EU.3540.23;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-05-17;17;5;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;2166;EN;;amendment;council;2015-09-15;2015-09-15;2015/1514 (OJ L239);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_239_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7404;EU.3686.73;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DEGTYAREV;Mikhail;Vladimirovich;Mikhail Vladimirovich DEGTYAREV;;M;;;17971;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7404;EU.3686.73;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДЕГТЯРЁВ;Михаил;Владимирович;Михаил Владимирович ДЕГТЯРЁВ;RU;M;;;17972;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7404;EU.3686.73;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DEGTYARYOV;Mikhail;Vladimirovich;Mikhail Vladimirovich DEGTYARYOV;;M;;Former Member of the State Duma. Former Chairman of the Russian State Duma Committee on Physical Education, Sport and Youth Affairs.\n\nSince 19 September 2021, Governor of Khabarovsk Krai.\nSince 6 February 2021, Coordinator of the regional branch of the Liberal Democratic Party of Russia.\nSince 15 November 2021, member of the State Council of the Russian Federation;122940;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7404;EU.3686.73;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Michail Vladimirovitj DEGTIARJOV;SV;M;;;128359;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7404;EU.3686.73;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-07-10;10;7;1981;;;NO;GREGORIAN;;;;Kuibyshev (Samara);RU;RUSSIAN FEDERATION;2167;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7405;EU.226.40;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KADYROV;Ramzan;Akhmadovitch;Ramzan Akhmadovitch KADYROV;;M;;President of the Republic of Chechnya.;17973;EN;;amendment;council;2014-07-25;2014-07-25;810/2014 (OJ L221);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_221_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7405;EU.226.40;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;КАДЫРОВ;Рамзан;Ахматович;Рамзан Ахматович КАДЫРОВ;;M;;;17974;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7405;EU.226.40;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-10-05;5;10;1976;;;NO;GREGORIAN;;Chechnya;;Tsentaroy;RU;RUSSIAN FEDERATION;2168;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7406;EU.3416.39;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;TKACHYOV;Alexander;Nikolayevich;Alexander Nikolayevich TKACHYOV;;M;;Former Governor of the Krasnodar Krai.\nFormer Minister of Agriculture of the Russian Federation.;17975;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7406;EU.3416.39;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;ТКАЧЁВ;Александр;Николаевич;Александр Николаевич ТКАЧЁВ;;M;;;17976;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7406;EU.3416.39;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-12-23;23;12;1960;;;NO;GREGORIAN;;Krasnodar region;;Vyselki;RU;RUSSIAN FEDERATION;2169;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7407;EU.3687.38;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GUBAREV;Pavel;Yurievich;Pavel Yurievich GUBAREV;;M;;One of the self-described leaders of the ‘People's Republic of Donetsk’.;17977;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7407;EU.3687.38;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГУБАРЕВ;Павел;Юрьевич;Павел Юрьевич ГУБАРЕВ;RU;M;;;17978;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7407;EU.3687.38;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГУБАРЄВ;Павло;Юрійович;Павло Юрійович ГУБАРЄВ;UK;M;;;109529;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7407;EU.3687.38;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Pavlo Yuriyovich GUBARIEV;;M;;;109530;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7407;EU.3687.38;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Pavlo Jurijovytj HUBARJEV;SV;;;;143738;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7407;EU.3687.38;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Pavel Jurjevitj GUBAREV;SV;;;;143739;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7407;EU.3687.38;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Pavlo Yuriyovich HUBARIEV;;M;;;143740;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7407;EU.3687.38;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-02-10;10;2;1983;;;NO;GREGORIAN;;;;Sievierodonetsk;UA;UKRAINE;2170;EN;;amendment;council;2014-07-25;2014-07-25;810/2014 (OJ L221);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_221_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7407;EU.3687.38;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-03-10;10;3;1983;;;NO;GREGORIAN;;;;Sievierodonetsk;UA;UKRAINE;122862;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7408;EU.3690.90;;;Date of listing: 25/07/2014;(Designation details: Date of listing: 25/07/2014)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;GUBAREVA;Ekaterina;Yurievna;Ekaterina Yurievna GUBAREVA;;F;;Former Member of the so-called “People's Council” of the “Donetsk People's Republic” (until November 2018) and former so-called ‘Minister of Foreign Affairs’ of the so-called ‘Donetsk People’s Republic’;17979;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7408;EU.3690.90;;;Date of listing: 25/07/2014;(Designation details: Date of listing: 25/07/2014)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;ГУБАРЕВА;Екатерина;Юрьевна;Екатерина Юрьевна ГУБАРЕВА;;F;;;17980;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7408;EU.3690.90;;;Date of listing: 25/07/2014;(Designation details: Date of listing: 25/07/2014)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;GUBARIEVA (HUBARIEVA);Kateryna;Yuriyivna;Kateryna Yuriyivna GUBARIEVA (HUBARIEVA);;F;;;18702;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7408;EU.3690.90;;;Date of listing: 25/07/2014;(Designation details: Date of listing: 25/07/2014)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Катерина Юріівна ГУБАРЄВА;;F;;;18703;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7408;EU.3690.90;;;Date of listing: 25/07/2014;(Designation details: Date of listing: 25/07/2014)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-07-05;5;7;1983;;;NO;GREGORIAN;;Kherson oblast;;Kakhovka;UA;UKRAINE;2171;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7408;EU.3690.90;;;Date of listing: 25/07/2014;(Designation details: Date of listing: 25/07/2014)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-03-10;10;3;1983;;;NO;GREGORIAN;;Kherson oblast;;Kakhovka;UA;UKRAINE;108157;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7409;EU.3691.55;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;BEREZIN;Fyodor;Dmitrievich;Fyodor Dmitrievich BEREZIN;;M;;Former so-called ‘deputy defence minister’ of the so-called ‘Donetsk People’s Republic’. Member of the so-called ‘People’s Council’ of the ‘Donetsk People’s Republic’. Current Chairman of the Board of the DNR Writers’ Union.;17981;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7409;EU.3691.55;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;БЕРЕЗИН;Фёдор;Дмитриевич;Фёдор Дмитриевич БЕРЕЗИН;;M;;;17982;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7409;EU.3691.55;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;BEREZIN;Fedir;Dmytrovych;Fedir Dmytrovych BEREZIN;;M;;;18704;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7409;EU.3691.55;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Федір Дмитрович БЕРЕЗІН;;M;;;18705;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7409;EU.3691.55;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Fjodor Dmitrjewitsch BERESIN;DE;M;;;131422;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7409;EU.3691.55;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Fedir Dmytrovytj BEREZIN;SV;M;;;131423;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7409;EU.3691.55;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Fjodor Dmitrijevitj BEREZIN;SV;M;;;131424;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7409;EU.3691.55;;2014-07-25;;(Date of UN designation: 2014-07-25);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-02-07;7;2;1960;;;NO;GREGORIAN;;;;Donetsk;UA;UKRAINE;2172;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7410;EU.3692.20;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KAUROV;Valery;Vladimirovich;Valery Vladimirovich KAUROV;;M;;The self-described ‘president’ of the so-called ‘Republic of Novorossiya’;17983;EN;;amendment;council;2014-07-25;2014-07-25;810/2014 (OJ L221);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_221_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7410;EU.3692.20;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;КАУРОВ;Валерий;Владимирович;Валерий Владимирович КАУРОВ;;M;;;17984;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7410;EU.3692.20;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Валерій Володимирович КАУРОВ;;M;;;111425;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7410;EU.3692.20;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KAUROV;Valeriy;Volodymyrovych;Valeriy Volodymyrovych KAUROV;;M;;;111426;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7410;EU.3692.20;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(Date of listing: 25.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-04-02;2;4;1956;;;NO;GREGORIAN;;;;Odessa;UA;UKRAINE;2173;EN;;amendment;council;2014-07-25;2014-07-25;810/2014 (OJ L221);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_221_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7411;EU.4002.28;;2014-07-25;25.7.2014;(Date of UN designation: 2014-07-25)\n(Designation details: 25.7.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;ZDRILIUK;Serhii;Anatoliyovych;Serhii Anatoliyovych ZDRILIUK;;M;;Senior aid to Igor Strelkov/Girkin.;17985;EN;;amendment;council;2014-07-25;2014-07-25;810/2014 (OJ L221);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_221_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7411;EU.4002.28;;2014-07-25;25.7.2014;(Date of UN designation: 2014-07-25)\n(Designation details: 25.7.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;ЗДРИЛЮК;Сергей;Анатольевич;Сергей Анатольевич ЗДРИЛЮК;;M;;;17986;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7411;EU.4002.28;;2014-07-25;25.7.2014;(Date of UN designation: 2014-07-25)\n(Designation details: 25.7.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Сергій Анатолійович ЗДРИЛЮК;;M;;;111428;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7411;EU.4002.28;;2014-07-25;25.7.2014;(Date of UN designation: 2014-07-25)\n(Designation details: 25.7.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Abwehr;;M;;;114348;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7411;EU.4002.28;;2014-07-25;25.7.2014;(Date of UN designation: 2014-07-25)\n(Designation details: 25.7.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-07-23;23;7;1972;;;NO;GREGORIAN;;Vinnytsia region;;Frontovka village;UA;UKRAINE;122863;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7411;EU.4002.28;;2014-07-25;25.7.2014;(Date of UN designation: 2014-07-25)\n(Designation details: 25.7.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-06-23;23;6;1972;;;NO;GREGORIAN;;Vinnytsia region;;Frontovka village;UA;UKRAINE;122864;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7412;EU.4003.90;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(date of listing: 25/07/2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;ANTYUFEYEV;Vladimir;;Vladimir ANTYUFEYEV;;M;;Former 'Minister of State Security' in the separatist region of Transnistria. Former vice-prime minister of the 'Donetsk People's Republic', responsible for security and law enforcement. Board member and Deputy Director General of the State-owned enterprise 'United Engine Corporation', board member of the State-owned JSC Research and Production Enterprise 'Temp' named after F. Korotkov.;17987;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7412;EU.4003.90;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(date of listing: 25/07/2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;АНТЮФЕЕВ;Владимир;;Владимир АНТЮФЕЕВ;;M;;;17988;EN;;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7412;EU.4003.90;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(date of listing: 25/07/2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;SHEVTSOV;Vladimir;;Vladimir SHEVTSOV;;M;;;17989;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7412;EU.4003.90;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(date of listing: 25/07/2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;ANTIUFEEV;Vladimir;Iurievici;Vladimir Iurievici ANTIUFEEV;;M;;;17990;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7412;EU.4003.90;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(date of listing: 25/07/2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;ALEXANDROV;Vladimir;Gheorghievici;Vladimir Gheorghievici ALEXANDROV;;M;;;17991;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7412;EU.4003.90;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(date of listing: 25/07/2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;SHEVTSOV;Vadim;Gheorghievici;Vadim Gheorghievici SHEVTSOV;;M;;;17992;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7412;EU.4003.90;;2014-07-25;;(Date of UN designation: 2014-07-25)\n(date of listing: 25/07/2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-02-19;19;2;1951;;;NO;GREGORIAN;;;;Novosibirsk;RU;RUSSIAN FEDERATION;2175;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7413;EU.4034.58;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;So-called 'Lugansk People's Republic';;;;;17993;EN;The so-called ‘Lugansk People's Republic’ was established \non 27 April 2014. Responsible for organising the illegal \nreferen­dum on 11 May 2014. Declaration of indepen­dence on 12 May 2014. On 22 May 2014, the so-called ‘People's\nRepublics’ of Donetsk and Lugansk created the so-called \n‘Federal State of Novorossiya’. T;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7413;EU.4034.58;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;'Луганская народная республика' (ЛНР);;;;;17994;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7413;EU.4034.58;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;'Luganskaya narodnaya respublika' (LNR);;;;;17995;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7413;EU.4034.58;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;"WEB[https://glava-lnr.info/; https://sovminlnr.ru/; https://nslnr.su/]\n(Official information: \nhttps://glava-lnr.info/ \nhttps://sovminlnr.ru/ \nhttps://nslnr.su/)";00;UNKNOWN;2609;EN;Official information: \nhttps://glava-lnr.info/ \nhttps://sovminlnr.ru/ \nhttps://nslnr.su/;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7414;EU.3044.58;;;25.7.2014;(Designation details: 25.7.2014);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;So called 'Donetsk People's Republic';;;;.;17996;EN;The so called ‘Donetsk People's Republic’ was declared \non 7 April 2014. Responsible for organizing the illegal referendum on May 11 2014. Declaration of independence on May 12 2014. On 24 May 2014, the so called ‘People's Republics’ of Donetsk and Lugansk signed an agreement on the creation of the so called ‘Federal State of Novorossiya’. t;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7414;EU.3044.58;;;25.7.2014;(Designation details: 25.7.2014);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;'Донецкая народная республика' (ДНР);;;;;17997;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7414;EU.3044.58;;;25.7.2014;(Designation details: 25.7.2014);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;'Donetskaya narodnaya respublika' (DNR);;;;;17998;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7414;EU.3044.58;;;25.7.2014;(Designation details: 25.7.2014);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;"WEB[https://dnronline.su/; https://pravdnr.ru/; https://dnrsovet.su/; https://denis-pushilin.ru/]\n(Official information:\n\nhttps://dnronline.su/\n\nhttps://pravdnr.ru/\n\nhttps://dnrsovet.su/\n\nhttps://denis-pushilin.ru/)";00;UNKNOWN;2610;EN;Official information:\n\nhttps://dnronline.su/\n\nhttps://pravdnr.ru/\n\nhttps://dnrsovet.su/\n\nhttps://denis-pushilin.ru/;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;So-called “Federal State of Novorossiya”;;;;;17999;EN;On 24 May 2014, the so‐called 'People's Republics' of Donetsk and Luhansk signed an agreement on the creation of the unrecognised so‐called 'Federal State of Novorossiya'.;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;“Федеративное государство Новороссия”;;;;;18000;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;“Federativnoye Gosudarstvo Novorossiya”;;;;;18001;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Т.нар. „Федерална държава Новорусия“;BG;;;;128368;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Tzv. „Federální stát Nové Rusko“;CS;;;;128369;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;“Estado Federal de Novorossiya” (así denominado);ES;;;;128370;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Den såkaldte »Føderale Stat Novorossija«;DA;;;;128371;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;„Novorossija Föderaalriik“;ET;;;;128372;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Sogenannter ‚Föderaler Staat Noworossija‘;DE;;;;128373;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Takozvana Federalna Država Novorusija;HR;;;;128374;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;‘Federal State of Novorossiya’ mar a ghairtear de;GA;;;;128375;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Soi-disant “État fédéral de Nouvelle Russie”;FR;;;;128376;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Αυτοαποκαλούμενη “Ομοσπονδιακή Πολιτεία της Νέας Ρωσίας”;EL;;;;128377;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Tā sauktā “Novorossijas federālā valsts”;LV;;;;128378;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Cosiddetto “Stato federale di Novorossiya”;IT;;;;128379;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Vadinamoji „federacinė „Novorossiya“ valstybė“;LT;;;;128380;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Az úgynevezett „Novorosszija Szövetségi Állam”;HU;;;;128381;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;L-hekk imsejjaħ “Stat Federali ta’ Novorossiya”;MT;;;;128382;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Tzw. „Federalne Państwo Noworosji”;PL;;;;128383;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Zogenoemde “Federale Staat Novorossiya”;NL;;;;128384;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;O chamado “Estado Federal da Novoróssia”;PT;;;;128385;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Tzv. „Federálny štát Novorusko“;SK;;;;128386;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Așa-numitul «Stat Federal al Novorossiya»;RO;;;;128387;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;T. i. „Zvezna država Novorusija“;SL;;;;128388;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;"""Novorossijan liittovaltio""";FI;;;;128389;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;s.k. ”Federala staten Novorossija”;SV;;;;128390;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7415;EU.4035.23;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Media resources:\n\nhttp://novopressa.ru/\n\nhttp://novorossia-tv.ru/\n\nhttp://novorossiia.ru/\n\nhttps://vk.com/novorossiatv);00;UNKNOWN;115873;EN;Media resources:\n\nhttp://novopressa.ru/\n\nhttp://novorossia-tv.ru/\n\nhttp://novorossiia.ru/\n\nhttps://vk.com/novorossiatv;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7416;EU.4026.84;;;date of listing: 25.7.2014;(Designation details: date of listing: 25.7.2014);E;enterprise;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;International Union of Public Associations ‘Great Don Army’;;;;The ‘Great Don army’ established the ‘Cossack National Guard’, responsible for fighting against the Ukrainian government forces in Eastern Ukraine, thus undermining the territorial integrity, sovereignty and independence of Ukraine as well as threatening the stability or security of Ukraine. Associated with Mr Nikolay Kozitsyn, who is Commander of Cossack forces and responsible for Commanding separatists in Eastern Ukraine fighting against the Ukrainian government forces.;18002;EN;;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7416;EU.4026.84;;;date of listing: 25.7.2014;(Designation details: date of listing: 25.7.2014);E;enterprise;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Международный Союз Общественных Объединений ‘Всевеликое Войско Донское’;;;;;114381;EN;;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7416;EU.4026.84;;;date of listing: 25.7.2014;(Designation details: date of listing: 25.7.2014);E;enterprise;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;346465 Russia, Rostov Region, October District, St Zaplavskaya, Str Shosseynaya 1;;;;;NO;WEB[http://xn– 80aaaajfjszd7a3b0e.xn– p1ai/]\nPHONE[+7-8-908-178-65-57]\n(Official information: \nhttp://xn---- \n7sbabalgku2ad1b5b2e.xn-- \np1ai/);RU;RUSSIAN FEDERATION;2612;EN;Official information: \nhttp://xn---- \n7sbabalgku2ad1b5b2e.xn-- \np1ai/;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7416;EU.4026.84;;;date of listing: 25.7.2014;(Designation details: date of listing: 25.7.2014);E;enterprise;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;Voroshilovskiy Prospekt 12/85-87/13, Rostov- on-Don;;;;;NO;WEB[http://vk.com/kazak_ nac_guard]\n(Social media: Cossack National Guard http://vk.com/kazak_ nac_guard\nde-registered in 2017);RU;RUSSIAN FEDERATION;114382;EN;Social media: Cossack National Guard http://vk.com/kazak_ nac_guard\nde-registered in 2017;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;"Russian community ""Sobol""";;;;;18005;EN;Radical paramilitary organisation;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;"Русская община ""Соболь""";;;;;18006;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Руска общност „Собол“;BG;;;;131402;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Ruské společenství „Sobol“;CS;;;;131451;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Comunidad rusa “Sobol”;ES;;;;131452;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Russische Gemeinschaft „Sobol“;DE;;;;131453;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Den russiske gruppe »Sobol«;DA;;;;131454;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Communauté russe “Sobol”;FR;;;;131455;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Vene kogukond „Sobol“;ET;;;;131456;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Krievu kopiena “Sobol”;LV;;;;131457;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Comunità russa “Sobol”;IT;;;;131458;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Ruska zajednica „Sobol”;HR;;;;131459;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Komunità Russa “Sobol”;MT;;;;131460;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;»Sobol« orosz közösség;HU;;;;131461;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Rusijos bendruomenė „Sobol“;LT;;;;131462;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Comunidade Russa “Sobol”;PT;;;;131463;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Wspólnota Rosyjska »Sobol«;PL;;;;131464;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Russische gemeenschap “Sobol”;NL;;;;131465;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Ruska skupnost ‚Sobol‘;SL;;;;131466;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Ruská komunita „Soboľ“;SK;;;;131467;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Comunitatea rusă «Sobol»;RO;;;;131468;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Venäläisyhteisö ”Sobol”;FI;;;;131469;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7417;EU.4036.85;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;Simferopol;str. Kiev, 4 (area bus station ‘Central’).;;;Crimea;;NO;"WEB[http://vk.com/sobolipress; http://www.русскоедвижение.рф/]\nPHONE[(0652) 60-23-93]\nEMAIL[SoboliPress@gmail.com]\n(Social media:\n\nhttp://vk.com/sobolipress\n\nhttp://www.русскоедвижение.рф/)";UA;UKRAINE;2613;EN;Social media:\n\nhttp://vk.com/sobolipress\n\nhttp://www.русскоедвижение.рф/;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7418;EU.3050.5;;;;;E;enterprise;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Луганская гвардия;;;;;18008;EN;;amendment;council;2014-07-25;2014-07-25;810/2014 (OJ L221);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_221_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7418;EU.3050.5;;;;;E;enterprise;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;So-called ‘Luhansk Guard’;;;;;122892;EN;Self-defence militia of Luhansk, responsible for training separatists to fight against the Ukrainian government forces in Eastern Ukraine, thus threatening the stability or security of Ukraine.;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7418;EU.3050.5;;;;;E;enterprise;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Social media and other information:\n\nhttps://vk.com/luguard\n\nhttp://vk.com/club68692201\n\nhttps://vk.com/luguardnews);00;UNKNOWN;122891;EN;Social media and other information:\n\nhttps://vk.com/luguard\n\nhttp://vk.com/club68692201\n\nhttps://vk.com/luguardnews;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7419;EU.3051.67;;;date of listing: 25.07.2014;(Designation details: date of listing: 25.07.2014);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;Army of the Southeast;;;;llegal armed separatist group which is considered to be one of the most important in Eastern Ukraine. Responsible for occupying the building of the Security Service in the Lugansk region. Associated with Mr Valeriy BOLOTOV, who was listed as one of the leaders of the group. \nAssociated with Mr Vasyl NIKITIN, responsible for the separatist ‘governmental’ activities of the so called ‘government of the People's Republic of Luhansk’.;18009;EN;;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7419;EU.3051.67;;;date of listing: 25.07.2014;(Designation details: date of listing: 25.07.2014);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;Армии Юго-Востока;;;;;18010;EN;;amendment;council;2014-07-25;2014-07-25;810/2014 (OJ L221);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_221_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7419;EU.3051.67;;;date of listing: 25.07.2014;(Designation details: date of listing: 25.07.2014);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;WEB[ https://vk.com/s igma_orel];00;UNKNOWN;2615;EN;;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7420;EU.3484.19;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;Donbas People's Militia;;;;Illegal armed separatist group responsible for fighting against the Ukrainian government forces in Eastern Ukraine, thus threatening the stability or security of Ukraine. inter alia, the militant group seized control of several government buildings in Eastern Ukraine in early April 2014, thus undermining the territorial integrity, sovereignty and independence of Ukraine. It is associated with Mr Pavel Gubarev, who is responsible for the taking over of the regional government building in Donetsk with pro-Russian forces and proclaiming himself the ‘people's governor’.;18011;EN;So-called ‘Donbas People's Militia’;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7420;EU.3484.19;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;Нарoдное oпoлчéние Дoнбáсса;;;;;18012;EN;;amendment;council;2016-03-12;2016-03-13;2016/353 (OJ L67);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0353&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7420;EU.3484.19;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;Donetsk;13 Prospect Zasyadko;;;;;NO;"PHONE[+7 (926) 428-99-51 +7 (967) 171-27-09]\nEMAIL[voenkom.dnr@mail.ru]\n(Social media: http://vk.com/polkdonbassa + 38-099-445-63-78; + 38-063-688-60-01; + 38-067-145-14-99; + 38-094-912-96-60; + 38-062-213-26-60 Email: voenkom.dnr@mail. ru vknovoros@yandex.ru mobilisation@novorossia.co polkdonbassa@mail.ru Telephone volunteers in Russia: + 7 499 709-89-06 or email novoross24@mail. ru)";UA;UKRAINE;2616;EN;"Social media: http://vk.com/polkdonbassa + 38-099-445-63-78; + 38-063-688-60-01; + 38-067-145-14-99; + 38-094-912-96-60; + 38-062-213-26-60 Email: voenkom.dnr@mail. ru vknovoros@yandex.ru mobilisation@novorossia.co polkdonbassa@mail.ru Telephone volunteers in Russia: + 7 499 709-89-06 or email novoross24@mail. ru";amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Vostok Batallion;;;;;18013;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;"""Батальон Восток""";;;;;18014;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;"""Бригада Восток""";;;;;131133;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;"""Vostok Brigade""";;;;;131134;EN;"Part of the so-called ""1st Army Corps"" of the \nArmed Forces of ""Donetsk People's \nRepublic"".";amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;„Батальон Изток“;BG;;;;131403;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;„Бригада Изток“;BG;;;;131404;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Batallón Vostok;ES;;;;131470;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;“Brigada Vostok”;ES;;;;131471;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Prapor „Vostok“;CS;;;;131472;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Brigáda „Vostok“;CS;;;;131473;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Bataljon Vostok;DA;;;;131474;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;»Brigade Vostok«;DA;;;;131475;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Bataillon Wostok;DE;;;;131476;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;„Brigade Wostok“;DE;;;;131477;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Vostoki pataljon;ET;;;;131478;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;„Vostoki brigaad“;ET;;;;131479;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Vostok Battalion;GA;;;;131480;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;“Bataillon Vostok”;FR;;;;131481;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;battaglione Vostok;IT;;;;131482;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;“Brigata Vostok”;IT;;;;131483;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;bataljun Vostok;HR;;;;131484;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;„Vostoko batalionas“;LT;;;;131485;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;„Vostoko brigada“;LT;;;;131486;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Vosztok zászlóalj;HU;;;;131487;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;»Vosztok dandár«;HU;;;;131488;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Battaljun Vostok;MT;;;;131489;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Vostok-bataljon;NL;;;;131490;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;"""Vostok-brigade”";NL;;;;131491;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;“Brigada de Vostok”;PT;;;;131492;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Brygada »Wschód«;PL;;;;131493;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Batalión Východ;SK;;;;131494;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;„Brigáda Východ“;SK;;;;131495;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Batalionul Vostok;RO;;;;131496;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Vostok-pataljoona;FI;;;;131497;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;”Vostok-prikaati”;FI;;;;131498;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;bataljon Vostok;SL;;;;131499;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7421;EU.3948.88;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;WEB[http://patriot-donetsk.ru/]\nEMAIL[info.patriot.donbassa@gmail.com]\n(Social media:\nhttp://vk.com/patr\niotic_forces_of_d\nonbas);UA;UKRAINE;2617;EN;Social media:\nhttp://vk.com/patr\niotic_forces_of_d\nonbas;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7423;EU.4037.50;;;25.7.2014;(Designation details: 25.7.2014);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;State enterprise ‘Sevastopol commercial seaport’;;;;;18018;EN;formerly known as;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7423;EU.4037.50;;;25.7.2014;(Designation details: 25.7.2014);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Государственное предприятие ‘Севастопольский морской торговый порт’;;;;;18019;EN;formerly known as;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7423;EU.4037.50;;;25.7.2014;(Designation details: 25.7.2014);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Gosudarstvenoye predpriyatiye Sevastopolski morskoy torgovy port;;;;;18020;EN;formerly known as;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7423;EU.4037.50;;;25.7.2014;(Designation details: 25.7.2014);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;State Unitary Enterprise of the City of Sevastopol, ‘Sevastopol seaport’;EN;;;In terms of volume of trade, it is the biggest commercial seaport in Crimea. Re-registered on 6 June 2014 as State Unitary Enterprise of the City of Sevastopol, ‘Sevastopol seaport’ (ГОСУДАРСТВЕННОЕ УНИТАРНОЕ ПРЕДПРИЯТИЕ ГОРОДА СЕВАСТОПОЛЯ ‘СЕВАСТОПОЛЬСКИЙ МОРСКОЙ ПОРТ’). Founder: The Government of Sevastopol (Правительство Севастополя).;108162;EN;(formerly known as State enterprise ‘Sevastopol commercial \nseaport’ \nГосударственное предприятие ‘Севастопольский \nморской торговьй порт’ \nGosudarstvenoye predpriyatiye ‘Sevastopolski morskoy torgovy port’);amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7423;EU.4037.50;;;25.7.2014;(Designation details: 25.7.2014);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;ГУП ГС ‘Севастопольский морской порт’;;;;;114387;EN;;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7423;EU.4037.50;;;25.7.2014;(Designation details: 25.7.2014);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;Sevastopol;Nakhimov Square 5;;299011;;;NO;WEB[https://www.sevmp.ru/]\nEMAIL[gupsmp@mail.ru];00;UNKNOWN;2620;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7423;EU.4037.50;;;25.7.2014;(Designation details: 25.7.2014);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;пл. Нахимова, 5, г. Севастополь;;299011;;;NO;WEB[https://www.sevmp.ru/]\nEMAIL[gupsmp@mail.ru];00;UNKNOWN;2621;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7423;EU.4037.50;;;25.7.2014;(Designation details: 25.7.2014);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1149204004707 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125020;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;State enterprise “Universal-Avia”;;;;;18024;EN;formerly known as;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Государственное унитарное предприятие Республики Крым “Универсал-Авиа”;;;;;18025;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Gosudarstvenoye predpriyatiye “Universal-Avia”;;;;;18026;EN;formerly known as;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;State Unitary Enterprise of the “Republic of Crimea”“Universal-Avia”;EN;;;;108164;EN;Re-registered on 15 January 2015 as State Unitary Enterprise of the “Republic of Crimea”‘Universal-Avia’” (Государственное унитарное предприятие Республики Крым “Универсал-Авиа”). Founder: The Ministry of Transportation of the “Republic of Crimea” (Министерство транспорта Республики Крым).;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Государственное предприятие “Универсал-Авиа”;;;;;114390;EN;formerly known as;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Държавно единно предприятие на „Република Крим“„Универсал-Авиа“;BG;;;;128391;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;известно преди като държавно предприятие „Универсал-Авиа“;BG;;;;128392;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;antes conocida como Empresa Estatal “Universal-Avia”;ES;;;;128393;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Empresa Unitaria Estatal de la “República de Crimea”“Universal-Avia”;ES;;;;128394;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;dříve znám jako státní podnik Universal -Avia;CS;;;;128395;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Státní jednotný podnik „Republiky Krym“„Universal-Avia“;CS;;;;128396;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;tidligere kendt som den statsejede virksomhed »Universal-Avia«;DA;;;;128397;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;»Republikken Krims« statsejede virksomhed »Universal-Avia«;DA;;;;128398;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;vormals staatliches Unternehmen ‚Universal-Avia‘;DE;;;;128399;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Staatliches Einheitsunternehmen der ‚Republik Krim‘‚Universal-Avia‘;DE;;;;128400;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;γνωστή προηγουμένως ως κρατική επιχείρηση “Universal-Avia”;EL;;;;128401;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Κρατική ενιαία επιχείρηση της “Δημοκρατίας της Κριμαίας”, “Universal-Avia”;EL;;;;128402;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;State Unitary Enterprise den ‘Republic of Crimea’‘Universal-Avia’;GA;;;;128403;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;anciennement connue sous le nom d’Entreprise publique “Universal-Avia”;FR;;;;128404;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Entreprise unitaire d’État de la “République de Crimée”“Universal-Avia”;FR;;;;128405;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;dá ngairtí fiontar Stáit ‘Universal -Avia’ roimhe seo;GA;;;;128406;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;ranije poznato kao državno poduzeće „Universal-Avia”;HR;;;;128407;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Državno unitarno poduzeće „Republike Krima”„Universal-Avia”;HR;;;;128408;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;già impresa statale “Universal-Avia”;IT;;;;128409;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Impresa unitaria statale della “Repubblica di Crimea”“Universal-Avia”;IT;;;;128410;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;agrākais nosaukums – valsts uzņēmums “Universal –Avia”;LV;;;;128411;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;“Krimas Republikas” valsts unitārs uzņēmums “Universal-Avia”;LV;;;;128412;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;korábbi elnevezése: State enterprise „Universal-Avia”;HU;;;;128413;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;„Universal-Avia”, a „Krími Köztársaság” szövetségi állami vállalata;HU;;;;128414;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;anksčiau žinoma kaip valstybės įmonė „Universal-Avia“;LT;;;;128415;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;„Krymo Respublikos“ valstybės unitarinė įmonė „Universal-Avia“;LT;;;;128416;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;voorheen bekend als State enterprise “Universal-Avia”;NL;;;;128417;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;State Unitary Enterprise van de “Republiek Krim”“Universal-Avia”;NL;;;;128418;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;qabel kienet magħrufa bħala l-intrapriża tal-Istat “Universal -Avia”;MT;;;;128419;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Intrapriża Unitarja Statali tar-“Repubblika tal-Krimea”“Universal-Avia”;MT;;;;128420;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;anteriormente conhecida como empresa estatal “Universal-Avia”;PT;;;;128421;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Empresa Unitária Estatal da “República da Crimeia”“Universal-Avia”;PT;;;;128422;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;dawniej znane jako przedsiębiorstwo państwowe Uniwersal-Awia;PL;;;;128423;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;jednolite przedsiębiorstwo państwowe Republiki Krymu „Uniwersal-Awia”;PL;;;;128424;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;predtým známy ako štátny podnik „Universal-Avia“;SK;;;;128425;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Štátny unitárny podnik „Krymskej republiky“„Universal-Avia“;SK;;;;128426;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;cunoscută anterior drept întreprinderea de stat «Universal-Avia»;RO;;;;128427;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Întreprinderea unitară de stat a «Republicii Crimeea»«Universal-Avia»;RO;;;;128428;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;"entinen valtionyhtiö ""Universal-Avia""";FI;;;;128429;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;"""Krimin tasavallan"" omistama valtion unitaarinen yritys ""Universal-Avia""";FI;;;;128430;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;prej imenovano državno podjetje „Universal-Avia“;SL;;;;128431;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Državno unitarno podjetje „Republike Krim“„Universal-Avia“;SL;;;;128432;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;varasem nimi State enterprise „Universal-Avia“;ET;;;;128477;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;Simferopol;Aeroflotskaya street 5;;295021;;;NO;"WEB[https://universal-avia.ru/]\nPHONE[+7 (3652) 502-300; +7 (918) 699-1020]\nEMAIL[unavia_2014@mail.ru ]\n(ул. Аэрофлотская, дом 5, 295021, г. Симферополь)";00;UNKNOWN;2624;EN;ул. Аэрофлотская, дом 5, 295021, г. Симферополь;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7425;EU.4038.15;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1159102026742 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125038;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Resort “Nizhnyaya Oreanda”;;;;;18027;EN;formerly known as;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Санаторий “Нижняя Ореанда”;;;;;18028;EN;formerly known as;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Federal State Budgetary Enterprise “Sanatorium ‘Nizhnyaya Oreanda’” of the Administration of the President of the Russian Federation;EN;;;;108165;EN;Re-registered on 9 October 2014 as Federal State Budgetary Enterprise “Sanatorium Nizhnyaya Oreanda” of the Administration of the President of the Russian Federation (Федеральное государственное бюджетное учреждение “Санаторий ‘Нижняя Ореанда’ Управления делами Президента Российской Федерации”). Founder: The Administration of the President of the Russian Federation (Управление делами Президента Российской Федерации).;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;известно преди като курорт „Нижняя Ореанда“;BG;;;;128433;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Федерално държавно бюджетно предприятие „Санаториум „Нижняя Ореанда“ на администрацията на президента на Руската федерация;BG;;;;128434;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;dříve známa jako rekreační středisko „Nizhnyaya Oreanda“;CS;;;;128435;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Federální státní rozpočtová organizace „Sanatorium ‚Nizhnyaya Oreanda‘“ při Úřadu prezidenta Ruské federace;CS;;;;128436;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;antes conocida como Centro Turístico “Nizhnyaya Oreanda”;ES;;;;128437;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Empresa del Presupuesto Estatal Federal “Sanatorium ‘Nizhnyaya Oreanda’” de la administración del presidente de la Federación de Rusia;ES;;;;128438;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;vormals Kurort ‚Nizhnyaya Oreanda‘;DE;;;;128439;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Föderales staatseigenes Unternehmen ‚Kurort ‚Nizhnyaya Oreanda‘‘ der Verwaltung des Präsidenten der Russischen Föderation;DE;;;;128440;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;tidligere kendt som kurstedet »Nizhnyaya Oreanda«;DA;;;;128441;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Den Russiske Føderations præsidents administrations føderale statsejede budgetvirksomhed »Sanatorium »Nizhnyaya Oreanda««;DA;;;;128442;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;anciennement connue sous le nom de Complexe hôtelier “Nizhnyaya Oreanda”;FR;;;;128443;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Entreprise budgétaire de l’État fédéral “Sanatorium ‘Nizhnyaya Oreanda’” de l’administration du président de la Fédération de Russie;FR;;;;128444;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;παλαιότερα γνωστή ως θέρετρο “Nizhnyaya Oreanda”;EL;;;;128445;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Ομοσπονδιακή κρατική επιχείρηση με την επωνυμία “Sanatorium ‘Nizhnyaya Oreanda’” του Γραφείου του Προέδρου της Ρωσικής Ομοσπονδίας;EL;;;;128446;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;prethodno poznato kao ljetovalište „Nizhnyaya Oreanda”;HR;;;;128447;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Federalno državno proračunsko poduzeće „Sanatorij ‚Nizhnyaya Oreanda’” u okviru administracije predsjednika Ruske Federacije;HR;;;;128448;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;agrākais nosaukums – Resort “Nizhnyaya Oreanda”;LV;;;;128449;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Krievijas Federācijas prezidenta administrācijas federāls valsts budžeta uzņēmums “Sanatorium “Nizhnyaya Oreanda””;LV;;;;128450;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;già resort “Nizhnyaya Oreanda”;IT;;;;128451;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Impresa a partecipazione statale federale “Sanatorium Nizhnyaya Oreanda” facente capo all’amministrazione del presidente della Federazione russa;IT;;;;128452;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;qabel magħrufa bħala ċ-Ċentru “Nizhnyaya Oreanda”;MT;;;;128453;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;"Intrapriża Baġitarja tal-Istat Federali “Sanatorium “Nizhnyaya Oreanda”"" tal-Amministrazzjoni tal-President tal-Federazzjoni Russa";MT;;;;128454;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Nizsnyaja Oreanda Üdülő;HU;;;;128455;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;korábbi ismert neve: Resort „Nizhnyaya Oreanda”;HU;;;;128456;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;az Oroszországi Föderáció elnöki hivatalának „Nizsnyaja Oreanda Szanatórium” szövetségi költségvetési vállalata;HU;;;;128457;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;anksčiau žinoma kaip sanatorija „Nizhnyaya Oreanda“;LT;;;;128458;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Rusijos Federacijos prezidento administracijos federalinė valstybės biudžetinė įmonė „Sanatorium Nizhnyaya Oreanda“;LT;;;;128459;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;poprzednio znane jako ośrodek „Nizhnyaya Oreanda”;PL;;;;128460;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Federalne Państwowe Przedsiębiorstwo Budżetowe „Sanatorium Nizhnyaya Oreanda” administracji prezydenta Federacji Rosyjskiej;PL;;;;128461;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;voorheen bekend als Resort “Nizhnyaya Oreanda”;NL;;;;128462;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Federal State Budgetary Enterprise “Sanatorium “Nizhnyaya Oreanda”” van het kabinet van de president van de Russische Federatie;NL;;;;128463;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;predtým známy ako stredisko „Nižňaja Oreanda“;SK;;;;128464;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Štátny federálny rozpočtový úrad „Sanatórium Nižňaja Oreanda“ kancelárie prezidenta Ruskej federácie;SK;;;;128465;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;cunoscută anterior drept stațiunea «Nizhnyaya Oreanda»;RO;;;;128466;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Întreprinderea bugetară a statului federal «Sanatorium „Nizhnyaya Oreanda”» a administrației președintelui Federației Ruse;RO;;;;128467;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;anteriormente denominada Estância “Nizhnyaya Oreanda”;PT;;;;128468;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Empresa Orçamental do Estado Federal “Sanatorium Nizhnyaya Oreanda” da administração do presidente da Federação da Rússia;PT;;;;128469;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;"entinen Kylpylä ""Nižnaja Oreanda""";FI;;;;128470;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;"Venäjän federaation presidentin hallintoon kuuluva liittovaltion rahoittama yritys ""Sanatorium ’Nižnaja Oreanda’""";FI;;;;128471;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;prej imenovano Letovišče „Nižnjaja Oreanda“;SL;;;;128472;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Zvezno proračunsko podjetje „Zdravilišče Nižnjaja Oreanda“ urada predsednika Ruske federacije;SL;;;;128473;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;varasema nimega Resort „Nizhnyaya Oreanda“;ET;;;;128474;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;ar a dtugtaí Resort ‘Nizhnyaya Oreanda’;GA;;;;128475;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;Yalta;Resort “Nizhnyaya Oreanda”;;298658;;Oreanda, House 12;NO;"WEB[www.oreanda-resort.ru]\nPHONE[+7 (978) 944 83 00; +7 (978) 944 83 30]\nEMAIL[marketing@oreanda-resort.ru ]\n(Санаторий ‘Нижняя Ореанда’, 298658, г. Ялта, пгт. Ореанда, дом 12, Украина)";UA;UKRAINE;2626;EN;Санаторий ‘Нижняя Ореанда’, 298658, г. Ялта, пгт. Ореанда, дом 12, Украина;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7426;EU.3485.81;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1149102054221 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125021;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;7427;EU.4039.77;;;25.7.2014;(Designation details: 25.7.2014);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Crimean Republican Enterprise ‘Azov distillery plant’;;;;;18029;EN;Bankruptcy proceedings concluded.;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7427;EU.4039.77;;;25.7.2014;(Designation details: 25.7.2014);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Крымское республиканское предприятие ‘Азовский ликероводочный Завод’;;;;;18030;EN;;amendment;council;2014-07-25;2014-07-25;810/2014 (OJ L221);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_221_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7427;EU.4039.77;;;25.7.2014;(Designation details: 25.7.2014);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Azovsky likerovodochny zavod;;;;;18031;EN;;amendment;council;2014-07-25;2014-07-25;810/2014 (OJ L221);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_221_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7427;EU.4039.77;;;25.7.2014;(Designation details: 25.7.2014);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;Azovskoye, Jankoysky district;40 Zeleznodorozhnaya str.;;296178;;;NO;(ул. Железнодорожная, 40, 296178 пгт. Азовское, Джанкойский район, Украина\n\ncode: 01271681);UA;UKRAINE;2628;EN;ул. Железнодорожная, 40, 296178 пгт. Азовское, Джанкойский район, Украина\n\ncode: 01271681;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Federal State Budgetary Enterprise ‘Production-Agrarian Union “Massandra”’ of the Administration of the President of the Russian Federation;EN;;;;108166;EN;formerly known as;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Федеральное государственное унитарное предприятие ‘Производственно-аграрное объединение “Массандра” Управления делами Президента Российской Федерации’;;;;;120946;EN;formerly known as;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Государственное унитарное предприятие Республики Крым “Производственно-аграрное объединение ‘Массандра’”;;;;;120948;EN;formerly known as;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;State Unitary Enterprise of the “Republic of Crimea”“Production-Agrarian Union ‘Massandra’”;;;;;120949;EN;formerly known as;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;State concern “National Association of producers ‘Massandra’”;;;;;120950;EN;formerly known as;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Национальное производственно аграрное объединение “Массандра”;;;;;120951;EN;formerly known as;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Nacionalnoye proizvodstvenno agrarnoye obyedinenye “Massandra”;;;;;120952;EN;formerly known as;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Aкционерное общество “Производственно-аграрное объединение ‘Массандра’”;;;;;127703;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Joint-stock company “Production-Agrarian Union ‘Massandra’”;;;;;127704;EN;Re-registered on 1 August 2014 Federal State Budgetary Enterprise “Proizvodstvenno agrarnoye obyedinenye ‘Massandra’” of the Administration of the President of the Russian Federation (Федеральное государственное унитарное предприятие “Производственно-аграрное объединение ‘Массандра’ Управления делами Президента Российской Федерации”). Founder: The Administration of the President of the Russian Federation (Управление делами Президента Российской Федерации). \n\nRe-registered on 1 April 2019 as State Unitary Enterprise of the “Republic of Crimea”“Production Agrarian Union ‘Massandra’”. Re-registered on 1 October 2020 as joint-stock company “Production-Agrarian Union ‘Massandra’”.;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;„Национално производствено-аграрно обединение „Масандра“;BG;;;;128478;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Федерално държавно бюджетно предприятие „Производствено-аграрно обединение „Масандра“ на администрацията на президента на Руската федерация;BG;;;;128479;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;известно преди като Държавно единно предприятие на „Република Крим“ „Производствено-аграрно обединение „Масандра“;BG;;;;128480;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Акционерно дружество „Производствено-аграрно обединение „Масандра“;BG;;;;128481;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Empresa estatal “Asociación Nacional de Productores ‘Massandra’”;ES;;;;128482;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Empresa del Presupuesto Estatal Federal “Unión de Producción y Agraria ‘Massandra’”, de la administración del presidente de la Federación de Rusia;ES;;;;128483;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;antes conocida como Empresa Unitaria Estatal de la “República de Crimea”“Unión de Producción y Agraria ‘Massandra’”;ES;;;;128484;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Sociedad anónima “Unión de Producción y Agraria ‘Massandra’”;ES;;;;128485;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;státní koncern „National Association of producers ‚Massandra‘ (Národní sdružení producentů ‚Massandra‘)“;CS;;;;128486;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Federální státní rozpočtová organizace „Production-Agrarian Union ‚Massandra‘ “ při Úřadu prezidenta Ruské federace;CS;;;;128487;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;dříve známá jako Státní jednotný podnik „Republiky Krym“„Production-Agrarian Union ‚Massandra‘“;CS;;;;128488;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Akciová společnost „Production-Agrarian Union ‚Massandra‘“;CS;;;;128489;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Statsejet virksomhed »National Association of producers »Massandra««;DA;;;;128490;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Den Russiske Føderations præsidents administrations føderale statsejede budgetvirksomhed »Production Agrarian Union »Massandra««;DA;;;;128491;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;tidligere kendt som »Republikken Krims« statsejede virksomhed »Production-Agrarian Union »Massandra««;DA;;;;128492;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Aktieselskabet »Production-Agrarian Union »Massandra««;DA;;;;128493;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Staatlicher Konzern ‚Nationale Erzeugervereinigung ‚Massandra‘‘;DE;;;;128494;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Föderales staatseigenes Unternehmen ‚Landwirtschaftliche Produktionsvereinigung ‚Massandra‘‘ der Verwaltung des Präsidenten der Russischen Föderation;DE;;;;128495;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;vormals Staatliches Einheitsunternehmen der ‚Republik Krim‘‚Landwirtschaftliche Produktionsvereinigung ‚Massandra‘‘;DE;;;;128496;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Aktiengesellschaft ‚Landwirtschaftliche Produktionsvereinigung ‚Massandra‘‘;DE;;;;128497;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Varasema nimega State Unitary Enterprise of the „Republic of Crimea“„Production-Agrarian Union „Massandra““;ET;;;;128498;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Κρατικών συμφερόντων “Εθνική Ένωση Παραγωγών ‘Massandra’”;EL;;;;128499;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Ομοσπονδιακή κρατική επιχείρηση “Παραγωγική-Αγροτική Ένωση ‘Massandra’” του Γραφείου του Προέδρου της Ρωσικής Ομοσπονδίας;EL;;;;128500;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;παλαιότερα γνωστή ως κρατική ενιαία επιχείρηση της “Δημοκρατίας της Κριμαίας” με την επωνυμία “Παραγωγική-Αγροτική Ένωση ‘Massandra’”;EL;;;;128501;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Ανώνυμη Εταιρεία “Παραγωγική-Αγροτική Ένωση ‘Massandra’”;EL;;;;128502;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Entreprise publique “Association nationale de producteurs de ‘Massandra’”;FR;;;;128503;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Entreprise budgétaire de l’État fédéral “Production-Agrarian Union ‘Massandra’” de l’administration du président de la Fédération de Russie;FR;;;;128504;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;anciennement connue sous le nom d’Entreprise unitaire d’État de la “République de Crimée”“Union de production agraire de ‘Massandra’”;FR;;;;128505;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Société anonyme “Production-Agrarian Union ‘Massandra’” (“Union de production agraire de ‘Massandra’”);FR;;;;128506;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Gnóthas Stáit ‘National Association of producers ‘Massandra’;GA;;;;128507;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;"State Unitary Enterprise of the ‘Republic of Crimea’ ‘Production-Agrarian Union ‘Massandra"" dá ngairtí tráth";GA;;;;128508;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Cuideachta comhstoic ‘Production-Agrarian Union ‘Massandra’’;GA;;;;128509;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Državni koncern „Nacionalna udruga proizvođača ‚Massandra’”;HR;;;;128510;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Federalno državno proračunsko poduzeće „Proizvodno-poljoprivredna unija ‚Massandra’” u okviru administracije predsjednika Ruske Federacije;HR;;;;128511;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;ranije poznato kao državno unitarno poduzeće „Republike Krima”„Proizvodno-poljoprivredna unija ‚Massandra’”;HR;;;;128512;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Dioničko društvo „Proizvodno-poljoprivredna unija ‚Massandra’”;HR;;;;128513;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Consorzio statale “Associazione nazionale di produttori ‘Massandra’”;IT;;;;128514;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Impresa a partecipazione statale federale “Unione dei produttori e agricoltori ‘Massandra’” facente capo all’amministrazione del presidente della Federazione russa;IT;;;;128515;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;già impresa unitaria statale della “Repubblica di Crimea”“Unione dei produttori e agricoltori ‘Massandra’”;IT;;;;128516;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Joint-stock company “Unione dei produttori e agricoltori ‘Massandra’”;IT;;;;128517;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Valsts koncerns “National Association of producers “Massandra””;LV;;;;128518;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Federāls Krievijas Federācijas prezidenta administrācijas valsts budžeta uzņēmums “Production-Agrarian Union “Massandra””;LV;;;;128519;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;agrākais nosaukums – “Krimas Republikas” valsts unitārs uzņēmums “Production-Agrarian Union “Massandra””;LV;;;;128520;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Akciju sabiedrība “Production-Agrarian Union “Massandra””;LV;;;;128521;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Valstybės koncernas „National Association of producers „Massandra““;LT;;;;128522;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Rusijos Federacijos prezidento administracijos federalinė valstybės biudžetinė įmonė „Production-Agrarian Union „Massandra““;LT;;;;128523;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;anksčiau žinoma kaip „Krymo Respublikos“ valstybės unitarinė įmonė „Production-Agrarian Union „Massandra““;LT;;;;128524;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Akcinė bendrovė „Production-Agrarian Union „Massandra““;LT;;;;128525;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;„»Massandra« Nemzeti Termelőszövetkezet” állami konszern;HU;;;;128526;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Az Oroszországi Föderáció elnöki adminisztrációjának „»Massandra« Mezőgazdasági Termelőszövetkezet” szövetségi költségvetési vállalata;HU;;;;128527;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;korábbi elnevezése: „State Unitary Enterprise of the Republic of Crimea””Production-Agrarian Union »Massandra«” (a Krími Köztársaság „»Massandra« Mezőgazdasági Termelőszövetkezet” szövetségi állami vállalata;HU;;;;128528;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;„»Massandra« Mezőgazdasági Termelőszövetkezet” részvénytársaság;HU;;;;128529;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Entità statali “Assoċjazzjoni Nazzjonali ta’ produtturi “Massandra””;MT;;;;128530;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;"Intrapriża Baġitarja tal-Istat Federali “Unjoni Agrarja tal-Produzzjoni “Massandra”"" tal-Amministrazzjoni tal-President tal-Federazzjoni Russa";MT;;;;128531;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;qabel kienet magħrufa bħala Intrapriża Unitarja Statali tar-“Repubblika tal-Krimea”“Unjoni Agrarja tal-Produzzjoni “Massandra””;MT;;;;128532;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Kumpannija b’ishma konġunti “Unjoni Agrarja tal-Produzzjoni “Massandra””;MT;;;;128533;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Federal State Budgetary Enterprise “Production-Agrarian Union “Massandra”” van het kabinet van de president van de Russische Federatie;NL;;;;128534;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;voorheen bekend als State Unitary Enterprise van de “Republiek Krim”“Production-Agrarian Union “Massandra””;NL;;;;128535;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Koncern państwowy „Krajowe Stowarzyszenie Producentów »Massandra«”;PL;;;;128536;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;federalne państwowe przedsiębiorstwo budżetowe „Krajowe Stowarzyszenie Produkcyjno-Rolne »Massandra«” administracji prezydenta Federacji Rosyjskiej;PL;;;;128537;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;dawniej znane jako State Unitary Enterprise of the „Republic of Crimea”„Production-Agrarian Union »Massandra«” (jednolite przedsiębiorstwo państwowe Republiki Krymu „Stowarzyszenie Produkcyjno-Rolne »Massandra«”);PL;;;;128538;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Spółka akcyjna „Production-Agrarian Union »Massandra«” („Stowarzyszenie Produkcyjno-Rolne »Massandra«”);PL;;;;128539;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Empresa estatal “Associação Nacional de produtores ‘Massandra’”;PT;;;;128540;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Empresa Orçamental do Estado Federal (Federal State Budgetary Enterprise) “União de Produção Agrária ‘Massandra’” da administração do presidente da Federação da Rússia;PT;;;;128541;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;"anteriormente conhecida por Empresa Unitária Estatal da “República da Crimeia”, “União de Produção Agrária ‘Massandra’""";PT;;;;128542;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Sociedade por ações “União de Produção Agrária ‘Massandra’”;PT;;;;128543;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Concernul de stat «Asociația națională de producători „Massandra”»;RO;;;;128544;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Întreprinderea bugetară a statului federal «Uniunea de producție-agrară „Massandra”» a administrației președintelui Federației Ruse;RO;;;;128545;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;cunoscută anterior drept Întreprinderea unitară de stat a «Republicii Crimeea»«Uniunea de producție-agrară „Massandra”»;RO;;;;128546;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Societatea pe acțiuni «Uniunea de producție-agrară „Massandra”»;RO;;;;128547;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;štátny koncern „Národné združenie výrobcov ‚Massandra‘“;SK;;;;128548;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Štátny federálny rozpočtový podnik „Výrobno-agrárny zväz ‚Massandra‘“ kancelárie prezidenta Ruskej federácie;SK;;;;128549;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;predtým známa ako Štátny unitárny podnik „Krymskej republiky“„Výrobno-agrárny zväz ‚Massandra‘“;SK;;;;128550;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Akciová spoločnosť „Výrobno-agrárny zväz ‚Massandra‘“;SK;;;;128551;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;državni koncern „Državno združenje proizvajalcev ‚Massandra‘“;SL;;;;128552;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Zvezno proračunsko podjetje „Proizvodno-kmetijsko združenje ‚Massandra‘“ urada predsednika Ruske federacije;SL;;;;128553;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;prej imenovano državno unitarno podjetje „Republike Krim“„Proizvodno-kmetijsko združenje ‚Massandra“;SL;;;;128554;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Delniška družba „Proizvodno-kmetijsko združenje ‚Massandra‘“;SL;;;;128555;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;"Valtionkonserni ""Kansallinen maataloustuottajien organisaatio ’Massandra’""";FI;;;;128556;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;"Venäjän federaation presidentin hallintoon kuuluva liittovaltion rahoittama yritys ""Maataloustuottajien liitto ’Massandra’""";FI;;;;128557;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;"entinen ""Krimin tasavallan"" omistama valtion unitaarinen yritys ""Maataloustuottajien liitto ’Massandra’""";FI;;;;128558;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;"Osakeyhtiö ""Maataloustuottajien liitto ’Massandra’""";FI;;;;128559;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Акционерно дружество „Производствено-аграрно обединение „Масандра“;BG;;;;131405;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;Yalta;Massandra, str. Vinodela Egorova 9;;298650;Crimea;;NO;"WEB[http://massandra.su]\nPHONE[+7 978 936 75 04; +7 3654 23 31 96; +7 3654 26 16 83 ]\n(298650, Крым, г. Ялта, пгт. Массандра, ул. Винодела Егорова, д. 9)";00;UNKNOWN;2630;EN;298650, Крым, г. Ялта, пгт. Массандра, ул. Винодела Егорова, д. 9;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7428;EU.4050.6;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1209100012648 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125022;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;'State enterprise “Magarach” of the national institute of wine';;;;;18035;EN;formerly known as;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Государственное предприятие Агрофирма ‘Магарач’ Национального института винограда и вина ‘Магарач’;;;;;18036;EN;;amendment;council;2014-07-25;2014-07-25;810/2014 (OJ L221);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_221_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Gosudarstvenoye predpriyatiye Agrofirma ‘Magarach’ nacionalnogo instituta vinograda i vina ‘Magarach’;;;;;18037;EN;formerly known as;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;State Unitary Enterprise of the Republic of Crimea ‘National Institute of Wine “Magarach”;EN;;;;108167;EN;formerly known as;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Federal state budget institution for science and research ‘All-Russia national scientific research institute for wine growing and wine making “Magarach” Russian Academy of Sciences’;;;;;114404;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Федеральное государственное бюджетное учреждение науки ‘Всероссийский национальный научно-исследовательский институт виноградарства и виноделия “Магарач” РАН’;;;;;114405;EN;;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Федерален държавен бюджетен научноизследователски институт „Общоруски национален научноизследователски институт по лозарство и винарство „Магарач“ Руска академия на науките“;BG;;;;137486;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;„Държавно предприятие „Магарач“ към Националния институт по лозарство и винарство;BG;;;;137487;EN;Известно преди като;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Държавно единно предприятие на „Република Крим“ „Национален институт по лозарство и винарство „Магарач“;BG;;;;137488;EN;Известно преди като;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;“Empresa Estatal ‘Magarach’ del Instituto Nacional del Vino”;ES;;;;137489;EN;antes conocida como;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Empresa Unitaria Estatal de la “República de Crimea”“Instituto Nacional del Vino ‘Magarach’”;ES;;;;137490;EN;antes conocida como;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Institución del presupuesto estatal federal para la ciencia y la investigación “Instituto Nacional Panruso de Investigación Científica para la viticultura y la vinificación” Magarach “de la Academia de Ciencias de Rusia”;ES;;;;137491;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;„State enterprise „Magarach“ of the national institute of wine“ („Státní podnik Agrofirma „Magarač“ Národního ústavu ústav vinohradnictví a vinařství „Magarač“ “;CS;;;;137492;EN;Dříve znám jako;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;státní jednotný podnik „Republiky Krym“„National Institute of Wine „Magarach“ “;CS;;;;137493;EN;Dříve znám jako;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Federální státní rozpočtový ústav pro vědu a výzkum „All-Russian national scientific research institute for wine growing and wine making „Magarach“ (Všeruský národní vědeckovýzkumný ústav vinohradnictví a vinařství „Magarač“) Ruské akademie věd“;CS;;;;137494;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;»State enterprise »Magarach« of the national institute of wine«;DA;;;;137495;EN;Tidligere kendt som;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;»Republikken Krims« statsejede virksomhed »National Institute of Wine »Magarach««;DA;;;;137496;EN;Tidligere kendt som;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Den føderale statsejede budgetinstitution for videnskab og forskning »All-Russia national scientific research institute for wine growing and wine making, Magarach«, Det Russiske Videnskabsakademi;DA;;;;137497;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;„Staatliches Unternehmen ‚Magarach‘ des nationalen Weininstituts“;DE;;;;137498;EN;vormals;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Staatliches Einheitsunternehmen der „Republik Krim“„Nationales Weininstitut ‚Magarach‘“;DE;;;;137499;EN;vormals;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Föderale staatlich finanzierte Wissenschaftseinrichtung „Allrussisches nationales wissenschaftliches Forschungsinstitut für Weinbau und Weinherstellung ‚Magarach‘ Russische Akademie der Wissenschaften“;DE;;;;137500;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;“Κρατική επιχείρηση ‘Magarach’ του εθνικού ινστιτούτου οίνου”;EL;;;;137501;EN;Παλαιότερα γνωστή ως;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;κρατική ενιαία επιχείρηση της “Δημοκρατίας της Κριμαίας”“Εθνικό ινστιτούτο οίνου ‘Magarach’”;EL;;;;137502;EN;Παλαιότερα γνωστή ως;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Ομοσπονδιακός κρατικά χρηματοδοτούμενος φορέας επιστημών και έρευνας “Παν-ρωσικό εθνικό επιστημονικό ινστιτούτο έρευνας για την αμπελοκαλλιέργεια και την οινοποιία ‘Magarach’ Ρωσική Ακαδημία Επιστημών”;EL;;;;137503;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;“Entreprise publique ‘Magarach’ de l’Institut national du vin”;FR;;;;137504;EN;Anciennement connue sous le nom d’;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;entreprise unitaire d’État de la “République de Crimée”“Institut national du vin ‘Magarach’”;FR;;;;137505;EN;Anciennement connue sous le nom d’;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Institution budgétaire de l’État fédéral pour la science et la recherche “Institut national panrusse de recherche scientifique pour la viticulture et la vinification de ‘Magarach’ de l’Académie des sciences de Russie”;FR;;;;137506;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;‘State enterprise ‘Magarach’ of the national institute of wine’ tráth;GA;;;;137507;EN;Ar a dtugtaí an;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;‘State Unitary Enterprise of the ‘Republic of Crimea’‘National Institute of Wine ‘Magarach’ tráth’;GA;;;;137508;EN;Ar a dtugtaí an;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;An institiúid bhuiséadach stáit fheidearálach don eolaíocht agus taighde darb ainm ‘All- Russia national scientific research institute for wine growing and wine making ‘Magarach’ Russian Academy of Sciences’;GA;;;;137509;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;“Impresa statale Magarach dell’istituto enologico nazionale”;IT;;;;137510;EN;Già;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;impresa unitaria statale della “Repubblica di Crimea”“Istituto enologico nazionale ‘Magarach’”;IT;;;;137511;EN;Già;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Istituzione a partecipazione statale federale per la scienza e la ricerca “Istituto nazionale panrusso di ricerca scientifica per la viticoltura e vinificazione ‘Magarach’ — Accademia delle Scienze russa”;IT;;;;137512;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;„Državno poduzeće ‚Magarach’ nacionalnog instituta za vino”;HR;;;;137513;EN;Ranije poznato kao;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Državno unitarno poduzeće „Republike Krima””Nacionalni institut za vino ‚Magarach’”;HR;;;;137514;EN;Ranije poznato kao;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Federalna državna proračunska institucija za znanost i istraživanja „Sveruski nacionalni znanstveni institut za vinogradarstvo i proizvodnju vina ‚Magarach’ Ruske akademije znanosti”;HR;;;;137515;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;valstybės įmonė „Nacionalinis vyno institutas „Magarach““;LT;;;;137516;EN;Anksčiau žinoma kaip;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;„Krymo Respublikos“ valstybės unitarinė įmonė „Nacionalinis vyno institutas „Magarach““;LT;;;;137517;EN;Anksčiau žinoma kaip;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Federalinė valstybės biudžetinė mokslo ir mokslinių tyrimų įstaiga „Visos Rusijos nacionalinis mokslinių tyrimų vynuogių auginimo ir vyno gamybos srityje institutas „Magarach“, Rusijos mokslų akademija“;LT;;;;137518;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Krimas Republikas” valsts unitārs uzņēmums “National Institute of Wine “Magarach””;LV;;;;137519;EN;Agrākais nosaukums;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Federāla valsts budžeta zinātnes un pētniecības iestāde “All-Russia national scientific research institute for wine growing and wine making “Magarach” Russian Academy of Sciences”;LV;;;;137520;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;„Magaracs” Nemzeti Szőlészeti és Borászati Intézet, állami mezőgazdasági vállalat;HU;;;;137521;EN;Korábbi elnevezése;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;„Magaracs” Nemzeti Borintézet, a Krími Köztársaság állami egységes vállalata;HU;;;;137522;EN;Korábbi elnevezése;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Az Orosz Tudományos Akadémia „Magaracs” Összoroszországi Szőlészeti és Borászati Tudományos Kutatóintézete, szövetségi állami tudományos és kutatóintézet;HU;;;;137523;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;“State Enterprise “Magarach” van het Nationaal Wijninstituut”;NL;;;;137524;EN;Voorheen bekend als;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;State Unitary Enterprise van de “Republiek Krim”“Nationaal Wijninstituut “Magarach””;NL;;;;137525;EN;Voorheen bekend als;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Instituut voor het federaal staatsbudget voor wetenschap en onderzoek “All- Russia national scientific research institute for wine growing and wine making “Magarach” Russian Academy of Sciences”;NL;;;;137526;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;“Intrapriża statali ‘Magarach’ tal-istitut nazzjonali tal-inbid”;MT;;;;137527;EN;Qabel kienet magħrufa bħala;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Intrapriża Unitarja Statali tar-“Repubblika tal-Krimea” l-“Istitut Nazzjonali tal-Inbid ‘Magarach’”;MT;;;;137528;EN;Qabel kienet magħrufa bħala;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Istituzzjoni tal-baġit tal-Istat Federali għax-xjenza u r-riċerka “Istituzzjoni nazzjonali ta’ riċerka xjentifika tar-Russja għall-vitikultura u l-produzzjoni tal-inbid, l-Akkademja tax-Xjenzi Russa ‘Magarach’”;MT;;;;137529;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;întreprinderea de stat «Magarach» a institutului național de vinificație;RO;;;;137530;EN;Cunoscută anterior drept;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;întreprinderea unitară de stat a «Republicii Crimeea» Institutul național de vinificație «Magarach»;RO;;;;137531;EN;Cunoscută anterior drept;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Instituția bugetară de știință și cercetare a statului federal «All-Russia national scientific research institute for wine growing and wine making „Magarach” Russian Academy of Sciences»;RO;;;;137532;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Institutul Național Panrus de Cercetări Științifice pentru Viticultură și Vinificație «Magarach», Academia Rusă de Științe;RO;;;;137533;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;«Empresa Pública «Magarach» do Instituto Nacional do Vinho»;PT;;;;137534;EN;Anteriormente denominada;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Empresa Pública Unitária da «República da Crimeia», Instituto Nacional do vinho «Magarach»;PT;;;;137535;EN;Anteriormente denominada;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Instituição orçamental do Estado federal para a ciência e investigação «Instituto nacional panrusso de investigação científica em viticultura e vinificação «Magarach», da Academia Russa de Ciências»;PT;;;;137536;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;»Państwowe przedsiębiorstwo ‘Magaracz’ Krajowy Instytut Wina«;PL;;;;137537;EN;Dawniej znany jako;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;jednolite przedsiębiorstwo państwowe »Republiki Krymu«»Krajowy Instytut Wina ‘Magaracz’;PL;;;;137538;EN;Dawniej znany jako;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Federalna budżetowa instytucja naukowo-badawcza »Ogólnorosyjski narodowy naukowo-badawczy instytut uprawy winorośli i produkcji wina ‘Magaracz’ przy Rosyjskiej Akademii Nauk«;PL;;;;137539;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;‚Državno podjetje ‚Magarač‘ Državnega vinogradniškega inštituta‘;SL;;;;137540;EN;Prej imenovano;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;državno unitarno podjetje ‚Republike Krim‘‚Državni vinogradniški inštitut ‚Magarač‘‘;SL;;;;137541;EN;Prej imenovano;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Zvezna proračunska institucija za znanost in raziskave ‚Vseruski nacionalni znanstveno-raziskovalni inštitut za vinogradništvo in pridelavo vina ‚Magarač‘ Ruske akademije za znanost‘;SL;;;;137542;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;„štátny podnik ‚Magarač‘ Národného ústavu pre vinohradníctvo a víno“;SK;;;;137543;EN;Predtým známy ako;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;„štátny unitárny podnik Krymskej republiky Národný ústav pre vinohradníctvo a víno ‚Magarač‘“;SK;;;;137544;EN;Predtým známy ako;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Štátny federálny rozpočtový ústav pre vedu a výskum „Všeruský národný vedecko-výskumný ústav pre vinohradníctvo a víno ‚Magarač‘ Ruskej akadémie vied“;SK;;;;137545;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;”Republiken Krims” statliga företag ”National Institute of Wine ’Magarach’”;SV;;;;137546;EN;Tidigare känt som;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Federalt statligt budgetinstitut för vetenskap och forskning ”All-Russia national scientific research institute for wine growing and wine making ’Magarach’ Russian Academy of Sciences”;SV;;;;137547;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;”Kansallisen viini-instituutin alainen valtionyhtiö ’Magaratš’”;FI;;;;137548;EN;Entinen;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;”Krimin tasavallan” omistama valtion unitaarinen yritys ”Kansallinen viini-instituutti ’Magaratš’”;FI;;;;137549;EN;Entinen;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Liittovaltion rahoittama tiede- ja tutkimuslaitos ”Venäjän kansallinen viininviljelyn ja viininvalmistuksen tieteellinen tutkimuslaitos ’Magaratš’, Venäjän tiedeakatemia”;FI;;;;137550;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;Yalta;Kirov Street 31;;298600;Crimea;;NO;WEB[www.magarach-institut.ru]\nPHONE[+7(3654)32-55-91]\nEMAIL[priemnaya@magarach-institut.ru ]\n(298600, ул. Кирова, 31, г. Ялта, Крым, Украина);UA;UKRAINE;122888;EN;298600, ул. Кирова, 31, г. Ялта, Крым, Украина;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7429;EU.3573.18;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1159102130857 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;124263;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;"Joint-stock company 'Sparkling wine plant ""Novy Svet""'";;;;;18038;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Aкционерное общество ‘Завод шампанских вин “Новый Свет”’;;;;;18039;EN;;amendment;council;2018-03-13;2018-03-14;2018/388 (OJ L69);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0388&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Gosudarstvennoye unitarnoye predpriyatiye Respubliki Krym ‘Zavod shampanskykh vin “Novy Svet”’ and as State enterprise sparkling wine plant ‘Novy Svet’;;;;;18040;EN;;amendment;council;2018-03-13;2018-03-14;2018/388 (OJ L69);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0388&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;"State unitary enterprise of the 'Republic of Crimea' 'Sparkling wine plant ""Novy Svet""'";EN;;;;108168;EN;formerly known as;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Государственное унитарное предприятие Республики Крым ‘Завод шампанских вин “Новый Свет”’;;;;;114412;EN;;amendment;council;2018-03-13;2018-03-14;2018/388 (OJ L69);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0388&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Государственное предприятие Завод шампанских вин ‘Новый свет’ (Gosudarstvenoye predpriyatiye Zavod shampanskykh vin ‘Novy Svet’);;;;;115874;EN;;amendment;council;2018-03-13;2018-03-14;2018/388 (OJ L69);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0388&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;státní jednotný podnik „Republiky Krym“„ ‚Novy Svet‘, výrobce šumivých vín“;CS;;;;137551;EN;Dříve znám jako;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Akciová společnost „ ‚Novy Svet‘, výrobce šumivých vín“;CS;;;;137552;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Empresa Unitaria Estatal de la “República de Crimea”“Planta de vino espumoso ‘Novy Svet’”;ES;;;;137553;EN;Conocida anteriormente como;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Sociedad anónima “Planta de vino espumoso ‘Novy Svet’”;ES;;;;137554;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Акционерно дружество „Завод за шампанизирани вина „Новый свет“;BG;;;;137555;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Κρατική ενιαία επιχείρηση της “Δημοκρατίας της Κριμαίας”“Μονάδα αφρώδους οίνου ‘Novy Svet’”;EL;;;;137556;EN;Προηγουμένως γνωστή ως;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Εταιρία κατά μετοχές “Μονάδα αφρώδους οίνου ‘Novy Svet’”;EL;;;;137557;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Staatliches Einheitsunternehmen der „Republik Krim“„Schaumweinhersteller ‚Novy Svet‘“;DE;;;;137558;EN;Vormals;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Aktiengesellschaft „Schaumweinhersteller ‚Novy Svet‘“;DE;;;;137559;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;»Republikken Krims« statsejede virksomhed »Sparkling wine plant »Novy Svet««;DA;;;;137560;EN;Tidligere kendt som;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Aktieselskabet »Sparkling wine plant »Novy Svet««;DA;;;;137561;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;impresa unitaria statale della “Repubblica di Crimea”“impianto di vino spumante ‘Novy Svet’”;IT;;;;137562;EN;Già;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;državno unitarno poduzeće „Republike Krima”„Tvornica pjenušca ‚Novy Svet’”;HR;;;;137563;EN;Ranije poznato kao;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Dioničko društvo „Tvornica pjenušca ‚Novy Svet’”;HR;;;;137564;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Cuideachta chomhstoic ‘Sparkling wine plant ‘Novy Svet’;GA;;;;137565;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;entreprise unitaire d’État de la “République de Crimée” “Entreprise de vin mousseux ‘Novy Svet’;FR;;;;137566;EN;Anciennement connue sous le nom d’;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Société anonyme “Entreprise de vin mousseux ‘Novy Svet’”;FR;;;;137567;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Intrapriża statali unitarja tar-“Repubblika tal-Krimea” l-“Impjant tal-inbid effervexxenti ‘Novy Svet’”;MT;;;;137568;EN;Qabel kienet magħrufa bħala;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Kumpannija b’ishma konġunti “Impjant tal-inbid effervexxenti ‘Novy Svet’”;MT;;;;137569;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;„Novij Szvet” Pezsgőgyár, a „Krími Köztársaság” állami egységes vállalata;HU;;;;137570;EN;Korábbi elnevezése;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;„Novij Szvet” Pezsgőgyár részvénytársaság;HU;;;;137571;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;„Krymo Respublikos“ valstybės unitarinė įmonė „Putojančio vyno gamykla „Novy Svet““;LT;;;;137572;EN;Anksčiau žinoma kaip;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Akcinė bendrovė „Putojančio vyno gamykla „Novy Svet““;LT;;;;137573;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;“Krimas Republikas” valsts unitārs uzņēmums “Sparkling wine plant “Novy Svet””;LV;;;;137574;EN;Agrāk zināms kā;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;empresa unitária estatal da «República da Crimeia», Caves de vinhos espumantes «Novy Svet»;PT;;;;137575;EN;Anteriormente conhecida como;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Sociedade por ações Caves de vinhos espumantes «Novy Svet»;PT;;;;137576;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;jednolite przedsiębiorstwo państwowe »Republiki Krymu«»Fabryka Wina Musującego ‘Nowyj Swiet’«;PL;;;;137577;EN;Dawniej znane jako;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Spółka akcyjna »Fabryka Wina Musującego ‘Nowyj Swiet’«;PL;;;;137578;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;tate unitary enterprise van de “Republiek Krim”“Schuimwijnfabriek “Novy Svet””;NL;;;;137579;EN;Voorheen bekend als;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Aandelenvennootschap “Schuimwijnfabriek “Novy Svet”;NL;;;;137580;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;”Republiken Krims” statliga företag ”Sparkling wine plant ’Novy Svet’”;SV;;;;137581;EN;Tidigare känt som;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Aktiebolaget ”Sparkling wine plant ’Novy Svet’”;SV;;;;137582;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;”Krimin tasavallan” omistama valtion unitaarinen yritys ”’Novy Svet’ -kuohuviinitehdas”;FI;;;;137583;EN;Entinen;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Osakeyhtiö ”’Novy Svet’ -kuohuviinitehdas”;FI;;;;137584;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;državno unitarno podjetje ‚Republike Krim‘‚Tovarna penečega vina ‚Novij svet‘‘;SL;;;;137585;EN;Prej imenovano;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Delniška družba ‚Tovarna penečega vina ‚Novij svet‘‘;SL;;;;137586;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Štátny unitárny podnik „Krymskej republiky“ – „Závod šumivého vína ‚Novy Svet‘“;SK;;;;137587;EN;Predtým známy ako;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Akciová spoločnosť – „Závod šumivého vína ‚Novy Svet‘“;SK;;;;137588;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;întreprindere unitară de stat a „Republicii Crimeea» purtând denumirea «Fabrica de vin spumos „Novy Svet”»;RO;;;;137589;EN;Cunoscută anterior ca o;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Societatea pe acțiuni «Fabrica de vin spumos „Novy Svet”»;RO;;;;137590;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;Sudak, Novy Svet;str. Shalapina 1;;298032;Crimea;;NO;"WEB[https://nsvet-crimea.ru/]\nPHONE[+7-(365) 663-35-00; +7-(365) 663-35-22; +7-978-914- 00-10]";00;UNKNOWN;2634;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;г. Судак, пгт. Новый Свет;ул. Шаляпина, д. 1;;298032;;Крым;NO;;00;UNKNOWN;2635;EN;;amendment;council;2018-03-13;2018-03-14;2018/388 (OJ L69);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0388&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7430;EU.4051.68;;2014-07-25;;(Date of UN designation: 2014-07-25);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1179102021460 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125023;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;7431;EU.177.59;;2014-07-30;;(Date of UN designation: 2014-07-30)\n(Date of listing: 30.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;GROMOV;Alexey;Alexeyevich;Alexey Alexeyevich GROMOV;;M;;First Deputy Chief of Staff of the Presidential Administration.;18042;EN;;amendment;council;2014-07-30;2014-07-30;826/2014 (OJ L226);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_226_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7431;EU.177.59;;2014-07-30;;(Date of UN designation: 2014-07-30)\n(Date of listing: 30.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;ГРОМОВ;Алексей;Алексеевич;Алексей Алексеевич ГРОМОВ;;M;;;18043;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7431;EU.177.59;;2014-07-30;;(Date of UN designation: 2014-07-30)\n(Date of listing: 30.7.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-05-31;31;5;1960;;;NO;GREGORIAN;;;;Zagorsk (Sergiev Posad);RU;RUSSIAN FEDERATION;2176;EN;;amendment;council;2014-07-30;2014-07-30;826/2014 (OJ L226);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_226_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7432;EU.3693.82;;2014-07-30;Date of listing: 30/07/2014;(Date of UN designation: 2014-07-30)\n(Designation details: Date of listing: 30/07/2014)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;TCHIGRINA;Oksana;;Oksana TCHIGRINA;;F;;Former spokesperson of the so called ‘government’ of the so called ‘Luhansk People's Republic’ . Former spokesperson of the Press Service of LNR.;18044;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7432;EU.3693.82;;2014-07-30;Date of listing: 30/07/2014;(Date of UN designation: 2014-07-30)\n(Designation details: Date of listing: 30/07/2014)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;ЧИГРИНА;Оксана;Александровна;Оксана Александровна ЧИГРИНА;;F;;;18045;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7432;EU.3693.82;;2014-07-30;Date of listing: 30/07/2014;(Date of UN designation: 2014-07-30)\n(Designation details: Date of listing: 30/07/2014)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;CHIGRINA (CHYHRYNA);Oksana;Aleksandrovna;Oksana Aleksandrovna CHIGRINA (CHYHRYNA);;F;;;18706;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7432;EU.3693.82;;2014-07-30;Date of listing: 30/07/2014;(Date of UN designation: 2014-07-30)\n(Designation details: Date of listing: 30/07/2014)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-07-23;23;7;1981;;;YES;GREGORIAN;;;;;00;UNKNOWN;2325;EN;possibly;amendment;council;2016-09-16;2016-09-16;2016/1661 (OJ L249);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1661&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7433;EU.3694.47;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;LITVINOV;Boris;Alekseevich;Boris Alekseevich LITVINOV;;M;;Former member of the so-called ‘People's Council’ and former chairman of the so-called ‘Supreme Council’ of the so-called ‘Donetsk People's Republic’. Current leader of Communist Party of DNR.;18046;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7433;EU.3694.47;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;ЛИТВИНОВ;Борис;Алексеевич;Борис Алексеевич ЛИТВИНОВ;;M;;;18047;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7433;EU.3694.47;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Борис Олексійович ЛИТВИНОВ;;M;;;111429;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7433;EU.3694.47;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;LYTVYNOV;Borys;Oleksiyovych;Borys Oleksiyovych LYTVYNOV;;M;;;111430;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7433;EU.3694.47;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-01-13;13;1;1954;;;NO;GREGORIAN;;Donetsk oblast;;Dzerzhynsk;UA;UKRAINE;2326;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7434;EU.3695.12;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ABISOV;Sergey;Vadimovich;Sergey Vadimovich ABISOV;;M;;Assistant for the so-called “Head of the Republic of Crimea”. Dismissed as so-called “Minister of Interior of the Republic of Crimea” in June 2018 and former aide to the ‘Chairman’ of the Council of Ministers of the so‐called ‘Republic of Crimea.’;18048;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7434;EU.3695.12;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АБИСОВ;Сергей;Вадимович;Сергей Вадимович АБИСОВ;RU;M;;;18049;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7434;EU.3695.12;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АБІСОВ;Сергій;Вадимович;Сергій Вадимович АБІСОВ;UK;M;;;111431;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7434;EU.3695.12;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergiy Vadymovych ABISOV;;M;;;111432;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7434;EU.3695.12;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Serhij Vadymovytj ABISOV;SV;;;;143742;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7434;EU.3695.12;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Vadimovitj ABISOV;SV;;;;143743;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7434;EU.3695.12;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Serhiy Vadymovych ABISOV;;M;;;143744;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7434;EU.3695.12;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-11-27;27;11;1967;;;NO;GREGORIAN;;Crimea;;Simferopol;UA;UKRAINE;2177;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7435;EU.4182.1;;;30.7.2014;(Designation details: 30.7.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;ROTENBERG;Arkady;Romanovich;Arkady Romanovich ROTENBERG;;M;;Prominent Russian businessman. Former owner of the company Stroygazmontazh. Chairman of the board of directors of publishing house Prosvescheniye. Owner of two companies, Mostotrest and Stroygazmontazh-Most.;18050;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7435;EU.4182.1;;;30.7.2014;(Designation details: 30.7.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;РОТЕНБЕРГ;Аркадий;Романович;Аркадий Романович РОТЕНБЕРГ;;M;;;18068;EN;;amendment;council;2017-07-26;2017-07-27;2017/1374 (OJ L194);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1374&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7435;EU.4182.1;;;30.7.2014;(Designation details: 30.7.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;ROTENBERG;Arkadii;Romanovich;Arkadii Romanovich ROTENBERG;;M;;;18707;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7435;EU.4182.1;;;30.7.2014;(Designation details: 30.7.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-12-15;15;12;1951;;;NO;GREGORIAN;;;;Leningrad (Saint Petersburg);RU;RUSSIAN FEDERATION;2178;EN;Leningrad, \nUSSR (St Petersburg, Russian Federation);amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7436;EU.4004.55;;;;(date of listing: 30/07/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;MALOFEEV;Konstantin;Valerevich;Konstantin Valerevich MALOFEEV;;M;;;18051;EN;;amendment;council;2014-07-30;2014-07-30;826/2014 (OJ L226);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_226_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7436;EU.4004.55;;;;(date of listing: 30/07/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;МАЛОФЕЕВ;Константин;Валерьевич;Константин Валерьевич МАЛОФЕЕВ;;M;;;18052;EN;;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7436;EU.4004.55;;;;(date of listing: 30/07/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-07-03;3;7;1974;;;NO;GREGORIAN;;;Moscow region;Puschino;RU;RUSSIAN FEDERATION;2179;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7437;EU.225.39;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOVALCHUK;Yuriy;Valentinovich;Yuriy Valentinovich KOVALCHUK;;M;;Chairman and largest shareholder of Bank Rossiya and co-founder of the so-called Ozero Dacha (a co-operative society);18053;EN;;amendment;council;2014-07-30;2014-07-30;826/2014 (OJ L226);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_226_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7437;EU.225.39;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОВАЛЬЧУК;Юрий;Валентинович;Юрий Валентинович КОВАЛЬЧУК;RU;M;;;18054;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7437;EU.225.39;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jurij Valentinovitj KOVALTJUK;SV;;;;143746;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7437;EU.225.39;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-07-25;25;7;1951;;;NO;GREGORIAN;;;;Leningrad (St Petersburg);RU;RUSSIAN FEDERATION;2180;EN;;amendment;council;2014-07-30;2014-07-30;826/2014 (OJ L226);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_226_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7438;EU.206.13;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;SHAMALOV;Nikolay;Terentievich;Nikolay Terentievich SHAMALOV;;M;;A long-time acquaintance of President Putin. A co-founder of the so-called Ozero Dacha, a cooperative society. The second largest shareholder of Bank Rossiya.;18055;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7438;EU.206.13;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Николай Терентьевич ШАМАЛОВ;;M;;;18056;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7438;EU.206.13;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Nikolaj Terentievitj SJAMALOV;SV;M;;;128360;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7438;EU.206.13;;2014-07-30;;(Date of UN designation: 2014-07-30);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-01-24;24;1;1950;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;122865;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7439;EU.3949.53;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Joint-stock company Almaz-Antey air and space defence corporation;;;;Almaz-Antey is a Russian State-owned company. It manufactures anti-aircraft weaponry including surface-to-air missiles which it supplies to the Russian army. The Russian authorities have been providing heavy weaponry to separatists in Eastern Ukraine, contributing to the destabilisation of Ukraine. These weapons are used by the separatists, including for shooting down airplanes. As a State-owned company, Almaz-Antey therefore contributes to the destabilisation of Ukraine.;18057;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7439;EU.3949.53;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Almaz-Antey corp;;;;;18058;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7439;EU.3949.53;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Almaz-Antey defense corporation;;;;;18059;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7439;EU.3949.53;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Almaz-Antey JSC;;;;;18060;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7439;EU.3949.53;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Акционерное общество ‘Концерн воздушно-космической обороны “Алмаз — Антей”’;;;;;111476;EN;;amendment;council;2017-09-14;2017-09-15;2018/1230 (OJ L231/1);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1230&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7439;EU.3949.53;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Концерн ВКО 'Алмаз — Антей';;;;;111477;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7439;EU.3949.53;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Concern Almaz-Antey;;;;;111478;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7439;EU.3949.53;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;Moscow;41 ul.Vereiskaya;;121471;;;NO;WEB[www.almaz-antey.ru]\nEMAIL[antey@almaz-antey.ru];RU;RUSSIAN FEDERATION;2636;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7439;EU.3949.53;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1027739001993 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125024;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;7440;EU.2782.80;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;DOBROLET;;;;Dobrolet was a subsidiary of a Russian State-owned airline. Since the illegal annexation of Crimea Dobrolet exclusively operated flights between Moscow and Simferopol.;18062;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7440;EU.2782.80;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;DOBROLYOT;;;;;18063;EN;;amendment;council;2014-07-30;2014-07-30;826/2014 (OJ L226);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_226_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7440;EU.2782.80;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;ДОБРОЛЕТ;;;;;18064;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7440;EU.2782.80;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;ДОБРОЛЁТ;;;;;18065;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7440;EU.2782.80;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;International Highway, House 31, building 1;;141411;;;NO;"WEB[https://aviakompaniya.com/dobrolet/; www.pobeda.aero]\n(Airline code QD; \n\n141411, г. Москва, Международное ш., дом 31, строение 1)";RU;RUSSIAN FEDERATION;2637;EN;"Airline code QD; \n\n141411, г. Москва, Международное ш., дом 31, строение 1";amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Public Joint Stock Company “Russian National Commercial Bank”;;;;;18066;EN;After the illegal annexation of Crimea, Russian National Commercial Bank (RNCB) became fully owned by the so-called “Republic of Crimea”. In January 2016, it became a property of Federal Agency for State Property Management, also known as Rosimushchestvo (Федеральное агентство по управлению государственным имуществом (Росимущество)).;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Публичное акционерное общество “Российский национальный коммерческий банк”;;;;;18067;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Det offentligretlige aktieselskab »Russian National Commercial Bank«;DA;;;;128560;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Veřejná akciová společnost „Russian National Commercial Bank“;CS;;;;128561;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Empresa pública por acciones “Russian National Commercial Bank”;ES;;;;128562;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Публично акционерно дружество „Руска национална търговска банка“;BG;;;;128563;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Δημόσια ανώνυμη εταιρεία με την επωνυμία “Russian National Commercial Bank”;EL;;;;128564;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Offene Aktiengesellschaft ‚Russian National Commercial Bank‘;DE;;;;128565;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Javno dioničko društvo „Ruska nacionalna komercijalna banka”;HR;;;;128566;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Cuideachta comhstoic poiblí ‘Russian National Commercial Bank’;GA;;;;128567;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Société anonyme publique “Russian National Commercial Bank”;FR;;;;128568;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Viešoji akcinė bendrovė „Russian National Commercial Bank“ („Rusijos nacionalinis komercinis bankas“);LT;;;;128569;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Valsts akciju sabiedrība “Russian National Commercial Bank”;LV;;;;128570;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Kumpannija Pubblika b’Ishma Konġunti “Russian National Commercial Bank”;MT;;;;128571;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;„Orosz Nemzeti Kereskedelmi Bank” Állami Részvénytársaság;HU;;;;128572;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Societatea publică pe acțiuni «Banca Națională Comercială a Rusiei»;RO;;;;128573;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Sociedade pública por ações “Russian National Commercial Bank”;PT;;;;128574;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;"Julkinen osakeyhtiö ""Russian National Commercial Bank""";FI;;;;128575;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Javna delniška družba „Russian National Commercial Bank“;SL;;;;128576;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Verejná akciová spoločnosť „Ruská národná komerčná banka“;SK;;;;128577;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;Simferopol;Naberezhnaja str named after 60th anniversary of USSR, 34;;295000;;;NO;WEB[http://www.rncb.ru]\n(295000, Симферополь, ул. Набережная имени 60–летия СССР, д. 34);00;UNKNOWN;2639;EN;295000, Симферополь, ул. Набережная имени 60–летия СССР, д. 34;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7441;EU.4052.33;;2014-07-30;;(Date of UN designation: 2014-07-30);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1027700381290 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125037;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;7443;EU.2812.38;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;al Ajmi;Hajjaj;Bin Fahd;Hajjaj Bin Fahd al Ajmi;;;;;18083;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7443;EU.2812.38;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Hijaj Fahid Hijaj Muhammad Sahib al-Ajmi;;;;;18084;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7443;EU.2812.38;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Hicac Fehid Hicac Muhammed Sebib al-Acmi;;;;;18085;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7443;EU.2812.38;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Hajjaj bin-Fahad al-Ajmi;;;;;18086;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7443;EU.2812.38;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Sheikh Hajaj al-Ajami;;;;;18087;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7443;EU.2812.38;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Hajaj al-Ajami;;;;;18088;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7443;EU.2812.38;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Ajaj Ajami;;;;;18089;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7443;EU.2812.38;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-08-10;10;8;1987;;;NO;GREGORIAN;;;;;KW;KUWAIT;2184;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7443;EU.2812.38;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KW;;811;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN +28/10/2022;7444;EU.2813.3;;;;;P;person;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;al Adnani;Abou;Mohamed;Abou Mohamed al Adnani;;;;;18090;EN;;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7444;EU.2813.3;;;;;P;person;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;;;;Yaser Khalaf Nazzal Alrawi;;;;;18091;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7444;EU.2813.3;;;;;P;person;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;;;;Jaber Taha Falah;;;;;18092;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7444;EU.2813.3;;;;;P;person;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;;;;Abou khattab;;;;;18093;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7444;EU.2813.3;;;;;P;person;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;;;;Abou Sadeq Alrawi;;;;;18094;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7444;EU.2813.3;;;;;P;person;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;;;;Tah al Binchi;;;;;18095;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7444;EU.2813.3;;;;;P;person;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;;;;Abu Mohammed al-Adnani;;;;;18096;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7444;EU.2813.3;;;;;P;person;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;;;;Taha Sobhi Falaha;;;;;18097;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7444;EU.2813.3;;;;;P;person;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;;;;Yasser Khalaf Hussein Nazal al-Rawi;;;;;18098;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7444;EU.2813.3;;;;;P;person;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;;;;Abu Baker al-Khatab;;;;;18099;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7444;EU.2813.3;;;;;P;person;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;;;;Abu Sadek al-Rawi;;;;;18100;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7444;EU.2813.3;;;;;P;person;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;;;;Taha al-Banshi;;;;;18101;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7444;EU.2813.3;;;;;P;person;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;;;;Abu Mohamed al-Adnani;;;;;18102;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7444;EU.2813.3;;;;;P;person;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;;;;Abu-Mohammad al-Adnani al-Shami;;;;;18103;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7444;EU.2813.3;;;;;P;person;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;;;;Hajj Ibrahim;;;;;18104;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7444;EU.2813.3;;;;;P;person;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;;;YES;GREGORIAN;;;;Binnish;SY;SYRIAN ARAB REPUBLIC;2185;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7444;EU.2813.3;;;;;P;person;amendment;council;2014-08-28;2014-08-28;930/2014 (OJ L258);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_258_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;812;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN +28/10/2022;7445;EU.2725.66;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;Arif;Said;;Said Arif;;;;;18105;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7445;EU.2725.66;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Said Mohamed Arif;;;;;18106;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7445;EU.2725.66;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Omar Gharib;;;;;18107;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7445;EU.2725.66;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abderahmane;;;;;18108;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7445;EU.2725.66;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abdallah al-Jazairi;;;;;18109;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7445;EU.2725.66;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Slimane Chabani;;;;;18110;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7445;EU.2725.66;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Souleiman;;;;;18111;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7445;EU.2725.66;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-06-25;25;6;1964;;;NO;GREGORIAN;;;;Oran;DZ;ALGERIA;2186;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7445;EU.2725.66;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-12-05;5;12;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;2187;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7445;EU.2725.66;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;813;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN +28/10/2022;7446;EU.2726.31;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;al Charek;Abdul Mohsen;Abdallah Ibrahim;Abdul Mohsen Abdallah Ibrahim al Charek;;;;;18112;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7446;EU.2726.31;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abdul Mohsen Abdullah Ibrahim Al-Sharikh;;;;;18113;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7446;EU.2726.31;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Sanafi al Nasr;;;;;18114;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7446;EU.2726.31;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-07-13;13;7;1985;;;NO;GREGORIAN;;;;Saqra;SA;SAUDI ARABIA;2188;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7446;EU.2726.31;;;;;P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SA;;814;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN +28/10/2022;7447;EU.2727.93;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Hamid Hamad Hamid al-'Ali;;;;;18173;EN;;amendment;council;2014-09-26;2014-09-26;1022/2014 (OJ L283);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:283:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7447;EU.2727.93;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-11-17;17;11;1960;;;NO;GREGORIAN;;;;;KW;KUWAIT;104390;EN;;amendment;council;2014-09-26;2014-09-26;1022/2014 (OJ L283);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:283:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7447;EU.2727.93;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"001714467 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KW;;104393;EN;;amendment;council;2014-09-26;2014-09-26;1022/2014 (OJ L283);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:283:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;7447;EU.2727.93;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"101505554 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KW;;104394;EN;;amendment;council;2014-09-26;2014-09-26;1022/2014 (OJ L283);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:283:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;7447;EU.2727.93;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KW;;104392;EN;;amendment;council;2014-09-26;2014-09-26;1022/2014 (OJ L283);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:283:FULL&from=EN +28/10/2022;7450;EU.3696.74;;;12.9.2014;(Designation details: 12.9.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;'Tsar';;M;;;18123;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7450;EU.3696.74;;;12.9.2014;(Designation details: 12.9.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Владимир Петровнч КОНОНОВ;;M;;;18168;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7450;EU.3696.74;;;12.9.2014;(Designation details: 12.9.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Володимир Петрович КОНОНОВ;;M;;;111342;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7450;EU.3696.74;;;12.9.2014;(Designation details: 12.9.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;KONONOV;Volodymyr;Petrovych;Volodymyr Petrovych KONONOV;;M;;;111343;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7450;EU.3696.74;;;12.9.2014;(Designation details: 12.9.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;KONONOV;Vladimir;Petrovich;Vladimir Petrovich KONONOV;;M;;As of 14 August 2014, he replaced Igor Strelkov/Girkin, as the so-called ‘Defence minister’ of the ‘Donetsk People's Republic’. Dismissed as so-called “Defence minister” in September 2018. Chief of the Directorate for Social Assistance to Retired Servicemen, under the so called ‘Head of the Donetsk People's Republic’.;111344;EN;;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7450;EU.3696.74;;;12.9.2014;(Designation details: 12.9.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-10-14;14;10;1974;;;NO;GREGORIAN;;Luhansk Oblast;;Gorskoe;UA;UKRAINE;2194;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7451;EU.3697.39;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Miroslav Vladimirovich RUDENKO;;M;;Associated with the ‘Donbass People’s Militia’. Member of the so-called ‘People’s Council of the Donetsk People’s Republic’ Committee on Education, Science and Culture.;18124;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7451;EU.3697.39;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Мирослав Владимирович РУДЕНКО;;M;;;18134;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7451;EU.3697.39;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;РУДЕНКО;Мирослав;Володимирович;Мирослав Володимирович РУДЕНКО;;M;;;111345;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7451;EU.3697.39;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;RUDENKO;Myroslav;Volodymyrovych;Myroslav Volodymyrovych RUDENKO;;M;;;111346;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7451;EU.3697.39;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Myroslav Volodymyrovytj RUDENKO;SV;;;;137440;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7451;EU.3697.39;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Miroslav Vladimirovitj RUDENKO;SV;;;;137441;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7451;EU.3697.39;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-01-21;21;1;1983;;;NO;GREGORIAN;;;;Debaltsevo;UA;UKRAINE;2195;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7453;EU.3719.23;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Andrey Yurevich PINCHUK;;M;;Former ‘State security minister’ of the so- called ‘Donetsk People's Republic’. Associated with Vladimir Antyufeyev, who was responsible for the separatist ‘governmental’ activities of the so-called ‘government of the Donetsk People's Republic’. Executive Director and charman of the Council of Commanders of the ‘Union of Donbas volunteers’.;18127;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7453;EU.3719.23;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;ПИНЧУК;Андрей;Юрьевич;Андрей Юрьевич ПИНЧУК;;;;;18132;EN;;amendment;council;2014-09-08;2014-09-08;961/2014 (OJ L274);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_271_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7453;EU.3719.23;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Андрій Юрійович ПІНЧУК;;;;;111347;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7453;EU.3719.23;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;PINCHUK;Andriy;Yuriyovych;Andriy Yuriyovych PINCHUK;;;;;111348;EN;;amendment;council;2017-03-14;2017-03-15;2017/437 (OJ L67);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0437&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7453;EU.3719.23;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-12-27;27;12;1977;;;NO;GREGORIAN;;;;Tiraspol;MD;MOLDOVA, REPUBLIC OF;2327;EN;Possible date of birth;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7454;EU.3559.0;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Oleg Vladimirovich BEREZA;;M;;Former so-called ‘Internal affairs minister’ of the ‘Donetsk People's Republic’. Associated with Vladimir Antyufeyev, who was responsible for the separatist ‘governmental’ activities of the so-called ‘Government of the Donetsk People's Republic’.;18130;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7454;EU.3559.0;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;Берёза;Олег;Владимирович;Олег Владимирович Берёза;;;;;18131;EN;;amendment;council;2015-03-13;2015-03-14;2015/427 (OJ L70);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_070_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7454;EU.3559.0;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-03-01;1;3;1977;;;NO;GREGORIAN;;Slobodzia district;;Frunze;MD;MOLDOVA, REPUBLIC OF;2328;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7455;EU.3455.78;;;Date of listing: 12/09/2014;(Designation details: Date of listing: 12/09/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;RODKIN;Andrei;Nikolaevich;Andrei Nikolaevich RODKIN;;M;;Former Moscow Representative of the so-called ‘Donetsk People's Republic’. One of the former leaders of the ‘Union of Donbas \nVolunteers’.;18135;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7455;EU.3455.78;;;Date of listing: 12/09/2014;(Designation details: Date of listing: 12/09/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Андрей Николаевич РОДКИН;;M;;;18136;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7455;EU.3455.78;;;Date of listing: 12/09/2014;(Designation details: Date of listing: 12/09/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-09-23;23;9;1976;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;2329;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7456;EU.3720.48;;;Date of listing: 12/09/2014;(Designation details: Date of listing: 12/09/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KARAMAN;Aleksandr;Akimovich;Aleksandr Akimovich KARAMAN;;M;;Former so-called ‘Deputy Prime Minister for Social Issues’ of the ‘Donetsk People's Republic’. Former Head of the Administration of the Council of Ministers of the ‘Donetsk People's Republic’. Until March 2017, so-called ‘Plenipotentiary representative of the President’ of the so-called ‘Pridnestrovian Moldavian Republic’ to the Russian Federation.;18137;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7456;EU.3720.48;;;Date of listing: 12/09/2014;(Designation details: Date of listing: 12/09/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Александр Акимович КАРАМАН;;M;;;18138;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7456;EU.3720.48;;;Date of listing: 12/09/2014;(Designation details: Date of listing: 12/09/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;CARAMAN;Alexandru;;Alexandru CARAMAN;;M;;;18709;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7456;EU.3720.48;;;Date of listing: 12/09/2014;(Designation details: Date of listing: 12/09/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-07-26;26;7;1956;;;NO;GREGORIAN;;;Slobozia district;Cioburciu;MD;MOLDOVA, REPUBLIC OF;2330;EN;;amendment;council;2015-09-15;2015-09-15;2015/1514 (OJ L239);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_239_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7457;EU.2399.73;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;MURADOV;Georgiy;L'vovich;Georgiy L'vovich MURADOV;;M;;So called ‘Deputy Prime Minister’ of Crimea and Plenipotentiary Representative of Crimea to President Putin;18139;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7457;EU.2399.73;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;Мурадов;Георгий;Львович;Георгий Львович Мурадов;;M;;;18140;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7457;EU.2399.73;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-11-19;19;11;1954;;;NO;GREGORIAN;;Komi ASSR (now Russian Federation);;Kochmes;RU;RUSSIAN FEDERATION;2197;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7458;EU.195.84;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHEREMET;Mikhail;Sergeyevich;Mikhail Sergeyevich SHEREMET;;M;;Former so called ‘First Deputy Prime Minister’ of Crimea. Member of the State Duma and its Committee on Security and Anti-Corruption.;18141;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7458;EU.195.84;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ШЕРЕМЕТ;Михайло;Сергійович;Михайло Сергійович ШЕРЕМЕТ;UK;M;;;18142;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7458;EU.195.84;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ШЕРЕМЕТ;Михаил;Сергеевич;Михаил Сергеевич ШЕРЕМЕТ;RU;M;;;111349;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7458;EU.195.84;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHEREMET;Mykhaylo;Serhiyovych;Mykhaylo Serhiyovych SHEREMET;;M;;;111350;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7458;EU.195.84;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Mychajlo Serhijovytj SJEREMET;SV;;;;143747;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7458;EU.195.84;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Michail Sergejevitj SJEREMET;SV;;;;143748;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7458;EU.195.84;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-05-23;23;5;1971;;;NO;GREGORIAN;;;;Dzhankoy;UA;UKRAINE;2198;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7459;EU.269.0;;;;(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Yuri Leonidovich VOROBIOV;;M;;Deputy Speaker of the Federation Council of the Russian Federation;18143;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7459;EU.269.0;;;;(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Юрий Леонидович ВОРОБЬЕВ;;M;;;18144;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7459;EU.269.0;;;;(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-02-02;2;2;1948;;;NO;GREGORIAN;;;;Krasnoyarsk;RU;RUSSIAN FEDERATION;2199;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7461;EU.208.15;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VASILYEV;Vladimir;Abdualiyevich;Vladimir Abdualiyevich VASILYEV;;M;;Former Deputy Speaker of the State Duma. Former head of the Republic of Dagestan. Former Advisor to the President of the Russian Federation.\n\nMember of the State Duma and leader of the United Russia faction at the State Duma.;18147;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7461;EU.208.15;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВАСИЛЬЕВ;Владимир;Абдуалиевич;Владимир Абдуалиевич ВАСИЛЬЕВ;RU;M;;;18170;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7461;EU.208.15;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Abdualijevitj VASILJEV;SV;M;;;128361;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7461;EU.208.15;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-08-11;11;8;1949;;;NO;GREGORIAN;;Moscow Region;;Klin;RU;RUSSIAN FEDERATION;122866;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7462;EU.272.55;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Petrovich VODOLATSKY;;M;;Former chairman (‘ataman’) of the Union of the Russian and Foreign Cossack Forces. Member of the State Duma. First Deputy Chairman of the Duma Committee for CIS affairs, Eurasian integration and relations with compatriots.;18148;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7462;EU.272.55;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Виктор Петрович ВОДОЛАЦКИЙ;;M;;;18167;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7462;EU.272.55;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Petrovitj VODOLATSKIJ;SV;M;;;144196;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7462;EU.272.55;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-08-19;19;8;1957;;;NO;GREGORIAN;;Rostov region;;Stefanidin Dar;RU;RUSSIAN FEDERATION;2211;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7463;EU.3721.13;;2014-09-12;;(Date of UN designation: 2014-09-12)\n(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Leonid Ivanovich KALASHNIKOV;;M;;Former First deputy Chairman of the Committee on Foreign Affairs of the State Duma. Currently Chairman of the Russian State Duma Committee for CIS Affairs, Eurasian Integration and Relations with Compatriots.;18149;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7463;EU.3721.13;;2014-09-12;;(Date of UN designation: 2014-09-12)\n(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Леонид Иванович КАЛАШНИКОВ;;M;;;18150;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7463;EU.3721.13;;2014-09-12;;(Date of UN designation: 2014-09-12)\n(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-08-06;6;8;1960;;;NO;GREGORIAN;;;;Stepnoy Dvorets;RU;RUSSIAN FEDERATION;2212;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7464;EU.3722.75;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;NIKITIN;Vladimir;Stepanovich;Vladimir Stepanovich NIKITIN;;M;;"Former member of the State Duma and former First Deputy Chairman of the Committee for CIS Affairs, Eurasian Integration and Relations with Compatriots of the State Duma. Member of the Presidium of the Central Committee of the Communist Party of the Russian Federation. Leader of the all-Russian public movement ""Russian \nConcord"", which attempts to create a unique Russian \ncivilisation and to strengthen Russia's position in the \nformer Soviet space and the CIS.";18151;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7464;EU.3722.75;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Владимир Степанович НИКИТИН;;M;;;18171;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7464;EU.3722.75;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Wladimir Stepanowitsch NIKITIN;DE;M;;;131426;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7464;EU.3722.75;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Vladimir Stepanovitj NIKITIN;;M;;;131427;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7464;EU.3722.75;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-04-05;5;4;1948;;;NO;GREGORIAN;;;;Opochka;RU;RUSSIAN FEDERATION;2202;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7465;EU.3749.26;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;LEBEDEV;Oleg;Vladimirovich;Oleg Vladimirovich LEBEDEV;;M;;Former member of the State Duma and former First Deputy Chairman of the Committee for CIS Affairs, Eurasian Integration and Relations with Compatriots of the State Duma.;18152;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7465;EU.3749.26;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Олег Владимирович ЛЕБЕДЕВ;;M;;;18153;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7465;EU.3749.26;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-03-21;21;3;1964;;;NO;GREGORIAN;;Kostanai region, Kazakh SSR;;Rudny;KZ;KAZAKHSTAN;2203;EN;;amendment;council;2018-03-13;2018-03-14;2018/388 (OJ L69);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0388&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7466;EU.1544.75;;;;(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Ivan Ivanovich MELNIKOV;;M;;First Deputy Speaker, State Duma;18154;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7466;EU.1544.75;;;;(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Иван Иванович МЕЛЬНИКОВ;;M;;;18155;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7466;EU.1544.75;;;;(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-08-07;7;8;1950;;;NO;GREGORIAN;;;;Bogoroditsk;RU;RUSSIAN FEDERATION;2204;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7467;EU.274.57;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Igor Vladimirovich LEBEDEV;;M;;Former member of the State Duma. Former Deputy Speaker, State Duma.;18156;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7467;EU.274.57;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Игорь Владимирович ЛЕБЕДЕВ;;M;;;18157;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7467;EU.274.57;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Igor Vladimirovitj LEBEDEV;SV;;;;137442;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7467;EU.274.57;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-09-27;27;9;1972;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;2205;EN;;amendment;council;2014-09-08;2014-09-08;961/2014 (OJ L274);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_271_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7468;EU.3750.51;;2014-09-12;;(Date of UN designation: 2014-09-12)\n(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Nikolai Vladimirovich LEVICHEV;;M;;Former member of the State Duma. Former Deputy Speaker, State Duma. Currently a member of the Central Election Commission.;18158;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7468;EU.3750.51;;2014-09-12;;(Date of UN designation: 2014-09-12)\n(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Николай Владимирович ЛЕВИЧЕВ;;M;;;18159;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7468;EU.3750.51;;2014-09-12;;(Date of UN designation: 2014-09-12)\n(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-05-28;28;5;1953;;;NO;GREGORIAN;;;;Pushkin;RU;RUSSIAN FEDERATION;2206;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7469;EU.282.20;;2014-09-12;;(Date of UN designation: 2014-09-12)\n(First Deputy Chairman of the Committee on Foreign Affairs, State Duma. On 20 March 2014 she voted in favour of the draft Federal Constitutional Law ‘on the acceptance into the Russian Federation of the Republic of Crimea and the formation within the Russian Federation of new federal subjects — the republic of Crimea and the City of Federal Status Sevastopol.);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Svetlana Sergeevna ZHUROVA;;F;;First Deputy Chairman of the Committee on Foreign Affairs, State Duma;18160;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7469;EU.282.20;;2014-09-12;;(Date of UN designation: 2014-09-12)\n(First Deputy Chairman of the Committee on Foreign Affairs, State Duma. On 20 March 2014 she voted in favour of the draft Federal Constitutional Law ‘on the acceptance into the Russian Federation of the Republic of Crimea and the formation within the Russian Federation of new federal subjects — the republic of Crimea and the City of Federal Status Sevastopol.);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Светлана Сергеевна ЖУРОВА;;F;;;18161;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7469;EU.282.20;;2014-09-12;;(Date of UN designation: 2014-09-12)\n(First Deputy Chairman of the Committee on Foreign Affairs, State Duma. On 20 March 2014 she voted in favour of the draft Federal Constitutional Law ‘on the acceptance into the Russian Federation of the Republic of Crimea and the formation within the Russian Federation of new federal subjects — the republic of Crimea and the City of Federal Status Sevastopol.);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-01-07;7;1;1972;;;NO;GREGORIAN;;;;Pavlov-on-the-Neva;RU;RUSSIAN FEDERATION;2207;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7470;EU.279.62;;;;(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;NAUMETS;Aleksey;Vasilevich;Aleksey Vasilevich NAUMETS;;M;;Major-general of the Russian Army. Former commander of the 76th airborne division which has been involved in the Russian \nmilitary presence on the territory of Ukraine, notably during the illegal annexation of Crimea. \nSince 2018 Deputy Chief of Staff of the Airborne Forces.;18162;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7470;EU.279.62;;;;(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Алексей Васильевич HAУМЕЦ;;M;;;18163;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7470;EU.279.62;;;;(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-02-11;11;2;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;2208;EN;;amendment;council;2014-09-08;2014-09-08;961/2014 (OJ L274);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_271_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7471;EU.278.61;;;;(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Sergey Viktorovich CHEMEZOV;;M;;chairman of the Rostec conglomerate, member of the Supreme Council of ‘United Russia’;18164;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7471;EU.278.61;;;;(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Сергей Викторович ЧЕМЕЗОВ;;M;;;18172;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7471;EU.278.61;;;;(Date of listing 12.9.2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-08-20;20;8;1952;;;NO;GREGORIAN;;Irkutsk oblast;;Cheremkhovo;RU;RUSSIAN FEDERATION;122867;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7472;EU.3751.16;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BABAKOV;Alexander;Mikhailovich;Alexander Mikhailovich BABAKOV;;M;;Former member of the Federation Council of the Russian Federation. Member of the Committee on Foreign Affairs. He is a prominent member of the political party ‘United Russia’ and a businessman with heavy investments in Ukraine and in Crimea. Member of the State Duma, member of the Commissions on Energy, support to SMEs, Commonwealth of Independent States (CIS) Affairs, Eurasian integration and support to compatriots.;18165;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7472;EU.3751.16;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БАБАКОВ;Aлександр;Михайлович;Aлександр Михайлович БАБАКОВ;RU;M;;;18166;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7472;EU.3751.16;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Michajlovitj BABAKOV;SV;M;;;128362;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7472;EU.3751.16;;2014-09-12;;(Date of UN designation: 2014-09-12);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-02-08;8;2;1963;;;NO;GREGORIAN;;;;Chisinau;MD;MOLDOVA, REPUBLIC OF;2210;EN;Moldovan SSR (now Republic of Moldova);amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7473;EU.2935.94;;2014-09-27;;(Date of UN designation: 2014-09-27);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Samir HASSAN;;M;;Businessman. President of the Syrian-Russian business council.;18174;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7473;EU.2935.94;;2014-09-27;;(Date of UN designation: 2014-09-27);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;سمير حسن;AR;M;;;140880;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7474;EU.2936.59;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Father's name is Abdullah Saleh al Zahrani; (d) Photo included in the INTERPOL-UN Security Council Special Notice; (e) Located in Syria. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;Al Zahrani;Ahmed;Abdullah Saleh;Ahmed Abdullah Saleh Al Zahrani;;;;Senior member of Al-Qaida.;18176;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7474;EU.2936.59;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Father's name is Abdullah Saleh al Zahrani; (d) Photo included in the INTERPOL-UN Security Council Special Notice; (e) Located in Syria. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Abu Maryam al-Zahrani;;;;;18177;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7474;EU.2936.59;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Father's name is Abdullah Saleh al Zahrani; (d) Photo included in the INTERPOL-UN Security Council Special Notice; (e) Located in Syria. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Abu Maryam al-Saudi;;;;;18178;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7474;EU.2936.59;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Father's name is Abdullah Saleh al Zahrani; (d) Photo included in the INTERPOL-UN Security Council Special Notice; (e) Located in Syria. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Ahmed Abdullah S al-Zahrani;;;;;18179;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7474;EU.2936.59;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Father's name is Abdullah Saleh al Zahrani; (d) Photo included in the INTERPOL-UN Security Council Special Notice; (e) Located in Syria. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Ahmad Abdullah Salih al-Zahrani;;;;;18180;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7474;EU.2936.59;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Father's name is Abdullah Saleh al Zahrani; (d) Photo included in the INTERPOL-UN Security Council Special Notice; (e) Located in Syria. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Abu Maryam al-Azadi;;;;;18181;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7474;EU.2936.59;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Father's name is Abdullah Saleh al Zahrani; (d) Photo included in the INTERPOL-UN Security Council Special Notice; (e) Located in Syria. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Ahmed bin Abdullah Saleh bin al-Zahrani;;;;;18182;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7474;EU.2936.59;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Father's name is Abdullah Saleh al Zahrani; (d) Photo included in the INTERPOL-UN Security Council Special Notice; (e) Located in Syria. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Ahmed Abdullah Saleh al-Zahrani al-Khozmri;;;;;18183;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7474;EU.2936.59;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Father's name is Abdullah Saleh al Zahrani; (d) Photo included in the INTERPOL-UN Security Council Special Notice; (e) Located in Syria. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-09-15;15;9;1978;;;NO;GREGORIAN;;;;Dammam;SA;SAUDI ARABIA;2213;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7474;EU.2936.59;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Father's name is Abdullah Saleh al Zahrani; (d) Photo included in the INTERPOL-UN Security Council Special Notice; (e) Located in Syria. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;E126785 (passport-National passport) [known to be expired](saudi arabian passport, issued on 27.5.2002, expired on 3.4.2007 .);NO;YES;NO;NO;NO;;;;;;;passport;National passport;;SA;;882;EN;saudi arabian passport, issued on 27.5.2002, expired on 3.4.2007 .;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;7474;EU.2936.59;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Father's name is Abdullah Saleh al Zahrani; (d) Photo included in the INTERPOL-UN Security Council Special Notice; (e) Located in Syria. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SA;;817;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN +28/10/2022;7475;EU.2937.24;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Father's name is Abdullah Razeeq al Mouled al Sbhua; (b) Physical description: eye colour: dark; hair colour: dark; complexion: dark; (c) Speaks Arabic; (d) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;Al-Subhi;Azzam;Abdullah Zureik Al-Maulid;Azzam Abdullah Zureik Al-Maulid Al-Subhi;;;;;18184;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7475;EU.2937.24;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Father's name is Abdullah Razeeq al Mouled al Sbhua; (b) Physical description: eye colour: dark; hair colour: dark; complexion: dark; (c) Speaks Arabic; (d) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Mansur al-Harbi;;;;;18185;EN;good quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7475;EU.2937.24;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Father's name is Abdullah Razeeq al Mouled al Sbhua; (b) Physical description: eye colour: dark; hair colour: dark; complexion: dark; (c) Speaks Arabic; (d) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Azzam al-Subhi;;;;;18186;EN;good quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7475;EU.2937.24;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Father's name is Abdullah Razeeq al Mouled al Sbhua; (b) Physical description: eye colour: dark; hair colour: dark; complexion: dark; (c) Speaks Arabic; (d) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Azam Abdallah Razeeq al Mouled Alsbhua;;;;;18187;EN;good quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7475;EU.2937.24;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Father's name is Abdullah Razeeq al Mouled al Sbhua; (b) Physical description: eye colour: dark; hair colour: dark; complexion: dark; (c) Speaks Arabic; (d) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Abu Muslem al-Maky;;;;;18188;EN;good quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7475;EU.2937.24;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Father's name is Abdullah Razeeq al Mouled al Sbhua; (b) Physical description: eye colour: dark; hair colour: dark; complexion: dark; (c) Speaks Arabic; (d) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Abu Suliman al-Harbi;;;;;18189;EN;good quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7475;EU.2937.24;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Father's name is Abdullah Razeeq al Mouled al Sbhua; (b) Physical description: eye colour: dark; hair colour: dark; complexion: dark; (c) Speaks Arabic; (d) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Abu Abdalla al-Harbi;;;;;18190;EN;good quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7475;EU.2937.24;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Father's name is Abdullah Razeeq al Mouled al Sbhua; (b) Physical description: eye colour: dark; hair colour: dark; complexion: dark; (c) Speaks Arabic; (d) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Azam A.R. Alsbhua;;;;;18191;EN;good quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7475;EU.2937.24;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Father's name is Abdullah Razeeq al Mouled al Sbhua; (b) Physical description: eye colour: dark; hair colour: dark; complexion: dark; (c) Speaks Arabic; (d) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-04-12;12;4;1976;;;NO;GREGORIAN;;;;Al Baraka;SA;SAUDI ARABIA;2214;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7475;EU.2937.24;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Father's name is Abdullah Razeeq al Mouled al Sbhua; (b) Physical description: eye colour: dark; hair colour: dark; complexion: dark; (c) Speaks Arabic; (d) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;C389664 (passport-National passport) (on 2000-09-15);NO;NO;NO;NO;NO;;2000-09-15;;;;;passport;National passport;;SA;;883;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;; +28/10/2022;7475;EU.2937.24;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Father's name is Abdullah Razeeq al Mouled al Sbhua; (b) Physical description: eye colour: dark; hair colour: dark; complexion: dark; (c) Speaks Arabic; (d) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1024026187 (id-National identification card) (National identification no.);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;125604;EN;National identification no.;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;; +28/10/2022;7475;EU.2937.24;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Father's name is Abdullah Razeeq al Mouled al Sbhua; (b) Physical description: eye colour: dark; hair colour: dark; complexion: dark; (c) Speaks Arabic; (d) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SA;;816;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN +28/10/2022;7476;EU.2938.86;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: brown; hair colour: brown; height: 185 cm. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;Dale;Anders;Cameroon Ostensvig;Anders Cameroon Ostensvig Dale;;;;;18192;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7476;EU.2938.86;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: brown; hair colour: brown; height: 185 cm. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Muslim Abu Abdurrahman;;;;;18193;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7476;EU.2938.86;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: brown; hair colour: brown; height: 185 cm. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Abu Abdurrahman the Norwegian;;;;;18194;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7476;EU.2938.86;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: brown; hair colour: brown; height: 185 cm. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Abu Abdurrahman the Moroccan;;;;;18195;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7476;EU.2938.86;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: brown; hair colour: brown; height: 185 cm. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-10-19;19;10;1978;;;NO;GREGORIAN;;;;Oslo;NO;NORWAY;2215;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7476;EU.2938.86;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: brown; hair colour: brown; height: 185 cm. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;;818;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN +28/10/2022;7477;EU.2939.51;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Photo included in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;Al-Hablain;Ibrahim;Suleiman Hamad;Ibrahim Suleiman Hamad Al-Hablain;;;;Explosives expert and operative for the Abdallah Azzam Brigades (AAB).;18196;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7477;EU.2939.51;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Photo included in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Barahim Suliman H. al Hblian;;;;;18197;EN;good quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7477;EU.2939.51;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Photo included in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Abu Jabal;;;;;18198;EN;low quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7477;EU.2939.51;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Photo included in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Abu-Jabal;;;;;18199;EN;low quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7477;EU.2939.51;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Photo included in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-12-17;17;12;1984;;;NO;GREGORIAN;;;;Buraidah;SA;SAUDI ARABIA;2216;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7477;EU.2939.51;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Photo included in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"F800691 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;SA;;884;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;; +28/10/2022;7477;EU.2939.51;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Photo included in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1047503170 (id-National identification card) (National identification no.);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;125590;EN;National identification no.;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;; +28/10/2022;7477;EU.2939.51;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Physical description: eye colour: dark; hair colour: dark; complexion: olive; (b) Speaks Arabic; (c) Photo included in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SA;;819;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN +28/10/2022;7478;EU.3727.94;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;ben Amor ben Hassine;Seifallah;;Seifallah ben Amor ben Hassine;;;;;18200;EN;;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7478;EU.3727.94;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;Seif Allah ben Hocine;;;;;18201;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7478;EU.3727.94;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;Saifallah ben Hassine;;;;;18202;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7478;EU.3727.94;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;Sayf Allah ‘Umar bin Hassayn;;;;;18203;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7478;EU.3727.94;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;Sayf Allah bin Hussayn;;;;;18204;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7478;EU.3727.94;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;Abu Iyyadh al-Tunisi;;;;;18205;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7478;EU.3727.94;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;Abou Iyadh el-Tounsi;;;;;18206;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7478;EU.3727.94;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;Abu Ayyad al-Tunisi;;;;;18207;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7478;EU.3727.94;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;Abou Aayadh;;;;;18208;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7478;EU.3727.94;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;Abou Iyadh;;;;;18209;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7478;EU.3727.94;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;Seifallah Ben Omar Ben Mohamed Ben Hassine;;;;;115100;EN;;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7478;EU.3727.94;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;;;;;;;;;;;;;;;;Hammam Lif, Ben Arous;60 Rue de la Libye;;;;;NO;"(a) 60 Rue de la Libye, Hammam Lif, Ben Arous, Tunisia;)";TN;TUNISIA;115095;EN;"a) 60 Rue de la Libye, Hammam Lif, Ben Arous, Tunisia;";amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7478;EU.3727.94;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(b) Libya (possible location as at Jul. 2017));LY;LIBYA;115096;EN;b) Libya (possible location as at Jul. 2017);amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7478;EU.3727.94;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-11-08;8;11;1965;;;NO;GREGORIAN;;;Tunis;;TN;TUNISIA;2217;EN;;amendment;commission;2017-02-21;2017-02-22;2017/296 (OJ L43);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0296&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7478;EU.3727.94;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;05054425 (id-National identification card) (on 2011-05-03)(National identification no: Tunisia National Identification Card 05054425, issued on 3.5.2011 (issued in Hammam Lif).);NO;NO;NO;NO;NO;;2011-05-03;;;;;id;National identification card;;TN;;115097;EN;National identification no: Tunisia National Identification Card 05054425, issued on 3.5.2011 (issued in Hammam Lif).;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;;;;;;;;;; +28/10/2022;7478;EU.3727.94;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;G557170 (passport-National passport) (on 1989-11-16)(Passport no: Tunisia number G557170, issued on 16 Nov. 1989.);NO;NO;NO;NO;NO;;1989-11-16;;;;;passport;National passport;;TN;;115098;EN;Passport no: Tunisia number G557170, issued on 16 Nov. 1989.;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;;;;;;;;;; +28/10/2022;7478;EU.3727.94;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2018-01-12;2018-01-13;2018/50 (OJ L7);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0050&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;820;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;'Abd Al-Rahman Bin 'Umayr Al-Nu'Aymi;;;;;18210;EN;;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Abd al-Rahman bin 'Amir al-Na'imi;;;;;18211;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;'Abd al-Rahman al-Nu'aimi;;;;;18212;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;'Abd al-Rahman bin 'Amir al-Nu'imi;;;;;18213;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;'Abd al-Rahman bin 'Amir al-Nu'aymi;;;;;18214;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;'Abdallah Muhammad al-Nu'aymi;;;;;18215;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;'Abd al-Rahman al-Nua'ymi;;;;;18216;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;A. Rahman al-Naimi;;;;;18217;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Abdelrahman Imer al Jaber al Naimeh;;;;;18218;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;A. Rahman Omair J Alnaimi;;;;;18219;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Abdulrahman Omair al Neaimi;;;;;18220;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;Al-Waab;;;;;;NO;;QA;QATAR;129089;EN;;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954;;;NO;GREGORIAN;;;;Doha;QA;QATAR;2218;EN;;amendment;commission;2017-02-21;2017-02-22;2017/296 (OJ L43);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0296&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;00868774 (passport-National passport) (valid to 2014-04-27)[known to be expired];NO;YES;NO;NO;NO;;;;2014-04-27;;;passport;National passport;;QA;;885;EN;;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;; +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25463401784 (id-National identification card) (valid to 2019-12-06)[known to be expired](Qatari identification number);NO;YES;NO;NO;NO;;;;2019-12-06;;;id;National identification card;;QA;;886;EN;Qatari identification number;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;; +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25463400086 (id-National identification card) (Qatari identification number);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;QA;;129090;EN;Qatari identification number;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;; +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;01461558 (passport-National passport) (valid to 2024-01-20);NO;NO;NO;NO;NO;;;;2024-01-20;;;passport;National passport;;QA;;129091;EN;;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;; +28/10/2022;7479;EU.3728.59;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA;;110825;EN;;amendment;commission;2017-02-21;2017-02-22;2017/296 (OJ L43);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0296&from=EN +28/10/2022;7480;EU.3729.24;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2017-02-21;2017-02-22;2017/296 (OJ L43);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0296&from=EN;Al-‘Anizi;Abd Al-Rahman;Khalaf ‘Ubayd Juday’;Abd Al-Rahman Khalaf ‘Ubayd Juday’ Al-‘Anizi;;;;;18221;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7480;EU.3729.24;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2017-02-21;2017-02-22;2017/296 (OJ L43);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0296&from=EN;;;;‘Abd al-Rahman Khalaf al-Anizi;;;;;18222;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7480;EU.3729.24;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2017-02-21;2017-02-22;2017/296 (OJ L43);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0296&from=EN;;;;‘Abd al-Rahman Khalaf al-‘Anzi;;;;;18223;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7480;EU.3729.24;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2017-02-21;2017-02-22;2017/296 (OJ L43);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0296&from=EN;;;;Abu Usamah al-Rahman;;;;;18224;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7480;EU.3729.24;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2017-02-21;2017-02-22;2017/296 (OJ L43);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0296&from=EN;;;;Abu Shaima’ Kuwaiti;;;;;18225;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7480;EU.3729.24;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2017-02-21;2017-02-22;2017/296 (OJ L43);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0296&from=EN;;;;Abu Usamah al-Kuwaiti;;;;;18226;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7480;EU.3729.24;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2017-02-21;2017-02-22;2017/296 (OJ L43);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0296&from=EN;;;;Abu Usama;;;;;18227;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7480;EU.3729.24;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2017-02-21;2017-02-22;2017/296 (OJ L43);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0296&from=EN;;;;Yusuf;;;;;18228;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7480;EU.3729.24;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2017-02-21;2017-02-22;2017/296 (OJ L43);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0296&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-03-06;6;3;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;110826;EN;;amendment;commission;2017-02-21;2017-02-22;2017/296 (OJ L43);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0296&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7480;EU.3729.24;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(.);P;person;amendment;commission;2017-02-21;2017-02-22;2017/296 (OJ L43);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0296&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KW;;821;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN +28/10/2022;7481;EU.3497.12;;;;(Date of designation referred to in Article 7d(2)(i): 23.9.2014.);P;person;amendment;commission;2016-10-29;2016-10-30;2016/1906 (OJ L295);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1906&from=EN;Khattab;Anas;Hasan;Anas Hasan Khattab;;;Amir;Administrative amir of Al-Nusrah Front for the People of the Levant.;18229;EN;;amendment;commission;2016-10-29;2016-10-30;2016/1906 (OJ L295);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7481;EU.3497.12;;;;(Date of designation referred to in Article 7d(2)(i): 23.9.2014.);P;person;amendment;commission;2016-10-29;2016-10-30;2016/1906 (OJ L295);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1906&from=EN;;;;Samir Ahmed al-Khayat;;;;;18230;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7481;EU.3497.12;;;;(Date of designation referred to in Article 7d(2)(i): 23.9.2014.);P;person;amendment;commission;2016-10-29;2016-10-30;2016/1906 (OJ L295);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1906&from=EN;;;;Hani;;;;;18231;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7481;EU.3497.12;;;;(Date of designation referred to in Article 7d(2)(i): 23.9.2014.);P;person;amendment;commission;2016-10-29;2016-10-30;2016/1906 (OJ L295);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1906&from=EN;;;;Abu Hamzah;;;;;18232;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7481;EU.3497.12;;;;(Date of designation referred to in Article 7d(2)(i): 23.9.2014.);P;person;amendment;commission;2016-10-29;2016-10-30;2016/1906 (OJ L295);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1906&from=EN;;;;Abu-Ahmad Hadud;;;;;18233;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7481;EU.3497.12;;;;(Date of designation referred to in Article 7d(2)(i): 23.9.2014.);P;person;amendment;commission;2016-10-29;2016-10-30;2016/1906 (OJ L295);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-04-07;7;4;1986;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;2220;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7481;EU.3497.12;;;;(Date of designation referred to in Article 7d(2)(i): 23.9.2014.);P;person;amendment;commission;2016-10-29;2016-10-30;2016/1906 (OJ L295);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;113605;EN;;amendment;commission;2016-10-29;2016-10-30;2016/1906 (OJ L295);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1906&from=EN +28/10/2022;7482;EU.2912.3;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;Al-Juburi;Maysar;Ali Musa Abdallah;Maysar Ali Musa Abdallah Al-Juburi;;;Amir;;18234;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7482;EU.2912.3;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Muyassir al-Jiburi;;;;;18235;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7482;EU.2912.3;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Muyassir Harara;;;;;18236;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7482;EU.2912.3;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Muyassir al-Shammari;;;;;18237;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7482;EU.2912.3;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Muhammad Khalid Hassan;;;;;18238;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7482;EU.2912.3;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Al-Shammari;;;;;18239;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7482;EU.2912.3;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Mus'ab al-Qahtani;;;;;18240;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7482;EU.2912.3;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Abu Maria al-Qatani;;;;;18241;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7482;EU.2912.3;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-06-01;1;6;1976;;;NO;GREGORIAN;;;;Al-Shura, Mosul;IQ;IRAQ;2221;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7482;EU.2912.3;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-06-01;1;6;1976;;;NO;GREGORIAN;;;;Harara, Ninawa Province;IQ;IRAQ;2222;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7482;EU.2912.3;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;822;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN +28/10/2022;7483;EU.2913.65;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;Al-Ajmi;Shafi;Sultan Mohammed;Shafi Sultan Mohammed Al-Ajmi;;;Doctor;;18242;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7483;EU.2913.65;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Shafi al-Ajmi;;;;;18243;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7483;EU.2913.65;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Sheikh Shafi al-Ajmi;;;;;18244;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7483;EU.2913.65;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Shaykh Abu-Sultan;;;;;18245;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7483;EU.2913.65;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;327 Street, Area 3, Building 41, Al-Uqaylah;;;;;NO;;KW;KUWAIT;2642;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7483;EU.2913.65;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-01-01;1;1;1973;;;NO;GREGORIAN;;;;Warah;KW;KUWAIT;2223;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7483;EU.2913.65;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0216155930 (passport-National passport) ((passport no. ));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;888;EN;(passport no. );amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;7483;EU.2913.65;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KW;;823;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN +28/10/2022;7484;EU.2914.30;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;Al-Qaduli;Abd Al-Rahman;Muhammad Mustafa;Abd Al-Rahman Muhammad Mustafa Al-Qaduli;;;;Senior official of the Islamic State in Iraq and the Levant (ISIL).;18246;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7484;EU.2914.30;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;‘Abd al-Rahman Muhammad Mustafa Shaykhlari;;;;;18247;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7484;EU.2914.30;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Umar Muhammad Khalil Mustafa;;;;;18248;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7484;EU.2914.30;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Abdul Rahman Muhammad al-Bayati;;;;;18249;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7484;EU.2914.30;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Tahir Muhammad Khalil Mustafa al-Bayati;;;;;18250;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7484;EU.2914.30;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Aliazra Ra’ad Ahmad;;;;;18251;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7484;EU.2914.30;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Abu-Shuayb;;;;;18252;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7484;EU.2914.30;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Hajji Iman;;;;;18253;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7484;EU.2914.30;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Abu Iman;;;;;18254;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7484;EU.2914.30;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Abu Ala;;;;;18255;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7484;EU.2914.30;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Abu Hasan;;;;;18256;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7484;EU.2914.30;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Abu Muhammad;;;;;18257;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7484;EU.2914.30;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Abu Zayna;;;;;18258;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7484;EU.2914.30;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959;;;NO;GREGORIAN;;;;Mosul, Ninawa Province;IQ;IRAQ;2224;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7484;EU.2914.30;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;NO;GREGORIAN;;;;Mosul, Ninawa Province;IQ;IRAQ;2225;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7484;EU.2914.30;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;824;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN +28/10/2022;7485;EU.3402.81;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Located in Syria since 2013.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Emilie Edwige Konig;;;;;18259;EN;;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7485;EU.3402.81;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Located in Syria since 2013.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Emilie Samra Konig;EN;;;;108991;EN;;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7485;EU.3402.81;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Located in Syria since 2013.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-12-09;9;12;1984;;;NO;GREGORIAN;;;;Ploemeur;FR;FRANCE;2226;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7485;EU.3402.81;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Located in Syria since 2013.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0205561020089 (id-National identification card) (on 2002-05-30)(French identity card number, issued on 30.5.2002 under name Emilie Edwige Konig.);NO;NO;NO;NO;NO;;2002-05-30;;;;;id;National identification card;;FR;;108988;EN;French identity card number, issued on 30.5.2002 under name Emilie Edwige Konig.;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;; +28/10/2022;7485;EU.3402.81;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Located in Syria since 2013.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;050456101445 (id-National identification card) (issued by sous-prefecture of police of Lorient, France on 2005-05-19);NO;NO;NO;NO;NO;sous-prefecture of police of Lorient, France;2005-05-19;;;;;id;National identification card;;FR;;108989;EN;;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;; +28/10/2022;7485;EU.3402.81;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Located in Syria since 2013.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;05AT521433 (passport-National passport) (issued by sous- prefecture of police of Lorient, France on 2005-11-30);NO;NO;NO;NO;NO;sous- prefecture of police of Lorient, France;2005-11-30;;;;;passport;National passport;;FR;;108990;EN;;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;; +28/10/2022;7485;EU.3402.81;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Located in Syria since 2013.);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;FR;;825;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN +28/10/2022;7486;EU.4191.37;;2014-09-23;;(Date of UN designation: 2014-09-23);P;person;amendment;commission;2017-09-01;2017-09-02;2017/1516 (OJ L226);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1516&from=EN;Guiavarch;Kevin;Jordan Axel;Kevin Jordan Axel Guiavarch;;;;;18260;EN;;amendment;commission;2017-09-01;2017-09-02;2017/1516 (OJ L226);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1516&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7486;EU.4191.37;;2014-09-23;;(Date of UN designation: 2014-09-23);P;person;amendment;commission;2017-09-01;2017-09-02;2017/1516 (OJ L226);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1516&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(d) France (in detention since Jan. 2017).);FR;FRANCE;114045;EN;d) France (in detention since Jan. 2017).;amendment;commission;2017-09-01;2017-09-02;2017/1516 (OJ L226);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1516&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7486;EU.4191.37;;2014-09-23;;(Date of UN designation: 2014-09-23);P;person;amendment;commission;2017-09-01;2017-09-02;2017/1516 (OJ L226);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1516&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(c) Turkey (from Jun. 2016 to Jan. 2017));TR;TURKEY;114046;EN;c) Turkey (from Jun. 2016 to Jan. 2017);amendment;commission;2017-09-01;2017-09-02;2017/1516 (OJ L226);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1516&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7486;EU.4191.37;;2014-09-23;;(Date of UN designation: 2014-09-23);P;person;amendment;commission;2017-09-01;2017-09-02;2017/1516 (OJ L226);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1516&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(b) Syrian Arab Republic (located in between 2012 and 2016));SY;SYRIAN ARAB REPUBLIC;114047;EN;b) Syrian Arab Republic (located in between 2012 and 2016);amendment;commission;2017-09-01;2017-09-02;2017/1516 (OJ L226);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1516&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7486;EU.4191.37;;2014-09-23;;(Date of UN designation: 2014-09-23);P;person;amendment;commission;2017-09-01;2017-09-02;2017/1516 (OJ L226);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1516&from=EN;;;;;;;;;;;;;;;;;;;Grenoble;;;;;;NO;(a) Grenoble, France (domicile from 1993 to 2012));FR;FRANCE;114048;EN;a) Grenoble, France (domicile from 1993 to 2012);amendment;commission;2017-09-01;2017-09-02;2017/1516 (OJ L226);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1516&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7486;EU.4191.37;;2014-09-23;;(Date of UN designation: 2014-09-23);P;person;amendment;commission;2017-09-01;2017-09-02;2017/1516 (OJ L226);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1516&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1993-03-12;12;3;1993;;;NO;GREGORIAN;;;;Paris;FR;FRANCE;2227;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7486;EU.4191.37;;2014-09-23;;(Date of UN designation: 2014-09-23);P;person;amendment;commission;2017-09-01;2017-09-02;2017/1516 (OJ L226);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1516&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12CP63882.3FRA (passport-National passport) (on 2012-07-31 valid from 2022-07-30)(Passport No: France number 12CP63882.3FRA, issued on 31.7.2012 (valid until 30.7.2022).);NO;NO;NO;NO;NO;;2012-07-31;2022-07-30;;;;passport;National passport;;FR;;114043;EN;Passport No: France number 12CP63882.3FRA, issued on 31.7.2012 (valid until 30.7.2022).;amendment;commission;2017-09-01;2017-09-02;2017/1516 (OJ L226);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1516&from=EN;;;;;;;;;;;;; +28/10/2022;7486;EU.4191.37;;2014-09-23;;(Date of UN designation: 2014-09-23);P;person;amendment;commission;2017-09-01;2017-09-02;2017/1516 (OJ L226);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1516&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;070275Q007873 (id-National identification card) (on 2007-02-16 valid to 2017-02-15)(National identification No: France national identity card 070275Q007873, issued on 16.2.2007 (valid until 15.2.2017).);NO;NO;NO;NO;NO;;2007-02-16;;2017-02-15;;;id;National identification card;;FR;;114044;EN;National identification No: France national identity card 070275Q007873, issued on 16.2.2007 (valid until 15.2.2017).;amendment;commission;2017-09-01;2017-09-02;2017/1516 (OJ L226);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1516&from=EN;;;;;;;;;;;;; +28/10/2022;7486;EU.4191.37;;2014-09-23;;(Date of UN designation: 2014-09-23);P;person;amendment;commission;2017-09-01;2017-09-02;2017/1516 (OJ L226);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1516&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;FR;;826;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN +28/10/2022;7487;EU.2917.22;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Located in Syria. Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;Diaby;Oumar;;Oumar Diaby;;;;;18261;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7487;EU.2917.22;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Located in Syria. Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Omsen;;;;;18262;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7487;EU.2917.22;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Located in Syria. Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Oumar Omsen;;;;;18263;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7487;EU.2917.22;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Located in Syria. Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-08-05;5;8;1975;;;NO;GREGORIAN;;;;Dakar;SN;SENEGAL;2228;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7487;EU.2917.22;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Located in Syria. Date of designation referred to in Article 2a(4)(b): 23.9.2014.);P;person;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SN;;827;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN +28/10/2022;7488;EU.2918.84;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Operates in Tunisia; (b) The leader is Seifallah ben Hassine. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";E;enterprise;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Ansar Al-shari’a in Tunisia (AAS-T);;;;;18265;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7488;EU.2918.84;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Operates in Tunisia; (b) The leader is Seifallah ben Hassine. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";E;enterprise;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;AAS-T;;;;;18266;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7488;EU.2918.84;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Operates in Tunisia; (b) The leader is Seifallah ben Hassine. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";E;enterprise;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Ansar al-Sharia in Tunisia;;;;;18267;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7488;EU.2918.84;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Operates in Tunisia; (b) The leader is Seifallah ben Hassine. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";E;enterprise;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Ansar al-Shari’ah in Tunisia;;;;;18268;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7488;EU.2918.84;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Operates in Tunisia; (b) The leader is Seifallah ben Hassine. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";E;enterprise;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Ansar al-Shari’ah;;;;;18269;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7488;EU.2918.84;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Operates in Tunisia; (b) The leader is Seifallah ben Hassine. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";E;enterprise;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Ansar al-Sharia;;;;;18270;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7488;EU.2918.84;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Operates in Tunisia; (b) The leader is Seifallah ben Hassine. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";E;enterprise;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Supporters of Islamic Law;;;;;18271;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7488;EU.2918.84;;2014-09-23;;"(Date of UN designation: 2014-09-23)\n(Other information: (a) Operates in Tunisia; (b) The leader is Seifallah ben Hassine. Date of designation referred to in Article 2a(4)(b): 23.9.2014.)";E;enterprise;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Al-Qayrawan Media Foundation;;;;;18272;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7489;EU.2919.49;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Operates in Lebanon, Syria and the Arabian Peninsula. Date of designation referred to in Article 2a(4)(b): 23.9.2014.);E;enterprise;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Abdallah Azzam Brigades (AAB);;;;;18273;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7489;EU.2919.49;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Operates in Lebanon, Syria and the Arabian Peninsula. Date of designation referred to in Article 2a(4)(b): 23.9.2014.);E;enterprise;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;AAB;;;;;18274;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7489;EU.2919.49;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Operates in Lebanon, Syria and the Arabian Peninsula. Date of designation referred to in Article 2a(4)(b): 23.9.2014.);E;enterprise;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Abdullah Azzam Brigades;;;;;18275;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7489;EU.2919.49;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Operates in Lebanon, Syria and the Arabian Peninsula. Date of designation referred to in Article 2a(4)(b): 23.9.2014.);E;enterprise;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Ziyad al-Jarrah Battalions of the Abdallah Azzam Brigades;;;;;18276;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7489;EU.2919.49;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Operates in Lebanon, Syria and the Arabian Peninsula. Date of designation referred to in Article 2a(4)(b): 23.9.2014.);E;enterprise;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;Yusuf al-'Uyayri Battalions of the Abdallah Azzam Brigades;;;;;18277;EN;;amendment;commission;2014-10-08;2014-10-08;1058/2014 (OJ L293);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7490;EU.4196.56;;2014-07-28;;"(Date of UN designation: 2014-07-28)\n((a) International Maritime Organization (IMO) Number: 1790183; (b) Ocean Maritime Management Company, Limited played a key role in arranging the shipment of concealed cargo of arms and related material from Cuba to the DPRK in July 2013. (c) Ocean Maritime Management Company, Limited is the operator/manager of the following vessels with IMO Number: (a) Chol Ryong (Ryong Gun Bong) 8606173, (b) Chong Bong (Greenlight) (Blue Nouvelle) 8909575, (c) Chong Rim 2 8916293, (d) Hoe Ryong 9041552, (e) Hu Chang (O Un Chong Nyon) 8330815, (f) Hui Chon (Hwang Gum San 2) 8405270, (g) Ji Hye San (Hyok Sin 2) 8018900, (h) Kang Gye (Pi Ryu Gang) 8829593, (i) Mi Rim 8713471, (j) Mi Rim 2 9361407, (k) O Rang (Po Thong Gang) 8829555, (l) Ra Nam 2 8625545, (m) Ra Nam 3 9314650, (n) Ryo Myong 8987333, (o) Ryong Rim (Jon Jin 2) 8018912, (p) Se Pho (Rak Won 2) 8819017, (q) Songjin (Jang Ja San Chong Nyon Ho) 8133530, (r) South Hill 2 8412467, (s) Tan Chon (Ryon Gang 2) 7640378, (t) Thae Pyong San (Petrel 1) 9009085, (u) Tong Hung San (Chong Chon Gang) 7937317, (v) Tong Hung 1 8661575.)";E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Ocean Maritime Management Company, Limited;;;;;18278;EN;International Maritime Organization (IMO) Number: 1790183;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7490;EU.4196.56;;2014-07-28;;"(Date of UN designation: 2014-07-28)\n((a) International Maritime Organization (IMO) Number: 1790183; (b) Ocean Maritime Management Company, Limited played a key role in arranging the shipment of concealed cargo of arms and related material from Cuba to the DPRK in July 2013. (c) Ocean Maritime Management Company, Limited is the operator/manager of the following vessels with IMO Number: (a) Chol Ryong (Ryong Gun Bong) 8606173, (b) Chong Bong (Greenlight) (Blue Nouvelle) 8909575, (c) Chong Rim 2 8916293, (d) Hoe Ryong 9041552, (e) Hu Chang (O Un Chong Nyon) 8330815, (f) Hui Chon (Hwang Gum San 2) 8405270, (g) Ji Hye San (Hyok Sin 2) 8018900, (h) Kang Gye (Pi Ryu Gang) 8829593, (i) Mi Rim 8713471, (j) Mi Rim 2 9361407, (k) O Rang (Po Thong Gang) 8829555, (l) Ra Nam 2 8625545, (m) Ra Nam 3 9314650, (n) Ryo Myong 8987333, (o) Ryong Rim (Jon Jin 2) 8018912, (p) Se Pho (Rak Won 2) 8819017, (q) Songjin (Jang Ja San Chong Nyon Ho) 8133530, (r) South Hill 2 8412467, (s) Tan Chon (Ryon Gang 2) 7640378, (t) Thae Pyong San (Petrel 1) 9009085, (u) Tong Hung San (Chong Chon Gang) 7937317, (v) Tong Hung 1 8661575.)";E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;OMM;;;;;18279;EN;OCEAN MARITIME MANAGEMENT COMPANY;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7490;EU.4196.56;;2014-07-28;;"(Date of UN designation: 2014-07-28)\n((a) International Maritime Organization (IMO) Number: 1790183; (b) Ocean Maritime Management Company, Limited played a key role in arranging the shipment of concealed cargo of arms and related material from Cuba to the DPRK in July 2013. (c) Ocean Maritime Management Company, Limited is the operator/manager of the following vessels with IMO Number: (a) Chol Ryong (Ryong Gun Bong) 8606173, (b) Chong Bong (Greenlight) (Blue Nouvelle) 8909575, (c) Chong Rim 2 8916293, (d) Hoe Ryong 9041552, (e) Hu Chang (O Un Chong Nyon) 8330815, (f) Hui Chon (Hwang Gum San 2) 8405270, (g) Ji Hye San (Hyok Sin 2) 8018900, (h) Kang Gye (Pi Ryu Gang) 8829593, (i) Mi Rim 8713471, (j) Mi Rim 2 9361407, (k) O Rang (Po Thong Gang) 8829555, (l) Ra Nam 2 8625545, (m) Ra Nam 3 9314650, (n) Ryo Myong 8987333, (o) Ryong Rim (Jon Jin 2) 8018912, (p) Se Pho (Rak Won 2) 8819017, (q) Songjin (Jang Ja San Chong Nyon Ho) 8133530, (r) South Hill 2 8412467, (s) Tan Chon (Ryon Gang 2) 7640378, (t) Thae Pyong San (Petrel 1) 9009085, (u) Tong Hung San (Chong Chon Gang) 7937317, (v) Tong Hung 1 8661575.)";E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Haeyang Crew Management Company;;;;;143171;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7490;EU.4196.56;;2014-07-28;;"(Date of UN designation: 2014-07-28)\n((a) International Maritime Organization (IMO) Number: 1790183; (b) Ocean Maritime Management Company, Limited played a key role in arranging the shipment of concealed cargo of arms and related material from Cuba to the DPRK in July 2013. (c) Ocean Maritime Management Company, Limited is the operator/manager of the following vessels with IMO Number: (a) Chol Ryong (Ryong Gun Bong) 8606173, (b) Chong Bong (Greenlight) (Blue Nouvelle) 8909575, (c) Chong Rim 2 8916293, (d) Hoe Ryong 9041552, (e) Hu Chang (O Un Chong Nyon) 8330815, (f) Hui Chon (Hwang Gum San 2) 8405270, (g) Ji Hye San (Hyok Sin 2) 8018900, (h) Kang Gye (Pi Ryu Gang) 8829593, (i) Mi Rim 8713471, (j) Mi Rim 2 9361407, (k) O Rang (Po Thong Gang) 8829555, (l) Ra Nam 2 8625545, (m) Ra Nam 3 9314650, (n) Ryo Myong 8987333, (o) Ryong Rim (Jon Jin 2) 8018912, (p) Se Pho (Rak Won 2) 8819017, (q) Songjin (Jang Ja San Chong Nyon Ho) 8133530, (r) South Hill 2 8412467, (s) Tan Chon (Ryon Gang 2) 7640378, (t) Thae Pyong San (Petrel 1) 9009085, (u) Tong Hung San (Chong Chon Gang) 7937317, (v) Tong Hung 1 8661575.)";E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Korea Mirae Shipping Co. Ltd;;;;;143172;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7490;EU.4196.56;;2014-07-28;;"(Date of UN designation: 2014-07-28)\n((a) International Maritime Organization (IMO) Number: 1790183; (b) Ocean Maritime Management Company, Limited played a key role in arranging the shipment of concealed cargo of arms and related material from Cuba to the DPRK in July 2013. (c) Ocean Maritime Management Company, Limited is the operator/manager of the following vessels with IMO Number: (a) Chol Ryong (Ryong Gun Bong) 8606173, (b) Chong Bong (Greenlight) (Blue Nouvelle) 8909575, (c) Chong Rim 2 8916293, (d) Hoe Ryong 9041552, (e) Hu Chang (O Un Chong Nyon) 8330815, (f) Hui Chon (Hwang Gum San 2) 8405270, (g) Ji Hye San (Hyok Sin 2) 8018900, (h) Kang Gye (Pi Ryu Gang) 8829593, (i) Mi Rim 8713471, (j) Mi Rim 2 9361407, (k) O Rang (Po Thong Gang) 8829555, (l) Ra Nam 2 8625545, (m) Ra Nam 3 9314650, (n) Ryo Myong 8987333, (o) Ryong Rim (Jon Jin 2) 8018912, (p) Se Pho (Rak Won 2) 8819017, (q) Songjin (Jang Ja San Chong Nyon Ho) 8133530, (r) South Hill 2 8412467, (s) Tan Chon (Ryon Gang 2) 7640378, (t) Thae Pyong San (Petrel 1) 9009085, (u) Tong Hung San (Chong Chon Gang) 7937317, (v) Tong Hung 1 8661575.)";E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;East Sea Shipping Company;;;;;143173;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7490;EU.4196.56;;2014-07-28;;"(Date of UN designation: 2014-07-28)\n((a) International Maritime Organization (IMO) Number: 1790183; (b) Ocean Maritime Management Company, Limited played a key role in arranging the shipment of concealed cargo of arms and related material from Cuba to the DPRK in July 2013. (c) Ocean Maritime Management Company, Limited is the operator/manager of the following vessels with IMO Number: (a) Chol Ryong (Ryong Gun Bong) 8606173, (b) Chong Bong (Greenlight) (Blue Nouvelle) 8909575, (c) Chong Rim 2 8916293, (d) Hoe Ryong 9041552, (e) Hu Chang (O Un Chong Nyon) 8330815, (f) Hui Chon (Hwang Gum San 2) 8405270, (g) Ji Hye San (Hyok Sin 2) 8018900, (h) Kang Gye (Pi Ryu Gang) 8829593, (i) Mi Rim 8713471, (j) Mi Rim 2 9361407, (k) O Rang (Po Thong Gang) 8829555, (l) Ra Nam 2 8625545, (m) Ra Nam 3 9314650, (n) Ryo Myong 8987333, (o) Ryong Rim (Jon Jin 2) 8018912, (p) Se Pho (Rak Won 2) 8819017, (q) Songjin (Jang Ja San Chong Nyon Ho) 8133530, (r) South Hill 2 8412467, (s) Tan Chon (Ryon Gang 2) 7640378, (t) Thae Pyong San (Petrel 1) 9009085, (u) Tong Hung San (Chong Chon Gang) 7937317, (v) Tong Hung 1 8661575.)";E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Donghung Dong, Central District, PO Box 120;;;;;NO;(International Maritime Organization (IMO) Number: 1790183);KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;2644;EN;International Maritime Organization (IMO) Number: 1790183;amendment;commission;2014-10-08;2014-10-08;1059/2014 (OJ L293);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7490;EU.4196.56;;2014-07-28;;"(Date of UN designation: 2014-07-28)\n((a) International Maritime Organization (IMO) Number: 1790183; (b) Ocean Maritime Management Company, Limited played a key role in arranging the shipment of concealed cargo of arms and related material from Cuba to the DPRK in July 2013. (c) Ocean Maritime Management Company, Limited is the operator/manager of the following vessels with IMO Number: (a) Chol Ryong (Ryong Gun Bong) 8606173, (b) Chong Bong (Greenlight) (Blue Nouvelle) 8909575, (c) Chong Rim 2 8916293, (d) Hoe Ryong 9041552, (e) Hu Chang (O Un Chong Nyon) 8330815, (f) Hui Chon (Hwang Gum San 2) 8405270, (g) Ji Hye San (Hyok Sin 2) 8018900, (h) Kang Gye (Pi Ryu Gang) 8829593, (i) Mi Rim 8713471, (j) Mi Rim 2 9361407, (k) O Rang (Po Thong Gang) 8829555, (l) Ra Nam 2 8625545, (m) Ra Nam 3 9314650, (n) Ryo Myong 8987333, (o) Ryong Rim (Jon Jin 2) 8018912, (p) Se Pho (Rak Won 2) 8819017, (q) Songjin (Jang Ja San Chong Nyon Ho) 8133530, (r) South Hill 2 8412467, (s) Tan Chon (Ryon Gang 2) 7640378, (t) Thae Pyong San (Petrel 1) 9009085, (u) Tong Hung San (Chong Chon Gang) 7937317, (v) Tong Hung 1 8661575.)";E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Dongheung-dong Changgwang Street, Chung-Ku, PO Box 125;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;2645;EN;;amendment;commission;2014-10-08;2014-10-08;1059/2014 (OJ L293);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7491;EU.3713.39;;2014-08-21;;(Date of UN designation: 2014-08-21)\n(Eye colour: brown, hair colour: black, weight: 77-81kg, height: 178 cm short-to-medium black beard, short black hair.\nBelongs to Shinwari tribe, Sepahi sub-tribe. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5810480);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Rahmatullah Shah Nawaz;;;Alhaj;;18282;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7491;EU.3713.39;;2014-08-21;;(Date of UN designation: 2014-08-21)\n(Eye colour: brown, hair colour: black, weight: 77-81kg, height: 178 cm short-to-medium black beard, short black hair.\nBelongs to Shinwari tribe, Sepahi sub-tribe. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5810480);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Kari Rahmat;;;;;18283;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7491;EU.3713.39;;2014-08-21;;(Date of UN designation: 2014-08-21)\n(Eye colour: brown, hair colour: black, weight: 77-81kg, height: 178 cm short-to-medium black beard, short black hair.\nBelongs to Shinwari tribe, Sepahi sub-tribe. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5810480);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Qari Rahmat;EN;;;;109767;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7491;EU.3713.39;;2014-08-21;;(Date of UN designation: 2014-08-21)\n(Eye colour: brown, hair colour: black, weight: 77-81kg, height: 178 cm short-to-medium black beard, short black hair.\nBelongs to Shinwari tribe, Sepahi sub-tribe. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5810480);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Nangarhar Province;Kamkai Village, Achin District;;;;;NO;;AF;AFGHANISTAN;2646;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7491;EU.3713.39;;2014-08-21;;(Date of UN designation: 2014-08-21)\n(Eye colour: brown, hair colour: black, weight: 77-81kg, height: 178 cm short-to-medium black beard, short black hair.\nBelongs to Shinwari tribe, Sepahi sub-tribe. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5810480);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Batan village, Achin District, Nangarhar Province;;;;;;NO;;AF;AFGHANISTAN;109764;EN;;amendment;council;2016-09-30;2016-09-30;2016/1736 (OJ L264);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1736&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7491;EU.3713.39;;2014-08-21;;(Date of UN designation: 2014-08-21)\n(Eye colour: brown, hair colour: black, weight: 77-81kg, height: 178 cm short-to-medium black beard, short black hair.\nBelongs to Shinwari tribe, Sepahi sub-tribe. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5810480);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Surkhel village, Achin district, Nangarhar Province;;;;;;NO;;AF;AFGHANISTAN;109765;EN;;amendment;council;2016-09-30;2016-09-30;2016/1736 (OJ L264);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1736&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7491;EU.3713.39;;2014-08-21;;(Date of UN designation: 2014-08-21)\n(Eye colour: brown, hair colour: black, weight: 77-81kg, height: 178 cm short-to-medium black beard, short black hair.\nBelongs to Shinwari tribe, Sepahi sub-tribe. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5810480);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981;;;NO;GREGORIAN;;;;Shadal Bazaar, Achin District, Nangarhar Province;AF;AFGHANISTAN;2235;EN;Shadal (variant Shadaal);amendment;council;2016-09-30;2016-09-30;2016/1736 (OJ L264);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1736&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7491;EU.3713.39;;2014-08-21;;(Date of UN designation: 2014-08-21)\n(Eye colour: brown, hair colour: black, weight: 77-81kg, height: 178 cm short-to-medium black beard, short black hair.\nBelongs to Shinwari tribe, Sepahi sub-tribe. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5810480);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982;;;NO;GREGORIAN;;;;Shadal Bazaar, Achin District, Nangarhar Province;AF;AFGHANISTAN;2236;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7491;EU.3713.39;;2014-08-21;;(Date of UN designation: 2014-08-21)\n(Eye colour: brown, hair colour: black, weight: 77-81kg, height: 178 cm short-to-medium black beard, short black hair.\nBelongs to Shinwari tribe, Sepahi sub-tribe. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5810480);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;109766;EN;;amendment;council;2016-09-30;2016-09-30;2016/1736 (OJ L264);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1736&from=EN +28/10/2022;7492;EU.3714.4;;2014-03-19;;"(Date of UN designation: 2014-03-19)\n(Believed to be in Afghanistan/Pakistan border area. Physical description: height: 180 cm; weight: approximately 90 kg; build: athletic build; eye colour: brown; hair colour: red; complexion: medium brown. Distinguishing physical marks: large round face, full beard, and walks with a limp due to plastic prosthesis in place of his left lower leg. \nEthnic background: Pashtun; Belongs to Tokhi tribe, Barkozai sub-tribe (alternative tribe spelling: Torchi). Barkozai (alternative tribe spelling: Bakorzai, ) sub-tribe, Kishta Barkorzai (lower Barkorzai) clan. Marital Status: married. Father's name: Agha Mohammad. Brother's name: Humdullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5778692)";P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Qari Saifullah Tokhi;;;Qari.;Taliban Shadow Deputy Governor and operational commander in Zabul Province, Afghanistan;18284;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7492;EU.3714.4;;2014-03-19;;"(Date of UN designation: 2014-03-19)\n(Believed to be in Afghanistan/Pakistan border area. Physical description: height: 180 cm; weight: approximately 90 kg; build: athletic build; eye colour: brown; hair colour: red; complexion: medium brown. Distinguishing physical marks: large round face, full beard, and walks with a limp due to plastic prosthesis in place of his left lower leg. \nEthnic background: Pashtun; Belongs to Tokhi tribe, Barkozai sub-tribe (alternative tribe spelling: Torchi). Barkozai (alternative tribe spelling: Bakorzai, ) sub-tribe, Kishta Barkorzai (lower Barkorzai) clan. Marital Status: married. Father's name: Agha Mohammad. Brother's name: Humdullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5778692)";P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Qari Saifullah;;;;;18285;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7492;EU.3714.4;;2014-03-19;;"(Date of UN designation: 2014-03-19)\n(Believed to be in Afghanistan/Pakistan border area. Physical description: height: 180 cm; weight: approximately 90 kg; build: athletic build; eye colour: brown; hair colour: red; complexion: medium brown. Distinguishing physical marks: large round face, full beard, and walks with a limp due to plastic prosthesis in place of his left lower leg. \nEthnic background: Pashtun; Belongs to Tokhi tribe, Barkozai sub-tribe (alternative tribe spelling: Torchi). Barkozai (alternative tribe spelling: Bakorzai, ) sub-tribe, Kishta Barkorzai (lower Barkorzai) clan. Marital Status: married. Father's name: Agha Mohammad. Brother's name: Humdullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5778692)";P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Qari Saifullah Al Tokhi;;;;;18286;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7492;EU.3714.4;;2014-03-19;;"(Date of UN designation: 2014-03-19)\n(Believed to be in Afghanistan/Pakistan border area. Physical description: height: 180 cm; weight: approximately 90 kg; build: athletic build; eye colour: brown; hair colour: red; complexion: medium brown. Distinguishing physical marks: large round face, full beard, and walks with a limp due to plastic prosthesis in place of his left lower leg. \nEthnic background: Pashtun; Belongs to Tokhi tribe, Barkozai sub-tribe (alternative tribe spelling: Torchi). Barkozai (alternative tribe spelling: Bakorzai, ) sub-tribe, Kishta Barkorzai (lower Barkorzai) clan. Marital Status: married. Father's name: Agha Mohammad. Brother's name: Humdullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5778692)";P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Saifullah Tokhi;;;;;18287;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7492;EU.3714.4;;2014-03-19;;"(Date of UN designation: 2014-03-19)\n(Believed to be in Afghanistan/Pakistan border area. Physical description: height: 180 cm; weight: approximately 90 kg; build: athletic build; eye colour: brown; hair colour: red; complexion: medium brown. Distinguishing physical marks: large round face, full beard, and walks with a limp due to plastic prosthesis in place of his left lower leg. \nEthnic background: Pashtun; Belongs to Tokhi tribe, Barkozai sub-tribe (alternative tribe spelling: Torchi). Barkozai (alternative tribe spelling: Bakorzai, ) sub-tribe, Kishta Barkorzai (lower Barkorzai) clan. Marital Status: married. Father's name: Agha Mohammad. Brother's name: Humdullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5778692)";P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Qari Sahab;;;;;18288;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7492;EU.3714.4;;2014-03-19;;"(Date of UN designation: 2014-03-19)\n(Believed to be in Afghanistan/Pakistan border area. Physical description: height: 180 cm; weight: approximately 90 kg; build: athletic build; eye colour: brown; hair colour: red; complexion: medium brown. Distinguishing physical marks: large round face, full beard, and walks with a limp due to plastic prosthesis in place of his left lower leg. \nEthnic background: Pashtun; Belongs to Tokhi tribe, Barkozai sub-tribe (alternative tribe spelling: Torchi). Barkozai (alternative tribe spelling: Bakorzai, ) sub-tribe, Kishta Barkorzai (lower Barkorzai) clan. Marital Status: married. Father's name: Agha Mohammad. Brother's name: Humdullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5778692)";P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta City, Baluchistan Province;Chalo Bawari area;;;;;NO;;PK;PAKISTAN;2647;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7492;EU.3714.4;;2014-03-19;;"(Date of UN designation: 2014-03-19)\n(Believed to be in Afghanistan/Pakistan border area. Physical description: height: 180 cm; weight: approximately 90 kg; build: athletic build; eye colour: brown; hair colour: red; complexion: medium brown. Distinguishing physical marks: large round face, full beard, and walks with a limp due to plastic prosthesis in place of his left lower leg. \nEthnic background: Pashtun; Belongs to Tokhi tribe, Barkozai sub-tribe (alternative tribe spelling: Torchi). Barkozai (alternative tribe spelling: Bakorzai, ) sub-tribe, Kishta Barkorzai (lower Barkorzai) clan. Marital Status: married. Father's name: Agha Mohammad. Brother's name: Humdullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5778692)";P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;YES;GREGORIAN;;;;Daraz Village, Jaldak wa Tarnak District, Zabul Province;AF;AFGHANISTAN;2239;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7492;EU.3714.4;;2014-03-19;;"(Date of UN designation: 2014-03-19)\n(Believed to be in Afghanistan/Pakistan border area. Physical description: height: 180 cm; weight: approximately 90 kg; build: athletic build; eye colour: brown; hair colour: red; complexion: medium brown. Distinguishing physical marks: large round face, full beard, and walks with a limp due to plastic prosthesis in place of his left lower leg. \nEthnic background: Pashtun; Belongs to Tokhi tribe, Barkozai sub-tribe (alternative tribe spelling: Torchi). Barkozai (alternative tribe spelling: Bakorzai, ) sub-tribe, Kishta Barkorzai (lower Barkorzai) clan. Marital Status: married. Father's name: Agha Mohammad. Brother's name: Humdullah. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5778692)";P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;828;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN +28/10/2022;7493;EU.3715.66;;2014-07-31;;(Date of UN designation: 2014-07-31)\n(Senior Haqqani Network (HQN) member. Injured leg. Father's name is Hajji Meyawar Khan (deceased). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5807173);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Yahya Haqqani;;;;Senior Haqqani Network (HQN) member.;18289;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7493;EU.3715.66;;2014-07-31;;(Date of UN designation: 2014-07-31)\n(Senior Haqqani Network (HQN) member. Injured leg. Father's name is Hajji Meyawar Khan (deceased). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5807173);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Yaya;;;;;18290;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7493;EU.3715.66;;2014-07-31;;(Date of UN designation: 2014-07-31)\n(Senior Haqqani Network (HQN) member. Injured leg. Father's name is Hajji Meyawar Khan (deceased). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5807173);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Qari Sahab;;;;;18291;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7493;EU.3715.66;;2014-07-31;;(Date of UN designation: 2014-07-31)\n(Senior Haqqani Network (HQN) member. Injured leg. Father's name is Hajji Meyawar Khan (deceased). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5807173);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;A Haqqani Madrassa in the Afghanistan/Pakistan Border Area;;;;;;NO;(A Haqqani Madrassa in the Afghanistan/Pakistan Border Area);AF;AFGHANISTAN;111246;EN;A Haqqani Madrassa in the Afghanistan/Pakistan Border Area;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7493;EU.3715.66;;2014-07-31;;(Date of UN designation: 2014-07-31)\n(Senior Haqqani Network (HQN) member. Injured leg. Father's name is Hajji Meyawar Khan (deceased). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5807173);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;2240;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7493;EU.3715.66;;2014-07-31;;(Date of UN designation: 2014-07-31)\n(Senior Haqqani Network (HQN) member. Injured leg. Father's name is Hajji Meyawar Khan (deceased). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5807173);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;2241;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7493;EU.3715.66;;2014-07-31;;(Date of UN designation: 2014-07-31)\n(Senior Haqqani Network (HQN) member. Injured leg. Father's name is Hajji Meyawar Khan (deceased). INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5807173);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;829;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN +28/10/2022;7494;EU.3716.31;;2014-07-31;;(Date of UN designation: 2014-07-31)\n(Father's name is Bakhta Jan. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/5807179);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Saidullah Jan;;;;Senior member of the Haqqani Network -HQN (as of 2013);18292;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7494;EU.3716.31;;2014-07-31;;(Date of UN designation: 2014-07-31)\n(Father's name is Bakhta Jan. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/5807179);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abid Khan;;;;;18293;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7494;EU.3716.31;;2014-07-31;;(Date of UN designation: 2014-07-31)\n(Father's name is Bakhta Jan. INTERPOL-UN Security Council Special Notice web link: https://www. interpol.int/en/notice/search/un/5807179);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982;;;NO;GREGORIAN;;;;Giyan District, Paktika Province;AF;AFGHANISTAN;2242;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7495;EU.3717.93;;2014-07-31;;(Date of UN designation: 2014-07-31)\n(Address: Located in the Afghanistan / Pakistan Border Area. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/5807181);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Muhammad Omar Zadran;;;(a) Maulavi, (b) Mullah;Haqqani Network (HQN) leader in command of over 100 militants active in Khost Province, Afghanistan as of 2013.;18294;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7495;EU.3717.93;;2014-07-31;;(Date of UN designation: 2014-07-31)\n(Address: Located in the Afghanistan / Pakistan Border Area. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/5807181);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammad-Omar Jadran;;;Maulavi;;18295;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7495;EU.3717.93;;2014-07-31;;(Date of UN designation: 2014-07-31)\n(Address: Located in the Afghanistan / Pakistan Border Area. \nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/ un/5807181);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;NO;GREGORIAN;;;;Sultan Kheyl Village, Spera District, Khost Province;AF;AFGHANISTAN;2243;EN;;amendment;council;2014-10-08;2014-10-08;1057/2014 (OJ L293);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_293_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7496;EU.3756.35;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Head of African foreign fighters for al-Shabaab. Date of UN designation: 23.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Maalim Salman;;;;;18306;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7496;EU.3756.35;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Head of African foreign fighters for al-Shabaab. Date of UN designation: 23.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Mu'alim Salman;;;;;18307;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7496;EU.3756.35;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Head of African foreign fighters for al-Shabaab. Date of UN designation: 23.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Mualem Suleiman;;;;;18308;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7496;EU.3756.35;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Head of African foreign fighters for al-Shabaab. Date of UN designation: 23.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Ameer Salman;;;;;18309;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7496;EU.3756.35;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Head of African foreign fighters for al-Shabaab. Date of UN designation: 23.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Ma'alim Suleiman;;;;;18310;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7496;EU.3756.35;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Head of African foreign fighters for al-Shabaab. Date of UN designation: 23.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Maalim Salman Ali;;;;;18311;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7496;EU.3756.35;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Head of African foreign fighters for al-Shabaab. Date of UN designation: 23.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Maalim Selman Ali;;;;;18312;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7496;EU.3756.35;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Head of African foreign fighters for al-Shabaab. Date of UN designation: 23.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Ma'alim Selman;;;;;18313;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7496;EU.3756.35;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Head of African foreign fighters for al-Shabaab. Date of UN designation: 23.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Ma'alin Sulayman;;;;;18314;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7496;EU.3756.35;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Head of African foreign fighters for al-Shabaab. Date of UN designation: 23.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;SO;SOMALIA;2662;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7496;EU.3756.35;;2014-09-23;;(Date of UN designation: 2014-09-23)\n(Other information: Head of African foreign fighters for al-Shabaab. Date of UN designation: 23.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979;;;YES;GREGORIAN;;;;Nairobi;KE;KENYA;2249;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7497;EU.3757.0;;2014-09-24;;(Date of UN designation: 2014-09-24)\n(Other information: New emir of Al-Shabaab. Date of UN designation: 24.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Ahmed Diriye;;;;;18315;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7497;EU.3757.0;;2014-09-24;;(Date of UN designation: 2014-09-24)\n(Other information: New emir of Al-Shabaab. Date of UN designation: 24.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Sheikh Ahmed Umar Abu Ubaidah;;;;;18316;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7497;EU.3757.0;;2014-09-24;;(Date of UN designation: 2014-09-24)\n(Other information: New emir of Al-Shabaab. Date of UN designation: 24.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Sheikh Omar Abu Ubaidaha;;;;;18317;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7497;EU.3757.0;;2014-09-24;;(Date of UN designation: 2014-09-24)\n(Other information: New emir of Al-Shabaab. Date of UN designation: 24.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Sheikh Ahmed Umar;;;;;18318;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7497;EU.3757.0;;2014-09-24;;(Date of UN designation: 2014-09-24)\n(Other information: New emir of Al-Shabaab. Date of UN designation: 24.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Sheikh Mahad Omar Abdikarim;;;;;18319;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7497;EU.3757.0;;2014-09-24;;(Date of UN designation: 2014-09-24)\n(Other information: New emir of Al-Shabaab. Date of UN designation: 24.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Abu Ubaidah;;;;;18320;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7497;EU.3757.0;;2014-09-24;;(Date of UN designation: 2014-09-24)\n(Other information: New emir of Al-Shabaab. Date of UN designation: 24.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;Abu Diriye;;;;;18321;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7497;EU.3757.0;;2014-09-24;;(Date of UN designation: 2014-09-24)\n(Other information: New emir of Al-Shabaab. Date of UN designation: 24.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;SO;SOMALIA;2663;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7497;EU.3757.0;;2014-09-24;;(Date of UN designation: 2014-09-24)\n(Other information: New emir of Al-Shabaab. Date of UN designation: 24.9.2014.);P;person;amendment;council;2017-03-08;2017-03-08;2017/395 (OJ L60);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0395&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;YES;GREGORIAN;;;;;SO;SOMALIA;2250;EN;;amendment;council;2014-10-20;2014-10-20;1104/2014 (OJ L301);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7498;EU.3801.73;;;;(Date of listing: 21.10.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Houmam JAZA'IRI;;M;;Former Minister of Economy and Foreign Trade in power after May 2011, then member of the board of Syriatel (until May 2019).;18322;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7498;EU.3801.73;;;;(Date of listing: 21.10.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Humam al-Jazaeri;;;;;18323;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7498;EU.3801.73;;;;(Date of listing: 21.10.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;al-Jazairi;Hammam;;Hammam al-Jazairi;EN;;;;109692;EN;;amendment;council;2017-05-30;2017-05-31;2017/907 (OJ L139);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0907&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7498;EU.3801.73;;;;(Date of listing: 21.10.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;2251;EN;;amendment;council;2014-10-20;2014-10-20;1105/2014 (OJ L301);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7499;EU.3807.57;;2014-10-21;;(Date of UN designation: 2014-10-21);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Mohamad Amer MARDINI;;M;;Former Minister of Higher Education in power after May 2011 (appointed 27.8.2014).;18324;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7499;EU.3807.57;;2014-10-21;;(Date of UN designation: 2014-10-21);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Mohammad Amer Mardini;;M;;;18325;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7499;EU.3807.57;;2014-10-21;;(Date of UN designation: 2014-10-21);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Mohammad Amer AL-MARDINI;;M;;;129688;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7499;EU.3807.57;;2014-10-21;;(Date of UN designation: 2014-10-21);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Mohamed Amer AL-MARDINI;;M;;;129689;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7499;EU.3807.57;;2014-10-21;;(Date of UN designation: 2014-10-21);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Mohamad Amer AL-MARDINI;;M;;;129690;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7499;EU.3807.57;;2014-10-21;;(Date of UN designation: 2014-10-21);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Mohamed Amer MARDINI;;M;;;129691;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7499;EU.3807.57;;2014-10-21;;(Date of UN designation: 2014-10-21);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;2252;EN;;amendment;council;2014-10-20;2014-10-20;1105/2014 (OJ L301);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7500;EU.3808.22;;;;(Date of listing: 21.10.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamad Ghazi JALALI;;M;;Former Minister of Communications and Technology in power after May 2011 (appointed 27.8.2014).;18326;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7500;EU.3808.22;;;;(Date of listing: 21.10.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Ghazi al-Jalali;;;;;18327;EN;;amendment;council;2014-10-20;2014-10-20;1105/2014 (OJ L301);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7500;EU.3808.22;;;;(Date of listing: 21.10.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;2253;EN;;amendment;council;2014-10-20;2014-10-20;1105/2014 (OJ L301);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7501;EU.3810.12;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hassan NOURI;;M;;Former Minister of Administrative Development in power after May 2011 (appointed 27.8.2014).;18328;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7501;EU.3810.12;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hassan al-Nouri;;M;;;18329;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7501;EU.3810.12;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-02-09;9;2;1960;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;2254;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7502;EU.3809.84;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Kamal CHEIKHA;;M;;Former Minister of Water Resources in power after May 2011 (appointed 27.8.2014).;18330;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7502;EU.3809.84;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Kamal al-Sheikha;;M;;;18331;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7502;EU.3809.84;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;2255;EN;;amendment;council;2014-10-20;2014-10-20;1105/2014 (OJ L301);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7503;EU.2944.33;;;Date of listing: 21.10.2014;(Designation details: Date of listing: 21.10.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Walid GHAZAL;;M;;Former Minister of Housing and Urban Development (appointed 27.8.2014).;18332;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7503;EU.2944.33;;;Date of listing: 21.10.2014;(Designation details: Date of listing: 21.10.2014);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951;;;NO;GREGORIAN;;;;Aleppo;SY;SYRIAN ARAB REPUBLIC;2256;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7504;EU.3811.74;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalaf Souleymane ABDALLAH;;M;;Former Minister of Labour in power after May 2011 (appointed 27.8.2014).;18333;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7504;EU.3811.74;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khalaf Sleiman al-Abdullah;;M;;;18334;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7504;EU.3811.74;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;;;Deir ez-Zor;SY;SYRIAN ARAB REPUBLIC;2257;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7505;EU.2947.25;;2014-10-21;;(Date of UN designation: 2014-10-21);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Nizar Wahbeh YAZAJI;;M;;Former Minister of Health;18335;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7505;EU.2947.25;;2014-10-21;;(Date of UN designation: 2014-10-21);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Nizar Wehbe Yazigi;;M;;;18336;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7505;EU.2947.25;;2014-10-21;;(Date of UN designation: 2014-10-21);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;نزار وهبه يازجي;AR;M;;;126570;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7505;EU.2947.25;;2014-10-21;;(Date of UN designation: 2014-10-21);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;2258;EN;;amendment;council;2014-10-20;2014-10-20;1105/2014 (OJ L301);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7506;EU.3812.39;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hassan SAFIYEH;;M;;Former Minister of Internal Trade and Consumer Protection in power after May 2011 (appointed 27.8.2014).;18337;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7506;EU.3812.39;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hassan Safiye;;;;;18338;EN;;amendment;council;2014-10-20;2014-10-20;1105/2014 (OJ L301);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7506;EU.3812.39;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949;;;NO;GREGORIAN;;;;Latakia;SY;SYRIAN ARAB REPUBLIC;2259;EN;;amendment;council;2014-10-20;2014-10-20;1105/2014 (OJ L301);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7507;EU.3813.4;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Issam KHALIL;;M;;Former Minister of Culture in power after May 2011 (appointed 27.8.2014).;18339;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7507;EU.3813.4;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;NO;GREGORIAN;;;Tartous Governorate;Banias;SY;SYRIAN ARAB REPUBLIC;2260;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7508;EU.3814.66;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Mouti' MOUAYYAD;;M;;Former Minister of State in power after May 2011 (appointed 27.8.2014).;18340;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7508;EU.3814.66;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Muti'a Moayyad;;M;;;18341;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7508;EU.3814.66;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;NO;GREGORIAN;;;;Ariha (Idlib);SY;SYRIAN ARAB REPUBLIC;2261;EN;;amendment;council;2014-10-20;2014-10-20;1105/2014 (OJ L301);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7509;EU.3815.31;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ghazwan Kheir BEK;;M;;Former Minister of Transport in power after May 2011 (appointed 27.8.2014). He was previously General Director of the Port of Tartous.;18342;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7509;EU.3815.31;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ghazqan Kheir Bek;;M;;;18343;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7509;EU.3815.31;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;;Latakia;SY;SYRIAN ARAB REPUBLIC;2262;EN;;amendment;council;2014-10-20;2014-10-20;1105/2014 (OJ L301);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7510;EU.3583.19;;2014-10-21;;(Date of UN designation: 2014-10-21);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ghassan Ahmed GHANNAM;;M;Major General;Member of the Syrian Armed Forces \nof the rank of Colonel and the equivalent or higher in post after May 2011. Major General and Commander of the 155th Missile Brigade.;18344;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7510;EU.3583.19;;2014-10-21;;(Date of UN designation: 2014-10-21);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ghassan Ahmad Ghanem;EN;M;Brigadier General;;109697;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7510;EU.3583.19;;2014-10-21;;(Date of UN designation: 2014-10-21);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Ghassan Ghannan;EN;M;Major General;;109698;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7511;EU.2948.87;;2014-10-21;;(Date of UN designation: 2014-10-21);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Mohammed BILAL;;M;Brigadier General;Senior officer in the Syrian Air Force Intelligence Service. Also associated with the listed Scientific Studies Research Centre (SSRC).;18347;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7511;EU.2948.87;;2014-10-21;;(Date of UN designation: 2014-10-21);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Muhammad Bilal;;M;Lieutenant Colonel;;18348;EN;;amendment;council;2019-05-20;2019-05-21;2019/798 (OJ L132);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.132.01.0001.01.ENG&toc=OJ:L:2019:132:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7513;EU.2949.52;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abdelhamid Khamis ABDULLAH;;M;;Chairman of Overseas Petroleum Trading Company (OPT).;18351;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7513;EU.2949.52;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abdulhamid Khamis Abdullah;;;;;18352;EN;;amendment;council;2014-10-20;2014-10-20;1105/2014 (OJ L301);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7513;EU.2949.52;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hamid Khamis;;;;;18353;EN;;amendment;council;2014-10-20;2014-10-20;1105/2014 (OJ L301);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7513;EU.2949.52;;;;(Date of listing: 21.10.2014.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abdelhamid Khamis Ahmad Adballa;;;;;18354;EN;;amendment;council;2014-10-20;2014-10-20;1105/2014 (OJ L301);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7514;EU.2957.26;;;;(Other information: Acts as an intermediary in the supply of oil to the Syrian regime. Date of listing: 21.10.2014.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Pangates International Corp Ltd;;;;;18355;EN;;amendment;council;2014-10-20;2014-10-20;1105/2014 (OJ L301);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7514;EU.2957.26;;;;(Other information: Acts as an intermediary in the supply of oil to the Syrian regime. Date of listing: 21.10.2014.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Pangates;;;;;18356;EN;;amendment;council;2014-10-20;2014-10-20;1105/2014 (OJ L301);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_301_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7514;EU.2957.26;;;;(Other information: Acts as an intermediary in the supply of oil to the Syrian regime. Date of listing: 21.10.2014.);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;P.O. Box 8177, Sharjah Airport International Free Zone;;;;;NO;;AE;UNITED ARAB EMIRATES;2664;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7517;EU.2958.88;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Derna and Jebel Akhdar, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;Ansar Al Charia Derna;;;;;18365;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7517;EU.2958.88;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Derna and Jebel Akhdar, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;Ansar al-Charia Derna;;;;;18371;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7517;EU.2958.88;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Derna and Jebel Akhdar, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;Ansar al-Sharia Derna;;;;;18372;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7517;EU.2958.88;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Derna and Jebel Akhdar, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;Ansar al-Sharia;;;;;18373;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7517;EU.2958.88;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Derna and Jebel Akhdar, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;Ansar al Sharia;;;;;18374;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7517;EU.2958.88;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Derna and Jebel Akhdar, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;Ansar al Charia;;;;;18375;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7517;EU.2958.88;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Derna and Jebel Akhdar, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;Derna;;;;;;NO;;LY;LIBYA;2675;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7517;EU.2958.88;;2014-11-19;;"(Date of UN designation: 2014-11-19)\n(Other information: (a) Operates in Derna and Jebel Akhdar, Libya; (b) Support network in Tunisia. Date of designation referred to in Article 2a(4)(b): 19.11.2014.)";E;enterprise;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;Jebel Akhdar;;;;;;NO;;LY;LIBYA;2677;EN;;amendment;commission;2014-11-28;2014-11-28;1273/2014 (OJ L344);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7518;EU.3752.78;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;KOZYAKOV;Sergey;Yurievich;Sergey Yurievich KOZYAKOV;;M;;Former so-called “Head of the Luhansk Central Election Commission”. Between October 2015 and December 2017 so-called “Minister of Justice” of the “Luhansk People’s Republic”. Listed as notary in city of Luhansk.;18384;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7518;EU.3752.78;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;KOZYAKOV;Serhiy;Yuriyovych;Serhiy Yuriyovych KOZYAKOV;;M;;;18385;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7518;EU.3752.78;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Сергей Юрьевич КОЗЬЯКОВ;;M;;;18386;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7518;EU.3752.78;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Сергій Юрійович КОЗЬЯКОВ;;M;;;109528;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7518;EU.3752.78;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Serhij Jurijovytj KOZIAKOV;SV;M;;;128363;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7518;EU.3752.78;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Sergej Jurjevitj KOZIAKOV;SV;M;;;128364;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7518;EU.3752.78;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-09-29;29;9;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;2265;EN;;amendment;council;2014-11-28;2014-11-28;1270/2014 (OJ L344);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7518;EU.3752.78;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-09-23;23;9;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;109527;EN;;amendment;council;2016-09-16;2016-09-16;2016/1661 (OJ L249);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1661&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7519;EU.3594.82;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;AKIMOV;Oleg;Konstantinovich;Oleg Konstantinovich AKIMOV;;M;;Deputy of the ‘Luhansk Economic Union’ in the ‘National Council’ of the ‘Luhansk People’s Republic’. Member of the so-called ‘People’s Council’ of the ‘Luhansk People’s Republic’. Current Chairman of the Board of the Interregional Public Organization ‘Union of Lugansk Communities’, representative of the Integration Committee ‘Russia-Donbass’ .Chairman of the Board of the Union of Compatriots.;18387;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7519;EU.3594.82;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;AKIMOV;Oleh;;Oleh AKIMOV;;M;;;18388;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7519;EU.3594.82;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АКИМОВ;Олег;Константинович;Олег Константинович АКИМОВ;;M;;;18389;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7519;EU.3594.82;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АКІМОВ;Олег;Костянтинович;Олег Костянтинович АКІМОВ;;M;;;111351;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7519;EU.3594.82;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;AKIMOV;Oleh;Kostiantynovych;Oleh Kostiantynovych AKIMOV;;M;;;111352;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7519;EU.3594.82;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleh Kostiantynovytj AKIMOV;SV;M;;;131431;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7519;EU.3594.82;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleg Konstantinovitj AKIMOV;SV;M;;;131432;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7519;EU.3594.82;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-09-15;15;9;1981;;;NO;GREGORIAN;;;;Luhansk;UA;UKRAINE;2331;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7520;EU.3595.47;;;29.11.2014;(Designation details: 29.11.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;AIRAPETYAN;Larisa;Leonidovna;Larisa Leonidovna AIRAPETYAN;;F;;Former so-called “Health Minister” of the so-called “Lugansk People's Republic”. Stood as a candidate in the so-called “elections” of 2 November 2014 to the post of the “Head” of the so-called “Lugansk People's Republic”.;18390;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7520;EU.3595.47;;;29.11.2014;(Designation details: 29.11.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Larysa AYRAPETYAN;;F;;;18391;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7520;EU.3595.47;;;29.11.2014;(Designation details: 29.11.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Larisa AIRAPETYAN;;F;;;18392;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7520;EU.3595.47;;;29.11.2014;(Designation details: 29.11.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Larysa AIRAPETYAN;;F;;;18393;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7520;EU.3595.47;;;29.11.2014;(Designation details: 29.11.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Лариса Леонидовна АЙРАПЕТЯН;;F;;;18394;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7520;EU.3595.47;;;29.11.2014;(Designation details: 29.11.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Лариса Леонідівна АЙРАПЕТЯН;;F;;;111356;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7520;EU.3595.47;;;29.11.2014;(Designation details: 29.11.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Larisa Leonidovna ZHILKO;;;;;125017;EN;maiden name;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7520;EU.3595.47;;;29.11.2014;(Designation details: 29.11.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Лариса Леонидовна ЖИЛКО;;;;;125362;EN;maiden name;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7520;EU.3595.47;;;29.11.2014;(Designation details: 29.11.2014);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-02-21;21;2;1970;;;NO;GREGORIAN;;Luhansk oblast;;Antratsit;UA;UKRAINE;2332;EN;possibly;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7521;EU.3596.12;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;SIVOKONENKO;Yuriy;Viktorovich;Yuriy Viktorovich SIVOKONENKO;;M;;Member of the ‘Parliament’ of the so-called ‘Donetsk People's Republic’ and Chairman of the public association Union of Veterans of the Donbass Berkut and a member of the public movement ‘Free Donbass’.;18395;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7521;EU.3596.12;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;SIVOKONENKO;Yuriy;;Yuriy SIVOKONENKO;;M;;;18396;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7521;EU.3596.12;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Yury SIVOKONENKO;;M;;;18397;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7521;EU.3596.12;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Yury SYVOKONENKO;;M;;;18398;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7521;EU.3596.12;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Юрий Викторович СИВОКОНЕНКО;;M;;;18399;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7521;EU.3596.12;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-08-07;7;8;1957;;;NO;GREGORIAN;;;;Stalino city (now Donetsk);UA;UKRAINE;2333;EN;Stalino city (now Donetsk);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7522;EU.3597.74;;2014-11-29;;(Date of UN designation: 2014-11-29)\n(None);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KOFMAN;Aleksandr;Igorevich;Aleksandr Igorevich KOFMAN;;M;;Former so-called “Foreign Minister” and so-called “First deputy speaker” of the “Parliament” of the “Donetsk People's Republic”. Stood as a candidate in the so-called illegal “elections” of 2 November 2014 to the post of so-called “Head” of the “Donetsk People's Republic”.;18400;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7522;EU.3597.74;;2014-11-29;;(Date of UN designation: 2014-11-29)\n(None);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Oleksandr KOFMAN;;M;;;18401;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7522;EU.3597.74;;2014-11-29;;(Date of UN designation: 2014-11-29)\n(None);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Александр Игоревич КОФМАН;;M;;;18402;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7522;EU.3597.74;;2014-11-29;;(Date of UN designation: 2014-11-29)\n(None);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Олександр Ігорович КОФМАН;;M;;;111357;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7522;EU.3597.74;;2014-11-29;;(Date of UN designation: 2014-11-29)\n(None);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-08-30;30;8;1977;;;NO;GREGORIAN;;;;Makiivka (Donetsk oblast);UA;UKRAINE;2334;EN;;amendment;council;2015-03-13;2015-03-14;2015/427 (OJ L70);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_070_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7523;EU.3598.39;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KHALIKOV;Ravil;Zakarievich;Ravil Zakarievich KHALIKOV;;M;;Former so-called ‘First Deputy Prime Minister’ and previous ‘Prosecutor-General’ of the ‘Donetsk People's Republic’. Currently ‘aide’ to the head of the Moscow branch of the Investigative Committee of Russian Federation (GSU SK).;18403;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7523;EU.3598.39;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Равіль Закарійович ХАЛІКОВ;;M;;;18404;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7523;EU.3598.39;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Равиль Закариевич ХАЛИКОВ;;M;;;111358;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7523;EU.3598.39;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KHALIKOV;Ravil;Zakariyovych;Ravil Zakariyovych KHALIKOV;;M;;;111359;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7523;EU.3598.39;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-02-23;23;2;1969;;;NO;GREGORIAN;;Romodanovskiy rayon;;Belozernoe village;RU;RUSSIAN FEDERATION;2335;EN;;amendment;council;2017-03-14;2017-03-15;2017/437 (OJ L67);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0437&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7524;EU.3599.4;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;SEMYONOV;Dmitry;Aleksandrovich;Dmitry Aleksandrovich SEMYONOV;;M;;Former ‘Deputy Prime Minster for Finances’ of the so-called ‘Lugansk People's Republic’. Remains active in supporting LNR separatist structures.;18405;EN;;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7524;EU.3599.4;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;Дмитрий Александрович СЕМЕНОВ;;;;;18406;EN;;amendment;council;2018-03-13;2018-03-14;2018/388 (OJ L69);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0388&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7524;EU.3599.4;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;SEMENOV;Dmitrii;Aleksandrovich;Dmitrii Aleksandrovich SEMENOV;;;;;18710;EN;;amendment;council;2018-03-13;2018-03-14;2018/388 (OJ L69);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0388&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7524;EU.3599.4;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-06-01;1;6;1977;;;NO;GREGORIAN;;;;;RU;RUSSIAN FEDERATION;2336;EN;;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7525;EU.4015.21;;;;(date of listing: 29/11/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;BUGROV;Oleg;Evgenevich;Oleg Evgenevich BUGROV;;M;;Former ‘Defence Minister’ of the so-called Lugansk People's Republic.;18407;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7525;EU.4015.21;;;;(date of listing: 29/11/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;БУГРОВ;Олег;Евгеньевич;Олег Евгеньевич БУГРОВ;EN;M;;;106301;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7525;EU.4015.21;;;;(date of listing: 29/11/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;БУГРОВ;Олег;Євгенович;Олег Євгенович БУГРОВ;;M;;;111360;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7525;EU.4015.21;;;;(date of listing: 29/11/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;BUHROV;Oleh;Yevhenovych;Oleh Yevhenovych BUHROV;;M;;;111361;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7525;EU.4015.21;;;;(date of listing: 29/11/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-08-29;29;8;1969;;;NO;GREGORIAN;;;Luhansk;Sverdlovsk;UA;UKRAINE;2337;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7525;EU.4015.21;;;;(date of listing: 29/11/2014);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;NO;GREGORIAN;;;Luhansk;Sverdlovsk;UA;UKRAINE;114349;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7526;EU.3614.39;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LAPTEVA;Lesya;Mikhaylovna;Lesya Mikhaylovna LAPTEVA;;F;;Working in the Fund ‘Mir Detiam’ in Moscow. Former ‘Minister of Education, Science, Culture and Religion’ of the so-called ‘Luhansk People's Republic’.;18408;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7526;EU.3614.39;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛАПТЕВА;Леся;Михайловна;Леся Михайловна ЛАПТЕВА;RU;F;;;18436;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7526;EU.3614.39;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛАПТЄВА;Леся;Михайлівна;Леся Михайлівна ЛАПТЄВА;;F;;;111362;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7526;EU.3614.39;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LAPTIEVA;Lesya;Mykhaylivna;Lesya Mykhaylivna LAPTIEVA;;F;;;111363;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7526;EU.3614.39;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТАРАСЮК;Леся;;Леся ТАРАСЮК;RU;F;;;142964;EN;Married name;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7526;EU.3614.39;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TARASYUK;Lesya;;Lesya TARASYUK;;F;;;142965;EN;Married name;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7526;EU.3614.39;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Lesia TARASIUK;SV;;;;143759;EN;Namn som gift;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7526;EU.3614.39;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Lesia Mychajlivna LAPTIEVA;SV;;;;143760;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7526;EU.3614.39;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Lesia Michajlovna LAPTEVA;SV;;;;143761;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7526;EU.3614.39;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-03-11;11;3;1976;;;NO;GREGORIAN;;;;Dzhambul/Jambul/ Taraz;KZ;KAZAKHSTAN;122868;EN;Dzhambul/Jambul/ Taraz (Kazakhstan);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7527;EU.3615.4;;;Date of listing: 29/11/2014;(Designation details: Date of listing: 29/11/2014)\n(None);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;MIKHAYLOV;Yevgeniy;Eduardovich;Yevgeniy Eduardovich MIKHAYLOV;;M;;Former so-called “Minister of the Council of Ministers” (head of the administration for governmental affairs) of the “Donetsk People's Republic”.;18409;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7527;EU.3615.4;;;Date of listing: 29/11/2014;(Designation details: Date of listing: 29/11/2014)\n(None);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;Mychaylov;Yevhen;Eduardovych;Yevhen Eduardovych Mychaylov;;M;;;18410;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7527;EU.3615.4;;;Date of listing: 29/11/2014;(Designation details: Date of listing: 29/11/2014)\n(None);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;Михайлов;Евгений;Эдуардович;Евгений Эдуардович Михайлов;;M;;;18411;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7527;EU.3615.4;;;Date of listing: 29/11/2014;(Designation details: Date of listing: 29/11/2014)\n(None);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;МИХАЙЛОВ;Євген;Едуардович;Євген Едуардович МИХАЙЛОВ;;M;;;111364;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7527;EU.3615.4;;;Date of listing: 29/11/2014;(Designation details: Date of listing: 29/11/2014)\n(None);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-03-17;17;3;1963;;;NO;GREGORIAN;;;;Arkhangelsk;RU;RUSSIAN FEDERATION;2266;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7528;EU.3616.66;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;KOSTENOK;Ihor;Vladymyrovych;Ihor Vladymyrovych KOSTENOK;;M;;"Former so-called ""Minister of Education"" of the \n""Donetsk People's Republic"". Currently working for the Donetsk Academy of \nManagement and Civil Service under the so-called \n""Head of the Donetsk People's Republic"".\nSince September 2018, Professor of the Department of \nState and Municipal Administration at the Federal \nState Budgetary Educational Institution of Higher \nEducation ""Russian University of Economics. \nG.V. Plekhanov"".";18412;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7528;EU.3616.66;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Igor Vladimirovich KOSTENOK;;M;;;18413;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7528;EU.3616.66;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Игорь Владимирович КОСТЕНОК;;M;;;18414;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7528;EU.3616.66;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Igor Vladimirovitj KOSTENOK;SV;M;;;131433;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7528;EU.3616.66;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Ihor Vladymyrovytj KOSTENOK;SV;M;;;131434;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7528;EU.3616.66;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Igor Wladimirowitsch KOSTENOK;DE;M;;;131435;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7528;EU.3616.66;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-03-15;15;3;1961;;;NO;GREGORIAN;;;;Vodyanske, Dobropillia Rayon, Donetsk oblast;UA;UKRAINE;2338;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7528;EU.3616.66;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-03-15;15;3;1961;;;NO;GREGORIAN;;;;Водянское, Добропольский район Донецкой области;UA;UKRAINE;111365;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7529;EU.3979.56;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DEYNEGO;Vladislav;Nikolayevich;Vladislav Nikolayevich DEYNEGO;;M;;;18416;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7529;EU.3979.56;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДЕЙНЕГО;Владислав;Николаевич;Владислав Николаевич ДЕЙНЕГО;RU;M;;;18417;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7529;EU.3979.56;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДЕЙНЕГО;Владислав;Миколайович;Владислав Миколайович ДЕЙНЕГО;;M;;;111446;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7529;EU.3979.56;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DEYNEGO;Vladyslav;Mykolayovych;Vladyslav Mykolayovych DEYNEGO;;M;;Former 'Deputy Head' of the 'People's Council' of the so‐called 'Luhansk People's Republic'. Currently so-called 'Minister of Foreign Affairs' of the so‐called 'Luhansk People's Republic'.;111447;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7529;EU.3979.56;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DEINEGO;Vladislav;Nikolaevich;Vladislav Nikolaevich DEINEGO;;M;;;142940;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7529;EU.3979.56;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladislav Nikolajevitj DEJNEGO;SV;;;;143763;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7529;EU.3979.56;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladyslav Mykolajovytj DEJNEHO;SV;;;;143764;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7529;EU.3979.56;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-03-12;12;3;1964;;;NO;GREGORIAN;;Sumy oblast;;Romny;UA;UKRAINE;122871;EN;Ромны, Сумская область, Украина;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7529;EU.3979.56;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-03-12;12;3;1964;;;NO;GREGORIAN;;Perevalsk district, Luhansk oblast;;Gornyatskiy village;UA;UKRAINE;125018;EN;possibly;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7530;EU.4016.83;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-10-19;2022-10-19;2022/408 corrigendum (OJ L271);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0408R(01);ORLOV;Yevgeniy;Vyacheslavovich;Yevgeniy Vyacheslavovich ORLOV;;M;;Former Member of the ‘National Council’ of the so-called ‘Donetsk People’s Republic’. Former chairman of the public movement ‘Free Donbass’. Former Deputy Chairman of the DPR National Assembly Committee on Industry and Trade.;18418;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7530;EU.4016.83;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-10-19;2022-10-19;2022/408 corrigendum (OJ L271);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0408R(01);ORLOV;Yevhen;Vyacheslavovych;Yevhen Vyacheslavovych ORLOV;;M;;;18419;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7530;EU.4016.83;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-10-19;2022-10-19;2022/408 corrigendum (OJ L271);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0408R(01);ОРЛОВ;Евгений;Вячеславович;Евгений Вячеславович ОРЛОВ;;M;;;18420;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7530;EU.4016.83;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-10-19;2022-10-19;2022/408 corrigendum (OJ L271);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0408R(01);;;;Jevhen Vjatjeslavovytj ORLOV;SV;M;;;131436;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7530;EU.4016.83;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-10-19;2022-10-19;2022/408 corrigendum (OJ L271);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0408R(01);;;;Jevgenij Vjatjeslavovitj ORLOV;SV;M;;;131437;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7530;EU.4016.83;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-10-19;2022-10-19;2022/408 corrigendum (OJ L271);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0408R(01);;;;Jewgeni Wjatscheslawowitsch ORLOW;DE;M;;;131438;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7530;EU.4016.83;;2014-11-29;;(Date of UN designation: 2014-11-29);P;person;amendment;council;2022-10-19;2022-10-19;2022/408 corrigendum (OJ L271);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0408R(01);;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-10-21;21;10;1983;;;NO;GREGORIAN;;Donetsk region;;Snezhnoye;UA;UKRAINE;122869;EN;Снежное Донецкой области, Украина;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Public movement “Donetsk Republic”;;;;;18421;EN;Public “organisation” that \npresented candidates in the so \ncalled “elections” of the so \ncalled “Donetsk People’s \nRepublic” on 2 November \n2014 and 11 November 2018.;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Общественное движение “Донецкая республика”;;;;;18422;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Movimiento público “República de Donetsk”;ES;;;;131500;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Обществено движение „Донецка република“;BG;;;;131501;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Folkebevægelsen »Donetsk Republic«;DA;;;;131502;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Veřejné hnutí „Doněcká republika“;CS;;;;131503;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Rahvaliikumine „Donetski Vabariik“;ET;;;;131504;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Öffentliche Bewegung „Republik Donezk“;DE;;;;131505;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Mouvement public “République de Donetsk”;FR;;;;131506;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Δημόσιο κίνημα “Δημοκρατία του Ντονέτσκ”;EL;;;;131507;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Movimento pubblico “Repubblica di Donetsk”;IT;;;;131508;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Javni pokret „Republika Donjeck”;HR;;;;131509;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;»Donyecki Köztársaság« népi mozgalom;HU;;;;131510;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Viešasis judėjimas „Donetsk Republic“;LT;;;;131511;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Sabiedriska kustība “Donetsk Republic”;LV;;;;131512;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Mișcarea publică «Republica Donețk»;RO;;;;131513;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Movimento público “República de Donetsk”;PT;;;;131514;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Ruch społeczny »Republika Doniecka«;PL;;;;131515;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Volksbeweging “Republiek Donetsk”;NL;;;;131516;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Moviment pubbliku “Repubblika ta’ Donetsk”;MT;;;;131517;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;”Donetskin tasavalta” -kansanliike;FI;;;;131518;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Javno gibanje ‚Republika Doneck‘;SL;;;;131519;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Verejné hnutie „Donecká republika“;SK;;;;131520;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7531;EU.2966.62;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;Donetsk, Universitetskaya 19;;;;;NO;WEB[http://oddr.info/]\nEMAIL[orgotdel@oddr.info]\n(г. Донецк, ул. \nУниверситетская\n, дом 19);00;UNKNOWN;118092;EN;г. Донецк, ул. \nУниверситетская\n, дом 19;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Public movement ‘Peace to Luhansk Region’;;;;;18423;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Общественное движение ‘Мир Луганщине’;;;;;18424;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Mir Luganschine;;;;;18425;EN;;amendment;council;2017-09-14;2017-09-15;2018/1230 (OJ L231/1);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1230&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Öffentliche Bewegung „Frieden für die Region Luhansk“;DE;;;;128578;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Folkebevægelsen »Fred i Luhanskregionen«;DA;;;;128579;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Mír Luhansku;CS;;;;128580;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Movimiento público “Paz para la Región de Luhansk”;ES;;;;128581;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Обществено движение „Мир за Луганския район“;BG;;;;128582;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Javni pokret „Mir regiji Lugansk”;HR;;;;128583;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Mouvement public “Paix pour la région de Lougansk”;FR;;;;128584;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Δημόσιο κίνημα “Ειρήνη στην περιοχή του Λουχάνσκ;EL;;;;128585;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Rahu Luganski piirkonnale;ET;;;;128586;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Viešasis judėjimas „Taika Luhansko regionui“;LT;;;;128587;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Sabiedriskā kustība “Miers Luhanskas reģionam”;LV;;;;128588;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Movimento pubblico “Pace per la regione di Luhansk”;IT;;;;128589;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Volksbeweging “Vrede voor de Regio Loehansk”;NL;;;;128590;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Il-moviment pubbliku “Paċi għar-Reġjun ta’ Luhansk”;MT;;;;128591;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Békét a Luhanszki Régiónak;HU;;;;128592;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Movimento público «Paz para a Região de Luhansk»;PT;;;;128593;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Mir Ługanszczinie;PL;;;;128594;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Ruch społeczny Pokój Ługańszczyźnie;PL;;;;128595;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Javno gibanje ‚Mir za Lugansko okrožje‘;SL;;;;128596;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Verejné hnutie „Mier Luhanskému regiónu“;SK;;;;128597;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Mișcarea publică Pace pentru Regiunea Lugansk;RO;;;;128598;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Kansanliike ”Rauha Luhanskin alueelle”;FI;;;;128599;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Veřejné hnutí „Peace to Luhansk Region“;CS;;;;137592;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Gluaiseacht phoblí ‘Peace to Luhansk Region’;GA;;;;137593;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Rahvaliikumine „Peace to Luhansk Region“;ET;;;;137594;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Folkrörelsen ”Peace to Luhansk Region”;SV;;;;137595;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7532;EU.4027.49;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;Luhansk;Karl Marx Street 7;;;;;NO;WEB[https://mir-lug.info/]\nEMAIL[info@mir-lug.info]\n(улица Карла Маркса, 7, г. Луганск, Украина);UA;UKRAINE;122889;EN;улица Карла Маркса, 7, г. Луганск, Украина;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Public movement ‘Free Donbass’;;;;;18426;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;"""Free Donbas""";;;;;18427;EN;;amendment;council;2019-03-15;2019-03-16;2019/408 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0408&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;"""Svobodny Donbass""";;;;;18428;EN;;amendment;council;2019-03-15;2019-03-16;2019/408 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0408&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Общественное движение ‘Свободньιй Донбасс’;;;;;18429;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Δημόσιο κίνημα “Ελεύθερο Ντονμπάς”;EL;;;;137596;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Rahvaliikumine „Free Donbass“;ET;;;;137597;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Öffentliche Bewegung „Freies Donbass“;DE;;;;137598;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Folkebevægelsen »Frit Donbass«;DA;;;;137599;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Veřejné hnutí „Free Donbass“;CS;;;;137600;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Movimiento público “Free Donbass”;ES;;;;137601;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Обществено движение „Свободен Донбас“;BG;;;;137602;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Viešasis judėjimas „Free Donbass“;LT;;;;137603;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Sabiedriskā kustība “Free Donbass”;LV;;;;137604;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Movimento pubblico “Donbass libero”;IT;;;;137605;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Javni pokret „Slobodni Donbas”;HR;;;;137606;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Gluaiseacht Phoiblí ‘Free Donbass’;GA;;;;137607;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Mouvement public “Donbass libre”;FR;;;;137608;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Mișcarea publică «Libertate pentru Donbass»;RO;;;;137609;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Movimento público Donbass Livre;PT;;;;137610;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Ruch społeczny Wolny Donbas;PL;;;;137611;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Publieke organisatie Vrij Donbass;NL;;;;137612;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Moviment pubbliku “Donbass Ħieles”;MT;;;;137613;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;„Szabad Donyec-medence” („Free Donbass”) mozgalom;HU;;;;137614;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Folkrörelsen ”Free Donbass”;SV;;;;137615;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Kansanliike ”Vapaa Donbass”;FI;;;;137616;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Javno gibanje ‚Svobodni Donbas‘;SL;;;;137617;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Verejné hnutie „Slobodný Donbas“;SK;;;;137618;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;102, Khmelnitsky Ave., Donetsk (office 512);;;;;NO;"WEB[http://www.odsd.ru/; https://xn--d1aa2an.xn--p1ai/]\nEMAIL[press-odsd@yandex.ru]";00;UNKNOWN;114398;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7533;EU.4053.95;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;Донецк, пр. Б.Хмельницкого, 102, офис 512;;;;;NO;"WEB[http://www.odsd.ru/; https://xn--d1aa2an.xn--p1ai/]\nEMAIL[press-odsd@yandex.ru]";00;UNKNOWN;137620;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7534;EU.2967.27;;;Date of Listing: 29.11.2014;(Designation details: Date of Listing: 29.11.2014);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;People's Union;;;;Public ‘organisation’ that presented candidates in the so called ‘elections’ of the so called ‘Luhansk People's Republic’ 2 November 2014.;18430;EN;de-registered in 2018;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7534;EU.2967.27;;;Date of Listing: 29.11.2014;(Designation details: Date of Listing: 29.11.2014);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;People's Union (Narodny Soyuz);;;;;18431;EN;;amendment;council;2014-11-28;2014-11-28;1270/2014 (OJ L344);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7534;EU.2967.27;;;Date of Listing: 29.11.2014;(Designation details: Date of Listing: 29.11.2014);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;Народный союз;;;;;18432;EN;;amendment;council;2014-11-28;2014-11-28;1270/2014 (OJ L344);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Luhansk Economic Union;;;;;18433;EN;“Social organisation” that presented candidates in the illegal so-called “elections” of the so-called “Luhansk People’s Republic” on 2 November 2014 and 11 November 2018. Nominated a candidate, Oleg AKIMOV, to be “Head” of the so-called “Luhansk People’s Republic” in 2014 and member of the so-called “People’s Council of the Luhansk People’s Republic” in 2018.;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Luganskiy Ekonomicheskiy Soyuz;;;;;18434;EN;;amendment;council;2014-11-28;2014-11-28;1270/2014 (OJ L344);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:344:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Луганский экономический союз;;;;;18435;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Luhanský hospodářský svaz;CS;;;;128600;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Unión Económica de Lugansk;ES;;;;128601;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Лугански икономически съюз;BG;;;;128602;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Οικονομική Ένωση του Λουχάνσκ;EL;;;;128603;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Luganski majandusliit;ET;;;;128604;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Wirtschaftsunion Luhansk;DE;;;;128605;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Den Økonomiske Union Luhansk;DA;;;;128606;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Unione economica di Lugansk;IT;;;;128607;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Mir regiji Lugansk;HR;;;;128608;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Union économique de Louhansk;FR;;;;128609;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;„Luhansko ekonominė sąjunga“;LT;;;;128610;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Luhanskas ekonomikas savienība;LV;;;;128611;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Ługańska Unia Gospodarcza;PL;;;;128612;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Economische Unie van Loegansk;NL;;;;128613;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;L-Unjoni Ekonomika ta’ Luhansk;MT;;;;128614;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Luganszki Gazdasági Unió;HU;;;;128615;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Luganskij ekonomičeskij sajuz;SK;;;;128616;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Luhanský hospodársky zväz;SK;;;;128617;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Uniunea Economică Lugansk;RO;;;;128618;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;União Económica de Luhansk;PT;;;;128619;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Luhanskin talousunioni;FI;;;;128620;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Gospodarska unija Luganska;SL;;;;128621;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7535;EU.2968.89;;2014-11-29;;(Date of UN designation: 2014-11-29);E;enterprise;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;"(Official \ninformation:\nhttps://vk.com/public97306393; Telegram: https://t.me/s/od_les_lnr)";00;UNKNOWN;118091;EN;"Official \ninformation:\nhttps://vk.com/public97306393; Telegram: https://t.me/s/od_les_lnr";amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7539;EU.3651.51;;2014-06-30;;(Date of UN designation: 2014-06-30)\n(The Allied Democratic Forces (ADF) was created in 1995 and is located in the mountainous DRC-Uganda border area.);E;enterprise;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;ADF (Allied Democratic Forces);;;;;18450;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7539;EU.3651.51;;2014-06-30;;(Date of UN designation: 2014-06-30)\n(The Allied Democratic Forces (ADF) was created in 1995 and is located in the mountainous DRC-Uganda border area.);E;enterprise;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;Forces Democratiques Alliees-Armee Nationale de Liberation de l'Ouganda;;;;;18451;EN;;amendment;council;2014-12-01;2014-12-01;1275/2014 (OJ L346);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7539;EU.3651.51;;2014-06-30;;(Date of UN designation: 2014-06-30)\n(The Allied Democratic Forces (ADF) was created in 1995 and is located in the mountainous DRC-Uganda border area.);E;enterprise;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;ADF/NALU;;;;;18452;EN;;amendment;council;2014-12-01;2014-12-01;1275/2014 (OJ L346);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7539;EU.3651.51;;2014-06-30;;(Date of UN designation: 2014-06-30)\n(The Allied Democratic Forces (ADF) was created in 1995 and is located in the mountainous DRC-Uganda border area.);E;enterprise;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;NALU;EN;;;;110793;EN;;amendment;council;2017-02-07;2017-02-08;2017/199 (OJ L32);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0199&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7539;EU.3651.51;;2014-06-30;;(Date of UN designation: 2014-06-30)\n(The Allied Democratic Forces (ADF) was created in 1995 and is located in the mountainous DRC-Uganda border area.);E;enterprise;amendment;council;2020-10-19;2020-10-20;2020/1507 (OJ L345);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.345.01.0001.01.ENG&toc=OJ:L:2020:345:TOC;;;;;;;;;;;;;;;;;;;North Kivu Province;;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);2684;EN;;amendment;council;2014-12-01;2014-12-01;1275/2014 (OJ L346);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:346:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7540;EU.3967.28;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;Abdullah Yahya Al Hakim;;M;;Huthi group second-in-command;18454;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7540;EU.3967.28;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;Abu Ali al Hakim;;;;;18455;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7540;EU.3967.28;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;Abu-Ali al-Hakim;;;;;18456;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7540;EU.3967.28;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;Abdallah al-Hakim;;;;;18457;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7540;EU.3967.28;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;Abu Ali Alhakim;;;;;18458;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7540;EU.3967.28;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;Abdallah al-Mu'ayyad;;;;;18459;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7540;EU.3967.28;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;;;;;;;;;;;;;;;;Dahyan, Sa'dah Governorate;;;;;;NO;;YE;YEMEN;2685;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7540;EU.3967.28;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985;;;YES;GREGORIAN;;;;Dahyan;YE;YEMEN;2278;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7540;EU.3967.28;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984;1986;YES;GREGORIAN;;;;Sa'dah Governorate;YE;YEMEN;2279;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7540;EU.3967.28;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;832;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN +28/10/2022;7541;EU.3970.80;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(none);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;Abd al-Khaliq al-Huthi;;M;;Huthi military commander;18460;EN;;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7541;EU.3970.80;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(none);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;Abd-al-Khaliq al-Huthi;;;;;18461;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7541;EU.3970.80;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(none);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;Abd-al-Khaliq Badr-al-Din al Huthi;;;;;18462;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7541;EU.3970.80;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(none);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;'Abd al-Khaliq Badr al-Din al-Huthi;;;;;18463;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7541;EU.3970.80;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(none);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;Abu-Yunus;;;;;18464;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7541;EU.3970.80;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(none);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;Abd Al-Khaliq Al-Houthi;;;;;111733;EN;;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7541;EU.3970.80;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(none);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984;;;NO;GREGORIAN;;;;;00;UNKNOWN;2280;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7541;EU.3970.80;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(none);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;833;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN +28/10/2022;7542;EU.3968.90;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014\n(amended on 20 Nov. 2014, 23 April 2018));P;person;amendment;council;2018-05-08;2018-05-08;2018/689 (OJ L117);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0689&from=EN;;;;Ali Abdullah Saleh;;M;;"(a) President of Yemen's General People's Congress party; (b) Former President of the Republic of Yemen.";18465;EN;reportedly deceased;amendment;council;2018-05-08;2018-05-08;2018/689 (OJ L117);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0689&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7542;EU.3968.90;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014\n(amended on 20 Nov. 2014, 23 April 2018));P;person;amendment;council;2018-05-08;2018-05-08;2018/689 (OJ L117);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0689&from=EN;;;;Ali Abdallah Salih;;;;;18467;EN;;amendment;council;2018-05-08;2018-05-08;2018/689 (OJ L117);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0689&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7542;EU.3968.90;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014\n(amended on 20 Nov. 2014, 23 April 2018));P;person;amendment;council;2018-05-08;2018-05-08;2018/689 (OJ L117);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0689&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1945-03-21;21;3;1945;;;NO;GREGORIAN;;;;Bayt al-Ahmar, Sana'a Governorate;YE;YEMEN;2281;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7542;EU.3968.90;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014\n(amended on 20 Nov. 2014, 23 April 2018));P;person;amendment;council;2018-05-08;2018-05-08;2018/689 (OJ L117);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0689&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946-03-21;21;3;1946;;;NO;GREGORIAN;;;;Sana'a;YE;YEMEN;2282;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7542;EU.3968.90;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014\n(amended on 20 Nov. 2014, 23 April 2018));P;person;amendment;council;2018-05-08;2018-05-08;2018/689 (OJ L117);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0689&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1942-03-21;21;3;1942;;;NO;GREGORIAN;;;;Sana'a, Sanhan, Al-Rib' al-Sharqi;00;UNKNOWN;2283;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7542;EU.3968.90;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014\n(amended on 20 Nov. 2014, 23 April 2018));P;person;amendment;council;2018-05-08;2018-05-08;2018/689 (OJ L117);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0689&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947-03-21;21;3;1947;;;NO;GREGORIAN;;;;;00;UNKNOWN;2284;EN;;regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7542;EU.3968.90;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014\n(amended on 20 Nov. 2014, 23 April 2018));P;person;amendment;council;2018-05-08;2018-05-08;2018/689 (OJ L117);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0689&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;00016161 (passport-National passport) ((passport number));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;YE;;900;EN;(passport number);regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;; +28/10/2022;7542;EU.3968.90;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014\n(amended on 20 Nov. 2014, 23 April 2018));P;person;amendment;council;2018-05-08;2018-05-08;2018/689 (OJ L117);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0689&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;01010744444 (id-National identification card) ((national identification no));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;YE;;901;EN;(national identification no);regulation;council;2014-12-18;2014-12-18;1352/2014 (OJ L365);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2014_365_R_0007&from=EN;;;;;;;;;;;;; +28/10/2022;7542;EU.3968.90;;2014-11-07;;(Date of UN designation: 2014-11-07)\n(Date of UN designation: 7.11.2014\n(amended on 20 Nov. 2014, 23 April 2018));P;person;amendment;council;2018-05-08;2018-05-08;2018/689 (OJ L117);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0689&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;111734;EN;;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN +28/10/2022;7543;EU.3321.56;;2015-01-27;;(Date of UN designation: 2015-01-27)\n(Leading businessman operating in Syria, with interests in the engineering and construction, media, hospitality and health sector. He has financial interest in and/or holds senior and executive positions within a number of companies in Syria, in particular Hamsho international, Hamsho Communication, Mhg International, Jupiter for Investment and Tourism project and Syria Metal industries. He plays an important role in the business community in Syria as general secretary of the Damascus Chamber of Commerce (appointed by the then Minister for economy Khodr Orfali in December 2014), chairman of the China-Syria Bilateral Business Councils (since March 2014) and chairman of the Syrian Metal and Steel Council (since December 2015). He has close business relationships with key figures of the Syrian regime, including Maher Al-Assad. Mohammed Hamcho benefits from and provides support to the Syrian regime through his business interests, and is associated with persons benefiting from and providing support to this regime.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed HAMCHO;;M;;Leading businessman operating in Syria. General secretary of the Damascus Chamber of Commerce (appointed by the then Minister for economy Khodr Orfali in December 2014), chairman of the China‐Syria Bilateral Business Councils (since March 2014) and chairman of the Syrian Metal and Steel Council (since December 2015).;18473;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7543;EU.3321.56;;2015-01-27;;(Date of UN designation: 2015-01-27)\n(Leading businessman operating in Syria, with interests in the engineering and construction, media, hospitality and health sector. He has financial interest in and/or holds senior and executive positions within a number of companies in Syria, in particular Hamsho international, Hamsho Communication, Mhg International, Jupiter for Investment and Tourism project and Syria Metal industries. He plays an important role in the business community in Syria as general secretary of the Damascus Chamber of Commerce (appointed by the then Minister for economy Khodr Orfali in December 2014), chairman of the China-Syria Bilateral Business Councils (since March 2014) and chairman of the Syrian Metal and Steel Council (since December 2015). He has close business relationships with key figures of the Syrian regime, including Maher Al-Assad. Mohammed Hamcho benefits from and provides support to the Syrian regime through his business interests, and is associated with persons benefiting from and providing support to this regime.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد حمشو;AR;M;;;124387;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7543;EU.3321.56;;2015-01-27;;(Date of UN designation: 2015-01-27)\n(Leading businessman operating in Syria, with interests in the engineering and construction, media, hospitality and health sector. He has financial interest in and/or holds senior and executive positions within a number of companies in Syria, in particular Hamsho international, Hamsho Communication, Mhg International, Jupiter for Investment and Tourism project and Syria Metal industries. He plays an important role in the business community in Syria as general secretary of the Damascus Chamber of Commerce (appointed by the then Minister for economy Khodr Orfali in December 2014), chairman of the China-Syria Bilateral Business Councils (since March 2014) and chairman of the Syrian Metal and Steel Council (since December 2015). He has close business relationships with key figures of the Syrian regime, including Maher Al-Assad. Mohammed Hamcho benefits from and provides support to the Syrian regime through his business interests, and is associated with persons benefiting from and providing support to this regime.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-05-20;20;5;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;2288;EN;;amendment;council;2015-01-26;2015-01-26;2015/108 (OJ L20);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_020_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7543;EU.3321.56;;2015-01-27;;(Date of UN designation: 2015-01-27)\n(Leading businessman operating in Syria, with interests in the engineering and construction, media, hospitality and health sector. He has financial interest in and/or holds senior and executive positions within a number of companies in Syria, in particular Hamsho international, Hamsho Communication, Mhg International, Jupiter for Investment and Tourism project and Syria Metal industries. He plays an important role in the business community in Syria as general secretary of the Damascus Chamber of Commerce (appointed by the then Minister for economy Khodr Orfali in December 2014), chairman of the China-Syria Bilateral Business Councils (since March 2014) and chairman of the Syrian Metal and Steel Council (since December 2015). He has close business relationships with key figures of the Syrian regime, including Maher Al-Assad. Mohammed Hamcho benefits from and provides support to the Syrian regime through his business interests, and is associated with persons benefiting from and providing support to this regime.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;002954347 (passport-National passport) ((passport));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;904;EN;(passport);amendment;council;2015-01-26;2015-01-26;2015/108 (OJ L20);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_020_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;7544;EU.3323.83;;2015-01-27;;(Date of UN designation: 2015-01-27)\n(Leading businessperson operating in Syria, with interests and/or activities in the telecommunications, oil and plastic industry sectors and close business relations with Maher Al-Assad. Associate of Maher Al-Assad, including through his business activities.);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Khalid QADDUR;;M;;Businessman;18474;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7544;EU.3323.83;;2015-01-27;;(Date of UN designation: 2015-01-27)\n(Leading businessperson operating in Syria, with interests and/or activities in the telecommunications, oil and plastic industry sectors and close business relations with Maher Al-Assad. Associate of Maher Al-Assad, including through his business activities.);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;Kaddour;Khalid;;Khalid Kaddour;EN;;;;108730;EN;;amendment;council;2016-05-28;2016-05-29;2016/840 (OJ L141);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0840&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7544;EU.3323.83;;2015-01-27;;(Date of UN designation: 2015-01-27)\n(Leading businessperson operating in Syria, with interests and/or activities in the telecommunications, oil and plastic industry sectors and close business relations with Maher Al-Assad. Associate of Maher Al-Assad, including through his business activities.);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;Qaddour;Khalid;;Khalid Qaddour;EN;;;;108731;EN;;amendment;council;2016-05-28;2016-05-29;2016/840 (OJ L141);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0840&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7544;EU.3323.83;;2015-01-27;;(Date of UN designation: 2015-01-27)\n(Leading businessperson operating in Syria, with interests and/or activities in the telecommunications, oil and plastic industry sectors and close business relations with Maher Al-Assad. Associate of Maher Al-Assad, including through his business activities.);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;Qadour;Khalid;;Khalid Qadour;EN;;;;108732;EN;;amendment;council;2016-05-28;2016-05-29;2016/840 (OJ L141);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0840&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7544;EU.3323.83;;2015-01-27;;(Date of UN designation: 2015-01-27)\n(Leading businessperson operating in Syria, with interests and/or activities in the telecommunications, oil and plastic industry sectors and close business relations with Maher Al-Assad. Associate of Maher Al-Assad, including through his business activities.);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;Qaddur;Khaled;;Khaled Qaddur;EN;;;;108733;EN;;amendment;council;2016-05-28;2016-05-29;2016/840 (OJ L141);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0840&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7544;EU.3323.83;;2015-01-27;;(Date of UN designation: 2015-01-27)\n(Leading businessperson operating in Syria, with interests and/or activities in the telecommunications, oil and plastic industry sectors and close business relations with Maher Al-Assad. Associate of Maher Al-Assad, including through his business activities.);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;Qaddour;Khaled;;Khaled Qaddour;;M;;;140724;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7544;EU.3323.83;;2015-01-27;;(Date of UN designation: 2015-01-27)\n(Leading businessperson operating in Syria, with interests and/or activities in the telecommunications, oil and plastic industry sectors and close business relations with Maher Al-Assad. Associate of Maher Al-Assad, including through his business activities.);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;Qadour;Khaled;;Khaled Qadour;;M;;;140725;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7544;EU.3323.83;;2015-01-27;;(Date of UN designation: 2015-01-27)\n(Leading businessperson operating in Syria, with interests and/or activities in the telecommunications, oil and plastic industry sectors and close business relations with Maher Al-Assad. Associate of Maher Al-Assad, including through his business activities.);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;Kaddour;Khaled;;Khaled Kaddour;;M;;;140726;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7544;EU.3323.83;;2015-01-27;;(Date of UN designation: 2015-01-27)\n(Leading businessperson operating in Syria, with interests and/or activities in the telecommunications, oil and plastic industry sectors and close business relations with Maher Al-Assad. Associate of Maher Al-Assad, including through his business activities.);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;خالد قدور;;M;;;140879;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7545;EU.3326.75;;2015-01-27;;"(Date of UN designation: 2015-01-27)\n(Leading businessman operating in Syria, involved in the steel, media, consumable goods and oil sectors, including in trading these goods. He has financial interest and/or holds senior executive positions in a number of companies and entities in Syria, in particular Al Jazira (aka Al Jazerra; El Jazireh), Dunia TV, and Sama Satellite Channel. Through his company Al Jazira, Ayman Jaber has facilitated the importation of oil from Overseas Petroleum Trading to Syria. Ayman Jaber benefits from and provides support to the regime, through his business interests. Provides direct support for and plays leading role in activities of regime affiliated militias known as Shabiha and/or Suqur as-Sahraa. Associate of Rami Makhlouf through his business activities and an associate of Maher Al-Assad through his role in regime affiliated militias.)";P;person;amendment;council;2016-05-28;2016-05-29;2016/840 (OJ L141);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0840&from=EN;Jabir;Ayman;;Ayman Jabir;;;;Businessman;18478;EN;;amendment;council;2015-01-26;2015-01-26;2015/108 (OJ L20);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_020_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7545;EU.3326.75;;2015-01-27;;"(Date of UN designation: 2015-01-27)\n(Leading businessman operating in Syria, involved in the steel, media, consumable goods and oil sectors, including in trading these goods. He has financial interest and/or holds senior executive positions in a number of companies and entities in Syria, in particular Al Jazira (aka Al Jazerra; El Jazireh), Dunia TV, and Sama Satellite Channel. Through his company Al Jazira, Ayman Jaber has facilitated the importation of oil from Overseas Petroleum Trading to Syria. Ayman Jaber benefits from and provides support to the regime, through his business interests. Provides direct support for and plays leading role in activities of regime affiliated militias known as Shabiha and/or Suqur as-Sahraa. Associate of Rami Makhlouf through his business activities and an associate of Maher Al-Assad through his role in regime affiliated militias.)";P;person;amendment;council;2016-05-28;2016-05-29;2016/840 (OJ L141);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0840&from=EN;Jaber;Aiman;;Aiman Jaber;;;;;18479;EN;;amendment;council;2015-01-26;2015-01-26;2015/108 (OJ L20);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_020_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7545;EU.3326.75;;2015-01-27;;"(Date of UN designation: 2015-01-27)\n(Leading businessman operating in Syria, involved in the steel, media, consumable goods and oil sectors, including in trading these goods. He has financial interest and/or holds senior executive positions in a number of companies and entities in Syria, in particular Al Jazira (aka Al Jazerra; El Jazireh), Dunia TV, and Sama Satellite Channel. Through his company Al Jazira, Ayman Jaber has facilitated the importation of oil from Overseas Petroleum Trading to Syria. Ayman Jaber benefits from and provides support to the regime, through his business interests. Provides direct support for and plays leading role in activities of regime affiliated militias known as Shabiha and/or Suqur as-Sahraa. Associate of Rami Makhlouf through his business activities and an associate of Maher Al-Assad through his role in regime affiliated militias.)";P;person;amendment;council;2016-05-28;2016-05-29;2016/840 (OJ L141);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0840&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Latakia;SY;SYRIAN ARAB REPUBLIC;2289;EN;;amendment;council;2015-01-26;2015-01-26;2015/108 (OJ L20);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_020_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7547;EU.2925.93;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;'Uthman 'Abd Al-Salam;Ashraf;Muhammad Yusuf;Ashraf Muhammad Yusuf 'Uthman 'Abd Al-Salam;;;;;18482;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7547;EU.2925.93;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Ashraf Muhammad Yusif 'Uthman 'Abd-al-Salam;;;;;18483;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7547;EU.2925.93;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Ashraf Muhammad Yusuf 'Abd-al-Salam;;;;;18484;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7547;EU.2925.93;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Ashraf Muhammad Yusif 'Abd al-Salam;;;;;18485;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7547;EU.2925.93;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Khattab;;;;;18486;EN;low quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7547;EU.2925.93;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Ibn al-Khattab;;;;;18487;EN;low quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7547;EU.2925.93;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;اشرف محمد يوسف عثمان عبد السلام;AR;;;;129107;EN;;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7547;EU.2925.93;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;(located in as at December 2014);SY;SYRIAN ARAB REPUBLIC;2687;EN;located in as at December 2014;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7547;EU.2925.93;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984;;;NO;GREGORIAN;;;;;IQ;IRAQ;2290;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7547;EU.2925.93;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"K048787 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;JO;;905;EN;;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;; +28/10/2022;7547;EU.2925.93;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"486298 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;JO;;906;EN;;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;; +28/10/2022;7547;EU.2925.93;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;JO;;835;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN +28/10/2022;7548;EU.2940.76;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;Al-Bakr;Ibrahim;'Isa Hajji Muhammad;Ibrahim 'Isa Hajji Muhammad Al-Bakr;;;;;18488;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7548;EU.2940.76;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Ibrahim 'Issa Haji Muhammad al-Bakar;;;;;18489;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7548;EU.2940.76;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Ibrahim 'Isa Haji al-Bakr;;;;;18490;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7548;EU.2940.76;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Ibrahim Issa Hijji Mohd Albaker;;;;;18491;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7548;EU.2940.76;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Ibrahim Issa Hijji Muhammad al-Baker;;;;;18492;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7548;EU.2940.76;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Ibrahim 'Issa al-Bakar;;;;;18493;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7548;EU.2940.76;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Ibrahim al-Bakr;;;;;18494;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7548;EU.2940.76;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Abu-Khalil;;;;;18495;EN;low quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7548;EU.2940.76;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;ابراهیم عیسی حاجي محمد البکر;AR;;;;129108;EN;;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7548;EU.2940.76;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-07-12;12;7;1977;;;NO;GREGORIAN;;;;;QA;QATAR;2291;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7548;EU.2940.76;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;01016646 (passport-National passport) (valid to 2017-01-11)[known to be expired];NO;YES;NO;NO;NO;;;;2017-01-11;;;passport;National passport;;QA;;908;EN;;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;; +28/10/2022;7548;EU.2940.76;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27763401255 (id-National identification card) (Qatar identification number);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;QA;;129092;EN;Qatar identification number;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;; +28/10/2022;7548;EU.2940.76;;2015-01-23;;(Date of UN designation: 2015-01-23);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA;;836;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;Batirashvili;Tarkhan;Tayumurazovich;Tarkhan Tayumurazovich Batirashvili;;;;;18496;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;Tarkhan Tayumurazovich Batyrashvili;;;;;18497;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;Tarkhan Batirashvili;;;;;18498;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;Omar Shishani;;;;;18499;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;Umar Shishani;;;;;18500;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;Abu Umar al-Shishani;;;;;18501;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;Omar al-Shishani;;;;;18502;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;Chechen Omar;;;;;18503;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;Omar the Chechen;;;;;18504;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;Omer the Chechen;;;;;18505;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;Umar the Chechen;;;;;18506;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;Abu Umar;;;;;18507;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;Abu Hudhayfah;;;;;18508;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2688;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-01-11;11;1;1986;;;NO;GREGORIAN;;;;Akhmeta, Village Birkiani;GE;GEORGIA;2292;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982;;;NO;GREGORIAN;;;;Akhmeta, Village Birkiani;GE;GEORGIA;2293;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;09 AL14455 (passport-National passport) (georgian passport, expires on 26.6.2019);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;GE;;909;EN;georgian passport, expires on 26.6.2019;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;08001007864 (id-National identification card) ((georgian national id));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;GE;;910;EN;(georgian national id);amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;; +28/10/2022;7549;EU.2941.41;;2015-01-23;;(Date of UN designation: 2015-01-23)\n(Other information: Located in the Syrian Arab Republic as at December 2014. Date of designation referred to in Article 2a(4)(b): 23.1.2015.);P;person;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GE;;837;EN;;amendment;commission;2015-02-03;2015-02-03;2015/167 (OJ L28);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_028_R_0003&from=EN +28/10/2022;7552;EU.3569.1;;2015-02-16;;(Date of UN designation: 2015-02-16)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;MILCHAKOV;Alexey;Yurevich;Alexey Yurevich MILCHAKOV;;M;;Commander of the ‘Rusich’ unit (armed separatist group involved in the fighting in eastern Ukraine).;18516;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7552;EU.3569.1;;2015-02-16;;(Date of UN designation: 2015-02-16)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Fritz;;M;;;18517;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7552;EU.3569.1;;2015-02-16;;(Date of UN designation: 2015-02-16)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Serbian;;M;;;18518;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7552;EU.3569.1;;2015-02-16;;(Date of UN designation: 2015-02-16)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;МИЛЬЧАКОВ;Алексей;Юрьевич;Алексей Юрьевич МИЛЬЧАКОВ;;M;;;18519;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7552;EU.3569.1;;2015-02-16;;(Date of UN designation: 2015-02-16)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1991-04-30;30;4;1991;;;NO;GREGORIAN;;;;St Petersburg;RU;RUSSIAN FEDERATION;106292;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7555;EU.4017.48;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;BASURIN;Eduard;Aleksandrovich;Eduard Aleksandrovich BASURIN;;M;;Spokesperson and Deputy Head of the ‘People’s Militia’ of the so-called ‘Donetsk People’s Republic’. Deputy Head and official representative of the ‘People’s Militia Department of the DPR.’;18527;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7555;EU.4017.48;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;БАСУРИН;Эдуард;Александрович;Эдуард Александрович БАСУРИН;;M;;;18528;EN;;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7555;EU.4017.48;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;BASURIN;Eduard;Oleksandrovych;Eduard Oleksandrovych BASURIN;;M;;;111451;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7555;EU.4017.48;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Едуард Олександрович БАСУРІН;;M;;;111452;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7555;EU.4017.48;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Eduard Alexandrowitsch BASURIN;DE;M;;;131439;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7555;EU.4017.48;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Eduard Oleksandrovytj BASURIN;SV;M;;;131440;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7555;EU.4017.48;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Eduard Aleksandrovitj BASURIN;SV;M;;;131441;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7555;EU.4017.48;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-06-27;27;6;1966;;;NO;GREGORIAN;;;;Donetsk;UA;UKRAINE;2340;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7556;EU.3980.81;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;SHUBIN;Alexandr;Vasilievich;Alexandr Vasilievich SHUBIN;;M;;Former so-called “Minister of Justice”, of the illegal so-called “Luhansk People's Republic”. \nFormer chairman of the “Central Election Commission” of the so- called “Luhansk People's Republic”. \nDismissed as chairman of the “Central Election Commission” of the so-called “Luhansk People's Republic” in June 2018. Registered as a notary in \nLuhansk.;18529;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7556;EU.3980.81;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;ШУБИН;Александр;Васильевич;Александр Васильевич ШУБИН;;M;;;18530;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7556;EU.3980.81;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Aleksandr Vasiljevitj SJUBIN;SV;M;;;131442;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7556;EU.3980.81;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Alexandr Wasiljewitsch SCHUBIN;DE;M;;;131443;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7556;EU.3980.81;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-05-30;30;5;1972;;;NO;GREGORIAN;;;;Luhansk;UA;UKRAINE;106280;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7556;EU.3980.81;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-05-20;20;5;1972;;;NO;GREGORIAN;;;;Luhansk;UA;UKRAINE;106281;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7558;EU.3931.41;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;IGNATOV;Sergey;Yurevich;Sergey Yurevich IGNATOV;;M;;;18533;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7558;EU.3931.41;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;ИГНАТОВ;Сергей;Юрьевич;Сергей Юрьевич ИГНАТОВ;;M;;;18534;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7558;EU.3931.41;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;KUZOVLEV;Sergey;Yurevich;Sergey Yurevich KUZOVLEV;;M;;Former so-called Commander in Chief of the People’s Militia of the ‘Luhansk People’s Republic’. Former Commander of 8th Army of the Russian Armed Force. Chief of Staff and First Deputy Commander of the Russian Southern Military District.;108158;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7558;EU.3931.41;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;ТAMБOB;Сергей;Юрьевич;Сергей Юрьевич ТAMБOB;;M;;;115865;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7558;EU.3931.41;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;КУЗОВЛЕВ;Сергей;Юрьевич;Сергей Юрьевич КУЗОВЛЕВ;;M;;;115866;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7558;EU.3931.41;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;TAMBOV;Sergey;Yurevich;Sergey Yurevich TAMBOV;;M;;;115867;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7558;EU.3931.41;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Sergej Jurjevitj TAMBOV;SV;;;;137443;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7558;EU.3931.41;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Sergej Jurjevitj IGNATOV;SV;;;;137444;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7558;EU.3931.41;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Sergej Jurjevitj KUZOVLEV;SV;;;;137445;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7558;EU.3931.41;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-01-07;7;1;1967;;;NO;GREGORIAN;;Tambov oblast;;Michurinsk;RU;RUSSIAN FEDERATION;122872;EN;Мичуринск, Тамбовская область, Российская Федерация;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7559;EU.3932.6;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;FILIPPOVA;Ekaterina;Vladimirovna;Ekaterina Vladimirovna FILIPPOVA;;F;;;18535;EN;maiden name;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7559;EU.3932.6;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Екатерина Владимировна ФИЛИППОВА;;F;;;18536;EN;maiden name;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7559;EU.3932.6;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;FILIPPOVA;Kateryna;Volodymyrivna;Kateryna Volodymyrivna FILIPPOVA;;F;;;111461;EN;maiden name;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7559;EU.3932.6;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Катерина Володимирівна ФІЛІППОВА;;F;;;111462;EN;maiden name;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7559;EU.3932.6;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Ekaterina Vladimirovna GOGIASHVILI;;F;;Former so-called ‘Minister of Justice’ of the so-called ‘Donetsk People’s Republic’. Former Director for the Department for the organisation of work of the so-called 'Council of Ministers of the Donetsk People's Republic'. Deputy Head of office of the so-called 'Ombudsperson of the Donetsk People's Republic'.;122873;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7559;EU.3932.6;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Екатерина Владимировна ГОГИАШВИЛИ;;F;;;122874;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7559;EU.3932.6;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Kateryna Volodymyrivna GOGIASHVILI;;F;;;124260;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7559;EU.3932.6;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Катерина Володимирівна ГОГІАШВІЛІ;;F;;;124261;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7559;EU.3932.6;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-01-20;20;1;1988;;;NO;GREGORIAN;;;Donetskaya oblast;Krasnoarmeysk;UA;UKRAINE;2299;EN;Krasnoarmeysk (now Pokrovsk);amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7560;EU.3933.68;;;Date of listing: 16/02/2015;(Designation details: Date of listing: 16/02/2015)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;TIMOFEEV;Aleksandr;Yurievich;Aleksandr Yurievich TIMOFEEV;;M;;Former so-called “Minister of Finance and Taxes” of the “Donetsk People's Republic”. Dismissed as so-called “Minister of Finance and Taxes” in September 2018.;18537;EN;;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7560;EU.3933.68;;;Date of listing: 16/02/2015;(Designation details: Date of listing: 16/02/2015)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;ТИМОФЕЕВ;Александр;Юрьевич;Александр Юрьевич ТИМОФЕЕВ;;M;;;18538;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7560;EU.3933.68;;;Date of listing: 16/02/2015;(Designation details: Date of listing: 16/02/2015)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Олександр Юрійович ТИМОФЕЄВ;;M;;;111463;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7560;EU.3933.68;;;Date of listing: 16/02/2015;(Designation details: Date of listing: 16/02/2015)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;TYMOFEYEV;Oleksandr;Yuriyovych;Oleksandr Yuriyovych TYMOFEYEV;;M;;;111464;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7560;EU.3933.68;;;Date of listing: 16/02/2015;(Designation details: Date of listing: 16/02/2015)\n(none);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-05-15;15;5;1971;;;NO;GREGORIAN;;;;Nevinnomyssk, Stavropol Krai;RU;RUSSIAN FEDERATION;122875;EN;Невинномысск, Ставропольский край, Российская Федерация;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7561;EU.4032.31;;;;(date of listing: 16/02/2015);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;MANUYLOV;Evgeny;Vladimirovich;Evgeny Vladimirovich MANUYLOV;;M;;So-called 'Minister of Income and Taxes’ of the so-called 'Lugansk People's Republic'.;18539;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7561;EU.4032.31;;;;(date of listing: 16/02/2015);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;МАНУЙЛОВ;Евгений;Владимирович;Евгений Владимирович МАНУЙЛОВ;;M;;;18540;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7561;EU.4032.31;;;;(date of listing: 16/02/2015);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;MANUYLOV;Yevhen;Volodymyrovych;Yevhen Volodymyrovych MANUYLOV;;M;;;111466;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7561;EU.4032.31;;;;(date of listing: 16/02/2015);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;МАНУЙЛОВ;Євген;Володимирович;Євген Володимирович МАНУЙЛОВ;;M;;;111467;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7561;EU.4032.31;;;;(date of listing: 16/02/2015);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-01-05;5;1;1967;;;NO;GREGORIAN;;Bilovodsk Raion, Luhansk region;;Baranykivka;UA;UKRAINE;122876;EN;с. Бараниковка Беловодского района Луганской области, Украина;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7562;EU.3934.33;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;YATSENKO;Viktor;Vyacheslavovich;Viktor Vyacheslavovich YATSENKO;;M;;Member of the Central Council of the Party A JUST RUSSIA - FOR THE TRUTH. Former ‘Minister of Communications’ of the so called ‘Donetsk People’s Republic’ (until October 2019).;18541;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7562;EU.3934.33;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЯЦЕНКО;Виктор;Вячеславович;Виктор Вячеславович ЯЦЕНКО;RU;M;;;18542;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7562;EU.3934.33;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЯЦЕНКО;Віктор;В'ячеславович;Віктор В'ячеславович ЯЦЕНКО;UK;M;;;111469;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7562;EU.3934.33;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;YATSENKO;Viktor;Viacheslavovych;Viktor Viacheslavovych YATSENKO;;M;;;111470;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7562;EU.3934.33;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Vjatjeslavovytj JATSENKO;SV;;;;143765;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7562;EU.3934.33;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Vjatjeslavovitj JATSENKO;SV;;;;143766;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7562;EU.3934.33;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-04-22;22;4;1985;;;NO;GREGORIAN;;;;Kherson;UA;UKRAINE;2301;EN;;amendment;council;2015-02-09;2015-02-16;2015/240 (OJ L40);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_040_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7563;EU.3482.89;;;Date of designation: 16.2.2015;(Designation details: Date of designation: 16.2.2015);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Olga Igorevna BESEDINA;;F;;Former so-called ‘Minister of Economic Development and Trade’ of the so-called ‘Lugansk People's Republic’. Former head of the foreign economy department at the Office of the head of the “Luhansk Administration”.;18543;EN;;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7563;EU.3482.89;;;Date of designation: 16.2.2015;(Designation details: Date of designation: 16.2.2015);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Ольга Игоревна БЕСЕДИНА;;F;;;18544;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7563;EU.3482.89;;;Date of designation: 16.2.2015;(Designation details: Date of designation: 16.2.2015);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;BESEDINA;Olha;Ihorivna;Olha Ihorivna BESEDINA;;F;;;111471;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7563;EU.3482.89;;;Date of designation: 16.2.2015;(Designation details: Date of designation: 16.2.2015);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Ольга Ігорівна БЕСЕДІНА;;F;;;111472;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7563;EU.3482.89;;;Date of designation: 16.2.2015;(Designation details: Date of designation: 16.2.2015);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-12-10;10;12;1976;;;NO;GREGORIAN;;;;Luhansk;UA;UKRAINE;108316;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7564;EU.3935.95;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;ISMAILOV;Zaur;Raufovich;Zaur Raufovich ISMAILOV;;M;;Former so-called 'General Prosecutor' of the so-called 'Luhansk People's Republic' (until October 2017). Currently so‐called 'Minister of Justice' of the so-called 'Luhansk People's Republic'.;18545;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7564;EU.3935.95;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Заур Рауфович ИСМАИЛОВ;EN;M;;;106269;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7564;EU.3935.95;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Заур Рауфович ІСМАЇЛОВ;;M;;;111473;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7564;EU.3935.95;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;ISMAYILOV;Zaur;Raufovych;Zaur Raufovych ISMAYILOV;;M;;;111474;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7564;EU.3935.95;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-03-23;23;3;1975;;;NO;GREGORIAN;;Voroshilovgrad, Luhansk region;;Krasny Luch;UA;UKRAINE;122877;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7564;EU.3935.95;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-07-25;25;7;1978;;;NO;GREGORIAN;;Voroshilovgrad, Luhansk region;;Krasny Luch;UA;UKRAINE;122878;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7565;EU.4033.93;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;ANTONOV;Anatoly;Ivanovich;Anatoly Ivanovich ANTONOV;;M;;Former Deputy Minister of Defence and, in that capacity, involved in supporting the deployment of Russian troops in Ukraine. As of 28 December 2016, Former Deputy Minister of Foreign Affairs. Holds a position of an Ambassador in the diplomatic corps of the Russian Federation.;18546;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7565;EU.4033.93;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Анатолий Иванович АНТОНОВ;;M;;;18547;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7565;EU.4033.93;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-05-15;15;5;1955;;;NO;GREGORIAN;;;;Omsk;RU;RUSSIAN FEDERATION;2303;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7566;EU.3936.60;;;;(Date of Listing: 16.2.2015.);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;BAKHIN;Arkady;Viktorovich;Arkady Viktorovich BAKHIN;;M;;Former First Deputy Minister of Defence (until 17 November 2015). Currently employed by Rosatom.;18548;EN;Currently employed by Rosatom.;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7566;EU.3936.60;;;;(Date of Listing: 16.2.2015.);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Аркадий Викторович БАХИН;;M;;;18549;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7566;EU.3936.60;;;;(Date of Listing: 16.2.2015.);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-05-08;8;5;1956;;;NO;GREGORIAN;;;;Kaunas;LT;LITHUANIA;2304;EN;;amendment;council;2015-02-09;2015-02-16;2015/240 (OJ L40);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_040_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7567;EU.3483.54;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;KARTAPOLOV;Andrei;Valeryevich;Andrei Valeryevich KARTAPOLOV;;M;;Former Commander of the Western Military District. Former Director of the Main Operations Department and deputy chief of the General Staff of the Armed Forces of the Russian Federation. Former Deputy Minister of Defence.\n\nMember of the State Duma since 19 September 2021.;18550;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7567;EU.3483.54;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Андрей Валерьевич КАРТAПOЛOВ;;M;;;18551;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7567;EU.3483.54;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Andrej Valerjevitj KARTAPOLOV;SV;;;;137446;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7567;EU.3483.54;;2015-02-16;;(Date of UN designation: 2015-02-16);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-11-09;9;11;1963;;;NO;GREGORIAN;;;;;DE;GERMANY;2305;EN;former German Democratic Republic;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7569;EU.3102.89;;;;(Date of Listing: 16.2.2015.);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;RASHKIN;Valery;Fedorovich;Valery Fedorovich RASHKIN;;M;;First Deputy Chairman of the State Duma Committee on Ethnicity issues.;18555;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7569;EU.3102.89;;;;(Date of Listing: 16.2.2015.);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Валерий Фëдoрoвич РАШКИН;;M;;;18556;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7569;EU.3102.89;;;;(Date of Listing: 16.2.2015.);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-03-14;14;3;1955;;;NO;GREGORIAN;;Kaliningrad region;;Zhilino;RU;RUSSIAN FEDERATION;2307;EN;;amendment;council;2015-09-15;2015-09-15;2015/1514 (OJ L239);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_239_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7570;EU.3574.80;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;Cossack National Guard;;;;Armed separatist group which has actively supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and further destabilise Ukraine. Commanded by and therefore associated with a listed person Nikolay KOZITSYN. Reportedly part of the so-called ‘2nd Army Corps’ of the ‘Lugansk People's Republic’.;18557;EN;;amendment;council;2018-03-13;2018-03-14;2018/388 (OJ L69);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0388&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7570;EU.3574.80;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;Казачья Национальная Гвардия;;;;;18558;EN;;amendment;council;2015-02-09;2015-02-16;2015/240 (OJ L40);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_040_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7570;EU.3574.80;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;WEB[http://казакнацгвард.рф/]\n(https://vk.com/kazak_nac_ guard);00;UNKNOWN;115875;EN;https://vk.com/kazak_nac_ guard;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7571;EU.4054.60;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Sparta battalion;;;;Armed separatist group which has actively sup­ported actions \nwhich undermine the territorial integrity, sovereignty and independence of Ukraine and further destabilise Ukraine. \nPart of the so-called ‘1st Army Corps’ of the ‘Donetsk People's Republic’. Referred to as the military unit 08806. \nIn November 2017, the unit was named in honour of the assassinated separatist military commander Arsen Pavlov \n(aka Motorola).;18559;EN;;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7571;EU.4054.60;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Батальон ‘Спарта’;;;;;18560;EN;;amendment;council;2015-02-09;2015-02-16;2015/240 (OJ L40);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_040_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7571;EU.4054.60;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;WEB[https://vk.com/sparta_orb]\nPHONE[+380713041088 ];00;UNKNOWN;125026;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7572;EU.4059.79;;;16.2.2015;(Designation details: 16.2.2015);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Somali battalion;;;;Armed separatist group which has actively supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and further destabilise Ukraine. Part of the so-called ‘1st Army Corps’ of the ‘Donetsk People's Republic’.;18561;EN;;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7572;EU.4059.79;;;16.2.2015;(Designation details: 16.2.2015);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Батальон ‘Сомали’;;;;;18562;EN;;amendment;council;2015-02-09;2015-02-16;2015/240 (OJ L40);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_040_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7572;EU.4059.79;;;16.2.2015;(Designation details: 16.2.2015);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;WEB[https://vk.com/club163716218/];00;UNKNOWN;125027;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7573;EU.3575.45;;2015-02-16;;(Date of UN designation: 2015-02-16)\n(none);E;enterprise;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Zarya battalion;;;;Armed separatist group;18563;EN;;amendment;council;2015-02-09;2015-02-16;2015/240 (OJ L40);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_040_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7573;EU.3575.45;;2015-02-16;;(Date of UN designation: 2015-02-16)\n(none);E;enterprise;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Батальон ‘Заря’;;;;;18564;EN;;amendment;council;2015-02-09;2015-02-16;2015/240 (OJ L40);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_040_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7573;EU.3575.45;;2015-02-16;;(Date of UN designation: 2015-02-16)\n(none);E;enterprise;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;WEB[https://vk.com/public73385255];00;UNKNOWN;122890;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Prizrak brigade;;;;;18565;EN;Armed separatist group. Part of the so-called “2nd Army Corps” of the “Lugansk People’s Republic”.\n\nAlso referred to as the 14th Motorized Rifle Battalion. Part of the so-called People’s \nMilitia of the ‘Luhansk \nPeople’s Republic’.;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Бригада “Призрак”;;;;;18566;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Ταξιαρχία “Prizrak”;EL;;;;128622;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Prizraki brigaad;ET;;;;128623;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Prizrak-Brigade;DE;;;;128624;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Prizrakbrigaden;DA;;;;128625;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Brigáda „Prizrak“;CS;;;;128626;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Brigada Prizrak;ES;;;;128627;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Brigada Prizrak;HR;;;;128628;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Brigade Prizrak;FR;;;;128629;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Brigāde “Prizrak”;LV;;;;128630;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Brigata Prizrak;MT;;;;128631;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;„Prizrak” dandár;HU;;;;128632;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Brigada „Prizrak“;LT;;;;128633;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Brigada Prizrak;PT;;;;128634;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Brygada „Prizrak”;PL;;;;128635;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Prizrak-brigade;NL;;;;128636;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Prizrak-prikaati;FI;;;;128637;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Brigada „Prizrak“;SL;;;;128638;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Brigáda Prízrak;SK;;;;128639;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Brigada Prizrak;RO;;;;128640;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Prizrakbrigaden;SV;;;;128641;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7574;EU.3959.54;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;"District 50 Year of the USSR, 18; c. of Kirovsk";;;;;NO;WEB[https://vk.com/battalionprizrak]\nPHONE[+38 (072) 199-86-39]\nEMAIL[mail@prizrak.info];00;UNKNOWN;118090;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7575;EU.3576.10;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Oplot battalion;;;;Armed separatist group which has actively supported actions which undermine the territorial integrity, sovereignty and independence \nof Ukraine and further destabilise Ukraine. Also referred to as the 5th Separate Motor Rifle Brigade, which since October 2018 is named after Alexander Zakharchenko. Reportedly part of the so-called ‘1st Army Corps’ of the ‘Donetsk People's \nRepublic’.;18567;EN;;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7575;EU.3576.10;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Батальон ‘Оплот’;;;;;18568;EN;;amendment;council;2015-02-09;2015-02-16;2015/240 (OJ L40);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_040_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7575;EU.3576.10;;2015-02-16;;(Date of UN designation: 2015-02-16);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;"WEB[ http://vk.com/oplot_info; https://vk.com/5ombroplot]\n(Social media:)";00;UNKNOWN;120954;EN;Social media:;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7576;EU.3960.79;;;16.2.2015;(Designation details: 16.2.2015);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Kalmius battalion;;;;;18569;EN;Armed separatist group which has actively supported actions which undermine the territorial integrity, sovereignty and independence of Ukraine and further destabilise Ukraine.\n\nAlso referred to as the Separate Artillery Guard Brigade (unit 08802), part of the so-called '1st Army Corps' of the 'Donetsk People's Republic'.;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7576;EU.3960.79;;;16.2.2015;(Designation details: 16.2.2015);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Батальон ‘Кальмиус’;;;;;18570;EN;;amendment;council;2015-02-09;2015-02-16;2015/240 (OJ L40);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_040_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7576;EU.3960.79;;;16.2.2015;(Designation details: 16.2.2015);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;WEB[https://vk.com/reportage24];00;UNKNOWN;125028;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7577;EU.3961.44;;2015-02-16;;(Date of UN designation: 2015-02-16)\n(none);E;enterprise;amendment;council;2017-03-14;2017-03-15;2017/437 (OJ L67);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0437&from=EN;;;;Death battalion;;;;Armed separatist group;18571;EN;Part of the so-called “2nd Army Corps” of the “Lugansk People's Republic”.;amendment;council;2017-03-14;2017-03-15;2017/437 (OJ L67);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0437&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7577;EU.3961.44;;2015-02-16;;(Date of UN designation: 2015-02-16)\n(none);E;enterprise;amendment;council;2017-03-14;2017-03-15;2017/437 (OJ L67);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0437&from=EN;;;;Батальон ‘Смерть’;;;;;18572;EN;;amendment;council;2015-02-09;2015-02-16;2015/240 (OJ L40);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_040_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7578;EU.4028.14;;;16.2.2015;(Designation details: 16.2.2015);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Movement ‘Novorossiya’ of Igor STRELKOV;;;;Public Movement. The Movement “Novorossiya”/“New Russia” was established in November 2014 in Russia and is headed by Russian officer Igor Strelkov/Girkin (identified as a staff member of the Main Intelligence Directorate of the General Staff of the Armed Forces of the Russian Federation (GRU)).;18573;EN;;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7578;EU.4028.14;;;16.2.2015;(Designation details: 16.2.2015);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Движение ‘Новороссия’ Игоря СТРЕЛКОВА;;;;;18574;EN;;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7578;EU.4028.14;;;16.2.2015;(Designation details: 16.2.2015);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;"WEB[http://novorossia.pro/; https://vk.com/od_novorossia]\nEMAIL[info@clubnb.ru ]";00;UNKNOWN;114418;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7582;EU.3494.20;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Al-Bitar;Bayan;;Bayan Al-Bitar;;;Dr.;;18581;EN;;amendment;council;2015-03-06;2015-03-06;2015/375 (OJ L64);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_064_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7582;EU.3494.20;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Bayan BITAR;;M;;Managing Director of the Organisation for Technological Industries (OTI), and the Syrian Company for Information Technology (SCIT).;18582;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7582;EU.3494.20;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;;P.O. Box 11037;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2691;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7582;EU.3494.20;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947-03-08;8;3;1947;;;NO;GREGORIAN;;;;;00;UNKNOWN;109715;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7583;EU.3495.82;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ghassan ABBAS;;M;Brigadier General;Manager of the branch of the designated Syrian Scientific Studies and Research Centre (SSRC/CERS) near Jumraya/Jmraiya.;18583;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7583;EU.3495.82;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;"CERS, Centre d'Etude et de Recherche Scientifique; a.k.a. SSRC, Scientific Studies and Research Center; Centre de Recherche de Kaboun Barzeh Street, P.O.Box 4470";;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2692;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7583;EU.3495.82;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-03-10;10;3;1960;;;NO;GREGORIAN;;;;Homs;SY;SYRIAN ARAB REPUBLIC;109725;EN;;amendment;council;2016-09-30;2016-10-01;2016/1735 (OJ L264);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1735&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7586;EU.3341.58;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;HASWANI;George;;George HASWANI;;M;;Businessperson. Holds interests in and/or has significant influence in a number of companies and entities in Syria, in particular HESCO Engineering and Construction Company, a major engineering and construction company. Hesco Engineering and Construction Company Ltd is registered at the same London address as British firm, Savero Ltd.;18588;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7586;EU.3341.58;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;Heswani;George;;George Heswani;;M;;;18589;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7586;EU.3341.58;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;Hasawani;George;;George Hasawani;;M;;;18590;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7586;EU.3341.58;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;Al Hasawani;George;;George Al Hasawani;;M;;;18591;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7586;EU.3341.58;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Yabroud, Damascus Province;Al Jalaa St;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2699;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7587;EU.3498.74;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;HAMSHO;Emad;;Emad HAMSHO;;M;;Occupies senior management position in Hamsho Trading. Vice-president of the Syrian Council of Iron and Steel. His assets include Syrian Metal Industries, a steel plant outside Damascus.;18592;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7587;EU.3498.74;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;Hmisho;Imad;;Imad Hmisho;;;;;18593;EN;;amendment;council;2015-03-06;2015-03-06;2015/375 (OJ L64);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_064_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7587;EU.3498.74;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Emad Hemasho;EN;;;;109730;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7587;EU.3498.74;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Emad Hmeisho;EN;;;;109731;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7587;EU.3498.74;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Emad Hamisho;EN;;;;109732;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7587;EU.3498.74;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Emad Hamcho;EN;;;;109733;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7587;EU.3498.74;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Emad Hamchu;EN;;;;109734;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7587;EU.3498.74;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;عماد حمشو;AR;M;;;124715;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7587;EU.3498.74;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Emad Hmisho;;;;;130471;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7587;EU.3498.74;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Imad Hemasho;;;;;130472;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7587;EU.3498.74;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Imad Hmeisho;;;;;130473;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7587;EU.3498.74;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Imad Hamisho;;;;;130474;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7587;EU.3498.74;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Imad Hamcho;;;;;130475;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7587;EU.3498.74;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Imad Hamchu;;;;;130476;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7587;EU.3498.74;;2015-03-07;;(Date of UN designation: 2015-03-07);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Damascus;Hamsho Building, 31 Baghdad Street;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2700;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7589;EU.2921.39;;;;(Date of listing: 2015-03-07. Other information: Subsidiary of the Syrian Ministry of Defence);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Organisation for Technological Industries;;;;;18612;EN;;amendment;council;2015-03-06;2015-03-06;2015/375 (OJ L64);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_064_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7589;EU.2921.39;;;;(Date of listing: 2015-03-07. Other information: Subsidiary of the Syrian Ministry of Defence);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Technical Industries Corporation (TIC);;;;;18613;EN;;amendment;council;2015-03-06;2015-03-06;2015/375 (OJ L64);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_064_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7589;EU.2921.39;;;;(Date of listing: 2015-03-07. Other information: Subsidiary of the Syrian Ministry of Defence);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;;P.O. Box 11037;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2708;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7590;EU.2922.4;;;;(Date of listing: 2015-03-07. Other information: Subsidiary of the Organisation for Technological Industries (OTI).);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Syrian Company for Information Technology;;;;;18614;EN;;amendment;council;2015-03-06;2015-03-06;2015/375 (OJ L64);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_064_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7590;EU.2922.4;;;;(Date of listing: 2015-03-07. Other information: Subsidiary of the Organisation for Technological Industries (OTI).);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;SCIT;;;;;18615;EN;;amendment;council;2015-03-06;2015-03-06;2015/375 (OJ L64);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_064_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7590;EU.2922.4;;;;(Date of listing: 2015-03-07. Other information: Subsidiary of the Organisation for Technological Industries (OTI).);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;;P.O. Box 11037;;;;NO;;SY;SYRIAN ARAB REPUBLIC;2702;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7591;EU.2923.66;;2015-03-07;;(Date of UN designation: 2015-03-07)\n(Date of listing: 2015-03-07. Other informaiton: Subsidiary of Hamsho International.);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Hamsho Trading;;;;;18616;EN;;amendment;council;2015-03-06;2015-03-06;2015/375 (OJ L64);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_064_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7591;EU.2923.66;;2015-03-07;;(Date of UN designation: 2015-03-07)\n(Date of listing: 2015-03-07. Other informaiton: Subsidiary of Hamsho International.);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Hamsho Group;;;;;18617;EN;;amendment;council;2015-03-06;2015-03-06;2015/375 (OJ L64);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_064_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7591;EU.2923.66;;2015-03-07;;(Date of UN designation: 2015-03-07)\n(Date of listing: 2015-03-07. Other informaiton: Subsidiary of Hamsho International.);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Hmisho Trading Group;;;;;18618;EN;;amendment;council;2015-03-06;2015-03-06;2015/375 (OJ L64);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_064_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7591;EU.2923.66;;2015-03-07;;(Date of UN designation: 2015-03-07)\n(Date of listing: 2015-03-07. Other informaiton: Subsidiary of Hamsho International.);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Hmisho Economic Group;;;;;18619;EN;;amendment;council;2015-03-06;2015-03-06;2015/375 (OJ L64);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_064_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7591;EU.2923.66;;2015-03-07;;(Date of UN designation: 2015-03-07)\n(Date of listing: 2015-03-07. Other informaiton: Subsidiary of Hamsho International.);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Grúpa Trádála Hmisho;GA;;;;140959;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7591;EU.2923.66;;2015-03-07;;(Date of UN designation: 2015-03-07)\n(Date of listing: 2015-03-07. Other informaiton: Subsidiary of Hamsho International.);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Damascus;Hamsho Building, 31 Baghdad Street;;;;;NO;PHONE[00963 (11) 3227530]\nEMAIL[info@hamsho-group.com]\n(Hamsho group, Damascus countryside – northern road-ring, Hamsho for trading and constructions);SY;SYRIAN ARAB REPUBLIC;2703;EN;Hamsho group, Damascus countryside – northern road-ring, Hamsho for trading and constructions;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7595;EU.2959.53;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;"(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: (a) ostensibly humanitarian wing of Jemaah Islamiyah; (b) operates in Lampung, Jakarta, Semarang, Yogyakarta, Solo, Surabaya and Makassar, Indonesia; (c) not affiliated with the humanitarian group International Federation of the Red Cross and Red Crescent Societies (IFRC).)";E;enterprise;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;Hilal Ahmar Society Indonesia (HASI);EN;;;;18715;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7595;EU.2959.53;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;"(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: (a) ostensibly humanitarian wing of Jemaah Islamiyah; (b) operates in Lampung, Jakarta, Semarang, Yogyakarta, Solo, Surabaya and Makassar, Indonesia; (c) not affiliated with the humanitarian group International Federation of the Red Cross and Red Crescent Societies (IFRC).)";E;enterprise;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;HASI;EN;;;;18716;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7595;EU.2959.53;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;"(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: (a) ostensibly humanitarian wing of Jemaah Islamiyah; (b) operates in Lampung, Jakarta, Semarang, Yogyakarta, Solo, Surabaya and Makassar, Indonesia; (c) not affiliated with the humanitarian group International Federation of the Red Cross and Red Crescent Societies (IFRC).)";E;enterprise;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;Yayasan Hilal Ahmar;EN;;;;18717;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7595;EU.2959.53;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;"(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: (a) ostensibly humanitarian wing of Jemaah Islamiyah; (b) operates in Lampung, Jakarta, Semarang, Yogyakarta, Solo, Surabaya and Makassar, Indonesia; (c) not affiliated with the humanitarian group International Federation of the Red Cross and Red Crescent Societies (IFRC).)";E;enterprise;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;Indonesia Hilal Ahmar Society for Syria;EN;;;;18718;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7596;EU.2897.65;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;"(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: (a) Member of Jemaah Islamiyah; (b) Leader of Hilal Ahmar Society Indonesia (HASI).)";P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;Pershada;Angga;Dimas;Angga Dimas Pershada;EN;;Secretary-General (as at mid-2014);;18719;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7596;EU.2897.65;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;"(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: (a) Member of Jemaah Islamiyah; (b) Leader of Hilal Ahmar Society Indonesia (HASI).)";P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;Persada;Angga;Dimas;Angga Dimas Persada;EN;;;;18720;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7596;EU.2897.65;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;"(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: (a) Member of Jemaah Islamiyah; (b) Leader of Hilal Ahmar Society Indonesia (HASI).)";P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;Prasondha;Angga;Dimas;Angga Dimas Prasondha;EN;;;;18721;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7596;EU.2897.65;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;"(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: (a) Member of Jemaah Islamiyah; (b) Leader of Hilal Ahmar Society Indonesia (HASI).)";P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;Persadha;Angga;Dimas;Angga Dimas Persadha;EN;;;;18729;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7596;EU.2897.65;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;"(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: (a) Member of Jemaah Islamiyah; (b) Leader of Hilal Ahmar Society Indonesia (HASI).)";P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-03-04;4;3;1985;;;NO;GREGORIAN;;;;;ID;INDONESIA;2344;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7596;EU.2897.65;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;"(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: (a) Member of Jemaah Islamiyah; (b) Leader of Hilal Ahmar Society Indonesia (HASI).)";P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;W344982 (passport-National passport) (Indonesian passport issued under name Angga Dimas Peshada.);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;ID;;915;EN;Indonesian passport issued under name Angga Dimas Peshada.;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;; +28/10/2022;7596;EU.2897.65;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;"(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: (a) Member of Jemaah Islamiyah; (b) Leader of Hilal Ahmar Society Indonesia (HASI).)";P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;840;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN +28/10/2022;7597;EU.842.69;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.);P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;Sukirno;Bambang;;Bambang Sukirno;EN;;;;18722;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7597;EU.842.69;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.);P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;Abu Zahra;EN;;;;18723;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7597;EU.842.69;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.);P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;Pak Zahra;EN;;;;18724;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7597;EU.842.69;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.);P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-04-05;5;4;1975;;;NO;GREGORIAN;;;;;ID;INDONESIA;2345;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7597;EU.842.69;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.);P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A2062513 (passport-National passport) (Indonesian passport number.);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;ID;;916;EN;Indonesian passport number.;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;; +28/10/2022;7597;EU.842.69;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.);P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;104658;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN +28/10/2022;7598;EU.2956.61;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: Head of the foreign affairs division of Jemaah Islamiyah.);P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;Santoso;Wiji;Joko;Wiji Joko Santoso;EN;;;;18725;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7598;EU.2956.61;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: Head of the foreign affairs division of Jemaah Islamiyah.);P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;Santoso;Wijijoko;;Wijijoko Santoso;EN;;;;18726;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7598;EU.2956.61;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: Head of the foreign affairs division of Jemaah Islamiyah.);P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;Abu Seif al-Jawi;EN;;;;18727;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7598;EU.2956.61;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: Head of the foreign affairs division of Jemaah Islamiyah.);P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;Abu Seif;EN;;;;18728;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7598;EU.2956.61;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: Head of the foreign affairs division of Jemaah Islamiyah.);P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-07-14;14;7;1975;;;NO;GREGORIAN;;;;Rembang;ID;INDONESIA;2346;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7598;EU.2956.61;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: Head of the foreign affairs division of Jemaah Islamiyah.);P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A2823222 (passport-National passport) (on 2012-05-28 valid from 2012-05-28 to 2017-05-28);NO;NO;NO;NO;NO;;2012-05-28;2012-05-28;2017-05-28;;;passport;National passport;;ID;;917;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;; +28/10/2022;7598;EU.2956.61;;2015-03-13;Date of designation referred to in Article 2a(4)(b): 13.3.2015.;(Date of UN designation: 2015-03-13)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 13.3.2015.)\n(Other information: Head of the foreign affairs division of Jemaah Islamiyah.);P;person;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;841;EN;;amendment;commission;2015-03-21;2015-03-21;2015/480 (OJ L 77);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R0480&from=EN +28/10/2022;7600;EU.2047.49;;2015-04-07;Date of designation referred to in Article 2a(4)(b): 7.4.2015.;"(Date of UN designation: 2015-04-07)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 7.4.2015.)\n(Other information: (a) Address: Afghanistan/Pakistan border region; (b) Commander of Tehrik-e Taliban Pakistan (TTP) since 7.11.2013.)";P;person;amendment;commission;2015-04-11;2015-04-11;2015/576 (OJ L 96);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_096_R_0003&from=EN;Fazlullah;Maulana;;Maulana Fazlullah;EN;;;;18736;EN;;amendment;commission;2015-04-11;2015-04-11;2015/576 (OJ L 96);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_096_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7600;EU.2047.49;;2015-04-07;Date of designation referred to in Article 2a(4)(b): 7.4.2015.;"(Date of UN designation: 2015-04-07)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 7.4.2015.)\n(Other information: (a) Address: Afghanistan/Pakistan border region; (b) Commander of Tehrik-e Taliban Pakistan (TTP) since 7.11.2013.)";P;person;amendment;commission;2015-04-11;2015-04-11;2015/576 (OJ L 96);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_096_R_0003&from=EN;Fazlullah;Mullah;;Mullah Fazlullah;EN;;;;18737;EN;;amendment;commission;2015-04-11;2015-04-11;2015/576 (OJ L 96);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_096_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7600;EU.2047.49;;2015-04-07;Date of designation referred to in Article 2a(4)(b): 7.4.2015.;"(Date of UN designation: 2015-04-07)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 7.4.2015.)\n(Other information: (a) Address: Afghanistan/Pakistan border region; (b) Commander of Tehrik-e Taliban Pakistan (TTP) since 7.11.2013.)";P;person;amendment;commission;2015-04-11;2015-04-11;2015/576 (OJ L 96);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_096_R_0003&from=EN;;;;Fazal Hayat;EN;;;;18738;EN;;amendment;commission;2015-04-11;2015-04-11;2015/576 (OJ L 96);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_096_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7600;EU.2047.49;;2015-04-07;Date of designation referred to in Article 2a(4)(b): 7.4.2015.;"(Date of UN designation: 2015-04-07)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 7.4.2015.)\n(Other information: (a) Address: Afghanistan/Pakistan border region; (b) Commander of Tehrik-e Taliban Pakistan (TTP) since 7.11.2013.)";P;person;amendment;commission;2015-04-11;2015-04-11;2015/576 (OJ L 96);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_096_R_0003&from=EN;;;;Mullah Radio;EN;;;;18739;EN;;amendment;commission;2015-04-11;2015-04-11;2015/576 (OJ L 96);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_096_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7600;EU.2047.49;;2015-04-07;Date of designation referred to in Article 2a(4)(b): 7.4.2015.;"(Date of UN designation: 2015-04-07)\n(Designation details: Date of designation referred to in Article 2a(4)(b): 7.4.2015.)\n(Other information: (a) Address: Afghanistan/Pakistan border region; (b) Commander of Tehrik-e Taliban Pakistan (TTP) since 7.11.2013.)";P;person;amendment;commission;2015-04-11;2015-04-11;2015/576 (OJ L 96);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_096_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974;;;NO;GREGORIAN;;;Swat Valley, Khyber Pakhtunkhawa Province;Kuza Bandai village;PK;PAKISTAN;2352;EN;;amendment;commission;2015-04-11;2015-04-11;2015/576 (OJ L 96);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_096_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7601;EU.3491.28;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Physical description: eye colour: brown; height: 171 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;Ouni Harzi;Ali;Ben Taher Ben Faleh;Ali Ben Taher Ben Faleh Ouni Harzi;EN;;;;18740;EN;;amendment;commission;2015-04-21;2015-04-21;2015/617 (OJ L102);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0006&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7601;EU.3491.28;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Physical description: eye colour: brown; height: 171 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;Abou Zoubair;EN;;;;18741;EN;;amendment;commission;2015-04-21;2015-04-21;2015/617 (OJ L102);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0006&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7601;EU.3491.28;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Physical description: eye colour: brown; height: 171 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;Ariana;18 Mediterranean Street;;;;;NO;;TN;TUNISIA;2711;EN;;amendment;commission;2015-04-21;2015-04-21;2015/617 (OJ L102);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0006&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7601;EU.3491.28;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Physical description: eye colour: brown; height: 171 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(previously located in);LY;LIBYA;109546;EN;previously located in;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7601;EU.3491.28;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Physical description: eye colour: brown; height: 171 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(possible alternative location as at Mar. 2015);IQ;IRAQ;109547;EN;possible alternative location as at Mar. 2015;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7601;EU.3491.28;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Physical description: eye colour: brown; height: 171 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(located in as at Mar. 2015);SY;SYRIAN ARAB REPUBLIC;109548;EN;located in as at Mar. 2015;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7601;EU.3491.28;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Physical description: eye colour: brown; height: 171 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-03-09;9;3;1986;;;NO;GREGORIAN;;;;Ariana;TN;TUNISIA;2353;EN;;amendment;commission;2015-04-21;2015-04-21;2015/617 (OJ L102);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0006&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7601;EU.3491.28;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Physical description: eye colour: brown; height: 171 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;W342058 (passport-National passport) (on 2011-03-14 valid from 2011-03-14 to 2016-03-13);NO;NO;NO;NO;NO;;2011-03-14;2011-03-14;2016-03-13;;;passport;National passport;;TN;;920;EN;;amendment;commission;2015-04-21;2015-04-21;2015/617 (OJ L102);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0006&from=EN;;;;;;;;;;;;; +28/10/2022;7601;EU.3491.28;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Physical description: eye colour: brown; height: 171 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;08705184 (id-National identification card) (on 2015-02-24);NO;NO;NO;NO;NO;;2015-02-24;;;;;id;National identification card;;TN;;921;EN;;amendment;commission;2015-04-21;2015-04-21;2015/617 (OJ L102);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0006&from=EN;;;;;;;;;;;;; +28/10/2022;7601;EU.3491.28;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Physical description: eye colour: brown; height: 171 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in an airstrike in Mosul, Iraq, in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;843;EN;;amendment;commission;2015-04-21;2015-04-21;2015/617 (OJ L102);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0006&from=EN +28/10/2022;7602;EU.3492.90;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Other information: (a) Physical description: eye colour: brown; height: 172 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;Ouni Harzi;Tarak;Ben Taher Ben Faleh;Tarak Ben Taher Ben Faleh Ouni Harzi;EN;;;;18742;EN;;amendment;commission;2015-04-21;2015-04-21;2015/617 (OJ L102);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0006&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7602;EU.3492.90;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Other information: (a) Physical description: eye colour: brown; height: 172 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;Abou Omar Al Tounisi;EN;;;;18743;EN;;amendment;commission;2015-04-21;2015-04-21;2015/617 (OJ L102);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0006&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7602;EU.3492.90;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Other information: (a) Physical description: eye colour: brown; height: 172 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;Ariana;18 Mediterranean Street;;;;;NO;;TN;TUNISIA;2712;EN;;amendment;commission;2015-04-21;2015-04-21;2015/617 (OJ L102);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0006&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7602;EU.3492.90;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Other information: (a) Physical description: eye colour: brown; height: 172 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(previously located in);LY;LIBYA;109549;EN;previously located in;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7602;EU.3492.90;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Other information: (a) Physical description: eye colour: brown; height: 172 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(possible alternative location as at March 2015);IQ;IRAQ;109550;EN;possible alternative location as at March 2015;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7602;EU.3492.90;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Other information: (a) Physical description: eye colour: brown; height: 172 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(located in as at March 2015);SY;SYRIAN ARAB REPUBLIC;109551;EN;located in as at March 2015;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7602;EU.3492.90;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Other information: (a) Physical description: eye colour: brown; height: 172 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-05-03;3;5;1982;;;NO;GREGORIAN;;;;Tunis;TN;TUNISIA;2354;EN;;amendment;commission;2015-04-21;2015-04-21;2015/617 (OJ L102);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0006&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;7602;EU.3492.90;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Other information: (a) Physical description: eye colour: brown; height: 172 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Z050399 (passport-National passport) (on 2003-12-09 valid from 2003-12-09 to 2008-12-08)[known to be expired];NO;YES;NO;NO;NO;;2003-12-09;2003-12-09;2008-12-08;;;passport;National passport;;TN;;922;EN;;amendment;commission;2015-04-21;2015-04-21;2015/617 (OJ L102);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0006&from=EN;;;;;;;;;;;;; +28/10/2022;7602;EU.3492.90;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Other information: (a) Physical description: eye colour: brown; height: 172 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;04711809 (id-National identification card) (on 2003-11-13);NO;NO;NO;NO;NO;;2003-11-13;;;;;id;National identification card;;TN;;923;EN;;amendment;commission;2015-04-21;2015-04-21;2015/617 (OJ L102);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0006&from=EN;;;;;;;;;;;;; +28/10/2022;7602;EU.3492.90;;2015-04-10;;"(Date of UN designation: 2015-04-10)\n(Other information: (a) Physical description: eye colour: brown; height: 172 cm; (b) Photo available for inclusion in the Interpol-UN Security Council Special Notice; (c) Father's name is Taher Ouni Harzi, mother's name is Borkana Bedairia. Reportedly killed in Syria in Jun. 2015.)";P;person;amendment;commission;2016-09-20;2016-09-21;2016/1683 (OJ L254);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1683&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;844;EN;;amendment;commission;2015-04-21;2015-04-21;2015/617 (OJ L102);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_102_R_0006&from=EN +28/10/2022;105210;EU.3499.39;;2015-05-29;;(Date of UN designation: 2015-05-29);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhamad MAHALLA;EN;M;Major General;Member of the Syria Armed Forces of the rank of Major General in post after May 2011. Former head of the Syrian Military Intelligence (SMI), Branch 293 (Internal Affairs), since April 2015. Former Deputy Head of Political Security (2012), Officer of the Syrian Republican Guard and Vice‐Di­rector of the Political Security Directorate. Former head of Military Police, Member of the National Security Bureau.;105216;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105210;EU.3499.39;;2015-05-29;;(Date of UN designation: 2015-05-29);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed MAHALLA;EN;;;;105217;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105210;EU.3499.39;;2015-05-29;;(Date of UN designation: 2015-05-29);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad MAHALLA;EN;;;;105218;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105210;EU.3499.39;;2015-05-29;;(Date of UN designation: 2015-05-29);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad MUHALLA;EN;;;;105248;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105210;EU.3499.39;;2015-05-29;;(Date of UN designation: 2015-05-29);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed MUHALLA;EN;;;;105249;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105210;EU.3499.39;;2015-05-29;;(Date of UN designation: 2015-05-29);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhamad MUHALLA;EN;;;;105250;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105210;EU.3499.39;;2015-05-29;;(Date of UN designation: 2015-05-29);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad MAALLA;EN;;;;105251;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105210;EU.3499.39;;2015-05-29;;(Date of UN designation: 2015-05-29);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed MAALLA;EN;;;;105252;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105210;EU.3499.39;;2015-05-29;;(Date of UN designation: 2015-05-29);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhamad MAALLA;EN;;;;105253;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105210;EU.3499.39;;2015-05-29;;(Date of UN designation: 2015-05-29);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad MUALLA;EN;;;;105254;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105210;EU.3499.39;;2015-05-29;;(Date of UN designation: 2015-05-29);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed MUALLA;EN;;;;105255;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105210;EU.3499.39;;2015-05-29;;(Date of UN designation: 2015-05-29);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhamad MUALLA;EN;;;;105256;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105210;EU.3499.39;;2015-05-29;;(Date of UN designation: 2015-05-29);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad MAHLA;EN;;;;105257;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105210;EU.3499.39;;2015-05-29;;(Date of UN designation: 2015-05-29);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed MAHLA;EN;;;;105258;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105210;EU.3499.39;;2015-05-29;;(Date of UN designation: 2015-05-29);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhamad MAHLA;EN;;;;105259;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105210;EU.3499.39;;2015-05-29;;(Date of UN designation: 2015-05-29);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد محلا;;;;;124716;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105210;EU.3499.39;;2015-05-29;;(Date of UN designation: 2015-05-29);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;;;Jableh;SY;SYRIAN ARAB REPUBLIC;105219;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105305;EU.3581.89;;2015-04-14;Date of UN designation: 14.4.2015.;(Date of UN designation: 2015-04-14)\n(Designation details: Date of UN designation: 14.4.2015.)\n(none);P;person;amendment;council;2016-09-30;2016-09-30;2016/1737 (OJ L264);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1737&from=EN;al-Houthi;Abdulmalik;;Abdulmalik al-Houthi;EN;;;Leader of Yemen's Houthi Movement.;105306;EN;;amendment;council;2015-06-09;2015-06-09;2015/879 (OJ L 143);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_143_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105305;EU.3581.89;;2015-04-14;Date of UN designation: 14.4.2015.;(Date of UN designation: 2015-04-14)\n(Designation details: Date of UN designation: 14.4.2015.)\n(none);P;person;amendment;council;2016-09-30;2016-09-30;2016/1737 (OJ L264);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1737&from=EN;al-Huthi;Abdulmalik;;Abdulmalik al-Huthi;EN;;;;109668;EN;;amendment;council;2016-09-30;2016-09-30;2016/1737 (OJ L264);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1737&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105307;EU.3969.55;;2015-04-14;Date of UN designation: 14.4.2015.;(Date of UN designation: 2015-04-14)\n(Designation details: Date of UN designation: 14.4.2015.)\n(Ahmed Saleh is the son of the former President of the Republic of Yemen, Ali Abdullah Saleh.);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;SALEH;Ahmed;Ali Abdullah;Ahmed Ali Abdullah SALEH;EN;M;Former Ambassador, former Brigadier General;;105308;EN;Son of former President of the Republic of Yemen, Ali Abdullah Saleh.;amendment;council;2015-10-27;2015-10-28;2015/1920 (OJ L 281);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_281_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105307;EU.3969.55;;2015-04-14;Date of UN designation: 14.4.2015.;(Date of UN designation: 2015-04-14)\n(Designation details: Date of UN designation: 14.4.2015.)\n(Ahmed Saleh is the son of the former President of the Republic of Yemen, Ali Abdullah Saleh.);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;Al-Ahmar;Ahmed;Ali Abdullah;Ahmed Ali Abdullah Al-Ahmar;EN;;;;106854;EN;;amendment;council;2015-10-27;2015-10-28;2015/1920 (OJ L 281);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_281_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105307;EU.3969.55;;2015-04-14;Date of UN designation: 14.4.2015.;(Date of UN designation: 2015-04-14)\n(Designation details: Date of UN designation: 14.4.2015.)\n(Ahmed Saleh is the son of the former President of the Republic of Yemen, Ali Abdullah Saleh.);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;AE;UNITED ARAB EMIRATES;106846;EN;;amendment;council;2015-10-27;2015-10-28;2015/1920 (OJ L 281);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_281_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105307;EU.3969.55;;2015-04-14;Date of UN designation: 14.4.2015.;(Date of UN designation: 2015-04-14)\n(Designation details: Date of UN designation: 14.4.2015.)\n(Ahmed Saleh is the son of the former President of the Republic of Yemen, Ali Abdullah Saleh.);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-07-25;25;7;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;106848;EN;;amendment;council;2015-10-27;2015-10-28;2015/1920 (OJ L 281);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_281_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105307;EU.3969.55;;2015-04-14;Date of UN designation: 14.4.2015.;(Date of UN designation: 2015-04-14)\n(Designation details: Date of UN designation: 14.4.2015.)\n(Ahmed Saleh is the son of the former President of the Republic of Yemen, Ali Abdullah Saleh.);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;06070777 (passport-National passport) (name on doc. 'Ahmed Ali Abdullah Al-Ahmar') (on 2014-12-03);NO;NO;NO;NO;NO;;2014-12-03;;;;(name on doc. 'Ahmed Ali Abdullah Al-Ahmar');passport;National passport;;YE;;106850;EN;;amendment;council;2015-10-27;2015-10-28;2015/1920 (OJ L 281);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_281_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;105307;EU.3969.55;;2015-04-14;Date of UN designation: 14.4.2015.;(Date of UN designation: 2015-04-14)\n(Designation details: Date of UN designation: 14.4.2015.)\n(Ahmed Saleh is the son of the former President of the Republic of Yemen, Ali Abdullah Saleh.);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;02117777 (passport-National passport) (name on doc. 'Ahmed Ali Abdullah Al-Ahmar') (on 2005-11-08);NO;NO;NO;NO;NO;;2005-11-08;;;;(name on doc. 'Ahmed Ali Abdullah Al-Ahmar');passport;National passport;;YE;;106851;EN;;amendment;council;2015-10-27;2015-10-28;2015/1920 (OJ L 281);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_281_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;105307;EU.3969.55;;2015-04-14;Date of UN designation: 14.4.2015.;(Date of UN designation: 2015-04-14)\n(Designation details: Date of UN designation: 14.4.2015.)\n(Ahmed Saleh is the son of the former President of the Republic of Yemen, Ali Abdullah Saleh.);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31/2013/20/003140 (other-Other identification number) (name on doc. 'Ahmed Ali Abdullah Saleh') (issued by Ministry of Foreign Affairs on 2013-07-07 diplomatic)[revoked by issuer](Diplomatic identity card, \ncurrent status: cancelled);YES;NO;NO;NO;YES;Ministry of Foreign Affairs;2013-07-07;;;;(name on doc. 'Ahmed Ali Abdullah Saleh');other;Other identification number;;AE;;106852;EN;Diplomatic identity card, \ncurrent status: cancelled;amendment;council;2015-10-27;2015-10-28;2015/1920 (OJ L 281);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_281_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;105307;EU.3969.55;;2015-04-14;Date of UN designation: 14.4.2015.;(Date of UN designation: 2015-04-14)\n(Designation details: Date of UN designation: 14.4.2015.)\n(Ahmed Saleh is the son of the former President of the Republic of Yemen, Ali Abdullah Saleh.);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17979 (passport-National passport) (name on doc. 'Ahmed Ali Abdullah Saleh')(referred to in the diplomatic identity card No: 31/2013/20/003140);NO;NO;NO;NO;NO;;;;;;(name on doc. 'Ahmed Ali Abdullah Saleh');passport;National passport;;YE;;106853;EN;referred to in the diplomatic identity card No: 31/2013/20/003140;amendment;council;2015-10-27;2015-10-28;2015/1920 (OJ L 281);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_281_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;105307;EU.3969.55;;2015-04-14;Date of UN designation: 14.4.2015.;(Date of UN designation: 2015-04-14)\n(Designation details: Date of UN designation: 14.4.2015.)\n(Ahmed Saleh is the son of the former President of the Republic of Yemen, Ali Abdullah Saleh.);P;person;amendment;council;2017-04-04;2017-04-04;2017/628 (OJ L90);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0628&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;106849;EN;;amendment;council;2015-10-27;2015-10-28;2015/1920 (OJ L 281);YEM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_281_R_0002&from=EN +28/10/2022;105403;EU.4225.49;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Il-Su;EN;;;Manager in the reinsurance department of the Korea National Insurance Corporation (KNIC) based in the headquarters in Pyongyang and former authorised chief representative of KNIC in Hamburg, acting on behalf of KNIC or at its direction.;105406;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105403;EU.4225.49;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Il Su;;;;;112459;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105403;EU.4225.49;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;김일수;;;;;142122;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105403;EU.4225.49;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-09-02;2;9;1965;;;NO;GREGORIAN;;;;Pyongyang;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;105405;EN;;amendment;commission;2015-07-03;2015-07-03;2015/1062 (OJ L174);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_174_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105407;EU.4226.14;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2018-05-16;2018-05-16;2018/714 (OJ L120);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0714&from=EN;KANG;Song-Sam;;Song-Sam KANG;EN;;;Former authorised representative of Korea National Insurance Corporation (KNIC) in Hamburg, continues to act for or on behalf of KNIC or at its direction.;105410;EN;;amendment;commission;2016-04-28;2016-04-28;2016/659 (OJ L114);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0659&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105407;EU.4226.14;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2018-05-16;2018-05-16;2018/714 (OJ L120);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0714&from=EN;KANG;Song Sam;;Song Sam KANG;;;;;112460;EN;;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105407;EU.4226.14;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2018-05-16;2018-05-16;2018/714 (OJ L120);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0714&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-07-05;5;7;1972;;;NO;GREGORIAN;;;;Pyongyang;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;105409;EN;;amendment;commission;2015-07-03;2015-07-03;2015/1062 (OJ L174);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_174_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105411;EU.3486.46;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;CHOE Chun-Sik;EN;;;Director in the reinsurance department of Korea National Insurance Corporation (KNIC) based in the headquarters in Pyongyang acting on behalf of KNIC or at its direction.;105415;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105411;EU.3486.46;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;CHOE Chun Sik;;;;;112461;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105411;EU.3486.46;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;최천식;;;;;142123;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105411;EU.3486.46;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-12-23;23;12;1963;;;NO;GREGORIAN;;;;Pyongyang;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;105413;EN;;amendment;commission;2015-07-03;2015-07-03;2015/1062 (OJ L174);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_174_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105411;EU.3486.46;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;745132109 (passport-National passport) (valid to 2020-02-12)[known to be expired];NO;YES;NO;NO;NO;;;;2020-02-12;;;passport;National passport;;00;;105414;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;; +28/10/2022;105416;EU.4227.76;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;SIN Kyu-Nam;EN;;;Director in the reinsurance department of Korea National Insurance Corporation (KNIC) based in the headquarters in Pyongyang and former authorised representative of KNIC in Hamburg, acting on behalf of KNIC or at its direction.;105419;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105416;EU.4227.76;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;SIN Kyu Nam;;;;;112462;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105416;EU.4227.76;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;신규남;;;;;142124;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105416;EU.4227.76;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-09-12;12;9;1972;;;NO;GREGORIAN;;;;Pyongyang;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;105417;EN;;amendment;commission;2015-07-03;2015-07-03;2015/1062 (OJ L174);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_174_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105416;EU.4227.76;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"PO472132950 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;105418;EN;;amendment;commission;2015-07-03;2015-07-03;2015/1062 (OJ L174);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_174_R_0004&from=EN;;;;;;;;;;;;; +28/10/2022;105420;EU.4228.41;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;PAK Chun-San;EN;;;Director in the reinsurance department of Korea National Insurance Corporation (KNIC) based in the headquarters in Pyongyang at least until December 2015 and former authorised chief representative of KNIC in Hamburg, continues to act for or on behalf of KNIC or at its direction.;105423;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105420;EU.4228.41;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;PAK Chun San;;;;;112463;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105420;EU.4228.41;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;박천산;;;;;142125;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105420;EU.4228.41;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-12-18;18;12;1953;;;NO;GREGORIAN;;;;Pyongyang;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;105421;EN;;amendment;commission;2016-04-28;2016-04-28;2016/659 (OJ L114);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0659&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105420;EU.4228.41;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"PS472220097 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;105422;EN;;amendment;commission;2015-07-03;2015-07-03;2015/1062 (OJ L174);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_174_R_0004&from=EN;;;;;;;;;;;;; +28/10/2022;105424;EU.4229.6;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;SO Tong Myong;EN;;;"Former president of the Korea National Insurance Corporation (KNIC), former KNIC Executive Management Committee Chairman (June 2012); former Korean National Insurance Corporation General Manager, September 2013, acting on behalf of KNIC or at its direction.";105426;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105424;EU.4229.6;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;서동명;;;;;142126;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105424;EU.4229.6;;2015-07-03;;(Date of UN designation: 2015-07-03);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-09-10;10;9;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;105425;EN;;amendment;commission;2015-07-03;2015-07-03;2015/1062 (OJ L174);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_174_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105596;EU.3803.3;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2018-12-11;2018-12-12;2018/1934 (OJ L314);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1934&from=EN;;;;Jock Riak;EN;;;;105600;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105596;EU.3803.3;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2018-12-11;2018-12-12;2018/1934 (OJ L314);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1934&from=EN;;;;Jok Riak;EN;;;;105601;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105596;EU.3803.3;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2018-12-11;2018-12-12;2018/1934 (OJ L314);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1934&from=EN;;;;Gabriel Jok;EN;;;;105602;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105596;EU.3803.3;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2018-12-11;2018-12-12;2018/1934 (OJ L314);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1934&from=EN;JOK RIAK MAKOL;Gabriel;;Gabriel JOK RIAK MAKOL;EN;;"Lieutenant General a) Former Sudan People's Liberation Army's (SPLA) Sector One Commander; b) Chief of Defence Forces";Appointed as Chief of Defence Forces on 2 May 2018. Commanded SPLA Sector One, which operates primarily within Unity State, since January 2013.;105603;EN;;amendment;council;2018-12-11;2018-12-12;2018/1934 (OJ L314);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1934&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105596;EU.3803.3;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2018-12-11;2018-12-12;2018/1934 (OJ L314);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1934&from=EN;;;;;;;;;;;;;;;;;;;Wau, Western Bahr El Ghazal, South Sudan;;;;;;NO;;SS;SOUTH SUDAN;105597;EN;;amendment;council;2018-12-11;2018-12-12;2018/1934 (OJ L314);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1934&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105596;EU.3803.3;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2018-12-11;2018-12-12;2018/1934 (OJ L314);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1934&from=EN;;;;;;;;;;;;;;;;;;;Unity State,South Sudan;;;;;;NO;;SS;SOUTH SUDAN;105598;EN;;amendment;council;2018-12-11;2018-12-12;2018/1934 (OJ L314);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1934&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105596;EU.3803.3;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2018-12-11;2018-12-12;2018/1934 (OJ L314);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1934&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-01-01;1;1;1966;;;NO;GREGORIAN;;;Bor, Sudan/South Sudan;;SD;SUDAN;105599;EN;Bor, Sudan/South Sudan;amendment;council;2018-12-11;2018-12-12;2018/1934 (OJ L314);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1934&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105596;EU.3803.3;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2018-12-11;2018-12-12;2018/1934 (OJ L314);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1934&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"M6600000258472 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;118783;EN;;amendment;council;2018-12-11;2018-12-12;2018/1934 (OJ L314);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1934&from=EN;;;;;;;;;;;;; +28/10/2022;105596;EU.3803.3;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2018-12-11;2018-12-12;2018/1934 (OJ L314);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1934&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"D00008623 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;SS;;118784;EN;;amendment;council;2018-12-11;2018-12-12;2018/1934 (OJ L314);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1934&from=EN;;;;;;;;;;;;; +28/10/2022;105596;EU.3803.3;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2018-12-11;2018-12-12;2018/1934 (OJ L314);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1934&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SS;;105648;EN;South Sudan;amendment;council;2018-12-11;2018-12-12;2018/1934 (OJ L314);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1934&from=EN +28/10/2022;105618;EU.3805.30;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;Chual;James;Koang;James Koang Chual;EN;;;;105619;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105618;EU.3805.30;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;Ranley;Koang;Chuol;Koang Chuol Ranley;EN;;;;105620;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105618;EU.3805.30;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;Chol;James;Koang;James Koang Chol;EN;;;;105621;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105618;EU.3805.30;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;James Koang Chol Ranley;EN;;;;105622;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105618;EU.3805.30;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;CHUOL;James;Koang;James Koang CHUOL;EN;;Major General;Appointed commander of the Sudan People's Liberation Army in Opposition (SPLAIO) Special Division in December 2014\nKoang defected from his position as the Sudan People's Liberation Army (SPLA) Fourth Division commander in December 2013;105623;EN;;regulation;commission;2004-01-28;2004-01-26;131/2004 (OJ L21);SSD;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2004:021:0001:0004:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105618;EU.3805.30;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;South Sudan;;00;UNKNOWN;105624;EN;;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105618;EU.3805.30;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;R00012098 (passport-National passport) (SOUTH SUDAN);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;SD;;105625;EN;SOUTH SUDAN;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;105618;EU.3805.30;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SD;;105649;EN;South Sudan;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN +28/10/2022;105626;EU.3663.79;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Santino Deng Kuol;EN;;;;105628;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105626;EU.3663.79;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Santino Deng Wuol;EN;;;;105629;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105626;EU.3663.79;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;WOL;Santino;Deng;Santino Deng WOL;EN;;Major General / Commander of the SPLA's Third Division;Is a Sudan People's Liberation Army (SPLA) Major General and commander of the SPLA's Third Division, a South Sudanese military entity;105630;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105626;EU.3663.79;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-11-09;9;11;1962;;;NO;GREGORIAN;;;Aweil, Sudan/South Sudan;;SD;SUDAN;105627;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105631;EU.3806.92;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Marial Chinoum;EN;;;;105634;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105631;EU.3806.92;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Marial Chanoung Yol;EN;;;;105635;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105631;EU.3806.92;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Marial Chan;EN;;;;105636;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105631;EU.3806.92;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Marial Chinuong;EN;;;;105637;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105631;EU.3806.92;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;MANGOK;Marial;Chanuong Yol;Marial Chanuong Yol MANGOK;EN;;Sudan People's Liberation Army Major General / Commander, Presidential Guard Unit;Mangok is the commander of the South Sudanese Government's Presidential Guard, which led the operations in Juba following the fighting that began December 15, 2013.;105638;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105631;EU.3806.92;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-01-01;1;1;1960;;;NO;GREGORIAN;;;Yirol, Lakes State;Yirol, Lakes State;00;UNKNOWN;105632;EN;;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105631;EU.3806.92;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;R00005943 (passport-National passport) (SOUTH SUDAN);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;SD;;105633;EN;SOUTH SUDAN;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;105631;EU.3806.92;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SD;;105650;EN;South Sudan;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN +28/10/2022;105748;EU.3718.58;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Owner of Haji Basir and Zarjmil Company Hawala, which provides financial services to Taliban in the region.\nHaji Abdul Basir (Basir) owns and operates the Haji Basir and Zarjmil Company Hawala.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/5858164);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Basir;EN;M;Haji;;105755;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105748;EU.3718.58;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Owner of Haji Basir and Zarjmil Company Hawala, which provides financial services to Taliban in the region.\nHaji Abdul Basir (Basir) owns and operates the Haji Basir and Zarjmil Company Hawala.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/5858164);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Abdul Baseer;EN;M;Haji;;105756;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105748;EU.3718.58;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Owner of Haji Basir and Zarjmil Company Hawala, which provides financial services to Taliban in the region.\nHaji Abdul Basir (Basir) owns and operates the Haji Basir and Zarjmil Company Hawala.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/5858164);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Basir Noorzai;EN;M;Haji;;105757;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105748;EU.3718.58;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Owner of Haji Basir and Zarjmil Company Hawala, which provides financial services to Taliban in the region.\nHaji Abdul Basir (Basir) owns and operates the Haji Basir and Zarjmil Company Hawala.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/5858164);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji 'Abd Al-Basir;EN;M;Haji;;105758;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105748;EU.3718.58;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Owner of Haji Basir and Zarjmil Company Hawala, which provides financial services to Taliban in the region.\nHaji Abdul Basir (Basir) owns and operates the Haji Basir and Zarjmil Company Hawala.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/5858164);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Abdul Basir;EN;M;Haji;;105759;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105748;EU.3718.58;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Owner of Haji Basir and Zarjmil Company Hawala, which provides financial services to Taliban in the region.\nHaji Abdul Basir (Basir) owns and operates the Haji Basir and Zarjmil Company Hawala.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/5858164);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;Basir Noorzai;Abdul;;Abdul Basir Noorzai;EN;M;Haji;Owner of Haji Basir and Zarjmil Company Hawala.;105760;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105748;EU.3718.58;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Owner of Haji Basir and Zarjmil Company Hawala, which provides financial services to Taliban in the region.\nHaji Abdul Basir (Basir) owns and operates the Haji Basir and Zarjmil Company Hawala.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/5858164);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Chaman;;;;Baluchistan Province;;NO;;PK;PAKISTAN;105808;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105748;EU.3718.58;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Owner of Haji Basir and Zarjmil Company Hawala, which provides financial services to Taliban in the region.\nHaji Abdul Basir (Basir) owns and operates the Haji Basir and Zarjmil Company Hawala.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/5858164);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;NO;GREGORIAN;;Baluchistan Province;;;PK;PAKISTAN;105749;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105748;EU.3718.58;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Owner of Haji Basir and Zarjmil Company Hawala, which provides financial services to Taliban in the region.\nHaji Abdul Basir (Basir) owns and operates the Haji Basir and Zarjmil Company Hawala.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/5858164);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;Baluchistan Province;;;PK;PAKISTAN;105750;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105748;EU.3718.58;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Owner of Haji Basir and Zarjmil Company Hawala, which provides financial services to Taliban in the region.\nHaji Abdul Basir (Basir) owns and operates the Haji Basir and Zarjmil Company Hawala.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/5858164);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;NO;GREGORIAN;;Baluchistan Province;;;PK;PAKISTAN;105751;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105748;EU.3718.58;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Owner of Haji Basir and Zarjmil Company Hawala, which provides financial services to Taliban in the region.\nHaji Abdul Basir (Basir) owns and operates the Haji Basir and Zarjmil Company Hawala.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/5858164);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"5420124679187 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;PK;;105753;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;105748;EU.3718.58;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Owner of Haji Basir and Zarjmil Company Hawala, which provides financial services to Taliban in the region.\nHaji Abdul Basir (Basir) owns and operates the Haji Basir and Zarjmil Company Hawala.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/5858164);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"AA3829182 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;PK;;105754;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;105748;EU.3718.58;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Owner of Haji Basir and Zarjmil Company Hawala, which provides financial services to Taliban in the region.\nHaji Abdul Basir (Basir) owns and operates the Haji Basir and Zarjmil Company Hawala.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/ search/un/5858164);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;105752;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Zar Jamil, Haji Abdul Baseer Money Changer;EN;;;;105765;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Basir and Zarjamil Currency Exchange;EN;;;;105766;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Abdul Basir Exchange Shop;EN;;;;105767;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Baseer Hawala;EN;;;;105768;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Basir Hawala;EN;;;;105769;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Abdul Basir and Zar Jameel Hawala;EN;;;;105770;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Bashir and Zarjmil Hawala Company;EN;;;;105771;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Haji Basir and Zarjmil Company Hawala;EN;;;;105772;EN;;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Chaman;Branch Office 1 Sanatan (variant Sanatin) Bazaar, Sanatan Bazaar Street, near Trench (variant Tranch) Road;;;Baluchistan Province;;NO;(Branch Office 1);PK;PAKISTAN;105764;EN;Branch Office 1;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Branch Office 11);IR;IRAN (ISLAMIC REPUBLIC OF);105773;EN;Branch Office 11;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Dubai;;;;;;NO;(Branch Office 10);AE;UNITED ARAB EMIRATES;105774;EN;Branch Office 10;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;Helmand Province;;NO;(Branch Office 9);AF;AFGHANISTAN;105775;EN;Branch Office 9;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;Herat Province;;NO;(Branch Office 8);AF;AFGHANISTAN;105776;EN;Branch Office 8;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;Kandahar Province;;NO;(Branch Office 7);AF;AFGHANISTAN;105777;EN;Branch Office 7;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Islamabad;;;;;;NO;(Branch Office 6);PK;PAKISTAN;105778;EN;Branch Office 6;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Karachi;;;;;;NO;(Branch Office 5);PK;PAKISTAN;105779;EN;Branch Office 5;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Peshawar;;;;;;NO;(Branch Office 4);PK;PAKISTAN;105780;EN;Branch Office 4;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Lahore;;;;;;NO;(Branch Office 3);PK;PAKISTAN;105781;EN;Branch Office 3;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105763;EU.3627.32;;2015-03-27;;(Date of UN designation: 2015-03-27)\n(Money service provider.\nOwned by Abdul Basir Noorzai.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/une/5858170);E;enterprise;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;Quetta;;;;;;NO;(Branch Office 2);PK;PAKISTAN;105782;EN;Branch Office 2;amendment;council;2015-08-01;2015-08-01;2015/1332 (OJ L206);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2015:206:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105792;EU.3804.65;;2015-07-01;;(Date of UN designation: 2015-07-01)\n(Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population.);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Dhual;EN;M;;;105796;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105792;EU.3804.65;;2015-07-01;;(Date of UN designation: 2015-07-01)\n(Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population.);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;General Gaduel;EN;M;;;105797;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105792;EU.3804.65;;2015-07-01;;(Date of UN designation: 2015-07-01)\n(Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population.);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Simon Garwich;EN;M;;;105798;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105792;EU.3804.65;;2015-07-01;;(Date of UN designation: 2015-07-01)\n(Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population.);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Simon Gatwech;EN;M;;;105799;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105792;EU.3804.65;;2015-07-01;;(Date of UN designation: 2015-07-01)\n(Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population.);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Simon Gatwick;EN;M;;;105800;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105792;EU.3804.65;;2015-07-01;;(Date of UN designation: 2015-07-01)\n(Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population.);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Simon Gatweach;EN;;;;105801;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105792;EU.3804.65;;2015-07-01;;(Date of UN designation: 2015-07-01)\n(Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population.);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Simon Gatwec Duel;EN;M;;;105802;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105792;EU.3804.65;;2015-07-01;;(Date of UN designation: 2015-07-01)\n(Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population.);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;Dual;Simon;Getwech;Simon Getwech Dual;EN;M;;;105803;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105792;EU.3804.65;;2015-07-01;;(Date of UN designation: 2015-07-01)\n(Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population.);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;Dual;Simon;Gatwich;Simon Gatwich Dual;EN;M;;;105804;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105792;EU.3804.65;;2015-07-01;;(Date of UN designation: 2015-07-01)\n(Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population.);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;DUAL;Simon;Gatewech;Simon Gatewech DUAL;EN;M;Major General;Chief of General Staff, SPLA in Opposition;105805;EN;;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105792;EU.3804.65;;2015-07-01;;(Date of UN designation: 2015-07-01)\n(Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population.);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;Jonglei State;;NO;(SOUTH SUDAN);SD;SUDAN;105793;EN;SOUTH SUDAN;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105792;EU.3804.65;;2015-07-01;;(Date of UN designation: 2015-07-01)\n(Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population.);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;NO;GREGORIAN;;Jonglei State;;Uror County;SD;SUDAN;105794;EN;SOUTH SUDAN;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105792;EU.3804.65;;2015-07-01;;(Date of UN designation: 2015-07-01)\n(Is the SPLM-IO Chief of General Staff and was previously the commander of opposition forces in Jonglei State. His forces conducted an early February 2015 attack in Jonglei State, and as of March 2015, he had tried to destroy the peace in Jonglei State through attacks on the civilian population.);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;NO;GREGORIAN;;Jonglei State;;Akobo;SD;SUDAN;105795;EN;SOUTH SUDAN;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105954;EU.3112.90;;2015-08-06;;(Date of UN designation: 2015-08-06)\n(Established by foreign terrorist fighters in 2013. Affiliated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq and Al-Nusrah Front for the People of the Levant.);E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Jaysh al-Muhajirin wal-Ansar (JAMWA);EN;;;;105957;EN;;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105954;EU.3112.90;;2015-08-06;;(Date of UN designation: 2015-08-06)\n(Established by foreign terrorist fighters in 2013. Affiliated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq and Al-Nusrah Front for the People of the Levant.);E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Battalion of Emigrants and Ansar;EN;;;;105958;EN;;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105954;EU.3112.90;;2015-08-06;;(Date of UN designation: 2015-08-06)\n(Established by foreign terrorist fighters in 2013. Affiliated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq and Al-Nusrah Front for the People of the Levant.);E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Army of Emigrants and Supporters organization;EN;;;;105959;EN;;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105954;EU.3112.90;;2015-08-06;;(Date of UN designation: 2015-08-06)\n(Established by foreign terrorist fighters in 2013. Affiliated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq and Al-Nusrah Front for the People of the Levant.);E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;Battalion of Emigrants and Supporters;EN;;;;105960;EN;;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105954;EU.3112.90;;2015-08-06;;(Date of UN designation: 2015-08-06)\n(Established by foreign terrorist fighters in 2013. Affiliated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq and Al-Nusrah Front for the People of the Levant.);E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;The Army Of Emigrants And Supporters;EN;;;;105961;EN;;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105954;EU.3112.90;;2015-08-06;;(Date of UN designation: 2015-08-06)\n(Established by foreign terrorist fighters in 2013. Affiliated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq and Al-Nusrah Front for the People of the Levant.);E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;Lattakia Governorate;;NO;(Jabal Turkuman area);SY;SYRIAN ARAB REPUBLIC;105955;EN;Jabal Turkuman area;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;105954;EU.3112.90;;2015-08-06;;(Date of UN designation: 2015-08-06)\n(Established by foreign terrorist fighters in 2013. Affiliated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq and Al-Nusrah Front for the People of the Levant.);E;enterprise;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;105956;EN;;amendment;commission;2015-08-14;2015-08-14;2015/1390 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_215_R_0003&from=EN +28/10/2022;106123;EU.3975.2;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Colonel Romboh;EN;;;;106129;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106123;EU.3975.2;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Colonel Rombot;EN;;;;106130;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106123;EU.3975.2;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Colonel Rambot;EN;;;;106131;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106123;EU.3975.2;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Colonel Rambo;EN;;;;106132;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106123;EU.3975.2;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Colonel Rombhot;EN;;;;106133;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106123;EU.3975.2;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Alfred Saragba;EN;;;;106134;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106123;EU.3975.2;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;Ekatom;Alfred;;Alfred Ekatom;EN;;;;106135;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106123;EU.3975.2;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Alfred Yekatom Saragba;EN;;;;106136;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106123;EU.3975.2;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;YEKATOM;Alfred;;Alfred YEKATOM;EN;M;Chief Corporal of the Forces Armées Centrafricaines (FACA);Has controlled and commanded a large group of armed militia men.;106137;EN;"Father's name (adoptive father) is Ekatom Saragba (also spelled Yekatom Saragba). Brother of Yves Saragba, an anti-Balaka commander in Batalimo, Lobaye province, and a former FACA soldier. Physical description: eye colour: black; hair colour: bold; complexion: black; height: 170cm; weight 100kg.";amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106123;EU.3975.2;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;Bimbo, Ombella-Mpoko province;;;;;;NO;((previous location));CF;CENTRAL AFRICAN REPUBLIC;106124;EN;(previous location);amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106123;EU.3975.2;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;Mbaiki, Lobaye Province;;;;;;NO;PHONE[+236 72 15 47 07 / +236 75 09 43 41];CF;CENTRAL AFRICAN REPUBLIC;106125;EN;;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106123;EU.3975.2;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;The Hague;;;;;;NO;((since his transfer to the International Criminal Court on 17 November 2018));NL;NETHERLANDS;125190;EN;(since his transfer to the International Criminal Court on 17 November 2018);amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106123;EU.3975.2;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-06-23;23;6;1976;;;NO;GREGORIAN;;;Central African Republic;;CF;CENTRAL AFRICAN REPUBLIC;106127;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106123;EU.3975.2;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CF;;106128;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN +28/10/2022;106138;EU.3881.81;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Soussou Abib;EN;;Corporal of the Central African Armed Forces (FACA);;106142;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106138;EU.3881.81;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;SOUSSOU;Habib;;Habib SOUSSOU;EN;;"Coordinator of anti-Balaka for Lobaye province; Master-corporal of the Central African Armed Forces (FACA)";Appointed as anti-Balaka zone commander (COMZONE) of Boda on 11 April 2014 and on 28 June 2014, for the entire Lobaye Province. On 28 June 2014, general coordinator of the anti-Balaka Patrice Edouard Ngaïssona appointed Habib Soussou as provincial coordinator for the town of Boda since 11 April 2014 and since 28 June 2014 for the entire province of Lobaye.;106143;EN;"Physical description: eye colour: brown; hair colour: black; height: 160cm; weight: 60kg.";amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106138;EU.3881.81;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;Boda;;;;;;NO;PHONE[+236 72198628];CF;CENTRAL AFRICAN REPUBLIC;106139;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106138;EU.3881.81;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-03-13;13;3;1980;;;NO;GREGORIAN;;;;;CF;CENTRAL AFRICAN REPUBLIC;106140;EN;;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106138;EU.3881.81;;2015-08-20;;(Date of UN designation: 2015-08-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CF;;106141;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN +28/10/2022;106144;EU.3882.46;;2015-08-20;;(Date of UN designation: 2015-08-20)\n(‘Reportedly deceased as at 11 October 2015.’);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;Oumar Younous M'Betibangui;EN;;;;106149;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106144;EU.3882.46;;2015-08-20;;(Date of UN designation: 2015-08-20)\n(‘Reportedly deceased as at 11 October 2015.’);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;Oumar Sodiam;EN;;;;106150;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106144;EU.3882.46;;2015-08-20;;(Date of UN designation: 2015-08-20)\n(‘Reportedly deceased as at 11 October 2015.’);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;Younous;Omar;;Omar Younous;EN;;;;106151;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106144;EU.3882.46;;2015-08-20;;(Date of UN designation: 2015-08-20)\n(‘Reportedly deceased as at 11 October 2015.’);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;YOUNOUS;Oumar;;Oumar YOUNOUS;EN;;;Former Séléka General;106152;EN;"Physical description: hair colour: black; height: 180cm; belongs to the Fulani ethnic group. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.";amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106144;EU.3882.46;;2015-08-20;;(Date of UN designation: 2015-08-20)\n(‘Reportedly deceased as at 11 October 2015.’);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;YOUNOUS ABDOULAY;Oumar;;Oumar YOUNOUS ABDOULAY;EN;;;;107185;EN;;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106144;EU.3882.46;;2015-08-20;;(Date of UN designation: 2015-08-20)\n(‘Reportedly deceased as at 11 October 2015.’);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Tullus, southern Darfur;;;;;;NO;((previous location));SD;SUDAN;106145;EN;(previous location);amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106144;EU.3882.46;;2015-08-20;;(Date of UN designation: 2015-08-20)\n(‘Reportedly deceased as at 11 October 2015.’);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Birao;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;106146;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106144;EU.3882.46;;2015-08-20;;(Date of UN designation: 2015-08-20)\n(‘Reportedly deceased as at 11 October 2015.’);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Bria;;;;;;NO;PHONE[+236 75507560];CF;CENTRAL AFRICAN REPUBLIC;106147;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106144;EU.3882.46;;2015-08-20;;(Date of UN designation: 2015-08-20)\n(‘Reportedly deceased as at 11 October 2015.’);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-04-02;2;4;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;107183;EN;;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106144;EU.3882.46;;2015-08-20;;(Date of UN designation: 2015-08-20)\n(‘Reportedly deceased as at 11 October 2015.’);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D00000898 (other-Other identification number) (valid from 2013-04-11 to 2018-04-10)(CAR diplomatic passport);NO;NO;NO;NO;NO;;;2013-04-11;2018-04-10;;;other;Other identification number;;00;;107184;EN;CAR diplomatic passport;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;; +28/10/2022;106144;EU.3882.46;;2015-08-20;;(Date of UN designation: 2015-08-20)\n(‘Reportedly deceased as at 11 October 2015.’);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SD;;106148;EN;;amendment;council;2015-09-03;2015-09-03;2015/1485 (OJ L229);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_229_R_0001&from=EN +28/10/2022;106224;EU.3093.1;;2015-09-03;;(Date of UN designation: 2015-09-03);P;person;amendment;council;2015-09-15;2015-09-15;2015/1517 (OJ L239);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_239_R_0005&from=EN;;;;Abou Fares al Libi;EN;;;;106226;EN;;amendment;council;2015-09-15;2015-09-15;2015/1517 (OJ L239);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_239_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106224;EU.3093.1;;2015-09-03;;(Date of UN designation: 2015-09-03);P;person;amendment;council;2015-09-15;2015-09-15;2015/1517 (OJ L239);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_239_R_0005&from=EN;;;;Sufyan bin Qumu;EN;;;;106227;EN;;amendment;council;2015-09-15;2015-09-15;2015/1517 (OJ L239);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_239_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106224;EU.3093.1;;2015-09-03;;(Date of UN designation: 2015-09-03);P;person;amendment;council;2015-09-15;2015-09-15;2015/1517 (OJ L239);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_239_R_0005&from=EN;Ben Goumo;Sofiane;;Sofiane Ben Goumo;EN;;;;106228;EN;Leader of Ansar al Charia Derna;amendment;council;2015-09-15;2015-09-15;2015/1517 (OJ L239);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_239_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106224;EU.3093.1;;2015-09-03;;(Date of UN designation: 2015-09-03);P;person;amendment;council;2015-09-15;2015-09-15;2015/1517 (OJ L239);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_239_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-06-26;26;6;1959;;;NO;GREGORIAN;;;;Derna;LY;LIBYA;106225;EN;;amendment;council;2015-09-15;2015-09-15;2015/1517 (OJ L239);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_239_R_0005&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106383;EU.174.56;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;Abd Al-Aziz Aday Zimin Al-Fadhil;EN;;;;106384;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106383;EU.174.56;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;Abdalaziz Ad'ai Samin Fadhli al-Fadhali;EN;;;;106407;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106383;EU.174.56;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;Abd al-Aziz Adhay Zimin al-Fadhli;EN;;;;106408;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106383;EU.174.56;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;Abd al-Aziz Udai Samin al-Fadhl;EN;;;;106409;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106383;EU.174.56;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;Abd al-Aziz Udai Samin al-Fadhli;EN;;;;106410;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106383;EU.174.56;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-08-27;27;8;1981;;;NO;GREGORIAN;;;;;KW;KUWAIT;106405;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106383;EU.174.56;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"281082701081 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;KW;;106406;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;; +28/10/2022;106385;EU.175.57;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Abd Al-Latif Bin Abdallah Salih Muhammad Al-Kawari;EN;;;;106386;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106385;EU.175.57;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Abu Ali al-Kawari;EN;;;;106418;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106385;EU.175.57;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Abd-al-Latif Abdallah al-Kawari;EN;;;;106419;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106385;EU.175.57;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Abd-al-Latif Abdallah al-Kawwari;EN;;;;106420;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106385;EU.175.57;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Abd-al-Latif Abdallah Salih al-Kuwari;EN;;;;106421;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106385;EU.175.57;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Abd-al-Latif Abdallah Salih al-Kawari;EN;;;;106422;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106385;EU.175.57;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;عبداللطیف بن عبدلله صالح محمد الكواري;AR;;;;129110;EN;;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106385;EU.175.57;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;Al Kharaitiyat;;;;;;NO;;QA;QATAR;106411;EN;;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106385;EU.175.57;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-09-28;28;9;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;106412;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106385;EU.175.57;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27363400684 (id-National identification card) (Qatari identification number);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;QA;;106414;EN;Qatari identification number;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;; +28/10/2022;106385;EU.175.57;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;00490327 (passport-National passport) (on 2001-07-28);NO;NO;NO;NO;NO;;2001-07-28;;;;;passport;National passport;;QA;;106415;EN;;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;; +28/10/2022;106385;EU.175.57;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;00754833 (passport-National passport) (on 2007-05-20);NO;NO;NO;NO;NO;;2007-05-20;;;;;passport;National passport;;QA;;106416;EN;;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;; +28/10/2022;106385;EU.175.57;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"01020802 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;QA;;106417;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;; +28/10/2022;106385;EU.175.57;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;01538029 (passport-National passport) (valid to 2025-03-14);NO;NO;NO;NO;NO;;;;2025-03-14;;;passport;National passport;;QA;;129093;EN;;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;; +28/10/2022;106385;EU.175.57;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA;;106413;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN +28/10/2022;106387;EU.204.11;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;Hamad Awad Dahi Sarhan Al-Shammari;EN;;;;106388;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106387;EU.204.11;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;Abu Uqlah al-Kuwaiti;EN;;;;106427;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106387;EU.204.11;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-01-31;31;1;1984;;;NO;GREGORIAN;;;;;00;UNKNOWN;106423;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106387;EU.204.11;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"284013101406 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;KW;;106425;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;; +28/10/2022;106387;EU.204.11;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"155454275 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KW;;106426;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;; +28/10/2022;106387;EU.204.11;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KW;;106424;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN +28/10/2022;106389;EU.205.12;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Sa'd Bin Sa'd Muhammad Shariyan Al-Ka'bi;EN;;;;106390;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106389;EU.205.12;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Abu Suad;EN;;;;106394;EN;low quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106389;EU.205.12;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Abu Sa'd;EN;;;;106395;EN;low quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106389;EU.205.12;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Umar al-Afghani;EN;;;;106396;EN;low quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106389;EU.205.12;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Abu Hazza';EN;;;;106397;EN;low quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106389;EU.205.12;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Abu Haza';EN;;;;106398;EN;low quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106389;EU.205.12;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Sa'd al-Sharyan al-Ka'bi;EN;;;;106399;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106389;EU.205.12;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Sa'd Sa'd Muhammad Shiryan al-Ka'bi;EN;;;;106400;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106389;EU.205.12;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;Sa'd bin Sa'd Muhammad Shiryan al-Ka'bi;EN;;;;106401;EN;good quality alias;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106389;EU.205.12;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;سعد بن سعد محمد شریان الكعبي;AR;;;;129111;EN;;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106389;EU.205.12;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;Umm Salal;;;;;;NO;;QA;QATAR;129096;EN;;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106389;EU.205.12;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-02-15;15;2;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;106391;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106389;EU.205.12;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;00966737 (passport-National passport) (valid to 2016-02-16)[known to be expired];NO;YES;NO;NO;NO;;;;2016-02-16;;;passport;National passport;;QA;;106393;EN;;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;; +28/10/2022;106389;EU.205.12;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27263401275 (id-National identification card) (Qatari identification number);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;QA;;129097;EN;Qatari identification number;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;; +28/10/2022;106389;EU.205.12;;2015-09-21;;(Date of UN designation: 2015-09-21);P;person;amendment;commission;2021-03-30;2021-03-31;2021/549 (OJ L109);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.109.01.0077.01.ENG&toc=OJ%3AL%3A2021%3A109%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA;;106392;EN;;amendment;commission;2015-09-30;2015-09-30;2015/1740 (OJ L253);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_253_R_0003&from=EN +28/10/2022;106457;EU.2418.65;;2015-10-01;;(Date of UN designation: 2015-10-01)\n(Corrigendum 2018/1605 (OJ L268) [corr. 10/01/2019-1]);P;person;amendment;council;2018-10-26;2018-10-27;2018/1605 (OJ L268);BDI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1605&from=EN;NIYONZIMA;Mathias-Joseph;;Mathias-Joseph NIYONZIMA;EN;;;Officer of the National Intelligence Service;106461;EN;;amendment;council;2018-10-26;2018-10-27;2018/1605 (OJ L268);BDI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1605&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106457;EU.2418.65;;2015-10-01;;(Date of UN designation: 2015-10-01)\n(Corrigendum 2018/1605 (OJ L268) [corr. 10/01/2019-1]);P;person;amendment;council;2018-10-26;2018-10-27;2018/1605 (OJ L268);BDI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1605&from=EN;;;;KAZUNGU;EN;;;;106462;EN;;regulation;council;2015-10-02;2015-10-02;2015/1755 (OJ L257);BDI;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_257_R_0001&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106457;EU.2418.65;;2015-10-01;;(Date of UN designation: 2015-10-01)\n(Corrigendum 2018/1605 (OJ L268) [corr. 10/01/2019-1]);P;person;amendment;council;2018-10-26;2018-10-27;2018/1605 (OJ L268);BDI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1605&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-03-06;6;3;1956;;;NO;GREGORIAN;;Bujumbura-Rural Province;Kanyosha Commune, Mubimbi;;BI;BURUNDI;118434;EN;Kanyosha Commune, Mubimbi, Bujumbura-Rural \nProvince, Burundi;amendment;council;2018-10-26;2018-10-27;2018/1605 (OJ L268);BDI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1605&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106457;EU.2418.65;;2015-10-01;;(Date of UN designation: 2015-10-01)\n(Corrigendum 2018/1605 (OJ L268) [corr. 10/01/2019-1]);P;person;amendment;council;2018-10-26;2018-10-27;2018/1605 (OJ L268);BDI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1605&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-01-02;2;1;1967;;;NO;GREGORIAN;;Bujumbura-Rural Province;Kanyosha Commune, Mubimbi;;BI;BURUNDI;118435;EN;Kanyosha Commune, Mubimbi, Bujumbura-Rural \nProvince, Burundi;amendment;council;2018-10-26;2018-10-27;2018/1605 (OJ L268);BDI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1605&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106457;EU.2418.65;;2015-10-01;;(Date of UN designation: 2015-10-01)\n(Corrigendum 2018/1605 (OJ L268) [corr. 10/01/2019-1]);P;person;amendment;council;2018-10-26;2018-10-27;2018/1605 (OJ L268);BDI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1605&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"OP0053090 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;106459;EN;;amendment;council;2018-10-26;2018-10-27;2018/1605 (OJ L268);BDI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1605&from=EN;;;;;;;;;;;;; +28/10/2022;106457;EU.2418.65;;2015-10-01;;(Date of UN designation: 2015-10-01)\n(Corrigendum 2018/1605 (OJ L268) [corr. 10/01/2019-1]);P;person;amendment;council;2018-10-26;2018-10-27;2018/1605 (OJ L268);BDI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1605&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;O/00064 (regnumber-Registration Number) ((SNR));NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;106460;EN;(SNR);regulation;council;2015-10-02;2015-10-02;2015/1755 (OJ L257);BDI;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_257_R_0001&from=EN;;;;;;;;;;;;; +28/10/2022;106457;EU.2418.65;;2015-10-01;;(Date of UN designation: 2015-10-01)\n(Corrigendum 2018/1605 (OJ L268) [corr. 10/01/2019-1]);P;person;amendment;council;2018-10-26;2018-10-27;2018/1605 (OJ L268);BDI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1605&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BI;;106458;EN;;regulation;council;2015-10-02;2015-10-02;2015/1755 (OJ L257);BDI;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_257_R_0001&from=EN +28/10/2022;106530;EU.3158.78;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;Mahmood;Aqsa;;Aqsa Mahmood;EN;F;;;106531;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106530;EU.3158.78;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Umm Layth;EN;F;;;106598;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106530;EU.3158.78;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Previous address);GB;UNITED KINGDOM;106594;EN;Previous address;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106530;EU.3158.78;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(As at November 2013);SY;SYRIAN ARAB REPUBLIC;106595;EN;As at November 2013;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106530;EU.3158.78;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1994-05-11;11;5;1994;;;NO;GREGORIAN;;;Scotland;Glasgow;GB;UNITED KINGDOM;106596;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106530;EU.3158.78;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;720134834 (passport-National passport) (on 2012-06-27 valid to 2022-06-27);NO;NO;NO;NO;NO;;2012-06-27;;2022-06-27;;;passport;National passport;;GB;;106597;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;106532;EU.3195.90;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Physical description: hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;Muthana;Nasser;Ahmed;Nasser Ahmed Muthana;EN;F;;;106533;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106532;EU.3195.90;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Physical description: hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;Muthanna;Abu;;Abu Muthanna;EN;;;;106614;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106532;EU.3195.90;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Physical description: hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;Muthana;Abu;Al-Yemeni;Abu Al-Yemeni Muthana;EN;;;;106615;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106532;EU.3195.90;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Physical description: hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;Muthana;Abu;;Abu Muthana;EN;;;;106616;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106532;EU.3195.90;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Physical description: hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;Muthana;Abdul;;Abdul Muthana;EN;;;;106617;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106532;EU.3195.90;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Physical description: hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;Muthana;Nasir;;Nasir Muthana;EN;;;;106618;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106532;EU.3195.90;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Physical description: hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Previous address until November 2013.);GB;UNITED KINGDOM;106609;EN;Previous address until November 2013.;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106532;EU.3195.90;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Physical description: hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(As at November 2013.);SY;SYRIAN ARAB REPUBLIC;106610;EN;As at November 2013.;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106532;EU.3195.90;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Physical description: hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1994-04-29;29;4;1994;;;NO;GREGORIAN;;;Cardiff;Heath;GB;UNITED KINGDOM;106611;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106532;EU.3195.90;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Physical description: hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210804241 (passport-National passport) (on 2010-07-27 valid to 2020-07-27);NO;NO;NO;NO;NO;;2010-07-27;;2020-07-27;;;passport;National passport;;GB;;106613;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;106532;EU.3195.90;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Physical description: hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GB;;106612;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN +28/10/2022;106534;EU.3174.26;;2015-09-28;;"(Date of UN designation: 2015-09-28)\n(a) Physical description: eye colour: brown; hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;Hussain;Omar;Ali;Omar Ali Hussain;EN;;;;106535;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106534;EU.3174.26;;2015-09-28;;"(Date of UN designation: 2015-09-28)\n(a) Physical description: eye colour: brown; hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Abu- Sa'id Al Britani;EN;;;;106630;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106534;EU.3174.26;;2015-09-28;;"(Date of UN designation: 2015-09-28)\n(a) Physical description: eye colour: brown; hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Previous address until January 2014.);GB;UNITED KINGDOM;106625;EN;Previous address until January 2014.;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106534;EU.3174.26;;2015-09-28;;"(Date of UN designation: 2015-09-28)\n(a) Physical description: eye colour: brown; hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(As at January 2014.);SY;SYRIAN ARAB REPUBLIC;106626;EN;As at January 2014.;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106534;EU.3174.26;;2015-09-28;;"(Date of UN designation: 2015-09-28)\n(a) Physical description: eye colour: brown; hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-03-21;21;3;1987;;;NO;GREGORIAN;;Buckinghamshire;;High Wycombe;GB;UNITED KINGDOM;106627;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106534;EU.3174.26;;2015-09-28;;"(Date of UN designation: 2015-09-28)\n(a) Physical description: eye colour: brown; hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205939411 (passport-National passport) (on 2004-07-21 valid to 2015-04-21);NO;NO;NO;NO;NO;;2004-07-21;;2015-04-21;;;passport;National passport;;GB;;106629;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;106534;EU.3174.26;;2015-09-28;;"(Date of UN designation: 2015-09-28)\n(a) Physical description: eye colour: brown; hair colour: brown/black. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GB;;106628;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN +28/10/2022;106536;EU.3141.31;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Husband's name is: Junaid Hussain. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;Jones;Sally-Anne;Frances;Sally-Anne Frances Jones;EN;F;;;106537;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106536;EU.3141.31;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Husband's name is: Junaid Hussain. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Sakinah Hussain;EN;F;;;106636;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106536;EU.3141.31;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Husband's name is: Junaid Hussain. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Umm Hussain al-Britani;EN;F;;;106637;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106536;EU.3141.31;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Husband's name is: Junaid Hussain. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Previous location until 2013.);GB;UNITED KINGDOM;106631;EN;Previous location until 2013.;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106536;EU.3141.31;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Husband's name is: Junaid Hussain. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(As at 2013.);SY;SYRIAN ARAB REPUBLIC;106632;EN;As at 2013.;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106536;EU.3141.31;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Husband's name is: Junaid Hussain. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-11-17;17;11;1968;;;NO;GREGORIAN;;Greater London;;Greenwich;GB;UNITED KINGDOM;106633;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106536;EU.3141.31;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Husband's name is: Junaid Hussain. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;519408086 (passport-National passport) (on 2013-09-23 valid to 2023-09-23);NO;NO;NO;NO;NO;;2013-09-23;;2023-09-23;;;passport;National passport;;GB;;106635;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;106536;EU.3141.31;;2015-09-28;;(Date of UN designation: 2015-09-28)\n(a) Husband's name is: Junaid Hussain. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GB;;106634;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN +28/10/2022;106538;EU.3403.46;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;Ben Al-Hakim;Boubaker;Ben Habib;Boubaker Ben Habib Ben Al-Hakim;EN;;;;106539;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106538;EU.3403.46;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Abu-Muqatil al-Tunisi;EN;;;;106642;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106538;EU.3403.46;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Abou Mouqatel;EN;;;;106643;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106538;EU.3403.46;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Abou al Moukatel;EN;;;;106644;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106538;EU.3403.46;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Boubaker el Hakim;EN;;;;106645;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106538;EU.3403.46;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Boubakeur el-Hakim;EN;;;;106646;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106538;EU.3403.46;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;El Hakim Boubakeur;EN;;;;108992;EN;;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106538;EU.3403.46;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(As at September 2015.);SY;SYRIAN ARAB REPUBLIC;106638;EN;As at September 2015.;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106538;EU.3403.46;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-08-01;1;8;1983;;;NO;GREGORIAN;;;;Paris;FR;FRANCE;106639;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106538;EU.3403.46;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;106640;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN +28/10/2022;106538;EU.3403.46;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;FR;;106641;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN +28/10/2022;106540;EU.3404.11;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;Cherif;Peter;;Peter Cherif;EN;;;;106541;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106540;EU.3404.11;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;Al Mukalla, Hadramawt province;;;;;;NO;;YE;YEMEN;106647;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106540;EU.3404.11;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-08-26;26;8;1982;;;NO;GREGORIAN;;;20th district;Paris;FR;FRANCE;106648;EN;;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106540;EU.3404.11;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;FR;;106649;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN +28/10/2022;106542;EU.3405.73;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;Hauchard;Maxime;;Maxime Hauchard;EN;;;;106543;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106542;EU.3405.73;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;Abou Abdallah al Faransi;EN;;;;106653;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106542;EU.3405.73;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(As at September 2015.);SY;SYRIAN ARAB REPUBLIC;106650;EN;As at September 2015.;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106542;EU.3405.73;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1992-03-17;17;3;1992;;;NO;GREGORIAN;;Normandy;;Saint Aubin les Elbeuf;FR;FRANCE;106651;EN;;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106542;EU.3405.73;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101127200129 (id-National identification card) (issued by Sous-Préfecture of Bernay valid to 2020-11-04);NO;NO;NO;NO;NO;Sous-Préfecture of Bernay;;;2020-11-04;;;id;National identification card;;FR;;108993;EN;;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;; +28/10/2022;106542;EU.3405.73;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2016-07-01;2016-07-01;2016/1063 (OJ L177);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1063&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;FR;;106652;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN +28/10/2022;106544;EU.3142.93;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;Al-Absi;Amru;;Amru Al-Absi;EN;;;;106545;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106544;EU.3142.93;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;al-Absi;Abu-Umar;;Abu-Umar al-Absi;EN;;;;106665;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106544;EU.3142.93;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Abu al-Athir al-Shami;EN;;;;106666;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106544;EU.3142.93;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Abu Amr al Shami;EN;;;;106667;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106544;EU.3142.93;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Abu Asir;EN;;;;106668;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106544;EU.3142.93;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Abu al-Asir;EN;;;;106669;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106544;EU.3142.93;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Abu al-Athir;EN;;;;106670;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106544;EU.3142.93;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;al Absi;Abu al Athir Amr;;Abu al Athir Amr al Absi;EN;;;;106671;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106544;EU.3142.93;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;al Absi;Amr;;Amr al Absi;EN;;;;106672;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106544;EU.3142.93;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;Homs;;;;;;NO;(Location as at September 2015.);SY;SYRIAN ARAB REPUBLIC;106663;EN;Location as at September 2015.;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106544;EU.3142.93;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979;;;NO;GREGORIAN;;;;;SA;SAUDI ARABIA;106664;EN;Approximately 1979.;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106546;EU.3196.55;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;Al-Rumaysh;Mu'tassim;Yahya 'Ali;Mu'tassim Yahya 'Ali Al-Rumaysh;EN;;;;106547;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106546;EU.3196.55;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Abu-Rayhanah al-'Ansari al-Jeddawi;EN;;;;106682;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106546;EU.3196.55;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Handalah;EN;;;;106683;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106546;EU.3196.55;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Abu-Rayhanah;EN;;;;106684;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106546;EU.3196.55;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Rayhanah;EN;;;;106685;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106546;EU.3196.55;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-01-04;4;1;1973;;;NO;GREGORIAN;;;;Jeddah;SA;SAUDI ARABIA;106678;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106546;EU.3196.55;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2054275397 (regnumber-Registration Number) (on 1998-07-22)(Saudi Arabian alien registration number);NO;NO;NO;NO;NO;;1998-07-22;;;;;regnumber;Registration Number;;SA;;106680;EN;Saudi Arabian alien registration number;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;106546;EU.3196.55;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"01055336 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;YE;;106681;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;106546;EU.3196.55;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;106679;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN +28/10/2022;106548;EU.3175.88;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Tarad Mohammad Alnori Alfares Aljarba;EN;;;;106549;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106548;EU.3175.88;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;Abu-Muhammad al-Shimali;EN;;;;106689;EN;low quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106548;EU.3175.88;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;Aljarba;Tarad;;Tarad Aljarba;EN;;;;106690;EN;good quality alias;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106548;EU.3175.88;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-11-20;20;11;1979;;;NO;GREGORIAN;;;;;IQ;IRAQ;106686;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106548;EU.3175.88;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;E704088 (passport-National passport) (on 2003-08-26 valid to 2008-07-02)[known to be expired];NO;YES;NO;NO;NO;;2003-08-26;;2008-07-02;;;passport;National passport;;00;;106688;EN;;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;; +28/10/2022;106548;EU.3175.88;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1121628414 (id-National identification card) (National identification no.);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;125591;EN;National identification no.;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;; +28/10/2022;106548;EU.3175.88;;2015-09-29;;(Date of UN designation: 2015-09-29);P;person;amendment;commission;2020-09-17;2020-09-17;2020/1297 (OJ L303I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.303.01.0001.01.ENG&toc=OJ:L:2020:303I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SA;;106687;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN +28/10/2022;106552;EU.3176.53;;2015-09-29;;(Date of UN designation: 2015-09-29);E;enterprise;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Jund Al-Khilafah In Algeria;EN;;;;106553;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106552;EU.3176.53;;2015-09-29;;(Date of UN designation: 2015-09-29);E;enterprise;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Soldiers of the Caliphate in the Land of Algeria;EN;;;;106557;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106552;EU.3176.53;;2015-09-29;;(Date of UN designation: 2015-09-29);E;enterprise;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Soldiers of the Caliphate of Algeria;EN;;;;106558;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106552;EU.3176.53;;2015-09-29;;(Date of UN designation: 2015-09-29);E;enterprise;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Soldiers of the Caliphate in Algeria;EN;;;;106559;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106552;EU.3176.53;;2015-09-29;;(Date of UN designation: 2015-09-29);E;enterprise;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Jund al-Khalifa fi Ard al- Jazayer;EN;;;;106560;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106552;EU.3176.53;;2015-09-29;;(Date of UN designation: 2015-09-29);E;enterprise;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Jund al-Khilafah fi Ard al-Jaza'ir;EN;;;;106561;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106552;EU.3176.53;;2015-09-29;;(Date of UN designation: 2015-09-29);E;enterprise;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Jund al Khalifa;EN;;;;106562;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106552;EU.3176.53;;2015-09-29;;(Date of UN designation: 2015-09-29);E;enterprise;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;JAK-A;EN;;;;106563;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106552;EU.3176.53;;2015-09-29;;(Date of UN designation: 2015-09-29);E;enterprise;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;Kabylie region;;NO;;DZ;ALGERIA;106556;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106554;EU.3177.18;;2015-09-30;;(Date of UN designation: 2015-09-30)\n(Physical description: hair colour: brown/black.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;Muthana;Aseel;;Aseel Muthana;EN;;;;106555;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106554;EU.3177.18;;2015-09-30;;(Date of UN designation: 2015-09-30)\n(Physical description: hair colour: brown/black.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(As at February 2014.);SY;SYRIAN ARAB REPUBLIC;106564;EN;As at February 2014.;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106554;EU.3177.18;;2015-09-30;;(Date of UN designation: 2015-09-30)\n(Physical description: hair colour: brown/black.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1996-11-22;22;11;1996;;;NO;GREGORIAN;;;Cardiff,;;GB;UNITED KINGDOM;106565;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106554;EU.3177.18;;2015-09-30;;(Date of UN designation: 2015-09-30)\n(Physical description: hair colour: brown/black.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;516088643 (passport-National passport) (on 2014-01-07 valid to 2024-01-07);NO;NO;NO;NO;NO;;2014-01-07;;2024-01-07;;;passport;National passport;;00;;106567;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;106554;EU.3177.18;;2015-09-30;;(Date of UN designation: 2015-09-30)\n(Physical description: hair colour: brown/black.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GB;;106566;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN +28/10/2022;106568;EU.3873.10;;2015-09-29;;(Date of UN designation: 2015-09-29)\n(Operates in Java and Sulawesi, Indonesia and also active in Indonesia's eastern provinces.);E;enterprise;amendment;commission;2017-04-05;2017-04-06;2017/637 (OJ L91);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0637&from=EN;;;;Mujahidin of Western Indonesia;EN;;;;106570;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106568;EU.3873.10;;2015-09-29;;(Date of UN designation: 2015-09-29)\n(Operates in Java and Sulawesi, Indonesia and also active in Indonesia's eastern provinces.);E;enterprise;amendment;commission;2017-04-05;2017-04-06;2017/637 (OJ L91);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0637&from=EN;;;;MIB;EN;;;;106571;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106568;EU.3873.10;;2015-09-29;;(Date of UN designation: 2015-09-29)\n(Operates in Java and Sulawesi, Indonesia and also active in Indonesia's eastern provinces.);E;enterprise;amendment;commission;2017-04-05;2017-04-06;2017/637 (OJ L91);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0637&from=EN;;;;Mujahidin Indonesia Barat;EN;;;;106572;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106568;EU.3873.10;;2015-09-29;;(Date of UN designation: 2015-09-29)\n(Operates in Java and Sulawesi, Indonesia and also active in Indonesia's eastern provinces.);E;enterprise;amendment;commission;2017-04-05;2017-04-06;2017/637 (OJ L91);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0637&from=EN;;;;Mujahidin Indonesia Timor;EN;;;;106573;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106568;EU.3873.10;;2015-09-29;;(Date of UN designation: 2015-09-29)\n(Operates in Java and Sulawesi, Indonesia and also active in Indonesia's eastern provinces.);E;enterprise;amendment;commission;2017-04-05;2017-04-06;2017/637 (OJ L91);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0637&from=EN;;;;East Indonesia Mujahideen;EN;;;;106574;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106568;EU.3873.10;;2015-09-29;;(Date of UN designation: 2015-09-29)\n(Operates in Java and Sulawesi, Indonesia and also active in Indonesia's eastern provinces.);E;enterprise;amendment;commission;2017-04-05;2017-04-06;2017/637 (OJ L91);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0637&from=EN;;;;Mujahidin of Eastern Indonesia;EN;;;;106575;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106568;EU.3873.10;;2015-09-29;;(Date of UN designation: 2015-09-29)\n(Operates in Java and Sulawesi, Indonesia and also active in Indonesia's eastern provinces.);E;enterprise;amendment;commission;2017-04-05;2017-04-06;2017/637 (OJ L91);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0637&from=EN;;;;MIT;EN;;;;106576;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106568;EU.3873.10;;2015-09-29;;(Date of UN designation: 2015-09-29)\n(Operates in Java and Sulawesi, Indonesia and also active in Indonesia's eastern provinces.);E;enterprise;amendment;commission;2017-04-05;2017-04-06;2017/637 (OJ L91);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0637&from=EN;;;;Mujahidin Indonesian Timur;EN;;;;106577;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106568;EU.3873.10;;2015-09-29;;(Date of UN designation: 2015-09-29)\n(Operates in Java and Sulawesi, Indonesia and also active in Indonesia's eastern provinces.);E;enterprise;amendment;commission;2017-04-05;2017-04-06;2017/637 (OJ L91);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0637&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;ID;INDONESIA;106569;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106584;EU.3143.58;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Physical description: eye colour: brown, hair colour: black, build: slim, height 175-180 cm. Distinguishing marks: long face, speech defect, b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Abu Hanifa;EN;;;;106591;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106584;EU.3143.58;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Physical description: eye colour: brown, hair colour: black, build: slim, height 175-180 cm. Distinguishing marks: long face, speech defect, b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Shamil Magomedovich Aliev;EN;;;;106592;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106584;EU.3143.58;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Physical description: eye colour: brown, hair colour: black, build: slim, height 175-180 cm. Distinguishing marks: long face, speech defect, b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;Ismailov;Shamil;Magomedovich;Shamil Magomedovich Ismailov;EN;;;;106593;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106584;EU.3143.58;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Physical description: eye colour: brown, hair colour: black, build: slim, height 175-180 cm. Distinguishing marks: long face, speech defect, b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(possible alternative location as at August 2015);IQ;IRAQ;106585;EN;possible alternative location as at August 2015;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106584;EU.3143.58;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Physical description: eye colour: brown, hair colour: black, build: slim, height 175-180 cm. Distinguishing marks: long face, speech defect, b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(located in as at August 2015);SY;SYRIAN ARAB REPUBLIC;106586;EN;located in as at August 2015;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106584;EU.3143.58;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Physical description: eye colour: brown, hair colour: black, build: slim, height 175-180 cm. Distinguishing marks: long face, speech defect, b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-10-29;29;10;1980;;;NO;GREGORIAN;;;;Astrakhan;RU;RUSSIAN FEDERATION;106587;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106584;EU.3143.58;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Physical description: eye colour: brown, hair colour: black, build: slim, height 175-180 cm. Distinguishing marks: long face, speech defect, b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200075689 (passport-National passport) (on 2000-12-15)(Russian national passport number issued on 15 Dec. 2000 by Russian Federation);NO;NO;NO;NO;NO;;2000-12-15;;;;;passport;National passport;;RU;;106589;EN;Russian national passport number issued on 15 Dec. 2000 by Russian Federation;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;106584;EU.3143.58;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Physical description: eye colour: brown, hair colour: black, build: slim, height 175-180 cm. Distinguishing marks: long face, speech defect, b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;514448632 (passport-National passport) (issued by RUSSIAN CONSULTATE IN EGYPT on 2010-09-08)(Russian foreign travel passport number issued on 8.9.2010 in Alexandria, Egypt by Consulate General of the Russian Federation);NO;NO;NO;NO;NO;RUSSIAN CONSULTATE IN EGYPT;2010-09-08;;;;;passport;National passport;;RU;;106590;EN;Russian foreign travel passport number issued on 8.9.2010 in Alexandria, Egypt by Consulate General of the Russian Federation;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;106584;EU.3143.58;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Physical description: eye colour: brown, hair colour: black, build: slim, height 175-180 cm. Distinguishing marks: long face, speech defect, b) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;106588;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN +28/10/2022;106654;EU.3167.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Abdul Aziz;EN;;;;106656;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106654;EU.3167.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Aziz;EN;;;;106657;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106654;EU.3167.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Muslim;EN;;;;106658;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106654;EU.3167.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Vostochniy;EN;;;;106659;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106654;EU.3167.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Fackih;EN;;;;106660;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106654;EU.3167.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Bach;EN;;;;106661;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106654;EU.3167.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;Guchaev;Zaurbek;Salimovich;Zaurbek Salimovich Guchaev;EN;;;;106662;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106654;EU.3167.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(possible alternative location as at August 2015);IQ;IRAQ;106673;EN;possible alternative location as at August 2015;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106654;EU.3167.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(located in as at August 2015);SY;SYRIAN ARAB REPUBLIC;106674;EN;located in as at August 2015;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106654;EU.3167.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-09-07;7;9;1975;;;NO;GREGORIAN;;;Chegemskiy District, Republic of Kabardino-Balkaria;Chegem-1 Village;RU;RUSSIAN FEDERATION;106655;EN;Chegem-1 Village, Chegemskiy District, Republic of Kabardino-Balkaria, Russian Federation;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106654;EU.3167.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8304661431 (id-National identification card) (National identification No.: 8304661431 (Russian national passport number));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;RU;;106676;EN;National identification No.: 8304661431 (Russian national passport number);amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;106654;EU.3167.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;622641887 (passport-National passport) (622641887 Russian foreign travel passport number);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;RU;;106677;EN;622641887 Russian foreign travel passport number;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;106654;EU.3167.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;106675;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Husan;EN;;;;106721;EN;(original script: Хусан);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Abu Asim;EN;;;;106722;EN;(original script: Абу Ясим);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Abu Yasir;EN;;;;106723;EN;(original script: Абу Ясир);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Abu Bilal;EN;;;;106724;EN;(original script: Абу-Билал);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Sever;EN;;;;106725;EN;(original script: Север);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Wainakh;EN;;;;106726;EN;(original script: Вайнах);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Umar Sulimov;EN;;;;106727;EN;(original script: Умар Сулимов);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Husan Isaevich Gaziev;EN;;;;106728;EN;(original script: Хусан Исаевич Газиев);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Tarkhan Isaevich Gaziev;EN;;;;106729;EN;(original script: Тархан Исаевич Газиев);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Ramzan Oduev;EN;;;;106730;EN;(original script: Рамзан Одуев);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;Gaziev;Tarkhan;Ismailovich;Tarkhan Ismailovich Gaziev;EN;;;;106731;EN;(original script: Тархан Исмаилович Газиев);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Abu-Naser;EN;;;;109495;EN;;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Ab-Bilal;EN;;;;109496;EN;;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Хусан;EN;;;;109497;EN;(original script);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Абу Ясим;EN;;;;109498;EN;(original script);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Абу Ясир;EN;;;;109499;EN;(original script);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Абу-Билал;EN;;;;109500;EN;(original script);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Север;EN;;;;109501;EN;(original script);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Вайнах;EN;;;;109502;EN;(original script);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Умар Сулимов;EN;;;;109503;EN;(original script);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Хусан Исаевич Газиев;EN;;;;109504;EN;(original script);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Тархан Исаевич Газиев;EN;;;;109505;EN;(original script);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Рамзан Одуев;EN;;;;109506;EN;(original script);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;Тархан Исмаилович Газиев;EN;;;;109507;EN;(original script);amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(possible alternative location as at August 2015);IQ;IRAQ;106716;EN;possible alternative location as at August 2015;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;((located in as at August 2015));SY;SYRIAN ARAB REPUBLIC;106717;EN;(located in as at August 2015);amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-11-11;11;11;1965;;;NO;GREGORIAN;;Itum-Kalinskiy District;Republic of Chechnya;Itum-Kale;RU;RUSSIAN FEDERATION;106718;EN;Itum-Kale, Itum-Kalinskiy District, Republic of Chechnya, Russian Federation;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106715;EU.3563.17;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;106719;EN;;amendment;commission;2016-09-13;2016-09-14;2016/1641 (OJ L244);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1641&from=EN +28/10/2022;106732;EU.3155.86;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(a) Physical description: eye colour brown, hair colour: dark, build: strong, straight nose, height: 180-185 cm, speaks Russian, English, Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Abu al Banat;EN;;;;106739;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106732;EU.3155.86;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(a) Physical description: eye colour brown, hair colour: dark, build: strong, straight nose, height: 180-185 cm, speaks Russian, English, Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Abu Banat;EN;;;;106740;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106732;EU.3155.86;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(a) Physical description: eye colour brown, hair colour: dark, build: strong, straight nose, height: 180-185 cm, speaks Russian, English, Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;Abdurakhmanov;Maghomed;Maghomedzakirovich;Maghomed Maghomedzakirovich Abdurakhmanov;EN;;;;106741;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106732;EU.3155.86;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(a) Physical description: eye colour brown, hair colour: dark, build: strong, straight nose, height: 180-185 cm, speaks Russian, English, Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Previous confirmed location since September 2012.);SY;SYRIAN ARAB REPUBLIC;106733;EN;Previous confirmed location since September 2012.;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106732;EU.3155.86;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(a) Physical description: eye colour brown, hair colour: dark, build: strong, straight nose, height: 180-185 cm, speaks Russian, English, Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Possible location.);TR;TURKEY;106734;EN;Possible location.;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106732;EU.3155.86;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(a) Physical description: eye colour brown, hair colour: dark, build: strong, straight nose, height: 180-185 cm, speaks Russian, English, Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-11-24;24;11;1974;;;NO;GREGORIAN;;Levashinskiy District;Khadzhalmahi Village;;RU;RUSSIAN FEDERATION;106735;EN;Republic of Dagestan;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106732;EU.3155.86;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(a) Physical description: eye colour brown, hair colour: dark, build: strong, straight nose, height: 180-185 cm, speaks Russian, English, Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8200203535 (passport-National passport) (Russian national passport number);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;RU;;106737;EN;Russian national passport number;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;106732;EU.3155.86;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(a) Physical description: eye colour brown, hair colour: dark, build: strong, straight nose, height: 180-185 cm, speaks Russian, English, Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515458008 (passport-National passport) (valid to 2017-05-30)(Russian foreign travel passport number);NO;NO;NO;NO;NO;;;;2017-05-30;;;passport;National passport;;RU;;106738;EN;Russian foreign travel passport number;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;106732;EU.3155.86;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(a) Physical description: eye colour brown, hair colour: dark, build: strong, straight nose, height: 180-185 cm, speaks Russian, English, Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;106736;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN +28/10/2022;106750;EU.3478.72;;;;"(a) Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;Odnorukiy;EN;;;;106755;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106750;EU.3478.72;;;;"(a) Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;Elmir Sene;EN;;;;106756;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106750;EU.3478.72;;;;"(a) Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;David Mayer;EN;;;;106757;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106750;EU.3478.72;;;;"(a) Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;Akhmad Shishani;EN;;;;106758;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106750;EU.3478.72;;;;"(a) Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;Chataev;Akhmed;Rajapovich;Akhmed Rajapovich Chataev;EN;;;;106759;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106750;EU.3478.72;;;;"(a) Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Possible alternative location as at August 2015.);IQ;IRAQ;106751;EN;Possible alternative location as at August 2015.;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106750;EU.3478.72;;;;"(a) Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Located in as at August 2015.);SY;SYRIAN ARAB REPUBLIC;106752;EN;Located in as at August 2015.;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106750;EU.3478.72;;;;"(a) Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-07-14;14;7;1980;;;NO;GREGORIAN;;Republic of Chechnya;Vedeno Village, Vedenskiy District;;RU;RUSSIAN FEDERATION;106753;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106750;EU.3478.72;;;;"(a) Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9600133195 (passport-National passport) (Russian national passport number issued in Vedensiky District, Republic of Chechnya, Russian Federation by Department of Internal Affairs);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;RU;;106754;EN;Russian national passport number issued in Vedensiky District, Republic of Chechnya, Russian Federation by Department of Internal Affairs;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;106750;EU.3478.72;;;;"(a) Physical description: eye colour: brown, hair colour: black, build: solid; distinguishing marks: oval face, beard, missing a right hand and left leg, speaks Russian, Chechen and possibly German and Arabic. \nb) Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)";P;person;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;107549;EN;;amendment;commission;2016-01-19;2016-01-19;2016/47 (OJ L12);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_012_R_0004&from=EN +28/10/2022;106773;EU.3156.51;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;Abu Jihad;EN;;;;106780;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106773;EU.3156.51;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;Atabiev;Islam;Seit-Umarovich;Islam Seit-Umarovich Atabiev;EN;;;;106781;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106773;EU.3156.51;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Located in as at August 2015);SY;SYRIAN ARAB REPUBLIC;106774;EN;Located in as at August 2015;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106773;EU.3156.51;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;Ust-Dzheguta;Moscovskiy Microrayon 6, App. 96;;;Republic of Karachayevo-Cherkessia;;NO;;RU;RUSSIAN FEDERATION;106775;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106773;EU.3156.51;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-09-29;29;9;1983;;;NO;GREGORIAN;;;;Ust-Dzheguta;RU;RUSSIAN FEDERATION;106776;EN;Republic of Karachayevo- Cherkessia;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;106773;EU.3156.51;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9103314932 (passport-National passport) (issued by Department of the Federal Migration Service of the Russian Federation for the Republic Karachayevo-Cherkessia on 2003-08-15)(Issued by the Department of the Federal Migration Service of the Russian Federation for the Republic Karachayevo-Cherkessia);NO;NO;NO;NO;NO;Department of the Federal Migration Service of the Russian Federation for the Republic Karachayevo-Cherkessia;2003-08-15;;;;;passport;National passport;;RU;;106778;EN;Issued by the Department of the Federal Migration Service of the Russian Federation for the Republic Karachayevo-Cherkessia;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;106773;EU.3156.51;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;620169661 (passport-National passport) (Russian foreign travel passport number);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;RU;;106779;EN;Russian foreign travel passport number;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;106773;EU.3156.51;;2015-10-02;;(Date of UN designation: 2015-10-02)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;106777;EN;;amendment;commission;2015-10-09;2015-10-09;2015/1815 (OJ L264);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_264_R_0002&from=EN +28/10/2022;107009;EU.3725.67;;2015-11-02;;(Date of UN designation: 2015-11-02)\n(Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5905294);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;Toriq Agha Sayed;EN;M;;;107010;EN;;amendment;council;2015-11-17;2015-11-17;2015/2043 (OJ L 300, p. 1);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R2043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107009;EU.3725.67;;2015-11-02;;(Date of UN designation: 2015-11-02)\n(Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5905294);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;Toriq Agha;EN;M;;;107011;EN;;amendment;council;2015-11-17;2015-11-17;2015/2043 (OJ L 300, p. 1);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R2043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107009;EU.3725.67;;2015-11-02;;(Date of UN designation: 2015-11-02)\n(Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5905294);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;Torak Agha;EN;M;;;107012;EN;;amendment;council;2015-11-17;2015-11-17;2015/2043 (OJ L 300, p. 1);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R2043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107009;EU.3725.67;;2015-11-02;;(Date of UN designation: 2015-11-02)\n(Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5905294);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;Sayed Mohammed Hashan;EN;M;;;107013;EN;;amendment;council;2015-11-17;2015-11-17;2015/2043 (OJ L 300, p. 1);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R2043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107009;EU.3725.67;;2015-11-02;;(Date of UN designation: 2015-11-02)\n(Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5905294);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;Torek Agha;EN;M;Haji;;107014;EN;;amendment;council;2015-11-17;2015-11-17;2015/2043 (OJ L 300, p. 1);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R2043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107009;EU.3725.67;;2015-11-02;;(Date of UN designation: 2015-11-02)\n(Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5905294);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;Baluchistan Province;Pashtunabad, Quetta;NO;;PK;PAKISTAN;107015;EN;;amendment;council;2015-11-17;2015-11-17;2015/2043 (OJ L 300, p. 1);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32015R2043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107009;EU.3725.67;;2015-11-02;;(Date of UN designation: 2015-11-02)\n(Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5905294);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;YES;GREGORIAN;;Kandahar Province;;;AF;AFGHANISTAN;107016;EN;;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107009;EU.3725.67;;2015-11-02;;(Date of UN designation: 2015-11-02)\n(Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5905294);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;;;NO;GREGORIAN;;Pishin, Baluchistan Province;;;PK;PAKISTAN;107017;EN;;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107009;EU.3725.67;;2015-11-02;;(Date of UN designation: 2015-11-02)\n(Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5905294);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;Kandahar Province, Afghanistan;;;AF;AFGHANISTAN;107018;EN;;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107009;EU.3725.67;;2015-11-02;;(Date of UN designation: 2015-11-02)\n(Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5905294);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;YES;GREGORIAN;;Pishin, Baluchistan Province;;;PK;PAKISTAN;111248;EN;;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107009;EU.3725.67;;2015-11-02;;(Date of UN designation: 2015-11-02)\n(Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5905294);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;;;NO;GREGORIAN;;Kandahar Province;;;AF;AFGHANISTAN;111249;EN;;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107009;EU.3725.67;;2015-11-02;;(Date of UN designation: 2015-11-02)\n(Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5905294);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;Pishin, Baluchistan Province;;;PK;PAKISTAN;119446;EN;;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107009;EU.3725.67;;2015-11-02;;(Date of UN designation: 2015-11-02)\n(Key commander for Taliban military council involved in fundraising from Gulf-based donors. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/5905294);P;person;amendment;council;2019-02-19;2019-02-20;2019/279 (OJ L47);AFG;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0279&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5430312277059 (id-National identification card) [revoked by issuer]((fraudulently obtained and since cancelled by the Government of Pakistan).);NO;NO;NO;NO;YES;;;;;;;id;National identification card;;PK;;107019;EN;(fraudulently obtained and since cancelled by the Government of Pakistan).;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;; +28/10/2022;107163;EU.3883.11;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;Geye;Aroun;;Aroun Geye;EN;;;;107168;EN;;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107163;EU.3883.11;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;Gaye;Aroun;;Aroun Gaye;EN;;;;107169;EN;;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107163;EU.3883.11;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;Geye;Haroun;;Haroun Geye;EN;;;;107170;EN;;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107163;EU.3883.11;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;GAYE;Haroun;;Haroun GAYE;EN;;;Rapporteur of the political coordination of the Front Populaire pour la Renaissance de Centrafrique\n(FPRC);107171;EN;Gaye is a leader of the Front Populaire pour la Renaissance de Centrafrique (FPRC) (not listed) a marginalized ex-Seleka armed group in Bangui. He is also a leader of the socalled “Defense Committee” of Bangui’s PK5 (known as PK5 Resistance’ or ‘Texas’) (not listed), which extorts money from residents and threatens and employs physical violence. Gaye was appointed on 2 November 2014 by Nourredine Adam (CFi.002) as rapporteur of the political coordination of the FPRC.;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107163;EU.3883.11;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;Bangui;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;107164;EN;;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107163;EU.3883.11;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;Ndélé, Bamingui-Bangoran;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;125146;EN;;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107163;EU.3883.11;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-01-30;30;1;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;107165;EN;;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107163;EU.3883.11;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-01-30;30;1;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;107166;EN;;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107163;EU.3883.11;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;O00065772 (passport-National passport) (valid to 2019-12-30)(Central African Republic number (letter O followed by 3 zeros).);NO;NO;NO;NO;NO;;;;2019-12-30;;;passport;National passport;;CF;;107167;EN;Central African Republic number (letter O followed by 3 zeros).;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;; +28/10/2022;107480;EU.3884.73;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2018-05-08;2018-05-08;2018/698 (OJ L117 I);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0698&from=EN;Ngakosset;;;Ngakosset;EN;;;;107483;EN;;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107480;EU.3884.73;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2018-05-08;2018-05-08;2018/698 (OJ L117 I);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0698&from=EN;;;;‘The Butcher of Paoua’;EN;;;;107484;EN;;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107480;EU.3884.73;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2018-05-08;2018-05-08;2018/698 (OJ L117 I);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0698&from=EN;Ngaikouesset;Eugene;;Eugene Ngaikouesset;EN;;;;107485;EN;;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107480;EU.3884.73;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2018-05-08;2018-05-08;2018/698 (OJ L117 I);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0698&from=EN;Ngaikosse;Eugene;Barret;Eugene Barret Ngaikosse;EN;;;;107486;EN;;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107480;EU.3884.73;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2018-05-08;2018-05-08;2018/698 (OJ L117 I);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0698&from=EN;Ngakosset;Eugene;;Eugene Ngakosset;EN;;;;107487;EN;;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107480;EU.3884.73;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2018-05-08;2018-05-08;2018/698 (OJ L117 I);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0698&from=EN;Ngaikoisset;Eugene;;Eugene Ngaikoisset;EN;;;;107488;EN;;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107480;EU.3884.73;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2018-05-08;2018-05-08;2018/698 (OJ L117 I);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0698&from=EN;Ngaikosset;Eugene;;Eugene Ngaikosset;EN;;;;107489;EN;;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107480;EU.3884.73;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2018-05-08;2018-05-08;2018/698 (OJ L117 I);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0698&from=EN;NGAÏKOSSET;Eugène;BARRET;Eugène BARRET NGAÏKOSSET;EN;M;Captain;a) Former Captain, CAR Presidential Guard b) Former Captain, CAR Naval Forces;107490;EN;Captain Eugène Barret Ngaïkosset is a former member of former President François Bozizé's presidential guard.;amendment;council;2018-05-08;2018-05-08;2018/698 (OJ L117 I);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0698&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107480;EU.3884.73;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2018-05-08;2018-05-08;2018/698 (OJ L117 I);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0698&from=EN;;;;;;;;;;;;;;;;;;;Bangui;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;107481;EN;;amendment;council;2015-12-24;2015-12-24;2015/2454 (OJ L339);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_339_R_0003&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107480;EU.3884.73;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2018-05-08;2018-05-08;2018/698 (OJ L117 I);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0698&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-10-08;8;10;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;116651;EN;;amendment;council;2018-05-08;2018-05-08;2018/698 (OJ L117 I);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0698&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107480;EU.3884.73;;2015-12-17;;(Date of UN designation: 2015-12-17);P;person;amendment;council;2018-05-08;2018-05-08;2018/698 (OJ L117 I);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0698&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;911-10-77 (other-Other identification number) (Central African Republic armed forces (FACA) Military identification number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;CF;;107482;EN;Central African Republic armed forces (FACA) Military identification number;amendment;council;2018-05-08;2018-05-08;2018/698 (OJ L117 I);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0698&from=EN;;;;;;;;;;;;; +28/10/2022;107679;EU.3428.67;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Abd Al-Baset Azzouz;EN;;;;107680;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107679;EU.3428.67;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;AA (initials);EN;;;;107712;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107679;EU.3428.67;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;Azouz;Abdul;Baset;Abdul Baset Azouz;EN;;;;107713;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107679;EU.3428.67;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;Azouz;Abdelbassed;;Abdelbassed Azouz;EN;;;;107714;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107679;EU.3428.67;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;((last known location).);LY;LIBYA;107707;EN;(last known location).;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107679;EU.3428.67;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-02-07;7;2;1966;;;NO;GREGORIAN;;;;Doma;LY;LIBYA;107708;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107679;EU.3428.67;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"C00146605 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;GB;;107710;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;; +28/10/2022;107679;EU.3428.67;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"223611 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;LY;;107711;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;; +28/10/2022;107679;EU.3428.67;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LY;;107709;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN +28/10/2022;107681;EU.3429.32;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Gulmurod Khalimov;EN;;;;107682;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107681;EU.3429.32;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;((location as at September 2015).);SY;SYRIAN ARAB REPUBLIC;107715;EN;(location as at September 2015).;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107681;EU.3429.32;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;;;NO;GREGORIAN;;;;Dushanbe;TJ;TAJIKISTAN;107716;EN;approximately 1975;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107681;EU.3429.32;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-05-14;14;5;1975;;;NO;GREGORIAN;;;Varzob area;;TJ;TAJIKISTAN;107717;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107681;EU.3429.32;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TJ;;107718;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN +28/10/2022;107683;EU.3430.57;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;Imamovic;Nusret;;Nusret Imamovic;EN;;;;107684;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107683;EU.3430.57;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;Imamovic;Nusret;Sulejman;Nusret Sulejman Imamovic;EN;;;;107725;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107683;EU.3430.57;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;((location as of September 2015).);SY;SYRIAN ARAB REPUBLIC;107719;EN;(location as of September 2015).;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107683;EU.3430.57;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-09-26;26;9;1977;;;NO;GREGORIAN;;;;Miljanovci, Kalesija Municipality;BA;BOSNIA AND HERZEGOWINA;107720;EN;Miljanovci, Kalesija Municipality, Bosnia.;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107683;EU.3430.57;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-09-26;26;9;1971;;;NO;GREGORIAN;;;;Miljanovci, Kalesija Municipality.;BA;BOSNIA AND HERZEGOWINA;107721;EN;Miljanovci, Kalesija Municipality, Bosnia.;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107683;EU.3430.57;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"3490054 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;BA;;107723;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;; +28/10/2022;107683;EU.3430.57;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"349054 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;BA;;107724;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;; +28/10/2022;107683;EU.3430.57;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2019-04-08;2019-04-09;2019/555 (OJ L97);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:097:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BA;;107722;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN +28/10/2022;107685;EU.3431.22;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;Al-Najdi;Muhannad;;Muhannad Al-Najdi;EN;;;;107686;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107685;EU.3431.22;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Ghassan al-Tajiki;EN;;;;107728;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107685;EU.3431.22;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;'Ali Manahi 'Ali al-Mahaydali al-'Utaybi;EN;;;;107729;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107685;EU.3431.22;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-05-19;19;5;1984;;;NO;GREGORIAN;;;al-Duwadmi;;SA;SAUDI ARABIA;107726;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107685;EU.3431.22;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SA;;107727;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN +28/10/2022;107687;EU.3432.84;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;Laaboudi;Morad;;Morad Laaboudi;EN;;;;107688;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107687;EU.3432.84;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Abu Ismail al-Maghribi;EN;;;;107735;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107687;EU.3432.84;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Abu Ismail;EN;;;;107736;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107687;EU.3432.84;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;TR;TURKEY;107730;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107687;EU.3432.84;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1993-02-26;26;2;1993;;;NO;GREGORIAN;;;;;MA;MOROCCO;107731;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107687;EU.3432.84;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"CD595054 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;MA;;107733;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;; +28/10/2022;107687;EU.3432.84;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"UZ6430184 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;MA;;107734;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;; +28/10/2022;107687;EU.3432.84;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA;;107732;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN +28/10/2022;107689;EU.3433.49;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;Al-Shawakh;Ali;Musa;Ali Musa Al-Shawakh;EN;;;;107690;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107689;EU.3433.49;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Abu Ayyub;EN;;;;107740;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107689;EU.3433.49;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Abu Luqman al-Suri;EN;;;;107741;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107689;EU.3433.49;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Abu Luqman al- Sahl;EN;;;;107742;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107689;EU.3433.49;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;'Ali al-Hamud;EN;;;;107743;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107689;EU.3433.49;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;'Ali Derwish;EN;;;;107744;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107689;EU.3433.49;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Ali Awas;EN;;;;107745;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107689;EU.3433.49;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Abdullah Shuwar al-Aujayd;EN;;;;107746;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107689;EU.3433.49;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Ali Hammud;EN;;;;107747;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107689;EU.3433.49;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Abu Luqman;EN;;;;107748;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107689;EU.3433.49;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Muhammad 'Ali al-Shawakh;EN;;;;107749;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107689;EU.3433.49;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;al-Shawwakh;Ibrahim;;Ibrahim al-Shawwakh;EN;;;;107750;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107689;EU.3433.49;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Ali al-Hamoud al-Shawakh;EN;;;;107751;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107689;EU.3433.49;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;al-Shawagh;'Ali Musa;;'Ali Musa al-Shawagh;EN;;;;107752;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107689;EU.3433.49;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;107737;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107689;EU.3433.49;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;NO;GREGORIAN;;Raqqa Province;Sahl Village;;SY;SYRIAN ARAB REPUBLIC;107738;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107689;EU.3433.49;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;107739;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN +28/10/2022;107691;EU.3434.14;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;Al-Sha'ari;Hasan;Al-Salahayn Salih;Hasan Al-Salahayn Salih Al-Sha'ari;EN;;;;107692;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107691;EU.3434.14;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Hasan Abu Habib;EN;;;;107758;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107691;EU.3434.14;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Abu Habib al-Libi;EN;;;;107759;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107691;EU.3434.14;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;al-Sha'iri;Husayn;al-Salihin Salih;Husayn al-Salihin Salih al-Sha'iri;EN;;;;107760;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107691;EU.3434.14;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;LY;LIBYA;107753;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107691;EU.3434.14;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;;;NO;GREGORIAN;;;;Derna;LY;LIBYA;107754;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107691;EU.3434.14;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55252 (id-National identification card) (issued in Derna, Libya);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;LY;;107756;EN;issued in Derna, Libya;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;; +28/10/2022;107691;EU.3434.14;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"542858 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;LY;;107757;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;; +28/10/2022;107691;EU.3434.14;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LY;;107755;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN +28/10/2022;107693;EU.3435.76;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;Ben Helal;Mounir;Ben Dhaou Ben Brahim;Mounir Ben Dhaou Ben Brahim Ben Helal;EN;;;Foreign terrorist fighter facilitator experienced in establishing and securing travel routes. Deeply involved in providing material support to the Organization of Al-Qaida in the Islamic Maghreb in North Africa. Assisted foreign terrorist fighters’ travel throughout North Africa and to Syrian Arab Republic to join Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq.;107694;EN;Profession: farm worker. Mother’s name: Mbarka Helali.;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107693;EU.3435.76;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Abu Maryam al-Tunisi;EN;;;;107763;EN;low quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107693;EU.3435.76;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Abu Rahmah;EN;;;;107764;EN;low quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107693;EU.3435.76;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;Hilel;Mounir;;Mounir Hilel;EN;;;;107765;EN;low quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107693;EU.3435.76;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;Helel;Mounir;;Mounir Helel;EN;;;;107766;EN;low quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107693;EU.3435.76;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;Amria Ben Guerdane, Medenine;;;;;;NO;;TN;TUNISIA;141027;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107693;EU.3435.76;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-05-10;10;5;1983;;;NO;GREGORIAN;;;Ben Guerdane;;TN;TUNISIA;107761;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107693;EU.3435.76;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"08619445 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;141028;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;; +28/10/2022;107693;EU.3435.76;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;107762;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN +28/10/2022;107695;EU.3436.41;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;Saleh;Mohammed;Abdel-Halim Hemaida;Mohammed Abdel-Halim Hemaida Saleh;EN;;;;107696;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107695;EU.3436.41;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Faris Baluchistan;EN;;;;107771;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107695;EU.3436.41;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Muhammad Abd-al-Halim Humaydah;EN;;;;107772;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107695;EU.3436.41;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;Saleh;Muhammad;Hameida;Muhammad Hameida Saleh;EN;;;;107773;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107695;EU.3436.41;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;EG;EGYPT;107767;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107695;EU.3436.41;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989-09-22;22;9;1989;;;NO;GREGORIAN;;;;Alexandria;EG;EGYPT;107768;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107695;EU.3436.41;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-09-22;22;9;1988;;;NO;GREGORIAN;;;;Alexandria;EG;EGYPT;107769;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107695;EU.3436.41;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EG;;107770;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN +28/10/2022;107697;EU.3437.6;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;Benghalem;Salim;;Salim Benghalem;EN;;;;107698;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107697;EU.3437.6;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;((as at September 2015).);SY;SYRIAN ARAB REPUBLIC;107774;EN;(as at September 2015).;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107697;EU.3437.6;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-07-06;6;7;1980;;;NO;GREGORIAN;;;Bourg la Reine;;FR;FRANCE;107775;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107697;EU.3437.6;;2016-02-29;;(Date of UN designation: 2016-02-29);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;FR;;107776;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN +28/10/2022;107699;EU.3438.68;;2016-02-29;;(Date of UN designation: 2016-02-29)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;Al-Anabi;Abu Ubaydah;Yusuf;Abu Ubaydah Yusuf Al-Anabi;EN;;;;107700;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107699;EU.3438.68;;2016-02-29;;(Date of UN designation: 2016-02-29)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Abou Youcef;EN;;;;107779;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107699;EU.3438.68;;2016-02-29;;(Date of UN designation: 2016-02-29)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Yusuf Abu Ubaydah;EN;;;;107780;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107699;EU.3438.68;;2016-02-29;;(Date of UN designation: 2016-02-29)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Yazid Mabrak;EN;;;;107781;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107699;EU.3438.68;;2016-02-29;;(Date of UN designation: 2016-02-29)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Yazid Mebrak;EN;;;;107782;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107699;EU.3438.68;;2016-02-29;;(Date of UN designation: 2016-02-29)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Yousif Abu Obayda Yazid;EN;;;;107783;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107699;EU.3438.68;;2016-02-29;;(Date of UN designation: 2016-02-29)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Mibrak Yazid;EN;;;;107784;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107699;EU.3438.68;;2016-02-29;;(Date of UN designation: 2016-02-29)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Youcef Abu Obeida;EN;;;;107785;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107699;EU.3438.68;;2016-02-29;;(Date of UN designation: 2016-02-29)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Mebrak Yazid;EN;;;;107786;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107699;EU.3438.68;;2016-02-29;;(Date of UN designation: 2016-02-29)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;Al-lnabi;Abu- Ubaydah;Yusuf;Abu- Ubaydah Yusuf Al-lnabi;EN;;;;107787;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107699;EU.3438.68;;2016-02-29;;(Date of UN designation: 2016-02-29)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;AI-Annabi;Abou;ObeJda Youssef;Abou ObeJda Youssef AI-Annabi;EN;;;;107788;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107699;EU.3438.68;;2016-02-29;;(Date of UN designation: 2016-02-29)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;DZ;ALGERIA;107791;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107699;EU.3438.68;;2016-02-29;;(Date of UN designation: 2016-02-29)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-02-07;7;2;1969;;;NO;GREGORIAN;;;Annaba;;DZ;ALGERIA;107777;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107699;EU.3438.68;;2016-02-29;;(Date of UN designation: 2016-02-29)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice);P;person;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;107778;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN +28/10/2022;107701;EU.3439.33;;2016-02-29;;(Date of UN designation: 2016-02-29);E;enterprise;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Harakat Sham Al-Islam;EN;;;;107702;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107701;EU.3439.33;;2016-02-29;;(Date of UN designation: 2016-02-29);E;enterprise;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Sham al-Islam Movement;EN;;;;107704;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107701;EU.3439.33;;2016-02-29;;(Date of UN designation: 2016-02-29);E;enterprise;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Sham al- Islam;EN;;;;107705;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107701;EU.3439.33;;2016-02-29;;(Date of UN designation: 2016-02-29);E;enterprise;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;Haraket Sham al-Islam;EN;;;;107706;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107701;EU.3439.33;;2016-02-29;;(Date of UN designation: 2016-02-29);E;enterprise;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;107703;EN;;amendment;commission;2016-03-04;2016-03-04;2016/307 (OJ L58);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0307&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107804;EU.4117.13;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Choe;Chun-Sik;;Chun-Sik Choe;EN;;;Was the Director of the Second Academy of Natural Sciences (SANS) and was the Head of the DPRK's long-range missile programme..;107805;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107804;EU.4117.13;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Ch'oe;Ch'un Sik;;Ch'un Sik Ch'oe;;;;;114024;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107804;EU.4117.13;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Choe;Chun Sik;;Chun Sik Choe;;;;;114025;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107804;EU.4117.13;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;143132;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107804;EU.4117.13;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-10-12;12;10;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;107852;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107804;EU.4117.13;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;107853;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN +28/10/2022;107806;EU.4118.75;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Date of designation: 2.3.2016);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Choe;Song Il;;Song Il Choe;EN;;;Tanchon Commercial Bank Representative. Served as the Tanchon Commercial Bank Representative in Vietnam.;107807;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107806;EU.4118.75;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Date of designation: 2.3.2016);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"563120356 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;107857;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;; +28/10/2022;107806;EU.4118.75;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Date of designation: 2.3.2016);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;472320665 (passport-National passport) (valid to 2017-09-26);NO;NO;NO;NO;NO;;;;2017-09-26;;;passport;National passport;;00;;107858;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;; +28/10/2022;107806;EU.4118.75;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Date of designation: 2.3.2016);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;107856;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN +28/10/2022;107808;EU.4119.40;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Hyon;Gwang Il;;Gwang Il Hyon;;;;;114026;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107808;EU.4119.40;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Hyon;Kwang II;;Kwang II Hyon;;;;Department Director for Scientific Development at the National Aerospace Development Administration.;114027;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107808;EU.4119.40;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-05-27;27;5;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;107860;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107808;EU.4119.40;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;107861;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN +28/10/2022;107810;EU.4120.65;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Jang;Bom;Su;Bom Su Jang;EN;;;Tanchon Commercial Bank Representative in Syria.;107811;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107810;EU.4120.65;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Jang;Pom;Su;Pom Su Jang;EN;;;;107864;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107810;EU.4120.65;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Jang;Hyon;U;Hyon U Jang;;;;;113892;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107810;EU.4120.65;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-04-15;15;4;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;107862;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107810;EU.4120.65;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-02-22;22;2;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;113893;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107810;EU.4120.65;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;836110034 (passport-National passport) (valid to 2020-01-01 diplomatic);YES;NO;NO;NO;NO;;;;2020-01-01;;;passport;National passport;;00;;113894;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;; +28/10/2022;107810;EU.4120.65;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;107863;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN +28/10/2022;107812;EU.4121.30;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Jang;Yong Son;;Yong Son Jang;EN;;;Korea Mining Development Trading Corporation (KOMID) Representative. Served as the KOMID representative in Iran.;107813;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107812;EU.4121.30;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-02-20;20;2;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;107865;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107812;EU.4121.30;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"563110024 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KP;;143133;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;107812;EU.4121.30;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;107866;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN +28/10/2022;107814;EU.4122.92;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Jon;Myong;Guk;Myong Guk Jon;EN;;;Tanchon Commercial Bank Representative in Syria.;107815;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107814;EU.4122.92;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Jon;Yong;Sang;Yong Sang Jon;;;;;113895;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107814;EU.4122.92;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Cho'n Myo'ng-kuk;;;;;113896;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107814;EU.4122.92;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-10-18;18;10;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;107867;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107814;EU.4122.92;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-08-25;25;8;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;113897;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107814;EU.4122.92;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4721202031 (passport-National passport) (valid to 2017-02-21);NO;NO;NO;NO;NO;;;;2017-02-21;;;passport;National passport;;00;;107869;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;; +28/10/2022;107814;EU.4122.92;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;836110035 (passport-National passport) (valid to 2020-01-01 diplomatic);YES;NO;NO;NO;NO;;;;2020-01-01;;;passport;National passport;;00;;113898;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;; +28/10/2022;107814;EU.4122.92;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;107868;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN +28/10/2022;107816;EU.4123.57;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Kang;Mun Kil;;Mun Kil Kang;EN;;;Kang Mun Kil has conducted nuclear procurement activities as a representative of Namchongang, also known as Namhung.;107817;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107816;EU.4123.57;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Jiang;Wen-ji;;Wen-ji Jiang;EN;;;;107873;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107816;EU.4123.57;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Jian;Wenji;;Wenji Jian;;;;;143135;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107816;EU.4123.57;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;143134;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107816;EU.4123.57;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PS472330208 (passport-National passport) (valid to 2017-07-04)[known to be expired];NO;YES;NO;NO;NO;;;;2017-07-04;;;passport;National passport;;KP;;107872;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;107816;EU.4123.57;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;107871;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN +28/10/2022;107818;EU.4144.24;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Kang;Ryong;;Ryong Kang;EN;;;Korea Mining Development Trading Corporation (KOMID) Representative in Syria.;107819;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107818;EU.4144.24;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-08-21;21;8;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;107874;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107818;EU.4144.24;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;107875;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN +28/10/2022;107820;EU.4145.86;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Date of designation: 2.3.2016.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Kim;Jung Jong;;Jung Jong Kim;EN;;;Tanchon Commercial Bank Representative. Served as the Tanchon Commercial Bank Representative in Vietnam.;107821;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107820;EU.4145.86;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Date of designation: 2.3.2016.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Kim;Chung Chong;;Chung Chong Kim;EN;;;Tanchon Commercial Bank Representative. Served as the Tanchon Commercial Bank Representative in Vietnam.;107881;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107820;EU.4145.86;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Date of designation: 2.3.2016.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-11-07;7;11;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;107876;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107820;EU.4145.86;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Date of designation: 2.3.2016.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;563210184 (passport-National passport) (valid to 2018-06-18);NO;NO;NO;NO;NO;;;;2018-06-18;;;passport;National passport;;00;;107878;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;; +28/10/2022;107820;EU.4145.86;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Date of designation: 2.3.2016.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381110042 (passport-National passport) (valid to 2016-01-25);NO;NO;NO;NO;NO;;;;2016-01-25;;;passport;National passport;;00;;107879;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;; +28/10/2022;107820;EU.4145.86;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Date of designation: 2.3.2016.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199421147 (passport-National passport) (valid to 2014-12-29);NO;NO;NO;NO;NO;;;;2014-12-29;;;passport;National passport;;00;;107880;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;; +28/10/2022;107820;EU.4145.86;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Date of designation: 2.3.2016.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;107877;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN +28/10/2022;107822;EU.4146.51;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Kyu;Kim;;Kim Kyu;EN;;;Korea Mining Development Trading Corporation (KOMID) External Affairs Officer.;107823;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107822;EU.4146.51;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-07-30;30;7;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;107882;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107822;EU.4146.51;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;107883;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN +28/10/2022;107828;EU.4148.78;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Ko;Tae Hun;;Tae Hun Ko;EN;;;Tanchon Commercial Bank Representative.;107829;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107828;EU.4148.78;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Kim;Myong Gi;;Myong Gi Kim;EN;;;;107887;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107828;EU.4148.78;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-05-25;25;5;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;107884;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107828;EU.4148.78;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;563120630 (passport-National passport) (valid to 2018-03-20);NO;NO;NO;NO;NO;;;;2018-03-20;;;passport;National passport;;00;;107886;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;; +28/10/2022;107828;EU.4148.78;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;107885;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN +28/10/2022;107830;EU.4149.43;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Ri;Man Gon;;Man Gon Ri;EN;;;Ri Man Gon is the Minister of the Munitions Industry Department.;107831;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107830;EU.4149.43;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1945-10-29;29;10;1945;;;NO;GREGORIAN;;;;;00;UNKNOWN;107888;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107830;EU.4149.43;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PO381230469 (passport-National passport) (valid to 2016-04-06);NO;NO;NO;NO;NO;;;;2016-04-06;;;passport;National passport;;00;;107890;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;; +28/10/2022;107830;EU.4149.43;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;107889;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN +28/10/2022;107832;EU.4150.68;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Ryu;Jin;;Jin Ryu;EN;;;Korea Mining Development Trading Corporation (KOMID) Representative in Syria.;107833;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107832;EU.4150.68;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-08-07;7;8;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;107891;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107832;EU.4150.68;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"563410081 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;107893;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;; +28/10/2022;107832;EU.4150.68;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;107892;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN +28/10/2022;107834;EU.4162.96;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Yu;Chol U;;Chol U Yu;EN;;;Yu Choi U is the Director of the National Aerospace Development Administration.;107835;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107834;EU.4162.96;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;143147;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107834;EU.4162.96;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-08-08;8;8;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;143148;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107834;EU.4162.96;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;107894;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN +28/10/2022;107838;EU.4197.21;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Academy of National Defence Science;EN;;;The Academy of National Defence Science is involved in the DPRK's efforts to advance the development of its ballistic missile and nuclear weapons programs.;107839;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107838;EU.4197.21;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;107895;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107840;EU.4198.83;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(The Chongchongang Shipping Company, through its vessel, the Chong Chon Gang, attempted to directly import the illicit shipment of conventional weapons and arms to the DPRK in July 2013.);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Chongchongang Shipping Company;EN;;;;107841;EN;Owner of a vessel, the Chong Chon Gang, that attempted to directly import the illicit shipment of conventional weapons and arms to the DPRK in July 2013.;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107840;EU.4198.83;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(The Chongchongang Shipping Company, through its vessel, the Chong Chon Gang, attempted to directly import the illicit shipment of conventional weapons and arms to the DPRK in July 2013.);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Chong Chon Gang Shipping Co. Ltd.;EN;;;;107899;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107840;EU.4198.83;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(The Chongchongang Shipping Company, through its vessel, the Chong Chon Gang, attempted to directly import the illicit shipment of conventional weapons and arms to the DPRK in July 2013.);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Chongchongang Shipping Co LTD;;;;;143174;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107840;EU.4198.83;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(The Chongchongang Shipping Company, through its vessel, the Chong Chon Gang, attempted to directly import the illicit shipment of conventional weapons and arms to the DPRK in July 2013.);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;817, Haeum,Tonghun-dong, Chung-gu;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;107896;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107840;EU.4198.83;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(The Chongchongang Shipping Company, through its vessel, the Chong Chon Gang, attempted to directly import the illicit shipment of conventional weapons and arms to the DPRK in July 2013.);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;817 Haeun, Donghung-dong, Central District;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;107897;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107840;EU.4198.83;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(The Chongchongang Shipping Company, through its vessel, the Chong Chon Gang, attempted to directly import the illicit shipment of conventional weapons and arms to the DPRK in July 2013.);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"5342883 (imo-IMO (vessel identification)) ";NO;NO;NO;NO;NO;;;;;;;imo;IMO (vessel identification);;00;;107898;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;; +28/10/2022;107842;EU.4199.48;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Daedong Credit Bank has provided financial services to the Korea Mining Development Trading Corporation (KOMID) and Tanchon Commercial Bank.);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Daedong Credit Bank;EN;;;;107843;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107842;EU.4199.48;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Daedong Credit Bank has provided financial services to the Korea Mining Development Trading Corporation (KOMID) and Tanchon Commercial Bank.);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Taedong Credit Bank;EN;;;;107903;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107842;EU.4199.48;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Daedong Credit Bank has provided financial services to the Korea Mining Development Trading Corporation (KOMID) and Tanchon Commercial Bank.);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;DCB;EN;;;;107904;EN;Daedong Credit Bank;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107842;EU.4199.48;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Daedong Credit Bank has provided financial services to the Korea Mining Development Trading Corporation (KOMID) and Tanchon Commercial Bank.);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Dae-Dong Credit Bank;;;;;143175;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107842;EU.4199.48;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Daedong Credit Bank has provided financial services to the Korea Mining Development Trading Corporation (KOMID) and Tanchon Commercial Bank.);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Botonggang Hotel, Ansan-dong, Pongchon;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;107900;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107842;EU.4199.48;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Daedong Credit Bank has provided financial services to the Korea Mining Development Trading Corporation (KOMID) and Tanchon Commercial Bank.);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Suite 401, Potonggang Hotel, Ansan-Dong, Pyongchon District;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;107901;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107842;EU.4199.48;;2016-03-02;;(Date of UN designation: 2016-03-02)\n(Daedong Credit Bank has provided financial services to the Korea Mining Development Trading Corporation (KOMID) and Tanchon Commercial Bank.);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"DCBK KPPY (swiftbic-SWIFT BIC) ";NO;NO;NO;NO;NO;;;;;;;swiftbic;SWIFT BIC;;00;;107902;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;; +28/10/2022;107848;EU.4099.83;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Ministry Of Atomic Energy Industry;EN;;;The Ministry of Atomic Energy Industry was created in 2013 for the purpose of modernizing the DPRK's atomic energy industry to increase the production of nuclear materials, improve their quality, and further develop an independent DPRK nuclear industry.;107849;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107848;EU.4099.83;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;MAEI;EN;;;;107906;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107848;EU.4099.83;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;Haeun-2-dong;;;Pyongchon District;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;107905;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107850;EU.4101.28;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;National Aerospace Development Administration;EN;;;NADA is involved in the DPRK's development of space science and technology, including satellite launches and carrier rockets.;107851;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107850;EU.4101.28;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;NADA;EN;;;;107908;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107850;EU.4101.28;;2016-03-02;;(Date of UN designation: 2016-03-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;107907;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107938;EU.4147.16;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Kim;Yong Chol;;Yong Chol Kim;EN;;;KOMID Representative. Served as the KOMID Representative in Iran.;107941;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107938;EU.4147.16;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Young-Chul;;;;;144201;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107938;EU.4147.16;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Kim;Young-Cheol;;Young-Cheol Kim;;;;;144202;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107938;EU.4147.16;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Kim;Young-Chol;;Young-Chol Kim;;;;;144203;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107938;EU.4147.16;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Kim;Yong-Chol;;Yong-Chol Kim;;;;;144204;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107938;EU.4147.16;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-02-18;18;2;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;107939;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;107938;EU.4147.16;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"472310168 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KP;;144200;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;107938;EU.4147.16;;2016-03-02;;(Date of UN designation: 2016-03-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;107940;EN;;amendment;commission;2016-03-05;2016-03-05;2016/315 (OJ L60);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0315&from=EN +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;Le Messie sanglant;EN;;;;108097;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;Kony;Josef;;Josef Kony;EN;;;;108098;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;Kony;Joseph Rao;;Joseph Rao Kony;EN;;;;108099;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;Kony;;;Kony;EN;;;;108100;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;KONY;Joseph;;Joseph KONY;EN;;;Commander of the Lord's Resistance Army;108101;EN;Kony is the founder and leader of the Lord's Resistance Army (LRA).\nMother's name is Nora Obol.;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Kafia Kingi;;;;;;NO;((a territory on the border of Sudan and South Sudan whose final status has yet to be determined));00;UNKNOWN;108102;EN;(a territory on the border of Sudan and South Sudan whose final status has yet to be determined);amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Bas-Uolo;;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);108103;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Haut-Uolo;;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);108104;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Mbomou;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;108105;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Haut-Mbomou;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;108106;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Basse-Kotto;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;108107;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Haute-Kotto;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;108108;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Vakaga;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;108109;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;108087;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-01-01;1;1;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;108088;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;108089;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;108090;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;108091;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-09-18;18;9;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;108092;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;108093;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;Atyak;;UG;UGANDA;108094;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;;Odek, Omoro, Gulu;;UG;UGANDA;108095;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959;;;NO;GREGORIAN;;Omoro County, Gulu District;Palaro Village, Palaro Parish;;UG;UGANDA;108096;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108086;EU.3885.38;;2016-03-07;;(Date of UN designation: 2016-03-07);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UG;;108110;EN;Uganda Passport;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN +28/10/2022;108111;EU.3973.72;;2016-03-07;;(Date of UN designation: 2016-03-07);E;enterprise;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;Lord's Resistance Movement/ Army (LRM/A);EN;;;;108120;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108111;EU.3973.72;;2016-03-07;;(Date of UN designation: 2016-03-07);E;enterprise;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;Lord's Resistance Movement (LRM);EN;;;;108121;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108111;EU.3973.72;;2016-03-07;;(Date of UN designation: 2016-03-07);E;enterprise;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;LRA;EN;;;;108122;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108111;EU.3973.72;;2016-03-07;;(Date of UN designation: 2016-03-07);E;enterprise;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;LORD'S RESISTANCE ARMY;EN;;;;108123;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108111;EU.3973.72;;2016-03-07;;(Date of UN designation: 2016-03-07);E;enterprise;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Kafia Kingi;;;;;;NO;((a territory on the border of Sudan and South Sudan whose final status has yet to be determined));00;UNKNOWN;108112;EN;(a territory on the border of Sudan and South Sudan whose final status has yet to be determined);amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108111;EU.3973.72;;2016-03-07;;(Date of UN designation: 2016-03-07);E;enterprise;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Bas-Uolo;;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);108113;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108111;EU.3973.72;;2016-03-07;;(Date of UN designation: 2016-03-07);E;enterprise;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;HautUolo;;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);108114;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108111;EU.3973.72;;2016-03-07;;(Date of UN designation: 2016-03-07);E;enterprise;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Mbomou;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;108115;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108111;EU.3973.72;;2016-03-07;;(Date of UN designation: 2016-03-07);E;enterprise;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Haut-Mbomou;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;108116;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108111;EU.3973.72;;2016-03-07;;(Date of UN designation: 2016-03-07);E;enterprise;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Basse-Kotto;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;108117;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108111;EU.3973.72;;2016-03-07;;(Date of UN designation: 2016-03-07);E;enterprise;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Haute-Kotto;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;108118;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108111;EU.3973.72;;2016-03-07;;(Date of UN designation: 2016-03-07);E;enterprise;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Vakaga;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;108119;EN;;amendment;council;2016-03-12;2016-03-12;2016/354 (OJ L67);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0354&rid=1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108437;EU.3488.73;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;Zahrani;Abu Sara;;Abu Sara Zahrani;EN;;;;108443;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108437;EU.3488.73;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;al-Saudi;Abu Sarah;;Abu Sarah al-Saudi;EN;;;;108444;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108437;EU.3488.73;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;Alzahrani;Faisal Ahmed Ali;;Faisal Ahmed Ali Alzahrani;EN;;;;108445;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108437;EU.3488.73;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;Al-Zahrani;Faysal Ahmad Bin Ali;;Faysal Ahmad Bin Ali Al-Zahrani;EN;;;;108446;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108437;EU.3488.73;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;108438;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108437;EU.3488.73;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-01-19;19;1;1986;;;NO;GREGORIAN;;;;;00;UNKNOWN;108439;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108437;EU.3488.73;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"G579315 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;SA;;108441;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;108437;EU.3488.73;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;K142736 (passport-National passport) (on 2011-07-14 in Al-Khafji valid from 2011-07-14);NO;NO;NO;NO;NO;;2011-07-14;2011-07-14;;;;passport;National passport;Al-Khafji;SA;;108442;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;108437;EU.3488.73;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SA;;108440;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN +28/10/2022;108458;EU.3336.76;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;al-Juaitni;Abu Muath;;Abu Muath al-Juaitni;EN;;;;108463;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108458;EU.3336.76;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;Juaythini;Husayn Muhammad Husayn;;Husayn Muhammad Husayn Juaythini;EN;;;;108464;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108458;EU.3336.76;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;al-Juaythini;Husayn Muhamad Husayn;;Husayn Muhamad Husayn al-Juaythini;EN;;;;108465;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108458;EU.3336.76;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;al-Juaythini;Husayn Muhammad Husayn;;Husayn Muhammad Husayn al-Juaythini;EN;;;;108466;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108458;EU.3336.76;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;al-Juaythini;Husayn Muhammad;;Husayn Muhammad al-Juaythini;EN;;;;108467;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108458;EU.3336.76;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;Aljeithni;Hussein Mohammed Hussein;;Hussein Mohammed Hussein Aljeithni;EN;;;;108468;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108458;EU.3336.76;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;Juaythini;Husayn;;Husayn Juaythini;EN;;;;108469;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108458;EU.3336.76;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;Gaza Strip;;;;;;NO;;PS;PALESTINIAN TERRITORY, Occupied;108459;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108458;EU.3336.76;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-05-03;3;5;1977;;;NO;GREGORIAN;;;Gaza Strip;Nuseirat Refugee Camp;PS;PALESTINIAN TERRITORY, Occupied;108460;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108458;EU.3336.76;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0363464 (passport-National passport) (issued by Palestinian Authority);NO;NO;NO;NO;NO;Palestinian Authority;;;;;;passport;National passport;;PS;;108462;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;; +28/10/2022;108458;EU.3336.76;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PS;;108461;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN +28/10/2022;108470;EU.3337.41;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Muh Sholeh Ibrahim;EN;;;;108473;EN;good quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108470;EU.3337.41;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;Ibrahim;Sholeh;;Sholeh Ibrahim;EN;;;;108474;EN;good quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108470;EU.3337.41;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Muhammad Soleh Ibrahim;EN;;;;108475;EN;good quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108470;EU.3337.41;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Muhammad Sholeh Ibrohim;EN;;;;108476;EN;good quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108470;EU.3337.41;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Mohammad Sholeh Ibrahim;EN;;;;108477;EN;good quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108470;EU.3337.41;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Muhammad Sholeh Ibrahim;EN;;Ustad;Has served as the acting emir of Jemmah Anshorut Tauhid (JAT) since 2014 and has supported Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq. Profession: Lecturer/Private Teacher.;108478;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108470;EU.3337.41;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;Desa Cemani, Waringinrejo RT 001/021, Kecamatan Grogol, Kabupaten Sukoharjo, Jawa Tengah;;;;;;NO;;ID;INDONESIA;141029;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108470;EU.3337.41;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;Masjid Baitul Amin, Waringinrejo RT 01 RW 02, Grogol, Cemani, Sukoharjo, Jawa Tengah;;;57572;;;NO;;ID;INDONESIA;141030;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108470;EU.3337.41;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;1958;;;NO;GREGORIAN;;;;Demak;ID;INDONESIA;108471;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108470;EU.3337.41;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"3311092409580003 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;ID;;141031;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;; +28/10/2022;108470;EU.3337.41;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"3311092409580002 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;ID;;141032;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;; +28/10/2022;108470;EU.3337.41;;2016-04-20;;(Date of UN designation: 2016-04-20);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;108472;EN;;amendment;commission;2016-04-26;2016-04-26;2016/647 (OJ L109);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_109_R_0002&from=EN +28/10/2022;108510;EU.4006.82;;;;(Date of listing: 5/08/2017);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korean National Insurance Corporation (KNIC);EN;;;The Korean National Insurance Company is a DPRK financial and insurance company and is affiliated with Office 39.;108511;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108510;EU.4006.82;;;;(Date of listing: 5/08/2017);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea National Insurance Corporation;EN;;;;108515;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108510;EU.4006.82;;;;(Date of listing: 5/08/2017);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Foreign Insurance Company;EN;;;;108516;EN;branch offices of Korea National Insurance Corporation (KNIC);amendment;commission;2016-04-28;2016-04-28;2016/659 (OJ L114);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R0659&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108510;EU.4006.82;;;;(Date of listing: 5/08/2017);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Central District, Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;108514;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108623;EU.4160.69;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;CHOE Kyong-song;EN;M;;Colonel General in the Korean People’s Army. Former member of the Central Military Commission of the Workers’ Party of Korea;108624;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108623;EU.4160.69;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;CHOE Kyong song;;M;;;112442;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108623;EU.4160.69;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;최경성;;M;;;142001;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108623;EU.4160.69;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1945;;;NO;GREGORIAN;;;;;00;UNKNOWN;124483;EN;;amendment;council;2020-07-31;2020-08-01;2020/1129 (OJ L247);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.247.01.0005.01.ENG&toc=OJ:L:2020:247:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108625;EU.4161.34;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;CHOE Yong-ho;EN;M;;Colonel General in the Korean People’s Army/Korean People’s Army Air Force General. Former member of the Central Military Commission of the Workers’ Party of Korea;108626;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108625;EU.4161.34;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;CHOE Yong Ho;;M;;;112443;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108625;EU.4161.34;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;최용호;;M;;;142055;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108627;EU.3787.3;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;HONG Sung Mu;EN;M;;;108629;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108627;EU.3787.3;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;HONG Sung-Mu;EN;M;;Vice Director of the Munitions Industry Department (MID);108630;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108627;EU.3787.3;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;홍승무;;M;;;142056;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108627;EU.3787.3;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1942-01-01;1;1;1942;;;NO;GREGORIAN;;;;;00;UNKNOWN;108628;EN;;amendment;commission;2016-05-20;2016-05-20;2016/780 (OJ L131);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_131_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108631;EU.4175.89;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;JO Kyongchol;EN;M;;General in the Korean People’s Army. Former member of the Central Military Commission of the Workers’ Party of Korea. Director of the Military Security Command.;108632;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108631;EU.4175.89;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;JO Kyong Chol;;M;;;112445;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108631;EU.4175.89;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;조경철;;M;;;142061;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108633;EU.4176.54;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Chun-sam;EN;M;;Lieutenant General, former member of the Central Military Commission of the Workers’ Party of Korea. Former Director of the Operations Department of the Military Headquarters of the Korean People’s Army and first vice chief of the Military Headquarters.;108634;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108633;EU.4176.54;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Chun Sam;;M;;;112446;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108633;EU.4176.54;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;김춘삼;;M;;;142062;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108635;EU.4177.19;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Chun-sop;EN;M;;Former director of the Munitions Industry Department (MID).;108636;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108635;EU.4177.19;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Chun Sop;;M;;;112447;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108635;EU.4177.19;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;김춘섭;;M;;;142063;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108637;EU.4178.81;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2020-07-31;2020-08-01;2020/1129 (OJ L247);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.247.01.0005.01.ENG&toc=OJ:L:2020:247:TOC;KIM;Jong-gak;;Jong-gak KIM;EN;M;;Former Director of the General Political Department of the Korean's People's Army. Vice Marshal in the Korean People's Army, rector \nof the Military University of Kim Il-Sung, former Minister of the People's Armed Forces and former member of the Central Military Commission of the Workers' Party of Korea.;108639;EN;;amendment;council;2020-07-31;2020-08-01;2020/1129 (OJ L247);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.247.01.0005.01.ENG&toc=OJ:L:2020:247:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108637;EU.4178.81;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2020-07-31;2020-08-01;2020/1129 (OJ L247);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.247.01.0005.01.ENG&toc=OJ:L:2020:247:TOC;KIM;Jong Gak;;Jong Gak KIM;;;;;112448;EN;;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108637;EU.4178.81;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2020-07-31;2020-08-01;2020/1129 (OJ L247);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.247.01.0005.01.ENG&toc=OJ:L:2020:247:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1941-07-20;20;7;1941;;;NO;GREGORIAN;;;;Pyongyang;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;108638;EN;;amendment;council;2020-07-31;2020-08-01;2020/1129 (OJ L247);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.247.01.0005.01.ENG&toc=OJ:L:2020:247:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108640;EU.4179.46;;2021-08-07;;(Date of UN designation: 2021-08-07)\n(date of listing: 20.05.2016);P;person;amendment;council;2021-08-06;2021-08-07;2021/1300 (OJ L283);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;KIM;Rak-gyom;;Rak-gyom KIM;EN;;;;108641;EN;;amendment;commission;2016-05-20;2016-05-20;2016/780 (OJ L131);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_131_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108640;EU.4179.46;;2021-08-07;;(Date of UN designation: 2021-08-07)\n(date of listing: 20.05.2016);P;person;amendment;council;2021-08-06;2021-08-07;2021/1300 (OJ L283);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;KIM;Rak Kyom;;Rak Kyom KIM;EN;M;;Four Star General, former Commander of the Strategic Rocket Force, an entity designated by the United Nations. which comprises four strategic and tactical missile units, including the KN-08(ICBM) brigade. Former member of the Central Military Commission of the Workers' Party of Korea, which is a key body for national defence matters in the DPRK.;108642;EN;;amendment;council;2021-08-06;2021-08-07;2021/1300 (OJ L283);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108640;EU.4179.46;;2021-08-07;;(Date of UN designation: 2021-08-07)\n(date of listing: 20.05.2016);P;person;amendment;council;2021-08-06;2021-08-07;2021/1300 (OJ L283);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;KIM;Rak Gyom;;Rak Gyom KIM;;;;;112449;EN;;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108643;EU.4180.71;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Won-hong;EN;M;;General of the Korean People’s Army. Former First Deputy Director of the General Political Department of the Korean People’s Army. Former Director of the State Security Department. Former Minister of State Security. Former Member of the Central Military Commission of the Workers’ Party of Korea and National Defence Commission;108646;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108643;EU.4180.71;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Won Hong;;M;;;112450;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108643;EU.4180.71;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;김원홍;;M;;;142069;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108643;EU.4180.71;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1945-01-07;7;1;1945;;;NO;GREGORIAN;;;;Pyongyang;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;108644;EN;;amendment;council;2020-07-31;2020-08-01;2020/1129 (OJ L247);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.247.01.0005.01.ENG&toc=OJ:L:2020:247:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108643;EU.4180.71;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"745310010 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;108645;EN;;amendment;commission;2016-05-20;2016-05-20;2016/780 (OJ L131);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_131_R_0007&from=EN;;;;;;;;;;;;; +28/10/2022;108647;EU.4077.54;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;PAK Jong-chon;EN;M;;Member of the Presidium of the Political Bureau of the Central Committee of the Workers’ Party, Vice-Chairman of the Central Military Commission, Secretary of the Central Committee of the Worker’s Party of Korea and Member of the State Affairs Commission. Marshal and former Chief of the General Staff.;108648;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108647;EU.4077.54;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;PAK Jong Chon;;M;;;112451;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108647;EU.4077.54;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;박정천;;M;;;142070;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108649;EU.4078.19;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;LI Yong-ju;EN;M;;Admiral of the Korean People’s Army. Former member of the Central Military Commission of the Workers’ Party of Korea, which is a key body for national defence matters in the DPRK. Former Commander in chief of the Korean People’s Navy;108650;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108649;EU.4078.19;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;RI Yong Ju;;M;;;112452;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108649;EU.4078.19;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;리용주;;M;;;142075;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108651;EU.4079.81;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;SON Chol-ju;EN;M;;Colonel General of the Korean People’s Army. Vice Director, Guidance Bureau of the Korean People’s Army General Political Bureau and former Political Director of the Air and Anti-Air Forces;108652;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108651;EU.4079.81;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;SON Chol Ju;;M;;;112453;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108651;EU.4079.81;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;손철주;;M;;;142076;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108653;EU.4209.4;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;YUN Jong-rin;EN;M;;General of the Korean People’s Army, former commander of the Supreme Guard Command. Former member of the Central Military Commission of the Workers’ Party of Korea and member of the National Defence Commission;108654;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108653;EU.4209.4;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;YUN Jong Rin;;M;;;112454;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108653;EU.4209.4;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;윤정린;;M;;;142083;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108657;EU.4211.91;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;HONG Yong Chil;EN;M;;Vice Director of the Munitions Industry Department (MID);108658;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108657;EU.4211.91;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;홍영칠;;M;;;142084;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108659;EU.4212.56;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;RI Hak Chol;EN;M;;President of Green Pine Associated Corporation (‘Green Pine’).;108664;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108659;EU.4212.56;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;RI Hak Chul;EN;M;;;108665;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108659;EU.4212.56;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;RI Hak Cheol;EN;M;;;108666;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108659;EU.4212.56;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;리학철;;M;;;142085;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108659;EU.4212.56;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-05-08;8;5;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;108660;EN;;amendment;commission;2016-05-20;2016-05-20;2016/780 (OJ L131);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_131_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108659;EU.4212.56;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-01-19;19;1;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;108661;EN;;amendment;commission;2016-05-20;2016-05-20;2016/780 (OJ L131);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_131_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108659;EU.4212.56;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"PS- 563410163 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;108662;EN;;amendment;commission;2016-05-20;2016-05-20;2016/780 (OJ L131);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_131_R_0007&from=EN;;;;;;;;;;;;; +28/10/2022;108659;EU.4212.56;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"381320634 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;108663;EN;;amendment;commission;2016-05-20;2016-05-20;2016/780 (OJ L131);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_131_R_0007&from=EN;;;;;;;;;;;;; +28/10/2022;108667;EU.4213.21;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;YUN Chang Hyok;EN;M;;Deputy Director of the Satellite Control Centre, National Aerospace Development Administration (NADA);108669;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108667;EU.4213.21;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;윤창혁;;M;;;142086;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108667;EU.4213.21;;2016-05-20;;(Date of UN designation: 2016-05-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-08-09;9;8;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;108668;EN;;amendment;commission;2016-05-20;2016-05-20;2016/780 (OJ L131);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_131_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108672;EU.4068.18;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Date of designation: 30.11.2016);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Ryong;Jo;Chun;Jo Chun Ryong;;;;;113600;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108672;EU.4068.18;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Date of designation: 30.11.2016);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Ryong;Cho;Chun;Cho Chun Ryong;;;;Chairman of the Second Economic Committee (SEC), a designated entity.;113601;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108672;EU.4068.18;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Date of designation: 30.11.2016);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-04-04;4;4;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;108673;EN;;amendment;commission;2016-05-20;2016-05-20;2016/780 (OJ L131);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2016_131_R_0007&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;108672;EU.4068.18;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Date of designation: 30.11.2016);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;113602;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN +28/10/2022;109183;EU.3619.58;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Wazir tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678350);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Mohammad Jawad Waziri;EN;;;UN Department, Ministry of Foreign Affairs under the Taliban regime.;109187;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109183;EU.3619.58;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Wazir tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678350);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;YES;GREGORIAN;;;Sharana District, Paktia Province;;AF;AFGHANISTAN;109184;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109183;EU.3619.58;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Wazir tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678350);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;YES;GREGORIAN;;;Jaghatu District, Maidan Wardak Province;;AF;AFGHANISTAN;109185;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109183;EU.3619.58;;2001-02-23;;(Date of UN designation: 2001-02-23)\n(Believed to be in Afghanistan/Pakistan border area. Belongs to Wazir tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 23 Jul. 2010. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/4678350);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;109186;EN;;amendment;commission;2012-06-26;2012-06-25;543/2012 (OJ L165);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:165:0015:0019:EN:PDF +28/10/2022;109244;EU.3587.73;;2016-08-03;;(Date of UN designation: 2016-08-03);P;person;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;Абубакар;EN;;;;109248;EN;;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109244;EU.3587.73;;2016-08-03;;(Date of UN designation: 2016-08-03);P;person;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;Abubakar;EN;;;;109249;EN;;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109244;EU.3587.73;;2016-08-03;;(Date of UN designation: 2016-08-03);P;person;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;Хазмат;Амир;;Амир Хазмат;EN;;;;109250;EN;;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109244;EU.3587.73;;2016-08-03;;(Date of UN designation: 2016-08-03);P;person;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;Khazmat;Amir;;Amir Khazmat;EN;;;;109251;EN;;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109244;EU.3587.73;;2016-08-03;;(Date of UN designation: 2016-08-03);P;person;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;Авгазарович Бютукаев;Аслан;;Аслан Авгазарович Бютукаев;EN;;;;109252;EN;;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109244;EU.3587.73;;2016-08-03;;(Date of UN designation: 2016-08-03);P;person;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;Avgazarovich Byutukaev;Aslan;;Aslan Avgazarovich Byutukaev;EN;;;;109253;EN;;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109244;EU.3587.73;;2016-08-03;;(Date of UN designation: 2016-08-03);P;person;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;Katyr-Yurt;Akharkho Street, 11;;;Achkhoy- Martanovskiy District;Republic of Chechnya;NO;;RU;RUSSIAN FEDERATION;109245;EN;;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109244;EU.3587.73;;2016-08-03;;(Date of UN designation: 2016-08-03);P;person;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-10-22;22;10;1974;;;NO;GREGORIAN;;Stavropol Region;;Kitaevka;RU;RUSSIAN FEDERATION;109246;EN;;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109244;EU.3587.73;;2016-08-03;;(Date of UN designation: 2016-08-03);P;person;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;109247;EN;;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN +28/10/2022;109264;EU.3588.38;;2016-08-03;;(Date of UN designation: 2016-08-03)\n(May use a fake passport of a Syrian or Iraqi citizen. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;Булгарский;Салман;;Салман Булгарский;EN;;;;109267;EN;;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109264;EU.3588.38;;2016-08-03;;(Date of UN designation: 2016-08-03)\n(May use a fake passport of a Syrian or Iraqi citizen. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;Bulgarskiy;Salman;;Salman Bulgarskiy;EN;;;;109268;EN;;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109264;EU.3588.38;;2016-08-03;;(Date of UN designation: 2016-08-03)\n(May use a fake passport of a Syrian or Iraqi citizen. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;Насимович Вахитов;Айрат;;Айрат Насимович Вахитов;EN;;;;109269;EN;;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109264;EU.3588.38;;2016-08-03;;(Date of UN designation: 2016-08-03)\n(May use a fake passport of a Syrian or Iraqi citizen. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;Nasimovich Vakhitov;Ayrat;;Ayrat Nasimovich Vakhitov;EN;;;;109270;EN;;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109264;EU.3588.38;;2016-08-03;;(Date of UN designation: 2016-08-03)\n(May use a fake passport of a Syrian or Iraqi citizen. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-03-27;27;3;1977;;;NO;GREGORIAN;;Republic of Tatarstan;;Naberezhnye Chelny;RU;RUSSIAN FEDERATION;109265;EN;;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109264;EU.3588.38;;2016-08-03;;(Date of UN designation: 2016-08-03)\n(May use a fake passport of a Syrian or Iraqi citizen. Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;109266;EN;;amendment;commission;2016-08-09;2016-08-09;2016/1347 (OJ L 214);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1347&from=EN +28/10/2022;109324;EU.3618.93;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010.\nPicture available for inclusion in the INTERPOL-UN Security Council Special Notice.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427421);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;Sher Mohammad Abbas Stanekzai Padshah Khan;EN;;Maulavi;(a) Deputy Minister of Public Health under the Taliban regime, (b) Deputy Minister of Foreign Affairs under the Taliban regime.;109327;EN;;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109324;EU.3618.93;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010.\nPicture available for inclusion in the INTERPOL-UN Security Council Special Notice.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427421);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;YES;GREGORIAN;;Logar Province;Baraki Barak District;Qala- e-Abbas, Shah Mazar area;AF;AFGHANISTAN;109325;EN;;amendment;council;2016-09-30;2016-09-30;2016/1736 (OJ L264);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1736&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109324;EU.3618.93;;2001-01-25;;(Date of UN designation: 2001-01-25)\n(Believed to be in Afghanistan/Pakistan border area. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 29 Jul. 2010.\nPicture available for inclusion in the INTERPOL-UN Security Council Special Notice.\nINTERPOL-UN Security Council Special Notice web link: https://www.interpol. int/en/notice/search/un/1427421);P;person;amendment;council;2017-03-09;2017-03-10;2017/404 (OJ L63);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0404&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;109326;EN;;amendment;commission;2012-03-24;2012-03-23;263/2012 (OJ L87);AFG;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:087:0001:0025:EN:PDF +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;“1-P”;EN;;;;109411;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;“One-P”;EN;;;;109412;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;“Caesar”;EN;;;;109413;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;“Bashir”;EN;;;;109414;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;Otim Kapere;EN;;;;109415;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;Bashir;Ali;Lalobo;Ali Lalobo Bashir;EN;;;;109416;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;Lalobo;Ali;Bashir;Ali Bashir Lalobo;EN;;;;109417;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;Salongo;Ali;Mohammed;Ali Mohammed Salongo;EN;;;;109418;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;Labola;Ali;Mohammed;Ali Mohammed Labola;EN;;;;109419;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;Kony;Ali;Mohammed;Ali Mohammed Kony;EN;;;;109420;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;Lalobo;Ali;Mohammed;Ali Mohammed Lalobo;EN;;;;109421;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;Ali Mohammed;EN;;;;109422;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;Labolo;Ali;Mohammad;Ali Mohammad Labolo;EN;;;;109423;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;Lalobo;Ali;;Ali Lalobo;EN;;;;109424;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;KONY;Ali;;Ali KONY;EN;;Deputy, Lord's Resistance Army;;109425;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Kafia Kingi;;;;;;NO;((a territory on the border of Sudan and South Sudan whose final status has yet to be determined).);SD;SUDAN;109406;EN;(a territory on the border of Sudan and South Sudan whose final status has yet to be determined).;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1992;;;NO;GREGORIAN;;;;;00;UNKNOWN;109407;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1995;;;NO;GREGORIAN;;;;;00;UNKNOWN;109408;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1993;;;NO;GREGORIAN;;;;;00;UNKNOWN;109409;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109405;EU.3926.59;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1994;;;NO;GREGORIAN;;;;;00;UNKNOWN;109410;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109426;EU.3971.45;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;Simon Salim Obol;EN;;;;109432;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109426;EU.3971.45;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;Salim Saleh Obol Ogaro;EN;;;;109433;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109426;EU.3971.45;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;Okolu Salim;EN;;;;109434;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109426;EU.3971.45;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;Salim Ogaro;EN;;;;109435;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109426;EU.3971.45;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;Salim Saleh;EN;;;;109436;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109426;EU.3971.45;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;Kony;Salim;Saleh;Salim Saleh Kony;EN;;;;109437;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109426;EU.3971.45;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;KONY;Salim;;Salim KONY;EN;;Deputy, Lord's Resistance Army;;109438;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109426;EU.3971.45;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;109427;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109426;EU.3971.45;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;Kafia Kingi;;;;;;NO;((a territory on the border of Sudan and South Sudan whose final status has yet to be determined));SD;SUDAN;109428;EN;(a territory on the border of Sudan and South Sudan whose final status has yet to be determined);amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109426;EU.3971.45;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1993;;;NO;GREGORIAN;;;;;00;UNKNOWN;109429;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109426;EU.3971.45;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1991;;;NO;GREGORIAN;;;;;00;UNKNOWN;109430;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109426;EU.3971.45;;2016-08-23;;(Date of UN designation: 2016-08-23)\n(Son of LRA leader Joseph Kony);P;person;amendment;council;2017-05-30;2017-05-30;2017/906 (OJ L139);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0906&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1992;;;NO;GREGORIAN;;;;;00;UNKNOWN;109431;EN;;amendment;council;2016-09-01;2016-09-01;2016/1442 (OJ L235);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1442&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109750;EU.3664.44;;2000-04-12;;(Date of UN designation: 2000-04-12)\n(Father's name is Ghulan Nabi, also known as Mullah Musafir. Left eye missing. Borther-in-law of Ahmad Jan Akhundzada Shukoor Akhundzada. Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of April 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427394);P;person;amendment;council;2018-04-27;2018-04-27;2018/648 (OJ L108);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0648&from=EN;;;;Mohammed Omar Ghulam Nabi;EN;;Mullah;Leader of the Faithful (“Amir ul- Mumineen”), Afghanistan.;109754;EN;Father's name is Ghulam Nabi, also known as Mullah \nMusafir. Left eye missing. Brother-in-law of Ahmad Jan Akhundzada Shukoor Akhundzada. Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of April 2013. INTERPOL- UN Security Council Special Notice web link: https://www.interpol.int/en/notice/searchun/1427394\nMohammed Omar holds the title of “Commander of the Faithful of the Islamic Emirate of Afghanistan” and is the supreme leader of the Taliban movement in the Taliban hierarchy. He sheltered Usama bin Laden (deceased) and is Al-Qaida network in the years prior to the 11 September \n2001 attacks in the United States. He has been directing \nthe Taliban against the Government of Afghanistan and their allies in Afghanistan since 2001. Mohammed Omar commands the allegiance of other prominent military leaders in the region, such as Jalaluddin Haqqani.’;amendment;council;2018-04-27;2018-04-27;2018/648 (OJ L108);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0648&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109750;EU.3664.44;;2000-04-12;;(Date of UN designation: 2000-04-12)\n(Father's name is Ghulan Nabi, also known as Mullah Musafir. Left eye missing. Borther-in-law of Ahmad Jan Akhundzada Shukoor Akhundzada. Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of April 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427394);P;person;amendment;council;2018-04-27;2018-04-27;2018/648 (OJ L108);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0648&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;NO;GREGORIAN;;Uruzgan Province;Deh Rawud District;Naw Deh village;AF;AFGHANISTAN;109751;EN;;amendment;council;2016-09-30;2016-09-30;2016/1736 (OJ L264);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1736&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109750;EU.3664.44;;2000-04-12;;(Date of UN designation: 2000-04-12)\n(Father's name is Ghulan Nabi, also known as Mullah Musafir. Left eye missing. Borther-in-law of Ahmad Jan Akhundzada Shukoor Akhundzada. Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of April 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427394);P;person;amendment;council;2018-04-27;2018-04-27;2018/648 (OJ L108);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0648&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;Kandahar Province;Maiwand District;Noori village;AF;AFGHANISTAN;109752;EN;Maiwand District, Kandahar Province, Afghanistan.;amendment;council;2018-04-27;2018-04-27;2018/648 (OJ L108);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0648&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109750;EU.3664.44;;2000-04-12;;(Date of UN designation: 2000-04-12)\n(Father's name is Ghulan Nabi, also known as Mullah Musafir. Left eye missing. Borther-in-law of Ahmad Jan Akhundzada Shukoor Akhundzada. Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of April 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427394);P;person;amendment;council;2018-04-27;2018-04-27;2018/648 (OJ L108);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0648&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;YES;GREGORIAN;;Deh Rawud District;Naw Deh village;;AF;AFGHANISTAN;109753;EN;Naw Deh village, Deh Rawud District, \nUruzgan Province, Afghanistan,;amendment;council;2018-04-27;2018-04-27;2018/648 (OJ L108);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0648&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109750;EU.3664.44;;2000-04-12;;(Date of UN designation: 2000-04-12)\n(Father's name is Ghulan Nabi, also known as Mullah Musafir. Left eye missing. Borther-in-law of Ahmad Jan Akhundzada Shukoor Akhundzada. Believed to be in Afghanistan/Pakistan border area. Belongs to Hotak tribe. Review pursuant to Security Council Resolution 1822 (2008) was concluded on 27 Jul. 2010. Reportedly deceased as of April 2013. INTERPOL-UN Security Council Special Notice web link: https://www.interpol.int/en/notice/search/un/1427394);P;person;amendment;council;2018-04-27;2018-04-27;2018/648 (OJ L108);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0648&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;109755;EN;;amendment;council;2016-09-30;2016-09-30;2016/1736 (OJ L264);AFG;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1736&from=EN +28/10/2022;109865;EU.3535.41;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Salameh;Adib;Nimr;Adib Nimr Salameh;EN;;;;109866;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109865;EU.3535.41;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Salameh;Mohammed Adib;;Mohammed Adib Salameh;EN;;;;109867;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109865;EU.3535.41;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Salame;Adib;;Adib Salame;EN;;;;109868;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109865;EU.3535.41;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Salama;Adib;;Adib Salama;EN;;;;109869;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109865;EU.3535.41;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Salamah;Adib;;Adib Salamah;EN;;;;109870;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109865;EU.3535.41;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Adib SALAMEH;EN;M;Major General;"Deputy Director of Air Force Intelligence Directorate in Damascus. Member of the Syrian security and intelligence services in post after May 2011; Deputy Director of the Air Force Intelligence Directorate in Damascus; previously Head of Air Force Intelli­gence in Aleppo. Member of the Syrian Armed Forces of the rank of Colonel and the equivalent or higher in post after May 2011; holds the rank of Major General.";109871;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109865;EU.3535.41;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;أديب نمر سلامة;AR;M;;;124717;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109872;EU.3536.6;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Aboud;Adnan;;Adnan Aboud;EN;;;;109873;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109872;EU.3536.6;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Helweh;Adnan;Aboud;Adnan Aboud Helweh;EN;;;;109874;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109872;EU.3536.6;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Adnan Aboud HILWEH;EN;M;Brigadier General;Holds the rank of Brigadier General of 155 Brigade and 157 Brigade in the Syrian Army in post after May 2011.;109875;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109872;EU.3536.6;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;عدنان عبود حلوة;AR;M;;;124718;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109876;EU.3541.85;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Mawwaz;Jawdat;Salibi;Jawdat Salibi Mawwaz;EN;;;;109877;EN;;amendment;council;2016-10-28;2016-10-28;2016/1893 (OJ L293);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2016:293:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109876;EU.3541.85;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Mawwas;Jawdat;Salibi;Jawdat Salibi Mawwas;EN;;;;109878;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109876;EU.3541.85;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Jawdat Salbi MAWAS;EN;M;Major General;Holds the rank of Major General, a senior officer in the Syrian Artillery and Missile Directorate of the Syrian Armed Forces, in post after May 2011.;109879;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109876;EU.3541.85;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;جودت صلبي مواس;AR;M;;;124719;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109880;EU.3542.50;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Hamid;Khalil;Tahir;Khalil Tahir Hamid;EN;;;;109881;EN;;amendment;council;2016-10-28;2016-10-28;2016/1893 (OJ L293);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2016:293:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109880;EU.3542.50;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Khali;Tahir;Hamid;Tahir Hamid Khali;EN;;;;109882;EN;;amendment;council;2016-10-28;2016-10-28;2016/1893 (OJ L293);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2016:293:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109880;EU.3542.50;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Tahir Hamid KHALIL;EN;M;Major General;Holds the ranks of Major General, Head of the Syrian Artillery and Missiles Directorate of the Syrian Armed Forces, in post after May 2011.;109883;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109880;EU.3542.50;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;طاهر حامد خليل;AR;M;;;124720;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109887;EU.3544.77;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Sherif;Ammar;Medhat;Ammar Medhat Sherif;EN;;;;109888;EN;;amendment;council;2018-02-26;2018-02-26;2018/282 (OJ L54 I);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0282&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109887;EU.3544.77;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Sherif;Ammar;;Ammar Sherif;EN;;;;109889;EN;;amendment;council;2018-02-26;2018-02-26;2018/282 (OJ L54 I);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0282&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109887;EU.3544.77;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;al Shareef;Ammar;;Ammar al Shareef;EN;;;;109890;EN;;amendment;council;2018-02-26;2018-02-26;2018/282 (OJ L54 I);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0282&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109887;EU.3544.77;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Charif;Ammar;;Ammar Charif;EN;;;;109891;EN;;amendment;council;2018-02-26;2018-02-26;2018/282 (OJ L54 I);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0282&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109887;EU.3544.77;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Sharif;Ammar;;Ammar Sharif;EN;;;;109892;EN;;amendment;council;2018-02-26;2018-02-26;2018/282 (OJ L54 I);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0282&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109887;EU.3544.77;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Amar al-Charif;EN;;;;109893;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109887;EU.3544.77;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Amar al-Sharif;EN;;;;109894;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109887;EU.3544.77;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ammar AL-SHARIF;EN;M;;;109895;EN;Associated with a member of the Makhlouf family (brother‐in‐ law of Rami Makhlouf).;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109887;EU.3544.77;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;عمار شريف;AR;M;;;124781;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109887;EU.3544.77;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-06-26;26;6;1969;;;NO;GREGORIAN;;;;Lattakia;SY;SYRIAN ARAB REPUBLIC;115614;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109887;EU.3544.77;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;060- 10276707 (other-Other identification number) (National number: 060- 10276707);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;SY;;115616;EN;National number: 060- 10276707;amendment;council;2018-02-26;2018-02-26;2018/282 (OJ L54 I);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0282&from=EN;;;;;;;;;;;;; +28/10/2022;109887;EU.3544.77;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"010312413 (passport-National passport) (on 2015-07-14 in Damascus-Centre valid to 2021-07-13)(issue number: 002-15-L093534;)";NO;NO;NO;NO;NO;;2015-07-14;;2021-07-13;;;passport;National passport;Damascus-Centre;SY;;115617;EN;"issue number: 002-15-L093534;";amendment;council;2018-02-26;2018-02-26;2018/282 (OJ L54 I);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0282&from=EN;;;;;;;;;;;;; +28/10/2022;109887;EU.3544.77;;2016-10-28;;(Date of UN designation: 2016-10-28);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;115615;EN;;amendment;council;2018-02-26;2018-02-26;2018/282 (OJ L54 I);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0282&from=EN +28/10/2022;109896;EU.3545.42;;;Date of listing: 28.10.2016.;(Designation details: Date of listing: 28.10.2016.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Al-Sabban;Bishr;Mazin;Bishr Mazin Al-Sabban;EN;;;;109897;EN;;amendment;council;2019-03-04;2019-03-04;2019/350 (OJ L63 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0350&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109896;EU.3545.42;;;Date of listing: 28.10.2016.;(Designation details: Date of listing: 28.10.2016.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Al-Sabban;Mohammed Bishr;;Mohammed Bishr Al-Sabban;EN;;;;109898;EN;;amendment;council;2019-03-04;2019-03-04;2019/350 (OJ L63 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0350&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109896;EU.3545.42;;;Date of listing: 28.10.2016.;(Designation details: Date of listing: 28.10.2016.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Bishr AL-SABBAN;EN;M;;Former Governor of Damascus, who was appointed by, and is associated with, President Bashar al‐Assad.;109899;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109896;EU.3545.42;;;Date of listing: 28.10.2016.;(Designation details: Date of listing: 28.10.2016.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;120208;EN;;amendment;council;2019-05-20;2019-05-21;2019/798 (OJ L132);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.132.01.0001.01.ENG&toc=OJ:L:2019:132:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109900;EU.3546.7;;;Date of designation: 28/10/2016;(Designation details: Date of designation: 28/10/2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Abdulquader;Ahmad;al-Sheik;Ahmad al-Sheik Abdulquader;EN;;;;109901;EN;;amendment;council;2019-05-20;2019-05-21;2019/798 (OJ L132);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.132.01.0001.01.ENG&toc=OJ:L:2019:132:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109900;EU.3546.7;;;Date of designation: 28/10/2016;(Designation details: Date of designation: 28/10/2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Abdul Qadir;Ahmad;Sheikh;Ahmad Sheikh Abdul Qadir;EN;;;;109902;EN;;amendment;council;2019-05-20;2019-05-21;2019/798 (OJ L132);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.132.01.0001.01.ENG&toc=OJ:L:2019:132:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109900;EU.3546.7;;;Date of designation: 28/10/2016;(Designation details: Date of designation: 28/10/2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ahmad Sheik ABDUL-QADER;EN;M;;Former Governor of Quneitra, associated with and appointed by President Bashar al‐Assad. Previously Governor of Latakia.;109903;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109900;EU.3546.7;;;Date of designation: 28/10/2016;(Designation details: Date of designation: 28/10/2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;أحمد الشيخ عبدالقادر;AR;M;;;124782;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109904;EU.3551.86;;;Date of designation: 28/10/2016;(Designation details: Date of designation: 28/10/2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ghassan Omar KHALAF;;M;Dr;Former Governor of Hama, who was appointed by, and is as­sociated with, President Bashar al‐Assad.;109905;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109904;EU.3551.86;;;Date of designation: 28/10/2016;(Designation details: Date of designation: 28/10/2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;غسان عمر خلف;AR;M;;;124783;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109906;EU.3552.51;;;28.10.2016;(Designation details: 28.10.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Asayed;Kheir;Eddib;Kheir Eddib Asayed;EN;;;;109907;EN;;amendment;council;2019-05-20;2019-05-21;2019/798 (OJ L132);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.132.01.0001.01.ENG&toc=OJ:L:2019:132:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109906;EU.3552.51;;;28.10.2016;(Designation details: 28.10.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;al-Sayyed;Kheir;Eddin;Kheir Eddin al-Sayyed;;;;;109908;EN;;amendment;council;2019-05-20;2019-05-21;2019/798 (OJ L132);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.132.01.0001.01.ENG&toc=OJ:L:2019:132:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109906;EU.3552.51;;;28.10.2016;(Designation details: 28.10.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;al-Sayyed;Khaireddin;;Khaireddin al-Sayyed;EN;;;;109909;EN;;amendment;council;2019-05-20;2019-05-21;2019/798 (OJ L132);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.132.01.0001.01.ENG&toc=OJ:L:2019:132:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109906;EU.3552.51;;;28.10.2016;(Designation details: 28.10.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;as-Sayyed;Khairuddin;;Khairuddin as-Sayyed;EN;;;;109910;EN;;amendment;council;2019-05-20;2019-05-21;2019/798 (OJ L132);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.132.01.0001.01.ENG&toc=OJ:L:2019:132:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109906;EU.3552.51;;;28.10.2016;(Designation details: 28.10.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;al-Sayyed;Kheredden;;Kheredden al-Sayyed;EN;;;;109911;EN;;amendment;council;2019-05-20;2019-05-21;2019/798 (OJ L132);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.132.01.0001.01.ENG&toc=OJ:L:2019:132:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109906;EU.3552.51;;;28.10.2016;(Designation details: 28.10.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;al-Sayyed;Mohamed;Khair;Mohamed Khair al-Sayyed;EN;;;;109912;EN;;amendment;council;2019-05-20;2019-05-21;2019/798 (OJ L132);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.132.01.0001.01.ENG&toc=OJ:L:2019:132:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109906;EU.3552.51;;;28.10.2016;(Designation details: 28.10.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;al-Sayyed;Khayr;al-Din Abdul-Sattar;Khayr al-Din Abdul-Sattar al-Sayyed;EN;;;;109913;EN;;amendment;council;2019-05-20;2019-05-21;2019/798 (OJ L132);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.132.01.0001.01.ENG&toc=OJ:L:2019:132:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109906;EU.3552.51;;;28.10.2016;(Designation details: 28.10.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khayr al-Din AL-SAYYED;EN;M;;Former Governor of Idlib, associated with and appointed by President Bashar al‐Assad;109914;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109906;EU.3552.51;;;28.10.2016;(Designation details: 28.10.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;خير الدين السيد;AR;;;;125081;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109980;EU.3945.96;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОЗЕНКО;Андрей;Дмитриевич;Андрей Дмитриевич КОЗЕНКО;RU;M;;;109982;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109980;EU.3945.96;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOZENKO;Andrei;Dmitrievich;Andrei Dmitrievich KOZENKO;;M;;"Currently the coordinator of the Integration Committee ‘Russia-Donbass’. Former Member of the State Duma; Former Member of Duma Committee on Financial Markets.";109983;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109980;EU.3945.96;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Dmitrijevitj KOZENKO;SV;;;;137449;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109980;EU.3945.96;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-08-03;3;8;1981;;;NO;GREGORIAN;;;;Simferopol;UA;UKRAINE;109981;EN;Ukrainian SSR;amendment;council;2016-11-09;2016-11-09;2016/1955 (OJ L301);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1955&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109984;EU.3946.61;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;САВЧЕНКО;Светлана;Борисовна;Светлана Борисовна САВЧЕНКО;RU;F;;;109986;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109984;EU.3946.61;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SAVCHENKO;Svetlana;Borisovna;Svetlana Borisovna SAVCHENKO;;F;;Currently an advisor to the Chairman of the State Council of the 'Republic of Crimea'. Former Member of the State Duma and former Member of the Duma Committee on Culture.;109987;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109984;EU.3946.61;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Svetlana Borisovna SAVTJENKO;SV;;;;137450;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109984;EU.3946.61;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-06-24;24;6;1965;;;NO;GREGORIAN;;;;Belogorsk;UA;UKRAINE;109985;EN;Ukrainian SSR;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109988;EU.3947.26;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Павел Валентинович ШПЕРОВ;;M;;;109990;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109988;EU.3947.26;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;SHPEROV;Pavel;Valentinovich;Pavel Valentinovich SHPEROV;;M;;"Former Member of the State Duma; Former Member of the Duma Committee for CIS Affairs, Eurasian Integration and Relations with Compatriots.";109991;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109988;EU.3947.26;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Pavel Valentinovitj SJPEROV;SV;;;;137451;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;109988;EU.3947.26;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-07-04;4;7;1971;;;NO;GREGORIAN;;;;Simferopol;UA;UKRAINE;109989;EN;Ukrainian SSR;amendment;council;2016-11-09;2016-11-09;2016/1955 (OJ L301);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1955&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110103;EU.3816.93;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Atef NADDAF;;M;;Former Minister of Internal Trade and Consumer Protection;110105;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110103;EU.3816.93;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;عاطف نداف;AR;M;;;124785;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110103;EU.3816.93;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;Damascus countryside;;SY;SYRIAN ARAB REPUBLIC;110104;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110107;EU.3822.40;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Hussein MAKHLUF;;M;;;110109;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110107;EU.3822.40;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Hussein MAKHLOUF;;M;;Minister of local Administration and environment.\n\nFormer Governor of Damascus Governorate. Cousin of Rami Makhlouf.;110110;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110107;EU.3822.40;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;حسين مخلوف;AR;M;;;124786;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110107;EU.3822.40;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;Lattakia;SY;SYRIAN ARAB REPUBLIC;110108;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110111;EU.3823.5;;;Date of listing: 14.11.2016;(Designation details: Date of listing: 14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ali AL-ZAFIR;;M;;Former Minister of Communications and Technology.;110114;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110111;EU.3823.5;;;Date of listing: 14.11.2016;(Designation details: Date of listing: 14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;علي الظفير;AR;M;;;124787;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110111;EU.3823.5;;;Date of listing: 14.11.2016;(Designation details: Date of listing: 14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;;;NO;GREGORIAN;;;;Tartus;SY;SYRIAN ARAB REPUBLIC;110112;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110118;EU.3824.67;;2016-11-14;;(Date of UN designation: 2016-11-14)\n(Former Minister of Information.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Ramez TOURJUMAN;EN;;;Information Minister.;110120;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110118;EU.3824.67;;2016-11-14;;(Date of UN designation: 2016-11-14)\n(Former Minister of Information.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Ramez TOURJUMAN;EN;;;;110121;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110118;EU.3824.67;;2016-11-14;;(Date of UN designation: 2016-11-14)\n(Former Minister of Information.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Ramez TOURJUMAN;EN;;;;110122;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110118;EU.3824.67;;2016-11-14;;(Date of UN designation: 2016-11-14)\n(Former Minister of Information.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Ramez TOURJUMAN;EN;;;;110123;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110118;EU.3824.67;;2016-11-14;;(Date of UN designation: 2016-11-14)\n(Former Minister of Information.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Ramez TOURJMAN;EN;;;;110124;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110118;EU.3824.67;;2016-11-14;;(Date of UN designation: 2016-11-14)\n(Former Minister of Information.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad Ramez TOURJMAN;EN;;;;110125;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110118;EU.3824.67;;2016-11-14;;(Date of UN designation: 2016-11-14)\n(Former Minister of Information.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Ramez TOURJMAN;EN;;;;110126;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110118;EU.3824.67;;2016-11-14;;(Date of UN designation: 2016-11-14)\n(Former Minister of Information.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed Ramez TOURJMAN;EN;M;;Former Minister of Information.;110127;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110118;EU.3824.67;;2016-11-14;;(Date of UN designation: 2016-11-14)\n(Former Minister of Information.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد رامز ترجمان;AR;M;;;124789;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110118;EU.3824.67;;2016-11-14;;(Date of UN designation: 2016-11-14)\n(Former Minister of Information.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;110119;EN;;amendment;council;2018-02-26;2018-02-26;2018/282 (OJ L54 I);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0282&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110138;EU.3826.94;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ali HAMOUD;;M;;Former Transport Minister;110140;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110138;EU.3826.94;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ali HAMMOUD;EN;M;;;110141;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110138;EU.3826.94;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;علي حمود;AR;M;;;124791;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110138;EU.3826.94;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;Tartus;SY;SYRIAN ARAB REPUBLIC;110139;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110142;EU.3843.7;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Mohammed Zahir KHARBOUTLI;EN;M;;;110144;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110142;EU.3843.7;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Mohammed Zuhair KHARBOUTLI;;M;;Former Electricity Minister;110145;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110142;EU.3843.7;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;محمد زهير خربوطلي;AR;M;;;124792;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110142;EU.3843.7;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;110143;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110146;EU.3844.69;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Maamoun HAMDAN;;M;;Former Finance Minister;110148;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110146;EU.3844.69;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ma'moun HAMDAN;;M;;;112209;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110146;EU.3844.69;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;مأمون حمدان;AR;M;;;124793;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110146;EU.3844.69;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;110147;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110149;EU.3845.34;;;date of listing:14.11.2016;(Designation details: date of listing:14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nabil AL-HASSAN;EN;;;Minister of Water Resources.;110151;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110149;EU.3845.34;;;date of listing:14.11.2016;(Designation details: date of listing:14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Nabil AL-HASAN;;M;;Former Minister of Water Resources.\nAppointed in July 2016.;110152;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110149;EU.3845.34;;;date of listing:14.11.2016;(Designation details: date of listing:14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;نبيل الحسن;AR;M;;;124794;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110149;EU.3845.34;;;date of listing:14.11.2016;(Designation details: date of listing:14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;NO;GREGORIAN;;;;Aleppo;SY;SYRIAN ARAB REPUBLIC;110150;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110153;EU.3846.96;;;;(date of listing:14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ahmad AL-HAMO;EN;;;;110155;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110153;EU.3846.96;;;;(date of listing:14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ahmad AL-HAMU;EN;M;;Former Minister of Industry.;110156;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110153;EU.3846.96;;;;(date of listing:14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;أحمد الحمو;AR;M;;;124795;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110153;EU.3846.96;;;;(date of listing:14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947;;;NO;GREGORIAN;;;;;00;UNKNOWN;110154;EN;;amendment;council;2016-11-14;2016-11-14;2016/1984 (OJ L305);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1984;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110157;EU.3847.61;;;date of listing: 14.11.2016;(Designation details: date of listing: 14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abdullah AL-GHARBI;;M;;Former Minister of Internal Trade and Consumer Protection.\nAppointed in July 2016.;110158;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110157;EU.3847.61;;;date of listing: 14.11.2016;(Designation details: date of listing: 14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Abdullah AL-QIRBI;EN;;;;110159;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110157;EU.3847.61;;;date of listing: 14.11.2016;(Designation details: date of listing: 14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;عبدالله الغربى;AR;M;;;124796;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110157;EU.3847.61;;;date of listing: 14.11.2016;(Designation details: date of listing: 14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;110160;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110161;EU.3853.8;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Abdullah ABDULLAH;;M;;Minister of State. Appointed in August 2021.;110163;EN;;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110161;EU.3853.8;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;عبدالله عبدالله;AR;M;;;124797;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110161;EU.3853.8;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;110162;EN;;amendment;council;2016-11-14;2016-11-14;2016/1984 (OJ L305);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1984;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110164;EU.3854.70;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Salwa ABDULLAH;;F;;Minister of social affairs and labour. Appointed in August 2020.\nFormer State Minister.;110166;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110164;EU.3854.70;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;سلوى عبدالله;AR;F;;;125082;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110164;EU.3854.70;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953;;;NO;GREGORIAN;;;;Quneitra;SY;SYRIAN ARAB REPUBLIC;110165;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110167;EU.3981.46;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Rafe'a Abu SAAD;;M;;;110169;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110167;EU.3981.46;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Rafe'a Abu SA'AD;;M;;Former State Minister;110170;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110167;EU.3981.46;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;رافع أبو سعد;AR;M;;;124799;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110167;EU.3981.46;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954;;;NO;GREGORIAN;;Sweida province;Habran village;;SY;SYRIAN ARAB REPUBLIC;110168;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110171;EU.3982.11;;;14.11.2016;(Designation details: 14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Wafiqa HOSNI;EN;F;;State Minister.\nAppointed in July 2016.;110173;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110171;EU.3982.11;;;14.11.2016;(Designation details: 14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;وفيقة حسني;AR;;;;125083;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110171;EU.3982.11;;;14.11.2016;(Designation details: 14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;110172;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110174;EU.3983.73;;;14.11.2016;(Designation details: 14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rima AL-KADIRI;EN;;;;110176;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110174;EU.3983.73;;;14.11.2016;(Designation details: 14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rima AL-QADIRI;;F;;Minister for Social Affairs (since August 2015).;110177;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110174;EU.3983.73;;;14.11.2016;(Designation details: 14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ريما القادري;AR;;;;125084;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110174;EU.3983.73;;;14.11.2016;(Designation details: 14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;110175;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110178;EU.3489.38;;;Date of listing: 14.11.2016;(Designation details: Date of listing: 14.11.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Duraid DURGHAM;EN;M;;Former Governor of the Central Bank of Syria.;110179;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110264;EU.4163.61;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Pak Chun Il;EN;;;Served as the DPRK Ambassador to Egypt. Concluded his tour of duty and left Egypt on 15 November 2016.;110268;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110264;EU.4163.61;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-07-28;28;7;1954;;;YES;GREGORIAN;;;;;00;UNKNOWN;110265;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110264;EU.4163.61;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"563410091 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KP;;110267;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;; +28/10/2022;110264;EU.4163.61;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;110266;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN +28/10/2022;110269;EU.4164.26;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Kim Hak Song;EN;;;;110274;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110269;EU.4164.26;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Kim Song Chol;EN;;;Kim Song Chol is a KOMID official who has conducted business in Sudan in the interest of KOMID, a designated entity.;110275;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110269;EU.4164.26;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-10-15;15;10;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;110270;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110269;EU.4164.26;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-03-26;26;3;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;110271;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110269;EU.4164.26;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"654120219 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;110273;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;; +28/10/2022;110269;EU.4164.26;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"381420565 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;110342;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;; +28/10/2022;110269;EU.4164.26;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;110272;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN +28/10/2022;110276;EU.4165.88;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Son Min;EN;;;;110279;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110276;EU.4165.88;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Son;Jong Hyok;;Jong Hyok Son;EN;;;Song Jong Hyok is a KOMID official who has conducted business in Sudan in the interest of KOMID KOMID, a designated entity.;110280;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110276;EU.4165.88;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-05-20;20;5;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;110277;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110276;EU.4165.88;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;110278;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN +28/10/2022;110281;EU.4166.53;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Kim;Se Gon;;Se Gon Kim;EN;;;Kim Se Gon works on behalf of the Ministry of Atomic Energy Industry, a designated entity.;110285;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110281;EU.4166.53;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-11-13;13;11;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;110282;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110281;EU.4166.53;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"PD472310104 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;110284;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;; +28/10/2022;110281;EU.4166.53;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;110283;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN +28/10/2022;110286;EU.4167.18;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Ri;Won Ho;;Won Ho Ri;EN;;;Ri Won Ho is a North Korean Minister of State Security Official stationed in Syria supporting KOMID, a designated entity.;110290;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110286;EU.4167.18;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-07-17;17;7;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;110287;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110286;EU.4167.18;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"381310014 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;110289;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;; +28/10/2022;110286;EU.4167.18;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;110288;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN +28/10/2022;110291;EU.4168.80;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Cho;Yong Chol;;Yong Chol Cho;EN;;;;110294;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110291;EU.4168.80;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Jo;Yong Chol;;Yong Chol Jo;EN;;;Jo Yong Chol is a North Korean Ministry of State Security Official stationed in Syria supporting KOMID, a designated entity.;110295;EN;Supports KOMID, a designated entity;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110291;EU.4168.80;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-09-30;30;9;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;110292;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110291;EU.4168.80;;2016-11-30;;(Date of UN designation: 2016-11-30);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;110293;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN +28/10/2022;110298;EU.4169.45;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Kim Chol Sam is a Representative for Daedong Credit Bank (DCB), a designated entity, who has been involved in managing transactions on behalf of DCB Finance Limited.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Kim;Chol Sam;;Chol Sam Kim;EN;;;Representative for Daedong Credit Bank (DCB).;110299;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110298;EU.4169.45;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Kim Chol Sam is a Representative for Daedong Credit Bank (DCB), a designated entity, who has been involved in managing transactions on behalf of DCB Finance Limited.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;金铁三;;;;;143150;EN;Jin Tiesan;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110298;EU.4169.45;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Kim Chol Sam is a Representative for Daedong Credit Bank (DCB), a designated entity, who has been involved in managing transactions on behalf of DCB Finance Limited.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Jin Tiesan;;;;;143151;EN;金铁三;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110298;EU.4169.45;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Kim Chol Sam is a Representative for Daedong Credit Bank (DCB), a designated entity, who has been involved in managing transactions on behalf of DCB Finance Limited.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-03-11;11;3;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;110300;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110298;EU.4169.45;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Kim Chol Sam is a Representative for Daedong Credit Bank (DCB), a designated entity, who has been involved in managing transactions on behalf of DCB Finance Limited.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"645120378 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KP;;143149;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;110298;EU.4169.45;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Kim Chol Sam is a Representative for Daedong Credit Bank (DCB), a designated entity, who has been involved in managing transactions on behalf of DCB Finance Limited.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;110301;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN +28/10/2022;110302;EU.4170.70;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Kim Sok Chol has served as the North Korean Ambassador to Myanmar. He operates as a KOMID (a designated entity) facilitator.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Kim;Sok Chol;;Sok Chol Kim;EN;M;;Acted as North Korean Ambassador to Myanmar. He operates as a KOMID (a designated entity) facilitator.;110306;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110302;EU.4170.70;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Kim Sok Chol has served as the North Korean Ambassador to Myanmar. He operates as a KOMID (a designated entity) facilitator.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;NO;;MM;MYANMAR;143152;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110302;EU.4170.70;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Kim Sok Chol has served as the North Korean Ambassador to Myanmar. He operates as a KOMID (a designated entity) facilitator.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-05-08;8;5;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;110303;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110302;EU.4170.70;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Kim Sok Chol has served as the North Korean Ambassador to Myanmar. He operates as a KOMID (a designated entity) facilitator.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"472310082 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KP;;110305;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;110302;EU.4170.70;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Kim Sok Chol has served as the North Korean Ambassador to Myanmar. He operates as a KOMID (a designated entity) facilitator.);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;110304;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN +28/10/2022;110307;EU.4186.55;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Chang Chang Ha is the President of the Second Academy of Natural Sciences (SANS), a designated entity.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Jang;Chang Ha;;Chang Ha Jang;EN;;;President of the Second Academy of Natural Sciences (SANS).;110310;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110307;EU.4186.55;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Chang Chang Ha is the President of the Second Academy of Natural Sciences (SANS), a designated entity.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Chang;Chang;Ha;Chang Ha Chang;EN;;;;110311;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110307;EU.4186.55;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Chang Chang Ha is the President of the Second Academy of Natural Sciences (SANS), a designated entity.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-01-10;10;1;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;110308;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110307;EU.4186.55;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Chang Chang Ha is the President of the Second Academy of Natural Sciences (SANS), a designated entity.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;110309;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN +28/10/2022;110317;EU.4069.80;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Son Mun San is the Director-General of the External Affairs Bureau of the General Bureau of Atomic Energy (GBAE), a designated entity.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Son;Mun;San;Mun San Son;EN;;;Son Mun San is the Director-General of the External Affairs Bureau of the General Bureau of Atomic Energy (GBAE), a designated entity.;110320;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110317;EU.4069.80;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Son Mun San is the Director-General of the External Affairs Bureau of the General Bureau of Atomic Energy (GBAE), a designated entity.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-01-23;23;1;1951;;;NO;GREGORIAN;;;;;00;UNKNOWN;110318;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110317;EU.4069.80;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(Son Mun San is the Director-General of the External Affairs Bureau of the General Bureau of Atomic Energy (GBAE), a designated entity.);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;110319;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN +28/10/2022;110321;EU.4103.55;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea United Development Bank;EN;;;Korea United Development Bank Operates in the financial services industry of the North Korean economy.;110324;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110321;EU.4103.55;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang,;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;110322;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110321;EU.4103.55;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"KUDBKPPY (swiftbic-SWIFT BIC) ";NO;NO;NO;NO;NO;;;;;;;swiftbic;SWIFT BIC;;00;;110323;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;; +28/10/2022;110325;EU.4104.20;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Ilsim International Bank;EN;;;Ilsim International Bank is affiliated to the North Korean military and has a close relationship with Korea Kwangson Banking Corporation (KKBC), a designated entity. Ilsim International Bank has attempted to evade United Nations sanctions.;110328;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110325;EU.4104.20;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;110326;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110325;EU.4104.20;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"ILSIKPPY (swiftbic-SWIFT BIC) ";NO;NO;NO;NO;NO;;;;;;;swiftbic;SWIFT BIC;;00;;110327;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;; +28/10/2022;110330;EU.4106.47;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(IMO number: 5905801);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Singwang Economics and Trading General Corporation;EN;;;Singwang Economics and Trading General Corporation is a North Korean firm for trading in coal.;110332;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110330;EU.4106.47;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(IMO number: 5905801);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;110331;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110330;EU.4106.47;;2016-11-30;;(Date of UN designation: 2016-11-30)\n(IMO number: 5905801);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"5905801 (imo-IMO (vessel identification)) ";NO;NO;NO;NO;NO;;;;;;;imo;IMO (vessel identification);;00;;143179;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;110333;EU.4107.12;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Foreign Technical Trade Center;EN;;;Korea Foreign Technical Trade Center is a North Korean firm trading in coal. North Korea generates a significant share of the funds needed to finance its nuclear and ballistic missile programmes by mining natural resources and selling those resources abroad.;110335;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110333;EU.4107.12;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;110334;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110336;EU.4124.22;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea Pugang Trading Corporation;EN;;;Korea Pugang Trading Corporation is owned by the Korea Ryonbong General Corporation, North Korea's defence conglomerate specialising in acquisition for North Korea's defence industries and support to Pyongyang's military related sales.;110338;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110336;EU.4124.22;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Rakwon-dong, Pothonggang District, Pyongyang,;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;110337;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110350;EU.3504.73;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;Kampete;Hugues;Raston Ilunga;Hugues Raston Ilunga Kampete;EN;;;;110354;EN;;amendment;council;2016-12-12;2016-12-12;2016/2230 (OJ L336);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2230&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110350;EU.3504.73;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;Kampete;Gaston;Hughes Ilunga;Gaston Hughes Ilunga Kampete;EN;;;;110355;EN;;amendment;council;2016-12-12;2016-12-12;2016/2230 (OJ L336);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2230&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110350;EU.3504.73;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;Ilunga KAMPETE;EN;M;;Commander of the Republican Guard (GR) until April 2020. Since July 2020, he remains a high-ranking soldier, as a Lieutenant General in the Congolese Armed Forces (FARDC) and Commander of the Kitona military base in the province of Kongo Central.;110356;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110350;EU.3504.73;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;Kinshasa/Ngaliema;69, avenue Nyangwile, Kinsuka Mimosas;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);118778;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110350;EU.3504.73;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-11-24;24;11;1964;;;NO;GREGORIAN;;;;Lubumbashi;CD;CONGO, Democratic Republic of (was Zaire);110351;EN;;amendment;council;2016-12-12;2016-12-12;2016/2230 (OJ L336);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2230&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110350;EU.3504.73;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1-64-86-22311-29 (other-Other identification number) (Military ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;110353;EN;Military ID number;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;; +28/10/2022;110350;EU.3504.73;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;110352;EN;;amendment;council;2016-12-12;2016-12-12;2016/2230 (OJ L336);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2230&from=EN +28/10/2022;110370;EU.3520.21;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;Célestin;Kanyama;Cishiku Bilolo;Kanyama Cishiku Bilolo Célestin;EN;;;;110371;EN;;amendment;council;2016-12-12;2016-12-12;2016/2230 (OJ L336);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2230&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110370;EU.3520.21;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;Antoine;Kanyama;Celestin Cishiku;Kanyama Celestin Cishiku Antoine;EN;;;;110372;EN;;amendment;council;2016-12-12;2016-12-12;2016/2230 (OJ L336);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2230&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110370;EU.3520.21;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;Celestin;Kanyama;Tshisiku;Kanyama Tshisiku Celestin;EN;;;;110373;EN;;amendment;council;2016-12-12;2016-12-12;2016/2230 (OJ L336);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2230&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110370;EU.3520.21;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;Célestin KANYAMA;EN;M;;Commissioner of the Congolese National Police (PNC). In July 2017, Célestin Kanyama was appointed Director-General of the PNC’s training schools.;110374;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110370;EU.3520.21;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;‘Esprit de mort’;EN;;;;110379;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110370;EU.3520.21;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;Kinshasa/Gombe;56, avenue Usika;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);118789;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110370;EU.3520.21;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-10-04;4;10;1960;;;NO;GREGORIAN;;;;Kananga;CD;CONGO, Democratic Republic of (was Zaire);110375;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110370;EU.3520.21;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;011518403 (other-Other identification number) (on 2016-07-02)(Schengen visa);NO;NO;NO;NO;NO;;2016-07-02;;;;;other;Other identification number;;00;;110377;EN;Schengen visa;amendment;council;2019-12-10;2019-12-11;2019/2101 (OJ L318);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:318:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;110370;EU.3520.21;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OB0637580 (passport-National passport) (valid from 2014-05-20 to 2019-05-19)(DRC passport number);NO;NO;NO;NO;NO;;;2014-05-20;2019-05-19;;;passport;National passport;;CD;;110378;EN;DRC passport number;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;; +28/10/2022;110370;EU.3520.21;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;110376;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC +28/10/2022;110425;EU.4080.9;;2016-12-12;;(Date of UN designation: 2016-12-12)\n(Other information: Killed on 3 December 2016 in Makhachkala, the Republic of Dagestan, Russian Federation.);P;person;amendment;commission;2017-08-19;2017-08-20;2017/1488 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1488&from=EN;;;;Мухамадмухтар;EN;;;;110429;EN;;amendment;commission;2016-12-16;2016-12-16;2016/2262 (OJ L342);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2262&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110425;EU.4080.9;;2016-12-12;;(Date of UN designation: 2016-12-12)\n(Other information: Killed on 3 December 2016 in Makhachkala, the Republic of Dagestan, Russian Federation.);P;person;amendment;commission;2017-08-19;2017-08-20;2017/1488 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1488&from=EN;;;;Muhamadmuhtar;EN;;;;110430;EN;;amendment;commission;2016-12-16;2016-12-16;2016/2262 (OJ L342);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2262&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110425;EU.4080.9;;2016-12-12;;(Date of UN designation: 2016-12-12)\n(Other information: Killed on 3 December 2016 in Makhachkala, the Republic of Dagestan, Russian Federation.);P;person;amendment;commission;2017-08-19;2017-08-20;2017/1488 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1488&from=EN;;;;Абу Мухаммад Аль-Кадари;;;;;110431;EN;Original script;amendment;commission;2016-12-16;2016-12-16;2016/2262 (OJ L342);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2262&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110425;EU.4080.9;;2016-12-12;;(Date of UN designation: 2016-12-12)\n(Other information: Killed on 3 December 2016 in Makhachkala, the Republic of Dagestan, Russian Federation.);P;person;amendment;commission;2017-08-19;2017-08-20;2017/1488 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1488&from=EN;;;;Abu Muhammad Al-Kadari;EN;;;;110432;EN;;amendment;commission;2016-12-16;2016-12-16;2016/2262 (OJ L342);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2262&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110425;EU.4080.9;;2016-12-12;;(Date of UN designation: 2016-12-12)\n(Other information: Killed on 3 December 2016 in Makhachkala, the Republic of Dagestan, Russian Federation.);P;person;amendment;commission;2017-08-19;2017-08-20;2017/1488 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1488&from=EN;;;;Абу Мухаммад;;;;;110433;EN;Original script;amendment;commission;2016-12-16;2016-12-16;2016/2262 (OJ L342);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2262&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110425;EU.4080.9;;2016-12-12;;(Date of UN designation: 2016-12-12)\n(Other information: Killed on 3 December 2016 in Makhachkala, the Republic of Dagestan, Russian Federation.);P;person;amendment;commission;2017-08-19;2017-08-20;2017/1488 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1488&from=EN;;;;Abu Muhammad;EN;;;;110434;EN;;amendment;commission;2016-12-16;2016-12-16;2016/2262 (OJ L342);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2262&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110425;EU.4080.9;;2016-12-12;;(Date of UN designation: 2016-12-12)\n(Other information: Killed on 3 December 2016 in Makhachkala, the Republic of Dagestan, Russian Federation.);P;person;amendment;commission;2017-08-19;2017-08-20;2017/1488 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1488&from=EN;Асельдеров;Рустам;Магомедович;Рустам Магомедович Асельдеров;;;;;110435;EN;Original script;amendment;commission;2016-12-16;2016-12-16;2016/2262 (OJ L342);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2262&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110425;EU.4080.9;;2016-12-12;;(Date of UN designation: 2016-12-12)\n(Other information: Killed on 3 December 2016 in Makhachkala, the Republic of Dagestan, Russian Federation.);P;person;amendment;commission;2017-08-19;2017-08-20;2017/1488 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1488&from=EN;Aselderov;Rustam;Magomedovich;Rustam Magomedovich Aselderov;EN;;;;110436;EN;;amendment;commission;2016-12-16;2016-12-16;2016/2262 (OJ L342);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2262&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110425;EU.4080.9;;2016-12-12;;(Date of UN designation: 2016-12-12)\n(Other information: Killed on 3 December 2016 in Makhachkala, the Republic of Dagestan, Russian Federation.);P;person;amendment;commission;2017-08-19;2017-08-20;2017/1488 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1488&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-03-09;9;3;1981;;;NO;GREGORIAN;;;;;RU;RUSSIAN FEDERATION;110426;EN;Place of birth: Iki-Burul Village, Iki-Burulskiy District, Republic of Kalmykia;amendment;commission;2016-12-16;2016-12-16;2016/2262 (OJ L342);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2262&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110425;EU.4080.9;;2016-12-12;;(Date of UN designation: 2016-12-12)\n(Other information: Killed on 3 December 2016 in Makhachkala, the Republic of Dagestan, Russian Federation.);P;person;amendment;commission;2017-08-19;2017-08-20;2017/1488 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1488&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8208 No. 555627 (passport-National passport) (Russian passport number 8208 No. 555627,issued by Leninskiy Office, Directorate of the Federal Migration Service of the Russian Federation for the Republic of Dagestan);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;110428;EN;Russian passport number 8208 No. 555627,issued by Leninskiy Office, Directorate of the Federal Migration Service of the Russian Federation for the Republic of Dagestan;amendment;commission;2016-12-16;2016-12-16;2016/2262 (OJ L342);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2262&from=EN;;;;;;;;;;;;; +28/10/2022;110425;EU.4080.9;;2016-12-12;;(Date of UN designation: 2016-12-12)\n(Other information: Killed on 3 December 2016 in Makhachkala, the Republic of Dagestan, Russian Federation.);P;person;amendment;commission;2017-08-19;2017-08-20;2017/1488 (OJ L215);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1488&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;110427;EN;;amendment;commission;2016-12-16;2016-12-16;2016/2262 (OJ L342);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2262&from=EN +28/10/2022;110491;EU.3572.53;;2016-12-22;;(Date of UN designation: 2016-12-22);P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;EL HAJJ Hassan Hassan;EN;;;;110495;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110491;EU.3572.53;;2016-12-22;;(Date of UN designation: 2016-12-22);P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-03-22;22;3;1988;;;NO;GREGORIAN;;;;Zaghdraiya, Sidon;LB;LEBANON;110492;EN;;amendment;council;2016-12-23;2016-12-23;2016/2373 (OJ L352);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2016.352.01.0031.01.ENG&toc=OJ:L:2016:352:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110491;EU.3572.53;;2016-12-22;;(Date of UN designation: 2016-12-22);P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"JX446643 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;CA;;110494;EN;;amendment;council;2016-12-23;2016-12-23;2016/2373 (OJ L352);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2016.352.01.0031.01.ENG&toc=OJ:L:2016:352:TOC;;;;;;;;;;;;; +28/10/2022;110491;EU.3572.53;;2016-12-22;;(Date of UN designation: 2016-12-22);P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA;;110493;EN;;amendment;council;2016-12-23;2016-12-23;2016/2373 (OJ L352);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2016.352.01.0031.01.ENG&toc=OJ:L:2016:352:TOC +28/10/2022;110500;EU.3578.37;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;MELIAD Farah;EN;;;;110506;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110500;EU.3578.37;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-11-05;5;11;1980;;;NO;GREGORIAN;;;;Sydney;AU;AUSTRALIA;110501;EN;;amendment;council;2017-01-28;2017-01-29;2017/150 (OJ L23);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0150&qid=1485783958376&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110500;EU.3578.37;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"M2719127 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;AU;;110503;EN;;amendment;council;2017-01-28;2017-01-29;2017/150 (OJ L23);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0150&qid=1485783958376&from=EN;;;;;;;;;;;;; +28/10/2022;110500;EU.3578.37;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AU;;110502;EN;;amendment;council;2016-12-23;2016-12-23;2016/2373 (OJ L352);TERR;http://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2016.352.01.0031.01.ENG&toc=OJ:L:2016:352:TOC +28/10/2022;110733;EU.3942.7;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Руслан Исмаилович БАЛЬБЕК;;M;;;110735;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110733;EU.3942.7;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;BALBEK;Ruslan;Ismailovich;Ruslan Ismailovich BALBEK;EN;M;;"Former Member of the State Duma; Former Deputy Chairperson of the Duma Committee on ethnic affairs.";110736;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110733;EU.3942.7;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Ruslan Ismailovitj BALBEK;SV;;;;137447;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110733;EU.3942.7;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-08-28;28;8;1977;;;NO;GREGORIAN;;;;Bekabad;UZ;UZBEKISTAN;110734;EN;Uzbekistan SSR;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110737;EU.3943.69;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Константин Михайлович БАХАРЕВ;EN;M;;;110739;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110737;EU.3943.69;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;BAKHAREV;Konstantin;Mikhailovich;Konstantin Mikhailovich BAKHAREV;EN;M;;Member of the State Duma, elected from the illegally annexed Autonomous 'Republic of Crimea'. Vice Chairman of the Duma Committee on Financial Markets. In March 2014, Bakharev was appointed as a Deputy Chairperson of the State Council of the so-called 'Republic of Crimea', and in August 2014 as First Deputy Chairperson of that body.;110740;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110737;EU.3943.69;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-10-20;20;10;1972;;;NO;GREGORIAN;;;;Simferopol;UA;UKRAINE;110738;EN;Ukrainian SSR (now Ukraine);amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110745;EU.3944.34;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Дмитрий Анатольевич БЕЛИК;;M;;;110747;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110745;EU.3944.34;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;BELIK;Dmitry;Anatolievich;Dmitry Anatolievich BELIK;;M;;"Member of the State Duma; Member of the Duma Committee on international affairs.";110748;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110745;EU.3944.34;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Dmitrij Anatoljevitj BELIK;SV;;;;137448;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110745;EU.3944.34;;2016-11-09;;(Date of UN designation: 2016-11-09);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-10-17;17;10;1969;;;NO;GREGORIAN;;;Kular Ust‐Yansky District, Yakut Autonomous SSR;;RU;RUSSIAN FEDERATION;122879;EN;Kular Ust‐Yansky District, Yakut Autonomous SSR (now Russian Federation);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110845;EU.3635.6;QDi.399;2017-02-22;;(UN ID: QDi.399)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;Abu Ahmad al-Shami;EN;;;;111172;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110845;EU.3635.6;QDi.399;2017-02-22;;(UN ID: QDi.399)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;Abu Ahmad Akhlaq;EN;;;;111173;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110845;EU.3635.6;QDi.399;2017-02-22;;(UN ID: QDi.399)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;Bassam Ahmad Husari;EN;;;;111174;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110845;EU.3635.6;QDi.399;2017-02-22;;(UN ID: QDi.399)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;BASSAM AHMAD AL-HASRI;EN;;;;111175;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110845;EU.3635.6;QDi.399;2017-02-22;;(UN ID: QDi.399)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;((Southern. Location as of July 2016));SY;SYRIAN ARAB REPUBLIC;111166;EN;(Southern. Location as of July 2016);amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110845;EU.3635.6;QDi.399;2017-02-22;;(UN ID: QDi.399)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YES;GREGORIAN;;Rif Dimashq;;Tadamon;SY;SYRIAN ARAB REPUBLIC;111167;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110845;EU.3635.6;QDi.399;2017-02-22;;(UN ID: QDi.399)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971;;;YES;GREGORIAN;;Damascus Province;;Ghutah;SY;SYRIAN ARAB REPUBLIC;111168;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110845;EU.3635.6;QDi.399;2017-02-22;;(UN ID: QDi.399)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-01-01;1;1;1969;;;NO;GREGORIAN;;Damascus Province;;Qalamun;SY;SYRIAN ARAB REPUBLIC;111169;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110845;EU.3635.6;QDi.399;2017-02-22;;(UN ID: QDi.399)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PS;;111170;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN +28/10/2022;110845;EU.3635.6;QDi.399;2017-02-22;;(UN ID: QDi.399)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;111171;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN +28/10/2022;110874;EU.3759.27;QDi.401;2017-02-22;;(UN ID: QDi.401)\n(Date of UN designation: 2017-02-22)\n(Corrigendum 2017/326 (OJ L49) [corr. 05/04/2017-1]);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;Ghalib al Zaydi;EN;;;;111179;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110874;EU.3759.27;QDi.401;2017-02-22;;(UN ID: QDi.401)\n(Date of UN designation: 2017-02-22)\n(Corrigendum 2017/326 (OJ L49) [corr. 05/04/2017-1]);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;Ghalib Abdallah Ali al-Zaydi;EN;;;;111180;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110874;EU.3759.27;QDi.401;2017-02-22;;(UN ID: QDi.401)\n(Date of UN designation: 2017-02-22)\n(Corrigendum 2017/326 (OJ L49) [corr. 05/04/2017-1]);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;Ghalib Abdallah al-Zaydi;EN;;;;111181;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110874;EU.3759.27;QDi.401;2017-02-22;;(UN ID: QDi.401)\n(Date of UN designation: 2017-02-22)\n(Corrigendum 2017/326 (OJ L49) [corr. 05/04/2017-1]);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;GHALIB ABDULLAH AL-ZAIDI;EN;;;;111182;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110874;EU.3759.27;QDi.401;2017-02-22;;(UN ID: QDi.401)\n(Date of UN designation: 2017-02-22)\n(Corrigendum 2017/326 (OJ L49) [corr. 05/04/2017-1]);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;;;NO;GREGORIAN;;Raqqah Region;;;YE;YEMEN;111176;EN;Marib Governorate;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110874;EU.3759.27;QDi.401;2017-02-22;;(UN ID: QDi.401)\n(Date of UN designation: 2017-02-22)\n(Corrigendum 2017/326 (OJ L49) [corr. 05/04/2017-1]);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975;;;NO;GREGORIAN;;Raqqah Region;;;YE;YEMEN;111177;EN;Marib Governorate;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110874;EU.3759.27;QDi.401;2017-02-22;;(UN ID: QDi.401)\n(Date of UN designation: 2017-02-22)\n(Corrigendum 2017/326 (OJ L49) [corr. 05/04/2017-1]);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;111178;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN +28/10/2022;110994;EU.3825.32;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Mohammad AL-AHMAD;;;;;110996;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110994;EU.3825.32;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Muhammad AL-AHMAD;;;;;110997;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110994;EU.3825.32;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Mohamed AL-AHMAD;;;;;110998;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110994;EU.3825.32;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Mohammad AL-AHMED;;;;;110999;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110994;EU.3825.32;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Muhammad AL-AHMED;;;;;111000;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110994;EU.3825.32;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Mohamed AL-AHMED;;;;;111001;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110994;EU.3825.32;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Mohammed AL-AHMAD;;;;;111002;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110994;EU.3825.32;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Mohammed AL-AHMED;;M;;Former Culture Minister;111003;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110994;EU.3825.32;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;محمد الأحمد;AR;M;;;124790;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;110994;EU.3825.32;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;;Lattakia;SY;SYRIAN ARAB REPUBLIC;110995;EN;;amendment;council;2016-11-14;2016-11-14;2016/1984 (OJ L305);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R1984;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111143;EU.3629.59;QDi.400;2017-02-22;;(UN ID: QDi.400)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;IYAD NAZMI SALIH KHALIL;;;;;111196;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111143;EU.3629.59;QDi.400;2017-02-22;;(UN ID: QDi.400)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;Ayyad Nazmi Salih Khalil;;;;;111197;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111143;EU.3629.59;QDi.400;2017-02-22;;(UN ID: QDi.400)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;Eyad Nazmi Saleh Khalil;;;;;111198;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111143;EU.3629.59;QDi.400;2017-02-22;;(UN ID: QDi.400)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;Iyad al-Toubasi;;;;;111199;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111143;EU.3629.59;QDi.400;2017-02-22;;(UN ID: QDi.400)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;Iyad al-Tubasi;;;;;111200;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111143;EU.3629.59;QDi.400;2017-02-22;;(UN ID: QDi.400)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;Abu al-Darda';;;;;111201;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111143;EU.3629.59;QDi.400;2017-02-22;;(UN ID: QDi.400)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;Abu-Julaybib al-Urduni;;;;;111202;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111143;EU.3629.59;QDi.400;2017-02-22;;(UN ID: QDi.400)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;Abu-Julaybib;;;;;111203;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111143;EU.3629.59;QDi.400;2017-02-22;;(UN ID: QDi.400)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Syrian Arab Republic (Coastal area of. Location as of April 2016));SY;SYRIAN ARAB REPUBLIC;111191;EN;Syrian Arab Republic (Coastal area of. Location as of April 2016);amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111143;EU.3629.59;QDi.400;2017-02-22;;(UN ID: QDi.400)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974;;;NO;GREGORIAN;;;;;SY;SYRIAN ARAB REPUBLIC;111192;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111143;EU.3629.59;QDi.400;2017-02-22;;(UN ID: QDi.400)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"654781 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;JO;;111194;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;; +28/10/2022;111143;EU.3629.59;QDi.400;2017-02-22;;(UN ID: QDi.400)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"286062 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;JO;;111195;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;; +28/10/2022;111143;EU.3629.59;QDi.400;2017-02-22;;(UN ID: QDi.400)\n(Date of UN designation: 2017-02-22);P;person;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;JO;;111193;EN;;amendment;commission;2017-02-25;2017-02-25;2017/326 (OJ L49);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0326&from=EN +28/10/2022;111318;EU.3617.31;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Peter Gadet Yaak;;;;;111321;EN;;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111318;EU.3617.31;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Peter Gadet Yak;;;;;111322;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111318;EU.3617.31;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Peter Gatdet Yaka;;;;;111323;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111318;EU.3617.31;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;Gadet;Peter;;Peter Gadet;;;a) General b) Major General;Commander of Sudan People's Liberation Army;111324;EN;;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111318;EU.3617.31;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Peter Gatdet;;;;;111325;EN;;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111318;EU.3617.31;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Peter Gatdet Yaak;;;;;111326;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111318;EU.3617.31;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;Peter Gatdeet Yaka;;;;;111327;EN;;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111318;EU.3617.31;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;1959;YES;GREGORIAN;;;Mayan, Unity State;;00;UNKNOWN;111319;EN;b) Mayan, Unity State;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111318;EU.3617.31;;2015-07-01;;(Date of UN designation: 2015-07-01);P;person;amendment;council;2017-03-09;2017-03-09;2017/402 (OJ L63);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0402&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;1959;YES;GREGORIAN;;;Mayom County Unity State;;00;UNKNOWN;111320;EN;a) Mayom County Unity State;amendment;council;2015-07-10;2015-07-10;2015/1112 (OJ L 182);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:JOL_2015_182_R_0002&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111553;EU.3912.4;;2017-03-21;;(Date of UN designation: 2017-03-21);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ahmad BALLUL;;M;Major General;Holds the rank of Major General, a senior officer and Com­mander of the Syrian Arab Air and Air Defence Forces, in post after May 2011.;111554;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111553;EU.3912.4;;2017-03-21;;(Date of UN designation: 2017-03-21);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ahmad Muhammad Ballul;;;;;111555;EN;;amendment;council;2017-03-21;2017-03-21;2017/480 (OJ L75);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111553;EU.3912.4;;2017-03-21;;(Date of UN designation: 2017-03-21);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ahmed Balol;;;;;111556;EN;;amendment;council;2017-03-21;2017-03-21;2017/480 (OJ L75);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111553;EU.3912.4;;2017-03-21;;(Date of UN designation: 2017-03-21);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;أحمد بلول;AR;M;;;124802;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111553;EU.3912.4;;2017-03-21;;(Date of UN designation: 2017-03-21);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-10-10;10;10;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;111557;EN;;amendment;council;2017-03-21;2017-03-21;2017/480 (OJ L75);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111558;EU.4065.26;;;;(date of listing: 21.3.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saji' DARWISH;;M;Major General;Holds the rank of Major General, a senior officer and former Commander of the 22nd Division of the Syrian Arab Air Force, in post after May 2011.;111559;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111558;EU.4065.26;;;;(date of listing: 21.3.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sjaa Darwis;;;;;111560;EN;;amendment;council;2017-03-21;2017-03-21;2017/480 (OJ L75);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111558;EU.4065.26;;;;(date of listing: 21.3.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Sajee Darwish;;;;;111561;EN;;amendment;council;2017-03-21;2017-03-21;2017/480 (OJ L75);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111558;EU.4065.26;;;;(date of listing: 21.3.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saji Jamil Darwish;;;;;111562;EN;;amendment;council;2017-03-21;2017-03-21;2017/480 (OJ L75);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111558;EU.4065.26;;;;(date of listing: 21.3.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ساجي درويش;AR;M;;;124803;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111558;EU.4065.26;;;;(date of listing: 21.3.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-01-11;11;1;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;111563;EN;;amendment;council;2017-03-21;2017-03-21;2017/480 (OJ L75);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111564;EU.3913.66;;2017-03-21;;(Date of UN designation: 2017-03-21);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammed IBRAHIM;;M;Brigadier General;Holds the rank of Brigadier General, a senior officer and Dep­uty Commander of the Syrian Arab Air Force 63rd Brigade, in post after May 2011.;111565;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111564;EU.3913.66;;2017-03-21;;(Date of UN designation: 2017-03-21);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد إبراهيم;AR;M;;;124804;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111564;EU.3913.66;;2017-03-21;;(Date of UN designation: 2017-03-21);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-08-05;5;8;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;111566;EN;;amendment;council;2017-03-21;2017-03-21;2017/480 (OJ L75);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111567;EU.3914.31;;2017-03-21;;(Date of UN designation: 2017-03-21);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Badi' MU'ALLA;;M;Brigadier General;Holds the rank of Brigadier General, a senior officer and Com­mander of 63rd Brigade of the Syrian Arab Air Force, in post after May 2011.;111568;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111567;EU.3914.31;;2017-03-21;;(Date of UN designation: 2017-03-21);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;بديع المعلا;AR;M;;;124805;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111567;EU.3914.31;;2017-03-21;;(Date of UN designation: 2017-03-21);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;;Bistuwir, Jablah;SY;SYRIAN ARAB REPUBLIC;111569;EN;Bistuwir, Jablah, Syria;amendment;council;2017-03-21;2017-03-21;2017/480 (OJ L75);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0480&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111686;EU.3788.65;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed AL-CHA'AR;;;;;111687;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111686;EU.3788.65;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad AL-CHA'AR;;;;;111688;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111686;EU.3788.65;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed AL-CHA'AR;;;;;111689;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111686;EU.3788.65;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad AL-CHA'AR;;;;;111690;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111686;EU.3788.65;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed AL-SHA'AR;;;;;111691;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111686;EU.3788.65;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad AL-SHA'AR;;;;;111692;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111686;EU.3788.65;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed AL-SHA'AR;;;;;111693;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111686;EU.3788.65;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad AL-SHA'AR;;;;;111694;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111686;EU.3788.65;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed AL-CHAAR;;;;;111695;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111686;EU.3788.65;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad AL-CHAAR;;;;;111696;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111686;EU.3788.65;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed AL-CHAAR;;;;;111697;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111686;EU.3788.65;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad AL-CHAAR;;;;;111698;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111686;EU.3788.65;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammed AL-SHAAR;;;;;111699;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111686;EU.3788.65;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Muhammad AL-SHAAR;;;;;111700;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111686;EU.3788.65;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed AL-SHAAR;;;;;111701;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111686;EU.3788.65;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad AL-SHAAR;;M;;Political Security Division. Military official involved in the violence in Homs.;111702;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111686;EU.3788.65;;2011-12-01;;(Date of UN designation: 2011-12-01);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد الشعار;AR;;;;125070;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111811;EU.4214.83;;2017-04-07;;(Date of UN designation: 2017-04-07);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;RI Myong Su;;M;;Vice Marshall of the Korean People’s Army, first vice commander of the Korean People’s Army Supreme Command. Until 2018, member of the Central Military Commission of the Workers’ Party of Korea and Chief of Staff of the People’s Armed Forces. Chief military representative at a state funeral in May 2022, but described as veteran in an April 2022 parade.;111813;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111811;EU.4214.83;;2017-04-07;;(Date of UN designation: 2017-04-07);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;리명수;;M;;;141941;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111811;EU.4214.83;;2017-04-07;;(Date of UN designation: 2017-04-07);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1937;;;NO;GREGORIAN;;;;Myongchon, North Hamgyong;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;111812;EN;;amendment;commission;2017-04-07;2017-04-07;2017/661 (OJ L94);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0661&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111822;EU.4215.48;;2017-04-07;;(Date of UN designation: 2017-04-07);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;SO Hong Chan;;M;;Former First Vice-Minister of the People’s Armed Forces and former Director General of the Rear Services Bureau, former member of the Central Military Commission of the Workers’ Party of Korea. Re-elected as a Member of the Central Committee in January 2021.;111825;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111822;EU.4215.48;;2017-04-07;;(Date of UN designation: 2017-04-07);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;서홍찬;;M;;;141942;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111822;EU.4215.48;;2017-04-07;;(Date of UN designation: 2017-04-07);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-12-30;30;12;1957;;;NO;GREGORIAN;;;Kangwon;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;111823;EN;;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111822;EU.4215.48;;2017-04-07;;(Date of UN designation: 2017-04-07);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PD836410105 (passport-National passport) (valid to 2021-11-27)[known to be expired];NO;YES;NO;NO;NO;;;;2021-11-27;;;passport;National passport;;00;;111824;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;; +28/10/2022;111829;EU.4216.13;;2017-04-07;;(Date of UN designation: 2017-04-07);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;WANG Chang Uk;;M;;Minister for Industry and Atomic Energy, promoted to full Member of the Workers’ Party of Korea Central Committee in December 2021.;111831;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111829;EU.4216.13;;2017-04-07;;(Date of UN designation: 2017-04-07);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;왕창욱;;M;;;141943;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111829;EU.4216.13;;2017-04-07;;(Date of UN designation: 2017-04-07);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-05-29;29;5;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;111830;EN;;amendment;commission;2017-04-07;2017-04-07;2017/661 (OJ L94);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0661&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111832;EU.4217.75;;2017-04-07;;(Date of UN designation: 2017-04-07);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;JANG Chol;;M;;Member of the State Physical Culture and Sports Guidance Commission and former president of the State Academy of Sciences;111835;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111832;EU.4217.75;;2017-04-07;;(Date of UN designation: 2017-04-07);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;장철;;M;;;141944;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111832;EU.4217.75;;2017-04-07;;(Date of UN designation: 2017-04-07);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-03-31;31;3;1961;;;NO;GREGORIAN;;;;Pyongyang;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;111833;EN;;amendment;commission;2017-06-13;2017-06-14;2017/993 (OJ L149);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0993&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;111832;EU.4217.75;;2017-04-07;;(Date of UN designation: 2017-04-07);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"563310042 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;111834;EN;;amendment;commission;2017-04-07;2017-04-07;2017/661 (OJ L94);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0661&from=EN;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Issene Abdoulaye;;;;;112077;EN;;amendment;council;2017-05-25;2017-05-25;2017/890 (OJ L138);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0890&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Abdoulaye Issene Ramadan;;;;;112078;EN;;amendment;council;2017-05-25;2017-05-25;2017/890 (OJ L138);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0890&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Abdoulaye Issène Ramadane;;;;;112079;EN;;amendment;council;2017-05-25;2017-05-25;2017/890 (OJ L138);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0890&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Hissene Abdoulaye;;;;;112080;EN;;amendment;council;2017-05-25;2017-05-25;2017/890 (OJ L138);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0890&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;Hissein;Abdoulaye;;Abdoulaye Hissein;;;;;112081;EN;;amendment;council;2017-05-25;2017-05-25;2017/890 (OJ L138);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0890&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;Issène;Abdoulaye;;Abdoulaye Issène;;;;;112082;EN;;amendment;council;2017-05-25;2017-05-25;2017/890 (OJ L138);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0890&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;HISSENE;Abdoulaye;;Abdoulaye HISSENE;;;"""general""";President of the Conseil National de Défense et de Sécurité (CNDS) and military leader of the Front Populaire pour la Renaissance de la Centrafrique. Hissène was formerly the Minister of Youth and Sports as part of the Cabinet for the Central African Republic's former President Michel Djotodia. Prior to that, he was the head of the Convention of Patriots for Justice and Peace, a political party. He also established himself as a leader of armed militias in Bangui, in particular in the “PK5” (3rd district) neighbourhood. In October 2016, Abdoulaye Hissène was appointed President of the Conseil National de Défense et de Sécurité, a body which was created at the time to gather military leaders and commanding fighters from all ex-Séléka factions. He has remained in this position since then, but has actual control over FPRC fighters only.;112083;EN;;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;Bangui;KM5;;;;;NO;(KM5, Bangui, Central African Republic);CF;CENTRAL AFRICAN REPUBLIC;112085;EN;KM5, Bangui, Central African Republic;amendment;council;2017-05-25;2017-05-25;2017/890 (OJ L138);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0890&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;Nana-Grebizi;;;;Nana-Grebizi;;NO;;CF;CENTRAL AFRICAN REPUBLIC;112086;EN;;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;Ndjamena;Ndjari;;;;;NO;;TD;CHAD;120111;EN;;amendment;council;2019-05-14;2019-05-14;2019/757 (OJ L125);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0757&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;Ndélé, Bamingui-Bangoran;;;;;;NO;(main location since August 2016);CF;CENTRAL AFRICAN REPUBLIC;125147;EN;main location since August 2016;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;NO;GREGORIAN;;;;Haraze Mangueigne;TD;CHAD;112076;EN;;amendment;council;2019-05-14;2019-05-14;2019/757 (OJ L125);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0757&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-01-01;1;1;1967;;;NO;GREGORIAN;;;;Ndele, Bamingui-Bangoran;CF;CENTRAL AFRICAN REPUBLIC;120105;EN;;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;NO;GREGORIAN;;;;Ndele, Bamingui-Bangoran;CF;CENTRAL AFRICAN REPUBLIC;120106;EN;;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-01-01;1;1;1967;;;NO;GREGORIAN;;;;Haraze Mangueigne;TD;CHAD;120107;EN;;amendment;council;2019-05-14;2019-05-14;2019/757 (OJ L125);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0757&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D00000897 (passport-National passport) (on 2013-04-05 valid to 2018-04-04 diplomatic)(CAR diplomatic passport);YES;NO;NO;NO;NO;;2013-04-05;;2018-04-04;;;passport;National passport;;CF;;112087;EN;CAR diplomatic passport;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103-00653129-22 (id-National identification card) (on 2009-04-21 valid to 2019-04-21)(Chad national identity card);NO;NO;NO;NO;NO;;2009-04-21;;2019-04-21;;;id;National identification card;;TD;;120110;EN;Chad national identity card;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D00004262 (passport-National passport) (on 2014-03-11 valid to 2019-03-10 diplomatic)(CAR diplomatic passport);YES;NO;NO;NO;NO;;2014-03-11;;2019-03-10;;;passport;National passport;;CF;;125149;EN;CAR diplomatic passport;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;; +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CF;;112084;EN;;amendment;council;2017-05-25;2017-05-25;2017/890 (OJ L138);CAF;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0890&from=EN +28/10/2022;112075;EU.3838.25;;2017-05-17;;(Date of UN designation: 2017-05-17)\n(Father's name is Abdoulaye. Mother's name is Absita Moussa.);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TD;;120108;EN;;amendment;council;2019-05-14;2019-05-14;2019/757 (OJ L125);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0757&from=EN +28/10/2022;112107;EU.3831.76;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;Evariste BOSHAB;;M;;Vice Prime Minister and Minister of Interior and Security from December 2014 to December 2016. Senator of Kasai since March 2019.;112108;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112107;EU.3831.76;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;Evariste Boshab Mabub Ma Bileng;;;;;112109;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112107;EU.3831.76;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;Kinshasa/Gombe;3, avenue du Rail;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);118818;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112107;EU.3831.76;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-01-12;12;1;1956;;;NO;GREGORIAN;;;Tete Kalamba;;CD;CONGO, Democratic Republic of (was Zaire);112110;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112107;EU.3831.76;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DP0000003 (passport-National passport) (valid from 2015-12-21 to 2020-12-20 diplomatic)(Diplomatic passport number.\n\nSchengen visa expired on 5.1.2017.);YES;NO;NO;NO;NO;;;2015-12-21;2020-12-20;;;passport;National passport;;00;;112113;EN;Diplomatic passport number.\n\nSchengen visa expired on 5.1.2017.;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;; +28/10/2022;112107;EU.3831.76;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;112111;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC +28/10/2022;112114;EU.3832.41;;2018-02-01;;(Date of UN designation: 2018-02-01);P;person;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;Mutanga Wa Bafunkwa Kanonga;Gédéon;Kyungu;Gédéon Kyungu Mutanga Wa Bafunkwa Kanonga;;;;Katangan rebel leader. Leader of the Bakata Katanga militia (a.k.a. Kata Katanga) between 2011-2014. Commander of the armed group Bakata Katanga.;112115;EN;;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112114;EU.3832.41;;2018-02-01;;(Date of UN designation: 2018-02-01);P;person;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974;;;NO;GREGORIAN;;;Manono Territory, Katanga Province (now Tanganyika Province);;00;UNKNOWN;112116;EN;Manono Territory, Katanga Province (now Tanganyika Province);amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112114;EU.3832.41;;2018-02-01;;(Date of UN designation: 2018-02-01);P;person;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;112117;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN +28/10/2022;112118;EU.3833.6;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;Alex Kande MUPOMPA;;M;;Governor of Kasai Central until October 2017. Representative of the Kasai region until October 2019. Leader of the Congrè s des alliés pour l’action au Congo (CAAC) which is part of the provincial government of Kasai.;112119;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112118;EU.3833.6;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;Mupomba;Alexandre;Kande;Alexandre Kande Mupomba;;;;;112122;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112118;EU.3833.6;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;Kande-Mupompa;;;;;112123;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112118;EU.3833.6;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;Messidorlaan 217/25;;1180;;Uccle;NO;;BE;BELGIUM;112125;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112118;EU.3833.6;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;Kinshasa/Ngaliema;1, avenue Bumba;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);118821;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112118;EU.3833.6;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-09-23;23;9;1950;;;NO;GREGORIAN;;;Kananga;;CD;CONGO, Democratic Republic of (was Zaire);112124;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112118;EU.3833.6;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OP0024910 (passport-National passport) (valid from 2016-03-21 to 2021-03-20);NO;NO;NO;NO;NO;;;2016-03-21;2021-03-20;;;passport;National passport;;CD;;112127;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;; +28/10/2022;112118;EU.3833.6;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BE;;112120;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN +28/10/2022;112118;EU.3833.6;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;112121;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC +28/10/2022;112154;EU.3852.43;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;Emmanuel Ramazani SHADARY;;M;;Vice Prime Minister and Minister of Interior and Security until February 2018. Since February 2018, Emmanuel Ramazani Shadari has been permanent secretary of the Parti du peuple pour la reconstruction et le développement (PPRD), the main party in the coalition under former President Joseph Kabila.;112155;EN;;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112154;EU.3852.43;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;Emmanuel Ramazani Shadari Mulanda;;;;;112156;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112154;EU.3852.43;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;Shadary;;;;;112157;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112154;EU.3852.43;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;Kinshasa;28, avenue Ntela, Mont Ngafula;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);118804;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112154;EU.3852.43;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-11-29;29;11;1960;;;NO;GREGORIAN;;;Kasongo;;CD;CONGO, Democratic Republic of (was Zaire);112158;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112154;EU.3852.43;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;112159;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC +28/10/2022;112160;EU.3860.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;Mutund;Kalev;;Kalev Mutund;;;;;112162;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112160;EU.3860.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;Katanga;Kalev;Mutondo;Kalev Mutondo Katanga;;;;;112163;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112160;EU.3860.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;Mutond;Kalev;;Kalev Mutond;;;;;112164;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112160;EU.3860.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;Mutombo;Kalev;;Kalev Mutombo;;;;;112165;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112160;EU.3860.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;Mutoid;Kalev;;Kalev Mutoid;;;;;112166;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112160;EU.3860.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;Mutundo;Kalev;;Kalev Mutundo;;;;;112167;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112160;EU.3860.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;Motono;Kalev;;Kalev Motono;;;;;112168;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112160;EU.3860.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;Mutondo;Kalev;Katanga;Kalev Katanga Mutondo;;;;;112169;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112160;EU.3860.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;Kalev MUTONDO;;M;;"Head of the National Intelligence Service (ANR) until February 2019. ""Political advisor” to the Prime Minister of the DRC until early 2021.";118805;EN;;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112160;EU.3860.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;Kinshasa;24, avenue Ma Campagne;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);118807;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112160;EU.3860.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-03-03;3;3;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;112170;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112160;EU.3860.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DB0004470 (passport-National passport) (valid from 2012-06-08 to 2017-06-07)[known to be expired];NO;YES;NO;NO;NO;;;2012-06-08;2017-06-07;;;passport;National passport;;CD;;112172;EN;;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;; +28/10/2022;112160;EU.3860.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;118806;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC +28/10/2022;112193;EU.3985.3;;2017-05-30;;(Date of UN designation: 2017-05-30);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Hisham Mohammad Mamdouh AL‐SHA'AR;;M;;Former Justice Minister;112194;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112193;EU.3985.3;;2017-05-30;;(Date of UN designation: 2017-05-30);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;هشام محمد ممدوح الشعار;AR;M;;;126573;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112193;EU.3985.3;;2017-05-30;;(Date of UN designation: 2017-05-30);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;112195;EN;;amendment;council;2017-05-30;2017-05-31;2017/907 (OJ L139);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0907&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112196;EU.3986.65;;;;(date of listing: 30/05/2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Samer Abdelrahman AL‐KHALIL;;M;;Economy and Foreign Trade. Minister. Appointed in March 2017.;112197;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112198;EU.3987.30;;2017-05-30;;(Date of UN designation: 2017-05-30);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Salam Mohammad AL-SAFFAF;;F;;Administrative Development Minister. Appointed in March 2017.;112199;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112198;EU.3987.30;;2017-05-30;;(Date of UN designation: 2017-05-30);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;112200;EN;;amendment;council;2017-05-30;2017-05-31;2017/907 (OJ L139);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0907&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112270;EU.4070.8;KPi.040;2017-06-02;;(UN ID: KPi.040)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Cho;Il Woo;;Il Woo Cho;;;;;112274;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112270;EU.4070.8;KPi.040;2017-06-02;;(UN ID: KPi.040)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Cho;Il U;;Il U Cho;;;;Director of the Fifth Bureau of the Reconnaissance General Bureau;112275;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112270;EU.4070.8;KPi.040;2017-06-02;;(UN ID: KPi.040)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Cho;Chol;;Chol Cho;SV;;;;144138;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112270;EU.4070.8;KPi.040;2017-06-02;;(UN ID: KPi.040)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Jo;Chol;;Chol Jo;;;;;144139;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112270;EU.4070.8;KPi.040;2017-06-02;;(UN ID: KPi.040)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Cho;Ch’o’l;;Ch’o’l Cho;;;;;144160;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112270;EU.4070.8;KPi.040;2017-06-02;;(UN ID: KPi.040)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;144137;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112270;EU.4070.8;KPi.040;2017-06-02;;(UN ID: KPi.040)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1945-05-10;10;5;1945;;;NO;GREGORIAN;;North Hamgyo'ng Province;;Musan;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;112271;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112270;EU.4070.8;KPi.040;2017-06-02;;(UN ID: KPi.040)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;736410010 (passport-National passport) (Passport No 736410010.);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;112273;EN;Passport No 736410010.;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;; +28/10/2022;112270;EU.4070.8;KPi.040;2017-06-02;;(UN ID: KPi.040)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;112272;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN +28/10/2022;112276;EU.4071.70;KPi.041;2017-06-02;;(UN ID: KPi.041)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Jo;Yon Jun;;Yon Jun Jo;;;;;112277;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112276;EU.4071.70;KPi.041;2017-06-02;;(UN ID: KPi.041)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Cho;Yon Chun;;Yon Chun Cho;;;;Vice Director of the Organization and Guidance Department;112278;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112276;EU.4071.70;KPi.041;2017-06-02;;(UN ID: KPi.041)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;143156;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112276;EU.4071.70;KPi.041;2017-06-02;;(UN ID: KPi.041)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1937-09-28;28;9;1937;;;NO;GREGORIAN;;;;;00;UNKNOWN;112279;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112276;EU.4071.70;KPi.041;2017-06-02;;(UN ID: KPi.041)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;112280;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN +28/10/2022;112286;EU.4072.35;KPi.042;2017-06-02;;(UN ID: KPi.042)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Choe;Hwi;;Hwi Choe;;M;;First Vice Director of the Workers' Party of Korea Propaganda and Agitation Department;112290;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112286;EU.4072.35;KPi.042;2017-06-02;;(UN ID: KPi.042)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;112287;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112286;EU.4072.35;KPi.042;2017-06-02;;(UN ID: KPi.042)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954;1955;NO;GREGORIAN;;;;;00;UNKNOWN;112288;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112286;EU.4072.35;KPi.042;2017-06-02;;(UN ID: KPi.042)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;112289;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN +28/10/2022;112291;EU.4073.0;KPi.043;2017-06-02;;(UN ID: KPi.043)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Cho;Yongwon;;Yongwon Cho;;M;;Vice Director of the Worker's Party of Korea's Organization and Guidance Department;112295;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112291;EU.4073.0;KPi.043;2017-06-02;;(UN ID: KPi.043)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Jo;Yong-Won;;Yong-Won Jo;;M;;Vice Director of the Worker's Party of Korea's Organization and Guidance Department;112296;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112291;EU.4073.0;KPi.043;2017-06-02;;(UN ID: KPi.043)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;112292;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112291;EU.4073.0;KPi.043;2017-06-02;;(UN ID: KPi.043)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-10-24;24;10;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;112293;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112291;EU.4073.0;KPi.043;2017-06-02;;(UN ID: KPi.043)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;112294;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN +28/10/2022;112303;EU.4074.62;KPi.044;2017-06-02;;(UN ID: KPi.044)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Kim;Chol Nam;;Chol Nam Kim;;;;President of Korea Kumsan Trading Corporation;112308;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112303;EU.4074.62;KPi.044;2017-06-02;;(UN ID: KPi.044)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;112304;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112303;EU.4074.62;KPi.044;2017-06-02;;(UN ID: KPi.044)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-02-12;12;2;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;112305;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112303;EU.4074.62;KPi.044;2017-06-02;;(UN ID: KPi.044)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"563120238 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;112307;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;; +28/10/2022;112303;EU.4074.62;KPi.044;2017-06-02;;(UN ID: KPi.044)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;112306;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN +28/10/2022;112309;EU.4075.27;KPi.045;2017-06-02;;(UN ID: KPi.045)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Kim;Kyong Ok;;Kyong Ok Kim;;;;Vice Director of the Organization and Guidance Department;112313;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112309;EU.4075.27;KPi.045;2017-06-02;;(UN ID: KPi.045)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;112310;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112309;EU.4075.27;KPi.045;2017-06-02;;(UN ID: KPi.045)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1937;1938;NO;GREGORIAN;;;;;00;UNKNOWN;112311;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112309;EU.4075.27;KPi.045;2017-06-02;;(UN ID: KPi.045)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;112312;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN +28/10/2022;112314;EU.4076.89;KPi.045;2017-06-02;;(UN ID: KPi.045)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Kim;Tong-Ho;;Tong-Ho Kim;;M;;Vietnam Representative for Tanchon Commercial Bank;112319;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112314;EU.4076.89;KPi.045;2017-06-02;;(UN ID: KPi.045)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;VN;VIET NAM;112315;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112314;EU.4076.89;KPi.045;2017-06-02;;(UN ID: KPi.045)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-08-18;18;8;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;112316;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112314;EU.4076.89;KPi.045;2017-06-02;;(UN ID: KPi.045)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"745310111 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;112318;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;; +28/10/2022;112314;EU.4076.89;KPi.045;2017-06-02;;(UN ID: KPi.045)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;112317;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN +28/10/2022;112320;EU.4083.1;KPi.047;2017-06-02;;(UN ID: KPi.047)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Min;Byong Chun;;Byong Chun Min;;M;;Member of the Worker's Party of Korea's Organization and Guidance Department;112324;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112320;EU.4083.1;KPi.047;2017-06-02;;(UN ID: KPi.047)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Min;Byong-chol;;Byong-chol Min;;M;;Member of the Worker's Party of Korea's Organization and Guidance Department;112325;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112320;EU.4083.1;KPi.047;2017-06-02;;(UN ID: KPi.047)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Min;Pyo'ng-ch'o'l;;Pyo'ng-ch'o'l Min;;M;;Member of the Worker's Party of Korea's Organization and Guidance Department;112326;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112320;EU.4083.1;KPi.047;2017-06-02;;(UN ID: KPi.047)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Min;Byong Chol;;Byong Chol Min;;M;;Member of the Worker's Party of Korea's Organization and Guidance Department;112327;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112320;EU.4083.1;KPi.047;2017-06-02;;(UN ID: KPi.047)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;112321;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112320;EU.4083.1;KPi.047;2017-06-02;;(UN ID: KPi.047)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-08-10;10;8;1948;;;NO;GREGORIAN;;;;;00;UNKNOWN;112322;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112320;EU.4083.1;KPi.047;2017-06-02;;(UN ID: KPi.047)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;112323;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN +28/10/2022;112332;EU.4084.63;KPi.048;2017-06-02;;(UN ID: KPi.048)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Paek;Se Bong;;Se Bong Paek;;;;Former Chairman of the Second Economic Committee, a former member of the National Defense Commission, and a former Vice Director of Munitions Industry Department (MID).;112335;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112332;EU.4084.63;KPi.048;2017-06-02;;(UN ID: KPi.048)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Paek;Se Pong;;Se Pong Paek;;;;;143157;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112332;EU.4084.63;KPi.048;2017-06-02;;(UN ID: KPi.048)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1938-03-21;21;3;1938;;;NO;GREGORIAN;;;;;00;UNKNOWN;112333;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112332;EU.4084.63;KPi.048;2017-06-02;;(UN ID: KPi.048)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;112334;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN +28/10/2022;112342;EU.4085.28;KPi.049;2017-06-02;;(UN ID: KPi.049)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Kang;Myong Chol;;Myong Chol Kang;;;;Vice Chairman of the Second Economic Committee;112346;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112342;EU.4085.28;KPi.049;2017-06-02;;(UN ID: KPi.049)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Pak;Han Se;;Han Se Pak;;;;Vice Chairman of the Second Economic Committee;112347;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112342;EU.4085.28;KPi.049;2017-06-02;;(UN ID: KPi.049)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;112343;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112342;EU.4085.28;KPi.049;2017-06-02;;(UN ID: KPi.049)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"290410121 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;112345;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;; +28/10/2022;112342;EU.4085.28;KPi.049;2017-06-02;;(UN ID: KPi.049)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;112344;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN +28/10/2022;112348;EU.4086.90;KPi.050;2017-06-02;;(UN ID: KPi.050)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Pak;Do Chun;;Do Chun Pak;;M;;;112351;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112348;EU.4086.90;KPi.050;2017-06-02;;(UN ID: KPi.050)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Pak;To Chun;;To Chun Pak;;M;;Former Secretary of Munitions Industry Department (MID) and currently advises on affairs relating to nuclear and missile programmes. He is a former State Affairs Commission member and is a member Workers' Party of Korea Political Bureau;112352;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112348;EU.4086.90;KPi.050;2017-06-02;;(UN ID: KPi.050)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Pak;To’-Ch’un;;To’-Ch’un Pak;;M;;;143158;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112348;EU.4086.90;KPi.050;2017-06-02;;(UN ID: KPi.050)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944-03-09;9;3;1944;;;NO;GREGORIAN;;;;;00;UNKNOWN;112349;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112348;EU.4086.90;KPi.050;2017-06-02;;(UN ID: KPi.050)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;112350;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN +28/10/2022;112353;EU.4087.55;KPi.051;2017-06-02;;(UN ID: KPi.051)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Ri;Chae-Il;;Chae-Il Ri;;;;Vice Director of the Workers' Party of Korea Propaganda and Agitation Department;112356;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112353;EU.4087.55;KPi.051;2017-06-02;;(UN ID: KPi.051)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Ri;Jae Il;;Jae Il Ri;;;;Vice Director of the Workers' Party of Korea Propaganda and Agitation Department;112357;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112353;EU.4087.55;KPi.051;2017-06-02;;(UN ID: KPi.051)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1934;;;NO;GREGORIAN;;;;;00;UNKNOWN;112354;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112353;EU.4087.55;KPi.051;2017-06-02;;(UN ID: KPi.051)\n(Date of UN designation: 2017-06-02);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;112355;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN +28/10/2022;112358;EU.4088.20;KPi.052;2017-06-02;;(UN ID: KPi.052)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2018-03-06;2018-03-06;2018/324 (OJ L63);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:063:FULL&from=EN;Ri;Su Yong;;Su Yong Ri;;M;;Official for Korea Ryonbong General Corporation.\nServed as Korea Ryonbong General Corporation representative in Cuba.;112363;EN;;amendment;council;2018-03-06;2018-03-06;2018/324 (OJ L63);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:063:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112358;EU.4088.20;KPi.052;2017-06-02;;(UN ID: KPi.052)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2018-03-06;2018-03-06;2018/324 (OJ L63);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:063:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-06-25;25;6;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;112360;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112358;EU.4088.20;KPi.052;2017-06-02;;(UN ID: KPi.052)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2018-03-06;2018-03-06;2018/324 (OJ L63);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:063:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"654310175 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;112362;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;; +28/10/2022;112358;EU.4088.20;KPi.052;2017-06-02;;(UN ID: KPi.052)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2018-03-06;2018-03-06;2018/324 (OJ L63);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:063:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;112361;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN +28/10/2022;112364;EU.4089.82;KPi.053;2017-06-02;;(UN ID: KPi.053)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Ri;Yong Mu;;Yong Mu Ri;;;;Vice Chairman of the State Affairs Commission;112367;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112364;EU.4089.82;KPi.053;2017-06-02;;(UN ID: KPi.053)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Ri;Yong-Mu;;Yong-Mu Ri;;;;;143159;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112364;EU.4089.82;KPi.053;2017-06-02;;(UN ID: KPi.053)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;143160;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112364;EU.4089.82;KPi.053;2017-06-02;;(UN ID: KPi.053)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1925-01-25;25;1;1925;;;NO;GREGORIAN;;;;;00;UNKNOWN;112365;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112364;EU.4089.82;KPi.053;2017-06-02;;(UN ID: KPi.053)\n(Date of UN designation: 2017-06-02);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;112366;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN +28/10/2022;112368;EU.4128.76;KPe.043;2017-06-02;;(UN ID: KPe.043)\n(Date of UN designation: 2017-06-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Kangbong Trading Corporation;;;;The Kangbong Trading Corporation's parent is the Ministry of People's Armed Forces.;112370;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112368;EU.4128.76;KPe.043;2017-06-02;;(UN ID: KPe.043)\n(Date of UN designation: 2017-06-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;112369;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112371;EU.4129.41;KPe.044;2017-06-02;;(UN ID: KPe.044)\n(Date of UN designation: 2017-06-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Korea Kumsan Trading Corporation;;;;;112373;EN;Korea Kumsan Trading Corporation is owned or controlled by, or acting or purporting to act for or on behalf of, directly or indirectly, the General Bureau of Atomic Energy.;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112371;EU.4129.41;KPe.044;2017-06-02;;(UN ID: KPe.044)\n(Date of UN designation: 2017-06-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Korea Kumsani kaubanduskorporatsioon;ET;;;;143613;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112371;EU.4129.41;KPe.044;2017-06-02;;(UN ID: KPe.044)\n(Date of UN designation: 2017-06-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Haeun 2-dong, Pyogchon District, Pyongyang City/Mangyongdae;;;;;NO;PHONE[+850-2-18111-8550]\nEMAIL[mhs-ip@star-co.net.kp]\nFAX[+850-2-381-4410/4416];KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;112372;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112374;EU.4130.66;KPe.045;2017-06-02;;(UN ID: KPe.045)\n(Date of UN designation: 2017-06-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Koryo Bank;;;;Koryo Bank operates in the financial services industry in North Korea's economy and is associated with Office 38 and Office 39 of the KWP;112376;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112374;EU.4130.66;KPe.045;2017-06-02;;(UN ID: KPe.045)\n(Date of UN designation: 2017-06-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Banco Koryo;ES;;;;143598;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112374;EU.4130.66;KPe.045;2017-06-02;;(UN ID: KPe.045)\n(Date of UN designation: 2017-06-02);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Koryo Bank Building, Pulgun Street;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;112375;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112377;EU.4131.31;KPe.046;2017-06-02;;(UN ID: KPe.046)\n(Date of UN designation: 2017-06-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Strategic Rocket Force of the Korean People's Army;;;;The Strategic Rocket Force of the Korean People's Army is in charge of all North Korea ballistic missile programmes and is responsible for SCUD and NODONG launches.;112379;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112377;EU.4131.31;KPe.046;2017-06-02;;(UN ID: KPe.046)\n(Date of UN designation: 2017-06-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Strategic Rocket Force;;;;;112384;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112377;EU.4131.31;KPe.046;2017-06-02;;(UN ID: KPe.046)\n(Date of UN designation: 2017-06-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Strategic Rocket Force Command of KPA;;;;;112385;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112377;EU.4131.31;KPe.046;2017-06-02;;(UN ID: KPe.046)\n(Date of UN designation: 2017-06-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Strategic Forces;;;;;113165;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112377;EU.4131.31;KPe.046;2017-06-02;;(UN ID: KPe.046)\n(Date of UN designation: 2017-06-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Strategic Force;;;;;113166;EN;;amendment;commission;2017-07-18;2017-07-19;2017/1330 (OJ L185);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1330&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112377;EU.4131.31;KPe.046;2017-06-02;;(UN ID: KPe.046)\n(Date of UN designation: 2017-06-02);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;112378;EN;;amendment;commission;2017-06-09;2017-06-09;2017/970 (OJ L146);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0970&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112597;EU.3818.23;QDi.403;2017-06-16;;(UN ID: QDi.403)\n(Date of UN designation: 2017-06-16);P;person;amendment;commission;2017-06-21;2017-06-21;2017/1094 (OJ L158);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1094&from=EN;;;;Abu Lugmaan;;;;;112692;EN;;amendment;commission;2017-06-21;2017-06-21;2017/1094 (OJ L158);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1094&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112597;EU.3818.23;QDi.403;2017-06-16;;(UN ID: QDi.403)\n(Date of UN designation: 2017-06-16);P;person;amendment;commission;2017-06-21;2017-06-21;2017/1094 (OJ L158);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1094&from=EN;;;;Abu Luqmaan Al Almani;;;;;112693;EN;;amendment;commission;2017-06-21;2017-06-21;2017/1094 (OJ L158);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1094&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112597;EU.3818.23;QDi.403;2017-06-16;;(UN ID: QDi.403)\n(Date of UN designation: 2017-06-16);P;person;amendment;commission;2017-06-21;2017-06-21;2017/1094 (OJ L158);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1094&from=EN;;;;Fared Saal;;;;;112694;EN;;amendment;commission;2017-06-21;2017-06-21;2017/1094 (OJ L158);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1094&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112597;EU.3818.23;QDi.403;2017-06-16;;(UN ID: QDi.403)\n(Date of UN designation: 2017-06-16);P;person;amendment;commission;2017-06-21;2017-06-21;2017/1094 (OJ L158);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1094&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989-02-18;18;2;1989;;;NO;GREGORIAN;;;;Bonn;DE;GERMANY;112688;EN;;amendment;commission;2017-06-21;2017-06-21;2017/1094 (OJ L158);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1094&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112597;EU.3818.23;QDi.403;2017-06-16;;(UN ID: QDi.403)\n(Date of UN designation: 2017-06-16);P;person;amendment;commission;2017-06-21;2017-06-21;2017/1094 (OJ L158);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1094&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5802098444 (id-National identification card) (on 2010-04-15 valid to 2016-04-14)(Germany national identity card number 5802098444, issued in Bonn, Germany (on 15 Apr. 2010, expired on 14 Apr. 2016));NO;NO;NO;NO;NO;;2010-04-15;;2016-04-14;;;id;National identification card;;DE;;112691;EN;Germany national identity card number 5802098444, issued in Bonn, Germany (on 15 Apr. 2010, expired on 14 Apr. 2016);amendment;commission;2017-06-21;2017-06-21;2017/1094 (OJ L158);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1094&from=EN;;;;;;;;;;;;; +28/10/2022;112597;EU.3818.23;QDi.403;2017-06-16;;(UN ID: QDi.403)\n(Date of UN designation: 2017-06-16);P;person;amendment;commission;2017-06-21;2017-06-21;2017/1094 (OJ L158);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1094&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DE;;112689;EN;;amendment;commission;2017-06-21;2017-06-21;2017/1094 (OJ L158);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1094&from=EN +28/10/2022;112597;EU.3818.23;QDi.403;2017-06-16;;(UN ID: QDi.403)\n(Date of UN designation: 2017-06-16);P;person;amendment;commission;2017-06-21;2017-06-21;2017/1094 (OJ L158);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1094&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;112690;EN;;amendment;commission;2017-06-21;2017-06-21;2017/1094 (OJ L158);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1094&from=EN +28/10/2022;112951;EU.4125.84;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;DCB Finance Limited;;;;DCB Finance Limited is a front company for Daedong Credit Bank (DCB), a designated entity.;112952;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112951;EU.4125.84;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Dalian;;;;;;NO;;CN;CHINA;112953;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112951;EU.4125.84;;2016-11-30;;(Date of UN designation: 2016-11-30);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Road Town, Tortola,;Akara Building, 24 de Castro Street, Wickhams Cay I, Road Town, Tortola,;;;;;NO;;VG;VIRGIN ISLANDS (BRITISH);112954;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112957;EU.3855.35;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;Tambo Numbi;;;;;112959;EN;;amendment;council;2016-12-12;2016-12-12;2016/2230 (OJ L336);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2230&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112957;EU.3855.35;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;Numbi Banza Ntambo;John;;John Numbi Banza Ntambo;;;;;112960;EN;;amendment;council;2016-12-12;2016-12-12;2016/2230 (OJ L336);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2230&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112957;EU.3855.35;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;Numbi Banza Tambo;John;;John Numbi Banza Tambo;;;;;112961;EN;;amendment;council;2016-12-12;2016-12-12;2016/2230 (OJ L336);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2230&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112957;EU.3855.35;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;John NUMBI;;M;;Inspector General of the Congolese Armed Forces (FARDC) from July 2018 until July 2020.;112962;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112957;EU.3855.35;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;Kinshasa/Gombe;5, avenue Oranger;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);118790;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112957;EU.3855.35;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-08-16;16;8;1962;;;NO;GREGORIAN;;;Jadotville-Likasi-Kolwezi;;CD;CONGO, Democratic Republic of (was Zaire);112958;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;112957;EU.3855.35;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;112963;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC +28/10/2022;113025;EU.3764.9;QDe.152;2017-07-06;;(UN ID: QDe.152)\n(Date of UN designation: 2017-07-06);E;enterprise;amendment;commission;2017-07-12;2017-07-12;2017/1251 (OJ L179);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1251&from=EN;;;;Ahrar-ul-Hind;;;;;113115;EN;;amendment;commission;2017-07-12;2017-07-12;2017/1251 (OJ L179);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1251&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113025;EU.3764.9;QDe.152;2017-07-06;;(UN ID: QDe.152)\n(Date of UN designation: 2017-07-06);E;enterprise;amendment;commission;2017-07-12;2017-07-12;2017/1251 (OJ L179);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1251&from=EN;;;;Tehrik-e Taliban Pakistan Jamaat ul Ahrar;;;;;113116;EN;;amendment;commission;2017-07-12;2017-07-12;2017/1251 (OJ L179);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1251&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113025;EU.3764.9;QDe.152;2017-07-06;;(UN ID: QDe.152)\n(Date of UN designation: 2017-07-06);E;enterprise;amendment;commission;2017-07-12;2017-07-12;2017/1251 (OJ L179);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1251&from=EN;;;;Jamaat-e-Ahrar;;;;;113117;EN;;amendment;commission;2017-07-12;2017-07-12;2017/1251 (OJ L179);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1251&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113025;EU.3764.9;QDe.152;2017-07-06;;(UN ID: QDe.152)\n(Date of UN designation: 2017-07-06);E;enterprise;amendment;commission;2017-07-12;2017-07-12;2017/1251 (OJ L179);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1251&from=EN;;;;Jamaat-ul-Ahrar (JuA);;;;;113118;EN;;amendment;commission;2017-07-12;2017-07-12;2017/1251 (OJ L179);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1251&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113025;EU.3764.9;QDe.152;2017-07-06;;(UN ID: QDe.152)\n(Date of UN designation: 2017-07-06);E;enterprise;amendment;commission;2017-07-12;2017-07-12;2017/1251 (OJ L179);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1251&from=EN;;;;;;;;;;;;;;;;;;;;;;;Nangarhar Province;Lalpura;NO;(Lalpura, Nangarhar Province, Afghanistan (since Jun. 2015));AF;AFGHANISTAN;113113;EN;Lalpura, Nangarhar Province, Afghanistan (since Jun. 2015);amendment;commission;2017-07-12;2017-07-12;2017/1251 (OJ L179);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1251&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113025;EU.3764.9;QDe.152;2017-07-06;;(UN ID: QDe.152)\n(Date of UN designation: 2017-07-06);E;enterprise;amendment;commission;2017-07-12;2017-07-12;2017/1251 (OJ L179);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1251&from=EN;;;;;;;;;;;;;;;;;;;;;;;;Mohmand Agency;NO;(Mohmand Agency, Pakistan (as at Aug. 2014).);PK;PAKISTAN;113114;EN;Mohmand Agency, Pakistan (as at Aug. 2014).;amendment;commission;2017-07-12;2017-07-12;2017/1251 (OJ L179);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1251&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113086;EU.3921.40;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;'Tango Four';;;;;113087;EN;;amendment;council;2018-12-11;2018-12-12;2018/1931 (OJ L314);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1931&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113086;EU.3921.40;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;'Tango Fort';;;;;113088;EN;;amendment;council;2018-12-11;2018-12-12;2018/1931 (OJ L314);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1931&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113086;EU.3921.40;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;Nkumba;Gabriel;Amisi;Gabriel Amisi Nkumba;;;;;113089;EN;;amendment;council;2016-12-12;2016-12-12;2016/2230 (OJ L336);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2230&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113086;EU.3921.40;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;Gabriel Amisi KUMBA;;M;;Former Commander of the first defence zone of the Congolese Armed Forces (FARDC). Deputy Chief of Staff of the FARDC in charge of operations and intelligence from July 2018 to July 2020. Inspector General of the FARDC since July 2020.;113090;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113086;EU.3921.40;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;Kinshasa/Ngaliema;22, avenue Mbenseke, Ma Campagne;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);118787;EN;;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113086;EU.3921.40;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-05-28;28;5;1964;;;NO;GREGORIAN;;;Malela;;CD;CONGO, Democratic Republic of (was Zaire);113091;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113086;EU.3921.40;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1-64-87-77512-30 (other-Other identification number) (Military ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;113094;EN;Military ID number;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;; +28/10/2022;113086;EU.3921.40;;2016-12-12;;(Date of UN designation: 2016-12-12);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CG;;113092;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC +28/10/2022;113095;EU.3922.5;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ali GHANEM;;M;;Former Minister for Petroleum and Mineral Resources;113096;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113095;EU.3922.5;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;علي غانم;AR;M;;;124788;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113095;EU.3922.5;;2016-11-14;;(Date of UN designation: 2016-11-14);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;113097;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113171;EU.3956.62;;;;(Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Samir DABUL;;M;Brigadier General;;113172;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113171;EU.3956.62;;;;(Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Daaboul;Samir;;Samir Daaboul;;;Brigadier General;Holds the rank of Brigadier General, in post after May 2011.;113173;EN;He is associated with the Syrian Scientific Studies and Research Centre, a listed entity.;amendment;council;2017-07-18;2017-07-18;2017/1327 (OJ L185);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1327&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113171;EU.3956.62;;;;(Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-09-04;4;9;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;113174;EN;;amendment;council;2017-07-18;2017-07-18;2017/1327 (OJ L185);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1327&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113175;EU.3957.27;;;Date of listing: 18.7.2017;(Designation details: Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ali WANUS;;M;Major General;Holds the rank of Major General, in post after May 2011. He is also associated with the Syrian Scientific Studies and Research Centre, a listed entity.;113176;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113175;EU.3957.27;;;Date of listing: 18.7.2017;(Designation details: Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Wannous;Ali;;Ali Wannous;;M;Major General;;113177;EN;;amendment;council;2019-05-20;2019-05-21;2019/798 (OJ L132);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.132.01.0001.01.ENG&toc=OJ:L:2019:132:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113175;EU.3957.27;;;Date of listing: 18.7.2017;(Designation details: Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;علي وانوس;AR;M;;;124806;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113175;EU.3957.27;;;Date of listing: 18.7.2017;(Designation details: Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-02-05;5;2;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;113178;EN;;amendment;council;2017-07-18;2017-07-18;2017/1327 (OJ L185);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1327&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113179;EU.3958.89;;;;(Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Dhahi;Yasin;;Yasin Dhahi;;;Brigadier General;;113180;EN;;amendment;council;2017-07-18;2017-07-18;2017/1327 (OJ L185);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1327&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113179;EU.3958.89;;;;(Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Dahi;Yasin;;Yasin Dahi;;;Brigadier General;;113181;EN;;amendment;council;2017-07-18;2017-07-18;2017/1327 (OJ L185);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1327&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113179;EU.3958.89;;;;(Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yasin Ahmad DAHI;;M;Brigadier General;Holds the rank of Brigadier General in the Syrian Armed Forces, in post after May 2011. Senior officer within the Military Intelligence Directorate of the Syrian Armed Forces. Former head of Military Intelligence Branch 235 in Damascus and Military Intelligence in Homs.;113182;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113179;EU.3958.89;;;;(Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ضاحي ياسين;AR;M;;;124807;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113179;EU.3958.89;;;;(Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;113183;EN;;amendment;council;2017-07-18;2017-07-18;2017/1327 (OJ L185);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1327&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113186;EU.3765.71;;2017-07-18;;(Date of UN designation: 2017-07-18);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;Hasouri;Mohammed;Yousef;Mohammed Yousef Hasouri;;M;Brigadier General;;113187;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113186;EU.3765.71;;2017-07-18;;(Date of UN designation: 2017-07-18);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;Hasouri;Mohammad;Yousef;Mohammad Yousef Hasouri;;M;Brigadier General;;113188;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113186;EU.3765.71;;2017-07-18;;(Date of UN designation: 2017-07-18);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;HASOURI;Muhammad;Yousef;Muhammad Yousef HASOURI;;M;Brigadier General;Senior officer of the Syrian Air Force, in post after May 2011. Chief of Staff of Air Force Brigade 50 and Deputy Commander of the Shayrat Airbase. Operates in the sector of proliferation of chemical weapons.;113189;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113186;EU.3765.71;;2017-07-18;;(Date of UN designation: 2017-07-18);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;محمد يوسف حاصوري;AR;M;;;124808;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113190;EU.3766.36;;;;(Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Hassan;Malek;;Malek Hassan;;;Major General;;113191;EN;;amendment;council;2017-07-18;2017-07-18;2017/1327 (OJ L185);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1327&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113190;EU.3766.36;;;;(Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Malik HASAN;;M;Major General;Holds the rank of Major General, a senior officer and Com­mander of the 22nd Division of the Syrian Air Force, in post after May 2011.;113192;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113190;EU.3766.36;;;;(Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;مالك حسن;AR;M;;;124809;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113193;EU.4221.92;;2017-07-18;;(Date of UN designation: 2017-07-18);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;al-Hammoud al-Moussa;Jayez;;Jayez al-Hammoud al-Moussa;;M;Major General;;113194;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113193;EU.4221.92;;2017-07-18;;(Date of UN designation: 2017-07-18);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;al-Hammoud al-Mousa;Jaez;Sawada;Jaez Sawada al-Hammoud al-Mousa;;M;Major General;;113195;EN;";";amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113193;EU.4221.92;;2017-07-18;;(Date of UN designation: 2017-07-18);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;AL-MUSA;Jayyiz;Rayyan;Jayyiz Rayyan AL-MUSA;;M;Major General;Former Governor of Hasaka. Former Chief of Staff of the Syrian Air Force.;113196;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113193;EU.4221.92;;2017-07-18;;(Date of UN designation: 2017-07-18);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;جايز ريان الموسى;AR;M;;;124810;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113193;EU.4221.92;;2017-07-18;;(Date of UN designation: 2017-07-18);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954;;;NO;GREGORIAN;;;;Hama;SY;SYRIAN ARAB REPUBLIC;114484;EN;;amendment;council;2017-09-26;2017-09-27;2017/1751 (OJ L246);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1751&qid=1506424462675&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113197;EU.4029.76;;;;(Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Sawan;Meezar;;Meezar Sawan;;;Major General;;113198;EN;;amendment;council;2017-07-18;2017-07-18;2017/1327 (OJ L185);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1327&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113197;EU.4029.76;;;;(Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mayzar 'Abdu SAWAN;;M;Major General;Holds the rank of Major General, a senior officer and Com­mander of the 20th Division of the Syrian Air Force, in post after May 2011.;113199;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113197;EU.4029.76;;;;(Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;مايزار عبد الصوان;AR;M;;;124811;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113197;EU.4029.76;;;;(Date of listing: 18.7.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;114485;EN;;amendment;council;2017-09-26;2017-09-27;2017/1751 (OJ L246);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1751&qid=1506424462675&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113207;EU.3776.37;;;;(Date of listing: 18.07.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Safwan KATAN;;M;;Mohammad Safwan Katan is an engineer at the Syrian Scientific Studies and Research Centre, a listed entity.;113208;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113207;EU.3776.37;;;;(Date of listing: 18.07.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Qattan;Mohammad;Safwan;Mohammad Safwan Qattan;;;;Mohammad Safwan Katan is an engineer at the Syrian Scientific Studies and Research Centre, a listed entity.;113209;EN;;amendment;council;2017-07-18;2017-07-18;2017/1327 (OJ L185);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1327&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113207;EU.3776.37;;;;(Date of listing: 18.07.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد صفوان قطان;AR;M;;;124812;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113210;EU.3777.2;;2017-07-18;;(Date of UN designation: 2017-07-18);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Ghraywati;Mohammad;Ziad;Mohammad Ziad Ghraywati;;;;Mohammad Ziad Ghraywati is an engineer at the Syrian Scientific Studies and Research Centre, a listed entity.;113211;EN;;amendment;council;2017-07-18;2017-07-18;2017/1327 (OJ L185);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1327&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113210;EU.3777.2;;2017-07-18;;(Date of UN designation: 2017-07-18);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Ziad GHRIWATI;;M;;Mohammad Ziad Ghriwati is an engineer at the Syrian Scientific Studies and Research Centre.;113212;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113210;EU.3777.2;;2017-07-18;;(Date of UN designation: 2017-07-18);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد زياد غريواتي;AR;M;;;124813;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113213;EU.3778.64;;;;(Date of listing: 18.07.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Khloudi;Mohammad;Darar;Mohammad Darar Khloudi;;;;Mohammad Darar Khloudi is an engineer at the Syrian Scientific Studies and Research Centre.;113214;EN;;amendment;council;2017-07-18;2017-07-18;2017/1327 (OJ L185);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1327&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113213;EU.3778.64;;;;(Date of listing: 18.07.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Darar KHALUDI;;M;;Mohammad Darar Khaludi is an engineer at the Syrian Scientific Studies and Research Centre.;113215;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113213;EU.3778.64;;;;(Date of listing: 18.07.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد ضرار خلودي;AR;M;;;124814;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113216;EU.3779.29;;2017-07-18;;(Date of UN designation: 2017-07-18);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Khaled SAWAN;;M;Dr;Dr Khaled Sawan is an engineer at the Syrian Scientific Studies and Research Centre.;113217;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113216;EU.3779.29;;2017-07-18;;(Date of UN designation: 2017-07-18);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;خالد صوان;AR;M;;;124815;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113218;EU.3780.54;;2017-07-18;;(Date of UN designation: 2017-07-18);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Rizk;Raymond;;Raymond Rizk;;;;Raymond Rizk is an engineer at the Syrian Scientific Studies and Research Centre.;113219;EN;;amendment;council;2017-07-18;2017-07-18;2017/1327 (OJ L185);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1327&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113218;EU.3780.54;;2017-07-18;;(Date of UN designation: 2017-07-18);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Raymond RIZQ;;M;;Raymond Rizq is an engineer at the Syrian Scientific Studies and Research Centre.;113220;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113218;EU.3780.54;;2017-07-18;;(Date of UN designation: 2017-07-18);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ريمون رزق;AR;M;;;124816;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113221;EU.3781.19;;;;(Date of listing: 18.07.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;Al Atto;Fawaz;;Fawaz Al Atto;;;;Fawaz Al Atto is a lab technician at the Syrian Scientific Studies and Research Centre.;113222;EN;;amendment;council;2017-07-18;2017-07-18;2017/1327 (OJ L185);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1327&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113221;EU.3781.19;;;;(Date of listing: 18.07.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fawwaz EL-ATOU;;M;;Fawwaz El-Atou is a lab technician at the Syrian Scientific Studies and Research Centre.;113223;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113221;EU.3781.19;;;;(Date of listing: 18.07.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;فواز الاطو;AR;M;;;124817;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113224;EU.3782.81;;;;(Date of listing: 18.07.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;al-Asi;Fayez;;Fayez al-Asi;;;;Fayez al-Asi is a lab technician at the Syrian Scientific Studies and Research Centre.;113225;EN;;amendment;council;2017-07-18;2017-07-18;2017/1327 (OJ L185);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1327&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113224;EU.3782.81;;;;(Date of listing: 18.07.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fayez ASI;;M;;Fayez Asi is a lab technician at the Syrian Scientific Studies and Research Centre.;113226;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113224;EU.3782.81;;;;(Date of listing: 18.07.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;فايز أساي;AR;M;;;124818;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113227;EU.3783.46;;;;(Date of listing: 18.07.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Halah Sirhan;;;;;113228;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113227;EU.3783.46;;;;(Date of listing: 18.07.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hala SIRHAN;;F;Dr;Dr Hala Sirhan works with Syrian Military Intelligence at the Syrian Scientific Studies and Research Centre.;113229;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113227;EU.3783.46;;;;(Date of listing: 18.07.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;هالة سرحان;AR;;;;125085;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113227;EU.3783.46;;;;(Date of listing: 18.07.2017);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-01-05;5;1;1953;;;NO;GREGORIAN;;;;;00;UNKNOWN;113230;EN;;amendment;council;2017-07-18;2017-07-18;2017/1327 (OJ L185);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1327&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113244;EU.4090.10;;;Date of listing: 28.10.2016;(Designation details: Date of listing: 28.10.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;al-Hilal;Hilal;;Hilal al-Hilal;;;;Member of the regime affiliated militias known as “Kataeb al-Baath” (The Baath Party militia).;113246;EN;;amendment;council;2016-10-28;2016-10-28;2016/1893 (OJ L293);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2016:293:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113244;EU.4090.10;;;Date of listing: 28.10.2016;(Designation details: Date of listing: 28.10.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Hilal HILAL;;M;;Member of the regime-affiliated militias known as ‘Kataeb al-Baath’ (The Baath Party militia). Vice-Chairman of the Baath Party.;113247;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113244;EU.4090.10;;;Date of listing: 28.10.2016;(Designation details: Date of listing: 28.10.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;هلال هلال;AR;M;;;124721;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113244;EU.4090.10;;;Date of listing: 28.10.2016;(Designation details: Date of listing: 28.10.2016);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;113245;EN;;amendment;council;2016-10-28;2016-10-28;2016/1893 (OJ L293);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2016:293:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113282;EU.4018.13;;2018-02-01;;(Date of UN designation: 2018-02-01)\n(Date of listing: 29.05.2017);P;person;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;Mundos;Muhindo;Akili;Muhindo Akili Mundos;;;;"(a) DRC Armed Forces (FARDC) General, Commander of the 31st Brigade; (b) FARDC Brigadier General";113283;EN;;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113282;EU.4018.13;;2018-02-01;;(Date of UN designation: 2018-02-01)\n(Date of listing: 29.05.2017);P;person;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;Charles Muhindo Akili Mundos;;;;;113286;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113282;EU.4018.13;;2018-02-01;;(Date of UN designation: 2018-02-01)\n(Date of listing: 29.05.2017);P;person;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;Muhindo Mundos;;;;;115364;EN;;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113282;EU.4018.13;;2018-02-01;;(Date of UN designation: 2018-02-01)\n(Date of listing: 29.05.2017);P;person;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;Akili Muhindo;;;;;115365;EN;;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113282;EU.4018.13;;2018-02-01;;(Date of UN designation: 2018-02-01)\n(Date of listing: 29.05.2017);P;person;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-11-10;10;11;1972;;;NO;GREGORIAN;;;Kirotse;;CD;CONGO, Democratic Republic of (was Zaire);113287;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113282;EU.4018.13;;2018-02-01;;(Date of UN designation: 2018-02-01)\n(Date of listing: 29.05.2017);P;person;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1-72-96-80384-52 (other-Other identification number) (Military ID number: 1-72-96-80384-52);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;113288;EN;Military ID number: 1-72-96-80384-52;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;; +28/10/2022;113282;EU.4018.13;;2018-02-01;;(Date of UN designation: 2018-02-01)\n(Date of listing: 29.05.2017);P;person;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;113284;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN +28/10/2022;113291;EU.4058.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;Éric RUHORIMBERE;;M;;Deputy Commander of the 21st military region from September 2014 to July 2018. Commander of the Nord Equateur operational sector since July 2018.;113292;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113291;EU.4058.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;‘Tango Deux’;;;;;113293;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113291;EU.4058.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;‘Tango Two’;;;;;113294;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113291;EU.4058.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;Eric Ruhorimbere Ruhanga;;;;;113295;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113291;EU.4058.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;Mbujimayi, Kasai Province;;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);118802;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113291;EU.4058.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-07-16;16;7;1969;;;NO;GREGORIAN;;;Minembwe;;CD;CONGO, Democratic Republic of (was Zaire);113297;EN;;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113291;EU.4058.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1-69-09-51400-64 (other-Other identification number) (Military ID number: 1-69-09-51400-64);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;113298;EN;Military ID number: 1-69-09-51400-64;amendment;council;2017-05-29;2017-05-29;2017/904 (OJ L138 I);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R0904&from=EN;;;;;;;;;;;;; +28/10/2022;113291;EU.4058.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"OB0814241 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;CD;;118803;EN;;amendment;council;2018-12-11;2018-12-12;2018/1931 (OJ L314);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1931&from=EN;;;;;;;;;;;;; +28/10/2022;113291;EU.4058.17;;2017-05-29;;(Date of UN designation: 2017-05-29);P;person;amendment;council;2021-12-10;2021-12-10;2021/2177 (OJ L443);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.443.01.0003.01.ENG&toc=OJ%3AL%3A2021%3A443%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CD;;113296;EN;;amendment;council;2020-12-11;2020-12-12;2020/2021 (OJ L419);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.419.01.0005.01.ENG&toc=OJ%3AL%3A2020%3A419%3ATOC +28/10/2022;113326;EU.4019.75;QDi.408;2017-07-20;;(UN ID: QDi.408)\n(Date of UN designation: 2017-07-20)\n(Eye colour: dark brown. Hair colour: black. Complexion: dark. Distinguishing marks: beard.);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;Kote;Alexanda;;Alexanda Kote;;;;;113468;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113326;EU.4019.75;QDi.408;2017-07-20;;(UN ID: QDi.408)\n(Date of UN designation: 2017-07-20)\n(Eye colour: dark brown. Hair colour: black. Complexion: dark. Distinguishing marks: beard.);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;Kotey;Alexe;;Alexe Kotey;;;;;113469;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113326;EU.4019.75;QDi.408;2017-07-20;;(UN ID: QDi.408)\n(Date of UN designation: 2017-07-20)\n(Eye colour: dark brown. Hair colour: black. Complexion: dark. Distinguishing marks: beard.);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;Kotey;Alexanda;Amon;Alexanda Amon Kotey;;;;;113470;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113326;EU.4019.75;QDi.408;2017-07-20;;(UN ID: QDi.408)\n(Date of UN designation: 2017-07-20)\n(Eye colour: dark brown. Hair colour: black. Complexion: dark. Distinguishing marks: beard.);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-12-13;13;12;1983;;;NO;GREGORIAN;;;;London;GB;UNITED KINGDOM;113465;EN;United Kingdom of Great Britain and Northern Ireland;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113326;EU.4019.75;QDi.408;2017-07-20;;(UN ID: QDi.408)\n(Date of UN designation: 2017-07-20)\n(Eye colour: dark brown. Hair colour: black. Complexion: dark. Distinguishing marks: beard.);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;094477324 (passport-National passport) (on 2005-03-05)(United Kingdom of Great Britain and Northern Ireland number 094477324);NO;NO;NO;NO;NO;;2005-03-05;;;;;passport;National passport;;GB;;113467;EN;United Kingdom of Great Britain and Northern Ireland number 094477324;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;; +28/10/2022;113326;EU.4019.75;QDi.408;2017-07-20;;(UN ID: QDi.408)\n(Date of UN designation: 2017-07-20)\n(Eye colour: dark brown. Hair colour: black. Complexion: dark. Distinguishing marks: beard.);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GB;;113466;EN;United Kingdom of Great Britain and Northern Ireland;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN +28/10/2022;113334;EU.4020.3;QDi.409;2017-07-20;;(UN ID: QDi.409)\n(Date of UN designation: 2017-07-20)\n(Eye colour: dark brown. Hair colour: black. Complexion: dark. Distinguishing marks: beard. Mother’s name: Maha Elgizouli.);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;El-Sheikh;Alshafee;;Alshafee El-Sheikh;;;;;113474;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113334;EU.4020.3;QDi.409;2017-07-20;;(UN ID: QDi.409)\n(Date of UN designation: 2017-07-20)\n(Eye colour: dark brown. Hair colour: black. Complexion: dark. Distinguishing marks: beard. Mother’s name: Maha Elgizouli.);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;Elsheikh;El Shafee;;El Shafee Elsheikh;;;;;113475;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113334;EU.4020.3;QDi.409;2017-07-20;;(UN ID: QDi.409)\n(Date of UN designation: 2017-07-20)\n(Eye colour: dark brown. Hair colour: black. Complexion: dark. Distinguishing marks: beard. Mother’s name: Maha Elgizouli.);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;EL SHEIKH;ELSHAFEE;;ELSHAFEE EL SHEIKH;;;;;113476;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113334;EU.4020.3;QDi.409;2017-07-20;;(UN ID: QDi.409)\n(Date of UN designation: 2017-07-20)\n(Eye colour: dark brown. Hair colour: black. Complexion: dark. Distinguishing marks: beard. Mother’s name: Maha Elgizouli.);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-07-16;16;7;1988;;;NO;GREGORIAN;;;;London;GB;UNITED KINGDOM;113471;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113334;EU.4020.3;QDi.409;2017-07-20;;(UN ID: QDi.409)\n(Date of UN designation: 2017-07-20)\n(Eye colour: dark brown. Hair colour: black. Complexion: dark. Distinguishing marks: beard. Mother’s name: Maha Elgizouli.);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;801121547 (passport-National passport) (on 2009-06-16 valid to 2019-06-16)(United Kingdom of Great Britain and Northern Ireland number 801121547, issued on 16 Jun. 2009 (issued by UK Passport Office with expiry date of 16 Jun. 2019, cancelled in Dec. 2014));NO;NO;NO;NO;NO;;2009-06-16;;2019-06-16;;;passport;National passport;;GB;;113473;EN;United Kingdom of Great Britain and Northern Ireland number 801121547, issued on 16 Jun. 2009 (issued by UK Passport Office with expiry date of 16 Jun. 2019, cancelled in Dec. 2014);amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;; +28/10/2022;113334;EU.4020.3;QDi.409;2017-07-20;;(UN ID: QDi.409)\n(Date of UN designation: 2017-07-20)\n(Eye colour: dark brown. Hair colour: black. Complexion: dark. Distinguishing marks: beard. Mother’s name: Maha Elgizouli.);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GB;;113472;EN;United Kingdom of Great Britain and Northern Ireland;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN +28/10/2022;113343;EU.4021.65;QDi.404;2017-07-20;;(UN ID: QDi.404)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;Anggih Tamtomo;Muhammad;Bahrum Naim;Muhammad Bahrum Naim Anggih Tamtomo;;;;;113482;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113343;EU.4021.65;QDi.404;2017-07-20;;(UN ID: QDi.404)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Abu Aisyah;;;;;113483;EN;low quality a.k.a.;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113343;EU.4021.65;QDi.404;2017-07-20;;(UN ID: QDi.404)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Abu Rayan;;;;;113484;EN;low quality a.k.a.;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113343;EU.4021.65;QDi.404;2017-07-20;;(UN ID: QDi.404)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Abu Rayyan;;;;;113485;EN;low quality a.k.a.;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113343;EU.4021.65;QDi.404;2017-07-20;;(UN ID: QDi.404)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Anggih Tamtomo;;;;;113486;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113343;EU.4021.65;QDi.404;2017-07-20;;(UN ID: QDi.404)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Bahrun Naim;;;;;113487;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113343;EU.4021.65;QDi.404;2017-07-20;;(UN ID: QDi.404)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;Raqqa;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;113477;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113343;EU.4021.65;QDi.404;2017-07-20;;(UN ID: QDi.404)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;Aleppo;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;113478;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113343;EU.4021.65;QDi.404;2017-07-20;;(UN ID: QDi.404)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-09-06;6;9;1983;;;NO;GREGORIAN;;;Pekalongan;;ID;INDONESIA;113479;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113343;EU.4021.65;QDi.404;2017-07-20;;(UN ID: QDi.404)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-09-06;6;9;1983;;;NO;GREGORIAN;;;Surakarta;;ID;INDONESIA;113480;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113343;EU.4021.65;QDi.404;2017-07-20;;(UN ID: QDi.404)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;113481;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN +28/10/2022;113355;EU.4022.30;QDi.405;2017-07-20;;(UN ID: QDi.405)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;Barkhanoev;Malik;Ruslanovich;Malik Ruslanovich Barkhanoev;;;;;113491;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113355;EU.4022.30;QDi.405;2017-07-20;;(UN ID: QDi.405)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Saifuddin Ingushi;;;;;113492;EN;low quality a.k.a.;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113355;EU.4022.30;QDi.405;2017-07-20;;(UN ID: QDi.405)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Saifuddin al-Ingushi;;;;;113493;EN;low quality a.k.a.;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113355;EU.4022.30;QDi.405;2017-07-20;;(UN ID: QDi.405)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Saifuddin;;;;;113494;EN;low quality a.k.a.;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113355;EU.4022.30;QDi.405;2017-07-20;;(UN ID: QDi.405)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;Mosul;;;;;;NO;;IQ;IRAQ;113488;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113355;EU.4022.30;QDi.405;2017-07-20;;(UN ID: QDi.405)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1992-03-14;14;3;1992;;;NO;GREGORIAN;;Sunzhenskiy district, Ingushetia;Ordzhonikidzevskaya village;;RU;RUSSIAN FEDERATION;113489;EN;Ordzhonikidzevskaya village, Sunzhenskiy district, Ingushetia, Russian Federation;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113355;EU.4022.30;QDi.405;2017-07-20;;(UN ID: QDi.405)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;113490;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN +28/10/2022;113363;EU.4023.92;QDi.406;2017-07-20;;(UN ID: QDi.406)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;Margoshvili;Murad;Iraklievich;Murad Iraklievich Margoshvili;;;;;113498;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113363;EU.4023.92;QDi.406;2017-07-20;;(UN ID: QDi.406)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Sedoy;;;;;113499;EN;low quality a.k.a.;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113363;EU.4023.92;QDi.406;2017-07-20;;(UN ID: QDi.406)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Arthur;;;;;113500;EN;low quality a.k.a.;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113363;EU.4023.92;QDi.406;2017-07-20;;(UN ID: QDi.406)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;George;;;;;113501;EN;low quality a.k.a.;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113363;EU.4023.92;QDi.406;2017-07-20;;(UN ID: QDi.406)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;John;;;;;113502;EN;low quality a.k.a.;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113363;EU.4023.92;QDi.406;2017-07-20;;(UN ID: QDi.406)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Lava;;;;;113503;EN;low quality a.k.a.;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113363;EU.4023.92;QDi.406;2017-07-20;;(UN ID: QDi.406)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Muslim;;;;;113504;EN;low quality a.k.a.;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113363;EU.4023.92;QDi.406;2017-07-20;;(UN ID: QDi.406)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Abu-Muslim Al-Shishani;;;;;113505;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113363;EU.4023.92;QDi.406;2017-07-20;;(UN ID: QDi.406)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Lova Madayev;;;;;113506;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113363;EU.4023.92;QDi.406;2017-07-20;;(UN ID: QDi.406)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Murad Akhmedovich Madayev;;;;;113507;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113363;EU.4023.92;QDi.406;2017-07-20;;(UN ID: QDi.406)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Zurab Iraklievich Margoshvili;;;;;113508;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113363;EU.4023.92;QDi.406;2017-07-20;;(UN ID: QDi.406)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-01-15;15;1;1970;;;NO;GREGORIAN;;Chechen Republic;;Grozny;RU;RUSSIAN FEDERATION;113495;EN;Grozny, Chechen Republic, Russian Federation;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113363;EU.4023.92;QDi.406;2017-07-20;;(UN ID: QDi.406)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GE;;113496;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN +28/10/2022;113363;EU.4023.92;QDi.406;2017-07-20;;(UN ID: QDi.406)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;113497;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN +28/10/2022;113378;EU.4040.5;QDi.407;2017-07-20;;(UN ID: QDi.407)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;ROCHMAN;OMAN;;OMAN ROCHMAN;;;Ustadz;;113512;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113378;EU.4040.5;QDi.407;2017-07-20;;(UN ID: QDi.407)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Aman Abdurrahman;;;;;113513;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113378;EU.4040.5;QDi.407;2017-07-20;;(UN ID: QDi.407)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Oman Abdurrahman;;;;;113514;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113378;EU.4040.5;QDi.407;2017-07-20;;(UN ID: QDi.407)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Oman Abdulrohman;;;;;113515;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113378;EU.4040.5;QDi.407;2017-07-20;;(UN ID: QDi.407)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Aman Abdurrachman;;;;;113516;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113378;EU.4040.5;QDi.407;2017-07-20;;(UN ID: QDi.407)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Aman Abdurahman;;;;;113517;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113378;EU.4040.5;QDi.407;2017-07-20;;(UN ID: QDi.407)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Aman Abdul Rahman;;;;;113518;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113378;EU.4040.5;QDi.407;2017-07-20;;(UN ID: QDi.407)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Abu Sulaiman Aman Abdurrahman Al-Arkhabiliy;;;;;113519;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113378;EU.4040.5;QDi.407;2017-07-20;;(UN ID: QDi.407)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;Rahman;Oman;;Oman Rahman;;;;;113520;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113378;EU.4040.5;QDi.407;2017-07-20;;(UN ID: QDi.407)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;Nusa Kambangan Island;NO;(Pasir Putih Prison, Nusa Kambangan Island, Indonesia.);ID;INDONESIA;113509;EN;Pasir Putih Prison, Nusa Kambangan Island, Indonesia.;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113378;EU.4040.5;QDi.407;2017-07-20;;(UN ID: QDi.407)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-01-05;5;1;1972;;;NO;GREGORIAN;;;;Sumedang;ID;INDONESIA;113510;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113378;EU.4040.5;QDi.407;2017-07-20;;(UN ID: QDi.407)\n(Date of UN designation: 2017-07-20);P;person;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;113511;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN +28/10/2022;113391;EU.4041.67;QDe.153;2017-07-20;;(UN ID: QDe.153)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;HANIFA MONEY EXCHANGE OFFICE (BRANCH LOCATED IN ALBU KAMAL, SYRIAN ARAB REPUBLIC);;;;;113523;EN;(BRANCH LOCATED IN ALBU KAMAL, SYRIAN ARAB REPUBLIC);amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113391;EU.4041.67;QDe.153;2017-07-20;;(UN ID: QDe.153)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Hanifa Money Exchange Office;;;;;113524;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113391;EU.4041.67;QDe.153;2017-07-20;;(UN ID: QDe.153)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Hanifah Exchange Company;;;;;113525;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113391;EU.4041.67;QDe.153;2017-07-20;;(UN ID: QDe.153)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Hunaifa Office;;;;;113526;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113391;EU.4041.67;QDe.153;2017-07-20;;(UN ID: QDe.153)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Hanifa Exchange;;;;;113527;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113391;EU.4041.67;QDe.153;2017-07-20;;(UN ID: QDe.153)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Hanifeh Exchange;;;;;113528;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113391;EU.4041.67;QDe.153;2017-07-20;;(UN ID: QDe.153)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Hanifah Currency Exchange;;;;;113529;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113391;EU.4041.67;QDe.153;2017-07-20;;(UN ID: QDe.153)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;Al-Bukamal;NO;;SY;SYRIAN ARAB REPUBLIC;113521;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113391;EU.4041.67;QDe.153;2017-07-20;;(UN ID: QDe.153)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;Albu Kamal;NO;;SY;SYRIAN ARAB REPUBLIC;113522;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113393;EU.4042.32;QDe.154;2017-07-20;;(UN ID: QDe.154)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;SELSELAT AL-THAHAB;;;;;113532;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113393;EU.4042.32;QDe.154;2017-07-20;;(UN ID: QDe.154)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Selselat al Thahab For Money Exchange;;;;;113533;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113393;EU.4042.32;QDe.154;2017-07-20;;(UN ID: QDe.154)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Silsilet al Thahab;;;;;113534;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113393;EU.4042.32;QDe.154;2017-07-20;;(UN ID: QDe.154)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Silsilah Money Exchange Company;;;;;113535;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113393;EU.4042.32;QDe.154;2017-07-20;;(UN ID: QDe.154)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Silsilat Money Exchange Company;;;;;113536;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113393;EU.4042.32;QDe.154;2017-07-20;;(UN ID: QDe.154)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Silsalat al Dhab;;;;;113537;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113393;EU.4042.32;QDe.154;2017-07-20;;(UN ID: QDe.154)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Al Silsilah al Dhahaba;;;;;113538;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113393;EU.4042.32;QDe.154;2017-07-20;;(UN ID: QDe.154)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;Karbala;Al-Abbas Street;;;;;NO;;IQ;IRAQ;113530;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113393;EU.4042.32;QDe.154;2017-07-20;;(UN ID: QDe.154)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;Baghdad;Al-Kadhumi Complex, Al-Harthia;;;;;NO;;IQ;IRAQ;113531;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113395;EU.4043.94;QDe.155;2017-07-20;;(UN ID: QDe.155)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Jaysh Khalid Ibn al Waleed;;;;;113539;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113395;EU.4043.94;QDe.155;2017-07-20;;(UN ID: QDe.155)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Harakat al-Muthanna al-Islamia;;;;;113540;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113395;EU.4043.94;QDe.155;2017-07-20;;(UN ID: QDe.155)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Liwa Shuhada al-Yarmouk;;;;;113541;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113395;EU.4043.94;QDe.155;2017-07-20;;(UN ID: QDe.155)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Khalid ibn al-Walid Army;;;;;113542;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113397;EU.4044.59;QDe.156;2017-07-20;;(UN ID: QDe.156)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Jund Al Aqsa;;;;;113545;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113397;EU.4044.59;QDe.156;2017-07-20;;(UN ID: QDe.156)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Sarayat Al Quds;;;;;113546;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113397;EU.4044.59;QDe.156;2017-07-20;;(UN ID: QDe.156)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;Soldiers of Aqsa;;;;;113547;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113397;EU.4044.59;QDe.156;2017-07-20;;(UN ID: QDe.156)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;The Soldiers of Aqsa;;;;;113548;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113397;EU.4044.59;QDe.156;2017-07-20;;(UN ID: QDe.156)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;Hama Governorate;;NO;;SY;SYRIAN ARAB REPUBLIC;113543;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113397;EU.4044.59;QDe.156;2017-07-20;;(UN ID: QDe.156)\n(Date of UN designation: 2017-07-20);E;enterprise;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;Idlib Governorate;;NO;;SY;SYRIAN ARAB REPUBLIC;113544;EN;;amendment;commission;2017-07-27;2017-07-27;2017/1390 (OJ L195);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113672;EU.4048.16;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Ch’oe Ch’un-yo’ng;;M;;;113846;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113672;EU.4048.16;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Choe;Chun;Yong;Chun Yong Choe;;M;;Representative for Ilsim International Bank;113847;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113672;EU.4048.16;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"65441078 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;113845;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;; +28/10/2022;113672;EU.4048.16;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;113844;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN +28/10/2022;113677;EU.4136.50;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Chang-Su Han;;M;;;113851;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113677;EU.4136.50;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Han;Jang;Su;Jang Su Han;;M;;Chief Representative of the Foreign Trade Bank;113852;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113677;EU.4136.50;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-11-08;8;11;1969;;;NO;GREGORIAN;;;;Pyongyang;00;UNKNOWN;113848;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113677;EU.4136.50;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;745420176 (passport-National passport) (valid to 2020-10-19);NO;NO;NO;NO;NO;;;;2020-10-19;;;passport;National passport;;00;;113850;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;; +28/10/2022;113677;EU.4136.50;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;113849;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN +28/10/2022;113683;EU.4137.15;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Jang;Song;Chol;Song Chol Jang;;;;Korea Mining Development Corporation (KOMID) representative overseas;113855;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113683;EU.4137.15;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-03-12;12;3;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;113853;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113683;EU.4137.15;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;113854;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN +28/10/2022;113692;EU.4138.77;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Jang;Sung;Nam;Sung Nam Jang;;M;;Chief of an overseas Tangun Trading Corporation branch;113859;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113692;EU.4138.77;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;114051;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113692;EU.4138.77;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-07-14;14;7;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;113856;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113692;EU.4138.77;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;563120368 (passport-National passport) (on 2013-03-22 valid to 2018-03-22);NO;NO;NO;NO;NO;;2013-03-22;;2018-03-22;;;passport;National passport;;00;;113858;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;; +28/10/2022;113692;EU.4138.77;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;113857;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN +28/10/2022;113697;EU.4139.42;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Cho Ch’o’l-so’ng;;M;;;113863;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113697;EU.4139.42;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Jo;Chol;Song;Chol Song Jo;;M;;Deputy Representative for the Korea Kwangson Banking Corporation;113864;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113697;EU.4139.42;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-09-25;25;9;1984;;;NO;GREGORIAN;;;;;00;UNKNOWN;113860;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113697;EU.4139.42;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;654320502 (passport-National passport) (valid to 2019-09-16);NO;NO;NO;NO;NO;;;;2019-09-16;;;passport;National passport;;00;;113862;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;; +28/10/2022;113697;EU.4139.42;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;113861;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN +28/10/2022;113703;EU.4140.67;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Kang;Chol;Su;Chol Su Kang;;;;Official for Korea Ryonbong General Corporation;113868;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113703;EU.4140.67;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-02-13;13;2;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;113865;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113703;EU.4140.67;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"472234895 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;113867;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;; +28/10/2022;113703;EU.4140.67;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;113866;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN +28/10/2022;113708;EU.4141.32;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Kim Mun-ch’o’l;;;;;113871;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113708;EU.4141.32;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Kim;Mun;Chol;Mun Chol Kim;;;;Representative for Korea United Development Bank.;113872;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113708;EU.4141.32;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-03-25;25;3;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;113869;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113708;EU.4141.32;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;113870;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN +28/10/2022;113713;EU.4142.94;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Kim;Nam;Ung;Nam Ung Kim;;;;Representative for Ilsim International Bank;113875;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113713;EU.4142.94;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"654110043 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;113874;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;; +28/10/2022;113713;EU.4142.94;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;113873;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN +28/10/2022;113717;EU.4143.59;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Pak Il-Gyu;;;;;113878;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113717;EU.4143.59;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;Pak;Il;Kyu;Il Kyu Pak;;M;;Official for Korea Ryonbong General Corporation;113879;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113717;EU.4143.59;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"563120235 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;113877;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;; +28/10/2022;113717;EU.4143.59;;2017-08-05;;(Date of UN designation: 2017-08-05);P;person;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;113876;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN +28/10/2022;113740;EU.4132.93;;2017-08-05;;(Date of UN designation: 2017-08-05);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Foreign Trade Bank;;;;Foreign Trade Bank is a State-owned bank and acts as the DPRK’s primary foreign exchange bank and has provided key financial support to the Korea Kwangson Banking Corporation.;113881;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113740;EU.4132.93;;2017-08-05;;(Date of UN designation: 2017-08-05);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Korea Trading Bank;;;;;144188;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113740;EU.4132.93;;2017-08-05;;(Date of UN designation: 2017-08-05);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Mooyokbank;;;;;144189;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113740;EU.4132.93;;2017-08-05;;(Date of UN designation: 2017-08-05);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;FTB Building, Jungsong-dong, Central District;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;113880;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113740;EU.4132.93;;2017-08-05;;(Date of UN designation: 2017-08-05);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"FTBDKPPY (swiftbic-SWIFT BIC) ";NO;NO;NO;NO;NO;;;;;;;swiftbic;SWIFT BIC;;00;;144190;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;113754;EU.4133.58;;2017-08-05;;(Date of UN designation: 2017-08-05);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Koryo Global Trust Bank;;;;;113883;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113754;EU.4133.58;;2017-08-05;;(Date of UN designation: 2017-08-05);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Koryo Global Credit Bank;;;;;113884;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113754;EU.4133.58;;2017-08-05;;(Date of UN designation: 2017-08-05);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Daesong Credit Development Bank;;;;;113885;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113754;EU.4133.58;;2017-08-05;;(Date of UN designation: 2017-08-05);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Koryo Credit Development Bank;;;;Koryo Credit Development Bank operates in the financial services industry in the DPRK’s economy.;113886;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113754;EU.4133.58;;2017-08-05;;(Date of UN designation: 2017-08-05);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;113882;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113760;EU.4134.23;;2017-08-05;;(Date of UN designation: 2017-08-05);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Mansudae Art Studio;;;;;113888;EN;;amendment;commission;2017-08-11;2017-08-11;2017/1457 (OJ L208);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1457&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113760;EU.4134.23;;2017-08-05;;(Date of UN designation: 2017-08-05);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Mansudae Overseas Project Group of Companies;;;;;113889;EN;Mansudae Overseas Project Group of Companies engaged in, facilitated, or was responsible for the exportation of workers from the DPRK to other nations for construction-related activities including for statues and monuments to generate revenue for the Government of the DPRK or the Workers’ Party of Korea.;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113760;EU.4134.23;;2017-08-05;;(Date of UN designation: 2017-08-05);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Grupo empresarial Mansudae Overseas Project;ES;;;;143599;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113760;EU.4134.23;;2017-08-05;;(Date of UN designation: 2017-08-05);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Grupul de întreprinderi din cadrul proiectului Mansudae Overseas;RO;;;;143606;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113760;EU.4134.23;;2017-08-05;;(Date of UN designation: 2017-08-05);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Het concern Mansudae Overseas Project;NL;;;;143609;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113760;EU.4134.23;;2017-08-05;;(Date of UN designation: 2017-08-05);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Yanggakdo International Hotel, RYUS;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;113887;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113778;EU.4108.74;;2017-08-04;;(Date of UN designation: 2017-08-04);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;TSCHERESOW;Andrey;Vladimirovich;Andrey Vladimirovich TSCHERESOW;;M;;;113779;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113778;EU.4108.74;;2017-08-04;;(Date of UN designation: 2017-08-04);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Андрей Владимирович ЧЕРЕЗОВ;;M;;;113780;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113778;EU.4108.74;;2017-08-04;;(Date of UN designation: 2017-08-04);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;CHEREZOV;Andrey;Vladimirovich;Andrey Vladimirovich CHEREZOV;;M;;Former Vice-Minister for \nEnergy of the Russian \nFederation.;113781;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113778;EU.4108.74;;2017-08-04;;(Date of UN designation: 2017-08-04);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Andrej Vladimirovitj TJEREZOV;SV;M;;;131444;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113778;EU.4108.74;;2017-08-04;;(Date of UN designation: 2017-08-04);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Andrej Wladimirowitsch TSCHERESOW;DE;M;;;131445;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113778;EU.4108.74;;2017-08-04;;(Date of UN designation: 2017-08-04);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-10-12;12;10;1967;;;NO;GREGORIAN;;Kemerovskaya Oblast;;Salair;RU;RUSSIAN FEDERATION;122880;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113783;EU.4109.39;;;4.8.2017;(Designation details: 4.8.2017);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;GRABCHAK;Evgeniy;Petrovich;Evgeniy Petrovich GRABCHAK;;M;;Former Head of Department in the Energy Ministry of the Russian Federation. Vice-Minister for Energy of the Russian Federation.;113785;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113783;EU.4109.39;;;4.8.2017;(Designation details: 4.8.2017);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Евгений Петрович ГРАБЧАК;;M;;;113786;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113783;EU.4109.39;;;4.8.2017;(Designation details: 4.8.2017);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-07-18;18;7;1981;;;NO;GREGORIAN;;Krasnodar Region;;Ust-Labinsk;RU;RUSSIAN FEDERATION;122881;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113787;EU.4110.64;;2017-08-04;;(Date of UN designation: 2017-08-04);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;TOPOR-GILKA;Sergey;Anatolevich;Sergey Anatolevich TOPOR-GILKA;;M;;Director General of OAO ‘VO TPE’ until its insolvency, Director General of OOO ‘VO TPE’.;113789;EN;;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113787;EU.4110.64;;2017-08-04;;(Date of UN designation: 2017-08-04);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Сергей Анатольевич ТОПОР-ГИЛКА;;M;;;113790;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113787;EU.4110.64;;2017-08-04;;(Date of UN designation: 2017-08-04);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Topor-Gilka, Sergej Anatoljevitj;SV;M;;;131446;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113787;EU.4110.64;;2017-08-04;;(Date of UN designation: 2017-08-04);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Sergej Anatoljewitsch TOPOR-GILKA;DE;M;;;131447;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113787;EU.4110.64;;2017-08-04;;(Date of UN designation: 2017-08-04);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-02-17;17;2;1970;;;NO;GREGORIAN;;;;;MD;MOLDOVA, REPUBLIC OF;113788;EN;Moldovan Soviet Socialist Republic (now Republic of Moldova);amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113787;EU.4110.64;;2017-08-04;;(Date of UN designation: 2017-08-04);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;131132;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC +28/10/2022;113791;EU.4111.29;;;Date of listing: 4.08.2017;(Designation details: Date of listing: 4.08.2017);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;Открытое акционерное общество Внешнеэкономическое объединение Технопромэкспорт;;;;;113793;EN;;amendment;council;2017-08-04;2017-08-04;2017/1417 (OJ L203);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1417&qid=1502198727659&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113791;EU.4111.29;;;Date of listing: 4.08.2017;(Designation details: Date of listing: 4.08.2017);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;Open Joint Stock Company ‘Foreign Economic Association’ ‘Technopromexport’;;;;;113794;EN;;amendment;council;2017-08-04;2017-08-04;2017/1417 (OJ L203);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1417&qid=1502198727659&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113791;EU.4111.29;;;Date of listing: 4.08.2017;(Designation details: Date of listing: 4.08.2017);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;OAO ‘VO Technopromexport’ (OAO ‘VO TPE’);;;;Contracting party with Siemens Gas Turbine technologies OOO, OAO ‘VO TPE’ purchased gas turbines declared to be destined for a power plant in Taman, Krasnodar region, Russian Federation, and as the contractor was responsible for the transfer of the gas turbines to OOO ‘VO TPE’ which in turn transferred them to be installed in Crimea.;113795;EN;;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113791;EU.4111.29;;;Date of listing: 4.08.2017;(Designation details: Date of listing: 4.08.2017);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;Moscow;Novyi Arbat str., 15, building 2;;119019;;;NO;(Registration date: 27.7.1992 State Registration Number: 1067746244026 Tax Registration Number: 7705713236\nongoing bankruptcy proceedings);00;UNKNOWN;113792;EN;Registration date: 27.7.1992 State Registration Number: 1067746244026 Tax Registration Number: 7705713236\nongoing bankruptcy proceedings;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113791;EU.4111.29;;;Date of listing: 4.08.2017;(Designation details: Date of listing: 4.08.2017);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7705713236 (regnumber-Registration Number) (Tax Registration Number: 7705713236);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;113808;EN;Tax Registration Number: 7705713236;amendment;council;2017-08-04;2017-08-04;2017/1417 (OJ L203);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1417&qid=1502198727659&from=EN;;;;;;;;;;;;; +28/10/2022;113791;EU.4111.29;;;Date of listing: 4.08.2017;(Designation details: Date of listing: 4.08.2017);E;enterprise;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1067746244026 (regnumber-Registration Number) (on 1992-07-27)(Registration date: 27.7.1992 State Registration Number: 1067746244026);NO;NO;NO;NO;NO;;1992-07-27;;;;;regnumber;Registration Number;;00;;113809;EN;Registration date: 27.7.1992 State Registration Number: 1067746244026;amendment;council;2017-08-04;2017-08-04;2017/1417 (OJ L203);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1417&qid=1502198727659&from=EN;;;;;;;;;;;;; +28/10/2022;113796;EU.4112.91;;;4.8.2017;(Designation details: 4.8.2017);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Общество с ограниченной ответственностью ‘Внешнеэкономическое объединение Технопромэкспорт’;;;;;113797;EN;;amendment;council;2017-08-04;2017-08-04;2017/1417 (OJ L203);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1417&qid=1502198727659&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113796;EU.4112.91;;;4.8.2017;(Designation details: 4.8.2017);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Limited Liability Company ‘Foreign Economic Association’ ‘Technopromexport’;;;;;113798;EN;;amendment;council;2017-08-04;2017-08-04;2017/1417 (OJ L203);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1417&qid=1502198727659&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113796;EU.4112.91;;;4.8.2017;(Designation details: 4.8.2017);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;OOO ‘VO Technopromexport’ (OOO ‘VO TPE’);;;;Owner of the gas turbines originally supplied by Siemens Gas Turbine Technologies OOO to OAO ‘VO TPE’. OOO ‘VO TPE’ transferred the gas turbines to be installed in Crimea. This contributes to establishing an independent power supply for Crimea and Sevastopol as a means of supporting their separation from Ukraine, and undermines the territorial integrity, sovereignty and independence of Ukraine.;113799;EN;;amendment;council;2019-09-13;2019-09-14;2019/1403 (OJ L236);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:236:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113796;EU.4112.91;;;4.8.2017;(Designation details: 4.8.2017);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;Moscow;Novyi Arbat str., 15, building 2;;119019;;;NO;WEB[www.tpe-vo.ru]\nPHONE[+7 (495) 989-97-29 ]\nEMAIL[inform@tpe-vo.ru]\n(Registration date: 8.5.2014);00;UNKNOWN;113800;EN;Registration date: 8.5.2014;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113796;EU.4112.91;;;4.8.2017;(Designation details: 4.8.2017);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7704863782e (regnumber-Registration Number) (Tax Registration Number: 7704863782e);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;113810;EN;Tax Registration Number: 7704863782e;amendment;council;2017-08-04;2017-08-04;2017/1417 (OJ L203);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1417&qid=1502198727659&from=EN;;;;;;;;;;;;; +28/10/2022;113796;EU.4112.91;;;4.8.2017;(Designation details: 4.8.2017);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1147746527279 (regnumber-Registration Number) (on 2014-05-08)(Registration date: 8.5.2014 State Registration Number: 1147746527279 Tax Registration Number: 7704863782e);NO;NO;NO;NO;NO;;2014-05-08;;;;;regnumber;Registration Number;;00;;113811;EN;Registration date: 8.5.2014 State Registration Number: 1147746527279 Tax Registration Number: 7704863782e;amendment;council;2017-08-04;2017-08-04;2017/1417 (OJ L203);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1417&qid=1502198727659&from=EN;;;;;;;;;;;;; +28/10/2022;113801;EU.4113.56;;2017-08-04;;(Date of UN designation: 2017-08-04);E;enterprise;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;CJSC ‘Interavtomatika’;;;;;113802;EN;;amendment;council;2017-08-04;2017-08-04;2017/1417 (OJ L203);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1417&qid=1502198727659&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113801;EU.4113.56;;2017-08-04;;(Date of UN designation: 2017-08-04);E;enterprise;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;ЗАО ‘Интеравтоматика’;;;;;113803;EN;;amendment;council;2017-08-04;2017-08-04;2017/1417 (OJ L203);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1417&qid=1502198727659&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113801;EU.4113.56;;2017-08-04;;(Date of UN designation: 2017-08-04);E;enterprise;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;ZAO Interavtomatika (IA);;;;;113804;EN;Company specialised in control and communication systems for power plants, which has entered into contracts for projects concerning the building of the power plants and the installation of gas turbines in Sevastopol and in Simferopol. \n\nIn process of liquidation;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113801;EU.4113.56;;2017-08-04;;(Date of UN designation: 2017-08-04);E;enterprise;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;Moscow;Avtozavodskaya st., 14;;115280;;;NO;WEB[http://ia.ru]\nEMAIL[ia.office@ia.ru]\n(Registration Date: 31.1.1994 State Registration Number: 1037739044111 Tax Registration Number: 7725056162. In process of liquidation\nLiquidator: Alexey Anatolievich Ananyev);RU;RUSSIAN FEDERATION;113805;EN;Registration Date: 31.1.1994 State Registration Number: 1037739044111 Tax Registration Number: 7725056162. In process of liquidation\nLiquidator: Alexey Anatolievich Ananyev;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113801;EU.4113.56;;2017-08-04;;(Date of UN designation: 2017-08-04);E;enterprise;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7725056162 (regnumber-Registration Number) (Tax Registration Number: 7725056162);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;113812;EN;Tax Registration Number: 7725056162;amendment;council;2017-08-04;2017-08-04;2017/1417 (OJ L203);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1417&qid=1502198727659&from=EN;;;;;;;;;;;;; +28/10/2022;113801;EU.4113.56;;2017-08-04;;(Date of UN designation: 2017-08-04);E;enterprise;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1037739044111 (regnumber-Registration Number) (on 1994-01-31)(State Registration Number: 1037739044111);NO;NO;NO;NO;NO;;1994-01-31;;;;;regnumber;Registration Number;;00;;113813;EN;State Registration Number: 1037739044111;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;113926;EU.3997.31;;2017-08-18;;"(Date of UN designation: 2017-08-18)\n(Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic.)";P;person;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;Asad;;;;;113981;EN;;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113926;EU.3997.31;;2017-08-18;;"(Date of UN designation: 2017-08-18)\n(Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic.)";P;person;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;Abu Sa’d at-Trinidadi;;;;;113982;EN;;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113926;EU.3997.31;;2017-08-18;;"(Date of UN designation: 2017-08-18)\n(Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic.)";P;person;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;Asadullah;;M;;;113983;EN;;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113926;EU.3997.31;;2017-08-18;;"(Date of UN designation: 2017-08-18)\n(Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic.)";P;person;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;Crawford;Shane;Dominic;Shane Dominic Crawford;;;;;113984;EN;;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113926;EU.3997.31;;2017-08-18;;"(Date of UN designation: 2017-08-18)\n(Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic.)";P;person;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;Wallerfield, County of St. George East;LP# 41 Ballisier Road, Smith Field Lands;;;;;NO;((alternative location as at Sep. 2011));TT;TRINIDAD AND TOBAGO;113970;EN;(alternative location as at Sep. 2011);amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113926;EU.3997.31;;2017-08-18;;"(Date of UN designation: 2017-08-18)\n(Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic.)";P;person;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;Enterprise Chaguanas;349 Dass Branch Trace, Dass Trace;;;;;NO;((from birth until 27.11.2013));TT;TRINIDAD AND TOBAGO;113971;EN;(from birth until 27.11.2013);amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113926;EU.3997.31;;2017-08-18;;"(Date of UN designation: 2017-08-18)\n(Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic.)";P;person;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;Hatay;Reyhanli;;;;;NO;((previous location from Nov. 2013 to May 2014));TR;TURKEY;113972;EN;(previous location from Nov. 2013 to May 2014);amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113926;EU.3997.31;;2017-08-18;;"(Date of UN designation: 2017-08-18)\n(Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic.)";P;person;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;((as at May 2014));SY;SYRIAN ARAB REPUBLIC;113973;EN;(as at May 2014);amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113926;EU.3997.31;;2017-08-18;;"(Date of UN designation: 2017-08-18)\n(Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic.)";P;person;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-02-22;22;2;1986;;;NO;GREGORIAN;;;;Mount Hope;TT;TRINIDAD AND TOBAGO;113974;EN;;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;113926;EU.3997.31;;2017-08-18;;"(Date of UN designation: 2017-08-18)\n(Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic.)";P;person;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19860222007 (id-National identification card) (name on doc. 'expiration date 16 Jun. 2016)') (on 2011-06-16 valid to 2016-06-16)[known to be expired];NO;YES;NO;NO;NO;;2011-06-16;;2016-06-16;;(name on doc. 'expiration date 16 Jun. 2016)');id;National identification card;;TT;;113976;EN;;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;; +28/10/2022;113926;EU.3997.31;;2017-08-18;;"(Date of UN designation: 2017-08-18)\n(Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic.)";P;person;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;T1071839 (passport-National passport) (issued by Immigration Division of Trinidad and Tobago on 2004-11-08 valid to 2014-11-07)[known to be expired];NO;YES;NO;NO;NO;Immigration Division of Trinidad and Tobago;2004-11-08;;2014-11-07;;;passport;National passport;;TT;;113977;EN;;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;; +28/10/2022;113926;EU.3997.31;;2017-08-18;;"(Date of UN designation: 2017-08-18)\n(Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic.)";P;person;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TA959547 (passport-National passport) (issued by Immigration Division of Trinidad and Tobago on 2013-11-19 valid to 2018-11-18);NO;NO;NO;NO;NO;Immigration Division of Trinidad and Tobago;2013-11-19;;2018-11-18;;;passport;National passport;;TT;;113978;EN;;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;; +28/10/2022;113926;EU.3997.31;;2017-08-18;;"(Date of UN designation: 2017-08-18)\n(Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic.)";P;person;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;892124B (drivinglicence-Driving licence) (on 2007-08-30 valid to 2010-08-30)[known to be expired];NO;YES;NO;NO;NO;;2007-08-30;;2010-08-30;;;drivinglicence;Driving licence;;TT;;113979;EN;;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;; +28/10/2022;113926;EU.3997.31;;2017-08-18;;"(Date of UN designation: 2017-08-18)\n(Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic.)";P;person;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;B394445 (birthcert-Birth certificate) (on 2007-01-23);NO;NO;NO;NO;NO;;2007-01-23;;;;;birthcert;Birth certificate;;TT;;113980;EN;;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;; +28/10/2022;113926;EU.3997.31;;2017-08-18;;"(Date of UN designation: 2017-08-18)\n(Physical description: eye colour: brown; hair colour: dark; complexion: light brown; build: medium; height: 174cm; weight: 64kg; speaks English, Arabic.)";P;person;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TT;;113975;EN;;amendment;commission;2017-08-25;2017-08-25;2017/1500 (OJ L219);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1500&from=EN +28/10/2022;114113;EU.4049.78;;;;(Date of designation: 30.11.2016);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Korea International Chemical Joint Venture Company;;;;Korea International Chemical Joint Venture Company is a subsidiary of Korea Ryonbong General Corporation — North Korea's defence conglomerate specialising in acquisition for North Korea's defence industries and support to Pyongyang's military related sales — and has engaged in proliferation-related transactions.;114114;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114113;EU.4049.78;;;;(Date of designation: 30.11.2016);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;International Chemical Joint Venture Corporation;;;;;114115;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114113;EU.4049.78;;;;(Date of designation: 30.11.2016);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Chosun International Chemicals Joint Operation Company;;;;;114116;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114113;EU.4049.78;;;;(Date of designation: 30.11.2016);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;Choson International Chemicals Joint Operation Company;;;;;114117;EN;;amendment;commission;2011-12-21;2011-12-20;1355/2011 (OJ L338);PRK;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:338:0039:0047:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114113;EU.4049.78;;;;(Date of designation: 30.11.2016);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Mangyungdae-gu, Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;114121;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114113;EU.4049.78;;;;(Date of designation: 30.11.2016);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;Man gyongdae- kuyok, Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;114122;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114113;EU.4049.78;;;;(Date of designation: 30.11.2016);E;enterprise;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;Hamhung, South Hamgyong Province;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;114123;EN;;amendment;un;2016-12-09;2016-12-09;2016/2215 (OJ L334);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32016R2215&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114259;EU.4007.47;;2017-09-11;;(Date of UN designation: 2017-09-11);E;enterprise;amendment;council;2017-09-16;2017-09-16;2017/1568 (OJ L238);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1568&from=EN;;;;CENTRAL MILITARY COMMISSION OF THE WORKERS’ PARTY OF KOREA (CMC);;;;The Central Military Commission is responsible for the development and implementation of the Workers’ Party of Korea’s military policies, commands and controls the DPRK’s military, and directs the country’s military defense industries in coordination with the State Affairs Commission.;114332;EN;;amendment;council;2017-09-16;2017-09-16;2017/1568 (OJ L238);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1568&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114259;EU.4007.47;;2017-09-11;;(Date of UN designation: 2017-09-11);E;enterprise;amendment;council;2017-09-16;2017-09-16;2017/1568 (OJ L238);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1568&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;114331;EN;;amendment;council;2017-09-16;2017-09-16;2017/1568 (OJ L238);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1568&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114262;EU.4005.20;;2017-09-11;;(Date of UN designation: 2017-09-11);E;enterprise;amendment;council;2017-09-16;2017-09-16;2017/1568 (OJ L238);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1568&from=EN;;;;ORGANIZATION AND GUIDANCE DEPARTMENT (OGD);;;;The Organization and Guidance Department is a very powerful body of the Worker’s Party of Korea. It directs key personnel appointments for the Workers’ Party of Korea, the DPRK’s military, and the DPRK’s government administration. It also purports to control the political affairs of all of the DPRK and is instrumental in implementing the DPRK’s censorship policies.;114336;EN;;amendment;council;2017-09-16;2017-09-16;2017/1568 (OJ L238);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1568&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114262;EU.4005.20;;2017-09-11;;(Date of UN designation: 2017-09-11);E;enterprise;amendment;council;2017-09-16;2017-09-16;2017/1568 (OJ L238);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1568&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;114335;EN;;amendment;council;2017-09-16;2017-09-16;2017/1568 (OJ L238);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1568&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114265;EU.4014.56;;2017-09-11;;(Date of UN designation: 2017-09-11);E;enterprise;amendment;council;2017-09-16;2017-09-16;2017/1568 (OJ L238);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1568&from=EN;;;;PROPAGANDA AND AGITATION DEPARTMENT (PAD);;;;The Propaganda and Agitation Department has full control over the media, which it uses as a tool to control the public on behalf of the DPRK leadership. The Propaganda and Agitation Department also engages in or is responsible for censorship by the Government of the DPRK, including newspaper and broadcast censorship.;114334;EN;;amendment;council;2017-09-16;2017-09-16;2017/1568 (OJ L238);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1568&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114265;EU.4014.56;;2017-09-11;;(Date of UN designation: 2017-09-11);E;enterprise;amendment;council;2017-09-16;2017-09-16;2017/1568 (OJ L238);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1568&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;114333;EN;;amendment;council;2017-09-16;2017-09-16;2017/1568 (OJ L238);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1568&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114281;EU.4171.35;;2017-09-16;;(Date of UN designation: 2017-09-16);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Kerch Commercial Port;;;;;114282;EN;;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114281;EU.4171.35;;2017-09-16;;(Date of UN designation: 2017-09-16);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Kerch Ferry;;;;;114283;EN;;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114281;EU.4171.35;;2017-09-16;;(Date of UN designation: 2017-09-16);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Feodosia Commercial Port;;;;;114284;EN;;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114281;EU.4171.35;;2017-09-16;;(Date of UN designation: 2017-09-16);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;‘Государственное унитарное предприятие Республики Крым “Крымские морские порты”’;;;;;114285;EN;including branches: — Feodosia Commercial Port, — Kerch Ferry, — Kerch Commercial Port.;amendment;council;2017-09-15;2017-09-16;2017/1549 (OJ L237);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1549&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114281;EU.4171.35;;2017-09-16;;(Date of UN designation: 2017-09-16);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;‘State Unitary Enterprise of the Crimean Republic “Crimean Sea Ports”’;;;;The ‘Parliament of Crimea’ adopted Resolution No 1757-6/14 on 17 March 2014 ‘On nationalisation of some companies belonging to the Ukrainian Ministries of Infrastructure or Agriculture’ and Resolution No 1865-6/14 on 26 March 2014 ‘On State- Owned Enterprise “Crimean Sea Ports”’ (‘О Государственном предприятии “Крымские морские порты”’) declaring the appropriation of assets belonging to several State enterprises which were merged into the ‘State Unitary Enterprise of the Crimean Republic “Crimean Sea Ports”’ on behalf of the ‘Republic of Crimea’. Those enterprises were thus effectively confiscated by the Crimean ‘authorities’ and the ‘Crimean Sea Ports’ has benefited from the illegal transfer of their ownership.;114286;EN;including branches: — Feodosia Commercial Port, — Kerch Ferry, — Kerch Commercial Port.;amendment;council;2018-03-13;2018-03-14;2018/388 (OJ L69);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0388&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114281;EU.4171.35;;2017-09-16;;(Date of UN designation: 2017-09-16);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;Kerch;28 Kirova Street;;298312;Crimea;;NO;WEB[https://crimeaports.ru]\nEMAIL[info@crimeaport.ru];00;UNKNOWN;114288;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114281;EU.4171.35;;2017-09-16;;(Date of UN designation: 2017-09-16);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;гор. Керчь, ул. Кирова, дом 28;;298312;Крым;;NO;;00;UNKNOWN;114290;EN;;amendment;council;2018-03-13;2018-03-14;2018/388 (OJ L69);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0388&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114281;EU.4171.35;;2017-09-16;;(Date of UN designation: 2017-09-16);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9111000450 (regnumber-Registration Number) (Tax registration number);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125031;EN;Tax registration number;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;114281;EU.4171.35;;2017-09-16;;(Date of UN designation: 2017-09-16);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1149102012620 (regnumber-Registration Number) (State registration number);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125032;EN;State registration number;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;114578;EU.4091.72;;;;(Date of designation: 16.10.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;KIM;JONG;SIK;JONG SIK KIM;;M;;A leading official guiding the DPRK's WMD development efforts. Serving as Deputy Director of the Workers' Party of Korea Munitions Industry Department.;114579;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114578;EU.4091.72;;;;(Date of designation: 16.10.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;Kim;Cho'ng-sik;;Cho'ng-sik Kim;;M;;;114992;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114578;EU.4091.72;;;;(Date of designation: 16.10.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;114995;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114578;EU.4091.72;;;;(Date of designation: 16.10.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;1969;NO;GREGORIAN;;;;;00;UNKNOWN;114993;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114578;EU.4091.72;;;;(Date of designation: 16.10.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;114994;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN +28/10/2022;114583;EU.4093.2;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(Date of designation: 16.10.2017);E;enterprise;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;MINISTRY OF THE PEOPLE'S ARMED FORCES (MPAF);;;;The Ministry of the People's Armed Forces manages the general administrative and logistical needs of the Korean People's Army;114584;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114583;EU.4093.2;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(Date of designation: 16.10.2017);E;enterprise;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;115061;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Korean People's Army;;;;The Korean People's Army includes the Strategic Rocket Force, which controls the DPRK's nuclear and conventional strategic missile units. The Strategic Rocket Force has been listed by the United Nations Security Council Resolution 2356 (2017).;114586;EN;;amendment;council;2017-10-16;2017-10-16;2017/1859 (OJ L265 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1859&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;조선인민군;;;;;141950;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Armée populaire coréenne;FR;;;;143004;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Λαϊκός Στρατός της Κορέας;EL;;;;143007;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Ludowe Siły Zbrojne Korei;PL;;;;143008;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Ejército Popular de Corea;ES;;;;143011;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Exército do Povo Coreano;PT;;;;143015;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Armata tal-Poplu Korean;MT;;;;143019;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Koreaans Volksleger;NL;;;;143026;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Koreanische Volksarmee;DE;;;;143027;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Esercito popolare coreano;IT;;;;143041;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Narodna armija Koreje;HR;;;;143043;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Korejska ljudska vojska;SL;;;;143045;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Kórejská ľudová armáda;SK;;;;143051;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Koreai Néphadsereg;HU;;;;143052;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Корейска народна армия;BG;;;;143055;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Armata Populară Coreeană;RO;;;;143058;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Korejská lidová armáda;CS;;;;143062;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Koreanska folkarmén;SV;;;;143063;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Korean kansanarmeija;FI;;;;143064;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Korea rahvaarmee;ET;;;;143066;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Korėjos liaudies armija;LT;;;;143067;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Korejas Tautas armija;LV;;;;143071;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114585;EU.4094.64;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Koreas Folkehær;DA;;;;143080;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114587;EU.4095.29;;2017-10-16;;(Date of UN designation: 2017-10-16);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Hyok Chan;;;;Secretary at the DPRK embassy in Angola and as representative of Green Pine, a UN listed entity;114590;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114587;EU.4095.29;;2017-10-16;;(Date of UN designation: 2017-10-16);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;김혁찬;;;;;142089;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114587;EU.4095.29;;2017-10-16;;(Date of UN designation: 2017-10-16);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-06-09;9;6;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;114588;EN;;amendment;council;2017-10-16;2017-10-16;2017/1859 (OJ L265 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1859&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114587;EU.4095.29;;2017-10-16;;(Date of UN designation: 2017-10-16);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;563410191 (passport-National passport) (Passport number: 563410191);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;114589;EN;Passport number: 563410191;amendment;council;2017-10-16;2017-10-16;2017/1859 (OJ L265 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1859&from=EN;;;;;;;;;;;;; +28/10/2022;114591;EU.4096.91;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Korea International Exhibition Corporation;;;;;114592;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114591;EU.4096.91;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;조선국제전람사;;;;;142130;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114591;EU.4096.91;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Korejska mednarodna razstavna družba;SL;;;;143046;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114591;EU.4096.91;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Korea rahvusvaheline näitusekorporatsioon;ET;;;;143081;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114591;EU.4096.91;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;Pyonyang;Jungsong-dong, Central District, Sungri St;;;;;NO;PHONE[850 2 381 5926]\nEMAIL[kiec@silibank.net.kp ];KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;142129;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Maritime Administrative Bureau;;;;;114604;EN;;amendment;council;2019-07-17;2019-07-18;2019/1207 (OJ L191);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1207&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Maritime Administration of DPR Korea;;;;;120604;EN;;amendment;council;2019-07-17;2019-07-18;2019/1207 (OJ L191);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1207&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;조선민주주의인민공화국 국가해사감독국;;;;;142132;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Bureau administratif maritime;FR;;;;143002;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Administration maritime de la RPD de Corée;FR;;;;143003;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Urząd Administracji Morskiej;PL;;;;143009;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Oficina Administrativa Marítima;ES;;;;143012;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Administración Marítima de la RPDC;ES;;;;143013;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Administração Marítima da RPD da Coreia;PT;;;;143016;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Gabinete Administrativo Marítimo;PT;;;;143017;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Pomorski upravni urad;SL;;;;143048;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;uprava za pomorstvo v DLR Koreji;SL;;;;143049;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Морска администрация на КНДР;BG;;;;143056;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Biroul Administrativ Maritim;RO;;;;143059;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Administrația maritimă a RPD Coreea;RO;;;;143060;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Jūrų administracijos biuras;LT;;;;143068;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KLDR jūrų administracija;LT;;;;143069;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;meresõidu haldusbüroo;ET;;;;143082;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114601;EU.4081.71;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;Pyongyang;Ryonhwa-2Dong, Central District;416;;;;NO;WEB[www.ma.gov.kp]\nPHONE[850-2-18111 Ex 8059]\nEMAIL[mab@silibank.net.kp]\nFAX[850 2 381 4410];KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;114602;EN;;amendment;council;2017-10-16;2017-10-16;2017/1859 (OJ L265 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1859&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114605;EU.4082.36;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Wonbang Trading Co.;;;;;114607;EN;;amendment;council;2017-10-16;2017-10-16;2017/1859 (OJ L265 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1859&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114605;EU.4082.36;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Pan Systems Pyongyang;;;;;114608;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114605;EU.4082.36;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;International Global System;;;;;124486;EN;;amendment;council;2020-07-31;2020-08-01;2020/1129 (OJ L247);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.247.01.0005.01.ENG&toc=OJ:L:2020:247:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114605;EU.4082.36;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;International Golden Services;;;;;124487;EN;;amendment;council;2020-07-31;2020-08-01;2020/1129 (OJ L247);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.247.01.0005.01.ENG&toc=OJ:L:2020:247:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114605;EU.4082.36;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Glocom;;;;;124488;EN;;amendment;council;2020-07-31;2020-08-01;2020/1129 (OJ L247);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.247.01.0005.01.ENG&toc=OJ:L:2020:247:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114605;EU.4082.36;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;Pyongyang;Room 818, Pothonggang Hotel, Ansan-Dong, Pyongchon district;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;114606;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114760;EU.4242.27;;2017-11-21;;(Date of UN designation: 2017-11-21);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Дмитрий Владимирович ОВСЯННИКОВ;;M;;;114761;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114760;EU.4242.27;;2017-11-21;;(Date of UN designation: 2017-11-21);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;OVSYANNIKOV;Dmitry;Vladimirovich;Dmitry Vladimirovich OVSYANNIKOV;;M;;Former ‘Governor of Sevastopol’ (until July 2019). Former Deputy Minister for Industry and Trade of the Russian Federation (until April 2020).;114762;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114760;EU.4242.27;;2017-11-21;;(Date of UN designation: 2017-11-21);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Dmitrij Vladimirovitj OVSIANNIKOV;SV;M;;;128365;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114760;EU.4242.27;;2017-11-21;;(Date of UN designation: 2017-11-21);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-02-21;21;2;1977;;;NO;GREGORIAN;;;;Omsk;RU;RUSSIAN FEDERATION;114763;EN;USSR (now Russian Federation);amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114826;EU.4261.63;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;CH'OE;SO’K MIN;;SO’K MIN CH'OE;;M;;Overseas Foreign Trade Bank representative. He was Deputy representative at the Foreign Trade Bank branch office in that overseas location.;114986;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114826;EU.4261.63;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-07-25;25;7;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;114984;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114826;EU.4261.63;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;114985;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN +28/10/2022;114830;EU.4262.62;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;Ju;Hyok;;Hyok Ju;;M;;;114990;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114830;EU.4262.62;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;CHU;HYO’K;;HYO’K CHU;;M;;Overseas Foreign Trade Bank representative.;114991;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114830;EU.4262.62;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-11-23;23;11;1986;;;NO;GREGORIAN;;;;;00;UNKNOWN;114987;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114830;EU.4262.62;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"836420186 (passport-National passport) (on 2016-10-28 valid to 2021-10-28)(Passport No. 836420186 issued 28 October\n2016 expires 28 October 2021;)";NO;NO;NO;NO;NO;;2016-10-28;;2021-10-28;;;passport;National passport;;00;;114989;EN;"Passport No. 836420186 issued 28 October\n2016 expires 28 October 2021;";amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;; +28/10/2022;114830;EU.4262.62;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;114988;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN +28/10/2022;114848;EU.4265.59;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;Kim;Kyo'ng-il;;Kyo'ng-il Kim;;M;;;115000;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114848;EU.4265.59;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;KIM;KYONG IL;;KYONG IL KIM;;M;;Foreign Trade Bank deputy chief representative in Libya.;115001;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114848;EU.4265.59;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;LY;LIBYA;114996;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114848;EU.4265.59;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-08-01;1;8;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;114997;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114848;EU.4265.59;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"836210029 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;114999;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;; +28/10/2022;114848;EU.4265.59;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;114998;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN +28/10/2022;114855;EU.4266.58;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Kim;Tong-ch'o'l;;Tong-ch'o'l Kim;;M;;;115004;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114855;EU.4266.58;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;KIM;Tong Chol;;Tong Chol KIM;;M;;overseas Foreign Trade Bank representative.;115005;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114855;EU.4266.58;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-01-28;28;1;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;115002;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114855;EU.4266.58;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"927234267 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KP;;143163;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;114855;EU.4266.58;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108120258 (passport-National passport) (on 2018-02-14 valid to 2023-02-14);NO;NO;NO;NO;NO;;2018-02-14;;2023-02-14;;;passport;National passport;;KP;;143164;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;114855;EU.4266.58;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;115003;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN +28/10/2022;114860;EU.4267.57;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;Ko;Ch'o'l-man;;Ch'o'l-man Ko;;M;;;115009;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114860;EU.4267.57;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;KO;CHOL MAN;;CHOL MAN KO;;M;;Overseas Foreign Trade Bank representative;115010;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114860;EU.4267.57;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-09-30;30;9;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;115006;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114860;EU.4267.57;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"472420180 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;115008;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;; +28/10/2022;114860;EU.4267.57;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;115007;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN +28/10/2022;114866;EU.4268.56;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;Ku;Cha-hyo’ng;;Cha-hyo’ng Ku;;M;;;115014;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114866;EU.4268.56;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;KU;JA HYONG;;JA HYONG KU;;M;;Foreign Trade Bank chief representative in Libya.;115015;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114866;EU.4268.56;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;LY;LIBYA;115011;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114866;EU.4268.56;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-09-08;8;9;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;115012;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114866;EU.4268.56;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;115013;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN +28/10/2022;114872;EU.4269.55;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;Mun;Kyo'ng-hwan;;Kyo'ng-hwan Mun;;M;;;115019;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114872;EU.4269.55;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;MUN;KYONG HWAN;;KYONG HWAN MUN;;M;;Overseas Bank of East Land representative.;115020;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114872;EU.4269.55;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-08-22;22;8;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;115016;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114872;EU.4269.55;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381120660 (passport-National passport) (valid to 2016-03-25);NO;NO;NO;NO;NO;;;;2016-03-25;;;passport;National passport;;00;;115018;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;; +28/10/2022;114872;EU.4269.55;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;115017;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN +28/10/2022;114878;EU.4270.33;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;Pae;Wo'n-uk;;Wo'n-uk Pae;;M;;;115024;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114878;EU.4270.33;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;PAE;WON UK;;WON UK PAE;;M;;Overseas Daesong Bank representative;115025;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114878;EU.4270.33;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-08-22;22;8;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;115021;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114878;EU.4270.33;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;472120208 (passport-National passport) (valid to 2017-02-22);NO;NO;NO;NO;NO;;;;2017-02-22;;;passport;National passport;;00;;115023;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;; +28/10/2022;114878;EU.4270.33;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;115022;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN +28/10/2022;114884;EU.4271.32;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;Pak;Pong-nam;;Pong-nam Pak;;M;;;115028;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114884;EU.4271.32;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;Pak;Pong Nam;;Pong Nam Pak;;M;;;115029;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114884;EU.4271.32;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;Lui;Wai Ming;;Wai Ming Lui;;M;;;115030;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114884;EU.4271.32;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;PAK;BONG NAM;;BONG NAM PAK;;M;;Overseas Ilsim International Bank representative.;115031;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114884;EU.4271.32;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-05-06;6;5;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;115026;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114884;EU.4271.32;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;115027;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN +28/10/2022;114898;EU.4273.30;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;Pak;Mun-il;;Mun-il Pak;;M;;;115035;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114898;EU.4273.30;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;PAK;MUN IL;;MUN IL PAK;;M;;Overseas official of Korea Daesong Bank;115036;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114898;EU.4273.30;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-01-01;1;1;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;115032;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114898;EU.4273.30;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;563335509 (passport-National passport) (valid to 2018-08-27);NO;NO;NO;NO;NO;;;;2018-08-27;;;passport;National passport;;00;;115034;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;; +28/10/2022;114898;EU.4273.30;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;115033;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN +28/10/2022;114913;EU.4275.28;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;Ri;Ch'un-hwan;;Ch'un-hwan Ri;;M;;;115040;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114913;EU.4275.28;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;RI;CHUN HWAN;;CHUN HWAN RI;;M;;Overseas Foreign Trade Bank representative.;115041;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114913;EU.4275.28;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-08-21;21;8;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;115037;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114913;EU.4275.28;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;563233049 (passport-National passport) (valid to 2018-05-09);NO;NO;NO;NO;NO;;;;2018-05-09;;;passport;National passport;;00;;115039;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;; +28/10/2022;114913;EU.4275.28;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;115038;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN +28/10/2022;114925;EU.4277.26;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;Ri;Ch’un-so’ng;;Ch’un-so’ng Ri;;M;;;115045;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114925;EU.4277.26;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;RI;CHUN SONG;;CHUN SONG RI;;M;;Overseas Foreign Trade Bank representative;115046;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114925;EU.4277.26;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-10-30;30;10;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;115042;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114925;EU.4277.26;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;654133553 (passport-National passport) (valid to 2019-03-11);NO;NO;NO;NO;NO;;;;2019-03-11;;;passport;National passport;;00;;115044;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;; +28/10/2022;114925;EU.4277.26;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;115043;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN +28/10/2022;114931;EU.4278.25;;2021-08-07;;(Date of UN designation: 2021-08-07)\n(UNLI-22.12.2017);P;person;amendment;council;2021-08-06;2021-08-07;2021/1300 (OJ L283);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;Ri;Pyo’ng-ch’o’l;;Pyo’ng-ch’o’l Ri;;M;;;115050;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114931;EU.4278.25;;2021-08-07;;(Date of UN designation: 2021-08-07)\n(UNLI-22.12.2017);P;person;amendment;council;2021-08-06;2021-08-07;2021/1300 (OJ L283);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;Ri Pyong Chul;;M;;Alternate Member of the Political Bureau of the Workers’ Party of Korea and First Vice Director of the Munitions Industry Department.;115051;EN;;amendment;council;2021-08-06;2021-08-07;2021/1300 (OJ L283);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114931;EU.4278.25;;2021-08-07;;(Date of UN designation: 2021-08-07)\n(UNLI-22.12.2017);P;person;amendment;council;2021-08-06;2021-08-07;2021/1300 (OJ L283);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;Ri Pyong Chol;;M;;;131166;EN;;amendment;council;2021-08-06;2021-08-07;2021/1300 (OJ L283);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114931;EU.4278.25;;2021-08-07;;(Date of UN designation: 2021-08-07)\n(UNLI-22.12.2017);P;person;amendment;council;2021-08-06;2021-08-07;2021/1300 (OJ L283);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;115047;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114931;EU.4278.25;;2021-08-07;;(Date of UN designation: 2021-08-07)\n(UNLI-22.12.2017);P;person;amendment;council;2021-08-06;2021-08-07;2021/1300 (OJ L283);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948;;;NO;GREGORIAN;;;;;00;UNKNOWN;115048;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114931;EU.4278.25;;2021-08-07;;(Date of UN designation: 2021-08-07)\n(UNLI-22.12.2017);P;person;amendment;council;2021-08-06;2021-08-07;2021/1300 (OJ L283);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.283.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A283%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;115049;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN +28/10/2022;114937;EU.4279.24;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Li;Cheng He;;Cheng He Li;;M;;;115054;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114937;EU.4279.24;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;RI;Song Hyok;;Song Hyok RI;;M;;Overseas representative for Koryo Bank and Koryo Credit Development Bank;115055;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114937;EU.4279.24;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-03-19;19;3;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;115052;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114937;EU.4279.24;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"654234735 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;KP;;143165;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;114937;EU.4279.24;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;115053;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN +28/10/2022;114942;EU.4280.2;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;Ri;Un Song;;Un Song Ri;;M;;;115058;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114942;EU.4280.2;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;Ri;Eun Song;;Eun Song Ri;;M;;;115059;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114942;EU.4280.2;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;RI;U’N SO’NG;;U’N SO’NG RI;;M;;Overseas Korea Unification Development Bank representative.;115060;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114942;EU.4280.2;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-07-23;23;7;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;115056;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;114942;EU.4280.2;;2017-12-22;;(Date of UN designation: 2017-12-22)\n(UNLI-22.12.2017);P;person;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;115057;EN;;amendment;council;2018-01-09;2018-01-09;2018/12 (OJ L4);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0012&from=EN +28/10/2022;115137;EU.4281.1;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;CHOE Chan Il;;;;Director of the Dandong office of Korea Heungjin Trading Company, a UN designated entity.;115138;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115137;EU.4281.1;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;촤찬일;;;;;142090;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115139;EU.4282.0;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Chol Nam;;;;Director of the Dandong branch of Sobaeksu United Corp which has been designated by the Union. Representative of the Beijing branch of Korea Changgwang Trading Corporation.;115140;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115139;EU.4282.0;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;김철남;;;;;142091;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115141;EU.4283.96;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;JON Chol Young;;;Diplomat DPRK Embassy, Angola;Former representative in Angola of Green Pine Associated Corporation and DPRK diplomat accredited to Angola.;115142;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115141;EU.4283.96;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;JON Chol Yong;;;;;117818;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115141;EU.4283.96;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;전철영;;;;;142092;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115141;EU.4283.96;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-04-30;30;4;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;115143;EN;;amendment;council;2018-01-22;2018-01-22;2018/87 (OJ L16 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0087&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115141;EU.4283.96;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"563410192 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;115144;EN;;amendment;council;2018-01-22;2018-01-22;2018/87 (OJ L16 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0087&from=EN;;;;;;;;;;;;; +28/10/2022;115145;EU.4284.95;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;An Jong Hyok;;;;;115148;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115145;EU.4284.95;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;AN Jong Hyuk;;;Diplomat DPRK Embassy Egypt;Representative of Saeng Pil Trading Corporation, an alias of Green Pine Associated Corporation, and DPRK diplomat in Egypt.;115149;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115145;EU.4284.95;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;안종혁;;;;;142093;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115145;EU.4284.95;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;안정혁;;;;;142094;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115145;EU.4284.95;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-03-14;14;3;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;115146;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115145;EU.4284.95;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"563410155 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;115147;EN;;repealing;council;2017-08-31;2017-09-01;2017/1509 (OJ L224);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1509&from=EN;;;;;;;;;;;;; +28/10/2022;115150;EU.4285.94;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;YUN Chol;;;;identified by the UN Panel of Experts as contact person of the DPRK Company General Precious Metal involved in the sale of lithium-6, a UN prohibited nuclear-related item, and DPRK diplomat;115151;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115150;EU.4285.94;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;CHOL Yun;;;;;131170;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115150;EU.4285.94;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;윤철;;;;;142095;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115152;EU.4286.93;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;CHOE Kwang Hyok;;;;"a representative of Green Pine Associated Corporation, a UN designated entity; identified by the UN Panel of Experts as chief executive of Beijing King Helong International Trading Ltd, an alias of Green Pine; identified by the UN Panel of Experts as director of Hong Kong King Helong Int'l Trading Ltd and operator of the DPRK entity named Beijing representative office of Korea Unhasu Trading Company, which are also aliases of Green Pine";115153;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115152;EU.4286.93;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;최광혁;;;;;142096;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115154;EU.4287.92;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Chang Hyok;;;;identified by the UN Panel of Experts as the representative of Pan Systems Pyongyang in Malaysia;115155;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115154;EU.4287.92;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;James Kim;;;;;115158;EN;;amendment;council;2018-01-22;2018-01-22;2018/87 (OJ L16 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0087&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115154;EU.4287.92;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;김창혁;;;;;142098;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115154;EU.4287.92;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-04-29;29;4;1963;;;NO;GREGORIAN;;;N. Hamgyong;;00;UNKNOWN;115157;EN;;amendment;council;2018-01-22;2018-01-22;2018/87 (OJ L16 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0087&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115154;EU.4287.92;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"472130058 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;115156;EN;;amendment;council;2018-01-22;2018-01-22;2018/87 (OJ L16 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0087&from=EN;;;;;;;;;;;;; +28/10/2022;115162;EU.4288.91;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;PARK Young Han;;;;Director of Beijing New Technology which has been identified by the UN Panel of Experts as a front company of KOMID.\nLegal representative of Guancaiweixing Trading Co., Ltd;115163;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115162;EU.4288.91;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;박영한;;;;;142097;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115164;EU.4289.90;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;RYANG Su Nyo;;;;Director of Pan Systems Pyongyang.;115166;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115164;EU.4289.90;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;량수니오;;;;;142099;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115164;EU.4289.90;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-08-11;11;8;1959;;;NO;GREGORIAN;;;;;JP;JAPAN;115165;EN;;amendment;council;2018-01-22;2018-01-22;2018/87 (OJ L16 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0087&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115167;EU.4290.68;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;PYON Won Gun;;;;"Director of Glocom, a front company of Pan Systems Pyongyang; identified by the UN Panel of Experts as a DPRK national operating Pan Systems Pyongyang.";115171;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115167;EU.4290.68;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;변원군;;;;;142100;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115167;EU.4290.68;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-03-13;13;3;1968;;;NO;GREGORIAN;;;S. Phyongan;;00;UNKNOWN;115168;EN;;amendment;council;2018-01-22;2018-01-22;2018/87 (OJ L16 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0087&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115167;EU.4290.68;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;836220035 (other-Other identification number) (Service passport number: 836220035);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;115169;EN;Service passport number: 836220035;amendment;council;2018-01-22;2018-01-22;2018/87 (OJ L16 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0087&from=EN;;;;;;;;;;;;; +28/10/2022;115167;EU.4290.68;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"290220142 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;115170;EN;;amendment;council;2018-01-22;2018-01-22;2018/87 (OJ L16 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0087&from=EN;;;;;;;;;;;;; +28/10/2022;115172;EU.4291.67;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;PAE Won Chol;;;;DPRK national operating Pan Systems Pyongyang.;115175;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115172;EU.4291.67;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;배원철;;;;;141955;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115172;EU.4291.67;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-08-30;30;8;1969;;;NO;GREGORIAN;;;Pyongyang;;00;UNKNOWN;115173;EN;;amendment;council;2018-01-22;2018-01-22;2018/87 (OJ L16 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0087&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115172;EU.4291.67;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;654310150 (passport-National passport) (diplomatic)(Diplomatic Passport number: 654310150);YES;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;115174;EN;Diplomatic Passport number: 654310150;amendment;council;2018-01-22;2018-01-22;2018/87 (OJ L16 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0087&from=EN;;;;;;;;;;;;; +28/10/2022;115176;EU.4292.66;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;RI Sin Song;;;;DPRK national operating Pan Systems Pyongyang.;115177;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115176;EU.4292.66;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;리신송;;;;;141956;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115178;EU.4293.65;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Sung Su;;;;Representative of Pan Systems Pyongyang in China.;115179;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115178;EU.4293.65;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;김성수;;;;;141957;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115180;EU.4294.64;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Pyong Chol;;;;DPRK national operating Pan Systems Pyongyang.;115181;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115180;EU.4294.64;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;김병철;;;;;141958;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115182;EU.4295.63;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;CHOE Kwang Su;;;;Representative of Haegeumgang Trading Company;115185;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115182;EU.4295.63;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;최광수;;;;;141959;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115182;EU.4295.63;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-04-20;20;4;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;115183;EN;;amendment;council;2018-01-22;2018-01-22;2018/87 (OJ L16 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0087&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115182;EU.4295.63;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381210143 (passport-National passport) (valid to 2016-06-03)[known to be expired](Passport number: 381210143 (expiration date: 3.6.2016));NO;YES;NO;NO;NO;;;;2016-06-03;;;passport;National passport;;00;;115184;EN;Passport number: 381210143 (expiration date: 3.6.2016);amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;; +28/10/2022;115186;EU.4296.62;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Daniel Pak;;;;;115189;EN;;amendment;council;2018-01-22;2018-01-22;2018/87 (OJ L16 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0087&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115186;EU.4296.62;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;PAK In Su;;;;;115190;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115186;EU.4296.62;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;박인수;;;;;142120;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115186;EU.4296.62;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-05-22;22;5;1957;;;NO;GREGORIAN;;;N. Hamgyong;;00;UNKNOWN;115187;EN;;amendment;council;2018-01-22;2018-01-22;2018/87 (OJ L16 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0087&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115186;EU.4296.62;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290221242 (passport-National passport) (diplomatic)(Diplomatic passport number: 290221242);YES;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;115188;EN;Diplomatic passport number: 290221242;amendment;council;2018-01-22;2018-01-22;2018/87 (OJ L16 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0087&from=EN;;;;;;;;;;;;; +28/10/2022;115191;EU.4297.61;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;SON Young-Nam;;;;;115192;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115191;EU.4297.61;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;손영남;;;;;142121;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115216;EU.4298.60;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Néstor Luis REVEROL TORRES;;M;;Minister for Electrical Energy since October 2020, Vice-President of Public Works and Services and Executive Secretary of the Electrical General Staff since April 2019. Minister for Interior, Justice and Peace from 2016 until October 2020. General in Chief of the Bolivarian National Guard since August 2020.;115218;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115216;EU.4298.60;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-10-28;28;10;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;115217;EN;;amendment;council;2018-01-22;2018-01-22;2018/88 (OJ L16 I);VEN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0088&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115219;EU.4299.59;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Gustavo Enrique GONZÁLEZ LÓPEZ;;M;;Reappointed as Head of the Bolivarian National Intelligence Service (SEBIN) on 30 April 2019. Formerly Security and Intelligence Adviser for the President's office from 8 January 2019 to 30 April 2019 and Head of SEBIN until October 2018.;115221;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115219;EU.4299.59;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-11-02;2;11;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;115220;EN;;amendment;council;2018-01-22;2018-01-22;2018/88 (OJ L16 I);VEN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0088&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115222;EU.4300.65;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Tibisay LUCENA RAMÍREZ;;F;;President of the National Electoral Council (Consejo Nacional Electoral (CNE)) from April 2006 until June 2020.;115224;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115222;EU.4300.65;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-04-26;26;4;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;115223;EN;;amendment;council;2018-01-22;2018-01-22;2018/88 (OJ L16 I);VEN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0088&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115225;EU.4301.64;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Antonio José BENAVIDES TORRES;;M;;Member of the non-democratically elected \nNational Assembly. Chief of the Capital \nDistrict (Distrito Capital) Government \nuntil January 2018. General Commander of \nthe Bolivarian National Guard until 21 \nJune 2017.;115227;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115225;EU.4301.64;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-06-13;13;6;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;115226;EN;;amendment;council;2018-01-22;2018-01-22;2018/88 (OJ L16 I);VEN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0088&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115228;EU.4302.63;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Maikel José MORENO PÉREZ;;M;;President, and former Vice President, of the Supreme Court of Justice of Venezuela (Tribunal Supremo de Justicia).;115230;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115228;EU.4302.63;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-12-12;12;12;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;115229;EN;;amendment;council;2018-01-22;2018-01-22;2018/88 (OJ L16 I);VEN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0088&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115231;EU.4303.62;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Tarek William SAAB HALABI;;M;;Venezuelan Attorney General appointed by the Constituent Assembly.;115232;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115231;EU.4303.62;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-09-10;10;9;1963;;;NO;GREGORIAN;;;El Tigre, Anzoátegui state;;VE;VENEZUELA;115233;EN;;amendment;council;2019-11-12;2019-11-13;2019/1891 (OJ L291);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1891&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115234;EU.4304.61;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Diosdado CABELLO RONDÓN;;M;;Member of the non-democratically elected National Assembly, former President of the Constituent Assembly and First Vice-President of the United Socialist Party of Venezuela (PSUV).;115236;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115234;EU.4304.61;;2018-01-22;;(Date of UN designation: 2018-01-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-04-15;15;4;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;115235;EN;;amendment;council;2018-01-22;2018-01-22;2018/88 (OJ L16 I);VEN;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0088&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115291;EU.4322.1;;2018-02-03;;(Date of UN designation: 2018-02-03);P;person;amendment;council;2022-05-17;2022-05-18;2022/748 (OJ L138);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.138.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A138%3ATOC;;;;Michael MAKUEI LUETH;;M;;Minister for Information and Broadcasting since 2013. He was also the public spokesman for the government delegation to the Intergovernmental Authority on Development peace talks from 2014 to 2015 and from 2016 to 2018.;115294;EN;;amendment;council;2022-05-17;2022-05-18;2022/748 (OJ L138);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.138.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A138%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115291;EU.4322.1;;2018-02-03;;(Date of UN designation: 2018-02-03);P;person;amendment;council;2022-05-17;2022-05-18;2022/748 (OJ L138);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.138.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A138%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947;;;NO;GREGORIAN;;;Bor;;SS;SOUTH SUDAN;115292;EN;Bor, South Sudan;amendment;council;2018-02-03;2018-02-03;2018/164 (OJ L 31);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0164&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115291;EU.4322.1;;2018-02-03;;(Date of UN designation: 2018-02-03);P;person;amendment;council;2022-05-17;2022-05-18;2022/748 (OJ L138);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.138.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A138%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947;;;NO;GREGORIAN;;;Bor;;SD;SUDAN;115293;EN;Bor, Sudan;amendment;council;2018-02-03;2018-02-03;2018/164 (OJ L 31);SSD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0164&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115304;EU.4324.96;;2018-02-01;;(Date of UN designation: 2018-02-01)\n(UNLI-01.02.2018);P;person;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;Mwissa;Guidon;Shimiray;Guidon Shimiray Mwissa;;;;He participated in the creation of the NDC in 2008, becoming the deputy commander in charge of the Aigle Lemabé Brigade.;115367;EN;;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115304;EU.4324.96;;2018-02-01;;(Date of UN designation: 2018-02-01)\n(UNLI-01.02.2018);P;person;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-03-13;13;3;1980;;;NO;GREGORIAN;;;Walikale;Kigoma;CD;CONGO, Democratic Republic of (was Zaire);115366;EN;Kigoma, Walikale, Democratic Republic of the Congo;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115307;EU.4325.95;;2018-02-01;;(Date of UN designation: 2018-02-01)\n(UNLI-01.02.2018);P;person;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;Kalume;André;;André Kalume;;;;;115370;EN;;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115307;EU.4325.95;;2018-02-01;;(Date of UN designation: 2018-02-01)\n(UNLI-01.02.2018);P;person;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;Nzambamwita;Lucien;;Lucien Nzambamwita;;;;He is a military leader of the Force Democratique de Liberation du Rwanda (FDLR) operating in the DRC.;115371;EN;;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115307;EU.4325.95;;2018-02-01;;(Date of UN designation: 2018-02-01)\n(UNLI-01.02.2018);P;person;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;NO;GREGORIAN;;;Prefecture Byumba;Cellule Nyagitabire, Sector Ruvune, Commune Kinyami;RW;RWANDA;115368;EN;Cellule Nyagitabire, Sector Ruvune, Commune Kinyami, Prefecture Byumba, Rwanda;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115307;EU.4325.95;;2018-02-01;;(Date of UN designation: 2018-02-01)\n(UNLI-01.02.2018);P;person;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RW;;115369;EN;;amendment;council;2018-02-10;2018-02-10;2018/197 (OJ L38);COD;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0197&from=EN +28/10/2022;115485;EU.4343.35;;;date of listing: 26.2.2018;(Designation details: date of listing: 26.2.2018);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohamed Mazen Ali YOUSEF;;M;;Former Minister of Industry. Appointed in January 2018.;115486;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115485;EU.4343.35;;;date of listing: 26.2.2018;(Designation details: date of listing: 26.2.2018);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;محمد مازن علي يوسف;AR;M;;;124820;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115485;EU.4343.35;;;date of listing: 26.2.2018;(Designation details: date of listing: 26.2.2018);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-05-17;17;5;1969;;;NO;GREGORIAN;;;Damascus countryside;;SY;SYRIAN ARAB REPUBLIC;115487;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115488;EU.4344.34;;2018-02-26;;(Date of UN designation: 2018-02-26);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Imad Abdullah SARA;;M;;Former Minister of \nInformation. Appointed in \nJanuary 2018.;115490;EN;;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115488;EU.4344.34;;2018-02-26;;(Date of UN designation: 2018-02-26);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;عماد عبدالله سارة;AR;M;;;124821;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115488;EU.4344.34;;2018-02-26;;(Date of UN designation: 2018-02-26);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;115489;EN;;amendment;council;2018-02-26;2018-02-26;2018/282 (OJ L54 I);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0282&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115699;EU.4381.10;QDi.411;2018-03-06;;(UN ID: QDi.411)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;Al-Shaklar;Hajji;Salim;Hajji Salim Al-Shaklar;;;;;115783;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115699;EU.4381.10;QDi.411;2018-03-06;;(UN ID: QDi.411)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;Salim Mansur;;;;;115784;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115699;EU.4381.10;QDi.411;2018-03-06;;(UN ID: QDi.411)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;Salim Mansur Mustafa;;;;;115785;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115699;EU.4381.10;QDi.411;2018-03-06;;(UN ID: QDi.411)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;Al-Ifri;Saleem;;Saleem Al-Ifri;;;;;115786;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115699;EU.4381.10;QDi.411;2018-03-06;;(UN ID: QDi.411)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;Al-Ifri;Salim;Mustafa Muhammad Mansur;Salim Mustafa Muhammad Mansur Al-Ifri;;;;;115787;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115699;EU.4381.10;QDi.411;2018-03-06;;(UN ID: QDi.411)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;AL-MANSUR;SALIM;MUSTAFA MUHAMMAD;SALIM MUSTAFA MUHAMMAD AL-MANSUR;;;;Finance “emir” for Islamic State in Iraq and the Levant;115788;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115699;EU.4381.10;QDi.411;2018-03-06;;(UN ID: QDi.411)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;Tel Afar – Al-Saad, Mosul;;;;;;NO;(Tel Afar – Al-Saad, Mosul, Iraq (previous address));IQ;IRAQ;115775;EN;Tel Afar – Al-Saad, Mosul, Iraq (previous address);amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115699;EU.4381.10;QDi.411;2018-03-06;;(UN ID: QDi.411)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;Mosul;17 Tamoz;;;;;NO;(a) 17 Tamoz, Mosul, Iraq (previous address));IQ;IRAQ;115776;EN;a) 17 Tamoz, Mosul, Iraq (previous address);amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115699;EU.4381.10;QDi.411;2018-03-06;;(UN ID: QDi.411)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959;;;NO;GREGORIAN;;;Nineveh Province;Tel Afar;IQ;IRAQ;115777;EN;Tel Afar, Nineveh Province, Iraq;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115699;EU.4381.10;QDi.411;2018-03-06;;(UN ID: QDi.411)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-02-20;20;2;1962;;;NO;GREGORIAN;;;;Baghdad;IQ;IRAQ;115778;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115699;EU.4381.10;QDi.411;2018-03-06;;(UN ID: QDi.411)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300397 (nationcert-Nationality certificate) (on 2013-06-25)(Iraq Certificate of Iraqi Nationality 300397, issued on 25 Jun. 2013);NO;NO;NO;NO;NO;;2013-06-25;;;;;nationcert;Nationality certificate;;IQ;;115780;EN;Iraq Certificate of Iraqi Nationality 300397, issued on 25 Jun. 2013;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;; +28/10/2022;115699;EU.4381.10;QDi.411;2018-03-06;;(UN ID: QDi.411)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;00813602 (id-National identification card) (on 2011-09-18)(Iraq national identification card 00813602, issued on 18 Sep. 2011);NO;NO;NO;NO;NO;;2011-09-18;;;;;id;National identification card;;IQ;;115781;EN;Iraq national identification card 00813602, issued on 18 Sep. 2011;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;; +28/10/2022;115699;EU.4381.10;QDi.411;2018-03-06;;(UN ID: QDi.411)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A6489694 (passport-National passport) (on 2013-09-02 valid to 2021-08-31)(Passport no: Iraq number A6489694, issued on 2 Sep. 2013 (expires on 31 Aug. 2021);NO;NO;NO;NO;NO;;2013-09-02;;2021-08-31;;;passport;National passport;;IQ;;115782;EN;Passport no: Iraq number A6489694, issued on 2 Sep. 2013 (expires on 31 Aug. 2021;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;; +28/10/2022;115699;EU.4381.10;QDi.411;2018-03-06;;(UN ID: QDi.411)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;115779;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN +28/10/2022;115714;EU.4382.9;QDi.412;2018-03-06;;(UN ID: QDi.412)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;al-Kubaysi;Umar;;Umar al-Kubaysi;;;;;115796;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115714;EU.4382.9;QDi.412;2018-03-06;;(UN ID: QDi.412)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;Omar Mahmood Irhayyim Al-Fayyadh Al-Kobaisi;;;;;115797;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115714;EU.4382.9;QDi.412;2018-03-06;;(UN ID: QDi.412)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;Irhayyim;Omar;Mahmood;Omar Mahmood Irhayyim;;;;;115798;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115714;EU.4382.9;QDi.412;2018-03-06;;(UN ID: QDi.412)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;Arhaym;Umar;Mahmud;Umar Mahmud Arhaym;;;;;115799;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115714;EU.4382.9;QDi.412;2018-03-06;;(UN ID: QDi.412)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;Arhaym;Umar;Mahmud Al-Kubaysi;Umar Mahmud Al-Kubaysi Arhaym;;;;;115800;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115714;EU.4382.9;QDi.412;2018-03-06;;(UN ID: QDi.412)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;Al-Qubaysi;Umar;Mahmud Rahim;Umar Mahmud Rahim Al-Qubaysi;;;;;115801;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115714;EU.4382.9;QDi.412;2018-03-06;;(UN ID: QDi.412)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;Umar Mahmud Rahim;;;;;115802;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115714;EU.4382.9;QDi.412;2018-03-06;;(UN ID: QDi.412)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;Al-Fayyadh;Omar;Mahmood Irhayyim;Omar Mahmood Irhayyim Al-Fayyadh;;;;;115803;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115714;EU.4382.9;QDi.412;2018-03-06;;(UN ID: QDi.412)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;al-Kubaysi;Umar;Mahmud Rahim;Umar Mahmud Rahim al-Kubaysi;;;;;115804;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115714;EU.4382.9;QDi.412;2018-03-06;;(UN ID: QDi.412)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;AL-KUBAYSI;UMAR;MAHMUD IRHAYYIM;UMAR MAHMUD IRHAYYIM AL-KUBAYSI;;;;Financial facilitator for Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115). Director of Al-Kawthar Money Exchange (QDe.157).;115805;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115714;EU.4382.9;QDi.412;2018-03-06;;(UN ID: QDi.412)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;Al-Qaim;;;;;Al-Anbar Province;NO;(Al-Qaim, Al-Anbar Province, Iraq);IQ;IRAQ;115789;EN;Al-Qaim, Al-Anbar Province, Iraq;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115714;EU.4382.9;QDi.412;2018-03-06;;(UN ID: QDi.412)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-01-01;1;1;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;115790;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115714;EU.4382.9;QDi.412;2018-03-06;;(UN ID: QDi.412)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-06-16;16;6;1967;;;NO;GREGORIAN;;;Al-Anbar Province;Al-Qaim;IQ;IRAQ;115791;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115714;EU.4382.9;QDi.412;2018-03-06;;(UN ID: QDi.412)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540763 (nationcert-Nationality certificate) (on 1984-02-13)(Iraq Certificate of Iraqi Nationality 540763, issued on 13 Feb. 1984);NO;NO;NO;NO;NO;;1984-02-13;;;;;nationcert;Nationality certificate;;IQ;;115793;EN;Iraq Certificate of Iraqi Nationality 540763, issued on 13 Feb. 1984;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;; +28/10/2022;115714;EU.4382.9;QDi.412;2018-03-06;;(UN ID: QDi.412)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;00405771 (id-National identification card) (on 2013-05-20)(Iraq national identification card 00405771, issued on 20 May 2013, issued in Iraq);NO;NO;NO;NO;NO;;2013-05-20;;;;;id;National identification card;;IQ;;115794;EN;Iraq national identification card 00405771, issued on 20 May 2013, issued in Iraq;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;; +28/10/2022;115714;EU.4382.9;QDi.412;2018-03-06;;(UN ID: QDi.412)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A4059346 (passport-National passport) (on 2013-05-29 valid to 2021-05-27)(Iraq number A4059346, issued on 29 May 2013, issued in Baghdad, Iraq (expires on 27 May 2021));NO;NO;NO;NO;NO;;2013-05-29;;2021-05-27;;;passport;National passport;;IQ;;115795;EN;Iraq number A4059346, issued on 29 May 2013, issued in Baghdad, Iraq (expires on 27 May 2021);amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;; +28/10/2022;115714;EU.4382.9;QDi.412;2018-03-06;;(UN ID: QDi.412)\n(Date of UN designation: 2018-03-06)\n(UNLI-06.03.2018);P;person;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;115792;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN +28/10/2022;115730;EU.4383.8;QDe.157;2018-03-06;;(UN ID: QDe.157)\n(Date of UN designation: 2018-03-06)\n(Money exchange business and owned by Umar Mahmud Irhayyim al-Kubaysi (QDi.412) as of mid-2016.\nUNLI-06.03.2018);E;enterprise;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;Al-Kawthar Hawala;;;;;115808;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115730;EU.4383.8;QDe.157;2018-03-06;;(UN ID: QDe.157)\n(Date of UN designation: 2018-03-06)\n(Money exchange business and owned by Umar Mahmud Irhayyim al-Kubaysi (QDi.412) as of mid-2016.\nUNLI-06.03.2018);E;enterprise;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;Al Kawthar Company;;;;;115809;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115730;EU.4383.8;QDe.157;2018-03-06;;(UN ID: QDe.157)\n(Date of UN designation: 2018-03-06)\n(Money exchange business and owned by Umar Mahmud Irhayyim al-Kubaysi (QDi.412) as of mid-2016.\nUNLI-06.03.2018);E;enterprise;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;Al Kawthar Co.;;;;;115810;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115730;EU.4383.8;QDe.157;2018-03-06;;(UN ID: QDe.157)\n(Date of UN designation: 2018-03-06)\n(Money exchange business and owned by Umar Mahmud Irhayyim al-Kubaysi (QDi.412) as of mid-2016.\nUNLI-06.03.2018);E;enterprise;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;AL-KAWTHAR MONEY EXCHANGE;;;;Facilitated financial transactions on behalf of companies associated with Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq (QDe.115). Established in 2000 under License number 202, issued on 17 May 2000, and since withdrawn.;115811;EN;;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115730;EU.4383.8;QDe.157;2018-03-06;;(UN ID: QDe.157)\n(Date of UN designation: 2018-03-06)\n(Money exchange business and owned by Umar Mahmud Irhayyim al-Kubaysi (QDi.412) as of mid-2016.\nUNLI-06.03.2018);E;enterprise;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;Al-Qaim;;;;;Al Anbar Province;NO;(Al-Qaim, Al Anbar Province, Iraq);IQ;IRAQ;115806;EN;Al-Qaim, Al Anbar Province, Iraq;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115730;EU.4383.8;QDe.157;2018-03-06;;(UN ID: QDe.157)\n(Date of UN designation: 2018-03-06)\n(Money exchange business and owned by Umar Mahmud Irhayyim al-Kubaysi (QDi.412) as of mid-2016.\nUNLI-06.03.2018);E;enterprise;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202 (other-Other identification number) (on 2000-05-17)(Established in 2000 under License number 202, issued on 17 May 2000, and since withdrawn.);NO;NO;NO;NO;NO;;2000-05-17;;;;;other;Other identification number;;00;;115807;EN;Established in 2000 under License number 202, issued on 17 May 2000, and since withdrawn.;amendment;commission;2018-03-09;2018-03-09;2018/349 (OJ L67);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0349&from=EN;;;;;;;;;;;;; +28/10/2022;115820;EU.4385.6;SOi.016;2018-03-08;;(UN ID: SOi.016)\n(Date of UN designation: 2018-03-08)\n(UNLI-08.03.2018);P;person;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;Ali;Ahmad;Iman;Ahmad Iman Ali;;;;Kenyan Al-Shabaab commander;115928;EN;;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115820;EU.4385.6;SOi.016;2018-03-08;;(UN ID: SOi.016)\n(Date of UN designation: 2018-03-08)\n(UNLI-08.03.2018);P;person;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;Abu Zinira;;;;;115929;EN;;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115820;EU.4385.6;SOi.016;2018-03-08;;(UN ID: SOi.016)\n(Date of UN designation: 2018-03-08)\n(UNLI-08.03.2018);P;person;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;Ali;Ahmed;Iman;Ahmed Iman Ali;;;;;115930;EN;;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115820;EU.4385.6;SOi.016;2018-03-08;;(UN ID: SOi.016)\n(Date of UN designation: 2018-03-08)\n(UNLI-08.03.2018);P;person;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;Ali;Shaykh;Ahmad Iman;Shaykh Ahmad Iman Ali;;;;;115931;EN;;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115820;EU.4385.6;SOi.016;2018-03-08;;(UN ID: SOi.016)\n(Date of UN designation: 2018-03-08)\n(UNLI-08.03.2018);P;person;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;Ali;Sheikh;Ahmed Iman;Sheikh Ahmed Iman Ali;;;;;115932;EN;;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115820;EU.4385.6;SOi.016;2018-03-08;;(UN ID: SOi.016)\n(Date of UN designation: 2018-03-08)\n(UNLI-08.03.2018);P;person;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974;;;YES;GREGORIAN;;;;;00;UNKNOWN;115925;EN;Approximately 1974;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115820;EU.4385.6;SOi.016;2018-03-08;;(UN ID: SOi.016)\n(Date of UN designation: 2018-03-08)\n(UNLI-08.03.2018);P;person;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;YES;GREGORIAN;;;;;KE;KENYA;115926;EN;Approximately 1973;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115820;EU.4385.6;SOi.016;2018-03-08;;(UN ID: SOi.016)\n(Date of UN designation: 2018-03-08)\n(UNLI-08.03.2018);P;person;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KE;;115927;EN;;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN +28/10/2022;115829;EU.4386.5;SOi.017;2018-03-08;;(UN ID: SOi.017)\n(Date of UN designation: 2018-03-08)\n(UNLI-08.03.2018);P;person;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;Abdi;Abdifatah;Abubakar;Abdifatah Abubakar Abdi;;;;;115937;EN;;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115829;EU.4386.5;SOi.017;2018-03-08;;(UN ID: SOi.017)\n(Date of UN designation: 2018-03-08)\n(UNLI-08.03.2018);P;person;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;Musa Muhajir;;;;;115938;EN;;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115829;EU.4386.5;SOi.017;2018-03-08;;(UN ID: SOi.017)\n(Date of UN designation: 2018-03-08)\n(UNLI-08.03.2018);P;person;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;Mombasa;;;;;;NO;;KE;KENYA;115933;EN;;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115829;EU.4386.5;SOi.017;2018-03-08;;(UN ID: SOi.017)\n(Date of UN designation: 2018-03-08)\n(UNLI-08.03.2018);P;person;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;SO;SOMALIA;115934;EN;;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115829;EU.4386.5;SOi.017;2018-03-08;;(UN ID: SOi.017)\n(Date of UN designation: 2018-03-08)\n(UNLI-08.03.2018);P;person;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-04-15;15;4;1982;;;NO;GREGORIAN;;;;;SO;SOMALIA;115935;EN;;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115829;EU.4386.5;SOi.017;2018-03-08;;(UN ID: SOi.017)\n(Date of UN designation: 2018-03-08)\n(UNLI-08.03.2018);P;person;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;115936;EN;;amendment;council;2018-03-19;2018-03-19;2018/413 (OJ L75);SOM;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0413&from=EN +28/10/2022;115960;EU.4402.72;;2018-03-19;;(Date of UN designation: 2018-03-19);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Ajib;;;;;115962;EN;;amendment;council;2018-03-19;2018-03-19;2018/420 (OJ L75);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0420&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115960;EU.4402.72;;2018-03-19;;(Date of UN designation: 2018-03-19);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yousef;;;;;115963;EN;;amendment;council;2018-03-19;2018-03-19;2018/420 (OJ L75);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0420&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115960;EU.4402.72;;2018-03-19;;(Date of UN designation: 2018-03-19);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yusuf AJEEB;;M;"Brigadier General; Doctor; Head of Se­curity Office, Scientific Studies and Research Centre (SSRC)";Holds the rank of Brigadier General, a senior officer in the Syrian Armed Forces, in post after May 2011. Since 2012, he has been Head of Security for the Scientific Studies and Re­search Centre (SSRC);115964;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115960;EU.4402.72;;2018-03-19;;(Date of UN designation: 2018-03-19);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;يوسف عجيب;AR;M;;;124822;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115960;EU.4402.72;;2018-03-19;;(Date of UN designation: 2018-03-19);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Barzeh Street;P.O. Box 4470;;;;NO;(Scientific Studies and Research Centre (SSRC));SY;SYRIAN ARAB REPUBLIC;115961;EN;Scientific Studies and Research Centre (SSRC);amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115965;EU.4403.71;;2018-03-19;;(Date of UN designation: 2018-03-19);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suleiman;;;;;115967;EN;;amendment;council;2018-03-19;2018-03-19;2018/420 (OJ L75);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0420&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115965;EU.4403.71;;2018-03-19;;(Date of UN designation: 2018-03-19);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mahir;;;;;115968;EN;;amendment;council;2018-03-19;2018-03-19;2018/420 (OJ L75);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0420&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115965;EU.4403.71;;2018-03-19;;(Date of UN designation: 2018-03-19);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Maher SULAIMAN;;M;"Doctor; Director of the Higher Institute for Applied Sciences and Technology";;115969;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115965;EU.4403.71;;2018-03-19;;(Date of UN designation: 2018-03-19);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ماهر سليمان;AR;M;;;124823;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115965;EU.4403.71;;2018-03-19;;(Date of UN designation: 2018-03-19);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;;P.O. Box 31983;;;;NO;(Higher Institute for Applied Sciences and Technology (HIAST));SY;SYRIAN ARAB REPUBLIC;115966;EN;Higher Institute for Applied Sciences and Technology (HIAST);amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115965;EU.4403.71;;2018-03-19;;(Date of UN designation: 2018-03-19);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;Lattakia;;SY;SYRIAN ARAB REPUBLIC;116864;EN;;amendment;council;2018-05-29;2018-05-30;2018/774 (OJ L131);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:131:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115977;EU.4405.69;;2018-03-19;;(Date of UN designation: 2018-03-19);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fadhloun;;;;;115979;EN;;amendment;council;2018-03-19;2018-03-19;2018/420 (OJ L75);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0420&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115977;EU.4405.69;;2018-03-19;;(Date of UN designation: 2018-03-19);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Fadloun;;;;;115980;EN;;amendment;council;2018-03-19;2018-03-19;2018/420 (OJ L75);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0420&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115977;EU.4405.69;;2018-03-19;;(Date of UN designation: 2018-03-19);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Zoher;;;;;115981;EN;;amendment;council;2018-03-19;2018-03-19;2018/420 (OJ L75);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0420&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115977;EU.4405.69;;2018-03-19;;(Date of UN designation: 2018-03-19);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Zuhair FADHLUN;;M;;Head of Institute 3000 (a.k.a. Institute 5000), Scientific Studies and Research Centre (SSRC);115982;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115977;EU.4405.69;;2018-03-19;;(Date of UN designation: 2018-03-19);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;زهير فضلون;AR;M;;;124825;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;115977;EU.4405.69;;2018-03-19;;(Date of UN designation: 2018-03-19);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Barzeh Street;P.O. Box 4470;;;;NO;(Scientific Studies and Research Centre (SSRC));SY;SYRIAN ARAB REPUBLIC;115978;EN;Scientific Studies and Research Centre (SSRC);amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116041;EU.4421.11;;2017-09-11;;(Date of UN designation: 2017-09-11);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Pak;Yong Sik;;Yong Sik Pak;;;;Member of the Workers' Party of Korea Central Military Commission;116042;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116041;EU.4421.11;;2017-09-11;;(Date of UN designation: 2017-09-11);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;Pak;Yo’ng-sik;;Yo’ng-sik Pak;;;;;143162;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116041;EU.4421.11;;2017-09-11;;(Date of UN designation: 2017-09-11);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;143161;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116041;EU.4421.11;;2017-09-11;;(Date of UN designation: 2017-09-11);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950;;;NO;GREGORIAN;;;;;00;UNKNOWN;116044;EN;;amendment;council;2017-09-16;2017-09-16;2017/1568 (OJ L238);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1568&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116041;EU.4421.11;;2017-09-11;;(Date of UN designation: 2017-09-11);P;person;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;116043;EN;;amendment;council;2017-09-16;2017-09-16;2017/1568 (OJ L238);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1568&from=EN +28/10/2022;116106;EU.4441.46;QDe.158;2018-03-29;;(UN ID: QDe.158)\n(Date of UN designation: 2018-03-29)\n(UNLI-29.03.2018);E;enterprise;amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;Khataib al-Imam al-Bukhari;;;;;116326;EN;;amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116106;EU.4441.46;QDe.158;2018-03-29;;(UN ID: QDe.158)\n(Date of UN designation: 2018-03-29)\n(UNLI-29.03.2018);E;enterprise;amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;(KIB);;;;;116327;EN;;amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116106;EU.4441.46;QDe.158;2018-03-29;;(UN ID: QDe.158)\n(Date of UN designation: 2018-03-29)\n(UNLI-29.03.2018);E;enterprise;amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;KHATIBA IMAM AL-BUKHARI;;;;Associated with Al-Nusrah Front for the People of the Levant (QDe.137). Committed terrorist attacks in the Syrian Arab Republic.;116328;EN;;amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116106;EU.4441.46;QDe.158;2018-03-29;;(UN ID: QDe.158)\n(Date of UN designation: 2018-03-29)\n(UNLI-29.03.2018);E;enterprise;amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;;;;;;;;;;;;;;;;Khama;;;;;;NO;(Idlib, Aleppo and Khama, Syrian Arab Republic (operation zone));SY;SYRIAN ARAB REPUBLIC;116320;EN;Idlib, Aleppo and Khama, Syrian Arab Republic (operation zone);amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116106;EU.4441.46;QDe.158;2018-03-29;;(UN ID: QDe.158)\n(Date of UN designation: 2018-03-29)\n(UNLI-29.03.2018);E;enterprise;amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;;;;;;;;;;;;;;;;Aleppo;;;;;;NO;(Idlib, Aleppo and Khama, Syrian Arab Republic (operation zone));SY;SYRIAN ARAB REPUBLIC;116321;EN;Idlib, Aleppo and Khama, Syrian Arab Republic (operation zone);amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116106;EU.4441.46;QDe.158;2018-03-29;;(UN ID: QDe.158)\n(Date of UN designation: 2018-03-29)\n(UNLI-29.03.2018);E;enterprise;amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;;;;;;;;;;;;;;;;Idlib;;;;;;NO;(Idlib, Aleppo and Khama, Syrian Arab Republic (operation zone));SY;SYRIAN ARAB REPUBLIC;116322;EN;Idlib, Aleppo and Khama, Syrian Arab Republic (operation zone);amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116106;EU.4441.46;QDe.158;2018-03-29;;(UN ID: QDe.158)\n(Date of UN designation: 2018-03-29)\n(UNLI-29.03.2018);E;enterprise;amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;;;;;;;;;;;;;;;;Khan-Shaykhun;;;;;;NO;(Khan-Shaykhun, Syrian Arab Republic (53 km south of Idlib, location as at Mar. 2018));SY;SYRIAN ARAB REPUBLIC;116323;EN;Khan-Shaykhun, Syrian Arab Republic (53 km south of Idlib, location as at Mar. 2018);amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116106;EU.4441.46;QDe.158;2018-03-29;;(UN ID: QDe.158)\n(Date of UN designation: 2018-03-29)\n(UNLI-29.03.2018);E;enterprise;amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Afghanistan/Pakistan border area (previous location));PK;PAKISTAN;116324;EN;Afghanistan/Pakistan border area (previous location);amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116106;EU.4441.46;QDe.158;2018-03-29;;(UN ID: QDe.158)\n(Date of UN designation: 2018-03-29)\n(UNLI-29.03.2018);E;enterprise;amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Afghanistan/Pakistan border area (previous location));AF;AFGHANISTAN;116325;EN;Afghanistan/Pakistan border area (previous location);amendment;commission;2018-04-05;2018-04-05;2018/537 (OJ L 89 I);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0537&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116156;EU.4442.45;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);P;person;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;Yun Yuan Tsang;;;;;116343;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116156;EU.4442.45;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);P;person;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;Neil Tsang;;;;;116344;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116156;EU.4442.45;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);P;person;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;TSANG;YUNG;YUAN;YUNG YUAN TSANG;;;;;116345;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116156;EU.4442.45;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);P;person;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-10-20;20;10;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;116341;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116156;EU.4442.45;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);P;person;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"302001581 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;116342;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;; +28/10/2022;116162;EU.4443.44;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;CHANG AN SHIPPING AND TECHNOLOGY;;;;;116347;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116162;EU.4443.44;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;CHANG AN SHIPPING & TECHNOLOGY;;;;Registered owner, ship manager, and commercial manager of Panama-flagged vessel HUA FU, a cargo ship that loaded DPRK coal at Najin, DPRK on September 24, 2017.;116348;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116162;EU.4443.44;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;Chai Wan, Hong Kong;Room 2105, DL1849, Trend Centre, 29-31 Cheung Lee Street;;;;Chai Wan;NO;(Room 2105, DL1849, Trend Centre, 29-31 Cheung Lee Street, Chai Wan, Hong Kong, China);CN;CHINA;116346;EN;Room 2105, DL1849, Trend Centre, 29-31 Cheung Lee Street, Chai Wan, Hong Kong, China;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116167;EU.4444.43;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;CHON MYONG SHIPPING COMPANY LIMITED;;;;;116351;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116167;EU.4444.43;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;CHONMYONG SHIPPING CO;;;;;116352;EN;Registered owner of CHON MYONG 1, a DPRK-flagged vessel that conducted ship-to-ship transfer of fuel in late December 2017.;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116167;EU.4444.43;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Saemaul 2-dong, Pyongchon-guyok;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;116349;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116167;EU.4444.43;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Kalrimgil 2-dong, Mangyongdae-guyok;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;116350;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116167;EU.4444.43;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"5571322 (imo-IMO (vessel identification)) ";NO;NO;NO;NO;NO;;;;;;;imo;IMO (vessel identification);;00;;143201;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;116172;EU.4445.42;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;FIRST OIL JV CO LTD;;;;;116354;EN;Owner of the DPRK tanker PAEK MA, which was involved in ship to ship transfer operations for oil in mid-January 2018.;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116172;EU.4445.42;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Jongbaek 1-dong, Rakrang-guyok;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;116353;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116172;EU.4445.42;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"5963351 (imo-IMO (vessel identification)) ";NO;NO;NO;NO;NO;;;;;;;imo;IMO (vessel identification);;00;;143200;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;116175;EU.4446.41;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;HAPJANGGANG SHIPPING CORP;;;;;116356;EN;Registered owner of the DPRK tanker NAM SAN 8, which is believed to have been involved in ship to ship transfer operations for oil, and owner of vessel HAP JANG GANG 6.;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116175;EU.4446.41;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Kumsong 3-dong, Mangyongdae-guyok;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;116355;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116175;EU.4446.41;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"5787684 (imo-IMO (vessel identification)) ";NO;NO;NO;NO;NO;;;;;;;imo;IMO (vessel identification);;00;;143202;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;116182;EU.4448.39;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;KINGLY WON INTERNATIONAL CO., LTD.;;;;In 2017, Tsang Yung Yuan (aka Neil Tsang) and Kingly Won attempted\nto engage in an oil deal valued at over $1 million with a petroleum company in a third\ncountry to illicitly transfer to the DPRK. Kingly Won acted as a broker for that\npetroleum company and a Chinese company that reached out to Kingly Won to\npurchase marine oil on its behalf.;116360;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116182;EU.4448.39;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;Ajeltake Island;Trust Company Complex, Ajeltake Road;;MH 96960;;Majuro;NO;(Trust Company Complex, Ajeltake Road, Ajeltake Island, Majuro MH 96960, Marshall Islands);MH;MARSHALL ISLANDS;116359;EN;Trust Company Complex, Ajeltake Road, Ajeltake Island, Majuro MH 96960, Marshall Islands;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116185;EU.4449.38;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;KOREA ACHIM SHIPPING CO;;;;;116362;EN;Registered owner of DPRK tanker CHON MA SAN. DPRK-flagged CHON MA SAN prepared for likely ship to ship transfer operations in late January 2018..;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116185;EU.4449.38;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Sochang-dong, Chung-guyok;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;116361;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116185;EU.4449.38;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"5936312 (imo-IMO (vessel identification)) ";NO;NO;NO;NO;NO;;;;;;;imo;IMO (vessel identification);;00;;143203;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;116188;EU.4450.16;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;KOREA ANSAN SHPG COMPANY;;;;;116364;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116188;EU.4450.16;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;KOREA ANSAN SHIPPING COMPANY;;;;;116365;EN;Registered owner of DPRK tanker AN SAN 1 believed to have been involved in ship to ship transfer operations for oil.;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116188;EU.4450.16;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Korea Ansan SHPG CO;;;;;143204;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116188;EU.4450.16;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Pyongchon 1-dong, Pyongchon-guyok;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;116363;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116188;EU.4450.16;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"5676084 (imo-IMO (vessel identification)) ";NO;NO;NO;NO;NO;;;;;;;imo;IMO (vessel identification);;00;;143205;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;116192;EU.4451.15;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;KOREA MYONGDOK SHIPPING CO;;;;;116367;EN;Registered owner of the YU PHYONG 5. In late November 2017, the YU PHYONG 5 conducted a ship-to-ship transfer of 1 721 metric tons of fuel oil.;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116192;EU.4451.15;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Chilgol 2-dong, Mangyongdae-guyok;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;116366;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116192;EU.4451.15;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"5985863 (imo-IMO (vessel identification)) ";NO;NO;NO;NO;NO;;;;;;;imo;IMO (vessel identification);;00;;143206;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;116195;EU.4452.14;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;KOREA SAMJONG SHIPPING;;;;;116369;EN;Registered owner of DPRK tankers SAM JONG 1 and SAM JONG 2. Both vessels are believed to have imported refined petroleum to DPRK in violation of UN sanctions in late January 2018.;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116195;EU.4452.14;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Tonghung-dong, Chung-guyok,;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;116368;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116195;EU.4452.14;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"5954061 (imo-IMO (vessel identification)) ";NO;NO;NO;NO;NO;;;;;;;imo;IMO (vessel identification);;00;;143208;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;116198;EU.4453.13;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;KOREA SAMMA SHIPPING CO.;;;;;116371;EN;A DPRK-flagged tanker, SAM MA 2 owned by Korea Samma Shipping Company, conducted a ship-to-ship transfer of oil and fabricated documents in mid-October 2017.;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116198;EU.4453.13;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;Korea Samma SHPG CO;;;;;143642;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116198;EU.4453.13;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Rakrang 3-dong, Rakrang-guyok,;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;116370;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116198;EU.4453.13;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"5145892 (imo-IMO (vessel identification)) ";NO;NO;NO;NO;NO;;;;;;;imo;IMO (vessel identification);;00;;143210;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;116205;EU.4455.11;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;KOREA YUJONG SHIPPING CO LTD;;;;Registered owner of the DPRK tanker YU JONG 2, which loaded 1,168\nkiloliters of fuel oil on November 19, 2017 through a ship to ship transfer operation.;116374;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116205;EU.4455.11;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;Pyongchon-guyok, Pyongyang;Puksong 2-dong;;;;;NO;"(Puksong 2-dong, Pyongchon-guyok, Pyongyang, DPRK;)";KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;116372;EN;"Puksong 2-dong, Pyongchon-guyok, Pyongyang, DPRK;";amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116205;EU.4455.11;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5434358 (imo-IMO (vessel identification)) (Company\nNumber IMO 5434358);NO;NO;NO;NO;NO;;;;;;;imo;IMO (vessel identification);;00;;116373;EN;Company\nNumber IMO 5434358;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;; +28/10/2022;116209;EU.4456.10;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;KOTI CORP;;;;;116376;EN;Ship manager and commercial manager of the Panama-flagged vessel KOTI, which conducted ship-to-ship transfers of likely petroleum product to the DPRK-flagged KUM UN SAN 3 on December 9, 2017.;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116209;EU.4456.10;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Panama City;;;;;;NO;(Panama City, Panama);PA;PANAMA;116375;EN;Panama City, Panama;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116209;EU.4456.10;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"5982254 (imo-IMO (vessel identification)) ";NO;NO;NO;NO;NO;;;;;;;imo;IMO (vessel identification);;00;;143209;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;116212;EU.4457.9;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;MYOHYANG SHIPPING CO;;;;Ship manager of DPRK oil products tanker YU SON, which is believed\nto have been involved in ship to ship transfer operations for oil.;116394;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116212;EU.4457.9;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Mangyondae-guyok, Pyongyang;Kumsong 3-dong;;;;;NO;(Kumsong 3-dong, Mangyongdae-guyok, Pyongyang, DPRK);KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;116393;EN;Kumsong 3-dong, Mangyongdae-guyok, Pyongyang, DPRK;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116212;EU.4457.9;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"5988369 (imo-IMO (vessel identification)) ";NO;NO;NO;NO;NO;;;;;;;imo;IMO (vessel identification);;00;;144136;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;116215;EU.4458.8;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;Care of First Oil JV Co Ltd;;;;;116378;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116215;EU.4458.8;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;PAEKMA SHIPPING CO;;;;Registered owner of the DPRK tanker PAEK MA, which was involved\nin ship to ship transfer operations for oil in mid-January 2018.;116379;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116215;EU.4458.8;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;Rakrang-guyok, Pyongyang;Jongbaek 1-dong;;;;;NO;(Jongbaek 1-dong, Rakrang-guyok, Pyongyang, DPRK);KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;116377;EN;Jongbaek 1-dong, Rakrang-guyok, Pyongyang, DPRK;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116219;EU.4459.7;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;PHYONGCHON SHIPPING & MARINE;;;;;116381;EN;Registered owner of DPRK tanker JI SONG 6, which is believed to have been involved in ship to ship transfer operations of oil in late January 2018. The company also owns vessels JI SONG 8 and WOORY STAR.;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116219;EU.4459.7;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;PHYONGCHON SHIPPING AND MARINE;;;;;116382;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116219;EU.4459.7;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Pyongyang;Otan-dong, Chung-guyok;;;;;NO;(Otan-dong, Chung-guyok, Pyongyang, DPRK);KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;116380;EN;Otan-dong, Chung-guyok, Pyongyang, DPRK;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116219;EU.4459.7;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"5878561 (imo-IMO (vessel identification)) ";NO;NO;NO;NO;NO;;;;;;;imo;IMO (vessel identification);;00;;143212;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;116223;EU.4460.82;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2017-09-14;2017-09-14;2018/1231 (OJ L231/11);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1231&from=EN;;;;PRO-GAIN GROUP CORPORATION;;;;Company owned or controlled by Tsang Yung Yuan and involved in\nillicit transfers of DPRK coal.;116384;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116226;EU.4461.81;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;SHANGHAI DONGFENG SHIPPING CO LTD;;;;Registered owner, ship and commercial manager of the DONG FENG 6,\na vessel that loaded coal at Hamhung, DPRK on July 11, 2017 for export in violation\nof UN sanctions.;116386;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116226;EU.4461.81;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;Hongkou Qu, Shanghai;Room 601, 433, Chifeng Lu;;200083;;;NO;(Room 601, 433, Chifeng Lu, Hongkou Qu, Shanghai, 200083, China);CN;CHINA;116385;EN;Room 601, 433, Chifeng Lu, Hongkou Qu, Shanghai, 200083, China;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116229;EU.4462.80;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;SHEN ZHONG INTERNATIONAL SHIPPING;;;;Ship and commercial manager of HAO FAN 2 and HAO FAN 6, St\nKitts-Nevis-flagged vessels. The HAO FAN 6 loaded coal at Nampo, DPRK on\nAugust 27, 2017. HAO FAN 2 loaded North Korean coal at Nampo, DPRK on June\n3, 2017.;116388;EN;;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116229;EU.4462.80;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;Tsim Sha Tsui, Kowloon, Hong Kong;Unit 503, 5th Floor, Silvercord Tower 2, 30, Canton Road;;;;;NO;(Unit 503, 5th Floor, Silvercord Tower 2, 30, Canton Road, Tsim Sha Tsui,\nKowloon, Hong Kong, China);CN;CHINA;116387;EN;Unit 503, 5th Floor, Silvercord Tower 2, 30, Canton Road, Tsim Sha Tsui,\nKowloon, Hong Kong, China;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116233;EU.4463.79;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2018-06-04;2018-06-04;2018/814 (OJ L137);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.137.01.0001.01.ENG&toc=OJ:L:2018:137:TOC;;;;WEIHAI WORLD-SHIPPING FREIGHT;;;;Ship and commercial manager of the XIN GUANG HAI, a vessel that on loaded coal at Taean, DPRK on October 27, 2017 and had an ETA of November 14, 2017 to Cam Pha, Vietnam, but it did not arrive.;116390;EN;;amendment;council;2018-06-04;2018-06-04;2018/814 (OJ L137);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.137.01.0001.01.ENG&toc=OJ:L:2018:137:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116233;EU.4463.79;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2018-06-04;2018-06-04;2018/814 (OJ L137);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.137.01.0001.01.ENG&toc=OJ:L:2018:137:TOC;;;;;;;;;;;;;;;;;;;Huancui Qu, Weihai;419-201, Tongyi Lu;;264200;Shandong;;NO;(419-201, Tongyi Lu, Huancui Qu, Weihai, Shandong 264200, China);CN;CHINA;116389;EN;419-201, Tongyi Lu, Huancui Qu, Weihai, Shandong 264200, China;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116236;EU.4464.78;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;YUK TUNG ENERGY PTE LTD;;;;;116392;EN;Ship manager and commercial manager of the YUK TUNG, which\nconducted ship-to-ship transfer of refined petroleum product.;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116236;EU.4464.78;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;Singapore;80 Raffles Place, #17-22 UOB Plaza;;048624;;;NO;;SG;SINGAPORE;116391;EN;;amendment;council;2020-06-03;2020-06-03;2020/730 (OJ L172I);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.172.01.0001.01.ENG&toc=OJ:L:2020:172I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116236;EU.4464.78;;2018-03-30;;(Date of UN designation: 2018-03-30)\n(UNLI-30.03.2018);E;enterprise;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"5987860 (imo-IMO (vessel identification)) ";NO;NO;NO;NO;NO;;;;;;;imo;IMO (vessel identification);;00;;143213;EN;;amendment;council;2022-09-12;2022-09-13;2022/1503 (OJ L235);PRK;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1503;;;;;;;;;;;;; +28/10/2022;116464;EU.4481.19;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Yong-Gon;;M;;;116465;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116464;EU.4481.19;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Young-Nam;;M;;;116466;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116464;EU.4481.19;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Yong-Nam;;M;;;116467;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116464;EU.4481.19;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Yong Nam;;M;;identified by the Panel of Experts as an agent of the Reconnaissance General Bureau;116468;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116464;EU.4481.19;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;김영남;;M;;;141953;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116464;EU.4481.19;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947-12-02;2;12;1947;;;NO;GREGORIAN;;;Sinuju;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;116469;EN;;amendment;council;2018-04-20;2018-04-20;2018/602 (OJ L101);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0602&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116470;EU.4482.18;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;DJANG Tcheul Hy;;F;;;116472;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116470;EU.4482.18;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Tcheul-hy;;F;;;117809;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116470;EU.4482.18;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;DJANG Tchoul-hy;;F;;;117810;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116470;EU.4482.18;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;DJANG Chol-hy;;F;;;117811;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116470;EU.4482.18;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;DJANG Cheul-hy;;F;;;117812;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116470;EU.4482.18;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;JANG Chol-hy;;F;;;117813;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116470;EU.4482.18;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;JANG Cheul-hy;;F;;;117814;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116470;EU.4482.18;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;JANG Tcheul-hy;;F;;;117815;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116470;EU.4482.18;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;장철희;;F;;;141954;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116470;EU.4482.18;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-05-11;11;5;1950;;;NO;GREGORIAN;;;Kangwon;;00;UNKNOWN;116471;EN;;amendment;council;2018-04-20;2018-04-20;2018/602 (OJ L101);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0602&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116473;EU.4483.17;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Soukwang;;M;;;116475;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116473;EU.4483.17;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Su-Kwang;;M;;;116476;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116473;EU.4483.17;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Son-Kwang;;M;;;116477;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116473;EU.4483.17;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Sou-Gwang;;M;;;116478;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116473;EU.4483.17;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Sou-Kwang;;M;;;116479;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116473;EU.4483.17;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Su Gwang;;M;;"Diplomat, DPRK Embassy, Belarus; identified by the Panel of Experts as an agent of the Reconnaissance General Bureau";116480;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116473;EU.4483.17;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Son-gwang;;M;;;117816;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116473;EU.4483.17;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Su-gwang;;M;;;117817;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116473;EU.4483.17;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;김수광;;M;;;142087;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116473;EU.4483.17;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-08-18;18;8;1976;;;NO;GREGORIAN;;;;Pyongyang;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;116474;EN;;amendment;council;2018-04-20;2018-04-20;2018/602 (OJ L101);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0602&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116481;EU.4484.16;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Kyong Hui;;F;;;116483;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116481;EU.4484.16;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;김경희;;F;;;142088;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116481;EU.4484.16;;2018-04-20;;(Date of UN designation: 2018-04-20);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-05-06;6;5;1981;;;NO;GREGORIAN;;;;Pyongyang;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;116482;EN;;amendment;council;2018-04-20;2018-04-20;2018/602 (OJ L101);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0602&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116555;EU.4501.82;;2018-03-30;;(Date of UN designation: 2018-03-30);E;enterprise;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;HUAXIN SHIPPING HONGKONG LTD;;;;;116556;EN;Ship and commercial manager of the ASIA BRIDGE 1. Hong Kong-owned vessel, the probable “ASIA BRIDGE 1” was instructed on 19 October 2017 by Huaxin Shipping \nto make preparations for entry into Nampo, DPRK to receive \na shipment of coal bound for Vietnam. The “ASIA BRIDGE \n1” was instructed by an unidenti­fied employee of Huaxin \nShipping Ltd to make preparations to receive 8 000 metric tonnes of coal and then sail to Cam Pha, Vietnam. The master of the vessel was instructed to cover the ship's name and other markings using canvas while in port at Nampo.;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116555;EU.4501.82;;2018-03-30;;(Date of UN designation: 2018-03-30);E;enterprise;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;Chai Wan;29- 31 Cheung Lee Street;;;;;NO;(Room 2105, Trend Centre, 29- 31 Cheung \nLee Street, Chai Wan, Hong Kong, China);CN;CHINA;116557;EN;Room 2105, Trend Centre, 29- 31 Cheung \nLee Street, Chai Wan, Hong Kong, China;amendment;council;2018-04-09;2018-04-09;2018/548 (OJ L91);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0548&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116705;EU.4521.20;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;GUZEYEVA;Inna;Nikolayevna;Inna Nikolayevna GUZEYEVA;;F;;Deputy Chair of the Crimea Electoral Commission.;116706;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116705;EU.4521.20;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;ГУЗЕЕВА;Инна;Николаевна;Инна Николаевна ГУЗЕЕВА;;F;;;116707;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116705;EU.4521.20;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Інна Миколаївна ГУЗЄЄВА;;F;;;116708;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116705;EU.4521.20;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;HUZIEIEVA;Inna;Mykolayivna;Inna Mykolayivna HUZIEIEVA;;F;;;116709;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116705;EU.4521.20;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;ГУЗЕЕВА;Инна;Николаевна;Инна Николаевна ГУЗЕЕВА;;F;;;116710;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116705;EU.4521.20;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;GUZEEVA;Inna;Nikolayevna;Inna Nikolayevna GUZEEVA;;F;;;116711;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116705;EU.4521.20;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Inna Mykolajivna HUZIEJEVA;SV;;;;137452;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116705;EU.4521.20;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Inna Nikolajevna GUZEJEVA;SV;;;;137453;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116705;EU.4521.20;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-05-20;20;5;1971;;;NO;GREGORIAN;;Crimea;;;UA;UKRAINE;116715;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116716;EU.4522.19;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;BEZRUCHENKO;Natalya;Ivanovna;Natalya Ivanovna BEZRUCHENKO;;F;;Secretary of the Crimea Electoral Commission;116717;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116716;EU.4522.19;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Наталія Іванівна БЕЗРУЧЕНКО;;F;;;116718;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116716;EU.4522.19;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;BEZRUCHENKO;Nataliya;Ivanivna;Nataliya Ivanivna BEZRUCHENKO;;F;;;116719;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116716;EU.4522.19;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;БЕЗРУЧЕНКО;Наталья;Ивановна;Наталья Ивановна БЕЗРУЧЕНКО;;F;;;116720;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116716;EU.4522.19;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;BEZRUCHENKO;Natalia;Ivanovna;Natalia Ivanovna BEZRUCHENKO;;F;;;116721;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116716;EU.4522.19;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Natalija Ivanivna BEZRUTJENKO;SV;;;;137454;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116716;EU.4522.19;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Natalja Ivanovna BEZRUTJENKO;SV;;;;137455;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116716;EU.4522.19;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-08-22;22;8;1979;;;NO;GREGORIAN;;Crimea;;Simferopol;UA;UKRAINE;116723;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116724;EU.4523.18;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;ПЕТУХОВ;Александр;Юрьевич;Александр Юрьевич ПЕТУХОВ;;M;;;116725;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116724;EU.4523.18;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;PETUKHOV;Aleksandr;Yurievich;Aleksandr Yurievich PETUKHOV;;M;;;116726;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116724;EU.4523.18;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;PETUKHOV;Aleksandr;Yurevich;Aleksandr Yurevich PETUKHOV;;M;;Former Chair of the Sevastopol Electoral Commission. Chief Federal Inspector of the Moscow region. Since 6 April 2021, Assistant to the Plenipotentiary \nRepresentative of the President of the Russian \nFederation in the Central Federal District.;116727;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116724;EU.4523.18;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;ПЄТУХОВ;Олександр;Юрійович;Олександр Юрійович ПЄТУХОВ;;M;;;116728;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116724;EU.4523.18;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;PIETUKHOV;Oleksandr;Yuriyovych;Oleksandr Yuriyovych PIETUKHOV;;M;;;116729;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116724;EU.4523.18;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Aleksandr Jurjevitj PETUCHOV;SV;M;;;131448;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116724;EU.4523.18;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Alexandr Jurewitsch PETUCHOW;DE;M;;;131449;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116724;EU.4523.18;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;Oleksandr Jurijovytj PJETUCHOV;SV;M;;;131450;EN;;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116724;EU.4523.18;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2021-09-13;2021-09-14;2021/1464 (OJ L321);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.321.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A321%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-07-17;17;7;1970;;;NO;GREGORIAN;;;;Ryazan;RU;RUSSIAN FEDERATION;116730;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116731;EU.4524.17;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПОГОРЄЛОВ;Мирослав;Олександрович;Мирослав Олександрович ПОГОРЄЛОВ;RU;M;;;116732;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116731;EU.4524.17;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;POHORIELOV;Myroslav;Oleksandrovych;Myroslav Oleksandrovych POHORIELOV;;M;;Head of the internal policy department of the administration of Novorossiysk since March 2022;116733;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116731;EU.4524.17;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПОГОРЕЛОВ;Мирослав;Александрович;Мирослав Александрович ПОГОРЕЛОВ;RU;M;;;116734;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116731;EU.4524.17;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;POGORELOV;Miroslav;Aleksandrovich;Miroslav Aleksandrovich POGORELOV;;M;;Head of the internal policy department of the administration of Novorossiysk since March 2022. Former Deputy Chair of the Sevastopol Electoral Commission (until May 2019).;116735;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116731;EU.4524.17;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Myroslav Oleksandrovytj POHORJELOV;SV;;;;143810;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116731;EU.4524.17;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Miroslav Aleksandrovitj POGORELOV;SV;;;;143811;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116731;EU.4524.17;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-06-07;7;6;1968;;;NO;GREGORIAN;;;;Novorossiysk;RU;RUSSIAN FEDERATION;116736;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116737;EU.4525.16;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Анастасія Миколаївна КАПРАНОВА;;F;;;116738;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116737;EU.4525.16;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KAPRANOVA;Anastasiya;Mykolayivna;Anastasiya Mykolayivna KAPRANOVA;;F;;;116739;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116737;EU.4525.16;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;КАПРАНОВА;Анастасия;Николаевна;Анастасия Николаевна КАПРАНОВА;;F;;;116740;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116737;EU.4525.16;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KAPRANOVA;Anastasiya;Nikolayevna;Anastasiya Nikolayevna KAPRANOVA;;F;;Former Secretary of the Sevastopol Electoral Commission (until May 2019).;116741;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;116737;EU.4525.16;;2018-05-14;;(Date of UN designation: 2018-05-14);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;116742;EN;DOB: 1964 (possibly 21 April);amendment;council;2018-05-14;2018-05-14;2018/705 (OJ L118 I);UKR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0705&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117053;EU.4565.86;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;ERMIAS ALEM;;;;Leader of a transnational trafficking network;117057;EN;;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117053;EU.4565.86;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;Ghermay;Ermies;;Ermies Ghermay;;;;;117058;EN;low quality alias;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117053;EU.4565.86;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;Ghirmay;Ermias;;Ermias Ghirmay;;;;;117059;EN;Low quality alias;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117053;EU.4565.86;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;Ermias Ghermay, Guro;;;;;120723;EN;Good quality alias;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117053;EU.4565.86;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;Tripoli;Tarig sure no. 51;;;;;NO;(Known address: Tripoli, Tarig sure no. 51, likely moved to Sabratha in 2015.);00;UNKNOWN;117054;EN;Known address: Tripoli, Tarig sure no. 51, likely moved to Sabratha in 2015.;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117053;EU.4565.86;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980;NO;GREGORIAN;;;;;ER;ERITREA;117055;EN;Approximately 1980;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117053;EU.4565.86;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ER;;117056;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC +28/10/2022;117060;EU.4566.85;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;Abdurezak;;;;;117063;EN;;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117060;EU.4566.85;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;Abdelrazak;Fitiwi;;Fitiwi Abdelrazak;;;;Leader of a transnational trafficking network;117064;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117060;EU.4566.85;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;Abdrazzak;;;;;118150;EN;;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117060;EU.4566.85;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;Abdulrazak;;;;;118151;EN;;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117060;EU.4566.85;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;Abdelrazaq;;;;;118152;EN;;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117060;EU.4566.85;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;Abdelrazak;Fitwi;Esmail;Fitwi Esmail Abdelrazak;;;;;118153;EN;;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117060;EU.4566.85;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Massaua;ER;ERITREA;117061;EN;Approximately (30-35 years old);amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117060;EU.4566.85;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ER;;117062;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC +28/10/2022;117235;EU.4584.25;LYi.025;2018-06-07;;(UN ID: LYi.025)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;al-Qasab;;;;;117239;EN;Low quality alias;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117235;EU.4584.25;LYi.025;2018-06-07;;(UN ID: LYi.025)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;Keslaf;;;;;117240;EN;Low quality alias;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117235;EU.4584.25;LYi.025;2018-06-07;;(UN ID: LYi.025)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;Koshlaf;;;;;117241;EN;Low quality alias;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117235;EU.4584.25;LYi.025;2018-06-07;;(UN ID: LYi.025)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;Kashlaf;;;;;117242;EN;Low quality alias;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117235;EU.4584.25;LYi.025;2018-06-07;;(UN ID: LYi.025)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;MOHAMMED AL AMIN AL-ARABI KASHLAF;;;;Commander of the Shuhada al-Nasr brigade, Head of the Petrol Refinery Guard of Zawiya's refinery;122760;EN;;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117235;EU.4584.25;LYi.025;2018-06-07;;(UN ID: LYi.025)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;Zawiya;;;;;;NO;;LY;LIBYA;117236;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117235;EU.4584.25;LYi.025;2018-06-07;;(UN ID: LYi.025)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-12-02;2;12;1985;;;NO;GREGORIAN;;;;Zawiya;LY;LIBYA;122758;EN;;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117235;EU.4584.25;LYi.025;2018-06-07;;(UN ID: LYi.025)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;C17HLRL3 (passport-National passport) (on 2015-12-30 in Zawiya);NO;NO;NO;NO;NO;;2015-12-30;;;;;passport;National passport;Zawiya;LY;;122759;EN;;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;; +28/10/2022;117235;EU.4584.25;LYi.025;2018-06-07;;(UN ID: LYi.025)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LY;;117238;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC +28/10/2022;117244;EU.4585.24;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;al-Bija;;;;;117248;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117244;EU.4585.24;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;Rahman Salim Milad;;;;;117249;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117244;EU.4585.24;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;al-Milad;Abd Al-Rahman;;Abd Al-Rahman al-Milad;;;;Commander of the Coast Guard in Zawiya;117250;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117244;EU.4585.24;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;Zawiya;;;;;;NO;;LY;LIBYA;117245;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117244;EU.4585.24;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989;;;YES;GREGORIAN;;;;Tripoli;LY;LIBYA;117246;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117244;EU.4585.24;;2018-06-07;;(Date of UN designation: 2018-06-07);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LY;;117247;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC +28/10/2022;117251;EU.4586.23;LYi.023;2018-06-07;;(UN ID: LYi.023)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;Al-Ahwal;;;;;117256;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117251;EU.4586.23;LYi.023;2018-06-07;;(UN ID: LYi.023)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;The Uncle;;;;;117257;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117251;EU.4586.23;LYi.023;2018-06-07;;(UN ID: LYi.023)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;Al Ammu;;;;;117258;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117251;EU.4586.23;LYi.023;2018-06-07;;(UN ID: LYi.023)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;Al-Dabachi;;;;;117259;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117251;EU.4586.23;LYi.023;2018-06-07;;(UN ID: LYi.023)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;AHMAD OUMAR IMHAMAD AL-FITOURI;;;;Commander of the Anas al-Dabbashi militia, Leader of a transnational trafficking network;117260;EN;;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117251;EU.4586.23;LYi.023;2018-06-07;;(UN ID: LYi.023)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;Al Dabbashi;;;;;118340;EN;;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117251;EU.4586.23;LYi.023;2018-06-07;;(UN ID: LYi.023)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;Zawiya;;;;;;NO;;LY;LIBYA;117252;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117251;EU.4586.23;LYi.023;2018-06-07;;(UN ID: LYi.023)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;Garabulli;;;;;;NO;;LY;LIBYA;117253;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117251;EU.4586.23;LYi.023;2018-06-07;;(UN ID: LYi.023)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;Dbabsha-Sabratah;;;;;;NO;;LY;LIBYA;122755;EN;;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117251;EU.4586.23;LYi.023;2018-06-07;;(UN ID: LYi.023)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-05-07;7;5;1988;;;YES;GREGORIAN;;;;Sabratha;LY;LIBYA;117254;EN;POB: possibly Sabratha, Talil neighbourhood;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117251;EU.4586.23;LYi.023;2018-06-07;;(UN ID: LYi.023)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119880387067 (other-Other identification number) (National identification no.);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;LY;;122756;EN;National identification no.;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;; +28/10/2022;117251;EU.4586.23;LYi.023;2018-06-07;;(UN ID: LYi.023)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LY53FP76 (passport-National passport) (on 2015-09-29 in Tripoli);NO;NO;NO;NO;NO;;2015-09-29;;;;;passport;National passport;Tripoli;LY;;122757;EN;;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;; +28/10/2022;117251;EU.4586.23;LYi.023;2018-06-07;;(UN ID: LYi.023)\n(Date of UN designation: 2018-06-07)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LY;;117255;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC +28/10/2022;117261;EU.4587.22;;2018-06-07;;(Date of UN designation: 2018-06-07)\n(Corrigendum 2018/1285 (OJ L240 [corr. 26/10/2018-1]);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;Al-Grein;;;;;117266;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117261;EU.4587.22;;2018-06-07;;(Date of UN designation: 2018-06-07)\n(Corrigendum 2018/1285 (OJ L240 [corr. 26/10/2018-1]);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;The Doctor;;;;;117267;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117261;EU.4587.22;;2018-06-07;;(Date of UN designation: 2018-06-07)\n(Corrigendum 2018/1285 (OJ L240 [corr. 26/10/2018-1]);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;ABU-AL QASSIM OMAR Musab Boukrin;;;;;117268;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117261;EU.4587.22;;2018-06-07;;(Date of UN designation: 2018-06-07)\n(Corrigendum 2018/1285 (OJ L240 [corr. 26/10/2018-1]);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;Abu Qarin;Mus'ab;;Mus'ab Abu Qarin;;;;Leader of a transnational trafficking network;117269;EN;;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117261;EU.4587.22;;2018-06-07;;(Date of UN designation: 2018-06-07)\n(Corrigendum 2018/1285 (OJ L240 [corr. 26/10/2018-1]);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;MUS'AB MUSTAFA ABU AL QASSIM OMAR;;;;Leader of a transnational trafficking network;118343;EN;;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117261;EU.4587.22;;2018-06-07;;(Date of UN designation: 2018-06-07)\n(Corrigendum 2018/1285 (OJ L240 [corr. 26/10/2018-1]);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-01-19;19;1;1983;;;NO;GREGORIAN;;;;Sabratha;LY;LIBYA;117262;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117261;EU.4587.22;;2018-06-07;;(Date of UN designation: 2018-06-07)\n(Corrigendum 2018/1285 (OJ L240 [corr. 26/10/2018-1]);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540794 (passport-National passport) (on 2008-01-12);NO;NO;NO;NO;NO;;2008-01-12;;;;;passport;National passport;;LY;;117264;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;; +28/10/2022;117261;EU.4587.22;;2018-06-07;;(Date of UN designation: 2018-06-07)\n(Corrigendum 2018/1285 (OJ L240 [corr. 26/10/2018-1]);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;782633 (passport-National passport) (on 2005-05-31);NO;NO;NO;NO;NO;;2005-05-31;;;;;passport;National passport;;LY;;117265;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC;;;;;;;;;;;;; +28/10/2022;117261;EU.4587.22;;2018-06-07;;(Date of UN designation: 2018-06-07)\n(Corrigendum 2018/1285 (OJ L240 [corr. 26/10/2018-1]);P;person;amendment;council;2018-09-25;2018-09-25;2018/1285 (OJ L240;LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1285&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LY;;117263;EN;;amendment;council;2018-06-15;2018-06-15;2018/870 (OJ L152);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.152.01.0001.01.ENG&toc=OJ:L:2018:152:TOC +28/10/2022;117360;EU.4602.90;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;Myrna Ajilul Mabanza;;F;;;117456;EN;;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117360;EU.4602.90;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;Myrna Adijul Mabanza;;F;;;117457;EN;;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117360;EU.4602.90;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;MYRNA AJIJUL MABANZA;;F;;Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq;117458;EN;;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117360;EU.4602.90;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;Daina;;;;;;NO;(Daina, Saudi Arabia (previous address));SA;SAUDI ARABIA;117447;EN;Daina, Saudi Arabia (previous address);regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117360;EU.4602.90;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;Jeddah;;;;;;NO;(Jeddah, Saudi Arabia (previous address));SA;SAUDI ARABIA;117448;EN;Jeddah, Saudi Arabia (previous address);regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117360;EU.4602.90;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;Zamboanga City;;;;;;NO;(Zamboanga City, Philippines (previous address));PH;PHILIPPINES;117449;EN;Zamboanga City, Philippines (previous address);regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117360;EU.4602.90;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;Basilan Province;;NO;(Basilan Province, Philippines);PH;PHILIPPINES;117450;EN;Basilan Province, Philippines;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117360;EU.4602.90;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1991-07-11;11;7;1991;;;NO;GREGORIAN;;;;;00;UNKNOWN;117451;EN;;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117360;EU.4602.90;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140000900032 (other-Other identification number) (Other ID 140000900032);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;117453;EN;Other ID 140000900032;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;; +28/10/2022;117360;EU.4602.90;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200801087 (other-Other identification number) (Student ID 200801087);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;117454;EN;Student ID 200801087;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;; +28/10/2022;117360;EU.4602.90;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73320881AG1191MAM20000 (electionid-Election Card Number) (Voter ID 73320881AG1191MAM20000);NO;NO;NO;NO;NO;;;;;;;electionid;Election Card Number;;00;;117455;EN;Voter ID 73320881AG1191MAM20000;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;; +28/10/2022;117360;EU.4602.90;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PH;;117452;EN;;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC +28/10/2022;117373;EU.4603.89;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;Abdul Patta Abu Bakar;;M;;;117443;EN;;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117373;EU.4603.89;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;Abdul Patta Escalon Abubakar;;M;;;117444;EN;;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117373;EU.4603.89;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;Abdulpatta Abubakar Escalon;;M;;;117445;EN;;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117373;EU.4603.89;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;ABDULPATTA ESCALON ABUBAKAR;;M;;Facilitator for the Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq;117446;EN;;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117373;EU.4603.89;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;Daina;;;;;;NO;(Daina, Saudi Arabia (previous address));SA;SAUDI ARABIA;117432;EN;Daina, Saudi Arabia (previous address);regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117373;EU.4603.89;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;Jeddah;;;;;;NO;(Jeddah, Saudi Arabia (previous address));SA;SAUDI ARABIA;117433;EN;Jeddah, Saudi Arabia (previous address);regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117373;EU.4603.89;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;;PH;PHILIPPINES;117434;EN;;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117373;EU.4603.89;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-01-11;11;1;1965;;;NO;GREGORIAN;;Basilan Province;;Tuburan;PH;PHILIPPINES;117435;EN;;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117373;EU.4603.89;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-01-01;1;1;1965;;;NO;GREGORIAN;;Basilan Province,;;Tuburan;PH;PHILIPPINES;117436;EN;;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117373;EU.4603.89;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-03-03;3;3;1965;;;NO;GREGORIAN;;Basilan Province;;Tuburan;PH;PHILIPPINES;117437;EN;;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117373;EU.4603.89;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202112421 (other-Other identification number) (National identification no:b) Saudi Arabia 202112421);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;SA;;117439;EN;National identification no:b) Saudi Arabia 202112421;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;; +28/10/2022;117373;EU.4603.89;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2135314355 (other-Other identification number) (National identification no: a) Saudi Arabia 2135314355);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;SA;;117440;EN;National identification no: a) Saudi Arabia 2135314355;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;; +28/10/2022;117373;EU.4603.89;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"EB2778599 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;PH;;117441;EN;;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;; +28/10/2022;117373;EU.4603.89;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EC6530802 (passport-National passport) (valid to 2021-01-19);NO;NO;NO;NO;NO;;;;2021-01-19;;;passport;National passport;;PH;;117442;EN;;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;; +28/10/2022;117373;EU.4603.89;;2018-06-18;;(Date of UN designation: 2018-06-18);P;person;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PH;;117438;EN;;regulation;commission;2018-06-21;2018-06-21;2018/888 (OJ L158 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2018.158.01.0001.01.ENG&toc=OJ:L:2018:158I:TOC +28/10/2022;117485;EU.4621.29;;;Date of listing: 25/06/2018;(Designation details: Date of listing: 25/06/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;Zaw;Aung Kyaw;;Aung Kyaw Zaw;;M;;Lieutenant General Aung Kyaw Zaw was the Commander of the Bureau of Special Operations No. 3 of the Myanmar Armed Forces \n(Tatmadaw) from August 2015 to the end of 2017.;117489;EN;;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117485;EU.4621.29;;;Date of listing: 25/06/2018;(Designation details: Date of listing: 25/06/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-08-20;20;8;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;117486;EN;;amendment;council;2018-06-25;2018-06-25;2018/898 (OJ L160 I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0898&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117485;EU.4621.29;;;Date of listing: 25/06/2018;(Designation details: Date of listing: 25/06/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BC 17444 (other-Other identification number) (Military Identification Number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;117487;EN;Military Identification Number;amendment;council;2018-08-13;2018-08-13;2018/1117 (OJ L204);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1117&from=EN;;;;;;;;;;;;; +28/10/2022;117485;EU.4621.29;;;Date of listing: 25/06/2018;(Designation details: Date of listing: 25/06/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DM000826 (passport-National passport) (on 2011-11-22 valid to 2021-11-21);NO;NO;NO;NO;NO;;2011-11-22;;2021-11-21;;;passport;National passport;;00;;117488;EN;;amendment;council;2018-08-13;2018-08-13;2018/1117 (OJ L204);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1117&from=EN;;;;;;;;;;;;; +28/10/2022;117490;EU.4622.28;;;Date of listing: 25/06/2018;(Designation details: Date of listing: 25/06/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;Soe;Maung Maung;;Maung Maung Soe;;M;;Major General Maung Maung Soe was the Commander of the Western Command of the Myanmar Armed Forces (Tatmadaw) from October 2016 to 10 November 2017 and oversaw the military operations in Rakhine State.;117493;EN;;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117490;EU.4622.28;;;Date of listing: 25/06/2018;(Designation details: Date of listing: 25/06/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;117491;EN;;amendment;council;2018-06-25;2018-06-25;2018/898 (OJ L160 I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0898&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117490;EU.4622.28;;;Date of listing: 25/06/2018;(Designation details: Date of listing: 25/06/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Tatmadaw Kyee 19571 (other-Other identification number) (National Identification Number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;117492;EN;National Identification Number;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;117494;EU.4623.27;;;Date of listing: 25/06/2018;(Designation details: Date of listing: 25/06/2018);P;person;amendment;council;2020-04-24;2020-04-25;2020/562 (OJ L130);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0562&from=EN;Oo;Than;;Than Oo;;M;;Brigadier General Than Oo was the Commander of the 99th Light Infantry Division of the Myanmar Armed Forces (Tatmadaw) until May 2018.;117497;EN;;amendment;council;2020-04-24;2020-04-25;2020/562 (OJ L130);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0562&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117494;EU.4623.27;;;Date of listing: 25/06/2018;(Designation details: Date of listing: 25/06/2018);P;person;amendment;council;2020-04-24;2020-04-25;2020/562 (OJ L130);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0562&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-10-12;12;10;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;117495;EN;;amendment;council;2018-06-25;2018-06-25;2018/898 (OJ L160 I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0898&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117494;EU.4623.27;;;Date of listing: 25/06/2018;(Designation details: Date of listing: 25/06/2018);P;person;amendment;council;2020-04-24;2020-04-25;2020/562 (OJ L130);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0562&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BC 25723 (other-Other identification number) (Military identification number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;117496;EN;Military identification number;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;117498;EU.4624.26;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2021-04-30;2021-05-01;2021/706 (OJ L147);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.147.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A147%3ATOC;Aung;Aung;;Aung Aung;;M;Major General;The Commander of the South Western \nCommand of the Myanmar Armed Forces (Tatmadaw) and the former Commander of the 33rd Light Infantry Division of the Myanmar Armed Forces (Tatmadaw).;117500;EN;;amendment;council;2021-04-30;2021-05-01;2021/706 (OJ L147);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.147.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A147%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117498;EU.4624.26;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2021-04-30;2021-05-01;2021/706 (OJ L147);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.147.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A147%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BC 23750 (other-Other identification number) (Military Identification Number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;117499;EN;Military Identification Number;amendment;council;2018-08-13;2018-08-13;2018/1117 (OJ L204);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1117&from=EN;;;;;;;;;;;;; +28/10/2022;117501;EU.4625.25;;;Date of listing: 25/06/2018;(Designation details: Date of listing: 25/06/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;Soe;Khin Maung;;Khin Maung Soe;;M;;Brigadier General Khin Maung Soe is the Commander of the Military Operation Command 15, also sometimes known as the 15th Light Infantry Division, of the Myanmar Armed Forces (Tatma­daw), under which Infantry Battalion No. 564 falls.;117502;EN;;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117501;EU.4625.25;;;Date of listing: 25/06/2018;(Designation details: Date of listing: 25/06/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;120023;EN;;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117506;EU.4627.23;;;Date of listing: 25/06/2018;(Designation details: Date of listing: 25/06/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;Lwin;Thura San;;Thura San Lwin;;M;;Brigadier General Thura San Lwin was the Commander of the Border Guard Police from October 2016 until early October 2017.;117508;EN;;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117506;EU.4627.23;;;Date of listing: 25/06/2018;(Designation details: Date of listing: 25/06/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-03-17;17;3;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;117507;EN;;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117509;EU.4628.22;;;Date of listing: 25/06/2018;(Designation details: Date of listing: 25/06/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;Oo;Thant Zin;;Thant Zin Oo;;M;;Thant Zin Oo is the Commander of the 8th Security Police Battalion.;117510;EN;;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117518;EU.4629.21;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Tareck Zaidan EL-AISSAMI MADDAH;;M;;Vice President of Economy and Minister of the Popular Power of Petroleum as well as National Industry and Production. Former Vice President of Venezuela with oversight of the dicrection of the Bolivarian National Intelligence Service (SEBIN).;117520;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117518;EU.4629.21;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-11-12;12;11;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;117519;EN;;amendment;council;2018-06-25;2018-06-25;2018/899 (OJ L160 I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0899&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117521;EU.4630.96;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Sergio José RIVERO MARCANO;;M;;Inspector General of the Bolivarian National Armed Forces (FANB), General Commander of the Bolivarian National Guard until 16 January 2018.;117523;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117521;EU.4630.96;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-11-08;8;11;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;117522;EN;;amendment;council;2018-06-25;2018-06-25;2018/899 (OJ L160 I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0899&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117524;EU.4631.95;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Jesús Rafael SUÁREZ CHOURIO;;M;;President of the Defence and Security Committee of the non-democratically elected National Assembly since January 2021. Former Chief of the General Staff of the Commander-in-Chief of the Armed Forces (between July 2019 and September 2020). Former Commander in Chief of the Venezuelan Bolivarian National Army (until July 2019). Former General Commander of the Venezuelan Bolivarian National Army and former Commander of Venezuela’s Comprehensive Defence Region of the Central Zone (REDI Central).;117526;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117524;EU.4631.95;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-07-19;19;7;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;117525;EN;;amendment;council;2018-06-25;2018-06-25;2018/899 (OJ L160 I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0899&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117527;EU.4632.94;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Iván HERNÁNDEZ DALA;;M;;Head of the Directorate-General of Military Counter-Intelligence (DGCIM) since January 2014 and Head of the Presidential Guard since September 2015.;117529;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117527;EU.4632.94;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-05-18;18;5;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;117528;EN;;amendment;council;2018-06-25;2018-06-25;2018/899 (OJ L160 I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0899&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117530;EU.4633.93;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Delcy Eloina RODRÍGUEZ GÓMEZ;;F;;Vice-President of Venezuela, Minister of the Economy, Finances and Trade. Former President of the illegitimate Constituent Assembly and former member of the Presidential Commission for the illegitimate National Constituent Assembly.;117532;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117530;EU.4633.93;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-05-18;18;5;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;117531;EN;;amendment;council;2018-06-25;2018-06-25;2018/899 (OJ L160 I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0899&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117533;EU.4634.92;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Elías José JAUA MILANO;;M;;Former Minister of Popular Power for Education. Former President of the Presidential Commission for the illegitimate National Constituent Assembly.;117535;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117533;EU.4634.92;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-12-16;16;12;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;117534;EN;;amendment;council;2018-06-25;2018-06-25;2018/899 (OJ L160 I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0899&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117536;EU.4635.91;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Sandra OBLITAS RUZZA;;F;;Rector of the Universidad Bolivariana de Venezuela. Former Vice President of the National Electoral Council (CNE) and former President of the Commission of the Electoral and Civilian Register.;117538;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117536;EU.4635.91;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-06-07;7;6;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;117537;EN;;amendment;council;2018-06-25;2018-06-25;2018/899 (OJ L160 I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0899&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117539;EU.4636.90;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Freddy Alirio BERNAL ROSALES;;M;;Head of the National Control Centre of the Committee for Local Supply and Production (CLAP) and Protector of Táchira State. Also a Commissioner General of the Bolivarian National Intelligence Service (SEBIN).;117541;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117539;EU.4636.90;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-06-16;16;6;1962;;;NO;GREGORIAN;;;San Cristóbal, Táchira state;;VE;VENEZUELA;117540;EN;;amendment;council;2019-11-12;2019-11-13;2019/1891 (OJ L291);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1891&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117542;EU.4637.89;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Katherine Nayarith HARRINGTON PADRÓN;;F;;Deputy Prosecutor General (also translated as Deputy Attorney General) from July 2017 until October 2018. Appointed Deputy Prosecutor General by the Supreme Court in violation of the Constitution, rather than by the National Assembly.;117544;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117542;EU.4637.89;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-12-05;5;12;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;117543;EN;;amendment;council;2018-06-25;2018-06-25;2018/899 (OJ L160 I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0899&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117545;EU.4638.88;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Socorro Elizabeth HERNÁNDEZ;;F;;Member (Rector) of the National Electoral Council (CNE) until 12 June 2020 and member of the National Electoral Board (JNE).;117547;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117545;EU.4638.88;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-03-11;11;3;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;117546;EN;;amendment;council;2018-06-25;2018-06-25;2018/899 (OJ L160 I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0899&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117548;EU.4639.87;;2018-06-25;;(Date of UN designation: 2018-06-25);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Xavier Antonio MORENO REYES;;M;;Secretary-General of the National Electoral \nCouncil (CNE) from 2009 until June 2020.;117549;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117605;EU.4641.64;;2018-07-16;;(Date of UN designation: 2018-07-16);P;person;amendment;council;2018-07-16;2018-07-16;2018/999 (OJ L178 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0999&from=EN;Musab;Abu;;Abu Musab;;;;;117608;EN;;amendment;council;2018-07-16;2018-07-16;2018/999 (OJ L178 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0999&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117605;EU.4641.64;;2018-07-16;;(Date of UN designation: 2018-07-16);P;person;amendment;council;2018-07-16;2018-07-16;2018/999 (OJ L178 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0999&from=EN;TAHARI;Rabah;;Rabah TAHARI;;;;;117609;EN;;amendment;council;2018-07-16;2018-07-16;2018/999 (OJ L178 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0999&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117605;EU.4641.64;;2018-07-16;;(Date of UN designation: 2018-07-16);P;person;amendment;council;2018-07-16;2018-07-16;2018/999 (OJ L178 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0999&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-08-28;28;8;1971;;;NO;GREGORIAN;;;Oran;;DZ;ALGERIA;117606;EN;;amendment;council;2018-07-16;2018-07-16;2018/999 (OJ L178 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0999&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117605;EU.4641.64;;2018-07-16;;(Date of UN designation: 2018-07-16);P;person;amendment;council;2018-07-16;2018-07-16;2018/999 (OJ L178 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0999&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;117607;EN;;amendment;council;2018-07-16;2018-07-16;2018/999 (OJ L178 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R0999&from=EN +28/10/2022;117763;EU.4661.2;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;АО Институт Гипростроймост – Санкт-Петербург;;;;;117765;EN;;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117763;EU.4661.2;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;AO “Institute Giprostroymost — Saint-Petersburg”;;;;;117766;EN;AO “Institute Giprostroymost — Saint-Petersburg” participated in the construction of the Kerch Bridge through its design of the Bridge, connecting Russia to the illegally annexed Crimean peninsula.;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117763;EU.4661.2;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;AO ‚Institut Giprostroymost — Sankt Petersburg‘;DE;;;;128642;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117763;EU.4661.2;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;AO ”Giprostrojmostinstitutet – Sankt Petersburg”;SV;;;;128643;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117763;EU.4661.2;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;АД „Институт Гипростроймост – Санкт-Петербург“;BG;;;;128644;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117763;EU.4661.2;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;AO “Institute Giprostroymost — São Petersburgo”;PT;;;;128645;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117763;EU.4661.2;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;AO Institute Giprostroymost - Sankt Petersburg (AO Instytut Giprostrojmost);PL;;;;128646;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117763;EU.4661.2;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;AO “Institute Giprostroymost — St. Petersburg”;NL;;;;128647;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117763;EU.4661.2;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;AO «Institute Giprostroymost – Sankt-Petersburg»;RO;;;;128648;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117763;EU.4661.2;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Delniška družba „Institute Giprostroymost — Saint-Petersburg“;SL;;;;128649;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117763;EU.4661.2;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;St. Petersburg;7 Yablochkova street;;197198;;;NO;WEB[http://gpsm.ru]\nPHONE[(812) 498-08-14 ]\nEMAIL[office@gpsm.ru];RU;RUSSIAN FEDERATION;117764;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117763;EU.4661.2;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7826717210 (regnumber-Registration Number) (Tax registration number);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125033;EN;Tax registration number;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;117763;EU.4661.2;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1037828021660 (regnumber-Registration Number) (State registration number);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125034;EN;State registration number;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;117767;EU.4662.1;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;ПАО Мостотрест;;;;;117769;EN;;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117767;EU.4662.1;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;PJSC Mostotrest;;;;;117770;EN;PJSC Mostotrest actively participated in the construction of the Kerch Bridge through its state contracts for the maintenance of the bridge, connecting Russia to the illegally annexed Crimean peninsula.;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117767;EU.4662.1;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Viešoji akcinė bendrovė „Mostotrest“;LT;;;;128650;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117767;EU.4662.1;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;ПАО „Мостотрест“;BG;;;;128651;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117767;EU.4662.1;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Javna delniška družba Mostotrest;SL;;;;128652;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117767;EU.4662.1;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;6 Barklaya street, Bld. 5;;121087;;;NO;WEB[www.mostotrest.ru]\nPHONE[(495)6697999]\nEMAIL[info@mostro.ru];RU;RUSSIAN FEDERATION;117768;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117767;EU.4662.1;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7701045732 (regnumber-Registration Number) (Tax registration number);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;124264;EN;Tax registration number;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;117767;EU.4662.1;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1027739167246 (regnumber-Registration Number) (State registration number);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;124265;EN;State registration number;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;117775;EU.4664.96;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Судостроительный завод 'Залив';;;;;117777;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117775;EU.4664.96;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;JSC Zaliv Shipyard;;;;;117778;EN;JSC Zaliv Shipyard actively participated in the construction of new railway to the Kerch Bridge, connecting Russia to the illegally annexed Crimean peninsula.;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117775;EU.4664.96;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Ναυπηγείο JSC Zaliv;EL;;;;128653;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117775;EU.4664.96;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Корабостроителен завод „Залив“;BG;;;;128654;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117775;EU.4664.96;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;stocznia JSC Zaliv;PL;;;;128655;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117775;EU.4664.96;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Scheepswerf JSC Zaliv;NL;;;;128656;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117775;EU.4664.96;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Akcinė bendrovė „Zaliv Shipyard“;LT;;;;128657;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117775;EU.4664.96;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Delniška družba Ladjedelnica Zaliv;SL;;;;128658;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117775;EU.4664.96;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;Kerch;4 Tankistov street;;298310;Crimea;;NO;WEB[http://zalivkerch.com]\nPHONE[+7(36561)33055];00;UNKNOWN;117776;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117775;EU.4664.96;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9111001119 (regnumber-Registration Number) (Tax registration number);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125035;EN;Tax registration number;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;117775;EU.4664.96;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1149102028602 (regnumber-Registration Number) (State registration number);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125036;EN;State registration number;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;ООО Стройгазмонтаж (груп СГМ);;;;;117781;EN;;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;STROYGAZMONTAZH Corporation (SGM Group);;;;;117782;EN;Stroygazmontazh Corporation (SGM Group) actively participated in the construction of the Kerch Bridge through its state contract for the construction of the bridge connecting Russia to the illegally annexed Crimean peninsula.;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;STROYGAZMONTAZH Joint Stock Company;;;;;127712;EN;Stroygazmontazh Corporation (SGM Group) actively participated in the construction of the Kerch Bridge through its state contract for the construction of the bridge connecting Russia to the illegally annexed Crimean peninsula.;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Družba STROYGAZMONTAZH (SGM Group);SL;;;;128659;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Delniška družba STROYGAZMONTAZH;SL;;;;128660;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Osakeyhtiö STROYGAZMONTAZH;FI;;;;128661;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Sociedade por ações STROYGAZMONTAZH;PT;;;;128662;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;korporacja STROYGAZMONTAZH, grupa SGM;PL;;;;128663;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;spółka akcyjna STROYGAZMONTAZH;PL;;;;128664;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;STROYGAZMONTAZH Corporation (Grupul SGM);RO;;;;128665;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Societatea pe acțiuni STROYGAZMONTAZH;RO;;;;128666;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Akcinė bendrovė STROYGAZMONTAZH;LT;;;;128667;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Akciju sabiedrība “STROYGAZMONTAZH”;LV;;;;128668;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;STROYGAZMONTAZH vállalat [SGM csoport];HU;;;;128669;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;STROYGAZMONTAZH részvénytársaság;HU;;;;128670;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;société anonyme STROYGAZMONTAZH;FR;;;;128671;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;STROYGAZMONTAZH Corporation (Όμιλος SGM);EL;;;;128672;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Ανώνυμη εταιρεία STROYGAZMONTAZH;EL;;;;128673;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;„Стройгазмонтаж“ ООД;BG;;;;128674;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Aktieselskabet STROYGAZMONTAZH;DA;;;;128675;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Stroygazmontazh Corporation (skupina SGM);CS;;;;128676;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;Prospect Vernadskogo 53;;119415;;;NO;WEB[www.ooosgm.com]\nEMAIL[info@ooosgm.ru];RU;RUSSIAN FEDERATION;117780;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7729588440 (regnumber-Registration Number) (Tax registration number);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;124266;EN;Tax registration number;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1077762942212 (regnumber-Registration Number) (State registration number);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;124267;EN;State registration number;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;772901001 (other-Other identification number) (KPP);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;127709;EN;KPP;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1207700324941 (other-Other identification number) (PSRN);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;127710;EN;PSRN;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;; +28/10/2022;117779;EU.4665.95;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9729299794 (other-Other identification number) (INN);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;127711;EN;INN;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;; +28/10/2022;117789;EU.4667.93;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;ООО Стройгазмонтаж-Мост;;;;;117793;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117789;EU.4667.93;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Stroygazmontazh Most OOO;;;;;117794;EN;Stroygazmontazh Most OOO was a subsidiary of lead contractor Stroygazmontazh that managed the construction project of the bridge over the Kerch Strait and participated in the construction. Therefore the company is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine.;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117789;EU.4667.93;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;ООО СГМ-Мост;;;;;124268;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117789;EU.4667.93;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;SGM-Most OOO;;;;;124269;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117789;EU.4667.93;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;Moscow;Barklaya street 6, building 7;;121087;;;NO;EMAIL[kerch-most@yandex.ru];RU;RUSSIAN FEDERATION;117790;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117789;EU.4667.93;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7730018980 (fiscalcode-National Fiscal Code) (Tax ID No: 7730018980);NO;NO;NO;NO;NO;;;;;;;fiscalcode;National Fiscal Code;;00;;117791;EN;Tax ID No: 7730018980;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;;;;;;;;;; +28/10/2022;117789;EU.4667.93;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1157746088170 (regnumber-Registration Number) (Registration ID);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;117792;EN;Registration ID;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;; +28/10/2022;117795;EU.4668.92;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;АО «ВАД»;;;;;117800;EN;;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117795;EU.4668.92;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;AKTSIONERNOE OBSHCHESTVO VAD;;;;;117801;EN;;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117795;EU.4668.92;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;CJSC VAD;;;;;117802;EN;CJSC VAD is the main contractor for the construction of the Tavrida Highway in Crimea, the road over the Kerch Bridge and the access roads to it. Therefore CJSC VAD is supporting the consolidation of the illegally annexed Crimean peninsula into the Russian Federation, which in turn further undermines the territorial integrity, sovereignty and independence of Ukraine.;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117795;EU.4668.92;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;;;;;;;;;;;;;;;;St. Petersburg;122, Grazhdanskiy Prospect;195267;;;;NO;(122, Grazhdanskiy Prospect, suite 5, Liter A, St. Petersburg, 195267 Russia);RU;RUSSIAN FEDERATION;117796;EN;122, Grazhdanskiy Prospect, suite 5, Liter A, St. Petersburg, 195267 Russia;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117795;EU.4668.92;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;;;;;;;;;;;;;;;;Vologda;133 Chernyshevskogo street;160019;;Vologodskaya Oblast;;NO;WEB[www.zaovad.com]\nEMAIL[office@zaovad.com];RU;RUSSIAN FEDERATION;117797;EN;;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117795;EU.4668.92;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7802059185 (fiscalcode-National Fiscal Code) (Tax ID No: 7802059185);NO;NO;NO;NO;NO;;;;;;;fiscalcode;National Fiscal Code;;00;;117798;EN;Tax ID No: 7802059185;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;;;;;;;;;; +28/10/2022;117795;EU.4668.92;;2018-07-31;;(Date of UN designation: 2018-07-31);E;enterprise;amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1037804006811 (regnumber-Registration Number) (Registration ID: 1037804006811 (Russia));NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;RU;;117799;EN;Registration ID: 1037804006811 (Russia);amendment;council;2018-07-31;2018-07-31;2018/1072 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2018.194.01.0027.01.ENG&toc=OJ:L:2018:194:TOC;;;;;;;;;;;;; +28/10/2022;117856;EU.4681.37;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;Ruben;Malek;;Malek Ruben;;;;;117859;EN;;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117856;EU.4681.37;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;REUBEN RIAK RENGU;Malek;;Malek REUBEN RIAK RENGU;;;Lieutenant General;"a) Deputy Chief of General Staff for Logistics; \nb) Deputy Chief of Defence Staff and Inspector General of the Army";117860;EN;;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117856;EU.4681.37;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-01-01;1;1;1960;;;NO;GREGORIAN;;;Yei;;SS;SOUTH SUDAN;117857;EN;;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117856;EU.4681.37;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SS;;117858;EN;;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN +28/10/2022;117869;EU.4683.35;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;Malong;Bol;;Bol Malong;;;;;117873;EN;;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117869;EU.4683.35;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;Malong;Paul;;Paul Malong;;;;;117874;EN;;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117869;EU.4683.35;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;Malong Awan Anei;Paul;;Paul Malong Awan Anei;;;;;117875;EN;;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117869;EU.4683.35;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;MALONG AWAN ANEI;Paul;;Paul MALONG AWAN ANEI;;;General;a) Former Chief of Staff of the Sudan People's Liberation Army (SPLA), b) Former Governor, Northern Bahr el-Ghazal State;117876;EN;;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117869;EU.4683.35;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-04-12;12;4;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;117870;EN;;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117869;EU.4683.35;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-12-04;4;12;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;117871;EN;;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117869;EU.4683.35;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;;;NO;GREGORIAN;;;Malualkon;;SS;SOUTH SUDAN;117872;EN;;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117869;EU.4683.35;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-01-01;1;1;1962;;;NO;GREGORIAN;;;Kotido;;UG;UGANDA;120613;EN;;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117869;EU.4683.35;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"B002606 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;SD;;117879;EN;;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;;;;;;;;;;;;; +28/10/2022;117869;EU.4683.35;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00606 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;SD;;117880;EN;;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;;;;;;;;;;;;; +28/10/2022;117869;EU.4683.35;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"003606 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;SD;;117881;EN;;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;;;;;;;;;;;;; +28/10/2022;117869;EU.4683.35;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"D00001369 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;SS;;117882;EN;;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;;;;;;;;;;;;; +28/10/2022;117869;EU.4683.35;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"S00004370 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;SS;;117883;EN;;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN;;;;;;;;;;;;; +28/10/2022;117869;EU.4683.35;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"DA025963 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;UG;;120614;EN;;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;;;;;;;;;;;;; +28/10/2022;117869;EU.4683.35;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UG;;117877;EN;;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN +28/10/2022;117869;EU.4683.35;;2018-07-13;;(Date of UN designation: 2018-07-13);P;person;amendment;council;2019-07-17;2019-07-18;2019/1208 (OJ L 191);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1208&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SS;;117878;EN;;amendment;council;2018-08-13;2018-08-13;2018/1115 (OJ L204);SSD;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1115&from=EN +28/10/2022;117898;EU.4684.34;;2018-08-09;;(Date of UN designation: 2018-08-09);P;person;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;Lehbib Ould Ali Ould Said Ould Joumani;;;;;117901;EN;;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117898;EU.4684.34;;2018-08-09;;(Date of UN designation: 2018-08-09);P;person;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;Adnan Abu Waleed al-Sahrawi;;;;;117902;EN;;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117898;EU.4684.34;;2018-08-09;;(Date of UN designation: 2018-08-09);P;person;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;Adnan Abu Walid al-Sahraoui;;;;;117903;EN;;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117898;EU.4684.34;;2018-08-09;;(Date of UN designation: 2018-08-09);P;person;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;Abu Walid al Sahrawi;;;;;117904;EN;;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117898;EU.4684.34;;2018-08-09;;(Date of UN designation: 2018-08-09);P;person;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;Adnan Abu Walid al-Sahrawi;;;;;117905;EN;;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117898;EU.4684.34;;2018-08-09;;(Date of UN designation: 2018-08-09);P;person;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;Lahbib Idrissi ould Sidi Abdi ould Said ould El Bachir;;;;;117906;EN;;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117898;EU.4684.34;;2018-08-09;;(Date of UN designation: 2018-08-09);P;person;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;ADNAN ABOU WALID AL-SAHRAOUI;;;;Former spokesperson of the Mouvement pour l’Unification et le Jihad en Afrique de l’Ouest (MUJAO). \nEmir of the Al-Mourabitoun group in Mali. \nPledged allegiance to Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq.;117907;EN;;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117898;EU.4684.34;;2018-08-09;;(Date of UN designation: 2018-08-09);P;person;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;;;;;;;;;;;;;;;;;;;;Gao Region;Ménaka;NO;;ML;MALI;117899;EN;;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117898;EU.4684.34;;2018-08-09;;(Date of UN designation: 2018-08-09);P;person;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-02-16;16;2;1973;;;NO;GREGORIAN;;;Laayoune;;00;UNKNOWN;117900;EN;;amendment;commission;2018-08-14;2018-08-14;2018/1138 (OJ L205 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1138&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117925;EU.4701.3;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Faturohman;Fauz;;Fauz Faturohman;;;;;117929;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117925;EU.4701.3;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Faiz;Abdullah;;Abdullah Faiz;;;;;117930;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117925;EU.4701.3;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Faiz;Kholid;;Kholid Faiz;;;;;117931;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117925;EU.4701.3;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Faiz;Saifudin;;Saifudin Faiz;;;;;117932;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117925;EU.4701.3;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Faiz;Ustadz;;Ustadz Faiz;;;;;117933;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117925;EU.4701.3;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;Mohammad Saifuddin Mohammad Yusuf Faiz;;;;;117934;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117925;EU.4701.3;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;Mohamad Yusuf Karim Saifullah Faiz;;;;;117935;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117925;EU.4701.3;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Khalid;Kembar;;Kembar Khalid;;;;;117936;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117925;EU.4701.3;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Saifudin;Muh;;Muh Saifudin;;;;;117937;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117925;EU.4701.3;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Faiz;Mohammad;Yusef Karim;Mohammad Yusef Karim Faiz;;;;;117938;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117925;EU.4701.3;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Syaifudin;Udtadz;;Udtadz Syaifudin;;;;;117939;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117925;EU.4701.3;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Elma;Zidni;;Zidni Elma;;;;;117940;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117925;EU.4701.3;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;al Indunisi;Abu;Walid;Abu Walid al Indunisi;;;;;117941;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117925;EU.4701.3;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Karim;Mohammed;Yusip;Mohammed Yusip Karim;;;;;117942;EN;"Senior member of Islamic State in Iraq and the Levant \n(ISIL), listed as Al-Qaida in Iraq. Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online \nvideo. Physical description: hair colour: black; build: slight. Speaks Indonesian, Arabic and Mindanao dialect.";amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117925;EU.4701.3;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;((location since 2015));SY;SYRIAN ARAB REPUBLIC;117926;EN;(location since 2015);amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117925;EU.4701.3;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-10-11;11;10;1978;;;NO;GREGORIAN;;;;;ID;INDONESIA;117927;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117925;EU.4701.3;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;117928;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Bin Nurdin;Muhammad;Ratin;Muhammad Ratin Bin Nurdin;;;;;117953;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;Abu Ayn Tok Cit;;;;;117954;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Bin Udin;Mhammad;Rahim;Mhammad Rahim Bin Udin;;;;;117955;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;al Malayzie;Abu;Una;Abu Una al Malayzie;;;;;117956;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Rafiuddin;Muhammad;;Muhammad Rafiuddin;;;;;117957;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Ratin;Muhammad;;Muhammad Ratin;;;;;117958;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;al Malizi;Abu;Awn;Abu Awn al Malizi;;;;;117959;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Bin Udin;Mohd;Radi;Mohd Radi Bin Udin;;;;;117960;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Bin Udin;Mohamad;Rafi;Mohamad Rafi Bin Udin;;;;;117961;EN;"Senior member of Islamic State in Iraq and the Levant \n(ISIL), listed as Al-Qaida in Iraq. Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online \nvideo. Physical description: eye colour: brown; hair colour: \nbrown; complexion: dark. Speaks \nMalay, English, limited Arabic.";amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;((location as of 2014));SY;SYRIAN ARAB REPUBLIC;117944;EN;(location as of 2014);amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;Kuala Lumpur;;;;;;NO;(96-06-06 Flat Sri Kota, Bandar Tun Razak, 56100, Kuala Lumpur, Wilayah Persekutuan Kuala Lumpur, Malaysia (as at 6 Apr. 2007));MY;MALAYSIA;117945;EN;96-06-06 Flat Sri Kota, Bandar Tun Razak, 56100, Kuala Lumpur, Wilayah Persekutuan Kuala Lumpur, Malaysia (as at 6 Apr. 2007);amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;Kuala Lumpur;;;;;;NO;(90-00-04 Flat Sri Kota, Bandar Tun Razak, 56100, Kuala Lumpur, Wilayah Persekutuan Kuala Lumpur, Malaysia (as at 23 Apr. 2010));MY;MALAYSIA;117946;EN;90-00-04 Flat Sri Kota, Bandar Tun Razak, 56100, Kuala Lumpur, Wilayah Persekutuan Kuala Lumpur, Malaysia (as at 23 Apr. 2010);amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;Kuala Lumpur;;;;;;NO;(B-3B-19 Glenview Villa, Jalan 49 Off Jalan Kuari, Taman Pinggiran Cheras, 56000, Kuala Lumpur, Wilayah Persekutuan Kuala Lumpur, Malaysia (as at 30 Jan. 2014));MY;MALAYSIA;117947;EN;B-3B-19 Glenview Villa, Jalan 49 Off Jalan Kuari, Taman Pinggiran Cheras, 56000, Kuala Lumpur, Wilayah Persekutuan Kuala Lumpur, Malaysia (as at 30 Jan. 2014);amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-06-03;3;6;1966;;;NO;GREGORIAN;;;Negri Sembilan;;MY;MALAYSIA;117948;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"660603-05-5267 (id-National identification card) (issued by National Registration Department of Malaysia; issued to Mohd Rafi bin Udin)";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;MY;;117951;EN;"issued by National Registration Department of Malaysia; issued to Mohd Rafi bin Udin";amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;; +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A31142734 (passport-National passport) (issued by Immigration Department of Malaysia on 2013-11-06 valid to 2015-11-06)(issued by the Immigration Department of Malaysia, expiration date 6 Nov. 2015);NO;NO;NO;NO;NO;Immigration Department of Malaysia;2013-11-06;;2015-11-06;;;passport;National passport;;MY;;117952;EN;issued by the Immigration Department of Malaysia, expiration date 6 Nov. 2015;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;; +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ID;;117949;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN +28/10/2022;117943;EU.4702.2;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MY;;117950;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN +28/10/2022;117974;EU.4704.0;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Rahman;Abtol;;Abtol Rahman;;;;;117982;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117974;EU.4704.0;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;Abu Abdul Rahman al Filipini;;;;;117983;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117974;EU.4704.0;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;Rahman;Abdul;;Abdul Rahman;;;;;117984;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117974;EU.4704.0;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;Muhammed Reza Lahaman Kiram;;;;;117985;EN;"Senior member of Islamic State in Iraq and the Levant \n(ISIL), listed as Al-Qaida in Iraq. Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online \nvideo. Physical description: height: 156cm; weight: 60 kg (as at Sep. 2016); eye colour: black; hair colour: \nblack; build: medium; high cheekbones. Speaks \nTagalog, \nEnglish, Arabic.";amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117974;EU.4704.0;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(location since 2015);SY;SYRIAN ARAB REPUBLIC;117975;EN;location since 2015;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117974;EU.4704.0;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;(96 IlangIlang, Sarmiento Subdivision, Panabo, Davao City, Eastern Mindanao, Philippines (previous address));PH;PHILIPPINES;117976;EN;96 IlangIlang, Sarmiento Subdivision, Panabo, Davao City, Eastern Mindanao, Philippines (previous address);amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117974;EU.4704.0;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;Zamboanga;;;;;;NO;(Brgy Recodo, Zamboanga City, Western Mindanao, Philippines (previous address));PH;PHILIPPINES;117977;EN;Brgy Recodo, Zamboanga City, Western Mindanao, Philippines (previous address);amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117974;EU.4704.0;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1990-03-03;3;3;1990;;;NO;GREGORIAN;;;;Zamboanga;PH;PHILIPPINES;117978;EN;Zamboanga City, Zamboanga del Sur, Philippines.;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;117974;EU.4704.0;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EC3524065 (other-Other identification number) (Philippines number EC3524065);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;PH;;117980;EN;Philippines number EC3524065;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;; +28/10/2022;117974;EU.4704.0;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;XX3966391 (passport-National passport) (issued by Department of Foreign Affairs of Philippines on 2015-02-25 valid to 2020-02-24);NO;NO;NO;NO;NO;Department of Foreign Affairs of Philippines;2015-02-25;;2020-02-24;;;passport;National passport;;PH;;117981;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;; +28/10/2022;117974;EU.4704.0;;2018-08-23;;(Date of UN designation: 2018-08-23);P;person;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PH;;117979;EN;;amendment;commission;2018-08-27;2018-08-27;2018/1204 (OJ L217I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1204&from=EN +28/10/2022;118025;EU.4721.38;LYi.027;2018-09-11;;(UN ID: LYi.027)\n(Date of UN designation: 2018-09-11)\n(Name of mother Salma Abdula Younis.\n\nListed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;Ibrahim Saeed Salim Jadhran;;;;Leader of armed militias;118127;EN;;amendment;council;2018-09-19;2018-09-19;2018/1245 (OJ L235/1);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1245&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118025;EU.4721.38;LYi.027;2018-09-11;;(UN ID: LYi.027)\n(Date of UN designation: 2018-09-11)\n(Name of mother Salma Abdula Younis.\n\nListed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;Ibrahim Saeed Salem Awad Aissa Hamed Dawoud Al Jadhran;;;;;122765;EN;Good quality alias;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118025;EU.4721.38;LYi.027;2018-09-11;;(UN ID: LYi.027)\n(Date of UN designation: 2018-09-11)\n(Name of mother Salma Abdula Younis.\n\nListed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-10-29;29;10;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;122761;EN;;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118025;EU.4721.38;LYi.027;2018-09-11;;(UN ID: LYi.027)\n(Date of UN designation: 2018-09-11)\n(Name of mother Salma Abdula Younis.\n\nListed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137803 (other-Other identification number) (Personal identification no.);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;122762;EN;Personal identification no.;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;; +28/10/2022;118025;EU.4721.38;LYi.027;2018-09-11;;(UN ID: LYi.027)\n(Date of UN designation: 2018-09-11)\n(Name of mother Salma Abdula Younis.\n\nListed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119820043341 (other-Other identification number) (National identification no.);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;122763;EN;National identification no.;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;; +28/10/2022;118025;EU.4721.38;LYi.027;2018-09-11;;(UN ID: LYi.027)\n(Date of UN designation: 2018-09-11)\n(Name of mother Salma Abdula Younis.\n\nListed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;S/263963 (passport-National passport) (on 2012-11-08);NO;NO;NO;NO;NO;;2012-11-08;;;;;passport;National passport;;00;;122764;EN;;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;; +28/10/2022;118025;EU.4721.38;LYi.027;2018-09-11;;(UN ID: LYi.027)\n(Date of UN designation: 2018-09-11)\n(Name of mother Salma Abdula Younis.\n\nListed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze));P;person;amendment;council;2020-03-06;2020-03-06;2020/371 (OJ L71);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0371&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LY;;118126;EN;;amendment;council;2018-09-19;2018-09-19;2018/1245 (OJ L235/1);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1245&from=EN +28/10/2022;118274;EU.4741.73;QDe.159;2018-10-04;;(UN ID: QDe.159)\n(Date of UN designation: 2018-10-04)\n(Associated with Al-Qaida, the Organization of Al-Qaida in the Islamic Maghreb, Ansar Eddine and Al-Mourabitoun. Operations in Mali and Burkina Faso.\nUNLI-04.10.2018);E;enterprise;amendment;commission;2018-10-08;2018-10-08;2018/1494 (OJ L252 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1494&from=EN;;;;Jama'a Nusrat ul-Islam wa al-Muslimin (JNIM);;;;;120407;EN;;amendment;commission;2018-10-08;2018-10-08;2018/1494 (OJ L252 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1494&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118274;EU.4741.73;QDe.159;2018-10-04;;(UN ID: QDe.159)\n(Date of UN designation: 2018-10-04)\n(Associated with Al-Qaida, the Organization of Al-Qaida in the Islamic Maghreb, Ansar Eddine and Al-Mourabitoun. Operations in Mali and Burkina Faso.\nUNLI-04.10.2018);E;enterprise;amendment;commission;2018-10-08;2018-10-08;2018/1494 (OJ L252 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1494&from=EN;;;;JNIM;;;;;120409;EN;;amendment;commission;2018-10-08;2018-10-08;2018/1494 (OJ L252 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1494&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118362;EU.4761.11;QDi.419;2018-10-15;;(UN ID: QDi.419)\n(Date of UN designation: 2018-10-15)\n(UNLI-15.10.2018);P;person;amendment;commission;2019-10-17;2019-10-18;2019/1731 (OJ L264);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:264:FULL&from=EN%20;CHOUDARY;ANJEM;;ANJEM CHOUDARY;;;;;118409;EN;;amendment;commission;2018-10-18;2018-10-18;2018/1562 (OJ L261 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:261I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118362;EU.4761.11;QDi.419;2018-10-15;;(UN ID: QDi.419)\n(Date of UN designation: 2018-10-15)\n(UNLI-15.10.2018);P;person;amendment;commission;2019-10-17;2019-10-18;2019/1731 (OJ L264);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:264:FULL&from=EN%20;;;;Abu Luqman;;;;;118410;EN;;amendment;commission;2018-10-18;2018-10-18;2018/1562 (OJ L261 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:261I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118362;EU.4761.11;QDi.419;2018-10-15;;(UN ID: QDi.419)\n(Date of UN designation: 2018-10-15)\n(UNLI-15.10.2018);P;person;amendment;commission;2019-10-17;2019-10-18;2019/1731 (OJ L264);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:264:FULL&from=EN%20;;;;;;;;;;;;;;;;;;;London;;;;;;NO;;GB;UNITED KINGDOM;118405;EN;;amendment;commission;2019-10-17;2019-10-18;2019/1731 (OJ L264);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:264:FULL&from=EN%20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118362;EU.4761.11;QDi.419;2018-10-15;;(UN ID: QDi.419)\n(Date of UN designation: 2018-10-15)\n(UNLI-15.10.2018);P;person;amendment;commission;2019-10-17;2019-10-18;2019/1731 (OJ L264);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:264:FULL&from=EN%20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-01-18;18;1;1967;;;NO;GREGORIAN;;;;Welling, London;GB;UNITED KINGDOM;118406;EN;;amendment;commission;2019-10-17;2019-10-18;2019/1731 (OJ L264);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:264:FULL&from=EN%20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118362;EU.4761.11;QDi.419;2018-10-15;;(UN ID: QDi.419)\n(Date of UN designation: 2018-10-15)\n(UNLI-15.10.2018);P;person;amendment;commission;2019-10-17;2019-10-18;2019/1731 (OJ L264);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:264:FULL&from=EN%20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;516384722 (passport-National passport) (issued by Passport Office Glasgow on 2013-05-06 valid to 2023-06-06)(United Kingdom of Great Britain and Northern Ireland number 516384722, issued on 6 May 2013 (issued by Passport Office Glasgow, expires 06 Jun. 2023));NO;NO;NO;NO;NO;Passport Office Glasgow;2013-05-06;;2023-06-06;;;passport;National passport;;GB;;118408;EN;United Kingdom of Great Britain and Northern Ireland number 516384722, issued on 6 May 2013 (issued by Passport Office Glasgow, expires 06 Jun. 2023);amendment;commission;2018-10-18;2018-10-18;2018/1562 (OJ L261 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:261I:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;118362;EU.4761.11;QDi.419;2018-10-15;;(UN ID: QDi.419)\n(Date of UN designation: 2018-10-15)\n(UNLI-15.10.2018);P;person;amendment;commission;2019-10-17;2019-10-18;2019/1731 (OJ L264);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:264:FULL&from=EN%20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GB;;118407;EN;United Kingdom of Great Britain and Northern Ireland;amendment;commission;2018-10-18;2018-10-18;2018/1562 (OJ L261 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2018:261I:FULL&from=EN +28/10/2022;118383;EU.4762.10;;2018-10-15;;(Date of UN designation: 2018-10-15);P;person;amendment;council;2018-10-15;2018-10-15;2018/1539 (OJ L257I;EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1539&from=EN;BOUGUETOF;Hocine;;Hocine BOUGUETOF;;;;;118384;EN;;amendment;council;2018-10-15;2018-10-15;2018/1539 (OJ L257I;EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1539&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118383;EU.4762.10;;2018-10-15;;(Date of UN designation: 2018-10-15);P;person;amendment;council;2018-10-15;2018-10-15;2018/1539 (OJ L257I;EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1539&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-07-01;1;7;1959;;;NO;GREGORIAN;;;Tebessa;;DZ;ALGERIA;118385;EN;;amendment;council;2018-10-15;2018-10-15;2018/1539 (OJ L257I;EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1539&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118383;EU.4762.10;;2018-10-15;;(Date of UN designation: 2018-10-15);P;person;amendment;council;2018-10-15;2018-10-15;2018/1539 (OJ L257I;EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1539&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DZ;;118386;EN;;amendment;council;2018-10-15;2018-10-15;2018/1539 (OJ L257I;EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1539&from=EN +28/10/2022;118547;EU.4781.46;;2018-11-19;;(Date of UN designation: 2018-11-19);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;al-Khuwayt;Taha;;Taha al-Khuwayt;;;;;118548;EN;low quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118547;EU.4781.46;;2018-11-19;;(Date of UN designation: 2018-11-19);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Hajji Abd al-Nasr;;;;;118549;EN;good quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118547;EU.4781.46;;2018-11-19;;(Date of UN designation: 2018-11-19);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;Abdelnasser;Hajji;;Hajji Abdelnasser;;;;;118550;EN;good quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118547;EU.4781.46;;2018-11-19;;(Date of UN designation: 2018-11-19);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Taha Ibrahim Abdallah Bakr Al Khuwayt;;;;Former ISIL governor of al-Jazira Province, military leader in the Syrian Arab Republic as well as member and chair of the ISIL Delegated Committee.;118551;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118547;EU.4781.46;;2018-11-19;;(Date of UN designation: 2018-11-19);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Mullah Khuwayt;;;;;141004;EN;low quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118547;EU.4781.46;;2018-11-19;;(Date of UN designation: 2018-11-19);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Mullah Taha;;;;;141005;EN;low quality alias;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118547;EU.4781.46;;2018-11-19;;(Date of UN designation: 2018-11-19);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Hajji ‘Abd Al-Nasir;;;;;141006;EN;formerly listed as;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118547;EU.4781.46;;2018-11-19;;(Date of UN designation: 2018-11-19);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;طه إبراهيم عبد الله بكر ال خويت;AR;;;;141007;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118547;EU.4781.46;;2018-11-19;;(Date of UN designation: 2018-11-19);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;(Prison in Iraq. In custody of Iraq since 2019.);IQ;IRAQ;141008;EN;Prison in Iraq. In custody of Iraq since 2019.;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118547;EU.4781.46;;2018-11-19;;(Date of UN designation: 2018-11-19);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;1969;NO;GREGORIAN;;;;Tall 'Afar;IQ;IRAQ;118553;EN;;amendment;commission;2018-11-22;2018-11-22;2018/1809 (OJ L 296I;TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1809&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118547;EU.4781.46;;2018-11-19;;(Date of UN designation: 2018-11-19);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;118554;EN;;amendment;commission;2018-11-22;2018-11-22;2018/1809 (OJ L 296I;TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1809&from=EN +28/10/2022;118593;EU.4801.12;LYi.28;;;(UN ID: LYi.28);P;person;amendment;council;2018-11-29;2018-11-29;2018/1863 (OJ L304);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1863&from=EN;Badi;Salah;;Salah Badi;;;;Senior commander of the armed anti-GNA Al-Somood front, also known as Fakhr or ‘Pride of Libya’, and the Misratan Al Marsa Central Shield brigade;118594;EN;;amendment;council;2018-11-29;2018-11-29;2018/1863 (OJ L304);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R1863&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118627;EU.4821.47;;2018-12-10;;(Date of UN designation: 2018-12-10);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Ольга Валеріівна ПОЗДНЯКОВА;;F;;;118628;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118627;EU.4821.47;;2018-12-10;;(Date of UN designation: 2018-12-10);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;POZDNYAKOVA;Olga;Valeriyivna;Olga Valeriyivna POZDNYAKOVA;;F;;;118629;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118627;EU.4821.47;;2018-12-10;;(Date of UN designation: 2018-12-10);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Ольга Валерьевна ПОЗДНЯКОВА;;F;;;118630;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118627;EU.4821.47;;2018-12-10;;(Date of UN designation: 2018-12-10);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;POZDNYAKOVA;Olga;Valeryevna;Olga Valeryevna POZDNYAKOVA;;F;;;118631;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118627;EU.4821.47;;2018-12-10;;(Date of UN designation: 2018-12-10);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;POZDNYAKOVA;Olga;Valerievna;Olga Valerievna POZDNYAKOVA;;F;;Former ‘Chairperson’ of the ‘Central Electoral Commission’ of the so-called ‘Donetsk People’s Republic’. Former head of the Directorate for Domestic Policy within the administration of the so-called ‘Head of the Donetsk People’s Republic’.;118632;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118627;EU.4821.47;;2018-12-10;;(Date of UN designation: 2018-12-10);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Olga Valerijivna POZDNJAKOVA;SV;;;;137456;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118627;EU.4821.47;;2018-12-10;;(Date of UN designation: 2018-12-10);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Olga Valerjevna POZDNJAKOVA;SV;;;;137457;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118627;EU.4821.47;;2018-12-10;;(Date of UN designation: 2018-12-10);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-03-30;30;3;1982;;;NO;GREGORIAN;;;Rostov Oblast;Shakhty;RU;RUSSIAN FEDERATION;118633;EN;USSR (now Russian Federation);amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118691;EU.4830.17;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Олена Валеріівна КРАВЧЕНКО;;F;;;118693;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118691;EU.4830.17;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KRAVCHENKO;Olena;Valeriyivna;Olena Valeriyivna KRAVCHENKO;;F;;;118694;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118691;EU.4830.17;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Елена Валериевна КРАВЧЕНКО;;F;;;118695;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118691;EU.4830.17;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KRAVCHENKO;Elena;Valeryevna;Elena Valeryevna KRAVCHENKO;;F;;;118696;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118691;EU.4830.17;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;KRAVCHENKO;Elena;Valerievna;Elena Valerievna KRAVCHENKO;;F;;“Chairperson” of the “Central Electoral Commission” of the so-called “Luhansk People's Republic”.;118697;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118691;EU.4830.17;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-02-22;22;2;1983;;;NO;GREGORIAN;;;;Sverdlovsk (Ekaterinburg);00;UNKNOWN;118692;EN;Sverdlovsk (Ekaterinburg), USSR (now Russian Federation);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118698;EU.4831.16;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Леонід Іванович ПАСІЧНИК;;M;;;118700;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118698;EU.4831.16;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;PASICHNYK;Leonid;Ivanovych;Leonid Ivanovych PASICHNYK;;M;;;118701;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118698;EU.4831.16;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Леонид Иванович ПАСЕЧНИК;;M;;;118702;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118698;EU.4831.16;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;PASECHNIK;Leonid;Ivanovich;Leonid Ivanovich PASECHNIK;;M;;“Elected leader” of the so-called “Luhansk People's Republic”.;118703;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118698;EU.4831.16;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-03-15;15;3;1970;;;NO;GREGORIAN;;Luhansk, Voroshilovghrad Oblast;;Voroshilovgrad;UA;UKRAINE;122882;EN;POB: Voroshilovgrad, Luhansk, Voroshilovghrad Oblast, Ukrainian SSR (now Ukraine);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118704;EU.4832.15;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Володимир Анатолійович БІДЬОВКА;;M;;;118706;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118704;EU.4832.15;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;BIDIOVKA;Volodymyr;Anatoliyovych;Volodymyr Anatoliyovych BIDIOVKA;;M;;;118707;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118704;EU.4832.15;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Владимир Анатольевич БИДЁВКА;;M;;;118708;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118704;EU.4832.15;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;BIDEVKA;Vladimir;Anatolievich;Vladimir Anatolievich BIDEVKA;;M;;;118709;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118704;EU.4832.15;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;BIDYOVKA;Vladimir;Anatolievich;Vladimir Anatolievich BIDYOVKA;;M;;“Chairperson” of the so-called “People's Council” of the so-called “Donetsk People's Republic”.;118710;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118704;EU.4832.15;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-03-07;7;3;1981;;;NO;GREGORIAN;;;Donetsk Oblast;Makeevka;UA;UKRAINE;118705;EN;Makeevka – Donetsk Oblast;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118711;EU.4833.14;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Денис Николаевич МИРОШНИЧЕНКО;;M;;;118713;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118711;EU.4833.14;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;MIROSHNICHENKO;Denis;Nikolaevich;Denis Nikolaevich MIROSHNICHENKO;;M;;“Chairperson” of the so-called “People's Council” of the so-called “Luhansk People's Republic”.;118714;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118711;EU.4833.14;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-12-08;8;12;1987;;;NO;GREGORIAN;;;;Luhansk;UA;UKRAINE;118712;EN;Luhansk;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118715;EU.4834.13;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Олексій Олексійович НАЙДЕНКО;;M;;;118717;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118715;EU.4834.13;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;NAYDENKO;Oleksii;Oleksiyovych;Oleksii Oleksiyovych NAYDENKO;;M;;;118718;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118715;EU.4834.13;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Алексей Алексеевич НАЙДЕНКО;;M;;;118719;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118715;EU.4834.13;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;NAYDENKO;Aleksey;Alekseevich;Aleksey Alekseevich NAYDENKO;;M;;“Deputy Chair” of the “Central Electoral Commission” of the so-called “Donetsk People's Republic”.;118720;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118715;EU.4834.13;;;Date of listing: 10.12.2018;(Designation details: Date of listing: 10.12.2018);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-06-02;2;6;1980;;;NO;GREGORIAN;;;;Donetsk;UA;UKRAINE;118716;EN;Donetsk;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118721;EU.4835.12;;;10.12.2018;(Designation details: 10.12.2018);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Володимир Юрійович ВИСОЦЬКИЙ;;M;;;118723;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118721;EU.4835.12;;;10.12.2018;(Designation details: 10.12.2018);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;VYSOTSKYI;Volodymyr;Yuriyovych;Volodymyr Yuriyovych VYSOTSKYI;;M;;;118724;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118721;EU.4835.12;;;10.12.2018;(Designation details: 10.12.2018);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Владимир Юрьевич ВЫСОЦКИЙ;;M;;;118725;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118721;EU.4835.12;;;10.12.2018;(Designation details: 10.12.2018);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;VYSOTSKIY;Vladimir;Yurievich;Vladimir Yurievich VYSOTSKIY;;M;;Former 'Secretary' of the 'Central Electoral Commission' of the so-called 'Donetsk People's Republic'. Acting Head of the 'Central Electoral Commission' of the so‐called 'Donetsk People's Republic'.;118726;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118721;EU.4835.12;;;10.12.2018;(Designation details: 10.12.2018);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-04-07;7;4;1985;;;NO;GREGORIAN;;;Autonomous 'Republic of Crimea';Lekarstvennoe village;UA;UKRAINE;118722;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118727;EU.4836.11;;;10.12.2018;(Designation details: 10.12.2018);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Максим Олександрович СВІДЧЕНКО;;M;;;118729;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118727;EU.4836.11;;;10.12.2018;(Designation details: 10.12.2018);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;SVIDCHENKO;Maksym;Oleksandrovych;Maksym Oleksandrovych SVIDCHENKO;;M;;;118730;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118727;EU.4836.11;;;10.12.2018;(Designation details: 10.12.2018);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Максим Александрович СВИДЧЕНКО;;M;;;118731;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118727;EU.4836.11;;;10.12.2018;(Designation details: 10.12.2018);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;SVIDCHENKO;Maksim;Aleksandrovich;Maksim Aleksandrovich SVIDCHENKO;;M;;'Deputy Chair' of the 'Central Electoral Commission' of the so-called 'Luhansk People's Republic'.;118732;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118727;EU.4836.11;;;10.12.2018;(Designation details: 10.12.2018);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-04-06;6;4;1978;;;NO;GREGORIAN;;;;Luhansk;UA;UKRAINE;118728;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118733;EU.4837.10;;;10.12.2018;(Designation details: 10.12.2018);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Катерина Василівна ТЕРЕЩЕНКО;;F;;;118735;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118733;EU.4837.10;;;10.12.2018;(Designation details: 10.12.2018);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;TERESHCHENKO;Kateryna;Vasylivna;Kateryna Vasylivna TERESHCHENKO;;F;;;118736;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118733;EU.4837.10;;;10.12.2018;(Designation details: 10.12.2018);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Екатерина Васильевна ТЕРЕЩЕНКО;;F;;;118737;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118733;EU.4837.10;;;10.12.2018;(Designation details: 10.12.2018);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;TERESHCHENKO;Ekaterina;Vasilievna;Ekaterina Vasilievna TERESHCHENKO;;F;;;118738;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118733;EU.4837.10;;;10.12.2018;(Designation details: 10.12.2018);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;TERESHCHENKO;Ekaterina;Vasilyevna;Ekaterina Vasilyevna TERESHCHENKO;;F;;'Secretary' of the 'Central Electoral Commission' of the so‐called 'Luhansk People's Republic'.;118739;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118733;EU.4837.10;;;10.12.2018;(Designation details: 10.12.2018);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-05-31;31;5;1986;;;NO;GREGORIAN;;;;Luhansk;UA;UKRAINE;118734;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118868;EU.4861.20;;;Date of listing: 21/12/2018;(Designation details: Date of listing: 21/12/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;Ba Kyaw;;M;;Ba Kyaw is a Staff Sergeant in the 564th Light Infantry Battalion (LIB) of the Myanmar Armed Forces (Tatmadaw).;118869;EN;;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118870;EU.4862.19;;;Date of listing: 21/12/2018;(Designation details: Date of listing: 21/12/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;Tun Naing;;M;;Tun Naing is the Commanding Officer of the Border Guard Police (BGP) base in Taung Bazar.;118871;EN;;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118872;EU.4863.18;;2018-12-21;;(Date of UN designation: 2018-12-21);P;person;amendment;council;2021-04-30;2021-05-01;2021/706 (OJ L147);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.147.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A147%3ATOC;;;;Khin Hlaing;;M;Major General;The Triangle Region Commander of the Myanmar Armed Forces (Tatmadaw). The former Commander of the 99th Light Infantry Division (LID) and was the Commander of the North-eastern \nCommand of the Myanmar Armed Forces (Tatmadaw).;118874;EN;;amendment;council;2021-04-30;2021-05-01;2021/706 (OJ L147);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.147.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A147%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118872;EU.4863.18;;2018-12-21;;(Date of UN designation: 2018-12-21);P;person;amendment;council;2021-04-30;2021-05-01;2021/706 (OJ L147);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.147.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A147%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-05-02;2;5;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;118873;EN;;amendment;council;2018-12-21;2018-12-21;2018/2053 (OJ L327 I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32018R2053&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118875;EU.4864.17;;;Date of listing: 21/12/2018;(Designation details: Date of listing: 21/12/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;Aung Myo Thu;;M;;Major Aung Myo Thu is the Field Unit Commander of 33rd Light Infantry Division (LID) of the Myanmar Armed Forces (Tatmadaw).;118876;EN;;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118877;EU.4865.16;;;Date of listing: 21/12/2018;(Designation details: Date of listing: 21/12/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;Thant Zaw Win;;M;;Thant Zaw Win is a Major in the 564th Light Infantry Battalion (LIB) of the Myanmar Armed Forces (Tatmadaw).;118878;EN;;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118879;EU.4866.15;;;Date of listing: 21/12/2018;(Designation details: Date of listing: 21/12/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;Kyaw Chay;;M;;Kyaw Chay is a Corporal in the Border Guard Police (BGP). He was formerly based in Zay Di Pyin and was the Commanding Officer of the BGP base in Zay Di Pyin in the period around 25 August 2017 when a series of human rights violations were committed by the BGP under his command.;118880;EN;;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118881;EU.4867.14;;;Date of listing: 21/12/2018;(Designation details: Date of listing: 21/12/2018);P;person;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;Nyi Nyi Swe;;M;;Major General Nyi Nyi Swe is the former Commander of the Northern Command of the Myanmar Armed Forces (Tatmadaw).;118882;EN;;amendment;council;2019-04-30;2019-05-01;2019/672 (OJ L114);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:114:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118917;EU.4881.55;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;ASSADI Assadollah;;;;;118918;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118917;EU.4881.55;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Assadollah Asadi;;;;;133582;EN;;amendment;council;2022-02-04;2022-02-05;2022/147 (OJ L25);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118917;EU.4881.55;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-12-22;22;12;1971;;;NO;GREGORIAN;;;;Teheran;IR;IRAN (ISLAMIC REPUBLIC OF);118919;EN;;amendment;council;2019-01-09;2019-01-09;2019/24 (OJ L6);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0024&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118917;EU.4881.55;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D9016657 (passport-National passport) (diplomatic)(Iranian diplomatic passport number);YES;NO;NO;NO;NO;;;;;;;passport;National passport;;IR;;118922;EN;Iranian diplomatic passport number;amendment;council;2020-07-31;2020-08-01;2020/1128 (OJ L247);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.247.01.0001.01.ENG&toc=OJ:L:2020:247:TOC;;;;;;;;;;;;; +28/10/2022;118917;EU.4881.55;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;118920;EN;;amendment;council;2019-01-09;2019-01-09;2019/24 (OJ L6);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0024&from=EN +28/10/2022;118923;EU.4882.54;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;HASHEMI MOGHADAM Saeid;;;;;118924;EN;;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118923;EU.4882.54;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-08-06;6;8;1962;;;NO;GREGORIAN;;;;Teheran;IR;IRAN (ISLAMIC REPUBLIC OF);118925;EN;;amendment;council;2019-01-09;2019-01-09;2019/24 (OJ L6);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0024&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118923;EU.4882.54;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;D9016290 (passport-National passport) (valid to 2019-02-04);NO;NO;NO;NO;NO;;;;2019-02-04;;;passport;National passport;;00;;118928;EN;;amendment;council;2019-01-09;2019-01-09;2019/24 (OJ L6);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0024&from=EN;;;;;;;;;;;;; +28/10/2022;118923;EU.4882.54;;;;;P;person;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;118926;EN;;amendment;council;2019-01-09;2019-01-09;2019/24 (OJ L6);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0024&from=EN +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Directorate for Internal Security of the Iranian Ministry for Intelligence and Security;;;;;118930;EN;;amendment;council;2019-01-09;2019-01-09;2019/24 (OJ L6);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0024&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Den inre säkerhetstjänsten vid iranska underrättelse- och säkerhetsministeriet;SV;;;;123207;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Iranin tiedustelu- ja turvallisuusministeriön sisäisen turvallisuuden osasto;FI;;;;123208;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Direktorat za notranjo varnost iranskega Ministrstva za obveščevalno dejavnost in varnost;SL;;;;123209;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Riaditeľstvo pre vnútornú bezpečnosť iránskeho ministerstva spravodajstva a bezpečnosti;SK;;;;123210;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Direcția pentru securitate internă a Ministerului iranian pentru Informații și Securitate;RO;;;;123211;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Direção da Segurança Interna do Ministério das Informações e Segurança do Iraque;PT;;;;123212;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Wydział Bezpieczeństwa Wewnętrznego irańskiego Ministerstwa Wywiadu i Bezpieczeństwa;PL;;;;123213;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Directoraat binnenlandse veiligheid van het Iraanse Ministerie voor Inlichtingen en Veiligheid;NL;;;;123214;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Id-Direttorat għas-Sigurtà Interna tal-Ministeru Iranjan għall-Intelliġenza u s-Sigurtà;MT;;;;123215;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Az iráni Hírszerzési és Biztonsági Minisztérium Belső Biztonsági Igazgatósága;HU;;;;123216;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Irano žvalgybos ir saugumo ministerijos Vidaus saugumo direktoratas;LT;;;;123217;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Direzione della sicurezza interna del ministero iraniano dell’intelligence e della sicurezza;IT;;;;123218;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Uprava za unutarnju sigurnost iranskog Ministarstva obavještajne djelatnosti i sigurnosti;HR;;;;123219;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Stiúrthóireacht na Slándála Inmheánaí in Aireacht Faisnéise agus Slándála na hIaráine;GA;;;;123220;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Direction de la sécurité intérieure du ministère iranien du renseignement et de la sécurité;FR;;;;123221;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Διεύθυνση εσωτερικής ασφάλειας του ιρανικού Υπουργείου Πληροφοριών και Ασφάλειας;EL;;;;123222;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Iraani luure- ja julgeolekuministeeriumi sisejulgeoleku direktoraat;ET;;;;123223;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Direktion für innere Sicherheit des iranischen Ministeriums für Nachrichtenwesen und Sicherheit;DE;;;;123224;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Direktoratet for intern sikkerhed under Irans efterretnings- og sikkerhedsministerium;DA;;;;123225;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Ředitelství pro vnitřní bezpečnost íránského Ministerstva pro zpravodajskou činnost a bezpečnost;CS;;;;123226;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Dirección de la Seguridad Interior del Ministerio de Inteligencia y Seguridad iraní;ES;;;;123227;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118929;EU.4883.53;;;;;E;enterprise;amendment;council;2022-07-19;2022-07-20;2022/1230 (OJ L190);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.190.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A190%3ATOC;;;;Дирекция за вътрешна сигурност на Министерството на разузнаването и сигурността на Иран;BG;;;;123228;EN;;amendment;council;2020-01-14;2020-01-15;2020/19 (OJ L8I);TERR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.008.01.0001.01.ENG&toc=OJ:L:2020:008I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118994;EU.4901.21;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;Tarq Yasmina;;;;;118995;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118994;EU.4901.21;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;Tariq YASMINA;;M;Colonel;Tariq YASMINA acts as the liaison officer between the Scientific Studies and Research Centre (SSRC) and the Presidential Palace;118996;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118994;EU.4901.21;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;118997;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN +28/10/2022;118998;EU.4902.20;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;Mohammed Khaled Nasri;;;;;118999;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118998;EU.4902.20;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;Khaled NASRI;;M;Head of Institute 1000 of the SSRC;Director of Institute 1000, the division of the Scientific Studies and Research Centre (SSRC);119000;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118998;EU.4902.20;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;Haled Natsri;;;;;119001;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;118998;EU.4902.20;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;119002;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN +28/10/2022;119026;EU.4908.14;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;Владимир Степанович АЛЕКСЕЕВ;;;;;119027;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119026;EU.4908.14;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;Vladimir Stepanovich ALEXSEYEV;;M;First Deputy Head of the GRU;First Deputy Head of the GRU (a.k.a. GU);119028;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119029;EU.4909.13;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;Игорь Олегович КОСТЮКОВ;;;;;119030;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119029;EU.4909.13;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;Igor Olegovich KOSTYUKOV;;M;Head of the GRU;;119031;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119184;EU.4941.91;;;date of listing: 21.1.2019;(Designation details: date of listing: 21.1.2019);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;ZUGHAIB;Walid;;Walid ZUGHAIB;;M;Doctor, Head of Institute 2000 of the SSRC;Walid Zughaib is the Director of Institute 2000, the division of the Scientific Studies and Research Centre (SSRC).;119185;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119184;EU.4941.91;;;date of listing: 21.1.2019;(Designation details: date of listing: 21.1.2019);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;Zughayb;Walid;;Walid Zughayb;;M;;;119186;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119184;EU.4941.91;;;date of listing: 21.1.2019;(Designation details: date of listing: 21.1.2019);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;Zgha'ib;Walid;;Walid Zgha'ib;;M;;;119187;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119184;EU.4941.91;;;date of listing: 21.1.2019;(Designation details: date of listing: 21.1.2019);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;Zughib;Walid;;Walid Zughib;;M;;;119188;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119184;EU.4941.91;;;date of listing: 21.1.2019;(Designation details: date of listing: 21.1.2019);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;119189;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN +28/10/2022;119190;EU.4942.90;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;Ahmad;Firas;;Firas Ahmad;;M;;;119191;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119190;EU.4942.90;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;AHMED;Firas;;Firas AHMED;;M;Colonel, Head of Security Office at Institute 1000 of the SSRC;Firas Ahmed is the Director of the Security Office of Institute 1000, the division of the Scientific Studies and Research Centre (SSRC);119192;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119190;EU.4942.90;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-01-21;21;1;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;119193;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119190;EU.4942.90;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;119194;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN +28/10/2022;119195;EU.4943.89;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2020-10-13;2020-10-14;2020/1463 (OJ L335);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.335.01.0001.01.ENG&toc=OJ:L:2020:335:TOC;Sa'id Sa'id;Said;;Said Sa'id Sa'id;;M;;;119196;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119195;EU.4943.89;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2020-10-13;2020-10-14;2020/1463 (OJ L335);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.335.01.0001.01.ENG&toc=OJ:L:2020:335:TOC;Saeed;Said;;Said Saeed;;M;;;119197;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119195;EU.4943.89;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2020-10-13;2020-10-14;2020/1463 (OJ L335);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.335.01.0001.01.ENG&toc=OJ:L:2020:335:TOC;SAID;Said;;Said SAID;;M;Doctor, member of Institute 3000 (a.k.a. Institute 6000) of the SSRC;Said Said is a significant figure in Institute 3000 a.k.a. Institute 6000, the division of the Scientific Studies and Research Centre (SSRC);119198;EN;;amendment;council;2020-10-13;2020-10-14;2020/1463 (OJ L335);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.335.01.0001.01.ENG&toc=OJ:L:2020:335:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119195;EU.4943.89;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2020-10-13;2020-10-14;2020/1463 (OJ L335);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.335.01.0001.01.ENG&toc=OJ:L:2020:335:TOC;;;;سعيد سعيد;;M;;;125924;EN;;amendment;council;2020-10-13;2020-10-14;2020/1463 (OJ L335);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.335.01.0001.01.ENG&toc=OJ:L:2020:335:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119195;EU.4943.89;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2020-10-13;2020-10-14;2020/1463 (OJ L335);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.335.01.0001.01.ENG&toc=OJ:L:2020:335:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-12-11;11;12;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;119199;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119200;EU.4944.88;;2019-01-21;date of listing: 21.01.2019;(Date of UN designation: 2019-01-21)\n(Designation details: date of listing: 21.01.2019);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Anas Tlass;;M;;;119203;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119200;EU.4944.88;;2019-01-21;date of listing: 21.01.2019;(Date of UN designation: 2019-01-21)\n(Designation details: date of listing: 21.01.2019);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Anas Tals;;M;;;119204;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119200;EU.4944.88;;2019-01-21;date of listing: 21.01.2019;(Date of UN designation: 2019-01-21)\n(Designation details: date of listing: 21.01.2019);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Anas Tuls;;M;;;119205;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119200;EU.4944.88;;2019-01-21;date of listing: 21.01.2019;(Date of UN designation: 2019-01-21)\n(Designation details: date of listing: 21.01.2019);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Anas Talous;;M;;;119206;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119200;EU.4944.88;;2019-01-21;date of listing: 21.01.2019;(Date of UN designation: 2019-01-21)\n(Designation details: date of listing: 21.01.2019);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Anas TALAS;;M;;Chairman of the Talas Group;119207;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119200;EU.4944.88;;2019-01-21;date of listing: 21.01.2019;(Date of UN designation: 2019-01-21)\n(Designation details: date of listing: 21.01.2019);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;أنس طلس;AR;M;;;124827;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119200;EU.4944.88;;2019-01-21;date of listing: 21.01.2019;(Date of UN designation: 2019-01-21)\n(Designation details: date of listing: 21.01.2019);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-03-25;25;3;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;119201;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119200;EU.4944.88;;2019-01-21;date of listing: 21.01.2019;(Date of UN designation: 2019-01-21)\n(Designation details: date of listing: 21.01.2019);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;119202;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN +28/10/2022;119208;EU.4945.87;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Samer Zuhair Foz;;M;;;119212;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119208;EU.4945.87;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Samir Fawz;;M;;;119213;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119208;EU.4945.87;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Samir Foz;;M;;;119214;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119208;EU.4945.87;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;FOZ;Samer;;Samer FOZ;;M;;Businessperson operating in Syria.;119215;EN;"Opened a sugar refining factory (""Samer Foz Factory"") in 2021.";amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119208;EU.4945.87;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;سامر فوز;AR;M;;;124830;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119208;EU.4945.87;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Samer Foz bin Zuhair;;M;;;129730;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119208;EU.4945.87;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Duba;Platinum Tower, office no. 2405, Jumeirah Lake Towers;;;;;NO;;AE;UNITED ARAB EMIRATES;129729;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119208;EU.4945.87;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-05-20;20;5;1973;;;NO;GREGORIAN;;;Latakia;Homs;SY;SYRIAN ARAB REPUBLIC;119209;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119208;EU.4945.87;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;U09471711 (passport-National passport) (valid to 2024-07-21)(Turkish Passport);NO;NO;NO;NO;NO;;;;2024-07-21;;;passport;National passport;;TR;;124101;EN;Turkish Passport;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;; +28/10/2022;119208;EU.4945.87;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;06010274705 (other-Other identification number) (Syrian national number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;SY;;129728;EN;Syrian national number;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;; +28/10/2022;119208;EU.4945.87;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TR;;119210;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN +28/10/2022;119208;EU.4945.87;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;119211;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN +28/10/2022;119228;EU.4948.84;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Hussam Mohammed al-Katerji;;M;;;119231;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119228;EU.4948.84;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Hossam Ahmed Muhammad al-Katerji;;M;;;119232;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119228;EU.4948.84;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Hossam Ahmed Mohammed al-Katerji;;M;;;119233;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119228;EU.4948.84;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Hussam Muhammad al-Katerji;;M;;;119234;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119228;EU.4948.84;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;AL-QATARJI;Hussam;;Hussam AL-QATARJI;;M;;CEO of Katerji Group (a.k.a. Al-Qatarji, al-Qatarji Company/Qatirji Company/Khatirji Group/Katerji International Group);119235;EN;"Business interests: National Islamic Bank (Syria), Nabd Contracting and Construction; Arman Hotel and Tourist Management LLC; “Bere Aleppo Private JSC"", a joint venture with the ministry of tourism; BS Company for Oil Services.";amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119228;EU.4948.84;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Mohammed Muhammad al-Katerji;;M;;;119315;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119228;EU.4948.84;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Mohammed al-Katerji;;M;;;119316;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119228;EU.4948.84;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Muhammad al-Katerji;;M;;;119317;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119228;EU.4948.84;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;حسام القاطرجي;AR;M;;;124831;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119228;EU.4948.84;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;AL QATIRJI;Hussam;;Hussam AL QATIRJI;GA;M;;;140956;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119228;EU.4948.84;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;AL QATIRJI;Hussam;;Hussam AL QATIRJI;RO;M;;;140962;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119228;EU.4948.84;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982;;;NO;GREGORIAN;;;;Raqqa;SY;SYRIAN ARAB REPUBLIC;119229;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119228;EU.4948.84;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;119230;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN +28/10/2022;119240;EU.4950.61;;;date of listing: 21.01.201;(Designation details: date of listing: 21.01.201);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;BOSHIROV;Ruslan;;Ruslan BOSHIROV;;M;;;119241;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119240;EU.4950.61;;;date of listing: 21.01.201;(Designation details: date of listing: 21.01.201);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;Анатолий Владимирович ЧЕПИГА;;M;;;119242;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119240;EU.4950.61;;;date of listing: 21.01.201;(Designation details: date of listing: 21.01.201);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;CHEPIGA;Anatoliy;Vladimirovich;Anatoliy Vladimirovich CHEPIGA;;M;;GRU Officer;119243;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119240;EU.4950.61;;;date of listing: 21.01.201;(Designation details: date of listing: 21.01.201);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-04-12;12;4;1978;;;NO;GREGORIAN;;;Nikolaevka, Amur Oblast;;RU;RUSSIAN FEDERATION;119244;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119240;EU.4950.61;;;date of listing: 21.01.201;(Designation details: date of listing: 21.01.201);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-04-12;12;4;1978;;;NO;GREGORIAN;;;Dushanbe;;TJ;TAJIKISTAN;119245;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119240;EU.4950.61;;;date of listing: 21.01.201;(Designation details: date of listing: 21.01.201);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-04-05;5;4;1979;;;NO;GREGORIAN;;;Dushanbe;;TJ;TAJIKISTAN;119246;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119240;EU.4950.61;;;date of listing: 21.01.201;(Designation details: date of listing: 21.01.201);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-04-05;5;4;1979;;;NO;GREGORIAN;;;Nikolaevka, Amur Oblast;;RU;RUSSIAN FEDERATION;119247;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119260;EU.4953.58;;;date of listing: 21.01.201;(Designation details: date of listing: 21.01.201);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;PETROV;Alexander;;Alexander PETROV;;M;;;119263;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119260;EU.4953.58;;;date of listing: 21.01.201;(Designation details: date of listing: 21.01.201);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;Александр Евгеньевич МИШКИН;;M;;;119264;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119260;EU.4953.58;;;date of listing: 21.01.201;(Designation details: date of listing: 21.01.201);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;MISHKIN;Alexander;Yevgeniyevich;Alexander Yevgeniyevich MISHKIN;;M;;GRU Officer;119265;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119260;EU.4953.58;;;date of listing: 21.01.201;(Designation details: date of listing: 21.01.201);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-07-13;13;7;1979;;;NO;GREGORIAN;;;Kotlas;;RU;RUSSIAN FEDERATION;119261;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119260;EU.4953.58;;;date of listing: 21.01.201;(Designation details: date of listing: 21.01.201);P;person;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-07-13;13;7;1979;;;NO;GREGORIAN;;;Loyga;;RU;RUSSIAN FEDERATION;119262;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119270;EU.4955.56;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;Centre de Recherche de Kaboun;;;;;119271;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119270;EU.4955.56;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;Centre d'Études et de Recherches Scientifiques (CERS);;;;;119272;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119270;EU.4955.56;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;Scientific Studies and Research Centre (SSRC);;;;The Scientific Studies and Research Centre (SSRC) is the Syrian regime's principal entity for the development of chemical weapon;119273;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119270;EU.4955.56;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;SSRC;;;;;119274;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119270;EU.4955.56;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;CERS;;;;;119275;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119270;EU.4955.56;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;Damascus;Barzeh Street;4470;;;;NO;;00;UNKNOWN;119277;EN;;amendment;council;2019-01-21;2019-01-21;2019/84 (OJ L18 I);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0084&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119287;EU.4957.54;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Aman Damascus JSC;;;;;119289;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119287;EU.4957.54;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Aman Damascus Joint Stock Company;;;;;119290;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119287;EU.4957.54;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;119288;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119291;EU.4958.53;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Bunyan Damascus Private JSC;;;;;119293;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119291;EU.4958.53;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Bunyan Damascus Private Joint Stock Company;;;;;119294;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119291;EU.4958.53;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;119292;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119295;EU.4959.52;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mirza;;;;;119297;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119295;EU.4959.52;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;119296;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119304;EU.4961.29;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Nazir Ahmad;;M;;;119307;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119304;EU.4961.29;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Mohammed Jamal Eddine;;M;;;120641;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119304;EU.4961.29;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Mohammed Nazer JAMAL EDDIN;;M;;Co‐founder and majority shareholder of Apex Development and Projects LLC and founder of A’ayan Company for Projects and Equipment. In May 2019, he created “Trillium Private JSC”, a company involved in the trade of building materials and electrical products.;124100;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119304;EU.4961.29;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;محمد ناذر جمال الدين;AR;M;;;124828;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119304;EU.4961.29;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Jamal Aldiyn;;M;;;140740;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119304;EU.4961.29;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-01-02;2;1;1962;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;119308;EN;;amendment;council;2019-05-20;2019-05-21;2019/798 (OJ L132);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.132.01.0001.01.ENG&toc=OJ:L:2019:132:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119304;EU.4961.29;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;N 011612445 (passport-National passport) (issue no. 002-17-L022286);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;SY;;120643;EN;issue no. 002-17-L022286;amendment;council;2019-05-20;2019-05-21;2019/798 (OJ L132);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.132.01.0001.01.ENG&toc=OJ:L:2019:132:TOC;;;;;;;;;;;;; +28/10/2022;119304;EU.4961.29;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"010-30208342 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;SY;;120644;EN;;amendment;council;2019-05-20;2019-05-21;2019/798 (OJ L132);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.132.01.0001.01.ENG&toc=OJ:L:2019:132:TOC;;;;;;;;;;;;; +28/10/2022;119304;EU.4961.29;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;119309;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN +28/10/2022;119310;EU.4962.28;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;al-Tarazi;Mazen;;Mazen al-Tarazi;;M;;;119311;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119310;EU.4962.28;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;AL-TARAZI;Mazin;;Mazin AL-TARAZI;;M;;Businessperson. In September 2019, he created “al-Dana Group Investments LLC”, a company involved in export-import and investing in tourism facilities and commercial complexes.;119312;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119310;EU.4962.28;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;مازن الترزي;AR;M;;;124829;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119310;EU.4962.28;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;119313;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119310;EU.4962.28;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;119314;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Khalid Bassam Zubedi;;M;;;119319;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Khalid Bassam Zubaidi;;M;;;119320;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Khalid Bassam al-Zubedi;;M;;;119321;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Khalid Bassam al-Zubaidi;;M;;;119322;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Khalid Zubedi;;M;;;119323;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Khalid Zubaidi;;M;;;119324;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Khalid al-Zubedi;;M;;;119325;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Khalid al-Zubaidi;;M;;;119326;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Mohammed Khaled Zubedi;;M;;;119327;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Mohammed Khaled Zubaidi;;M;;;119328;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Mohammed Khaled al-Zubedi;;M;;;119329;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Mohammed Khaled al-Zubaidi;;M;;;119330;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Khaled al-Zubedi;;M;;;119331;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Khaled Zubedi;;M;;;119332;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Khaled Zubaidi;;M;;;119333;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;AL-ZUBAIDI;Khaled;;Khaled AL-ZUBAIDI;;M;;Co-owner of Zubaidi and Qalei LLC, Director of Agar Investment Company, General Manager of Al Zubaidi company and Al Zubaidi & Al Taweet Contracting Company, Director and Owner of Zubaidi Development Company, and co-owner of Enjaz Investment Company.;119334;EN;Sponsor of Syrian football club “Wihda FC” through his company “Hijaz Company”. Member of the Federation of Syrian Chambers of Tourism since 2019.;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;خالد الزبيدي;AR;M;;;124826;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119318;EU.4963.27;;2019-01-21;;(Date of UN designation: 2019-01-21);P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;119335;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN +28/10/2022;119336;EU.4964.26;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rawafid Damascus Private Joint Stock Company;;;;;119337;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119336;EU.4964.26;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rawafid Tributary Damascus Private Joint Stock Company;;;;;119338;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119336;EU.4964.26;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rawafed Tributary Damascus Private Joint Stock Company;;;;;119339;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119336;EU.4964.26;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Rawafed Damascus Private Joint Stock Company;;;;;119340;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119336;EU.4964.26;;;date of listing: 21.01.2019;(Designation details: date of listing: 21.01.2019);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Damascus;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;119341;EN;;amendment;council;2019-01-21;2019-01-21;2019/85 (OJ L18 I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0085&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119427;EU.5001.25;;;;;P;person;amendment;council;2019-02-18;2019-02-18;2019/270 (OJ L46 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0270&from=EN;;;;Brahim el KHAYARI;;;;;119429;EN;;amendment;council;2019-02-18;2019-02-18;2019/270 (OJ L46 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0270&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119427;EU.5001.25;;;;;P;person;amendment;council;2019-02-18;2019-02-18;2019/270 (OJ L46 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0270&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1992-05-07;7;5;1992;;;NO;GREGORIAN;;;;Nîmes;FR;FRANCE;119428;EN;;amendment;council;2019-02-18;2019-02-18;2019/270 (OJ L46 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0270&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119427;EU.5001.25;;;;;P;person;amendment;council;2019-02-18;2019-02-18;2019/270 (OJ L46 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0270&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;FR;;119430;EN;;amendment;council;2019-02-18;2019-02-18;2019/270 (OJ L46 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0270&from=EN +28/10/2022;119516;EU.5021.60;QDi.421;2019-02-28;;(UN ID: QDi.421)\n(Date of UN designation: 2019-02-28)\n(Son of Usama bin Laden (deceased).);P;person;amendment;commission;2019-03-19;2019-03-20;2019/431 (OJ L75);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:075:FULL&from=EN;bin Laden;Hamza Usama Muhammad;;Hamza Usama Muhammad bin Laden;;;;;119596;EN;;amendment;commission;2019-03-05;2019-03-06;2019/353 (OJ L64);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0353&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119516;EU.5021.60;QDi.421;2019-02-28;;(UN ID: QDi.421)\n(Date of UN designation: 2019-02-28)\n(Son of Usama bin Laden (deceased).);P;person;amendment;commission;2019-03-19;2019-03-20;2019/431 (OJ L75);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:075:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989-05-09;9;5;1989;;;NO;GREGORIAN;;;;Jeddah;SA;SAUDI ARABIA;119594;EN;;amendment;commission;2019-03-05;2019-03-06;2019/353 (OJ L64);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0353&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119548;EU.5041.95;;;Date of listing: 04/03/2019.;(Designation details: Date of listing: 04/03/2019.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Khaled AL-RAHMOUN;;M;Major General;Minister of Interior. Appointed in November 2018.;119549;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119548;EU.5041.95;;;Date of listing: 04/03/2019.;(Designation details: Date of listing: 04/03/2019.);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;;;NO;GREGORIAN;;;;Idleb;SY;SYRIAN ARAB REPUBLIC;119550;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119551;EU.5042.94;;;Date of listing: 4.3.2019;(Designation details: Date of listing: 4.3.2019);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mohammad Rami Radwan MARTINI;;M;;Minister of Tourism. Appointed in November 2018.;119552;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119551;EU.5042.94;;;Date of listing: 4.3.2019;(Designation details: Date of listing: 4.3.2019);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;;;NO;GREGORIAN;;;;Aleppo;SY;SYRIAN ARAB REPUBLIC;119553;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119554;EU.5043.93;;2019-03-04;;(Date of UN designation: 2019-03-04);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Imad Muwaffaq AL-AZAB;;M;;Former Minister of Education;119555;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119554;EU.5043.93;;2019-03-04;;(Date of UN designation: 2019-03-04);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;عماد موفق العزب;AR;M;;;126574;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119554;EU.5043.93;;2019-03-04;;(Date of UN designation: 2019-03-04);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;;;NO;GREGORIAN;;;Damascus Countryside;;SY;SYRIAN ARAB REPUBLIC;119556;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119557;EU.5044.92;;;Date of listing: 4.3.2019;(Designation details: Date of listing: 4.3.2019);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Bassam Bashir IBRAHIM;;M;;Minister of Higher Education. Appointed in November 2018.;119558;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119557;EU.5044.92;;;Date of listing: 4.3.2019;(Designation details: Date of listing: 4.3.2019);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;;;Hama;SY;SYRIAN ARAB REPUBLIC;119559;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119561;EU.5045.91;;;Date of listing: 4.3.2019;(Designation details: Date of listing: 4.3.2019);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Suhail Mohammad ABDULLATIF;;M;;Minister of Public Works and Housing. Appointed in November 2018.;119562;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119561;EU.5045.91;;;Date of listing: 4.3.2019;(Designation details: Date of listing: 4.3.2019);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;;Lattakia;SY;SYRIAN ARAB REPUBLIC;119563;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119564;EU.5046.90;;;Date of listing: 4.3.2019;(Designation details: Date of listing: 4.3.2019);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Iyad Mohammad AL-KHATIB;;M;;Minister of communications and Technology. Appointed in November 2018.;119565;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119564;EU.5046.90;;;Date of listing: 4.3.2019;(Designation details: Date of listing: 4.3.2019);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;119566;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119620;EU.5061.33;;;;;E;enterprise;amendment;commission;2009-01-27;2009-01-26;77/2009 (OJ L23);ZWE;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:023:0005:0024:EN:PDF;;;;Zimbabwe Defence Industries;;;;;119621;EN;;amendment;commission;2009-01-27;2009-01-26;77/2009 (OJ L23);ZWE;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:023:0005:0024:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119620;EU.5061.33;;;;;E;enterprise;amendment;commission;2009-01-27;2009-01-26;77/2009 (OJ L23);ZWE;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:023:0005:0024:EN:PDF;;;;;;;;;;;;;;;;;;;Harare;10th Floor, Trustee House, 55 Samora Machel Avenue;6597;;;;NO;;ZW;ZIMBABWE;119622;EN;;amendment;commission;2008-07-24;2008-07-24;702/2008 (OJ L195);ZWE;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:195:0019:0021:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119629;EU.5062.32;;;Date of listing: 15.3.2019;(Designation details: Date of listing: 15.3.2019);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Sergey Nikolayevich STANKEVICH;;M;;Head of Border Directorate of the Federal Security Service of the Russian Federation for “Republic of Crimea and City of Sevastopol”, Rear Admiral.;119630;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119629;EU.5062.32;;;Date of listing: 15.3.2019;(Designation details: Date of listing: 15.3.2019);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Сергей Николаевич СТАНКЕВИЧ;;M;;;119632;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119629;EU.5062.32;;;Date of listing: 15.3.2019;(Designation details: Date of listing: 15.3.2019);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-01-27;27;1;1963;;;NO;GREGORIAN;;;;Kaliningrad;RU;RUSSIAN FEDERATION;122883;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119633;EU.5063.31;;;Date of listing: 15.3.2019;(Designation details: Date of listing: 15.3.2019);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Андрей Борисович ШЕИН;;M;;;119634;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119633;EU.5063.31;;;Date of listing: 15.3.2019;(Designation details: Date of listing: 15.3.2019);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Andrey Borisovich SHEIN;;M;;Deputy Head of Border Directorate – Head of Coast Guard Unit of the Federal Security Service of the Russian Federation for “Republic of Crimea and City of Sevastopol.”;119635;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119633;EU.5063.31;;;Date of listing: 15.3.2019;(Designation details: Date of listing: 15.3.2019);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-06-10;10;6;1971;;;NO;GREGORIAN;;Ivanovskaya Oblast;;;RU;RUSSIAN FEDERATION;122884;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119637;EU.5064.30;;;15.3.2019;(Designation details: 15.3.2019);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Алексей Михайлович САЛЯЕВ;;M;;;119639;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119637;EU.5064.30;;;15.3.2019;(Designation details: 15.3.2019);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Aleksey Mikhailovich SALYAYEV;;M;;;119641;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119637;EU.5064.30;;;15.3.2019;(Designation details: 15.3.2019);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Aleksey Mikhailovich SALYAEV;;M;;Commanding officer of the border patrol boat “Don” (side markings 353) of the Border Guard Service of the Federal Security Service of the Russian Federation.;119642;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119637;EU.5064.30;;;15.3.2019;(Designation details: 15.3.2019);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-08-22;22;8;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;119643;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119637;EU.5064.30;;;15.3.2019;(Designation details: 15.3.2019);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-12-04;4;12;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;122885;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119644;EU.5065.29;;;15.3.2019;(Designation details: 15.3.2019);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Андрей Олегович ШИПИЦИН;;M;;;122932;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119644;EU.5065.29;;;15.3.2019;(Designation details: 15.3.2019);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Andrei Olegovich SHIPITSIN;;M;;Commanding officer of the border patrol boat ‘Izumrud’ of the Border Guard Service of the Federal Security Service of the Russian Federation.;122934;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119644;EU.5065.29;;;15.3.2019;(Designation details: 15.3.2019);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-12-25;25;12;1969;;;NO;GREGORIAN;;;;Astrakhan;RU;RUSSIAN FEDERATION;122886;EN;;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119650;EU.5066.28;;;15.3.2019;(Designation details: 15.3.2019);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Алексей Владимирович ШАТОХИН;;M;;;119652;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119650;EU.5066.28;;;15.3.2019;(Designation details: 15.3.2019);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Aleksey Vladimirovich SHATOKHIN;;M;;Head of the Service of the Kerch Control Point for the “Republic of Crimea and City of Sevastopol” of the Federal Security Service of the Russian Federation.;119654;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119650;EU.5066.28;;;15.3.2019;(Designation details: 15.3.2019);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-01-26;26;1;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;119655;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119656;EU.5067.27;;;Date of listing: 15.3.2019;(Designation details: Date of listing: 15.3.2019);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Руслан Александрович РОМАШКИН;;M;;;119657;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119656;EU.5067.27;;;Date of listing: 15.3.2019;(Designation details: Date of listing: 15.3.2019);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;Ruslan Alexandrovich ROMASHKІN;;M;;Head of the Service of the Control Point in the “Republic of Crimea and City of Sevastopol” of the Federal Security Service of the Russian Federation.;119658;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119656;EU.5067.27;;;Date of listing: 15.3.2019;(Designation details: Date of listing: 15.3.2019);P;person;amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-06-15;15;6;1976;;;NO;GREGORIAN;;;;Ruzaevka, Mordovia;RU;RUSSIAN FEDERATION;122887;EN;POB: Ruzaevka, Mordovia (Russian Federation);amendment;council;2020-03-13;2020-03-14;2020/398 (OJ L78);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0398&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119660;EU.5068.26;;;15.3.2019;(Designation details: 15.3.2019);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Сергей Алексеевич ЩЕРБАКОВ;;M;;;119662;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119660;EU.5068.26;;;15.3.2019;(Designation details: 15.3.2019);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Sergey Alekseevich SHCHERBAKOV;;M;;Commanding officer of the anti-submarine ship “Suzdalets” of the Black Sea Fleet of the Russian Federation.;119663;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119660;EU.5068.26;;;15.3.2019;(Designation details: 15.3.2019);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-11-02;2;11;1986;;;NO;GREGORIAN;;;;;00;UNKNOWN;119664;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119665;EU.5069.25;;2019-03-15;;(Date of UN designation: 2019-03-15);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Александр Владимирович ДВОРНИКОВ;;M;;;119666;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119665;EU.5069.25;;2019-03-15;;(Date of UN designation: 2019-03-15);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Aleksandr Vladimirovich DVORNIKOV;;M;;Commander of the Southern Military District of the Russian Armed Forces, Army General;119667;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119665;EU.5069.25;;2019-03-15;;(Date of UN designation: 2019-03-15);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Aleksandr Vladimirovitj DVORNIKOV;SV;;;;137458;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119665;EU.5069.25;;2019-03-15;;(Date of UN designation: 2019-03-15);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-08-22;22;8;1961;;;NO;GREGORIAN;;;Ussuriysk, Primorskiy Krai;;RU;RUSSIAN FEDERATION;119668;EN;;amendment;council;2019-03-15;2019-03-15;2019/409 (OJ L73);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0409&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119746;EU.5081.68;QDe.160;2019-03-22;;(UN ID: QDe.160)\n(Date of UN designation: 2019-03-22)\n(UNLI- 22.03.2019);E;enterprise;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;TARIQ GIDAR GROUP (TGG);;;;Splinter group of Tehrik-e Taliban Pakistan (TTP) (QDe.132). The group was formed in Darra Adam Khel, Federally Administered Tribal Area (FATA), Pakistan, in 2007.;119818;EN;;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119746;EU.5081.68;QDe.160;2019-03-22;;(UN ID: QDe.160)\n(Date of UN designation: 2019-03-22)\n(UNLI- 22.03.2019);E;enterprise;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;THE ASIAN TIGERS;;;;;119819;EN;;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119746;EU.5081.68;QDe.160;2019-03-22;;(UN ID: QDe.160)\n(Date of UN designation: 2019-03-22)\n(UNLI- 22.03.2019);E;enterprise;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;TARIQ GIDAR AFRIDI GROUP;;;;;119820;EN;;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119746;EU.5081.68;QDe.160;2019-03-22;;(UN ID: QDe.160)\n(Date of UN designation: 2019-03-22)\n(UNLI- 22.03.2019);E;enterprise;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;TARIQ AFRIDI GROUP;;;;;119821;EN;;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119746;EU.5081.68;QDe.160;2019-03-22;;(UN ID: QDe.160)\n(Date of UN designation: 2019-03-22)\n(UNLI- 22.03.2019);E;enterprise;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;COMMANDER TARIQ AFRIDI GROUP;;;;;119822;EN;;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119746;EU.5081.68;QDe.160;2019-03-22;;(UN ID: QDe.160)\n(Date of UN designation: 2019-03-22)\n(UNLI- 22.03.2019);E;enterprise;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;TARIQ GEEDAR GROUP;;;;;119823;EN;;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119746;EU.5081.68;QDe.160;2019-03-22;;(UN ID: QDe.160)\n(Date of UN designation: 2019-03-22)\n(UNLI- 22.03.2019);E;enterprise;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;TTP GEEDAR GROUP;;;;;119824;EN;;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119746;EU.5081.68;QDe.160;2019-03-22;;(UN ID: QDe.160)\n(Date of UN designation: 2019-03-22)\n(UNLI- 22.03.2019);E;enterprise;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;TEHREEK-I-TALIBAN PAKISTAN GEEDAR GROUP;;;;;119825;EN;;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119746;EU.5081.68;QDe.160;2019-03-22;;(UN ID: QDe.160)\n(Date of UN designation: 2019-03-22)\n(UNLI- 22.03.2019);E;enterprise;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;TTP-TARIQ GIDAR GROUP;;;;;119826;EN;;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119746;EU.5081.68;QDe.160;2019-03-22;;(UN ID: QDe.160)\n(Date of UN designation: 2019-03-22)\n(UNLI- 22.03.2019);E;enterprise;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;TEHRIK-E-TALIBAN-TARIQ GIDAR GROUP;;;;;119827;EN;;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119746;EU.5081.68;QDe.160;2019-03-22;;(UN ID: QDe.160)\n(Date of UN designation: 2019-03-22)\n(UNLI- 22.03.2019);E;enterprise;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;;;;;;;;;;;;;;;;;;;;Afghanistan/Pakistan border region;;NO;((Afghanistan/Pakistan border region));AF;AFGHANISTAN;119816;EN;(Afghanistan/Pakistan border region);amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;119746;EU.5081.68;QDe.160;2019-03-22;;(UN ID: QDe.160)\n(Date of UN designation: 2019-03-22)\n(UNLI- 22.03.2019);E;enterprise;amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;;;;;;;;;;;;;;;;;;;;Afghanistan/Pakistan border region;;NO;((Afghanistan/Pakistan border region));PK;PAKISTAN;119817;EN;(Afghanistan/Pakistan border region);amendment;commission;2019-03-27;2019-03-28;2019/507 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2019.085.01.0016.01.ENG&toc=OJ:L:2019:085:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120040;EU.5101.34;QDi.422;2019-05-01;;(UN ID: QDi.422)\n(Date of UN designation: 2019-05-01)\n(UNLI- 01.05.2019);P;person;amendment;commission;2019-05-03;2019-05-03;2019/696 (OJ L116 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0696&from=EN;;;;Mohammed Masood Azhar Alvi;;;;Founder of Jaish-i-Mohammed (QDe.019). Former leader of Harakat ul-Mujahidin / HUM (QDe.008).;120069;EN;;amendment;commission;2019-05-03;2019-05-03;2019/696 (OJ L116 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0696&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120040;EU.5101.34;QDi.422;2019-05-01;;(UN ID: QDi.422)\n(Date of UN designation: 2019-05-01)\n(UNLI- 01.05.2019);P;person;amendment;commission;2019-05-03;2019-05-03;2019/696 (OJ L116 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0696&from=EN;;;;Masud Azhar;;;;;120070;EN;Low quality alias;amendment;commission;2019-05-03;2019-05-03;2019/696 (OJ L116 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0696&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120040;EU.5101.34;QDi.422;2019-05-01;;(UN ID: QDi.422)\n(Date of UN designation: 2019-05-01)\n(UNLI- 01.05.2019);P;person;amendment;commission;2019-05-03;2019-05-03;2019/696 (OJ L116 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0696&from=EN;;;;Wali Adam Esah;;;;;120071;EN;Low quality alias;amendment;commission;2019-05-03;2019-05-03;2019/696 (OJ L116 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0696&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120040;EU.5101.34;QDi.422;2019-05-01;;(UN ID: QDi.422)\n(Date of UN designation: 2019-05-01)\n(UNLI- 01.05.2019);P;person;amendment;commission;2019-05-03;2019-05-03;2019/696 (OJ L116 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0696&from=EN;;;;Wali Adam Isah;;;;;120072;EN;Low quality alias;amendment;commission;2019-05-03;2019-05-03;2019/696 (OJ L116 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0696&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120040;EU.5101.34;QDi.422;2019-05-01;;(UN ID: QDi.422)\n(Date of UN designation: 2019-05-01)\n(UNLI- 01.05.2019);P;person;amendment;commission;2019-05-03;2019-05-03;2019/696 (OJ L116 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0696&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-07-10;10;7;1968;;;NO;GREGORIAN;;;Bahawalpur, Punjab Province;;PK;PAKISTAN;120066;EN;;amendment;commission;2019-05-03;2019-05-03;2019/696 (OJ L116 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0696&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120040;EU.5101.34;QDi.422;2019-05-01;;(UN ID: QDi.422)\n(Date of UN designation: 2019-05-01)\n(UNLI- 01.05.2019);P;person;amendment;commission;2019-05-03;2019-05-03;2019/696 (OJ L116 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0696&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-06-10;10;6;1968;;;NO;GREGORIAN;;;Bahawalpur, Punjab Province;;PK;PAKISTAN;120067;EN;;amendment;commission;2019-05-03;2019-05-03;2019/696 (OJ L116 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0696&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120040;EU.5101.34;QDi.422;2019-05-01;;(UN ID: QDi.422)\n(Date of UN designation: 2019-05-01)\n(UNLI- 01.05.2019);P;person;amendment;commission;2019-05-03;2019-05-03;2019/696 (OJ L116 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0696&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;120068;EN;;amendment;commission;2019-05-03;2019-05-03;2019/696 (OJ L116 I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0696&from=EN +28/10/2022;120128;EU.5121.69;;2019-05-14;;(Date of UN designation: 2019-05-14);E;enterprise;regulation;un;2019-05-14;2019-05-14;UNLI - 14.05.2019;UNLI;https://www.un.org/press/en/2019/sc13806.doc.htm;;;;SOUTH ASIAN CHAPTER OF ISIL;;;;;120129;EN;;regulation;un;2019-05-14;2019-05-14;UNLI - 14.05.2019;UNLI;https://www.un.org/press/en/2019/sc13806.doc.htm;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120128;EU.5121.69;;2019-05-14;;(Date of UN designation: 2019-05-14);E;enterprise;regulation;un;2019-05-14;2019-05-14;UNLI - 14.05.2019;UNLI;https://www.un.org/press/en/2019/sc13806.doc.htm;;;;ISIL’S SOUTH ASIA BRANCH;;;;;120130;EN;;regulation;un;2019-05-14;2019-05-14;UNLI - 14.05.2019;UNLI;https://www.un.org/press/en/2019/sc13806.doc.htm;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120128;EU.5121.69;;2019-05-14;;(Date of UN designation: 2019-05-14);E;enterprise;regulation;un;2019-05-14;2019-05-14;UNLI - 14.05.2019;UNLI;https://www.un.org/press/en/2019/sc13806.doc.htm;;;;ISIS WILAYAT KHORASAN;;;;;120131;EN;;regulation;un;2019-05-14;2019-05-14;UNLI - 14.05.2019;UNLI;https://www.un.org/press/en/2019/sc13806.doc.htm;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120128;EU.5121.69;;2019-05-14;;(Date of UN designation: 2019-05-14);E;enterprise;regulation;un;2019-05-14;2019-05-14;UNLI - 14.05.2019;UNLI;https://www.un.org/press/en/2019/sc13806.doc.htm;;;;ISLAMIC STATE’S KHORASAN PROVINCE;;;;;120132;EN;;regulation;un;2019-05-14;2019-05-14;UNLI - 14.05.2019;UNLI;https://www.un.org/press/en/2019/sc13806.doc.htm;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120128;EU.5121.69;;2019-05-14;;(Date of UN designation: 2019-05-14);E;enterprise;regulation;un;2019-05-14;2019-05-14;UNLI - 14.05.2019;UNLI;https://www.un.org/press/en/2019/sc13806.doc.htm;;;;ISIL KHORASAN;;;;;120133;EN;;regulation;un;2019-05-14;2019-05-14;UNLI - 14.05.2019;UNLI;https://www.un.org/press/en/2019/sc13806.doc.htm;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120128;EU.5121.69;;2019-05-14;;(Date of UN designation: 2019-05-14);E;enterprise;regulation;un;2019-05-14;2019-05-14;UNLI - 14.05.2019;UNLI;https://www.un.org/press/en/2019/sc13806.doc.htm;;;;ISLAMIC STATE IN IRAQ AND THE LEVANT - KHORASAN;;;;;120134;EN;;regulation;un;2019-05-14;2019-05-14;UNLI - 14.05.2019;UNLI;https://www.un.org/press/en/2019/sc13806.doc.htm;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120128;EU.5121.69;;2019-05-14;;(Date of UN designation: 2019-05-14);E;enterprise;regulation;un;2019-05-14;2019-05-14;UNLI - 14.05.2019;UNLI;https://www.un.org/press/en/2019/sc13806.doc.htm;;;;ISLAMIC STATE IN IRAQ AND THE LEVANT - KHORASAN (ISIL- K);;;;;120135;EN;Islamic State of Iraq and the Levant - Khorasan (ISIL - K) was formed on January 10, 2015 by a former Tehrik-e Taliban Pakistan (TTP) commander and was established by former Taliban faction commanders who swore an oath of allegiance to the Islamic State of Iraq and the Levant (listed as Al-Qaida in Iraq).;regulation;un;2019-05-14;2019-05-14;UNLI - 14.05.2019;UNLI;https://www.un.org/press/en/2019/sc13806.doc.htm;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120128;EU.5121.69;;2019-05-14;;(Date of UN designation: 2019-05-14);E;enterprise;regulation;un;2019-05-14;2019-05-14;UNLI - 14.05.2019;UNLI;https://www.un.org/press/en/2019/sc13806.doc.htm;;;;ISIL- K;;;;;120136;EN;;regulation;un;2019-05-14;2019-05-14;UNLI - 14.05.2019;UNLI;https://www.un.org/press/en/2019/sc13806.doc.htm;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120128;EU.5121.69;QDe.161;2019-05-14;;(UN ID: QDe.161)\n(Date of UN designation: 2019-05-14)\n(ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. Date of designation referred to in Article 7e(e): 14.5.2019.);E;enterprise;amendment;commission;2019-05-17;2019-05-17;2019/791 (OJ L129);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0791&from=EN;;;;SOUTH ASIAN CHAPTER OF ISIL;;;;;122627;EN;;amendment;commission;2019-05-17;2019-05-17;2019/791 (OJ L129);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0791&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120128;EU.5121.69;QDe.161;2019-05-14;;(UN ID: QDe.161)\n(Date of UN designation: 2019-05-14)\n(ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. Date of designation referred to in Article 7e(e): 14.5.2019.);E;enterprise;amendment;commission;2019-05-17;2019-05-17;2019/791 (OJ L129);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0791&from=EN;;;;ISIL’S SOUTH ASIA BRANCH;;;;;122628;EN;;amendment;commission;2019-05-17;2019-05-17;2019/791 (OJ L129);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0791&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120128;EU.5121.69;QDe.161;2019-05-14;;(UN ID: QDe.161)\n(Date of UN designation: 2019-05-14)\n(ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. Date of designation referred to in Article 7e(e): 14.5.2019.);E;enterprise;amendment;commission;2019-05-17;2019-05-17;2019/791 (OJ L129);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0791&from=EN;;;;ISIS WILAYAT KHORASAN;;;;;122629;EN;;amendment;commission;2019-05-17;2019-05-17;2019/791 (OJ L129);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0791&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120128;EU.5121.69;QDe.161;2019-05-14;;(UN ID: QDe.161)\n(Date of UN designation: 2019-05-14)\n(ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. Date of designation referred to in Article 7e(e): 14.5.2019.);E;enterprise;amendment;commission;2019-05-17;2019-05-17;2019/791 (OJ L129);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0791&from=EN;;;;ISLAMIC STATE’S KHORASAN PROVINCE;;;;;122630;EN;;amendment;commission;2019-05-17;2019-05-17;2019/791 (OJ L129);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0791&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120128;EU.5121.69;QDe.161;2019-05-14;;(UN ID: QDe.161)\n(Date of UN designation: 2019-05-14)\n(ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. Date of designation referred to in Article 7e(e): 14.5.2019.);E;enterprise;amendment;commission;2019-05-17;2019-05-17;2019/791 (OJ L129);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0791&from=EN;;;;ISIL KHORASAN;;;;;122631;EN;;amendment;commission;2019-05-17;2019-05-17;2019/791 (OJ L129);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0791&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120128;EU.5121.69;QDe.161;2019-05-14;;(UN ID: QDe.161)\n(Date of UN designation: 2019-05-14)\n(ISIL – K has claimed responsibility for numerous attacks in both Afghanistan and Pakistan. Date of designation referred to in Article 7e(e): 14.5.2019.);E;enterprise;amendment;commission;2019-05-17;2019-05-17;2019/791 (OJ L129);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0791&from=EN;;;;ISLAMIC STATE IN IRAQ AND THE LEVANT - KHORASAN (ISIL- K);;;;;122633;EN;Islamic State of Iraq and the Levant - Khorasan (ISIL - K) was formed on January 10, 2015 by a former Tehrik-e Taliban Pakistan (TTP) commander and was established by former Taliban faction commanders who swore an oath of allegiance to the Islamic State of Iraq and the Levant (listed as Al-Qaida in Iraq).;amendment;commission;2019-05-17;2019-05-17;2019/791 (OJ L129);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R0791&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120786;EU.5141.7;;2019-08-14;;(Date of UN designation: 2019-08-14);P;person;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;Abderahmane al Maghrebi;;;;;120831;EN;Good quality alias;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120786;EU.5141.7;;2019-08-14;;(Date of UN designation: 2019-08-14);P;person;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;علي ما يشو;;;;;120832;EN;;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120786;EU.5141.7;;2019-08-14;;(Date of UN designation: 2019-08-14);P;person;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;ALI MAYCHOU;;;;;120833;EN;;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120786;EU.5141.7;;2019-08-14;;(Date of UN designation: 2019-08-14);P;person;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;Abderrahmane le Marocain;;;;;120834;EN;Good quality alias;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120786;EU.5141.7;;2019-08-14;;(Date of UN designation: 2019-08-14);P;person;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;Abou Abderahmane Sanhaji;;;;;120835;EN;Low quality alias;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120786;EU.5141.7;;2019-08-14;;(Date of UN designation: 2019-08-14);P;person;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;;ML;MALI;120826;EN;;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120786;EU.5141.7;;2019-08-14;;(Date of UN designation: 2019-08-14);P;person;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-05-25;25;5;1983;;;NO;GREGORIAN;;;;Taza;MA;MOROCCO;120827;EN;;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120786;EU.5141.7;;2019-08-14;;(Date of UN designation: 2019-08-14);P;person;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"V06359364 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;MA;;120829;EN;;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;120786;EU.5141.7;;2019-08-14;;(Date of UN designation: 2019-08-14);P;person;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"AB704306 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;MA;;120830;EN;;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;120786;EU.5141.7;;2019-08-14;;(Date of UN designation: 2019-08-14);P;person;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA;;120828;EN;;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN +28/10/2022;120797;EU.5142.6;;2019-08-14;;(Date of UN designation: 2019-08-14);P;person;amendment;commission;2019-08-27;2019-08-28;2019/1375 (OJ L223);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1375&from=EN;;;;Ag Mossa;;;;;120837;EN;Good quality alias;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120797;EU.5142.6;;2019-08-14;;(Date of UN designation: 2019-08-14);P;person;amendment;commission;2019-08-27;2019-08-28;2019/1375 (OJ L223);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1375&from=EN;;;;BAH AG MOUSSA;;;;;120838;EN;;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120797;EU.5142.6;;2019-08-14;;(Date of UN designation: 2019-08-14);P;person;amendment;commission;2019-08-27;2019-08-28;2019/1375 (OJ L223);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1375&from=EN;;;;Ammi Salim;;;;;120839;EN;Good quality alias;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120797;EU.5142.6;;2019-08-14;;(Date of UN designation: 2019-08-14);P;person;amendment;commission;2019-08-27;2019-08-28;2019/1375 (OJ L223);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1375&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-10-28;28;10;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;120866;EN;;amendment;commission;2019-08-27;2019-08-28;2019/1375 (OJ L223);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1375&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120797;EU.5142.6;;2019-08-14;;(Date of UN designation: 2019-08-14);P;person;amendment;commission;2019-08-27;2019-08-28;2019/1375 (OJ L223);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1375&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-12-31;31;12;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;120867;EN;;amendment;commission;2019-08-27;2019-08-28;2019/1375 (OJ L223);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1375&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120797;EU.5142.6;;2019-08-14;;(Date of UN designation: 2019-08-14);P;person;amendment;commission;2019-08-27;2019-08-28;2019/1375 (OJ L223);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1375&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-01-01;1;1;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;120868;EN;;amendment;commission;2019-08-27;2019-08-28;2019/1375 (OJ L223);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1375&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;120797;EU.5142.6;;2019-08-14;;(Date of UN designation: 2019-08-14);P;person;amendment;commission;2019-08-27;2019-08-28;2019/1375 (OJ L223);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1375&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ML;;120836;EN;;amendment;commission;2019-08-20;2019-08-20;2019/1353 (OJ L217);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:217:FULL&from=EN +28/10/2022;121025;EU.5181.77;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Néstor Neptali BLANCO HURTADO;;M;;Major in the Bolivarian National Guard (GNB), operated alongside officials in the Directorate‐ General of Military Counter-Intelligence (Dirección General de Contrainteligencia Militar (DGCIM)) since at least December 2017.;121026;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121025;EU.5181.77;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-09-26;26;9;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;121027;EN;;amendment;council;2019-09-27;2019-09-27;2019/1586 (OJ L248);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:248:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121025;EU.5181.77;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-15222057 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;121029;EN;ID number;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;; +28/10/2022;121030;EU.5182.76;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Rafael Ramón BLANCO MARRERO;;M;;Division General of the Venezuelan \nBolivarian National Army since 5 July \n2019. Former deputy Director of the \nDirectorate-General of Military Counter-Intelligence (Dirección General de \nContrainteligencia Militar (DGCIM).;121031;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121030;EU.5182.76;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-02-28;28;2;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;121032;EN;;amendment;council;2019-09-27;2019-09-27;2019/1586 (OJ L248);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:248:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121030;EU.5182.76;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-6250588 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;121033;EN;ID number;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;; +28/10/2022;121034;EU.5183.75;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Carlos Alberto CALDERÓN CHIRINOS;;M;;Senior office holder (referred to as Commissioner, Director and Director General) in the Bolivarian National Intelligence Service (SEBIN).;121035;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121034;EU.5183.75;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V‐10352300 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;121305;EN;ID number;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;; +28/10/2022;121036;EU.5184.74;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Alexis Enrique ESCALONA MARRERO;;M;;Chief in Charge of the National Office Against Organized Crime and Terrorist Financing (ONDOFT) from January 2028 until May 2019. National Commander of the National Anti-Extortion and Kidnapping Command (Comando Nacional Antiextorsión y Secuestro (CONAS)) between 2014 and 2017.;121037;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121036;EU.5184.74;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-10-12;12;10;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;121038;EN;;amendment;council;2019-09-27;2019-09-27;2019/1586 (OJ L248);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:248:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121039;EU.5185.73;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Rafael Antonio FRANCO QUINTERO;;M;;Agent in the Bolivarian National Intelligence Service (SEBIN). Head of Security at Maiquetía International Airport. Head of Investigations at the Directorate-General of Military Counter-Intelligence (Dirección General de Contrainteligencia Militar (DGCIM)) between at least 2017 and December 2018.;121040;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121039;EU.5185.73;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-10-14;14;10;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;121041;EN;;amendment;council;2019-09-27;2019-09-27;2019/1586 (OJ L248);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:248:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121039;EU.5185.73;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-11311672 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;121042;EN;ID number;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;; +28/10/2022;121043;EU.5186.72;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Alexander Enrique GRANKO ARTEAGA;;M;;Head (Director) of the Special Affairs Division (DAE) of the Directorate-General of Military Counter-Intelligence (Dirección General de Contrainteligencia Militar (DGCIM)). Promoted to the rank of lieutenant colonel of the Bolivarian National Guard on 1 July 2020.;121044;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121043;EU.5186.72;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-03-25;25;3;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;121045;EN;;amendment;council;2019-09-27;2019-09-27;2019/1586 (OJ L248);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:248:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121043;EU.5186.72;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-14970215 (other-Other identification number) (ID Number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;121046;EN;ID Number;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;; +28/10/2022;121047;EU.5187.71;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Hannover Esteban GUERRERO MIJARES;;M;;Second Commander and Chief of Staff of \nthe 35th Military Police Brigade since \nAugust 2020. Head of Investigations at the \nDirectorate-General of Military Counter-Intelligence (Dirección General de \nContrainteligencia Militar (DGCIM)) from \nat least April 2019 to August 2019.;121048;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121047;EU.5187.71;;2019-09-27;;(Date of UN designation: 2019-09-27);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-01-14;14;1;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;121049;EN;;amendment;council;2019-09-27;2019-09-27;2019/1586 (OJ L248);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2019:248:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;Abdelrahman Mouhamad Zafir al Dabidi al Jahani;;;Abdelrahman Mouhamad Zafir al Dabidi al Jahani;;;;;121141;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abd Al-Rahman Muhammad Zafir Al-Dubaysi Al-Juhni;;;;;121142;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abd Al-Rahman Muhammad Zafir al-Dubaysi al-Jahni;;;;;121143;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abd Al-Rahman Muhammad Zafir al-Dubaysi al-Jahani;;;;;121144;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abd Al-Rahman Muhammad Zafir al-Dubaysi al-Juhani;;;;;121145;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abdulrhman Mohammed D. Aljahani;;;;;121146;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abu al-Wafa';;;;;121147;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abu Anas;;;;;121148;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abd al-Rahman Muhammad Zafir al-Dabisi al-Jahani;;;;;121149;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abu Wafa al-Saudi;;;;;121150;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abu al-Wafa;;;;;121151;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abd al-Rahman Muhammad Thafir al-Jahni;;;;;121152;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abd al-Rahman Muhammad al-Juhani;;;;;121153;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abdelrahman Mouhamad Zafir al Dabissi Juhan;;;;;121154;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abdelrahman Mouhamad Zafir al Dabissi Juhani;;;;;121155;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;Abou Wafa al Saoudi;;;;;121156;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-12-04;4;12;1971;;;NO;GREGORIAN;;;;Kharj;SA;SAUDI ARABIA;121157;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;;;NO;GREGORIAN;;;;Kharj;SA;SAUDI ARABIA;121158;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"F50859 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;121160;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1027508157 (other-Other identification number) (Saudi Arabian national identification number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;SA;;121161;EN;Saudi Arabian national identification number;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;; +28/10/2022;121140;EU.5201.43;;2014-08-15;;(Date of UN designation: 2014-08-15);P;person;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SA;;121159;EN;;amendment;council;2014-08-21;2014-08-21;914/2014 (OJ L248);TAQA;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32014R0914&from=EN +28/10/2022;121200;EU.5221.78;;;UNSC RESOLUTION 1483 BASIS;(Designation details: UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Rukan Razuki Abd-al-Ghafur Sulaiman Al-Tikriti;;;;Head of Tribal Affairs in Presidential Office;121201;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121200;EU.5221.78;;;UNSC RESOLUTION 1483 BASIS;(Designation details: UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Rukan Abdal-Ghaffur Sulayman al-Majid;;;;;121202;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121200;EU.5221.78;;;UNSC RESOLUTION 1483 BASIS;(Designation details: UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Rukan Razuqi Abd al-Ghafur Al-Majid;;;;;121203;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121200;EU.5221.78;;;UNSC RESOLUTION 1483 BASIS;(Designation details: UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;Rukan Abd al-Ghaffur al-Majid Al-Tikriti Abu Walid;;;;;121204;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121200;EU.5221.78;;;UNSC RESOLUTION 1483 BASIS;(Designation details: UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;;Tikrit;00;UNKNOWN;121205;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121200;EU.5221.78;;;UNSC RESOLUTION 1483 BASIS;(Designation details: UNSC RESOLUTION 1483 BASIS);P;person;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;121206;EN;;regulation;commission;2003-07-08;2003-07-07;1210/2003 (OJ L169);IRQ;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:169:0006:0023:EN:PDF +28/10/2022;121346;EU.5241.16;;;Date of designation: 25/11/2019;(Designation details: Date of designation: 25/11/2019);P;person;amendment;council;2019-11-25;2019-11-25;2019/1943 (OJ L303 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1943&from=EN;PIROTTE;Guillaume;;Guillaume PIROTTE;;;;;121347;EN;;amendment;council;2019-11-25;2019-11-25;2019/1943 (OJ L303 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1943&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121346;EU.5241.16;;;Date of designation: 25/11/2019;(Designation details: Date of designation: 25/11/2019);P;person;amendment;council;2019-11-25;2019-11-25;2019/1943 (OJ L303 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1943&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1994-06-07;7;6;1994;;;NO;GREGORIAN;;;;Grasse;FR;FRANCE;121348;EN;;amendment;council;2019-11-25;2019-11-25;2019/1943 (OJ L303 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1943&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121346;EU.5241.16;;;Date of designation: 25/11/2019;(Designation details: Date of designation: 25/11/2019);P;person;amendment;council;2019-11-25;2019-11-25;2019/1943 (OJ L303 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1943&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;FR;;121349;EN;;amendment;council;2019-11-25;2019-11-25;2019/1943 (OJ L303 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32019R1943&from=EN +28/10/2022;121460;EU.5261.51;MLi.004;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.004)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)\n(Corrigendum 2020/116 (OJ L 22) [corr. 20/02/2020-1]);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;AG ALBACHAR;AHMED;;AHMED AG ALBACHAR;;M;;President of the Humanitarian Commission of the Bureau Regional d’Administration et Gestion de Kidal. Businessman. Since early 2018, a special advisor to the Governor of Kidal region. An influential member of the Haut Conseil pour l'unité de l'Azawad (HCUA), belonging to the Ifoghas Tuareg community, Ahmed Ag Albachar also mediates relations between the Coordination des Mouvements de l’Azawad (CMA) and Ansar Dine (QDe.135).;121538;EN;Co-owner of Timitrine Voyage transport company.;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121460;EU.5261.51;MLi.004;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.004)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)\n(Corrigendum 2020/116 (OJ L 22) [corr. 20/02/2020-1]);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;Intahmadou Ag Albachar;;M;;;122681;EN;;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121460;EU.5261.51;MLi.004;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.004)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)\n(Corrigendum 2020/116 (OJ L 22) [corr. 20/02/2020-1]);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;Kidal;Quartier Aliou;;;;;NO;;ML;MALI;121534;EN;;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121460;EU.5261.51;MLi.004;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.004)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)\n(Corrigendum 2020/116 (OJ L 22) [corr. 20/02/2020-1]);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-12-31;31;12;1963;;;NO;GREGORIAN;;Kidal region;;Tin-Essako;ML;MALI;121535;EN;;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121460;EU.5261.51;MLi.004;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.004)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)\n(Corrigendum 2020/116 (OJ L 22) [corr. 20/02/2020-1]);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1 63 08 4 01 001 005E (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;121537;EN;;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;; +28/10/2022;121460;EU.5261.51;MLi.004;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.004)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.)\n(Corrigendum 2020/116 (OJ L 22) [corr. 20/02/2020-1]);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ML;;121536;EN;;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN +28/10/2022;121467;EU.5262.50;MLi.005;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.005)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;AG ALHOUSSEINI;HOUKA;HOUKA;HOUKA HOUKA AG ALHOUSSEINI;;;Cadi;Teacher in Ariaw. Houka Houka Ag Alhousseini was appointed by Iyad Ag Ghaly (QDi.316) as the Cadi of Timbuktu in April 2012 after the establishment of the jihadist caliphate in northern Mali. Houka Houka used to work closely with the Hesbah, the Islamic police headed by Ahmad Al Faqi Al Mahdi, jailed at the Detention Centre of the International Criminal Court in The Hague since September 2016.;121544;EN;;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121467;EU.5262.50;MLi.005;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.005)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;Ibn Alhousseyni;Mohamed;;Mohamed Ibn Alhousseyni;;;;;121545;EN;good quality aka;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121467;EU.5262.50;MLi.005;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.005)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;Ibn Al-Husayn;Muhammad;;Muhammad Ibn Al-Husayn;;;;;121546;EN;good quality aka;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121467;EU.5262.50;MLi.005;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.005)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;Houka Houka;;;;;121547;EN;low quality aka;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121467;EU.5262.50;MLi.005;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.005)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-01-01;1;1;1962;;;NO;GREGORIAN;;Tombouctou region;;Ariaw;ML;MALI;121540;EN;;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121467;EU.5262.50;MLi.005;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.005)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-01-01;1;1;1963;;;NO;GREGORIAN;;Tombouctou region;;Ariaw;ML;MALI;121541;EN;;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121467;EU.5262.50;MLi.005;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.005)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-01-01;1;1;1964;;;NO;GREGORIAN;;Tombouctou region;;Ariaw;ML;MALI;121542;EN;;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121467;EU.5262.50;MLi.005;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.005)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ML;;121543;EN;;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN +28/10/2022;121476;EU.5263.49;MLi.006;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.006)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;BEN DAHA;MAHRI;SIDI AMAR;MAHRI SIDI AMAR BEN DAHA;;;;Deputy chief of staff of the regional coordination of the Mécanisme opérationnel de coordination (MOC) in Gao. Leader of the Lehmar Arab community of Gao and military chief of staff of the pro-governmental wing of the Mouvement Arad de l’Azawad (MAA), associated to the Plateforme des mouvements du 14 juin 2014 d’Alger (Plateforme) coalition.;121552;EN;;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121476;EU.5263.49;MLi.006;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.006)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;Yoro Ould Daha;;;;;121553;EN;good quality aka;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121476;EU.5263.49;MLi.006;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.006)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;Yoro Ould Daya;;;;;121554;EN;good quality aka;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121476;EU.5263.49;MLi.006;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.006)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;Sidi Amar Ould Daha;;;;;121555;EN;good quality aka;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121476;EU.5263.49;MLi.006;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.006)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;Yoro;;;;;121556;EN;low quality aka;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121476;EU.5263.49;MLi.006;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.006)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;Gao;Golf Rue 708 Door 345;;;;;NO;(Golf Rue 708 Door 345, Gao, Mali);ML;MALI;121548;EN;Golf Rue 708 Door 345, Gao, Mali;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121476;EU.5263.49;MLi.006;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.006)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-01-01;1;1;1978;;;NO;GREGORIAN;;;;Djebock;ML;MALI;121549;EN;;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121476;EU.5263.49;MLi.006;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.006)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"11262/1547 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;121551;EN;;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;; +28/10/2022;121476;EU.5263.49;MLi.006;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.006)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ML;;121550;EN;;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN +28/10/2022;121487;EU.5264.48;MLi.007;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.007)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;MAHRI;MOHAMED;BEN AHMED;MOHAMED BEN AHMED MAHRI;;M;;Businessman from the Arab Lehmar community in Gao region who previously collaborated with the Mouvement pour l’Unicité et le Jihad en Afrique de l’Ouest (MUJAO);121562;EN;;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121487;EU.5264.48;MLi.007;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.007)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;Mohammed Rougi;;;;;121563;EN;good quality aka;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121487;EU.5264.48;MLi.007;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.007)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;Mohamed Ould Ahmed Deya;;;;;121564;EN;good quality aka;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121487;EU.5264.48;MLi.007;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.007)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;Mohamed Ould Mahri Ahmed Daya;;;;;121565;EN;good quality aka;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121487;EU.5264.48;MLi.007;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.007)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;Mohamed Rougie;;;;;121566;EN;low quality aka;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121487;EU.5264.48;MLi.007;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.007)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;Mohamed Rouggy;;;;;121567;EN;low quality aka;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121487;EU.5264.48;MLi.007;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.007)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;Mohamed Rouji;;;;;121568;EN;low quality aka;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121487;EU.5264.48;MLi.007;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.007)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;Bamako;;;;;;NO;;ML;MALI;121557;EN;;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121487;EU.5264.48;MLi.007;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.007)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-01-01;1;1;1979;;;NO;GREGORIAN;;;;Tabankort;ML;MALI;121558;EN;;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121487;EU.5264.48;MLi.007;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.007)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"AA00272627 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;121560;EN;;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;; +28/10/2022;121487;EU.5264.48;MLi.007;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.007)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"AA0263957 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;121561;EN;;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;; +28/10/2022;121487;EU.5264.48;MLi.007;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.007)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ML;;121559;EN;;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN +28/10/2022;121500;EU.5265.47;MLi.008;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.008)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;MATALY;MOHAMED;OULD;MOHAMED OULD MATALY;;M;;Member of Parliament. Mohamed Ould Mataly is the former Mayor of Bourem and current Member of Parliament for Bourem’s constituency, part of the Rassamblement pour le Mali (RPM, President Ibrahim Boubacar Keita’s political party). He is from the Lehmar Arab community and an influential member of the pro-governmental wing of the Mouvement Arad de l’Azawad (MAA), associated to the Plateforme des mouvements du 14 juin 2014 d’Alger (Plateforme) coalition.;121573;EN;;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121500;EU.5265.47;MLi.008;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.008)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;Gao;Golf Rue 708 Door 345;;;;;NO;(Golf Rue 708 Door 345, Gao, Mali);ML;MALI;121569;EN;Golf Rue 708 Door 345, Gao, Mali;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121500;EU.5265.47;MLi.008;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.008)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;121570;EN;;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121500;EU.5265.47;MLi.008;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.008)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"D9011156 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;121572;EN;;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;; +28/10/2022;121500;EU.5265.47;MLi.008;2019-07-10;UN designation amended on 19 dec 2019;(UN ID: MLi.008)\n(Date of UN designation: 2019-07-10)\n(Designation details: UN designation amended on 19 dec 2019)\n(Photo available for inclusion in the INTERPOL-UN Security Council Special Notice.);P;person;amendment;council;2020-01-28;2020-01-28;2020/116 (OJ L 22);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ML;;121571;EN;;amendment;council;2020-01-08;2020-01-08;2020/8 (OJ L 4I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0008&from=EN +28/10/2022;121660;EU.5281.86;;;23.7.2014;(Designation details: 23.7.2014);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;El Jazireh;;;;;121661;EN;Owned or controlled by Ayman Jaber, therefore associated with a designated person;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121660;EU.5281.86;;;23.7.2014;(Designation details: 23.7.2014);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Al Jazerra;;;;;121662;EN;;amendment;council;2014-07-22;2014-07-22;793/2014 (OJ L217);SYR;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2014:217:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121660;EU.5281.86;;;23.7.2014;(Designation details: 23.7.2014);E;enterprise;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;Beirut;Shaheen Building, 2nd floor, Sami el Solh;;;;;NO;(sector of hydrocarbons);LB;LEBANON;121663;EN;sector of hydrocarbons;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121691;EU.5301.52;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;DANILENKO;Sergei;Andreevich;Sergei Andreevich DANILENKO;;M;;Former Head of the Sevastopol Electoral Commission.;121694;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121691;EU.5301.52;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;ДАНИЛЕНКО;Сергей;Андреевич;Сергей Андреевич ДАНИЛЕНКО;;M;;;121789;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121691;EU.5301.52;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Sergej Andrejevitj DANILENKO;SV;M;;;137459;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121691;EU.5301.52;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-03-14;14;3;1960;;;NO;GREGORIAN;;;;Krasnodar;RU;RUSSIAN FEDERATION;121692;EN;Krasnodar, USSR (now Russian Federation);amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121730;EU.5326.82;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Катерина Едуардівна ПИРКОВА;;F;;Secretary of the Sevastopol Electoral Commission;121732;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121730;EU.5326.82;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;PYRKOVA;Kateryna;Eduardivna;Kateryna Eduardivna PYRKOVA;;F;;Secretary of the Sevastopol Electoral Commission;121733;EN;;amendment;council;2020-01-28;2020-01-28;2020/119 (OJ L 22I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121730;EU.5326.82;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;ПЫРКОВА;Екатерина;Эдуардовна;Екатерина Эдуардовна ПЫРКОВА;;F;;Secretary of the Sevastopol Electoral Commission;121734;EN;;amendment;council;2020-01-28;2020-01-28;2020/119 (OJ L 22I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121730;EU.5326.82;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;PYRKOVA;Ekaterina;Eduardovna;Ekaterina Eduardovna PYRKOVA;;F;;Secretary of the Sevastopol Electoral Commission;121735;EN;;amendment;council;2020-01-28;2020-01-28;2020/119 (OJ L 22I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121730;EU.5326.82;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-08-22;22;8;1967;;;NO;GREGORIAN;;;;Sevastopol;UA;UKRAINE;121731;EN;Sevastopol, USSR (now Ukraine);amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121736;EU.5327.81;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Катерина Борисівна АЛТАБАЄВА;;F;;Member of the Federation Council of the Russian Federation;121737;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121736;EU.5327.81;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;ALTABAEVA;Kateryna;Borysivna;Kateryna Borysivna ALTABAEVA;;F;;Member of the Federation Council of the Russian Federation;121738;EN;;amendment;council;2020-01-28;2020-01-28;2020/119 (OJ L 22I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121736;EU.5327.81;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;АЛТАБАЕВА;Екатерина;Борисовна;Екатерина Борисовна АЛТАБАЕВА;;F;;Member of the Federation Council of the Russian Federation;121739;EN;;amendment;council;2020-01-28;2020-01-28;2020/119 (OJ L 22I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121736;EU.5327.81;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;ALTABAEVA;Ekaterina;Borisovna;Ekaterina Borisovna ALTABAEVA;;F;;Member of the Federation Council of the Russian Federation for the illegally annexed City of Sevastopol;121740;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121736;EU.5327.81;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-05-27;27;5;1956;;;NO;GREGORIAN;;;;Uglich;RU;RUSSIAN FEDERATION;121742;EN;Uglich, USSR (now Russian Federation);amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121750;EU.5329.79;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;Юрій Михайлович ГОЦАНЮК;;M;;Prime Minister of the so‐called “Republic of Crimea”;121752;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121750;EU.5329.79;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;HOTSANIUK;Iurii;Mykhailovych;Iurii Mykhailovych HOTSANIUK;;M;;Prime Minister of the so‐called “Republic of Crimea”;121753;EN;;amendment;council;2020-01-28;2020-01-28;2020/119 (OJ L 22I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121750;EU.5329.79;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;ГОЦАНЮК;Юрий;Михайлович;Юрий Михайлович ГОЦАНЮК;;M;;Prime Minister of the so‐called “Republic of Crimea”;121754;EN;;amendment;council;2020-01-28;2020-01-28;2020/119 (OJ L 22I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121750;EU.5329.79;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;GOTSANIUK;Yuriy;Mikhailovich;Yuriy Mikhailovich GOTSANIUK;;M;;Prime Minister of the so‐called “Republic of Crimea”;121755;EN;;amendment;council;2020-01-28;2020-01-28;2020/119 (OJ L 22I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121750;EU.5329.79;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;GOTSANYUK;Yuriy;Mikhailovich;Yuriy Mikhailovich GOTSANYUK;;M;;Prime Minister of the so‐called “Republic of Crimea”;121756;EN;;amendment;council;2020-01-28;2020-01-28;2020/119 (OJ L 22I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121750;EU.5329.79;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-07-18;18;7;1966;;;NO;GREGORIAN;;;Novaya Derevnya / Nove Selo;;RU;RUSSIAN FEDERATION;121751;EN;Novaya Derevnya / Nove Selo, USSR (now Russian Federation);amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121757;EU.5330.57;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Лідія Олександрівна БАСОВА;;F;;;121759;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121757;EU.5330.57;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;BASOVA;Lidiya;Oleksandrivna;Lidiya Oleksandrivna BASOVA;;F;;;121760;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121757;EU.5330.57;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;БАСОВА;Лидия;Александровна;Лидия Александровна БАСОВА;;F;;;121761;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121757;EU.5330.57;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;BASOVA;Lidia;Aleksandrovna;Lidia Aleksandrovna BASOVA;;F;;Former Deputy Head of the Sevastopol Electoral Commission;121762;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121757;EU.5330.57;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Lydyja Oleksandrivna Basova;SV;F;;;137460;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121757;EU.5330.57;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;Lidija Aleksandrovna Basova;SV;F;;;137461;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121757;EU.5330.57;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;121758;EN;;amendment;council;2020-01-28;2020-01-28;2020/119 (OJ L 22I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121763;EU.5331.56;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;НЄМЦЕВ;Володимир;Володимирович;Володимир Володимирович НЄМЦЕВ;;M;;Chairman of the so‐called “Legislative Assembly” of the illegally annexed City of Sevastopol;121765;EN;;amendment;council;2020-01-28;2020-01-28;2020/119 (OJ L 22I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121763;EU.5331.56;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;NEMTSEV;Volodymyr;Volodymyrovych;Volodymyr Volodymyrovych NEMTSEV;;M;;Chairman of the so‐called “Legislative Assembly” of the illegally annexed City of Sevastopol;121766;EN;;amendment;council;2020-01-28;2020-01-28;2020/119 (OJ L 22I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121763;EU.5331.56;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;НЕМЦЕВ;Владимир;Владимирович;Владимир Владимирович НЕМЦЕВ;;M;;Chairman of the so‐called “Legislative Assembly” of the illegally annexed City of Sevastopol;121767;EN;;amendment;council;2020-01-28;2020-01-28;2020/119 (OJ L 22I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121763;EU.5331.56;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;NEMTSEV;Vladimir;Vladimirovich;Vladimir Vladimirovich NEMTSEV;;M;;Chairman of the so‐called “Legislative Assembly” of the illegally annexed City of Sevastopol;121768;EN;;amendment;council;2020-01-28;2020-01-28;2020/119 (OJ L 22I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121763;EU.5331.56;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-11-15;15;11;1971;;;NO;GREGORIAN;;;;Sevastopol;UA;UKRAINE;121764;EN;Sevastopol, USSR (now Ukraine);amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121769;EU.5332.55;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;РАЗВОЖАЄВ;Михайло;Володимирович;Михайло Володимирович РАЗВОЖАЄВ;;M;;;121771;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121769;EU.5332.55;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;RAZVOZHAEV;Mykhailo;Volodymyrovich;Mykhailo Volodymyrovich RAZVOZHAEV;;M;;;121772;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121769;EU.5332.55;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;РАЗВОЖАЕВ;Михаил;Владимирович;Михаил Владимирович РАЗВОЖАЕВ;;M;;;121773;EN;;amendment;council;2020-09-11;2020-09-12;2020/1267 (OJ L298);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.298.01.0001.01.ENG&toc=OJ:L:2020:298:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121769;EU.5332.55;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;RAZVOZHAEV;Mikhail;Vladimirovich;Mikhail Vladimirovich RAZVOZHAEV;;M;;So-called “Governor” of the illegally annexed City of Sevastopol.;121774;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121769;EU.5332.55;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Mychajlo Volodymyrovitj Razvozjajev;SV;M;;;128366;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121769;EU.5332.55;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;Michail Vladimirovitj Razvozjajev;SV;M;;;128367;EN;;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121769;EU.5332.55;;2020-01-28;;(Date of UN designation: 2020-01-28);P;person;amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-12-30;30;12;1980;;;NO;GREGORIAN;;;;Krasnoyarsk;RU;RUSSIAN FEDERATION;121770;EN;USSR (now Russian Federation);amendment;council;2021-03-15;2021-03-16;2021/446 (OJ L87);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.087.01.0019.01.ENG&toc=OJ%3AL%3A2021%3A087%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121825;EU.5341.25;;2020-02-04;;(Date of UN designation: 2020-02-04)\n(Amendment of Regulation 881/2002 in preparation\nExecutive of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). \nEye colour: brown. Hair colour: dark\nUNLI-4.2.2020);P;person;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;Koufa;Amadou;;Amadou Koufa;;M;;Executive of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014);121947;EN;Eye colour: brown. Hair colour: dark;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121825;EU.5341.25;;2020-02-04;;(Date of UN designation: 2020-02-04)\n(Amendment of Regulation 881/2002 in preparation\nExecutive of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). \nEye colour: brown. Hair colour: dark\nUNLI-4.2.2020);P;person;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;Kouffa;Hamadou;;Hamadou Kouffa;;M;;;121948;EN;;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121825;EU.5341.25;;2020-02-04;;(Date of UN designation: 2020-02-04)\n(Amendment of Regulation 881/2002 in preparation\nExecutive of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). \nEye colour: brown. Hair colour: dark\nUNLI-4.2.2020);P;person;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;Koufa;Hamadou;;Hamadou Koufa;;M;;;121949;EN;;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121825;EU.5341.25;;2020-02-04;;(Date of UN designation: 2020-02-04)\n(Amendment of Regulation 881/2002 in preparation\nExecutive of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). \nEye colour: brown. Hair colour: dark\nUNLI-4.2.2020);P;person;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;Kouffa;Hamadoun;;Hamadoun Kouffa;;M;;;121950;EN;;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121825;EU.5341.25;;2020-02-04;;(Date of UN designation: 2020-02-04)\n(Amendment of Regulation 881/2002 in preparation\nExecutive of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). \nEye colour: brown. Hair colour: dark\nUNLI-4.2.2020);P;person;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;Koufa;Hamadoun;;Hamadoun Koufa;;M;;;121951;EN;;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121825;EU.5341.25;;2020-02-04;;(Date of UN designation: 2020-02-04)\n(Amendment of Regulation 881/2002 in preparation\nExecutive of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). \nEye colour: brown. Hair colour: dark\nUNLI-4.2.2020);P;person;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;Kouffa;Amadou;;Amadou Kouffa;;M;;;121952;EN;;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121825;EU.5341.25;;2020-02-04;;(Date of UN designation: 2020-02-04)\n(Amendment of Regulation 881/2002 in preparation\nExecutive of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). \nEye colour: brown. Hair colour: dark\nUNLI-4.2.2020);P;person;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;Barry;Amadou;;Amadou Barry;;M;;;121953;EN;;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121825;EU.5341.25;;2020-02-04;;(Date of UN designation: 2020-02-04)\n(Amendment of Regulation 881/2002 in preparation\nExecutive of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). \nEye colour: brown. Hair colour: dark\nUNLI-4.2.2020);P;person;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;;ML;MALI;121945;EN;;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121825;EU.5341.25;;2020-02-04;;(Date of UN designation: 2020-02-04)\n(Amendment of Regulation 881/2002 in preparation\nExecutive of the Organization of Al-Qaida in the Islamic Maghreb (AQIM) (QDe.014). \nEye colour: brown. Hair colour: dark\nUNLI-4.2.2020);P;person;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;YES;GREGORIAN;;;Koufa;;ML;MALI;121946;EN;;amendment;commission;2020-02-11;2020-02-11;2020/184 (OJ L38I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.038.01.0001.01.ENG&toc=OJ:L:2020:038I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121867;EU.5361.60;;2020-02-06;;(Date of UN designation: 2020-02-06)\n(UNLI - 6.2.20);P;person;amendment;council;2020-02-13;2020-02-13;2020/189 (OJ L40I);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.040.01.0001.01.ENG&toc=OJ:L:2020:040I:TOC;;;;Lumonde;;M;;;121962;EN;;amendment;council;2020-02-13;2020-02-13;2020/189 (OJ L40I);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.040.01.0001.01.ENG&toc=OJ:L:2020:040I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121867;EU.5361.60;;2020-02-06;;(Date of UN designation: 2020-02-06)\n(UNLI - 6.2.20);P;person;amendment;council;2020-02-13;2020-02-13;2020/189 (OJ L40I);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.040.01.0001.01.ENG&toc=OJ:L:2020:040I:TOC;;;;Lumu;;M;;;121963;EN;;amendment;council;2020-02-13;2020-02-13;2020/189 (OJ L40I);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.040.01.0001.01.ENG&toc=OJ:L:2020:040I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121867;EU.5361.60;;2020-02-06;;(Date of UN designation: 2020-02-06)\n(UNLI - 6.2.20);P;person;amendment;council;2020-02-13;2020-02-13;2020/189 (OJ L40I);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.040.01.0001.01.ENG&toc=OJ:L:2020:040I:TOC;;;;Musa;;M;;;121964;EN;;amendment;council;2020-02-13;2020-02-13;2020/189 (OJ L40I);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.040.01.0001.01.ENG&toc=OJ:L:2020:040I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121867;EU.5361.60;;2020-02-06;;(Date of UN designation: 2020-02-06)\n(UNLI - 6.2.20);P;person;amendment;council;2020-02-13;2020-02-13;2020/189 (OJ L40I);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.040.01.0001.01.ENG&toc=OJ:L:2020:040I:TOC;;;;Mzee Kajaju;;M;;;121965;EN;;amendment;council;2020-02-13;2020-02-13;2020/189 (OJ L40I);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.040.01.0001.01.ENG&toc=OJ:L:2020:040I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121867;EU.5361.60;;2020-02-06;;(Date of UN designation: 2020-02-06)\n(UNLI - 6.2.20);P;person;amendment;council;2020-02-13;2020-02-13;2020/189 (OJ L40I);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.040.01.0001.01.ENG&toc=OJ:L:2020:040I:TOC;BALUKU;SEKA;;SEKA BALUKU;;M;;Overall leader of the Allied Democratic Forces (ADF) (CDe.001);121966;EN;;amendment;council;2020-02-13;2020-02-13;2020/189 (OJ L40I);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.040.01.0001.01.ENG&toc=OJ:L:2020:040I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121867;EU.5361.60;;2020-02-06;;(Date of UN designation: 2020-02-06)\n(UNLI - 6.2.20);P;person;amendment;council;2020-02-13;2020-02-13;2020/189 (OJ L40I);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.040.01.0001.01.ENG&toc=OJ:L:2020:040I:TOC;;;;;;;;;;;;;;;;;;;;;;;North Kivu;Kajuju camp of Medina II, Beni territory;NO;;CD;CONGO, Democratic Republic of (was Zaire);121959;EN;;amendment;council;2020-02-13;2020-02-13;2020/189 (OJ L40I);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.040.01.0001.01.ENG&toc=OJ:L:2020:040I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121867;EU.5361.60;;2020-02-06;;(Date of UN designation: 2020-02-06)\n(UNLI - 6.2.20);P;person;amendment;council;2020-02-13;2020-02-13;2020/189 (OJ L40I);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.040.01.0001.01.ENG&toc=OJ:L:2020:040I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;;;YES;GREGORIAN;;;;;00;UNKNOWN;121960;EN;;amendment;council;2020-02-13;2020-02-13;2020/189 (OJ L40I);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.040.01.0001.01.ENG&toc=OJ:L:2020:040I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121867;EU.5361.60;;2020-02-06;;(Date of UN designation: 2020-02-06)\n(UNLI - 6.2.20);P;person;amendment;council;2020-02-13;2020-02-13;2020/189 (OJ L40I);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.040.01.0001.01.ENG&toc=OJ:L:2020:040I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UG;;121961;EN;;amendment;council;2020-02-13;2020-02-13;2020/189 (OJ L40I);COD;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.040.01.0001.01.ENG&toc=OJ:L:2020:040I:TOC +28/10/2022;121908;EU.5381.95;;2009-06-29;;(Date of UN designation: 2009-06-29);P;person;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;Baba Ji;;M;;;121912;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121908;EU.5381.95;;2009-06-29;;(Date of UN designation: 2009-06-29);P;person;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;Memon Baba;;;;;121913;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121908;EU.5381.95;;2009-06-29;;(Date of UN designation: 2009-06-29);P;person;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;Qasmani Baba;;;;;121914;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121908;EU.5381.95;;2009-06-29;;(Date of UN designation: 2009-06-29);P;person;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;Arif Umer;;M;;;121915;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121908;EU.5381.95;;2009-06-29;;(Date of UN designation: 2009-06-29);P;person;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;Mohammad Arif Qasmani;;M;;;121916;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121908;EU.5381.95;;2009-06-29;;(Date of UN designation: 2009-06-29);P;person;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;Muhammad 'Arif Qasmani;;M;;;121917;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121908;EU.5381.95;;2009-06-29;;(Date of UN designation: 2009-06-29);P;person;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;Muhammad Arif Qasmani;;M;;;121918;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121908;EU.5381.95;;2009-06-29;;(Date of UN designation: 2009-06-29);P;person;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;Arif Qasmani;;M;;;121919;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121908;EU.5381.95;;2009-06-29;;(Date of UN designation: 2009-06-29);P;person;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;Karachi;House Number 136, KDA Scheme No. 1, Tipu Sultan Road,;;;;;NO;;PK;PAKISTAN;121909;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121908;EU.5381.95;;2009-06-29;;(Date of UN designation: 2009-06-29);P;person;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944;;;YES;GREGORIAN;;;;;PK;PAKISTAN;121910;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;121908;EU.5381.95;;2009-06-29;;(Date of UN designation: 2009-06-29);P;person;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;121911;EN;;amendment;commission;2009-07-10;2009-07-09;601/2009 (OJ L179);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2009:179:0054:0055:EN:PDF +28/10/2022;122062;EU.5425.92;;;17.2.2020;(Designation details: 17.2.2020)\n(Relatives/business associates/entities or partner­s/links: Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yasr Aziz ABAS;;M;;;122066;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122062;EU.5425.92;;;17.2.2020;(Designation details: 17.2.2020)\n(Relatives/business associates/entities or partner­s/links: Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yasr Aziz ABBAS;;M;;;122067;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122062;EU.5425.92;;;17.2.2020;(Designation details: 17.2.2020)\n(Relatives/business associates/entities or partner­s/links: Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yaser Aziz ABAS;;M;;;122068;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122062;EU.5425.92;;;17.2.2020;(Designation details: 17.2.2020)\n(Relatives/business associates/entities or partner­s/links: Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yasser Aziz ABAS;;M;;;122069;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122062;EU.5425.92;;;17.2.2020;(Designation details: 17.2.2020)\n(Relatives/business associates/entities or partner­s/links: Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yaser Aziz ABBAS;;M;;;122070;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122062;EU.5425.92;;;17.2.2020;(Designation details: 17.2.2020)\n(Relatives/business associates/entities or partner­s/links: Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ياسرعزيزعباس;;M;;;122071;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122062;EU.5425.92;;;17.2.2020;(Designation details: 17.2.2020)\n(Relatives/business associates/entities or partner­s/links: Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Yasser Aziz ABBAS;;M;;;122072;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122062;EU.5425.92;;;17.2.2020;(Designation details: 17.2.2020)\n(Relatives/business associates/entities or partner­s/links: Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-08-22;22;8;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;122063;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122062;EU.5425.92;;;17.2.2020;(Designation details: 17.2.2020)\n(Relatives/business associates/entities or partner­s/links: Bajaa Trading Services LLC, Qudrah Trading, Tafawoq Tourism Projects Company, Top Business, Yang King, Al-Aziz Group);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;122064;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN +28/10/2022;122073;EU.5426.91;;;17.2.2020;"(Designation details: 17.2.2020)\n(Relatives/business associates/entities or partner­s/links: Telsa Group/Telsa Telecom; Tazamon Con­tracting LLC; Castro LLC)";P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;ماهربرهانالدينالإمام;;M;;;122075;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122073;EU.5426.91;;;17.2.2020;"(Designation details: 17.2.2020)\n(Relatives/business associates/entities or partner­s/links: Telsa Group/Telsa Telecom; Tazamon Con­tracting LLC; Castro LLC)";P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Mahir Burhan Eddine AL-IMAM;;M;;Position: General Manager of Telsa Group/Telsa Telecom;122076;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122073;EU.5426.91;;;17.2.2020;"(Designation details: 17.2.2020)\n(Relatives/business associates/entities or partner­s/links: Telsa Group/Telsa Telecom; Tazamon Con­tracting LLC; Castro LLC)";P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-08-22;22;8;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;123884;EN;;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122073;EU.5426.91;;;17.2.2020;"(Designation details: 17.2.2020)\n(Relatives/business associates/entities or partner­s/links: Telsa Group/Telsa Telecom; Tazamon Con­tracting LLC; Castro LLC)";P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;122074;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN +28/10/2022;122106;EU.5430.66;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Relatives/business associates/entities or partner­s/links: Citadel for Protection; Guard and Security Services (Castle Security and protection); Ematel LLC (Ematel Communications); Syrian Hotel Management Com­pany; Jasmine Contracting Company)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;خضر علي طاهر;;M;;;122109;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122106;EU.5430.66;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Relatives/business associates/entities or partner­s/links: Citadel for Protection; Guard and Security Services (Castle Security and protection); Ematel LLC (Ematel Communications); Syrian Hotel Management Com­pany; Jasmine Contracting Company)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;TAHER;Khodr;Ali;Khodr Ali TAHER;;M;;Director and owner of Ella Media Services. Founding partner of Castle Security and Protection and of Jasmine Contracting Company. Chairman and founding partner of the Syrian Hotel Management Company. Manager and owner of Ematel.;122110;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122106;EU.5430.66;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Relatives/business associates/entities or partner­s/links: Citadel for Protection; Guard and Security Services (Castle Security and protection); Ematel LLC (Ematel Communications); Syrian Hotel Management Com­pany; Jasmine Contracting Company)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976;;;YES;GREGORIAN;;;;;00;UNKNOWN;122107;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122106;EU.5430.66;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Relatives/business associates/entities or partner­s/links: Citadel for Protection; Guard and Security Services (Castle Security and protection); Ematel LLC (Ematel Communications); Syrian Hotel Management Com­pany; Jasmine Contracting Company)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;122108;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN +28/10/2022;122111;EU.5431.65;;2020-02-17;;(Date of UN designation: 2020-02-17);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;عادلأنورالعلبي;;M;;;122114;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122111;EU.5431.65;;2020-02-17;;(Date of UN designation: 2020-02-17);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Adil Anwar al-Olabi;;M;;;122115;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122111;EU.5431.65;;2020-02-17;;(Date of UN designation: 2020-02-17);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Adel Anouar el-Oulabi;;M;;;122116;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122111;EU.5431.65;;2020-02-17;;(Date of UN designation: 2020-02-17);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Adel Anwar AL-OLABI;;M;;"Chairman of Damascus Cham Holding Company (DCHC); leading businessperson. Governor of Damascus, appointed \nby President Bashar al-Assad in November 2018.";122117;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122111;EU.5431.65;;2020-02-17;;(Date of UN designation: 2020-02-17);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976;;;YES;GREGORIAN;;;;;00;UNKNOWN;122112;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122111;EU.5431.65;;2020-02-17;;(Date of UN designation: 2020-02-17);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;122113;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN +28/10/2022;122151;EU.5435.61;;2020-02-17;;(Date of UN designation: 2020-02-17);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;القابضة الشام دمشق;;;;;122152;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122151;EU.5435.61;;2020-02-17;;(Date of UN designation: 2020-02-17);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Damascus Cham Private Joint Stock Company;;;;;122153;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122151;EU.5435.61;;2020-02-17;;(Date of UN designation: 2020-02-17);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Damascus Cham Holding Company;;;;;140727;EN;"Type of entity: public-owned company under private law. Business sector: real estate development (manages the implementation of the Marota City project). Name of Director/Management: Adel Anwar al-Olabi, Chairman of the Board of Directors and Governor of Damascus (designated by the Council of the EU); Ultimate beneficial owner: Governorate of Damascus.";amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122209;EU.5441.34;QDe.162;2020-02-23;;(UN ID: QDe.162)\n(Date of UN designation: 2020-02-23)\n(Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq). Formed in March 2015 by Abubakar Shekau. Splinter group of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram). Committed terrorist attacks in Nigeria. Date of designation referred to in Article 7e(e): 23.02.2020.);E;enterprise;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;Islamic State of Iraq and the Levant – West Africa;;;;;122604;EN;;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122209;EU.5441.34;QDe.162;2020-02-23;;(UN ID: QDe.162)\n(Date of UN designation: 2020-02-23)\n(Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq). Formed in March 2015 by Abubakar Shekau. Splinter group of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram). Committed terrorist attacks in Nigeria. Date of designation referred to in Article 7e(e): 23.02.2020.);E;enterprise;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;Islamic State of Iraq and Syria West Africa Province (ISISWAP);;;;;122605;EN;;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122209;EU.5441.34;QDe.162;2020-02-23;;(UN ID: QDe.162)\n(Date of UN designation: 2020-02-23)\n(Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq). Formed in March 2015 by Abubakar Shekau. Splinter group of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram). Committed terrorist attacks in Nigeria. Date of designation referred to in Article 7e(e): 23.02.2020.);E;enterprise;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;Islamic State of Iraq and Syria – West Africa (ISIS-WA);;;;;122606;EN;;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122209;EU.5441.34;QDe.162;2020-02-23;;(UN ID: QDe.162)\n(Date of UN designation: 2020-02-23)\n(Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq). Formed in March 2015 by Abubakar Shekau. Splinter group of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram). Committed terrorist attacks in Nigeria. Date of designation referred to in Article 7e(e): 23.02.2020.);E;enterprise;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;Islamic State in Iraq and the Levant – West Africa (ISIL-WA);;;;;122607;EN;;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122209;EU.5441.34;QDe.162;2020-02-23;;(UN ID: QDe.162)\n(Date of UN designation: 2020-02-23)\n(Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq). Formed in March 2015 by Abubakar Shekau. Splinter group of Jama'atu Ahlis Sunna Lidda'Awati Wal-Jihad (Boko Haram). Committed terrorist attacks in Nigeria. Date of designation referred to in Article 7e(e): 23.02.2020.);E;enterprise;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;ISLAMIC STATE WEST AFRICA PROVINCE (ISWAP);;;;;122608;EN;;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122215;EU.5442.33;;2020-02-23;;(Date of UN designation: 2020-02-23)\n(Formed in May 2015 by Adnan Abu Walid al-Sahraoui. Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq). Splinter group of Al-Mourabitoun. Committed terrorist attacks in Mali, Niger and Burkina Faso. Date of designation referred to in Article 7e(e): 23.02.2020.);E;enterprise;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;ISIS in the Islamic Sahel;;;;;122609;EN;;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122215;EU.5442.33;;2020-02-23;;(Date of UN designation: 2020-02-23)\n(Formed in May 2015 by Adnan Abu Walid al-Sahraoui. Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq). Splinter group of Al-Mourabitoun. Committed terrorist attacks in Mali, Niger and Burkina Faso. Date of designation referred to in Article 7e(e): 23.02.2020.);E;enterprise;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;ISIS in the Greater Sahara;;;;;122610;EN;;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122215;EU.5442.33;;2020-02-23;;(Date of UN designation: 2020-02-23)\n(Formed in May 2015 by Adnan Abu Walid al-Sahraoui. Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq). Splinter group of Al-Mourabitoun. Committed terrorist attacks in Mali, Niger and Burkina Faso. Date of designation referred to in Article 7e(e): 23.02.2020.);E;enterprise;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;ISIS in the Greater Sahel;;;;;122611;EN;;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122215;EU.5442.33;;2020-02-23;;(Date of UN designation: 2020-02-23)\n(Formed in May 2015 by Adnan Abu Walid al-Sahraoui. Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq). Splinter group of Al-Mourabitoun. Committed terrorist attacks in Mali, Niger and Burkina Faso. Date of designation referred to in Article 7e(e): 23.02.2020.);E;enterprise;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;Islamic State of the Greater Sahel;;;;;122612;EN;;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122215;EU.5442.33;;2020-02-23;;(Date of UN designation: 2020-02-23)\n(Formed in May 2015 by Adnan Abu Walid al-Sahraoui. Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq). Splinter group of Al-Mourabitoun. Committed terrorist attacks in Mali, Niger and Burkina Faso. Date of designation referred to in Article 7e(e): 23.02.2020.);E;enterprise;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;Islamic State of Iraq and the Levant - Greater Sahara (ISIL-GS);;;;;122613;EN;;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122215;EU.5442.33;;2020-02-23;;(Date of UN designation: 2020-02-23)\n(Formed in May 2015 by Adnan Abu Walid al-Sahraoui. Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq). Splinter group of Al-Mourabitoun. Committed terrorist attacks in Mali, Niger and Burkina Faso. Date of designation referred to in Article 7e(e): 23.02.2020.);E;enterprise;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;Islamic State of Iraq and Syria – Greater Sahara (ISIS-GS);;;;;122614;EN;;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122215;EU.5442.33;;2020-02-23;;(Date of UN designation: 2020-02-23)\n(Formed in May 2015 by Adnan Abu Walid al-Sahraoui. Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq). Splinter group of Al-Mourabitoun. Committed terrorist attacks in Mali, Niger and Burkina Faso. Date of designation referred to in Article 7e(e): 23.02.2020.);E;enterprise;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;Islamic State in Iraq and Syria – Greater Sahara (ISIS-GS);;;;;122615;EN;;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122215;EU.5442.33;;2020-02-23;;(Date of UN designation: 2020-02-23)\n(Formed in May 2015 by Adnan Abu Walid al-Sahraoui. Associated with the Islamic State in Iraq and the Levant (listed as Al-Qaida in Iraq). Splinter group of Al-Mourabitoun. Committed terrorist attacks in Mali, Niger and Burkina Faso. Date of designation referred to in Article 7e(e): 23.02.2020.);E;enterprise;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;ISLAMIC STATE IN THE GREATER SAHARA (ISGS);;;;;122616;EN;;amendment;commission;2020-03-02;2020-03-02;2020/288 (OJ L61);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.061.01.0001.01.ENG&toc=OJ:L:2020:061:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;وسيم قطان;;M;;;122260;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;وسيم أنوار القطان;;M;;;122261;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wasim Anouar Al-Qatan;;M;;;122262;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wassim Anouar Al-Qatan;;M;;;122263;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wasseem Anouar Al-Qatan;;M;;;122264;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Waseem Anouar Al-Qatan;;M;;;122265;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wasim Al-Qatan;;M;;;122266;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wassim Al-Qatan;;M;;;122267;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wasseem Al-Qatan;;M;;;122268;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Waseem Al-Qatan;;M;;;122269;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wasim Anouar Al-Qattan;;M;;;122270;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wassim Anouar Al-Qattan;;M;;;122271;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wasseem Anouar Al-Qattan;;M;;;122272;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Waseem Anouar Al-Qattan;;M;;;122273;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wasim Al-Qattan;;M;;;122274;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wassim Al-Qattan;;M;;;122275;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wasseem Al-Qattan;;M;;;122276;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Waseem Al-Qattan;;M;;;122277;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wasim Anouar Al-Katan;;M;;;122278;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wassim Anouar Al-Katan;;M;;;122279;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Waseem Anouar Al-Katan;;M;;;122280;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wasseem Anouar Al-Katan;;M;;;122281;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wasim Al-Katan;;M;;;122282;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wassim Al-Katan;;M;;;122283;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wasseem Al-Katan;;M;;;122284;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Waseem Al-Katan;;M;;;122285;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wasim Anouar Al-Kattan;;M;;;122286;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wassim Anouar Al-Kattan;;M;;;122287;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wasseem Anouar Al-Kattan;;M;;;122288;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Waseem Anouar Al-Kattan;;M;;;122289;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wasim Al-Kattan;;M;;;122290;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wassim Al-Kattan;;M;;;122291;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Wasseem Al-Kattan;;M;;;122292;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;AL-KATTAN;Waseem;;Waseem AL-KATTAN;;M;;President of Damascus Countryside (Rural) Province Chamber of Commerce;122293;EN;In 2020 elected member of the Damascus Chamber of Commerce. In November 2021, appointed secretary of the Federation of Syrian chambers of commerce.;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-03-04;4;3;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;122258;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122257;EU.5461.69;;2020-02-17;;"(Date of UN designation: 2020-02-17)\n(Position: President of Damascus Countryside (Rural) Province Chamber of Commerce\n\nRelatives/business associates/entities or partners/links:\n\nLarosa Furniture/Furnishing; Jasmine Fields Company Ltd.; Muruj Cham (Murooj al-Cham) Investment and Tourism Group; Adam and Investment LLC; Universal Market Company LLC; Treasurer of the Federation of Syrian Chambers of Commerce)";P;person;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;122259;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN +28/10/2022;122300;EU.5463.67;;2020-02-17;;(Date of UN designation: 2020-02-17);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;عامر فوز;;M;;;122304;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122300;EU.5463.67;;2020-02-17;;(Date of UN designation: 2020-02-17);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Amer FOZ;;M;;"Founder of District 6 Company; Founding partner of Easy life Company; leading businessperson. Between 2012 and 2019, General Manager of ASM International Trading LLC.";122305;EN;"Relatives/business associates/entities or partners/links: Samer Foz; Vice Chairman of Asas Steel Company; Aman Holding;";amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122300;EU.5463.67;;2020-02-17;;(Date of UN designation: 2020-02-17);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;Amer Zuhair Fawz;;M;;;129692;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122300;EU.5463.67;;2020-02-17;;(Date of UN designation: 2020-02-17);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-03-11;11;3;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;122301;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122300;EU.5463.67;;2020-02-17;;(Date of UN designation: 2020-02-17);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;06010274747 (other-Other identification number) (National No);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;122303;EN;National No;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;; +28/10/2022;122300;EU.5463.67;;2020-02-17;;(Date of UN designation: 2020-02-17);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;002-14-L169340 (passport-National passport) (Passport No);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;129694;EN;Passport No;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;; +28/10/2022;122300;EU.5463.67;;2020-02-17;;(Date of UN designation: 2020-02-17);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"784-1976-7135283-5 (residentperm-Resident's Permit) (UAE Resident card)";NO;NO;NO;NO;NO;;;;;;;residentperm;Resident's Permit;;AE;;129695;EN;UAE Resident card;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;; +28/10/2022;122300;EU.5463.67;;2020-02-17;;(Date of UN designation: 2020-02-17);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;122302;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN +28/10/2022;122300;EU.5463.67;;2020-02-17;;(Date of UN designation: 2020-02-17);P;person;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KN;;129693;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;صقر رستم;;M;;;122318;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;صقر أسعد الرستم;;M;;;122319;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqer Asad Al-Rostom;;M;;;122320;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqr Asad Al-Rostom;;M;;;122321;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqer Asad Al-Rustom;;M;;;122322;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqr Asad Al-Rustom;;M;;;122323;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqer Asad Rustom;;M;;;122324;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqr Asad Rustom;;M;;;122325;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqer Asaad Al-Rostom;;M;;;122326;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqr Asaad Al-Rostom;;M;;;122327;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqer Asaad Al-Rustom;;M;;;122328;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqr Asaad Al-Rustom;;M;;;122329;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqer Asaad Rustom;;M;;;122330;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqr Asaad Rustom;;M;;;122331;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqer As'ad Al-Rostom;;M;;;122332;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqr As'ad Al-Rostom;;M;;;122333;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqer As'ad Al-Rustom;;M;;;122334;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqr As'ad Al-Rustom;;M;;;122335;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqer As'ad Rustom;;M;;;122336;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqr As'ad Rustom;;M;;;122337;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqer Al-Rostom;;M;;;122338;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqr Al-Rostom;;M;;;122339;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqer Al-Rustom;;M;;;122340;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqr Al-Rustom;;M;;;122341;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqer Rustom;;M;;;122342;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;Saqr RUSTOM;;M;;;122343;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122316;EU.5465.65;;;17.2.2020;(Designation details: 17.2.2020)\n(Position: Head of National Defence Force in Homs\n\nRelatives/business associates/entities or partners/links: Damas Real Estate Development and Investment LLC);P;person;amendment;council;2020-05-29;2020-05-30;2020/716 (OJ L168);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0716&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;122317;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN +28/10/2022;122375;EU.5481.7;;;;;P;person;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;Abo Ghaith;;;;;122379;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122375;EU.5481.7;;;;;P;person;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;Ali Abo Ghaith;Sulaiman Jassem Sulaiman;;Sulaiman Jassem Sulaiman Ali Abo Ghaith;;;;;122380;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122375;EU.5481.7;;;;;P;person;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-12-14;14;12;1965;;;NO;GREGORIAN;;;;;KW;KUWAIT;122376;EN;;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122375;EU.5481.7;;;;;P;person;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;849594 (passport-National passport) [known to be expired](Kuwaiti passport issued on 27.11.1998 in Kuwait, expired on 24.6.2003);NO;YES;NO;NO;NO;;;;;;;passport;National passport;;KW;;122378;EN;Kuwaiti passport issued on 27.11.1998 in Kuwait, expired on 24.6.2003;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;; +28/10/2022;122375;EU.5481.7;;;;;P;person;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KW;;122377;EN;Kuwaiti citizenship withdrawn in 2002;amendment;commission;2008-08-09;2008-08-08;803/2008 (OJ L214);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:214:0052:0055:EN:PDF +28/10/2022;122635;EU.5521.8;;2020-02-17;;(Date of UN designation: 2020-02-17);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;مجموعة قاطرجى;;;;;122637;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122635;EU.5521.8;;2020-02-17;;(Date of UN designation: 2020-02-17);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;شركة قاطرجى;;;;;122638;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122635;EU.5521.8;;2020-02-17;;(Date of UN designation: 2020-02-17);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Katerji Group;;;;;122639;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122635;EU.5521.8;;2020-02-17;;(Date of UN designation: 2020-02-17);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Katarji Group;;;;;122640;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122635;EU.5521.8;;2020-02-17;;(Date of UN designation: 2020-02-17);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Khatirji Group;;;;;122641;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122635;EU.5521.8;;2020-02-17;;(Date of UN designation: 2020-02-17);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Al-Sham and Al-Darwish Company;;;;;122642;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122635;EU.5521.8;;2020-02-17;;(Date of UN designation: 2020-02-17);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Qatarji International Group;;;;;122643;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122635;EU.5521.8;;2020-02-17;;(Date of UN designation: 2020-02-17);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Al Qatarji Company;;;;;122644;EN;"Type of entity: private company;\nBusiness sector: import/export; trucking; supply of oil and \ncommodities;\nName of Director/Management: Hussam al-Qatarji, CEO (designated by the Council of the EU);\nUltimate beneficial owner: Hussam al-Qatarji (designated by the Council);\nRegistered address: Mazzah, Damascus, Syria;\nRelatives/business associates/entities or partners/links: Arvada/Arfada Petroleum Company JSC.";amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122635;EU.5521.8;;2020-02-17;;(Date of UN designation: 2020-02-17);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Qatirji Group;;;;;129727;EN;;amendment;council;2021-05-28;2021-05-29;2021/848 (OJ L188);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.188.01.0018.01.ENG&toc=OJ%3AL%3A2021%3A188%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122635;EU.5521.8;;2020-02-17;;(Date of UN designation: 2020-02-17);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;Grupa Katerji;PL;;;;140976;EN;;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122635;EU.5521.8;;2020-02-17;;(Date of UN designation: 2020-02-17);E;enterprise;amendment;council;2022-05-31;2022-06-01;2022/840 (OJ L148);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0840;;;;;;;;;;;;;;;;;;;Mazzah, Damascus;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;122636;EN;;amendment;council;2020-02-17;2020-02-17;2020/211 (OJ L43I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2020:043I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122706;EU.5541.43;QDe.164;2020-03-04;;(UN ID: QDe.164)\n(Date of UN designation: 2020-03-04)\n(Established in 2015 as an umbrella group of Indonesian extremist groups that pledged allegiance to then-ISIL leader Abu Bakr al-Baghdadi. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;Jamaah Ansharut Daulat;;;;;122784;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122706;EU.5541.43;QDe.164;2020-03-04;;(UN ID: QDe.164)\n(Date of UN designation: 2020-03-04)\n(Established in 2015 as an umbrella group of Indonesian extremist groups that pledged allegiance to then-ISIL leader Abu Bakr al-Baghdadi. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;Jemaah Anshorut Daulah;;;;;122785;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122706;EU.5541.43;QDe.164;2020-03-04;;(UN ID: QDe.164)\n(Date of UN designation: 2020-03-04)\n(Established in 2015 as an umbrella group of Indonesian extremist groups that pledged allegiance to then-ISIL leader Abu Bakr al-Baghdadi. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;JAMAAH ANSHARUT DAULAH;;;;;122786;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122710;EU.5542.42;QDe.165;2020-03-04;;(UN ID: QDe.165)\n(Date of UN designation: 2020-03-04)\n(Formed in November 2014 upon announcement by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;Wilayat Al‑Tarablus;;;;;122787;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122710;EU.5542.42;QDe.165;2020-03-04;;(UN ID: QDe.165)\n(Date of UN designation: 2020-03-04)\n(Formed in November 2014 upon announcement by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;Wilayat Tarablus;;;;;122788;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122710;EU.5542.42;QDe.165;2020-03-04;;(UN ID: QDe.165)\n(Date of UN designation: 2020-03-04)\n(Formed in November 2014 upon announcement by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;Wilayat Tripolitania;;;;;122789;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122710;EU.5542.42;QDe.165;2020-03-04;;(UN ID: QDe.165)\n(Date of UN designation: 2020-03-04)\n(Formed in November 2014 upon announcement by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;Wilayat Fezzan;;;;;122790;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122710;EU.5542.42;QDe.165;2020-03-04;;(UN ID: QDe.165)\n(Date of UN designation: 2020-03-04)\n(Formed in November 2014 upon announcement by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;Wilayat Barqa;;;;;122791;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122710;EU.5542.42;QDe.165;2020-03-04;;(UN ID: QDe.165)\n(Date of UN designation: 2020-03-04)\n(Formed in November 2014 upon announcement by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;Islamic state of Iraq and the Levant in Libya;;;;;122792;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122710;EU.5542.42;QDe.165;2020-03-04;;(UN ID: QDe.165)\n(Date of UN designation: 2020-03-04)\n(Formed in November 2014 upon announcement by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;الدولة الإسلامية في العراق والشام - ليبيا;;;;;122793;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122710;EU.5542.42;QDe.165;2020-03-04;;(UN ID: QDe.165)\n(Date of UN designation: 2020-03-04)\n(Formed in November 2014 upon announcement by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;ISLAMIC STATE IN IRAQ AND THE LEVANT - LIBYA;;;;;122794;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122719;EU.5543.41;QDe.166;2020-03-04;;(UN ID: QDe.166)\n(Date of UN designation: 2020-03-04)\n(Formed in November 2014 upon acceptance of oaths of allegiance by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;Wilayat al-Yemen, Province of Yemen;;;;;122795;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122719;EU.5543.41;QDe.166;2020-03-04;;(UN ID: QDe.166)\n(Date of UN designation: 2020-03-04)\n(Formed in November 2014 upon acceptance of oaths of allegiance by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;ISIS in Yemen;;;;;122796;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122719;EU.5543.41;QDe.166;2020-03-04;;(UN ID: QDe.166)\n(Date of UN designation: 2020-03-04)\n(Formed in November 2014 upon acceptance of oaths of allegiance by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;ISIL in Yemen;;;;;122797;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122719;EU.5543.41;QDe.166;2020-03-04;;(UN ID: QDe.166)\n(Date of UN designation: 2020-03-04)\n(Formed in November 2014 upon acceptance of oaths of allegiance by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;Islamic State in Yemen;;;;;122798;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122719;EU.5543.41;QDe.166;2020-03-04;;(UN ID: QDe.166)\n(Date of UN designation: 2020-03-04)\n(Formed in November 2014 upon acceptance of oaths of allegiance by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;Islamic State of Iraq and the Levant of Yemen;;;;;122799;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122719;EU.5543.41;QDe.166;2020-03-04;;(UN ID: QDe.166)\n(Date of UN designation: 2020-03-04)\n(Formed in November 2014 upon acceptance of oaths of allegiance by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;الدولة الإسلامية في العراق والشام - اليمن;;;;;122800;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;122719;EU.5543.41;QDe.166;2020-03-04;;(UN ID: QDe.166)\n(Date of UN designation: 2020-03-04)\n(Formed in November 2014 upon acceptance of oaths of allegiance by Abu Bakr Al-Baghdadi, listed as Ibrahim Awwad Ibrahim Ali Al-Badri Al-Samarrai (QDi.299). Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq (QDe.115).\nUNLI - 4.3.2020);E;enterprise;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;ISLAMIC STATE IN IRAQ AND THE LEVANT - YEMEN;;;;;122801;EN;;amendment;commission;2020-03-11;2020-03-11;2020/390 (OJ L74);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0390&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Omar Mahamat;;;;;123674;EN;Good quality a.k.a.;amendment;council;2020-04-29;2020-04-29;2020/582 (OJ L137);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0582&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Martin Koumta Madji;;;;;123675;EN;Good quality a.k.a.;amendment;council;2020-04-29;2020-04-29;2020/582 (OJ L137);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0582&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Martin Nkoumtamadji;;;;;123676;EN;Good quality a.k.a.;amendment;council;2020-04-29;2020-04-29;2020/582 (OJ L137);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0582&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Martin Nadingar Koumtamadji;;;;;123677;EN;Good quality a.k.a.;amendment;council;2020-04-29;2020-04-29;2020/582 (OJ L137);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0582&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Abdoullaye Miskine;;;;;123678;EN;Good quality a.k.a.;amendment;council;2020-04-29;2020-04-29;2020/582 (OJ L137);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0582&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Abdoulaye Miskine;;;;;123679;EN;Good quality a.k.a.;amendment;council;2020-04-29;2020-04-29;2020/582 (OJ L137);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0582&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;Martin KOUMTAMADJI;;;President and commander-in-chief of the Front Démocratique du Peuple Centrafricain (FDPC);Martin Koumtamadji founded the FDPC in 2005. He joined the Séléka coalition in December 2012 before leaving it in April 2013 after the rebels took power in Bangui. After being arrested in Cameroon, he was then transferred to Brazzaville in the Republic of Congo. He always remained in command of his troops on the ground in the CAR even when he was in Brazzaville before returning to the CAR (between November 2014 and 2019).;123680;EN;;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;Am Dafock, Vakaga prefecture;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;123664;EN;;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;Ndjamena;;;;;;NO;(since his arrest in November 2019);TD;CHAD;125150;EN;since his arrest in November 2019;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-03-03;3;3;1965;;;NO;GREGORIAN;;;;Kabo;CF;CENTRAL AFRICAN REPUBLIC;123665;EN;;amendment;council;2020-04-29;2020-04-29;2020/582 (OJ L137);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0582&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-03-03;3;3;1965;;;NO;GREGORIAN;;;;Kobo;CF;CENTRAL AFRICAN REPUBLIC;123666;EN;;amendment;council;2020-04-29;2020-04-29;2020/582 (OJ L137);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0582&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-10-05;5;10;1965;;;NO;GREGORIAN;;;;Kabo;CF;CENTRAL AFRICAN REPUBLIC;123667;EN;;amendment;council;2020-04-29;2020-04-29;2020/582 (OJ L137);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0582&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-10-05;5;10;1965;;;NO;GREGORIAN;;;;Kobo;CF;CENTRAL AFRICAN REPUBLIC;123668;EN;;amendment;council;2020-04-29;2020-04-29;2020/582 (OJ L137);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0582&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-03-03;3;3;1965;;;NO;GREGORIAN;;;;Ndïnaba;TD;CHAD;123669;EN;;amendment;council;2020-04-29;2020-04-29;2020/582 (OJ L137);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0582&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-10-05;5;10;1965;;;NO;GREGORIAN;;;;Ndïnaba;TD;CHAD;123670;EN;;amendment;council;2020-04-29;2020-04-29;2020/582 (OJ L137);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0582&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;06FBO2262 (passport-National passport) (on 2007-02-22 valid to 2012-02-21 diplomatic)(CAR diplomatic passport);YES;NO;NO;NO;NO;;2007-02-22;;2012-02-21;;;passport;National passport;;CF;;123673;EN;CAR diplomatic passport;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SA0020249 (passport-National passport) (on 2019-01-22 valid to 2022-01-21)(Congo service passport number);NO;NO;NO;NO;NO;;2019-01-22;;2022-01-21;;;passport;National passport;;CG;;123871;EN;Congo service passport number;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;; +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CF;;123671;EN;;amendment;council;2020-04-29;2020-04-29;2020/582 (OJ L137);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0582&from=EN +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TD;;123672;EN;;amendment;council;2020-04-29;2020-04-29;2020/582 (OJ L137);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0582&from=EN +28/10/2022;123536;EU.5561.78;CFi.013;2020-04-20;;(UN ID: CFi.013)\n(Date of UN designation: 2020-04-20);P;person;amendment;council;2020-08-10;2020-08-10;2020/1171 (OJ L260);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.260.01.0001.01.ENG&toc=OJ:L:2020:260:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CG;;123870;EN;;amendment;council;2020-05-29;2020-05-29;2020/717 (OJ L168);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.168.01.0061.01.ENG&toc=OJ:L:2020:168:TOC +28/10/2022;123600;EU.5581.16;;2013-03-20;;(Date of UN designation: 2013-03-20)\n(Date of designation referred to in Article 2a (4)(b): 20.3.2013);E;enterprise;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;;;;Ansar Dine;;;;;123602;EN;;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123600;EU.5581.16;;2013-03-20;;(Date of UN designation: 2013-03-20)\n(Date of designation referred to in Article 2a (4)(b): 20.3.2013);E;enterprise;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;;;;Ansar Eddine;;;;;123603;EN;;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123600;EU.5581.16;;2013-03-20;;(Date of UN designation: 2013-03-20)\n(Date of designation referred to in Article 2a (4)(b): 20.3.2013);E;enterprise;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;NO;;ML;MALI;123601;EN;;amendment;commission;2013-03-27;2013-03-26;290/2013 (OJ L87);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:087:0002:0003:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123615;EU.5582.15;;;;;P;person;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;Ramón Antonio AVELLÁN MEDAL;;M;;Deputy Director-General of the Nicaraguan National Police (NNP) and former chief of the police in Masaya.;123618;EN;;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123615;EU.5582.15;;;;;P;person;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-11-11;11;11;1954;;;NO;GREGORIAN;;;;Jinotepe;NI;NICARAGUA;123616;EN;;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123615;EU.5582.15;;;;;P;person;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A0008696 (other-Other identification number) (on 2011-10-17 valid to 2021-10-17)(Passport number);NO;NO;NO;NO;NO;;2011-10-17;;2021-10-17;;;other;Other identification number;;00;;123617;EN;Passport number;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;; +28/10/2022;123619;EU.5583.14;;;;;P;person;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;Sonia CASTRO GONZÁLEZ;;F;;Special advisor to the President of Nicaragua on health issues and former Minister of Health.;123623;EN;;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123619;EU.5583.14;;;;;P;person;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-09-29;29;9;1967;;;NO;GREGORIAN;;;;Carazo;NI;NICARAGUA;123620;EN;;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123619;EU.5583.14;;;;;P;person;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0422909670000N (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;123621;EN;ID number;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;; +28/10/2022;123619;EU.5583.14;;;;;P;person;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A00001526 (other-Other identification number) (on 2019-11-19 valid to 2028-11-19)(Passport number);NO;NO;NO;NO;NO;;2019-11-19;;2028-11-19;;;other;Other identification number;;00;;123622;EN;Passport number;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;; +28/10/2022;123624;EU.5584.13;;2020-05-04;;(Date of UN designation: 2020-05-04);P;person;amendment;council;2022-10-14;2022-10-15;2022/1935 (OJ L268);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1935;DÍAZ MADRIZ;Francisco Javier;;Francisco Javier DÍAZ MADRIZ;;M;;General Director of the Nicaraguan National Police (NNP) since 23 August 2018 and former Deputy General Director of NNP.;123626;EN;;amendment;council;2022-10-14;2022-10-15;2022/1935 (OJ L268);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1935;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123624;EU.5584.13;;2020-05-04;;(Date of UN designation: 2020-05-04);P;person;amendment;council;2022-10-14;2022-10-15;2022/1935 (OJ L268);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1935;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-08-03;3;8;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;123625;EN;;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123627;EU.5585.12;;;;;P;person;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;Néstor MONCADA LAU;;M;;Personal advisor to the President of Nicaragua on national security matters.;123629;EN;;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123627;EU.5585.12;;;;;P;person;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-03-02;2;3;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;123628;EN;;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123630;EU.5586.11;;;;;P;person;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;Luís PÉREZ OLIVAS;;M;;"General Commissioner and Legal Assistance Main Officer (DAEJ) in the ""El Chipote"" penitentiary centre.";123632;EN;;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123630;EU.5586.11;;;;;P;person;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-01-08;8;1;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;123631;EN;;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123633;EU.5587.10;;;;;P;person;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;Justo PASTOR URBINA;;M;;Head of Police Special Operations Unit (DOEP).;123635;EN;;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123633;EU.5587.10;;;;;P;person;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-01-29;29;1;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;123634;EN;;amendment;council;2020-05-04;2020-05-04;2020/606 (OJ L139I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0606&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Ustadh Ahmad;;;;;123809;EN;Low quality a.k.a.;amendment;commission;2020-05-27;2020-05-27;2020/706 (OJ L164);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0706&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Al-Ustadh;;;;;123810;EN;Low quality a.k.a.;amendment;commission;2020-05-27;2020-05-27;2020/706 (OJ L164);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0706&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Amir Muhammad Sa’id ‘Abd-al-Rahman Muhammad al-Mula;;;;;123811;EN;Good quality a.k.a.;amendment;commission;2020-05-27;2020-05-27;2020/706 (OJ L164);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0706&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Muhammad Sa'id `Abd-al-Rahman al-Mawla;;;;;123812;EN;Good quality a.k.a.;amendment;commission;2020-05-27;2020-05-27;2020/706 (OJ L164);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0706&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;`Abdul Amir Muhammad Sa'id Salbi;;;;;123813;EN;Good quality a.k.a.;amendment;commission;2020-05-27;2020-05-27;2020/706 (OJ L164);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0706&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Hajji Abdullah Al-Afari;;;;;123814;EN;Good quality a.k.a.;amendment;commission;2020-05-27;2020-05-27;2020/706 (OJ L164);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0706&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;al-Hajj Abdullah Qardash;;;;;123815;EN;Good quality a.k.a.;amendment;commission;2020-05-27;2020-05-27;2020/706 (OJ L164);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0706&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Abu ‘Abdullah Qardash;;;;;123816;EN;Good quality a.k.a.;amendment;commission;2020-05-27;2020-05-27;2020/706 (OJ L164);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0706&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Abdullah Qardash;;;;;123817;EN;Good quality a.k.a.;amendment;commission;2020-05-27;2020-05-27;2020/706 (OJ L164);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0706&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Abu ‘Umar al-Turkmani;;;;;123818;EN;Good quality a.k.a.;amendment;commission;2020-05-27;2020-05-27;2020/706 (OJ L164);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0706&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Hajji Abdallah;;;;;123819;EN;Good quality a.k.a.;amendment;commission;2020-05-27;2020-05-27;2020/706 (OJ L164);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0706&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Abu Ibrahim al-Hashimi al-Qurashi;;;;;123820;EN;Good quality a.k.a.;amendment;commission;2020-05-27;2020-05-27;2020/706 (OJ L164);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0706&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;أمیر محمد سعید عبد الرحمن السلبي;AR;;;;123821;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Amir Muhammad Sa’id Abdal-Rahman al-Salbi;;;;Leader of Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq.;123822;EN;Mother’s name: Samira Shareef (سميرة شريف) or Sahra Sharif Abd al-Qader (سهرة شريف عبد القادر). Height 170 cm, right leg amputated. Arrest warrant issued by Iraq 2018. Reportedly deceased as of 3 February 2022.;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;Amir Muhammad Sa’id Abdal-Rahman al-Mawla;;;;;141009;EN;"good quality alias; previously listed as";amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;Idlib;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;141012;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;Mosul;near Shahid Mazen Mosque and al-Khansa Hospital;;;;;NO;(previous address);IQ;IRAQ;141013;EN;previous address;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;Tall'Afar;House 110, Street 704, District 704;;;;;NO;(previous address);IQ;IRAQ;141014;EN;previous address;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-10-01;1;10;1976;;;NO;GREGORIAN;;;;Tall’Afar;IQ;IRAQ;123804;EN;;amendment;commission;2020-05-27;2020-05-27;2020/706 (OJ L164);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0706&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-10-01;1;10;1976;;;NO;GREGORIAN;;;;Mosul;IQ;IRAQ;123805;EN;;amendment;commission;2020-05-27;2020-05-27;2020/706 (OJ L164);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0706&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-10-05;5;10;1976;;;NO;GREGORIAN;;;;Mosul;IQ;IRAQ;123806;EN;;amendment;commission;2020-05-27;2020-05-27;2020/706 (OJ L164);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0706&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-10-05;5;10;1976;;;NO;GREGORIAN;;;;Tall’Afar;IQ;IRAQ;123807;EN;;amendment;commission;2020-05-27;2020-05-27;2020/706 (OJ L164);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0706&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-01-06;6;1;1976;;;NO;GREGORIAN;;;;Mosul;IQ;IRAQ;141010;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-01-06;6;1;1976;;;NO;GREGORIAN;;;;Tall'Afar;IQ;IRAQ;141011;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;00278640 (id-National identification card) (on 2012-05-02);NO;NO;NO;NO;NO;;2012-05-02;;;;;id;National identification card;;00;;141015;EN;;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;; +28/10/2022;123766;EU.5601.79;QDi.426;2020-05-21;;(UN ID: QDi.426)\n(Date of UN designation: 2020-05-21)\n(UNLI - 21.5.2020);P;person;amendment;commission;2022-06-03;2022-06-04;2022/873 (OJ L152);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.152.01.0184.01.ENG&toc=OJ%3AL%3A2022%3A152%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IQ;;123808;EN;;amendment;commission;2020-05-27;2020-05-27;2020/706 (OJ L164);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0706&from=EN +28/10/2022;124283;EU.5621.17;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;José Adelino ORNELLAS FERREIRA;;M;;;124285;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124283;EU.5621.17;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;José Adelino ORNELLA FERREIRA;;M;;;124286;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124283;EU.5621.17;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;José Adelino ORNELAS FERREIRA;;M;;Secretary‐General of the National Defence Council since 26 July 2019 and Chief of the General Staff to the Commander‐in‐Chief since September 2020. Former commander of the National Capital Integral Strategic Defence Region (REDI Capital), former Chief of Staff and former Second‐in‐Command of the Operational and Strategic Command of the Bolivarian National Armed Forces of Venezuela (CEOFANB).;124287;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124283;EU.5621.17;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-12-14;14;12;1964;;;NO;GREGORIAN;;;;Caracas, Distrito Capital;VE;VENEZUELA;124284;EN;;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124283;EU.5621.17;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-7087964 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;124289;EN;ID number;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;; +28/10/2022;124294;EU.5623.15;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Gladys DEL VALLE REQUENA;;F;;Member of the non-democratically elected National Assembly and former member and the Second Vice-President of the non-recognised National Constituent Assembly (ANC).;124297;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124294;EU.5623.15;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-11-09;9;11;1952;;;NO;GREGORIAN;;;;Puerto Santo, Sucre;VE;VENEZUELA;124295;EN;;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124294;EU.5623.15;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-4114842 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;124296;EN;ID number;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;; +28/10/2022;124298;EU.5624.14;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Tania Valentina DÍAZ GONZÁLEZ;;F;;Member of the non-democratically elected \nNational Assembly and former First Vice-President of the non-recognised National \nConstituent Assembly (ANC).;124301;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124298;EU.5624.14;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-06-18;18;6;1963;;;NO;GREGORIAN;;;;Caracas, Distrito Capital;VE;VENEZUELA;124299;EN;;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124298;EU.5624.14;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-6432672 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;124300;EN;ID number;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;; +28/10/2022;124306;EU.5626.12;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Elvis Eduardo HIDROBO AMOROSO;;M;;Comptroller General, since 23 October 2018, and former First and Second Vice‐President of the non‐recognised National Constituent Assembly (ANC).;124309;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124306;EU.5626.12;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-08-04;4;8;1963;;;NO;GREGORIAN;;;;Caracas, Distrito Capital;VE;VENEZUELA;124307;EN;;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124306;EU.5626.12;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-7659695 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;124308;EN;ID number;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;; +28/10/2022;124315;EU.5628.10;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Jorge Elieser MÁRQUEZ MONSALVE;;M;;Director-General of the National Commission of Telecommunications (CONATEL) since 7 August 2017.;124318;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124315;EU.5628.10;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-02-20;20;2;1971;;;NO;GREGORIAN;;;;Caracas;VE;VENEZUELA;124316;EN;;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124315;EU.5628.10;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-8714253 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;124317;EN;ID number;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;; +28/10/2022;124322;EU.5630.84;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Farik Karin MORA SALCEDO;;M;;Prosecutor serving at the Venezuelan First Special Court of First Instance with an office within the Directorate‐General of Military Counter‐Intelligence (Dirección General de Contrainteligencia Militar (DGCIM)).;124324;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124322;EU.5630.84;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-8608523 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;124323;EN;ID number;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;; +28/10/2022;124325;EU.5631.83;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Dinorah Yoselin BUSTAMANTE PUERTA;;F;;Prosecutor serving at the Venezuelan First Special Court of First Instance, with an office within the Directorate‐General of Military Counter‐Intelligence (Dirección General de Contrainteligencia Militar (DGCIM)).;124328;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124325;EU.5631.83;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-01-14;14;1;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;124326;EN;;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124325;EU.5631.83;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-10002096 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;124327;EN;ID number;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;; +28/10/2022;124329;EU.5632.82;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Luis Eduardo PARRA RIVERO;;M;;Member of the non-democratically elected \nNational Assembly.;124332;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124329;EU.5632.82;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-07-07;7;7;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;124330;EN;;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124329;EU.5632.82;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-14211633 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;124331;EN;ID number;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;; +28/10/2022;124333;EU.5633.81;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Franklyn Leonardo DUARTE;;M;;Member of the non-democratically elected \nNational Assembly. Former member and \nillegitimately elected first Vice-President \nof the National Assembly elected in 2015.;124336;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124333;EU.5633.81;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-05-15;15;5;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;124334;EN;;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124333;EU.5633.81;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-3304045 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;124335;EN;ID number;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;; +28/10/2022;124337;EU.5634.80;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;José Gregorio NORIEGA FIGUEROA;;M;;Member of the non-democratically elected \nNational Assembly. Former member and \nillegitimately elected second Vice-President of the National Assembly elected \nin 2015.;124340;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124337;EU.5634.80;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-02-21;21;2;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;124338;EN;;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124337;EU.5634.80;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-8348784 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;124339;EN;ID number;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;; +28/10/2022;124573;EU.5642.51;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;Juan José MENDOZA JOVER;;M;;Second Vice-President of the Venezuelan Supreme Court of Justice (Tribunal Supremo de Justicia (TSJ)) and President of the Constitutional Chamber of the TSJ since 24 February 2017.;124577;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124573;EU.5642.51;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;Arnoldo Gabaldón, Candelaria, Edo. Trujillo;;;;;NO;;VE;VENEZUELA;124574;EN;;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124573;EU.5642.51;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-03-11;11;3;1969;;;NO;GREGORIAN;;;;Trujillo;VE;VENEZUELA;124575;EN;;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124573;EU.5642.51;;2020-06-29;;(Date of UN designation: 2020-06-29);P;person;amendment;council;2020-11-13;2020-11-13;2020/1696 (OJ L381);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.381.01.0008.01.ENG&toc=OJ%3AL%3A2020%3A381%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-9499372 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;124576;EN;ID number;amendment;council;2020-06-29;2020-06-29;2020/897 (OJ L205I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.205.01.0001.01.ENG&toc=OJ:L:2020:205I:TOC;;;;;;;;;;;;; +28/10/2022;124743;EU.5661.87;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1124 (OJ L246);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0001.01.ENG&toc=OJ:L:2020:246:TOC;;;;Bryan D'ANCONA;;;;;124746;EN;;amendment;council;2020-07-30;2020-07-30;2020/1124 (OJ L246);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0001.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124743;EU.5661.87;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1124 (OJ L246);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0001.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1997-01-26;26;1;1997;;;NO;GREGORIAN;;;;Nice;FR;FRANCE;124744;EN;;amendment;council;2020-07-30;2020-07-30;2020/1124 (OJ L246);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0001.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124743;EU.5661.87;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1124 (OJ L246);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0001.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;FR;;124745;EN;;amendment;council;2020-07-30;2020-07-30;2020/1124 (OJ L246);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0001.01.ENG&toc=OJ:L:2020:246:TOC +28/10/2022;124886;EU.5681.25;QDi.427;2020-07-16;;(UN ID: QDi.427)\n(Date of UN designation: 2020-07-16)\n(UNLI 17.7.2020);P;person;amendment;commission;2020-07-23;2020-07-23;2020/1082 (OJ L238);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.238.01.0082.01.ENG&toc=OJ:L:2020:238:TOC;;;;Abu Mansoor Asim;;;;;125046;EN;Good quality a.k.a.;amendment;commission;2020-07-23;2020-07-23;2020/1082 (OJ L238);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.238.01.0082.01.ENG&toc=OJ:L:2020:238:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124886;EU.5681.25;QDi.427;2020-07-16;;(UN ID: QDi.427)\n(Date of UN designation: 2020-07-16)\n(UNLI 17.7.2020);P;person;amendment;commission;2020-07-23;2020-07-23;2020/1082 (OJ L238);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.238.01.0082.01.ENG&toc=OJ:L:2020:238:TOC;;;;Noor Wali Mehsud;;;Mufti;Leader of Tehrik-e Taliban Pakistan (TTP);125047;EN;;amendment;commission;2020-07-23;2020-07-23;2020/1082 (OJ L238);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.238.01.0082.01.ENG&toc=OJ:L:2020:238:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124886;EU.5681.25;QDi.427;2020-07-16;;(UN ID: QDi.427)\n(Date of UN designation: 2020-07-16)\n(UNLI 17.7.2020);P;person;amendment;commission;2020-07-23;2020-07-23;2020/1082 (OJ L238);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.238.01.0082.01.ENG&toc=OJ:L:2020:238:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-06-26;26;6;1978;;;NO;GREGORIAN;;;;Gurguray;PK;PAKISTAN;125044;EN;;amendment;commission;2020-07-23;2020-07-23;2020/1082 (OJ L238);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.238.01.0082.01.ENG&toc=OJ:L:2020:238:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124886;EU.5681.25;QDi.427;2020-07-16;;(UN ID: QDi.427)\n(Date of UN designation: 2020-07-16)\n(UNLI 17.7.2020);P;person;amendment;commission;2020-07-23;2020-07-23;2020/1082 (OJ L238);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.238.01.0082.01.ENG&toc=OJ:L:2020:238:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;125045;EN;;amendment;commission;2020-07-23;2020-07-23;2020/1082 (OJ L238);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.238.01.0082.01.ENG&toc=OJ:L:2020:238:TOC +28/10/2022;124957;EU.5701.88;;2020-07-30;;(Date of UN designation: 2020-07-30);P;person;amendment;council;2020-11-23;2020-11-24;2020/1744 (OJ L393);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.393.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A393%3ATOC;;;;GAO Qiang;;M;;;124961;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124957;EU.5701.88;;2020-07-30;;(Date of UN designation: 2020-07-30);P;person;amendment;council;2020-11-23;2020-11-24;2020/1744 (OJ L393);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.393.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A393%3ATOC;;;;;;;;;;;;;;;;;;;Tianjin;Room 1102, Guanfu Mansion, 46 Xinkai Road, Hedong District;;;;;NO;;CN;CHINA;124958;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124957;EU.5701.88;;2020-07-30;;(Date of UN designation: 2020-07-30);P;person;amendment;council;2020-11-23;2020-11-24;2020/1744 (OJ L393);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.393.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A393%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-10-04;4;10;1983;;;NO;GREGORIAN;;;Shandong Province;;CN;CHINA;126359;EN;;amendment;council;2020-11-23;2020-11-24;2020/1744 (OJ L393);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.393.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A393%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124957;EU.5701.88;;2020-07-30;;(Date of UN designation: 2020-07-30);P;person;amendment;council;2020-11-23;2020-11-24;2020/1744 (OJ L393);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.393.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A393%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CN;;124960;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC +28/10/2022;124962;EU.5702.87;;2020-07-30;;(Date of UN designation: 2020-07-30);P;person;amendment;council;2020-11-23;2020-11-24;2020/1744 (OJ L393);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.393.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A393%3ATOC;;;;ZHANG Shilong;;M;;;124965;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124962;EU.5702.87;;2020-07-30;;(Date of UN designation: 2020-07-30);P;person;amendment;council;2020-11-23;2020-11-24;2020/1744 (OJ L393);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.393.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A393%3ATOC;;;;;;;;;;;;;;;;;;;Tianjin;Hedong, Yuyang Road No 121;;;;;NO;;CN;CHINA;124963;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124962;EU.5702.87;;2020-07-30;;(Date of UN designation: 2020-07-30);P;person;amendment;council;2020-11-23;2020-11-24;2020/1744 (OJ L393);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.393.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A393%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-09-10;10;9;1981;;;NO;GREGORIAN;;;;;CN;CHINA;126360;EN;;amendment;council;2020-11-23;2020-11-24;2020/1744 (OJ L393);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.393.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A393%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124962;EU.5702.87;;2020-07-30;;(Date of UN designation: 2020-07-30);P;person;amendment;council;2020-11-23;2020-11-24;2020/1744 (OJ L393);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2020.393.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A393%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CN;;124964;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC +28/10/2022;124966;EU.5703.86;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;Алексей Валерьевич МИНИН;;;;;124971;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124966;EU.5703.86;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;Alexey Valeryevich MININ;;M;;Human intelligence support officer of the Main Directorate of the General Staff of the Armed Forces of the Russian Federation (GU/GRU);124972;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124966;EU.5703.86;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;Moscow;;;;;;NO;;RU;RUSSIAN FEDERATION;124967;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124966;EU.5703.86;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-05-27;27;5;1972;;;NO;GREGORIAN;;;;Perm Oblast;RU;RUSSIAN FEDERATION;124968;EN;Russian SFSR (now Russian Federation);amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124966;EU.5703.86;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120017582 (passport-National passport) (issued by Ministry of Foreign Affairs of the Russian Federation valid from 2017-04-17 to 2022-04-17);NO;NO;NO;NO;NO;Ministry of Foreign Affairs of the Russian Federation;;2017-04-17;2022-04-17;;;passport;National passport;;RU;;124970;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;; +28/10/2022;124966;EU.5703.86;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;124969;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC +28/10/2022;124980;EU.5705.84;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;Алексей Сергеевич МОРЕНЕЦ;;;;;124985;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124980;EU.5705.84;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;Aleksei Sergeyvich MORENETS;;M;;Cyber-operator for the Main Directorate of the General Staff of the Armed Forces of the Russian Federation (GU/GRU),;124986;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124980;EU.5705.84;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;Moscow;;;;;;NO;;RU;RUSSIAN FEDERATION;124981;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124980;EU.5705.84;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-07-31;31;7;1977;;;NO;GREGORIAN;;;;Murmanskaya Oblast;RU;RUSSIAN FEDERATION;124982;EN;Russian SFSR (now Russian Federation);amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124980;EU.5705.84;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100135556 (passport-National passport) (issued by Ministry of foreign Affairs of the Russian Federation valid from 2017-04-17 to 2022-04-17);NO;NO;NO;NO;NO;Ministry of foreign Affairs of the Russian Federation;;2017-04-17;2022-04-17;;;passport;National passport;;RU;;124984;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;; +28/10/2022;124980;EU.5705.84;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;124983;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC +28/10/2022;124987;EU.5706.83;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;Евгений Михайлович СЕРЕБРЯКОВ;;;;;124992;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124987;EU.5706.83;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;Evgenii Mikhaylovich SEREBRIAKOV;;M;;Cyber-operator for the Main Directorate of the General Staff of the Armed Forces of the Russian Federation (GU/GRU);124993;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124987;EU.5706.83;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;Moscow;;;;;;NO;;RU;RUSSIAN FEDERATION;124988;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124987;EU.5706.83;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-07-26;26;7;1981;;;NO;GREGORIAN;;;;Kursk;RU;RUSSIAN FEDERATION;124989;EN;Russian SFSR (Russian Federation);amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124987;EU.5706.83;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100135555 (passport-National passport) (issued by Ministry of Foreign Affairs of the Russian Federation valid from 2017-04-17 to 2022-04-17);NO;NO;NO;NO;NO;Ministry of Foreign Affairs of the Russian Federation;;2017-04-17;2022-04-17;;;passport;National passport;;RU;;124991;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;; +28/10/2022;124987;EU.5706.83;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;124990;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC +28/10/2022;124994;EU.5707.82;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;Олег Михайлович СОТНИКОВ;;;;;124999;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124994;EU.5707.82;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;Oleg Mikhaylovich SOTNIKOV;;M;;Human intelligence support officer of the Main Directorate of the General Staff of the Armed Forces of the Russian Federation (GU/GRU);125000;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124994;EU.5707.82;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;Moscow;;;;;;NO;;RU;RUSSIAN FEDERATION;124995;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124994;EU.5707.82;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-08-24;24;8;1972;;;NO;GREGORIAN;;;;Ulyanovsk;RU;RUSSIAN FEDERATION;124996;EN;Russian SFSR (now Russian Federation);amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;124994;EU.5707.82;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120018866 (passport-National passport) (issued by Ministry of Foreign Affairs of the Russian Federation valid from 2017-04-17 to 2022-04-17);NO;NO;NO;NO;NO;Ministry of Foreign Affairs of the Russian Federation;;2017-04-17;2022-04-17;;;passport;National passport;;RU;;124998;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;; +28/10/2022;124994;EU.5707.82;;;30.7.2020;(Designation details: 30.7.2020);P;person;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;124997;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC +28/10/2022;125001;EU.5708.81;;;30.7.2020;(Designation details: 30.7.2020);E;enterprise;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;Haitai Technology Development Co. Ltd;;;;;125003;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125001;EU.5708.81;;;30.7.2020;(Designation details: 30.7.2020);E;enterprise;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;Huaying Haitai;;;;;125004;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125001;EU.5708.81;;;30.7.2020;(Designation details: 30.7.2020);E;enterprise;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;Tianjin Huaying Haitai Science and Technology Development Co. Ltd;;;;;125005;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125001;EU.5708.81;;;30.7.2020;(Designation details: 30.7.2020);E;enterprise;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;Tianjin;;;;;;NO;;CN;CHINA;125002;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125006;EU.5709.80;;;30.7.2020;(Designation details: 30.7.2020);E;enterprise;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;Korea Export Joint Venture;;;;;125008;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125006;EU.5709.80;;;30.7.2020;(Designation details: 30.7.2020);E;enterprise;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;Chosen Expo;;;;;125009;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125006;EU.5709.80;;;30.7.2020;(Designation details: 30.7.2020);E;enterprise;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;Chosun Expo;;;;;125010;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125006;EU.5709.80;;;30.7.2020;(Designation details: 30.7.2020);E;enterprise;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;125007;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125011;EU.5710.58;;;30.7.2020;(Designation details: 30.7.2020);E;enterprise;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;Main Centre for Special Technologies (GTsST) of the Main Directorate of the General Staff of the Armed Forces of the Russian Federation (GU/GRU);;;;;125013;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125011;EU.5710.58;;;30.7.2020;(Designation details: 30.7.2020);E;enterprise;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;Moscow;22 Kirova Street;;;;;NO;;RU;RUSSIAN FEDERATION;125012;EN;;amendment;council;2020-07-30;2020-07-30;2020/1125 (OJ L246);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.246.01.0004.01.ENG&toc=OJ:L:2020:246:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125154;EU.5711.57;CFi.014;2020-08-05;;(UN ID: CFi.014)\n(Date of UN designation: 2020-08-05)\n(Reportedly killed during fighting in December 2020);P;person;amendment;council;2021-04-19;2021-04-19;2021/628 (OJ L132);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132%3ATOC;;;;Bi Sidi Soulemane;;;;;125159;EN;Good quality a.k.a.;amendment;council;2020-08-13;2020-08-13;2020/1194 (OJ L266I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.266.01.0001.01.ENG&toc=OJ:L:2020:266I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125154;EU.5711.57;CFi.014;2020-08-05;;(UN ID: CFi.014)\n(Date of UN designation: 2020-08-05)\n(Reportedly killed during fighting in December 2020);P;person;amendment;council;2021-04-19;2021-04-19;2021/628 (OJ L132);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132%3ATOC;;;;Souleymane Bi Sidi;;;;;125160;EN;Good quality a.k.a.;amendment;council;2020-08-13;2020-08-13;2020/1194 (OJ L266I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.266.01.0001.01.ENG&toc=OJ:L:2020:266I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125154;EU.5711.57;CFi.014;2020-08-05;;(UN ID: CFi.014)\n(Date of UN designation: 2020-08-05)\n(Reportedly killed during fighting in December 2020);P;person;amendment;council;2021-04-19;2021-04-19;2021/628 (OJ L132);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132%3ATOC;;;;Sidiki Abbas;;;;;125161;EN;Good quality a.k.a.;amendment;council;2020-08-13;2020-08-13;2020/1194 (OJ L266I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.266.01.0001.01.ENG&toc=OJ:L:2020:266I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125154;EU.5711.57;CFi.014;2020-08-05;;(UN ID: CFi.014)\n(Date of UN designation: 2020-08-05)\n(Reportedly killed during fighting in December 2020);P;person;amendment;council;2021-04-19;2021-04-19;2021/628 (OJ L132);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132%3ATOC;;;;"""General"" Sidiki";;;;;125162;EN;Good quality a.k.a.;amendment;council;2020-08-13;2020-08-13;2020/1194 (OJ L266I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.266.01.0001.01.ENG&toc=OJ:L:2020:266I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125154;EU.5711.57;CFi.014;2020-08-05;;(UN ID: CFi.014)\n(Date of UN designation: 2020-08-05)\n(Reportedly killed during fighting in December 2020);P;person;amendment;council;2021-04-19;2021-04-19;2021/628 (OJ L132);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132%3ATOC;;;;Sidiki;;;;;125163;EN;Good quality a.k.a.;amendment;council;2020-08-13;2020-08-13;2020/1194 (OJ L266I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.266.01.0001.01.ENG&toc=OJ:L:2020:266I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125154;EU.5711.57;CFi.014;2020-08-05;;(UN ID: CFi.014)\n(Date of UN designation: 2020-08-05)\n(Reportedly killed during fighting in December 2020);P;person;amendment;council;2021-04-19;2021-04-19;2021/628 (OJ L132);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132%3ATOC;;;;Bi Sidi SOULEMAN;;M;;President and self-proclaimed “general” of the Retour, Réclamation et Réhabilitation (3R);125164;EN;;amendment;council;2020-08-13;2020-08-13;2020/1194 (OJ L266I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.266.01.0001.01.ENG&toc=OJ:L:2020:266I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125154;EU.5711.57;CFi.014;2020-08-05;;(UN ID: CFi.014)\n(Date of UN designation: 2020-08-05)\n(Reportedly killed during fighting in December 2020);P;person;amendment;council;2021-04-19;2021-04-19;2021/628 (OJ L132);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132%3ATOC;;;;;;;;;;;;;;;;;;;Koui, Ouham-Pendé prefecture;;;;;;NO;;CF;CENTRAL AFRICAN REPUBLIC;125155;EN;;amendment;council;2020-08-13;2020-08-13;2020/1194 (OJ L266I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.266.01.0001.01.ENG&toc=OJ:L:2020:266I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125154;EU.5711.57;CFi.014;2020-08-05;;(UN ID: CFi.014)\n(Date of UN designation: 2020-08-05)\n(Reportedly killed during fighting in December 2020);P;person;amendment;council;2021-04-19;2021-04-19;2021/628 (OJ L132);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-07-20;20;7;1962;;;NO;GREGORIAN;;;;Bocaranga;CF;CENTRAL AFRICAN REPUBLIC;125156;EN;;amendment;council;2020-08-13;2020-08-13;2020/1194 (OJ L266I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.266.01.0001.01.ENG&toc=OJ:L:2020:266I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125154;EU.5711.57;CFi.014;2020-08-05;;(UN ID: CFi.014)\n(Date of UN designation: 2020-08-05)\n(Reportedly killed during fighting in December 2020);P;person;amendment;council;2021-04-19;2021-04-19;2021/628 (OJ L132);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;N°235/MISPAT/DIRCAB/DGPC/DGAEI/SI/SP (passport-National passport) (issued by Minister of Interior of the Central African Republic on 2019-03-15)(Laissez-passer no.);NO;NO;NO;NO;NO;Minister of Interior of the Central African Republic;2019-03-15;;;;;passport;National passport;;CF;;125158;EN;Laissez-passer no.;amendment;council;2020-08-13;2020-08-13;2020/1194 (OJ L266I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.266.01.0001.01.ENG&toc=OJ:L:2020:266I:TOC;;;;;;;;;;;;; +28/10/2022;125154;EU.5711.57;CFi.014;2020-08-05;;(UN ID: CFi.014)\n(Date of UN designation: 2020-08-05)\n(Reportedly killed during fighting in December 2020);P;person;amendment;council;2021-04-19;2021-04-19;2021/628 (OJ L132);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CF;;125157;EN;;amendment;council;2020-08-13;2020-08-13;2020/1194 (OJ L266I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.266.01.0001.01.ENG&toc=OJ:L:2020:266I:TOC +28/10/2022;125228;EU.5731.92;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Iqbal;Muhammad;Zafar;Muhammad Zafar Iqbal;;;;;125230;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125228;EU.5731.92;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Zafar Iqbal Chaudhry;;;;;125231;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125228;EU.5731.92;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Iqbal;Malik;Zafar;Malik Zafar Iqbal;;;;;125232;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125228;EU.5731.92;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Malik Zafar Iqbal Shahbaz;;;;;125233;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125228;EU.5731.92;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Malik Zafar Iqbal Shehbaz;;;;;125234;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125228;EU.5731.92;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Iqbal;Zaffer;;Zaffer Iqbal;;;;;125235;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125228;EU.5731.92;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;Iqbal;Zafar;;Zafar Iqbal;;;Professor;;125236;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125228;EU.5731.92;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-10-04;4;10;1953;;;NO;GREGORIAN;;;Masjid al-Qadesia, 4 Lake Road;Lahore;PK;PAKISTAN;125229;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125228;EU.5731.92;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29553654234 (id-National identification card) ((national identification));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;125241;EN;(national identification);amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;; +28/10/2022;125228;EU.5731.92;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35202-4135948-7 (id-National identification card) ((national identification));NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;125242;EN;(national identification);amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;; +28/10/2022;125228;EU.5731.92;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DG5149481 (passport-National passport) [known to be expired](passport issued on 22.8.2006, expired on 21.8.2011, passport booklet number a2815665);NO;YES;NO;NO;NO;;;;;;;passport;National passport;;00;;125243;EN;passport issued on 22.8.2006, expired on 21.8.2011, passport booklet number a2815665;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;; +28/10/2022;125228;EU.5731.92;;2012-03-14;;(Date of UN designation: 2012-03-14)\n(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;125237;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF +28/10/2022;125263;EU.5751.30;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Yuri Khadzimuratavich KARAEU;;M;;"Former Minister of Internal Affairs; Lieutenant General of Militia (police force); Aide to the President of the Republic of Belarus - Inspector for the Grodno/Hrodna Region/Oblast";125265;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125263;EU.5751.30;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Юрий Хаджимуратович КАРАЕВ;RU;M;;;125415;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125263;EU.5751.30;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Юрый Хаджымуратавіч КАРАЕЎ;BE;M;;;125416;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125263;EU.5751.30;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Yuri Khadzimuratovich KARAEV;;M;;;125417;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125263;EU.5751.30;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Jurij Chadzjimuratovitj KARAJEV;SV;M;;;127904;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125263;EU.5751.30;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Juryj Chadzjymuratavitj KARAJEU;SV;M;;;127905;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125263;EU.5751.30;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-06-21;21;6;1966;;;NO;GREGORIAN;;;Vladikavkaz;;RU;RUSSIAN FEDERATION;125264;EN;Ordzhonikidze (former USSR), currently Vladikavkaz (Russian Federation);amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125269;EU.5753.28;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Vadim Dmitrievich IPATOV;;M;;;125270;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125269;EU.5753.28;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Вадим Дмитриевич ИПАТОВ;RU;M;;;125519;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125269;EU.5753.28;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Вадзім Дзмітрыевіч ІПАТАЎ;BE;M;;;125520;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125269;EU.5753.28;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Vadzim Dzmitryevich IPATAU;;M;;Deputy Chairman of the Central Elec­toral Commission (CEC);125521;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125269;EU.5753.28;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Vadim Dmitrijevitj IPATOV;SV;M;;;127970;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125269;EU.5753.28;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Vadzim Dzmitryjevitj IPATAU;SV;M;;;127971;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125269;EU.5753.28;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-10-30;30;10;1964;;;NO;GREGORIAN;;Ivano-Frankivsk Region/Oblast;;Kolomyia;UA;UKRAINE;125518;EN;former USSR (now Ukraine);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125271;EU.5754.27;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Elena Nikolaevna DMUHAILO;;F;;;125272;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125271;EU.5754.27;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Елена Николаевна ДМУХАЙЛО;RU;F;;;125523;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125271;EU.5754.27;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Алена Мікалаеўна ДМУХАЙЛА;BE;F;;;125524;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125271;EU.5754.27;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alena Mikalaeuna DMUHAILA;;F;;Secretary of the Central Electoral Commission (CEC);125525;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125271;EU.5754.27;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Jelena Nikolajevna DMUCHAJLO;SV;F;;;127974;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125271;EU.5754.27;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alena Mikalajeuna DMUCHAJLA;SV;F;;;127975;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125271;EU.5754.27;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-07-01;1;7;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;125522;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125273;EU.5755.26;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Genadz Arkadzievich KAZAKEVICH;;M;;"Former First Deputy Minister of Internal Affairs; Deputy Minister of Internal Affairs – Chief of the Criminal Militia, Colonel of Militia (police force)";125275;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125273;EU.5755.26;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Геннадий Аркадьевич КАЗАКЕВИЧ;RU;M;;;125418;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125273;EU.5755.26;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Генадзь Аркадзьевіч КАЗАКЕВІЧ;BE;M;;;125419;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125273;EU.5755.26;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Gennadi Arkadievich KAZAKEVICH;;M;;;125420;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125273;EU.5755.26;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Gennadij Arkadjevitj KAZAKEVITJ;SV;M;;;127803;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125273;EU.5755.26;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Henadz Arkadzevitj KAZAKEVITJ;SV;M;;;127804;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125273;EU.5755.26;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-02-14;14;2;1975;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;125274;EN;former USSR (now Belarus);amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125276;EU.5756.25;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexandr Petrovich BARSUKOV;;M;;;125278;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125276;EU.5756.25;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Александр Петрович БАРСУКОВ;RU;M;;;125421;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125276;EU.5756.25;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Аляксандр Пятровіч БАРСУКОЎ;BE;M;;;125422;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125276;EU.5756.25;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aliaksandr Piatrovich BARSUKOU;;M;;"Former Deputy Minister Internal Affairs; Lieutenant-General of Militia (police force);\n\nAide to the President of the Republic of Belarus - Inspector for the Minsk Region/Oblast";125423;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125276;EU.5756.25;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexander Petrovich BARSUKOV;;M;;;128155;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125276;EU.5756.25;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aleksandr Petrovitj BARSUKOV;SV;M;;;128156;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125276;EU.5756.25;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aljaksandr Pjatrovitj BARSUKOU;SV;M;;;128157;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125276;EU.5756.25;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-04-29;29;4;1965;;;NO;GREGORIAN;;;Vetkovski (Vetka) District;;BY;BELARUS;125277;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125279;EU.5757.24;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Sergei Nikolaevich KHOMENKO;;M;;;125281;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125279;EU.5757.24;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Сергей Николаевич ХОМЕНКО;RU;M;;;125424;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125279;EU.5757.24;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Сяргей Мікалаевіч ХАМЕНКА;BE;M;;;125425;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125279;EU.5757.24;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Siarhei Mikalaevich KHAMENKA;;M;;"Former Deputy Minister of Internal Affairs, Major-General of Militia (police force); Minister of Justice";125426;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125279;EU.5757.24;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Sergej Nikolajevitj CHOMENKO;SV;M;;;127828;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125279;EU.5757.24;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Siarhej Mikalajevitj CHAMENKA;SV;M;;;127829;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125279;EU.5757.24;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-09-21;21;9;1966;;;NO;GREGORIAN;;;;Yasinovataya;UA;UKRAINE;125280;EN;former USSR (now Ukraine);amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125282;EU.5758.23;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Yuri Genadzevich NAZARANKA;;M;;"Former Deputy Minister of Internal Affairs, Former Commander of the Internal Troops;\n\nFirst Deputy Minister of Internal Affairs, Head of the Public Security Police, Major General of Militia (police force)";125284;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125282;EU.5758.23;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Юрий Геннадьевич НАЗАРЕНКО;RU;M;;;125427;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125282;EU.5758.23;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Юрый Генадзевіч НАЗАРАНКА;BE;M;;;125428;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125282;EU.5758.23;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Yuri Gennadievich NAZARENKO;;M;;;125429;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125282;EU.5758.23;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Jurij Gennadjevich NAZARENKO;SV;M;;;127834;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125282;EU.5758.23;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Juryj Henadzevitj NAZARANKA;SV;M;;;127835;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125282;EU.5758.23;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-04-17;17;4;1976;;;NO;GREGORIAN;;;;Slonim;BY;BELARUS;125283;EN;former USSR (now Belarus);amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125287;EU.5760.0;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Dmitry Vladimirovich BALABA;;M;;;125288;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125287;EU.5760.0;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Дмитрий Владимирович БАЛАБА;RU;M;;;125443;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125287;EU.5760.0;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Дзмітрый Уладзіміравіч БАЛАБА;BE;M;;;125444;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125287;EU.5760.0;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Dzmitry Uladzimiravich BALABA;;M;;Head of OMON (‘Special Purpose Po­lice Detachment’) for the Minsk City Executive Committee;125445;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125287;EU.5760.0;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Dmitrij Vladimirovitj BALABA;SV;M;;;127852;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125287;EU.5760.0;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Dzmitryj Uladzimiravitj BALABA;SV;M;;;127853;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125287;EU.5760.0;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-06-01;1;6;1972;;;NO;GREGORIAN;;Minsk Region/Oblast;;village of Gorodilovo;BY;BELARUS;125442;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125289;EU.5761.96;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Oleg Vladimirovitch MATKIN;;M;;;125290;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125289;EU.5761.96;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Олег Владимирович МАТКИН;RU;M;;;125489;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125289;EU.5761.96;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Алег Уладзіміравіч МАТКІН;BE;M;;;125490;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125289;EU.5761.96;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aleh Uladzimiravich MATKIN;;M;;Head of Penal Correction Depart­ment in the Ministry of Internal Af­fairs (MoIA), Major-General of Militia (police force);125491;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125289;EU.5761.96;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Oleg Vladimirovitj MATKIN;SV;M;;;127899;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125289;EU.5761.96;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aleh Uladzimiravitj MATKIN;SV;M;;;127900;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125291;EU.5762.95;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Valery Pavlovich VAKULCHIK;;M;;;125293;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125291;EU.5762.95;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Валерий Павлович ВАКУЛЬЧИК;RU;M;;;125495;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125291;EU.5762.95;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Вале́рый Па́ўлавіч ВАКУ́ЛЬЧЫК;BE;M;;;125496;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125291;EU.5762.95;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Valeri Paulavich VAKULCHYK;;M;;"Former Chairman of the State Security Committee (KGB);\n\nFormer State Secretary of the Security Council;\n\nAide to the President of the Republic of Belarus – Inspector for the Brest Region/Oblast";125497;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125291;EU.5762.95;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Valerij Pavlovitj VAKULTJIK;SV;M;;;127935;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125291;EU.5762.95;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Valeryj Paulavitj VAKULTJYK;SV;M;;;127936;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125291;EU.5762.95;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-06-19;19;6;1964;;;NO;GREGORIAN;;;;Radostovo;BY;BELARUS;125292;EN;former USSR (now Belarus);amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125296;EU.5764.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Dmitry Vasilievich REUTSKY;;M;;;125297;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125296;EU.5764.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Дмитрий Васильевич РЕУЦКИЙ;RU;M;;;125502;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125296;EU.5764.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Дзмітрый Васільевіч РАВУЦКІ;BE;M;;;125503;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125296;EU.5764.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Dzmitry Vasilievich RAVUTSKI;;M;;Deputy Chairman of the State Secur­ity Committee (KGB);125504;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125296;EU.5764.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Dmitrij Vasiljevitj REUTSKIJ;SV;M;;;127948;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125296;EU.5764.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Dzmitryj Vasiljevitj RAVUTSKI;SV;M;;;127949;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125298;EU.5765.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Vladimir Viktorovich KALACH;;M;;;125299;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125298;EU.5765.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Владимир Викторович КАЛАЧ;RU;M;;;125505;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125298;EU.5765.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Уладзімір Віктаравіч КАЛАЧ;BE;M;;;125506;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125298;EU.5765.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Uladzimir Viktaravich KALACH;;M;Major-General;"Former Deputy Chairman of the State Security Committee (KGB); Aide to the President of the Republic of Belarus - Inspector for Minsk Region/Oblast";125507;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125298;EU.5765.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Vladimir Viktorovitj KALATJ;SV;M;;;127950;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125298;EU.5765.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Uladzimir Viktaravitj KALATJ;SV;M;;;127951;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125300;EU.5766.91;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Oleg Anatolievich CHERNYSHEV;;M;;;125301;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125300;EU.5766.91;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Олег Анатольевич ЧЕРНЫШЁВ;RU;M;;;125508;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125300;EU.5766.91;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Алег Анатольевіч ЧАРНІШОЎ;BE;M;;;125509;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125300;EU.5766.91;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Alieg Anatolevich CHARNYSHOU;;M;Major-General;"Former Deputy Chairman of the State Security Committee (KGB); Deputy Chairman of the Presidium of the National Academy of Sciences";125510;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125300;EU.5766.91;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Oleg Anatoljevitj TJERNYSJOV;SV;M;;;127954;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125300;EU.5766.91;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aleh Anatoljevitj TJARNYSJOU;SV;M;;;127955;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125302;EU.5767.90;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexander Vladimirovich KONYUK;;M;;;125303;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125302;EU.5767.90;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Александр Владимирович КОНЮК;RU;M;;;125512;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125302;EU.5767.90;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Аляксандр Уладзіміравіч КАНЮК;BE;M;;;125513;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125302;EU.5767.90;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aliaksandr Uladzimiravich KANYUK;;M;;"Former Prosecutor General of the Republic of Belarus;\n\nAmbassador of the Republic of Belarus to Armenia";125514;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125302;EU.5767.90;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexandr Vladimirovitj KONJUK;SV;M;;;128158;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125302;EU.5767.90;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aljaksandr Uladzimiravitj KANJUK;SV;M;;;128159;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125302;EU.5767.90;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexandr Vladimirovich KONYUK;;M;;;128160;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125302;EU.5767.90;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-07-11;11;7;1960;;;NO;GREGORIAN;;;;Grodno/Hrodna;BY;BELARUS;125511;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125328;EU.5771.65;;;;(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Abu- Shayma;;;;;125335;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125328;EU.5771.65;;;;(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Abu-Shaima;;;;;125336;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125328;EU.5771.65;;;;(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Abu Gharib al-Madani;;;;;125337;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125328;EU.5771.65;;;;(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Mustafa Muhammad;;;;;125338;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125328;EU.5771.65;;;;(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Ahmad Shahji;;;;;125339;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125328;EU.5771.65;;;;(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Khalid Mahmud;;;;;125340;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125328;EU.5771.65;;;;(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Hasan Gul;;;;;125341;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125328;EU.5771.65;;;;(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Hassan Gul;;;;;125342;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125328;EU.5771.65;;;;(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Hassan Ghul;;;;;125343;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125328;EU.5771.65;;;;(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;Mustafa Hajji Muhammad Khan;;;;;125344;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125328;EU.5771.65;;;;(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;;;NO;GREGORIAN;;;;Sangrar, Sindh Province;PK;PAKISTAN;125329;EN;between August 1977 and September 1977;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125328;EU.5771.65;;;;(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;;;NO;GREGORIAN;;;;Al-Madinah;SA;SAUDI ARABIA;125330;EN;between August 1977 and September 1977;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125328;EU.5771.65;;;;(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976;;;NO;GREGORIAN;;;;Sangrar, Sindh Province;PK;PAKISTAN;125331;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125328;EU.5771.65;;;;(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976;;;NO;GREGORIAN;;;;Al-Madinah;SA;SAUDI ARABIA;125332;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125328;EU.5771.65;;;;(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SA;;125333;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF +28/10/2022;125328;EU.5771.65;;;;(Date of designation referred to in Article 2a(4)(b): 14.3.2012.);P;person;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;125334;EN;;amendment;commission;2012-03-23;2012-03-22;253/2012 (OJ L84);TAQA;http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2012:084:0023:0025:EN:PDF +28/10/2022;125391;EU.5792.2;;2020-09-21;;(Date of UN designation: 2020-09-21);P;person;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;Mousa DIAB;;M;;;125392;EN;;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125391;EU.5792.2;;2020-09-21;;(Date of UN designation: 2020-09-21);P;person;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;Moussa DIAB;;M;;;125393;EN;;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125394;EU.5793.1;;2020-09-21;;(Date of UN designation: 2020-09-21);E;enterprise;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;Air Sigma;;;;;125396;EN;;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125394;EU.5793.1;;2020-09-21;;(Date of UN designation: 2020-09-21);E;enterprise;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;Sigma Aviation;;;;;125397;EN;;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125394;EU.5793.1;;2020-09-21;;(Date of UN designation: 2020-09-21);E;enterprise;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;Sigma Airlines;;;;Commercial cargo air company;125398;EN;Registered under name: Kenesbayev Umirbek Zharmenovich;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125394;EU.5793.1;;2020-09-21;;(Date of UN designation: 2020-09-21);E;enterprise;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;;;;;;;;;;;;;;;;Almaty;Markov Str. 11;;050013;;;NO;WEB[https://airsigma.pro/]\nPHONE[+77272922305 ]\n(Registered under name: Kenesbayev Umirbek Zharmenovich);KZ;KAZAKHSTAN;125395;EN;Registered under name: Kenesbayev Umirbek Zharmenovich;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125446;EU.5798.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Иван Владимирович КУБРАКОВ;RU;M;;;125448;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125446;EU.5798.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ivan Vladimirovich KUBRAKOV;;M;;;125449;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125446;EU.5798.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Іван Уладзіміравіч КУБРАКОЎ;BE;M;;;125754;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125446;EU.5798.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ivan Uladzimiravich KUBRAKOU;;M;;"Former Head of the Main Internal Affairs Directorate of the Minsk City Executive Committee;\n\nMinister of Internal Affairs, Major General of Militia (police force)";125755;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125446;EU.5798.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ivan Vladimirovitj KUBRAKOV;SV;M;;;127858;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125446;EU.5798.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ivan Uladzimiravitj KUBRAKOU;SV;M;;;127859;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125446;EU.5798.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-05-05;5;5;1975;;;NO;GREGORIAN;;Mogilev/Mahiliou Region/Oblast;;village of Malinovka;BY;BELARUS;125447;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125450;EU.5799.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Максим Александрович ГАМОЛА;RU;M;;;125451;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125450;EU.5799.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Maxim Aliaksandravich GAMOLA;;M;;"Former Head of the Police Department in Moskovski District, Minsk;\n\nDeputy head of the Minsk City Police Department, Head of Criminal Police";125452;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125450;EU.5799.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Максім Аляксандравіч ГАМОЛА;;M;;;125756;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125450;EU.5799.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Maxim Alexandrovich GAMOLA;;M;;;125757;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125450;EU.5799.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Maksim Aleksandrovitj GAMOLA;;M;;;127864;SV;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125450;EU.5799.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Maksim Aljaksandravitj HAMOLA;;M;;;127865;SV;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125450;EU.5799.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Maxim Aliaksandravich HAMOLA;;M;;;127973;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125453;EU.5800.1;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Александр Михайлович АЛЕШКЕВИЧ;RU;M;;;125454;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125453;EU.5800.1;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Alexander Mikhailovich ALESHKEVICH;;M;;;125455;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125453;EU.5800.1;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Аляксандр Міхайлавіч АЛЯШКЕВІЧ;BE;M;;;125758;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125453;EU.5800.1;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aliaksandr Mikhailavich ALIASHKEVICH;;M;;"Former First Deputy Head of the District De­partment of Internal Affairs in Mos­kovski District, Minsk, Head of Crim­inal Police; Head of the District Department of Internal Affairs in Leninski District, Minsk";125759;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125453;EU.5800.1;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Alexandr Michajlovitj ALESJKEVITJ;SV;M;;;127870;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125453;EU.5800.1;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aljaksandr Michajlavitj ALJASJKEVITJ;SV;M;;;127871;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125453;EU.5800.1;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Alexandr Mikhailovich ALESHKEVICH;;M;;;127976;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125456;EU.5801.0;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Андрей Васильевич ГАЛЕНКА;RU;M;;;125457;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125456;EU.5801.0;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrey Vasilievich GALENKA;;M;;;125458;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125456;EU.5801.0;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Андрэй Васільевіч ГАЛЕНКА;BE;M;;;125760;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125456;EU.5801.0;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrei Vasilievich GALENKA;;M;;Deputy Head of the District Depart­ment of Internal Affairs in Moskovski District, Minsk, Head of Public Safety Police;125761;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125456;EU.5801.0;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrej Vasiljevitj GALENKA;SV;M;;;127874;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125456;EU.5801.0;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrej Vasiljevitj HALENKA;SV;M;;;127875;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125459;EU.5802.96;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Александр Павлович ВАСИЛЬЕВ;RU;M;;;125460;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125459;EU.5802.96;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Аляксандр Паўлавіч ВАСІЛЬЕЎ;BE;M;;;125461;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125459;EU.5802.96;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aliaksandr Paulavich VASILIEU;;M;;"Former Head of the Department of Internal Affairs of Gomel/Homyel Region/Oblast Executive Committee; Head of the Academy of the Ministry of Internal Affairs";125462;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125459;EU.5802.96;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Alexander Pavlovich VASILIEV;;M;;;125463;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125459;EU.5802.96;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Alexandr Pavlovitj VASILJEV;SV;M;;;127876;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125459;EU.5802.96;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aljaksandr Paulavitj VASILJEU;SV;M;;;127877;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125459;EU.5802.96;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Alexandr Pavlovich VASILIEV;;M;;;127977;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125459;EU.5802.96;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-03-24;24;3;1975;;;NO;GREGORIAN;;;;Mahiliou/Mogilev;BY;BELARUS;125762;EN;former USSR (now Belarus);amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125464;EU.5803.95;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Олег Николаевич ШУЛЯКОВСКИЙ;RU;M;;;125465;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125464;EU.5803.95;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Алег Мікалаевіч ШУЛЯКОЎСКІ;BE;M;;;125466;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125464;EU.5803.95;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aleh Mikalaevich SHULIAKOUSKI;;M;;"Former First Deputy Head of the Department of Internal Affairs of Gomel/Homyel Region/Oblast Executive Committee, Head of Criminal Police; Head of the Department of Internal Affairs of the Brest Region/Oblast Executive Committee";125467;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125464;EU.5803.95;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Oleg Nikolaevich SHULIAKOVSKI;;M;;;125468;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125464;EU.5803.95;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Oleg Nikolajevitj SJULJAKOVSKIJ;SV;M;;;127880;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125464;EU.5803.95;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aleh Mikalajevitj SJULJAKOUSKI;SV;M;;;127881;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125464;EU.5803.95;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-07-26;26;7;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;125763;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125474;EU.5805.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Александр Вячеславович АСТРЕЙКО;RU;M;;;125476;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125474;EU.5805.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Аляксандр Вячаслававіч АСТРЭЙКА;BE;M;;;125477;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125474;EU.5805.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aliaksandr Viachaslavavich ASTREIKA;;M;;"Former Head of the Department of Internal Affairs of Brest Region/Oblast Executive Committee, Major-General of Militia (police force); Head of the Department of Internal Affairs of the Minsk Region/Oblast Executive Committee";125478;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125474;EU.5805.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Alexander Viacheslavovich ASTREIKO;;M;;;125479;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125474;EU.5805.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Alexandr Vjatjeslavovitj ASTREJKO;SV;M;;;127890;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125474;EU.5805.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aljaksandr Vjatjaslavavitj ASTREJKA;SV;M;;;127891;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125474;EU.5805.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Alexandr Viacheslavovich ASTREIKO;;M;;;127978;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125474;EU.5805.93;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-12-22;22;12;1971;;;NO;GREGORIAN;;;;Kapyl;BY;BELARUS;125475;EN;former USSR (now Belarus);amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125480;EU.5806.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Леонид ЖУРАВСКИЙ;RU;M;;;125481;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125480;EU.5806.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Leanid ZHURAUSKI;;M;;Head of OMON (‘Special Purpose Po­lice Detachment’) in Vitebsk/Viciebsk;125482;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125480;EU.5806.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Леанід ЖУРАЎСКІ;BE;M;;;125767;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125480;EU.5806.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Leonid ZHURAVSKI;;M;;;125768;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125480;EU.5806.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Leonid ZJURAVSKIJ;SV;M;;;127893;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125480;EU.5806.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Leanid ZJURAUSKI;SV;M;;;127894;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125480;EU.5806.92;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-09-20;20;9;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;125766;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125483;EU.5807.91;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Михаил ДОМАРНАЦКИЙ;RU;M;;;125484;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125483;EU.5807.91;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Mikhail DOMARNATSKY;;M;;;125485;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125483;EU.5807.91;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Міхаіл ДАМАРНАЦКІ;BE;M;;;125769;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125483;EU.5807.91;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Mikhail DAMARNACKI;;M;;Head of OMON (‘Special Purpose Po­lice Detachment’) in Gomel/Homyel;125770;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125483;EU.5807.91;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Michail DOMARNATSKIJ;SV;M;;;127896;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125483;EU.5807.91;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Michail DAMARNATSKI;SV;M;;;127897;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125486;EU.5808.90;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Максим МИХОВИЧ;RU;M;;;125487;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125486;EU.5808.90;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Maxim MIKHOVICH;;M;;Head of OMON (‘Special Purpose Po­lice Detachment’) in Brest, Lieutenant Colonel;125488;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125486;EU.5808.90;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Maxim MIKHOVICH;;M;;;125771;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125486;EU.5808.90;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Максім МІХОВІЧ;BE;M;;;125772;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125486;EU.5808.90;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Maksim MICHOVITJ;SV;M;;;127898;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125486;EU.5808.90;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Maksim MICHOVITJ;SV;M;;;127979;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125492;EU.5809.89;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Иван Юрьевич СОКОЛОВСКИЙ;RU;M;;;125493;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125492;EU.5809.89;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ivan Yurievich SOKOLOVSKI;;M;;;125494;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125492;EU.5809.89;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Іван Юр’евіч САКАЛОЎСКІ;BE;M;;;125764;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125492;EU.5809.89;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ivan Yurievich SAKALOUSKI;;M;;Director of the Akrestina detention centre, Minsk;125765;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125492;EU.5809.89;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ivan Jurjevitj SOKOLOVSKIJ;SV;M;;;127929;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125492;EU.5809.89;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ivan Jurjevitj SAKALOUSKI;SV;M;;;127930;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125526;EU.5810.67;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Андрей Анатольевич ГУРЖИЙ;RU;M;;;125528;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125526;EU.5810.67;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Андрэй Анатольевіч ГУРЖЫ;BE;M;;;125529;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125526;EU.5810.67;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrei Anatolievich GURZHY;;M;;Member of the Central Electoral Commission (CEC);125530;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125526;EU.5810.67;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrey Anatolievich GURZHIY;;M;;;125531;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125526;EU.5810.67;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrej Anatoljevitj GURZJIJ;SV;M;;;127968;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125526;EU.5810.67;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrej Anatoljevitj HURZJY;SV;M;;;127969;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125526;EU.5810.67;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-10-10;10;10;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;125527;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125532;EU.5811.66;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ольга Леонидовна ДОРОШЕНКО;RU;F;;;125534;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125532;EU.5811.66;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Вольга Леанідаўна ДАРАШЭНКА;BE;F;;;125535;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125532;EU.5811.66;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Volga Leanidauna DARASHENKA;;F;;Member of the Central Electoral Commission (CEC);125536;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125532;EU.5811.66;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Olga Leonidovna DOROSHENKO;;F;;;125537;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125532;EU.5811.66;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Olga Leonidovna DOROSJENKO;SV;F;;;127964;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125532;EU.5811.66;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Volha Leanidauna DARASJENKA;SV;F;;;127965;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125532;EU.5811.66;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;125533;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125538;EU.5812.65;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Сергей Алексеевич КАЛИНОВСКИЙ;RU;M;;;125540;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125538;EU.5812.65;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Сяргей Аляксеевіч КАЛІНОЎСКІ;BE;M;;;125541;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125538;EU.5812.65;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Siarhei Aliakseevich KALINOUSKI;;M;;Member of the Central Electoral Commission (CEC);125542;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125538;EU.5812.65;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Sergey Alexeyevich KALINOVSKIY;;M;;;125543;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125538;EU.5812.65;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Sergej Alexeyevich KALINOVSKIJ;SV;M;;;127962;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125538;EU.5812.65;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Siarhej Aljaksejevitj KALINOUSKI;SV;M;;;127963;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125538;EU.5812.65;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-01-03;3;1;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;125539;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125544;EU.5813.64;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Светлана Петровна КАЦУБО;RU;F;;;125546;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125544;EU.5813.64;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Святлана Пятроўна КАЦУБА;BE;F;;;125547;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125544;EU.5813.64;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Sviatlana Piatrouna KATSUBA;;F;;Member of the Central Electoral Commission (CEC);125548;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125544;EU.5813.64;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Svetlana Petrovna KATSUBO;;F;;;125549;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125544;EU.5813.64;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Svjatlana Pjatrouna KATSUBA;SV;F;;;127961;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125544;EU.5813.64;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-08-06;6;8;1959;;;NO;GREGORIAN;;Odessa Region/Oblast;;Podilsk;UA;UKRAINE;125545;EN;former USSR (now Ukraine);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125550;EU.5814.63;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Александр Михайлович ЛОСЯКИН;RU;M;;;125552;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125550;EU.5814.63;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Аляксандр Міхайлавіч ЛАСЯКІН;BE;M;;;125553;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125550;EU.5814.63;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aliaksandr Mikhailavich LASYAKIN;;M;;Member of the Central Electoral Commission (CEC);125554;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125550;EU.5814.63;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexander Mikhailovich LOSYAKIN;;M;;;125555;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125550;EU.5814.63;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexandr Michajlovitj LOSIAKIN;SV;M;;;127956;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125550;EU.5814.63;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aljaksandr Michajlavitj LASIAKIN;SV;M;;;127957;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125550;EU.5814.63;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexandr Mikhailovich LOSYAKIN;;M;;;127958;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125550;EU.5814.63;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-07-21;21;7;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;125551;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125556;EU.5815.62;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Игорь Анатольевич ПЛЫШЕВСКИЙ;RU;M;;;125558;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125556;EU.5815.62;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ігар Анатольевіч ПЛЫШЭЎСКІ;BE;M;;;125559;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125556;EU.5815.62;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Igar Anatolievich PLYSHEUSKI;;M;;Member of the Central Electoral Commission (CEC);125560;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125556;EU.5815.62;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ihor Anatolievich PLYSHEVSKIY;;M;;;125561;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125556;EU.5815.62;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Igor Anatoljevitj PLYSJEVSKIJ;SV;M;;;127952;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125556;EU.5815.62;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ihar Anatoljevitj PLYSJEUSKI;SV;M;;;127953;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125556;EU.5815.62;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-02-19;19;2;1979;;;NO;GREGORIAN;;;;Lyuban;BY;BELARUS;125557;EN;former USSR (now Belarus);amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125562;EU.5816.61;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Марина Юрьевна РАХМАНОВА;RU;F;;;125564;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125562;EU.5816.61;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Марына Юр'еўна РАХМАНАВА;BE;F;;;125565;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125562;EU.5816.61;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Marina Yureuna RAKHMANAVA;;F;;Member of the Central Electoral Commission (CEC);125566;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125562;EU.5816.61;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Marina Yurievna RAKHMANOVA;;F;;;125567;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125562;EU.5816.61;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Marina Jurjevna RACHMANOVA;SV;F;;;127946;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125562;EU.5816.61;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Maryna Jurjeuna RACHMANAVA;SV;F;;;127947;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125562;EU.5816.61;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-09-26;26;9;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;125563;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125568;EU.5817.60;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Олег Леонидович СЛИЖЕВСКИЙ;RU;M;;;125570;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125568;EU.5817.60;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Алег Леанідавіч СЛІЖЭЎСКІ;BE;M;;;125571;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125568;EU.5817.60;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aleh Leanidavich SLIZHEUSKI;;M;;Member of the Central Electoral Commission (CEC);125572;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125568;EU.5817.60;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Oleg Leonidovich SLIZHEVSKI;;M;;;125573;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125568;EU.5817.60;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Oleg Leonidovitj SLIZJEVSKIJ;SV;M;;;127944;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125568;EU.5817.60;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aleh Leanidavitj SLIZJEUSKI;SV;M;;;127945;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125568;EU.5817.60;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-08-16;16;8;1972;;;NO;GREGORIAN;;;Grodno/Hrodna;;BY;BELARUS;125569;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125574;EU.5818.59;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ирина Александровна ЦЕЛИКОВЕЦ;RU;F;;;125576;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125574;EU.5818.59;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ірына Аляксандраўна ЦЭЛІКАВЕЦ;BE;F;;;125577;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125574;EU.5818.59;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Irina Aliaksandrauna TSELIKAVETS;;F;;Member of the Central Electoral Commission (CEC);125578;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125574;EU.5818.59;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Irina Alexandrovna TSELIKOVEC;;F;;;125579;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125574;EU.5818.59;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Irina Aleksandrovna TSELIKOVETS;SV;F;;;127940;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125574;EU.5818.59;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Iryna Aljaksandrauna TSELIKAVETS;SV;F;;;127941;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125574;EU.5818.59;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-11-02;2;11;1976;;;NO;GREGORIAN;;;;Zhlobin;BY;BELARUS;125575;EN;former USSR (now Belarus);amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125633;EU.5831.4;;2020-10-01;;(Date of UN designation: 2020-10-01);P;person;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;Александр Николаевич ГАНОВ;;M;;;125635;EN;;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125633;EU.5831.4;;2020-10-01;;(Date of UN designation: 2020-10-01);P;person;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;Alexander Nikolaevich GANOV;;M;;General director of the JSC TC Grand Service Express;125636;EN;;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125633;EU.5831.4;;2020-10-01;;(Date of UN designation: 2020-10-01);P;person;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-10-24;24;10;1974;;;NO;GREGORIAN;;;;Voronezh;RU;RUSSIAN FEDERATION;125634;EN;;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125637;EU.5832.3;;2020-10-01;;(Date of UN designation: 2020-10-01);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;РЫЖЕНЬКИН;Леонид;Кронидович;Леонид Кронидович РЫЖЕНЬКИН;RU;M;;;125640;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125637;EU.5832.3;;2020-10-01;;(Date of UN designation: 2020-10-01);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;RYZHENKIN;Leonid;Kronidovich;Leonid Kronidovich RYZHENKIN;;M;;Former Deputy general director for infrastructure projects at Stroigazmontazh (SGM);125641;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125637;EU.5832.3;;2020-10-01;;(Date of UN designation: 2020-10-01);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Leonid Kronidovitj RYZJENKIN;SV;M;;;137462;EN;;amendment;council;2022-03-11;2022-03-12;2022/408 (OJ L84);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.084.01.0002.01.ENG&toc=OJ%3AL%3A2022%3A084%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125637;EU.5832.3;;2020-10-01;;(Date of UN designation: 2020-10-01);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-11-10;10;11;1967;;;NO;GREGORIAN;;;;Leningrad;RU;RUSSIAN FEDERATION;125638;EN;USSR (now St Petersburg, Russian Federation);amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125637;EU.5832.3;;2020-10-01;;(Date of UN designation: 2020-10-01);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;722 706 177 (passport-National passport) ((in 2015));NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;125639;EN;(in 2015);amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;; +28/10/2022;125648;EU.5834.1;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;АО «Ленпромтранспроект»;;;;;125652;EN;;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125648;EU.5834.1;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;Joint-stock company “Lenpromtransproyekt”;;;;;125653;EN;;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125648;EU.5834.1;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;St. Petersburg;Kondrat’yevskiy Prospekt, 15, building 5/1, 223;;195 197;;;NO;WEB[https://lptp.ru/]\nEMAIL[ptp@sp.ru];RU;RUSSIAN FEDERATION;125649;EN;;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125648;EU.5834.1;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7 825 064 262 (other-Other identification number) (Tax ID (INN no.));NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;125650;EN;Tax ID (INN no.);amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;; +28/10/2022;125648;EU.5834.1;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 027 809 210 054 (regnumber-Registration Number) (Registration ID (OGRN no.));NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125651;EN;Registration ID (OGRN no.);amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;; +28/10/2022;125660;EU.5836.96;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;АО «Дирекция по строительству железной дороги Беркакит-Томмот-Якутск»;;;;;125664;EN;;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125660;EU.5836.96;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;Joint-stock company “The Berkakit-Tommot-Yakutsk Railway Line’s Construction Directorate”;;;;;125665;EN;;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125660;EU.5836.96;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;city of Aldan;Mayakovskogo St. 14;;678 900;Aldansky District;;NO;"WEB[https://dsgd.ru/]\nEMAIL[info@dsgd.ru; gmn@dsgd.ru]";RU;RUSSIAN FEDERATION;125661;EN;;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125660;EU.5836.96;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 402 015 986 (other-Other identification number) (Tax ID (INN no.));NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;125662;EN;Tax ID (INN no.);amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;; +28/10/2022;125660;EU.5836.96;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 121 402 000 213 (regnumber-Registration Number) (Registration ID (OGRN no.));NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125663;EN;Registration ID (OGRN no.);amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;; +28/10/2022;125666;EU.5837.95;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;Федеральное государственное унитарное предприятие «Крымская железная дорога»;;;;;125670;EN;;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125666;EU.5837.95;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;Federal State Unitary Enterprise “Crimea Railway”;;;;;125671;EN;;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125666;EU.5837.95;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;Simferopol;34 Pavlenko St.;;95 006;;;NO;WEB[https://crimearw.ru]\nEMAIL[ngkkjd@mail.ru ];UA;UKRAINE;125667;EN;;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125666;EU.5837.95;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9 102 157 783 (other-Other identification number) (Tax ID (INN no.));NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;125668;EN;Tax ID (INN no.);amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;; +28/10/2022;125666;EU.5837.95;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 159 102 022 738 (regnumber-Registration Number) (Registration ID (OGRN no.));NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125669;EN;Registration ID (OGRN no.);amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;; +28/10/2022;125672;EU.5838.94;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;Крымская первая страховая компания;;;;;125676;EN;;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125672;EU.5838.94;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;First Crimean Insurance Company;;;;;125677;EN;;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125672;EU.5838.94;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;Sevastopol;Butakova Ln, 4;;;;;NO;WEB[https://kpsk-ins.ru/about]\nEMAIL[info@kspk-ins.ru];UA;UKRAINE;125673;EN;;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125672;EU.5838.94;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9 102 006 047 (other-Other identification number) (Tax ID (INN no.));NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;125674;EN;Tax ID (INN no.);amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;; +28/10/2022;125672;EU.5838.94;;2020-10-01;;(Date of UN designation: 2020-10-01);E;enterprise;amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 149 102 007 933 (regnumber-Registration Number) (Registration ID (OGRN no.));NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;125675;EN;Registration ID (OGRN no.);amendment;council;2020-10-01;2020-10-01;2020/1367 (OJ L318);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.318.01.0001.01.ENG&toc=OJ:L:2020:318:TOC;;;;;;;;;;;;; +28/10/2022;125688;EU.5839.93;;2020-09-21;;(Date of UN designation: 2020-09-21);E;enterprise;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;Avrasya Shipping;;;;A maritime company;125690;EN;;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125688;EU.5839.93;;2020-09-21;;(Date of UN designation: 2020-09-21);E;enterprise;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;;;;;;;;;;;;;;;;İlkadım, Samsun;Liman Mh. Gezi Cd. No:22/3;;;;;NO;WEB[http://www.avrasyashipping.com/iletisim]\nPHONE[+90 549 720 1748]\nEMAIL[info@avrasyashipping.com];TR;TURKEY;125689;EN;;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125691;EU.5840.71;;2020-09-21;;(Date of UN designation: 2020-09-21);E;enterprise;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;Med Wave Shipping;;;;A maritime company;125695;EN;;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125691;EU.5840.71;;2020-09-21;;(Date of UN designation: 2020-09-21);E;enterprise;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;;;;;;;;;;;;;;;;;Ground Floor, Orient Queen Homes Building, John Kennedy, Ras Beirut;;;;;NO;"PHONE[+962787064121; +96265865550; +96265868550]\nEMAIL[operation@medwave.co]";LB;LEBANON;125692;EN;;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125691;EU.5840.71;;2020-09-21;;(Date of UN designation: 2020-09-21);E;enterprise;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;;;;;;;;;;;;;;;;Amman;Adel Al-Hojrat building n°3, 1st Floor, opposite Swefieh, Mall-Swefieh;850880;11185;;;NO;"PHONE[+962787064121; +96265865550; +96265868550]\nEMAIL[operation@medwave.co]";JO;JORDAN;125693;EN;;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125691;EU.5840.71;;2020-09-21;;(Date of UN designation: 2020-09-21);E;enterprise;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;;;;;;;;;;;;;;;;;Office 511, 5th Floor, Baraka Building, Dauwar Al-Waha;;;;;NO;"PHONE[+962787064121; +96265865550; +96265868550]\nEMAIL[operation@medwave.co]";JO;JORDAN;125694;EN;;amendment;council;2020-09-21;2020-09-21;2020/1309 (OJ L305I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.305.01.0001.01.ENG&toc=OJ:L:2020:305I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125696;EU.5841.70;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Rungrado Trading Corporation;;;;;125698;EN;;amendment;council;2017-10-16;2017-10-16;2017/1859 (OJ L265 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1859&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125696;EU.5841.70;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Korea Rungrado General Trading Corporation;;;;;125699;EN;;amendment;council;2017-10-16;2017-10-16;2017/1859 (OJ L265 I);PRK;http://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017R1859&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125696;EU.5841.70;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;조선릉라도무역총회사;;;;;142131;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125696;EU.5841.70;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Trgovska družba Rungrado;SL;;;;143029;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125696;EU.5841.70;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Korejska splošna trgovska družba Rungrado;SL;;;;143047;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125696;EU.5841.70;;2017-10-16;;(Date of UN designation: 2017-10-16);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;Segori-dong, Pothonggang District;NO;PHONE[850-2-18111-3818022]\nEMAIL[rrd@co.chesin.com]\nFAX[850-2-3814507 ];KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;125697;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125785;EU.5851.39;;2020-10-22;;(Date of UN designation: 2020-10-22);P;person;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;Дмитрий Сергеевич БАДИН;;M;;;125788;EN;;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125785;EU.5851.39;;2020-10-22;;(Date of UN designation: 2020-10-22);P;person;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;Dmitry Sergeyevich BADIN;;M;;Military intelligence officer of the 85th Main Centre of Special Services (GTsSS) of the Main Directorate of the General Staff of the Armed Forces of the Russian Federation (GU/GRU);125789;EN;;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125785;EU.5851.39;;2020-10-22;;(Date of UN designation: 2020-10-22);P;person;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1990-11-15;15;11;1990;;;NO;GREGORIAN;;;;Kursk;RU;RUSSIAN FEDERATION;125786;EN;Russian SFSR (now Russian Federation);amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125785;EU.5851.39;;2020-10-22;;(Date of UN designation: 2020-10-22);P;person;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;125787;EN;;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC +28/10/2022;125790;EU.5852.38;;2020-10-22;;(Date of UN designation: 2020-10-22);P;person;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;Игорь Олегович КОСТЮКОВ;;M;;;125793;EN;;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125790;EU.5852.38;;2020-10-22;;(Date of UN designation: 2020-10-22);P;person;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;Igor Olegovich KOSTYUKOV;;M;;Current Head of the Main Directorate of the General Staff of the Armed Forces of the Russian Federation (GU/GRU). where he previously served as First Deputy Head.;125794;EN;;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125790;EU.5852.38;;2020-10-22;;(Date of UN designation: 2020-10-22);P;person;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-02-21;21;2;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;125791;EN;;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125790;EU.5852.38;;2020-10-22;;(Date of UN designation: 2020-10-22);P;person;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;125792;EN;;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC +28/10/2022;125814;EU.5854.36;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Александр Валерьевич БЫКОВ;RU;M;;;125815;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125814;EU.5854.36;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Аляксандр Валер’евіч БЫКАЎ;BE;M;;;125816;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125814;EU.5854.36;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexander Valerievich BYKOV;;M;;;125817;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125814;EU.5854.36;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aliaksandr Valerievich BYKAU;;M;;Commander of the Special Rapid Response Unit (SOBR), Lieutenant Colonel;125818;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125814;EU.5854.36;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexandr Valerjevitj BYKOV;SV;M;;;127844;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125814;EU.5854.36;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aljaksandr Valerjevitj BYKAU;SV;M;;;127845;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125814;EU.5854.36;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexandr Valerievich BYKOV;;M;;;127906;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125819;EU.5855.35;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Александр Святославович ШЕПЕЛЕВ;RU;M;;;125821;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125819;EU.5855.35;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Аляксандр Святаслававіч ШЭПЕЛЕЎ;BE;M;;;125822;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125819;EU.5855.35;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexander Svyatoslavovich SHEPELEV;;M;;;125823;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125819;EU.5855.35;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aliaksandr Sviataslavavich SHEPELEU;;M;;Head of the Department for Safety and Security, Ministry of Internal Affairs;125824;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125819;EU.5855.35;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexandr Svjatoslavovitj SJEPELEV;SV;M;;;127848;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125819;EU.5855.35;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aljaksandr Svjataslavavitj SJEPELEU;SV;M;;;127849;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125819;EU.5855.35;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexandr Svyatoslavovich SHEPELEV;;M;;;127972;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125819;EU.5855.35;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-10-14;14;10;1975;;;NO;GREGORIAN;;Mogilev/Mahiliou Region/Oblast;Kruglyanskiy district;village of Rublevsk;BY;BELARUS;125820;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125825;EU.5856.34;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Сергей Евгеньевич ТЕРЕБОВ;RU;M;;;125827;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125825;EU.5856.34;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Сяргей Яўгенавіч ЦЕРАБАЎ;BE;M;;;125828;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125825;EU.5856.34;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Sergey Evgenievich TEREBOV;;M;;;125829;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125825;EU.5856.34;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Siarhei Yaugenavich TSERABAU;;M;;First Deputy Chairman of the State Security Committee (KGB);125830;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125825;EU.5856.34;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Sergej Evgenjevitj TEREBOV;SV;M;;;127942;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125825;EU.5856.34;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Siarhej Jauhenavitj TSERABAU;SV;M;;;127943;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125825;EU.5856.34;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;NO;GREGORIAN;;;;Borisov/Barisaw;BY;BELARUS;125826;EN;former USSR (now Belarus);amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125831;EU.5857.33;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Хазалбек Бахтибекович АТАБЕКОВ;RU;M;;;125833;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125831;EU.5857.33;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Хазалбек Бактібекавіч АТАБЕКАЎ;BE;M;;;125834;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125831;EU.5857.33;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Khazalbek Bakhtibekovich ATABEKOV;;M;;;125835;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125831;EU.5857.33;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Khazalbek Baktibekavich ATABEKAU;;M;;Deputy Commander of the Internal Troops;125836;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125831;EU.5857.33;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Chazalbek Bachtibekovitj ATABEKOV;SV;M;;;127838;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125831;EU.5857.33;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Chazalbek Baktibekavitj ATABEKAU;SV;M;;;127839;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125831;EU.5857.33;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-03-18;18;3;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;125832;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;Abu-Malik al-Talli;;;;;125942;EN;low quality alias;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;Abu-Malik al-Shami;;;;;125943;EN;low quality alias;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;abu-Malik al-Ansari;;;;;125944;EN;low quality alias;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;Abu Hussein;;;;;125945;EN;low quality alias;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;Abu Malek El Talleh;;;;;125946;EN;low quality alias;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;Jamal Husayn Zayniyah;;;;;125947;EN;good quality alias;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;زینیھ حسن حسین جمال;;;;;125948;EN;;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;Jamal Hussein Hassan Zeiniye;;;;Leader of Al-Nusrah Front for the People of the Levant in West Kalamoun, Syrian Arab Republic;125949;EN;;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;Arsal, Bekaa;;;;;;NO;;LB;LEBANON;125930;EN;;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;125931;EN;;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-01-01;1;1;1972;;;NO;GREGORIAN;;;;Tell Mnin;SY;SYRIAN ARAB REPUBLIC;125932;EN;;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-01-01;1;1;1972;;;NO;GREGORIAN;;;;Al Tall;SY;SYRIAN ARAB REPUBLIC;125933;EN;;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-01-01;1;1;1972;;;NO;GREGORIAN;;;;Benghazi;LY;LIBYA;125934;EN;;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-08-17;17;8;1972;;;NO;GREGORIAN;;;;Tell Mnin;SY;SYRIAN ARAB REPUBLIC;125935;EN;;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-08-17;17;8;1972;;;NO;GREGORIAN;;;;Al Tall;SY;SYRIAN ARAB REPUBLIC;125936;EN;;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-08-17;17;8;1972;;;NO;GREGORIAN;;;;Benghazi;LY;LIBYA;125937;EN;;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5877002 (id-National identification card) (on 2011-05-25);NO;NO;NO;NO;NO;;2011-05-25;;;;;id;National identification card;;SY;;125939;EN;;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13080011550 (id-National identification card) (National identification no.);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;125940;EN;National identification no.;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"3987189 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;SY;;125941;EN;;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;; +28/10/2022;125879;EU.5878.67;QDi.428;2020-10-08;;(UN ID: QDi.428)\n(Date of UN designation: 2020-10-08)\n(Mother’s name is Amina Tohmeh.\nUNLI - 9.10.2020);P;person;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;125938;EN;;amendment;commission;2020-10-13;2020-10-13;2020/1473 (OJ L334I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.334.01.0001.01.ENG&toc=OJ:L:2020:334I:TOC +28/10/2022;125958;EU.5891.12;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Лидия Михайловна ЕРМОШИНА;RU;F;;;125960;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125958;EU.5891.12;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Лідзія Міхайлаўна ЯРМОШЫНА;BE;F;;;125961;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125958;EU.5891.12;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Lidia Mikhailovna YERMOSHINA;;F;;;125962;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125958;EU.5891.12;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Lidzia Mihailauna YARMOSHINA;;F;;Former Chairwoman of the Central Electoral Commission (CEC);125963;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125958;EU.5891.12;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Lidija Michajlovna JERMOSJINA;SV;F;;;127966;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125958;EU.5891.12;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Lidzija Michajlauna JARMOSJYNA;SV;F;;;127967;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125958;EU.5891.12;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-01-29;29;1;1953;;;NO;GREGORIAN;;;;Slutsk;BY;BELARUS;125959;EN;former USSR (now Belarus);amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125964;EU.5892.11;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Анатолий Анатольевич ВАСИЛЬЕВ;RU;M;;;125966;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125964;EU.5892.11;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Анатоль Анатольевіч ВАСІЛЬЕЎ;BE;M;;;125967;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125964;EU.5892.11;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Anatoli Anatolievich VASILIEV;;M;;;125968;EN;;amendment;council;2020-10-02;2020-10-02;2020/1387 (OJ L319I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ:L:2020:319I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125964;EU.5892.11;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Anatol Anatolievich VASILIEU;;M;;"Former Deputy Head of the Department of Internal Affairs of Gomel/Homyel Region/Oblast Executive Committee, Head of Public Safety Police; Deputy Chairman of the Investigative Committee";125969;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125964;EU.5892.11;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Anatolij Anatoljevitj VASILJEV;SV;M;;;127884;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125964;EU.5892.11;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Anatol Anatoljevitj VASILJEU;SV;M;;;127885;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125964;EU.5892.11;;2020-10-02;;(Date of UN designation: 2020-10-02);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-01-26;26;1;1972;;;NO;GREGORIAN;;Gomel/Homyel Region/Oblast;;Gomel/Homyel;BY;BELARUS;125965;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125991;EU.5894.9;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;Андрей Вениаминович ЯРИН;;M;;;125994;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125991;EU.5894.9;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;Andrei Veniaminovich YARIN;;M;Chief of the Presidential Domestic Policy Directorate;;125995;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125991;EU.5894.9;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-02-13;13;2;1970;;;NO;GREGORIAN;;;;Nizhny Tagil;00;UNKNOWN;125992;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125991;EU.5894.9;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;125993;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC +28/10/2022;125996;EU.5895.8;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;Сергей Владиленович КИРИЕНКО;;M;;;125998;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125996;EU.5895.8;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;Sergei Vladilenovich KIRIYENKO;;M;First Deputy Chief of Staff of the Presidential Executive Office;;125999;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125996;EU.5895.8;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-07-26;26;7;1962;;;NO;GREGORIAN;;;;Sukhumi;00;UNKNOWN;125997;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;125996;EU.5895.8;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;126024;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC +28/10/2022;126000;EU.5896.7;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2022-10-14;2022-10-15;2022/1936 (OJ L268);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1936;МЕНЯЙЛО;Сергей;Иванович;Сергей Иванович МЕНЯЙЛО;RU;M;;;126003;EN;;amendment;council;2022-10-14;2022-10-15;2022/1936 (OJ L268);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1936;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126000;EU.5896.7;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2022-10-14;2022-10-15;2022/1936 (OJ L268);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1936;MENYAILO;Sergei;Ivanovich;Sergei Ivanovich MENYAILO;;M;;Head of North Ossetia Alania, former Plenipotentiary Representative of the President of the Russian Federation in the Siberian Federal District;126004;EN;;amendment;council;2022-10-14;2022-10-15;2022/1936 (OJ L268);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1936;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126000;EU.5896.7;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2022-10-14;2022-10-15;2022/1936 (OJ L268);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1936;MENYAILO;Serguéi;Ivanovich;Serguéi Ivanovich MENYAILO;ES;M;;;144947;EN;;amendment;council;2022-10-14;2022-10-15;2022/1936 (OJ L268);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1936;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126000;EU.5896.7;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2022-10-14;2022-10-15;2022/1936 (OJ L268);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1936;MENJAJLO;Sergej;Ivanovitj;Sergej Ivanovitj MENJAJLO;SV;M;;;144950;EN;;amendment;council;2022-10-14;2022-10-15;2022/1936 (OJ L268);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1936;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126000;EU.5896.7;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2022-10-14;2022-10-15;2022/1936 (OJ L268);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1936;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-08-22;22;8;1960;;;NO;GREGORIAN;;;Alagir;;RU;RUSSIAN FEDERATION;126001;EN;;amendment;council;2022-10-14;2022-10-15;2022/1936 (OJ L268);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1936;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126000;EU.5896.7;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2022-10-14;2022-10-15;2022/1936 (OJ L268);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1936;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;126002;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC +28/10/2022;126005;EU.5897.6;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;Александр Васильевич БОРТНИКОВ;;M;;;126008;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126005;EU.5897.6;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;Aleksandr Vasilievich BORTNIKOV;;M;Director of the Federal Security Service of the Russian Federation;;126009;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126005;EU.5897.6;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-11-15;15;11;1951;;;NO;GREGORIAN;;;;Perm;00;UNKNOWN;126006;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126005;EU.5897.6;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;126007;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC +28/10/2022;126010;EU.5898.5;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;Павел Анатольевич ПОПОВ;;M;;;126013;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126010;EU.5898.5;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;Pavel Anatolievich POPOV;;M;Deputy Minister of Defence of the Russian Federation;;126014;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126010;EU.5898.5;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-01-01;1;1;1957;;;NO;GREGORIAN;;;;Krasnoyarsk;00;UNKNOWN;126011;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126010;EU.5898.5;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;126012;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC +28/10/2022;126015;EU.5899.4;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;Алексей Юрьевич КРИВОРУЧКО;;M;;;126018;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126015;EU.5899.4;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;Aleksei Yurievich KRIVORUCHKO;;M;Deputy Minister of Defence of the Russian Federation;;126019;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126015;EU.5899.4;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-07-17;17;7;1975;;;NO;GREGORIAN;;;;Stavropol;00;UNKNOWN;126016;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126015;EU.5899.4;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;126017;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC +28/10/2022;126020;EU.5900.10;;2020-10-15;;(Date of UN designation: 2020-10-15);E;enterprise;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;Государственный научно-исследо­вательский институт органической химии и технологии;;;;;126022;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126020;EU.5900.10;;2020-10-15;;(Date of UN designation: 2020-10-15);E;enterprise;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;State Scientific Research Institute for Organic Chemistry and Technology (GosNIIOKhT);;;;state research institute;126023;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126020;EU.5900.10;;2020-10-15;;(Date of UN designation: 2020-10-15);E;enterprise;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;Moscow;Shosse Entuziastov 23;;11 124;Moscow Oblast;;NO;WEB[http://gosniiokht.ru]\nPHONE[+7 (495) 673 7530]\nEMAIL[dir@gosniiokht.ru]\nFAX[+7 (495) 673 2218];RU;RUSSIAN FEDERATION;126021;EN;;amendment;council;2020-10-15;2020-10-15;2020/1480 (OJ L341);CHEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0001.01.ENG&toc=OJ:L:2020:341:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126101;EU.5912.74;;2020-02-27;;(Date of UN designation: 2020-02-27);P;person;amendment;council;2021-11-12;2021-11-13;2021/1960 (OJ L400);TUR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0011.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Mehmet Ferruh AKALIN;;M;;Vice-President (Assistant General Manager) and member of the Board of Directors of the Turkish Petroleum Corporation (TPAO). The head of TPAO’s Exploration.;126105;EN;;amendment;council;2021-11-12;2021-11-13;2021/1960 (OJ L400);TUR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0011.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126101;EU.5912.74;;2020-02-27;;(Date of UN designation: 2020-02-27);P;person;amendment;council;2021-11-12;2021-11-13;2021/1960 (OJ L400);TUR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0011.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-12-09;9;12;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;126102;EN;;amendment;council;2020-02-27;2020-02-27;2020/274 (OJ L56I);TUR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0274&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126101;EU.5912.74;;2020-02-27;;(Date of UN designation: 2020-02-27);P;person;amendment;council;2021-11-12;2021-11-13;2021/1960 (OJ L400);TUR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0011.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13571379758 (other-Other identification number) (Passport No or ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;126104;EN;Passport No or ID;amendment;council;2020-02-27;2020-02-27;2020/274 (OJ L56I);TUR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0274&from=EN;;;;;;;;;;;;; +28/10/2022;126101;EU.5912.74;;2020-02-27;;(Date of UN designation: 2020-02-27);P;person;amendment;council;2021-11-12;2021-11-13;2021/1960 (OJ L400);TUR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0011.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TR;;126103;EN;;amendment;council;2020-02-27;2020-02-27;2020/274 (OJ L56I);TUR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0274&from=EN +28/10/2022;126106;EU.5913.73;;2020-02-27;;(Date of UN designation: 2020-02-27);P;person;amendment;council;2021-11-12;2021-11-13;2021/1960 (OJ L400);TUR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0011.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Ali Coscun NAMOGLU;;M;;Deputy Director of the Exploration Department of the Turkish Petroleum Corporation (TPAO);126110;EN;;amendment;council;2020-02-27;2020-02-27;2020/274 (OJ L56I);TUR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0274&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126106;EU.5913.73;;2020-02-27;;(Date of UN designation: 2020-02-27);P;person;amendment;council;2021-11-12;2021-11-13;2021/1960 (OJ L400);TUR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0011.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-11-27;27;11;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;126107;EN;;amendment;council;2020-02-27;2020-02-27;2020/274 (OJ L56I);TUR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0274&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126106;EU.5913.73;;2020-02-27;;(Date of UN designation: 2020-02-27);P;person;amendment;council;2021-11-12;2021-11-13;2021/1960 (OJ L400);TUR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0011.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11096919534 (other-Other identification number) (Passport No or ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;126109;EN;Passport No or ID;amendment;council;2020-02-27;2020-02-27;2020/274 (OJ L56I);TUR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0274&from=EN;;;;;;;;;;;;; +28/10/2022;126106;EU.5913.73;;2020-02-27;;(Date of UN designation: 2020-02-27);P;person;amendment;council;2021-11-12;2021-11-13;2021/1960 (OJ L400);TUR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0011.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TR;;126108;EN;;amendment;council;2020-02-27;2020-02-27;2020/274 (OJ L56I);TUR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R0274&from=EN +28/10/2022;126119;EU.5914.72;;2020-10-22;;(Date of UN designation: 2020-10-22);E;enterprise;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;85th Main Centre for Special Services (GTsSS) of the Main Directorate of the General Staff of the Armed Forces of the Russian Federation (GU/GRU);;;;;126121;EN;also known as “military unit 26165” (industry nicknames: “APT28”, “Fancy Bear”, “Sofacy Group”, “Pawn Storm” and “Strontium”);amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126119;EU.5914.72;;2020-10-22;;(Date of UN designation: 2020-10-22);E;enterprise;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;Komsomol’skiy Prospekt, 20;;119146;;;NO;;RU;RUSSIAN FEDERATION;126120;EN;;amendment;council;2020-10-22;2020-10-22;2020/1536 (OJ L351I);CYB;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.351.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A351I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126233;EU.5951.48;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Viktar Aliaksandravich LUKASHENKA;;M;;"Former National Security Advisor to the President, Member of the Security Council; President of the National Olympic Committee of Belarus";126235;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126233;EU.5951.48;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Виктор Александрович ЛУКАШЕНКО;RU;M;;;126236;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126233;EU.5951.48;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Віктар Аляксандравіч ЛУКАШЭНКА;BE;M;;;126237;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126233;EU.5951.48;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Viktor Aleksandrovich LUKASHENKO;;M;;;126238;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126233;EU.5951.48;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Viktor Aleksandrovitj LUKASJENKO;SV;M;;;127933;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126233;EU.5951.48;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Viktar Aljaksandravitj LUKASJENKA;SV;M;;;127934;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126233;EU.5951.48;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-11-28;28;11;1975;;;NO;GREGORIAN;;;;Mahiliou/Mogilev;BY;BELARUS;126234;EN;former USSR (now Belarus);amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126245;EU.5953.46;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Иван Станиславович ТЕРТЕЛЬ;RU;M;;;126247;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126245;EU.5953.46;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Іван Станіслававіч ТЭРТЭЛЬ;BE;M;;;126248;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126245;EU.5953.46;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ivan Stanislavovich TERTEL;;M;;;126249;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126245;EU.5953.46;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ivan Stanislavavich TERTEL;;M;;Chairman of the State Security Committee (KGB), former Chairman of the State Control Committee;126250;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126245;EU.5953.46;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ivan Stanislavovitj TERTEL;SV;M;;;127927;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126245;EU.5953.46;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ivan Stanislavavitj TERTEL;SV;M;;;127928;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126245;EU.5953.46;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-09-08;8;9;1966;;;NO;GREGORIAN;;;village Privalka/Privalki in Grodno/Hrodna Region/Oblast;;BY;BELARUS;126246;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126251;EU.5954.45;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Роман Иванович МЕЛЬНИК;RU;M;;;126253;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126251;EU.5954.45;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Раман Іванавіч МЕЛЬНІК;BE;M;;;126254;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126251;EU.5954.45;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Roman Ivanovich MELNIK;;M;;;126255;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126251;EU.5954.45;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Raman Ivanavich MELNIK;;M;;"Former Head of Main Directorate of Law and Order Protection and Preven­tion at the Ministry of Internal Affairs; Head of the Administration of the Leninskiy District of Minsk";126256;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126251;EU.5954.45;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Roman Ivanovitj MELNIK;SV;M;;;127925;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126251;EU.5954.45;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Raman Ivanavitj MELNIK;SV;M;;;127926;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126251;EU.5954.45;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-05-29;29;5;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;126252;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126257;EU.5955.44;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Иван Данилович НОСКЕВИЧ;RU;M;;;126259;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126257;EU.5955.44;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Іван Данілавіч НАСКЕВІЧ;BE;M;;;126260;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126257;EU.5955.44;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Ivan Danilovich NOSKEVICH;;M;;;126261;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126257;EU.5955.44;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Ivan Danilavich NASKEVICH;;M;;"Former Chairman of the Investigative Committee; Member of the reserve of the Investigative Committee";126262;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126257;EU.5955.44;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Ivan Danilovitj NOSKEVITJ;SV;M;;;127923;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126257;EU.5955.44;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Ivan Danilavitj NASKEVITJ;SV;M;;;127924;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126257;EU.5955.44;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-03-25;25;3;1970;;;NO;GREGORIAN;;;village of Cierabličy in Brest Region/Oblast;;BY;BELARUS;126258;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126263;EU.5956.43;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Алексей Александрович ВОЛКОВ;RU;M;;;126265;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126263;EU.5956.43;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Аляксей Аляксандравіч ВОЛКАЎ;BE;M;;;126266;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126263;EU.5956.43;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexei Alexandrovich VOLKOV;;M;;;126267;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126263;EU.5956.43;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aliaksey Aliaksandravich VOLKAU;;M;;"Former First Deputy Chairman of the Investigative Committee; currently Chairman of the State Committee for Forensic Expertise";126268;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126263;EU.5956.43;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aleksej Aleksandrovitj VOLKOV;SV;M;;;128161;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126263;EU.5956.43;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aljaksej Aljaksandravitj VOLKAU;SV;M;;;128162;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126263;EU.5956.43;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-09-07;7;9;1973;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;126264;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126302;EU.5962.16;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Сергей Яковлевич АЗЕМША;RU;M;;;126304;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126302;EU.5962.16;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Сяргей Якаўлевіч АЗЕМША;BE;M;;;126305;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126302;EU.5962.16;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Sergei Yakovlevich AZEMSHA;;M;;;126306;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126302;EU.5962.16;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Siarhei Yakaulevich AZEMSHA;;M;;Deputy Chairman of the Investigative Committee;126307;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126302;EU.5962.16;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Sergej Jakovlevitj AZEMSJA;SV;M;;;127919;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126302;EU.5962.16;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Siarhej Jakaulevitj AZEMSJA;SV;M;;;127920;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126302;EU.5962.16;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-07-17;17;7;1974;;;NO;GREGORIAN;;Gomel/Homyel Region/Oblast;;Rechitsa;BY;BELARUS;126303;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126308;EU.5963.15;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Андрей Федорович СМАЛЬ;RU;M;;;126310;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126308;EU.5963.15;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Андрэй Фёдаравіч СМАЛЬ;BE;M;;;126311;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126308;EU.5963.15;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Andrei Fyodorovich SMAL;;M;;;126312;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126308;EU.5963.15;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Andrei Fiodaravich SMAL;;M;;Former Deputy Chairman of the Investigative Committee;126313;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126308;EU.5963.15;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Andrej Fedorovitj SMAL;SV;M;;;127917;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126308;EU.5963.15;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Andrej Fjodaravitj SMAL;SV;M;;;127918;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126308;EU.5963.15;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-08-01;1;8;1973;;;NO;GREGORIAN;;;;Brest;BY;BELARUS;126309;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126314;EU.5964.14;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Андрей Юрьевич ПАВЛЮЧЕНКО;RU;M;;;126316;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126314;EU.5964.14;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Андрэй Юр'евіч ПАЎЛЮЧНКА;BE;M;;;126317;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126314;EU.5964.14;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrei Yurevich PAVLYUCHENKO;;M;;;126318;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126314;EU.5964.14;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrei Yurevich PAULIUCHENKA;;M;;Head of Operational-Analytical Center;126319;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126314;EU.5964.14;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrej Jurjevitj PAVLJUTJENKO;SV;M;;;127915;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126314;EU.5964.14;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrej Jurjevitj PAULJUTJENKA;SV;M;;;127916;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126314;EU.5964.14;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-08-01;1;8;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;126315;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126320;EU.5965.13;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Игорь Иванович БУЗОВСКИЙ;RU;M;;;126322;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126320;EU.5965.13;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ігар Іванавіч БУЗОЎСКІ;BE;M;;;126323;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126320;EU.5965.13;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Igor Ivanovich BUZOVSKI;;M;;;126324;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126320;EU.5965.13;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ihar Ivanavich BUZOUSKI;;M;;Deputy Minister of Information;126325;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126320;EU.5965.13;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Igor Ivanovitj BUZOVSKIJ;SV;M;;;127913;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126320;EU.5965.13;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ihar Ivanavitj BUZOUSKI;SV;M;;;127914;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126320;EU.5965.13;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-07-10;10;7;1972;;;NO;GREGORIAN;;Grodno/Hrodna Region/Oblast;village of Koshelevo;;BY;BELARUS;126321;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126326;EU.5966.12;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Наталья Николаевна ЭЙСМОНТ;RU;F;;;126328;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126326;EU.5966.12;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Наталля Мікалаеўна ЭЙСМАНТ;BE;F;;;126329;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126326;EU.5966.12;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Natalia Nikolayevna EISMONT;;F;;;126330;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126326;EU.5966.12;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Natallia Mikalaeuna EISMANT;;F;;Press Secretary of the President of Belarus;126331;EN;Maiden name: Kirsanova (Russian spelling: Кирсанова) or Selyun (Russian spelling: Селюн);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126326;EU.5966.12;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Natalja Nikolajevna EJSMONT;SV;F;;;127911;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126326;EU.5966.12;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Natalja Mikalajeuna EJSMANT;SV;F;;;127912;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126326;EU.5966.12;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-02-16;16;2;1984;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;126327;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126332;EU.5967.11;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Сергей Евгеньевич ЗУБКОВ;RU;M;;;126334;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126332;EU.5967.11;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Сяргей Яўгенавіч ЗУБКОЎ;BE;M;;;126335;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126332;EU.5967.11;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Sergei Yevgenevich ZUBKOV;;M;;;126336;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126332;EU.5967.11;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Siarhei Yaugenavich ZUBKOU;;M;;ALFA Unit Commander;126337;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126332;EU.5967.11;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Sergej Jevgenjevitj ZUBKOV;SV;M;;;127909;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126332;EU.5967.11;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Siarhej Jauhenavitj ZUBKOU;SV;M;;;127910;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126332;EU.5967.11;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-08-21;21;8;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;126333;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126338;EU.5968.10;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Андрей Алексеевич РАВКОВ;RU;M;;;126340;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126338;EU.5968.10;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Андрэ́й Аляксе́евіч РАЎКО́Ў;BE;M;;;126341;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126338;EU.5968.10;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrei Alexeyevich RAVKOV;;M;;;126342;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126338;EU.5968.10;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrei Aliakseevich RAUKOU;;M;;Former State Secretary of the Security Council\n\nAmbassador of the Republic of Belarus to Azerbaijan;126343;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126338;EU.5968.10;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrej Aleksejevitj RAVKOV;SV;M;;;128163;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126338;EU.5968.10;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrej Aljaksejevitj RAUKOU;SV;M;;;128164;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126338;EU.5968.10;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-06-25;25;6;1967;;;NO;GREGORIAN;;;village of Revyaki, Vitebsk/Viciebsk Region/Oblast;;BY;BELARUS;126339;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126344;EU.5969.9;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Петр Петрович МИКЛАШЕВИЧ;RU;M;;;126346;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126344;EU.5969.9;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Пётр Пятровіч МІКЛАШЭВІЧ;BE;M;;;126347;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126344;EU.5969.9;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Petr Petrovich MIKLASHEVICH;;M;;;126348;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126344;EU.5969.9;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Pyotr Piatrovich MIKLASHEVICH;;M;;Chairman of the Constitutional Court of the Republic of Belarus;126349;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126344;EU.5969.9;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Petr Petrovitj MIKLASJEVITJ;SV;M;;;127888;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126344;EU.5969.9;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Pjotr Pjatrovitj MIKLASJEVITJ;SV;M;;;127889;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126344;EU.5969.9;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-10-18;18;10;1954;;;NO;GREGORIAN;;Minsk Region/Oblast;;;BY;BELARUS;126345;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126350;EU.5970.84;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Игорь Петрович СЕРГЕЕНКО;RU;M;;;126352;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126350;EU.5970.84;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ігар Пятровіч СЕРГЯЕНКА;BE;M;;;126353;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126350;EU.5970.84;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Igor Petrovich SERGEENKO;;M;;;126354;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126350;EU.5970.84;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ihar Piatrovich SERGYAENKA;;M;;Chief of Staff of the Presidential Administration;126355;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126350;EU.5970.84;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Igor Petrovitj SERGEJENKO;SV;M;;;127931;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126350;EU.5970.84;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ihar Pjatrovitj SERHIAJENKA;SV;M;;;127932;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126350;EU.5970.84;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-01-14;14;1;1963;;;NO;GREGORIAN;;;Stolitsa village in Vitebsk/Viciebsk Region/Oblast;;BY;BELARUS;126351;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126365;EU.5971.83;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Александр Григорьевич ЛУКАШЕНКО;RU;M;;;126367;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126365;EU.5971.83;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Аляксандр Рыгоравіч ЛУКАШЭНКА;BE;M;;;126368;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126365;EU.5971.83;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexandr Grigorievich LUKASHENKO;;M;;;126369;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126365;EU.5971.83;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aliaksandr Ryhoravich LUKASHENKA;;M;;President of the Republic of Belarus;126370;EN;;amendment;council;2020-11-06;2020-11-06;2020/1648 (OJ L370I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.370.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A370I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126365;EU.5971.83;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aleksandr Grigorjevitj LUKASJENKO;SV;M;;;127937;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126365;EU.5971.83;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aljaksandr Ryhoravitj LUKASJENKA;SV;M;;;127938;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126365;EU.5971.83;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexander Grigorievich LUKASHENKO;;M;;;127939;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126365;EU.5971.83;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-08-30;30;8;1954;;;NO;GREGORIAN;;;Kopys settlement, Vitebsk/Viciebsk Region/Oblast;;BY;BELARUS;126366;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126488;EU.5992.20;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Talal Barazi;;M;;;126490;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126488;EU.5992.20;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Talal AL-BARAZI;;M;;Former Minister of Internal \nTrade and Consumer \nProtection.;126491;EN;;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126488;EU.5992.20;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;طلال البرازي;AR;M;;;126563;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126488;EU.5992.20;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;NO;GREGORIAN;;;;Hama city;SY;SYRIAN ARAB REPUBLIC;126489;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126492;EU.5993.19;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Lubana Mshaweh;;F;;;126494;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126492;EU.5993.19;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Loubana Mshaweh;;F;;;126495;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126492;EU.5993.19;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Lubana MOUCHAWEH;;F;;;126496;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126492;EU.5993.19;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Loubana MOUCHAWEH;;F;;Culture Minister. Appointed in August 2020.;126497;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126492;EU.5993.19;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;لبانة مشوح;AR;F;;;126564;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126492;EU.5993.19;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;126493;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126498;EU.5994.18;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Darem TABA’A;;M;;Minister of Education. Appointed in August 2020.;126500;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126498;EU.5994.18;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;دارم طباع;AR;M;;;126565;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126498;EU.5994.18;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;126499;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126501;EU.5995.17;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ahmad al-Sayed;;M;;;126503;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126501;EU.5995.17;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ahmad al-Sayyed;;M;;;126504;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126501;EU.5995.17;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ahmad Alsyed;;M;;;126505;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126501;EU.5995.17;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Ahmad SAYYED;;M;;Minister of Justice. Appointed in August 2020.;126506;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126501;EU.5995.17;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;احمد السيد;AR;M;;;126566;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126501;EU.5995.17;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;NO;GREGORIAN;;;;Quneitra;SY;SYRIAN ARAB REPUBLIC;126502;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126507;EU.5996.16;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Tamam Raad;;M;;;126510;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126507;EU.5996.16;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Tammam Raad;;M;;;126511;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126507;EU.5996.16;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Tamam RA’AD;;M;;;126512;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126507;EU.5996.16;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Tammam RA’AD;;M;;Minister of Hydraulic/Water Resources. Appointed in August 2020.;126513;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126507;EU.5996.16;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;تمام رعد;AR;M;;;126567;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126507;EU.5996.16;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;NO;GREGORIAN;;;;Homs;SY;SYRIAN ARAB REPUBLIC;126508;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126507;EU.5996.16;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;NO;GREGORIAN;;;;Al-Qusayr;SY;SYRIAN ARAB REPUBLIC;126509;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126514;EU.5997.15;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Kenan Yagi;;M;;;126516;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126514;EU.5997.15;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Kinan Yagi;;M;;;126517;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126514;EU.5997.15;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Kenan YAGHI;;M;;;126518;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126514;EU.5997.15;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Kinan YAGHI;;M;;Minister of Finance. Appointed in August 2020.;126519;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126514;EU.5997.15;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;كنان ياغي;AR;M;;;126568;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126514;EU.5997.15;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976;;;NO;GREGORIAN;;;Salmiya, Hama countryside;;SY;SYRIAN ARAB REPUBLIC;126515;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126520;EU.5998.14;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Zouhair KHAZIM;;M;;;126523;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126520;EU.5998.14;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;Zuhair KHAZIM;;M;;Minister of Transport. Appointed in August 2020.;126524;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126520;EU.5998.14;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;زهير خزيم;AR;M;;;126569;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126520;EU.5998.14;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;NO;GREGORIAN;;;;Lattakia;SY;SYRIAN ARAB REPUBLIC;126521;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126520;EU.5998.14;;2020-10-16;;(Date of UN designation: 2020-10-16);P;person;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;NO;GREGORIAN;;;;Ain al-Tinah;SY;SYRIAN ARAB REPUBLIC;126522;EN;;amendment;council;2020-10-16;2020-10-16;2020/1505 (OJ L342I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.LI.2020.342.01.0001.01.ENG&toc=OJ:L:2020:342I:TOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126526;EU.5999.13;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;Bassam TU’MA;;M;;;126528;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126526;EU.5999.13;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;Bassam TOU’MA;;M;;Minister of oil and mineral resources. Appointed in August 2020.;126529;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126526;EU.5999.13;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;بسام طعمة;AR;M;;;126577;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126526;EU.5999.13;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969;;;NO;GREGORIAN;;;;Safita;SY;SYRIAN ARAB REPUBLIC;126527;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126530;EU.6000.14;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;Hassan AL-GHABBASH;;M;;;126532;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126530;EU.6000.14;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;Hassan GHOBASH;;M;;;126533;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126530;EU.6000.14;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;Hassan GHABACHE;;M;;Minister of health. Appointed in August 2020.;126534;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126530;EU.6000.14;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;حسن غباشة;AR;M;;;126578;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126530;EU.6000.14;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;126531;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126535;EU.6001.13;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;Ziyad SABBAGH;;M;;Minister of Industry. Appointed in August 2020.;126537;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126535;EU.6001.13;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;زياد صباغ;AR;M;;;126579;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126535;EU.6001.13;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;;;Aleppo;SY;SYRIAN ARAB REPUBLIC;126536;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126538;EU.6002.12;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;Mohammad Hassan QATANA;;M;;Minister of Agriculture and Agrarian reform. Appointed in August 2020.;126540;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126538;EU.6002.12;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;حسن قطانة;AR;M;;;126580;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126538;EU.6002.12;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;126539;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126541;EU.6003.11;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;Ghassan AL-ZAMEL;;M;;;126543;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126541;EU.6003.11;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;Ghassan AL-ZAMIL;;M;;;126544;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126541;EU.6003.11;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;Ghassan ZAMEL;;M;;Minister of Electricity. Appointed in August 2020.;126545;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126541;EU.6003.11;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;غسان زامل;AR;M;;;126581;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126541;EU.6003.11;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;126542;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126546;EU.6004.10;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;Mohammad Fayez AL-BARASHA;;M;;;126548;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126546;EU.6004.10;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;Mohammad Fayez AL-BARSHA;;M;;;126549;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126546;EU.6004.10;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;Mohammad Fayez BARCHA;;M;;;126550;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126546;EU.6004.10;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;Mohamad Fayez AL-BARASHA;;M;;;126551;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126546;EU.6004.10;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;Mohamad Fayez AL-BARSHA;;M;;;126552;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126546;EU.6004.10;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;Mohamad Fayez BARCHA;;M;;Minister of State. Appointed in August 2020.;126553;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126546;EU.6004.10;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;محمد فايز برشة;AR;M;;;126582;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126546;EU.6004.10;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;126547;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126554;EU.6005.9;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Maloul AL-HUSSEIN;;M;;;126556;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126554;EU.6005.9;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Maloul HUSSEIN;;M;;;126557;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126554;EU.6005.9;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Malloul AL-HUSSEIN;;M;;;126558;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126554;EU.6005.9;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Malloul HUSSEIN;;M;;Former Minister of State.;126559;EN;;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126554;EU.6005.9;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;ملول حسين;AR;M;;;126583;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126554;EU.6005.9;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950;;;NO;GREGORIAN;;;Al-Hasakah Governorate;;SY;SYRIAN ARAB REPUBLIC;126555;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126560;EU.6006.8;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;Mohammad Samir HADDAD;;M;;Minister of State. Appointed in August 2020.;126562;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126560;EU.6006.8;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;محمد سمير حداد;AR;M;;;126584;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126560;EU.6006.8;;2020-11-06;;(Date of UN designation: 2020-11-06);P;person;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;;Tartous;SY;SYRIAN ARAB REPUBLIC;126561;EN;;amendment;council;2020-11-06;2020-11-06;2020/1649 (OJ L370I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32020R1649&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126646;EU.6011.79;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Анатолий Александрович СИВАК;RU;M;;;126648;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126646;EU.6011.79;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Анатоль Аляксандравіч СІВАК;BE;M;;;126649;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126646;EU.6011.79;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Anatoli Alexandrovich SIVAK;;M;;;126650;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126646;EU.6011.79;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Anatol Aliaksandravich SIVAK;;M;;Deputy Prime Minister, former Chairman of the Minsk City Executive Committee;126651;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126646;EU.6011.79;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Anatolij Aleksandrovitj SIVAK;SV;M;;;127886;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126646;EU.6011.79;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Anatol Aljaksandravitj SIVAK;SV;M;;;127887;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126646;EU.6011.79;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-07-19;19;7;1962;;;NO;GREGORIAN;;Gomel/Homyel Region/Oblast;Narovlya District;Zavoit;BY;BELARUS;126647;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126652;EU.6012.78;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ivan Mikhailovich EISMONT;;M;;;126654;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126652;EU.6012.78;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Иван Михайлович Э́ЙСМОНТ;RU;M;;;126655;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126652;EU.6012.78;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Іван Міхайлавіч ЭЙСМАНТ;BE;M;;;126656;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126652;EU.6012.78;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ivan Mikhailavich EISMANT;;M;;Chairman of the Belarusian State Television and Radio Company, Head of Belteleradio Company;126657;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126652;EU.6012.78;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ivan Michajlovitj EJSMONT;SV;M;;;128165;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126652;EU.6012.78;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ivan Michajlavitj EJSMANT;SV;M;;;128166;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126652;EU.6012.78;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-01-20;20;1;1977;;;NO;GREGORIAN;;;;Grodno/Hrodna;BY;BELARUS;126653;EN;former USSR (now Belarus);amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126658;EU.6013.77;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Владимир Степанович КАРАНИК;RU;M;;;126660;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126658;EU.6013.77;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Уладзімір Сцяпанавіч КАРАНІК;BE;M;;;126661;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126658;EU.6013.77;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Vladimir Stepanovich KARANIK;;M;;;126662;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126658;EU.6013.77;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Uladzimir Stsiapanavich KARANIK;;M;;"Governor of the Grodno/Hrodna Region/Oblast; former Minister of Healthcare";127003;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126658;EU.6013.77;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Vladimir Stepanovitj KARANIK;SV;M;;;127878;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126658;EU.6013.77;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Uladzimir Stsiapanavitj KARANIK;SV;M;;;127879;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126658;EU.6013.77;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-11-30;30;11;1973;;;NO;GREGORIAN;;;;Grodno/Hrodna;BY;BELARUS;126659;EN;former USSR (now Belarus);amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126663;EU.6014.76;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Наталья Ивановна КОЧАНОВА;RU;F;;;126665;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126663;EU.6014.76;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Наталля Іванаўна КАЧАНАВА;BE;F;;;126666;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126663;EU.6014.76;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Natalia Ivanovna KOCHANOVA;;F;;;126667;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126663;EU.6014.76;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Natallia Ivanauna KACHANAVA;;F;;Chair of the Council of the Republic of the National Assembly of Belarus;126668;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126663;EU.6014.76;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Natalja Ivanovna KOTJANOVA;SV;F;;;127872;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126663;EU.6014.76;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Natallja Ivanauna KATJANAVA;SV;F;;;127873;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126663;EU.6014.76;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-09-25;25;9;1960;;;NO;GREGORIAN;;Vitebsk/Viciebsk Region/Oblast;;Polotsk;BY;BELARUS;126664;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126669;EU.6015.75;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Павел Николаевич ЛЁГКИЙ;RU;M;;;126671;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126669;EU.6015.75;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Павел Мікалаевіч ЛЁГКІ;BE;M;;;126672;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126669;EU.6015.75;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Pavel Nikolaevich LIOHKI;;M;;;126673;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126669;EU.6015.75;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Pavel Mikalaevich LIOHKI;;M;;First Deputy Minister of Information;126674;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126669;EU.6015.75;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Pavel Nikolajevitj LJOGKIJ;SV;M;;;127868;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126669;EU.6015.75;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Pavel Mikalajevitj LJOHKI;SV;M;;;127869;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126669;EU.6015.75;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-05-30;30;5;1972;;;NO;GREGORIAN;;;;Baranavichy;BY;BELARUS;126670;EN;former USSR (now Belarus);amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126675;EU.6016.74;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Игорь Владимирович ЛУЦКИЙ;RU;M;;;126677;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126675;EU.6016.74;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ігар Уладзіміравіч ЛУЦКІ;BE;M;;;126678;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126675;EU.6016.74;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Igor Vladimirovich LUTSKY;;M;;;126679;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126675;EU.6016.74;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ihar Uladzimiravich LUTSKY;;M;;Minister of Information;126680;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126675;EU.6016.74;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Igor Vladimirovitj LUTSKIJ;SV;M;;;127866;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126675;EU.6016.74;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ihar Uladzimiravitj LUTSKI;SV;M;;;127867;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126675;EU.6016.74;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-10-31;31;10;1972;;;NO;GREGORIAN;;Brest Region/Oblast;;Stolin;BY;BELARUS;126676;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126681;EU.6017.73;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Андрей Иванович ШВЕД;RU;M;;;126683;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126681;EU.6017.73;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Андрэй Іванавіч ШВЕД;BE;M;;;126684;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126681;EU.6017.73;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrei Ivanovich SHVED;;M;;;126685;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126681;EU.6017.73;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrei Ivanavich SHVED;;M;;Prosecutor General of the Republic of Belarus;126686;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126681;EU.6017.73;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrej Ivanovitj SJVED;SV;M;;;127862;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126681;EU.6017.73;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrej Ivanavitj SJVED;SV;M;;;127863;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126681;EU.6017.73;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-04-21;21;4;1973;;;NO;GREGORIAN;;;Gomel/Homyel Region/Oblast;Glushkovichi;BY;BELARUS;126682;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126687;EU.6018.72;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Геннадий Андреевич БОГДАН;RU;M;;;126688;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126687;EU.6018.72;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Генадзь Андрэевіч БОГДАН;BE;M;;;126689;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126687;EU.6018.72;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Gennady Andreievich BOGDAN;;M;;;126690;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126687;EU.6018.72;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Genadz Andreevich BOGDAN;;M;;Deputy Head of the Belarus President Property Management Directorate;126691;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126687;EU.6018.72;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Gennadij Andrejevitj BOGDAN;SV;M;;;127860;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126687;EU.6018.72;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Henadz Andrejevitj BOHDAN;SV;M;;;127861;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126687;EU.6018.72;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-01-08;8;1;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;127004;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126692;EU.6019.71;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Игорь Павлович БУРМИСТРОВ;RU;M;;;126694;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126692;EU.6019.71;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ігар Паўлавіч БУРМІСТРАЎ;BE;M;;;126695;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126692;EU.6019.71;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Igor Pavlovich BURMISTROV;;M;;;126696;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126692;EU.6019.71;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ihar Paulavich BURMISTRAU;;M;;Chief of Staff and First Deputy Commander of the Internal Troops of the Ministry of Internal Affairs;126697;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126692;EU.6019.71;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Igor Pavlovitj BURMISTROV;SV;M;;;127856;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126692;EU.6019.71;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Ihar Paulavitj BURMISTRAU;SV;M;;;127857;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126692;EU.6019.71;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-09-30;30;9;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;126693;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126698;EU.6020.49;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Артем Константинович ДУНЬКО;RU;M;;;126699;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126698;EU.6020.49;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Арцём Канстанцінавіч ДУНЬКА;BE;M;;;126700;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126698;EU.6020.49;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Artem Konstantinovich DUNKO;;M;;;126701;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126698;EU.6020.49;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Arciom Kanstantinavich DUNKA;;M;;Senior Inspector for Special Matters of the Department of Financial Investigations of the State Control Committee;126702;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126698;EU.6020.49;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Artem Konstantinovitj DUNKO;SV;M;;;127854;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126698;EU.6020.49;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Artsiom Kanstantsinavitj DUNKA;SV;M;;;127855;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126698;EU.6020.49;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1990-06-08;8;6;1990;;;NO;GREGORIAN;;;;;00;UNKNOWN;127005;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126703;EU.6021.48;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Олег Георгиевич КАРАЗЕЙ;RU;M;;;126705;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126703;EU.6021.48;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Алег Георгіевіч КАРАЗЕЙ;BE;M;;;126706;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126703;EU.6021.48;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Oleg Georgievich KARAZEI;;M;;;126707;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126703;EU.6021.48;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aleh Heorhievich KARAZIEI;;M;;"Former Head of the Prevention Department of the Main Department of Law Enforcement and Prevention of the Public Security Police of the Ministry of Internal Affairs; Associate professor at the Academy of the Ministry of Internal Affairs";126708;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126703;EU.6021.48;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Oleg Georgijevitj KARAZEJ;SV;M;;;127850;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126703;EU.6021.48;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aleh Heorhievitj KARAZEJ;SV;M;;;127851;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126703;EU.6021.48;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-01-01;1;1;1979;;;NO;GREGORIAN;;;Minsk Region/Oblast;;BY;BELARUS;126704;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126709;EU.6022.47;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Дмитрий Александрович КУРЬЯН;RU;M;;;126710;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126709;EU.6022.47;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Дзмітрый Аляксандравіч КУРЬЯН;BE;M;;;126711;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126709;EU.6022.47;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Dmitry Alexandrovich KURYAN;;M;;;126712;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126709;EU.6022.47;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Dzmitry Aliaksandravich KURYAN;;M;;Police Colonel, Deputy Head of the Main Department and Head of the Department of Law Enforcement in the Ministry of Internal Affairs;126713;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126709;EU.6022.47;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Dmitrij Aleksandrovitj KURJAN;SV;M;;;127846;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126709;EU.6022.47;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Dzmitryj Aljaksandravitj KURJAN;SV;M;;;127847;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126709;EU.6022.47;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-10-03;3;10;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;127006;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126714;EU.6023.46;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Алекса́ндр Ге́нрихович ТУРЧИ́Н;RU;M;;;126716;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126714;EU.6023.46;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Алякса́ндр Ге́нрыхавіч ТУРЧЫ́Н;BE;M;;;126717;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126714;EU.6023.46;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexandr Henrihovich TURCHIN;;M;;;126718;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126714;EU.6023.46;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aliaksandr Henrykavich TURCHIN;;M;;Chairman of Minsk Regional Executive Committee;126719;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126714;EU.6023.46;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexander Henrihovich TURCHIN;;M;;;127840;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126714;EU.6023.46;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aleksandr Genrichovitj TURTJIN;SV;M;;;127841;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126714;EU.6023.46;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aljaksandr Henrychavitj TURTJYN;SV;M;;;127842;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126714;EU.6023.46;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aleksandr Henrihovich TURCHIN;SV;M;;;127843;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126714;EU.6023.46;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-07-02;2;7;1975;;;NO;GREGORIAN;;;Grodno/Hrodna Region/Oblast;Novogrudok;BY;BELARUS;126715;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126720;EU.6024.45;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Дмитрий Николаевич ШУМИЛИН;RU;M;;;126722;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126720;EU.6024.45;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Дзмітрый Мікалаевіч ШУМІЛІН;BE;M;;;126723;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126720;EU.6024.45;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Dmitry Nikolayevich SHUMILIN;;M;;;126724;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126720;EU.6024.45;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Dzmitry Mikalaevich SHUMILIN;;M;;Deputy Head of the department for mass events of the GUVD (Main Department of Internal Affairs) of the Minsk City Executive Committee;127007;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126720;EU.6024.45;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Dmitrij Nikolajevitj SJUMILIN;SV;M;;;127836;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126720;EU.6024.45;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Dzmitryj Mikalajevitj SJUMILIN;SV;;;;127837;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126720;EU.6024.45;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-07-26;26;7;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;126721;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126725;EU.6025.44;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Виталий Иванович СТАСЮКЕВИЧ;RU;M;;;126727;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126725;EU.6025.44;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Віталь Іванавіч СТАСЮКЕВІЧ;BE;M;;;126728;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126725;EU.6025.44;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Vitalyi Ivanovich STASIUKEVICH;;M;;;126729;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126725;EU.6025.44;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Vital Ivanavich STASIUKEVICH;;M;;Deputy Chief of Public Security Police in Grodno/Hrodna;127008;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126725;EU.6025.44;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Vitalij Ivanovitj STASIUKEVITJ;SV;M;;;127832;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126725;EU.6025.44;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Vital Ivanavitj STASIUKEVITJ;SV;M;;;127833;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126725;EU.6025.44;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-03-05;5;3;1976;;;NO;GREGORIAN;;;;Grodno/Hrodna;BY;BELARUS;126726;EN;former USSR (now Belarus);amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126735;EU.6027.42;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Сергей Леонидович КАЛИННИК;RU;M;;;126737;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126735;EU.6027.42;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Сяргей Леанідавіч КАЛИННИК;BE;M;;;126738;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126735;EU.6027.42;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Siarhei Leanidavich KALINNIK;;M;;Police Colonel, Chief of the Sovetsky District Police Department of Minsk;126739;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126735;EU.6027.42;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Sergei Leonidovich KALINNIK;;M;;;127009;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126735;EU.6027.42;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Sergej Leonidovitj KALINNIK;SV;M;;;127830;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126735;EU.6027.42;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Siarhej Leanidavitj KALINNIK;SV;M;;;127831;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126735;EU.6027.42;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-07-23;23;7;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;126736;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126740;EU.6028.41;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Вадим Сергеевич ПРИГАРА;RU;M;;;126742;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126740;EU.6028.41;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Вадзім Сяргеевіч ПРЫГАРА;BE;M;;;126743;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126740;EU.6028.41;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Vadzim Siarhaevich PRYGARA;;M;;Police Lieutenant Colonel, Head of the District Police Department in Molodechno;126744;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126740;EU.6028.41;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Vadim Sergeyevich PRIGARA;;M;;;127010;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126740;EU.6028.41;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Vadim Sergejevitj PRIGARA;SV;M;;;127826;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126740;EU.6028.41;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Vadzim Siarhejevitj PRYHARA;SV;M;;;127827;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126740;EU.6028.41;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-10-31;31;10;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;126741;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126806;EU.6036.12;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Александр Александрович ПЕТРАШ;RU;M;;;126808;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126806;EU.6036.12;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Аляксандр Аляксандравіч ПЕТРАШ;BE;M;;;126809;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126806;EU.6036.12;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexandr Alexandrovich PETRASH;;M;;;126810;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126806;EU.6036.12;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aliaksandr Aliaksandravich PIETRASH;;M;;Chairman of the Moskovski district court in Minsk;126811;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126806;EU.6036.12;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aleksandr Aleksandrovitj PETRASJ;SV;M;;;128167;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126806;EU.6036.12;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Aljaksandr Aljaksandravitj PETRASJ;SV;M;;;128168;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126806;EU.6036.12;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alexander Alexandrovich PETRASH;;M;;;128169;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126806;EU.6036.12;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-05-16;16;5;1988;;;NO;GREGORIAN;;;;;00;UNKNOWN;126807;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126812;EU.6037.11;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Андрей Александрович ЛАГУНОВИЧ;RU;M;;;126813;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126812;EU.6037.11;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Андрэй Аляксандравіч ЛАГУНОВІЧ;BE;M;;;126814;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126812;EU.6037.11;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrei Alexandrovich LAHUNOVICH;;M;;;126815;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126812;EU.6037.11;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrei Aliaksandravich LAHUNOVICH;;M;;Judge of the Sovetsky district court in Gomel/Homyel;126816;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126812;EU.6037.11;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrej Aleksandrovitj LAGUNOVITJ;SV;M;;;127818;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126812;EU.6037.11;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Andrej Aljaksandravitj LAHUNOVITJ;SV;M;;;127819;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126817;EU.6038.10;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Елена Васильевна ЛИТВИНА;RU;F;;;126818;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126817;EU.6038.10;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Алена Васільеўна ЛІТВІНА;BE;F;;;126819;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126817;EU.6038.10;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Elena Vasilevna LITVINA;;F;;;126820;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126817;EU.6038.10;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alena Vasileuna LITVINA;;F;;Judge of the Leninsky district court in Mogilev/Mahiliou;126821;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126817;EU.6038.10;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Jelena Vasiljevna LITVINA;SV;F;;;127816;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126817;EU.6038.10;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alena Vasiljeuna LITVINA;SV;F;;;127817;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126822;EU.6039.9;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Виктория Валерьевна ШАБУНЯ;RU;F;;;126823;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126822;EU.6039.9;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Вікторыя Валер'еўна ШАБУНЯ;BE;F;;;126824;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126822;EU.6039.9;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Victoria Valerevna SHABUNYA;;F;;;126825;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126822;EU.6039.9;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Victoria Valeryeuna SHABUNYA;;F;;Judge of the Central district court in Minsk;126826;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126822;EU.6039.9;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Viktorija Valerjevna SJABUNJA;SV;F;;;127814;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126822;EU.6039.9;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Viktoryja Valerjeuna SJABUNJA;SV;F;;;127815;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126822;EU.6039.9;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-02-27;27;2;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;127012;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126827;EU.6040.84;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Елена Александровна ЖИВИЦА;RU;F;;;126828;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126827;EU.6040.84;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Алена Аляксандравна ЖЫВІЦА;BE;F;;;126829;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126827;EU.6040.84;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Elena Alexandrovna ZHYVITSA;;F;;;126830;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126827;EU.6040.84;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alena Aliaksandravna ZHYVITSA;;F;;Judge of the Oktyabrsky disctrict court in Minsk;126831;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126827;EU.6040.84;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Jelena Aleksandrovna ZJIVITSA;SV;F;;;127811;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126827;EU.6040.84;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alena Aljaksandravna ZJYVITSA;SV;F;;;127812;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126827;EU.6040.84;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1990-04-09;9;4;1990;;;NO;GREGORIAN;;;;;00;UNKNOWN;127013;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126832;EU.6041.83;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Наталья Анатольевна ДЕДКОВА;RU;F;;;126833;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126832;EU.6041.83;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Наталля Анатольеўна ДЗЯДКОВА;BE;F;;;126834;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126832;EU.6041.83;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Natalia Anatolievna DEDKOVA;;F;;;126835;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126832;EU.6041.83;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Natallia Anatolievna DZIADKOVA;;F;;Judge of the Partizanski district court in Minsk;126836;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126832;EU.6041.83;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Natalja Anatoljevna DEDKOVA;SV;F;;;127807;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126832;EU.6041.83;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Natallja Anatoljeuna DZIADKOVA;SV;F;;;127808;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126832;EU.6041.83;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-12-02;2;12;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;127023;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126837;EU.6042.82;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Марина Аркадьевна ФЕДОРОВА;RU;F;;;126839;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126837;EU.6042.82;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Марына Аркадзьеўна ФЁДАРАВА;BE;F;;;126840;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126837;EU.6042.82;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Marina Arkadievna FEDOROVA;;F;;;126841;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126837;EU.6042.82;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Maryna Arkadzeuna FIODARAVA;;F;;Judge of the Sovetsky district court in Minsk;126842;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126837;EU.6042.82;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Marina Arkadjevna FEDOROVA;SV;F;;;127805;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126837;EU.6042.82;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Maryna Arkadzjeuna FJODARAVA;SV;F;;;127806;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126837;EU.6042.82;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-09-11;11;9;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;126838;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126843;EU.6043.81;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Юлия Чеславовна ГУСТЫР;RU;F;;;126844;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126843;EU.6043.81;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Юлія Чаславаўна ГУСТЫР;BE;F;;;126845;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126843;EU.6043.81;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Yulia Cheslavovna HUSTYR;;F;;;126846;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126843;EU.6043.81;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Yulia Chaslavauna HUSTYR;;F;;Judge of the Central district court in Minsk;126847;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126843;EU.6043.81;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Julija Tjeslavovna GUSTYR;SV;F;;;127801;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126843;EU.6043.81;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Julija Tjaslavauna HUSTYR;SV;F;;;127802;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126843;EU.6043.81;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-01-14;14;1;1984;;;NO;GREGORIAN;;;;;00;UNKNOWN;127014;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126848;EU.6044.80;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Елена Тимофеевна НЕКРАСОВА;RU;F;;;126850;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126848;EU.6044.80;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Алена Цімафееўна НЯКРАСАВА;BE;F;;;126851;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126848;EU.6044.80;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Elena Timofeyevna NEKRASOVA;;F;;;126852;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126848;EU.6044.80;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alena Tsimafeeuna NYAKRASAVA;;F;;Judge of the Zavodsky district court in Minsk;126853;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126848;EU.6044.80;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Jelena Timofejevna NEKRASOVA;SV;F;;;127799;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126848;EU.6044.80;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;Alena Tsimafejeuna NJAKRASAVA;SV;F;;;127800;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126848;EU.6044.80;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-11-26;26;11;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;126849;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126859;EU.6046.78;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Александр Васильевич ШАКУТИН;RU;M;;;126861;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126859;EU.6046.78;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Аляксандр Васільевіч ШАКУЦІН;BE;M;;;126862;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126859;EU.6046.78;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Alexander Vasilevich SHAKUTIN;;M;;;126863;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126859;EU.6046.78;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aliaksandr Vasilevich SHAKUTSIN;;M;;Businessman, chairman of the board of directors of Amkodor holding;126864;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126859;EU.6046.78;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aleksandr Vasiljevitj SJAKUTIN;SV;M;;;128170;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126859;EU.6046.78;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aljaksandr Vasiljevitj SJAKUTSIN;SV;M;;;128171;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126859;EU.6046.78;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Alexandr Vasilevich SHAKUTIN;;M;;;128172;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126859;EU.6046.78;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-01-12;12;1;1959;;;NO;GREGORIAN;;Vitebsk/Viciebsk Region/Oblast;Orsha Rayon;Bolshoe Babino;BY;BELARUS;126860;EN;former USSR (now Belarus);amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126865;EU.6047.77;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Николай Николаевич ВОРОБЕЙ;RU;M;;;126867;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126865;EU.6047.77;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Мікалай Мікалаевіч ВЕРАБЕЙ;BE;M;;;126868;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126865;EU.6047.77;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Мікалай Мікалаевіч ВАРАБЕЙ;BE;M;;;126869;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126865;EU.6047.77;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Nikolay Nikolaevich VOROBEY;;M;;;126870;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126865;EU.6047.77;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Mikalai Mikalaevich VERABEI;;M;;;126871;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126865;EU.6047.77;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Mikalai Mikalaevich VARABEI;;M;;Businessman, co-owner of Bremino Group;126872;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126865;EU.6047.77;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Nikolaj Nikolajevitj VOROBEJ;SV;M;;;127793;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126865;EU.6047.77;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Mikalaj Mikalajevitj VERABEJ;SV;M;;;127794;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126865;EU.6047.77;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-05-04;4;5;1963;;;NO;GREGORIAN;;;;;UA;UKRAINE;126866;EN;Ukrainian SSR (now Ukraine);amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126873;EU.6048.76;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Белтехэкспорт;;;;;126875;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126873;EU.6048.76;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Beltechexport;;;;;126876;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126873;EU.6048.76;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Beltecheksport;DE;;;;127786;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126873;EU.6048.76;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;Nezavisimosti Ave. 86-B;;;;;NO;WEB[https://bte.by]\nEMAIL[mail@bte.by];BY;BELARUS;126874;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126877;EU.6049.75;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ЗТАА “Дана Астра”;;;;;126879;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126877;EU.6049.75;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ИООО “Дана Астра”;;;;;126880;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126877;EU.6049.75;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Dana Astra;;;;;126881;EN;previously a subsidiary of Dana Holdings;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126877;EU.6049.75;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;Peter Mstislavets St. 9, pom. 9-13;;220076;;;NO;"WEB[https://bir.by/; https://en.dana-holdings.com; https://dana-holdings.com/]\nPHONE[+375 (17) 269-32-60; +375 17 269-32-51 ]\nEMAIL[PR@bir.by]";BY;BELARUS;126878;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126877;EU.6049.75;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191295361 (regnumber-Registration Number) (Registration number: Dana Astra: 191295361);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;127025;EN;Registration number: Dana Astra: 191295361;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Главное хозяйственное управление;;;;;126885;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – Main Economic Department of the Presidential Administration;;;;;126886;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU — den centrale økonomiske afdeling for præsidentens administration;DA;;;;127766;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – Hauptwirtschaftsabteilung der Präsidialverwaltung;DE;;;;127767;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – Departamento Económico Principal de la Administración Presidencial;ES;;;;127769;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – Κεντρική Υπηρεσία Οικονομικών του Προεδρικού Γραφείου;EL;;;;127770;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – Office central économique de l’administration présidentielle;FR;;;;127771;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – glavni odjel za gospodarstvo predsjedničke administracije;HR;;;;127772;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – prezidento administracijos Vyriausioji ūkio valdyba;LT;;;;127773;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – Prezidenta administrācijas galvenais ekonomikas departaments;LV;;;;127774;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – Az elnöki igazgatás gazdasági főosztálya;HU;;;;127775;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU - Id-Dipartiment Ekonomiku Ewlieni tal-Amministrazzjoni Presidenzjali;MT;;;;127776;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – Dipartimento economico principale dell'amministrazione presidenziale;IT;;;;127777;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – Główny Urząd Gospodarczy administracji prezydenta;PL;;;;127778;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – Departamento Económico Principal da Administração Presidencial;PT;;;;127779;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Departamentul economic general al Administrației Prezidențiale;RO;;;;127780;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – glavni gospodarski oddelek urada predsednika;SL;;;;127781;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – Hlavné ekonomické oddelenie prezidentskej kancelárie;SK;;;;127784;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;huvudavdelningen för ekonomi vid presidentens kansli;SV;;;;127785;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – Hoofdbureau economie van het presidentieel kabinet;NL;;;;127792;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – presidentin hallinnon päätalousosasto;FI;;;;127895;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – Hlavní hospodářská správa prezidentské kanceláře;CS;;;;135448;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;GHU – presidendi kantselei juhtiv majandusosakond;ET;;;;135449;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126883;EU.6050.53;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;Miasnikova St. 37;;;;;NO;WEB[http://ghu.by]\nEMAIL[ghu@ghu.by];BY;BELARUS;126884;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126887;EU.6051.52;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"ООО ""Синезис""";;;;;126890;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126887;EU.6051.52;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;SYNESIS LLC;;;;;126891;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126887;EU.6051.52;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;Mantulinskaya 24;;123100;;;NO;"WEB[https://synesis.partners; https://synesis-group.com/]";RU;RUSSIAN FEDERATION;126888;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126887;EU.6051.52;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;Platonova 20B;;220005;;;NO;"WEB[https://synesis.partners; https://synesis-group.com/]\nPHONE[+375 (17) 240-36-50 ]\nEMAIL[yuriy.serbenkov@synesis.by]";BY;BELARUS;126889;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126887;EU.6051.52;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"7704734000/ 770301001 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;RU;;127026;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;; +28/10/2022;126887;EU.6051.52;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"190950894 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;BY;;127027;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;; +28/10/2022;126892;EU.6052.51;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Агат-электромеханический завод;;;;;126894;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126892;EU.6052.51;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;AGAT electromechanical Plant OJSC;;;;AGAT electromechanical Plant OJSC is part of the Belarussian State Authority for Military Industry of the Republic of Belarus (a.k.a. SAMI or State Military Industrial Committee);126895;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126892;EU.6052.51;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Elektromehanski zavod OJSC;SL;;;;127782;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126892;EU.6052.51;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Elektromehaanikatehas AGAT OJSC;ET;;;;127787;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126892;EU.6052.51;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;zakłady elektromechaniczne AGAT OJSC;PL;;;;127788;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126892;EU.6052.51;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Fábrica eletromecânica AGAT OJSC;PT;;;;127790;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126892;EU.6052.51;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Open vennootschap op aandelen AGAT electromechanical Plant;NL;;;;127791;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126892;EU.6052.51;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;Nezavisimosti Ave. 115;;220114;;;NO;"WEB[https://agat-emz.by/]\nPHONE[+375 (17) 272-01-32; +375 (17) 570-41-45 ]\nEMAIL[marketing@agat-emz.by]";BY;BELARUS;126893;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126904;EU.6055.48;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;140 ремонтный завод;;;;;126906;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126904;EU.6055.48;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;140 Repair Plant;;;;140 Repair Plant is part of the Belarussian State Authority for Military Industry of the Republic of Belarus (a.k.a. SAMI or State Military Industrial Committee);126907;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126904;EU.6055.48;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Remontni zavod;SL;;;;127783;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126904;EU.6055.48;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Zakłady naprawcze 140;PL;;;;127789;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126904;EU.6055.48;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;WEB[140zavod.org];00;UNKNOWN;126905;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126908;EU.6056.47;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;МЗКТ - Минский завод колёсных тягачей;;;;;126911;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126908;EU.6056.47;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;VOLAT;;;;;126912;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126908;EU.6056.47;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;MZKT;;;;MZKT (a.k.a. VOLAT) is part of the Belarussian State Authority for Military Industry of the Republic of Belarus (a.k.a. SAMI or State Military Industrial Committee);126913;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;126908;EU.6056.47;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;WEB[www.mzkt.by];00;UNKNOWN;126909;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127093;EU.6071.87;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Виктор Иванович СТАНИСЛАВЧИК;RU;M;;;127095;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127093;EU.6071.87;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Віктар Іванавіч СТАНІСЛАЎЧЫК;BE;M;;;127096;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127093;EU.6071.87;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Viktor Ivanovich STANISLAVCHIK;;M;;;127097;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127093;EU.6071.87;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Viktar Ivanavich STANISLAUCHYK;;M;;"Former Deputy Head of the Police Department of the Sovetsky District of Minsk, Head of the Public Security Police; First deputy head of Center of Advanced Studies and Specialists of the Ministry of Internal Affairs";127098;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127093;EU.6071.87;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Viktor Ivanovitj STANISLAVTJIK;SV;M;;;127824;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127093;EU.6071.87;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Viktar Ivanavitj STANISLAUTJYK;SV;M;;;127825;EN;;amendment;council;2021-02-26;2021-02-27;2021/339 (OJ L68);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.068.01.0029.01.ENG&toc=OJ%3AL%3A2021%3A068%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127093;EU.6071.87;;2020-12-17;;(Date of UN designation: 2020-12-17);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-01-27;27;1;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;127094;EN;;amendment;council;2020-12-17;2020-12-17;2020/2129 (OJ L426I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2020.426.01.0001.01.ENG&toc=OJ%3AL%3A2020%3A426I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127166;EU.6091.25;;2021-01-15;;(Date of UN designation: 2021-01-15);P;person;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;فيصل المقداد;AR;;;;127168;EN;;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127166;EU.6091.25;;2021-01-15;;(Date of UN designation: 2021-01-15);P;person;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;Fayçal AL-MEQDAD;;;;;127169;EN;;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127166;EU.6091.25;;2021-01-15;;(Date of UN designation: 2021-01-15);P;person;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;Fayçal MEQDAD;;;;;127170;EN;;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127166;EU.6091.25;;2021-01-15;;(Date of UN designation: 2021-01-15);P;person;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;Fayçal AL-MEKDAD;;;;;127171;EN;;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127166;EU.6091.25;;2021-01-15;;(Date of UN designation: 2021-01-15);P;person;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;Faisal AL-MEQDAD;;;;;127172;EN;;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127166;EU.6091.25;;2021-01-15;;(Date of UN designation: 2021-01-15);P;person;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;Faisal MEQDAD;;;;;127173;EN;;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127166;EU.6091.25;;2021-01-15;;(Date of UN designation: 2021-01-15);P;person;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;Faisal AL-MEKDAD;;;;;127174;EN;;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127166;EU.6091.25;;2021-01-15;;(Date of UN designation: 2021-01-15);P;person;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;Fayçal MEKDAD;;;;;127175;EN;;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127166;EU.6091.25;;2021-01-15;;(Date of UN designation: 2021-01-15);P;person;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;Faisal MEKDAD;;M;;Minister of Foreign Affairs. Appointed in November 2020.;127176;EN;;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127166;EU.6091.25;;2021-01-15;;(Date of UN designation: 2021-01-15);P;person;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954;;;NO;GREGORIAN;;;Daraa Governorate;Ghasm;SY;SYRIAN ARAB REPUBLIC;127167;EN;;amendment;council;2021-01-15;2021-01-15;2021/29 (OJ L12I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.012.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A012I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127353;EU.6111.88;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;Пригожин;Евгений;Викторович;Евгений Викторович Пригожин;RU;M;;;127356;EN;;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127353;EU.6111.88;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;PRIGOZHIN;Yevgeniy;Viktorovich;Yevgeniy Viktorovich PRIGOZHIN;;M;;Russian businessman;127357;EN;;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127353;EU.6111.88;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-06-01;1;6;1961;;;NO;GREGORIAN;;;;Leningrad (St. Petersburg);RU;RUSSIAN FEDERATION;127354;EN;former USSR;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127353;EU.6111.88;;2020-10-15;;(Date of UN designation: 2020-10-15);P;person;amendment;council;2022-07-27;2022-07-28;2022/1308 (OJ L198);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;127355;EN;;amendment;council;2020-10-15;2020-10-15;2020/1481 (OJ L341);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2020.341.01.0007.01.ENG&toc=OJ:L:2020:341:TOC +28/10/2022;127388;EU.6131.26;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Gholamreza SOLEIMANI;;M;;Head of the Basij Organisation of the Islamic Revolutionary Guard Corps (IRGC);127393;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127388;EU.6131.26;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1343;;;NO;ISLAMIC;;;;Farsan;IR;IRAN (ISLAMIC REPUBLIC OF);127389;EN;Iranian Hijri calendar;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127388;EU.6131.26;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;;;NO;GREGORIAN;;;;Farsan;IR;IRAN (ISLAMIC REPUBLIC OF);127390;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127388;EU.6131.26;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;Farsan;IR;IRAN (ISLAMIC REPUBLIC OF);127391;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127388;EU.6131.26;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;127392;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC +28/10/2022;127401;EU.6133.24;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Hussain SALAMI;;M;;;127406;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127401;EU.6133.24;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Hossein SALAMI;;M;Major General;Commander in Chief of the Islamic Revolutionary Guard Corps (IRGC);127407;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127401;EU.6133.24;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1339;;;NO;ISLAMIC;;;;Vaneshan, Golpayegan;IR;IRAN (ISLAMIC REPUBLIC OF);127402;EN;Iranian Hijri calendar;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127401;EU.6133.24;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;;Vaneshan, Golpayegan;IR;IRAN (ISLAMIC REPUBLIC OF);127403;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127401;EU.6133.24;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;;;Vaneshan, Golpayegan;IR;IRAN (ISLAMIC REPUBLIC OF);127404;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127401;EU.6133.24;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;127405;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC +28/10/2022;127408;EU.6134.23;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Hassan KARAMI;;M;;Commander of the Special Units of the Iranian police force;127410;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127408;EU.6134.23;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;127409;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC +28/10/2022;127411;EU.6135.22;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Mohammad PAKPUR;;M;;;127415;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127411;EU.6135.22;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Mohammad PAKPOUR;;M;Brigadier General;Commander in Chief of the Islamic Revolutionary Guard Corps (IRGC) Ground Forces;127416;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127411;EU.6135.22;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;;;NO;GREGORIAN;;;;Aran;IR;IRAN (ISLAMIC REPUBLIC OF);127412;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127411;EU.6135.22;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1340;;;NO;ISLAMIC;;;;Arak;IR;IRAN (ISLAMIC REPUBLIC OF);127413;EN;Iranian Hijri calendar;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127411;EU.6135.22;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;127414;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC +28/10/2022;127417;EU.6136.21;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Hossein ASHTARI;;M;;Commander in Chief of the Iranian police force;127422;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127417;EU.6136.21;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Ispahan;00;UNKNOWN;127418;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127417;EU.6136.21;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Esfahan;00;UNKNOWN;127419;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127417;EU.6136.21;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Isfahan;00;UNKNOWN;127420;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127417;EU.6136.21;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;127421;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC +28/10/2022;127423;EU.6137.20;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Gholamreza ZIAEI;;M;;"Former Director of Evin Prison; former Director of other detention centres";127424;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127429;EU.6139.18;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Hassan SHAHVARPOUR;;M;Brigadier General;Islamic Revolutionary Guard Corps (IRGC) Commander of Khuzestan Province Vali Asr Corps;127432;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127429;EU.6139.18;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;Khuzestan;south of Dezful;Safi Abad;IR;IRAN (ISLAMIC REPUBLIC OF);127430;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127429;EU.6139.18;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2001624001 (other-Other identification number) (national ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;127431;EN;national ID number;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;; +28/10/2022;127433;EU.6140.93;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;VASEGHI;Layla;;Layla VASEGHI;;F;;;127437;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127433;EU.6140.93;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;VASEQI;Layla;;Layla VASEQI;;F;;;127438;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127433;EU.6140.93;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;VASEGHI;Leila;;Leila VASEGHI;;F;;;127439;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127433;EU.6140.93;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;VASEGHI;Leyla;;Leyla VASEGHI;;F;;Governor of Shahr-e Qods and Head of the City Security Council from September 2019 until November 2021.;127440;EN;;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127433;EU.6140.93;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;NO;GREGORIAN;;;Mazandaran Province;Sari;IR;IRAN (ISLAMIC REPUBLIC OF);127434;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127433;EU.6140.93;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;NO;GREGORIAN;;;Mazandaran Province;Sari;IR;IRAN (ISLAMIC REPUBLIC OF);127435;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127433;EU.6140.93;;2021-04-12;;(Date of UN designation: 2021-04-12);P;person;amendment;council;2022-04-12;2022-04-12;2022/592 (OJ L114);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1352;;;NO;ISLAMIC;;;Mazandaran Province;Sari;IR;IRAN (ISLAMIC REPUBLIC OF);127436;EN;Iranian Hijri calendar;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Evin Prison;;;;;127443;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;затвор Evin;BG;;;;129259;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Prisión de Evin;ES;;;;129266;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Věznice Evín;CS;;;;129267;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Evin-Gefängnis;DE;;;;129272;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Φυλακή Evin;EL;;;;129273;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Prison d’Evin;FR;;;;129279;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Zatvor Evin;HR;;;;129282;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Prigione di Evin;IT;;;;129283;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Evino kalėjimas;LT;;;;129284;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Il-Ħabs ta’ Evin;MT;;;;129301;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Evingevangenis;NL;;;;129314;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Więzienie Evin;PL;;;;129318;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Prisão de Evin;PT;;;;129320;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Închisoarea Evin;RO;;;;129321;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Väznica Evin;SK;;;;129327;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Zapor Evin;SL;;;;129332;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Evinin vankila;FI;;;;129333;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Evin-fängelset;SV;;;;129339;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127441;EU.6141.92;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;Tehran;;;;Tehran Province;District 2, Dasht-e Behesht;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);127442;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Greater Tehran Prison;;;;;127446;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Hasanabad-e Qom Prison;;;;;127447;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Greater Tehran Central Penitentiary;;;;;127448;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Fashafouyeh Prison;;;;;127449;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;prisión de la zona de Teherán y extrarradio;ES;;;;129285;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;prisión de Hasanabad-e Qom;ES;;;;129286;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;penitenciaría central de Gran Teherán;ES;;;;129287;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Prisión de Fashafouyeh;ES;;;;129288;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;затвор Fashafouyeh;BG;;;;129289;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Velká teheránská věznice;CS;;;;129290;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;věznice Hasanabad-e Qom;CS;;;;129291;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Velká teheránská ústřední věznice;CS;;;;129292;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Věznice Fašafújeh;CS;;;;129293;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Hasanabad-e Qom-Gefängnis;DE;;;;129294;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Teheraner Zentralgefängnis;DE;;;;129295;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Fashafouyeh-Gefängnis;DE;;;;129296;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Κεντρική φυλακή της Τεχεράνης;EL;;;;129297;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Φυλακή Hasanabad-e Qom;EL;;;;129298;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Ανώτερο κεντρικό σωφρονιστικό ίδρυμα της Τεχεράνης;EL;;;;129299;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Φυλακή Fashafouyeh;EL;;;;129300;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;prigione della Grande Teheran;IT;;;;129302;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;prigione di Hasanabad-e Qom;IT;;;;129303;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;penitenziario centrale della Grande Teheran;IT;;;;129304;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Prigione Fashafouyeh;IT;;;;129305;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;zatvor Hasanabad-e Qom;HR;;;;129306;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;središnji kazneni centar u Teheranu;HR;;;;129307;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Zatvor Fashafouyeh;HR;;;;129308;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Prison de Fashafouyeh;FR;;;;129309;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;didysis Teherano kalėjimas;LT;;;;129310;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Hasanabad-eQom kalėjimas;LT;;;;129311;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;didysis Teherano centrinis kalėjimas;LT;;;;129312;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Kalėjimas „Fashafouyeh“;LT;;;;129313;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Ħabs ta’ Hasanabad-e Qom;MT;;;;129315;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Penitenzjarju Ċentrali ta’ Greater Tehran;MT;;;;129316;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Il-Ħabs ta’ Fashafouyeh;MT;;;;129317;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Ħabs ta’ Greater Tehran;MT;;;;129319;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;więzienie aglomeracji teherańskiej;PL;;;;129322;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;więzienie Hasanabad-e Qom;PL;;;;129323;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;główny zakład karny aglomeracji teherańskiej;PL;;;;129324;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Więzienie Fashafouyeh;PL;;;;129325;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Fashafouyehgevangenis;NL;;;;129326;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Prisão da Grande Teerão;PT;;;;129328;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Prisão Hasanabad-e Qom;PT;;;;129329;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Penitenciária Central de Teerão;PT;;;;129330;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Prisão de Fashafouyeh;PT;;;;129331;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;zapor Hasanabad-e Qom;SL;;;;129334;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;centralni zapor Teheran;SL;;;;129335;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Zapor Fashafouyeh;SL;;;;129336;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Väznica Fashafouyeh;SK;;;;129337;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Închisoarea Fashafouyeh;RO;;;;129338;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Fashafouyeh-fängelset;SV;;;;129340;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Fashafouyehin vankila;FI;;;;129341;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127444;EU.6142.91;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;Tehran;Tehran Province, Hasanabad, Bijin Industrial Zone, Tehran, Qom Old Road;;;Tehran Province;;NO;PHONE[ +98 21 5625 8050];IR;IRAN (ISLAMIC REPUBLIC OF);127445;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Gohar Dasht Prison;;;;;127452;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Gorhardasht Prison;;;;;127453;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Rajayi Shahr;;;;;127454;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Reja’i Shahr;;;;;127455;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Raja’i Shahr;;;;;127456;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Rajaishahr;;;;;127457;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Rajai Shahr Prison;;;;;127458;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Rajaee Shahr Prison;;;;;127459;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;затвор Rajaee Shahr;BG;;;;129225;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;prisión de Gohar Dasht;ES;;;;129226;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;prisión de Gorhardasht;ES;;;;129227;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;prisión de Rajai Shahr;ES;;;;129228;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Prisión de Rajaee Shahr;ES;;;;129229;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;věznice Gohar Dasht;CS;;;;129230;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;věznice Gorhardasht;CS;;;;129231;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;věznice Rajai Shahr;CS;;;;129232;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Věznice Radžaj-Šahr;CS;;;;129233;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Gohar-Dasht-Gefängnis;DE;;;;129234;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Gorhardasht-Gefängnis;DE;;;;129235;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Rajai-Shahr-Gefängnis;DE;;;;129236;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Rajaee-Shahr-Gefängnis;DE;;;;129237;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;φυλακή Gohar Dasht;EL;;;;129238;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;φυλακή Gorhardasht;EL;;;;129239;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Φυλακή Rajai Shahr;EL;;;;129240;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Φυλακή Rajaee Shahr;EL;;;;129241;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Prison de Rajaee Shahr;FR;;;;129242;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;zatvor Gohar Dasht;HR;;;;129243;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;zatvor Gorhardasht;HR;;;;129244;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;zatvor Rajai Shahr;HR;;;;129245;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Zatvor Rajaee Shahr;HR;;;;129246;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;prigione Gohar Dasht;IT;;;;129247;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;prigione Gorhardasht;IT;;;;129248;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;prigione Rajai Shahr;IT;;;;129249;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Prigione Rajaee Shahr;IT;;;;129250;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Kalėjimas „Rajaee Shahr“;LT;;;;129251;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Ħabs ta’ Rajai Shahr;MT;;;;129252;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Il-Ħabs ta’ Rajaee Shahr;MT;;;;129253;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Ħabs ta’ Gohar Dasht;MT;;;;129254;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Ħabs ta’ Gorhardasht;MT;;;;129255;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Rajaee Shahrgevangenis;NL;;;;129256;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;więzienie Rajai Shahr;PL;;;;129257;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Więzienie Rajaee Shahr;PL;;;;129258;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;więzienie Gohar Dasht;PL;;;;129260;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;więzienie Gorhardasht;PL;;;;129261;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Prisão de Gohar Dasht;PT;;;;129262;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Prisão de Gorhardasht;PT;;;;129263;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Prisão de Rajai Shahr;PT;;;;129264;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Prisão de Rajaee Shahr;PT;;;;129265;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Închisoarea Gohar Dasht;RO;;;;129268;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Închisoarea Gorhardasht;RO;;;;129269;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Închisoarea Rajai Shahr;RO;;;;129270;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Închisoarea Rajaee Shahr;RO;;;;129271;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;zapor Gohar Dasht;SL;;;;129274;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;zapor Gorhardasht;SL;;;;129275;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;zapor Rajai Shahr;SL;;;;129276;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Zapor Rajaee Shahr;SL;;;;129277;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Väznica Rajaee Shahr;SK;;;;129278;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Rajaee Shahr-fängelset;SV;;;;129280;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;Rajaee Shahrin vankila;FI;;;;129281;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127450;EU.6143.90;;2021-04-12;;(Date of UN designation: 2021-04-12);E;enterprise;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;Alborz Province, Karaj, Gohardasht, Moazzen Blvd;;;;;NO;PHONE[+98 26 3448 9826];IR;IRAN (ISLAMIC REPUBLIC OF);127451;EN;;amendment;council;2021-04-12;2021-04-12;2021/584 (OJ L124I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.124.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A124I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127490;EU.6145.88;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Remigio CEBALLOS ICHASO;;M;;Former commander of the Operational and \nStrategic Command of the Bolivarian \nNational Armed Forces of Venezuela \n(Comando Estratégico Operacional \nFuerzas Armadas Nacionales Bolivarianas \n(CEOFANB)), the highest organ in the \nVenezuelan Armed Forces (June 2017 -\nJuly 2021).;127493;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127490;EU.6145.88;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-05-01;1;5;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;127491;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127490;EU.6145.88;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-6557495 (other-Other identification number) (ID-number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;127492;EN;ID-number;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;; +28/10/2022;127494;EU.6146.87;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;Omar José PRIETO FERNÁNDEZ;;M;;Governor of Zulia State since December 2017.;127497;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127494;EU.6146.87;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-05-25;25;5;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;127495;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127494;EU.6146.87;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-9761075 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;127496;EN;ID number;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;; +28/10/2022;127498;EU.6147.86;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;José Dionisio BRITO RODRÍGUEZ;;M;;Member of the non-democratically elected National Assembly and chair of the parliamentary commission that investigates the “actions perpetrated against the Republic” by members of the National Assembly elected in 2015.;127501;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127498;EU.6147.86;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-01-15;15;1;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;127499;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127498;EU.6147.86;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-8263861 (other-Other identification number) (ID-number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;127500;EN;ID-number;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;; +28/10/2022;127502;EU.6148.85;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;José Bernabé GUTIÉRREZ PARRA;;M;;Member of the non-democratically elected National Assembly and illegitimate leader of opposition party Acción Democrática.;127505;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127502;EU.6148.85;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-12-21;21;12;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;127503;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127502;EU.6148.85;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-1565144 (other-Other identification number) (ID-number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;127504;EN;ID-number;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;; +28/10/2022;127506;EU.6149.84;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Luis Fernando DAMIANI BUSTILLOS;;M;;Judge of the Constitutional Chamber of the Supreme Court (Tribunal Supremo de Justicia (TSJ)).;127508;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127506;EU.6149.84;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946-04-27;27;4;1946;;;NO;GREGORIAN;;;;;00;UNKNOWN;127507;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127509;EU.6150.62;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Lourdes Benicia SUÁREZ ANDERSON;;F;;President of the Constitutional Chamber \nand first Vice-president of the Supreme \nCourt since 5 February 2021. Judge of the \nConstitutional Chamber of the Supreme \nCourt (Tribunal Supremo de Justicia (TSJ))\nsince December 2005.;127511;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127509;EU.6150.62;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-03-07;7;3;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;127510;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127523;EU.6151.61;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Calixto Antonio ORTEGA RÍOS;;M;;Judge of the Constitutional Chamber of the Supreme Court (Tribunal Supremo de Justicia (TSJ)).;127525;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127523;EU.6151.61;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-10-12;12;10;1950;;;NO;GREGORIAN;;;;;00;UNKNOWN;127524;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127526;EU.6152.60;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;René Alberto DEGRAVES ALMARZA;;M;;Judge of the Constitutional Chamber of the Supreme Court (Tribunal Supremo de Justicia (TSJ)).;127527;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127528;EU.6153.59;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Arcadio DELGADO ROSALES;;M;;Judge and Vice-President of the Constitutional Chamber of the Supreme Court (Tribunal Supremo de Justicia (TSJ)).;127530;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127528;EU.6153.59;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-09-23;23;9;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;127529;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127531;EU.6154.58;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Carmen Auxiliadora ZULETA DE MERCHÁN;;F;;Judge of the Constitutional Chamber of the Supreme Court (Tribunal Supremo de Justicia (TSJ)).;127533;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127531;EU.6154.58;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947-12-13;13;12;1947;;;NO;GREGORIAN;;;;;00;UNKNOWN;127532;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127538;EU.6156.56;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Indira Maira ALFONZO IZAGUIRRE;;F;;President of the Electoral Chamber of the \nSupreme Court (Tribunal Supremo de\nJusticia (TSJ)) since May 2021. Former \nchairwoman of the National Electoral \nCouncil (Consejo Nacional Electoral \n(CNE)), appointed on 13 June 2020. \nFormer member of the Electoral Chamber \nand Plenary Chamber of the Supreme \nCourt (TSJ), Second Vice-Chairwoman of \nthe TSJ from 2015 until 24 February 2017, \nVice-Chairwoman of the TSJ from \n24 February 2017 until 12 June 2020.;127541;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127538;EU.6156.56;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-04-29;29;4;1968;;;NO;GREGORIAN;;;La Guaira State;La Guaira;VE;VENEZUELA;127539;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127538;EU.6156.56;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-6978710 (other-Other identification number) (ID-number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;127540;EN;ID-number;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;; +28/10/2022;127542;EU.6157.55;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Leonardo Enrique MORALES POLEO;;M;;Former Vice-President of the National Electoral Council (Consejo Nacional Electoral (CNE)) and President of the Political Participation and Financing Commission (August 2020–May 2021).;127543;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127544;EU.6158.54;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;Tania D’AMELIO CARDIET;;F;;Member (Rector) of the National Electoral Council (Consejo Nacional Electoral (CNE)) for the period 2016-2023. Former Member (Rector) of the CNE for the period 2010-2016.;127548;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127544;EU.6158.54;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-12-05;5;12;1971;;;NO;GREGORIAN;;;;;IT;ITALY;127545;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127544;EU.6158.54;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-11691429 (other-Other identification number) (ID-number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;127547;EN;ID-number;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;; +28/10/2022;127544;EU.6158.54;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;VE;;127546;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC +28/10/2022;127549;EU.6159.53;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;José Miguel DOMÍNGUEZ RAMÍREZ;;M;;Director of the Special Action Forces (Fuerzas de Acciones Especiales (FAES)) since 6 May 2019. Former Chief Commissioner of the FAES in Táchira State. Additionally, José Miguel Domínguez Ramírez was the Director of Operations of the FAES, which fall within Venezuela’s Bolivarian National Police.;127552;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127549;EU.6159.53;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-10-17;17;10;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;127550;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127549;EU.6159.53;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-14444352 (other-Other identification number) (ID-number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;127551;EN;ID-number;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;; +28/10/2022;127553;EU.6160.31;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Carlos Ramón Enrique CARVALLO GUEVARA;;M;;President of state enterprise Corporación Ecosocialista Ezequiel Zamora (CORPOEZ) since March 2021. Division General, and Deputy Director of the Directorate-General of Military Counter-Intelligence (Dirección General de Contrainteligencia Militar (DGCIM)) from 21 August 2020 until 11 March 2021. Successor of General Rafael Ramón Blanco Marrero. Previously, Carvallo Guevara served for the DGCIM in Los Andes region and held an upper rank position in the Bolivarian National Guard.;127555;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127553;EU.6160.31;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-10132041 (other-Other identification number) (ID-number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;127554;EN;ID-number;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;; +28/10/2022;127556;EU.6161.30;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;Jesús Emilio VÁSQUEZ QUINTERO;;M;;Divisional General since 5 July 2019 and Attorney General of the Military Prosecutor’s Office since December 2017.;127558;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127556;EU.6161.30;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-7422049 (other-Other identification number) (ID-number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;127557;EN;ID-number;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;; +28/10/2022;127559;EU.6162.29;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Carlos Enrique TERÁN HURTADO;;M;;Brigadier General since 5 July 2019 and head of the Special Directorate of Criminal Investigation of the Directorate-General of Military Counter-Intelligence (Dirección General de Contrainteligencia Militar (DGCIM)) from 2019 until 2021. In previous functions, Brigadier General Terán Hurtado served as head of the police in Falcón state and head of DGCIM in Táchira state.;127561;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127559;EU.6162.29;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-8042567 (other-Other identification number) (ID-number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;127560;EN;ID-number;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;; +28/10/2022;127568;EU.6164.27;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;Manuel Eduardo PÉREZ URDANETA;;M;;Deputy Minister of the Interior and Justice since 7 April 2015. Within the Venezuelan Ministry of the Interior and Justice, Brigadier General Manuel Eduardo Pérez Urdaneta ranks as one of five Deputy Ministers. His portfolio encompasses Preventive Security and Public Safety (Viceministro de prevención y Seguridad Ciudadana). Previously, Brigadier General Pérez served as Director of the Bolivarian National Police.;127573;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127568;EU.6164.27;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-05-26;26;5;1962;;;NO;GREGORIAN;;;Cagua, State of Aragua;;00;UNKNOWN;127569;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127568;EU.6164.27;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-12-29;29;12;1960;;;NO;GREGORIAN;;;Cagua, State of Aragua;;00;UNKNOWN;127570;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127568;EU.6164.27;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;001234503 (passport-National passport) [known to be expired](Passport number, (expired 2012));NO;YES;NO;NO;NO;;;;;;;passport;National passport;;00;;127571;EN;Passport number, (expired 2012);amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;; +28/10/2022;127568;EU.6164.27;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-6357038 (other-Other identification number) (ID-number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;127572;EN;ID-number;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;; +28/10/2022;127574;EU.6165.26;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;Douglas Arnoldo RICO GONZÁLEZ;;M;;Director of the Bureau for Scientific, Criminal, and Forensic Investigations (Cuerpo de Investigaciones Científicas, Penales y Criminalísticas (CICPC)) since 5 February 2016. Previously, he acted as CICPC deputy director.;127577;EN;;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127574;EU.6165.26;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-09-28;28;9;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;127575;EN;;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127574;EU.6165.26;;2021-02-22;;(Date of UN designation: 2021-02-22);P;person;amendment;council;2021-11-12;2021-11-13;2021/1959 (OJ L400);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.400.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A400%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;V-6864238 (other-Other identification number) (ID-number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;127576;EN;ID-number;amendment;council;2021-02-22;2021-02-22;2021/275 (OJ L60I);VEN;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.060.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A060I%3ATOC;;;;;;;;;;;;; +28/10/2022;127726;EU.6171.96;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;Александр Петрович КАЛАШНИКОВ;RU;M;;;127729;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127726;EU.6171.96;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;Alexandr Petrovich KALASHNIKOV;;M;;;127730;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127726;EU.6171.96;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;Alexander Petrovich KALASHNIKOV;;M;;Director of the Russian Federal Penitentiary Service (FSIN);127731;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127726;EU.6171.96;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;Aleksandr Petrovitj KALASJNIKOV;SV;M;;;128066;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127726;EU.6171.96;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;Alexander Petrovitj KALASJNIKOV;SV;M;;;128067;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127726;EU.6171.96;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-01-27;27;1;1964;;;NO;GREGORIAN;;Novosibirsk Region/Oblast;;Tatarsk;RU;RUSSIAN FEDERATION;127727;EN;Russian SFSR (now Russian Federation);amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127726;EU.6171.96;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;127728;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC +28/10/2022;127732;EU.6172.95;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;Александр Иванович БАСТРЫКИН;RU;M;;;127735;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127732;EU.6172.95;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;Alexandr Ivanovich BASTRYKIN;;M;;;127736;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127732;EU.6172.95;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;Alexander Ivanovich BASTRYKIN;;M;;Chairman of the Investigative Committee of the Russian Federation;127737;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127732;EU.6172.95;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;Alexandr Ivanovitj BASTRYKIN;SV;M;;;128068;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127732;EU.6172.95;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;Alexander Ivanovitj BASTRYKIN;SV;M;;;128069;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127732;EU.6172.95;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-08-27;27;8;1953;;;NO;GREGORIAN;;;;Pskov;RU;RUSSIAN FEDERATION;127733;EN;Russian SFSR (now Russian Federation);amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127732;EU.6172.95;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;127734;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC +28/10/2022;127738;EU.6173.94;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;Игорь Викторович КРАСНОВ;RU;M;;;127741;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127738;EU.6173.94;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;Igor Viktorovich KRASNOV;;M;;Prosecutor General of the Russian Federation;127742;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127738;EU.6173.94;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;Igor Viktorovitj KRASNOV;SV;M;;;128070;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127738;EU.6173.94;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-12-24;24;12;1975;;;NO;GREGORIAN;;;;Arkhangelsk;RU;RUSSIAN FEDERATION;127739;EN;Russian SFSR (now Russian Federation);amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127738;EU.6173.94;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;127740;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC +28/10/2022;127743;EU.6174.93;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;Виктор Васильевич ЗОЛОТОВ;RU;M;;;127746;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127743;EU.6174.93;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;Viktor Vasilyevich ZOLOTOV;;M;;;127747;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127743;EU.6174.93;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;Viktor Vasilievich ZOLOTOV;;M;;Director of the Federal Service of National Guard Troops of the Russian Federation (Rosgvardia);127748;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127743;EU.6174.93;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;Viktor Vasiljevitj ZOLOTOV;SV;M;;;128071;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127743;EU.6174.93;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-01-27;27;1;1954;;;NO;GREGORIAN;;;;Sasovo;RU;RUSSIAN FEDERATION;127744;EN;Russian SFSR (now Russian Federation);amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;127743;EU.6174.93;;2021-03-02;;(Date of UN designation: 2021-03-02);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;127745;EN;;amendment;council;2021-03-02;2021-03-02;2021/371 (OJ L71I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.071.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A071I%3ATOC +28/10/2022;128012;EU.6191.34;SOi.018;2021-02-26;;(UN ID: SOi.018)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;Sheikh Abukar;;;;;129171;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128012;EU.6191.34;SOi.018;2021-02-26;;(UN ID: SOi.018)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;Ibrahim Afghan;;;;;129172;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128012;EU.6191.34;SOi.018;2021-02-26;;(UN ID: SOi.018)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;Abukar Ali Aden;;;;;129173;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128012;EU.6191.34;SOi.018;2021-02-26;;(UN ID: SOi.018)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;Abukar Ali Adan;;;;Deputy leader of Al-Shabaab;129174;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128012;EU.6191.34;SOi.018;2021-02-26;;(UN ID: SOi.018)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;129168;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128012;EU.6191.34;SOi.018;2021-02-26;;(UN ID: SOi.018)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;129169;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128012;EU.6191.34;SOi.018;2021-02-26;;(UN ID: SOi.018)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;129170;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128020;EU.6192.33;SOi.019;2021-02-26;;(UN ID: SOi.019)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;Abdiaziz Dubow Ali;;;;;129179;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128020;EU.6192.33;SOi.019;2021-02-26;;(UN ID: SOi.019)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;Ayman Kabo;;;;;129180;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128020;EU.6192.33;SOi.019;2021-02-26;;(UN ID: SOi.019)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;Nuh Ibrahim Abdi;;;;;129181;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128020;EU.6192.33;SOi.019;2021-02-26;;(UN ID: SOi.019)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;Mo’alim Ayman;;;;;129182;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128020;EU.6192.33;SOi.019;2021-02-26;;(UN ID: SOi.019)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;Ma’alim Ayman;;;;;129183;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128020;EU.6192.33;SOi.019;2021-02-26;;(UN ID: SOi.019)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;Maalim Ayman;;;;Founder and leader of Jaysh Ayman, an al-Shabaab unit conducting attacks and operations in Kenya and Somalia;129184;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128020;EU.6192.33;SOi.019;2021-02-26;;(UN ID: SOi.019)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;Badamadow, Lower Juba Region;;NO;;SO;SOMALIA;129175;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128020;EU.6192.33;SOi.019;2021-02-26;;(UN ID: SOi.019)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;Kenya/Somalia border;;NO;;00;UNKNOWN;129176;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128020;EU.6192.33;SOi.019;2021-02-26;;(UN ID: SOi.019)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983;;;NO;GREGORIAN;;;;;KE;KENYA;129177;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128020;EU.6192.33;SOi.019;2021-02-26;;(UN ID: SOi.019)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;NO;GREGORIAN;;;;;KE;KENYA;129178;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128031;EU.6193.32;SOi.020;2021-02-26;;(UN ID: SOi.020)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;Abdirahim Mohamed Warsame;;;;;129186;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128031;EU.6193.32;SOi.020;2021-02-26;;(UN ID: SOi.020)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;Mahad Warsame Qalley Karate;;;;;129187;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128031;EU.6193.32;SOi.020;2021-02-26;;(UN ID: SOi.020)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;Mahad Mohamed Ali Karate;;;;;129188;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128031;EU.6193.32;SOi.020;2021-02-26;;(UN ID: SOi.020)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;Mahad Karate;;;;;129189;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128031;EU.6193.32;SOi.020;2021-02-26;;(UN ID: SOi.020)\n(Date of UN designation: 2021-02-26)\n(UNLI - 26.02.2021);P;person;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957;1962;NO;GREGORIAN;;;;Xararadheere;SO;SOMALIA;129185;EN;;amendment;council;2021-04-06;2021-04-06;2021/559 (OJ L115I);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.115.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A115I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128086;EU.6211.0;;2021-02-25;;(Date of UN designation: 2021-02-25)\n(Date of UN designation: 25.2.2021);P;person;amendment;council;2021-03-05;2021-03-05;2021/397 (OJ L77I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.077.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A077I%3ATOC;;;;Sultan Saleh Aida Aida Zabin;;;;Director of the Criminal Investigation Department (CID) in Sanaa;128087;EN;;amendment;council;2021-03-05;2021-03-05;2021/397 (OJ L77I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.077.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A077I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128186;EU.6231.35;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;Min Aung Hlaing;;M;;"Commander-in-Chief of the Myanmar Armed Forces (Tatmadaw) since 2011. Chairman of the State Administration Council (SAC) and member of the National Defence and Security Council (NDSC). Declared himself as ""Prime Minister"" on 1 August 2021.";128189;EN;;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128186;EU.6231.35;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-07-03;3;7;1956;;;NO;GREGORIAN;;;;Tavoy;MM;MYANMAR;128187;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128186;EU.6231.35;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12/SAKHANA(N)020199 (other-Other identification number) (National Identification number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;128188;EN;National Identification number;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;; +28/10/2022;128186;EU.6231.35;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;128683;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128190;EU.6232.34;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;Soe Win;;M;;Deputy-Commander-in-Chief of the Myanmar Armed Forces (Tatmadaw) since 2011. Vice-Chairman of the State Administration Council (SAC) and member of the National Defence and Security Council (NDSC).;128192;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128190;EU.6232.34;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-03-01;1;3;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;128191;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128190;EU.6232.34;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;128685;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128193;EU.6233.33;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Sein Win;;M;Lieutenant-general;Member of Tatmadaw and former Minister of Defence (between 24 August 2015 and 1 February 2021).;128195;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128193;EU.6233.33;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-07-24;24;7;1956;;;NO;GREGORIAN;;;;Pyin Oo Lwin;MM;MYANMAR;128194;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128193;EU.6233.33;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;128686;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128196;EU.6234.32;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;U Thein Soe;;M;;;128198;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128196;EU.6234.32;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Thein Soe;;M;;Nominated as chairman of the Union Election Commission (UEC) on 2 February 2021.;128199;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128196;EU.6234.32;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-01-23;23;1;1952;;;NO;GREGORIAN;;;;Kani;MM;MYANMAR;128197;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128196;EU.6234.32;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;128687;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128200;EU.6235.31;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;Mya Tun Oo;;M;General;Member of the Myanmar Armed Forces (Tatmadaw). Appointed as Minister of Defence on 1 February 2021 and is a member of the State Administrative Council (SAC).;128203;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128200;EU.6235.31;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-05-05;5;5;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;128201;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128200;EU.6235.31;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-05-04;4;5;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;128202;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128200;EU.6235.31;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;128688;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128204;EU.6236.30;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Dwe Aung Lin;;M;Lieutenant General;Member of the Myanmar Armed Forces (Tatmadaw) and the Secretary of the State Administration Council (SAC);128205;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128204;EU.6236.30;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-05-31;31;5;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;128689;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128204;EU.6236.30;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;128690;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128206;EU.6237.29;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Ye Win Oo;;M;Lieutenant General;Member of the Myanmar Armed Forces (Tatmadaw) and the Joint Secretary of the State Administration Council (SAC);128208;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128206;EU.6237.29;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-02-21;21;2;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;128207;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128206;EU.6237.29;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;128691;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128209;EU.6238.28;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;Maung Maung Kyaw;;M;General;Member of the Myanmar Armed Forces (Tatmadaw) and member of the State Administration Council (SAC). Previously served as Commander-in-Chief of the Myanmar Air Force between 2018 and January 2022.;128211;EN;;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128209;EU.6238.28;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-07-23;23;7;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;128210;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128209;EU.6238.28;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;128692;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128212;EU.6239.27;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Moe Myint Tun;;M;Lieutenanr General;Member of the Myanmar Armed Forces (Tatmadaw) and member of the State Administrative Council (SAC);128214;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128212;EU.6239.27;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-05-24;24;5;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;128213;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128212;EU.6239.27;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;128693;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128215;EU.6240.5;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Than Hlaing;;;Lieutenant General;Member of the Myanmar Armed Forces (Tatmadaw). Appointed as Deputy Minister of Home Affairs, Chief of Police on 2 February 2021.;128216;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128215;EU.6240.5;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;128694;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128217;EU.6241.4;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;Myint Swe;;M;Lieutenant General;Member of the Myanmar Armed Forces (Tatmadaw) and was the Tatmadaw appointed Vice-President until 1 February 2021.;128219;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128217;EU.6241.4;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-05-24;24;5;1951;;;NO;GREGORIAN;;;;;00;UNKNOWN;128218;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128217;EU.6241.4;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;128684;EN;;amendment;council;2021-03-22;2021-03-22;2021/480 (OJ L99I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0015.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128226;EU.6251.70;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;朱海仑;ZH;M;;;128229;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128226;EU.6251.70;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;ZHU Hailun;;M;;"Member of the 13th National People’s Congress of the People’s Republic of China (in session from 2018 to 2023) representing the Xinjiang Uyghur Autonomous Region (XUAR); Member of the National People’s Congress Supervisory and Judicial Affairs Committee (since 19 March 2018).";128230;EN;Former Secretary of the Political and Legal Affairs Committee of the Xinjiang Uyghur Autonomous Region (XUAR) and former Deputy Secretary of the Party Committee of the XUAR (2016 to 2019). Former Deputy Head of the Standing Committee of the 13th People’s Congress of the XUAR, a regional legislative body (2019 to 5 February 2021 but still active until at least March 2021).;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128226;EU.6251.70;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1958;;;NO;GREGORIAN;;;;Lianshui, Jiangsu;CN;CHINA;128227;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128226;EU.6251.70;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CN;;128228;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128231;EU.6252.69;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;王君正;ZH;M;;;128234;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128231;EU.6252.69;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;WANG Junzheng;;M;;Party Secretary of the Xinjiang Production and Construction Corps (XPCC) and Deputy Secretary of the Party Committee of China’s Xinjiang Uyghur Autonomous Region (XUAR) since April 2020, as well as Political commissar of the XPCC since May 2020. Former Secretary of the Political and Legal Affairs Committee of the XUAR (February 2019 to September 2020).;128235;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128231;EU.6252.69;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1963;;;NO;GREGORIAN;;;;Linyi, Shandong;CN;CHINA;128232;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128231;EU.6252.69;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CN;;128233;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128236;EU.6253.68;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;王明山;;M;;;128239;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128236;EU.6253.68;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;WANG Mingshan;;M;;Member of the Standing Committee of the Party Committee of the Xinjiang Uyghur Autonomous Region (XUAR) and Secretary of the Political and Legal Affairs Committee of the XUAR since September 2020. Former Director and Deputy Party Secretary of the Xinjiang Public Security Bureau (XPSB) between 2017 and January 2021.;128240;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128236;EU.6253.68;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1964;;;NO;GREGORIAN;;;;Wuwei, Gansu;CN;CHINA;128237;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128236;EU.6253.68;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CN;;128238;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128241;EU.6254.67;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;陈明国;ZH;M;;;128244;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128241;EU.6254.67;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;CHEN Mingguo;;M;;Director of the Xinjiang Public Security Bureau (XPSB) since January 2021 and Vice-Chairman of the Xinjiang Uygur Autonomous Region (XUAR) People’s Government.;128245;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128241;EU.6254.67;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1966;;;NO;GREGORIAN;;;;Yilong, Sichuan;CN;CHINA;128242;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128241;EU.6254.67;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CN;;128243;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128246;EU.6255.66;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;정경택;KO;M;;;128250;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128246;EU.6255.66;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;CHO'NG, Kyo'ng-t'aek;;M;;;128251;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128246;EU.6255.66;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;JONG Kyong-thaek;;M;;Minister of State Security of the Democratic People’s Republic of Korea (DPRK) since 2017.;128252;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128246;EU.6255.66;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961;1963;NO;GREGORIAN;;;;;00;UNKNOWN;128248;EN;between 1.1.1961 and 31.12.1963;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128246;EU.6255.66;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;128249;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128253;EU.6256.65;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;리영길;KO;M;;;128256;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128253;EU.6256.65;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;YI Yo’ng-kil;;M;;;128257;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128253;EU.6256.65;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;RI Yo’ng-kil;;M;;;128258;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128253;EU.6256.65;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;RI Yong Gi;;M;;;128259;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128253;EU.6256.65;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;RI Yong Gil;;M;;Minister of National Defence of the Democratic People’s Republic of Korea (DPRK);128260;EN;He was the Minister of Social Security from January 2021 until June or July 2021. He was Chief of the General Staff of the Korean People’s Army (KPA) between 2018 and January 2021.;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128253;EU.6256.65;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;128254;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128253;EU.6256.65;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;128255;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128270;EU.6258.63;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;الرحيم الكاني عبد;AR;M;;;128275;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128270;EU.6258.63;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;Abd-al-Rahim AL-KANI;;M;;;128276;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128270;EU.6258.63;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;Abdul-Rahim AL-KANI;;M;;;128277;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128270;EU.6258.63;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;Abderrahim AL-KANI;;M;;key member of the Kaniyat Militia and brother of the Head of the Kaniyat Militia, Mohammed Khalifa Al-Khani (deceased in July 2021);128278;EN;;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128270;EU.6258.63;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1997-09-07;7;9;1997;;;NO;GREGORIAN;;;;;00;UNKNOWN;128271;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128270;EU.6258.63;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119970331820 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;128273;EN;ID number;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;; +28/10/2022;128270;EU.6258.63;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PH3854LY (passport-National passport) (Passport number);NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;128274;EN;Passport number;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;; +28/10/2022;128270;EU.6258.63;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LY;;128272;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128279;EU.6259.62;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;Аюбхан Вахаевич КАТАЕВ;RU;M;;;128283;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128279;EU.6259.62;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;Аюб Вахаевич КАТАЕВ;RU;M;;;128284;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128279;EU.6259.62;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;Ayubkhan Vakhaevich KATAEV;;M;;;128285;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128279;EU.6259.62;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;Aiub Vakhaevich KATAEV;;M;;Former Head of Department of the Ministry of Internal Affairs of the Russian Federation in the city of Argun in the Chechen Republic;128286;EN;;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128279;EU.6259.62;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;Ajubchan Vachajevitj KATAJEV;SV;M;;;128745;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128279;EU.6259.62;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;Ajub Vachajevitj KATAJEV;SV;M;;;128746;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128279;EU.6259.62;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-12-01;1;12;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;128280;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128279;EU.6259.62;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-12-01;1;12;1984;;;NO;GREGORIAN;;;;;00;UNKNOWN;128281;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128279;EU.6259.62;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;128282;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128287;EU.6260.40;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;Абузайд Джандарович ВИСМУРАДОВ;RU;M;;;128290;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128287;EU.6260.40;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;Abuzayed Dzhandarovich VISMURADOV;;M;;;128291;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128287;EU.6260.40;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;Abuzaid Dzhandarovich VISMURADOV;;M;;Former Commander of the Special Rapid-Response Unit (SOBR) Team ‘Terek’, Deputy Prime Minister of the Chechen Republic, unofficial bodyguard of the Head of the Chechen Republic Ramzan Kadyrov;128292;EN;;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128287;EU.6260.40;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;Abuzajd Dzjandarovitj VISMURADOV;SV;M;;;128747;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128287;EU.6260.40;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-12-24;24;12;1975;;;NO;GREGORIAN;;;Akhmat-Yurt/Khosi-Yurt, former Checheno-Ingush Autonomous Soviet Socialist Republic (ASSR), now Chechen Republic;;RU;RUSSIAN FEDERATION;128288;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128287;EU.6260.40;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-12-07;2021-12-08;2021/2151 (OJ L436);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.436.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A436%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;128289;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128293;EU.6261.39;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Gabriel Moses LOKUJO;;M;;Major General of the South Sudan People's Defense Forces (SSPDF);128295;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128293;EU.6261.39;;2021-03-22;;(Date of UN designation: 2021-03-22);P;person;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SS;;128294;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;新疆生产建设兵团公安局;ZH;;;;128298;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Xinjiang Production and Construction Corps Public Security Bureau;;;;;128299;EN;XPCC Public Security Bureau;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Úřad pro veřejnou bezpečnost při sin-ťiangském sboru pro produkci a budování;CS;;;;128749;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Oficina de Seguridad Pública del Cuerpo de Producción y Construcción de Xinjiang;ES;;;;128750;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Отдел за обществена сигурност на Xinjiang Production and Construction Corps;BG;;;;128751;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Büro für öffentliche Sicherheit von Xinjiang Production and Construction Corps;DE;;;;128752;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Xinjiangi tootmis- ja ehituskorpuse avalik julgeolekubüroo;ET;;;;128753;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Bureau de sécurité publique du Corps de production et de construction du Xinjiang;FR;;;;128754;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Σώμα Παραγωγών και Κατασκευών της Σιντζιάνγκ – Γραφείο Δημόσιας Ασφάλειας;EL;;;;128755;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Sindziango gamybos ir statybos tarnybos viešojo saugumo biuras;LT;;;;128756;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Ufficio per la pubblica sicurezza del Corpo di produzione e costruzione dello Xinjiang;IT;;;;128757;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Bureau tas-Sigurtà Pubblika tal-Korp ta’ Produzzjoni u Kostruzzjoni ta’ Xinjiang;MT;;;;128758;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;A Hszincsiangi Gyártási és Építési Testület;HU;;;;128759;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Biroul de securitate publică al Corpului de producție și de construcții din Xinjiang;RO;;;;128760;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Gabinete de Segurança Pública do Corpo de Produção e Construção do Sinquião;PT;;;;128761;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Biuro Bezpieczeństwa Publicznego Korpusu Produkcyjno-Budowlanego Sinciangu;PL;;;;128762;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Xinjiangin tuotanto- ja rakennuskomennus-kunnan yleisen turvallisuuden osasto;FI;;;;128763;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Úrad verejnej bezpečnosti Výrobného a stavebného zboru Sin-ťiang;SK;;;;128764;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128296;EU.6262.38;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;Urumqi;106 Guangming Road;;;Xinjiang Uyghur Autonomous Region (XUAR);;NO;PHONE[ +86 991 598 8114];CN;CHINA;128297;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128846;EU.6271.8;;2021-04-15;;(Date of UN designation: 2021-04-15);P;person;amendment;council;2021-04-15;2021-04-15;2021/612 (OJ L129I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.129.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A129I%3ATOC;;;;Mesut SEKERCI;;;;;128850;EN;;amendment;council;2021-04-15;2021-04-15;2021/612 (OJ L129I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.129.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A129I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128846;EU.6271.8;;2021-04-15;;(Date of UN designation: 2021-04-15);P;person;amendment;council;2021-04-15;2021-04-15;2021/612 (OJ L129I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.129.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A129I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1995-07-22;22;7;1995;;;NO;GREGORIAN;;;;Evreux;FR;FRANCE;128847;EN;;amendment;council;2021-04-15;2021-04-15;2021/612 (OJ L129I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.129.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A129I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128846;EU.6271.8;;2021-04-15;;(Date of UN designation: 2021-04-15);P;person;amendment;council;2021-04-15;2021-04-15;2021/612 (OJ L129I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.129.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A129I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TR;;128848;EN;;amendment;council;2021-04-15;2021-04-15;2021/612 (OJ L129I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.129.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A129I%3ATOC +28/10/2022;128846;EU.6271.8;;2021-04-15;;(Date of UN designation: 2021-04-15);P;person;amendment;council;2021-04-15;2021-04-15;2021/612 (OJ L129I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.129.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A129I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;FR;;128849;EN;;amendment;council;2021-04-15;2021-04-15;2021/612 (OJ L129I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.129.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A129I%3ATOC +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;조선민주주의인민공화국 중앙검찰소;KO;;;;128871;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Office of the Prosecutor of the Democratic People’s Republic of Korea (DPRK);;;;;128872;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Central Public Prosecutor’s Office;;;;;128873;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Fiscalía de la República Popular Democrática de Corea (RPDC);ES;;;;128891;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Fiscalía Central;ES;;;;128892;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Служба на главния прокурор на Корейската народнодемократична република (КНДР);BG;;;;128893;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Централна прокуратура;BG;;;;128894;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Úřad státního zástupce Korejské lidově demokratické republiky (KLDR);CS;;;;128895;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Nejvyšší státní zastupitelství;CS;;;;128896;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Zentrale Staatsanwaltschaft;DE;;;;128897;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Den Demokratiske Folkerepublik Nordkoreas (Nordkoreas) offentlige anklager;DA;;;;128898;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Den centrale anklagemyndighed;DA;;;;128899;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Keskprokuratuur;ET;;;;128900;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Εισαγγελία της Λαοκρατικής Δημοκρατίας της Βόρειας Κορέας (ΛΔΒΚ);EL;;;;128901;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Κεντρική Εισαγγελική Αρχή;EL;;;;128902;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Bureau du procureur de la République populaire démocratique de Corée (RPDC);FR;;;;128903;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Parquet central;FR;;;;128904;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Procura della Repubblica popolare democratica di Corea (RPDC);IT;;;;128905;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Procura centrale;IT;;;;128906;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Korėjos Liaudies Demokratinės Respublikos (KLDR) prokuratūra;LT;;;;128907;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Centrinė prokuratūra;LT;;;;128908;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;a Koreai Népi Demokratikus Köztársaság (KNDK) Ügyészsége;HU;;;;128909;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Központi Ügyészség;HU;;;;128910;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Uffiċċju tal-Prosekutur tar-Repubblika Demokratika tal-Poplu tal-Korea (RDPK);MT;;;;128911;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Uffiċċju Ċentrali tal-Prosekutur Pubbliku;MT;;;;128912;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Centraal Openbaar Ministerie;NL;;;;128913;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Biuro Prokuratora Koreańskiej Republiki Ludowo-Demokratycznej (KRLD);PL;;;;128914;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Prokuratura Centralna;PL;;;;128915;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Gabinete do Ministério Público da República Popular Democrática da Coreia;PT;;;;128916;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Gabinete Central do Ministério Público;PT;;;;128917;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Biroul Procurorului din Republica Populară Democrată Coreeană (RPDC);RO;;;;128918;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Parchetul Central;RO;;;;128919;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Ústredná prokuratúra;SK;;;;128920;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Tožilstvo Demokratične ljudske republike Koreje (DLRK);SL;;;;128921;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Osrednje javno tožilstvo;SL;;;;128922;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Korean demokraattisen kansantasavallan (Pohjois-Korea) syyttäjänvirasto;FI;;;;128923;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Yleisen syyttäjän keskusvirasto;FI;;;;128924;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Demokratiska folkrepubliken Koreas (Nordkorea) åklagarmyndighet;SV;;;;128925;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128870;EU.6272.7;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;den centrala åklagarmyndigheten;SV;;;;128926;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;مليشيا كانيات;AR;;;;128876;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Kanyat;;;;;128877;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Kaniyat;;;;;128878;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Kaniat;;;;;128879;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Kani Brigade;;;;;128880;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Al-Kaniyat;;;;;128881;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Al-Kani Militia;;;;;128882;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;9th Brigade;;;;;128883;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Tarhuna Brigade;;;;;128884;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Tarhuna 7th Brigade;;;;;128885;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7th Brigade;;;;;128886;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Kaniyat Militia;;;;Libyan armed militia;128887;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Brigáda Kani;CS;;;;128961;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Milice Al-Kani;CS;;;;128962;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;9. Brigáda;CS;;;;128963;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Tarhunská brigáda;CS;;;;128964;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7. Brigáda z Tarhuny;CS;;;;128965;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7. Brigáda;CS;;;;128966;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Milice Kaniyat;CS;;;;128967;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Brigada Kani;ES;;;;128968;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Milicia Al-Kani;ES;;;;128969;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;9.a Brigada;ES;;;;128970;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Brigada de Tarhuna;ES;;;;128971;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7.a Brigada de Tarhuna;ES;;;;128972;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7.a Brigada;ES;;;;128973;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Milicia Kaniyat;ES;;;;128974;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;бригада Kani;BG;;;;128975;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;милиция Al-Kani;BG;;;;128976;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;9-та бригада;BG;;;;128977;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Бригада Tarhuna;BG;;;;128978;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7-ма бригада в Tarhuna;BG;;;;128979;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7-ма бригада;BG;;;;128980;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;милиция Kaniyat;BG;;;;128981;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Brigade Kani;FR;;;;128982;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Milice Al-Kani;FR;;;;128983;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;9e Brigade;FR;;;;128984;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Brigade Tarhuna;FR;;;;128985;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7e Brigade Tarhuna;FR;;;;128986;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7e Brigade;FR;;;;128987;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Milice Kaniyat;FR;;;;128988;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Ταξιαρχία Kani;EL;;;;128989;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;9η Ταξιαρχία;EL;;;;128990;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Ταξιαρχία Tarhuna;EL;;;;128991;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7η Ταξιαρχία Tarhuna;EL;;;;128992;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7η Ταξιαρχία;EL;;;;128993;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Kani brigaad;ET;;;;128994;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Al-Kani omakaitse;ET;;;;128995;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;9. brigaad;ET;;;;128996;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Tarhuna brigaad;ET;;;;128997;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Tarhuna 7. brigaad;ET;;;;128998;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7. brigaad;ET;;;;128999;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Kaniyati omakaitse;ET;;;;129000;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Kani-Brigade;DE;;;;129001;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Al-Kanijat;DE;;;;129002;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Al-Kani-Miliz;DE;;;;129003;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;9. Brigade;DE;;;;129004;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Kanijat-Miliz;DE;;;;129005;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Kanijat;HU;;;;129006;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Kanjat;HU;;;;129007;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Kani Brigád;HU;;;;129008;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Al-Kani Milicia;HU;;;;129009;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;9. Brigád;HU;;;;129010;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Tarhúna Brigád;HU;;;;129011;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Tarhúna 7. Brigád;HU;;;;129012;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7. Brigád;HU;;;;129013;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Kanijat Milícia;HU;;;;129014;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;9-oji brigada;LT;;;;129015;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Tarhūna brigada;LT;;;;129016;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Tarhūna 7-oji brigada;LT;;;;129017;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7-oji brigada;LT;;;;129018;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Al-Kanijat;HU;;;;129019;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Brigada Kani;PT;;;;129020;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Milícia Al-Kani;PT;;;;129021;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;9.a Brigada;PT;;;;129022;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Brigada Taruna;PT;;;;129023;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7.a Brigada Taruna;PT;;;;129024;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7.a Brigada;PT;;;;129025;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Milícia Kaniyat;PT;;;;129026;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Brygada Kani;PL;;;;129027;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Milicja Al-Kani;PL;;;;129028;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;9. Brygada;PL;;;;129029;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Brygada z Tarhuny;PL;;;;129030;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7. Brygada z Tarhuny;PL;;;;129031;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7. Brygada;PL;;;;129032;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Milicja Kaniyat;PL;;;;129033;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;9e Brigade;NL;;;;129035;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Tarhuna Brigade;NL;;;;129036;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Tarhuna 7e Brigade;NL;;;;129037;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7e Brigade;NL;;;;129038;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Kaniyat-militie;NL;;;;129039;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Milizzja Kaniyat;MT;;;;129040;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;7. Brigade;DE;;;;129041;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Puolisotilaalliset Kaniyat-joukot;FI;;;;129042;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Miliția Kaniyat;RO;;;;129043;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Miliția Al-Kani;RO;;;;129044;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Kaniyat-milisen;SV;;;;129045;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Brigada Tarhuna;RO;;;;129046;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Brigada Kani;RO;;;;129047;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Brigada 9;RO;;;;129048;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Brigada 7 Tarhuna;RO;;;;129049;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128875;EU.6273.6;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Brigada 7;RO;;;;129050;EN;formerly known as;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;National Security Agency of the Government of Eritrea;;;;;128889;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;National Security Office of the Government of Eritrea;;;;;128890;EN;Headed by Major General Abraha Kassa;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Служба за национална сигурност на правителството на Еритрея;BG;;;;128927;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Eritreas regerings nationella säkerhetsmyndigheten;SV;;;;128928;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Eritreas regerings nationella säkerhetstjänst;SV;;;;128929;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Eritrean hallituksen kansallinen turvallisuusvirasto;FI;;;;128930;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Nacionalna varnostna agencija vlade Eritreje;SL;;;;128931;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Nacionalni varnostni urad vlade Eritreje;SL;;;;128932;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Národná bezpečnostná agentúra eritrejskej vlády;SK;;;;128933;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Národný bezpečnostný úrad eritrejskej vlády;SK;;;;128934;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Agenția Națională de Securitate a guvernului Eritreei;RO;;;;128935;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Biroul Național de Securitate al guvernului Eritreei;RO;;;;128936;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Agência de Segurança Nacional do Governo da Eritreia;PT;;;;128937;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Gabinete da Segurança Nacional do Governo da Eritreia;PT;;;;128938;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Agencja Bezpieczeństwa Narodowego Rządu Erytrei;PL;;;;128939;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Urząd Bezpieczeństwa Narodowego Rządu Erytrei;PL;;;;128940;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Nationaal Veiligheidsbureau van de Eritrese regering;NL;;;;128941;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Aġenzija tas-Sigurtà Nazzjonali tal-Gvern tal-Eritrea;MT;;;;128942;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Uffiċċju tas-Sigurtà Nazzjonali tal-Gvern tal-Eritrea;MT;;;;128943;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Az eritreai kormány Nemzetbiztonsági Ügynökség;HU;;;;128944;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Az eritreai kormány Nemzetbiztonsági Hivatala;HU;;;;128945;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Eritrėjos Vyriausybės nacionalinė saugumo agentūra;LT;;;;128946;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Eritrėjos Vyriausybės nacionalinė saugumo tarnyba;LT;;;;128947;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Agenzia per la sicurezza nazionale del governo dell’Eritrea;IT;;;;128948;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Ufficio per la sicurezza nazionale del governo dell’Eritrea;IT;;;;128949;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Agence nationale de sécurité du gouvernement érythréen;FR;;;;128950;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Bureau national de sécurité du gouvernement érythréen;FR;;;;128951;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Εθνική Υπηρεσία Ασφαλείας της κυβέρνησης της Ερυθραίας;EL;;;;128952;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Eritrea valitsuse riiklik julgeolekubüroo;ET;;;;128953;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Amt für nationale Sicherheit der Regierung Eritreas;DE;;;;128954;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Den nationale sikkerhedsmyndighed for Eritreas regering;DA;;;;128955;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Národní bezpečnostní agentura eritrejské vlády;CS;;;;128956;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Národní bezpečnostní úřad eritrejské vlády;CS;;;;128957;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Agencia de Seguridad Nacional del Gobierno de Eritrea;ES;;;;128958;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Oficina de Seguridad Nacional del Gobierno de Eritrea;ES;;;;128959;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Агенция за национална сигурност на правителството на Еритрея;BG;;;;128960;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Eritrejas valdības National Security Agency;LV;;;;129051;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;128888;EU.6274.5;;2021-03-22;;(Date of UN designation: 2021-03-22);E;enterprise;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;Eritrejas valdības National Security Office;LV;;;;129052;EN;;amendment;council;2021-03-22;2021-03-22;2021/478 (OJ L99I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.099.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A099I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129383;EU.6291.43;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;Phado Man Nyein Maung;;M;;;129386;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129383;EU.6291.43;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;P’do;;M;;;129387;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129383;EU.6291.43;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;Mahn Nyein Maung;;M;;Member of State Administrative Council (SAC);129388;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129383;EU.6291.43;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947;;;YES;GREGORIAN;;;;;00;UNKNOWN;129384;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129383;EU.6291.43;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;129385;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC +28/10/2022;129394;EU.6293.41;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;Thein Nyunt;;M;;"Member of State Administrative Council (SAC); Chairman of New National Democracy Party (NNDP)";129398;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129394;EU.6293.41;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944-12-26;26;12;1944;;;NO;GREGORIAN;;;Karen State;Kawkareik;MM;MYANMAR;129395;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129394;EU.6293.41;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12/THAGAKA(NAING)012432 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;129397;EN;ID number;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;; +28/10/2022;129394;EU.6293.41;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;129396;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC +28/10/2022;129399;EU.6294.40;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;Khin Maung Swe;;M;;"Member of State Administrative Council (SAC); Chairman of National Democratic Force party (NDF)";129402;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129399;EU.6294.40;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1942-07-24;24;7;1942;;;NO;GREGORIAN;;Pathein District;;Ngathaingchaung;MM;MYANMAR;129400;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129399;EU.6294.40;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;129401;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC +28/10/2022;129403;EU.6295.39;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;Aye Nu Sein;;F;;"Member of State Administrative Council (SAC); Vice-chair of the Arakan National Party";129406;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129403;EU.6295.39;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-03-24;24;3;1957;;;NO;GREGORIAN;;Rakhine State;;Sittwe;MM;MYANMAR;129404;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129403;EU.6295.39;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;129405;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC +28/10/2022;129407;EU.6296.38;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;Jeng Phang Naw Htaung;;M;;Member of State Administrative Council (SAC);129409;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129407;EU.6296.38;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;129408;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC +28/10/2022;129410;EU.6297.37;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;Maung Ha;;M;;Member of State Administrative Council (SAC);129412;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129410;EU.6297.37;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;129411;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC +28/10/2022;129413;EU.6298.36;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;Sai Long Hseng;;M;;Member of State Administrative Council (SAC);129418;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129413;EU.6298.36;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947-04-18;18;4;1947;;;NO;GREGORIAN;;;;Kengtung;MM;MYANMAR;129414;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129413;EU.6298.36;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13/KATANA (N)-005249 (other-Other identification number) (NRC Number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;129416;EN;NRC Number;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;; +28/10/2022;129413;EU.6298.36;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Katana (Naing) 0052495 (other-Other identification number) (Citizenship verification card);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;129417;EN;Citizenship verification card;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;; +28/10/2022;129413;EU.6298.36;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;129415;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC +28/10/2022;129419;EU.6299.35;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;Saw Daniel;;M;;Member of State Administrative Council (SAC);129422;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129419;EU.6299.35;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-11-25;25;11;1957;;;NO;GREGORIAN;;;Kayah State;Loikaw;MM;MYANMAR;129420;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129419;EU.6299.35;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;129421;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC +28/10/2022;129423;EU.6300.41;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;Banyar Aung Moe;;M;Dr;Member of State Administrative Council (SAC);129425;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129423;EU.6300.41;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;129424;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC +28/10/2022;129443;EU.6311.9;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;Sate Pyin Nyar;;;;;129448;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129443;EU.6311.9;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;U Chit Naing;;M;;Minister of Union Government heading the Ministry of Union Government Office (2). Minister for Information from 2 February 2021 to 1 August 2021.;129449;EN;;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129443;EU.6311.9;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;Yangon;No. 150, Yadanar Street, Yadanar Housing (near Tine Yin Thar Village);;;Tharkayta Towhship;;NO;;MM;MYANMAR;129444;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129443;EU.6311.9;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;1948;;;NO;GREGORIAN;;Magway Region;Chauk Township;Kyee Nee Village;MM;MYANMAR;129445;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129443;EU.6311.9;;2021-04-19;;(Date of UN designation: 2021-04-19);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;129446;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC +28/10/2022;129450;EU.6312.8;;2021-04-19;;(Date of UN designation: 2021-04-19);E;enterprise;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;Myanmar Economic Holdings Public Company Ltd;;;;Type of entity: Public Company Limited by Shares;129453;EN;"Associates: Board of directors: Lt. Gen Dwe Aung Lin: director (EU-designated); Lt. Gen Moe Myint Tun: director (EU-designated); Patron group: Commander-in-Chief Min Aung Hlaing: chairman (EU-designated);\n\nDeputy-Commander-in-Chief Soe Win: Vice-chairman (EU-designated)";amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129450;EU.6312.8;;2021-04-19;;(Date of UN designation: 2021-04-19);E;enterprise;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;51 Mahabandoola road, 189/191 Botataung;;11 161;Yangon region;;NO;WEB[http://www.mehl.com.mm]\nPHONE[01-290843]\n(Principal place of business: Myanmar/Burma);MM;MYANMAR;129451;EN;Principal place of business: Myanmar/Burma;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129450;EU.6312.8;;2021-04-19;;(Date of UN designation: 2021-04-19);E;enterprise;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"156387282 (regnumber-Registration Number) (on 1990-04-27 in Yangon)(Place of \nregistration: Yangon, Myanmar;\nDate of registration: 27 April 1990)";NO;NO;NO;NO;NO;;1990-04-27;;;;;regnumber;Registration Number;Yangon;MM;;129452;EN;"Place of \nregistration: Yangon, Myanmar;\nDate of registration: 27 April 1990";amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;; +28/10/2022;129454;EU.6313.7;;2021-04-19;;(Date of UN designation: 2021-04-19);E;enterprise;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;Myanmar Economic Corporation Limited;;;;Type of entity: \nCompany limited by shares;129457;EN;;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129454;EU.6313.7;;2021-04-19;;(Date of UN designation: 2021-04-19);E;enterprise;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;Ahlone, Yangon;Corner of Ahlone road & Kannar road;;;;;NO;PHONE[01-8221369]\nEMAIL[mecadm.hq@gmail.com]\n(Place of business: Myanmar/Burma);MM;MYANMAR;129455;EN;Place of business: Myanmar/Burma;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129454;EU.6313.7;;2021-04-19;;(Date of UN designation: 2021-04-19);E;enterprise;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105444192 (regnumber-Registration Number) (in Yangon)(Place of \nregistration:Yangon, Myanmar\nDate of registration: Founded in 1997 as a State owned company, registered as a private company on 9 January 2019);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;Yangon;MM;;129456;EN;Place of \nregistration:Yangon, Myanmar\nDate of registration: Founded in 1997 as a State owned company, registered as a private company on 9 January 2019;amendment;council;2021-04-19;2021-04-19;2021/638 (OJ L132I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.132.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A132I%3ATOC;;;;;;;;;;;;; +28/10/2022;129766;EU.6331.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Наталья Михайловна БУГУК;RU;F;;;129769;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129766;EU.6331.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Наталля Міхайлаўна БУГУК;BE;F;;;129770;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129766;EU.6331.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Natalia Mikhailovna BUGUK;;F;;;129771;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129766;EU.6331.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Natallia Mikhailauna BUHUK;;F;;Judge at the Fruzensky district court in Minsk;129772;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129766;EU.6331.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Natalja Michajlovna BUGUK;SV;F;;;130652;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129766;EU.6331.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Natallja Michajlauna BUHUK;SV;F;;;130653;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129766;EU.6331.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989-12-19;19;12;1989;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;129767;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129766;EU.6331.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129768;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129773;EU.6332.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Алина Сергеевна КАСЬЯНЧИК;RU;F;;;129776;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129773;EU.6332.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Аліна Сяргееўна КАСЬЯНЧЫК;BE;F;;;129777;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129773;EU.6332.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Alina Siarhieeuna KASIANCHYK;;F;;Assistant Prosecutor at the \nFrunzensky District Court \nin Minsk;129778;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129773;EU.6332.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Alina Sergeevna KASYANCHYK;;F;;;129779;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129773;EU.6332.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Alina Sergejevna KASIANTJIK;SV;F;;;130654;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129773;EU.6332.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Alina Siarhejeuna KASIANTJYK;SV;F;;;130655;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129773;EU.6332.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1998-03-12;12;3;1998;;;NO;GREGORIAN;;;;;00;UNKNOWN;129774;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129773;EU.6332.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129775;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129780;EU.6333.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Игорь Викторович КУРИЛОВИЧ;RU;M;;;129783;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129780;EU.6333.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Ігар Віĸтаравіч КУРЫЛОВІЧ;BE;M;;;129784;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129780;EU.6333.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Igor Viktorovich KURILOVICH;;M;;;129785;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129780;EU.6333.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Ihar Viktaravich KURYLOVICH;;M;;Senior Investigator of \nthe Frunzensky District Department of the Investigative Committee;129786;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129780;EU.6333.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Igor Viktorovitj KURILOVITJ;SV;M;;;130656;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129780;EU.6333.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Ihar Viktaravitj KURYLOVITJ;SV;M;;;130657;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129780;EU.6333.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1990-09-26;26;9;1990;;;NO;GREGORIAN;;;;;00;UNKNOWN;129781;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129780;EU.6333.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129782;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129787;EU.6334.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Сергей Викторович ШАТИЛО;RU;M;;;129790;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129787;EU.6334.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Сяргей Віктаравіч ШАЦІЛА;BE;M;;;129791;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129787;EU.6334.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Sergei Viktorovich SHATILO;;M;;;129792;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129787;EU.6334.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Siarhei Viktaravich SHATSILA;;M;;Judge at Sovetsky District \nCourt in Minsk;129793;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129787;EU.6334.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Sergej Viktorovitj SJATILO;SV;M;;;130658;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129787;EU.6334.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Siarhej Viktaravitj SJATSILA;SV;M;;;130659;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129787;EU.6334.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989-08-13;13;8;1989;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;129788;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129787;EU.6334.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129789;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129794;EU.6335.40;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Анастасия Васильевна АЧАЛОВА;RU;F;;;129797;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129794;EU.6335.40;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Анастасія Васільеўна АЧАЛАВА;BE;F;;;129798;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129794;EU.6335.40;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Anastasia Vasilievna ACHALOVA;;F;;;129799;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129794;EU.6335.40;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Anastasia Vasileuna ACHALAVA;;F;;Judge at the Leninsky \nDistrict Court in Minsk;129800;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129794;EU.6335.40;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Anastasija Vasiljevna ATJALOVA;SV;F;;;130660;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129794;EU.6335.40;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Anastasija Vasiljeuna ATJALAVA;SV;F;;;130661;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129794;EU.6335.40;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1992-10-15;15;10;1992;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;129795;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129794;EU.6335.40;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129796;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129801;EU.6336.39;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Мария Вячеславовна ЕРОХИНА;RU;F;;;129804;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129801;EU.6336.39;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Марыя Вячаславаўна ЯРОХІНА;BE;F;;;129805;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129801;EU.6336.39;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Maria Viacheslavovna YEROKHINA;;F;;;129806;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129801;EU.6336.39;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Mariya Viachaslavauna YAROKHINA;;F;;Judge at the Frunzensky \nDistrict Court in Minsk;129807;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129801;EU.6336.39;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Marija Vjatjeslavovna JEROCHINA;SV;F;;;130662;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129801;EU.6336.39;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Maryja Vjatjaslavauna JAROCHINA;SV;F;;;130663;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129801;EU.6336.39;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-07-04;4;7;1987;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;129802;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129801;EU.6336.39;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129803;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129808;EU.6337.38;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Юлия Александровна БЛИЗНЮК;RU;F;;;129811;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129808;EU.6337.38;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Юлія Аляксандраўна БЛІЗНЮК;BE;F;;;129812;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129808;EU.6337.38;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Yuliya Aleksandrovna BLIZNIUK;;F;;;129813;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129808;EU.6337.38;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Yuliya Aliaksandrauna BLIZNIUK;;F;;Deputy Chairwoman/judge \nat the Frunzensky District \nCourt in Minsk;129814;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129808;EU.6337.38;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Julija Aleksandrovna BLIZNJUK;SV;F;;;130664;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129808;EU.6337.38;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Julija Aljaksandrauna BLIZNJUK;SV;F;;;130665;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129808;EU.6337.38;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-09-23;23;9;1971;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;129809;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129808;EU.6337.38;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129810;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129815;EU.6338.37;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Анастасия Дмитриевна КУЛИК;RU;F;;;129818;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129815;EU.6338.37;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Анастасія Дзмітрыеўна КУЛІК;BE;F;;;129819;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129815;EU.6338.37;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Anastasia Dmitrievna KULIK;;F;;;129820;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129815;EU.6338.37;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Anastasia Dzmitreuna KULIK;;F;;Judge of the Pervomaisky District Court of Minsk;129821;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129815;EU.6338.37;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Anastasija Dmitrijevna KULIK;SV;F;;;130666;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129815;EU.6338.37;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Anastasija Dzmitryjeuna KULIK;SV;F;;;130667;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129815;EU.6338.37;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989-07-28;28;7;1989;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;129816;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129815;EU.6338.37;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129817;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129822;EU.6339.36;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Максим Леонидович ТРУСЕВИЧ;RU;M;;;129825;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129822;EU.6339.36;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Максім Леанідавіч ТРУСЕВІЧ;BE;M;;;129826;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129822;EU.6339.36;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Maksim Leonidovich TRUSEVICH;;M;;;129827;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129822;EU.6339.36;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Maksim Leanidavich TRUSEVICH;;M;;Judge of the \nPervomaisky District Court of Minsk;129828;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129822;EU.6339.36;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Maksim Leonidovitj TRUSEVITJ;SV;M;;;130668;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129822;EU.6339.36;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Maksim Leanidavitj TRUSEVITJ;SV;M;;;130669;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129822;EU.6339.36;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989-08-12;12;8;1989;;;NO;GREGORIAN;;;;;00;UNKNOWN;129823;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129822;EU.6339.36;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129824;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129829;EU.6340.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Татьяна Ярославовна МОТЫЛЬ;RU;F;;;129832;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129829;EU.6340.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Тацяна Яраславаўна МАТЫЛЬ;BE;F;;;129833;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129829;EU.6340.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Tatiana Yaroslavovna MOTYL;;F;;;129834;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129829;EU.6340.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Tatsiana Yaraslavauna MATYL;;F;;Judge of the \nMoskovsky District Court of Minsk;129835;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129829;EU.6340.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Tatiana Jaroslavovna MOTYL;SV;F;;;130670;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129829;EU.6340.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Tatsiana Jaraslavauna MATYL;SV;F;;;130671;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129829;EU.6340.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-01-20;20;1;1968;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;129830;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129829;EU.6340.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129831;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129836;EU.6341.13;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Александр Анатольевич РУДЕНКО;RU;M;;;129839;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129836;EU.6341.13;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Аляксандр Анатольевіч РУДЗЕНКА;BE;M;;;129840;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129836;EU.6341.13;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksandr Anatolevich RUDENKO;;M;;;129841;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129836;EU.6341.13;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aliaksandr Anatolevich RUDZENKA;;M;;Deputy Chairman of the of \nthe Oktyabrsky District \nCourt of Minsk;129842;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129836;EU.6341.13;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksandr Anatoljevitj RUDENKO;SV;M;;;130672;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129836;EU.6341.13;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aljaksandr Anatoljevitj RUDZENKA;SV;M;;;130673;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129836;EU.6341.13;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-12-01;1;12;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;129837;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129836;EU.6341.13;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129838;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129843;EU.6342.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Александр Александрович ВОЛК;RU;M;;;129846;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129843;EU.6342.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Аляксандр Аляксандравіч ВОЎК;BE;M;;;129847;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129843;EU.6342.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksandr Aleksandrovich VOLK;;M;;;129848;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129843;EU.6342.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aliaksandr Aliaksandravich VOUK;;M;;Judge of the Sovetsky \nDistrict Court of Minsk;129849;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129843;EU.6342.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksandr Aleksandrovitj VOLK;SV;M;;;130674;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129843;EU.6342.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aljaksandr Aljaksandravitj VOUK;SV;M;;;130675;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129843;EU.6342.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-08-01;1;8;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;129844;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129843;EU.6342.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129845;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129850;EU.6343.11;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Ольга Сергеевна НЕБОРСКАЯ;RU;F;;;129853;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129850;EU.6343.11;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Вольга Сяргееўна НЯБОРСКАЯ;BE;F;;;129854;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129850;EU.6343.11;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Olga Sergeevna NEBORSKAIA;;F;;;129855;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129850;EU.6343.11;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Volha Siarheeuna NIABORSKAIA;;F;;Judge of the \nOktyabrsky District Court of Minsk;129856;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129850;EU.6343.11;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Olga Sergejevna NEBORSKAJA;SV;F;;;130676;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129850;EU.6343.11;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Volha Siarhejeuna NJABORSKAJA;SV;F;;;130677;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129850;EU.6343.11;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1991-02-14;14;2;1991;;;NO;GREGORIAN;;;;;00;UNKNOWN;129851;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129850;EU.6343.11;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129852;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129857;EU.6344.10;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Марина Святославовна ЗАПАСНИК;RU;F;;;129860;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129857;EU.6344.10;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Марына Святаславаўна ЗАПАСНІК;BE;F;;;129861;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129857;EU.6344.10;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Marina Sviatoslavovna ZAPASNIK;;F;;;129862;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129857;EU.6344.10;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Marina Sviataslavauna ZAPASNIK;;F;;Deputy Chairman of \nthe Court of the Leninsky District of Minsk;129863;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129857;EU.6344.10;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Marina Svjatoslavovna ZAPASNIK;SV;F;;;130678;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129857;EU.6344.10;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Maryna Svjataslavauna ZAPASNIK;SV;F;;;130679;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129857;EU.6344.10;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-03-28;28;3;1982;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;129858;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129857;EU.6344.10;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129859;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129864;EU.6345.9;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Максим Юрьевич ФИЛАТОВ;RU;M;;;129866;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129864;EU.6345.9;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Максім Юр'евіч Філатаў;BE;M;;;129867;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129864;EU.6345.9;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Maksim Yurevich FILATOV;;M;;;129868;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129864;EU.6345.9;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Maksim Yurevich FILATAU;;M;;Judge of the Lida City \nCourt;129869;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129864;EU.6345.9;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Maksim Jurjevitj FILATOV;SV;M;;;130680;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129864;EU.6345.9;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Maksim Jurjevitj FILATAU;SV;M;;;130681;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129864;EU.6345.9;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129865;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129870;EU.6346.8;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Андрей Вацлавович ГРУШКО;RU;M;;;129873;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129870;EU.6346.8;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Андрэй Вацлававіч ГРУШКО;BE;M;;;129874;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129870;EU.6346.8;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Andrei Vatslavovich GRUSHKO;;M;;;129875;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129870;EU.6346.8;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Andrei Vaclavavich HRUSHKO;;M;;Judge of the Leninsky District Court of Brest;129876;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129870;EU.6346.8;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Andrej Vatslavovitj GRUSJKO;SV;M;;;130682;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129870;EU.6346.8;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Andrej Vatslavavitj HRUSJKO;SV;M;;;130683;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129870;EU.6346.8;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-01-24;24;1;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;129871;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129870;EU.6346.8;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129872;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129877;EU.6347.7;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Дмитрий Юрьевич ГОРА;RU;M;;;129880;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129877;EU.6347.7;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Дзмітрый Юр'евіч ГАРА;BE;M;;;129881;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129877;EU.6347.7;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Dmitry Iurevich GORA;;M;;;129882;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129877;EU.6347.7;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Dzmitry Iurevich HARA;;M;;Chairman of the Investigative Committee of Belarus (appointed on 11 March 2021). Former Deputy Prosecutor General of the Republic of \nBelarus (until 11 March 2021).;129883;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129877;EU.6347.7;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Dmitrij Jurjevitj GORA;SV;M;;;130684;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129877;EU.6347.7;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Dzmitryj Jurjevitj HARA;SV;M;;;130685;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129877;EU.6347.7;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-05-04;4;5;1970;;;NO;GREGORIAN;;;;Tbilisi;GE;GEORGIA;129878;EN;former Georgian SSR (now Georgia);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129877;EU.6347.7;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129879;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129884;EU.6348.6;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Аляксей Канстанцінавіч СТУК;BE;M;;;129887;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129884;EU.6348.6;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Алексей Константинович СТУК;RU;M;;;129888;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129884;EU.6348.6;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Alexey Konstantinovich STUK;;M;;;129889;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129884;EU.6348.6;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aliaksei Kanstantsinavich STUK;;M;;Deputy Prosecutor \nGeneral of the Republic of Belarus;129890;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129884;EU.6348.6;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksej Konstantinovitj STUK;SV;M;;;130686;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129884;EU.6348.6;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aljaksej Kanstantsinavitj STUK;SV;M;;;130687;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129884;EU.6348.6;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;129885;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129884;EU.6348.6;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129886;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129891;EU.6349.5;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Геннадий Иосифович ДЫСКО;RU;M;;;129894;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129891;EU.6349.5;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Генадзь Іосіфавіч ДЫСКО;BE;M;;;129895;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129891;EU.6349.5;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Gennadi Iosifovich DYSKO;;M;;;129896;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129891;EU.6349.5;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Genadz Iosifavich DYSKO;;M;;Deputy Prosecutor \nGeneral of the Republic of Belarus, State Counselor of Justice of the 3rd class;129897;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129891;EU.6349.5;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Gennadij Iosifovitj DYSKO;SV;M;;;130688;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129891;EU.6349.5;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Henadz Iosifavitj DYSKO;SV;M;;;130689;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129891;EU.6349.5;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-03-22;22;3;1964;;;NO;GREGORIAN;;Hrodna region;;Oshmyany;BY;BELARUS;129892;EN;(former USSR) now Belarus;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129891;EU.6349.5;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129893;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129905;EU.6351.79;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Алексей Владимирович ЕГОРОВ;RU;M;;;129908;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129905;EU.6351.79;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Аляксей Уладзіміравіч ЯГОРАЎ;BE;M;;;129909;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129905;EU.6351.79;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Alexei Vladimirovich YEGOROV;;M;;;129910;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129905;EU.6351.79;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aliaksei Uladzimiravich IAHORAU;;M;;Member of the House \nof Representatives of the National Assembly of the Republic of Belarus, Deputy Chairperson of the Standing Commission on Law;129911;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129905;EU.6351.79;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksej Vladimirovitj JEGOROV;SV;M;;;130692;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129905;EU.6351.79;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aljaksej Uladzimiravitj JAHORAU;SV;M;;;130693;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129905;EU.6351.79;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-12-16;16;12;1969;;;NO;GREGORIAN;;Pskov region;;Novosokolniki;RU;RUSSIAN FEDERATION;129906;EN;former USSR (now Russian Federation);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129905;EU.6351.79;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129907;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129912;EU.6352.78;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Александр Павлович ОМЕЛЬЯНЮК;RU;M;;;129915;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129912;EU.6352.78;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Аляксандр Паўлавіч АМЕЛЬЯНЮК;BE;M;;;129916;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129912;EU.6352.78;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksandr Pavlovich OMELYANYUK;;M;;;129917;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129912;EU.6352.78;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aliaksandr Paulavich AMELIANIUK;;M;;Member of the House \nof Representatives of the National Assembly of the Republic of Belarus, Deputy Chairperson of the Standing Commission on Law;129918;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129912;EU.6352.78;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksandr Pavlovitj OMELJANJUK;SV;M;;;130694;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129912;EU.6352.78;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aljaksandr Paulavitj AMELJANJUK;SV;M;;;130695;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129912;EU.6352.78;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-03-06;6;3;1964;;;NO;GREGORIAN;;Brest Region/Oblast;;Kobrin;BY;BELARUS;129913;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129912;EU.6352.78;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129914;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129919;EU.6353.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Андрэй Мікалаевіч МУКАВОЗЧЫК;BE;M;;;129924;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129919;EU.6353.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Андрей Николаевич МУКОВОЗЧИК;RU;M;;;129925;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129919;EU.6353.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Andrei Nikolaevich MUKAVOZCHYK;;M;;;129926;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129919;EU.6353.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Andrei Mikalaevich MUKAVOZCHYK;;M;;"Political observer of ""Belarus Today"" (""Sovietskaia Belarus -Belarus Segodnya"")";129927;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129919;EU.6353.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Andrej Nikolajevitj MUKOVOZTJIK;SV;M;;;130696;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129919;EU.6353.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Andrej Mikalajevitj MUKAVOZTJYK;SV;M;;;130697;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129919;EU.6353.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-06-13;13;6;1963;;;NO;GREGORIAN;;;;Novosibirsk;RU;RUSSIAN FEDERATION;129920;EN;former USSR (now Russian Federation);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129919;EU.6353.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"MP2387911 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;129922;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;129919;EU.6353.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"MP3413113 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;129923;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;129919;EU.6353.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129921;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129928;EU.6354.76;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Сергей Александрович ГУСАЧЕНКО;RU;M;;;129932;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129928;EU.6354.76;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Сяргей Аляксандравіч ГУСАЧЭНКА;BE;M;;;129933;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129928;EU.6354.76;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Sergey Alexandrovich GUSACHENKO;;M;;;129934;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129928;EU.6354.76;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Siarhei Aliaksandravich GUSACHENKA;;M;;Deputy Chair of the \nNational State Television and Radio Company (Belteleradio Company);129935;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129928;EU.6354.76;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Sergej Aleksandrovitj GUSATJENKO;SV;M;;;130698;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129928;EU.6354.76;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Siarhej Aljaksandravitj HUSATJENKA;SV;M;;;130699;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129928;EU.6354.76;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;PHONE[(+375-17) 369 90 15]\n(Office phone);00;UNKNOWN;129929;EN;Office phone;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129928;EU.6354.76;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-11-05;5;11;1983;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;129930;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129928;EU.6354.76;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129931;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129936;EU.6355.75;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Геннадий Брониславович ДАВЫДЬКО;RU;M;;;129940;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129936;EU.6355.75;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Генадзь Браніслававіч ДАВЫДЗЬКА;BE;M;;;129941;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129936;EU.6355.75;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Gennadi Bronislavovich DAVYDKO;;M;;;129942;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129936;EU.6355.75;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Genadz Branislavavich DAVYDZKA;;M;;Member of the \nChamber of Representatives, Chair of the Committee on Human Rights and Media, Chair of the Belarusian political organisation Belaya Rus;129943;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129936;EU.6355.75;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Gennadij Bronislavovitj DAVYDKO;SV;M;;;130700;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129936;EU.6355.75;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Henadz Branislavavitj DAVYDZKA;SV;M;;;130701;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129936;EU.6355.75;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-09-29;29;9;1955;;;NO;GREGORIAN;;Vitebsk Region;Senno/Sjanno;Popovka village;BY;BELARUS;129937;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129936;EU.6355.75;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"MP2156098 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;129939;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;129936;EU.6355.75;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129938;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129944;EU.6356.74;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Ольга Николаевна ЧЕМОДАНОВА;RU;F;;;129948;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129944;EU.6356.74;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Вольга Мікалаеўна ЧАМАДАНАВА;BE;F;;;129949;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129944;EU.6356.74;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Olga Nikolaevna CHEMODANOVA;;F;;;129950;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129944;EU.6356.74;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Volha Mikalaeuna CHAMADANAVA;;F;Colonel;"Former Press Secretary of the Ministry of Internal Affairs of Belarus; Head of the Main Directorate for Ideology and Youth of the Minsk City Executive Committee";129951;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129944;EU.6356.74;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Olga Nikolajevna TJEMODANOVA;SV;F;;;130702;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129944;EU.6356.74;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Volha Mikalajeuna TJAMADANAVA;SV;F;;;130703;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129944;EU.6356.74;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-10-13;13;10;1977;;;NO;GREGORIAN;;;;Minsk Region/Oblast;BY;BELARUS;129945;EN;former USSR (now Belarus);amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129944;EU.6356.74;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"MC1405076 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;129947;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;129944;EU.6356.74;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;129946;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;129952;EU.6357.73;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;New Oil Company;;;;;129955;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129952;EU.6357.73;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Novaia naftavaia kampania;;;;;129956;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129952;EU.6357.73;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Nouvelle compagnie pétrolière;FR;;;;130817;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129952;EU.6357.73;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Новая нефтяная компания;RU;;;;130826;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129952;EU.6357.73;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"ЗАО ""ННК""";RU;;;;130827;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129952;EU.6357.73;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Новая нафтавая кампанiя;BE;;;;130828;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129952;EU.6357.73;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"ЗАТ ""ННК”";BE;;;;130829;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129952;EU.6357.73;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;JSC “NNK”;;;;;130830;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129952;EU.6357.73;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;Rakovska St. 14W room 7, 5th floor;;;;;NO;;BY;BELARUS;129953;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129952;EU.6357.73;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"193402282 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;130825;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;129957;EU.6358.72;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ООО “Логекс”;;;;;129960;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129957;EU.6358.72;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Logex;;;;;129961;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129957;EU.6358.72;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ТАА “Лагекс”;;;;;135487;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129957;EU.6358.72;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;24 Kommunisticheskaya Str., office 2;;;;;NO;WEB[http://logex.by/]\nEMAIL[info@logex.by];BY;BELARUS;129958;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129957;EU.6358.72;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"192695465 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;129959;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"ОАО ""Минский автомобильный завод""";RU;;;;129964;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ААТ «Мінскі аўтамабільны завод»;BE;;;;129965;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;OJSC “MAZ”;;;;;129966;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Minskii Avtomobilnyi Zavod (MAZ);;;;OJSC Minsk Automobile Plant is one of the biggest \nstate-owned automotive manufacturers in Belarus.;129967;EN;Registration date: \n16.07.1944;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Usine automobile de Minsk;FR;;;;130818;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;De open vennootschap op aandelen “MAZ”;NL;;;;130819;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Minskii Avtomobilni Zavod (MAZ);NL;;;;130820;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Offene Aktiengesellschaft ‚Minsk Automobile Works‘ Verwaltungsgesellschaft der Holding ‚BELAVTOMAZ‘;DE;;;;135473;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Veřejná akciová společnost „Minsk Automobile Works“ - správcovská společnost holdingu „BELAVTOMAZ“;CS;;;;135474;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Sociedad limitada por acciones abierta “Minsk Automobile Works” – Sociedad gestora de participación de “BELAVTOMAZ”;ES;;;;135475;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Отворено акционерно дружество “ Minsk Automobile Works ” - управително дружество на холдинга “ BELAVTOMAZ“;BG;;;;135476;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Open Joint Stock Company “Minsk Automobile Works” - Management Company of “BELAVTOMAZ” Holding;;;;;135477;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Otvoreno dioničko društvo „Minsk Automobile Works” – upravljačko društvo holdinga „BELAVTOMAZ”;HR;;;;135478;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Société par actions ouverte “Minsk Automobile Works” – Société de gestion du holding “BELAVTOMAZ”;FR;;;;135479;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Avatud aktsiaselts „Minsk Automobile Works“ - valdusühingu „BELAVTOMAZ“ haldajafirma;ET;;;;135480;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Atviroji akcinė bendrovė „Minsk Automobile Works“ – holdingo „BELAVTOMAZ“ valdymo bendrovė;LT;;;;135481;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Avoin osakeyhtiö ”Minsk Automobile Works” – holdingyhtiön ”BELAVTOMAZ” hallintoyhtiö;FI;;;;135482;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Odprta delniška družba „ Minsk Automobile Works“ – družba za upravljanje “BELAVTOMAZ“;SL;;;;135483;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Societatea deschisă pe acțiuni «Minsk Automobile Works» - Societate de administrare a holdingului «BELAVTOMAZ»;RO;;;;135484;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Open Joint Stock Company „Minsk Automobile Works” – spółka zarządzająca holdingu „BELAVTOMAZ”;PL;;;;135485;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Open vennootschap op aandelen “Minsk Automobile Works” - Beheermaatschappij van “BELAVTOMAZ” Holding;NL;;;;135486;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129962;EU.6359.71;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;Socialisticheskaya 2;;220021;;;NO;"WEB[http://maz.by/]\nPHONE[+375 (17) 217-22-22; +8000 217-22-22 ]";BY;BELARUS;129963;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"ОАО "" БЕЛАЗ""";RU;;;;129978;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ААТ «БЕЛАЗ»;BE;;;;129979;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"OJSC ""BELAZ""";;;;;129980;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belarusski Avtomobilnyi Zavod (BelAZ);;;;OJSC “Belaz” is one of the leading state-owned companies in Belarus and one of the largest manufacturers of large trucks and large dump trucks in the world.;129981;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Open vennootschap op aandelen “BELAZ”;NL;;;;130821;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belarusski Avtomobilni Zavod (BelAZ);NL;;;;130822;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Open Joint Stock Company “BELAZ” - Management Company of Holding “BELAZ-HOLDING”;;;;;135459;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Offene Aktiengesellschaft ‚BELAZ‘ – Verwaltungsgesellschaft der Holding ‚BELAZ-HOLDING‘;DE;;;;135460;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Veřejná akciová společnost „BELAZ“- správcovská společnost holdingu „BELAZ-HOLDING“;CS;;;;135461;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Sociedad limitada por acciones abierta “BELAZ” – Sociedad gestora de participación “BELAZ HOLDING”;ES;;;;135462;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Отворено акционерно дружество “BELAZ” управително дружество на холдинга “BELAZ-ХОЛДИНГ”;BG;;;;135463;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Atviroji akcinė bendrovė „BELAZ“ – holdingo „BELAZ-HOLDING“ valdymo bendrovė;LT;;;;135464;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Otvoreno dioničko društvo „BELAZ” - upravljačko društvo holdinga „BELAZ-HOLDING”;HR;;;;135465;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Société par actions ouverte “BELAZ” – Société de gestion du holding “BELAZ-HOLDING”;FR;;;;135466;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Avatud aktsiaselts „BELAZ“ - valdusühingu „BELAZ HOLDING“ haldajafirma;ET;;;;135467;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Societatea deschisă pe acțiuni «BELAZ» – Societate de administrare a holdingului «BELAZ-HOLDING»;RO;;;;135468;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Open Joint Stock Company „BELAZ” – spółka zarządzająca holdingu „BELAZ-HOLDING”;PL;;;;135469;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Open vennootschap op aandelen “BELAZ” - Beheermaatschappij van “BELAZ-HOLDING” Holding;NL;;;;135470;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Avoin osakeyhtiö ”BELAZ” – holdingyhtiön ”BELAZ-HOLDING” hallintoyhtiö;FI;;;;135471;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Odprta delniška družba „BELAZ“ – družba za upravljanje „BELAZ-HOLDING“;SL;;;;135472;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129976;EU.6361.48;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Zhodino, Minsk region;40 let Octyabrya St. 4;;222161;;;NO;WEB[https://belaz.by];BY;BELARUS;129977;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129982;EU.6362.47;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"ООО ""Глобалкастом- менеджмент""";;;;;129985;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129982;EU.6362.47;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Globalcustom Management LLC;;;;;129986;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129982;EU.6362.47;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Globalkastom-menedžment;SL;;;;135458;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129982;EU.6362.47;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;Nemiga 40/301;;;;;NO;WEB[https://globalcustom.by/]\nEMAIL[info@globalcustom.by ];BY;BELARUS;129983;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129982;EU.6362.47;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"193299162 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;129984;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;129992;EU.6364.45;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ООО Сохра;;;;;129995;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129992;EU.6364.45;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Sohra LLC;;;;;129996;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129992;EU.6364.45;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Sohra Group;;;;;129997;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129992;EU.6364.45;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Όμιλος Sohra;EL;;;;130816;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129992;EU.6364.45;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Sohra Groep;NL;;;;130824;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129992;EU.6364.45;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;Revolucyonnaya 17/19, office no. 22;;220030;;;NO;WEB[http://sohra.by/]\nEMAIL[info@sohra.by];BY;BELARUS;129993;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;129992;EU.6364.45;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"192363182 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;129994;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130005;EU.6366.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Михаил Вячеславович ГРИБ;RU;M;;;130008;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130005;EU.6366.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Міхаіл Вячаслававіч ГРЫБ;BE;M;;;130009;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130005;EU.6366.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Mikhail Viacheslavovich GRIB;;M;;;130010;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130005;EU.6366.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Mikhail Viachaslavavich HRYB;;M;;Head of the Main \nDepartment of Internal Affairs of the Minsk City Executive Committee;130011;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130005;EU.6366.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Michail Vjatjeslavovitj GRIB;SV;M;;;130792;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130005;EU.6366.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Michail Vjatjaslavavitj HRYB;SV;M;;;130793;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130005;EU.6366.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-07-29;29;7;1980;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;130006;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130005;EU.6366.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130007;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130012;EU.6367.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Николай Николаевич КАРПЕНКОВ;RU;M;;;130015;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130012;EU.6367.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Мікалай Мікалаевіч КАРПЯНКОЎ;BE;M;;;130016;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130012;EU.6367.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Nikolai Nikolaevich KARPENKOV;;M;;;130017;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130012;EU.6367.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Mikalai Mikalaevich KARPIANKAU;;M;;Deputy Minister of \nInternal Affairs, Former Head of the Main Department for Combating Organized Crime and Corruption of the Ministry of Internal Affairs;130018;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130012;EU.6367.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Nikolaj Nikolajevitj KARPENKOV;SV;M;;;130794;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130012;EU.6367.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Mikalaj Mikalajevitj KARPJANKOU;SV;M;;;130795;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130012;EU.6367.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-09-06;6;9;1968;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;130013;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130012;EU.6367.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130014;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130019;EU.6368.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Евгений Алексеевич ВРУБЛЕВСКИЙ;RU;M;;;130022;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130019;EU.6368.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Яўген Аляксеевіч УРУБЛЕЎСКІ;BE;M;;;130023;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130019;EU.6368.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Evgenii Alekseevich VRUBLEVSKII;;M;;;130024;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130019;EU.6368.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Yauhen Aliakseevich URUBLEUSKI;;M;;Senior Police Sergeant of \nthe Akrestina Offenders' \nIsolation Centre;130025;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130019;EU.6368.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Jevgenij Aleksejevitj VRUBLEVSKIJ;SV;M;;;130790;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130019;EU.6368.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Jauhen Aljaksejevitj URUBLEUSKI;SV;M;;;130791;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130019;EU.6368.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-01-28;28;1;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;130020;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130019;EU.6368.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130021;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130061;EU.6374.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Виталий Михайлович МАКРИЦКИЙ;RU;M;;;130064;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130061;EU.6374.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Віталь Міхайлавіч МАКРЫЦКІ;BE;M;;;130065;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130061;EU.6374.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Vitalii Mikhailavich MAKRITSKII;;M;;;130066;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130061;EU.6374.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Vital Mikhailavich MAKRYTSKI;;M;;Deputy Head of the \nOktyabrsky District Police \nDepartment of Minsk \n(Until December 17 2020). \nFrom December 17 2020 -\nthe Head of the Partizanski \nDistrict Police Department \nof Minsk;130067;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130061;EU.6374.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Vitalij Michajlovitj MAKRITSKIJ;SV;M;;;130788;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130061;EU.6374.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Vital Michajlavitj MAKRYTSKI;SV;M;;;130789;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130061;EU.6374.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-02-17;17;2;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;130062;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130061;EU.6374.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130063;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130075;EU.6376.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Александр Мечиславович АНДРИЕВСКИЙ;RU;M;;;130078;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130075;EU.6376.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Аляксандр Мечыслававіч АНДРЫЕЎСКІ;BE;M;;;130079;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130075;EU.6376.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Alexander Mechislavovich ANDRIEVSKII;;M;;;130080;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130075;EU.6376.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aliaksandr Mechyslavavich ANDRYEUSKI;;M;;Deputy Head of the \nFrunzensky District Police \nDepartment of Minsk;130081;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130075;EU.6376.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Alexandr Mechislavovich ANDRIEVSKII;;M;;;130479;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130075;EU.6376.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksandr Metjislavovitj ANDRIJEVSKIJ;SV;M;;;130786;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130075;EU.6376.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aljaksandr Metjyslavavitj ANDRYJEUSKI;SV;M;;;130787;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130075;EU.6376.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-04-29;29;4;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;130076;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130075;EU.6376.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130077;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130082;EU.6377.11;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Сяргей Феліксавіч ДУБАВІК;BE;M;;;130085;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130082;EU.6377.11;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Сергей Феликсович ДУБОВИК;RU;M;;;130086;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130082;EU.6377.11;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Sergey Feliksovich DUBOVIK;;M;;;130087;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130082;EU.6377.11;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Siarhei Feliksavich DUBAVIK;;M;;Deputy Head of the \nLeninsky District Police \nDepartment;130088;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130082;EU.6377.11;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Sergej Feliksovitj DUBOVIK;SV;M;;;130784;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130082;EU.6377.11;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Siarhej Feliksavitj DUBAVIK;SV;M;;;130785;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130082;EU.6377.11;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-02-01;1;2;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;130083;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130082;EU.6377.11;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130084;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130089;EU.6378.10;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Сяргей Аляĸсандравіч ВАРЭЙКА;RU;M;;;130092;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130089;EU.6378.10;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Сяргей Аляксандравіч ВАРЭЙКА;BE;M;;;130093;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130089;EU.6378.10;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Sergey Aleksandrovich VAREIKO;;M;;;130094;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130089;EU.6378.10;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Siarhei Aliaksandravich VAREIKA;;M;;Head of Moskovski \nDistrict Police Department \nof Minsk, former Deputy \nHead of the Zavodsky \nDistrict Police Department \nof Minsk;130095;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130089;EU.6378.10;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Sergej Aleksandrovitj VAREJKO;SV;M;;;130782;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130089;EU.6378.10;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Siarhej Aljaksandravitj VAREJKA;SV;M;;;130783;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130089;EU.6378.10;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-02-01;1;2;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;130090;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130089;EU.6378.10;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130091;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130096;EU.6379.9;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Mаксим Владимирович РЫЖЕНКОВ;RU;M;;;130099;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130096;EU.6379.9;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Mаксім Уладзіміравіч РЫЖАНКОЎ;BE;M;;;130100;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130096;EU.6379.9;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Maksim Vladimirovich RYZHENKOV;;M;;;130101;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130096;EU.6379.9;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Maksim Uladzimiravich RYZHANKOU;;M;;First Deputy Head of the Presidential Administration;130102;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130096;EU.6379.9;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Maksim Vladimirovitj RYZJENKOV;SV;M;;;130712;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130096;EU.6379.9;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Maksim Uladzimiravitj RYZJANKOU;SV;M;;;130713;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130096;EU.6379.9;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-06-19;19;6;1972;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;130097;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130096;EU.6379.9;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130098;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130103;EU.6380.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Дмитрий Александрович ЛУКАШЕНКО;RU;M;;;130106;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130103;EU.6380.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Дзмітрый Аляксандравіч ЛУКАШЭНКА;BE;M;;;130107;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130103;EU.6380.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Dmitry Aleksandrovich LUKASHENKO;;M;;;130108;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130103;EU.6380.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Dzmitry Aliaksandravich LUKASHENKA;;M;;Businessman, chairman of President’s Sport Club;130109;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130103;EU.6380.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Dmitrij Aleksandrovitj LUKASJENKO;SV;M;;;130714;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130103;EU.6380.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Dzmitryj Aljaksandravitj LUKASJENKA;SV;M;;;130715;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130103;EU.6380.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-03-23;23;3;1980;;;NO;GREGORIAN;;;;Mogilev / Mahiliou;BY;BELARUS;130104;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130103;EU.6380.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130105;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130110;EU.6381.83;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Лилия Валерьевна ЛУКАШЕНКО;RU;F;;;130113;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130110;EU.6381.83;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Лілія Валер'еўна ЛУКАШЭНКА;BE;F;;;130114;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130110;EU.6381.83;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Liliya Valerevna LUKASHENKO;;F;;;130115;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130110;EU.6381.83;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Liliya Valereuna LUKASHENKA;;F;;Businesswoman, director of an art gallery;130116;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130110;EU.6381.83;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Лилия Валерьевна СЕМАШКО;RU;F;;;130383;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130110;EU.6381.83;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Лілія Валер'еўна СЯМАШКА;BE;F;;;130384;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130110;EU.6381.83;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Liliya Valerevna SEMASHKO;;F;;;130385;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130110;EU.6381.83;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Liliya Valereuna SIAMASHKA;;F;;;130386;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130110;EU.6381.83;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Lilija Valerjevna SEMASJKO;SV;F;;;130716;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130110;EU.6381.83;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Lilija Valerjeuna SIAMASJKA;SV;F;;;130717;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130110;EU.6381.83;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Lilija Valerjevna LUKASJENKO;SV;F;;;130718;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130110;EU.6381.83;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Lilija Valerjeuna LUKASJENKA;SV;F;;;130719;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130110;EU.6381.83;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-10-29;29;10;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;130387;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130110;EU.6381.83;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4291079A047PB1 (other-Other identification number) (Personal ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;135446;EN;Personal ID;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;; +28/10/2022;130110;EU.6381.83;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130112;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130117;EU.6382.82;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Валерий Валерьевич ИВАНКОВИЧ;RU;M;;;130120;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130117;EU.6382.82;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Валерый Валер'евіч ІВАНКОВІЧ;BE;M;;;130121;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130117;EU.6382.82;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Valery Valerevich IVANKOVICH;;M;;;130122;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130117;EU.6382.82;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Valeri Valerevich IVANKOVICH;;M;;"General Director of OJSC ""MAZ""";130123;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130117;EU.6382.82;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Valerij Valerjevitj IVANKOVITJ;SV;M;;;130720;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130117;EU.6382.82;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Valeryj Valerjevitj IVANKOVITJ;SV;M;;;130721;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130117;EU.6382.82;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971;;;NO;GREGORIAN;;;;Novopolotsk;BY;BELARUS;130118;EN;Belarusian SSR (Now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130117;EU.6382.82;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130119;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130124;EU.6383.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Александр Евгеньевич ШАТРОВ;RU;M;;;130128;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130124;EU.6383.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Аляксандр Яўгенавіч ШАТРОЎ;BE;M;;;130129;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130124;EU.6383.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Alexander Evgenevich SHATROV;;M;;;130130;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130124;EU.6383.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aliaksandr Yauhenavich SHATROU;;M;;Businessman, shareholder and former head of Synesis LLC;130131;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130124;EU.6383.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Alexandr Evgenevich SHATROV;;M;;;130388;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130124;EU.6383.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aleksandr Jevgenjevitj SJATROV;SV;M;;;130722;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130124;EU.6383.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aljaksandr Jauhenavitj SJATROU;SV;M;;;130723;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130124;EU.6383.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-11-09;9;11;1978;;;NO;GREGORIAN;;;;;RU;RUSSIAN FEDERATION;130125;EN;former USSR (now Russian Federation);amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130124;EU.6383.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3091178A002VF5 (other-Other identification number) (Personal ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;135447;EN;Personal ID;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;; +28/10/2022;130124;EU.6383.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;130126;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130124;EU.6383.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130127;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130132;EU.6384.80;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Сергей Семёнович ТЕТЕРИН;RU;M;;;130135;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130132;EU.6384.80;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Cяргей Сямёнавіч ЦЯЦЕРЫН;BE;M;;;130136;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130132;EU.6384.80;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Sergei Semionovich TETERIN;;M;;;130137;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130132;EU.6384.80;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Siarhei Siamionavich TSIATSERYN;;M;;Businessman, owner of BelGlobalStart, co-owner of VIBEL, former Chairman of the Belarusian Tennis Federation;130138;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130132;EU.6384.80;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Sergej Semjonovitj TETERIN;SV;M;;;130724;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130132;EU.6384.80;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Siarhej Siamjonavitj TSIATSERYN;SV;M;;;130725;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130132;EU.6384.80;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-01-07;7;1;1961;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;130133;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130132;EU.6384.80;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130134;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130139;EU.6385.79;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Микаи́л Сафарбе́кович ГУЦЕРИ́ЕВ;RU;M;;;130142;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130139;EU.6385.79;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Mikhail Safarbekovich GUTSERIEV;;M;;Businessman, shareholder and chairman of the board of executives of Safmar and Slavkali companies;130143;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130139;EU.6385.79;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Михаил Сафарбе́кович ГУЦЕРИ́ЕВ;RU;M;;;130253;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130139;EU.6385.79;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Michail Safarbekovitj GUTSERIJEV;SV;M;;;130726;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130139;EU.6385.79;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Mikail Safarbekovitj GUTSERIJEV;SV;M;;;130727;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130139;EU.6385.79;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-05-09;9;5;1958;;;NO;GREGORIAN;;;;Akmolinsk;KZ;KAZAKHSTAN;130140;EN;former \nUSSR (now Kazakhstan);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130139;EU.6385.79;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;130141;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130144;EU.6386.78;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aлексей Иванович ОЛЕКСИН;RU;M;;;130146;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130144;EU.6386.78;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aляксей Іванавіч АЛЕКСІН;BE;M;;;130147;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130144;EU.6386.78;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Alexei Ivanovich OLEKSIN;;M;;;130148;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130144;EU.6386.78;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aliaksey Ivanavich ALEKSIN;;M;;Businessman, Co-owner of Bremino Group;130149;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130144;EU.6386.78;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksej Ivanovitj OLEKSIN;SV;M;;;130728;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130144;EU.6386.78;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aljaksej Ivanavitj ALEKSIN;SV;M;;;130729;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130144;EU.6386.78;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130145;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130150;EU.6387.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Александр Николаевич ЗАЙЦЕВ;RU;M;;;130153;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130150;EU.6387.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aляксандр Мікалаевіч ЗАЙЦАЎ;BE;M;;;130154;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130150;EU.6387.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Alexander Nikolaevich ZAITSEV;;M;;;130155;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130150;EU.6387.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aliaksandr Mikalaevich ZAITSAU;;M;;Businessman, co-owner of \nBremino Group and Sohra \nGroup;130156;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130150;EU.6387.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Alexandr Nikolaevich ZAITSEV;;M;;;130583;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130150;EU.6387.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aleksandr Nikolajevitj ZAJTSEV;SV;M;;;130730;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130150;EU.6387.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Aljaksandr Mikalajevitj ZAJTSAU;SV;M;;;130731;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130150;EU.6387.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-11-22;22;11;1976;;;NO;GREGORIAN;;Brest Region/Oblast;;Ruzhany;BY;BELARUS;130151;EN;former USSR (now \nBelarus);amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130150;EU.6387.77;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130152;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130157;EU.6388.76;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Иван Брониславович МЫСЛИЦКИЙ;RU;M;;;130160;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130157;EU.6388.76;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Iван Браніслававіч МЫСЛІЦКІ;BE;M;;;130161;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130157;EU.6388.76;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Ivan Bronislavovich MYSLITSKIY;;M;;;130162;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130157;EU.6388.76;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Ivan Branislavavich MYSLITSKI;;M;;First Deputy Head of the Penal Correction Department of the Ministry of Internal Affairs;130163;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130157;EU.6388.76;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Ivan Bronislavovitj MYSLITSKIJ;SV;M;;;130732;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130157;EU.6388.76;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Ivan Branislavavitj MYSLITSKI;SV;M;;;130733;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130157;EU.6388.76;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-10-23;23;10;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;130158;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130157;EU.6388.76;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130159;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130188;EU.6392.51;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Владислав Алексеевич МАНДРИК;RU;M;;;130193;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130188;EU.6392.51;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Уладзіслаў Аляксеевіч МАНДРЫК;BE;M;;;130194;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130188;EU.6392.51;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Vladislav Alekseevich MANDRIK;;M;;;130195;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130188;EU.6392.51;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Uladzislau Aliakseevich MANDRYK;;M;;Deputy Head of the Penal Correction Department of the Ministry of Internal Affairs;130196;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130188;EU.6392.51;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Vladislav Aleksejevitj MANDRIK;SV;M;;;130736;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130188;EU.6392.51;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Uladzislau Aljaksejevitj MANDRYK;SV;M;;;130737;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130188;EU.6392.51;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-07-04;4;7;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;130189;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130188;EU.6392.51;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"MP3810311 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;130191;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130188;EU.6392.51;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3040771A125PB2 (id-National identification card) (National ID);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;130192;EN;National ID;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130188;EU.6392.51;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130190;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130197;EU.6393.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Александр Геннадьевич БАХАНОВИЧ;RU;M;;;130200;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130197;EU.6393.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Аляксандр Генадзевіч БАХАНОВІЧ;BE;M;;;130201;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130197;EU.6393.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksandr Gennadevich BAKHANOVICH;;M;;;130202;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130197;EU.6393.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aliaksandr Henadzevich BAKHANOVICH;;M;;Rector of the Brest State Technical University;130203;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130197;EU.6393.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksandr Gennadjevitj BACHANOVITJ;SV;M;;;130708;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130197;EU.6393.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aljaksandr Henadzevitj BACHANOVITJ;SV;M;;;130709;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130197;EU.6393.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;130198;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130197;EU.6393.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130199;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130204;EU.6394.49;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Кирилл Станиславович КИСЛОВ;RU;M;;;130207;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130204;EU.6394.49;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Кірыл Станіслававіч КІСЛОЎ;BE;M;;;130208;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130204;EU.6394.49;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Kirill Stanislavovich KISLOV;;M;;;130209;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130204;EU.6394.49;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Kiryl Stanislavavich KISLOU;;M;;Head of the Zavodsky \nDistrict Police Department \nof Minsk;130210;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130204;EU.6394.49;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Kirill Stanislavovitj KISLOV;SV;M;;;130780;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130204;EU.6394.49;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Kiryl Stanislavavitj KISLOU;SV;M;;;130781;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130204;EU.6394.49;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-01-02;2;1;1979;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;130205;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130204;EU.6394.49;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130206;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130211;EU.6395.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Виталий Витальевич КАПИЛЕВИЧ;RU;M;;;130214;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130211;EU.6395.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Віталь Вітальевіч КАПІЛЕВІЧ;BE;M;;;130215;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130211;EU.6395.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Vitaliy Vitalevich KAPILEVICH;;M;;;130216;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130211;EU.6395.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Vital Vitalevich KAPILEVICH;;M;;Head of the Leninsky \nDistrict Police Department \nof Minsk;130217;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130211;EU.6395.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Vitalij Vitaljevitj KAPILEVITJ;SV;M;;;130778;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130211;EU.6395.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Vital Vitaljevitj KAPILEVITJ;SV;M;;;130779;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130211;EU.6395.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-11-26;26;11;1988;;;NO;GREGORIAN;;;;;00;UNKNOWN;130212;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130211;EU.6395.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130213;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130218;EU.6396.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Дмитрий Евгеньевич БУРДЮК;RU;M;;;130221;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130218;EU.6396.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Дзмітрый Яўгеньевіч БУРДЗЮК;BE;M;;;130222;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130218;EU.6396.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Dmitry Evgenevich BURDIUK;;M;;;130223;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130218;EU.6396.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Dzmitry Iauhenevich BURDZIUK;;M;;Head of the Oktyabrsky \nDistrict Police \nDepartment, Former Head \nof the Partizanski District \nPolice Department of \nMinsk;130224;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130218;EU.6396.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Dmitrij Jevgenjevitj BURDIUK;SV;M;;;130776;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130218;EU.6396.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Dzmitryj Jauhenjevitj BURDZIUK;SV;M;;;130777;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130218;EU.6396.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-01-31;31;1;1980;;;NO;GREGORIAN;;Brest region;;;BY;BELARUS;130219;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130218;EU.6396.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"MP3567896 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;130587;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130218;EU.6396.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3310180C009PB7 (other-Other identification number) (Personal identification);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;130588;EN;Personal identification;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130218;EU.6396.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130220;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130225;EU.6397.46;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Александр Михайлович РИДЕЦКИЙ;RU;M;;;130228;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130225;EU.6397.46;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Аляксандр Міхайлавіч РЫДЗЕЦКІ;BE;M;;;130229;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130225;EU.6397.46;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksandr Mikhailovich RIDETSKIY;;M;;;130230;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130225;EU.6397.46;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aliaksandr Mikhailavich RYDZETSKI;;M;;Former Head of the \nOktyabrskiy District Police \nDepartment of Minsk, \nHead of the Directorate of \ninternal security of the \nState Forensic \nExamination Committee;130231;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130225;EU.6397.46;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksandr Michajlovitj RIDETSKIJ;SV;M;;;130774;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130225;EU.6397.46;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aljaksandr Michajlavitj RYDZETSKI;SV;M;;;130775;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130225;EU.6397.46;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-08-14;14;8;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;130226;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130225;EU.6397.46;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130227;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130232;EU.6398.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Сергей Петрович АРТЁМЕНКО;RU;M;;;130235;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130232;EU.6398.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Сяргей Пятровіч АРЦЁМЕНКА;BE;M;;;130236;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130232;EU.6398.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Sergei Petrovich ARTEMENKO;;M;;;130237;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130232;EU.6398.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Siarhei Piatrovich ARTSIOMENKA;;M;;Deputy Head of the Pervomaisky Police \nDistrict in Minsk;130238;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130232;EU.6398.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Sergei Petrovich ARTIOMENKO;;M;;;130586;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130232;EU.6398.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Sergej Petrovitj ARTIOMENKO;SV;M;;;130772;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130232;EU.6398.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Siarhej Pjatrovitj ARTSIOMENKA;SV;M;;;130773;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130232;EU.6398.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-03-26;26;3;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;130233;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130232;EU.6398.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130234;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130239;EU.6399.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Сергей Владимирович УШАКОВ;RU;M;;;130242;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130239;EU.6399.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Сяргей Уладзіміравіч УШАКОЎ;BE;M;;;130243;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130239;EU.6399.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Sergei Vladimirovich USHAKOV;;M;;;130244;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130239;EU.6399.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Siarhei Uladzimiravich USHAKOU;;M;;Deputy Head of the \nFrunzensky District Police Department of Minsk;130245;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130239;EU.6399.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Sergej Vladimirovitj USJAKOV;SV;M;;;130770;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130239;EU.6399.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Siarhej Uladzimiravitj USJAKOU;SV;M;;;130771;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130239;EU.6399.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-08-22;22;8;1980;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;130240;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130239;EU.6399.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130241;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130246;EU.6400.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Александр Александрович ЗАХВИЦЕВИЧ;RU;M;;;130249;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130246;EU.6400.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Аляксандр Аляксандравіч ЗАХВІЦЭВІЧ;BE;M;;;130250;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130246;EU.6400.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksandr Aleksandrovich ZAKHVITSEVICH;;M;;;130251;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130246;EU.6400.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aliaksandr Aliaksandravich ZAKHVITSEVICH;;M;;Deputy Head of the Frunzensky District Police Department of \nMinsk;130252;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130246;EU.6400.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksandr Aleksandrovitj ZACHVITSEVITJ;SV;M;;;130768;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130246;EU.6400.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aljaksandr Aljaksandravitj ZACHVITSEVITJ;SV;M;;;130769;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130246;EU.6400.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-01-01;1;1;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;130247;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130246;EU.6400.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130248;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130262;EU.6402.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Андрей Сергеевич БАКАЧ;RU;M;;;130265;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130262;EU.6402.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Андрэй Сяргеевіч БАКАЧ;BE;M;;;130266;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130262;EU.6402.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Andrei Sergeevich BAKACH;;M;;;130267;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130262;EU.6402.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Andrei Siarheevich BAKACH;;M;;"Former Head of the Pervomaysky District Police Department of Minsk; First Deputy Head of the Internal Affairs Directorate of the Grodno/Hrodna Regional Executive Committee";130268;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130262;EU.6402.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Andrej Sergejevitj BAKATJ;SV;M;;;130764;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130262;EU.6402.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Andrej Siarhejevitj BAKATJ;SV;M;;;130765;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130262;EU.6402.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-11-19;19;11;1983;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;130263;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130262;EU.6402.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130264;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130269;EU.6403.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Константин Фёдорович БЫЧЕК;RU;M;;;130272;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130269;EU.6403.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Канстанцін Фёдаравіч БЫЧАК;BE;M;;;130273;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130269;EU.6403.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Konstantin Fedorovich BYCHEK;;M;;;130274;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130269;EU.6403.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Kanstantsin Fiodaravich BYCHAK;;M;;Head of Division of \nthe KGB Investigation Department;130275;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130269;EU.6403.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Konstantin Fjodorovitj BYTJEK;SV;M;;;130762;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130269;EU.6403.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Kanstantsin Fjodaravitj BYTJAK;SV;M;;;130763;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130269;EU.6403.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-09-20;20;9;1985;;;NO;GREGORIAN;;;;;00;UNKNOWN;130270;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130269;EU.6403.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130271;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130284;EU.6405.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Андрей Николаевич ДАЙЛИДА;RU;M;;;130288;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130284;EU.6405.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Андрэй Мікалаевіч ДАЙЛІДА;BE;M;;;130289;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130284;EU.6405.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Andrei Nikolaevich DAILIDA;;M;;;130290;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130284;EU.6405.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Andrei Mikalaevich DAILIDA;;M;;Deputy Head of the Penal Correction Department of the Ministry of Internal Affairs;130291;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130284;EU.6405.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Andrej Nikolajevitj DAJLIDA;SV;M;;;130738;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130284;EU.6405.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Andrej Mikalajevitj DAJLIDA;SV;M;;;130739;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130284;EU.6405.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-07-01;1;7;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;130285;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130284;EU.6405.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"KH2133825 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;130287;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130284;EU.6405.45;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130286;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130292;EU.6406.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Олег Николаевич ЛАЩИНОВСКИЙ;RU;M;;;130295;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130292;EU.6406.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Алег Мікалаевіч ЛАШЧЫНОЎСКІ;BE;M;;;130296;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130292;EU.6406.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Oleg Nikolaevich LASHCHINOVSKI;;M;;;130297;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130292;EU.6406.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleh Mikalaevich LASHCHYNOUSKI;;M;;Former Deputy Head of the Penal Correction Department of the Ministry of Internal Affairs;130298;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130292;EU.6406.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Oleg Nikolajevitj LASJTJINOVSKIJ;SV;M;;;130740;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130292;EU.6406.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleh Mikalajevitj LASJTJYNOUSKI;SV;M;;;130741;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130292;EU.6406.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-05-12;12;5;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;130293;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130292;EU.6406.44;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130294;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130299;EU.6407.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Жанна Владимировна БАТУРИЦКАЯ;RU;F;;;130302;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130299;EU.6407.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Жана Уладзіміраўна БАТУРЫЦКАЯ;BE;F;;;130303;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130299;EU.6407.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Zhanna Vladimirovna BATURITSKAYA;;F;;;130304;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130299;EU.6407.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Zhana Uladzimirauna BATURYTSKAIA;;F;;Head of the Directorate of \nSentence Enforcement of \nthe Penal Correction \nDepartment of the \nMinistry of Internal \nAffairs;130305;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130299;EU.6407.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Zjanna Vladimirovna BATURITSKAJA;SV;F;;;130742;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130299;EU.6407.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Zjana Uladzimirauna BATURYTSKAJA;SV;F;;;130743;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130299;EU.6407.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-04-20;20;4;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;130300;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130299;EU.6407.43;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130301;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130306;EU.6408.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Дмитрий Николаевич СТРЕБКОВ;RU;M;;;130309;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130306;EU.6408.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Дзмітрый Мікалаевіч СТРЭБКОЎ;BE;M;;;130310;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130306;EU.6408.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Dmitry Nikolaevich STREBKOV;;M;;;130311;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130306;EU.6408.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Dzmitry Mikalaevich STREBKOU;;M;;Head of the Prison No.8 in Zhodino;130312;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130306;EU.6408.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Dmitrij Nikolajevitj STREBKOV;SV;M;;;130744;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130306;EU.6408.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Dzmitryj Mikalajevitj STREBKOU;SV;M;;;130745;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130306;EU.6408.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-03-19;19;3;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;130307;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130306;EU.6408.42;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130308;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130313;EU.6409.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Yauhen Andreevich SHAPETSKA;;M;;Head of Akrestina isolation center for offenders;130316;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130313;EU.6409.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Evgeniy Andreevich SHAPETKO;;M;;;130317;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130313;EU.6409.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Яўген Андрэевіч ШАПЕЦЬКА;BE;M;;;130318;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130313;EU.6409.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Евгений Андреевич ШАПЕТЬКО;RU;M;;;130319;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130313;EU.6409.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Jevgenij Andrejevitj SJAPETKO;SV;M;;;130746;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130313;EU.6409.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Jauhen Andrejevitj SJAPETSKA;SV;M;;;130747;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130313;EU.6409.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989-03-30;30;3;1989;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;130314;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130313;EU.6409.41;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130315;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130320;EU.6410.19;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Игорь Григорьевич КЕНЮХ;RU;M;;;130323;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130320;EU.6410.19;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Iгар Рыгоравіч КЕНЮХ;BE;M;;;130324;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130320;EU.6410.19;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Igor Grigorevich KENIUKH;;M;;;130325;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130320;EU.6410.19;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Ihar Ryhoravich KENIUKH;;M;;Head of Akrestina Temporary Detention Center;130326;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130320;EU.6410.19;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Igor Grigorjevitj KENJUCH;SV;M;;;130748;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130320;EU.6410.19;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Ihar Ryhoravitj KENJUCH;SV;M;;;130749;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130320;EU.6410.19;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-01-21;21;1;1980;;;NO;GREGORIAN;;Gomel Region/ Oblast;;;BY;BELARUS;130321;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130320;EU.6410.19;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130322;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130327;EU.6411.18;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Глеб Владимирович ДРИЛЬ;RU;M;;;130330;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130327;EU.6411.18;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Глеб Уладзіміравіч ДРЫЛЬ;BE;M;;;130331;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130327;EU.6411.18;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Gleb Vladimirovich DRIL;;M;;;130332;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130327;EU.6411.18;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Hleb Uladzimiravich DRYL;;M;;Deputy Head of the \nAkrestina Temporary \nDetention Centre;130333;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130327;EU.6411.18;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Gleb Vladimirovitj DRIL;SV;M;;;130750;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130327;EU.6411.18;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Hleb Uladzimiravitj DRYL;SV;M;;;130751;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130327;EU.6411.18;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-05-12;12;5;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;130328;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130327;EU.6411.18;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130329;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130334;EU.6412.17;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Владимир Иосифович ЛАПЫРЬ;RU;M;;;130337;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130334;EU.6412.17;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Уладзімір Іосіфавіч ЛАПЫР;BE;M;;;130338;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130334;EU.6412.17;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Vladimir Yosifovich LAPYR;;M;;;130339;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130334;EU.6412.17;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Uladzimir Iosifavich LAPYR;;M;;Deputy Head of the \nAkrestina Temporary \nDetention Centre;130340;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130334;EU.6412.17;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Vladimir Iosifovitj LAPYR;SV;M;;;130752;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130334;EU.6412.17;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Uladzimir Iosifavitj LAPYR;SV;M;;;130753;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130334;EU.6412.17;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-08-21;21;8;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;130335;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130334;EU.6412.17;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130336;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130341;EU.6413.16;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Александр Владимирович ВАСИЛЮК;RU;M;;;130344;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130341;EU.6413.16;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Аляксандр Уладзіміравіч ВАСІЛЮК;BE;M;;;130345;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130341;EU.6413.16;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Alexander Vladimirovich VASILIUK;;M;;;130346;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130341;EU.6413.16;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aliaksandr Uladzimiravich VASILIUK;;M;;Head of the Investigation team of the Investigative Committee;130347;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130341;EU.6413.16;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Alexandr Vladimirovich VASILIUK;;M;;;130584;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130341;EU.6413.16;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksandr Vladimirovitj VASILJUK;SV;M;;;130754;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130341;EU.6413.16;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aljaksandr Uladzimiravitj VASILJUK;SV;M;;;130755;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130341;EU.6413.16;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-05-08;8;5;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;130342;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130341;EU.6413.16;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130343;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130348;EU.6414.15;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Eвгений Анатольевич АРХИРЕЕВ;RU;M;;;130351;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130348;EU.6414.15;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Яўген Анатольевіч АРХІРЭЕЎ;BE;M;;;130352;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130348;EU.6414.15;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Evgeniy Anatolevich ARKHIREEV;;M;;;130353;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130348;EU.6414.15;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Yauhen Anatolevich ARKHIREEU;;M;;Head of the Main Investigation Department, Central Office of Investigative Committee;130354;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130348;EU.6414.15;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Jevgenij Anatoljevitj ARCHIREJEV;SV;M;;;130756;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130348;EU.6414.15;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Jauhen Anatoljevitj ARCHIREJEU;SV;M;;;130757;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130348;EU.6414.15;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-07-01;1;7;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;130349;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130348;EU.6414.15;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130350;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130355;EU.6415.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Алексей Игоревич КОВРИЖКИН;RU;M;;;130358;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130355;EU.6415.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Аляксей Ігаравіч КАЎРЫЖКІН;BE;M;;;130359;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130355;EU.6415.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Alexey Igorovich KOVRYZHKIN;;M;;;130360;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130355;EU.6415.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aliaksei Iharavich KAURYZHKIN;;M;;Head of Investigation Team, Main Investigation Department, Investigative Committee;130361;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130355;EU.6415.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksej Igorevitj KOVRIZJKIN;SV;M;;;130758;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130355;EU.6415.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aljaksej Iharavitj KAURYZJKIN;SV;M;;;130759;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130355;EU.6415.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-11-03;3;11;1981;;;NO;GREGORIAN;;;;Bobruisk;BY;BELARUS;130356;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130355;EU.6415.14;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130357;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130362;EU.6416.13;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Александр Дмитриевич АГАФОНОВ;RU;M;;;130365;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130362;EU.6416.13;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Аляксандр Дзмітрыевіч АГАФОНАЎ;BE;M;;;130366;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130362;EU.6416.13;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Alexander Dmitrievich AGAFONOV;;M;;;130367;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130362;EU.6416.13;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aliaksandr Dzmitryevich AHAFONAU;;M;;First Deputy Head of the \nMain Investigation \nDepartment, Investigative \nCommittee;130368;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130362;EU.6416.13;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Alexandr Dmitrievich AGAFONOV;;M;;;130585;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130362;EU.6416.13;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksandr Dmitrijevitj AGAFONOV;SV;M;;;130760;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130362;EU.6416.13;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aljaksandr Dzmitryjevitj AHAFONAU;SV;M;;;130761;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130362;EU.6416.13;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-03-13;13;3;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;130363;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130362;EU.6416.13;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130364;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130369;EU.6417.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Сергей Иванович СКРИБА;RU;M;;;130374;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130369;EU.6417.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Сяргей Іванавіч СКРЫБА;BE;M;;;130375;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130369;EU.6417.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Sergei Ivanovich SKRIBA;;M;;;130376;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130369;EU.6417.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Siarhei Ivanavich SKRYBA;;M;;Vice Chancellor of the Belarusian State Economic University for Educational Work;130377;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130369;EU.6417.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Sergej Ivanovitj SKRIBA;SV;M;;;130704;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130369;EU.6417.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Siarhej Ivanavitj SKRYBA;SV;M;;;130705;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130369;EU.6417.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;NO;EMAIL[skriba_s@bseu.by];00;UNKNOWN;130370;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130369;EU.6417.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-11-21;21;11;1965;;;NO;GREGORIAN;;Minsk Region;;Kletsk;BY;BELARUS;130371;EN;former USSR \n(now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130369;EU.6417.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-11-21;21;11;1964;;;NO;GREGORIAN;;Minsk Region;;Kletsk;BY;BELARUS;130372;EN;former USSR \n(now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130369;EU.6417.12;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130373;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130392;EU.6431.53;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;Soe Htut;;M;Lieutenant General;Member of the Myanmar Armed Forces (Tatmadaw), member of the State Administrative Council (SAC) led by Commander-in-Chief Min Aung Hlaing. Appointed Minister for Home Affairs on 1 February 2021.;130395;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130392;EU.6431.53;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-03-29;29;3;1960;;;NO;GREGORIAN;;;;Mandalay;MM;MYANMAR;130393;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130392;EU.6431.53;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;130394;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN +28/10/2022;130402;EU.6433.51;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;U Win Shein;;M;;;130408;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130402;EU.6433.51;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;Win Shein;;M;;Minister for Planning, Finance, and Industry in the Union Government, appointed by Commander-in-Chief Min Aung Hlaing on 1 February \n2021.;130409;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130402;EU.6433.51;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-07-31;31;7;1957;;;NO;GREGORIAN;;;;Mandalay;MM;MYANMAR;130404;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130402;EU.6433.51;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12DAGANA011336 (id-National identification card) (National ID);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;130406;EN;National ID;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;; +28/10/2022;130402;EU.6433.51;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DM001478 (passport-National passport) (on 2012-09-10 valid to 2022-09-09);NO;NO;NO;NO;NO;;2012-09-10;;2022-09-09;;;passport;National passport;;MM;;130407;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;; +28/10/2022;130402;EU.6433.51;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;130405;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN +28/10/2022;130410;EU.6434.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;U Khin Maung Yi;;M;;;130413;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130410;EU.6434.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Khin Maung Yee;;M;;;130414;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130410;EU.6434.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Khin Maung Yi;;M;Colonel;Minister for Natural Resources and Environmental Conservation (MONREC) appointed on 2 February 2021 by the State Administrative Council (SAC) led by Commander-in-Chief Min Aung Hlaing. He was Permanent Secretary in this department under the democratically elected government.;130415;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130410;EU.6434.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-02-15;15;2;1965;;;NO;GREGORIAN;;;;Rangoon;MM;MYANMAR;130411;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130410;EU.6434.50;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;130412;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN +28/10/2022;130416;EU.6435.49;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Tin Aung San;;M;Admiral;Commander-in-Chief of the \nMyanmar Navy and serves as the Minister of Transport and Communication, appointed on 3 February 2021 by the State Administrative Council (SAC), led by \nCommander-in-Chief Min Aung Hlaing.\n He is also member of the State Administration Council (SAC).;130420;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130416;EU.6435.49;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-10-16;16;10;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;130417;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130416;EU.6435.49;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12/La Ma Na (N) 089 489 (id-National identification card) (National ID);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;130419;EN;National ID;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;; +28/10/2022;130416;EU.6435.49;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;130418;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN +28/10/2022;130421;EU.6436.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Thida Oo;;F;;Attorney-General of the Union of \nMyanmar since 2 February 2021, when she was appointed by the Commander-in-Chief of the Myanmar Armed Forces (Tatmadaw) Min Aung Hlaing. She is a member of the Myanmar Investment Commission (MIC).;130423;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130421;EU.6436.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Daw Thida Oo;;F;;;130446;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130421;EU.6436.48;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;130422;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN +28/10/2022;130424;EU.6437.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Aung Lin Tun;;M;Major General;Member of the Myanmar Armed Forces (Tatmadaw) and serves as Deputy Minister of Defense, appointed on 11 May 2021 by the State \nAdministrative Council (SAC), led by Commander-in-Chief Min Aung Hlain.;130426;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130424;EU.6437.47;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;130425;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN +28/10/2022;130427;EU.6438.46;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Zaw Min Tun;;M;Brigadier-General;Press Team Leader of the State Administrative Council appointed on 5 February 2021 and the Deputy Minister for Information appointed on 7 February 2021 by the State Administrative Council (SAC) led by \nCommander-in-Chief Min Aung Hlaing. He was the former Head of the Tatmadaw’s True News Information Team.;130430;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130427;EU.6438.46;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Yenanchaung;MM;MYANMAR;130428;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130427;EU.6438.46;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;130429;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN +28/10/2022;130431;EU.6439.45;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Myanmar Gems Enterprise;;;;;130433;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130431;EU.6439.45;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Myanma Gems Enterprise;;;;;130434;EN;Type of entity: \nState-owned \nenterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130431;EU.6439.45;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;Naypyitaw;NO.70- 072, Yarza, Thingaha Road, Thapyaygone Ward, Zabuthiri Township;;;;;NO;WEB[http://www.mge.gov.mm/]\n(Place of \nregistration: \nMyanmar);MM;MYANMAR;130432;EN;Place of \nregistration: \nMyanmar;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130435;EU.6440.23;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Myanmar Timber Enterprise;;;;;130438;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130435;EU.6440.23;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Myanma Timber Enterprise;;;;;130439;EN;Type of entity: \nState-owned \nenterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130435;EU.6440.23;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;Yangon;No 72/74 Shawe Dagon Pagoda Road, Dagon Township;;;;;NO;(Branch office);MM;MYANMAR;130436;EN;Branch office;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130435;EU.6440.23;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;Yangin;Gyogone Forest Compound, Bayint Naung Road, Insein Township;;;;;NO;"WEB[http://www.mte.com.mm/index.php/en]\nPHONE[01-3528789 ]\n(Head office; Place of \nregistration: \nMyanmar)";MM;MYANMAR;130437;EN;"Head office; Place of \nregistration: \nMyanmar";amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130440;EU.6441.22;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Forest Products Joint Venture Corporation Limited;;;;;130442;EN;Type of entity: Joint Venture;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130440;EU.6441.22;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;422/426(Rm 2), 2nd Flr, Strand Rd., Corner of Botahtaung Pagoda St., FJVC Center, Ward (4), BTHG;;;;;NO;"PHONE[ 01-9010742; 01-9010744; 09-443250050]\nEMAIL[fjv.md@gmail.com]\n(Place of \nregistration: \nMyanmar)";00;UNKNOWN;130441;EN;Place of \nregistration: \nMyanmar;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130480;EU.6451.88;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Виктор Геннадиевич ХРЕНИН;RU;M;;;130484;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130480;EU.6451.88;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Віктар Генадзевіч ХРЭНІН;BE;M;;;130485;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130480;EU.6451.88;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Viktor Gennadievich KHRENIN;;M;;;130486;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130480;EU.6451.88;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Viktar Genadzevich KHRENIN;;M;Lieutanant General;Minister of Defense;130487;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130480;EU.6451.88;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Viktor Gennadijevitj CHRENIN;SV;M;;;130796;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130480;EU.6451.88;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Viktar Henadzevitj CHRENIN;SV;M;;;130797;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130480;EU.6451.88;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-08-01;1;8;1971;;;NO;GREGORIAN;;;;Navahrudak/ Novogrudek;BY;BELARUS;130481;EN;former \nUSSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130480;EU.6451.88;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"KH2594621 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;BY;;130483;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130480;EU.6451.88;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3010871K003PB1 (other-Other identification number) (Personal identification);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;130563;EN;Personal identification;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130480;EU.6451.88;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130482;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130488;EU.6452.87;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Игорь Владимирович ГОЛУБ;RU;M;;;130491;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130488;EU.6452.87;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Ігар Уладзіміравіч ГОЛУБ;BE;M;;;130492;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130488;EU.6452.87;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Igor Vladimirovich GOLUB;;M;;;130493;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130488;EU.6452.87;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Ihar Uladzimiravich HOLUB;;M;Major General;Commander of the Air \nForce and Air Defence of \nthe Armed Forces;130494;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130488;EU.6452.87;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Igor Vladimirovitj GOLUB;SV;M;;;130798;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130488;EU.6452.87;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Ihar Uladzimiravitj HOLUB;SV;M;;;130799;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130488;EU.6452.87;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-11-19;19;11;1967;;;NO;GREGORIAN;;Chernigovskaya oblast;;Chernigov;UA;UKRAINE;130489;EN;former USSR (now \nUkraine);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130488;EU.6452.87;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3191167E003PB1 (other-Other identification number) (Personal identification);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;130561;EN;Personal identification;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130488;EU.6452.87;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"KH2187962 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;BY;;130562;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130488;EU.6452.87;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130490;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130495;EU.6453.86;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Андрей Николаевич ГУРЦЕВИЧ;RU;M;;;130498;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130495;EU.6453.86;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Андрэй Мікалаевіч ГУРЦЕВИЧ;BE;M;;;130499;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130495;EU.6453.86;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Andrei Nikolaevich GURTSEVICH;;M;;;130500;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130495;EU.6453.86;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Andrei Mikalaevich GURTSEVICH;;M;Major General;Chief of the Main Staff, \nFirst Deputy Commander \nof the Air Force;130501;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130495;EU.6453.86;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Andrej Nikolajevitj GURTSEVITJ;SV;M;;;130800;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130495;EU.6453.86;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Andrej Mikalajevitj HURTSEVITJ;SV;M;;;130801;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130495;EU.6453.86;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-07-27;27;7;1971;;;NO;GREGORIAN;;Brest Region/ Oblast;;Baranovich;BY;BELARUS;130496;EN;former \nUSSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130495;EU.6453.86;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3270771C016PB2 (other-Other identification number) (Personal identification);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;130559;EN;Personal identification;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130495;EU.6453.86;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"MP3849920 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;BY;;130560;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130495;EU.6453.86;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130497;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130502;EU.6454.85;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Леонид Николаевич ЧУРО;RU;M;;;130507;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130502;EU.6454.85;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Леанід Мікалаевіч ЧУРО;BE;M;;;130508;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130502;EU.6454.85;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Leonid Nikolaevich CHURO;;M;;;130509;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130502;EU.6454.85;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Leanid Mikalaevich CHURO;;M;;Director General of \nBELAERONAVIGATSIA \nState-Owned Enterprise;130510;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130502;EU.6454.85;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Leonid Nikolajevitj TJURO;SV;M;;;130802;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130502;EU.6454.85;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Leanid Mikalajevitj TJURO;SV;M;;;130803;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130502;EU.6454.85;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-07-08;8;7;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;130503;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130502;EU.6454.85;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3080756A068PB5 (other-Other identification number) (Personal identification);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;130505;EN;Personal identification;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130502;EU.6454.85;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"P4289481 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;BY;;130506;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130502;EU.6454.85;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130504;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130511;EU.6455.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Алексей Николаевич АВРАМЕНКО;RU;M;;;130515;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130511;EU.6455.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Аляксей Мікалаевіч АЎРАМЕНКА;BE;M;;;130516;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130511;EU.6455.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Alexey Nikolaevich AVRAMENKO;;M;;;130517;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130511;EU.6455.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aliaksei Mikalaevich AURAMENKA;;M;;Minister of Transport and \nCommunications;130518;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130511;EU.6455.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksej Nikolajevitj AVRAMENKO;SV;M;;;130806;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130511;EU.6455.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aljaksej Mikalajevitj AURAMENKA;SV;M;;;130807;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130511;EU.6455.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-05-11;11;5;1977;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;130512;EN;former \nUSSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130511;EU.6455.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"MP3102183 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;BY;;130514;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130511;EU.6455.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3110577A020PB2 (other-Other identification number) (Personal identification);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;130558;EN;Personal identification;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130511;EU.6455.84;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130513;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130531;EU.6458.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Артем Игоревич СИКОРСКИЙ;RU;M;;;130536;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130531;EU.6458.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Арцём Ігаравіч СІКОРСКІ;BE;M;;;130537;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130531;EU.6458.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Artem Igorevich SIKORSKIY;;M;;;130538;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130531;EU.6458.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Artsiom Igaravich SIKORSKI;;M;;Director of the Aviation \nDepartment of the \nMinistry of Transport and \nCommunications;130539;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130531;EU.6458.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Artiom Igorevitj SIKORSKIJ;SV;M;;;130808;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130531;EU.6458.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Artsiom Iharavitj SIKORSKI;SV;M;;;130809;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130531;EU.6458.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983;;;NO;GREGORIAN;;Minsk Region/ Oblast;;Soligorsk;BY;BELARUS;130532;EN;former \nUSSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130531;EU.6458.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3240483A023PB7 (other-Other identification number) (Personal identification);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;130534;EN;Personal identification;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130531;EU.6458.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"MP3785448 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;BY;;130535;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130531;EU.6458.81;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130533;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130549;EU.6460.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Олег Сергеевич ГАЙДУКЕВИЧ;RU;M;;;130554;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130549;EU.6460.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Алег Сяргеевіч ГАЙДУКЕВІЧ;BE;M;;;130555;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130549;EU.6460.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Oleg Sergeevich GAIDUKEVICH;;M;;;130556;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130549;EU.6460.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleh Siarheevich HAIDUKEVICH;;M;;Deputy Chairman of the \nStanding Committee on \nInternational Affairs in the \nHouse of Representatives \nof the National Assembly, \nmember of the delegation \nof the National Assembly \nfor contacts with the \nParliamentary Assembly of \nthe Council of Europe;130557;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130549;EU.6460.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Oleg Sergejevitj GAJDUKEVITJ;SV;M;;;130810;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130549;EU.6460.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleh Siarhejevitj HAJDUKEVITJ;SV;M;;;130811;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130549;EU.6460.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-03-26;26;3;1977;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;130550;EN;former \nUSSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130549;EU.6460.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3260377A081PB9 (other-Other identification number) (Personal identification);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;130552;EN;Personal identification;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130549;EU.6460.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"MP2663333 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;130553;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;; +28/10/2022;130549;EU.6460.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130551;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;محمد علي الحبو;AR;;;;130856;EN;;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;Habu;;;;;130857;EN;low quality alias;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;Hebbo;;;;;130858;EN;low quality alias;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;Habo;;;;;130859;EN;low quality alias;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;Alhobo;;;;;130860;EN;low quality alias;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;Al-Habu;;;;;130861;EN;low quality alias;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;Al-Hebo;;;;;130862;EN;low quality alias;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;Muhammad Abd-al-Karim;;;;;130863;EN;good quality alias;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;Mohamad Abdulkarim;;;;;130864;EN;good quality alias;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;Mohammad Ali Al Habbo;;;;;130865;EN;Turkey-based facilitator who provides financial services to, or in support of, Islamic State in Iraq and the Levant, listed as Al-Qaeda in Iraq.;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;Raqqa;;;;;;NO;;SY;SYRIAN ARAB REPUBLIC;130846;EN;;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;Gaziantep;;;;;;NO;((since 2016));TR;TURKEY;130847;EN;(since 2016);amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-01-01;1;1;1980;;;NO;GREGORIAN;;;;Raqqa;SY;SYRIAN ARAB REPUBLIC;130848;EN;;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-03-15;15;3;1983;;;NO;GREGORIAN;;;;Raqqa;SY;SYRIAN ARAB REPUBLIC;130849;EN;;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-10-01;1;10;1983;;;NO;GREGORIAN;;;;Raqqa;SY;SYRIAN ARAB REPUBLIC;130850;EN;;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"2020409266 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;SY;;130852;EN;;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"2020316097 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;SY;;130853;EN;;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"10716775 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;SY;;130854;EN;;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"00814L001424 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;SY;;130855;EN;;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;; +28/10/2022;130611;EU.6471.26;QDi.429;2021-06-17;;(UN ID: QDi.429)\n(Date of UN designation: 2021-06-17)\n(UNLI - 17.6.2021);P;person;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;130851;EN;;amendment;commission;2021-06-22;2021-06-22;2021/1016 (OJ L222I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.222.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A222I%3ATOC +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Белаэронавигация Государственное предприятие;RU;;;;130838;EN;;amendment;council;2021-06-21;2021-06-21;2021/999 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.219.01.0055.01.ENG&toc=OJ%3AL%3A2021%3A219I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Белаэронавігация Дзяржаўнае прадпрыемства;BE;;;;130839;EN;;amendment;council;2021-06-21;2021-06-21;2021/999 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.219.01.0055.01.ENG&toc=OJ%3AL%3A2021%3A219I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia State-owned enterprise;;;;;130840;EN;State-owned Enterprise BELAERONAVIGATSIA is responsible for Belarusian air traffic control.;amendment;council;2021-06-21;2021-06-21;2021/999 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.219.01.0055.01.ENG&toc=OJ%3AL%3A2021%3A219I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia statsejet virksomhed;DA;;;;135488;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia státní podnik;CS;;;;135489;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia Empresa estatal;ES;;;;135490;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Държавно предприятие Belaeronavigatsia;BG;;;;135491;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia Κρατική επιχείρηση;EL;;;;135492;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia riigile kuuluv ettevõte;ET;;;;135493;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia staatseigenes Unternehmen;DE;;;;135494;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia Poduzeće u državnom vlasništvu;HR;;;;135495;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia Fiontar faoi úinéireacht stáit;GA;;;;135496;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia Entreprise d’État;FR;;;;135497;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia, valstybės valdoma įmonė;LT;;;;135498;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia Impresa di proprietà dello Stato;IT;;;;135499;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia Empresa pública;PT;;;;135500;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia przedsiębiorstwo państwowe;PL;;;;135501;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia Staatsbedrijf;NL;;;;135502;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia Intrapriża tal-istat;MT;;;;135503;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia Valtion omistama yritys;FI;;;;135504;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia podjetje v državni lasti;SL;;;;135505;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia štátny podnik;SK;;;;135506;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Belaeronavigatsia Întreprindere de stat;RO;;;;135507;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130836;EU.6472.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;19 Korotkevich St.;;220039;;;NO;WEB[http://www.ban.by/]\nPHONE[+375 (17) 215-40-51]\nEMAIL[office@ban.by]\nFAX[+375 (17) 213-41-63]\n(Date of registration: 1996);BY;BELARUS;130837;EN;Date of registration: 1996;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130888;EU.6492.60;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Związek Weteranów Mjanmy;PL;;;;130890;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130888;EU.6492.60;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Mianmaro karo veteranų organizacija;LT;;;;130891;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130888;EU.6492.60;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Organizzazzjoni tal-Veterani tal- Gwerra tal- Myanmar;MT;;;;130892;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130888;EU.6492.60;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Organizacija ratnih veterana Mjanmara;HR;;;;130893;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130888;EU.6492.60;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Myanmari sõjaveteranide organisatsioon;ET;;;;130894;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130888;EU.6492.60;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Organizace myanmarských válečných veteránů;CS;;;;130895;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130888;EU.6492.60;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Организация на ветераните от войната на Мианмар;BG;;;;130896;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130888;EU.6492.60;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Organización de excombatientes de Myanmar;ES;;;;130897;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130888;EU.6492.60;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;Myanmar War Veterans Organization;;;;;130898;EN;Type of entity: Non-Governmental Organization;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130888;EU.6492.60;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;Datkhina Thiri Tsp, Naypyitaw Division;Thukhuma Road;;;;;NO;"WEB[https://www.mwvo.org/Home/About]\nPHONE[(067) 30485 ]\n(Place of registration: Yangon, Myanmar; Date of registration: 1973)";MM;MYANMAR;130889;EN;"Place of registration: Yangon, Myanmar; Date of registration: 1973";amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130928;EU.6512.26;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Мiхаiл Рыгоравiч БАРАЗНА;BE;M;;;130931;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130928;EU.6512.26;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Mихаил Григорьевич БОРОЗНА;RU;M;;;130932;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130928;EU.6512.26;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Michail Grigorjevitj BOROZNA;SV;M;;;130933;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130928;EU.6512.26;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Michail Ryhoravitj BARAZNA;SV;M;;;130934;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130928;EU.6512.26;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Mikhail Grigorevich BOROZNA;;M;;;130935;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130928;EU.6512.26;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Mikhail Ryhoravich BARAZNA;;M;;Rector of the Belarusian State Academy of Arts (BSAA);130936;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130928;EU.6512.26;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-11-20;20;11;1962;;;NO;GREGORIAN;;Mahileu/ Mogiliev Region/ Oblast;;Rakusheva;BY;BELARUS;130929;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130928;EU.6512.26;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130930;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130937;EU.6513.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Bremino Gruppe LLC;DE;;;;130941;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130937;EU.6513.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Bremino-groep LLC;NL;;;;130942;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130937;EU.6513.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"ООО ""Бремино групп”";;;;;130943;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130937;EU.6513.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Bremino Group LLC;;;;;130944;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130937;EU.6513.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Skupina Bremino;SL;;;;135456;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130937;EU.6513.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Grupo Bremino LLC;PT;;;;135457;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130937;EU.6513.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;Bolbasovo village, Zavodskaya 1k, Orsha Region/Oblast;NO;"WEB[http://www.bremino.by]\nEMAIL[office@bremino.by; marketing@bremino.by]";BY;BELARUS;130938;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130937;EU.6513.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;Niamiha 40;;220004;;;NO;"WEB[http://www.bremino.by]\nEMAIL[office@bremino.by; marketing@bremino.by ]";BY;BELARUS;130939;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130937;EU.6513.25;;2021-06-21;;(Date of UN designation: 2021-06-21);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"691598938 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;130940;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;; +28/10/2022;130968;EU.6532.61;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;Htun Htun Naung;;M;;;130971;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130968;EU.6532.61;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;Tun Tun Naing;;M;;;130972;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130968;EU.6532.61;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;Tun Tun Naung;;M;Lieutenant General;Member of the Myanmar Armed Forces (Tatmadaw) and was previously a Commander. He is the Minister of Border Affairs and member of the National Defence and Security Council.;130973;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130968;EU.6532.61;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-04-30;30;4;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;130969;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130968;EU.6532.61;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2022-04-22;2022-04-23;2022/662 (OJ L121);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.121.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A121%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;130970;EN;;amendment;council;2021-06-21;2021-06-21;2021/998 (OJ L219I);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0998&from=EN +28/10/2022;130974;EU.6533.60;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Svjatlana Anatoljeuna LJUBETSKAJA;SV;F;;;130977;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130974;EU.6533.60;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Svetlana Anatoljevna LJUBETSKAJA;SV;F;;;130978;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130974;EU.6533.60;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Святлана Анатольеўна ЛЮБЕЦКАЯ;BE;F;;;130979;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130974;EU.6533.60;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Светлана Анатольевна ЛЮБЕЦКАЯ;RU;F;;;130980;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130974;EU.6533.60;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Svetlana Anatolevna LYUBETSKAYA;;F;;;130981;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130974;EU.6533.60;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Sviatlana Anatoleuna LYUBETSKAYA;;F;;Member of the House of Representatives of the National Assembly of the Republic of Belarus, Chairperson of the Standing Commission on Law;130982;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130974;EU.6533.60;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-06-03;3;6;1971;;;NO;GREGORIAN;;;;;UA;UKRAINE;130975;EN;former USSR (now Ukraine);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130974;EU.6533.60;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130976;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130983;EU.6534.59;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleh Mikalajevitj BELJAKOU;SV;M;;;130985;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130983;EU.6534.59;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Oleg Nikolajevitj BELJAKOV;SV;M;;;130986;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130983;EU.6534.59;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Алег Мікалаевіч БЕЛЯКОЎ;BE;M;;;130987;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130983;EU.6534.59;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Олег Николаевич БЕЛЯКОВ;RU;M;;;130988;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130983;EU.6534.59;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Oleg Nikolaevich BELIAKOV;;M;;;130989;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130983;EU.6534.59;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleh Mikalaevich BELIAKOU;;M;;Deputy Head of the Penal Correction Department of the Ministry of Internal Affairs;130990;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130983;EU.6534.59;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130984;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;130991;EU.6535.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aljaksandr Uladzimiravitj PALULECH;SV;M;;;130994;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130991;EU.6535.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksandr Vladimirovitj POLULECH;SV;M;;;130995;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130991;EU.6535.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Аляксандр Уладзіміравіч ПАЛУЛЕХ;BE;M;;;130996;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130991;EU.6535.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Александр Владимирович ПОЛУЛЕХ;RU;M;;;130997;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130991;EU.6535.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aleksandr Vladimirovich POLULEKH;;M;;;130998;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130991;EU.6535.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Aliaksandr Uladzimiravich PALULEKH;;M;;Head of the Frunzensky District Police Department of Minsk;130999;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130991;EU.6535.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-06-25;25;6;1979;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;130992;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;130991;EU.6535.58;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;130993;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;131000;EU.6536.57;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Siarhej Pjatrovitj RUBNIKOVITJ;SV;M;;;131003;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131000;EU.6536.57;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Sergej Petrovitj RUBNIKOVITJ;SV;M;;;131004;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131000;EU.6536.57;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Cяргей Пятровіч РУБНІКОВІЧ;BE;M;;;131005;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131000;EU.6536.57;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Cергей Петрович РУБНИКОВИЧ;RU;M;;;131006;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131000;EU.6536.57;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Sergei Petrovich RUBNIKOVICH;;M;;;131007;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131000;EU.6536.57;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;Siarhei Piatrovich RUBNIKOVICH;;M;;Rector of the Belarusian State Medical University;131008;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131000;EU.6536.57;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974;;;NO;GREGORIAN;;Vitebsk/ Viciebsk Region/ Oblast;;Sharkauschyna;BY;BELARUS;131001;EN;former USSR (now Belarus);amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131000;EU.6536.57;;2021-06-21;;(Date of UN designation: 2021-06-21);P;person;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;131002;EN;;amendment;council;2021-06-21;2021-06-21;2021/997 (OJ L219I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R0997&from=EN +28/10/2022;131207;EU.6572.34;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;Rosario María MURILLO DE ORTEGA;;F;;;131211;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131207;EU.6572.34;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;Rosario María MURILLO ZAMBRANA;;F;;Vice President of Nicaragua, First Lady of Nicaragua and a leader of the Sandinista Youth. According to President Daniel Ortega, Rosario María Murillo Zambrana shares half of power with him.;131212;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131207;EU.6572.34;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-06-22;22;6;1951;;;NO;GREGORIAN;;;;MANAGUA;NI;NICARAGUA;131208;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131207;EU.6572.34;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"A00000106 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;NI;;131210;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;; +28/10/2022;131207;EU.6572.34;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NI;;131209;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC +28/10/2022;131213;EU.6573.33;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;Gustavo Eduardo PORRAS CORTÉS;;M;;President of the National Assembly of Nicaragua since January 2017 and member of the national direction of the Sandinista National Liberation Front (FSLN) since 1996.;131215;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131213;EU.6573.33;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-10-11;11;10;1954;;;NO;GREGORIAN;;;;MANAGUA;NI;NICARAGUA;131214;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131213;EU.6573.33;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NI;;131248;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC +28/10/2022;131216;EU.6574.32;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;Juan Antonio VALLE VALLE;;M;;As leader in the rank of senior commissioner (second highest rank) of the Nicaraguan National Police (NNP) and in a leading position in the police in Managua, Juan Antonio Valle Valle is responsible for repeated acts of police brutality and the excessive use of force which resulted in the deaths of hundreds of civilians, for arbitrary arrests and detentions, for violations of freedom of expression and for preventing demonstrations against the government.;131218;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131216;EU.6574.32;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-05-04;4;5;1963;;;NO;GREGORIAN;;;;MATAGALPA;NI;NICARAGUA;131217;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131216;EU.6574.32;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NI;;131247;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC +28/10/2022;131219;EU.6575.31;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;Ana Julia GUIDO DE ROMERO;;F;;;131222;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131219;EU.6575.31;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;Ana Julia GUIDO OCHOA;;F;;"Attorney General, the highest civil servant in the Prosecutor’s Office, Ana Julia Guido Ochoa, who is loyal to the Ortega regime, is responsible for the politically motivated prosecution of numerous protesters and members of the political opposition. She created a specialised unit that fabricated allegations against protesters and brought charges against them. She is moreover responsible for the disqualification from public office of the main opposition candidate for the general elections;";131223;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131219;EU.6575.31;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-02-19;19;2;1959;;;NO;GREGORIAN;;;;MATAGALPA;NI;NICARAGUA;131220;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131219;EU.6575.31;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NI;;131221;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC +28/10/2022;131228;EU.6577.29;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;Fidel de Jesús DOMÍNGUEZ ÁLVAREZ;;M;;chief of the police in Leon since 23 August 2018, Fidel de Jesús Domínguez Alvarez is responsible for numerous serious violations of human rights, in particular arbitrary arrests and detention, including the kidnapping of members of a political opponent’s family, the excessive use of force and violations of freedom of expression and freedom of the media.;131231;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131228;EU.6577.29;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-03-21;21;3;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;131229;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131228;EU.6577.29;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NI;;131230;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC +28/10/2022;131232;EU.6578.28;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;Alba Luz RAMOS VANEGAS;;F;;President of the Supreme Court of Justice of Nicaragua, she is responsible for instrumentalisation of the judiciary in favour of the interests of the Ortega regime, through the selective criminalisation of opposition activities, perpetuating the pattern of violations of rights of due process, arbitrary arrests, and the disqualification of political parties and opposition candidates.;131236;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131232;EU.6578.28;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-06-03;3;6;1949;;;NO;GREGORIAN;;;;;00;UNKNOWN;131233;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131232;EU.6578.28;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"A0009864 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;NI;;131235;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;; +28/10/2022;131232;EU.6578.28;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NI;;131234;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC +28/10/2022;131237;EU.6579.27;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;Juan Carlos ORTEGA MURILLO;;;;Director at Canal 8 and Difuso Comunicaciones. Leader of the 4th of May Sandinista Movement. He has contributed to restricting freedom of expression and freedom of the media.;131240;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131237;EU.6579.27;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-10-17;17;10;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;131238;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131237;EU.6579.27;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NI;;131239;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC +28/10/2022;131241;EU.6580.5;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;Bayardo ARCE CASTAÑO;;M;;Economic Advisor to the President of the Republic of Nicaragua. He is therefore associated with persons responsible for serious violations of human rights in Nicaragua.;131244;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131241;EU.6580.5;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-03-21;21;3;1950;;;NO;GREGORIAN;;;;;00;UNKNOWN;131242;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131241;EU.6580.5;;2021-08-02;;(Date of UN designation: 2021-08-02);P;person;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NI;;131243;EN;;amendment;council;2021-08-02;2021-08-02;2021/1276 (OJ L277);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.277.01.0012.01.ENG&toc=OJ%3AL%3A2021%3A277I%3ATOC +28/10/2022;131559;EU.6632.70;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Михаил Николаевич Белоусов;;M;;;131564;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131559;EU.6632.70;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Mikhail Nikolaevich BELOUSOV;;M;;Judge in the Kievskiy District Court in Simferopol.;131565;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131559;EU.6632.70;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Michail Nikolajewitsch BELUSOW;DE;M;;;131622;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131559;EU.6632.70;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Michail Nikolajevitj Belousov;SV;M;;;131623;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131559;EU.6632.70;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Michaił Nikołajewicz BIEŁOUSOW;PL;M;;;131624;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131559;EU.6632.70;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;Simferopol;117 Balaklavs'ka St, App 48;;;Crimea;;NO;;UA;UKRAINE;131560;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131559;EU.6632.70;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-11-26;26;11;1964;;;NO;GREGORIAN;;;;;RU;RUSSIAN FEDERATION;131561;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131559;EU.6632.70;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;131562;EN;(the Union does not recognise passports issued by the Russian Federation in Crimea);amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC +28/10/2022;131559;EU.6632.70;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;131563;EN;(the Union does not recognise passports issued by the Russian Federation in Crimea);amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC +28/10/2022;131566;EU.6633.69;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Андрей Николаевич Долгополов;;M;;;131571;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131566;EU.6633.69;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Andrey Nikolaevich DOLGOPOLOV;;M;;Chairman of the Kievskiy \nDistrict Court in Simferopol.;131572;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131566;EU.6633.69;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Andrej Nikolajewitsch DOLGOPOLOW;DE;M;;;131625;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131566;EU.6633.69;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Andrej Nikolajevitj Dolgopolov;SV;M;;;131626;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131566;EU.6633.69;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Andriej Nikołajewicz DOŁGOPOŁOW;PL;M;;;131627;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131566;EU.6633.69;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;Simferopol;82 Peremohy Ave, App. 343;;;Crimea;;NO;;UA;UKRAINE;131567;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131566;EU.6633.69;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-02-15;15;2;1959;;;NO;GREGORIAN;;;;;KG;KYRGYZSTAN;131568;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131566;EU.6633.69;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;131569;EN;(the Union does not recognise passports issued by the Russian Federation in Crimea);amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC +28/10/2022;131566;EU.6633.69;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;131570;EN;(the Union does not recognise passports issued by the Russian Federation in Crimea);amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC +28/10/2022;131573;EU.6634.68;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Евгений Сергеевич КОЛПИКОВ;;M;;;131578;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131573;EU.6634.68;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Yevgeniy Sergeevich KOLPIKOV;;M;;Prosecutor of the Military Prosecutor’s Office of the Southern Military District of the Russian Federation in Rostov-on-Don.;131579;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131573;EU.6634.68;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Jewgeni Sergejewitsch KOLPIKOW;DE;M;;;131628;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131573;EU.6634.68;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Jevgenij Sergejevitj Kolpikov;SV;M;;;131629;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131573;EU.6634.68;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Jewgienij Siergiejewicz KOŁPIKOW;PL;M;;;131630;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131573;EU.6634.68;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;Rostov;Military Prosecutor's Office of the Southern Military District of the Russian Federation. Pushkinskaya Ulitsa, 72А;;344022;Rostov Oblast;;NO;PHONE[(+7) 8 863 263-04-67, (+7) 8 863 282-79-68];RU;RUSSIAN FEDERATION;131574;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131573;EU.6634.68;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-05-06;6;5;1974;;;NO;GREGORIAN;;Volgograd Oblast;Danilovsky District;Beryozovskaya;RU;RUSSIAN FEDERATION;131575;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131573;EU.6634.68;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;131577;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC +28/10/2022;131580;EU.6635.67;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Магомед Фарманович Магомедов;;M;;;131582;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131580;EU.6635.67;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Magomed Farmanovich MAGOMEDOV;;M;;Special cases investigator at the First Investigation Department, Directorate for Investigation of Particularly Important Cases of the Main Investigation Department of the Investigative Committee of Russia for the Republic of Crimea and the city of Sevastopol.;131583;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131580;EU.6635.67;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Magomed Farmanowitsch MAGOMEDOW;DE;M;;;131631;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131580;EU.6635.67;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Magomed Farmanovitj Magomedov;SV;M;;;131632;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131580;EU.6635.67;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Mahomet Farmanowicz Mahomedow;PL;M;;;131633;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131580;EU.6635.67;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-02-05;5;2;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;131581;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131584;EU.6636.66;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Леонид Владимирович МИХАЙЛЮК;;M;;;131588;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131584;EU.6636.66;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Leonid Vladimirovich MIKHAILIUK;;M;;Head of the Federal Security Service (FSB) in Crimea and Sevastopol and of the regional Anti-Terrorism Committee.;131589;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131584;EU.6636.66;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Leonid Wladimirowitsch MICHAILJUK;DE;M;;;131635;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131584;EU.6636.66;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Leonid Vladimirovitj Michajljuk;SV;M;;;131636;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131584;EU.6636.66;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Leonid Władimirowicz Michajluk;PL;M;;;131637;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131584;EU.6636.66;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;Simferopol;13 I. Franko blvd.;;295034;Crimea;;NO;((Work));UA;UKRAINE;131585;EN;(Work);amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131584;EU.6636.66;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-01-01;1;1;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;131586;EN;DOB: 1.1.1970 OR 8.7.1963;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131584;EU.6636.66;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-07-08;8;7;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;131634;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131584;EU.6636.66;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;131587;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC +28/10/2022;131590;EU.6637.65;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Виктор Анатольевич Можелянский;;M;;;131596;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131590;EU.6637.65;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Viktor Anatolyevich MOZHELIANSKIY;;M;;Vice-chairman of the Central District Court in Simferopol and former judge of the Kievskiy District Court in Simferopol.;131597;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131590;EU.6637.65;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Viktor Anatoljewitsch MOSCHELJANSKI;DE;M;;;131638;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131590;EU.6637.65;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Viktor Anatoljevitj Mozjeljanskij;SV;M;;;131639;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131590;EU.6637.65;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Wiktor Anatolijewicz Możelański;PL;M;;;131640;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131590;EU.6637.65;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;Simferopol;Anhars'ka St, 8;;;Crimea;;NO;;UA;UKRAINE;131591;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131590;EU.6637.65;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;Simferopol;35 Marshala Zhukova St, App. 53;;;Crimea;;NO;;UA;UKRAINE;131592;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131590;EU.6637.65;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-05-10;10;5;1964;;;NO;GREGORIAN;;;;Kharkiv;UA;UKRAINE;131593;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131590;EU.6637.65;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;131594;EN;(the Union does not recognise passports issued by the Russian Federation in Crimea);amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC +28/10/2022;131590;EU.6637.65;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;131595;EN;(the Union does not recognise passports issued by the Russian Federation in Crimea);amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC +28/10/2022;131598;EU.6638.64;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Галина Владимировна Редько;;F;;;131602;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131598;EU.6638.64;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Galina Vladimirovna REDKO;;F;;Judge of the Supreme Court of \nthe Republic of Crimea.;131603;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131598;EU.6638.64;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Galina Wladimirowna REDKO;DE;F;;;131641;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131598;EU.6638.64;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Redko Galina Vladimirovna;SV;F;;;131642;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131598;EU.6638.64;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Galina Władimirowna Redko;PL;F;;;131643;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131598;EU.6638.64;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-03-22;22;3;1974;;;NO;GREGORIAN;;Poltava Oblast;;Romany;UA;UKRAINE;131599;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131598;EU.6638.64;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;131600;EN;(the Union does not recognise passports issued by the Russian Federation in Crimea);amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC +28/10/2022;131598;EU.6638.64;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;131601;EN;(the Union does not recognise passports issued by the Russian Federation in Crimea);amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC +28/10/2022;131610;EU.6640.41;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Владимир Николаевич Терентьев;;M;;;131614;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131610;EU.6640.41;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Vladimir Nikolaevich TERENTEV;;M;;Head of the Main Investigation Department of the Investigative Committee of Russia for the Republic of Crimea and the city of Sevastopol.;131615;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131610;EU.6640.41;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Wladimir Nikolajewitsch TERENTJEW;DE;M;;;131644;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131610;EU.6640.41;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Vladimir Nikolajevitj Terentiev;SV;M;;;131645;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131610;EU.6640.41;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;Władimir Nikołajewicz Terentiew;PL;M;;;131646;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131610;EU.6640.41;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-11-11;11;11;1977;;;NO;GREGORIAN;;;;Voronezh;RU;RUSSIAN FEDERATION;131611;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131610;EU.6640.41;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;03 01 118013 (other-Other identification number) (Passport number, \nnational ID \nnumber, other\nnumbers of \nidentity \ndocuments: 03 01 \n118013);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;131613;EN;Passport number, \nnational ID \nnumber, other\nnumbers of \nidentity \ndocuments: 03 01 \n118013;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;; +28/10/2022;131610;EU.6640.41;;2021-10-11;;(Date of UN designation: 2021-10-11);P;person;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;131612;EN;;amendment;council;2021-10-11;2021-10-11;2021/1791 (OJ L359I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.359.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A359I%3ATOC +28/10/2022;131688;EU.6652.8;LYi.029;2021-10-25;;(UN ID: LYi.029)\n(Date of UN designation: 2021-10-25)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)\nUNLI - 25.10.2021);P;person;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC;;;;Osama al Kuni;;;;;131768;EN;Good quality alias;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131688;EU.6652.8;LYi.029;2021-10-25;;(UN ID: LYi.029)\n(Date of UN designation: 2021-10-25)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)\nUNLI - 25.10.2021);P;person;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC;;;;Osama Zawiyah;;;;;131769;EN;Good quality alias;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131688;EU.6652.8;LYi.029;2021-10-25;;(UN ID: LYi.029)\n(Date of UN designation: 2021-10-25)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)\nUNLI - 25.10.2021);P;person;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC;;;;Osama Zawiya;;;;;131770;EN;Good quality alias;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131688;EU.6652.8;LYi.029;2021-10-25;;(UN ID: LYi.029)\n(Date of UN designation: 2021-10-25)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)\nUNLI - 25.10.2021);P;person;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC;;;;Osama al-Milad;;;;;131771;EN;Good quality alias;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131688;EU.6652.8;LYi.029;2021-10-25;;(UN ID: LYi.029)\n(Date of UN designation: 2021-10-25)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)\nUNLI - 25.10.2021);P;person;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC;;;;Osama Milad;;;;;131772;EN;Good quality alias;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131688;EU.6652.8;LYi.029;2021-10-25;;(UN ID: LYi.029)\n(Date of UN designation: 2021-10-25)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)\nUNLI - 25.10.2021);P;person;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC;;;;Osama Al Kuni Ibrahim;;;Manager of Al Nasr Detention Center in Zawiyah;;131774;EN;;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131688;EU.6652.8;LYi.029;2021-10-25;;(UN ID: LYi.029)\n(Date of UN designation: 2021-10-25)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)\nUNLI - 25.10.2021);P;person;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC;;;;;;;;;;;;;;;;;;;Zawiyah;;;;;;NO;;LY;LIBYA;131765;EN;;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131688;EU.6652.8;LYi.029;2021-10-25;;(UN ID: LYi.029)\n(Date of UN designation: 2021-10-25)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)\nUNLI - 25.10.2021);P;person;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-04-04;4;4;1976;;;NO;GREGORIAN;;;;Tripoli;LY;LIBYA;131766;EN;;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131688;EU.6652.8;LYi.029;2021-10-25;;(UN ID: LYi.029)\n(Date of UN designation: 2021-10-25)\n(Listed pursuant to paragraphs 15 and 17 of resolution 1970 (Travel Ban, Asset Freeze)\nUNLI - 25.10.2021);P;person;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LY;;131767;EN;;amendment;council;2021-11-04;2021-11-04;2021/1909 (OJ L389I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.389.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A389I%3ATOC +28/10/2022;131717;EU.6653.7;;2021-11-15;;(Date of UN designation: 2021-11-15);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Amr SALEM;;M;;Minister of Internal Trade and Consumer Protection. Appointed in August 2021.;131719;EN;;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131717;EU.6653.7;;2021-11-15;;(Date of UN designation: 2021-11-15);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;عمرو سالم;AR;M;;;131882;EN;;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131717;EU.6653.7;;2021-11-15;;(Date of UN designation: 2021-11-15);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1958;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;131718;EN;;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131720;EU.6654.6;;2021-11-15;;(Date of UN designation: 2021-11-15);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Boutros AL-HALLAQ;;M;;Minister of information. \nAppointed in August 2021.;131721;EN;;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131720;EU.6654.6;;2021-11-15;;(Date of UN designation: 2021-11-15);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;بطرس الحلاق;AR;M;;;131884;EN;;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131720;EU.6654.6;;2021-11-15;;(Date of UN designation: 2021-11-15);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;Damascus countryside;;SY;SYRIAN ARAB REPUBLIC;131883;EN;;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131722;EU.6655.5;;2021-11-15;;(Date of UN designation: 2021-11-15);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Seif El Din;;M;;;131723;EN;;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131722;EU.6655.5;;2021-11-15;;(Date of UN designation: 2021-11-15);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Seif Eddin;;M;;;131724;EN;;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131722;EU.6655.5;;2021-11-15;;(Date of UN designation: 2021-11-15);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Mohammad SEIFEDDINE;;M;;Minister of Labour and social \naffairs. Appointed in August \n2021.;131725;EN;;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131722;EU.6655.5;;2021-11-15;;(Date of UN designation: 2021-11-15);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;محمد سيف الدين;AR;M;;;131885;EN;;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131726;EU.6656.4;;2021-11-15;;(Date of UN designation: 2021-11-15);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;Diala BARAKAT;;F;;Minister of State. Appointed \nin August 2021.;131728;EN;;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131726;EU.6656.4;;2021-11-15;;(Date of UN designation: 2021-11-15);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;ديالا بركات;AR;F;;;131886;EN;;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131726;EU.6656.4;;2021-11-15;;(Date of UN designation: 2021-11-15);P;person;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;131727;EN;;amendment;council;2021-11-15;2021-11-15;2021/1983 (OJ L402I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.402.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A402I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131805;EU.6672.43;YEi.007;2021-11-09;;(UN ID: YEi.007)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;Abu Yasser;;;;;131912;EN;low quality alias;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131805;EU.6672.43;YEi.007;2021-11-09;;(UN ID: YEi.007)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;Saleh al Sha’ir;;;;;131913;EN;low quality alias;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131805;EU.6672.43;YEi.007;2021-11-09;;(UN ID: YEi.007)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;Saleh al Shae;;;;;131914;EN;low quality alias;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131805;EU.6672.43;YEi.007;2021-11-09;;(UN ID: YEi.007)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;Saleh Mesfer al Shaer;;;;;131915;EN;low quality alias;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131805;EU.6672.43;YEi.007;2021-11-09;;(UN ID: YEi.007)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;Saleh Musfer Saleh al Shaer;;;;;131916;EN;low quality alias;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131805;EU.6672.43;YEi.007;2021-11-09;;(UN ID: YEi.007)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;Saleh Mosfer Saleh al Shaer;;;;;131917;EN;low quality alias;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131805;EU.6672.43;YEi.007;2021-11-09;;(UN ID: YEi.007)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;صالح مسفر صالح الشاعر;AR;;;;131918;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131805;EU.6672.43;YEi.007;2021-11-09;;(UN ID: YEi.007)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;Saleh Mesfer Saleh Al Shaer;;;Major General;‘Judicial Custodian’ of properties and funds owned by Houthis’ \nopponents;131919;EN;"Physical Description: Eye Colour: Brown; Hair: Grey; Complexion: \nMedium; Build: Slim; Height (ft/in): Unknown; Weight (lbs): Unknown; and Clan: Member of \nthe Hashid tribal confederacy.";amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131805;EU.6672.43;YEi.007;2021-11-09;;(UN ID: YEi.007)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;;YE;YEMEN;131905;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131805;EU.6672.43;YEi.007;2021-11-09;;(UN ID: YEi.007)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;Sa’dah Governorate;Al Safrah;YE;YEMEN;131906;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131805;EU.6672.43;YEi.007;2021-11-09;;(UN ID: YEi.007)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;" 10010057512 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;YE;;131908;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;; +28/10/2022;131805;EU.6672.43;YEi.007;2021-11-09;;(UN ID: YEi.007)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1388114  (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;YE;;131909;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;; +28/10/2022;131805;EU.6672.43;YEi.007;2021-11-09;;(UN ID: YEi.007)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;00481779 (passport-National passport) (on 2000-12-09 valid to 2006-12-09)[known to be expired];NO;YES;NO;NO;NO;;2000-12-09;;2006-12-09;;;passport;National passport;;YE;;131910;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;; +28/10/2022;131805;EU.6672.43;YEi.007;2021-11-09;;(UN ID: YEi.007)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;05274639 (passport-National passport) (on 2013-10-07 valid to 2019-10-07)[known to be expired];NO;YES;NO;NO;NO;;2013-10-07;;2019-10-07;;;passport;National passport;;YE;;131911;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;; +28/10/2022;131805;EU.6672.43;YEi.007;2021-11-09;;(UN ID: YEi.007)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;131907;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC +28/10/2022;131821;EU.6673.42;YEi.008;2021-11-09;;(UN ID: YEi.008)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;Mohammad Al-Ghamari;;;;;131924;EN;"low quality alias; born 1984";amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131821;EU.6673.42;YEi.008;2021-11-09;;(UN ID: YEi.008)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;محمد عبدالكریم الغماري;AR;;;;131925;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131821;EU.6673.42;YEi.008;2021-11-09;;(UN ID: YEi.008)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;Muhammad Abd Al-Karim Al-Ghamari;;;Major General;Houthi Chief of General Staff;131926;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131821;EU.6673.42;YEi.008;2021-11-09;;(UN ID: YEi.008)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;;YE;YEMEN;131920;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131821;EU.6673.42;YEi.008;2021-11-09;;(UN ID: YEi.008)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984;;;NO;GREGORIAN;;;;;00;UNKNOWN;131921;EN;low quality alias: Mohammad Al-Ghamari;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131821;EU.6673.42;YEi.008;2021-11-09;;(UN ID: YEi.008)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979;;;NO;GREGORIAN;;;Wahha District, Hajjar Governorate;Izla Dhaen;YE;YEMEN;131922;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131821;EU.6673.42;YEi.008;2021-11-09;;(UN ID: YEi.008)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;131923;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC +28/10/2022;131829;EU.6674.41;YEi.009;2021-11-09;;(UN ID: YEi.009)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;یوسف المداني;AR;;;;131930;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131829;EU.6674.41;YEi.009;2021-11-09;;(UN ID: YEi.009)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;Yusuf Al-Madani;;;Major General;Commander of the Houthi’s Fifth Military Region;131931;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131829;EU.6674.41;YEi.009;2021-11-09;;(UN ID: YEi.009)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;;YE;YEMEN;131927;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131829;EU.6674.41;YEi.009;2021-11-09;;(UN ID: YEi.009)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;;;NO;GREGORIAN;;;Muhatta Directorate, Hajjah Province;;YE;YEMEN;131928;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131829;EU.6674.41;YEi.009;2021-11-09;;(UN ID: YEi.009)\n(Date of UN designation: 2021-11-09)\n(UNLI - 09.11.2021);P;person;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;131929;EN;;amendment;council;2021-11-18;2021-11-18;2021/2015 (OJ L410I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.410.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A410I%3ATOC +28/10/2022;131957;EU.6692.78;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Игорь Анатольевич КРЮЧКОВ;RU;M;;;131960;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131957;EU.6692.78;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Ігар Анатольевіч КРУЧКОЎ;BE;M;;;131961;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131957;EU.6692.78;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Igor Anatolevich KRIUCHKOV;;M;;;131962;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131957;EU.6692.78;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Ihar Anatolevich KRUCHKOU;;M;;Head of Separate Service for Active Measures (ASAM) of the Special Forces of the State Border Committee;131963;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131957;EU.6692.78;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Igor Anatolevich KRICHKOV;;M;;;132323;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131957;EU.6692.78;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Igor Anatolevich KRUCHKOV;DA;M;;;132324;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131957;EU.6692.78;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Igor Anatoljevitj KRJUTJKOV;SV;M;;;132325;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131957;EU.6692.78;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Ihar Anatoljevitj KRUTJKOU;SV;M;;;132326;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131957;EU.6692.78;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Ihar Anatolevič KRUČKOV;SK;M;;;132327;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131957;EU.6692.78;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-04-13;13;4;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;131958;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131957;EU.6692.78;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3130476M077PB6 (other-Other identification number) (Personal ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;131959;EN;Personal ID;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;131957;EU.6692.78;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;132322;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC +28/10/2022;131964;EU.6693.77;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Анатолии Петрович ЛАППО;RU;M;;;131968;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131964;EU.6693.77;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Анатоль Пятровіч ЛАППО;BE;M;;;131969;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131964;EU.6693.77;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Анатоль Пятровіч ЛАПО;BE;M;;;131970;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131964;EU.6693.77;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Anatoliy Petrovich LAPPO;;M;;;131971;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131964;EU.6693.77;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Anatol Piatrovich LAPO;;M;Lieutenant General;Chairman of the State Border Committee of the Republic of Belarus (appointed on 29 December, 2016), Chief State Border Delegate;131972;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131964;EU.6693.77;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Anatolij Petrovitj LAPPO;SV;M;;;132329;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131964;EU.6693.77;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Anatol Pjatrovitj LAPPO;SV;M;;;132330;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131964;EU.6693.77;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Anatol Pjatrovitj LAPO;SV;M;;;132331;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131964;EU.6693.77;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-05-24;24;5;1963;;;NO;GREGORIAN;;Mogilev Region/Oblast;;Kulakovka;BY;BELARUS;131965;EN;former USSR (now Belarus);amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131964;EU.6693.77;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3240563K033PB5 (id-National identification card) (Personal ID);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;131966;EN;Personal ID;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;131964;EU.6693.77;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"MP4098888 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;131967;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;131964;EU.6693.77;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;132328;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC +28/10/2022;131973;EU.6694.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Константин Геннадьевич МОЛОСТОВ;RU;M;;;131977;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131973;EU.6694.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Канстанцін Генадзьевіч МОЛАСТАЎ;BE;M;;;131978;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131973;EU.6694.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Konstantin Gennadevich MOLOSTOV;;M;;;131979;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131973;EU.6694.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Kanstantsin Henadzevich MOLASTAU;;M;Colonel;Head of the Grodno Border Group (appointed on 1 October 2014), Military Unit 2141, State Border Delegate;131980;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131973;EU.6694.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Konstantin Gennadjevitj MOLOSTOV;SV;M;;;132333;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131973;EU.6694.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Kanstantsin Henadzevitj MOLASTAU;SV;M;;;132334;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131973;EU.6694.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-05-30;30;5;1970;;;NO;GREGORIAN;;Saratov Region;;Krasnoarmeysk;RU;RUSSIAN FEDERATION;131974;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131973;EU.6694.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3300570K025PB3 (other-Other identification number) (Personal ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;131975;EN;Personal ID;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;131973;EU.6694.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"KH2479999 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;131976;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;131973;EU.6694.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;132332;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC +28/10/2022;131981;EU.6695.75;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Павел Николаевич ХАРЧЕНКО;RU;M;;;131982;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131981;EU.6695.75;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Павел Мікалаевіч Харчанка;BE;M;;;131983;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131981;EU.6695.75;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Pavel Nikolaevich KHARCHENKO;;M;;;131984;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131981;EU.6695.75;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Pavel Mikalaevich KHARCHANKA;;M;;Head of the Polotsk Border Detachment;131985;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131981;EU.6695.75;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Pavel Nikolajevitj CHARTJENKO;SV;M;;;132337;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131981;EU.6695.75;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Pavel Mikalajevitj CHARTJANKA;SV;M;;;132338;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131981;EU.6695.75;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-03-29;29;3;1981;;;NO;GREGORIAN;;;;Chita;RU;RUSSIAN FEDERATION;132335;EN;former USSR (now Russian Federation);amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131981;EU.6695.75;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;132336;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC +28/10/2022;131986;EU.6696.74;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Игорь Николаевич ГУТНИК;RU;M;;;131989;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131986;EU.6696.74;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Ігар Мікалаевіч ГУТНІК;BE;M;;;131990;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131986;EU.6696.74;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Igor Nikolaevich GUTNIK;;M;;;131991;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131986;EU.6696.74;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Ihar Mikalaevich GUTNIK;;M;Colonel;Head of the Brest Border Group;131992;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131986;EU.6696.74;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Igor Nikolajevitj GUTNIK;SV;M;;;132341;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131986;EU.6696.74;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Ihar Mikalajevitj HUTNIK;SV;M;;;132342;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131986;EU.6696.74;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;Brest;90 Heroes of Defense of the Brest Fortress St.;;224018;;;NO;PHONE[8-0162-210804];BY;BELARUS;131987;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131986;EU.6696.74;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-12-17;17;12;1974;;;NO;GREGORIAN;;Minsk Region/Oblast;Smolevichi District;Village of Zabolotye;BY;BELARUS;131988;EN;former USSR (now Belarus);amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131986;EU.6696.74;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"BM1962867 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;132340;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;131986;EU.6696.74;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;132339;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC +28/10/2022;131993;EU.6697.73;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Александр Борисович ДАВИДЮК;RU;M;;;131997;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131993;EU.6697.73;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Аляксандр Барысавіч ДАВІДЗЮК;BE;M;;;131998;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131993;EU.6697.73;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Aleksandr Borisovich DAVIDIUK;;M;;;131999;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131993;EU.6697.73;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Aliaksandr Barysavich DAVIDZIUK;;M;Colonel;Head of the Lida Border Detachment, Military Unit 1234 (appointed on 27 September 2016), State Border Delegate\n\nMember of Lida District Council of Deputies of the 28th convocation (took office on 2 February 2018);132000;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131993;EU.6697.73;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Aleksandr Borisovitj DAVIDJUK;SV;M;;;132344;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131993;EU.6697.73;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Aljaksandr Barysavitj DAVIDZIUK;SV;M;;;132345;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131993;EU.6697.73;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-05-04;4;5;1973;;;NO;GREGORIAN;;Zhytomyr region;;Novograd-Volynsky;UA;UKRAINE;131994;EN;former USSR (now Ukraine);amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;131993;EU.6697.73;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3040573E050PB7 (other-Other identification number) (Personal ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;131995;EN;Personal ID;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;131993;EU.6697.73;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"KH2613034 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;131996;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;131993;EU.6697.73;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;132343;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC +28/10/2022;132001;EU.6698.72;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Максим Викторович БУТРАНЕЦ;RU;M;;;132003;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132001;EU.6698.72;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Максім Віктаравіч БУТРАНЕЦ;BE;M;;;132004;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132001;EU.6698.72;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Maxim Viktorovich BUTRANETS;;M;;;132005;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132001;EU.6698.72;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Maksim Viktaravich BUTRANETS;;M;;Head of the Smorgon Border Group, Military Unit 2044 (appointed in March 2018), State Border Delegate;132006;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132001;EU.6698.72;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Maksim Viktorovitj BUTRANETS;SV;M;;;132347;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132001;EU.6698.72;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Maksim Viktaravitj BUTRANETS;SV;M;;;132348;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132001;EU.6698.72;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Maxim BUTRANEC;SK;M;;;132349;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132001;EU.6698.72;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-12-12;12;12;1978;;;NO;GREGORIAN;;;;Sverdlovsk;RU;RUSSIAN FEDERATION;132002;EN;former USSR (now Russian Federation);amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132001;EU.6698.72;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;132346;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC +28/10/2022;132024;EU.6701.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Игорь Вячеславович ЛЮБОВИЦКИЙ;RU;M;;;132028;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132024;EU.6701.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Ігар Вячаслававіч ЛЮБАВІЦКІ;BE;M;;;132029;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132024;EU.6701.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Igor Viacheslavovich LIUBOVITSKI;;M;;;132030;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132024;EU.6701.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Ihar Viachaslavavich LIUBAVITSKI;;M;;Judge at the Supreme Court of the Republic of Belarus;132031;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132024;EU.6701.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Igor Vjatjeslavovitj LJUBOVITSKI;SV;M;;;132357;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132024;EU.6701.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Ihar Vjatjaslavavitj LJUBAVITSKI;SV;M;;;132358;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132024;EU.6701.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;Vogel 1K St., apt. 17;;;;;NO;;BY;BELARUS;132025;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132024;EU.6701.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-07-21;21;7;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;132026;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132024;EU.6701.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3210783C002PB2 (other-Other identification number) (Personal ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;132027;EN;Personal ID;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;132024;EU.6701.76;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;132356;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC +28/10/2022;132048;EU.6704.73;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Валентина Геннадьевна КУЛИК;RU;F;;;132052;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132048;EU.6704.73;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Валянціна Генадзьеўна КУЛІК;BE;F;;;132053;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132048;EU.6704.73;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Valentina Gennadevna KULIK;;F;;;132054;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132048;EU.6704.73;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Valiantsina Genadzeuna KULIK;;F;;Judge at the Supreme Court of the Republic of Belarus;132055;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132048;EU.6704.73;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Valentina Gennadjevna KULIK;SV;F;;;132363;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132048;EU.6704.73;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Valjantsina Henadzieuna KULIK;SV;F;;;132364;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132048;EU.6704.73;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;54 Angarskaya St., apt. 48;;;;;NO;;BY;BELARUS;132049;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132048;EU.6704.73;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-01-15;15;1;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;132050;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132048;EU.6704.73;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4150160A119PB2 (other-Other identification number) (Personal ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;132051;EN;Personal ID;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;132048;EU.6704.73;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;132362;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC +28/10/2022;132064;EU.6706.71;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Игорь Анатольевич МАРШАЛОВ;RU;M;;;132069;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132064;EU.6706.71;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Ігар Анатольевіч МАРШАЛАЎ;BE;M;;;132070;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132064;EU.6706.71;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Igor Anatolevich MARSHALOV;;;;;132071;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132064;EU.6706.71;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Ihar Anatolevich MARSHALAU;;M;;Deputy Chairman of the State Control Committee, Director of the Financial Investigations Department of the State Control Committee\n\nMajor General of Financial Police;132072;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132064;EU.6706.71;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Igor Anatoljevitj MARSJALOV;SV;M;;;132369;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132064;EU.6706.71;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Ihar Anatoljevitj MARSJALAU;SV;M;;;132370;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132064;EU.6706.71;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;43A Franciska St., apt. 41;;;;;NO;;BY;BELARUS;132065;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132064;EU.6706.71;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;15 Shchukina St.;;;;;NO;;BY;BELARUS;132066;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132064;EU.6706.71;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-01-12;12;1;1972;;;NO;GREGORIAN;;Mogilev Region/ Oblast;;Shkolv;BY;BELARUS;132067;EN;former USSR (now Belarus);amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132064;EU.6706.71;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3120172H018PB4 (other-Other identification number) (Personal ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;132068;EN;Personal ID;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;132064;EU.6706.71;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;132368;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC +28/10/2022;132081;EU.6708.69;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Марат Сергеевич МАРКОВ;RU;M;;;132083;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132081;EU.6708.69;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Марат Сяргеевіч МАРКАЎ;BE;M;;;132084;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132081;EU.6708.69;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Marat Sergeevich MARKOV;;M;;;132085;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132081;EU.6708.69;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Marat Siarheevich MARKAU;;M;;Chairman of the Management Board of State-controlled TV channel ONT, host of the “Markov: Nothing Personal” programme;132086;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132081;EU.6708.69;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Marat Siarhejevitj MARKAU;SV;M;;;132375;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132081;EU.6708.69;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Marat Sergejevitj MARKOV;SV;M;;;132376;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132081;EU.6708.69;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Marat Siarhejevič MARKAV;SK;M;;;132377;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132081;EU.6708.69;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-05-01;1;5;1969;;;NO;GREGORIAN;;;;Luninets;BY;BELARUS;132082;EN;former USSR (now Belarus);amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132081;EU.6708.69;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;132374;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ОАО «Авиакомпания «Белавиа»;RU;;;;132102;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ААТ “Авіякампанія Белавія”;BE;;;;132103;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Open Joint Stock Company “Belavia Belarusian Airlines”;;;;;132104;EN;the State-owned national flag carrier airline;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Offene Aktiengesellschaft ‚Belavia Belarusian Airlines‘;DE;;;;132382;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Sociedad limitada por acciones abierta “Belavia Belarusian Airlines”;ES;;;;132383;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Javno dioničko društvo „Belavia Belarusian Airlines”;HR;;;;132384;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Cuideachta Comhstoic Oscailte ‘Belavia Belarusian Airlines’;GA;;;;132385;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"Société par actions ouverte ""Belavia Belarusian Airlines""";FR;;;;132386;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Ανοικτή συμμετοχική εταιρεία “Belavia Belarusian Airlines”;EL;;;;132387;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Avatud aktsiaselts Belavia Belarusian Airlines;ET;;;;132388;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Openbare vennootschap op aandelen “Belavia Belarusian Airlines”;NL;;;;132389;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Atviroji akcinė bendrovė „Belavia Belarusian Airlines“;LT;;;;132390;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Odprta delniška družba ‚Belavia Belarusian Airlines‘;SL;;;;132391;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Societatea deschisă pe acțiuni «Belavia Belarusian Airlines» (compania aeriană belarusă «Belavia»);RO;;;;132392;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"Sociedade por ações aberta ""Belavia Belarusian Airlines"" (""Belavia"")";PT;;;;132393;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;OJSC »Belavia Belarusian Airlines«;PL;;;;132394;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;14A Nemiga St.;;220004;;;NO;;BY;BELARUS;132100;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132099;EU.6711.45;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600390798 (regnumber-Registration Number) (Date of registration: 4.1.1996);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;132101;EN;Date of registration: 4.1.1996;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Республиканское унитарное предприятие “ЦЕНТРКУРОРТ”;RU;;;;132114;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Рэспубліканскае унітарнае прадпрыемства “ЦЭНТРКУРОРТ”;BE;;;;132115;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Republican unitary enterprise “TSENTRKURORT”;;;;;132116;EN;part of the Department of Presidential Affairs of Belarus;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Fofhiontar aonadach poblachtach ‘TSENTRKURORT’;GA;;;;132395;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"Entreprise unitaire républicaine ""TSENTRKURORT""";FR;;;;132396;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Δημοκρατική διαχειριστική επιχείρηση “TSENTRKURORT”;EL;;;;132397;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;riiklik ühisettevõte „TSENTRKURORT“;ET;;;;132398;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Republikanisches Einheitsunternehmen ‚TSENTRKURORT‘;DE;;;;132399;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"Empresa unitaria de la República ""TSENTRKURORT""";ES;;;;132400;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Państwowe jednolite przedsiębiorstwo »TSENTRKURORT«;PL;;;;132401;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Onder de Republiek Belarus vallende gecentraliseerde onderneming “TSENTRKURORT”;NL;;;;132402;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Respublikinė unitarinė įmonė TSENTRKURORT;LT;;;;132403;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Državno unitarno poduzeće „TSENTRKURORT”;HR;;;;132404;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"Empresa unitária da República ""TSENTRKURORT""";PT;;;;132405;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Republikansko unitarno podjetje ‚TSENTRKURORT‘;SL;;;;132406;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Centrkurort „TSENTRKURORT“;SK;;;;132407;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Întreprinderea unitară de stat «TSENTRKURORT»;RO;;;;132408;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Tasavallan unitaariyritys ”TSENTRKURORT”;FI;;;;132409;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;39 Myasnikova St.;;220030;;;NO;;BY;BELARUS;132112;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132111;EU.6713.43;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100726604 (regnumber-Registration Number) (Date of registration: \n12.08.2003);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;132113;EN;Date of registration: \n12.08.2003;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;132117;EU.6714.42;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ООО Оскартур;;;;;132120;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132117;EU.6714.42;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Oskartour LLC;;;;;132121;EN;tour operator;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132117;EU.6714.42;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Ribotos atsakomybės bendrovė (RAB) „Oskartour“;LT;;;;135508;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132117;EU.6714.42;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;25 Karl Marx St., room 1n;;;;;NO;;BY;BELARUS;132118;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132117;EU.6714.42;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192721937 (regnumber-Registration Number) (Date of registration: 18.10.2016);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;132119;EN;Date of registration: 18.10.2016;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Гатэль “Мiнск”;;;;;132125;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Republican subsidiary unitary enterprise “Hotel Minsk”;;;;;132126;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Республиканское дочернее унитарное предприятие “Отель “Минск”;;;;;132413;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;riiklik ühistütarettevõte „Hotel Minsk“;ET;;;;132414;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Republikanisches Einheitstochterunternehmen ‚Hotel Minsk‘;DE;;;;132415;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Empresa unitaria filial de la República “Hotel Minsk”;ES;;;;132416;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Fofhiontar aonadach poblachtach ‘HoTeil Minsk’;GA;;;;132417;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Entreprise unitaire filiale républicaine “Hotel Minsk”;FR;;;;132418;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Δημοκρατική θυγατρική διαχειριστική επιχείρηση “Hotel Minsk”;EL;;;;132419;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Onder de Republiek Belarus vallende gecentraliseerde dochteronderneming “Hotel Minsk”;NL;;;;132420;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Respublikinė patronuojamoji unitarinė įmonė „Hotel Minsk“;LT;;;;132421;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Republičko unitarno društvo kći „Hotel Minsk”;HR;;;;132422;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"Empresa filial unitária da República ""Hotel Minsk""";PT;;;;132423;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Państwowe zależne jednolite przedsiębiorstwo „Hotel Minsk”;PL;;;;132424;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Tasavallan unitaari tytäryritys ”Hotel Minsk”;FI;;;;132425;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Republikansko hčerinsko unitarno podjetje „Hotel Minsk“;SL;;;;132426;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Filiala unitară de stat «Hotel Minsk»;RO;;;;132427;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Republikový dceřiný unitářský podnik „Hotel Minsk“;CS;;;;135509;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Републиканско субсидиарно унитарно дружество ‘Hotel Minsk’;BG;;;;135510;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;11 Nezavisimosti Ave.;;;;;NO;"WEB[http://hotelminsk.by/]\nPHONE[375 (17) 209-90-61]\nEMAIL[hotelminsk@udp.gov.by ; marketing@hotelminsk.by ]\nFAX[+375 (17) 200-00-72]";BY;BELARUS;132123;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132122;EU.6715.41;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192750964 (regnumber-Registration Number) (Date of registration: 26.12.2016 / 3.4.2017);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;132124;EN;Date of registration: 26.12.2016 / 3.4.2017;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ААТ «ГАСЦІНІЦА ПЛАНЕТА»;;;;;132130;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"Open Joint Stock Company ""HOTEL PLANETA""";;;;;132131;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ОAО «ГОСТИНИЦА ПЛАНЕТА»;;;;;132428;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"Société par actions ouverte ""HOTEL PLANETA""";FR;;;;132429;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Ανοικτή συμμετοχική εταιρεία “HOTEL PLANETA»;EL;;;;132430;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Avatud aktsiaselts „HOTEL PLANETA“;ET;;;;132431;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Offene Aktiengesellschaft ‚HOTEL PLANETA‘;DE;;;;132432;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Sociedad limitada por acciones abierta “HOTEL PLANETA”;ES;;;;132433;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Atviroji akcinė bendrovė „HOTEL PLANETA“;LT;;;;132434;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Javno dioničko društvo „HOTEL PLANETA”;HR;;;;132435;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Cuideachta Comhstoic Oscailte ‘HOTEL PLANETA’;GA;;;;132436;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"Sociedade por ações aberta ""HOTEL PLANETA""";PT;;;;132437;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;OJSC »HOTEL PLANETA«;PL;;;;132438;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Openbare vennootschap op aandelen “HOTEL PLANETA”;NL;;;;132439;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Odprta delniška družba ‚HOTEL PLANETA‘;SL;;;;132440;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Societatea deschisă pe acțiuni «HOTEL PLANETA»;RO;;;;132441;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;31 Pobediteley Ave.;;;;;NO;WEB[https://hotelplaneta.by/]\nPHONE[+375 (17) 226-78-53]\nEMAIL[planeta@udp.gov.by]\nFAX[+375 (17) 226-78-55];BY;BELARUS;132128;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132127;EU.6716.40;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100135173 (regnumber-Registration Number) (Date of registration: 1.2.1994/ 6.3.2000);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;132129;EN;Date of registration: 1.2.1994/ 6.3.2000;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;132132;EU.6717.39;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Отдельная служба активных мероприятий (ОСАМ);;;;;132134;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132132;EU.6717.39;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Асобная служба актыўных мерапрыемстваў (АСАМ);;;;;132135;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132132;EU.6717.39;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;OSAM (Otdiel’naya sluzhba aktivnykh mieropriyatiy);;;;;132136;EN;OSAM (Separate Active Action Service) is a \nBelarusian special border guard unit controlled \nby Viktor Lukashenka and headed by Igor \nKruchkov.;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132132;EU.6717.39;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ASAM (Asobnaia sluzhba aktyunykh merapryemstvau);;;;;132446;EN;ASAM (Separate Service for Active Measures) is a Belarusian special border guard unit controlled by Viktar Lukashenka and headed by Ihar Kruchkou.;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132132;EU.6717.39;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Otdelnaja sluzjba aktivnych meroprijatij;SV;;;;132447;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132132;EU.6717.39;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;State Border Committee of the Republic of Belarus, 24 Volodarsky St.;;220050;;;NO;;BY;BELARUS;132133;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132140;EU.6719.37;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;VIP Grub;;;;;132143;EN;VIP Grub is a passport and visa service based in \nIstanbul, Turkey;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132140;EU.6719.37;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Istanbul;Büyükdere Cad., No:201;;;;;NO;;TR;TURKEY;132141;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ОАО “Гродно Азот”;;;;;132153;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ААТ “Гродна Азот”;;;;;132154;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Open Joint Stock Company “Grodno Azot”;;;;;132155;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Филиал «Завод Химволокно» ОАО «Гродно Азот»;;;;;132450;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"Філіял ""Завод Хімвалакно"" ААТ ""Гродна Азот""";;;;;132451;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;«Khimvolokno Plant» JSC «Grodno Azot»;;;;;132452;EN;Including Branch;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Ανοικτή συμμετοχική εταιρεία “Grodno Azot»;EL;;;;132453;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Avatud aktsiaselts „Grodno Azot“;ET;;;;132454;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Offene Aktiengesellschaft ‚Grodno Azot‘;DE;;;;132455;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Sociedad limitada por acciones abierta “Grodno Azot”;ES;;;;132456;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;‘Khimvolokno Plant’ de Chuideachta Comhstoic ‘Grodno Azot’;GA;;;;132457;EN;Lena n-áirítear Craobh;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Cuideachta Comhstoic Oscailte ‘Grodno Azot’;GA;;;;132458;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"Société par actions ouverte ""Grodno Azot""";FR;;;;132459;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"""Khimvolokno Plant"" de la société par actions ""Grodno Azot""";FR;;;;132460;EN;Y compris la succursale;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;atvirosios akcinės bendrovės „Grodno Azot“ filialą „Khimvolokno Plant“;LT;;;;132461;EN;Įskaitant;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Atviroji akcinė bendrovė „Grodno Azot“;LT;;;;132462;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;„Khimvolokno” javnog dioničkog društva „Grodno Azot”;;;;;132463;EN;uključujući podružnicu postrojenja;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Javno dioničko društvo „Grodno Azot”;HR;;;;132464;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;«Khimvolokno Plant» a societății deschise pe acțiuni «Grodno Azot»;RO;;;;132465;EN;Inclusiv sucursala;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Societatea deschisă pe acțiuni «Grodno Azot»;RO;;;;132466;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"Sociedade por ações aberta ""Grodno Azot""";PT;;;;132467;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;OJSC »Grodno Azot«;PL;;;;132468;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;“fabriek Khimvolokno” JSC “Grodno Azot”;NL;;;;132469;EN;Met inbegrip van de afdeling;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;sivuliike JSC Grodno Azotin Khimvoloknon tehdas;FI;;;;132470;EN;Lisäksi;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Odprta delniška družba ‚Grodno Azot‘;SL;;;;132471;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Grodno/Hrodna;100 Kosmonavtov Ave.;;;;;NO;WEB[https://azot.by/en/]\n(Date of registration: 1965\n\nRegistration number: 500036524);BY;BELARUS;132151;EN;Date of registration: 1965\n\nRegistration number: 500036524;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Grodno/Hrodna;4 Slavinskogo, St.;;230026;;;NO;"WEB[www.grodno-khim.by]\nPHONE[+375 (152) 39-19-00; +375 (152) 39-19-44]\nEMAIL[office@grodno-khim.by; market@grodno-khim.by; ppm@grodno-khim.by; tnp@grodno-khim.by]\n(Date of registration: 12.5.2000\n\nRegistration number: 590046884)";BY;BELARUS;132448;EN;Date of registration: 12.5.2000\n\nRegistration number: 590046884;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;590046884 (regnumber-Registration Number) (Date of registration: 12.5.2000);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;132152;EN;Date of registration: 12.5.2000;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;132150;EU.6721.14;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500036524 (regnumber-Registration Number) (Date of registration: 1965);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;132449;EN;Date of registration: 1965;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Дзяржаўнае вытворчае аб'яднанне «Беларуснафта»;;;;;132159;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;State Production Association Belorusneft;;;;;132160;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Государственное производственное объединение «Белоруснефть»;;;;;132472;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"Association de production d’État ""Belorusneft""";FR;;;;132473;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Κρατική Ομοσπονδία Παραγωγής Belorusneft;EL;;;;132474;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Riiklik tootmiskoondis Belorusneft;ET;;;;132475;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Staatliche Produktionsvereinigung Belorusneft;DE;;;;132476;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Den statslige produktionssammenslutning Belorusneft;DA;;;;132477;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"Asociación Estatal de Producción ""Belorusneft""";ES;;;;132478;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Državno združenje proizvajalcev ‚Belorusneft‘;SL;;;;132479;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Asociația de stat de producție Belorusneft;RO;;;;132480;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Associação Estatal de Produção Belorusneft;PT;;;;132481;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Państwowe zrzeszenie produkcyjne Belorusneft;PL;;;;132482;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Staatsproductieassociatie Belarusneft;NL;;;;132483;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Valstybinė gamybos asociacija „Belorusneft“;LT;;;;132484;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Državno udruženje za proizvodnju Belorusneft;HR;;;;132485;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Valtion tuotantoyhdistys Belorusneft;FI;;;;132486;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Gomel/Homyel;9 Rogachevskaya St.;;246003;;;NO;;BY;BELARUS;132157;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132156;EU.6722.13;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400051902 (regnumber-Registration Number) (Date of registration: 25.2.1966);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;132158;EN;Date of registration: 25.2.1966;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;AAT “Белшина”;;;;;132170;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ОАО “Белшина”;;;;;132171;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Open Joint Stock Company Belshina;;;;;132487;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Javno dioničko društvo Belshina;HR;;;;132488;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Cuideachta Comhstoic Oscailte Belshina;GA;;;;132489;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;"Société par actions ouverte ""Belshina""";FR;;;;132490;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Ανοικτή συμμετοχική εταιρεία Belshina;EL;;;;132491;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Avatud aktsiaselts Belshina;ET;;;;132492;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Offene Aktiengesellschaft ‚Belshina‘;DE;;;;132493;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Sociedad limitada por acciones abierta “Belshina”;ES;;;;132494;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Odprta delniška družba ‚Belshina‘;SL;;;;132495;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Otvorená akciová spoločnosť Belshina;SK;;;;132496;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Societatea deschisă pe acțiuni Belshina;RO;;;;132497;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Sociedade por ações aberta Belshina;PT;;;;132498;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;OJSC Belshina;PL;;;;132499;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Atviroji akcinė bendrovė „Belshina“;LT;;;;132500;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Bobruisk;4 Minskoe Shosse St.;;213824;;;NO;WEB[http://www.belshinajsc.by/];BY;BELARUS;132168;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132167;EU.6724.11;;2021-12-02;;(Date of UN designation: 2021-12-02);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700016217 (regnumber-Registration Number) (Date of registration: 10.1.1994);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;132169;EN;Date of registration: 10.1.1994;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;132191;EU.6732.79;QDi.430;2021-11-23;;(UN ID: QDi.430)\n(Date of UN designation: 2021-11-23)\n(UNLI 24.11.2021);P;person;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;Abu Jihad TNT;;;;;132290;EN;low quality alias;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132191;EU.6732.79;QDi.430;2021-11-23;;(UN ID: QDi.430)\n(Date of UN designation: 2021-11-23)\n(UNLI 24.11.2021);P;person;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;Emraan Ali;;;;Senior member of Islamic State in Iraq and the Levant (ISIL);132291;EN;"Physical description: height: 176 cm; weight: 73 kg; build: medium; eye colour: brown; hair colour: black/bald; complexion: brown.";amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132191;EU.6732.79;QDi.430;2021-11-23;;(UN ID: QDi.430)\n(Date of UN designation: 2021-11-23)\n(UNLI 24.11.2021);P;person;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;(previous location January 1991-2008);US;UNITED STATES;132280;EN;previous location January 1991-2008;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132191;EU.6732.79;QDi.430;2021-11-23;;(UN ID: QDi.430)\n(Date of UN designation: 2021-11-23)\n(UNLI 24.11.2021);P;person;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;;;;;;;;Rio Claro;"#7 Guayaguayare Road";;;;;NO;(previous location circa 2003);TT;TRINIDAD AND TOBAGO;132281;EN;previous location circa 2003;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132191;EU.6732.79;QDi.430;2021-11-23;;(UN ID: QDi.430)\n(Date of UN designation: 2021-11-23)\n(UNLI 24.11.2021);P;person;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;;;;;;;;Rio Claro;"#12 Rio Claro Mayaro Road";;;;;NO;(previous location 2008-March 2015);TT;TRINIDAD AND TOBAGO;132282;EN;previous location 2008-March 2015;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132191;EU.6732.79;QDi.430;2021-11-23;;(UN ID: QDi.430)\n(Date of UN designation: 2021-11-23)\n(UNLI 24.11.2021);P;person;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;(in detention, Federal Detention Center Miami, Register Number: 10423-509);US;UNITED STATES;132283;EN;in detention, Federal Detention Center Miami, Register Number: 10423-509;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132191;EU.6732.79;QDi.430;2021-11-23;;(UN ID: QDi.430)\n(Date of UN designation: 2021-11-23)\n(UNLI 24.11.2021);P;person;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-07-04;4;7;1967;;;NO;GREGORIAN;;;;Rio Claro;TT;TRINIDAD AND TOBAGO;132284;EN;;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132191;EU.6732.79;QDi.430;2021-11-23;;(UN ID: QDi.430)\n(Date of UN designation: 2021-11-23)\n(UNLI 24.11.2021);P;person;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;420985453 (passport-National passport) (valid to 2017-02-06)[known to be expired];NO;YES;NO;NO;NO;;;;2017-02-06;;;passport;National passport;;US;;132287;EN;;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;; +28/10/2022;132191;EU.6732.79;QDi.430;2021-11-23;;(UN ID: QDi.430)\n(Date of UN designation: 2021-11-23)\n(UNLI 24.11.2021);P;person;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TB162181 (passport-National passport) (on 2015-01-27 valid to 2020-01-26)[known to be expired];NO;YES;NO;NO;NO;;2015-01-27;;2020-01-26;;;passport;National passport;;TT;;132288;EN;;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;; +28/10/2022;132191;EU.6732.79;QDi.430;2021-11-23;;(UN ID: QDi.430)\n(Date of UN designation: 2021-11-23)\n(UNLI 24.11.2021);P;person;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"19670704052 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TT;;132289;EN;;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;; +28/10/2022;132191;EU.6732.79;QDi.430;2021-11-23;;(UN ID: QDi.430)\n(Date of UN designation: 2021-11-23)\n(UNLI 24.11.2021);P;person;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TT;;132285;EN;;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC +28/10/2022;132191;EU.6732.79;QDi.430;2021-11-23;;(UN ID: QDi.430)\n(Date of UN designation: 2021-11-23)\n(UNLI 24.11.2021);P;person;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;US;;132286;EN;;amendment;commission;2021-12-01;2021-12-01;2021/2108 (OJ L429);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2021.429.01.0097.01.ENG&toc=OJ%3AL%3A2021%3A429%3ATOC +28/10/2022;132225;EU.6752.17;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Андрей Николаевич ТРОШЕВ;;M;;;132228;EN;;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132225;EU.6752.17;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Andrei Mykolayvych TROSHEV;;M;;;132229;EN;;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132225;EU.6752.17;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Andrey Nikolaevich TROSHEV;;M;Retired Colonel;Retired colonel, Founding member and Executive Director (Chief of \nStaff) of the Wagner Group;132230;EN;"Call sign: Siedoy; Relatives/Associates: Dimitriy Utkin (Wagner Group Founder); Andrey Bogatov (Head of the 4th Attack and Reconnaissance Company of the Wagner Group), Aleksandr Sergeevich Kuznetsov (Commander of the 1st Attack and Reconnaissance Company of the Wagner Group)";amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132225;EU.6752.17;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Andrej Nikolajevitj Trosjev;SV;M;;;132750;EN;;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132225;EU.6752.17;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-04-05;5;4;1953;;;NO;GREGORIAN;;;;Leningrad;RU;RUSSIAN FEDERATION;132226;EN;former USSR (now Russian Federation);amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132225;EU.6752.17;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;132227;EN;;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC +28/10/2022;132231;EU.6753.16;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Андрей Михайлович БОГАТОВ;;M;;;132234;EN;;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132231;EU.6753.16;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Andrei Mychailovych BOGATOV;;M;;;132235;EN;;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132231;EU.6753.16;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Andrey Mikhailovich BOGATOV;;M;;Head of the 4th Attack and Reconnaissance Company of the Wagner Group;132236;EN;"Call sign: Brodiaga; Relatives/Associates: Dimitriy Utkin (Wagner Group Founder); Andrey Nikolaevich Troshev (Founding member and Executive Director (Chief of Staff) of the Wagner Group), Aleksandr Sergeevich Kuznetsov (Commander of the 1st Attack and Reconnaissance Company of the Wagner Group)";amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132231;EU.6753.16;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Andrej Michajlovitj Bogatov;SV;M;;;132751;EN;;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132231;EU.6753.16;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-06-14;14;6;1964;;;NO;GREGORIAN;;Belgorod region;;Stary Oskol;RU;RUSSIAN FEDERATION;132232;EN;former USSR (now Russian Federation);amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132231;EU.6753.16;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;M-1601 (other-Other identification number) (Wagner group ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;132752;EN;Wagner group ID;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;; +28/10/2022;132231;EU.6753.16;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;132233;EN;;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC +28/10/2022;132237;EU.6754.15;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Velada LLC;;;;;132239;EN;Date of creation: 29.6.2015;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132237;EU.6754.15;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;ООО Велада;;;;;132509;EN;;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132237;EU.6754.15;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;Ochakovskoye Shosse, Dom 28, Building 2, Local 3, Room 8;;119530;;;NO;;RU;RUSSIAN FEDERATION;132238;EN;;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132240;EU.6755.14;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Mercury LLC;;;;;132242;EN;;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132240;EU.6755.14;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;OOO Меркурий;;;;;132510;EN;;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132240;EU.6755.14;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;Leninsky Prospekt, Dom 137, Building 1, Local 2, Room 5;;;;;NO;;RU;RUSSIAN FEDERATION;132241;EN;;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132243;EU.6756.13;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Evro Polis LLC;;;;;132245;EN;Relatives/Associates: General Petroleum Corp;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132243;EU.6756.13;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;ООО Евро Полис;;;;;132511;EN;;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132243;EU.6756.13;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;Krasnogorsk;Ulitsa Bratev Gozozankinykh, Dom 2B, Pomeshchenie 3.1.;;143409;;;NO;;RU;RUSSIAN FEDERATION;132244;EN;;amendment;council;2021-12-13;2021-12-13;2021/2194 (OJ L445I);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0007.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132249;EU.6757.12;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;Дмитрий Валерьевич УТКИН;;M;;;132254;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132249;EU.6757.12;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;Dimitriy Valerievich UTKIN;;M;Lieutenant Colonel (Russian military);"Founder and \nCommander of the Wagner Group; CEO of Concord Management and Consulting";132255;EN;Callsign: Vagner/Wagner;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132249;EU.6757.12;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;Dmitry Valerievich UTKIN;;M;;;132715;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132249;EU.6757.12;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;Dmitri Valerievich UTKIN;;M;;;132716;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132249;EU.6757.12;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;Dimitry Valerievich UTKIN;;M;;;132717;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132249;EU.6757.12;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;Dmitrij Valerjevitj UTKIN;SV;M;;;132718;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132249;EU.6757.12;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;Pskov;;;;;;NO;;RU;RUSSIAN FEDERATION;132250;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132249;EU.6757.12;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-06-11;11;6;1970;;;NO;GREGORIAN;;Sverdlovst Oblast;;Asbest;RU;RUSSIAN FEDERATION;132251;EN;former USSR (now \nRussian Federation);amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132249;EU.6757.12;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-06-01;1;6;1970;;;NO;GREGORIAN;;Sverdlovst Oblast;;Asbest;RU;RUSSIAN FEDERATION;132252;EN;former USSR (now \nRussian Federation);amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132249;EU.6757.12;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;M-0209 (other-Other identification number) (Wagner Group ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;132714;EN;Wagner Group ID;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;; +28/10/2022;132249;EU.6757.12;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;132253;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN +28/10/2022;132263;EU.6759.10;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;Денис Юрьевич ХАРИТОНОВ;;M;;;132268;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132263;EU.6759.10;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;Denis Yurievich KHARITONOV;;M;;"Deputy regional head of the Astrakhan branch of the Union of Donbass Volunteers; member of Duma of Astrakhan Oblast; Wagner Group mercenary";132269;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132263;EU.6759.10;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;Denis Jurjevitj KHARITONOV;SV;M;;;132719;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132263;EU.6759.10;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;Village of Ilyinka;;;;Astrakhan Oblast;;NO;;RU;RUSSIAN FEDERATION;132264;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132263;EU.6759.10;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-03-16;16;3;1980;;;NO;GREGORIAN;;Astrakhan Oblast;;;RU;RUSSIAN FEDERATION;132265;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132263;EU.6759.10;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76 2759110 (passport-National passport) (issued by MVD 30001 valid to 2030-03-10);NO;NO;NO;NO;NO;MVD 30001;;;2030-03-10;;;passport;National passport;;00;;132267;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;; +28/10/2022;132263;EU.6759.10;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;132266;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN +28/10/2022;132270;EU.6760.85;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;Сергей Владимирович ЩЕРБАКОВ;;M;;;132274;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132270;EU.6760.85;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;Sergey Vladimirovich SHCHERBAKOV;;M;;Freelance \nemployee of the Russian GRU and Wagner group mercenary;132275;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132270;EU.6760.85;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;Sergej Vladimirovitj SJTJERBAKOV;SV;M;;;132720;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132270;EU.6760.85;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;Astrakhan, Kirovskiy rayon;Raskolnikova 11 app. 5;;;;;NO;(Possibly);RU;RUSSIAN FEDERATION;132271;EN;Possibly;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132270;EU.6760.85;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-07-21;21;7;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;132272;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132270;EU.6760.85;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;132273;EN;;amendment;council;2021-12-13;2021-12-13;2021/2193 (OJ L445I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2193&from=EN +28/10/2022;132522;EU.6773.51;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2192 (OJ L445I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2192&from=EN;;;;Александр Сергеевич КУЗНЕЦОВ;;M;;;132526;EN;;amendment;council;2021-12-13;2021-12-13;2021/2192 (OJ L445I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2192&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132522;EU.6773.51;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2192 (OJ L445I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2192&from=EN;;;;Alexander Sergeevich KUZNETSOV;;M;;;132527;EN;;amendment;council;2021-12-13;2021-12-13;2021/2192 (OJ L445I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2192&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132522;EU.6773.51;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2192 (OJ L445I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2192&from=EN;;;;Aleksandr Sergeevich KUZNETSOV;;M;;Commander of 1st Attack and Reconnaissance Company of the Wagner Group;132528;EN;Callsign: Ratibor;amendment;council;2021-12-13;2021-12-13;2021/2192 (OJ L445I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2192&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132522;EU.6773.51;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2192 (OJ L445I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2192&from=EN;;;;Aleksandr Sergejevitj KUZNETSOV;SV;M;;;132711;EN;;amendment;council;2021-12-13;2021-12-13;2021/2192 (OJ L445I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2192&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132522;EU.6773.51;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2192 (OJ L445I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2192&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-10-08;8;10;1977;;;NO;GREGORIAN;;;;Nikolskoye;RU;RUSSIAN FEDERATION;132523;EN;former USSR (now Russian Federation);amendment;council;2021-12-13;2021-12-13;2021/2192 (OJ L445I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2192&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132522;EU.6773.51;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2192 (OJ L445I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2192&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;M-0271 (other-Other identification number) (Wagner Group ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;132525;EN;Wagner Group ID;amendment;council;2021-12-13;2021-12-13;2021/2192 (OJ L445I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2192&from=EN;;;;;;;;;;;;; +28/10/2022;132522;EU.6773.51;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2192 (OJ L445I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2192&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;132524;EN;;amendment;council;2021-12-13;2021-12-13;2021/2192 (OJ L445I);LBY;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32021R2192&from=EN +28/10/2022;132532;EU.6774.50;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Дмитрий Валерьевич Уткин;RU;M;;;132538;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132532;EU.6774.50;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Dmitry Valerievich UTKIN;;M;;;132539;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132532;EU.6774.50;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Dmitri Valerievich UTKIN;;M;;;132540;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132532;EU.6774.50;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Dimitry Valerievich UTKIN;;M;;;132541;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132532;EU.6774.50;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Dimitriy Valerievich UTKIN;;M;Lieutenant colonel (reserve);Founder and \ncommander of the Wagner Group;132543;EN;Callsign: Vagner, \nWagner;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132532;EU.6774.50;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Dmitrij Valerjevitj UTKIN;SV;M;;;132725;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132532;EU.6774.50;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;Pskov;;;;;;NO;;RU;RUSSIAN FEDERATION;132533;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132532;EU.6774.50;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-06-11;11;6;1970;;;NO;GREGORIAN;;Sverdlovsk Oblast;;Asbest;RU;RUSSIAN FEDERATION;132534;EN;Russian SFSR (now Russian Federation);amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132532;EU.6774.50;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-06-01;1;6;1970;;;NO;GREGORIAN;;Sverdlovsk Oblast;;Asbest;RU;RUSSIAN FEDERATION;132535;EN;Russian SFSR (now Russian Federation);amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132532;EU.6774.50;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;M-0209 (other-Other identification number) (Wagner Group ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;132537;EN;Wagner Group ID;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;; +28/10/2022;132532;EU.6774.50;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;132536;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC +28/10/2022;132544;EU.6775.49;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Станислав Евгеньевич Дычко;RU;M;;;132547;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132544;EU.6775.49;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Stanislav Evgenievitch DYCHKO;;M;;Mercenary of the \nWagner Group;132548;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132544;EU.6775.49;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Stanislav Jevgenjevitj DYTJKO;SV;M;;;132723;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132544;EU.6775.49;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1990;;;NO;GREGORIAN;;;;;00;UNKNOWN;132545;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132544;EU.6775.49;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;132546;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC +28/10/2022;132556;EU.6777.47;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Валерий Николаевич Захаров;RU;M;;;132560;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132556;EU.6777.47;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Valeriy Nikolaevich ZAKHAROV;;M;;;132561;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132556;EU.6777.47;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Valery Nikolaevich ZAKHAROV;;M;;Security counsellor \nto the President of the Central African Republic (CAR);132562;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132556;EU.6777.47;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Valerij Nikolajevitj ZAKHAROV;SV;M;;;132726;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132556;EU.6777.47;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-01-12;12;1;1970;;;NO;GREGORIAN;;;;Leningrad;RU;RUSSIAN FEDERATION;132557;EN;Russian SFSR (now Russian Federation);amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132556;EU.6777.47;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;M-5658 (other-Other identification number) (Wagner Group ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;132559;EN;Wagner Group ID;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;; +28/10/2022;132556;EU.6777.47;;2021-12-13;;(Date of UN designation: 2021-12-13);P;person;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;132558;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Vagner Group;;;;;132564;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Wagner Group;;;;;132565;EN;Russia-based unincorporated private military entity;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;групата „Вагнер“;BG;;;;132727;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Группа Вагнера;RU;;;;132728;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;ομάδα Vagner;EL;;;;132729;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Ομάδα Wagner;EL;;;;132730;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Grupo Vagner;ES;;;;132731;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Grupo Wagner;ES;;;;132732;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Grúpa Wagner;GA;;;;132733;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;groupe Vagner;FR;;;;132734;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Groupe Wagner;FR;;;;132735;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;grupa Vagner;HR;;;;132736;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Grupa Wagner;HR;;;;132737;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Vagner Csoport;HU;;;;132738;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Wagner Csoport;HU;;;;132739;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;„Vagnerio grupė“;LT;;;;132740;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Vagnerova skupina;SL;;;;132741;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Wagnerova skupina;SK;;;;132742;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Grupul Vagner;RO;;;;132743;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Grupul Wagner;RO;;;;132744;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Grupp Vagner;MT;;;;132745;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Grupp Wagner;MT;;;;132746;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132563;EU.6778.46;;2021-12-13;;(Date of UN designation: 2021-12-13);E;enterprise;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;Wagnergruppen;SV;;;;132747;EN;;amendment;council;2021-12-13;2021-12-13;2021/2195 (OJ L445I);HR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.445.01.0010.01.ENG&toc=OJ%3AL%3A2021%3A445I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132594;EU.6792.87;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Anatolij Anatoljevitj GLAZ;SV;M;;;132597;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132594;EU.6792.87;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Anatol Anatoljevitj HLAZ;SV;M;;;132598;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132594;EU.6792.87;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Анатолий Анатольевич ГЛАЗ;RU;M;;;132599;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132594;EU.6792.87;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Анатоль Анатольевіч ГЛАЗ;BE;M;;;132600;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132594;EU.6792.87;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Anatoliy Anatolyevich GLAZ;;M;;;132601;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132594;EU.6792.87;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Anatol Anatolyevich GLAZ;;M;;Head of the Department of Information and Digital Diplomacy (spokesperson) of the Ministry of Foreign Affairs of Belarus;132602;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132594;EU.6792.87;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-07-31;31;7;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;132595;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132594;EU.6792.87;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;132596;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC +28/10/2022;132603;EU.6793.86;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Sergej Aleksandrovitj JEPICHOV;SV;M;;;132610;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132603;EU.6793.86;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Siarhej Aljaksandravitj JEPICHAU;SV;M;;;132611;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132603;EU.6793.86;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Сергей Александрович ЕПИХОВ;RU;M;;;132612;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132603;EU.6793.86;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Сяргей Аляксандравіч ЕПІХАЎ;BE;M;;;132613;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132603;EU.6793.86;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Sergei Aleksandrovich EPIKHOV;;M;;;132614;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132603;EU.6793.86;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Siarhei Aliaksandravich EPIKHAU;;M;;Judge at the Minsk Regional Court;132615;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132603;EU.6793.86;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;14 Kedyshko St., apt. 11;;;;;NO;;BY;BELARUS;132604;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132603;EU.6793.86;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;Vileika;59 L.Tolstoy St., apt. 80;;;;;NO;;BY;BELARUS;132605;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132603;EU.6793.86;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;38 Timoshenko St., apt. 198;;;;;NO;;BY;BELARUS;132606;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132603;EU.6793.86;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-05-16;16;5;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;132607;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132603;EU.6793.86;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3160566B046PB4 (other-Other identification number) (Personal ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;132609;EN;Personal ID;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;132603;EU.6793.86;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;132608;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC +28/10/2022;132616;EU.6794.85;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Sergej Sergejevitj GIRGEL;SV;M;;;132621;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132616;EU.6794.85;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Siarhej Siarhejevitj HIRHEL;SV;M;;;132622;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132616;EU.6794.85;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Сергей Сергеевич ГИРГЕЛЬ;RU;M;;;132623;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132616;EU.6794.85;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Сяргей Сяргеевіч ГІРГЕЛЬ;BE;M;;;132624;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132616;EU.6794.85;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Sergei Sergeevich GIRGEL;;M;;;132625;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132616;EU.6794.85;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Siarhei Siarheevich GIRGEL;;M;;Senior Prosecutor of the Department of Public Prosecution of the General Prosecutor’s Office;132626;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132616;EU.6794.85;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;16 Lidskaya St., apt. 165;;;;;NO;;BY;BELARUS;132617;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132616;EU.6794.85;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-06-16;16;6;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;132618;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132616;EU.6794.85;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3160678H018PB5 (other-Other identification number) (Personal ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;132620;EN;Personal ID;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;132616;EU.6794.85;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;132619;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC +28/10/2022;132627;EU.6795.84;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Andrej Andrejevitj PROKOPUK;SV;M;;;132632;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132627;EU.6795.84;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Andrej Andrejevitj PRAKAPUK;SV;M;;;132633;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132627;EU.6795.84;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Андрей Андреевич ПРОКОПУК;RU;M;;;132634;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132627;EU.6795.84;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Андрэй Андрэевіч ПРАКАПУК;BE;M;;;132635;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132627;EU.6795.84;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Andrey Andreevich PROKOPUK;;M;;;132636;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132627;EU.6795.84;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Andrei Andreevich PRAKAPUK;;M;;"Deputy Director of the Financial Investigations Department of the State Control Committee of the Republic of Belarus; \nColonel of the Financial Police";132637;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132627;EU.6795.84;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;Priluki;22 Mira St., apt. 88;;;Minsk Region;;NO;;BY;BELARUS;132628;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132627;EU.6795.84;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-07-22;22;7;1973;;;NO;GREGORIAN;;Brest region;;Kobrin;BY;BELARUS;132629;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132627;EU.6795.84;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3220773C061PB1 (other-Other identification number) (Personal ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;132631;EN;Personal ID;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;132627;EU.6795.84;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;132630;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC +28/10/2022;132638;EU.6796.83;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Anna Michajlovna SOKOLOVSKAJA;SV;F;;;132643;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132638;EU.6796.83;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Hanna Michajlauna SAKALOUSKAJA;SV;F;;;132644;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132638;EU.6796.83;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Анна Михайловна СОКОЛОВСКАЯ;RU;F;;;132645;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132638;EU.6796.83;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Ганна Міхайлаўна САКАЛОЎСКАЯ;BE;F;;;132646;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132638;EU.6796.83;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Anna Mikhaylovna SOKOLOVSKAYA;;F;;;132647;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132638;EU.6796.83;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Hanna Mikhailauna SAKALOUSKAYA;;F;;Judge of the Judicial Collegium for Civil Cases at the Supreme Court;132648;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132638;EU.6796.83;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;22 Surhanava St., apt. 1;;;;;NO;;BY;BELARUS;132639;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132638;EU.6796.83;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-09-18;18;9;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;132640;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132638;EU.6796.83;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4180955A015P80 (other-Other identification number) (Personal ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;132642;EN;Personal ID;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;; +28/10/2022;132638;EU.6796.83;;2021-12-02;;(Date of UN designation: 2021-12-02)\n(Corrigendum 2021/2124 (OJ L430I) [corr. 06/01/2022-1]);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;132641;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC +28/10/2022;132649;EU.6797.82;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Dmitrij Sergejevitj KARSIUK;SV;M;;;132652;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132649;EU.6797.82;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Dzmitryj Siarhejevitj KARSIUK;SV;M;;;132653;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132649;EU.6797.82;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Дмитрий Сергеевич КАРСЮК;RU;M;;;132654;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132649;EU.6797.82;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Дзмітрый Сяргеевіч КАРСЮК;BE;M;;;132655;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132649;EU.6797.82;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Dmitriy Sergeevich KARSIUK;;M;;;132656;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132649;EU.6797.82;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;Dzmitry Siarheevich KARSIUK;;M;;Judge at the Central District of the City of Minsk Court;132657;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132649;EU.6797.82;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1995-07-07;7;7;1995;;;NO;GREGORIAN;;;;;00;UNKNOWN;132650;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132649;EU.6797.82;;2021-12-02;;(Date of UN designation: 2021-12-02);P;person;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;132651;EN;;amendment;council;2021-12-02;2021-12-02;2021/2124 (OJ L430I);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.430.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A430I%3ATOC +28/10/2022;132803;EU.6812.53;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Camila Antonia ORTEGA MURILLO;;F;;Daughter of Daniel Ortega and Rosario Murillo, Advisor to the Presidency, Coordinator of the Creative Economy Commission, Director of TV station Canal 13;132807;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132803;EU.6812.53;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-11-04;4;11;1987;;;NO;GREGORIAN;;;;Managua;NI;NICARAGUA;132804;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132803;EU.6812.53;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0010411870001B (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;132805;EN;ID number;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;; +28/10/2022;132803;EU.6812.53;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"A00000114 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;NI;;132806;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;; +28/10/2022;132803;EU.6812.53;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NI;;133116;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC +28/10/2022;132808;EU.6813.52;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Laureano Facundo ORTEGA MURILLO;;M;;Son of Daniel Ortega \nand Rosario Murillo, Advisor to the Presidency;132813;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132808;EU.6813.52;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-11-20;20;11;1982;;;NO;GREGORIAN;;;;Managua;NI;NICARAGUA;132809;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132808;EU.6813.52;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0012011820046M (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;132811;EN;ID number;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;; +28/10/2022;132808;EU.6813.52;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"A00000684 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;NI;;132812;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;; +28/10/2022;132808;EU.6813.52;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NI;;133117;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC +28/10/2022;132814;EU.6814.51;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Brenda Isabel ROCHA CHACÓN;;F;;President of the Supreme Electoral Council;132816;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132814;EU.6814.51;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-02-10;10;2;1967;;;NO;GREGORIAN;;;;Bonanza;NI;NICARAGUA;132815;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132814;EU.6814.51;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NI;;133118;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC +28/10/2022;132817;EU.6815.50;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Cairo Melvin AMADOR ARRIETA;;M;;Vice-President of the \nSupreme Electoral Council;132819;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132817;EU.6815.50;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;132818;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132817;EU.6815.50;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NI;;133119;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC +28/10/2022;132820;EU.6816.49;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-10-14;2022-10-15;2022/1935 (OJ L268);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1935;CAMPBELL HOOKER;Lumberto Ignacio;;Lumberto Ignacio CAMPBELL HOOKER;;M;;Member of the Supreme Electoral Council, acting President of the Supreme Electoral Council in 2018;132822;EN;;amendment;council;2022-10-14;2022-10-15;2022/1935 (OJ L268);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1935;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132820;EU.6816.49;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-10-14;2022-10-15;2022/1935 (OJ L268);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1935;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-12-03;3;12;1949;;;NO;GREGORIAN;;;;Raas;NI;NICARAGUA;132821;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132820;EU.6816.49;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-10-14;2022-10-15;2022/1935 (OJ L268);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1935;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6010302490003J (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;NI;;133121;EN;ID number;amendment;council;2022-10-14;2022-10-15;2022/1935 (OJ L268);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1935;;;;;;;;;;;;; +28/10/2022;132820;EU.6816.49;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-10-14;2022-10-15;2022/1935 (OJ L268);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1935;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"A00001109 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;NI;;133122;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;; +28/10/2022;132820;EU.6816.49;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-10-14;2022-10-15;2022/1935 (OJ L268);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1935;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NI;;133120;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC +28/10/2022;132823;EU.6817.48;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nahima Janett DÍAZ FLORES;;F;;Director of the Nicaraguan Institute of Telecommunications and Postal Services, daughter of the General Director of the Nicaraguan National Police Francisco Javier Díaz Madriz;132824;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132823;EU.6817.48;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989-06-28;28;6;1989;;;NO;GREGORIAN;;;;;00;UNKNOWN;133123;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132823;EU.6817.48;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NI;;133124;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC +28/10/2022;132825;EU.6818.47;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Luis Ángel MONTENEGRO ESPINOZA;;M;;Superintendent of the Superintendency of Banks and other Financial Institutions of Nicaragua;132829;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132825;EU.6818.47;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;Managua;Planes De Puntaldia Casa #16;;;;;NO;;NI;NICARAGUA;132826;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132825;EU.6818.47;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-01-01;1;1;1949;;;NO;GREGORIAN;;;;Esteli;NI;NICARAGUA;132827;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132825;EU.6818.47;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1610101490000S (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;132828;EN;ID number;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;; +28/10/2022;132825;EU.6818.47;;2022-01-10;;(Date of UN designation: 2022-01-10);P;person;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NI;;133125;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;La Policía Nacional Nicaragüense;;;;;132832;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;National Police of Nicaragua;;;;;132833;EN;Date of establishment: 22.8.1979;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Policía Nacional de Nicaragua;ES;;;;133126;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Национална полиция на Никарагуа;BG;;;;133127;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nicaraguas nationale politi;DA;;;;133128;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nikaragujská státní policie;CS;;;;133129;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nicaragua riiklik politsei;ET;;;;133130;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nationalpolizei Nicaraguas;DE;;;;133131;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Εθνική Αστυνομία της Νικαράγουας;EL;;;;133132;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nacionalna policija Nikaragve;HR;;;;133133;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Police nationale du Nicaragua;FR;;;;133134;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nikaragvos nacionalinė policija;LT;;;;133135;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nikaragvas Valsts policija;LV;;;;133136;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Polizia nazionale del Nicaragua;IT;;;;133137;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nationale politie van Nicaragua;NL;;;;133138;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Pulizija Nazzjonali tan-Nikaragwa;MT;;;;133139;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nicaraguai Nemzeti Rendőrség;HU;;;;133140;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Polícia Nacional da Nicarágua;PT;;;;133141;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nikaraguańska Policja Państwowa;PL;;;;133142;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nacionalna policija Nikaragve;SL;;;;133143;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nikaragujská štátna polícia;SK;;;;133144;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Poliția Națională din Nicaragua;RO;;;;133145;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Den nationella polisen i Nicaragua;SV;;;;133146;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nicaraguan kansallinen poliisi;FI;;;;133147;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132830;EU.6819.46;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;Managua;;;;;;NO;WEB[http://www.policia.gob.ni/]\n(Headquarters);NI;NICARAGUA;132831;EN;Headquarters;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Consejo Supremo Electoral;;;;;132836;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Supreme Electoral Council;;;;;132837;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Det øverste valgråd;DA;;;;133149;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nejvyšší volební rada;CS;;;;133150;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Върховен избирателен съвет;BG;;;;133151;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Ανώτατο Εκλογικό Συμβούλιο;EL;;;;133152;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Kõrgem valimisnõukogu;ET;;;;133153;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Oberster Wahlrat;DE;;;;133154;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Aukščiausioji rinkimų taryba;LT;;;;133155;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Augstākā vēlēšanu padome;LV;;;;133156;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Consiglio supremo elettorale;IT;;;;133157;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Vrhovno izborno povjerenstvo;HR;;;;133158;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Conseil électoral suprême;FR;;;;133159;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Hoge Kiesraad;NL;;;;133160;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Kunsill Elettorali Suprem;MT;;;;133161;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Legfelsőbb Választási Tanács;HU;;;;133162;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Conselho Supremo Eleitoral (CSE);PT;;;;133163;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Najwyższa Rada Wyborcza;PL;;;;133164;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Korkein vaalineuvosto;FI;;;;133165;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Vrhovni volilni svet;SL;;;;133166;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Najvyššia volebná rada;SK;;;;133167;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Consiliul Electoral Suprem;RO;;;;133168;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Det högsta valrådet;SV;;;;133169;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132834;EU.6820.24;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;Managua;Pista Juan Pablo II;;14005;;;NO;WEB[https://www.cse.gob.ni/]\nEMAIL[info@cse.gob.ni];NI;NICARAGUA;132835;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nicaraguan Institute of Telecommunications and Postal Services;;;;;132840;EN;Date of registration: 12.6.1982;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nicaraguanisches Institut für Telekommunikation und Postdienste;DE;;;;133170;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Det nicaraguanske institut for telekommunikations- og posttjenester;DA;;;;133171;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nikaragujský institut pro telekomunikace a poštovní služby;CS;;;;133172;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Instituto Nicaragüense de Telecomunicaciones y Correos;ES;;;;133173;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Никарагуански институт по телекомуникации и пощенски услуги;BG;;;;133174;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Institut nicaraguayen des télécommunications et des services postaux;FR;;;;133175;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Ινστιτούτο Τηλεπικοινωνιών και Ταχυδρομείων της Νικαράγουας;EL;;;;133176;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nicaragua telekommunikatsiooni ja postiteenuste instituut;ET;;;;133177;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nikaragvos telekomunikacijų ir pašto įstaiga;LT;;;;133178;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nikaragvas Telekomunikāciju un pasta pakalpojumu pārvalde;LV;;;;133179;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Istituto nicaraguense delle telecomunicazioni e dei servizi postali;IT;;;;133180;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nikaragvanski institut za telekomunikacije i poštanske usluge;HR;;;;133181;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;L-Istitut tan-Nikaragwa għat-Telekomunikazzjoni u s-Servizzi tal-Posta;MT;;;;133182;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nicaraguai Távközlési és Postai szolgáltatások Intézete;HU;;;;133183;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Institutul Nicaraguan de Telecomunicații și Servicii Poștale;RO;;;;133184;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Instituto Nicaraguense de Telecomunicações e Correios;PT;;;;133185;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nikaraguański Instytut Usług Telekomunikacyjnych i Pocztowych;PL;;;;133186;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nicaraguaans Instituut voor Telecommunicatie en Postdiensten;NL;;;;133187;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Det nicaraguanska institutet för telekommunikation och posttjänster;SV;;;;133188;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;The Nicaraguan Institute of Telecommunications and Postal Services;;;;;133189;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nikaragovski inštitut za telekomunikacije in poštne storitve;SL;;;;133190;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Nikaragujský inštitút telekomunikačných a poštových služieb;SK;;;;133191;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132838;EU.6821.23;;2022-01-10;;(Date of UN designation: 2022-01-10);E;enterprise;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;Managua;Avenida Bolívar, Esquina diagonal al edifico de la Cancillería, Aptdo 2664;;10000;;;NO;WEB[https://www.telcor.gob.ni];NI;NICARAGUA;132839;EN;;amendment;council;2022-01-10;2022-01-10;2022/22 (OJ L5I);NIC;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0004.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132874;EU.6832.88;QDi.431;2021-12-21;;(UN ID: QDi.431)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - TAQA);P;person;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;Shihab Mahajar;;;;;132929;EN;good quality alias;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132874;EU.6832.88;QDi.431;2021-12-21;;(UN ID: QDi.431)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - TAQA);P;person;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;Shihab Mohajir;;;;;132930;EN;good quality alias;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132874;EU.6832.88;QDi.431;2021-12-21;;(UN ID: QDi.431)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - TAQA);P;person;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;Shihab Muhajer;;;;;132931;EN;good quality alias;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132874;EU.6832.88;QDi.431;2021-12-21;;(UN ID: QDi.431)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - TAQA);P;person;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;Shihab al Muhajir;;;;;132932;EN;good quality alias;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132874;EU.6832.88;QDi.431;2021-12-21;;(UN ID: QDi.431)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - TAQA);P;person;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;Shahab Mahajar;;;;;132933;EN;good quality alias;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132874;EU.6832.88;QDi.431;2021-12-21;;(UN ID: QDi.431)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - TAQA);P;person;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;Shahab Mohajir;;;;;132934;EN;good quality alias;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132874;EU.6832.88;QDi.431;2021-12-21;;(UN ID: QDi.431)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - TAQA);P;person;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;Shahab Muhajer;;;;;132935;EN;good quality alias;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132874;EU.6832.88;QDi.431;2021-12-21;;(UN ID: QDi.431)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - TAQA);P;person;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;Dr. Shahab al Muhajir;;;;;132936;EN;good quality alias;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132874;EU.6832.88;QDi.431;2021-12-21;;(UN ID: QDi.431)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - TAQA);P;person;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;Sanaullah Ghafari;;;;Leader of the Islamic State of Iraq and the Levant-Khorasan (ISIL-K). Information Technology Expert;132937;EN;;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132874;EU.6832.88;QDi.431;2021-12-21;;(UN ID: QDi.431)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - TAQA);P;person;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;ثناء اللہ غفاری;;;;;132938;EN;;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132874;EU.6832.88;QDi.431;2021-12-21;;(UN ID: QDi.431)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - TAQA);P;person;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;;;;;;;;;;;;;;;;Kunduz;;;;;;NO;((previous));AF;AFGHANISTAN;132925;EN;(previous);amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132874;EU.6832.88;QDi.431;2021-12-21;;(UN ID: QDi.431)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - TAQA);P;person;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;((2021));AF;AFGHANISTAN;132926;EN;(2021);amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132874;EU.6832.88;QDi.431;2021-12-21;;(UN ID: QDi.431)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - TAQA);P;person;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1994-10-28;28;10;1994;;;NO;GREGORIAN;;;;;AF;AFGHANISTAN;132927;EN;;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132874;EU.6832.88;QDi.431;2021-12-21;;(UN ID: QDi.431)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - TAQA);P;person;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;132928;EN;;amendment;commission;2021-12-23;2021-12-23;2021/2311 (OJ L458I);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2021.458.01.0001.01.ENG&toc=OJ%3AL%3A2021%3A458I%3ATOC +28/10/2022;132888;EU.6833.87;CFi.015;2021-12-21;;(UN ID: CFi.015)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - CAR);P;person;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Général Ali Darassa;;;;;133108;EN;low quality alias;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132888;EU.6833.87;CFi.015;2021-12-21;;(UN ID: CFi.015)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - CAR);P;person;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Ali Darrassa;;;;;133109;EN;good quality alias;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132888;EU.6833.87;CFi.015;2021-12-21;;(UN ID: CFi.015)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - CAR);P;person;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Ali Daras;;;;;133110;EN;good quality alias;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132888;EU.6833.87;CFi.015;2021-12-21;;(UN ID: CFi.015)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - CAR);P;person;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Ali Mahamat Darassa;;;;;133111;EN;good quality alias;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132888;EU.6833.87;CFi.015;2021-12-21;;(UN ID: CFi.015)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - CAR);P;person;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Ali Darassa Mahamat;;;;;133112;EN;good quality alias;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132888;EU.6833.87;CFi.015;2021-12-21;;(UN ID: CFi.015)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - CAR);P;person;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;Ali DARASSA;;;;Founder and leader of the Unité pour la Paix en Centrafrique (UPC);133113;EN;;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132888;EU.6833.87;CFi.015;2021-12-21;;(UN ID: CFi.015)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - CAR);P;person;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-09-22;22;9;1978;;;NO;GREGORIAN;;;Ouham Prefecture;Kabo;CF;CENTRAL AFRICAN REPUBLIC;133105;EN;;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132888;EU.6833.87;CFi.015;2021-12-21;;(UN ID: CFi.015)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - CAR);P;person;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10978000004482 (other-Other identification number) (National Identification No.);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;133107;EN;National Identification No.;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;; +28/10/2022;132888;EU.6833.87;CFi.015;2021-12-21;;(UN ID: CFi.015)\n(Date of UN designation: 2021-12-21)\n(UNLI - 21.12.2021 - CAR);P;person;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CF;;133106;EN;;amendment;council;2022-01-10;2022-01-10;2022/21 (OJ L5I);CAF;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.005.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A005I%3ATOC +28/10/2022;132966;EU.6852.26;QDi.432;2021-12-29;;(UN ID: QDi.432)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);P;person;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;Achraf Ben Fathi Ben Mabrouk Guizani;;;;;133008;EN;good quality alias;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132966;EU.6852.26;QDi.432;2021-12-29;;(UN ID: QDi.432)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);P;person;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;Achref Ben Fethi Ben Mabrouk Guizani;;;;;133009;EN;good quality alias;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132966;EU.6852.26;QDi.432;2021-12-29;;(UN ID: QDi.432)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);P;person;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;Abu ‘Ubaydah al-Kafi;;;;;133010;EN;good quality alias;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132966;EU.6852.26;QDi.432;2021-12-29;;(UN ID: QDi.432)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);P;person;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;Ashraf al-Gizani;;;;;133011;EN;good quality alias;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132966;EU.6852.26;QDi.432;2021-12-29;;(UN ID: QDi.432)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);P;person;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;أشرف   القيزاني;AR;;;;133012;EN;;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132966;EU.6852.26;QDi.432;2021-12-29;;(UN ID: QDi.432)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);P;person;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;Ashraf Al-Qizani;;;;Senior member of Islamic State in Iraq and the Levant (ISIL), listed as Al-Qaida in Iraq;133013;EN;Recruited for ISIL and instructed individuals to perpetrate terrorist acts via online video.;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132966;EU.6852.26;QDi.432;2021-12-29;;(UN ID: QDi.432)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);P;person;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1991-10-05;5;10;1991;;;NO;GREGORIAN;;;Dahmani, Governorate of Le Kef;El Gouazine;TN;TUNISIA;133005;EN;;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132966;EU.6852.26;QDi.432;2021-12-29;;(UN ID: QDi.432)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);P;person;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13601334 (id-National identification card) (National identification no);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;TN;;133007;EN;National identification no;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;; +28/10/2022;132966;EU.6852.26;QDi.432;2021-12-29;;(UN ID: QDi.432)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);P;person;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;TN;;133006;EN;;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC +28/10/2022;132976;EU.6853.25;QDe.167;2021-12-29;;(UN ID: QDe.167)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);E;enterprise;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;Ajnad;;;;;133014;EN;;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132976;EU.6853.25;QDe.167;2021-12-29;;(UN ID: QDe.167)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);E;enterprise;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;Daesh Tunisia;;;;;133015;EN;;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132976;EU.6853.25;QDe.167;2021-12-29;;(UN ID: QDe.167)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);E;enterprise;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;Vanguards of the Soldiers of the Caliphate;;;;;133016;EN;;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132976;EU.6853.25;QDe.167;2021-12-29;;(UN ID: QDe.167)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);E;enterprise;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;Tala I Jund al-Khilafah;;;;;133017;EN;;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132976;EU.6853.25;QDe.167;2021-12-29;;(UN ID: QDe.167)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);E;enterprise;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;Soldiers of the Caliphate in Tunisia;;;;;133018;EN;;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132976;EU.6853.25;QDe.167;2021-12-29;;(UN ID: QDe.167)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);E;enterprise;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;Jund al-Khilafah fi Tunis;;;;;133019;EN;;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132976;EU.6853.25;QDe.167;2021-12-29;;(UN ID: QDe.167)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);E;enterprise;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;Jund al Khilafah;;;;;133020;EN;;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132976;EU.6853.25;QDe.167;2021-12-29;;(UN ID: QDe.167)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);E;enterprise;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;Jund al-Khilafa;;;;;133021;EN;;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132976;EU.6853.25;QDe.167;2021-12-29;;(UN ID: QDe.167)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);E;enterprise;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;Soldiers of the Caliphate;;;;;133022;EN;;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132976;EU.6853.25;QDe.167;2021-12-29;;(UN ID: QDe.167)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);E;enterprise;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;ISIL-Tunisia Province;;;;;133023;EN;;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132976;EU.6853.25;QDe.167;2021-12-29;;(UN ID: QDe.167)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);E;enterprise;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;ISIL-Tunisia;;;;;133024;EN;;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132976;EU.6853.25;QDe.167;2021-12-29;;(UN ID: QDe.167)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);E;enterprise;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;جند الخلافة في تونس;AR;;;;133025;EN;;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;132976;EU.6853.25;QDe.167;2021-12-29;;(UN ID: QDe.167)\n(Date of UN designation: 2021-12-29)\n(UNLI - 30.12.2021);E;enterprise;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;Jund Al-Khilafah in Tunisia (JAK-T);;;;;133026;EN;Formed in November 2014. Associated with Islamic State in Iraq and the Levant, listed as Al-Qaida in Iraq;amendment;commission;2022-01-05;2022-01-05;2022/5 (OJ L1);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.001.01.0009.01.ENG&toc=OJ%3AL%3A2022%3A001%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133283;EU.6872.61;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Ousama Mahmood;;;;;133285;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133283;EU.6872.61;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Ustadh Usama Mahmood;;;;;133286;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133283;EU.6872.61;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Osama MAHMOOD;;;;;133287;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133283;EU.6872.61;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PK;;133284;EN;(presumed);amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133288;EU.6873.60;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Sultan Aziz Ezzam;;;;;133291;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133288;EU.6873.60;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Sultan Azziz Azzam;;;;;133292;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133288;EU.6873.60;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Sultan Aziz;;;;;133293;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133288;EU.6873.60;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Aziz Azam;;;;;133294;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133288;EU.6873.60;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Sultan Aziz AZAM;;;;;133295;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133288;EU.6873.60;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985;;;NO;GREGORIAN;;;;;AF;AFGHANISTAN;133289;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133288;EU.6873.60;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AF;;133290;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Qaedat al-Jihad in the Indian Subcontinent;;;;;133297;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Qa’ida in the Indian Subcontinent;;;;;133298;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Qaeda in the Indian Subcontinent (AQIS);;;;;133299;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Qaedat al-Jihad del Subcontinente Indio;ES;;;;133774;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Qaida del Subcontinente Indio;ES;;;;133775;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al Qaeda del Subcontinente Indio;ES;;;;133776;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Ал-Кайда на Индийския субконтинент;BG;;;;133777;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Qaedat al-Jihad auf dem indischen Subkontinent;DE;;;;133778;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Qa’ida auf dem indischen Subkontinent;DE;;;;133779;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Qaeda auf dem indischen Subkontinent;DE;;;;133780;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;al-Káida na indickém subkontinentu;CS;;;;133781;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Qaeda i bhfo-ilchríoch na hIndia (AQIS);GA;;;;133782;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Qaida en guerre sainte dans le sous-continent indien;FR;;;;133783;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;India poolsaare Al Qaeda;ET;;;;133784;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Qaedat al-Jihad i bhfo-ilchríoch na hIndia;GA;;;;133785;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Qa’ida i bhfo-ilchríoch na hIndia;GA;;;;133786;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Qaedat al-Jihad na Indijskom potkontinentu;HR;;;;133787;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Qa’ida na Indijskom potkontinentu;HR;;;;133788;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Qaida na Indijskom potkontinentu (AQIS);HR;;;;133789;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Kaida az Indiai Szubkontinensen;HU;;;;133790;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Indijos pusiasalio Al-Qaida;LT;;;;133791;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Qàida in the Indian Subcontinent;IT;;;;133792;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Qaedat al-Jihad fis-Subkontinent Indjan;MT;;;;133793;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Qa’ida fis-Subkontinent Indjan;MT;;;;133794;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Qaeda fis-Subkontinent Indjan (AQIS);MT;;;;133795;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Qaedat al-Jihad op het Indiase subcontinent;NL;;;;133796;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Qa’ida op het Indiase subcontinent;NL;;;;133797;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al Qaida op het Indische subcontinent (AQIS);NL;;;;133798;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Qaedat al-Jihad do subcontinente indiano;PT;;;;133799;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Qaida do subcontinente indiano;PT;;;;133800;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Alcaida do Subcontinente Indiano (AQIS);PT;;;;133801;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Kaida na subkontynencie indyjskim;PL;;;;133802;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Qaedat al-Jihad în Subcontinentul Indian;RO;;;;133803;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Qaida în Subcontinentul Indian;RO;;;;133804;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Qaedat al-Jihad na Indijski podcelini;SL;;;;133805;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al-Qa’ida na Indijski podcelini;SL;;;;133806;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133296;EU.6874.59;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Al Kaida na Indijski podcelini (AQIS);SL;;;;133807;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Da’esh - Wilayat al-Hind;;;;;133301;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;IS-Wilayat al-Hind;;;;;133302;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Islamic State’s Hind Province (ISHP);;;;;133303;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Wilayah of Hind;;;;;133304;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Da’esh - Hind Province;;;;;133305;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Provincia de Hind del Estado Islámico (ISHP);ES;;;;133738;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Daesh — provincia de Hind;ES;;;;133739;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Даиш — провинция Инд;BG;;;;133740;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Hindi provintsi Daesh;ET;;;;133741;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Provinz Hind des Islamischen Staates;DE;;;;133742;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Provinz Hind;DE;;;;133743;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Islámský stát v provincii Indie;CS;;;;133744;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Province du Hind de l’État islamique;FR;;;;133745;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Wilaya du Hind;FR;;;;133746;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Daech — Province du Hind;FR;;;;133747;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Cúige Hind an Stáit Ioslamaigh (ISHP);GA;;;;133748;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Wilayah Hind;GA;;;;133749;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Da’esh - Cúige Hind;GA;;;;133750;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Hindo provincijos Da’esh;LT;;;;133751;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Dàesh - Wilayat al-Hind;IT;;;;133752;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Dàesh - Hind Province;IT;;;;133753;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Daiš – pokrajina Hind;HR;;;;133754;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Prowincja Hind Państwa Islamskiego;PL;;;;133755;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Wilaja z Hind;PL;;;;133756;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Daisz w prowincji Hind;PL;;;;133757;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Islamitische Staat Hind Province (ISHP);NL;;;;133758;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Provinċja ta’ Hind tal-Istat Iżlamiku;MT;;;;133759;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Wilayah ta’ Hind;MT;;;;133760;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Da’esh –Provinċja ta’ Hind;MT;;;;133761;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Dáis – Hind tartomány;HU;;;;133762;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Daexe — Wilayat al-Hind;PT;;;;133763;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;IS[EI]-Wilayat al-Hind;PT;;;;133764;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Província de Hind do Estado Islâmico (ISHP);PT;;;;133765;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Wilayah do Hind;PT;;;;133766;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Daexe — Província de Hind;PT;;;;133767;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;provinca Hind Islamske države;SL;;;;133768;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Daiš – provinca Hind;SL;;;;133769;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Provincia Hind a Statului Islamic;RO;;;;133770;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Wilayah din Hind;RO;;;;133771;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133300;EU.6875.58;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Da’esh – Provincia Hind;RO;;;;133772;EN;;amendment;council;2022-02-21;2022-02-21;2022/235 (OJ L40);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133323;EU.6892.96;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЧЕРНЯК;Алексей;Юрьевич;Алексей Юрьевич ЧЕРНЯК;RU;M;;;133326;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133323;EU.6892.96;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;CHERNIAK;Aleksei;Yurievich;Aleksei Yurievich CHERNIAK;;M;;"Member of the State Duma of the Russian Federation since 19 September 2021; Member of the ruling United \nRussia party";133327;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133323;EU.6892.96;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Jurjevitj TJERNJAK;SV;M;;;133825;EN;;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133323;EU.6892.96;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;CHERNYAK;Alexey;Yurievich;Alexey Yurievich CHERNYAK;;M;;;142919;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133323;EU.6892.96;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-08-27;27;8;1973;;;NO;GREGORIAN;;;;Alma-Ata;KZ;KAZAKHSTAN;133324;EN;Kazakh SSR;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133323;EU.6892.96;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;133325;EN;;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133328;EU.6893.95;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БАБАШОВ;Леонид;Иванович;Леонид Иванович БАБАШОВ;RU;M;;;133330;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133328;EU.6893.95;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BABASHOV;Leonid;Ivanovich;Leonid Ivanovich BABASHOV;;M;;"Member of the State Duma of the Russian Federation since 19 September 2021; Member of the ruling United \nRussia party";133331;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133328;EU.6893.95;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Leonid Ivanovitj BABASJOV;SV;M;;;133826;EN;;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133328;EU.6893.95;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-01-31;31;1;1966;;;NO;GREGORIAN;;Crimea Oblast;;Petrovka;UA;UKRAINE;133329;EN;Ukrainian SSR;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133332;EU.6894.94;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛОБАЧ;Татьяна;Георгиевна;Татьяна Георгиевна ЛОБАЧ;RU;F;;;133334;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133332;EU.6894.94;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LOBACH;Tatiana;Georgievna;Tatiana Georgievna LOBACH;;F;;"Member of the State Duma of the Russian Federation since 19 September 2021; Member of the ruling United Russia party";133335;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133332;EU.6894.94;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Tatiana Georgijevna LOBATJ;SV;F;;;133827;EN;;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133332;EU.6894.94;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-01-08;8;1;1974;;;NO;GREGORIAN;;;;Khmelnytskyi;UA;UKRAINE;133333;EN;Ukrainian SSR;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133336;EU.6895.93;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Нина Сергеевна ФАУСТОВА;;F;;;133338;EN;;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133336;EU.6895.93;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Nina Sergeevna FAUSTOVA;;F;;Head of Sevastopol electoral commission;133339;EN;;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133336;EU.6895.93;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Nina Sergejevna FAUSTOVA;SV;F;;;133828;EN;;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133336;EU.6895.93;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-07-11;11;7;1983;;;NO;GREGORIAN;;;Republic of Tuva;Kyzyl;RU;RUSSIAN FEDERATION;133337;EN;Russian SFSR;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133340;EU.6896.92;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Александр Евгеньевич ЧМЫХАЛОВ;;M;;;133342;EN;;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133340;EU.6896.92;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Aleksandr Evgenevich CHMYHALOV;;M;;"Deputy Head of Sevastopol electoral commission; Member of the ruling ‘United Russia’ party";133343;EN;;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133340;EU.6896.92;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Aleksandr Jevgenjevitj TJMYCHALOV;SV;M;;;133829;EN;;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133340;EU.6896.92;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1990-06-13;13;6;1990;;;NO;GREGORIAN;;;;;00;UNKNOWN;133341;EN;;amendment;council;2022-02-21;2022-02-21;2022/236 (OJ L40);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133376;EU.6913.61;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Aung Naing Oo;;M;;Minister for Investment and \nForeign Economic Relations since 2 February 2021;133382;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133376;EU.6913.61;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;Yangon;L 103, Kenyeikthar Lane 6, FMI city;;;;;NO;;MM;MYANMAR;133377;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133376;EU.6913.61;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-10-13;13;10;1962;;;NO;GREGORIAN;;;Mandalay;Kyaukse;MM;MYANMAR;133378;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133376;EU.6913.61;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7/PaKhaNa (Naing) 13345 (other-Other identification number) (National ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;133380;EN;National ID;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;; +28/10/2022;133376;EU.6913.61;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"DM002656 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;133381;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;; +28/10/2022;133376;EU.6913.61;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133379;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133383;EU.6914.60;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Charlie Than;;M;;Minister of Industry since 22 May \n2021;133387;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133383;EU.6914.60;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;Yangon;Room No (23), Building No (25), Palm Village Villa, Yankin Yanshin Street;;;;;NO;;MM;MYANMAR;133384;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133383;EU.6914.60;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950;;;NO;GREGORIAN;;;;;00;UNKNOWN;133385;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133383;EU.6914.60;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133386;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133388;EU.6915.59;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Thet Thet Khine;;F;;Minister of Social Welfare, \nRelief and Resettlement since 4 February 2021;133394;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133388;EU.6915.59;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;Yangon;127A Dhamazadei Road, Kamayut;;;;;NO;;MM;MYANMAR;133389;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133388;EU.6915.59;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-08-19;19;8;1967;;;NO;GREGORIAN;;;;Mogok;MM;MYANMAR;133390;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133388;EU.6915.59;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9MAKANAN034200 (other-Other identification number) (National ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;133392;EN;National ID;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;; +28/10/2022;133388;EU.6915.59;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MB132403 (passport-National passport) (on 2015-05-07 valid to 2020-05-06)[known to be expired];NO;YES;NO;NO;NO;;2015-05-07;;2020-05-06;;;passport;National passport;;MM;;133393;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;; +28/10/2022;133388;EU.6915.59;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133391;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133395;EU.6916.58;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;U Maung Maung Ohn;;M;;;133397;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133395;EU.6916.58;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Maung Maung Ohn;;M;;Minister of Information \nsince 1 August 2021;133398;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133395;EU.6916.58;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133396;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133399;EU.6917.57;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;U Shwe Kyein;;M;;;133401;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133399;EU.6917.57;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Shwe Kyein;;M;;a member of the State Administrative Council (SAC) since 30 March 2021;133402;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133399;EU.6917.57;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133400;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133403;EU.6918.56;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;U Aung Moe Myint;;M;;;133405;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133403;EU.6918.56;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Aung Moe Myint;;M;;nominated as a member the Union Election Commission (UEC) on 23 February \n2021;133406;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133403;EU.6918.56;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133404;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133407;EU.6919.55;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;U Than Tun;;M;;;133409;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133407;EU.6919.55;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Than Tun;;M;;nominated as a member the Union \nElection Commission (UEC) on 2 February 2021;133410;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133407;EU.6919.55;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133408;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133411;EU.6920.33;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;U Aung Lwin OO;;M;;;133413;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133411;EU.6920.33;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Aung Lwin Oo;;M;;nominated as a member the \nUnion Election Commission (UEC) on 23 February 2021;133414;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133411;EU.6920.33;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133412;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133415;EU.6921.32;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;U Aung Saw Win;;M;;;133417;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133415;EU.6921.32;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Aung Saw Win;;M;;nominated as a member the \nUnion Election Commission (UEC) on 2 February 2021;133418;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133415;EU.6921.32;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133416;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133419;EU.6922.31;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Than Win;;M;;nominated as a member the \nUnion Election Commission (UEC) on 2 February 2021;133421;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133419;EU.6922.31;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133420;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133422;EU.6923.30;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;U Saw Ba Hline;;M;;;133424;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133422;EU.6923.30;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Saw Ba Hline;;M;;nominated as a member the \nUnion Election Commission (UEC) on 9 February 2021;133425;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133422;EU.6923.30;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133423;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133426;EU.6924.29;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;U Soe OO;;M;;;133428;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133426;EU.6924.29;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Soe Oo;;M;;nominated as a member the Union \nElection Commission (UEC) on 9 February 2021;133429;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133426;EU.6924.29;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133427;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133430;EU.6925.28;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;U Than Soe;;M;;;133432;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133430;EU.6925.28;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Than Soe;;M;;nominated as a member the Union \nElection Commission (UEC) on 26 February 2021;133433;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133430;EU.6925.28;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133431;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133434;EU.6926.27;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;U Bran Shaung;;M;;;133436;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133434;EU.6926.27;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Bran Shaung;;M;;nominated as a member the \nUnion Election Commission (UEC) on 26 February 2021;133437;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133434;EU.6926.27;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133435;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133438;EU.6927.26;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;U Myint Oo;;M;;;133440;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133438;EU.6927.26;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Myint Oo;;M;;nominated as a member the Union \nElection Commission (UEC) on 26 February 2021;133441;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133438;EU.6927.26;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133439;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133442;EU.6928.25;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;U Khin Maung Oo;;M;;;133444;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133442;EU.6928.25;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Khin Maung Oo;;M;;nominated as a member the Union Election Commission (UEC) on 26 February 2021;133445;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133442;EU.6928.25;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133443;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133446;EU.6929.24;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Daw Nu Mya Zan;;F;;;133448;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133446;EU.6929.24;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Nu Mya Zan;;F;;nominated as a member the \nUnion Election Commission (UEC) on 26 February2021;133449;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133446;EU.6929.24;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133447;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133450;EU.6930.2;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;U Myint Thein;;M;;;133452;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133450;EU.6930.2;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Myint Thein;;M;;nominated as a member the \nUnion Election Commission (UEC) on 26 February 2021;133453;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133450;EU.6930.2;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133451;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133454;EU.6931.1;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Dr Ba Maung;;M;;;133456;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133454;EU.6931.1;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Ba Maung;;M;;nominated as a member the Union Election Commission (UEC) on 26 February 2021;133457;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133454;EU.6931.1;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133455;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133458;EU.6932.0;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Tayza Kyaw;;M;;a member of the Myanmar Armed Forces (Tatmadaw) and occupies various high-ranking positions, including Commander of the Northern Command and Commander of the Bureau of Special Operations No. 1 (BSO 1);133460;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133458;EU.6932.0;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;U Tayza Kyaw;;M;;;133811;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133458;EU.6932.0;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133459;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133461;EU.6933.96;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Ni Lin Aung;;M;Brigadier General;Commander of the \nEastern Command of the Myanmar Armed Forces (Tatmadaw);133463;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133461;EU.6933.96;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133462;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133464;EU.6934.95;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Aung Zaw Aye;;M;Lieutenant General;Commander of the Bureau of Special Operations No. 2 of the Myanmar Armed Forces (Tatmadaw);133466;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133464;EU.6934.95;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MM;;133465;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC +28/10/2022;133467;EU.6935.94;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Htoo Group of Companies;;;;;133469;EN;Type of entity: holding company;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133467;EU.6935.94;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Groupe d'entreprises Htoo;FR;;;;133812;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133467;EU.6935.94;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;grupo de empresas Htoo;ES;;;;133813;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133467;EU.6935.94;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;Yangon;5 Pyay Roas, Hlaing Township;;;;;NO;WEB[https://htoo.com/]\nPHONE[+95 1 500344 / +95 1 500355]\n(Place of registration: Myanmar/Burma);MM;MYANMAR;133468;EN;Place of registration: Myanmar/Burma;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133470;EU.6936.93;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;International Group of Entrepreneurs (IGE) Company Limited;;;;;133472;EN;Type of entity: private enterprise;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133470;EU.6936.93;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;Yangon;No. 36-G, 37-F, level-20, Office Tower (2), Time City, Corner of Kyun taw Street and Hantharwaddy Road, (7), Quarter, Kamayut Township;;;;;NO;WEB[www.ige.com.mm]\nPHONE[+95775111112]\n(Place of registration: Myanmar/Burma);MM;MYANMAR;133471;EN;Place of registration: Myanmar/Burma;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133473;EU.6937.92;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;No. 1 Mining Enterprise (ME1);;;;;133475;EN;Type of entity: State-owned enterprise;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133473;EU.6937.92;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;Monywa;Bu Tar Street, Forest Street, Corner of Yone Gyi Quarter;;;;Sagaing Region;NO;PHONE[09-071-21168]\n(Place of registration: Myanmar/Burma);MM;MYANMAR;133474;EN;Place of registration: Myanmar/Burma;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133503;EU.6952.35;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;DIAW;Malick;;Malick DIAW;;M;;President \nof the National \nTransition Council \n(legislative organ \nof the transition), \nColonel;133504;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133503;EU.6952.35;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;Bamako;Koulouba – Présidence de la République;;00223;;;NO;;ML;MALI;133526;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133503;EU.6952.35;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-12-02;2;12;1979;;;NO;GREGORIAN;;;;Ségou;ML;MALI;133527;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133503;EU.6952.35;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;B0722922 (passport-National passport) (on 2018-08-13)[known to be expired];NO;YES;NO;NO;NO;;2018-08-13;;;;;passport;National passport;;00;;133562;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;; +28/10/2022;133503;EU.6952.35;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ML;;133528;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC +28/10/2022;133505;EU.6953.34;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;WAGUÉ;Ismaël;;Ismaël WAGUÉ;;M;;Minister for Reconciliation, Colonel-major;133509;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133505;EU.6953.34;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;Bamako;Koulouba – Présidence de la République;;00223;;;NO;;ML;MALI;133506;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133505;EU.6953.34;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-03-02;2;3;1975;;;NO;GREGORIAN;;;;Bamako;ML;MALI;133507;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133505;EU.6953.34;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0193660 (passport-National passport) (valid to 2023-02-15 diplomatic);YES;NO;NO;NO;NO;;;;2023-02-15;;;passport;National passport;;00;;133563;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;; +28/10/2022;133505;EU.6953.34;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ML;;133508;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC +28/10/2022;133510;EU.6954.33;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;MAÏGA;Choguel;;Choguel MAÏGA;;M;;Prime Minister;133515;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133510;EU.6954.33;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;Bamako;Koulouba – Présidence de la République;;00223;;;NO;;ML;MALI;133511;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133510;EU.6954.33;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-12-31;31;12;1958;;;NO;GREGORIAN;;Gao;;Tabango;ML;MALI;133512;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133510;EU.6954.33;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;DA0004473 (passport-National passport) (issued by Mali diplomatic)(Schengen visa \nissued);YES;NO;NO;NO;NO;Mali;;;;;;passport;National passport;;ML;;133514;EN;Schengen visa \nissued;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;; +28/10/2022;133510;EU.6954.33;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ML;;133513;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC +28/10/2022;133516;EU.6955.32;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;MAÏGA;Ibrahim Ikassa;;Ibrahim Ikassa MAÏGA;;M;;Minister of Refoundation;133520;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133516;EU.6955.32;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;Bamako;Koulouba – Présidence de la République;;00223;;;NO;;ML;MALI;133517;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133516;EU.6955.32;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-02-05;5;2;1971;;;NO;GREGORIAN;;Gao region;;Tondibi;ML;MALI;133518;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133516;EU.6955.32;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;- (passport-National passport) (issued by Mali diplomatic);YES;NO;NO;NO;NO;Mali;;;;;;passport;National passport;;ML;;133565;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;; +28/10/2022;133516;EU.6955.32;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ML;;133519;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC +28/10/2022;133521;EU.6956.31;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;DIARRA;Adama Ben;;Adama Ben DIARRA;;M;;Member of the National Transition Council (legislative organ of the Transition);133525;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133521;EU.6956.31;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;Ben Le Cerveau;;M;;;133567;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133521;EU.6956.31;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;Bamako;Koulouba – Présidence de la République;;00223;;;NO;;ML;MALI;133522;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133521;EU.6956.31;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Kati;ML;MALI;133523;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133521;EU.6956.31;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;- (passport-National passport) (issued by Mali diplomatic)(Schengen Visa issued);YES;NO;NO;NO;NO;Mali;;;;;;passport;National passport;;ML;;133566;EN;Schengen Visa issued;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;; +28/10/2022;133521;EU.6956.31;;2022-02-04;;(Date of UN designation: 2022-02-04);P;person;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ML;;133524;EN;;amendment;council;2022-02-04;2022-02-04;2022/156 (OJ L25I);MLI;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.025.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A025I%3ATOC +28/10/2022;133626;EU.6972.70;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Hala Tarif ALMAGHOUT;;F;;Widow of Mohammed Makhlouf. Member of the Makhlouf family.;133630;EN;;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133626;EU.6972.70;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;هلا طريف الماغوط;AR;F;;;133818;EN;;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133626;EU.6972.70;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-07-30;30;7;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;133628;EN;;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133626;EU.6972.70;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-06-30;30;6;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;133629;EN;;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133631;EU.6973.69;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Ghada Adib MHANNA;;F;;Widow of Mohammed Makhlouf. Member of the Makhlouf family.;133633;EN;;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133631;EU.6973.69;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;غاده أديب مهنا;AR;F;;;133819;EN;;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133631;EU.6973.69;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-05-22;22;5;1948;;;NO;GREGORIAN;;;;;00;UNKNOWN;133632;EN;;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133634;EU.6974.68;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Shalaa Mohammed MAKHLOUF;;F;;Daughter of Mohammed Makhlouf. Member of the Makhlouf family.;133636;EN;;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133634;EU.6974.68;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;شهلاء محمد مخلوف;AR;F;;;133820;EN;;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133634;EU.6974.68;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-03-22;22;3;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;133635;EN;;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133637;EU.6975.67;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Kinda Mohammed MAKHLOUF;;F;;Daughter of Mohammed Makhlouf. Member of the Makhlouf family.;133639;EN;;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133637;EU.6975.67;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;كندا محمد مخلوف;AR;F;;;133821;EN;;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133637;EU.6975.67;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-09-25;25;9;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;133638;EN;;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133640;EU.6976.66;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Sara Mohammed MAKHLOUF;;F;;Daughter of Mohammed Makhlouf. Member of the Makhlouf family.;133642;EN;;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133640;EU.6976.66;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;ساره محمد مخلوف;AR;F;;;133822;EN;;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133640;EU.6976.66;;2022-02-21;;(Date of UN designation: 2022-02-21);P;person;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-08-27;27;8;1984;;;NO;GREGORIAN;;;;;00;UNKNOWN;133641;EN;;amendment;council;2022-02-21;2022-02-21;2022/237 (OJ L40);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0006.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133689;EU.6992.8;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Myanma Oil and Gas Enterprise;;;;;133691;EN;Type of entity: State-owned enterprise;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133689;EU.6992.8;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Mjanmarský ropný a plynárenský podnik;SK;;;;133814;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133689;EU.6992.8;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;Companhia de Mianmar de Petróleo e Gás;PT;;;;133815;EN;;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133689;EU.6992.8;;2022-02-21;;(Date of UN designation: 2022-02-21);E;enterprise;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;Nay Pyi Taw;Ministry of Electricity and Energy, Building No.(6);;;;;NO;WEB[http://www.moee.go v.mm/en/ignite/page /40]\nPHONE[+95-67-3 411 055]\n(Place of registration: Myanmar/Burma);MM;MYANMAR;133690;EN;Place of registration: Myanmar/Burma;amendment;council;2022-02-21;2022-02-21;2022/239 (OJ L40);MMR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.040.01.0010.01.ENG&toc=OJ%3AL%3A2022%3A040%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133863;EU.7032.4;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Gennady Andreevich ZYUGANOV;;M;;Member of the State Duma;133865;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133863;EU.7032.4;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Геннадий Андреевич ЗЮГАНОВ;;M;;;133886;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133863;EU.7032.4;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Gennadij Andrejevitj ZIUGANOV;SV;;;;143822;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133863;EU.7032.4;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944-06-26;26;6;1944;;;NO;GREGORIAN;;;;;00;UNKNOWN;133864;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133866;EU.7033.3;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Yury Vyacheslavovich AFONIN;;M;;Member of the State Duma;133868;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133866;EU.7033.3;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Юрий Вячеславович АФОНИН;RU;M;;;133887;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133866;EU.7033.3;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jurij Vjatjeslavovitj AFONIN;SV;;;;143823;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133866;EU.7033.3;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-03-22;22;3;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;133867;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133869;EU.7034.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Ivanovich KASHIN;;M;;Member of the State Duma;133871;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133869;EU.7034.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Владимир Иванович КАШИН;;M;;;133888;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133869;EU.7034.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Ivanovitj KASJIN;SV;M;;;144194;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133869;EU.7034.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-08-10;10;8;1948;;;NO;GREGORIAN;;;;;00;UNKNOWN;133870;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133872;EU.7035.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitry Georgyevich NOVIKOV;;M;;Member of the State Duma;133874;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133872;EU.7035.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Дмитрий Георгиевич НОВИКОВ;;M;;;133889;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133872;EU.7035.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Georgijevitj NOVIKOV;SV;M;;;144195;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133872;EU.7035.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-09-12;12;9;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;133873;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133875;EU.7036.0;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolai Mikhailovich KHARITONOV;;M;;Member of the State Duma;133877;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133875;EU.7036.0;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Николай Михайлович ХАРИТОНОВ;;M;;;133890;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133875;EU.7036.0;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Michajlovitj CHARITONOV;SV;M;;;144193;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133875;EU.7036.0;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-10-30;30;10;1948;;;NO;GREGORIAN;;;;;00;UNKNOWN;133876;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133878;EU.7037.96;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОЛОМЕЙЦЕВ;Николай;Васильевич;Николай Васильевич КОЛОМЕЙЦЕВ;RU;M;;;133880;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133878;EU.7037.96;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOLOMEYTSEV;Nikolai;Vasilevich;Nikolai Vasilevich KOLOMEYTSEV;;M;;Member of the State Duma;133881;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133878;EU.7037.96;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Vasiljevitj KOLOMEJTSEV;SV;;;;143827;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133878;EU.7037.96;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-09-01;1;9;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;133879;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133882;EU.7038.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ШАРГУНОВ;Сергей;Александрович;Сергей Александрович ШАРГУНОВ;RU;M;;;133884;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133882;EU.7038.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHARGUNOV;Sergey;Aleksandrovich;Sergey Aleksandrovich SHARGUNOV;;M;;Member of the State Duma;133885;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133882;EU.7038.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Aleksandrovitj SJARGUNOV;SV;;;;143828;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133882;EU.7038.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-05-12;12;5;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;133883;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133891;EU.7039.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КУМИН;Вадим;Валентинович;Вадим Валентинович КУМИН;RU;M;;;133893;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133891;EU.7039.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KUMIN;Vadim;Valentinovich;Vadim Valentinovich KUMIN;;M;;Member of the State Duma;133894;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133891;EU.7039.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vadim Valentinovitj KUMIN;SV;;;;143829;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133891;EU.7039.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-01-01;1;1;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;133892;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133899;EU.7041.71;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СИНЕЛЬЩИКОВ;Юрий;Петрович;Юрий Петрович СИНЕЛЬЩИКОВ;RU;M;;;133901;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133899;EU.7041.71;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SINELSHCHIKOV;Yury;Petrovich;Yury Petrovich SINELSHCHIKOV;;M;;Member of the State Duma;133902;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133899;EU.7041.71;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jurij Petrovitj SINELSJTJIKOV;SV;;;;143830;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133899;EU.7041.71;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947-09-26;26;9;1947;;;NO;GREGORIAN;;;;;00;UNKNOWN;133900;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133903;EU.7042.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТАЙСАЕВ;Казбек;Куцукович;Казбек Куцукович ТАЙСАЕВ;RU;M;;;133905;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133903;EU.7042.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TAYSAYEV;Kazbek;Kutsukovich;Kazbek Kutsukovich TAYSAYEV;;M;;Member of the State Duma;133906;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133903;EU.7042.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Kazbek Kutsukovitj TAJSAJEV;SV;;;;143831;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133903;EU.7042.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-02-12;12;2;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;133904;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133907;EU.7043.69;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КУРИННЫЙ;Алексей;Владимирович;Алексей Владимирович КУРИННЫЙ;RU;M;;;133909;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133907;EU.7043.69;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KURINNY;Alexey;Vladimirovich;Alexey Vladimirovich KURINNY;;M;;Member of the State Duma;133910;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133907;EU.7043.69;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Vladimirovitj KURINNYJ;SV;;;;143832;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133907;EU.7043.69;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-01-18;18;1;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;133908;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133911;EU.7044.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГЛАЗКОВА;Анжелика;Егоровна;Анжелика Егоровна ГЛАЗКОВА;RU;F;;;133913;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133911;EU.7044.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GLAZKOVA;Anzhelika;Egorovna;Anzhelika Egorovna GLAZKOVA;;F;;Member of the State Duma;133914;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133911;EU.7044.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anzjelika Jegorovna GLAZKOVA;SV;;;;143834;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133911;EU.7044.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-12-28;28;12;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;133912;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133915;EU.7045.67;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЮЩЕНКО;Александр;Андреевич;Александр Андреевич ЮЩЕНКО;RU;M;;;133917;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133915;EU.7045.67;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;YUSHCHENKO;Alexander;Andreevich;Alexander Andreevich YUSHCHENKO;;M;;Member of the State Duma;133918;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133915;EU.7045.67;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Andrejevitj JUSJTJENKO;SV;;;;143835;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133915;EU.7045.67;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-11-19;19;11;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;133916;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133919;EU.7046.66;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МАРХАЕВ;Вячеслав;Михайлович;Вячеслав Михайлович МАРХАЕВ;RU;M;;;133921;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133919;EU.7046.66;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MARKHAYEV;Vyacheslav;Mikhailovich;Vyacheslav Mikhailovich MARKHAYEV;;M;;Member of the State Duma;133922;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133919;EU.7046.66;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vjatjeslav Michajlovitj MARCHAJEV;SV;;;;143837;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133919;EU.7046.66;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-06-01;1;6;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;133920;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133923;EU.7047.65;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БИФОВ;Aнатолий;Жамалович;Aнатолий Жамалович БИФОВ;RU;M;;;133925;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133923;EU.7047.65;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BIFOV;Anatoly;Zhamalovich;Anatoly Zhamalovich BIFOV;;M;;Member of the State Duma;133926;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133923;EU.7047.65;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anatolij Zjamalovitj BIFOV;SV;;;;143770;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133923;EU.7047.65;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-01-07;7;1;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;133924;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133927;EU.7048.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АРЕФЬЕВ;Николай;Васильевич;Николай Васильевич АРЕФЬЕВ;RU;M;;;133929;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133927;EU.7048.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;AREFYEV;Nikolay;Vasilevich;Nikolay Vasilevich AREFYEV;;M;;Member of the State Duma;133930;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133927;EU.7048.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Vasiljevitj AREFJEV;SV;;;;143772;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133927;EU.7048.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-03-11;11;3;1949;;;NO;GREGORIAN;;;;;00;UNKNOWN;133928;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133931;EU.7049.63;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОМОЦКИЙ;Борис;Олегович;Борис Олегович КОМОЦКИЙ;RU;M;;;133933;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133931;EU.7049.63;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Boris Olegovych KOMOTSKY;;M;;Member of the State Duma;133934;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133931;EU.7049.63;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Boris Olegovitj KOMOTSKIJ;SV;;;;143773;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133931;EU.7049.63;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-01-31;31;1;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;133932;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133935;EU.7050.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ФИЛАТОВА;Ирина;Анатольевна;Ирина Анатольевна ФИЛАТОВА;RU;F;;;133937;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133935;EU.7050.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;FILATOVA;Irina;Anatolievna;Irina Anatolievna FILATOVA;;F;;Member of the State Duma;133938;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133935;EU.7050.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Irina Anatoljevna FILATOVA;SV;;;;143774;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133935;EU.7050.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-08-08;8;8;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;133936;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133939;EU.7051.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛЕВЧЕНКО;Сергей;Георгиевич;Сергей Георгиевич ЛЕВЧЕНКО;RU;M;;;133941;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133939;EU.7051.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergey Georgiyevich LEVCHENKO;;M;;Member of the State Duma;133942;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133939;EU.7051.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Georgijevitj LEVTJENKO;SV;;;;143775;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133939;EU.7051.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-11-02;2;11;1953;;;NO;GREGORIAN;;;;;00;UNKNOWN;133940;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133943;EU.7052.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПРОКОФЬЕВ;Артём;Вячеславович;Артём Вячеславович ПРОКОФЬЕВ;RU;M;;;133945;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133943;EU.7052.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PROKOFYEV;Artyom;Vyacheslavovich;Artyom Vyacheslavovich PROKOFYEV;;M;;Member of the State Duma;133946;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133943;EU.7052.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Artiom Vjatsjeslavovitj PROKOFJEV;SV;;;;143777;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133943;EU.7052.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-12-31;31;12;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;133944;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133947;EU.7053.38;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДРОБОТ;Мария;Владимировна;Мария Владимировна ДРОБОТ;RU;F;;;133949;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133947;EU.7053.38;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DROBOT;Maria;Vladimirovna;Maria Vladimirovna DROBOT;;F;;Member of the State Duma;133950;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133947;EU.7053.38;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Marija Vladimirovna DROBOT;SV;;;;143778;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133947;EU.7053.38;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-03-21;21;3;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;133948;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133951;EU.7054.37;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БАБИЧ;Иван;Николаевич;Иван Николаевич БАБИЧ;RU;M;;;133953;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133951;EU.7054.37;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BABICH;Ivan;Nikolaevich;Ivan Nikolaevich BABICH;;M;;Member of the State Duma;133954;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133951;EU.7054.37;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ivan Nikolajevitj BABITJ;SV;;;;143779;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133951;EU.7054.37;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-09-02;2;9;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;133952;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133955;EU.7055.36;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ОСАДЧИЙ;Николай;Иванович;Николай Иванович ОСАДЧИЙ;RU;M;;;133957;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133955;EU.7055.36;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolay Ivanovich OSADCHY;;M;;Member of the State Duma;133958;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133955;EU.7055.36;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Ivanovitj OSADTJIJ;SV;;;;143840;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133955;EU.7055.36;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-12-08;8;12;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;133956;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133959;EU.7056.35;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОРНИЕНКО;Алексей;Викторович;Алексей Викторович КОРНИЕНКО;RU;M;;;133961;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133959;EU.7056.35;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KORNIYENKO;Alexey;Viktorovich;Alexey Viktorovich KORNIYENKO;;M;;Member of the State Duma;133962;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133959;EU.7056.35;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Viktorovitj KORNIJENKO;SV;;;;143841;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133959;EU.7056.35;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-07-22;22;7;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;133960;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133963;EU.7057.34;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГАВРИЛОВ;Сергей;Анатольевич;Сергей Анатольевич ГАВРИЛОВ;RU;M;;;133965;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133963;EU.7057.34;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GAVRILOV;Sergey;Anatolevich;Sergey Anatolevich GAVRILOV;;M;;Member of the State Duma;133966;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133963;EU.7057.34;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Anatoljevitj GAVRILOV;SV;;;;143838;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133963;EU.7057.34;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-01-27;27;1;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;133964;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133967;EU.7058.33;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИВАНОВ;Николай;Николаевич;Николай Николаевич ИВАНОВ;RU;M;;;133969;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133967;EU.7058.33;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;IVANOV;Nikolay;Nikolaevich;Nikolay Nikolaevich IVANOV;;M;;Member of the State Duma;133970;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133967;EU.7058.33;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Nikolajevitj IVANOV;SV;;;;143839;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133967;EU.7058.33;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-01-17;17;1;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;133968;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133971;EU.7059.32;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛЯБИХОВ;Роман;Михайлович;Роман Михайлович ЛЯБИХОВ;RU;M;;;133973;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133971;EU.7059.32;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LYABIKHOV;Roman;Mikhailovich;Roman Mikhailovich LYABIKHOV;;M;;Member of the State Duma;133974;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133971;EU.7059.32;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Roman Michajlovitj LJABICHOV;SV;;;;143860;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133971;EU.7059.32;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-05-07;7;5;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;133972;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133975;EU.7060.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИСАКОВ;Владимир;Павлович;Владимир Павлович ИСАКОВ;RU;M;;;133977;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133975;EU.7060.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ISAKOV;Vladimir;Pavlovich;Vladimir Pavlovich ISAKOV;;M;;Member of the State Duma;133978;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133975;EU.7060.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Pavlovitj ISAKOV;SV;;;;143861;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133975;EU.7060.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-02-25;25;2;1987;;;NO;GREGORIAN;;;;;00;UNKNOWN;133976;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133979;EU.7061.9;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СУЛЕЙМАНОВ;Ренат;Исмаилович;Ренат Исмаилович СУЛЕЙМАНОВ;RU;M;;;133981;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133979;EU.7061.9;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SULEYMANOV;Renat;Ismailovich;Renat Ismailovich SULEYMANOV;;M;;Member of the State Duma;133982;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133979;EU.7061.9;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Renat Ismailovitj SULEJMANOV;SV;;;;143843;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133979;EU.7061.9;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-12-24;24;12;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;133980;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133983;EU.7062.8;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БЛОЦКИЙ;Владимир;Николаевич;Владимир Николаевич БЛОЦКИЙ;RU;M;;;133985;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133983;EU.7062.8;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BLOTSKY;Vladimir;Nikolaevich;Vladimir Nikolaevich BLOTSKY;;M;;Member of the State Duma;133986;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133983;EU.7062.8;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Nikolajevitj BLOTSKIJ;SV;;;;143844;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133983;EU.7062.8;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-11-10;10;11;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;133984;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133987;EU.7063.7;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПАНТЕЛЕЕВ;Сергей;Михайлович;Сергей Михайлович ПАНТЕЛЕЕВ;RU;M;;;133989;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133987;EU.7063.7;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PANTELEYEV;Sergey;Mikhailovich;Sergey Mikhailovich PANTELEYEV;;M;;Member of the State Duma;133990;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133987;EU.7063.7;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Michajlovitj PANTELEJEV;SV;;;;143863;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133987;EU.7063.7;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-07-04;4;7;1951;;;NO;GREGORIAN;;;;;00;UNKNOWN;133988;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133991;EU.7064.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАМНЕВ;Георгий;Петрович;Георгий Петрович КАМНЕВ;RU;M;;;133993;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133991;EU.7064.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KAMNEV;Georgy;Petrovich;Georgy Petrovich KAMNEV;;M;;Member of the State Duma;133994;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133991;EU.7064.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Georgij Petrovitj KAMNEV;SV;;;;143865;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133991;EU.7064.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-01-05;5;1;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;133992;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133995;EU.7065.5;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВАСИЛЬЕВ;Николай;Иванович;Николай Иванович ВАСИЛЬЕВ;RU;M;;;133997;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133995;EU.7065.5;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VASILYEV;Nikolay;Ivanovich;Nikolay Ivanovich VASILYEV;;M;;Member of the State Duma;133998;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133995;EU.7065.5;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Ivanovitj VASILJEV;SV;;;;143866;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133995;EU.7065.5;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-03-28;28;3;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;133996;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133999;EU.7066.4;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИВАНЮЖЕНКОВ;Борис;Викторович;Борис Викторович ИВАНЮЖЕНКОВ;RU;M;;;134001;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133999;EU.7066.4;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;IVANYUZHENKOV;Boris;Viktorovich;Boris Viktorovich IVANYUZHENKOV;;M;;Member of the State Duma;134002;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133999;EU.7066.4;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Boris Viktorovitj IVANJUZJENKOV;SV;;;;143845;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;133999;EU.7066.4;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-02-28;28;2;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;134000;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134003;EU.7067.3;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СОБОЛЕВ;Виктор;Иванович;Виктор Иванович СОБОЛЕВ;RU;M;;;134005;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134003;EU.7067.3;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SOBOLEV;Viktor;Ivanovich;Viktor Ivanovich SOBOLEV;;M;;Member of the State Duma;134006;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134003;EU.7067.3;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Ivanovitj SOBOLEV;SV;;;;143847;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134003;EU.7067.3;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-02-23;23;2;1950;;;NO;GREGORIAN;;;;;00;UNKNOWN;134004;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134007;EU.7068.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АВДЕЕВ;Михаил;Юрьевич;Михаил Юрьевич АВДЕЕВ;RU;M;;;134009;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134007;EU.7068.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;AVDEYEV;Mikhail;Yurevich;Mikhail Yurevich AVDEYEV;;M;;Member of the State Duma;134010;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134007;EU.7068.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Michail Jurjevitj AVDEJEV;SV;;;;143848;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134007;EU.7068.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-03-06;6;3;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;134008;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134011;EU.7069.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ОСТАНИНА;Нина;Александровна;Нина Александровна ОСТАНИНА;RU;F;;;134013;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134011;EU.7069.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;OSTANINA;Nina;Alexandrovna;Nina Alexandrovna OSTANINA;;F;;Member of the State Duma;134014;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134011;EU.7069.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nina Aleksandrovna OSTANINA;SV;;;;143850;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134011;EU.7069.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-12-26;26;12;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;134012;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134015;EU.7070.76;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БЕССОНОВ;Евгений;Иванович;Евгений Иванович БЕССОНОВ;RU;M;;;134017;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134015;EU.7070.76;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BESSONOV;Yevgeny;Ivanovich;Yevgeny Ivanovich BESSONOV;;M;;Member of the State Duma;134018;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134015;EU.7070.76;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jevgenij Ivanovitj BESSONOV;SV;;;;143851;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134015;EU.7070.76;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-11-26;26;11;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;134016;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134019;EU.7071.75;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЕЗЕРСКИЙ;Николай;Николаевич;Николай Николаевич ЕЗЕРСКИЙ;RU;M;;;134021;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134019;EU.7071.75;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;YEZERSKY;Nikolay;Nikolaevich;Nikolay Nikolaevich YEZERSKY;;M;;Member of the State Duma;134022;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134019;EU.7071.75;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Nikolajevitj JEZERSKIJ;SV;;;;143852;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134019;EU.7071.75;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-05-08;8;5;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;134020;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134023;EU.7072.74;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ОБУХОВ;Сергей;Павлович;Сергей Павлович ОБУХОВ;RU;M;;;134025;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134023;EU.7072.74;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;OBUKHOV;Sergei;Pavlovich;Sergei Pavlovich OBUKHOV;;M;;Member of the State Duma;134026;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134023;EU.7072.74;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Pavlovitj OBUCHOV;SV;;;;143853;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134023;EU.7072.74;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-10-05;5;10;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;134024;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134027;EU.7073.73;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПАРФЕНОВ;Денис;Андреевич;Денис Андреевич ПАРФЕНОВ;RU;M;;;134029;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134027;EU.7073.73;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PARFYONOV;Denis;Andreevich;Denis Andreevich PARFYONOV;;M;;Member of the State Duma;134030;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134027;EU.7073.73;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Denis Andrejevitj PARFJONOV;SV;;;;143854;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134027;EU.7073.73;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-09-22;22;9;1987;;;NO;GREGORIAN;;;;;00;UNKNOWN;134028;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134031;EU.7074.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АЛЕХИН;Андрей;Анатольевич;Андрей Анатольевич АЛЕХИН;RU;M;;;134033;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134031;EU.7074.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ALEKHIN;Andrei;Anatolyevich;Andrei Anatolyevich ALEKHIN;;M;;Member of the State Duma;134034;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134031;EU.7074.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Anatoljevitj ALJOCHIN;SV;;;;143856;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134031;EU.7074.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-02-09;9;2;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;134032;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134035;EU.7075.71;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АММОСОВ;Петр;Револьдович;Петр Револьдович АММОСОВ;RU;M;;;134037;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134035;EU.7075.71;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;AMMOSOV;Petr;Revoldovich;Petr Revoldovich AMMOSOV;;M;;Member of the State Duma;134038;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134035;EU.7075.71;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Pjotr Revoldovitj AMMOSOV;SV;;;;143857;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134035;EU.7075.71;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-09-22;22;9;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;134036;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134039;EU.7076.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАЗАНКОВ;Сергей;Иванович;Сергей Иванович КАЗАНКОВ;RU;M;;;134041;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134039;EU.7076.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KAZANKOV;Sergei;Ivanovich;Sergei Ivanovich KAZANKOV;;M;;Member of the State Duma;134042;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134039;EU.7076.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Ivanovitj KAZANKOV;SV;;;;143859;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134039;EU.7076.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-10-09;9;10;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;134040;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134043;EU.7077.69;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛЕБЕДЕВ;Олег;Александрович;Олег Александрович ЛЕБЕДЕВ;RU;M;;;134045;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134043;EU.7077.69;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LEBEDEV;Oleg;Aleksandrovich;Oleg Aleksandrovich LEBEDEV;;M;;Member of the State Duma;134046;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134043;EU.7077.69;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleg Aleksandrovitj LEBEDEV;SV;;;;143880;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134043;EU.7077.69;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-10-12;12;10;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;134044;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134047;EU.7078.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МАТВЕЕВ;Михаил;Николаевич;Михаил Николаевич МАТВЕЕВ;RU;M;;;134049;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134047;EU.7078.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MATVEYEV;Mikhail;Nikolaevich;Mikhail Nikolaevich MATVEYEV;;M;;Member of the State Duma;134050;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134047;EU.7078.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Michail Nikolajevitj MATVEJEV;SV;;;;143881;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134047;EU.7078.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-05-13;13;5;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;134048;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134051;EU.7079.67;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПРУСАКОВА;Мария;Николаевна;Мария Николаевна ПРУСАКОВА;RU;F;;;134053;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134051;EU.7079.67;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PRUSAKOVA;Maria;Nikolaevna;Maria Nikolaevna PRUSAKOVA;;F;;Member of the State Duma;134054;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134051;EU.7079.67;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Marija Nikolajevna PRUSAKOVA;SV;;;;143868;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134051;EU.7079.67;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-09-04;4;9;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;134052;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134055;EU.7080.45;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СМОЛИН;Олег;Николаевич;Олег Николаевич СМОЛИН;RU;M;;;134057;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134055;EU.7080.45;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SMOLIN;Oleg;Nikolaevich;Oleg Nikolaevich SMOLIN;;M;;Member of the State Duma;134058;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134055;EU.7080.45;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleg Nikolajevitj SMOLIN;SV;;;;143869;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134055;EU.7080.45;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-02-10;10;2;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;134056;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134059;EU.7081.44;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЩАПОВ;Михаил;Викторович;Михаил Викторович ЩАПОВ;RU;M;;;134061;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134059;EU.7081.44;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHCHAPOV;Mikhail;Viktorovich;Mikhail Viktorovich SHCHAPOV;;M;;Member of the State Duma;134062;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134059;EU.7081.44;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Michail Viktorovitj SJTJAPOV;SV;;;;143870;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134059;EU.7081.44;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-09-20;20;9;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;134060;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134063;EU.7082.43;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАРГИНОВ;Сергей;Генрихович;Сергей Генрихович КАРГИНОВ;RU;M;;;134065;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134063;EU.7082.43;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KARGINOV;Sergei;Genrikhovich;Sergei Genrikhovich KARGINOV;;M;;Member of the State Duma;134066;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134063;EU.7082.43;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Genrichovitj KARGINOV;SV;;;;143872;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134063;EU.7082.43;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-09-05;5;9;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;134064;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134067;EU.7083.42;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;НИЛОВ;Ярослав;Евгеньевич;Ярослав Евгеньевич НИЛОВ;RU;M;;;134069;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134067;EU.7083.42;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;NILOV;Yaroslav;Evgenyevich;Yaroslav Evgenyevich NILOV;;M;;Member of the State Duma;134070;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134067;EU.7083.42;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jaroslav Jevgenjevitj NILOV;SV;;;;143873;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134067;EU.7083.42;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-03-20;20;3;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;134068;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134071;EU.7084.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СИПЯГИН;Владимир;Владимирович;Владимир Владимирович СИПЯГИН;RU;M;;;134073;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134071;EU.7084.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SIPYAGIN;Vladimir;Vladimirovich;Vladimir Vladimirovich SIPYAGIN;;M;;Member of the State Duma;134074;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134071;EU.7084.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Vladimirovitj SIPJAGIN;SV;;;;143874;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134071;EU.7084.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-02-19;19;2;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;134072;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134075;EU.7085.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВЛАСОВ;Василий;Максимович;Василий Максимович ВЛАСОВ;RU;M;;;134077;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134075;EU.7085.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VLASOV;Vasily;Maksimovich;Vasily Maksimovich VLASOV;;M;;Member of the State Duma;134078;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134075;EU.7085.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vasilij Maksimovitj VLASOV;SV;;;;143875;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134075;EU.7085.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1995-06-27;27;6;1995;;;NO;GREGORIAN;;;;;00;UNKNOWN;134076;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134079;EU.7086.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЧЕРНЫШОВ;Борис;Александрович;Борис Александрович ЧЕРНЫШОВ;RU;M;;;134081;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134079;EU.7086.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;CHERNYSHOV;Boris;Aleksandrovich;Boris Aleksandrovich CHERNYSHOV;;M;;Member of the State Duma;134082;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134079;EU.7086.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Boris Aleksandrovitj TJERNYSJOV;SV;;;;143876;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134079;EU.7086.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1991-06-25;25;6;1991;;;NO;GREGORIAN;;;;;00;UNKNOWN;134080;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134083;EU.7087.38;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛУГОВОЙ;Андрей;Константинович;Андрей Константинович ЛУГОВОЙ;RU;M;;;134085;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134083;EU.7087.38;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LUGOVOY;Andrey;Konstantinovich;Andrey Konstantinovich LUGOVOY;;M;;Member of the State Duma;134086;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134083;EU.7087.38;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Konstantinovitj LUGOVOJ;SV;;;;143877;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134083;EU.7087.38;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-09-19;19;9;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;134084;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134087;EU.7088.37;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СВИЩЕВ;Дмитрий;Александрович;Дмитрий Александрович СВИЩЕВ;RU;M;;;134089;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134087;EU.7088.37;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SVISHCHEV;Dmitry;Aleksandrovich;Dmitry Aleksandrovich SVISHCHEV;;M;;Member of the State Duma;134090;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134087;EU.7088.37;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Aleksandrovitj SVISJTJOV;SV;;;;143879;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134087;EU.7088.37;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-05-22;22;5;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;134088;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134091;EU.7089.36;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СЕЛЕЗНЕВ;Валерий;Сергеевич;Валерий Сергеевич СЕЛЕЗНЕВ;RU;M;;;134093;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134091;EU.7089.36;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SELEZNYOV;Valery;Sergeevich;Valery Sergeevich SELEZNYOV;;M;;Member of the State Duma;134094;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134091;EU.7089.36;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Valerij Sergejevitj SELEZNJOV;SV;;;;143900;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134091;EU.7089.36;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-09-05;5;9;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;134092;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134095;EU.7090.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПАНЕШ;Каплан;Мугдинович;Каплан Мугдинович ПАНЕШ;RU;M;;;134097;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134095;EU.7090.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PANESH;Kaplan;Mugdinovich;Kaplan Mugdinovich PANESH;;M;;Member of the State Duma;134098;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134095;EU.7090.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Kaplan Mugdinovitj PANESJ;SV;;;;143901;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134095;EU.7090.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-09-04;4;9;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;134096;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134099;EU.7091.13;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СВИСТУНОВ;Аркадий;Николаевич;Аркадий Николаевич СВИСТУНОВ;RU;M;;;134101;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134099;EU.7091.13;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SVISTUNOV;Arkady;Nikolaevich;Arkady Nikolaevich SVISTUNOV;;M;;Member of the State Duma;134102;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134099;EU.7091.13;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Arkadij Nikolajevitj SVISTUNOV;SV;;;;143902;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134099;EU.7091.13;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-04-28;28;4;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;134100;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134103;EU.7092.12;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;НАУМОВ;Станислав;Александрович;Станислав Александрович НАУМОВ;RU;M;;;134105;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134103;EU.7092.12;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;NAUMOV;Stanislav;Aleksandrovich;Stanislav Aleksandrovich NAUMOV;;M;;Member of the State Duma;134106;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134103;EU.7092.12;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Stanislav Aleksandrovitj NAUMOV;SV;;;;143903;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134103;EU.7092.12;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-10-04;4;10;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;134104;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134107;EU.7093.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОШЕЛЕВ;Владимир;Алексеевич;Владимир Алексеевич КОШЕЛЕВ;RU;M;;;134108;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134107;EU.7093.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOSHELEV;Vladimir;Alexeyevich;Vladimir Alexeyevich KOSHELEV;;M;;Member of the State Duma;134109;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134107;EU.7093.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Aleksejevitj KOSJELEV;SV;;;;143904;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134107;EU.7093.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-10-01;1;10;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;134110;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134111;EU.7094.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МУСАТОВ;Иван;Михайлович;Иван Михайлович МУСАТОВ;RU;M;;;134113;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134111;EU.7094.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MUSATOV;Ivan;Mikhailovich;Ivan Mikhailovich MUSATOV;;M;;Member of the State Duma;134114;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134111;EU.7094.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ivan Michajlovitj MUSATOV;SV;;;;143906;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134111;EU.7094.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-02-14;14;2;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;134112;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134115;EU.7095.9;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МАРКОВ;Евгений;Владимирович;Евгений Владимирович МАРКОВ;RU;M;;;134117;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134115;EU.7095.9;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MARKOV;Yevgeny;Vladimirovich;Yevgeny Vladimirovich MARKOV;;M;;Member of the State Duma;134118;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134115;EU.7095.9;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jevgenij Vladimirovitj MARKOV;SV;;;;143907;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134115;EU.7095.9;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-11-08;8;11;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;134116;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134119;EU.7096.8;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СУХАРЕВ;Иван;Константинович;Иван Константинович СУХАРЕВ;RU;M;;;134121;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134119;EU.7096.8;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SUKHAREV;Ivan;Konstantinovich;Ivan Konstantinovich SUKHAREV;;M;;Member of the State Duma;134122;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134119;EU.7096.8;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ivan Konstantinovitj SUCHAREV;SV;;;;143908;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134119;EU.7096.8;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-06-10;10;6;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;134120;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134123;EU.7097.7;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПАЙКИН;Борис;Романович;Борис Романович ПАЙКИН;RU;M;;;134125;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134123;EU.7097.7;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PAYKIN;Boris;Romanovich;Boris Romanovich PAYKIN;;M;;Member of the State Duma;134126;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134123;EU.7097.7;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Boris Romanovitj PAJKIN;SV;;;;143910;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134123;EU.7097.7;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-03-26;26;3;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;134124;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134127;EU.7098.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;НАПСО;Юрий;Аисович;Юрий Аисович НАПСО;RU;M;;;134129;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134127;EU.7098.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;NAPSO;Yuri;Aisovich;Yuri Aisovich NAPSO;;M;;Member of the State Duma;134130;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134127;EU.7098.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jurij Aisovitj NAPSO;SV;;;;143708;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134127;EU.7098.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-04-17;17;4;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;134128;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134131;EU.7099.5;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДИДЕНКО;Алексей;Николаевич;Алексей Николаевич ДИДЕНКО;RU;M;;;134133;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134131;EU.7099.5;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DIDENKO;Aleksei;Nikolaevich;Aleksei Nikolaevich DIDENKO;;M;;Member of the Duma;134134;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134131;EU.7099.5;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Nikolajevitj DIDENKO;SV;;;;143729;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134131;EU.7099.5;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-03-30;30;3;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;134132;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134135;EU.7100.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЖУРАВЛЕВ;Алексей;Александрович;Алексей Александрович ЖУРАВЛЕВ;RU;M;;;134137;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134135;EU.7100.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ZHURAVLY;Aleksei;Aleksandrovich;Aleksei Aleksandrovich ZHURAVLY;;M;;Member of the State Duma;134138;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134135;EU.7100.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Aleksandrovitj ZJURAVLJOV;SV;;;;143731;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134135;EU.7100.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-06-30;30;6;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;134136;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134139;EU.7101.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛЕОНОВ;Сергей;Дмитриевич;Сергей Дмитриевич ЛЕОНОВ;RU;M;;;134141;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134139;EU.7101.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LEONOV;Sergei;Dmitrievich;Sergei Dmitrievich LEONOV;;M;;Member of the State Duma;134142;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134139;EU.7101.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Dmitrijevitj LEONOV;SV;;;;143749;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134139;EU.7101.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-05-09;9;5;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;134140;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134143;EU.7102.9;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СЕМИГИН;Геннадий;Юрьевич;Геннадий Юрьевич СЕМИГИН;RU;M;;;134145;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134143;EU.7102.9;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SEMIGIN;Gennady;Yurevich;Gennady Yurevich SEMIGIN;;M;;Member of the State Duma;134146;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134143;EU.7102.9;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Gennadij Jurjevitj SEMIGIN;SV;;;;143750;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134143;EU.7102.9;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-03-23;23;3;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;134144;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134147;EU.7103.8;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТЕРЕНТЬЕВ;Александр;Васильевич;Александр Васильевич ТЕРЕНТЬЕВ;RU;M;;;134149;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134147;EU.7103.8;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TERENTYEV;Aleksandr;Vasilevich;Aleksandr Vasilevich TERENTYEV;;M;;Member of the State Duma;134150;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134147;EU.7103.8;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Vasiljevitj TERENTIEV;SV;;;;143753;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134147;EU.7103.8;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-01-01;1;1;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;134148;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134151;EU.7104.7;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТУМУСОВ;Федот;Семёнович;Федот Семёнович ТУМУСОВ;RU;M;;;134153;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134151;EU.7104.7;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TUMUSOV;Fedot;Semyonovich;Fedot Semyonovich TUMUSOV;;M;;Member of the State Duma;134154;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134151;EU.7104.7;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Fedot Semjonovitj TUMUSOV;SV;;;;143755;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134151;EU.7104.7;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-06-30;30;6;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;134152;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134155;EU.7105.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАНОКОВ;Тимур;Борисович;Тимур Борисович КАНОКОВ;RU;M;;;134157;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134155;EU.7105.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KANOKOV;Timur;Borisovich;Timur Borisovich KANOKOV;;M;;Member of the State Duma;134158;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134155;EU.7105.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Timur Borisovitj KANOKOV;SV;;;;143756;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134155;EU.7105.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-09-24;24;9;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;134156;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134159;EU.7106.5;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АНАНСКИХ;Игорь;Александрович;Игорь Александрович АНАНСКИХ;RU;M;;;134161;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134159;EU.7106.5;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ANANSKIKH;Igor;Aleksandrovich;Igor Aleksandrovich ANANSKIKH;;M;;Member of the State Duma;134162;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134159;EU.7106.5;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Igor Aleksandrovitj ANANSKICH;SV;;;;143757;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134159;EU.7106.5;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-09-06;6;9;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;134160;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134163;EU.7107.4;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БЕЛОУСОВ;Вадим;Владимирович;Вадим Владимирович БЕЛОУСОВ;RU;M;;;134165;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134163;EU.7107.4;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BELOUSOV;Vadim;Vladimirovich;Vadim Vladimirovich BELOUSOV;;M;;Member of the State Duma;134166;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134163;EU.7107.4;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vadim Vladimirovitj BELOUSOV;SV;;;;143762;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134163;EU.7107.4;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-10-02;2;10;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;134164;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134167;EU.7108.3;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГУСЕВ;Дмитрий;Геннадьевич;Дмитрий Геннадьевич ГУСЕВ;RU;M;;;134169;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134167;EU.7108.3;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GUSEV;Dmitry;Gennadievich;Dmitry Gennadievich GUSEV;;M;;Member of the State Duma;134170;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134167;EU.7108.3;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Gennadjevitj GUSEV;SV;;;;143767;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134167;EU.7108.3;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-07-23;23;7;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;134168;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134171;EU.7109.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;РЕМЕЗКОВ;Александр;Александрович;Александр Александрович РЕМЕЗКОВ;RU;M;;;134173;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134171;EU.7109.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;REMEZKOV;Aleksandr;Aleksandrovich;Aleksandr Aleksandrovich REMEZKOV;;M;;Member of the State Duma;134174;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134171;EU.7109.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Aleksandrovitj REMEZKOV;SV;;;;143768;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134171;EU.7109.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-04-07;7;4;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;134172;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134175;EU.7110.77;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КУЗНЕЦОВ;Андрей;Анатольевич;Андрей Анатольевич КУЗНЕЦОВ;RU;M;;;134177;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134175;EU.7110.77;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KUZNETSOV;Andrei;Anatolevich;Andrei Anatolevich KUZNETSOV;;M;;Member of the State Duma;134178;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134175;EU.7110.77;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Anatoljevitj KUZNETSOV;SV;;;;143769;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134175;EU.7110.77;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-05-29;29;5;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;134176;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134179;EU.7111.76;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАБЫШЕВ;Сергей;Владимирович;Сергей Владимирович КАБЫШЕВ;RU;M;;;134181;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134179;EU.7111.76;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KABYSHEV;Sergei;Vladimirovich;Sergei Vladimirovich KABYSHEV;;M;;Member of the State Duma;134182;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134179;EU.7111.76;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Vladimirovitj KABYSJEV;SV;;;;143683;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134179;EU.7111.76;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-09-04;4;9;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;134180;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134183;EU.7112.75;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДЕЛЯГИН;Михаил;Геннадьевич;Михаил Геннадьевич ДЕЛЯГИН;RU;M;;;134185;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134183;EU.7112.75;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DELYAGIN;Mikhail;Gennadievich;Mikhail Gennadievich DELYAGIN;;M;;Member of the State Duma;134186;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134183;EU.7112.75;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Michail Gennadjevitj DELJAGIN;SV;;;;143684;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134183;EU.7112.75;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-03-18;18;3;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;134184;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134187;EU.7113.74;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;НИЛОВ;Олег;Анатольевич;Олег Анатольевич НИЛОВ;RU;M;;;134189;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134187;EU.7113.74;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;NILOV;Oleg;Anatolevich;Oleg Anatolevich NILOV;;M;;Member of the State Duma;134190;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134187;EU.7113.74;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleg Anatoljevitj NILOV;SV;;;;143686;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134187;EU.7113.74;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-05-08;8;5;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;134188;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134191;EU.7114.73;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БУРЛЯЕВ;Николай;Петрович;Николай Петрович БУРЛЯЕВ;RU;M;;;134193;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134191;EU.7114.73;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BURLYAYEV;Nikolai;Petrovich;Nikolai Petrovich BURLYAYEV;;M;;Member of the State Duma;134194;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134191;EU.7114.73;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Petrovitj BURLJAJEV;SV;;;;143688;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134191;EU.7114.73;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946-08-03;3;8;1946;;;NO;GREGORIAN;;;;;00;UNKNOWN;134192;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134195;EU.7115.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АКСАКОВ;Анатолий;Геннадьевич;Анатолий Геннадьевич АКСАКОВ;RU;M;;;134197;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134195;EU.7115.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;AKSAKOV;Anatoli;Gennadievich;Anatoli Gennadievich AKSAKOV;;M;;Member of the State Duma;134198;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134195;EU.7115.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anatolij Gennadjevitj AKSAKOV;SV;;;;143689;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134195;EU.7115.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-11-28;28;11;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;134196;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134199;EU.7116.71;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АКСЁНЕНКО;Александр;Сергеевич;Александр Сергеевич АКСЁНЕНКО;RU;M;;;134201;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134199;EU.7116.71;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;AKSYONENKO;Aleksandr;Sergeevich;Aleksandr Sergeevich AKSYONENKO;;M;;Member of the State Duma;134202;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134199;EU.7116.71;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Sergejevitj AKSIONENKO;SV;;;;143690;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134199;EU.7116.71;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-03-08;8;3;1986;;;NO;GREGORIAN;;;;;00;UNKNOWN;134200;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134203;EU.7117.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВАССЕРМАН;Анатолій;Олександрович;Анатолій Олександрович ВАССЕРМАН;UK;M;;;134205;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134203;EU.7117.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВА́ССЕРМАН;Анато́лий;Алекса́ндрович;Анато́лий Алекса́ндрович ВА́ССЕРМАН;RU;M;;;134206;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134203;EU.7117.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;WASSERMAN;Anatoly;Aleksandrovich;Anatoly Aleksandrovich WASSERMAN;;M;;Member of the State Duma;134207;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134203;EU.7117.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anatolij Oleksandrovytj VASSERMAN;SV;;;;143691;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134203;EU.7117.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anatolij Aleksandrovitj VASSERMAN;SV;;;;143692;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134203;EU.7117.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-12-09;9;12;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;134204;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134208;EU.7118.69;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГАРТУНГ;Валерий;Карлович;Валерий Карлович ГАРТУНГ;RU;M;;;134210;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134208;EU.7118.69;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Valery Karlovich GARTUNG;;M;;Member of the State Duma;134211;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134208;EU.7118.69;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Valerij Karlovitj GARTUNG;SV;;;;143693;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134208;EU.7118.69;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-11-12;12;11;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;134209;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134212;EU.7119.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГРИГОРЬЕВ;Юрий;Иннокентьевич;Юрий Иннокентьевич ГРИГОРЬЕВ;RU;M;;;134214;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134212;EU.7119.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GRIGORYEV;Yuri;Innokentevich;Yuri Innokentevich GRIGORYEV;;M;;Member of the State Duma;134215;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134212;EU.7119.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jurij Innokentievitj GRIGORJEV;SV;;;;143694;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134212;EU.7119.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-09-20;20;9;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;134213;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134216;EU.7120.46;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КУЗНЕЦОВ;Дмитрий;Вадимович;Дмитрий Вадимович КУЗНЕЦОВ;RU;M;;;134218;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134216;EU.7120.46;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KUZNETSOV;Dmitri;Vadimovich;Dmitri Vadimovich KUZNETSOV;;M;;Member of the State Duma;134219;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134216;EU.7120.46;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Vadimovitj KUZNETSOV;SV;;;;143695;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134216;EU.7120.46;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-03-05;5;3;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;134217;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134220;EU.7121.45;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛАНТРАТОВА;Яна;Валерьевна;Яна Валерьевна ЛАНТРАТОВА;RU;F;;;134222;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134220;EU.7121.45;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LANTRATOVA;Yana;Valerievna;Yana Valerievna LANTRATOVA;;F;;Member of the State Duma;134223;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134220;EU.7121.45;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jana Valerjevna LANTRATOVA;SV;;;;143696;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134220;EU.7121.45;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-12-14;14;12;1988;;;NO;GREGORIAN;;;;;00;UNKNOWN;134221;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134224;EU.7122.44;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛИСИЦЫН;Анатолий;Иванович;Анатолий Иванович ЛИСИЦЫН;RU;M;;;134226;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134224;EU.7122.44;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LISITSYN;Anatoli;Ivanovich;Anatoli Ivanovich LISITSYN;;M;;Member of the State Duma;134227;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134224;EU.7122.44;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anatolij Ivanovitj LISITSYN;SV;;;;143697;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134224;EU.7122.44;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947-06-26;26;6;1947;;;NO;GREGORIAN;;;;;00;UNKNOWN;134225;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134228;EU.7123.43;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ХОВАНСКАЯ;Галина;Петровна;Галина Петровна ХОВАНСКАЯ;RU;F;;;134230;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134228;EU.7123.43;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KHOVANSKAYA;Galina;Petrovna;Galina Petrovna KHOVANSKAYA;;F;;Member of the State Duma;134231;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134228;EU.7123.43;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Galina Petrovna CHOVANSKAJA;SV;;;;143698;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134228;EU.7123.43;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1943-08-23;23;8;1943;;;NO;GREGORIAN;;;;;00;UNKNOWN;134229;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134232;EU.7124.42;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЯХНЮК;Сергей;Васильевич;Сергей Васильевич ЯХНЮК;RU;M;;;134234;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134232;EU.7124.42;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;YAKHNYUK;Sergey;Vasilevich;Sergey Vasilevich YAKHNYUK;;M;;Member of the State Duma;134235;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134232;EU.7124.42;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Vasiljevitj JACHNJUK;SV;;;;143699;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134232;EU.7124.42;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-07-03;3;7;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;134233;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134236;EU.7125.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЯКУБОВСКИЙ;Александр;Владимирович;Александр Владимирович ЯКУБОВСКИЙ;RU;M;;;134238;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134236;EU.7125.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;YAKUBOVSKY;Alexander;Vladimirovich;Alexander Vladimirovich YAKUBOVSKY;;M;;Member of the State Duma;134239;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134236;EU.7125.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Vladimirovitj JAKUBOVSKIJ;SV;;;;143780;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134236;EU.7125.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-05-07;7;5;1985;;;NO;GREGORIAN;;;;;00;UNKNOWN;134237;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134240;EU.7126.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЯГАФАРОВ;Азат;Фердинандович;Азат Фердинандович ЯГАФАРОВ;RU;M;;;134242;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134240;EU.7126.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;YAGAFAROV;Azat;Ferdinandovich;Azat Ferdinandovich YAGAFAROV;;M;;Member of the State Duma;134243;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134240;EU.7126.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Azat Ferdinandovitj JAGAFAROV;SV;;;;143781;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134240;EU.7126.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-04-04;4;4;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;134241;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134244;EU.7127.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЩЕРБАКОВ;Александр;Владимирович;Александр Владимирович ЩЕРБАКОВ;RU;M;;;134246;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134244;EU.7127.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHCHERBAKOV;Aleksandr;Vladimirovich;Aleksandr Vladimirovich SHCHERBAKOV;;M;;Member of the State Duma;134247;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134244;EU.7127.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Vladimirovitj SJTJERBAKOV;SV;;;;143782;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134244;EU.7127.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-05-12;12;5;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;134245;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134248;EU.7128.38;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЩЕГЛОВ;Николай;Михайлович;Николай Михайлович ЩЕГЛОВ;RU;M;;;134250;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134248;EU.7128.38;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHCHEGLOV;Nikolai;Mikhailovich;Nikolai Mikhailovich SHCHEGLOV;;M;;Member of the State Duma;134251;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134248;EU.7128.38;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Michajlovitj SJTJEGLOV;SV;;;;143783;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134248;EU.7128.38;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-03-16;16;3;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;134249;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134252;EU.7129.37;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ШХАГОШЕВ;Адальби;Люлевич;Адальби Люлевич ШХАГОШЕВ;RU;M;;;134254;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134252;EU.7129.37;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Adalbi Ljulevitj SJCHAGOSJEV;SV;;;;143784;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134252;EU.7129.37;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Adalbi Lyulevich SHKHAGOSHEV;RU;M;;Member of the Duma;143785;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134252;EU.7129.37;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-06-06;6;6;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;134253;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134256;EU.7130.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ШУВАЛОВ;Вадим;Николаевич;Вадим Николаевич ШУВАЛОВ;RU;M;;;134258;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134256;EU.7130.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHUVALOV;Vadim;Nikolaevich;Vadim Nikolaevich SHUVALOV;;M;;Member of the State Duma;134259;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134256;EU.7130.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vadim Nikolajevitj SJUVALOV;SV;;;;143786;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134256;EU.7130.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-02-17;17;2;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;134257;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134260;EU.7131.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ШУБИН;Игорь;Николаевич;Игорь Николаевич ШУБИН;RU;M;;;134262;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134260;EU.7131.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHUBIN;Igor;Nikolaevich;Igor Nikolaevich SHUBIN;;M;;Member of the State Duma;134263;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134260;EU.7131.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Igor Nikolajevitj SJUBIN;SV;;;;143787;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134260;EU.7131.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-12-20;20;12;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;134261;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134264;EU.7132.13;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ШКОЛКИНА;Надежда;Васильевна;Надежда Васильевна ШКОЛКИНА;RU;F;;;134266;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134264;EU.7132.13;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHKOLKINA;Nadezhda;Vasilevna;Nadezhda Vasilevna SHKOLKINA;;F;;Member of the State Duma;134267;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134264;EU.7132.13;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nadezjda Vasiljevna SJKOLKINA;SV;;;;143789;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134264;EU.7132.13;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-05-12;12;5;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;134265;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134268;EU.7133.12;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ШИПУЛИН;Антон;Владимирович;Антон Владимирович ШИПУЛИН;RU;M;;;134270;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134268;EU.7133.12;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHIPULIN;Anton;Vladimirovich;Anton Vladimirovich SHIPULIN;;M;;Member of the State Duma;134271;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134268;EU.7133.12;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anton Vladimirovitj SJIPULIN;SV;;;;143791;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134268;EU.7133.12;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-08-21;21;8;1987;;;NO;GREGORIAN;;;;;00;UNKNOWN;134269;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134272;EU.7134.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ШВЫТКИН;Юрий;Николаевич;Юрий Николаевич ШВЫТКИН;RU;M;;;134274;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134272;EU.7134.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHVYTKIN;Yuri;Nikolaevich;Yuri Nikolaevich SHVYTKIN;;M;;Member of the State Duma;134275;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134272;EU.7134.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jurij Nikolajevitj SJVYTKIN;SV;;;;143793;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134272;EU.7134.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-05-24;24;5;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;134273;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134276;EU.7135.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЧИЖОВ;Сергей;Викторович;Сергей Викторович ЧИЖОВ;RU;M;;;134278;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134276;EU.7135.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;CHIZHOV;Sergey;Viktorovich;Sergey Viktorovich CHIZHOV;;M;;Member of the State Duma;134279;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134276;EU.7135.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Viktorovitj TJIZJOV;SV;;;;143794;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134276;EU.7135.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-03-16;16;3;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;134277;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134284;EU.7137.8;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЧЕПИКОВ;Сергей;Владимирович;Сергей Владимирович ЧЕПИКОВ;RU;M;;;134286;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134284;EU.7137.8;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TCHEPIKOV;Sergei;Vladimirovich;Sergei Vladimirovich TCHEPIKOV;;M;;Member of the State Duma;134287;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134284;EU.7137.8;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Vladimirovitj TJEPIKOV;SV;;;;143796;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134284;EU.7137.8;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-01-30;30;1;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;134285;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134288;EU.7138.7;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЧАПЛИН;Никита;Юрьевич;Никита Юрьевич ЧАПЛИН;RU;M;;;134290;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134288;EU.7138.7;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;CHAPLIN;Nikita;Yurevich;Nikita Yurevich CHAPLIN;;M;;Member of the State Duma;134291;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134288;EU.7138.7;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikita Jurjevitj TJAPLIN;SV;;;;143798;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134288;EU.7138.7;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-07-28;28;7;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;134289;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134292;EU.7139.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЦУНАЕВА;Елена;Моисеевна;Елена Моисеевна ЦУНАЕВА;RU;F;;;134294;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134292;EU.7139.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TSUNAEVA;Elena;Moiseevna;Elena Moiseevna TSUNAEVA;;F;;Member of the State Duma;134295;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134292;EU.7139.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jelena Moisejevna TSUNAJEVA;SV;;;;143800;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134292;EU.7139.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-01-13;13;1;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;134293;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134296;EU.7140.81;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЦЕД;Николай;Григорьевич;Николай Григорьевич ЦЕД;RU;M;;;134298;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134296;EU.7140.81;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TSED;Nikolay;Grigorevich;Nikolay Grigorevich TSED;;M;;Member of the State Duma;134299;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134296;EU.7140.81;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Grigorjevitj TSED;SV;;;;143802;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134296;EU.7140.81;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-01-06;6;1;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;134297;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134300;EU.7141.80;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ХАСАНОВ;Мурат;Русланович;Мурат Русланович ХАСАНОВ;RU;M;;;134302;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134300;EU.7141.80;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KHASANOV;Murat;Ruslanovich;Murat Ruslanovich KHASANOV;;M;;Member of the State Duma;134303;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134300;EU.7141.80;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Murat Ruslanovitj CHASANOV;SV;;;;143804;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134300;EU.7141.80;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-12-10;10;12;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;134301;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134304;EU.7142.79;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ХАРЧЕНКО;Екатерина;Владимировна;Екатерина Владимировна ХАРЧЕНКО;RU;F;;;134306;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134304;EU.7142.79;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KHARCHENKO;Ekaterina;Vladimirovna;Ekaterina Vladimirovna KHARCHENKO;;F;;Member of the State Duma;134307;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134304;EU.7142.79;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jekaterina Vladimirovna CHARTJENKO;SV;;;;143807;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134304;EU.7142.79;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-08-11;11;8;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;134305;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134308;EU.7143.78;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ХАМЗАЕВ;Бийсултан;Султанбиевич;Бийсултан Султанбиевич ХАМЗАЕВ;RU;M;;;134310;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134308;EU.7143.78;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KHAMZAEV;Biysultan;Sultanbievich;Biysultan Sultanbievich KHAMZAEV;;M;;Member of the State Duma;134311;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134308;EU.7143.78;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bijsultan Sultanbijevitj CHAMZAJEV;SV;;;;143808;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134308;EU.7143.78;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-05-24;24;5;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;134309;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134312;EU.7144.77;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ФРОЛОВА;Тамара;Ивановна;Тамара Ивановна ФРОЛОВА;RU;F;;;134314;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134312;EU.7144.77;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;FROLOVA;Tamara;Ivanovna;Tamara Ivanovna FROLOVA;;F;;Member of the State Duma;134315;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134312;EU.7144.77;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-11-02;2;11;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;134313;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134316;EU.7145.76;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ФОМИЧЁВ;Вячеслав;Васильевич;Вячеслав Васильевич ФОМИЧЁВ;RU;M;;;134318;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134316;EU.7145.76;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;FOMICHEV;Vyacheslav;Vasilevich;Vyacheslav Vasilevich FOMICHEV;;M;;Member of the State Duma;134319;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134316;EU.7145.76;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vjatjeslav Vasiljevitj FOMITJOV;SV;;;;143813;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134316;EU.7145.76;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-04-26;26;4;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;134317;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134320;EU.7146.75;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ФЕТИСОВ;Вячеслав;;Вячеслав ФЕТИСОВ;RU;M;;;134322;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134320;EU.7146.75;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;FETISOV;Vyacheslav;;Vyacheslav FETISOV;;M;;Member of the State Duma;134323;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134320;EU.7146.75;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vjatjeslav FETISOV;SV;;;;143815;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134320;EU.7146.75;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-04-20;20;4;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;134321;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134324;EU.7147.74;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Pavel Michajlovitj FEDJAJEV;SV;M;;;144268;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134324;EU.7147.74;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ФЕДЯЕВ;Павел;Михайлович;Павел Михайлович ФЕДЯЕВ;RU;M;;;144269;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134324;EU.7147.74;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;FEDYAEV;Pavel;Mikhailovich;Pavel Mikhailovich FEDYAEV;;M;;Member of the State Duma;144270;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134324;EU.7147.74;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-07-31;31;7;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;134325;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134328;EU.7148.73;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ФЁДОРОВ;Евгений;Алексеевич;Евгений Алексеевич ФЁДОРОВ;RU;M;;;134330;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134328;EU.7148.73;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;FYODOROV;Yevgeny;Alexeyevich;Yevgeny Alexeyevich FYODOROV;;M;;Member of the State Duma;134331;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134328;EU.7148.73;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jevgenij Aleksejevitj FJODOROV;SV;;;;143819;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134328;EU.7148.73;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-05-11;11;5;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;134329;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134332;EU.7149.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ФАРРАХОВ;Айрат;Закиевич;Айрат Закиевич ФАРРАХОВ;RU;M;;;134334;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134332;EU.7149.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;FARRAKHOV;Airat;Zakievich;Airat Zakievich FARRAKHOV;;M;;Member of the State Duma;134335;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134332;EU.7149.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ajrat Zakijevitj FARRACHOV;SV;;;;143960;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134332;EU.7149.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-02-17;17;2;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;134333;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134336;EU.7150.50;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ФАДИНА;Оксана;Николаевна;Оксана Николаевна ФАДИНА;RU;F;;;134338;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134336;EU.7150.50;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;FADINA;Oksana;Nikolaevna;Oksana Nikolaevna FADINA;;F;;Member of the State Duma;134339;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134336;EU.7150.50;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oksana Nikolajevna FADINA;SV;;;;143961;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134336;EU.7150.50;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-07-03;3;7;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;134337;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134340;EU.7151.49;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;УТЯШЕВА;Римма;Амировна;Римма Амировна УТЯШЕВА;RU;F;;;134342;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134340;EU.7151.49;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;UTYASHEVA;Rimma;Amirovna;Rimma Amirovna UTYASHEVA;;F;;Member of the State Duma;134343;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134340;EU.7151.49;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Rimma Amirovna UTIASJEVA;SV;;;;143962;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134340;EU.7151.49;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-01-03;3;1;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;134341;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134344;EU.7152.48;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТУТОВА;Лариса;Николаевна;Лариса Николаевна ТУТОВА;RU;F;;;134346;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134344;EU.7152.48;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TUTOVA;Larisa;Nikolaevna;Larisa Nikolaevna TUTOVA;;F;;Member of the State Duma;134347;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134344;EU.7152.48;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Larisa Nikolajevna TUTOVA;SV;;;;143963;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134344;EU.7152.48;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-10-18;18;10;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;134345;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134348;EU.7153.47;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТУРОВ;Артём;Викторович;Артём Викторович ТУРОВ;RU;M;;;134350;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134348;EU.7153.47;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TUROV;Artyom;Viktorovich;Artyom Viktorovich TUROV;;M;;Member of the State Duma;134351;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134348;EU.7153.47;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Artiom Viktorovitj TUROV;SV;;;;143964;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134348;EU.7153.47;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-03-01;1;3;1984;;;NO;GREGORIAN;;;;;00;UNKNOWN;134349;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134352;EU.7154.46;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТРИФОНОВ;Андрей;Фёдорович;Андрей Фёдорович ТРИФОНОВ;RU;M;;;134354;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134352;EU.7154.46;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TRIFONOV;Andrey;Fedorovich;Andrey Fedorovich TRIFONOV;;M;;Member of the State Duma;134355;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134352;EU.7154.46;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Fjodorovitj TRIFONOV;SV;;;;143965;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134352;EU.7154.46;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-05-01;1;5;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;134353;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134356;EU.7155.45;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТЕТЕРДИНКО;Александр;Павлович;Александр Павлович ТЕТЕРДИНКО;RU;M;;;134358;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134356;EU.7155.45;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TETERDINKO;Aleksandr;Pavlovich;Aleksandr Pavlovich TETERDINKO;;M;;Member of the State Duma;134359;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134356;EU.7155.45;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Pavlovitj TETERDINKO;SV;;;;143966;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134356;EU.7155.45;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-11-20;20;11;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;134357;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134360;EU.7156.44;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТЕРЮШКОВ;Роман;Игоревич;Роман Игоревич ТЕРЮШКОВ;RU;M;;;134362;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134360;EU.7156.44;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TERYUSHKOV;Roman;Igorevich;Roman Igorevich TERYUSHKOV;;M;;Member of the State Duma;134363;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134360;EU.7156.44;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Roman Igorevitj TERJUSJKOV;SV;;;;143967;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134360;EU.7156.44;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-12-20;20;12;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;134361;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134364;EU.7157.43;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТЕРЕНТЬЕВ;Михаил;Борисович;Михаил Борисович ТЕРЕНТЬЕВ;RU;M;;;134366;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134364;EU.7157.43;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TERENTYEV;Mikhail;Borisovich;Mikhail Borisovich TERENTYEV;;M;;Member of the State Duma;134367;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134364;EU.7157.43;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Michail Borisovitj TERENTIEV;SV;M;;;144103;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134364;EU.7157.43;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-05-14;14;5;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;134365;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134368;EU.7158.42;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТЕН;Сергей;Юрьевич;Сергей Юрьевич ТЕН;RU;M;;;134370;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134368;EU.7158.42;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TEN;Sergey;Yurevich;Sergey Yurevich TEN;;M;;Member of the State Duma;134371;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134368;EU.7158.42;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Jurjevitj TEN;SV;;;;143980;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134368;EU.7158.42;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-08-25;25;8;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;134369;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134372;EU.7159.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТАТРИЕВ;Муслим;Барисович;Муслим Барисович ТАТРИЕВ;RU;M;;;134374;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134372;EU.7159.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TATRIEV;Muslim;Barisovich;Muslim Barisovich TATRIEV;;M;;Member of the State Duma;134375;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134372;EU.7159.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Muslim Barisovitj TATRIJEV;SV;;;;143968;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134372;EU.7159.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-01-11;11;1;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;134373;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134376;EU.7160.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТАРАСЕНКО;Михаил;Васильевич;Михаил Васильевич ТАРАСЕНКО;RU;M;;;134378;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134376;EU.7160.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TARASENKO;Michail;Vasilevich;Michail Vasilevich TARASENKO;;M;;Member of the State Duma;134379;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134376;EU.7160.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Michail Vasiljevitj TARASENKO;SV;;;;143969;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134376;EU.7160.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947-11-21;21;11;1947;;;NO;GREGORIAN;;;;;00;UNKNOWN;134377;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134380;EU.7161.18;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТАЙМАЗОВ;Артур;Борисович;Артур Борисович ТАЙМАЗОВ;RU;M;;;134382;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134380;EU.7161.18;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TAYMAZOV;Artur;Borisovich;Artur Borisovich TAYMAZOV;;M;;Member of the State Duma;134383;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134380;EU.7161.18;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Artur Borisovitj TAJMAZOV;SV;;;;143970;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134380;EU.7161.18;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-07-20;20;7;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;134381;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134384;EU.7162.17;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СТЕНЯКИНА;Екатерина;Петровна;Екатерина Петровна СТЕНЯКИНА;RU;F;;;134386;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134384;EU.7162.17;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;STENYAKINA;Ekaterina;Petrovna;Ekaterina Petrovna STENYAKINA;;F;;Member of the State Duma;134387;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134384;EU.7162.17;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jekaterina Petrovna STENJAKINA;SV;;;;143971;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134384;EU.7162.17;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-05-04;4;5;1985;;;NO;GREGORIAN;;;;;00;UNKNOWN;134385;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134388;EU.7163.16;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СТАРШИНОВ;Михаил;Евгеньевич;Михаил Евгеньевич СТАРШИНОВ;RU;M;;;134390;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134388;EU.7163.16;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;STARSHINOV;Mikhail;Evgenyevich;Mikhail Evgenyevich STARSHINOV;;M;;Member of the State Duma;134391;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134388;EU.7163.16;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Michail Jevgenjevitj STARSJINOV;SV;;;;143972;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134388;EU.7163.16;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-12-12;12;12;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;134389;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134392;EU.7164.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СПИРИДОНОВ;Александр;Юрьевич;Александр Юрьевич СПИРИДОНОВ;RU;M;;;134394;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134392;EU.7164.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SPIRIDONOV;Aleksandr;Yurevich;Aleksandr Yurevich SPIRIDONOV;;M;;Member of the State Duma;134395;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134392;EU.7164.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Jurjevitj SPIRIDONOV;SV;;;;143981;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134392;EU.7164.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989-01-03;3;1;1989;;;NO;GREGORIAN;;;;;00;UNKNOWN;134393;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134396;EU.7165.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СОЛОВЬЕВ;Сергей;Анатольевич;Сергей Анатольевич СОЛОВЬЕВ;RU;M;;;134398;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134396;EU.7165.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SOLOVEV;Sergey;Anatolevich;Sergey Anatolevich SOLOVEV;;M;;Member of the State Duma;134399;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134396;EU.7165.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Anatoljevitj SOLOVJOV;SV;;;;143982;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134396;EU.7165.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-05-01;1;5;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;134397;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134400;EU.7166.13;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СОКОЛ;Сергей;Михайлович;Сергей Михайлович СОКОЛ;RU;M;;;134402;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134400;EU.7166.13;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SOKOL;Sergey;Mikhailovich;Sergey Mikhailovich SOKOL;;M;;Member of the State Duma;134403;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134400;EU.7166.13;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Michajlovitj SOKOL;SV;;;;143973;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134400;EU.7166.13;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-12-17;17;12;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;134401;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134404;EU.7167.12;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СМИРНОВ;Виктор;Владимирович;Виктор Владимирович СМИРНОВ;RU;M;;;134406;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134404;EU.7167.12;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SMIRNOV;Viktor;Vladimirovich;Viktor Vladimirovich SMIRNOV;;M;;Member of the State Duma;134407;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134404;EU.7167.12;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Vladimirovitj SMIRNOV;SV;;;;143974;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134404;EU.7167.12;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-09-09;9;9;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;134405;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134408;EU.7168.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СКРУГ;Валерий;Степанович;Валерий Степанович СКРУГ;RU;M;;;134410;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134408;EU.7168.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SKRUG;Valeriy;Stepanovich;Valeriy Stepanovich SKRUG;;M;;Member of the State Duma;134411;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134408;EU.7168.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Valerij Stepanovitj SKRUG;SV;;;;143975;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134408;EU.7168.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-06-20;20;6;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;134409;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134412;EU.7169.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СКОЧ;Андрей;Владимирович;Андрей Владимирович СКОЧ;RU;M;;;134414;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134412;EU.7169.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SKOCH;Andrei;Vladimirovich;Andrei Vladimirovich SKOCH;;M;;Member of the State Duma;134415;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134412;EU.7169.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Vladimirovitj SKOTJ;SV;;;;143976;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134412;EU.7169.10;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-01-30;30;1;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;134413;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134416;EU.7170.85;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СКЛЯР;Геннадий;Иванович;Геннадий Иванович СКЛЯР;RU;M;;;134418;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134416;EU.7170.85;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SKLYAR;Gennadiy;Ivanovich;Gennadiy Ivanovich SKLYAR;;M;;Member of the State Duma;134419;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134416;EU.7170.85;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Gennadij Ivanovitj SKLJAR;SV;;;;143983;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134416;EU.7170.85;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-05-17;17;5;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;134417;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134420;EU.7171.84;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СКАЧКОВ;Александр;Анатольевич;Александр Анатольевич СКАЧКОВ;RU;M;;;134422;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134420;EU.7171.84;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SKACHKOV;Aleksandr;Anatolevich;Aleksandr Anatolevich SKACHKOV;;M;;Member of the State Duma;134423;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134420;EU.7171.84;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Anatoljevitj SKATJKOV;SV;;;;143984;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134420;EU.7171.84;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-11-21;21;11;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;134421;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134424;EU.7172.83;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СИТНИКОВ;Алексей;Владимирович;Алексей Владимирович СИТНИКОВ;RU;M;;;134426;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134424;EU.7172.83;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SITNIKOV;Aleksey;Vladimirovich;Aleksey Vladimirovich SITNIKOV;;M;;Member of the State Duma;134427;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134424;EU.7172.83;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Vladimirovitj SITNIKOV;SV;;;;143985;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134424;EU.7172.83;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-06-19;19;6;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;134425;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134428;EU.7173.82;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СИМИГИН;Павел;Владимирович;Павел Владимирович СИМИГИН;RU;M;;;134430;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134428;EU.7173.82;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SIMIGIN;Pavel;Vladimirovich;Pavel Vladimirovich SIMIGIN;;M;;Member of the State Duma;134431;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134428;EU.7173.82;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Pavel Vladimirovitj SIMIGIN;SV;;;;143986;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134428;EU.7173.82;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-07-26;26;7;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;134429;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134432;EU.7174.81;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СИМАНОВСКИЙ;Леонид;Яковлевич;Леонид Яковлевич СИМАНОВСКИЙ;RU;M;;;134434;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134432;EU.7174.81;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SIMANOVSKIY;Leonid;Jakovlevitch;Leonid Jakovlevitch SIMANOVSKIY;;M;;Member of the State Duma;134435;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134432;EU.7174.81;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Leonid Jakovlevitj SIMANOVSKIJ;SV;;;;143987;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134432;EU.7174.81;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-07-19;19;7;1949;;;NO;GREGORIAN;;;;;00;UNKNOWN;134433;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134436;EU.7175.80;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СЕНИН;Владимир;Борисович;Владимир Борисович СЕНИН;RU;M;;;134438;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134436;EU.7175.80;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SENIN;Vladimir;Borisovich;Vladimir Borisovich SENIN;;M;;Member of the State Duma;134439;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134436;EU.7175.80;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Borisovitj SENIN;SV;;;;143988;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134436;EU.7175.80;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-09-17;17;9;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;134437;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134440;EU.7176.79;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СЕЛИВЕРСТОВ;Виктор;Валентинович;Виктор Валентинович СЕЛИВЕРСТОВ;RU;M;;;134442;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134440;EU.7176.79;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SELIVERSTOV;Viktor;Valentinovich;Viktor Valentinovich SELIVERSTOV;;M;;Member of the State Duma;134443;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134440;EU.7176.79;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Valentinovitj SELIVERSTOV;SV;;;;143989;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134440;EU.7176.79;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-08-02;2;8;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;134441;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134444;EU.7177.78;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;САРЫГЛАР;Айдын;Николаевич;Айдын Николаевич САРЫГЛАР;RU;M;;;134446;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134444;EU.7177.78;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SARYGLAR;Aydyn;Nikolaevich;Aydyn Nikolaevich SARYGLAR;;M;;Member of the State Duma;134447;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134444;EU.7177.78;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ajdyn Nikolajevitj SARYGLAR;SV;;;;143990;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134444;EU.7177.78;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-02-22;22;2;1988;;;NO;GREGORIAN;;;;;00;UNKNOWN;134445;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134448;EU.7178.77;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;САРАНОВА;Юлия;Владимировна;Юлия Владимировна САРАНОВА;RU;F;;;134450;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134448;EU.7178.77;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SARANOVA;Yuliya;Vladimirovna;Yuliya Vladimirovna SARANOVA;;F;;Member of the State Duma;134451;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134448;EU.7178.77;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Julija Vladimirovna SARANOVA;SV;;;;143991;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134448;EU.7178.77;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-10-21;21;10;1988;;;NO;GREGORIAN;;;;;00;UNKNOWN;134449;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134452;EU.7179.76;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;САРАЛИЕВ;Шамсаил;Юнусович;Шамсаил Юнусович САРАЛИЕВ;RU;M;;;134454;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134452;EU.7179.76;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SARALIYEV;Shamsail;Yunusovich;Shamsail Yunusovich SARALIYEV;;M;;Member of the State Duma;134455;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134452;EU.7179.76;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sjamsail Junusovitj SARALIJEV;SV;;;;143992;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134452;EU.7179.76;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-11-05;5;11;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;134453;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134456;EU.7180.54;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;САМОКУТЯЕВ;Александр;Михайлович;Александр Михайлович САМОКУТЯЕВ;RU;M;;;134458;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134456;EU.7180.54;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SAMOKUTYAEV;Aleksandr;Mikhailovich;Aleksandr Mikhailovich SAMOKUTYAEV;;M;;Member of the State Duma;134459;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134456;EU.7180.54;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Michajlovitj SAMOKUTIAJEV;SV;;;;143993;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134456;EU.7180.54;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-03-13;13;3;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;134457;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134460;EU.7181.53;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;САМОКИШ;Владимир;Игоревич;Владимир Игоревич САМОКИШ;RU;M;;;134462;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134460;EU.7181.53;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SAMOKISH;Vladimir;Igorevich;Vladimir Igorevich SAMOKISH;;M;;Member of the State Duma;134463;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134460;EU.7181.53;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Igorevitj SAMOKISJ;SV;;;;143994;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134460;EU.7181.53;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-09-20;20;9;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;134461;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134464;EU.7182.52;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;САЛАЕВА;Алла;Леонидовна;Алла Леонидовна САЛАЕВА;RU;F;;;134466;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134464;EU.7182.52;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SALAEVA;Alla;Leonidovna;Alla Leonidovna SALAEVA;;F;;Member of the State Duma;134467;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134464;EU.7182.52;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Alla Leonidovna SALAJEVA;SV;;;;143995;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134464;EU.7182.52;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-09-14;14;9;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;134465;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134468;EU.7183.51;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;САВЧЕНКО;Олег;Владимирович;Олег Владимирович САВЧЕНКО;RU;M;;;134470;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134468;EU.7183.51;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SAVCHENKO;Oleg;Vladimirovich;Oleg Vladimirovich SAVCHENKO;;M;;Member of the State Duma;134471;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134468;EU.7183.51;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleg Vladimirovitj SAVTJENKO;SV;;;;143996;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134468;EU.7183.51;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-10-25;25;10;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;134469;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134472;EU.7184.50;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;САВЕЛЬЕВ;Дмитрий;Иванович;Дмитрий Иванович САВЕЛЬЕВ;RU;M;;;134474;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134472;EU.7184.50;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SAVELYEV;Dmitry;Ivanovich;Dmitry Ivanovich SAVELYEV;;M;;Member of the State Duma;134475;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134472;EU.7184.50;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Ivanovitj SAVELJEV;SV;;;;143997;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134472;EU.7184.50;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-05-25;25;5;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;134473;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134476;EU.7185.49;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АБАКАРОВ;Хизри;Магомедович;Хизри Магомедович АБАКАРОВ;RU;M;;;134478;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134476;EU.7185.49;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ABAKAROV;Khizri;Magomedovich;Khizri Magomedovich ABAKAROV;;M;;Member of the State Duma;134479;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134476;EU.7185.49;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Chizri Magomedovitj ABAKAROV;SV;;;;143998;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134476;EU.7185.49;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-06-28;28;6;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;134477;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134480;EU.7186.48;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АГАЕВ;Бекхан;Вахаевич;Бекхан Вахаевич АГАЕВ;RU;M;;;134482;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134480;EU.7186.48;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;AGAYEV;Bekkhan;Vakhaevich;Bekkhan Vakhaevich AGAYEV;;M;;Member of the State Duma;134483;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134480;EU.7186.48;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bekchan Vachajevitj AGAJEV;SV;;;;143999;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134480;EU.7186.48;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-03-29;29;3;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;134481;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134484;EU.7187.47;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АЗИМОВ;Рахим;Азизбоевич;Рахим Азизбоевич АЗИМОВ;RU;M;;;134486;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134484;EU.7187.47;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ASIMOV;Rahim;Azizboevich;Rahim Azizboevich ASIMOV;;M;;Member of the State Duma;134487;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134484;EU.7187.47;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Rachim Azizbojevitj AZIMOV;SV;;;;144000;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134484;EU.7187.47;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-08-16;16;8;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;134485;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134488;EU.7188.46;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АИТКУЛОВА;Эльвира;Ринатовна;Эльвира Ринатовна АИТКУЛОВА;RU;F;;;134490;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134488;EU.7188.46;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;AITKULOVA;Elvira;Rinatovna;Elvira Rinatovna AITKULOVA;;F;;Member of the State Duma;134491;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134488;EU.7188.46;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-08-19;19;8;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;134489;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134492;EU.7189.45;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АЛЕКСЕЕНКО;Николай;Николаевич;Николай Николаевич АЛЕКСЕЕНКО;RU;M;;;134494;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134492;EU.7189.45;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ALEXEYENKO;Nikolay;Nikolaevich;Nikolay Nikolaevich ALEXEYENKO;;M;;Member of the State Duma;134495;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134492;EU.7189.45;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Nikolajevitj ALEKSEJENKO;SV;;;;144002;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134492;EU.7189.45;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-11-29;29;11;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;134493;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134496;EU.7190.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АЛТУХОВ;Сергей;Викторович;Сергей Викторович АЛТУХОВ;RU;M;;;134498;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134496;EU.7190.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ALTUKHOV;Sergey;Viktorovich;Sergey Viktorovich ALTUKHOV;;M;;Member of the State Duma;134499;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134496;EU.7190.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Viktorovitj ALTUCHOV;SV;;;;144003;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134496;EU.7190.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-02-23;23;2;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;134497;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134500;EU.7191.22;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АЛЬШЕВСКИХ;Андрей;Геннадьевич;Андрей Геннадьевич АЛЬШЕВСКИХ;RU;M;;;134502;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134500;EU.7191.22;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ALSHEVSKIH;Andrey;Gennadievich;Andrey Gennadievich ALSHEVSKIH;;M;;Member of the State Duma;134503;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134500;EU.7191.22;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Gennadjevitj ALSJEVSKICH;SV;;;;144004;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134500;EU.7191.22;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-05-14;14;5;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;134501;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134504;EU.7192.21;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АМЕЛЬЧЕНКОВА;Ольга;Николаевна;Ольга Николаевна АМЕЛЬЧЕНКОВА;RU;F;;;134506;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134504;EU.7192.21;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;AMELCHENKOVA;Olga;Nikolaevna;Olga Nikolaevna AMELCHENKOVA;;F;;Member of the State Duma;134507;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134504;EU.7192.21;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Olga Nikolajevna AMELTJENKOVA;SV;;;;144005;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134504;EU.7192.21;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1990-09-05;5;9;1990;;;NO;GREGORIAN;;;;;00;UNKNOWN;134505;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134508;EU.7193.20;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АНИКЕЕВ;Андрей;Анатольевич;Андрей Анатольевич АНИКЕЕВ;RU;M;;;134510;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134508;EU.7193.20;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ANIKEYEV;Andrey;Anatolevich;Andrey Anatolevich ANIKEYEV;;M;;Member of the State Duma;134511;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134508;EU.7193.20;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Anatoljevitj ANIKEJEV;SV;;;;144006;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134508;EU.7193.20;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-12-16;16;12;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;134509;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134512;EU.7194.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АНИКЕЕВ;Григорий;Викторович;Григорий Викторович АНИКЕЕВ;RU;M;;;134514;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134512;EU.7194.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Grigorij Viktorovitj ANIKEJEV;SV;M;;;144007;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134512;EU.7194.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Grigori Viktorovich ANIKEYEV;;M;;Member of the State Duma;144008;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134512;EU.7194.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-02-28;28;2;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;134513;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134516;EU.7195.18;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АНТРОПЕНКО;Игорь;Александрович;Игорь Александрович АНТРОПЕНКО;RU;M;;;134518;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134516;EU.7195.18;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ANTROPENKO;Igor;Aleksandrovich;Igor Aleksandrovich ANTROPENKO;;M;;Member of the State Duma;134519;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134516;EU.7195.18;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Igor Aleksandrovitj ANTROPENKO;SV;;;;144009;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134516;EU.7195.18;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-12-10;10;12;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;134517;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134520;EU.7196.17;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АНУФРИЕВА;Ольга;Николаевна;Ольга Николаевна АНУФРИЕВА;RU;F;;;134522;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134520;EU.7196.17;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ANUFRIYEVA;Olga;Nikolaevna;Olga Nikolaevna ANUFRIYEVA;;F;;Member of the State Duma;134523;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134520;EU.7196.17;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Olga Nikolajevna ANUFRIJEVA;SV;;;;144010;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134520;EU.7196.17;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-08-18;18;8;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;134521;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134524;EU.7197.16;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АРТАМОНОВА;Валентина;Николаевна;Валентина Николаевна АРТАМОНОВА;;F;;;134526;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134524;EU.7197.16;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ARTAMONOVA;Valentina;Nikolaevna;Valentina Nikolaevna ARTAMONOVA;;F;;Member of the State Duma;134527;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134524;EU.7197.16;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Valentina Nikolajevna ARTAMONOVA;SV;;;;144011;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134524;EU.7197.16;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-12-13;13;12;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;134525;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134528;EU.7198.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АРШИНОВА;Алёна;Игоревна;Алёна Игоревна АРШИНОВА;RU;F;;;134530;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134528;EU.7198.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ARSCHINOVA;Aljona;Igorevna;Aljona Igorevna ARSCHINOVA;;F;;Member of the State Duma;134531;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134528;EU.7198.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aljona Igorevna ARSJINOVA;SV;;;;143703;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134528;EU.7198.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-03-03;3;3;1985;;;NO;GREGORIAN;;;;;00;UNKNOWN;134529;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134532;EU.7199.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АЮПОВ;Ринат;Зайдулаевич;Ринат Зайдулаевич АЮПОВ;;M;;;134534;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134532;EU.7199.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;AYUPOV;Rinat;Zaydulaevich;Rinat Zaydulaevich AYUPOV;;M;;Member of the State Duma;134535;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134532;EU.7199.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Rinat Zajdulajevitj AJUPOV;SV;;;;143728;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134532;EU.7199.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-08-13;13;8;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;134533;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134540;EU.7201.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БАЖЕНОВ;Тимофей;;Тимофей БАЖЕНОВ;RU;M;;;134542;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134540;EU.7201.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BAZHENOV;Timofey;;Timofey BAZHENOV;;M;;Member of the State Duma;134543;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134540;EU.7201.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Timofej BAZJENOV;SV;;;;143730;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134540;EU.7201.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-01-25;25;1;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;134541;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134544;EU.7202.18;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БАЙГУСКАРОВ;Зариф;Закирович;Зариф Закирович БАЙГУСКАРОВ;RU;M;;;134546;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134544;EU.7202.18;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BAIGUSKAROV;Zarif;Zakirovich;Zarif Zakirovich BAIGUSKAROV;;M;;Member of the State Duma;134547;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134544;EU.7202.18;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Zarif Zakirovitj BAJGUSKAROV;SV;;;;143732;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134544;EU.7202.18;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-06-30;30;6;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;134545;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134548;EU.7203.17;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БАРАХОЕВ;Бекхан;Абдулхамидович;Бекхан Абдулхамидович БАРАХОЕВ;RU;M;;;134550;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134548;EU.7203.17;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BARAKHOYEV;Bekkhan;Abdulkhamidovich;Bekkhan Abdulkhamidovich BARAKHOYEV;;M;;Member of the State Duma;134551;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134548;EU.7203.17;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bekchan Abdulchamidovitj BARACHOJEV;SV;;;;143737;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134548;EU.7203.17;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-08-01;1;8;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;134549;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134552;EU.7204.16;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БАСАНСКИЙ;Антон;Александрович;Антон Александрович БАСАНСКИЙ;RU;M;;;134554;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134552;EU.7204.16;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BASANSKY;Anton;Aleksandrovich;Anton Aleksandrovich BASANSKY;;M;;Member of the State Duma;134555;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134552;EU.7204.16;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anton Aleksandrovitj BASANSKIJ;SV;;;;143741;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134552;EU.7204.16;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-07-09;9;7;1987;;;NO;GREGORIAN;;;;;00;UNKNOWN;134553;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134556;EU.7205.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БАТАЛОВА;Рима;Акбердиновна;Рима Акбердиновна БАТАЛОВА;RU;F;;;134558;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134556;EU.7205.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BATALOVA;Rima;Akberdinowna;Rima Akberdinowna BATALOVA;;F;;Member of the State Duma;134559;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134556;EU.7205.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Rima Akberdinovna BATALOVA;SV;;;;143745;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134556;EU.7205.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-01-01;1;1;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;134557;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134560;EU.7206.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БАХМЕТЬЕВ;Виталий;Викторович;Виталий Викторович БАХМЕТЬЕВ;RU;M;;;134562;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134560;EU.7206.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BAKHMETYEV;Vitaly;Viktorovich;Vitaly Viktorovich BAKHMETYEV;;M;;Member of the State Duma;134563;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134560;EU.7206.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vitalij Viktorovitj BACHMETIEV;SV;;;;143682;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134560;EU.7206.14;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-08-12;12;8;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;134561;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134564;EU.7207.13;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БАШАНКАЕВ;Бадма;Николаевич;Бадма Николаевич БАШАНКАЕВ;RU;M;;;134566;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134564;EU.7207.13;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BASHANKAYEV;Badma;Nikolaevich;Badma Nikolaevich BASHANKAYEV;;M;;Member of the State Duma;134567;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134564;EU.7207.13;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Badma Nikolajevitj BASJANKAJEV;SV;;;;143752;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134564;EU.7207.13;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-06-16;16;6;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;134565;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134568;EU.7208.12;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БЕЛЫХ;Ирина;Викторовна;Ирина Викторовна БЕЛЫХ;RU;F;;;134570;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134568;EU.7208.12;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BELYCH;Irina;Victorovna;Irina Victorovna BELYCH;;F;;Member of the State Duma;134571;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134568;EU.7208.12;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Irina Viktorovna BELYCH;SV;;;;143754;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134568;EU.7208.12;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-08-16;16;8;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;134569;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134572;EU.7209.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БЕССАРАБ;Светлана;Викторовна;Светлана Викторовна БЕССАРАБ;RU;F;;;134574;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134572;EU.7209.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BESSARAB;Svetlana;Victorovna;Svetlana Victorovna BESSARAB;;F;;Member of the State Duma;134575;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134572;EU.7209.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Svetlana Viktorovna BESSARAB;SV;;;;143685;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134572;EU.7209.11;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-12-07;7;12;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;134573;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134576;EU.7210.86;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БЕССАРАБОВ;Даниил;Владимирович;Даниил Владимирович БЕССАРАБОВ;RU;M;;;134578;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134576;EU.7210.86;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BESSARABOV;Daniil;Vladimirovich;Daniil Vladimirovich BESSARABOV;;M;;Member of the State Duma;134579;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134576;EU.7210.86;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Daniil Vladimirovitj BESSARABOV;SV;;;;143687;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134576;EU.7210.86;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-07-09;9;7;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;134577;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134580;EU.7211.85;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БИДОНЬКО;Сергей;Юрьевич;Сергей Юрьевич БИДОНЬКО;RU;M;;;134582;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134580;EU.7211.85;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BIDONKO;Sergey;Yurevich;Sergey Yurevich BIDONKO;;M;;Member of the State Duma;134583;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134580;EU.7211.85;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Jurjevitj BIDONKO;SV;;;;143788;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134580;EU.7211.85;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-08-18;18;8;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;134581;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134584;EU.7212.84;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БИЧАЕВ;Артём;Александрович;Артём Александрович БИЧАЕВ;RU;M;;;134586;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134584;EU.7212.84;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BICHAYEV;Artyom;Aleksandrovich;Artyom Aleksandrovich BICHAYEV;;M;;Member of the State Duma;134587;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134584;EU.7212.84;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Artiom Aleksandrovitj BITJAJEV;SV;;;;143790;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134584;EU.7212.84;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1990-04-04;4;4;1990;;;NO;GREGORIAN;;;;;00;UNKNOWN;134585;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134588;EU.7213.83;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БОГУСЛАВСКИЙ;Ирек;Борисович;Ирек Борисович БОГУСЛАВСКИЙ;RU;M;;;134590;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134588;EU.7213.83;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BOGUSLAWSKI;Irek;Borissowitsch;Irek Borissowitsch BOGUSLAWSKI;;M;;Member of the State Duma;134591;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134588;EU.7213.83;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Irek Borisovitj BOGUSLAVSKIJ;SV;;;;143792;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134588;EU.7213.83;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-09-09;9;9;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;134589;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134592;EU.7214.82;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БОНДАРЕНКО;Елена;Вениаминовна;Елена Вениаминовна БОНДАРЕНКО;RU;F;;;134594;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134592;EU.7214.82;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BONDARENKO;Jelena;Veniaminovna;Jelena Veniaminovna BONDARENKO;;F;;Member of the State Duma;134595;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134592;EU.7214.82;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-06-10;10;6;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;134593;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134596;EU.7215.81;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БОРИСОВ;Александр;Александрович;Александр Александрович БОРИСОВ;RU;M;;;134598;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134596;EU.7215.81;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BORISSOV;Alexander;Aleksandrovich;Alexander Aleksandrovich BORISSOV;;M;;Member of the State Duma;134599;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134596;EU.7215.81;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Aleksandrovitj BORISOV;SV;;;;143795;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134596;EU.7215.81;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-08-17;17;8;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;134597;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134604;EU.7217.79;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БОРЦОВ;Николай;Иванович;Николай Иванович БОРЦОВ;RU;M;;;134606;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134604;EU.7217.79;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BORTSOV;Nikolay;Ivanovich;Nikolay Ivanovich BORTSOV;;M;;Member of the State Duma;134607;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134604;EU.7217.79;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Ivanovitj BORTSOV;SV;;;;143797;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134604;EU.7217.79;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1945-05-08;8;5;1945;;;NO;GREGORIAN;;;;;00;UNKNOWN;134605;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134608;EU.7218.78;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БОЯРСКИЙ;Сергей;Михайлович;Сергей Михайлович БОЯРСКИЙ;RU;M;;;134610;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134608;EU.7218.78;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BOYARSKIY;Sergey;Mikhailovich;Sergey Mikhailovich BOYARSKIY;;M;;Member of the State Duma;134611;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134608;EU.7218.78;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Michajlovitj BOJARSKIJ;SV;;;;143799;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134608;EU.7218.78;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-01-24;24;1;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;134609;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134612;EU.7219.77;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БРЫКИН;Николай;Гаврилович;Николай Гаврилович БРЫКИН;RU;M;;;134614;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134612;EU.7219.77;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BRYKIN;Nikolai;Gavrilovich;Nikolai Gavrilovich BRYKIN;;M;;Member of the State Duma;134615;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134612;EU.7219.77;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Gavrilovitj BRYKIN;SV;;;;143801;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134612;EU.7219.77;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-11-25;25;11;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;134613;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134616;EU.7220.55;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БУДУЕВ;Николай;Робертович;Николай Робертович БУДУЕВ;RU;M;;;134618;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134616;EU.7220.55;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BUDUYEV;Nikolai;Robertovich;Nikolai Robertovich BUDUYEV;;M;;Member of the State Duma;134619;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134616;EU.7220.55;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Robertovitj BUDUJEV;SV;;;;143803;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134616;EU.7220.55;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-03-24;24;3;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;134617;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134620;EU.7221.54;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БУЛАВИНОВ;Вадим;Евгеньевич;Вадим Евгеньевич БУЛАВИНОВ;RU;M;;;134622;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134620;EU.7221.54;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BULAVINOV;Vadim;Evgenyevich;Vadim Evgenyevich BULAVINOV;;M;;Member of the State Duma;134623;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134620;EU.7221.54;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vadim Jevgenjevitj BULAVINOV;SV;;;;143805;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134620;EU.7221.54;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-03-20;20;3;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;134621;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134624;EU.7222.53;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БУРЛАКОВ;Сергей;Владимирович;Сергей Владимирович БУРЛАКОВ;RU;M;;;134626;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134624;EU.7222.53;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BURLAKOV;Sergey;Vladimirovich;Sergey Vladimirovich BURLAKOV;;M;;Member of the State Duma;134627;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134624;EU.7222.53;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Vladimirovitj BURLAKOV;SV;;;;143806;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134624;EU.7222.53;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-05-26;26;5;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;134625;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134628;EU.7223.52;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БУРМАТОВ;Владимир;Владимирович;Владимир Владимирович БУРМАТОВ;RU;M;;;134630;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134628;EU.7223.52;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BURMATOV;Vladimir;Vladimirovich;Vladimir Vladimirovich BURMATOV;;M;;Member of the State Duma;134631;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134628;EU.7223.52;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Vladimirovitj BURMATOV;SV;;;;143809;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134628;EU.7223.52;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-08-18;18;8;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;134629;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134632;EU.7224.51;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БУТИНА;Мария;Валерьевна;Мария Валерьевна БУТИНА;RU;F;;;134634;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134632;EU.7224.51;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BUTINA;Maria;Valerjevna;Maria Valerjevna BUTINA;;F;;Member of the State Duma;134635;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134632;EU.7224.51;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Marija Valerjevna BUTINA;SV;;;;143812;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134632;EU.7224.51;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-11-10;10;11;1988;;;NO;GREGORIAN;;;;;00;UNKNOWN;134633;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134636;EU.7225.50;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БУЦКАЯ;Татьяна;Викторовна;Татьяна Викторовна БУЦКАЯ;RU;F;;;134638;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134636;EU.7225.50;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BUTSKAYA;Tatiana;Victorovna;Tatiana Victorovna BUTSKAYA;;F;;Member of the State Duma;134639;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134636;EU.7225.50;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Tatiana Viktorovna BUTSKAJA;SV;;;;143814;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134636;EU.7225.50;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-05-08;8;5;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;134637;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134640;EU.7226.49;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВАЛЕЕВ;Эрнест;Абдулович;Эрнест Абдулович ВАЛЕЕВ;RU;M;;;134642;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134640;EU.7226.49;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VALEEV;Ernest;Abdulovich;Ernest Abdulovich VALEEV;;M;;Member of the State Duma;134643;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134640;EU.7226.49;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ernest Abdulovitj VALEJEV;SV;;;;143816;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134640;EU.7226.49;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-04-07;7;4;1950;;;NO;GREGORIAN;;;;;00;UNKNOWN;134641;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134644;EU.7227.48;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВАЛЕНЧУК;Олег;Дорианович;Олег Дорианович ВАЛЕНЧУК;RU;M;;;134646;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134644;EU.7227.48;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VALENCHUK;Oleg;Dorianovich;Oleg Dorianovich VALENCHUK;;M;;Member of the State Duma;134647;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134644;EU.7227.48;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleg Dorianovitj VALENTJUK;SV;;;;143818;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134644;EU.7227.48;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-09-14;14;9;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;134645;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134648;EU.7228.47;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВАЛУЕВ;Николай;Сергеевич;Николай Сергеевич ВАЛУЕВ;RU;M;;;134650;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134648;EU.7228.47;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VALUEEV;Nikolai;Sergeevich;Nikolai Sergeevich VALUEEV;;M;;Member of the State Duma;134651;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134648;EU.7228.47;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Sergejevitj VALUJEV;SV;;;;143820;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134648;EU.7228.47;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-08-21;21;8;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;134649;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134652;EU.7229.46;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВАСИЛЬКОВА;Мария;Викторовна;Мария Викторовна ВАСИЛЬКОВА;RU;F;;;134654;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134652;EU.7229.46;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VASILKOVA;Maria;Victorovna;Maria Victorovna VASILKOVA;;F;;Member of the State Duma;134655;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134652;EU.7229.46;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Marija Viktorovna VASILKOVA;SV;;;;143821;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134652;EU.7229.46;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-02-13;13;2;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;134653;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134656;EU.7230.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВЕЛЛЕР;Алексей;Борисович;Алексей Борисович ВЕЛЛЕР;RU;M;;;134658;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134656;EU.7230.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VELLER;Alexey;Borisovich;Alexey Borisovich VELLER;;M;;Member of the State Duma;134659;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134656;EU.7230.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Borisovitj VELLER;SV;M;;;144140;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134656;EU.7230.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-01-09;9;1;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;134657;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134660;EU.7231.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВЕРЕМЕЕНКО;Сергей;Алексеевич;Сергей Алексеевич ВЕРЕМЕЕНКО;RU;M;;;134662;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134660;EU.7231.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VEREMEENKO;Sergey;Alexeyevich;Sergey Alexeyevich VEREMEENKO;;M;;Member of the State Duma;134663;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134660;EU.7231.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Aleksejevitj VEREMEJENKO;SV;;;;143833;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134660;EU.7231.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-09-26;26;9;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;134661;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134664;EU.7232.22;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВОДЯНОВ;Роман;Михайлович;Роман Михайлович ВОДЯНОВ;RU;M;;;134666;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134664;EU.7232.22;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VODYANOV;Roman;Mikhailovich;Roman Mikhailovich VODYANOV;;M;;Member of the State Duma;134667;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134664;EU.7232.22;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Roman Michajlovitj VODJANOV;SV;;;;143836;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134664;EU.7232.22;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-11-25;25;11;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;134665;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134668;EU.7233.21;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВОЛЬФСОН;Илья;Светославович;Илья Светославович ВОЛЬФСОН;RU;M;;;134670;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134668;EU.7233.21;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VOLFSON;Ilya;Svetoslavovich;Ilya Svetoslavovich VOLFSON;;M;;Member of the State Duma;134671;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134668;EU.7233.21;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ilja Svetoslavovitj VOLFSON;SV;;;;143771;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134668;EU.7233.21;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-06-08;8;6;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;134669;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134672;EU.7234.20;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВОРОБЬЁВ;Андрей;Викторович;Андрей Викторович ВОРОБЬЁВ;RU;M;;;134674;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134672;EU.7234.20;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VOROBEV;Andrey;Viktorovich;Andrey Viktorovich VOROBEV;;M;;Member of the State Duma;134675;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134672;EU.7234.20;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Viktorovitj VOROBJOV;SV;;;;143776;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134672;EU.7234.20;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-07-24;24;7;1985;;;NO;GREGORIAN;;;;;00;UNKNOWN;134673;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134676;EU.7235.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВОРОНОВСКИЙ;Анатолий;;Анатолий ВОРОНОВСКИЙ;RU;M;;;134678;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134676;EU.7235.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VORONOVSKIY;Anatoliy;;Anatoliy VORONOVSKIY;;M;;Member of the State Duma;134679;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134676;EU.7235.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anatolij VORONOVSKIJ;SV;;;;143842;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134676;EU.7235.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-12-28;28;12;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;134677;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134680;EU.7236.18;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВЫБОРНЫЙ;Анатолий;Борисович;Анатолий Борисович ВЫБОРНЫЙ;RU;M;;;134682;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134680;EU.7236.18;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VYBORNY;Anatoli;Borisovich;Anatoli Borisovich VYBORNY;;M;;Member of the State Duma;134683;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134680;EU.7236.18;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anatolij Borisovitj VYBORNYJ;SV;;;;143862;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134680;EU.7236.18;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-06-08;8;6;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;134681;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134684;EU.7237.17;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГАДЖИЕВ;Абдулхаким;Кутбудинович;Абдулхаким Кутбудинович ГАДЖИЕВ;RU;M;;;134686;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134684;EU.7237.17;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GADZHIYEV;Abdulkhakim;Kutbudinovich;Abdulkhakim Kutbudinovich GADZHIYEV;;M;;Member of the State Duma;134687;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134684;EU.7237.17;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Abdulchakim Kutbudinovitj GADZJIJEV;SV;;;;143864;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134684;EU.7237.17;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-02-13;13;2;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;134685;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134688;EU.7238.16;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГАДЖИЕВ;Мурад;Станиславович;Мурад Станиславович ГАДЖИЕВ;RU;M;;;134690;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134688;EU.7238.16;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GADZHIYEV;Murad;Stanislavovich;Murad Stanislavovich GADZHIYEV;;M;;Member of the State Duma;134691;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134688;EU.7238.16;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Murad Stanislavovitj GADZJIJEV;SV;M;;;144104;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134688;EU.7238.16;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-07-31;31;7;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;134689;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134692;EU.7239.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГАДЖИЕВ;Руслан;Гаджиевич;Руслан Гаджиевич ГАДЖИЕВ;RU;M;;;134694;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134692;EU.7239.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GADZHIYEV;Ruslan;Gadzhievich;Ruslan Gadzhievich GADZHIYEV;;M;;Member of the State Duma;134695;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134692;EU.7239.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ruslan Gadzjijevitj GADZJIJEV;SV;;;;143846;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134692;EU.7239.15;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-08-29;29;8;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;134693;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134696;EU.7240.90;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГАРИН;Олег;Владимирович;Олег Владимирович ГАРИН;RU;M;;;134698;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134696;EU.7240.90;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GARIN;Oleg;Vladimirovich;Oleg Vladimirovich GARIN;;M;;Member of the State Duma;134699;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134696;EU.7240.90;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleg Vladimirovitj GARIN;SV;;;;143849;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134696;EU.7240.90;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-12-26;26;12;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;134697;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134700;EU.7241.89;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГАСАНОВ;Джамаладин;Набиевич;Джамаладин Набиевич ГАСАНОВ;RU;M;;;134702;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134700;EU.7241.89;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GASANOV;Dzhamaladin;Nabievich;Dzhamaladin Nabievich GASANOV;;M;;Member of the State Duma;134703;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134700;EU.7241.89;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dzjamaladin Nabijevitj GASANOV;SV;;;;143855;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134700;EU.7241.89;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-08-05;5;8;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;134701;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134704;EU.7242.88;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГЕККИЕВ;Заур;Далхатович;Заур Далхатович ГЕККИЕВ;RU;M;;;134706;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134704;EU.7242.88;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GEKKIEV;Zaur;Dalkhatovich;Zaur Dalkhatovich GEKKIEV;;M;;Member of the State Duma;134707;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134704;EU.7242.88;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Zaur Dalchatovitj GEKKIJEV;SV;;;;143858;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134704;EU.7242.88;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-02-12;12;2;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;134705;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134708;EU.7243.87;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГЕРМАНОВА;Ольга;Михайловна;Ольга Михайловна ГЕРМАНОВА;RU;F;;;134710;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134708;EU.7243.87;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GERMANOVA;Olga;Mikhailovna;Olga Mikhailovna GERMANOVA;;F;;Member of the State Duma;134711;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134708;EU.7243.87;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Olga Michajlovna GERMANOVA;SV;;;;143867;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134708;EU.7243.87;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-09-26;26;9;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;134709;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134712;EU.7244.86;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГЕТТА;Антон;Александрович;Антон Александрович ГЕТТА;RU;M;;;134714;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134712;EU.7244.86;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GETTA;Anton;Aleksandrovich;Anton Aleksandrovich GETTA;;M;;Member of the State Duma;134715;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134712;EU.7244.86;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anton Aleksandrovitj GETTA;SV;;;;143871;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134712;EU.7244.86;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-04-29;29;4;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;134713;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134716;EU.7245.85;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГИЛЬМУТДИНОВ;Динар;Загитович;Динар Загитович ГИЛЬМУТДИНОВ;RU;M;;;134718;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134716;EU.7245.85;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GILMUTDINOV;Dinar;Zagitovich;Dinar Zagitovich GILMUTDINOV;;M;;Member of the State Duma;134719;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134716;EU.7245.85;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dinar Zagitovitj GILMUTDINOV;SV;;;;143878;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134716;EU.7245.85;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-08-10;10;8;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;134717;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134720;EU.7246.84;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГИЛЬМУТДИНОВ;Ильдар;Ирекович;Ильдар Ирекович ГИЛЬМУТДИНОВ;RU;M;;;134722;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134720;EU.7246.84;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GILMUTDINOV;Ildar;Irekovich;Ildar Irekovich GILMUTDINOV;;M;;Member of the State Duma;134723;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134720;EU.7246.84;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ildar Irekovitj GILMUTDINOV;SV;;;;143905;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134720;EU.7246.84;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-09-03;3;9;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;134721;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134724;EU.7247.83;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГИМБАТОВ;Андрей;Петрович;Андрей Петрович ГИМБАТОВ;RU;M;;;134726;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134724;EU.7247.83;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GIMBATOV;Andrei;Petrovich;Andrei Petrovich GIMBATOV;;M;;Member of the State Duma;134727;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134724;EU.7247.83;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Petrovitj GIMBATOV;SV;;;;143909;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134724;EU.7247.83;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-07-19;19;7;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;134725;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134728;EU.7248.82;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГЛАДКИХ;Борис;Михайлович;Борис Михайлович ГЛАДКИХ;RU;M;;;134730;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134728;EU.7248.82;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GLADKIKH;Boris;Mikhailovich;Boris Mikhailovich GLADKIKH;;M;;Member of the State Duma;134731;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134728;EU.7248.82;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Boris Michajlovitj GLADKICH;SV;;;;143911;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134728;EU.7248.82;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-02-16;16;2;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;134729;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134732;EU.7249.81;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГОВЫРИН;Алексей;;Алексей ГОВЫРИН;RU;M;;;134734;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134732;EU.7249.81;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GOVYRIN;Aleksey;;Aleksey GOVYRIN;;M;;Member of the State Duma;134735;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134732;EU.7249.81;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej GOVYRIN;SV;;;;143912;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134732;EU.7249.81;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-05-26;26;5;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;134733;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134736;EU.7250.59;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГОЛИКОВ;Олег;Александрович;Олег Александрович ГОЛИКОВ;RU;M;;;134738;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134736;EU.7250.59;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GOLIKOV;Oleg;Aleksandrovich;Oleg Aleksandrovich GOLIKOV;;M;;Member of the State Duma;134739;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134736;EU.7250.59;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleg Aleksandrovitj GOLIKOV;SV;;;;143913;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134736;EU.7250.59;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-10-21;21;10;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;134737;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134740;EU.7251.58;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГОНЧАРОВ;Николай;Александрович;Николай Александрович ГОНЧАРОВ;RU;M;;;134742;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134740;EU.7251.58;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GONCHAROV;Nikolay;Aleksandrovich;Nikolay Aleksandrovich GONCHAROV;;M;;Member of the State Duma;134743;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134740;EU.7251.58;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Aleksandrovitj GONTJAROV;SV;;;;143914;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134740;EU.7251.58;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-01-13;13;1;1984;;;NO;GREGORIAN;;;;;00;UNKNOWN;134741;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134744;EU.7252.57;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГОРЕЛКИН;Антон;Вадимович;Антон Вадимович ГОРЕЛКИН;RU;M;;;134746;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134744;EU.7252.57;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GORELKIN;Anton;Vadimovich;Anton Vadimovich GORELKIN;;M;;Member of the State Duma;134747;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134744;EU.7252.57;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anton Vadimovitj GORELKIN;SV;;;;143915;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134744;EU.7252.57;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-12-22;22;12;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;134745;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134748;EU.7253.56;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГОРОХОВ;Андрей;Юрьевич;Андрей Юрьевич ГОРОХОВ;RU;M;;;134750;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134748;EU.7253.56;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GOROKHOV;Andrey;Yurevich;Andrey Yurevich GOROKHOV;;M;;Member of the State Duma;134751;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134748;EU.7253.56;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Jurjevitj GOROCHOV;SV;;;;143916;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134748;EU.7253.56;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-01-13;13;1;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;134749;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134752;EU.7254.55;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГУРУЛЁВ;Андрей;Викторович;Андрей Викторович ГУРУЛЁВ;RU;M;;;134754;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134752;EU.7254.55;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GURULEV;Andrey;Viktorovich;Andrey Viktorovich GURULEV;;M;;Member of the State Duma;134755;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134752;EU.7254.55;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Viktorovitj GURULJOV;SV;;;;143917;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134752;EU.7254.55;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-10-16;16;10;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;134753;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134756;EU.7255.54;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДАНЧИКОВА;Галина;Иннокентьевна;Галина Иннокентьевна ДАНЧИКОВА;RU;F;;;134758;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134756;EU.7255.54;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DANCHIKOVA;Galina;Innokentievna;Galina Innokentievna DANCHIKOVA;;F;;Member of the State Duma;134759;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134756;EU.7255.54;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Galina Innokentievna DANTJIKOVA;SV;;;;143918;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134756;EU.7255.54;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-08-13;13;8;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;134757;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134760;EU.7256.53;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДЕМЧЕНКО;Иван;Иванович;Иван Иванович ДЕМЧЕНКО;RU;M;;;134762;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134760;EU.7256.53;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DEMTSCHENKO;Ivan;Ivanovich;Ivan Ivanovich DEMTSCHENKO;;M;;Member of the State Duma;134763;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134760;EU.7256.53;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ivan Ivanovitj DEMTJENKO;SV;;;;143919;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134760;EU.7256.53;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-09-27;27;9;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;134761;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134764;EU.7257.52;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДЕРЯБКИН;Виктор;Ефимович;Виктор Ефимович ДЕРЯБКИН;RU;M;;;134766;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134764;EU.7257.52;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DERYABKIN;Viktor;Efimovich;Viktor Efimovich DERYABKIN;;M;;Member of the State Duma;134767;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134764;EU.7257.52;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Jefimovitj DERJABKIN;SV;;;;143920;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134764;EU.7257.52;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-05-11;11;5;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;134765;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134768;EU.7258.51;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДЗЮБА;Виктор;Викторович;Виктор Викторович ДЗЮБА;RU;M;;;134770;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134768;EU.7258.51;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DSJUBA;Viktor;Viktorovich;Viktor Viktorovich DSJUBA;;M;;Member of the State Duma;134771;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134768;EU.7258.51;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Viktorovitj DZIUBA;SV;;;;143921;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134768;EU.7258.51;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-08-10;10;8;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;134769;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134772;EU.7259.50;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДИМОВ;Олег;Дмитриевич;Олег Дмитриевич ДИМОВ;RU;M;;;134774;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134772;EU.7259.50;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DIMOV;Oleg;Dmitrievich;Oleg Dmitrievich DIMOV;;M;;Member of the State Duma;134775;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134772;EU.7259.50;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleg Dmitrijevitj DIMOV;SV;;;;143922;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134772;EU.7259.50;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-03-08;8;3;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;134773;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134776;EU.7260.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДОГАЕВ;Ахмед;Шамханович;Ахмед Шамханович ДОГАЕВ;RU;M;;;134778;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134776;EU.7260.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DOGAYEV;Akhmed;Shamkhanovich;Akhmed Shamkhanovich DOGAYEV;;M;;Member of the State Duma;134779;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134776;EU.7260.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Achmed Sjamchanovitj DOGAJEV;SV;;;;143923;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134776;EU.7260.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-08-18;18;8;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;134777;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134780;EU.7261.27;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДОЛУДА;Николай;Александрович;Николай Александрович ДОЛУДА;RU;M;;;134782;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134780;EU.7261.27;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DOLUDA;Nikolay;Aleksandrovich;Nikolay Aleksandrovich DOLUDA;;M;;Member of the State Duma;134783;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134780;EU.7261.27;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Aleksandrovitj DOLUDA;SV;;;;143924;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134780;EU.7261.27;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-06-10;10;6;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;134781;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134784;EU.7262.26;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДОРОШЕНКО;Андрей;Николаевич;Андрей Николаевич ДОРОШЕНКО;RU;M;;;134786;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134784;EU.7262.26;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DOROSHENKO;Andrey;Nikolaevich;Andrey Nikolaevich DOROSHENKO;;M;;Member of the State Duma;134787;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134784;EU.7262.26;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Nikolajevitj DOROSJENKO;SV;;;;143925;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134784;EU.7262.26;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-03-10;10;3;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;134785;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134788;EU.7263.25;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДРОЖЖИНА;Юлия;Николаевна;Юлия Николаевна ДРОЖЖИНА;RU;F;;;134790;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134788;EU.7263.25;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DROZHZHINA;Yuliya;Nikolaevna;Yuliya Nikolaevna DROZHZHINA;;F;;Member of the State Duma;134791;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134788;EU.7263.25;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Julilja Nikolajevna DROZJZJINA;SV;;;;143926;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134788;EU.7263.25;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1990-03-01;1;3;1990;;;NO;GREGORIAN;;;;;00;UNKNOWN;134789;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134792;EU.7264.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДРОЗДОВ;Александр;Сергеевич;Александр Сергеевич ДРОЗДОВ;RU;M;;;134794;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134792;EU.7264.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DROZDOV;Alexander;Sergeevich;Alexander Sergeevich DROZDOV;;M;;Member of the State Duma;134795;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134792;EU.7264.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Sergejevitj DROZDOV;SV;;;;143927;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134792;EU.7264.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-11-01;1;11;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;134793;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134796;EU.7265.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДЬЯКОНОВА;Татьяна;Ивановна;Татьяна Ивановна ДЬЯКОНОВА;RU;F;;;134798;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134796;EU.7265.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DYAKONOVA;Tatyana;Ivanovna;Tatyana Ivanovna DYAKONOVA;;F;;Member of the State Duma;134799;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134796;EU.7265.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Tatiana Ivanovna DJAKONOVA;SV;;;;143928;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134796;EU.7265.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-04-22;22;4;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;134797;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134800;EU.7266.22;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЕВТЮХОВА;Елена;Александровна;Елена Александровна ЕВТЮХОВА;RU;F;;;134802;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134800;EU.7266.22;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;YEVTYUKHOVA;Yelena;Alexandrovna;Yelena Alexandrovna YEVTYUKHOVA;;F;;Member of the State Duma;134803;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134800;EU.7266.22;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jelena Aleksandrovna JEVTIUCHOVA;SV;;;;143929;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134800;EU.7266.22;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-08-07;7;8;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;134801;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134804;EU.7267.21;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЕЗУБОВ;Алексей;Петрович;Алексей Петрович ЕЗУБОВ;RU;M;;;134806;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134804;EU.7267.21;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;YEZUBOV;Aleksey;Petrovich;Aleksey Petrovich YEZUBOV;;M;;Member of the State Duma;134807;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134804;EU.7267.21;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Petrovitj JEZUBOV;SV;;;;143930;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134804;EU.7267.21;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-02-10;10;2;1948;;;NO;GREGORIAN;;;;;00;UNKNOWN;134805;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134808;EU.7268.20;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЕФИМОВ;Виталий;Борисович;Виталий Борисович ЕФИМОВ;RU;M;;;134810;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134808;EU.7268.20;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;JEFIMOW;Vitali;Borisovich;Vitali Borisovich JEFIMOW;;M;;Member of the State Duma;134811;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134808;EU.7268.20;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vitalij Borisovitj JEFIMOV;SV;;;;143931;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134808;EU.7268.20;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1940-04-04;4;4;1940;;;NO;GREGORIAN;;;;;00;UNKNOWN;134809;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134812;EU.7269.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЗАХАРОВ;Константин;Юрьевич;Константин Юрьевич ЗАХАРОВ;RU;M;;;134814;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134812;EU.7269.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ZAKHAROV;Konstantin;Yurevich;Konstantin Yurevich ZAKHAROV;;M;;Member of the State Duma;134815;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134812;EU.7269.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Konstantin Jurjevitj ZACHAROV;SV;;;;143932;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134812;EU.7269.19;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-03-31;31;3;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;134813;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134816;EU.7270.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЗУБАРЕВ;Виктор;Bладиславович;Виктор Bладиславович ЗУБАРЕВ;RU;M;;;134818;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134816;EU.7270.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SUBAREV;Viktor;Vladislavovich;Viktor Vladislavovich SUBAREV;;M;;Member of the State Duma;134819;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134816;EU.7270.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Vladislavovitj ZUBAREV;SV;;;;143935;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134816;EU.7270.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-02-20;20;2;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;134817;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134820;EU.7271.93;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИВАНИНСКИЙ;Олег;Иванович;Олег Иванович ИВАНИНСКИЙ;RU;M;;;134822;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134820;EU.7271.93;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;IVANINSKIY;Oleg;Ivanovich;Oleg Ivanovich IVANINSKIY;;M;;Member of the State Duma;134823;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134820;EU.7271.93;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleg Ivanovitj IVANINSKIJ;SV;;;;143937;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134820;EU.7271.93;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-06-05;5;6;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;134821;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134824;EU.7272.92;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИВАНОВ;Владимир;Валерьевич;Владимир Валерьевич ИВАНОВ;RU;M;;;134826;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134824;EU.7272.92;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;IVANOV;Vladimir;Valerievich;Vladimir Valerievich IVANOV;;M;;Member of the State Duma;134827;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134824;EU.7272.92;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Valerjevitj IVANOV;SV;;;;143882;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134824;EU.7272.92;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-02-10;10;2;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;134825;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134828;EU.7273.91;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИВАНОВ;Максим;Анатольевич;Максим Анатольевич ИВАНОВ;RU;M;;;134830;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134828;EU.7273.91;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;IVANOV;Maxim;Anatolevich;Maxim Anatolevich IVANOV;;M;;Member of the State Duma;134831;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134828;EU.7273.91;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Maksim Anatoljevitj IVANOV;SV;;;;143883;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134828;EU.7273.91;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-11-24;24;11;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;134829;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134832;EU.7274.90;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИВАНОВ;Максим;Евгеньевич;Максим Евгеньевич ИВАНОВ;RU;M;;;134834;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134832;EU.7274.90;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;IVANOV;Maksim;Evgenyevich;Maksim Evgenyevich IVANOV;;M;;Member of the State Duma;134835;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134832;EU.7274.90;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Maksim Jevgenjevitj IVANOV;SV;;;;143884;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134832;EU.7274.90;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-05-23;23;5;1987;;;NO;GREGORIAN;;;;;00;UNKNOWN;134833;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134836;EU.7275.89;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИВЕНСКИХ;Ирина;Валентиновна;Ирина Валентиновна ИВЕНСКИХ;RU;F;;;134838;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134836;EU.7275.89;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;IVENSKIKH;Irina;Valentinovna;Irina Valentinovna IVENSKIKH;;F;;Member of the State Duma;134839;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134836;EU.7275.89;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Irina Valentinovna IVENSKICH;SV;;;;143938;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134836;EU.7275.89;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-07-22;22;7;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;134837;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134840;EU.7276.88;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИВЛЕВ;Леонид;Григорьевич;Леонид Григорьевич ИВЛЕВ;RU;M;;;134842;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134840;EU.7276.88;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;IVLEV;Leonid;Grigorievich;Leonid Grigorievich IVLEV;;M;;Member of the State Duma;134843;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134840;EU.7276.88;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Leonid Grigorjevitj IVLEV;SV;;;;143939;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134840;EU.7276.88;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-05-01;1;5;1953;;;NO;GREGORIAN;;;;;00;UNKNOWN;134841;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134844;EU.7277.87;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИГНАТОВ;Виктор;Александрович;Виктор Александрович ИГНАТОВ;RU;M;;;134846;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134844;EU.7277.87;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;IGNATOV;Viktor;Aleksandrovich;Viktor Aleksandrovich IGNATOV;;M;;Member of the State Duma;134847;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134844;EU.7277.87;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Aleksandrovitj IGNATOV;SV;;;;143940;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134844;EU.7277.87;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-10-15;15;10;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;134845;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134848;EU.7278.86;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИГОШИН;Игорь;Николаевич;Игорь Николаевич ИГОШИН;;M;;;134850;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134848;EU.7278.86;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;IGOSHIN;Igor;Nikolaevich;Igor Nikolaevich IGOSHIN;;M;;Member of the State Duma;134851;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134848;EU.7278.86;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Igor Nikolajevitj IGOSJIN;SV;;;;143941;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134848;EU.7278.86;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-12-11;11;12;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;134849;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134852;EU.7279.85;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИЛЬИНЫХ;Владимир;Алексеевич;Владимир Алексеевич ИЛЬИНЫХ;RU;M;;;134854;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134852;EU.7279.85;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ILYNIKH;Vladimir;Alexeyevich;Vladimir Alexeyevich ILYNIKH;;M;;Member of the State Duma;134855;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134852;EU.7279.85;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Aleksejevitj ILJINYCH;SV;;;;143942;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134852;EU.7279.85;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-05-20;20;5;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;134853;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134856;EU.7280.63;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИЛЬТЯКОВ;Александр;Владимирович;Александр Владимирович ИЛЬТЯКОВ;RU;M;;;134858;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134856;EU.7280.63;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ILTYAKOV;Alexander;Vladimirovich;Alexander Vladimirovich ILTYAKOV;;M;;Member of the State Duma;134859;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134856;EU.7280.63;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Vladimirovitj ILTIAKOV;SV;;;;143943;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134856;EU.7280.63;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-10-09;9;10;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;134857;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134860;EU.7281.62;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИСАЕВ;Андрей;Константинович;Андрей Константинович ИСАЕВ;RU;M;;;134862;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134860;EU.7281.62;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ISSAJEV;Andrei;Konstantinovich;Andrei Konstantinovich ISSAJEV;;M;;Member of the State Duma;134863;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134860;EU.7281.62;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Konstantinovitj ISAJEV;SV;;;;143944;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134860;EU.7281.62;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-10-01;1;10;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;134861;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134864;EU.7282.61;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИСЛАМОВ;Дмитрий;Викторович;Дмитрий Викторович ИСЛАМОВ;RU;M;;;134866;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134864;EU.7282.61;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ISLAMOV;Dmitry;Viktorovich;Dmitry Viktorovich ISLAMOV;;M;;Member of the State Duma;134867;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134864;EU.7282.61;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Viktorovitj ISLAMOV;SV;;;;143945;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134864;EU.7282.61;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-12-05;5;12;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;134865;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134868;EU.7283.60;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАДЕНКОВ;Дмитрий;Михайлович;Дмитрий Михайлович КАДЕНКОВ;RU;M;;;134870;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134868;EU.7283.60;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KADENKOV;Dmitry;Mikhailovich;Dmitry Mikhailovich KADENKOV;;M;;Member of the State Duma;134871;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134868;EU.7283.60;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Michajlovitj KADENKOV;SV;;;;143946;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134868;EU.7283.60;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-05-03;3;5;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;134869;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134872;EU.7284.59;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАЗАКОВ;Виктор;Алексеевич;Виктор Алексеевич КАЗАКОВ;RU;M;;;134874;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134872;EU.7284.59;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KAZAKOV;Viktor;Alexeyevich;Viktor Alexeyevich KAZAKOV;;M;;Member of the State Duma;134875;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134872;EU.7284.59;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Aleksejevitj KAZAKOV;SV;;;;143885;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134872;EU.7284.59;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-04-04;4;4;1949;;;NO;GREGORIAN;;;;;00;UNKNOWN;134873;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134876;EU.7285.58;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАЛИМУЛЛИН;Рустам;Галиуллович;Рустам Галиуллович КАЛИМУЛЛИН;RU;M;;;134878;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134876;EU.7285.58;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KALIMULLIN;Rustam;Galiullovich;Rustam Galiullovich KALIMULLIN;;M;;Member of the State Duma;134879;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134876;EU.7285.58;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Rustam Galiullovitj KALIMULLIN;SV;;;;143886;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134876;EU.7285.58;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-01-02;2;1;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;134877;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134880;EU.7286.57;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАНАЕВ;Алексей;Валерианович;Алексей Валерианович КАНАЕВ;RU;M;;;134882;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134880;EU.7286.57;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KANAYEV;Alexei;Valerianovich;Alexei Valerianovich KANAYEV;;M;;Member of the State Duma;134883;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134880;EU.7286.57;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Valerianovitj KANAJEV;SV;;;;143887;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134880;EU.7286.57;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-09-30;30;9;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;134881;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134884;EU.7287.56;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАРЛОВ;Георгий;Александрович;Георгий Александрович КАРЛОВ;RU;M;;;134886;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134884;EU.7287.56;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KARLOV;Georgy;Aleksandrovich;Georgy Aleksandrovich KARLOV;;M;;Member of the State Duma;134887;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134884;EU.7287.56;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Georgij Aleksandrovitj KARLOV;SV;;;;143888;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134884;EU.7287.56;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-01-04;4;1;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;134885;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134888;EU.7288.55;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Анатóлий Евгéньевич КАРПОВ;;M;;;134890;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134888;EU.7288.55;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anatoly Evgenyevich KARPOV;;M;;Member of the State Duma;134891;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134888;EU.7288.55;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anatolij Jevgenjevitj KARPOV;SV;M;;;144191;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134888;EU.7288.55;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-05-23;23;5;1951;;;NO;GREGORIAN;;;;;00;UNKNOWN;134889;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134892;EU.7289.54;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАРТАПОЛОВ;Андрей;Валериевич;Андрей Валериевич КАРТАПОЛОВ;RU;M;;;134894;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134892;EU.7289.54;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KARTAPOLOV;Andrey;Valerievich;Andrey Valerievich KARTAPOLOV;;M;;Member of the State Duma;134895;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134892;EU.7289.54;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Valerijevitj KARTAPOLOV;SV;;;;143947;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134892;EU.7289.54;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-11-09;9;11;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;134893;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134896;EU.7290.32;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАСТЮКЕВИЧ;Игорь;Юрьевич;Игорь Юрьевич КАСТЮКЕВИЧ;RU;M;;;134898;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134896;EU.7290.32;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KASTYUKEVICH;Igor;Yurevich;Igor Yurevich KASTYUKEVICH;;M;;Member of the State Duma;134899;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134896;EU.7290.32;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Igor Jurjevitj KASTIUKEVITJ;SV;;;;143948;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134896;EU.7290.32;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-12-06;6;12;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;134897;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134900;EU.7291.31;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАЧКАЕВ;Павел;Рюрикович;Павел Рюрикович КАЧКАЕВ;RU;M;;;134902;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134900;EU.7291.31;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KACHKAEV;Pavel;Rurikovich;Pavel Rurikovich KACHKAEV;;M;;Member of the State Duma;134903;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134900;EU.7291.31;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Pavel Rjurikovitj KATJKAJEV;SV;;;;143949;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134900;EU.7291.31;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-10-04;4;10;1951;;;NO;GREGORIAN;;;;;00;UNKNOWN;134901;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134904;EU.7292.30;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КВИТКА;Иван;Иванович;Иван Иванович КВИТКА;RU;M;;;134906;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134904;EU.7292.30;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KVITKA;Ivan;Ivanovich;Ivan Ivanovich KVITKA;;M;;Member of the State Duma;134907;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134904;EU.7292.30;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ivan Ivanovitj KVITKA;SV;;;;143890;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134904;EU.7292.30;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-05-04;4;5;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;134905;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134908;EU.7293.29;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КИДЯЕВ;Виктор;Борисович;Виктор Борисович КИДЯЕВ;RU;M;;;134910;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134908;EU.7293.29;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KIDYAEV;Viktor;Borisovich;Viktor Borisovich KIDYAEV;;M;;Member of the State Duma;134911;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134908;EU.7293.29;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Borisovitj KIDJAJEV;SV;;;;143891;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134908;EU.7293.29;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-07-09;9;7;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;134909;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134912;EU.7294.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КИЗЕЕВ;Михаил;Владимирович;Михаил Владимирович КИЗЕЕВ;RU;M;;;134914;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134912;EU.7294.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KIZEEV;Mikhail;Vladimirovich;Mikhail Vladimirovich KIZEEV;;M;;Member of the State Duma;134915;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134912;EU.7294.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Michail Vladimirovitj KIZEJEV;SV;;;;143892;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134912;EU.7294.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-03-31;31;3;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;134913;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134916;EU.7295.27;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КИСЛЯКОВ;Михаил;Леонидович;Михаил Леонидович КИСЛЯКОВ;RU;M;;;134918;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134916;EU.7295.27;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KISLYAKOV;Mikhail;Leonidovich;Mikhail Leonidovich KISLYAKOV;;M;;Member of the State Duma;134919;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134916;EU.7295.27;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Michail Leonidovitj KISLJAKOV;SV;;;;143950;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134916;EU.7295.27;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-11-18;18;11;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;134917;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134920;EU.7296.26;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОГАН;Александр;Борисович;Александр Борисович КОГАН;RU;M;;;134922;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134920;EU.7296.26;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOGAN;Alexander;Borisovich;Alexander Borisovich KOGAN;;M;;Member of the State Duma;134923;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134920;EU.7296.26;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Borisovitj KOGAN;SV;;;;143951;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134920;EU.7296.26;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-02-26;26;2;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;134921;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134924;EU.7297.25;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОГОГИНА;Альфия;Гумаровна;Альфия Гумаровна КОГОГИНА;RU;F;;;134926;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134924;EU.7297.25;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOGOGINA;Alfia;Gumarovna;Alfia Gumarovna KOGOGINA;;F;;Member of the State Duma;134927;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134924;EU.7297.25;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Alfija Gumarovna KOGOGINA;SV;;;;143952;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134924;EU.7297.25;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-02-22;22;2;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;134925;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134928;EU.7298.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОЗЛОВСКИЙ;Александр;Николаевич;Александр Николаевич КОЗЛОВСКИЙ;RU;M;;;134930;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134928;EU.7298.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOZLOVSKIY;Aleksandr;Nikolaevich;Aleksandr Nikolaevich KOZLOVSKIY;RU;M;;Member of the State Duma;134931;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134928;EU.7298.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Nikolajevitj KOZLOVSKIJ;SV;M;;;144102;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134928;EU.7298.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-05-05;5;5;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;134929;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134932;EU.7299.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОЛЕСНИК;Андрей;Иванович;Андрей Иванович КОЛЕСНИК;RU;M;;;134934;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134932;EU.7299.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOLESNIK;Andrey;Ivanovich;Andrey Ivanovich KOLESNIK;;M;;Member of the State Duma;134935;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134932;EU.7299.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Ivanovitj KOLESNIK;SV;M;;;144101;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134932;EU.7299.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-02-26;26;2;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;134933;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134936;EU.7300.29;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОЛЕСНИКОВ;Олег;Алексеевич;Олег Алексеевич КОЛЕСНИКОВ;RU;M;;;134938;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134936;EU.7300.29;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOLESNIKOV;Oleg;Alexeyevich;Oleg Alexeyevich KOLESNIKOV;;M;;Member of the State Duma;134939;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134936;EU.7300.29;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleg Aleksejevitj KOLESNIKOV;SV;M;;;144100;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134936;EU.7300.29;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-09-11;11;9;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;134937;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134940;EU.7301.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОЛУНОВ;Сергей;Владимирович;Сергей Владимирович КОЛУНОВ;RU;M;;;134942;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134940;EU.7301.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOLUNOV;Sergey;Vladimirovich;Sergey Vladimirovich KOLUNOV;;M;;Member of the State Duma;134943;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134940;EU.7301.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Vladimirovitj KOLUNOV;SV;M;;;144099;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134940;EU.7301.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-03-22;22;3;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;134941;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134944;EU.7302.27;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОНОНОВ;Владимир;Михайлович;Владимир Михайлович КОНОНОВ;RU;M;;;134946;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134944;EU.7302.27;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KONONOV;Vladimir;Mikhailovich;Vladimir Mikhailovich KONONOV;;M;;Member of the State Duma;134947;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134944;EU.7302.27;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Michajlovitj KONONOV;SV;M;;;144098;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134944;EU.7302.27;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-03-13;13;3;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;134945;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134948;EU.7303.26;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОРОБОВА;Ольга;Владимировна;Ольга Владимировна КОРОБОВА;RU;F;;;134950;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134948;EU.7303.26;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOROBOVA;Olga;Vladimirovna;Olga Vladimirovna KOROBOVA;;F;;Member of the State Duma;134951;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134948;EU.7303.26;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-09-15;15;9;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;134949;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134952;EU.7304.25;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОСТЕНКО;Наталья;Васильевна;Наталья Васильевна КОСТЕНКО;RU;F;;;134954;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134952;EU.7304.25;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOSTENKO;Natalya;Vasilevna;Natalya Vasilevna KOSTENKO;;F;;Member of the State Duma;134955;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134952;EU.7304.25;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Natalja Vasiljevna KOSTENKO;SV;F;;;144097;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134952;EU.7304.25;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-08-09;9;8;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;134953;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134956;EU.7305.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОТКИН;Сергей;Николаевич;Сергей Николаевич КОТКИН;RU;M;;;134958;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134956;EU.7305.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOTKIN;Sergey;Nikolaevich;Sergey Nikolaevich KOTKIN;;M;;Member of the State Duma;134959;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134956;EU.7305.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Nikolajevitj KOTKIN;SV;M;;;144096;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134956;EU.7305.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-03-11;11;3;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;134957;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134960;EU.7306.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КРАВЧЕНКО;Денис;Борисович;Денис Борисович КРАВЧЕНКО;RU;M;;;134962;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134960;EU.7306.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KRAVCHENKO;Denis;Borisovich;Denis Borisovich KRAVCHENKO;;M;;Member of the State Duma;134963;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134960;EU.7306.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Denis Borisovitj KRAVTJENKO;SV;M;;;144095;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134960;EU.7306.23;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-04-17;17;4;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;134961;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134964;EU.7307.22;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КРАСНОШТАНОВ;Антон;Алексеевич;Антон Алексеевич КРАСНОШТАНОВ;RU;M;;;134966;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134964;EU.7307.22;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KRASNOSHTANOV;Anton;Alexeyevich;Anton Alexeyevich KRASNOSHTANOV;;M;;Member of the State Duma;134967;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134964;EU.7307.22;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anton Aleksejevitj KRASNOSJTANOV;SV;M;;;144094;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134964;EU.7307.22;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-06-10;10;6;1986;;;NO;GREGORIAN;;;;;00;UNKNOWN;134965;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134968;EU.7308.21;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КРИВОНОСОВ;Сергей;Владимирович;Сергей Владимирович КРИВОНОСОВ;RU;M;;;134970;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134968;EU.7308.21;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KRIVONOSOV;Sergey;Vladimirovich;Sergey Vladimirovich KRIVONOSOV;;M;;Member of the State Duma;134971;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134968;EU.7308.21;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Vladimirovitj KRIVONOSOV;SV;M;;;144093;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134968;EU.7308.21;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-05-29;29;5;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;134969;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134972;EU.7309.20;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КУЗЬМИН;Михаил;Владимирович;Михаил Владимирович КУЗЬМИН;RU;M;;;134974;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134972;EU.7309.20;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KUZMIN;Mikhail;Vladimirovich;Mikhail Vladimirovich KUZMIN;;M;;Member of the State Duma;134975;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134972;EU.7309.20;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Michail Vladimirovitj KUZMIN;SV;M;;;144092;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134972;EU.7309.20;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-08-05;5;8;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;134973;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134976;EU.7310.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КУСАЙКО;Татьяна;Алексеевна;Татьяна Алексеевна КУСАЙКО;RU;F;;;134978;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134976;EU.7310.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KUSAYKO;Tatyana;Alekseevna;Tatyana Alekseevna KUSAYKO;;F;;Member of the State Duma;134979;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134976;EU.7310.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Tatiana Aleksejevna KUSAJKO;SV;F;;;144091;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134976;EU.7310.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-01-15;15;1;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;134977;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134980;EU.7311.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КУШНАРЁВ;Виталий;Васильевич;Виталий Васильевич КУШНАРЁВ;RU;M;;;134982;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134980;EU.7311.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KUSHNAREV;Vitaliy;Vasilevich;Vitaliy Vasilevich KUSHNAREV;;M;;Member of the State Duma;134983;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134980;EU.7311.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vitalij Vasiljevitj KUSJNARJOV;SV;M;;;144090;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134980;EU.7311.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-05-01;1;5;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;134981;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134984;EU.7312.93;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛАВРИНЕНКО;Алексей;Фёдорович;Алексей Фёдорович ЛАВРИНЕНКО;RU;M;;;134986;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134984;EU.7312.93;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LAVRINENKO;Alexei;Fedorovich;Alexei Fedorovich LAVRINENKO;;M;;Member of the State Duma;134987;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134984;EU.7312.93;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Fjodorovitj LAVRINENKO;SV;M;;;144089;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134984;EU.7312.93;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-08-20;20;8;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;134985;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134988;EU.7313.92;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛАМЕЙКИН;Дмитрий;Викторович;Дмитрий Викторович ЛАМЕЙКИН;RU;M;;;134990;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134988;EU.7313.92;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LAMEYKIN;Dmitriy;Viktorovich;Dmitriy Viktorovich LAMEYKIN;;M;;Member of the State Duma;134991;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134988;EU.7313.92;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Viktorovitj LAMEJKIN;SV;M;;;144088;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134988;EU.7313.92;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-02-27;27;2;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;134989;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134992;EU.7314.91;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛЕБЕДЕВ;Евгений;Викторович;Евгений Викторович ЛЕБЕДЕВ;RU;M;;;134994;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134992;EU.7314.91;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LEBEDEV;Yevgeniy;Viktorovich;Yevgeniy Viktorovich LEBEDEV;;M;;Member of the State Duma;134995;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134992;EU.7314.91;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jevgenij Viktorovitj LEBEDEV;SV;M;;;144087;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134992;EU.7314.91;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-12-12;12;12;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;134993;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134996;EU.7315.90;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛЕСУН;Анатолий;Фёдорович;Анатолий Фёдорович ЛЕСУН;RU;M;;;134998;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134996;EU.7315.90;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LESUN;Anatoliy;Fedorovich;Anatoliy Fedorovich LESUN;;M;;Member of the State Duma;134999;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134996;EU.7315.90;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anatolij Fjodorovitj LESUN;SV;M;;;144086;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;134996;EU.7315.90;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-02-27;27;2;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;134997;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135000;EU.7316.89;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛЕЧХАДЖИЕВ;Руслан;Абдулвахиевич;Руслан Абдулвахиевич ЛЕЧХАДЖИЕВ;RU;M;;;135002;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135000;EU.7316.89;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LECHKHADZHIEV;Ruslan;Abdulvakhievich;Ruslan Abdulvakhievich LECHKHADZHIEV;;M;;Member of the State Duma;135003;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135000;EU.7316.89;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ruslan Abdulvachijevitj LETJCHADZJIJEV;SV;M;;;144085;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135000;EU.7316.89;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-07-02;2;7;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;135001;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135004;EU.7317.88;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛИСО́ВСКИЙ;Сергей;Фёдорович;Сергей Фёдорович ЛИСО́ВСКИЙ;RU;M;;;135006;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135004;EU.7317.88;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LISSOVSKI;Sergei;Fedorovich;Sergei Fedorovich LISSOVSKI;;M;;Member of the State Duma;135007;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135004;EU.7317.88;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Fjodorovitj LISOVSKIJ;SV;M;;;144084;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135004;EU.7317.88;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-04-25;25;4;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;135005;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135008;EU.7318.87;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Виталий Викторович ЛИХАЧЁВ;;M;;;135010;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135008;EU.7318.87;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vitali Viktorovich LIKHACHOV;;M;;Member of the State Duma;135011;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135008;EU.7318.87;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vitalij Viktorovitj LICHATJOV;SV;M;;;144192;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135008;EU.7318.87;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-02-22;22;2;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;135009;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135016;EU.7320.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛОГИНОВ;Вячеслав;Юрьевич;Вячеслав Юрьевич ЛОГИНОВ;RU;M;;;135018;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135016;EU.7320.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LOGINOV;Vyacheslav;Yurevich;Vyacheslav Yurevich LOGINOV;;M;;Member of the State Duma;135019;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135016;EU.7320.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vjatjeslav Jurjevitj LOGINOV;SV;M;;;144082;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135016;EU.7320.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-01-09;9;1;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;135017;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135020;EU.7321.63;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛООР;Иван;Иванович;Иван Иванович ЛООР;RU;M;;;135022;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135020;EU.7321.63;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LOOR;Ivan;Ivanovich;Ivan Ivanovich LOOR;;M;;Member of the State Duma;135023;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135020;EU.7321.63;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ivan Ivanovitj LOOR;SV;M;;;144081;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135020;EU.7321.63;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-12-11;11;12;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;135021;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135024;EU.7322.62;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛОЦМАНОВ;Дмитрий;Николаевич;Дмитрий Николаевич ЛОЦМАНОВ;RU;M;;;135026;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135024;EU.7322.62;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LOTSMANOV;Dmitriy;Nikolaevich;Dmitriy Nikolaevich LOTSMANOV;;M;;Member of the State Duma;135027;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135024;EU.7322.62;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Nikolajevitj LOTSMANOV;SV;M;;;144080;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135024;EU.7322.62;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-03-02;2;3;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;135025;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135028;EU.7323.61;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛЮБАРСКИЙ;Роман;Валерьевич;Роман Валерьевич ЛЮБАРСКИЙ;RU;M;;;135030;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135028;EU.7323.61;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LYUBARSKIY;Roman;Valerievich;Roman Valerievich LYUBARSKIY;;M;;Member of the State Duma;135031;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135028;EU.7323.61;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Roman Valerjevitj LJUBARSKIJ;SV;M;;;144079;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135028;EU.7323.61;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-07-16;16;7;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;135029;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135032;EU.7324.60;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МАЖУГА;Александр;Георгиевич;Александр Георгиевич МАЖУГА;RU;M;;;135034;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135032;EU.7324.60;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MAZHUGA;Alexander;Georgievich;Alexander Georgievich MAZHUGA;;M;;Member of the State Duma;135035;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135032;EU.7324.60;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Georgijevitj MAZJUGA;SV;M;;;144078;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135032;EU.7324.60;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-08-06;6;8;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;135033;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135036;EU.7325.59;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МАЙДАНОВ;Денис;;Денис МАЙДАНОВ;RU;M;;;135038;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135036;EU.7325.59;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MAIDANOV;Denis;;Denis MAIDANOV;;M;;Member of the State Duma;135039;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135036;EU.7325.59;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Denis MAJDANOV;SV;M;;;144077;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135036;EU.7325.59;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-02-17;17;2;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;135037;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135040;EU.7326.58;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МАКАРОВ;Вячеслав;Серафимович;Вячеслав Серафимович МАКАРОВ;RU;M;;;135042;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135040;EU.7326.58;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MAKAROV;Vyatscheslav;Serafimovich;Vyatscheslav Serafimovich MAKAROV;;M;;Member of the State Duma;135043;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135040;EU.7326.58;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vjatjeslav Serafimovitj MAKAROV;SV;M;;;144076;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135040;EU.7326.58;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-05-07;7;5;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;135041;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135044;EU.7327.57;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МАКИЕВ;Зураб;Гайозович;Зураб Гайозович МАКИЕВ;RU;M;;;135046;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135044;EU.7327.57;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MAKIYEV;Zurab;Gayozovic;Zurab Gayozovic MAKIYEV;;M;;Member of the State Duma;135047;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135044;EU.7327.57;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Zurab Gajozovitj MAKIJEV;SV;M;;;144075;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135044;EU.7327.57;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-09-30;30;9;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;135045;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135048;EU.7328.56;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МАКСИМОВ;Александр;Александрович;Александр Александрович МАКСИМОВ;RU;M;;;135050;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135048;EU.7328.56;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MAXIMOV;Alexander;Aleksandrovich;Alexander Aleksandrovich MAXIMOV;;M;;Member of the State Duma;135051;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135048;EU.7328.56;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Aleksandrovitj MAKSIMOV;SV;M;;;144074;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135048;EU.7328.56;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946-11-15;15;11;1946;;;NO;GREGORIAN;;;;;00;UNKNOWN;135049;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135052;EU.7329.55;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МАРДАНШИН;Рафаэль;Мирхатимович;Рафаэль Мирхатимович МАРДАНШИН;RU;M;;;135054;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135052;EU.7329.55;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MARDANSHIN;Rafael;Mirkhatimovich;Rafael Mirkhatimovich MARDANSHIN;;M;;Member of the State Duma;135055;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135052;EU.7329.55;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Rafael Mirchatimovitj MARDANSJIN;SV;M;;;144073;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135052;EU.7329.55;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-12-24;24;12;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;135053;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135056;EU.7330.33;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МАРКОВ;Андрей;Павлович;Андрей Павлович МАРКОВ;RU;M;;;135058;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135056;EU.7330.33;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MARKOV;Andrey;Pavlovich;Andrey Pavlovich MARKOV;;M;;Member of the State Duma;135059;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135056;EU.7330.33;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Pavlovitj MARKOV;SV;M;;;144072;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135056;EU.7330.33;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-06-30;30;6;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;135057;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135060;EU.7331.32;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МЕТШИН;Айдар;Раисович;Айдар Раисович МЕТШИН;RU;M;;;135062;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135060;EU.7331.32;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;METSHIN;Aidar;Raisovich;Aidar Raisovich METSHIN;;M;;Member of the State Duma;135063;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135060;EU.7331.32;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ajdar Raisovitj METSJIN;SV;M;;;144071;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135060;EU.7331.32;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-08-27;27;8;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;135061;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135064;EU.7332.31;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МИЛОНОВ;Виталий;Валентинович;Виталий Валентинович МИЛОНОВ;RU;M;;;135066;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135064;EU.7332.31;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MILONOV;Vitaly;Valentinovich;Vitaly Valentinovich MILONOV;;M;;Member of the State Duma;135067;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135064;EU.7332.31;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vitalij Valentinovitj MILONOV;SV;M;;;144070;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135064;EU.7332.31;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-01-23;23;1;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;135065;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135068;EU.7333.30;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МОРОЗОВ;Сергей;Иванович;Сергей Иванович МОРОЗОВ;RU;M;;;135070;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135068;EU.7333.30;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MOROZOV;Sergey;Ivanovich;Sergey Ivanovich MOROZOV;;M;;Member of the State Duma;135071;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135068;EU.7333.30;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Ivanovitj MOROZOV;SV;M;;;144069;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135068;EU.7333.30;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-12-10;10;12;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;135069;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135072;EU.7334.29;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;НАЗАРОВА;Наталья;Васильевна;Наталья Васильевна НАЗАРОВА;RU;F;;;135074;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135072;EU.7334.29;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;NAZAROVA;Natalya;Vasilevna;Natalya Vasilevna NAZAROVA;;F;;Member of the State Duma;135075;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135072;EU.7334.29;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Natalja Vasiljevna NAZAROVA;SV;F;;;144068;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135072;EU.7334.29;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-12-22;22;12;1953;;;NO;GREGORIAN;;;;;00;UNKNOWN;135073;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135076;EU.7335.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;НЕМКИН;Антон;Игоревич;Антон Игоревич НЕМКИН;RU;M;;;135078;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135076;EU.7335.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;NEMKIN;Anton;Igorevich;Anton Igorevich NEMKIN;;M;;Member of the State Duma;135079;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135076;EU.7335.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anton Igorevitj NEMKIN;SV;M;;;144067;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135076;EU.7335.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-08-22;22;8;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;135077;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135080;EU.7336.27;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;НИКОЛАЕВ;Николай;Петрович;Николай Петрович НИКОЛАЕВ;RU;M;;;135082;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135080;EU.7336.27;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;NIKOLAEV;Nikolay;Petrovich;Nikolay Petrovich NIKOLAEV;;M;;Member of the State Duma;135083;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135080;EU.7336.27;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Petrovitj NIKOLAJEV;SV;M;;;144066;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135080;EU.7336.27;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-04-02;2;4;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;135081;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135084;EU.7337.26;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;НИКОНОВ;Вячеслав;;Вячеслав НИКОНОВ;RU;M;;;135086;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135084;EU.7337.26;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;NIKONOV;Vyacheslav;;Vyacheslav NIKONOV;;M;;Member of the State Duma;135087;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135084;EU.7337.26;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vjatjeslav NIKONOV;SV;M;;;144065;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135084;EU.7337.26;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-06-05;5;6;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;135085;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135088;EU.7338.25;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;НИФАНТЬЕВ;Евгений;Олегович;Евгений Олегович НИФАНТЬЕВ;RU;M;;;135090;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135088;EU.7338.25;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;NIFANTIEV;Evgeniy;Olegovych;Evgeniy Olegovych NIFANTIEV;;M;;Member of the State Duma;135091;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135088;EU.7338.25;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jevgenij Olegovitj NIFANTIEV;SV;M;;;144064;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135088;EU.7338.25;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-09-14;14;9;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;135089;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135092;EU.7339.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;НУРБАГАНДОВ;Нурбаганд;;Нурбаганд НУРБАГАНДОВ;RU;M;;;135094;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135092;EU.7339.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;NURBAGANDOV;Nurbagand;;Nurbagand NURBAGANDOV;;M;;Member of the State Duma;135095;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135092;EU.7339.24;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-03-19;19;3;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;135093;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135096;EU.7340.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ОГЛОБЛИНА;Юлия;Васильевна;Юлия Васильевна ОГЛОБЛИНА;RU;F;;;135098;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135096;EU.7340.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;OGLOBLINA;Yuliya;Vasilevna;Yuliya Vasilevna OGLOBLINA;;F;;Member of the State Duma;135099;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135096;EU.7340.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Julija Vasiljevna OGLOBLINA;SV;F;;;144063;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135096;EU.7340.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989-11-01;1;11;1989;;;NO;GREGORIAN;;;;;00;UNKNOWN;135097;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135100;EU.7341.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ОГУЛЬ;Леонид;Анатольевич;Леонид Анатольевич ОГУЛЬ;RU;M;;;135102;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135100;EU.7341.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;OGUL;Leonid;Anatolevich;Leonid Anatolevich OGUL;;M;;Member of the State Duma;135103;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135100;EU.7341.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Leonid Anatoljevitj OGUL;SV;M;;;144062;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135100;EU.7341.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-10-26;26;10;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;135101;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135104;EU.7342.0;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ОРЛОВА;Наталья;Алексеевна;Наталья Алексеевна ОРЛОВА;RU;F;;;135106;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135104;EU.7342.0;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ORLOVA;Natalya;Alekseevna;Natalya Alekseevna ORLOVA;;F;;Member of the State Duma;135107;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135104;EU.7342.0;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Natalja Aleksejevna ORLOVA;SV;F;;;144061;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135104;EU.7342.0;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-08-29;29;8;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;135105;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135108;EU.7343.96;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПАНИН;Геннадий;Олегович;Геннадий Олегович ПАНИН;RU;M;;;135110;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135108;EU.7343.96;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PANIN;Gennadiy;Olegovych;Gennadiy Olegovych PANIN;;M;;Member of the State Duma;135111;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135108;EU.7343.96;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Gennadij Olegovitj PANIN;SV;M;;;144060;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135108;EU.7343.96;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-06-13;13;6;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;135109;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135112;EU.7344.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПАНКОВ;Николай;Васильевич;Николай Васильевич ПАНКОВ;RU;M;;;135114;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135112;EU.7344.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PANKOV;Nikolay;Vasilevich;Nikolay Vasilevich PANKOV;;M;;Member of the State Duma;135115;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135112;EU.7344.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Vasiljevitj PANKOV;SV;M;;;144019;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135112;EU.7344.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-01-05;5;1;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;135113;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135116;EU.7345.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПАНЬКИНА;Ирина;Александровна;Ирина Александровна ПАНЬКИНА;RU;F;;;135118;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135116;EU.7345.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PANKINA;Irina;Aleksandrovna;Irina Aleksandrovna PANKINA;;F;;Member of the State Duma;135119;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135116;EU.7345.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-03-08;8;3;1986;;;NO;GREGORIAN;;;;;00;UNKNOWN;135117;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135120;EU.7346.93;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПЕРВЫШОВ;Евгений;Алексеевич;Евгений Алексеевич ПЕРВЫШОВ;RU;M;;;135122;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135120;EU.7346.93;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PERVYSHOV;Evgeny;Alexeyevich;Evgeny Alexeyevich PERVYSHOV;;M;;Member of the State Duma;135123;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135120;EU.7346.93;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jevgenij Aleksejevitj PERVYSJOV;SV;M;;;144018;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135120;EU.7346.93;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-05-04;4;5;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;135121;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135124;EU.7347.92;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПЕТРОВ;Вячеслав;Анатольевич;Вячеслав Анатольевич ПЕТРОВ;RU;M;;;135126;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135124;EU.7347.92;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PETROV;Vyacheslav;Anatolevich;Vyacheslav Anatolevich PETROV;;M;;Member of the State Duma;135127;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135124;EU.7347.92;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vjatjeslav Anatoljevitj PETROV;SV;M;;;144017;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135124;EU.7347.92;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-08-17;17;8;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;135125;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135128;EU.7348.91;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПЕТРОВ;Сергей;Валериевич;Сергей Валериевич ПЕТРОВ;RU;M;;;135130;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135128;EU.7348.91;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PETROV;Sergey;Valerievich;Sergey Valerievich PETROV;;M;;Member of the State Duma;135131;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135128;EU.7348.91;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Valerijevitj PETROV;SV;M;;;144016;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135128;EU.7348.91;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-04-19;19;4;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;135129;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135132;EU.7349.90;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПЕТРОВ;Юрий;Александрович;Юрий Александрович ПЕТРОВ;RU;M;;;135134;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135132;EU.7349.90;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PETROV;Yury;Aleksandrovich;Yury Aleksandrovich PETROV;;M;;Member of the State Duma;135135;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135132;EU.7349.90;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jurij Aleksandrovitj PETROV;SV;M;;;144015;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135132;EU.7349.90;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947-04-10;10;4;1947;;;NO;GREGORIAN;;;;;00;UNKNOWN;135133;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135136;EU.7350.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПЕТРУНИН;Николай;Юрьевич;Николай Юрьевич ПЕТРУНИН;RU;M;;;135138;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135136;EU.7350.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PETRUNIN;Nikolay;Yurevich;Nikolay Yurevich PETRUNIN;;M;;Member of the State Duma;135139;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135136;EU.7350.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Jurjevitj PETRUNIN;SV;M;;;144014;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135136;EU.7350.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-02-27;27;2;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;135137;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135140;EU.7351.67;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПИВНЕНКО;Валентина;Николаевна;Валентина Николаевна ПИВНЕНКО;RU;F;;;135142;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135140;EU.7351.67;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PIVNENKO;Valentina;Nikolaevna;Valentina Nikolaevna PIVNENKO;;F;;Member of the State Duma;135143;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135140;EU.7351.67;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Valentina Nikolajevna PIVNENKO;SV;F;;;144013;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135140;EU.7351.67;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947-06-14;14;6;1947;;;NO;GREGORIAN;;;;;00;UNKNOWN;135141;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135144;EU.7352.66;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПИЛИПЕНКО;Ольга;Васильевна;Ольга Васильевна ПИЛИПЕНКО;RU;F;;;135146;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135144;EU.7352.66;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PILIPENKO;Olga;Vasilevna;Olga Vasilevna PILIPENKO;;F;;Member of the State Duma;135147;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135144;EU.7352.66;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Olga Vasiljevna PILIPENKO;SV;F;;;144012;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135144;EU.7352.66;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-01-04;4;1;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;135145;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135148;EU.7353.65;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПИРОГ;Дмитрий;Юрьевич;Дмитрий Юрьевич ПИРОГ;RU;M;;;135150;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135148;EU.7353.65;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PIROG;Dmitri;Yurevich;Dmitri Yurevich PIROG;;M;;Member of the State Duma;135151;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135148;EU.7353.65;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Jurjevitj PIROG;SV;M;;;144042;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135148;EU.7353.65;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-06-27;27;6;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;135149;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135152;EU.7354.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПЛОТНИКОВ;Владимир;Николаевич;Владимир Николаевич ПЛОТНИКОВ;RU;M;;;135154;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135152;EU.7354.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PLOTNIKOV;Vladimir;Nikolaevich;Vladimir Nikolaevich PLOTNIKOV;;M;;Member of the State Duma;135155;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135152;EU.7354.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Nikolajevitj PLOTNIKOV;SV;M;;;144041;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135152;EU.7354.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-11-30;30;11;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;135153;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135156;EU.7355.63;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПОГОРЕЛЫЙ;Дмитрий;Викторович;Дмитрий Викторович ПОГОРЕЛЫЙ;RU;M;;;135158;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135156;EU.7355.63;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;POGORELYY;Dmitriy;Viktorovich;Dmitriy Viktorovich POGORELYY;;M;;Member of the State Duma;135159;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135156;EU.7355.63;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Viktorovitj POGORELYJ;SV;M;;;144040;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135156;EU.7355.63;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-10-04;4;10;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;135157;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135160;EU.7356.62;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПОЛУЯНОВА;Наталия;Владимировна;Наталия Владимировна ПОЛУЯНОВА;RU;F;;;135162;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135160;EU.7356.62;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;POLUYANOVA;Nataliya;Vladimirovna;Nataliya Vladimirovna POLUYANOVA;;F;;Member of the State Duma;135163;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135160;EU.7356.62;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Natalija Vladimirovna POLUJANOVA;SV;;;;144039;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135160;EU.7356.62;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-03-11;11;3;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;135161;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135164;EU.7357.61;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПОНОМАРЁВ;Аркадий;Николаевич;Аркадий Николаевич ПОНОМАРЁВ;RU;M;;;135166;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135164;EU.7357.61;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PONOMAREV;Arkady;Nikolaevich;Arkady Nikolaevich PONOMAREV;;M;;Member of the State Duma;135167;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135164;EU.7357.61;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Arkadij Nikolajevitj PONOMARJOV;SV;M;;;144038;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135164;EU.7357.61;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-05-16;16;5;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;135165;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135168;EU.7358.60;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПОПОВ;Евгений;;Евгений ПОПОВ;RU;M;;;135170;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135168;EU.7358.60;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;POPOV;Yevgeny;;Yevgeny POPOV;;M;;Member of the State Duma;135171;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135168;EU.7358.60;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jevgenij POPOV;SV;M;;;144037;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135168;EU.7358.60;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-09-11;11;9;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;135169;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135172;EU.7359.59;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПРОКОПЬЕВ;Александр;Сергеевич;Александр Сергеевич ПРОКОПЬЕВ;RU;;;;135174;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135172;EU.7359.59;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PROKOPYEV;Aleksandr;Sergeevich;Aleksandr Sergeevich PROKOPYEV;;M;;Member of the State Duma;135175;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135172;EU.7359.59;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Sergejevitj PROKOPJEV;SV;;;;144036;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135172;EU.7359.59;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-08-05;5;8;1986;;;NO;GREGORIAN;;;;;00;UNKNOWN;135173;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135176;EU.7360.37;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПТИЦЫН;Роман;Викторович;Роман Викторович ПТИЦЫН;RU;M;;;135178;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135176;EU.7360.37;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PTITSYN;Roman;Viktorovich;Roman Viktorovich PTITSYN;;M;;Member of the State Duma;135179;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135176;EU.7360.37;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Roman Viktorovitj PTITSYN;SV;M;;;144035;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135176;EU.7360.37;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-09-08;8;9;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;135177;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135180;EU.7361.36;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;РЕ́ЗНИК;Владисла́в;Ма́тусович;Владисла́в Ма́тусович РЕ́ЗНИК;RU;M;;;135182;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135180;EU.7361.36;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;REZNIK;Vladislav;Matusovich;Vladislav Matusovich REZNIK;;M;;Member of the State Duma;135183;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135180;EU.7361.36;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladislav Matusovitj REZNIK;SV;M;;;144034;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135180;EU.7361.36;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-05-17;17;5;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;135181;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135184;EU.7362.35;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;РЕСИН;Владимир;Иосифович;Владимир Иосифович РЕСИН;RU;M;;;135186;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135184;EU.7362.35;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;RESIN;Vladimir;Iosifovich;Vladimir Iosifovich RESIN;;M;;Member of the State Duma;135187;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135184;EU.7362.35;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Iosifovitj RESIN;SV;M;;;144033;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135184;EU.7362.35;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1936-02-21;21;2;1936;;;NO;GREGORIAN;;;;;00;UNKNOWN;135185;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135188;EU.7363.34;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;РОДИНА;Виктория;Сергеевна;Виктория Сергеевна РОДИНА;RU;F;;;135190;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135188;EU.7363.34;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;RODINA;Victoria;Sergeevna;Victoria Sergeevna RODINA;;F;;Member of the State Duma;135191;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135188;EU.7363.34;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktorija Sergejevna RODINA;SV;F;;;144032;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135188;EU.7363.34;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989-10-29;29;10;1989;;;NO;GREGORIAN;;;;;00;UNKNOWN;135189;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135192;EU.7364.33;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;РОДНИНА;Ирина;Константиновна;Ирина Константиновна РОДНИНА;RU;F;;;135194;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135192;EU.7364.33;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;RODNINA;Irina;Konstantinovna;Irina Konstantinovna RODNINA;;F;;Member of the State Duma;135195;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135192;EU.7364.33;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Irina Konstantinovna RODNINA;SV;F;;;144031;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135192;EU.7364.33;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-09-12;12;9;1949;;;NO;GREGORIAN;;;;;00;UNKNOWN;135193;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135196;EU.7365.32;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;РОМАНЕНКО;Роман;Юрьевич;Роман Юрьевич РОМАНЕНКО;RU;M;;;135198;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135196;EU.7365.32;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ROMANENKO;Roman;Yurevich;Roman Yurevich ROMANENKO;;M;;Member of the State Duma;135199;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135196;EU.7365.32;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Roman Jurjevitj ROMANENKO;SV;M;;;144030;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135196;EU.7365.32;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-08-09;9;8;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;135197;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135200;EU.7366.31;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;РОМАНОВ;Михаил;Валентинович;Михаил Валентинович РОМАНОВ;RU;M;;;135202;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135200;EU.7366.31;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ROMANOV;Mikhail;Valentinovich;Mikhail Valentinovich ROMANOV;;M;;Member of the State Duma;135203;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135200;EU.7366.31;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Michail Valentinovitj ROMANOV;SV;;;;144029;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135200;EU.7366.31;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-11-03;3;11;1984;;;NO;GREGORIAN;;;;;00;UNKNOWN;135201;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135204;EU.7367.30;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;РУДЕНСКИЙ;Игорь;Николаевич;Игорь Николаевич РУДЕНСКИЙ;RU;M;;;135206;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135204;EU.7367.30;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;RUDENSKY;Igor;Nikolaevich;Igor Nikolaevich RUDENSKY;;M;;Member of the State Duma;135207;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135204;EU.7367.30;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Igor Nikolajevitj RUDENSKIJ;SV;M;;;144028;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135204;EU.7367.30;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-09-11;11;9;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;135205;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135208;EU.7368.29;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;РУМЯНЦЕВ;Александр;Григорьевич;Александр Григорьевич РУМЯНЦЕВ;RU;M;;;135210;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135208;EU.7368.29;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;RUMYANTSEV;Alexander;Grigorievich;Alexander Grigorievich RUMYANTSEV;;M;;Member of the State Duma;135211;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135208;EU.7368.29;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Grigorjevitj RUMJANTSEV;SV;M;;;144027;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135208;EU.7368.29;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947-02-12;12;2;1947;;;NO;GREGORIAN;;;;;00;UNKNOWN;135209;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135212;EU.7369.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;РЯБЦЕВА;Жанна;Анатольевна;Жанна Анатольевна РЯБЦЕВА;RU;F;;;135214;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135212;EU.7369.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;RYABTSEVA;Zhanna;Anatolievna;Zhanna Anatolievna RYABTSEVA;;F;;Member of the State Duma;135215;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135212;EU.7369.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Zjanna Anatoljevna RJABTSEVA;SV;F;;;144026;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135212;EU.7369.28;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-12-08;8;12;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;135213;EN;;amendment;council;2022-02-23;2022-02-23;2022/261 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135219;EU.7370.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ШОЙГУ;Сергей;Кужугетович;Сергей Кужугетович ШОЙГУ;RU;M;;;135222;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135219;EU.7370.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHOIGU;Sergei;Kuzhugetovich;Sergei Kuzhugetovich SHOIGU;;M;;Defence Minister of the Russian Federation;135223;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135219;EU.7370.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Kuzjugetovitj SJOJGU;SV;M;;;135373;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135219;EU.7370.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-05-21;21;5;1955;;;NO;GREGORIAN;;;Republic of Tuva;Chadan;RU;RUSSIAN FEDERATION;135220;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135219;EU.7370.6;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135221;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135224;EU.7371.5;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВАЙНО;Антон;Эдуардович;Антон Эдуардович ВАЙНО;RU;M;;;135227;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135224;EU.7371.5;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VAINO;Anton;Eduardovich;Anton Eduardovich VAINO;;M;;Chief of Staff of the Presidential Executive Office;135228;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135224;EU.7371.5;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anton Eduardovitj VAJNO;SV;M;;;135374;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135224;EU.7371.5;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-02-17;17;2;1972;;;NO;GREGORIAN;;;;Tallinn;EE;ESTONIA;135225;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135224;EU.7371.5;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135226;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135229;EU.7372.4;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ХУСНУЛЛИН;Марат;Шакирзянович;Марат Шакирзянович ХУСНУЛЛИН;RU;M;;;135232;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135229;EU.7372.4;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KHUSNULLIN;Marat;Shakirzyanovich;Marat Shakirzyanovich KHUSNULLIN;;M;;Deputy Prime Minister of Russia for Construction and Regional Development;135233;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135229;EU.7372.4;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Marat Sjakirzianovitj CHUSNULLIN;SV;M;;;135376;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135229;EU.7372.4;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-08-09;9;8;1966;;;NO;GREGORIAN;;;Republic of Tatarstan;Kazan;RU;RUSSIAN FEDERATION;135230;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135229;EU.7372.4;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135231;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135234;EU.7373.3;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Дмитрий Юрьевич ГРИГОРЕНКО;;M;;;135236;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135234;EU.7373.3;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Dmitriy Yuryevich GRIGORENKO;;M;;"Deputy Prime Minister of the Russian Federation – Chief of the Government Staff of the Russian Federation; Chairman of the Supervisory Council of the VTB Bank";135237;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135234;EU.7373.3;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Dmitrij GRIGORENKO;SL;M;;;135379;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135234;EU.7373.3;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Dmitrij Jurjevitj GRIGORENKO;SV;M;;;135380;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135234;EU.7373.3;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-07-14;14;7;1978;;;NO;GREGORIAN;;;Tyumen Region;Nizhnevartovsk;RU;RUSSIAN FEDERATION;135235;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135238;EU.7374.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Максим Геннадьевич РЕШЕТНИКОВ;;;;;135241;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135238;EU.7374.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Maxim Gennadyevich RESHETNIKOV;;M;;"Minister of Economic Development of the Russian Federation; Member of the Supervisory Council of the VTB Bank";135242;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135238;EU.7374.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Maksim REŠETNIKOV;SL;M;;;135381;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135238;EU.7374.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Maksim Gennadjevitj RESJETNIKOV;SV;M;;;135382;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135238;EU.7374.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-07-11;11;7;1979;;;NO;GREGORIAN;;;;Perm;RU;RUSSIAN FEDERATION;135239;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135238;EU.7374.2;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135240;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135243;EU.7375.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Николай Анатольевич ЕВМЕНОВ;;M;;;135246;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135243;EU.7375.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Nikolai YEVMENOV;;M;;;135247;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135243;EU.7375.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Nikolay Anatolyevich YEVMENOV;;M;Admiral;Commander in chief of the Russian Navy;135248;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135243;EU.7375.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Nikolaj JEVMENOV;SL;M;;;135383;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135243;EU.7375.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Nikolaj Anatoljevitj JEVMENOV;;M;;;135384;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135243;EU.7375.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-04-02;2;4;1962;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;135244;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135243;EU.7375.1;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135245;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135249;EU.7376.0;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Владимир Львович КАСАТОНОВ;RU;M;;;135251;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135249;EU.7376.0;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KASATONOV;Vladimir;Lvovich;Vladimir Lvovich KASATONOV;;M;;Deputy Commander-in-Chief of the Russian Navy;135252;EN;"Associated entities: Ministry of Defence of Russia; Russian Navy";amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135249;EU.7376.0;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Lvovitj KASATONOV;SV;M;;;135385;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135249;EU.7376.0;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-06-17;17;6;1952;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;135250;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135253;EU.7377.96;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Игорь Владимирович ОСИПОВ;;M;;;135256;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135253;EU.7377.96;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Igor Vladimirovich OSIPOV;;M;Admiral;Commander in Chief of the Black Sea Fleet;135257;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135253;EU.7377.96;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Igor Vladimirovitj OSIPOV;SV;M;;;135386;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135253;EU.7377.96;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-03-06;6;3;1973;;;NO;GREGORIAN;;Kostanay region;Novo-Shunoe settlement, Fedorovsky district;;KZ;KAZAKHSTAN;135254;EN;Kazakh Soviet Socialist Republic (now Kazakhstan);amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135253;EU.7377.96;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135255;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135258;EU.7378.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Олег Леонидович САЛЮКОВ;;M;;;135261;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135258;EU.7378.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Oleg Leonydovych SALYUKOV;;M;Army General;Commander-in-Chief of the Russian Ground Forces;135262;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135258;EU.7378.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Oleg Leonidovič SALJUKOV;SL;M;;;135387;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135258;EU.7378.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Oleg Leonidovitj SALJUKOV;SV;M;;;135388;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135258;EU.7378.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-05-21;21;5;1955;;;NO;GREGORIAN;;;;Saratov;RU;RUSSIAN FEDERATION;135259;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135258;EU.7378.95;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135260;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135263;EU.7379.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СУРОВИКИН;Cергей;;Cергей СУРОВИКИН;RU;M;;;135266;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135263;EU.7379.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SUROVIKIN;Sergei;;Sergei SUROVIKIN;;M;Army General;Commander of the Aerospace Forces;135267;EN;Associated entities: Russian Aerospace Forces – Ministry of Defence;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135263;EU.7379.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej SUROVIKIN;SL;M;;;135389;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135263;EU.7379.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej SUROVIKIN;SV;M;;;135390;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135263;EU.7379.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-10-11;11;10;1966;;;NO;GREGORIAN;;;;Novosibirsk;RU;RUSSIAN FEDERATION;135264;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135263;EU.7379.94;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135265;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135268;EU.7380.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Сергей Владимирович ДРОНОВ;;M;;;135271;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135268;EU.7380.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Sergei Vladimirovich DRONOV;;M;;;135272;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135268;EU.7380.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Sergey Vladimirovich DRONOV;;M;Lieutenant General;Commander of the Air Force and Deputy Commander-in-Chief of the Air and Space Forces;135273;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135268;EU.7380.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Sergej Vladimirovič DRONOV;SL;M;;;135391;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135268;EU.7380.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Sergej Vladimirovitj DRONOV;SV;M;;;135392;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135268;EU.7380.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-08-11;11;8;1962;;;NO;GREGORIAN;;;Voroshilovograd region;Almazovka;UA;UKRAINE;135269;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135268;EU.7380.72;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135270;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135274;EU.7381.71;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Виолетта ПРИГОЖИНА;;F;;;135276;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135274;EU.7381.71;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Violetta PRIGOZHINA;;F;;;135277;EN;"Associated individuals: Yevgeniy Viktorovich Prigozhin (son); Lyubov Valentinovna Prigozhina (daughter-in-law)";amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135274;EU.7381.71;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Violeta PRIGOŽINA;SL;F;;;135393;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135274;EU.7381.71;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Violetta PRIGOZJINA;SV;F;;;135394;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135274;EU.7381.71;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135275;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135278;EU.7382.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Любовь Валентиновна ПРИГОЖИНА;;F;;;135280;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135278;EU.7382.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Lyubov Valentinovna PRIGOZHINA;;F;;;135281;EN;"Associated individuals: Yevgeniy Viktorovich Prigozhin (husband); Violetta Prigozhina (mother-in-law)";amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135278;EU.7382.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Ljubov Valentinovna PRIGOŽINA;;F;;;135395;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135278;EU.7382.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Ljubov Valentinovna PRIGOZJINA;SV;F;;;135396;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135278;EU.7382.70;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135279;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135282;EU.7383.69;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БОРТНИКОВ;Денис;Александрович;Денис Александрович БОРТНИКОВ;RU;M;;;135285;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135282;EU.7383.69;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BORTNIKOV;Denis;Aleksandrovich;Denis Aleksandrovich BORTNIKOV;;M;;Deputy President and Chairman of VTB Bank's Management Board;135286;EN;"Associated individuals: Alexander Vasilyevich Bortnikov (father); Tatiana Borisovna Bortnikova (mother); Associated entities: VTB Bank";amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135282;EU.7383.69;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Denis Aleksandrovitj BORTNIKOV;SV;;;;135397;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135282;EU.7383.69;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-11-19;19;11;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;135283;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135282;EU.7383.69;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135284;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135287;EU.7384.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Андрей Леонидович КОСТИН;;M;;;135290;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135287;EU.7384.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Andrei Leonidovich KOSTIN;;M;;President of the VTB Bank Management Board;135291;EN;"Associated persons: Tamara Mikhailovna Kostina (mother); Leonid Alekseevich Kostin (father)";amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135287;EU.7384.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Andrej Leonidovič KOSTIN;SL;M;;;135398;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135287;EU.7384.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Andrej Leonidovitj KOSTIN;SV;M;;;135399;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135287;EU.7384.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-09-21;21;9;1956;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;135288;EN;Former USSR (now Russian Federation);amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135287;EU.7384.68;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135289;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135292;EU.7385.67;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ШУВАЛОВ;Игорь;Иванович;Игорь Иванович ШУВАЛОВ;RU;M;;;135294;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135292;EU.7385.67;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHUVALOV;Igor;Ivanovich;Igor Ivanovich SHUVALOV;;M;;"Chairman of State Development Corporation VEB.RF and member of the Council of the Eurasian Economic Commission; previously a\nFirst Deputy Prime Minister of Russia";135295;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135292;EU.7385.67;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Igor Ivanovitj SJUVALOV;SV;M;;;135401;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135292;EU.7385.67;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-01-04;4;1;1967;;;NO;GREGORIAN;;;;Bilibino;RU;RUSSIAN FEDERATION;135293;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135296;EU.7386.66;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СИМОНЬЯН;Маргарита;Симоновна;Маргарита Симоновна СИМОНЬЯН;RU;F;;;135299;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135296;EU.7386.66;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SIMONYAN;Margarita;Simonovna;Margarita Simonovna SIMONYAN;;F;;Editor-in-chief of the English language television news network RT (Russia Today);135300;EN;Associated individuals: Dmitry Konstantinovich KISELYOV;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135296;EU.7386.66;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Margarita Simonovna SIMONJAN;SV;F;;;135403;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135296;EU.7386.66;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-04-06;6;4;1980;;;NO;GREGORIAN;;;;Krasnodar;RU;RUSSIAN FEDERATION;135297;EN;ex-USSR (now Russian Federation);amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135296;EU.7386.66;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135298;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135301;EU.7387.65;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЗАХА́РОВА;Мари́я;Мари́я;Мари́я Мари́я ЗАХА́РОВА;RU;F;;;135304;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135301;EU.7387.65;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ZAKHAROVA;Maria;Vladimirovna;Maria Vladimirovna ZAKHAROVA;;F;;Director of the Information and Press Department of the Ministry of Foreign Affairs of the Russian Federation;135305;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135301;EU.7387.65;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Marija Vladimirovna ZACHAROVA;SV;F;;;135405;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135301;EU.7387.65;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-12-24;24;12;1975;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;135302;EN;ex-USSR (now Russian Federation);amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135301;EU.7387.65;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135303;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135306;EU.7388.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Владимир Рудольфович СОЛОВЬЁВ;;M;;;135309;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135306;EU.7388.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Vladimir Roudolfovitch SOLOVIEV;;M;;Propagandist and TV/Radio Journalist;135310;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135306;EU.7388.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Vladimir Rudolfovič SOLOVJEV;SL;M;;;135406;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135306;EU.7388.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Vladimir Rudolfovitj SOLOVJOV;SV;M;;;135407;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135306;EU.7388.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-10-20;20;10;1963;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;135307;EN;ex-USSR (now Russian Federation);amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135306;EU.7388.64;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135308;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135316;EU.7390.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Константин КНЫРИК;;M;;;135319;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135316;EU.7390.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Konstantin KNYRIK;;M;;;135320;EN;a pro-Russian activist running MediaGroup News Front Ltd;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135316;EU.7390.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Konstantin KNIRIK;SL;M;;;135408;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135316;EU.7390.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989;;;NO;GREGORIAN;;;;;00;UNKNOWN;135317;EN;(possibly);amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135316;EU.7390.41;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135318;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135321;EU.7391.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;Пушков;Алексей;Константинович;Алексей Константинович Пушков;RU;M;;;135325;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135321;EU.7391.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PUSHKOV;Aleksey;Konstantinovich;Aleksey Konstantinovich PUSHKOV;;M;;Senator from Perm Krai, member of the ruling United Russia political party, Chairman of the Commission on Information Policy, Member of the Federation Council.;135326;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135321;EU.7391.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Konstantinovič PUŠKOV;SL;M;;;135409;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135321;EU.7391.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Konstantinovitj PUSJKOV;SV;M;;;135410;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135321;EU.7391.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;Perm;51 Lenina St., room 219;;614000;;;NO;"PHONE[8 (495) 697-58-69]\nFAX[8 (495) 697-58-69]\n(Address of the reception office in the\nregion of the Russian Federation: 51\nLenina St., Perm, 614000, room 219; Telephone and fax numbers of the\nreception office in the region of the\nRussian Federation: (342)\n253-66-01)";RU;RUSSIAN FEDERATION;135322;EN;"Address of the reception office in the\nregion of the Russian Federation: 51\nLenina St., Perm, 614000, room 219; Telephone and fax numbers of the\nreception office in the region of the\nRussian Federation: (342)\n253-66-01";amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135321;EU.7391.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-08-10;10;8;1954;;;NO;GREGORIAN;;;;Beijing;CN;CHINA;135323;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135321;EU.7391.40;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135324;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135327;EU.7392.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТОЛСТОЙ;Пётр;Олегович;Пётр Олегович ТОЛСТОЙ;RU;M;;;135330;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135327;EU.7392.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TOLSTOY;Pyotr;Olegovych;Pyotr Olegovych TOLSTOY;;M;;"Russian journalist, producer, presenter and politician; Deputy Chairman of the State Duma since 2016 and the Deputy Chairman of the Parliamentary Assembly of the Council of Europe since 28 January 2020";135331;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135327;EU.7392.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Petr Olegovich TOLSTOY;;M;;;135332;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135327;EU.7392.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Pjotr Olegovitj TOLSTOJ;SV;M;;;135412;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135327;EU.7392.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Pyotr Olegovich TOLSTOY;;M;;;142842;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135327;EU.7392.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-06-20;20;6;1969;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;135328;EN;ex-USSR (now Russian Federation);amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135327;EU.7392.39;;2022-02-23;;(Date of UN designation: 2022-02-23);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;135329;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN +28/10/2022;135334;EU.7393.38;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Агентство интернет-исследований;;;;;135336;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135334;EU.7393.38;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Internet Research Agency;;;;;135337;EN;"Date of creation: 2013; Associated individuals: Yevgeny Prigozhin";amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135334;EU.7393.38;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Agencija za spletne raziskave;SL;;;;135364;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135334;EU.7393.38;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Agenția pentru cercetarea internetului;RO;;;;135365;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135334;EU.7393.38;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Agencja Badań Internetowych;PL;;;;135366;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135334;EU.7393.38;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Agenzia per la ricerca su internet;IT;;;;135367;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135334;EU.7393.38;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Agencia de Investigación de Internet;ES;;;;135368;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135334;EU.7393.38;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;Saint Petersburg;;;;;;NO;;RU;RUSSIAN FEDERATION;135335;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135338;EU.7394.37;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Банк «Росси́я»;;;;;135340;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135338;EU.7394.37;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Bank Rossiya;;;;;135341;EN;"Founded on 27.6.1990; Associated individuals: Dmitri LEBEDEV (Chairman); Yuriy KOVALCHUK (largest shareholder)";amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135338;EU.7394.37;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Banco Rossiya;PT;;;;135369;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135338;EU.7394.37;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Banca Rossiya;IT;;;;135370;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135338;EU.7394.37;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Banco Rossiya;ES;;;;135371;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135338;EU.7394.37;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;Saint Petersburg;Pl Rastrelli 2 Liter A;;191124;;;NO;WEB[Abr.ru];RU;RUSSIAN FEDERATION;135339;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135342;EU.7395.36;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;"ПАО Промсвязьбанк""";;;;;135344;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135342;EU.7395.36;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;PROMSVYAZBANK;;;;;135345;EN;"Founded in 1995; Associated individuals: Petr Fradkov, CEO";amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135342;EU.7395.36;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;Moscow;;;;;;NO;WEB[psbank.ru];RU;RUSSIAN FEDERATION;135343;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135346;EU.7396.35;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;ВЭБ.РФ;;;;;135348;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135346;EU.7396.35;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;VEB;;;;;135349;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135346;EU.7396.35;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;Vnesheconombank;;;;;135350;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135346;EU.7396.35;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;VEB.RF;;;;;135351;EN;"Founded in 1922 as bank and 2007 as development \ninstitute; Associated individuals: Igor Shuvalov, Chairman";amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135346;EU.7396.35;;2022-02-23;;(Date of UN designation: 2022-02-23);E;enterprise;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;Moscow;9 prospekt Akademika Sakharova;;;;;NO;WEB[veb.ru];RU;RUSSIAN FEDERATION;135347;EN;;amendment;council;2022-02-23;2022-02-23;2022/260 (OJ L42I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:042I:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135450;EU.7412.5;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ООО “Дана Холдингз”;;;;;135453;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135450;EU.7412.5;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;ТАА “Дана Холдынгз”;;;;;135454;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135450;EU.7412.5;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;Dana Holdings;;;;;135455;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135450;EU.7412.5;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;Peter Mstislavets St. 9, pom. 3 (office 4);;220076;;;NO;"WEB[https://bir.by/; https://en.dana-holdings.com; https://dana-holdings.com/]\nPHONE[+375 (29) 636-23-91]\nEMAIL[info@bir.by]";BY;BELARUS;135451;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135450;EU.7412.5;;2020-12-17;;(Date of UN designation: 2020-12-17);E;enterprise;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"690611860 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;135452;EN;;amendment;council;2022-02-25;2022-02-26;2022/300 (OJ L46);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.046.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A046%3ATOC;;;;;;;;;;;;; +28/10/2022;135514;EU.7413.4;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Сардаана Владимировна Авксентьева;;F;;;135516;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135514;EU.7413.4;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Сардана Владимировна Авксентьева;;F;;;135517;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135514;EU.7413.4;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Sardana Vladimirovna GOGOLEVA;;F;;;135518;EN;née GOGOLEVA;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135514;EU.7413.4;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Sardana Vladimirovna AVKSENTYEVA;;F;;Member of the State Duma;135519;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135514;EU.7413.4;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Sardana Vladimirovna GOGOLEVA;SV;F;;;135919;EN;född GOGOLEVA;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135514;EU.7413.4;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Sardana Vladimirovna AVKSENTIEVA;SV;F;;;135920;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135514;EU.7413.4;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-07-02;2;7;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;135515;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135520;EU.7414.3;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Ольга Николаевна Алимова;;F;;;135522;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135520;EU.7414.3;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Olga Nikolayevna ALIMOVA;;F;;Member of the State Duma;135523;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135520;EU.7414.3;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Olga Nikolajevna ALIMOVA;SV;F;;;135921;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135520;EU.7414.3;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-04-10;10;4;1953;;;NO;GREGORIAN;;;;;00;UNKNOWN;135521;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135524;EU.7415.2;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Георгий Константинович Арапов;;M;;;135526;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135524;EU.7415.2;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Georgy Konstantinovich ARAPOV;;M;;Member of the State Duma;135527;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135524;EU.7415.2;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Georgij Konstantinovitj ARAPOV;SV;M;;;135922;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135524;EU.7415.2;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1999-09-11;11;9;1999;;;NO;GREGORIAN;;;;;00;UNKNOWN;135525;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135528;EU.7416.1;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Отари Ионович Аршба;;M;;;135530;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135528;EU.7416.1;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Otari Yonovich ARSHBA;;M;;Member of the State Duma;135531;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135528;EU.7416.1;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Otari Ionovitj ARSJBA;SV;M;;;135923;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135528;EU.7416.1;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-04-12;12;4;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;135529;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135536;EU.7418.96;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Михаил Николаевич Берулава;;M;;;135538;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135536;EU.7418.96;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Mikhail Nikolayevich BERULAVA;;M;;Member of the State Duma;135539;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135536;EU.7418.96;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Michail Berulava NIKOLAJEVITJ;SV;M;;;135925;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135536;EU.7418.96;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-08-03;3;8;1950;;;NO;GREGORIAN;;;;;00;UNKNOWN;135537;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135548;EU.7421.72;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Елена Андреевна Вторыгина;;F;;;135550;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135548;EU.7421.72;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Yelena Andreyevna VTORYGINA;;F;;Member of the State Duma;135551;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135548;EU.7421.72;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Jelena Andrejevna VTORYGINA;SV;F;;;135928;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135548;EU.7421.72;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-08-17;17;8;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;135549;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135552;EU.7422.71;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Дмитрий Фёдорович Вяткин;;M;;;135554;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135552;EU.7422.71;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Dmitry Fyodorovich VYATKIN;;M;;Member of the State Duma;135555;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135552;EU.7422.71;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Dmitrij Fjodorovitj VJATKIN;SV;M;;;135929;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135552;EU.7422.71;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-05-21;21;5;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;135553;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135556;EU.7423.70;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Алексей Васильевич Гордеев;;M;;;135558;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135556;EU.7423.70;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Alexey Vasilyevich GORDEYEV;;M;;Member of the State Duma;135559;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135556;EU.7423.70;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksej Vasiljevitj GORDEJEV;SV;M;;;135930;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135556;EU.7423.70;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-02-28;28;2;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;135557;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135560;EU.7424.69;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Ксения Александровна Горячева;;F;;;135562;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135560;EU.7424.69;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Kseniya Alexandrovna GORJATCHEVA;;F;;Member of the State Duma;135563;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135560;EU.7424.69;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Ksenia Aleksandrovna GORJATJOVA;;F;;;135931;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135560;EU.7424.69;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1996-05-16;16;5;1996;;;NO;GREGORIAN;;;;;00;UNKNOWN;135561;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135564;EU.7425.68;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Владислав Андреевич Даванков;;M;;;135566;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135564;EU.7425.68;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vladislav Andreevich DAVANKOV;;M;;Member of the State Duma;135567;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135564;EU.7425.68;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vladislav Andrejevitj DAVANKOV;SV;M;;;135932;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135564;EU.7425.68;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-02-25;25;2;1984;;;NO;GREGORIAN;;;;;00;UNKNOWN;135565;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135568;EU.7426.67;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Вячеслав Анатольевич Дамдинцурунов;;M;;;135570;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135568;EU.7426.67;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vyacheslav Anatolyevich DAMDINTSURUNOV;;M;;Member of the State Duma;135571;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135568;EU.7426.67;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vjatjeslav Anatoljevitj DAMDINTSURUNOV;SV;M;;;135933;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135568;EU.7426.67;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-09-21;21;9;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;135569;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135572;EU.7427.66;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Александр Вячеславович Дёмин;;M;;;135574;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135572;EU.7427.66;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Alexander Vyacheslavovich DYOMIN;;M;;Member of the State Duma;135575;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135572;EU.7427.66;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksandr Vjatjeslavovitj DJOMIN;SV;M;;;135934;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135572;EU.7427.66;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-09-23;23;9;1988;;;NO;GREGORIAN;;;;;00;UNKNOWN;135573;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135576;EU.7428.65;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Оксана Генриховна Дмитриева;;F;;;135578;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135576;EU.7428.65;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Oksana Genrikhovna DMITRIEVA;;F;;Member of the State Duma;135579;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135576;EU.7428.65;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Oksana Genrichovna DMITRIJEVA;SV;F;;;135935;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135576;EU.7428.65;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-04-03;3;4;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;135577;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135580;EU.7429.64;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Александр Дмитриевич Жуков;;M;;;135582;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135580;EU.7429.64;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Alexander Dmitriyevich ZHUKOV;;M;;Member of the State Duma;135583;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135580;EU.7429.64;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksandr Dmitrijevitj ZJUKOV;SV;M;;;135936;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135580;EU.7429.64;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-06-01;1;6;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;135581;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135584;EU.7430.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Константин Фёдорович Затулин;;M;;;135586;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135584;EU.7430.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Konstantin Fyodorovich ZATULIN;;M;;Member of the State Duma;135587;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135584;EU.7430.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Konstantin Fjodorovitj ZATULIN;SV;M;;;135937;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135584;EU.7430.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-09-07;7;9;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;135585;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135588;EU.7431.41;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Артём Александрович Кавинов;;M;;;135590;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135588;EU.7431.41;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Artem Alexandrovich KAVINOV;;M;;Member of the State Duma;135591;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135588;EU.7431.41;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-09-03;3;9;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;135589;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135592;EU.7432.40;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Ольга Михайловна Казакова;;F;;;135594;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135592;EU.7432.40;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Olga Mikhailovna KAZAKOVA;;F;;Member of the State Duma;135595;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135592;EU.7432.40;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Olga Michajlovna KAZAKOVA;SV;F;;;135938;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135592;EU.7432.40;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-05-30;30;5;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;135593;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135596;EU.7433.39;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Шолбан Валерьевич Кара-оол;;M;;;135598;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135596;EU.7433.39;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Sholban Valeryevich KARA-OOL;;M;;Member of the State Duma;135599;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135596;EU.7433.39;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Sjolban Valerjevitj KARA-OOL;SV;M;;;135939;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135596;EU.7433.39;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-07-18;18;7;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;135597;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135600;EU.7434.38;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Раиса Васильевна Кармазина;;F;;;135602;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135600;EU.7434.38;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Raisa Vasilyevna KARMAZINA;;F;;Member of the State Duma;135603;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135600;EU.7434.38;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Raisa Vasiljevna KARMAZINA;SV;F;;;135940;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135600;EU.7434.38;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-01-09;9;1;1951;;;NO;GREGORIAN;;;;;00;UNKNOWN;135601;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135604;EU.7435.37;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Артём Юрьевич Кирьянов;;M;;;135606;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135604;EU.7435.37;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Artem Yuryevich KIRYANOV;;M;;Member of the State Duma;135607;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135604;EU.7435.37;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Artiom Jurjevich KIRJANOV;SV;M;;;135941;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135604;EU.7435.37;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-01-12;12;1;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;135605;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135608;EU.7436.36;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Лев Игоревич Ковпак;;M;;;135610;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135608;EU.7436.36;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Lev Igoryevich KOVPAK;;M;;Member of the State Duma;135611;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135608;EU.7436.36;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Lev Igorevitj KOVPAK;SV;M;;;135942;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135608;EU.7436.36;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-10-23;23;10;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;135609;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135612;EU.7437.35;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Роберт Иванович Кочиев;;M;;;135614;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135612;EU.7437.35;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Robert Ivanovich KOCHIEV;;M;;Member of the State Duma;135615;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135612;EU.7437.35;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Robert Ivanovitj KOTJIJEV;SV;M;;;135943;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135612;EU.7437.35;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-03-16;16;3;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;135613;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135616;EU.7438.34;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Андрей Леонидович Красов;;M;;;135618;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135616;EU.7438.34;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Andrey Leonidovich KRASOV;;M;;Member of the State Duma;135619;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135616;EU.7438.34;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Andrej Leonidovitj KRASOV;SV;M;;;135944;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135616;EU.7438.34;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-01-27;27;1;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;135617;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135620;EU.7439.33;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Павел Владимирович Крашенинников;;M;;;135622;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135620;EU.7439.33;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Pavel Vladimirovich KRASHENINNIKOV;;M;;Member of the State Duma;135623;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135620;EU.7439.33;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Pavel Vladimirovitj KRASJENINNIKOV;SV;M;;;135945;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135620;EU.7439.33;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-06-21;21;6;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;135621;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135624;EU.7440.11;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Анна Юрьевна Кузнецова;;F;;;135626;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135624;EU.7440.11;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Anna Yuryevna KUZNETSOVA;;F;;Member of the State Duma;135627;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135624;EU.7440.11;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Anna Jurjevna KUZNETSOVA;SV;F;;;135946;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135624;EU.7440.11;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-01-03;3;1;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;135625;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135628;EU.7441.10;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Ризван Даниялович Курбанов;;M;;;135630;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135628;EU.7441.10;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Rizvan Danilovich KURBANOV;;M;;Member of the State Duma;135631;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135628;EU.7441.10;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Rizvan Danilovitj KURBANOV;SV;M;;;135947;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135628;EU.7441.10;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-01-03;3;1;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;135629;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135632;EU.7442.9;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Олег Юрьевич Леонов;;M;;;135634;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135632;EU.7442.9;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Oleg Yuryevich LEONOV;;M;;Member of the State Duma;135635;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135632;EU.7442.9;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Oleg Jurjevitj LEONOV;SV;M;;;135948;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135632;EU.7442.9;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-09-10;10;9;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;135633;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135636;EU.7443.8;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Андрей Михайлович Макаров;;M;;;135637;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135636;EU.7443.8;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Andrey Mikhailovich MAKAROV;;M;;Member of the State Duma;135638;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135636;EU.7443.8;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Andrej Mikhajlovitj MAKAROV;SV;M;;;135949;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135636;EU.7443.8;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-07-22;22;7;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;135639;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135640;EU.7444.7;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Евгений Евгеньевич Марченко;;M;;;135642;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135640;EU.7444.7;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Evgeny Evgenievich MARCHENKO;;M;;Member of the State Duma;135643;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135640;EU.7444.7;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Jevgenij Jevgenjevitj MARTJENKO;SV;M;;;135950;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135640;EU.7444.7;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-07-17;17;7;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;135641;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135644;EU.7445.6;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МАТВЕЙЧЕВ;Олег;Анатольевич;Олег Анатольевич МАТВЕЙЧЕВ;RU;M;;;135646;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135644;EU.7445.6;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MATVEYCHEV;Oleg;Anatolyevich;Oleg Anatolyevich MATVEYCHEV;;M;;Member of the State Duma since 2021, Deputy Chairman of the State Duma Committee on Information Policy, Information Technologies and Communications.;135647;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135644;EU.7445.6;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleg Anatoljevitj MATVEJTJEV;SV;M;;;135951;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135644;EU.7445.6;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-02-01;1;2;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;135645;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135648;EU.7446.5;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Артём Павлович Метелев;;M;;;135650;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135648;EU.7446.5;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Artem Pavlovich METELEV;;M;;Member of the State Duma;135651;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135648;EU.7446.5;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Artiom Pavlovitj METELEV;SV;M;;;135952;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135648;EU.7446.5;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1993-08-11;11;8;1993;;;NO;GREGORIAN;;;;;00;UNKNOWN;135649;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135652;EU.7447.4;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Олег Викторович Морозов;;M;;;135654;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135652;EU.7447.4;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Oleg Viktorovich MOROZOV;;M;;Member of the State Duma;135655;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135652;EU.7447.4;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Oleg Viktorovitj MOROZOV;SV;M;;;135953;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135652;EU.7447.4;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-11-05;5;11;1953;;;NO;GREGORIAN;;;;;00;UNKNOWN;135653;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135656;EU.7448.3;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Евгений Cергеевич Москвичев;;M;;;135658;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135656;EU.7448.3;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Yevgeny Sergeyevich MOSKVICHEV;;M;;Member of the State Duma;135659;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135656;EU.7448.3;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Jevgenij Sergejevitj MOSKVITJOV;SV;M;;;135954;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135656;EU.7448.3;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-09-28;28;9;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;135657;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135660;EU.7449.2;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Алексей Геннадьевич Нечаев;;;;;135662;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135660;EU.7449.2;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Alexey Gennadyevich NECHAYEV;;M;;Member of the State Duma;135663;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135660;EU.7449.2;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksej Gennadjevitj NETJAJEV;SV;M;;;135955;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135660;EU.7449.2;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-08-30;30;8;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;135661;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135664;EU.7450.77;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Виктория Викторовна Николаева;;F;;;135666;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135664;EU.7450.77;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Viktoria Viktorovna NIKOLAEVA;;F;;Member of the State Duma;135667;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135664;EU.7450.77;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Viktoria Viktorovna NIKOLAJEVA;SV;F;;;135956;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135664;EU.7450.77;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-11-21;21;11;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;135665;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135668;EU.7451.76;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Николай Владимирович Новичков;;M;;;135670;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135668;EU.7451.76;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Nikolay Vladimirovich NOVICHKOV;;M;;Member of the State Duma;135671;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135668;EU.7451.76;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Nikolaj Vladimirovitj NOVITJKOV;SV;M;;;135957;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135668;EU.7451.76;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-12-24;24;12;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;135669;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135672;EU.7452.75;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Марина Эдуардовна Оргеева;;F;;;135674;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135672;EU.7452.75;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Marina Eduardovna ORGEYEVA;;F;;Member of the State Duma;135675;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135672;EU.7452.75;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Marina Eduardovna ORGEJEVA;SV;F;;;135958;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135672;EU.7452.75;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-09-21;21;9;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;135673;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135676;EU.7453.74;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Сергей Александрович Пахомов;;M;;;135678;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135676;EU.7453.74;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Sergey Alexandrovich PAHOMOV;;M;;Member of the State Duma;135679;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135676;EU.7453.74;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Sergej Aleksandrovitj PACHOMOV;SV;M;;;135959;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135676;EU.7453.74;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-08-06;6;8;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;135677;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135680;EU.7454.73;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Дмитрий Анатольевич Певцов;;M;;;135682;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135680;EU.7454.73;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Dmitriy Anatolyevich PEVTSOV;;M;;Member of the State Duma;135683;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135680;EU.7454.73;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Dmitrij Anatoljevitj PEVTSOV;SV;M;;;135960;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135680;EU.7454.73;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-07-08;8;7;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;135681;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135688;EU.7456.71;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Виктор Витальевич Пинский;;M;;;135690;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135688;EU.7456.71;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Viktor Vitalyevich PINSKIY;;M;;Member of the State Duma;135691;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135688;EU.7456.71;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Viktor Vitaljevitj PINSKIJ;SV;M;;;135962;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135688;EU.7456.71;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-02-06;6;2;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;135689;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135692;EU.7457.70;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Василий Иванович Пискарев;;M;;;135694;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135692;EU.7457.70;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vasily Ivanovich PISKAREV;;M;;Member of the State Duma;135695;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135692;EU.7457.70;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vasilij Ivanovitj PISKARJOV;SV;M;;;135963;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135692;EU.7457.70;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-11-08;8;11;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;135693;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135696;EU.7458.69;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Владимир Владимирович Плякин;;M;;;135698;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135696;EU.7458.69;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vladimir Vladimirovich PLYAKIN;;M;;Member of the State Duma;135699;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135696;EU.7458.69;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vladimir Vladimirovitj PLJAKIN;SV;M;;;135964;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135696;EU.7458.69;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-09-19;19;9;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;135697;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135700;EU.7459.68;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Александр Алексеевич Поляков;;M;;;135702;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135700;EU.7459.68;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksandr Alekseyevich POLYAKOV;;M;;Member of the State Duma;135703;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135700;EU.7459.68;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksandr Aleksejevitj POLJAKOV;SV;M;;;135965;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135700;EU.7459.68;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-01-31;31;1;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;135701;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135704;EU.7460.46;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Светлана Викторовна Разворотнева;;F;;;135706;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135704;EU.7460.46;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Svetlana Viktorovna RAZVOROTNEVA;;F;;Member of the State Duma;135707;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135704;EU.7460.46;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-03-25;25;3;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;135705;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135708;EU.7461.45;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Евгений Васильевич Ревенко;;M;;;135710;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135708;EU.7461.45;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Evgeny Vasilyevich REVENKO;;M;;Member of the State Duma;135711;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135708;EU.7461.45;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Jevgenij Vasiljevitj REVENKO;SV;M;;;135966;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135708;EU.7461.45;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-05-22;22;5;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;135709;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135716;EU.7463.43;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Дмитрий Станиславович Скриванов;;M;;;135718;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135716;EU.7463.43;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Dmitry Stanislavovich SKRIVANOV;;M;;Member of the State Duma;135719;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135716;EU.7463.43;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Dmitrij Stanislavovitj SKRIVANOV;SV;M;;;135968;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135716;EU.7463.43;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-08-15;15;8;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;135717;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135720;EU.7464.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Иван Александрович Солодовников;;M;;;135722;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135720;EU.7464.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Ivan Alexandrovich SOLODOVNIKOV;;M;;Member of the State Duma;135723;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135720;EU.7464.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Ivan Alexandrovitj SOLODOVNIKOV;SV;M;;;135969;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135720;EU.7464.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-04-09;9;4;1985;;;NO;GREGORIAN;;;;;00;UNKNOWN;135721;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135724;EU.7465.41;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Юрий Аркадьевич Станкевич;;M;;;135726;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135724;EU.7465.41;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Yuriy Arkadevich STANKEVICH;;M;;Member of the State Duma;135727;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135724;EU.7465.41;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Jurij Arkadjevitj STANKEVITJ;SV;M;;;135970;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135724;EU.7465.41;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-07-24;24;7;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;135725;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135728;EU.7466.40;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Александр Михайлович Стрелюхин;;M;;;135730;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135728;EU.7466.40;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksandr Mikhaylovich STRELYUKHIN;;M;;Member of the State Duma;135731;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135728;EU.7466.40;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksandr Michajlovitj STRELJUCHIN;SV;M;;;135971;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135728;EU.7466.40;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-07-04;4;7;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;135729;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135732;EU.7467.39;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Сангаджи Андреевич Тарбаев;;M;;;135734;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135732;EU.7467.39;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Sangadzhi Andreyevich TARBAEV;;M;;Member of the State Duma;135735;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135732;EU.7467.39;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Sangadzji Andrejevitj TARBAJEV;SV;M;;;135972;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135732;EU.7467.39;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-04-15;15;4;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;135733;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135736;EU.7468.38;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Ольга Викторовна Тимофеева;;F;;;135738;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135736;EU.7468.38;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Olga Victorovna TIMOFEYEVA;;F;;Member of the State Duma;135739;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135736;EU.7468.38;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Olga Viktorovna TIMOFEJEVA;SV;F;;;135974;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135736;EU.7468.38;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-08-19;19;8;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;135737;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135740;EU.7469.37;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Алексей Николаевич Ткачёв;;M;;;135742;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135740;EU.7469.37;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Alexey Nikolaevich TKACHEV;;M;;Member of the State Duma;135743;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135740;EU.7469.37;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksej Nikolajevitj TKATJOV;SV;M;;;135975;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135740;EU.7469.37;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-03-01;1;3;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;135741;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135744;EU.7470.15;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Максим Анатольевич Топилин;;M;;;135746;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135744;EU.7470.15;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Maxim Anatolyevich TOPILIN;;M;;Member of the State Duma;135747;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135744;EU.7470.15;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Maksim Anatoljevitj TOPILIN;SV;M;;;135976;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135744;EU.7470.15;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-04-19;19;4;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;135745;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135748;EU.7471.14;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Владислав Александрович Третьяк;;M;;;135750;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135748;EU.7471.14;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vladislav Alexandrovich TRETIAK;;M;;Member of the State Duma;135751;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135748;EU.7471.14;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vladislav Aleksandrovitj TRETIAK;SV;M;;;135977;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135748;EU.7471.14;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-04-25;25;4;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;135749;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135752;EU.7472.13;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Амир Махсудович Хамитов;;M;;;135754;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135752;EU.7472.13;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Amir Makhsudovich HAMITOV;;M;;Member of the State Duma;135755;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135752;EU.7472.13;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Amir Machsudovitj CHAMITOV;SV;M;;;135978;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135752;EU.7472.13;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-02-04;4;2;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;135753;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135756;EU.7473.12;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Александр Евсеевич Хинштейн;;M;;;135758;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135756;EU.7473.12;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Alexander Evseyevich KHINSHTEIN;;M;;Member of the State Duma;135759;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135756;EU.7473.12;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksandr Jevsejevitj CHINSJTEJN;SV;M;;;135979;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135756;EU.7473.12;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-10-26;26;10;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;135757;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135760;EU.7474.11;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Глеб Яковлевич Хор;;M;;;135762;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135760;EU.7474.11;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Gleb Yakovlevich KHOR;;M;;Member of the State Duma;135763;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135760;EU.7474.11;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Gleb Jakovlevitj CHOR;SV;M;;;135980;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135760;EU.7474.11;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-04-08;8;4;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;135761;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135764;EU.7475.10;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Дмитрий Анатольевич Хубезов;;M;;;135766;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135764;EU.7475.10;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Dmitry Anatolievich KHUBEZOV;;M;;Member of the State Duma;135767;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135764;EU.7475.10;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Dmitrij Anatoljevitj CHUBEZOV;SV;M;;;135981;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135764;EU.7475.10;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-12-20;20;12;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;135765;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135768;EU.7476.9;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Роза Басировна Чемерис;;F;;;135770;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135768;EU.7476.9;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Roza Basirovna CHEMERIS;;F;;Member of the State Duma;135771;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135768;EU.7476.9;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Roza Basirovna TJEMERIS;SV;F;;;135982;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135768;EU.7476.9;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-06-11;11;6;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;135769;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135772;EU.7477.8;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Алексей Васильевич Чепа;;M;;;135774;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135772;EU.7477.8;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Alexey Vasilievich CHEPA;;M;;Member of the State Duma;135775;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135772;EU.7477.8;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksej Vasiljevitj TJEPA;SV;M;;;135983;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135772;EU.7477.8;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-11-22;22;11;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;135773;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135776;EU.7478.7;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Рифат Габдулхакович Шайхутдинов;;M;;;135778;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135776;EU.7478.7;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Rifat Gabdulkhakovich SHAYHUTDINOV;;M;;Member of the State Duma;135779;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135776;EU.7478.7;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Rifat Gabdulchakovitj SJAJCHUTDINOV;SV;M;;;135984;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135776;EU.7478.7;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-12-23;23;12;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;135777;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135780;EU.7479.6;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Григорий Владимирович Шилкин;;M;;;135782;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135780;EU.7479.6;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Grigory Vladimirovich SHILKIN;;M;;Member of the State Duma;135783;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135780;EU.7479.6;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Grigorij Vladimirovitj SJILKIN;SV;M;;;135985;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135780;EU.7479.6;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-10-20;20;10;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;135781;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135784;EU.7480.81;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Александр Михайлович Шолохов;;M;;;135786;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135784;EU.7480.81;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Alexander Mikhailovich SHOLOKHOV;;M;;Member of the State Duma;135787;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135784;EU.7480.81;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksandr Michailovitj SJOLOCHOV;SV;M;;;135986;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135784;EU.7480.81;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-01-25;25;1;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;135785;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135788;EU.7481.80;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Елена Александровна Ямпольская;;F;;;135790;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135788;EU.7481.80;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Elena Alexandrovna YAMPOLSKAYA;;F;;Member of the State Duma;135791;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135788;EU.7481.80;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Jelena Aleksandrovna JAMPOLSKAJA;SV;F;;;135987;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135788;EU.7481.80;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-06-20;20;6;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;135789;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135792;EU.7482.79;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Ирина Анатольевна Яровая;;F;;;135794;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135792;EU.7482.79;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Irina Anatolievna YAROVAYA;;F;;Member of the State Duma;135795;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135792;EU.7482.79;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Irina Anatoljevna JAROVAJA;SV;F;;;135988;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135792;EU.7482.79;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-10-17;17;10;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;135793;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135796;EU.7483.78;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Румянцев Никита Геннадьевич;;M;;;135798;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135796;EU.7483.78;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Nikita RUMYANTSEV;;M;;Member of the State Duma;135799;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135796;EU.7483.78;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Nikita RUMJANTSEV;SV;M;;;135989;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135796;EU.7483.78;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-04-27;27;4;1988;;;NO;GREGORIAN;;;;;00;UNKNOWN;135797;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135800;EU.7484.77;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Киселёв Михаил Сергеевич;;M;;;135802;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135800;EU.7484.77;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Mikhail KISELYOV;;M;;Member of the State Duma;135803;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135800;EU.7484.77;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Michail KISELJOV;SV;M;;;135990;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135800;EU.7484.77;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-06-18;18;6;1986;;;NO;GREGORIAN;;;;;00;UNKNOWN;135801;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135804;EU.7485.76;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Дмитрий Анатольевич Медведев;;M;;;135806;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135804;EU.7485.76;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Dmitry Anatolyevich MEDVEDEV;;M;;Deputy Chairman of the National Security Council;135807;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135804;EU.7485.76;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Dmitrij Anatoljevitj MEDVEDEV;SV;M;;;135991;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135804;EU.7485.76;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-09-14;14;9;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;135805;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135808;EU.7486.75;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Михаил Владимирович Мишустин;;M;;;135810;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135808;EU.7486.75;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Mikhail Vladimirovich MISHUSTIN;;M;;Prime Minister of the Russian Federation;135811;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135808;EU.7486.75;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Michail Vladimirovitj MISJUSTIN;SV;M;;;135992;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135808;EU.7486.75;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-05-03;3;5;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;135809;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135812;EU.7487.74;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Владимир Александрович Колокольцев;;M;;;135814;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135812;EU.7487.74;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vladimir Alexandrovich KOLOKOLTSEV;;M;;Minister of the Interior of the Russian Federation;135815;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135812;EU.7487.74;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vladimir Aleksandrovitj KOLOKOLTSEV;SV;M;;;135993;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135812;EU.7487.74;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-05-11;11;5;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;135813;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135816;EU.7488.73;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Сергей Борисович Иванов;;M;;;135818;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135816;EU.7488.73;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Sergei Borisovich IVANOV;;M;;Special Representative of the President of the Russian Federation on the Issues of Environmental Activities, Ecology and Transport;135819;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135816;EU.7488.73;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Sergej Borisovitj IVANOV;SV;M;;;135994;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135816;EU.7488.73;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-01-31;31;1;1953;;;NO;GREGORIAN;;;;;00;UNKNOWN;135817;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135820;EU.7489.72;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Игорь Олегович Щёголев;;M;;;135822;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135820;EU.7489.72;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Igor Olegovich SHCHYOGOLEV;;M;;Representative of the President of the Russian Federation in the Central Federal District, Full State Advisor of the Russian Federation;135823;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135820;EU.7489.72;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Igor Olegovitj SJTJOGOLEV;SV;M;;;135995;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135820;EU.7489.72;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-11-10;10;11;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;135821;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135824;EU.7490.50;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Владислав Леонидович БРУЕВ;;M;;;135827;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135824;EU.7490.50;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vladislav Leonidovich BRUEV;;M;Colonel;Head of the Gomel border group;135828;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135824;EU.7490.50;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vladislav Leonidovitj BRUJEV;SV;M;;;135996;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135824;EU.7490.50;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;;;NO;GREGORIAN;;;;Kharkov;UA;UKRAINE;135825;EN;Ukrainian SSR\n(now Ukraine);amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135824;EU.7490.50;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;135826;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC +28/10/2022;135829;EU.7491.49;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Олег Анатольевич ЭЙБАТОВ;;M;;;135831;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135829;EU.7491.49;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Oleg Anatolyevich EIBATOV;;M;Colonel;Head of the Mozyr border detachment;135832;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135829;EU.7491.49;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Oleg Anatoljevitj EJBATOV;SV;M;;;135997;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135829;EU.7491.49;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;135830;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC +28/10/2022;135833;EU.7492.48;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Дмитрий Александрович ВИННИКОВ;;M;;;135836;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135833;EU.7492.48;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Dmitry Alexandrovich VINNIKOV;;M;Colonel;Head of the Pinsk border detachment;135837;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135833;EU.7492.48;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Dmitrij Aleksandrovitj VINNIKOV;SV;M;;;135998;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135833;EU.7492.48;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;135834;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135833;EU.7492.48;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;135835;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC +28/10/2022;135838;EU.7493.47;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Пашкевич Александр;;M;;;135840;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135838;EU.7493.47;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksandr PASHKEVICH;;M;;Chief of staff of unit 65408/Luninets airfield;135841;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135838;EU.7493.47;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksandr PASJKEVITJ;SV;M;;;135999;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135838;EU.7493.47;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;135839;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC +28/10/2022;135842;EU.7494.46;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Андрей Лукьянович;;M;;;135844;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135842;EU.7494.46;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Andrei LUKYANOVICH;;M;;Military pilot sniper, Colonel, Deputy Commander of the Air Force and Air Defense Forces - Chief of Aviation of Belarus, Commander of military unit 06752 / Machulischi airfield;135845;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135842;EU.7494.46;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Andrej LUKJANOVITJ;SV;M;;;136000;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135842;EU.7494.46;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;135843;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC +28/10/2022;135846;EU.7495.45;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Кривец Александр;;M;;;135848;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135846;EU.7495.45;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksandr KRIVETS;;M;;Commander of the 116th Guards Assault Aviation Radomskaya Red Banner Base/Lida airfield;135849;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135846;EU.7495.45;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;135847;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC +28/10/2022;135850;EU.7496.44;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Юрий Пыжик;;M;;;135852;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135850;EU.7496.44;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Yuri PYZHIK;;M;;Military pilot sniper, Colonel, Commander of the 61st Fighter Air Base / Baranovichi airfield;135853;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135850;EU.7496.44;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Jurij PYZJIK;SV;M;;;136001;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135850;EU.7496.44;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;135851;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC +28/10/2022;135854;EU.7497.43;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Владимир Николаевич КУПРИЯНЮК;;M;;;135857;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135854;EU.7497.43;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vladimir Nikolaevich KUPRIYANYUK;;M;;Chief of Staff - First Deputy Commander of the Western Operational Command;135858;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135854;EU.7497.43;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vladimir Nikoljaevitj KUPRIJANJUK;SV;M;;;136003;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135854;EU.7497.43;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-07-11;11;7;1972;;;NO;GREGORIAN;;Brest Region/ Oblast;Kamenetsky district;village of Kamenyuki;BY;BELARUS;135855;EN;former USSR \n(now Belarus);amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135854;EU.7497.43;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;135856;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC +28/10/2022;135859;EU.7498.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Андрей Константинович НЕКРАШЕВИЧ;;M;;;135862;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135859;EU.7498.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Andrei Konstantinovich NEKRASHEVICH;;M;Major General;Chief of the Main Directorate of Combat Training of the Armed Forces;135863;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135859;EU.7498.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Andrej Konstantinovitj NEKRASJEVITJ;SV;M;;;136004;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135859;EU.7498.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-01-01;1;1;1968;;;NO;GREGORIAN;;Gomel Oblast;;;BY;BELARUS;135860;EN;former USSR (now Belarus);amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135859;EU.7498.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;135861;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC +28/10/2022;135864;EU.7499.41;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Виктор Владимирович ГУЛЕВИЧ;;M;;;135867;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135864;EU.7499.41;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Viktor Vladimirovich GULEVICH;;M;;Chief of the General Staff of the Belarussian Armed Forces First Deputy Defence Minister of the Republic of Belarus;135868;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135864;EU.7499.41;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Viktor Vladimirovitj GULEVITJ;SV;M;;;136005;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135864;EU.7499.41;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-05-14;14;5;1969;;;NO;GREGORIAN;;Minsk region;Slutsk district;Velyka Pader;BY;BELARUS;135865;EN;former USSR (now Belarus);amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135864;EU.7499.41;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;135866;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC +28/10/2022;135869;EU.7500.47;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Вольфович Александр Григорьевич;;M;;;135871;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135869;EU.7500.47;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Volfovich Aleksandr GRIGORYEVICH;;M;;State Secretary of the Security Council;135872;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135869;EU.7500.47;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Volfovitj Aleksandr GRIGORJEVITJ;SV;M;;;136006;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135869;EU.7500.47;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;135870;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC +28/10/2022;135873;EU.7501.46;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Andrey ZHUK;;M;;Deputy Minister of Defence of Belarus, Major General;135875;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135873;EU.7501.46;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Andrej ZJUK;SV;M;;;136007;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135873;EU.7501.46;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;135874;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC +28/10/2022;135876;EU.7502.45;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergei Dmitrevich SIMONENKO;;M;Major General;Major General, Deputy Minister of Defence for Armament, Chief of Armament;135878;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135876;EU.7502.45;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Dmitrevitj SIMONENKO;SV;M;;;136008;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135876;EU.7502.45;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Сергей Дмитриевич СИМОНЕНКО;;M;;;144025;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135876;EU.7502.45;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-04-02;2;4;1968;;;NO;GREGORIAN;;Mogilyov Region;;Kostyukovichi;BY;BELARUS;135877;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135879;EU.7503.44;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrei Valerianovich BURDYKO;;M;Major General;Deputy Minister of Defence for Logistics, Chief of Logistics;135881;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135879;EU.7503.44;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Valerianovitj BURDYKO;SV;M;;;136009;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135879;EU.7503.44;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Андрей Валерьянович БУРДЫКО;;M;;;144024;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135879;EU.7503.44;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;Minsk region;;Pleshchenitsy;BY;BELARUS;135880;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135882;EU.7504.43;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Николай Михайлович РОГАЩУК;;M;;;135883;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135882;EU.7504.43;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Nikolai Mikhailovich ROGASHCHUK;;M;;the presidential aide to Aliksandr Lukashenka and the inspector for the Gomel region;135884;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135882;EU.7504.43;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Nikolaj Michajlovitj ROGASJTJUK;SV;M;;;136010;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135885;EU.7505.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Вадим Иванович ДЕНИСЕНКО;;M;;;135888;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135885;EU.7505.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vadim Ivanovich DENISENKO;;M;;Major General, Commander of the Special Operations Forces of the Armed Forces;135889;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135885;EU.7505.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vadim Ivanovitj Denisenko;SV;M;;;136011;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135885;EU.7505.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-09-03;3;9;1967;;;NO;GREGORIAN;;;;Budapest;HU;HUNGARY;135886;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135885;EU.7505.42;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;135887;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC +28/10/2022;135890;EU.7506.41;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Александр ЛОЗИЦКИЙ;;M;;;135892;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135890;EU.7506.41;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksandr LOZITSKY;;M;;Lieutenant Colonel, Commander of unit 65408 / Luninets airfield;135893;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135890;EU.7506.41;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksandr LOZITSKIJ;SV;M;;;136012;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135890;EU.7506.41;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;135891;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC +28/10/2022;135894;EU.7507.40;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Игорь Викторович ДЕМИДЕНКО;;M;;;135897;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135894;EU.7507.40;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Igor Viktorovich DEMIDENKO;;M;;Major General Commander of the Western Operational Command;135898;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135894;EU.7507.40;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Igor Viktorovitj DEMIDENKO;SV;M;;;136013;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135894;EU.7507.40;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-02-05;5;2;1971;;;NO;GREGORIAN;;;;Mogilev;BY;BELARUS;135895;EN;former USSR (now Belarus);amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135894;EU.7507.40;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;135896;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC +28/10/2022;135899;EU.7508.39;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Yury Vitoldovich SHULEIKO;;M;;;135902;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135899;EU.7508.39;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHULEYKO;Yuri;Vitoldovich;Yuri Vitoldovich SHULEYKO;;M;;Chairman of the Brest Regional Executive Committee;135903;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135899;EU.7508.39;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jurij Vitoldovitj SJULEJKO;SV;M;;;136014;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135899;EU.7508.39;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Юрий Витольдович ШУЛЕЙКО;;M;;;144023;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135899;EU.7508.39;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;NO;PHONE[(+375 162) 21 23 32];00;UNKNOWN;135900;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135899;EU.7508.39;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;NO;GREGORIAN;;Grodno Oblast;Kozlovshchina in the Dyatlovo District;;BY;BELARUS;135901;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135904;EU.7509.38;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Иван Иванович КРУПКО;;M;;;135907;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135904;EU.7509.38;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Ivan Ivanovich KRUPKO;;M;;Chairman of the Gomel Regional Executive Committee;135908;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135904;EU.7509.38;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Ivan Ivanovitj KRUPKO;SV;M;;;136015;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135904;EU.7509.38;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-07-23;23;7;1974;;;NO;GREGORIAN;;;Korelichi District;village of Burdevichi;BY;BELARUS;135905;EN;former USSR (now Belarus);amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135904;EU.7509.38;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;135906;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC +28/10/2022;135909;EU.7510.16;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Влади́мир Влади́мирович ПУ́ТИН;;M;;;135911;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135909;EU.7510.16;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vladimir Vladimirovich PUTIN;;M;;President of the Russian Federation;135912;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135909;EU.7510.16;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vladimir Vladimirovich POUTINE;FR;M;;;136016;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135909;EU.7510.16;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Vladimir Vladimirovitj PUTIN;SV;M;;;136017;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135909;EU.7510.16;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-10-07;7;10;1952;;;NO;GREGORIAN;;;;Leningrad (now Saint-Petersburg);RU;RUSSIAN FEDERATION;135910;EN;Leningrad (now Saint-Petersburg), ex USSR (now Russian Federation);amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135913;EU.7511.15;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Сергей Викторович ЛАВРОВ;;M;;;135915;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135913;EU.7511.15;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Sergey Viktorovich LAVROV;;M;;Minister of Foreign Affairs of the Russian Federation;135916;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135913;EU.7511.15;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Sergueï Viktorovich LAVROV;FR;M;;;136018;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135913;EU.7511.15;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Sergej Viktorovitj LAVROV;SV;M;;;136019;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;135913;EU.7511.15;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-03-21;21;3;1950;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;135914;EN;ex-USSR (now Russian Federation);amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136043;EU.7512.14;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Игорь Иванович СЕЧИН;;M;;;136045;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136043;EU.7512.14;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Igor Ivanovich SECHIN;;M;;CEO of Rosneft, Russian state oil company and one of the world's largest crude oil producers;136046;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136043;EU.7512.14;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Igor Ivanovič SEČIN;SL;M;;;136202;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136043;EU.7512.14;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Igor Ivanovitj SETJIN;SV;M;;;136203;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136043;EU.7512.14;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-09-07;7;9;1960;;;NO;GREGORIAN;;;;Leningrad;RU;RUSSIAN FEDERATION;136044;EN;USSR (now \nRussian Federation);amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136043;EU.7512.14;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;136180;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC +28/10/2022;136047;EU.7513.13;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Николай Петрович ТОКАРЕВ;;;;;136049;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136047;EU.7513.13;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Nikolay Petrovich TOKAREV;;;;CEO of Transneft, major Russian oil and gas company;136050;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136047;EU.7513.13;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Nikolaj Petrovič TOKAREV;SL;;;;136204;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136047;EU.7513.13;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Nikolaj Petrovitj TOKAREV;SV;;;;136205;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136047;EU.7513.13;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-12-20;20;12;1950;;;NO;GREGORIAN;;;;Karaganda;KZ;KAZAKHSTAN;136048;EN;Kazakh \nSSR (now Kazakhstan);amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136051;EU.7514.12;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;USMONOV;Alisher;;Alisher USMONOV;UZ;M;;;136053;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136051;EU.7514.12;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;УСМАНОВ;Алишер;Бурханович;Алишер Бурханович УСМАНОВ;RU;M;;;136054;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136051;EU.7514.12;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;USMANOV;Alisher;;Alisher USMANOV;;M;;Russian oligarch;136055;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136051;EU.7514.12;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Alisjer USMANOV;SV;;;;136207;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136051;EU.7514.12;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-09-09;9;9;1953;;;NO;GREGORIAN;;;;Chust;UZ;UZBEKISTAN;136052;EN;Chust, Uzbek SSR, USSR (now Uzbekistan);amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136051;EU.7514.12;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55 0314316 (passport-National passport) (valid from 2019-12-06 to 2029-12-06);NO;NO;NO;NO;NO;;;2019-12-06;2029-12-06;;;passport;National passport;;RU;;142320;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;; +28/10/2022;136056;EU.7515.11;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Пëтр Олегович АВЕН;;M;;;136058;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136056;EU.7515.11;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Petr Olegovich AVEN;;M;;Oligarch close to Vladimir Putin. One of the main shareholders of the Alfa Group;136059;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136056;EU.7515.11;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Pjotr Olegovič AVEN;SL;M;;;136208;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136056;EU.7515.11;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-03-16;16;3;1955;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;136057;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136060;EU.7516.10;;2022-02-28;;(Date of UN designation: 2022-02-28)\n(Corrigendum 2022/336 (OJ L58) [corr. 02/03/2022-1]);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Михаи́л Мара́тович ФРИ́ДМАН;;M;;;136062;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136060;EU.7516.10;;2022-02-28;;(Date of UN designation: 2022-02-28)\n(Corrigendum 2022/336 (OJ L58) [corr. 02/03/2022-1]);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Mikhail Maratovich FRIDMAN;;M;;founder and one of the main shareholders of the Alfa Group, which includes major Russian bank Alfa Bank;136063;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136060;EU.7516.10;;2022-02-28;;(Date of UN designation: 2022-02-28)\n(Corrigendum 2022/336 (OJ L58) [corr. 02/03/2022-1]);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Mihail Maratovič Fridman;SL;M;;;136209;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136060;EU.7516.10;;2022-02-28;;(Date of UN designation: 2022-02-28)\n(Corrigendum 2022/336 (OJ L58) [corr. 02/03/2022-1]);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Michail Maratovitj FRIDMAN;SV;M;;;136210;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136060;EU.7516.10;;2022-02-28;;(Date of UN designation: 2022-02-28)\n(Corrigendum 2022/336 (OJ L58) [corr. 02/03/2022-1]);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-04-21;21;4;1964;;;NO;GREGORIAN;;;;Lviv;UA;UKRAINE;136061;EN;Ukrainian SSR, (now Ukraine);amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136064;EU.7517.9;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;РОЛДУГИН;Сергей;Павлович;Сергей Павлович РОЛДУГИН;RU;M;;;136066;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136064;EU.7517.9;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ROLDUGIN;Sergei;Pavlovich;Sergei Pavlovich ROLDUGIN;;M;;"Cellist; businessman, close friend of Vladimir Putin";136067;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136064;EU.7517.9;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Pavlovitj ROLDUGIN;SV;;;;136212;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136064;EU.7517.9;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-09-28;28;9;1951;;;NO;GREGORIAN;;Sakhalin Oblast;;;RU;RUSSIAN FEDERATION;136065;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136072;EU.7519.7;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Дмитрий Сергеевич ПЕСКОВ;;M;;;136074;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136072;EU.7519.7;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Dmitry Sergeyevich PESKOV;;M;;press secretary of president Putin;136075;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136072;EU.7519.7;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Dmitrij Sergejevič Peskov;SL;M;;;136213;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136072;EU.7519.7;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Dmitrij Sergejevitj PESKOV;SV;M;;;136214;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136072;EU.7519.7;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-10-17;17;10;1967;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;136073;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136080;EU.7521.81;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Дмитрий Николаевич ЧЕРНЫШЕНКО;;M;;;136082;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136080;EU.7521.81;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Dmitry Nikolaevich CHERNYSHENKO;;M;;"Deputy Prime Minister of Russia for Tourism, Sport, Culture and Communications; Member of the Board of Directors of Russian Railways";136083;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136080;EU.7521.81;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Dmitrij Nikolajevič Černišenko;SL;M;;;136215;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136080;EU.7521.81;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Dmitrij Nikolajevitj TJERNYSJENKO;SV;M;;;136216;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136080;EU.7521.81;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-09-20;20;9;1968;;;NO;GREGORIAN;;;;Saratov;RU;RUSSIAN FEDERATION;136081;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136084;EU.7522.80;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Ирек Энварович ФАЙЗУЛЛИН;;M;;;136086;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136084;EU.7522.80;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Irek Envarovich FAIZULLIN;;M;;"Member of the Board of Directors of the Russian Railways; Minister of Construction and Housing of the Russian Federation";136087;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136084;EU.7522.80;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Irek Envarovič Faizulin;SL;M;;;136217;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136084;EU.7522.80;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Irek Envarovitj FAJZULLIN;SV;M;;;136218;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136084;EU.7522.80;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-12-08;8;12;1962;;;NO;GREGORIAN;;;;Kazan;RU;RUSSIAN FEDERATION;136085;EN;USSR, Now \nRussian Federation;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136088;EU.7523.79;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;САВЕЛЬЕВ;Виталий;Геннадьевич;Виталий Геннадьевич САВЕЛЬЕВ;RU;M;;;136090;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136088;EU.7523.79;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SAVELYEV;Vitaly;Gennadyevich;Vitaly Gennadyevich SAVELYEV;;M;;Member of the Board of Directors of the Russian Railways. Minister of Transport of Russia since 2020, former CEO of Aeroflot;136091;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136088;EU.7523.79;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vitalij Gennadjevitj SAVELJEV;SV;;;;136220;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136088;EU.7523.79;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-01-18;18;1;1954;;;NO;GREGORIAN;;;;Tashkent;UZ;UZBEKISTAN;136089;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136092;EU.7524.78;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТУРЧАК;Андрей;Анатольевич;Андрей Анатольевич ТУРЧАК;RU;M;;;136094;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136092;EU.7524.78;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TURCHAK;Andrey;Anatolyevich;Andrey Anatolyevich TURCHAK;;M;;"Secretary of the general council of the United Russia party; First deputy speaker of the Federation Council.";136095;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136092;EU.7524.78;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Anatoljevitj TURTJAK;SV;;;;136222;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136092;EU.7524.78;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-12-20;20;12;1975;;;NO;GREGORIAN;;;;Leningrad;RU;RUSSIAN FEDERATION;136093;EN;Leningrad, USSR (now St Petersburg, Russian Federation);amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136096;EU.7525.77;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КЕОСАЯН;Тигран;Эдмондович;Тигран Эдмондович КЕОСАЯН;RU;M;;;136098;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136096;EU.7525.77;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KEOSAYAN;Tigran;Edmondovich;Tigran Edmondovich KEOSAYAN;;M;;"Actor and director, host of the propagandist TV show on political affairs on NTV channel, called ""International Sawmill with Tigran Keosayan"".";136099;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136096;EU.7525.77;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Tigran Edmondovitj KEOSAJAN;SV;;;;136224;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136096;EU.7525.77;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-01-04;4;1;1966;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;136097;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136100;EU.7526.76;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Ольга Владимировна СКАБЕЕВА;;F;;;136102;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136100;EU.7526.76;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Olga Vladimirovna SKABEYEVA;;F;;"Co-founder and editor-in-chief of the REGNUM portal; Journalist of the state-owned TV Rossiya-1, leading a political talk-show ""60 minutes"" (together with her husband Yevgeniy Popov) – the most popular talk-show in Russia";136103;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136100;EU.7526.76;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Olga Vladimirovna Skabejeva;SL;F;;;136225;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136100;EU.7526.76;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Olga Vladimirovna SKABEJEVA;SV;F;;;136226;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136100;EU.7526.76;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-12-11;11;12;1984;;;NO;GREGORIAN;;;;Volzhsky;RU;RUSSIAN FEDERATION;136101;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136104;EU.7527.75;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Модест Алексеевич КОЛЕРОВ;;M;;;136106;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136104;EU.7527.75;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Modest Alexeyevich KOLEROV;;M;;Co-founder and editor-in-chief of the REGNUM portal, which specializes in the post-Soviet area. From 2005 to 2007 he worked in the Presidential Administration.;136107;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136104;EU.7527.75;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Modest Aleksejevič Kolerov;SL;M;;;136228;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136104;EU.7527.75;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Modest Aleksejevitj KOLEROV;SV;M;;;136229;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136104;EU.7527.75;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-04-12;12;4;1963;;;NO;GREGORIAN;;;;Kimovsk;RU;RUSSIAN FEDERATION;136105;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136108;EU.7528.74;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Роман Георгиевич БАБАЯН;;M;;;136110;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136108;EU.7528.74;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Roman Georgievich BABAYAN;;M;;"Journalist, host of the ""Own Truth"" TV show on NTV channel and ""Right of Voice"" on TV Cent. He is also editor-in-chief of ""Moscow Speaks"" radio. He is also member of Moscow City Duma.";136111;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136108;EU.7528.74;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Roman Georgijevič Babajan;SL;M;;;136230;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136108;EU.7528.74;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-12-07;7;12;1967;;;NO;GREGORIAN;;;;Baku;AZ;AZERBAIJAN;136109;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136112;EU.7529.73;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛАВЛИНСКИЙ;Евгений;;Евгений ЛАВЛИНСКИЙ;RU;M;;;136114;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136112;EU.7529.73;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LAVLINSKIY;Yevgeniy;;Yevgeniy LAVLINSKIY;;M;;;136115;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136112;EU.7529.73;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПРИЛЕПИН;Захар;;Захар ПРИЛЕПИН;RU;M;;;136116;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136112;EU.7529.73;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PRILEPIN;Zakhar;;Zakhar PRILEPIN;;M;;;136117;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136112;EU.7529.73;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПРИЛЕПИН;Евгений;Николаевич;Евгений Николаевич ПРИЛЕПИН;RU;M;;;136118;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136112;EU.7529.73;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PRILEPIN;Yevgeniy;Nikolaevich;Yevgeniy Nikolaevich PRILEPIN;;M;;Journalist, writer, co-chairman of “A Just Russia – Patriots – For Truth” party, activist;136119;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136112;EU.7529.73;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jevgenij LAVLINSKIJ;SV;;;;143979;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136112;EU.7529.73;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Zachar PRILEPIN;SV;;;;144020;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136112;EU.7529.73;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jevgenij Nikolajevitj PRILEPIN;SV;;;;144021;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136112;EU.7529.73;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-07-07;7;7;1975;;;NO;GREGORIAN;;;;Il’inka;RU;RUSSIAN FEDERATION;136113;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136120;EU.7530.51;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КРАСОВСКИЙ;Антон;Вячеславович;Антон Вячеславович КРАСОВСКИЙ;RU;M;;;136122;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136120;EU.7530.51;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KUZNETSOV-KRASOVSKY;Anton;Vyacheslavovich;Anton Vyacheslavovich KUZNETSOV-KRASOVSKY;;M;;;136123;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136120;EU.7530.51;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КУЗНЕЦОВ-КРАСОВСКИЙ;Антон;Вячеславович;Антон Вячеславович КУЗНЕЦОВ-КРАСОВСКИЙ;RU;M;;;136124;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136120;EU.7530.51;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KRASOVSKY;Anton;Vyacheslavovich;Anton Vyacheslavovich KRASOVSKY;;M;;"Activist, journalist, political scientist, host of a talk show named ""The Antonyms"" on RT, Russian state-funded TV channel";136125;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136120;EU.7530.51;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anton Vjatjeslavovitj KUZNETSOV-KRASOVSKIJ;SV;;;;143977;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136120;EU.7530.51;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anton Vjatjeslavovitj KRASOVSKIJ;SV;;;;143978;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136120;EU.7530.51;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-07-18;18;7;1975;;;NO;GREGORIAN;;;;Podolsk;RU;RUSSIAN FEDERATION;136121;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136126;EU.7531.50;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МАМОНТОВ;Аркадий;Викторович;Аркадий Викторович МАМОНТОВ;RU;M;;;136128;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136126;EU.7531.50;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MAMONTOV;Arkady;Viktorovich;Arkady Viktorovich MAMONTOV;;M;;"TV journalist and TV presenter, host of the TV show ""Author's Program of Arkady Mamontov"" on Rossiya-1 TV channel, author of documentary movies.";136129;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136126;EU.7531.50;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Arkadij Viktorovič Mamontov;SL;;;;136233;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136126;EU.7531.50;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-05-26;26;5;1962;;;NO;GREGORIAN;;;;Novosibirsk;RU;RUSSIAN FEDERATION;136127;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136130;EU.7532.49;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПИНЧУК;Сергей;Михайлович;Сергей Михайлович ПИНЧУК;RU;M;;;136132;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136130;EU.7532.49;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PINCHUK;Sergei;Mikhailovich;Sergei Mikhailovich PINCHUK;;M;Vice-admiral;First Deputy Commander-in-Chief of the Black Sea Fleet;136133;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136130;EU.7532.49;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Michajlovitj PINTJUK;SV;;;;136235;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136130;EU.7532.49;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-07-26;26;7;1971;;;NO;GREGORIAN;;;;Sevastopol;UA;UKRAINE;136131;EN;Ukrainian \nSSR, (now Ukraine);amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136134;EU.7533.48;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АВДЕЕВ;Алексей;Юрьевич;Алексей Юрьевич АВДЕЕВ;RU;M;;;136136;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136134;EU.7533.48;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;AVDEEV;Alexey;Yurevich;Alexey Yurevich AVDEEV;;M;Lieutenant General;Deputy Commander of the Southern Military District;136137;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136134;EU.7533.48;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Jurjevitj AVDEEV;SV;M;;;136237;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136134;EU.7533.48;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-05-17;17;5;1967;;;NO;GREGORIAN;;;;Tashkent;UZ;UZBEKISTAN;136135;EN;USSR (now \nUzbekistan);amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136138;EU.7534.47;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Рустам Усманович МУРАДОВ;;M;;;136140;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136138;EU.7534.47;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Rustam Usmanovich MURADOV;;M;;Lieutenant General, Deputy commander of the Southern Military District;136141;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136138;EU.7534.47;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Rustam Usmanovič Muradov;SL;M;;;136238;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136138;EU.7534.47;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Rustam Usmanovitj MURADOV;SV;M;;;136239;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136138;EU.7534.47;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-03-21;21;3;1973;;;NO;GREGORIAN;;;;Dagestan;RU;RUSSIAN FEDERATION;136139;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136142;EU.7535.46;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СЫЧЕВОЙ;Андрей;Иванович;Андрей Иванович СЫЧЕВОЙ;RU;M;;;136144;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136142;EU.7535.46;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SYCHEVOY;Andrey;Ivanovich;Andrey Ivanovich SYCHEVOY;;M;Lieutenant General;Commander of the 8th Guards Combined Arms Army of the Southern Military District;136145;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136142;EU.7535.46;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Ivanovitj SYTJEVOJ;SV;M;;;136241;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136142;EU.7535.46;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-05-16;16;5;1969;;;NO;GREGORIAN;;;Krymsky District, Krasnodar Territory;village of Troitskaya;RU;RUSSIAN FEDERATION;136143;EN;USSR;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136146;EU.7536.45;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Геннадий Николаевич ТИМЧЕНКО;;M;;;136151;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136146;EU.7536.45;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Gennady Nikolayevich TIMCHENKO;;M;;Owner of the private investment group Volga Group;136152;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136146;EU.7536.45;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Genadij Nikolajevič TIMČENKO;SL;M;;;136242;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136146;EU.7536.45;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Gennadij Nikolajevitj TIMTJENKO;SV;M;;;136243;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136146;EU.7536.45;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-11-09;9;11;1952;;;NO;GREGORIAN;;;;Leninakan;AM;ARMENIA;136147;EN;Sovjet Union (now: Gyumri, Armenia);amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136146;EU.7536.45;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;FI;;136148;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC +28/10/2022;136146;EU.7536.45;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;136149;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC +28/10/2022;136146;EU.7536.45;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AM;;136150;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC +28/10/2022;136153;EU.7537.44;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Алексей Александрович МОРДАШОВ;;M;;;136156;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136153;EU.7537.44;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Alexey Alexandrovits MORDASCHOV;;M;;Chairman of Severstal and Severgroup;136157;EN;"Associates: Yuriy KOVALCHUK; Nikolay SHAMALOV";amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136153;EU.7537.44;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Aleksej Aleksandovic MORDAŠOV;SL;M;;;136244;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136153;EU.7537.44;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Aleksej Aleksandrovits MORDASJOV;SV;M;;;136245;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136153;EU.7537.44;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-09-26;26;9;1965;;;NO;GREGORIAN;;;;Cherepovets;RU;RUSSIAN FEDERATION;136154;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136153;EU.7537.44;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;136155;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC +28/10/2022;136166;EU.7540.20;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Петр Михайлович ФРАДКОВ;;M;;;136168;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136166;EU.7540.20;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Peter Mikhaylovich FRADKOV;;M;;Chairman of the PJSC Promsvyazbank;136169;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136166;EU.7540.20;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Pjotr Mihajlovič FRADKOV;SL;M;;;136246;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136166;EU.7540.20;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Peter Michajlovitj FRADKOV;SV;M;;;136247;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136166;EU.7540.20;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-02-07;7;2;1978;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;136167;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136170;EU.7541.19;;2022-02-28;;(Date of UN designation: 2022-02-28);E;enterprise;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Акционерное общество «Страховое общество газовой промышленности» АО «СОГАЗ»;;;;;136172;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136170;EU.7541.19;;2022-02-28;;(Date of UN designation: 2022-02-28);E;enterprise;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Gas Industry Insurance Company SOGAZ;;;;;136173;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136170;EU.7541.19;;2022-02-28;;(Date of UN designation: 2022-02-28);E;enterprise;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Akciová společnost „Gas Industry Insurance Company SOGAZ“;CS;;;;136248;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136170;EU.7541.19;;2022-02-28;;(Date of UN designation: 2022-02-28);E;enterprise;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Compañía de Seguros de la Industria del Gas SOGAZ;ES;;;;136249;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136170;EU.7541.19;;2022-02-28;;(Date of UN designation: 2022-02-28);E;enterprise;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Compagnie d’assurance de l’industrie du gaz SOGAZ;FR;;;;136250;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136170;EU.7541.19;;2022-02-28;;(Date of UN designation: 2022-02-28);E;enterprise;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Przedsiębiorstwo ubezpieczeniowe przemysłu gazowego SOGAZ;PL;;;;136251;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136170;EU.7541.19;;2022-02-28;;(Date of UN designation: 2022-02-28);E;enterprise;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;Compania de asigurări a industriei gazului SOGAZ;RO;;;;136252;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136170;EU.7541.19;;2022-02-28;;(Date of UN designation: 2022-02-28);E;enterprise;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;Sakharov boulevard 10;;107078;;;NO;"WEB[https://sogaz.ru]\nPHONE[+7 8(495) 234-44-24; +7 8 800 333 0 888 ]\nEMAIL[sogaz@sogaz.ru ; cf@sogaz.ru ]";RU;RUSSIAN FEDERATION;136171;EN;;amendment;council;2022-02-28;2022-02-28;2022/336 (OJ L58);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.058.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A058%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136181;EU.7542.18;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПОНОМАРEНКО;Алексaндр;Анатольевич;Алексaндр Анатольевич ПОНОМАРEНКО;RU;M;;;136183;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136181;EU.7542.18;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PONOMARENKO;Alexander;;Alexander PONOMARENKO;;M;;Russian oligarch, Chairman of the Board of Sheremetyevo International Airport;136184;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136181;EU.7542.18;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Anatoljevitj PONOMARENKO;SV;;;;144022;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136181;EU.7542.18;;2022-02-28;;(Date of UN designation: 2022-02-28);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-10-27;27;10;1964;;;NO;GREGORIAN;;;;Bilohirsk;UA;UKRAINE;136182;EN;Ukrainian SSR;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136270;EU.7553.83;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Леанiд Вiктаравiч КАСIНСКI;BE;M;;;136273;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136270;EU.7553.83;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Леонид Викторович КАСИНСКИЙ;RU;M;;;136274;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136270;EU.7553.83;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Leonid Viktorovich KASINSKY;EN;M;;Major General, Assistant to the Minister of Defence for Ideological Work in the Armed Forces and Head of the Main Directorate for Ideological Work in the Belarusian Ministry of Defence.;136275;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136270;EU.7553.83;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Leanid Viktaravitj Kasinski;SV;M;;;136403;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136270;EU.7553.83;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Leonid Viktorovitj Kasinskij;SV;M;;;136404;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136270;EU.7553.83;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-06-29;29;6;1972;;;NO;GREGORIAN;;;;Grodno;BY;BELARUS;136271;EN;Belarusian \nSSR, now Belarus;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136270;EU.7553.83;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136272;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136276;EU.7554.82;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Ігар Уладзіміравіч МАЖЫЛОЎСКІ;BE;M;;;136279;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136276;EU.7554.82;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Игорь Владимирович МОЖИЛОВСКИЙ;RU;M;;;136280;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136276;EU.7554.82;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Igor Vladimirovich MOZHILOVSKY;;M;;Major General, \nAssistant to the Minister of \nDefence for Military Economy \nand Finance and a Head of the \nMain Financial and Economic \nDepartment of the Ministry of \nDefence;136281;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136276;EU.7554.82;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Ihar Uladzimiravitj Mazjylouski;SV;M;;;136405;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136276;EU.7554.82;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Igor Vladimirovitj Mozjilovskij;SV;M;;;136406;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136276;EU.7554.82;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-02-28;28;2;1971;;;NO;GREGORIAN;;;;Dubrovno;BY;BELARUS;136277;EN;Belarusian \nSSR, now Belarus;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136276;EU.7554.82;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136278;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136282;EU.7555.81;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Алег Леанідавіч ВОІНАЎ;BE;M;;;136285;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136282;EU.7555.81;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Олег Леонидович ВОИНОВ;RU;M;;;136286;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136282;EU.7555.81;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Oleg Leonidovich VOINOV;;M;;Major General, \nHead of the International \nMilitary Cooperation \nDepartment of the Belarusian \nMinistry of Defence and an \nAssistant to the Minister of \nDefence for International \nMilitary Cooperation;136287;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136282;EU.7555.81;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Aleh Leanidavitj Voinau;SV;M;;;136407;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136282;EU.7555.81;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Oleg Leonidovitj Voinov;SV;M;;;136408;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136282;EU.7555.81;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-03-26;26;3;1967;;;NO;GREGORIAN;;;Dnipro;Dnepropetrovsk;UA;UKRAINE;136283;EN;Ukrainian SSR, now Dnipro, \nUkraine;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136282;EU.7555.81;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136284;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136288;EU.7556.80;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Сяргей Анатольевіч САЎТА;BE;M;;;136289;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136288;EU.7556.80;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Сергей Анатольевич САУТА;RU;M;;;136290;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136288;EU.7556.80;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Sergei Anatolievich SAUTA;EN;M;;Colonel, Head of the Department of Legal Support of the Ministry of Defence of the Republic of Belarus;136291;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136288;EU.7556.80;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Siarhej Anatoljevitj Sauta;SV;M;;;136409;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136288;EU.7556.80;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Sergej Anatoljevitj Sauta;SV;M;;;136410;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136288;EU.7556.80;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136292;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136305;EU.7559.77;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БАГУСЛАЎСКІ;Іван;Іосіфавіч;Іван Іосіфавіч БАГУСЛАЎСКІ;BE;M;;;136308;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136305;EU.7559.77;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БОГУСЛАВСКИЙ;Иван;Иосифович;Иван Иосифович БОГУСЛАВСКИЙ;RU;M;;;136309;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136305;EU.7559.77;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BOGUSLAVSKY;Ivan;Josephovich;Ivan Josephovich BOGUSLAVSKY;EN;M;Major General;Head of the Chief Military Inspectorate of the Armed Forces in the Belarusian Ministry of Defence;136310;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136305;EU.7559.77;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ivan Iosifavitj Bahuslauski;SV;M;;;136411;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136305;EU.7559.77;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ivan Iosifovitj Boguslavskij;SV;M;;;136412;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136305;EU.7559.77;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-08-04;4;8;1968;;;NO;GREGORIAN;;;;Kalivaria;BY;BELARUS;136306;EN;Belarusian SSR;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136305;EU.7559.77;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136307;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136311;EU.7560.55;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МІХАЛАП;Дзмітрый;Анатольевіч;Дзмітрый Анатольевіч МІХАЛАП;BE;M;;;136314;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136311;EU.7560.55;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МИХОЛАП;Дмитрий;Анатольевич;Дмитрий Анатольевич МИХОЛАП;RU;M;;;136315;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136311;EU.7560.55;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MIHOLAP;Dmitry;Anatolievich;Dmitry Anatolievich MIHOLAP;;M;Colonel;Deputy commander of the Belarusian Air Force and Air Defence Forces;136316;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136311;EU.7560.55;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dzmitryj Anatoljevitj Michalap;SV;M;;;136413;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136311;EU.7560.55;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Anatoljevitj Micholap;SV;M;;;136414;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136311;EU.7560.55;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-12-28;28;12;1974;;;NO;GREGORIAN;;;;Bukino;BY;BELARUS;136312;EN;Belarusian SSR;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136311;EU.7560.55;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136313;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136317;EU.7561.54;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Анатоль Анатольевіч БУЛАЎКА;BE;M;;;136320;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136317;EU.7561.54;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Анатолий Анатольевич БУЛАВКО;RU;M;;;136321;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136317;EU.7561.54;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Anatoliy Anatolievich BULAVKO;EN;M;;Colonel, deputy commander for ideological work and a head of ideological work of the Belarusian Air Force and Air Defence Forces;136322;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136317;EU.7561.54;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Anatol Anatoljevitj Bulauka;SV;M;;;136415;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136317;EU.7561.54;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Anatolj Anatoljevitj Bulavko;SV;M;;;136416;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136317;EU.7561.54;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-05-01;1;5;1969;;;NO;GREGORIAN;;;;Kalinkovichi;BY;BELARUS;136318;EN;Belarusian SSR, now Belarus;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136317;EU.7561.54;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136319;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136323;EU.7562.53;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СОЙКА;Віктар;Уладзіміравіч;Віктар Уладзіміравіч СОЙКА;BE;M;;;136326;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136323;EU.7562.53;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СОЙКО;Виктор;Владимирович;Виктор Владимирович СОЙКО;RU;M;;;136327;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136323;EU.7562.53;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SOYKO;Victor;Vladimirovich;Victor Vladimirovich SOYKO;EN;M;Colonel;Deputy Commander for Armaments and Head of the Belarusian Air Force and Air Defence Forces Armament Department;136328;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136323;EU.7562.53;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktar Uladzimiravitj Sojka;SV;M;;;136417;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136323;EU.7562.53;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Vladimirovitj Sojko;SV;M;;;136418;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136323;EU.7562.53;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-07-03;3;7;1971;;;NO;GREGORIAN;;;;Komsomolskaya;BY;BELARUS;136324;EN;Belarusian SSR;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136323;EU.7562.53;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136325;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136329;EU.7563.52;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Юрый Міхайлавіч ПЕЙГАНОВІЧ;BE;M;;;136331;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136329;EU.7563.52;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Юрий Михайлович ПЕЙГАНОВИЧ;RU;M;;;136332;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136329;EU.7563.52;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Yuri Mikhailovich PEYGANOVICH;EN;M;;Colonel, Deputy Commander of the Belarusian Air Force and Air Defence Forces for Logistics and a Head of Department;136333;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136329;EU.7563.52;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Juryj Michajlavitj Pejhanovitj;SV;M;;;136419;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136329;EU.7563.52;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Jurij Michajlovitj Pejganovitj;SV;M;;;136420;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136329;EU.7563.52;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136330;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136340;EU.7565.50;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Аляксандр Іванавіч БАС;BE;M;;;136343;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136340;EU.7565.50;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Александр Иванович БАС;RU;M;;;136344;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136340;EU.7565.50;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Alexander Ivanovich BAS;EN;M;;Colonel, Deputy Commander of the Belarusian Western Operational Command;136345;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136340;EU.7565.50;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Aljaksandr Ivanavitj Bas;SV;M;;;136421;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136340;EU.7565.50;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Aleksandr Ivanovitj Bas;SV;M;;;136422;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136340;EU.7565.50;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-08-17;17;8;1971;;;NO;GREGORIAN;;;;Khotomel;BY;BELARUS;136341;EN;Belarusian SSR, now Belarus;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136340;EU.7565.50;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136342;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136346;EU.7566.49;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Дмитрий Леонтьевич БЕКРЕНЬ;RU;M;;;136349;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136346;EU.7566.49;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Dmitry Leontievich BEKREN;EN;M;;Deputy Commander of the Army for Ideology, Head of the Ideology Department of the Western Operational Command of Belarus, Colonel;136350;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136346;EU.7566.49;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Dmitrij Leontievitj Bekren;SV;M;;;136423;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136346;EU.7566.49;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-07-16;16;7;1979;;;NO;GREGORIAN;;;;Slonim;BY;BELARUS;136347;EN;Belarusian SFSR, now Belarus;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136346;EU.7566.49;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136348;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136351;EU.7567.48;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Виталий Фридрихович КИЛЬЧЕВСКИЙ;RU;M;;;136354;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136351;EU.7567.48;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Vitaly Fridrikhovich KILCHEVSKY;EN;M;;Deputy Commander for Armaments and a Head of Armaments, Colonel;136355;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136351;EU.7567.48;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Vitalij Fridrichovitj Kiltjevskij;SV;M;;;136424;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136351;EU.7567.48;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-10-31;31;10;1978;;;NO;GREGORIAN;;;;Patashnya village;BY;BELARUS;136352;EN;Belarusian SFSR, now Belarus;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136351;EU.7567.48;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136353;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136356;EU.7568.47;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Сергей Николаевич ГРИНЮК;RU;M;;;136359;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136356;EU.7568.47;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Sergey Nikolayevich GRINYUK;EN;M;;Deputy Commander of Troops for Logistics, Head of Logistics Department, Western Operational Command of Belarus, Colonel;136360;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136356;EU.7568.47;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Sergej Nikolajevitj Grinjuk;SV;M;;;136425;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136356;EU.7568.47;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-05-11;11;5;1971;;;NO;GREGORIAN;;;;in Brest;BY;BELARUS;136357;EN;Belarusian SFSR, now Belarus;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136356;EU.7568.47;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136358;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136361;EU.7569.46;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Александр Викторович НАУМЕНКО;RU;M;;;136363;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136361;EU.7569.46;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Aleksandr Viktorovich NAUMENKO;EN;M;;Commander of the Troops of the North-Western Operational Command of Belarus, Major-General;136364;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136361;EU.7569.46;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Aleksandr Viktorovitj Naumenko;SV;M;;;136426;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136361;EU.7569.46;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136362;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136365;EU.7570.24;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Владимир Владимирович КУЛАЖИН;RU;;;;136367;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136365;EU.7570.24;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Vladimir Vladimirovich KULAZHIN;;M;;Deputy Commander of the Troops of the North-Western Operational Command of Belarus, Major General;136368;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136365;EU.7570.24;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Vladimir Vladimirovitj Kulazjin;SV;;;;136427;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136365;EU.7570.24;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136366;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136369;EU.7571.23;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Valery Ivanovich YANUSHKEVICH;EN;M;;Deputy Troops Commander for Ideological Work – Head of the Ideological Work Department of the North-Western Operational Command of Belarus, Colonel;136371;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136369;EU.7571.23;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Валерий Иванович ЯНУШКЕВИЧ;RU;M;;;136372;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136369;EU.7571.23;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Valerij Ivanovitj Janusjkevitj;SV;M;;;136428;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136369;EU.7571.23;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136370;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136373;EU.7572.22;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Вячеслав Александрович ЛЕНКЕВИЧ;RU;M;;;136375;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136373;EU.7572.22;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Vyacheslav Aleksandrovich LENKEVICH;;M;;Deputy Commander in Charge of Logistics, Head of Logistics of the North-Western Operational Command of Belarus, Colonel;136376;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136373;EU.7572.22;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Vjatjeslav Aleksandrovitj Lenkevitj;SV;M;;;136429;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136373;EU.7572.22;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136374;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136377;EU.7573.21;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Дмитрий Иванович СУРОВИЧ;RU;M;;;136379;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136377;EU.7573.21;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Dmitri Ivanovich SUROVICH;;M;;Deputy Commander for Armaments, Head of Armaments Directorate of North-Western Operational Command of Belarus, Colonel;136380;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136377;EU.7573.21;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Dmitrij Ivanovitj Surovitj;SV;M;;;136430;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136377;EU.7573.21;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136378;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136381;EU.7574.20;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Олег Николаевич КОПЫЛ;RU;M;;;136383;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136381;EU.7574.20;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Oleg Nikolayevich KOPYL;;M;;"Colonel; the First Deputy Head of the Main Department – Head of the Department of Moral and Psychological Support of the Main Department of Ideological Work of the Ministry of Defence of Belarus";136384;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136381;EU.7574.20;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Oleg Nikolajevitj Kopyl;SV;M;;;136431;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136381;EU.7574.20;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136382;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136385;EU.7575.19;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Дмитрий Александрович ЗАБРОЦКИ;RU;M;;;136387;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136385;EU.7575.19;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Dmitry Alexandrovich ZABROTSKY;;M;;Colonel, First Deputy Head of the Main Financial and Economic Department of the Ministry of Defence of Belarus;136388;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136385;EU.7575.19;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Dmitrij Aleksandrovitj Zabrotski;SV;M;;;136432;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136385;EU.7575.19;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-07-02;2;7;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;136386;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136389;EU.7576.18;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Вадим Анатольевич ЛУКАШЕВИЧ;RU;M;;;136390;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136389;EU.7576.18;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Vadim Anatolyevich LUKASHEVICH;;M;;Head of the information department of the main department of ideological work of the Ministry of Defence of Belarus, Colonel;136391;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136389;EU.7576.18;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Vadim Anatoljevitj Lukasjevitj;SV;M;;;136433;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136434;EU.7592.57;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Vadim Jevgenjevitj Sjadura;SV;M;;;136436;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136434;EU.7592.57;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Вадим Евгеньевич ШАДУРА;RU;M;;;136437;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136434;EU.7592.57;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;Vadim Evgenievich SHADURA;;M;;Chief of Staff – First Deputy Commander of the Troops of the North-Western Operational Command of Belarus, Colonel;136438;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136434;EU.7592.57;;2022-03-02;;(Date of UN designation: 2022-03-02);P;person;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;136435;EN;;amendment;council;2022-03-02;2022-03-02;2022/353 (OJ L66);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.066.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A066%3ATOC +28/10/2022;136449;EU.7593.56;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Svetlana Jevgenjevna SAVITSKAJA;SV;F;;;136451;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136449;EU.7593.56;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Светлана Евгеньевна Савицкая;;F;;;136452;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136449;EU.7593.56;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Svetlana Yevgenyevna SAVITSKAYA;;F;;Member of the State Duma;136453;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136449;EU.7593.56;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-08-08;8;8;1948;;;NO;GREGORIAN;;;;;00;UNKNOWN;136450;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136454;EU.7594.55;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Veronika Valerijevna VLASOVA;SV;F;;;136456;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136454;EU.7594.55;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Вероника Валериевна Власова;;F;;;136457;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136454;EU.7594.55;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Veronika Valeriyevna VLASOVA;;F;;Member of the State Duma;136458;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136454;EU.7594.55;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-11-02;2;11;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;136455;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136506;EU.7612.23;QDe.168;2022-03-07;;(UN ID: QDe.168)\n(Date of UN designation: 2022-03-07)\n(The group mainly operates in the provinces of Hama, Idlib and Ladhiqiyah, in the Syrian Arab Republic, and also conduct operations in Turkey, Kyrgyzstan, Uzbekistan, Russian Federation, Tajikistan, Kazakhstan, Egypt, Afghanistan, Ukraine. The number of fighters of KTJ is about 500. KTJ also cooperates with such terrorist organizations as Khatiba Imam al-Bukhari (QDe.158) and the Islamic Jihad Group. \nUNLI - 07.03.2022);E;enterprise;amendment;commission;2022-03-14;2022-03-14;2022/413 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.085.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A085%3ATOC;;;;JANNAT OSHIKLARI;;;;;137644;EN;formerly known as;amendment;commission;2022-03-14;2022-03-14;2022/413 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.085.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A085%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136506;EU.7612.23;QDe.168;2022-03-07;;(UN ID: QDe.168)\n(Date of UN designation: 2022-03-07)\n(The group mainly operates in the provinces of Hama, Idlib and Ladhiqiyah, in the Syrian Arab Republic, and also conduct operations in Turkey, Kyrgyzstan, Uzbekistan, Russian Federation, Tajikistan, Kazakhstan, Egypt, Afghanistan, Ukraine. The number of fighters of KTJ is about 500. KTJ also cooperates with such terrorist organizations as Khatiba Imam al-Bukhari (QDe.158) and the Islamic Jihad Group. \nUNLI - 07.03.2022);E;enterprise;amendment;commission;2022-03-14;2022-03-14;2022/413 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.085.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A085%3ATOC;;;;Jama`at al-Tawhid wal-Jihad;;;;;137645;EN;;amendment;commission;2022-03-14;2022-03-14;2022/413 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.085.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A085%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136506;EU.7612.23;QDe.168;2022-03-07;;(UN ID: QDe.168)\n(Date of UN designation: 2022-03-07)\n(The group mainly operates in the provinces of Hama, Idlib and Ladhiqiyah, in the Syrian Arab Republic, and also conduct operations in Turkey, Kyrgyzstan, Uzbekistan, Russian Federation, Tajikistan, Kazakhstan, Egypt, Afghanistan, Ukraine. The number of fighters of KTJ is about 500. KTJ also cooperates with such terrorist organizations as Khatiba Imam al-Bukhari (QDe.158) and the Islamic Jihad Group. \nUNLI - 07.03.2022);E;enterprise;amendment;commission;2022-03-14;2022-03-14;2022/413 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.085.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A085%3ATOC;;;;JANNAT OSHIKLARI;;;;;137646;EN;;amendment;commission;2022-03-14;2022-03-14;2022/413 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.085.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A085%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136506;EU.7612.23;QDe.168;2022-03-07;;(UN ID: QDe.168)\n(Date of UN designation: 2022-03-07)\n(The group mainly operates in the provinces of Hama, Idlib and Ladhiqiyah, in the Syrian Arab Republic, and also conduct operations in Turkey, Kyrgyzstan, Uzbekistan, Russian Federation, Tajikistan, Kazakhstan, Egypt, Afghanistan, Ukraine. The number of fighters of KTJ is about 500. KTJ also cooperates with such terrorist organizations as Khatiba Imam al-Bukhari (QDe.158) and the Islamic Jihad Group. \nUNLI - 07.03.2022);E;enterprise;amendment;commission;2022-03-14;2022-03-14;2022/413 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.085.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A085%3ATOC;;;;Катиба ат-Таухид валь-Джихад;;;;;137647;EN;;amendment;commission;2022-03-14;2022-03-14;2022/413 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.085.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A085%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136506;EU.7612.23;QDe.168;2022-03-07;;(UN ID: QDe.168)\n(Date of UN designation: 2022-03-07)\n(The group mainly operates in the provinces of Hama, Idlib and Ladhiqiyah, in the Syrian Arab Republic, and also conduct operations in Turkey, Kyrgyzstan, Uzbekistan, Russian Federation, Tajikistan, Kazakhstan, Egypt, Afghanistan, Ukraine. The number of fighters of KTJ is about 500. KTJ also cooperates with such terrorist organizations as Khatiba Imam al-Bukhari (QDe.158) and the Islamic Jihad Group. \nUNLI - 07.03.2022);E;enterprise;amendment;commission;2022-03-14;2022-03-14;2022/413 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.085.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A085%3ATOC;;;;KHATIBA AL-TAWHID WAL-JIHAD (KTJ);;;;;137648;EN;Khatiba al-Tawhid wal-Jihad (formerly known as Jannat Oshiklari) is a terrorist organization operating under the umbrella of the international terrorist organization Al-Nusrah Front for the People of the Levant.;amendment;commission;2022-03-14;2022-03-14;2022/413 (OJ L85);TAQA;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.085.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A085%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136515;EU.7613.22;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПУМПЯНСКИЙ;Александр;Дмитриевич;Александр Дмитриевич ПУМПЯНСКИЙ;RU;M;;;136518;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136515;EU.7613.22;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PUMPYANSKY;Alexander;Dmitrievich;Alexander Dmitrievich PUMPYANSKY;;M;;Chairman of the Board of Directors of PJSC Pipe Metallurgical Company. former President and a former board member of Group Sinara.;136519;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136515;EU.7613.22;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Dmitrijevitj PUMPJANSKIJ;SV;;;;137322;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136515;EU.7613.22;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-05-16;16;5;1987;;;NO;GREGORIAN;;;;Yekaterinburg;RU;RUSSIAN FEDERATION;136516;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136515;EU.7613.22;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;136517;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC +28/10/2022;136525;EU.7615.20;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Александр Семёнович ВИНОКУРОВ;;M;;;136528;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136525;EU.7615.20;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Alexander Semenovich VINOKUROV;;M;;Businessperson, Managing Partner and President of Maraton Group, Member of Board of Directors of Magnit;136529;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136525;EU.7615.20;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Aleksander Semenovič VINOKUROV;SL;;;;137329;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136525;EU.7615.20;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Aleksandr Semjonovitj VINOKUROV;SV;;;;137330;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136525;EU.7615.20;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-10-12;12;10;1982;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;136526;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136525;EU.7615.20;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;136527;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC +28/10/2022;136530;EU.7616.19;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Андрей Игоревич МЕЛЬНИЧЕНКО;;M;;;136533;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136530;EU.7616.19;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Andrey Igorevich MELNICHENKO;;M;;Non-Executive Director of JSC SUEK, Member of the Board of EuroChem Group;136534;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136530;EU.7616.19;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Andrej Igorevič MELNIČENKO;SL;;;;137332;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136530;EU.7616.19;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Andrej Igorevitj MELNITJENKO;SV;;;;137333;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136530;EU.7616.19;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-03-08;8;3;1972;;;NO;GREGORIAN;;;;Gomel;BY;BELARUS;136531;EN;Byelorussian SSR (now Belarus);amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136530;EU.7616.19;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;136532;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC +28/10/2022;136535;EU.7617.18;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Дмитрий Алekcандрович ПУМПЯНСКИЙ;;M;;;136538;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136535;EU.7617.18;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Dmitry A. PUMPIANSKY;;M;;;136539;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136535;EU.7617.18;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Dmitry Alexandrovich PUMPYANSKY;;M;;Chairman of the board of directors of PJSC Pipe Metallurgic Company, the President, the board member of Group Sinara.;136540;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136535;EU.7617.18;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Dmitri Aleksandrovič PUMPJANSKI;SL;;;;137337;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136535;EU.7617.18;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Dmitrij Aleksandrovitj PUMPJANSKIJ;SV;;;;137338;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136535;EU.7617.18;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-03-22;22;3;1964;;;NO;GREGORIAN;;;;Ulan-Ude;RU;RUSSIAN FEDERATION;136536;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136535;EU.7617.18;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;136537;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC +28/10/2022;136541;EU.7618.17;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЗЛЕНКО;Елена;Геннадьевна;Елена Геннадьевна ЗЛЕНКО;RU;F;;;136543;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136541;EU.7618.17;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ZLENKO;Yelena;Gennadyevna;Yelena Gennadyevna ZLENKO;;F;;Member of the Federation Council;136544;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136541;EU.7618.17;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jelena Gennadjevna ZLENKO;SV;;;;137293;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136541;EU.7618.17;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-06-20;20;6;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;136542;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136548;EU.7619.16;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЗАБРАЛОВА;Ольга;Сергеевна;Ольга Сергеевна ЗАБРАЛОВА;;F;;;136550;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136548;EU.7619.16;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ZABRALOVA;Olga;Sergeyevna;Olga Sergeyevna ZABRALOVA;;F;;Member of the Federation Council;136551;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136548;EU.7619.16;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Olga Sergejevna ZABRALOVA;SV;;;;137294;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136548;EU.7619.16;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-03-30;30;3;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;136549;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136559;EU.7620.91;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МАЗЕПИН;Дмитрий;Аркадьевич;Дмитрий Аркадьевич МАЗЕПИН;RU;M;;;136562;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136559;EU.7620.91;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MAZEPIN;Dmitry;Arkadievich;Dmitry Arkadievich MAZEPIN;;M;;CEO of JSC UCC Uralchem;136563;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136559;EU.7620.91;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Arkadjevitj MAZEPIN;SV;;;;137340;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136559;EU.7620.91;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-04-18;18;4;1968;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;136560;EN;Belorussian SSR (now Belarus);amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136559;EU.7620.91;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;136561;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC +28/10/2022;136564;EU.7621.90;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЗУБАРЕВ;Игорь;Дмитриевич;Игорь Дмитриевич ЗУБАРЕВ;;M;;;136566;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136564;EU.7621.90;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ZUBAREV;Igor;Dmitryevich;Igor Dmitryevich ZUBAREV;;M;;Member of the Federation Council;136567;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136564;EU.7621.90;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Igor Dmitrijevitj ZUBAREV;SV;;;;137297;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136564;EU.7621.90;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-06-20;20;6;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;136565;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136568;EU.7622.89;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЗОБНЕВ;Виктор;Викторович;Виктор Викторович ЗОБНЕВ;;M;;;136570;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136568;EU.7622.89;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ZOBNEV;Viktor;Viktororvich;Viktor Viktororvich ZOBNEV;;M;;Member of the Federation Council;136571;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136568;EU.7622.89;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Viktorovitj ZOBNEV;SV;;;;137298;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136568;EU.7622.89;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-06-07;7;6;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;136569;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136572;EU.7623.88;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Галина Евгеньевна Пумпянская;;F;;;136575;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136572;EU.7623.88;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Galina Evgenyevna PUMPYANSKAYA;;F;;Chairwoman of the Board of trustees of Sinara charitable foundation.;136576;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136572;EU.7623.88;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Galina Evgenjevna PUMPJANSKAJA;SL;;;;137342;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136572;EU.7623.88;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Galina Jevgenjevna PUMPJANSKAJA;SV;;;;137343;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136572;EU.7623.88;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-02-10;10;2;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;136573;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136572;EU.7623.88;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;136574;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC +28/10/2022;136577;EU.7624.87;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЖУРАВЛЁВ;Николай;Андреевич;Николай Андреевич ЖУРАВЛЁВ;;M;;;136579;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136577;EU.7624.87;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ZHURAVLEV;Nikolai;Andreyevich;Nikolai Andreyevich ZHURAVLEV;;M;;Member of the Federation Council;136580;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136577;EU.7624.87;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Andrejevitj ZJURAVLJOV;SV;;;;137299;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136577;EU.7624.87;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-09-01;1;9;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;136578;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136581;EU.7625.86;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ФЁДОРОВ;Юрий;Викторович;Юрий Викторович ФЁДОРОВ;RU;M;;;136583;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136581;EU.7625.86;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;FEDOROV;Yury;Viktorovich;Yury Viktorovich FEDOROV;;M;;Member of the Federation Council;136584;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136581;EU.7625.86;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jurij Viktorovitj FJODOROV;SV;;;;137220;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136581;EU.7625.86;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-01-01;1;1;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;136582;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136585;EU.7626.85;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ФЁДОРОВ;Николай;Васильевич;Николай Васильевич ФЁДОРОВ;;M;;;136587;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136585;EU.7626.85;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;FYODOROV;Nikolai;Vasilyevich;Nikolai Vasilyevich FYODOROV;;M;;Member of the Federation Council;136588;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136585;EU.7626.85;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Vasiljevitj FJODOROV;SV;;;;137221;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136585;EU.7626.85;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-05-09;9;5;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;136586;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136589;EU.7627.84;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГИБАТДИНОВ;Айрат;Минерасихович;Айрат Минерасихович ГИБАТДИНОВ;RU;M;;;136591;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136589;EU.7627.84;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GIBATDINOV;Airat;Minerasikhovich;Airat Minerasikhovich GIBATDINOV;;M;;Member of the Federation Council;136592;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136589;EU.7627.84;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ajrat Minerasichovitj GIBATDINOV;SV;;;;137222;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136589;EU.7627.84;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-01-16;16;1;1986;;;NO;GREGORIAN;;;;;00;UNKNOWN;136590;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136593;EU.7628.83;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГУСЕВ;Денис;Владимирович;Денис Владимирович ГУСЕВ;RU;M;;;136595;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136593;EU.7628.83;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GUSEV;Denis;Vladimirovich;Denis Vladimirovich GUSEV;;M;;Member of the Federation Council;136596;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136593;EU.7628.83;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Denis Vladimirovitj GUSEV;SV;;;;137223;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136593;EU.7628.83;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-12-26;26;12;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;136594;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136597;EU.7629.82;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГУМЕРОВА;Лилия;Салаватовна;Лилия Салаватовна ГУМЕРОВА;RU;F;;;136599;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136597;EU.7629.82;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GUMEROVA;Lilia;Salavatovna;Lilia Salavatovna GUMEROVA;;F;;Member of the Federation Council;136600;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136597;EU.7629.82;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Lilija Salavatovna GUMEROVA;SV;;;;137224;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136597;EU.7629.82;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-12-16;16;12;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;136598;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136601;EU.7630.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГАЛУШИНА;Римма;Фёдоровна;Римма Фёдоровна ГАЛУШИНА;RU;F;;;136603;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136601;EU.7630.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GALUSHINA;Rimma;Fyodorovna;Rimma Fyodorovna GALUSHINA;;F;;Member of the Federation Council;136604;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136601;EU.7630.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Rimma Fjodorovna GALUSJINA;SV;;;;137225;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136601;EU.7630.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-05-30;30;5;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;136602;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136605;EU.7631.59;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГЕРЕМЕЕВ;Сулейман;Садулаевич;Сулейман Садулаевич ГЕРЕМЕЕВ;RU;M;;;136607;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136605;EU.7631.59;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GEREMEYEV;Suleiman;Sadulayevich;Suleiman Sadulayevich GEREMEYEV;;M;;Member of the Federation Council;136608;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136605;EU.7631.59;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sulejman Sadulajevitj GEREMEJEV;SV;;;;137226;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136605;EU.7631.59;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-01-20;20;1;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;136606;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136609;EU.7632.58;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЖАМСУЕВ;Баир;Баясхаланович;Баир Баясхаланович ЖАМСУЕВ;;M;;;136611;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136609;EU.7632.58;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ZHAMSUYEV;Bair;Bayaskhalanovich;Bair Bayaskhalanovich ZHAMSUYEV;;M;;Member of the Federation Council;136612;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136609;EU.7632.58;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Bair Bajaschalanovitj ZJAMSUJEV;SV;;;;137300;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136609;EU.7632.58;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-01-29;29;1;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;136610;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136613;EU.7633.57;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГИГЕЛЬ;Татьяна;Анатольевна;Татьяна Анатольевна ГИГЕЛЬ;RU;F;;;136615;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136613;EU.7633.57;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GIGEL;Tatyana;Anatolyevna;Tatyana Anatolyevna GIGEL;;F;;Member of the Federation Council;136616;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136613;EU.7633.57;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Tatiana Anatoljevna GIGEL;SV;;;;137228;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136613;EU.7633.57;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-02-27;27;2;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;136614;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136617;EU.7634.56;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГУСАКОВСКИЙ;Александр;Владиславович;Александр Владиславович ГУСАКОВСКИЙ;RU;M;;;136619;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136617;EU.7634.56;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GUSAKOVSKY;Alexander;Vladislavovich;Alexander Vladislavovich GUSAKOVSKY;;M;;Member of the Federation Council;136620;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136617;EU.7634.56;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Vladislavovitj GUSAKOVSKIJ;SV;;;;137229;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136617;EU.7634.56;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-08-25;25;8;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;136618;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136621;EU.7635.55;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГОРИЦКИЙ;Дмитрий;Юрьевич;Дмитрий Юрьевич ГОРИЦКИЙ;RU;M;;;136623;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136621;EU.7635.55;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GORITSKY;Dmitry;Yuryevich;Dmitry Yuryevich GORITSKY;;M;;Member of the Federation Council;136624;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136621;EU.7635.55;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Jurjevitj GORITSKIJ;SV;;;;137230;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136621;EU.7635.55;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-10-28;28;10;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;136622;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136625;EU.7636.54;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЖУКОВА;Анастасия;Геннадьевна;Анастасия Геннадьевна ЖУКОВА;;F;;;136627;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136625;EU.7636.54;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ZHUKOVA;Anastasia;Gennadyevna;Anastasia Gennadyevna ZHUKOVA;;F;;Member of the Federation Council;136628;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136625;EU.7636.54;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anastasija Gennadjevna ZJUKOVA;SV;;;;137301;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136625;EU.7636.54;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-11-08;8;11;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;136626;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136629;EU.7637.53;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Любовь Николаевна ГЛЕБОВА;;F;;;136631;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136629;EU.7637.53;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Lyubov Nikolayevna GLEBOVA;;F;;Member of the Federation Council;136632;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136629;EU.7637.53;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ljubov Nikolajevna GLEBOVA;SV;F;;;137231;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136629;EU.7637.53;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-03-07;7;3;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;136630;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136633;EU.7638.52;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГОРНЯКОВ;Сергей;Васильевич;Сергей Васильевич ГОРНЯКОВ;RU;M;;;136635;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136633;EU.7638.52;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GORNYAKOV;Sergei;Vasilyevich;Sergei Vasilyevich GORNYAKOV;;M;;Member of the Federation Council;136636;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136633;EU.7638.52;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Vasiljevitj GORNJAKOV;SV;;;;137232;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136633;EU.7638.52;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-01-05;5;1;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;136634;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136637;EU.7639.51;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГОРЯЧЕВА;Светлана;Петровна;Светлана Петровна ГОРЯЧЕВА;RU;F;;;136639;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136637;EU.7639.51;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GORYACHEVA;Svetlana;Petrovna;Svetlana Petrovna GORYACHEVA;;F;;Member of the Federation Council;136640;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136637;EU.7639.51;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Svetlana Petrovna GORJATJEVA;SV;;;;137233;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136637;EU.7639.51;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947-06-03;3;6;1947;;;NO;GREGORIAN;;;;;00;UNKNOWN;136638;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136641;EU.7640.29;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЯГУБОВ;Геннадий;Владимирович;Геннадий Владимирович ЯГУБОВ;;M;;;136643;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136641;EU.7640.29;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;YAGUBOV;Gennady;Vladimirovich;Gennady Vladimirovich YAGUBOV;;M;;Member of the Federation Council;136644;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136641;EU.7640.29;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Gennadij Vladimirovitj JAGUBOV;SV;;;;137302;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136641;EU.7640.29;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-04-17;17;4;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;136642;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136645;EU.7641.28;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ГОРОДЕЦКИЙ;Владимир;Филиппович;Владимир Филиппович ГОРОДЕЦКИЙ;RU;M;;;136647;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136645;EU.7641.28;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;GORODETSKIY;Vladimir;Filippovich;Vladimir Filippovich GORODETSKIY;;M;;Member of the Federation Council;136648;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136645;EU.7641.28;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Filippovitj GORODETSKIJ;SV;;;;137234;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136645;EU.7641.28;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-07-11;11;7;1948;;;NO;GREGORIAN;;;;;00;UNKNOWN;136646;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136649;EU.7642.27;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИСАКОВ;Эдуард;Владимирович;Эдуард Владимирович ИСАКОВ;RU;M;;;136651;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136649;EU.7642.27;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ISAKOV;Eduard;Vladimirovich;Eduard Vladimirovich ISAKOV;;M;;Member of the Federation Council;136652;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136649;EU.7642.27;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Eduard Vladimirovitj ISAKOV;SV;;;;137235;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136649;EU.7642.27;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-10-04;4;10;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;136650;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136657;EU.7644.25;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИКОННИКОВ;Василий;Николаевич;Василий Николаевич ИКОННИКОВ;RU;M;;;136659;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136657;EU.7644.25;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;IKONNIKOV;Vasily;Nikolayevich;Vasily Nikolayevich IKONNIKOV;;M;;Member of the Federation Council;136660;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136657;EU.7644.25;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vasilij Nikolajevitj IKONNIKOV;SV;;;;137236;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136657;EU.7644.25;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-04-26;26;4;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;136658;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136661;EU.7645.24;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЕПИШИН;Андрей;Николаевич;Андрей Николаевич ЕПИШИН;RU;M;;;136663;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136661;EU.7645.24;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;YEPISHIN;Andrei;Nikolayevich;Andrei Nikolayevich YEPISHIN;;M;;Member of the Federation Council;136664;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136661;EU.7645.24;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Nikolajevitj JEPISJIN;SV;;;;137303;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136661;EU.7645.24;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-10-29;29;10;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;136662;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136665;EU.7646.23;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ИВАНОВ;Сергей;Борисович;Сергей Борисович ИВАНОВ;RU;M;;;136667;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136665;EU.7646.23;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;IVANOV;Sergey;Borisovich;Sergey Borisovich IVANOV;;M;;Member of the Federation Council;136668;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136665;EU.7646.23;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Borisovitj IVANOV;SV;;;;137237;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136665;EU.7646.23;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-04-19;19;4;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;136666;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136669;EU.7647.22;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОНДРАТЕНКО;Алексей;Николаевич;Алексей Николаевич КОНДРАТЕНКО;RU;M;;;136671;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136669;EU.7647.22;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KONDRATENKO;Aleksey;Nikolayevich;Aleksey Nikolayevich KONDRATENKO;;M;;Member of the Federation Council;136672;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136669;EU.7647.22;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Nikolajevitj KONDRATENKO;SV;;;;137238;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136669;EU.7647.22;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-12-16;16;12;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;136670;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136673;EU.7648.21;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЯЛАЛОВ;Ирек;Ишмухаметович;Ирек Ишмухаметович ЯЛАЛОВ;RU;M;;;136675;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136673;EU.7648.21;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;YALALOV;Irek;Ishmukhametovich;Irek Ishmukhametovich YALALOV;;M;;Member of the Federation Council;136676;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136673;EU.7648.21;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Irek Isjmuchametovitj JALALOV;SV;;;;137304;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136673;EU.7648.21;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-01-27;27;1;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;136674;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136677;EU.7649.20;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Александр Богданович КАРЛИН;RU;M;;;136679;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136677;EU.7649.20;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KARLIN;Alexander;Bogdanovich;Alexander Bogdanovich KARLIN;;M;;Member of the Federation Council;136680;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136677;EU.7649.20;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Bogdanovitj KARLIN;SV;;;;137239;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136677;EU.7649.20;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-10-29;29;10;1951;;;NO;GREGORIAN;;;;;00;UNKNOWN;136678;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136681;EU.7650.95;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Андрей Аркадьевич КЛИМОВ;RU;M;;;136683;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136681;EU.7650.95;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrey Akardyevich KLIMOV;;M;;Member of the Federation Council;136684;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136681;EU.7650.95;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Arkardjevitj KLIMOV;SV;;;;137240;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136681;EU.7650.95;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-11-09;9;11;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;136682;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136685;EU.7651.94;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЯЦКИН;Андрей;Владимирович;Андрей Владимирович ЯЦКИН;RU;M;;;136687;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136685;EU.7651.94;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;YATSKIN;Andrey;Vladimirovich;Andrey Vladimirovich YATSKIN;;M;;Member of the Federation Council;136688;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136685;EU.7651.94;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Vladimirovitj JATSKIN;SV;;;;137305;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136685;EU.7651.94;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-04-25;25;4;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;136686;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136689;EU.7652.93;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КУТЕПОВ;Андрей;Викторович;Андрей Викторович КУТЕПОВ;RU;M;;;136691;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136689;EU.7652.93;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KUTEPOV;Andrey;Viktorovich;Andrey Viktorovich KUTEPOV;;M;;Member of the Federation Council;136692;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136689;EU.7652.93;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Viktorovitj KUTEPOV;SV;;;;137241;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136689;EU.7652.93;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-04-06;6;4;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;136690;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136693;EU.7653.92;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Михаил Эдуардович ОСЕЕВСКИЙ;;M;;;136696;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136693;EU.7653.92;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Mikhail Eduardovich OSEEVSKY;EN;M;;President of PJSC Rostelecom\n\nIndependent member of the Board of Directors, PJSC MMK\n\nMember of the supervisory board of ANO Digital Economy, LLC T2 RTK Holding (Tele2)\n\nMember of the board of the Russian Union of Industrialists and Entrepreneurs;136697;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136693;EU.7653.92;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Mihail Eduardovič OSEEVSKI;SL;;;;137346;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136693;EU.7653.92;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Michail Eduardovitj OSEJEVSKIJ;SV;;;;137347;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136693;EU.7653.92;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-11-30;30;11;1960;;;NO;GREGORIAN;;;;Saint Petersburg;RU;RUSSIAN FEDERATION;136694;EN;former Leningrad (now Saint Petersburg), Russian Federation;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136693;EU.7653.92;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;136695;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC +28/10/2022;136698;EU.7654.91;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ХАМЧИЕВ;Белан;Багаудинович;Белан Багаудинович ХАМЧИЕВ;RU;M;;;136700;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136698;EU.7654.91;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KHAMCHIEV;Belan;Bagaudinovich;Belan Bagaudinovich KHAMCHIEV;;M;;Member of the Federation Council;136701;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136698;EU.7654.91;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Belan Bagaudinovitj CHAMTJIJEV;SV;;;;137242;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136698;EU.7654.91;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-12-07;7;12;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;136699;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136702;EU.7655.90;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЯРОШУК;Александр;Георгиевич;Александр Георгиевич ЯРОШУК;;M;;;136704;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136702;EU.7655.90;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;YAROSHUK;Alexander;Georgievich;Alexander Georgievich YAROSHUK;;M;;Member of the Federation Council;136705;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136702;EU.7655.90;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Georgijevitj JAROSJUK;SV;;;;137306;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136702;EU.7655.90;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-11-15;15;11;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;136703;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136706;EU.7656.89;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАРЕЛОВА;Галина;Николаевна;Галина Николаевна КАРЕЛОВА;RU;F;;;136708;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136706;EU.7656.89;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KARELOVA;Galina;Nikolayevna;Galina Nikolayevna KARELOVA;;F;;Member of the Federation Council;136709;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136706;EU.7656.89;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Galina Nikolajevna KARELOVA;SV;;;;137243;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136706;EU.7656.89;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-06-29;29;6;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;136707;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136710;EU.7657.88;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОЖАНОВА;Ирина;Андреевна;Ирина Андреевна КОЖАНОВА;RU;F;;;136712;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136710;EU.7657.88;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOZHANOVA;Irina;Andreyevna;Irina Andreyevna KOZHANOVA;;F;;Member of the Federation Council;136713;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136710;EU.7657.88;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Irina Andrejevna KOZJANOVA;SV;;;;137244;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136710;EU.7657.88;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-07-06;6;7;1987;;;NO;GREGORIAN;;;;;00;UNKNOWN;136711;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136714;EU.7658.87;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАЗАНОКОВ;Крым;Олиевич;Крым Олиевич КАЗАНОКОВ;RU;M;;;136716;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136714;EU.7658.87;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KAZANOKOV;Krym;Olievich;Krym Olievich KAZANOKOV;;M;;Member of the Federation Council;136717;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136714;EU.7658.87;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Krym Olijevitj KAZANOKOV;SV;;;;137245;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136714;EU.7658.87;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-07-19;19;7;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;136715;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136718;EU.7659.86;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВОРОБЬЁВ;Юрий;Леонидович;Юрий Леонидович ВОРОБЬЁВ;RU;M;;;136720;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136718;EU.7659.86;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VOROBYOV;Yury;Leonidovich;Yury Leonidovich VOROBYOV;;M;;Member of the Federation Council;136721;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136718;EU.7659.86;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jurij Leonidovitj VOROBJOV;SV;;;;137307;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136718;EU.7659.86;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-02-02;2;2;1948;;;NO;GREGORIAN;;;;;00;UNKNOWN;136719;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136722;EU.7660.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Мурат Крым-Гериевич ХАПСИРОКОВ;RU;M;;;136724;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136722;EU.7660.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KHAPSIROKOV;Murat;Krym-Gerievich;Murat Krym-Gerievich KHAPSIROKOV;;M;;Member of the Federation Council;136725;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136722;EU.7660.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Murat Krym-Gerijevitj CHAPSIROKOV;SV;;;;137246;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136722;EU.7660.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-01-26;26;1;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;136723;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136726;EU.7661.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Михаил Игоревич ПОЛУБОЯРИНОВ;;M;;;136729;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136726;EU.7661.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Mikhail Igorevich POLUBOYARINOV;;M;;CEO of OJSC Aeroflot\n\nMember of the boards of directors of State Transport Leasing Company and JSC EXIMBANK OF RUSSIA\n\nMember of the Supervisory Board of DOM.RF\n\nChairman of the Board of Directors of LLC Pobeda\n\nMember of IATA Board of Governors.;136730;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136726;EU.7661.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Mihail Igorevič POLUBOJARINOV;SL;;;;137350;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136726;EU.7661.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Michail Igorevitj POLUBOJARINOV;SV;;;;137351;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136726;EU.7661.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-04-02;2;4;1966;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;136727;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136726;EU.7661.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;136728;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC +28/10/2022;136731;EU.7662.62;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВАСИЛЬЕВ;Валерий;Николаевич;Валерий Николаевич ВАСИЛЬЕВ;RU;M;;;136733;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136731;EU.7662.62;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VASILYEV;Valery;Nikolayevich;Valery Nikolayevich VASILYEV;;M;;Member of the Federation Council;136734;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136731;EU.7662.62;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Valerij Nikolajevitj VASILJEV;SV;;;;137308;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136731;EU.7662.62;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-07-17;17;7;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;136732;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136735;EU.7663.61;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОНДРАТЮК;Николай;Фёдорович;Николай Фёдорович КОНДРАТЮК;RU;M;;;136737;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136735;EU.7663.61;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolai Fyodorovich KONDRATYUK;;M;;Member of the Federation Council;136738;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136735;EU.7663.61;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Fjodorovitj KONDRATIUK;SV;;;;137247;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136735;EU.7663.61;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-07-11;11;7;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;136736;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136739;EU.7664.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ХЛЯКИНА;Оксана;Владимировна;Оксана Владимировна ХЛЯКИНА;RU;F;;;136741;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136739;EU.7664.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KHLYAKINA;Oksana;Vladimirovna;Oksana Vladimirovna KHLYAKINA;;F;;Member of the Federation Council;136742;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136739;EU.7664.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oksana Vladimirovna CHLJAKINA;SV;;;;137248;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136739;EU.7664.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-11-28;28;11;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;136740;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136743;EU.7665.59;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВАРФОЛОМЕЕВ;Александр;Георгиевич;Александр Георгиевич ВАРФОЛОМЕЕВ;RU;M;;;136745;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136743;EU.7665.59;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VARFOLOMEEV;Alexander;Georgyevich;Alexander Georgyevich VARFOLOMEEV;;M;;Member of the Federation Council;136746;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136743;EU.7665.59;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Georgijevitj VARFOLOMEJEV;SV;;;;137309;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136743;EU.7665.59;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-06-04;4;6;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;136744;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136747;EU.7666.58;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАЛАШНИК;Сергей;Викторович;Сергей Викторович КАЛАШНИК;;M;;;136749;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136747;EU.7666.58;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KALASHNIK;Sergey;Viktorovich;Sergey Viktorovich KALASHNIK;;M;;Member of the Federation Council;136750;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136747;EU.7666.58;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Viktorovitj KALASJNIK;SV;;;;137249;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136747;EU.7666.58;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-03-31;31;3;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;136748;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136751;EU.7667.57;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОЖИН;Владимир;Игоревич;Владимир Игоревич КОЖИН;RU;M;;;136753;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136751;EU.7667.57;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOZHIN;Vladimir;Igorevich;Vladimir Igorevich KOZHIN;;M;;Member of the Federation Council;136754;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136751;EU.7667.57;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Igorevitj KOZJIN;SV;;;;137250;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136751;EU.7667.57;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-02-28;28;2;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;136752;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136755;EU.7668.56;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВАЛЯЕВ;Юрий;Константинович;Юрий Константинович ВАЛЯЕВ;RU;M;;;136757;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136755;EU.7668.56;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VALYAEV;Yuri;Konstantinovich;Yuri Konstantinovich VALYAEV;;M;;Member of the Federation Council;136758;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136755;EU.7668.56;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jurij Konstantinovitj VALJAJEV;SV;;;;137310;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136755;EU.7668.56;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-04-18;18;4;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;136756;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136759;EU.7669.55;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КРУГЛЫЙ;Владимир;Игоревич;Владимир Игоревич КРУГЛЫЙ;RU;M;;;136761;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136759;EU.7669.55;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KRUGLY;Vladimir;Igorevich;Vladimir Igorevich KRUGLY;;M;;Member of the Federation Council;136762;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136759;EU.7669.55;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Igorevitj KRUGLYJ;SV;;;;137251;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136759;EU.7669.55;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-05-27;27;5;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;136760;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136763;EU.7670.33;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАРЕЛИН;Александр;Александрович;Александр Александрович КАРЕЛИН;RU;M;;;136765;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136763;EU.7670.33;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KARELIN;Alexander;Alexandrovich;Alexander Alexandrovich KARELIN;;M;;Member of the Federation Council;136766;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136763;EU.7670.33;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Aleksandrovitj KARELIN;SV;;;;137252;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136763;EU.7670.33;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-09-19;19;9;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;136764;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136767;EU.7671.32;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Сергеи Алехандрович КУЛИКОВ;RU;M;;;136770;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136767;EU.7671.32;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Sergey Alexandrovich KULIKOV;;M;;Chairman of the Board of Management Company RUSNANO LLC\n\nMember of the Board of Directors of Rusnano JSC\n\nFirst deputy Chairman of the board of the Military Industrial Commission;136773;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136767;EU.7671.32;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Sergej Aleksandrovič KULIKOV;SL;;;;137355;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136767;EU.7671.32;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Sergej Aleksandrovitj KULIKOV;SV;;;;137356;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136767;EU.7671.32;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Sergei Alexandrovich KULIKOV;;;;;137401;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136767;EU.7671.32;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-04-09;9;4;1976;;;NO;GREGORIAN;;;;Sverdlovsk;RU;RUSSIAN FEDERATION;136768;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136767;EU.7671.32;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;136769;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC +28/10/2022;136774;EU.7672.31;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КИСЛОВ;Андрей;Игоревич;Андрей Игоревич КИСЛОВ;RU;M;;;136776;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136774;EU.7672.31;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KISLOV;Andrey;Igoryevich;Andrey Igoryevich KISLOV;;M;;Member of the Federation Council;136777;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136774;EU.7672.31;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Igorevitj KISLOV;SV;;;;137253;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136774;EU.7672.31;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-08-29;29;8;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;136775;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136778;EU.7673.30;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВЛАДИМИРОВ;Николай;Николаевич;Николай Николаевич ВЛАДИМИРОВ;;M;;;136780;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136778;EU.7673.30;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VLADIMIROV;Nikolay;Nikolayevich;Nikolay Nikolayevich VLADIMIROV;;M;;Member of the Federation Council;136781;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136778;EU.7673.30;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Nikolajevitj VLADIMIROV;SV;;;;137311;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136778;EU.7673.30;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-11-18;18;11;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;136779;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136782;EU.7674.29;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КУЗЬМИН;Дмитрий;Геннадьевич;Дмитрий Геннадьевич КУЗЬМИН;RU;M;;;136784;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136782;EU.7674.29;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KUZMIN;Dmitry;Gennadyevich;Dmitry Gennadyevich KUZMIN;;M;;Member of the Federation Council;136785;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136782;EU.7674.29;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Gennadjevitj KUZMIN;SV;;;;137254;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136782;EU.7674.29;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-06-28;28;6;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;136783;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136786;EU.7675.28;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КАРАСИН;Григорий;Борисович;Григорий Борисович КАРАСИН;RU;M;;;136788;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136786;EU.7675.28;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KARASIN;Grigory;Borisovich;Grigory Borisovich KARASIN;;M;;Member of the Federation Council;136789;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136786;EU.7675.28;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Grigorij Borisovitj KARASIN;SV;;;;137255;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136786;EU.7675.28;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-08-23;23;8;1949;;;NO;GREGORIAN;;;;;00;UNKNOWN;136787;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136790;EU.7676.27;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВЫСОКИНСКИЙ;Александр;Геннадьевич;Александр Геннадьевич ВЫСОКИНСКИЙ;RU;M;;;136792;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136790;EU.7676.27;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VYSOKINSKY;Alexander;Gennadyevich;Alexander Gennadyevich VYSOKINSKY;;M;;Member of the Federation Council;136793;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136790;EU.7676.27;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Gennadjevitj VYSOKINSKIJ;SV;;;;137312;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136790;EU.7676.27;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-09-24;24;9;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;136791;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136794;EU.7677.26;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ВАЙНБЕРГ;Александр;Владеленович;Александр Владеленович ВАЙНБЕРГ;;M;;;136796;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136794;EU.7677.26;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;VAINBERG;Alexander;Vladelenovich;Alexander Vladelenovich VAINBERG;;M;;Member of the Federation Council;136797;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136794;EU.7677.26;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Vladelenovitj VAJNBERG;SV;;;;137313;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136794;EU.7677.26;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-02-02;2;2;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;136795;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136798;EU.7678.25;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Вадим Николаевич МОШКОВИЧ;;M;;;136802;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136798;EU.7678.25;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Vadim Nikolaevich MOSHKOVICH;;M;;Chairman of the Board of Directors of Rusagro Group\n\nMinority owner of Sberbank;136803;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136798;EU.7678.25;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Vadim Nikolajevič MOŠKOVIČ;SL;;;;137359;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136798;EU.7678.25;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Vadim Nikolajevitj MOSJKOVITJ;SV;;;;137360;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136798;EU.7678.25;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-04-06;6;4;1967;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;136799;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136798;EU.7678.25;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CY;;136800;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC +28/10/2022;136798;EU.7678.25;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;136801;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC +28/10/2022;136804;EU.7679.24;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОСАЧЕВ;Константин;Иосифович;Константин Иосифович КОСАЧЕВ;;M;;;136806;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136804;EU.7679.24;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOSACHEV;Konstantin;Iosifovich;Konstantin Iosifovich KOSACHEV;;M;;Member of the Federation Council;136807;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136804;EU.7679.24;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Konstantin Iosifovitj KOSATJEV;SV;;;;137256;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136804;EU.7679.24;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-09-17;17;9;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;136805;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136808;EU.7680.2;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;УЛЬБАШЕВ;Мухарбий;Магомедович;Мухарбий Магомедович УЛЬБАШЕВ;RU;M;;;136810;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136808;EU.7680.2;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ULBASHEV;Mukharby;Magomedovich;Mukharby Magomedovich ULBASHEV;;M;;Member of the Federation Council;136811;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136808;EU.7680.2;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Mucharbij Magomedovitj ULBASJEV;SV;;;;137314;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136808;EU.7680.2;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-05-15;15;5;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;136809;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136812;EU.7681.1;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;УСАТЮК;Валерий;Петрович;Валерий Петрович УСАТЮК;RU;M;;;136814;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136812;EU.7681.1;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;USATYUK;Valery;Petrovich;Valery Petrovich USATYUK;;M;;Member of the Federation Council;136815;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136812;EU.7681.1;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Valerij Petrovitj USATIUK;SV;;;;137315;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136812;EU.7681.1;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-07-14;14;7;1948;;;NO;GREGORIAN;;;;;00;UNKNOWN;136813;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136816;EU.7682.0;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТИМЧЕНКО;Вячеслав;Степанович;Вячеслав Степанович ТИМЧЕНКО;RU;M;;;136818;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136816;EU.7682.0;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TIMCHENKO;Vyacheslav;Stepanovich;Vyacheslav Stepanovich TIMCHENKO;;M;;Member of the Federation Council;136819;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136816;EU.7682.0;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vjatjeslav Stepanovitj TIMTJENKO;SV;;;;137316;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136816;EU.7682.0;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-11-20;20;11;1950;;;NO;GREGORIAN;;;;;00;UNKNOWN;136817;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136820;EU.7683.96;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Владимир Сергеевич КИРИЕНКО;;M;;;136823;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136820;EU.7683.96;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Vladimir Sergeevich KIRIYENKO;;M;;CEO of VK Company Limited, the parent company of Russia’s top social media platform, VKontakte.\n\nFormer First Vice President of the Russian State-controlled company Rostelecom (2017-2021)\n\nChairman of the Board of Directors of LLC Capital since 2011\n\nFormer Chairman of the Board of Directors of Nizhegorodpromstroybank (2008-2011);136824;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136820;EU.7683.96;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Vladimir Sergejevič KIRIJENKO;SL;;;;137361;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136820;EU.7683.96;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Vladimir Sergejevitj KIRIJENKO;SV;;;;137362;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136820;EU.7683.96;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-05-27;27;5;1983;;;NO;GREGORIAN;;;;Nizhny Novgorod;RU;RUSSIAN FEDERATION;136821;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136820;EU.7683.96;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;136822;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC +28/10/2022;136825;EU.7684.95;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТУЛТАЕВ;Пётр;Николаевич;Пётр Николаевич ТУЛТАЕВ;;M;;;136827;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136825;EU.7684.95;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TULTAEV;Peter;Nikolayevich;Peter Nikolayevich TULTAEV;;M;;Member of the Federation Council;136828;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136825;EU.7684.95;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Pjotr Nikolajevitj TULTAJEV;SV;;;;137317;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136825;EU.7684.95;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-01-01;1;1;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;136826;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136829;EU.7685.94;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЦЕПКИН;Олег;Владимирович;Олег Владимирович ЦЕПКИН;;M;;;136831;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136829;EU.7685.94;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TSEPKIN;Oleg;Vladimirovich;Oleg Vladimirovich TSEPKIN;;M;;Member of the Federation Council;136832;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136829;EU.7685.94;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleg Vladimirovitj TSEPKIN;SV;;;;137318;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136829;EU.7685.94;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-09-15;15;9;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;136830;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136833;EU.7686.93;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Андрей Aндреевич ГУРЬЕВ;;M;;;136836;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136833;EU.7686.93;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Andrey Andreevich GURYEV;;M;;CEO and Chairman of the Management Board of PJSC PhosAgro\n\nHas worked at PhosAgro since 2004, holding various positions\n\nMember of the Management Board Bureau of the Russian Union of Industrialists and Entrepreneurs (RUIE) since 30 September 2019;136837;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136833;EU.7686.93;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Andrej Andrejevič GURJEV;SL;;;;137363;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136833;EU.7686.93;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;Andrej Andrejevitj GURJEV;SV;;;;137364;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136833;EU.7686.93;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-03-07;7;3;1982;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;136834;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136833;EU.7686.93;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;136835;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC +28/10/2022;136838;EU.7687.92;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТАЛАБАЕВА;Людмила;Заумовна;Людмила Заумовна ТАЛАБАЕВА;RU;F;;;136840;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136838;EU.7687.92;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TALABAYEVA;Lyudmila;Zaumovna;Lyudmila Zaumovna TALABAYEVA;;F;;Member of the Federation Council;136841;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136838;EU.7687.92;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ljudmila Zaumovna TALABAJEVA;SV;;;;137319;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136838;EU.7687.92;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-06-06;6;6;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;136839;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136842;EU.7688.91;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТАРАКАНОВ;Павел;Владимирович;Павел Владимирович ТАРАКАНОВ;RU;M;;;136844;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136842;EU.7688.91;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TARAKANOV;Pavel;Vladimirovich;Pavel Vladimirovich TARAKANOV;;M;;Member of the Federation Council;136845;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136842;EU.7688.91;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Pavel Vladimirovitj TARAKANOV;SV;;;;137320;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136842;EU.7688.91;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-06-21;21;6;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;136843;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136846;EU.7689.90;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ТКАЧ;Олег;Поликарпович;Олег Поликарпович ТКАЧ;RU;M;;;136848;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136846;EU.7689.90;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;TKACH;Oleg;Polikarpovich;Oleg Polikarpovich TKACH;;M;;Member of the Federation Council;136849;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136846;EU.7689.90;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleg Polikarpovitj TKATJ;SV;;;;137323;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136846;EU.7689.90;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-09-23;23;9;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;136847;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136850;EU.7690.68;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СЕМЁНОВ;Валерий;Владимирович;Валерий Владимирович СЕМЁНОВ;;M;;;136852;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136850;EU.7690.68;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SEMYONOV;Valery;Vladimirovich;Valery Vladimirovich SEMYONOV;;M;;Member of the Federation Council;136853;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136850;EU.7690.68;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Valerij Vladimirovitj SEMJONOV;SV;;;;137324;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136850;EU.7690.68;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-09-16;16;9;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;136851;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136854;EU.7691.67;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СЕМИСОТОВ;Николай;Петрович;Николай Петрович СЕМИСОТОВ;RU;M;;;136856;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136854;EU.7691.67;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SEMISOTOV;Nikolai;Petrovich;Nikolai Petrovich SEMISOTOV;;M;;Member of the Federation Council;136857;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136854;EU.7691.67;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikolaj Petrovitj SEMISOTOV;SV;;;;137325;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136854;EU.7691.67;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-12-02;2;12;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;136855;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136858;EU.7692.66;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Дмитрий Владимирович КОНОВ;;M;;;136860;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136858;EU.7692.66;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KONOV;Dmitry;Vladimirovich;Dmitry Vladimirovich KONOV;;M;;"Former Chairman of the Management Board of PJSC SIBUR Holding\n\nServed in the Treasury Department of OAO NK YUKOS; held various positions at AKB Trust and Investment Bank, including Vice President – Head of the Investment Banking Department and Managing Director of Corporate Finance Department; was a member of the Board of Directors of OAO Gazprom neftekhim Salavat and OAO Gazprombank";136861;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136858;EU.7692.66;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Vladimirovitj KONOV;SV;;;;137366;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136858;EU.7692.66;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-09-02;2;9;1970;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;136859;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136858;EU.7692.66;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;137402;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC +28/10/2022;136862;EU.7693.65;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;САФИН;Ленар;Ринатович;Ленар Ринатович САФИН;RU;M;;;136864;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136862;EU.7693.65;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SAFIN;Lenar;Rinatovich;Lenar Rinatovich SAFIN;;M;;Member of the Federation Council;136865;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136862;EU.7693.65;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Lenar Rinatovitj SAFIN;SV;;;;137326;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136862;EU.7693.65;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-02-11;11;2;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;136863;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136866;EU.7694.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СОЛОДУН;Галина;Николаевна;Галина Николаевна СОЛОДУН;;F;;;136868;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136866;EU.7694.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SOLODUN;Galina;Nikolayevna;Galina Nikolayevna SOLODUN;;F;;Member of the Federation Council;136869;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136866;EU.7694.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Galina Nikolajevna SOLODUN;SV;;;;137327;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136866;EU.7694.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-01-26;26;1;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;136867;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136870;EU.7695.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Никита Дмитриевич МАЗЕПИН;RU;M;;;136873;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136870;EU.7695.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MAZEPIN;Nikita;Dmitrievich;Nikita Dmitrievich MAZEPIN;;M;;Former Russian racing driver for Haas F1 Team in the 2022 Formula One World Championship under a neutral flag representing the Russian Automobile Federation;136874;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136870;EU.7695.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nikita Dmitrijevitj MAZEPIN;SV;;;;137368;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136870;EU.7695.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1999-03-02;2;3;1999;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;136871;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136870;EU.7695.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;136872;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC +28/10/2022;136875;EU.7696.62;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОСИХИНА;Наталия;Владимировна;Наталия Владимировна КОСИХИНА;RU;F;;;136877;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136875;EU.7696.62;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOSYKHINA;Natalia;Vladimirovna;Natalia Vladimirovna KOSYKHINA;;F;;Member of the Federation Council;136878;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136875;EU.7696.62;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Natalija Vladimirovna KOSICHINA;SV;;;;137257;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136875;EU.7696.62;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-08-07;7;8;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;136876;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136879;EU.7697.61;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КУЛИКОВСКИХ;Нина;Германовна;Нина Германовна КУЛИКОВСКИХ;RU;F;;;136881;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136879;EU.7697.61;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KULIKOVSKIH;Nina;Germanovna;Nina Germanovna KULIKOVSKIH;;F;;Member of the Federation Council;136882;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136879;EU.7697.61;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Nina Germanovna KULIKOVSKICH;SV;;;;137258;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136879;EU.7697.61;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-02-05;5;2;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;136880;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136883;EU.7698.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ШУМИЛОВА;Елена;Борисовна;Елена Борисовна ШУМИЛОВА;RU;F;;;136885;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136883;EU.7698.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHUMILOVA;Elena;Borisovna;Elena Borisovna SHUMILOVA;;F;;Member of the Federation Council;136886;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136883;EU.7698.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jelena Borisovna SJUMILOVA;SV;;;;137328;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136883;EU.7698.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-04-01;1;4;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;136884;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136887;EU.7699.59;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ХОХЛОВА;Ольга;Николаевна;Ольга Николаевна ХОХЛОВА;RU;F;;;136889;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136887;EU.7699.59;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KHOKHLOVA;Olga;Nikolayevna;Olga Nikolayevna KHOKHLOVA;;F;;Member of the Federation Council;136890;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136887;EU.7699.59;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Olga Nikolajevna CHOCHLOVA;SV;;;;137259;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136887;EU.7699.59;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-11-18;18;11;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;136888;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136891;EU.7700.65;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ШЕЙКИН;Артём;Геннадьевич;Артём Геннадьевич ШЕЙКИН;;M;;;136893;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136891;EU.7700.65;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHEIKIN;Artem;Gennadyevich;Artem Gennadyevich SHEIKIN;;M;;Member of the Federation Council;136894;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136891;EU.7700.65;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Artiom Gennadjevitj SJEJKIN;SV;;;;137331;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136891;EU.7700.65;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-03-25;25;3;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;136892;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136895;EU.7701.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ШИРОКОВ;Анатолий;Иванович;Анатолий Иванович ШИРОКОВ;;M;;;136897;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136895;EU.7701.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHIROKOV;Anatoly;Ivanovich;Anatoly Ivanovich SHIROKOV;;M;;Member of the Federation Council;136898;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136895;EU.7701.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anatolij Ivanovitj SJIROKOV;SV;;;;137334;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136895;EU.7701.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-12-29;29;12;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;136896;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136899;EU.7702.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КИСЛЯК;Сергей;Иванович;Сергей Иванович КИСЛЯК;RU;M;;;136901;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136899;EU.7702.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KISLYAK;Sergei;Ivanovich;Sergei Ivanovich KISLYAK;;M;;Member of the Federation Council;136902;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136899;EU.7702.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Ivanovitj KISLJAK;SV;;;;137260;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136899;EU.7702.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-09-07;7;9;1950;;;NO;GREGORIAN;;;;;00;UNKNOWN;136900;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136903;EU.7703.62;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;САВИН;Александр;Александрович;Александр Александрович САВИН;;M;;;136905;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136903;EU.7703.62;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SAVIN;Alexander;Alexandrovich;Alexander Alexandrovich SAVIN;;M;;Member of the Federation Council;136906;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136903;EU.7703.62;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Aleksandrovitj SAVIN;SV;;;;137335;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136903;EU.7703.62;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-01-28;28;1;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;136904;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136907;EU.7704.61;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;САХАРОВА;Татьяна;Анатольевна;Татьяна Анатольевна САХАРОВА;RU;F;;;136909;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136907;EU.7704.61;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SAKHAROVA;Tatiana;Anatolyevna;Tatiana Anatolyevna SAKHAROVA;;F;;Member of the Federation Council;136910;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136907;EU.7704.61;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Tatiana Anatoljevna SACHAROVA;SV;;;;137336;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136907;EU.7704.61;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-06-16;16;6;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;136908;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136911;EU.7705.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СКАКОВСКАЯ;Людмила;Николаевна;Людмила Николаевна СКАКОВСКАЯ;;F;;;136913;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136911;EU.7705.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SKAKOVSKAYA;Lyudmila;Nikolayevna;Lyudmila Nikolayevna SKAKOVSKAYA;;F;;Member of the Federation Council;136914;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136911;EU.7705.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ljudmila Nikolajevna SKAKOVSKAJA;SV;;;;137341;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136911;EU.7705.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-11-13;13;11;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;136912;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136915;EU.7706.59;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КОЛБИН;Сергей;Николаевич;Сергей Николаевич КОЛБИН;RU;M;;;136917;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136915;EU.7706.59;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KOLBIN;Sergey;Nikolayevich;Sergey Nikolayevich KOLBIN;;M;;Member of the Federation Council;136918;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136915;EU.7706.59;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Nikolajevitj KOLBIN;SV;;;;137261;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136915;EU.7706.59;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-10-29;29;10;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;136916;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136919;EU.7707.58;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;КРАВЧЕНКО;Владимир;Казимирович;Владимир Казимирович КРАВЧЕНКО;RU;M;;;136921;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136919;EU.7707.58;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KRAVCHENKO;Vladimir;Kasimirovich;Vladimir Kasimirovich KRAVCHENKO;;M;;Member of the Federation Council;136922;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136919;EU.7707.58;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Kazimirovitj KRAVTJENKO;SV;;;;137262;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136919;EU.7707.58;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-06-12;12;6;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;136920;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136923;EU.7708.57;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛЕДКОВ;Григорий;Петрович;Григорий Петрович ЛЕДКОВ;RU;M;;;136925;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136923;EU.7708.57;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LEDKOV;Grigory;Petrovich;Grigory Petrovich LEDKOV;;M;;Member of the Federation Council;136926;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136923;EU.7708.57;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Grigorij Petrovitj LEDKOV;SV;;;;137263;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136923;EU.7708.57;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-03-26;26;3;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;136924;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136927;EU.7709.56;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СВЯТЕНКО;Инна;Юрьевна;Инна Юрьевна СВЯТЕНКО;;F;;;136929;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136927;EU.7709.56;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SVYATENKO;Inna;Yuryevna;Inna Yuryevna SVYATENKO;;F;;Member of the Federation Council;136930;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136927;EU.7709.56;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Inna Jurjevna SVJATENKO;SV;;;;137344;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136927;EU.7709.56;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-09-06;6;9;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;136928;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136931;EU.7710.34;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛЕБЕДЕВ;Владимир;Альбертович;Владимир Альбертович ЛЕБЕДЕВ;RU;M;;;136933;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136931;EU.7710.34;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LEBEDEV;Vladimir;Albertovich;Vladimir Albertovich LEBEDEV;;M;;Member of the Federation Council;136934;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136931;EU.7710.34;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Albertovitj LEBEDEV;SV;;;;137264;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136931;EU.7710.34;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-04-23;23;4;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;136932;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136935;EU.7711.33;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЛАЗУТКИНА;Юлия;Викторовна;Юлия Викторовна ЛАЗУТКИНА;RU;F;;;136937;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136935;EU.7711.33;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;LAZUTKINA;Yulia;Viktorovna;Yulia Viktorovna LAZUTKINA;;F;;Member of the Federation Council;136938;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136935;EU.7711.33;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Julija Viktorovna LAZUTKINA;SV;;;;137265;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136935;EU.7711.33;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-03-11;11;3;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;136936;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136939;EU.7712.32;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;САВЧЕНКО;Евгений;Степанович;Евгений Степанович САВЧЕНКО;;M;;;136941;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136939;EU.7712.32;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SAVCHENKO;Evgeny;Stepanovich;Evgeny Stepanovich SAVCHENKO;;M;;Member of the Federation Council;136942;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136939;EU.7712.32;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jevgenij Stepanovitj SAVTJENKO;SV;;;;137345;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136939;EU.7712.32;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-04-08;8;4;1950;;;NO;GREGORIAN;;;;;00;UNKNOWN;136940;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136943;EU.7713.31;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МАЙОРОВ;Алексей;Петрович;Алексей Петрович МАЙОРОВ;RU;M;;;136945;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136943;EU.7713.31;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MAYOROV;Alexei;Petrovich;Alexei Petrovich MAYOROV;;M;;Member of the Federation Council;136946;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136943;EU.7713.31;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Petrovitj MAJOROV;SV;;;;137266;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136943;EU.7713.31;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-12-29;29;12;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;136944;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136947;EU.7714.30;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МОРОЗОВ;Игорь;Николаевич;Игорь Николаевич МОРОЗОВ;RU;M;;;136949;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136947;EU.7714.30;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MOROZOV;Igor;Nikolayevich;Igor Nikolayevich MOROZOV;;M;;Member of the Federation Council;136950;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136947;EU.7714.30;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Igor Nikolajevitj MOROZOV;SV;;;;137267;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136947;EU.7714.30;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-10-13;13;10;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;136948;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136951;EU.7715.29;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АКИМОВ;Александр;Константинович;Александр Константинович АКИМОВ;RU;M;;;136953;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136951;EU.7715.29;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;AKIMOV;Alexander;Konstantinovich;Alexander Konstantinovich AKIMOV;;M;;Member of the Federation Council;136954;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136951;EU.7715.29;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Konstantinovitj AKIMOV;SV;;;;137369;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136951;EU.7715.29;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-11-10;10;11;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;136952;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136955;EU.7716.28;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МИТИН;Сергей;Герасимович;Сергей Герасимович МИТИН;RU;M;;;136957;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136955;EU.7716.28;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MITIN;Sergei;Gerasimovich;Sergei Gerasimovich MITIN;;M;;Member of the Federation Council;136958;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136955;EU.7716.28;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Gerasimovitj MITIN;SV;;;;137268;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136955;EU.7716.28;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-06-14;14;6;1951;;;NO;GREGORIAN;;;;;00;UNKNOWN;136956;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136959;EU.7717.27;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МУРАТОВ;Сергей;Николаевич;Сергей Николаевич МУРАТОВ;RU;M;;;136961;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136959;EU.7717.27;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MURATOV;Sergey;Nikolayevich;Sergey Nikolayevich MURATOV;;M;;Member of the Federation Council;136962;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136959;EU.7717.27;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Nikolajevitj MURATOV;SV;;;;137269;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136959;EU.7717.27;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-01-13;13;1;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;136960;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136963;EU.7718.26;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АБРАМОВ;Иван;Николаевич;Иван Николаевич АБРАМОВ;RU;M;;;136965;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136963;EU.7718.26;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ABRAMOV;Ivan;Nikolayevich;Ivan Nikolayevich ABRAMOV;;M;;Member of the Federation Council;136966;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136963;EU.7718.26;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Ivan Nikolajevitj ABRAMOV;SV;;;;137370;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136963;EU.7718.26;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-06-16;16;6;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;136964;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136967;EU.7719.25;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МУХАМЕТШИН;Фарит;Мубаракшевич;Фарит Мубаракшевич МУХАМЕТШИН;RU;M;;;136969;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136967;EU.7719.25;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MUKHAMETSHIN;Farit;Mubarakshevich;Farit Mubarakshevich MUKHAMETSHIN;;M;;Member of the Federation Council;136970;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136967;EU.7719.25;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Farit Mubaraksjevitj MUCHAMETSJIN;SV;;;;137270;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136967;EU.7719.25;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947-01-31;31;1;1947;;;NO;GREGORIAN;;;;;00;UNKNOWN;136968;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136971;EU.7720.3;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МИХАЙЛОВ;Сергей;Петрович;Сергей Петрович МИХАЙЛОВ;RU;M;;;136973;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136971;EU.7720.3;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MIKHAILOV;Sergei;Patrovich;Sergei Patrovich MIKHAILOV;;M;;Member of the Federation Council;136974;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136971;EU.7720.3;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Petrovitj MICHAJLOV;SV;;;;137271;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136971;EU.7720.3;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-05-22;22;5;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;136972;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136975;EU.7721.2;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АХМАДОВ;Мохмад;Исаевич;Мохмад Исаевич АХМАДОВ;RU;M;;;136977;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136975;EU.7721.2;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;AKHMADOV;Mohmad;Isaevich;Mohmad Isaevich AKHMADOV;;M;;Member of the Federation Council;136978;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136975;EU.7721.2;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Mochmad Isajevitj ACHMADOV;SV;;;;137371;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136975;EU.7721.2;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-04-17;17;4;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;136976;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136979;EU.7722.1;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МАРТЫНОВ;Сергей;Александрович;Сергей Александрович МАРТЫНОВ;RU;M;;;136981;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136979;EU.7722.1;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MARTYNOV;Sergey;Alexandrovich;Sergey Alexandrovich MARTYNOV;;M;;Member of the Federation Council;136982;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136979;EU.7722.1;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Aleksandrovitj MARTYNOV;SV;;;;137272;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136979;EU.7722.1;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-08-22;22;8;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;136980;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136983;EU.7723.0;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;САВЕЛЬЕВ;Дмитрий;Владимирович;Дмитрий Владимирович САВЕЛЬЕВ;RU;M;;;136985;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136983;EU.7723.0;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SAVELYEV;Dmitry;Vladimirovich;Dmitry Vladimirovich SAVELYEV;;M;;Member of the Federation Council;136986;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136983;EU.7723.0;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Vladimirovitj SAVELJEV;SV;;;;137348;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136983;EU.7723.0;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-08-03;3;8;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;136984;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136987;EU.7724.96;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;МАМСУРОВ;Таймураз;Дзамбекович;Таймураз Дзамбекович МАМСУРОВ;;M;;;136989;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136987;EU.7724.96;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;MAMSUROV;Taimuraz;Dzhambekovich;Taimuraz Dzhambekovich MAMSUROV;;M;;Member of the Federation Council;136990;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136987;EU.7724.96;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Tajmuraz Dzambekovitj MAMSUROV;SV;;;;137273;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136987;EU.7724.96;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-04-13;13;4;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;136988;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136991;EU.7725.95;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;НАРОЛИН;Александр;Владимирович;Александр Владимирович НАРОЛИН;RU;M;;;136993;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136991;EU.7725.95;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;NAROLIN;Alexander;Vladimirovich;Alexander Vladimirovich NAROLIN;;M;;Member of the Federation Council;136994;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136991;EU.7725.95;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Vladimirovitj NAROLIN;SV;;;;137274;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136991;EU.7725.95;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-06-27;27;6;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;136992;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136995;EU.7726.94;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АРЕНИН;Сергей;Петрович;Сергей Петрович АРЕНИН;RU;M;;;136997;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136995;EU.7726.94;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ARENIN;Sergei;Petrovich;Sergei Petrovich ARENIN;;M;;Member of the Federation Council;136998;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136995;EU.7726.94;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Petrovitj ARENIN;SV;;;;137376;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136995;EU.7726.94;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-08-29;29;8;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;136996;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136999;EU.7727.93;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;НИКИТИН;Александр;Валерьевич;Александр Валерьевич НИКИТИН;RU;M;;;137001;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136999;EU.7727.93;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;NIKITIN;Alexander;Valeryevich;Alexander Valeryevich NIKITIN;;M;;Member of the Federation Council;137002;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136999;EU.7727.93;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Valerjevitj NIKITIN;SV;;;;137275;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;136999;EU.7727.93;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-04-26;26;4;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;137000;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137003;EU.7728.92;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;НЕВЗОРОВ;Борис;Александрович;Борис Александрович НЕВЗОРОВ;RU;M;;;137005;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137003;EU.7728.92;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;NEVZOROV;Boris;Alexandrovich;Boris Alexandrovich NEVZOROV;;M;;Member of the Federation Council;137006;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137003;EU.7728.92;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Boris Aleksandrovitj NEVZOROV;SV;;;;137276;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137003;EU.7728.92;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-09-21;21;9;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;137004;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137007;EU.7729.91;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;НОВОЖИЛОВ;Виктор;Феодосьевич;Виктор Феодосьевич НОВОЖИЛОВ;RU;M;;;137009;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137007;EU.7729.91;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;NOVOZHILOV;Viktor;Feodosyevich;Viktor Feodosyevich NOVOZHILOV;;M;;Member of the Federation Council;137010;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137007;EU.7729.91;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Feodosievitj NOVOZJILOV;SV;;;;137277;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137007;EU.7729.91;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-02-16;16;2;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;137008;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137011;EU.7730.69;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АРХАРОВ;Юрий;Викторович;Юрий Викторович АРХАРОВ;RU;M;;;137013;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137011;EU.7730.69;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ARKHAROV;Yuri;Viktorovich;Yuri Viktorovich ARKHAROV;;M;;Member of the Federation Council;137014;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137011;EU.7730.69;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jurij Viktorovitj ARCHAROV;SV;;;;137377;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137011;EU.7730.69;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-06-13;13;6;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;137012;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137015;EU.7731.68;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;НОВЬЮХОВ;Александр;Вячеславович;Александр Вячеславович НОВЬЮХОВ;RU;M;;;137017;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137015;EU.7731.68;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;NOVIUKHOV;Alexander;Vyacheslavovich;Alexander Vyacheslavovich NOVIUKHOV;;M;;Member of the Federation Council;137018;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137015;EU.7731.68;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Vjatjeslavovitj NOVJUCHOV;SV;;;;137278;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137015;EU.7731.68;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-10-05;5;10;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;137016;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137019;EU.7732.67;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ШЕВЧЕНКО;Андрей;Анатольевич;Андрей Анатольевич ШЕВЧЕНКО;RU;M;;;137021;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137019;EU.7732.67;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHEVCHENKO;Andrei;Anatolyevich;Andrei Anatolyevich SHEVCHENKO;;M;;Member of the Federation Council;137022;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137019;EU.7732.67;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Anatoljevitj SJEVTJENKO;SV;;;;137349;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137019;EU.7732.67;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-05-29;29;5;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;137020;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137023;EU.7733.66;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;НАГОВИЦЫН;Вячеслав;Владимирович;Вячеслав Владимирович НАГОВИЦЫН;RU;M;;;137025;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137023;EU.7733.66;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;NAGOVITSYN;Vyacheslav;Vladimirovich;Vyacheslav Vladimirovich NAGOVITSYN;;M;;Member of the Federation Council;137026;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137023;EU.7733.66;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vjatjeslav Vladimirovitj NAGOVITSYN;SV;;;;137279;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137023;EU.7733.66;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-03-02;2;3;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;137024;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137027;EU.7734.65;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АРТАМОНОВ;Анатолий;Дмитриевич;Анатолий Дмитриевич АРТАМОНОВ;RU;M;;;137029;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137027;EU.7734.65;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ARTAMONOV;Anatoly;Dmitrievich;Anatoly Dmitrievich ARTAMONOV;;M;;Member of the Federation Council;137030;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137027;EU.7734.65;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Anatolij Dmitrijevitj ARTAMONOV;SV;;;;137378;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137027;EU.7734.65;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-05-05;5;5;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;137028;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137031;EU.7735.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;СИНИЦЫН;Алексей;Владимирович;Алексей Владимирович СИНИЦЫН;RU;M;;;137033;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137031;EU.7735.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SINITSYN;Alexei;Vladimirovich;Alexei Vladimirovich SINITSYN;;M;;Member of the Federation Council;137034;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137031;EU.7735.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Vladimirovitj SINITSYN;SV;;;;137352;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137031;EU.7735.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-01-13;13;1;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;137032;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137035;EU.7736.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АФАНАСОВ;Михаил;Александрович;Михаил Александрович АФАНАСОВ;RU;M;;;137037;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137035;EU.7736.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;AFANASOV;Mikhail;Alexandrovich;Mikhail Alexandrovich AFANASOV;;M;;Member of the Federation Council;137038;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137035;EU.7736.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Michail Aleksandrovitj AFANASOV;SV;;;;137379;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137035;EU.7736.63;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-06-15;15;6;1953;;;NO;GREGORIAN;;;;;00;UNKNOWN;137036;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137039;EU.7737.62;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;САЛПАГАРОВ;Ахмат;Анзорович;Ахмат Анзорович САЛПАГАРОВ;RU;M;;;137041;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137039;EU.7737.62;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SALPAGAROV;Akhmat;Anzorovich;Akhmat Anzorovich SALPAGAROV;;M;;Member of the Federation Council;137042;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137039;EU.7737.62;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Achmat Anzorovitj SALPAGAROV;SV;;;;137353;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137039;EU.7737.62;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-12-31;31;12;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;137040;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137043;EU.7738.61;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АЛЕКСЕЕВ;Олег;Александрович;Олег Александрович АЛЕКСЕЕВ;RU;M;;;137045;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137043;EU.7738.61;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ALEKSEEV;Oleg;Aleksandrovich;Oleg Aleksandrovich ALEKSEEV;;M;;Member of the Federation Council;137046;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137043;EU.7738.61;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Oleg Aleksandrovitj ALEKSEJEV;SV;;;;137380;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137043;EU.7738.61;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-12-21;21;12;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;137044;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137047;EU.7739.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;РЯБУХИН;Сергей;Николаевич;Сергей Николаевич РЯБУХИН;RU;M;;;137049;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137047;EU.7739.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;RYABUKHIN;Sergey;Nikolayevich;Sergey Nikolayevich RYABUKHIN;;M;;Member of the Federation Council;137050;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137047;EU.7739.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Nikolajevitj RJABUCHIN;SV;;;;137354;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137047;EU.7739.60;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-11-13;13;11;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;137048;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137051;EU.7740.38;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;АФАНАСЬЕВА;Елена;Владимировна;Елена Владимировна АФАНАСЬЕВА;RU;F;;;137053;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137051;EU.7740.38;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;AFANASEVA;Yelena;Vladimirovna;Yelena Vladimirovna AFANASEVA;;F;;Member of the Federation Council;137054;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137051;EU.7740.38;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jelena Vladimirovna AFANASIEVA;SV;;;;137381;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137051;EU.7740.38;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-03-27;27;3;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;137052;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137059;EU.7742.36;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;РУКАВИШНИКОВА;Ирина;Валерьевна;Ирина Валерьевна РУКАВИШНИКОВА;RU;F;;;137061;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137059;EU.7742.36;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;RUKAVISHNIKOVA;Irina;Valeryevna;Irina Valeryevna RUKAVISHNIKOVA;;F;;Member of the Federation Council;137062;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137059;EU.7742.36;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Irina Valerjevna RUKAVISJNIKOVA;SV;;;;137357;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137059;EU.7742.36;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-02-03;3;2;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;137060;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137063;EU.7743.35;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БАШКИН;Александр;Давыдович;Александр Давыдович БАШКИН;RU;M;;;137065;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137063;EU.7743.35;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BASHKIN;Alexander;Davidovich;Alexander Davidovich BASHKIN;;M;;Member of the Federation Council;137066;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137063;EU.7743.35;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Davydovitj BASJKIN;SV;;;;137382;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137063;EU.7743.35;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-06-10;10;6;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;137064;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137071;EU.7745.33;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;РАПОТА;Григорий;Алексеевич;Григорий Алексеевич РАПОТА;RU;M;;;137073;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137071;EU.7745.33;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;RAPOTA;Grigoriy;Alexeyevich;Grigoriy Alexeyevich RAPOTA;;M;;Member of the Federation Council;137074;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137071;EU.7745.33;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Grigorij Alexejevitj RAPOTA;SV;;;;137358;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137071;EU.7745.33;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944-02-05;5;2;1944;;;NO;GREGORIAN;;;;;00;UNKNOWN;137072;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137075;EU.7746.32;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БАЗИЛЕВСКИЙ;Андрей;Александрович;Андрей Александрович БАЗИЛЕВСКИЙ;RU;M;;;137077;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137075;EU.7746.32;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BAZILEVSKY;Andrey;Alexandrovich;Andrey Alexandrovich BAZILEVSKY;;M;;Member of the Federation Council;137078;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137075;EU.7746.32;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Aleksandrovitj BAZILEVSKIJ;SV;;;;137383;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137075;EU.7746.32;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-02-24;24;2;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;137076;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137079;EU.7747.31;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БАРАХОЕВ;Мухарбек;Ойбертович;Мухарбек Ойбертович БАРАХОЕВ;RU;M;;;137081;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137079;EU.7747.31;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BARAKHOYEV;Mukharbek;Oybertovich;Mukharbek Oybertovich BARAKHOYEV;;M;;Member of the Federation Council;137082;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137079;EU.7747.31;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Micharbek Ojbertovitj BARACHOJEV;SV;;;;137384;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137079;EU.7747.31;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-01-04;4;1;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;137080;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137083;EU.7748.30;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ОРЛОВ;Алексей;Маратович;Алексей Маратович ОРЛОВ;RU;M;;;137085;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137083;EU.7748.30;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ORLOV;Alexei;Maratovich;Alexei Maratovich ORLOV;;M;;Member of the Federation Council;137086;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137083;EU.7748.30;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksej Maratovitj ORLOV;SV;;;;137280;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137083;EU.7748.30;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-10-09;9;10;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;137084;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137087;EU.7749.29;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ОЮН;Дина;Ивановна;Дина Ивановна ОЮН;RU;F;;;137089;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137087;EU.7749.29;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;OYUN;Dina;Ivanovna;Dina Ivanovna OYUN;;F;;Member of the Federation Council;137090;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137087;EU.7749.29;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dina Ivanovna OJUN;SV;;;;137281;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137087;EU.7749.29;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-06-25;25;6;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;137088;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137091;EU.7750.7;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ОТКЕ;Анна;Ивановна;Анна Ивановна ОТКЕ;RU;F;;;137093;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137091;EU.7750.7;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;OTKE;Anna;Ivanovna;Anna Ivanovna OTKE;;F;;Member of the Federation Council;137094;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137091;EU.7750.7;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-12-21;21;12;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;137092;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137095;EU.7751.6;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БЕЗДЕНЕЖНЫХ;Сергей;Вячеславович;Сергей Вячеславович БЕЗДЕНЕЖНЫХ;RU;M;;;137097;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137095;EU.7751.6;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BEZDENEZHNYKH;Sergei;Vyacheslavovich;Sergei Vyacheslavovich BEZDENEZHNYKH;;M;;Member of the Federation Council;137098;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137095;EU.7751.6;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Vjatjeslavovitj BEZDENEZJNYCH;SV;;;;137385;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137095;EU.7751.6;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-08-25;25;8;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;137096;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137099;EU.7752.5;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ОРДЕНОВ;Геннадий;Иванович;Геннадий Иванович ОРДЕНОВ;;M;;;137101;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137099;EU.7752.5;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ORDENOV;Gennady;Ivanovich;Gennady Ivanovich ORDENOV;;M;;Member of the Federation Council;137102;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137099;EU.7752.5;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Gennadij Ivanovitj ORDENOV;SV;;;;137282;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137099;EU.7752.5;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-09-04;4;9;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;137100;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137103;EU.7753.4;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПРОНЮШКИН;Александр;Юрьевич;Александр Юрьевич ПРОНЮШКИН;RU;M;;;137105;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137103;EU.7753.4;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PRONYUSHKIN;Alexander;Yuryevich;Alexander Yuryevich PRONYUSHKIN;;M;;Member of the Federation Council;137106;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137103;EU.7753.4;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Jurjevitj PRONJUSJKIN;SV;;;;137283;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137103;EU.7753.4;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-07-31;31;7;1987;;;NO;GREGORIAN;;;;;00;UNKNOWN;137104;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137107;EU.7754.3;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БОНДАРЕВ;Виктор;Николаевич;Виктор Николаевич БОНДАРЕВ;RU;M;;;137109;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137107;EU.7754.3;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BONDAREV;Viktor;Nikolayevich;Viktor Nikolayevich BONDAREV;;M;;Member of the Federation Council;137110;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137107;EU.7754.3;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Viktor Nikolajevitj BONDAREV;SV;;;;137386;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137107;EU.7754.3;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-12-07;7;12;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;137108;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137111;EU.7755.2;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПЕРМИНОВ;Дмитрий;Сергеевич;Дмитрий Сергеевич ПЕРМИНОВ;RU;M;;;137113;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137111;EU.7755.2;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PERMINOV;Dmitry;Sergeyevich;Dmitry Sergeyevich PERMINOV;;M;;Member of the Federation Council;137114;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137111;EU.7755.2;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Dmitrij Sergejevitj PERMINOV;SV;;;;137284;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137111;EU.7755.2;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-04-03;3;4;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;137112;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137115;EU.7756.1;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПАВЛОВА;Маргарита;Николаевна;Маргарита Николаевна ПАВЛОВА;RU;F;;;137117;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137115;EU.7756.1;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PAVLOVA;Margarita;Nikolayevna;Margarita Nikolayevna PAVLOVA;;F;;Member of the Federation Council;137118;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137115;EU.7756.1;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Margarita Nikolajevna PAVLOVA;SV;;;;137285;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137115;EU.7756.1;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-01-22;22;1;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;137116;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137119;EU.7757.0;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БОРИСОВ;Егор;Афанасьевич;Егор Афанасьевич БОРИСОВ;RU;M;;;137121;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137119;EU.7757.0;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BORISOV;Yegor;Afanasyevich;Yegor Afanasyevich BORISOV;;M;;Member of the Federation Council;137122;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137119;EU.7757.0;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jegor Afanasievitj BORISOV;SV;;;;137387;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137119;EU.7757.0;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-08-15;15;8;1954;;;NO;GREGORIAN;;;;;00;UNKNOWN;137120;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137123;EU.7758.96;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПЕРМИНОВА;Елена;Алексеевна;Елена Алексеевна ПЕРМИНОВА;;F;;;137125;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137123;EU.7758.96;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PERMINOVA;Yelena;Alekseyevna;Yelena Alekseyevna PERMINOVA;;F;;Member of the Federation Council;137126;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137123;EU.7758.96;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jelena Aleksejevna PERMINOVA;SV;;;;137286;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137123;EU.7758.96;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-12-05;5;12;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;137124;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137127;EU.7759.95;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БРЫКСИН;Александр;Юрьевич;Александр Юрьевич БРЫКСИН;RU;M;;;137129;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137127;EU.7759.95;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BRYKSIN;Alexander;Yuryevich;Alexander Yuryevich BRYKSIN;;M;;Member of the Federation Council;137130;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137127;EU.7759.95;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Jurjevitj BRYKSIN;SV;;;;137388;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137127;EU.7759.95;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-01-20;20;1;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;137128;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137135;EU.7761.72;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПИСАРЕВА;Елена;Владимировна;Елена Владимировна ПИСАРЕВА;;F;;;137137;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137135;EU.7761.72;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PISAREVA;Elena;Vladimirovna;Elena Vladimirovna PISAREVA;;F;;Member of the Federation Council;137138;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137135;EU.7761.72;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jelena Vladimirovna PISAREVA;SV;;;;137288;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137135;EU.7761.72;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-01-20;20;1;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;137136;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137139;EU.7762.71;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БЕЛОУСОВ;Михаил;Владимирович;Михаил Владимирович БЕЛОУСОВ;RU;M;;;137141;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137139;EU.7762.71;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BELOUSOV;Mikhail;Vladimirovich;Mikhail Vladimirovich BELOUSOV;;M;;Member of the Federation Council;137142;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137139;EU.7762.71;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Michail Vladimirovitj BELOUSOV;SV;;;;137389;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137139;EU.7762.71;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-10-11;11;10;1953;;;NO;GREGORIAN;;;;;00;UNKNOWN;137140;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137143;EU.7763.70;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПЕТИНА;Ирина;Александровна;Ирина Александровна ПЕТИНА;RU;F;;;137145;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137143;EU.7763.70;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PETINA;Irina;Alexandrovna;Irina Alexandrovna PETINA;;F;;Member of the Federation Council;137146;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137143;EU.7763.70;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Irina Aleksandrovna PETINA;SV;;;;137289;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137143;EU.7763.70;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-08-31;31;8;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;137144;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137147;EU.7764.69;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПЕРМИНОВ;Сергей;Николаевич;Сергей Николаевич ПЕРМИНОВ;RU;M;;;137149;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137147;EU.7764.69;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;PERMINOV;Sergey;Nikolayevich;Sergey Nikolayevich PERMINOV;;M;;Member of the Federation Council;137150;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137147;EU.7764.69;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Nikolajevitj PERMINOV;SV;;;;137290;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137147;EU.7764.69;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-09-16;16;9;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;137148;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137151;EU.7765.68;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ПОЛЕТАЕВ;Владимир;Владимирович;Владимир Владимирович ПОЛЕТАЕВ;RU;M;;;137153;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137151;EU.7765.68;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;POLETAYEV;Vladimir;Vladimirovich;Vladimir Vladimirovich POLETAYEV;;M;;Member of the Federation Council;137154;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137151;EU.7765.68;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Vladimirovitj POLETAJEV;SV;;;;137291;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137151;EU.7765.68;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-05-23;23;5;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;137152;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137155;EU.7766.67;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БЕРЁЗКИН;Сергей;Владимирович;Сергей Владимирович БЕРЁЗКИН;RU;M;;;137157;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137155;EU.7766.67;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BEREZKIN;Sergei;Vladimirovich;Sergei Vladimirovich BEREZKIN;;M;;Member of the Federation Council;137158;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137155;EU.7766.67;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sergej Vladimirovitj BERJOZKIN;SV;;;;137390;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137155;EU.7766.67;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-06-23;23;6;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;137156;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137159;EU.7767.66;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;РАКИТИН;Александр;Васильевич;Александр Васильевич РАКИТИН;RU;M;;;137161;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137159;EU.7767.66;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;RAKITIN;Alexander;Vasilyevich;Alexander Vasilyevich RAKITIN;;M;;Member of the Federation Council;137162;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137159;EU.7767.66;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Vasiljevitj RAKITIN;SV;;;;137292;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137159;EU.7767.66;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-05-17;17;5;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;137160;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137163;EU.7768.65;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БЕКЕТОВ;Владимир;Андреевич;Владимир Андреевич БЕКЕТОВ;RU;M;;;137165;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137163;EU.7768.65;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BEKETOV;Vladimir;Andreyevich;Vladimir Andreyevich BEKETOV;;M;;Member of the Federation Council;137166;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137163;EU.7768.65;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vladimir Andrejevitj BEKETOV;SV;;;;137391;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137163;EU.7768.65;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-03-29;29;3;1949;;;NO;GREGORIAN;;;;;00;UNKNOWN;137164;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137167;EU.7769.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БИБИКОВА;Елена;Васильевна;Елена Васильевна БИБИКОВА;RU;F;;;137169;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137167;EU.7769.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BIBIKOVA;Yelena;Vasilyevna;Yelena Vasilyevna BIBIKOVA;;F;;Member of the Federation Council;137170;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137167;EU.7769.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Jelena Vasiljevna BIBIKOVA;SV;;;;137392;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137167;EU.7769.64;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-09-23;23;9;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;137168;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137171;EU.7770.42;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЧЕРНЫШЁВ;Андрей;Владимирович;Андрей Владимирович ЧЕРНЫШЁВ;RU;M;;;137173;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137171;EU.7770.42;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;CHERNYSHEV;Andrey;Vladimirovich;Andrey Vladimirovich CHERNYSHEV;;M;;Member of the Federation Council;137174;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137171;EU.7770.42;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Andrej Vladimirovitj TJERNYSJOV;SV;;;;137393;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137171;EU.7770.42;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-07-10;10;7;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;137172;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137175;EU.7771.41;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДВОЙНЫХ;Александр;Владимирович;Александр Владимирович ДВОЙНЫХ;RU;M;;;137177;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137175;EU.7771.41;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DVOINYKH;Alexander;Vlademirovich;Alexander Vlademirovich DVOINYKH;;M;;Member of the Federation Council;137178;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137175;EU.7771.41;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Aleksandr Vladimirovitj DVOJNYCH;SV;;;;137394;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137175;EU.7771.41;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-01-19;19;1;1984;;;NO;GREGORIAN;;;;;00;UNKNOWN;137176;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137179;EU.7772.40;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДЕНЬГИН;Вадим;Евгеньевич;Вадим Евгеньевич ДЕНЬГИН;RU;M;;;137181;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137179;EU.7772.40;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DENGIN;Vadim;Yevgenyevich;Vadim Yevgenyevich DENGIN;;M;;Member of the Federation Council;137182;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137179;EU.7772.40;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Vadim Jevgenjevitj DENGIN;SV;;;;137395;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137179;EU.7772.40;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-09-23;23;9;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;137180;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137183;EU.7773.39;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ДОЛГОВ;Константин;Константинович;Константин Константинович ДОЛГОВ;RU;M;;;137185;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137183;EU.7773.39;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;DOLGOV;Konstantin;Konstantinovich;Konstantin Konstantinovich DOLGOV;;M;;Member of the Federation Council;137186;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137183;EU.7773.39;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Konstantin Konstantinovitj DOLGOV;SV;;;;137396;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137183;EU.7773.39;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-08-12;12;8;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;137184;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137187;EU.7774.38;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЕМЕЛЬЯНОВ;Геннадий;Егорович;Геннадий Егорович ЕМЕЛЬЯНОВ;RU;M;;;137189;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137187;EU.7774.38;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;EMELYANOV;Gennady;Egorovich;Gennady Egorovich EMELYANOV;;M;;Member of the Federation Council;137190;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137187;EU.7774.38;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Gennadij Jegorovitj JEMELJANOV;SV;;;;137397;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137187;EU.7774.38;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-01-01;1;1;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;137188;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137191;EU.7775.37;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ЕПИФАНОВА;Ольга;Николаевна;Ольга Николаевна ЕПИФАНОВА;RU;F;;;137193;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137191;EU.7775.37;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;EPIFANOVA;Olga;Nikolayevna;Olga Nikolayevna EPIFANOVA;;F;;Member of the Federation Council;137194;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137191;EU.7775.37;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Olga Nikolajevna JEPIFANOVA;SV;;;;137398;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137191;EU.7775.37;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-08-19;19;8;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;137192;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137195;EU.7776.36;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ФАДЗАЕВ;Арсен;Сулейманович;Арсен Сулейманович ФАДЗАЕВ;RU;M;;;137197;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137195;EU.7776.36;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;FADZAYEV;Arsen;Suleymanovich;Arsen Suleymanovich FADZAYEV;;M;;Member of the Federation Council;137198;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137195;EU.7776.36;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Arsen Sulejmanovitj FADZAJEV;SV;;;;137400;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137195;EU.7776.36;;2022-03-09;;(Date of UN designation: 2022-03-09);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-09-05;5;9;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;137196;EN;;amendment;council;2022-03-09;2022-03-09;2022/396 (OJ L80);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.080.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A080%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137652;EU.7792.75;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ABRAMOVICH;Roman;Arkadyevich;Roman Arkadyevich ABRAMOVICH;;M;;Oligarch close to Vladimir Putin. Major shareholder of steel group Evraz. Former governor of Chukotka.;137655;EN;Associated individuals: Vladimir Putin\nAssociated entities: Evraz Group SA, LLC Evraz Holding, Millhouse Capital;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137652;EU.7792.75;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Roman Arkadjevitj ABRAMOVITJ;SV;;;;137834;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137652;EU.7792.75;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Роман Аркадьевич АБРАМОВИЧ;RU;M;;;137835;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137652;EU.7792.75;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;Moscow;1, Lipovaya Aleya, Nemchinovo, Odinstvo district;;;;;NO;;RU;RUSSIAN FEDERATION;142162;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137652;EU.7792.75;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-10-24;24;10;1966;;;NO;GREGORIAN;;;;Saratov;RU;RUSSIAN FEDERATION;137653;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137652;EU.7792.75;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;137654;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC +28/10/2022;137656;EU.7793.74;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;German Borisovich KHAN;;M;;Oligarch close to Vladimir Putin. One of the main shareholders of the Alfa Group;137659;EN;Associated individuals: Vladimir Putin,\nMikhail Fridman, Petr Aven, Alexey\nKuzmichev\nAssociated entities: Alfa Group, Alfa Bank;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137656;EU.7793.74;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;German Borisovitj CHAN;SV;;;;137836;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137656;EU.7793.74;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Герман Борисович Хан;RU;M;;;137837;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137656;EU.7793.74;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-10-24;24;10;1961;;;NO;GREGORIAN;;;;Kyiv;UA;UKRAINE;137657;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137656;EU.7793.74;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;137658;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC +28/10/2022;137660;EU.7794.73;;2022-03-15;;(Date of UN designation: 2022-03-15)\n(Corrigendum 2022/427 (OJ L87I) [corr. 04/04/2022-1]);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Viktor Filippovich RASHNIKOV;;M;;Oligarch. owner, chairman of the Board of Directors and chairman of the Committee for Strategic Planning of the Magnitogorsk Iran & Steel Works (MMK).;137663;EN;Associated entities: Magnitogorsk Iron & Steel Works (MMK);amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137660;EU.7794.73;;2022-03-15;;(Date of UN designation: 2022-03-15)\n(Corrigendum 2022/427 (OJ L87I) [corr. 04/04/2022-1]);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Viktor Filippovitj RASJNIKOV;SV;;;;137838;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137660;EU.7794.73;;2022-03-15;;(Date of UN designation: 2022-03-15)\n(Corrigendum 2022/427 (OJ L87I) [corr. 04/04/2022-1]);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Виктор Филиппович Рашников;RU;M;;;137839;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137660;EU.7794.73;;2022-03-15;;(Date of UN designation: 2022-03-15)\n(Corrigendum 2022/427 (OJ L87I) [corr. 04/04/2022-1]);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-10-13;13;10;1948;;;NO;GREGORIAN;;;;Magnitorsk;RU;RUSSIAN FEDERATION;137661;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137660;EU.7794.73;;2022-03-15;;(Date of UN designation: 2022-03-15)\n(Corrigendum 2022/427 (OJ L87I) [corr. 04/04/2022-1]);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;137662;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC +28/10/2022;137664;EU.7795.72;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Alexey Viktorovich KUZMICHEV;;M;;Oligarch close to Vladimir Putin. One of the main shareholders of the Alfa Group.;137667;EN;"Associated individuals: Vladimir Putin, Mikhail Fridman, Petr Aven, German Khan; Associated entities: Alfa Group, Alfa Bank";amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137664;EU.7795.72;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Alksej Viktorovitj KUZMITJOV;SV;;;;137840;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137664;EU.7795.72;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Алексей Викторович Кузьмичёв;RU;M;;;137841;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137664;EU.7795.72;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-10-15;15;10;1962;;;NO;GREGORIAN;;;;Kirov;RU;RUSSIAN FEDERATION;137665;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137664;EU.7795.72;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;137666;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC +28/10/2022;137672;EU.7797.70;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Alexander Nikolayevich SHOKHIN;;M;;"President of the Russian union of Industrialists and Entrepreneurs; Deputy Chairman of Mechel PAO's Board of Directors; Member of the Bureau of the Supreme Council of political party ""United Russia""";137675;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137672;EU.7797.70;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Aleksander Nikolajevitj SJOCHIN;SV;;;;137844;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137672;EU.7797.70;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Александр Николаевич ШОХИН;RU;M;;;137845;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137672;EU.7797.70;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-12-25;25;12;1951;;;NO;GREGORIAN;;;Kirillovsky District;Savinskoye;RU;RUSSIAN FEDERATION;137673;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137672;EU.7797.70;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;137674;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC +28/10/2022;137680;EU.7799.68;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Armen Sumbatovich GASPARYAN;;M;;Publicist, propagandist, member of “Russia Today” board;137683;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137680;EU.7799.68;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Armen Sumbatovitj GASPARJAN;SV;;;;137848;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137680;EU.7799.68;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Армен Сумбатович ГAСПАРЯН;RU;M;;;137849;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137680;EU.7799.68;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-07-04;4;7;1975;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;137681;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137680;EU.7799.68;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;137682;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC +28/10/2022;137684;EU.7800.74;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Artem Grigoryevich SHEYNIN;;M;;;137687;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137684;EU.7800.74;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Artyom Grigoryevich SHEYNIN;;M;;Russian propagandist and presenter of talk\nshow “Vremya Pokazhet” (“Time will tell”) on\nthe state-controlled Channel One (Russian:\nПервый канал);137688;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137684;EU.7800.74;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Artjem Grigorijevitj SJEJNIN;SV;;;;137850;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137684;EU.7800.74;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Artjom Grigorijevitj SJEJNIN;SV;;;;137851;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137684;EU.7800.74;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Артём Григорьевич ШЕЙНИН;RU;M;;;137852;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137684;EU.7800.74;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-01-26;26;1;1966;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;137685;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137684;EU.7800.74;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;137686;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC +28/10/2022;137689;EU.7801.73;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Dmitry Yevgenevich KULIKOV;;M;;Expert of the RF State Duma Committee on CIS Affairs and Relations with Compatriots.\nFilm producer, TV and radio presenter.\nMember of the Public Council under the Ministry of Defence of the Russian Federation;137692;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137689;EU.7801.73;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Dmitrij Jevgenevitj KULIKOV;SV;;;;137853;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137689;EU.7801.73;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Дмитрий Евгеньевич КУЛИКОВ;RU;M;;;137854;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137689;EU.7801.73;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-11-18;18;11;1967;;;NO;GREGORIAN;;Donbas region;;Shakhtyorsk;UA;UKRAINE;137690;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137689;EU.7801.73;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;137691;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC +28/10/2022;137693;EU.7802.72;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Konstantin Lvovich ERNST;;M;;CEO of Channel One Russia (Russian:\nПервый канал);137696;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137693;EU.7802.72;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Konstantin Lvovitj ERNST;SV;;;;137855;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137693;EU.7802.72;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Константин Львович ЭРНСТ;RU;M;;;137856;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137693;EU.7802.72;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-02-06;6;2;1961;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;137694;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137693;EU.7802.72;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;137695;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC +28/10/2022;137697;EU.7803.71;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Marina Vladimirovna SECHINA;;F;;"Owner of LLC ""Stankoflot";137700;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137697;EU.7803.71;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Marina Vladimirovna SETJINA;SV;;;;137857;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137697;EU.7803.71;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Марина Владимировна СЕЧИНА;RU;F;;;137858;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137697;EU.7803.71;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;137698;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137697;EU.7803.71;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;137699;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC +28/10/2022;137701;EU.7804.70;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Suleyman Abusaidovich KERIMOV;;M;;"Owner of the financial and industrial group Nafta Moscow; Member of the Council of the Federation from the Republic of Dagestan";137704;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137701;EU.7804.70;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Sulejman Abusajdovitj KERIMOV;SV;M;;;137859;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137701;EU.7804.70;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Сулейман Абусаидович КЕРИМОВ;RU;M;;;137860;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137701;EU.7804.70;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-03-12;12;3;1966;;;NO;GREGORIAN;;;Dagestan;Derbent;RU;RUSSIAN FEDERATION;137702;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137701;EU.7804.70;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;137703;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC +28/10/2022;137705;EU.7805.69;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;KHUDAVERDYAN;Tigran;Oganesovich;Tigran Oganesovich KHUDAVERDYAN;;M;;Former Executive Director and former Deputy CEO at Yandex NV;137708;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137705;EU.7805.69;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Tigran Oganesovitj CHUDAVERDJAN;SV;M;;;137861;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137705;EU.7805.69;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;ХУДАВЕРДЯН;Тигран;Оганесович;Тигран Оганесович ХУДАВЕРДЯН;RU;M;;;137862;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137705;EU.7805.69;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-12-28;28;12;1981;;;NO;GREGORIAN;;;;Yerevan;AM;ARMENIA;137706;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137705;EU.7805.69;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AM;;137707;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC +28/10/2022;137709;EU.7806.68;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Vladimir Valeryevich RASHEVSKIY;;M;;;137712;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137709;EU.7806.68;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Vladimir Valerievich RASHEVSKY;;M;;Chief Executive Officer & Director at EuroChem Group AG;137713;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137709;EU.7806.68;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Vladimir Valerievitj RASJEVSKIJ;SV;M;;;137863;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137709;EU.7806.68;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Владимир Валерьевич РАШЕВСКИЙ;RU;M;;;137864;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137709;EU.7806.68;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-09-29;29;9;1973;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;137710;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137709;EU.7806.68;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;137711;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC +28/10/2022;137714;EU.7807.67;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;RN AERO;;;;;137716;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137714;EU.7807.67;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;ROSNEFT AERO;;;;;137717;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137714;EU.7807.67;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Роснефть-Аэро;RU;;;;137871;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137714;EU.7807.67;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;РН-Аэро;RU;;;;137877;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137714;EU.7807.67;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;15, Malaya Kaluzhskaya Str.;;119071;;;NO;WEB[https://www.rosneft-aero.ru/en/]\nPHONE[+7 (499) 517-76-56]\nEMAIL[info@rn-aero.rosneft.ru]\nFAX[+7 (499) 517-76-55];RU;RUSSIAN FEDERATION;137715;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137718;EU.7808.66;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;JSC ROSOBORONEXPORT;;;;;137720;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137718;EU.7808.66;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;AO Рособоронэкспорт;RU;;;;137874;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137718;EU.7808.66;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;27 Stromynka Str.;;107076;;;NO;WEB[http://roe.ru/eng/]\nPHONE[+7 (495) 739 60 17 / +7 (495) 534 61 40]\nEMAIL[roe@roe.ru];RU;RUSSIAN FEDERATION;137719;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137721;EU.7809.65;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;JSC NPO High Precision Systems;;;;;137723;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137721;EU.7809.65;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;АО НПО Высокоточные комплексы;RU;;;;137876;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137721;EU.7809.65;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;7 Kievskaya Str.;;121059;;;NO;WEB[https://www.npovk.ru]\nPHONE[+7 (495) 981-92-77]\nEMAIL[npovk@npovk.ru]\nFAX[+7 (495) 981-92-78];RU;RUSSIAN FEDERATION;137722;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137724;EU.7810.43;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;JSC Kurganmashzavod;;;;;137726;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137724;EU.7810.43;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;ПАО Курганмашзавод;RU;;;;137875;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137724;EU.7810.43;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;Kurgan;17 1J Mashinostroitely Ave.;;640021;;;NO;WEB[https://www.kurganmash.ru]\nPHONE[+7 (3522) 23-20-83, +7 (3522) 47-19-99]\nEMAIL[kmz@kmz.ru]\nFAX[+7 (3522) 23-20-71, +7 (3522) 23-20-82];RU;RUSSIAN FEDERATION;137725;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137727;EU.7811.42;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;JSC Russian Helicopters;;;;;137729;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137727;EU.7811.42;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;AO Вертолеты России;RU;;;;137870;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137727;EU.7811.42;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;1 Bolshaya Pionerskaya Str.;;115054;;;NO;WEB[http://www.russianhelicopters.aero]\nPHONE[+7 (495) 981-63-67 ]\nEMAIL[info@rhc.aero];RU;RUSSIAN FEDERATION;137728;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137730;EU.7812.41;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;PJSC United Aircraft Corporation;;;;;137732;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137730;EU.7812.41;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;ПАО Объединённая авиастроительная корпорация;RU;;;;137869;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137730;EU.7812.41;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;1 Bolshaya. Pionerskaya Str.;;115054;;;NO;WEB[https://www.uacrussia.ru/]\nPHONE[+7 (495) 926-1420 ]\nEMAIL[office@uacrussia.ru];RU;RUSSIAN FEDERATION;137731;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137733;EU.7813.40;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;JSC United Shipbuilding Corporation;;;;;137735;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137733;EU.7813.40;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;АО Объединённая Судостроительная Корпорация;RU;;;;137868;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137733;EU.7813.40;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;11 Bolshaya Tatarskaya Str.;;115184;;;NO;WEB[https://www.aoosk.ru]\nPHONE[+7 495 617 33 00 ]\nEMAIL[info@aoosk.ru];RU;RUSSIAN FEDERATION;137734;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137736;EU.7814.39;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;JSC Research and Production Corporation URALVAGONZAVOD;;;;;137738;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137736;EU.7814.39;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;АО “Научно-производственная корпорация УралВагонЗавод”;RU;;;;137867;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137736;EU.7814.39;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;28 Vostochnoe shosse.;;622007;;Nizhny Tagil, Sverdlovsk region;NO;"WEB[http://uralvagonzavod.ru]\nPHONE[+7 3435 34 5000; +7 3435 33 47 12]\nEMAIL[web@uvz.ru]";RU;RUSSIAN FEDERATION;137737;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137739;EU.7815.38;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;A.M. Gorky Zelenodolsk Plant;;;;;137741;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137739;EU.7815.38;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;JSC Zelenodolsk Shipyard;;;;;137742;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137739;EU.7815.38;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;АО “Зеленодольский завод имени А. М. Горького”;RU;;;;137865;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137739;EU.7815.38;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Chantier naval de Zelenodolsk;FR;;;;137866;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137739;EU.7815.38;;2022-03-15;;(Date of UN designation: 2022-03-15);E;enterprise;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;Zelenodolsk;5, Zavodskaya Str.;;422546;;Republic of Tatarstan;NO;WEB[https://www.zdship.ru]\nPHONE[+7 (84371) 5-76-10]\nEMAIL[nfo@zdship.ru]\nFAX[+7 (84371) 5-78-00];RU;RUSSIAN FEDERATION;137740;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137753;EU.7816.37;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Aleksandr Petrovitj PETROV;SV;M;;;137755;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137753;EU.7816.37;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Александр Петрович Петров;;M;;;137756;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137753;EU.7816.37;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;Alexander Petrovich PETROV;;M;;Member of the State Duma;137757;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137753;EU.7816.37;;2022-02-25;;(Date of UN designation: 2022-02-25);P;person;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-05-21;21;5;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;137754;EN;;amendment;council;2022-02-25;2022-02-25;2022/332 (OJ L53);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.053.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A053%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;ПОДДРЪЖНИЦИ НА БОГ;BG;;;;137785;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;ПАРТИЗАНИ НА БОГ;BG;;;;137786;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;АНСАР АЛЛАХ;BG;;;;137787;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;АНСАРАЛЛАХ;BG;;;;137788;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;ХУТИ;BG;;;;137789;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;SUPPORTERS OF GOD;;;;;137790;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;PARTISANS OF GOD;;;;;137791;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;ANSAR ALLAH;;;;;137792;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;ANSARALLAH;;;;;137793;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;THE HOUTHIS;;;;;137794;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;boží pomocníci;CS;;;;137795;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;boží bojovníci;CS;;;;137796;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;Hútiové;CS;;;;137797;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;Partidarios de Dios;ES;;;;137798;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;Guerrilleros de Dios;ES;;;;137799;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;LOS HUZÍES;ES;;;;137800;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;die Huthis;DE;;;;137801;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;HOUTHIERNE;DA;;;;137802;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;Υποστηρικτές του Θεού;EL;;;;137803;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;Οπαδοί του Θεού;EL;;;;137804;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;ΧΟΥΘΙ;EL;;;;137805;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;HUTI;HR;;;;137806;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;SOUTIENS DE DIEU;FR;;;;137807;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;PARTISANS DE DIEU;FR;;;;137808;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;MOUVEMENT HOUTHISTE;FR;;;;137809;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;DIEVO RĖMĖJAI;LT;;;;137810;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;DIEVO ŠALININKAI;LT;;;;137811;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;HOUTHI grupuotė (HUSIAI);LT;;;;137812;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;GLI HOUTHI;IT;;;;137813;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;ISTEN TÁMOGATÓI;HU;;;;137814;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;ISTEN PARTIZÁNJAI;HU;;;;137815;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;A HÚSZIK;HU;;;;137816;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;Zwolennicy Boga;PL;;;;137817;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;Partyzanci Boga;PL;;;;137818;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;HUTI;PL;;;;137819;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;DE HOUTHI'S;NL;;;;137820;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;APOIANTES DE DEUS;PT;;;;137821;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;PARTIDÁRIOS DE DEUS;PT;;;;137822;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;OS HUTIS;PT;;;;137823;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;boží pomocníci;SK;;;;137824;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;boží bojovníci;SK;;;;137825;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;Húthíovci;SK;;;;137826;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;Mișcarea Houthi;RO;;;;137827;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;huthierna;SV;;;;137828;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;HUTHI-RYHMÄ;FI;;;;137829;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137784;EU.7817.36;;2022-02-24;;(Date of UN designation: 2022-02-24);E;enterprise;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;HUTIJEVCI;SL;;;;137830;EN;;amendment;council;2022-03-14;2022-03-14;2022/419 (OJ L86);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.086.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A086%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137908;EU.7832.76;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Александр Александрович Михеев;RU;M;;;137911;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137908;EU.7832.76;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Aleksander Aleksandrovitj MICHEJEV;SV;M;;;137912;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137908;EU.7832.76;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Alexander Alexandrovich MIKHEEV;;M;;CEO of the JSC Rosoboronexport;137913;EN;Associated individuals: Sergey Chemezov\n\nAssociated entities: Rosoboronexport, Rostec, Federal Service of Military-Technical Cooperation;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137908;EU.7832.76;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-11-18;18;11;1961;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;137909;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137908;EU.7832.76;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;137910;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC +28/10/2022;137914;EU.7833.75;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Andrej Valerijevitj RJUMIN;SV;M;;;137917;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137914;EU.7833.75;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Андрей Валерьевич Рюмин;RU;M;;;137918;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137914;EU.7833.75;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;Andrey Valerievich RYUMIN;;M;;Executive Director of Rosseti PJSC (formerly, until August 2014, known as Russian Grids), Chairman of Board;137919;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137914;EU.7833.75;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-06-12;12;6;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;137915;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;137914;EU.7833.75;;2022-03-15;;(Date of UN designation: 2022-03-15);P;person;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;137916;EN;;amendment;council;2022-03-15;2022-03-15;2022/427 (OJ L87I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.087.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A087I%3ATOC +28/10/2022;138005;EU.7852.14;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Алексей Евгеньевич ФИЛАТОВ;;M;;;138008;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138005;EU.7852.14;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexey Yevgenevich FILATOV;;M;;Head of the Russian Presidential Administration’s Directorate of Cross-Border Cooperation;138009;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138005;EU.7852.14;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksej Jevgenjevič FILATOV;SL;;;;139265;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138005;EU.7852.14;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksej Jevgenjevitj FILATOV;SV;;;;139266;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138005;EU.7852.14;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-02-12;12;2;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;138006;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138005;EU.7852.14;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138007;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138010;EU.7853.13;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Игорь Венедиктович МАСЛОВ;;M;;;138013;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138010;EU.7853.13;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Venediktovich MASLOV;;M;;Russian Presidential Administration’s official with Russian Foreign Intelligence Service’s (SVR);138014;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138010;EU.7853.13;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Venediktovič MASLOV;SL;;;;139267;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138010;EU.7853.13;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Venediktovitj MASLOV;SV;;;;139268;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138010;EU.7853.13;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-10-18;18;10;1960;;;NO;GREGORIAN;;;;St. Petersburg;RU;RUSSIAN FEDERATION;138011;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138010;EU.7853.13;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138012;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138015;EU.7854.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Вячеслав Владимирович КАНТОР;;M;;;138020;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138015;EU.7854.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Viatcheslav Vladimirovich KANTOR;;M;;;138021;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138015;EU.7854.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Вячеслав Моше КАНТОР;;M;;;138022;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138015;EU.7854.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Viatcheslav Moshe KANTOR;;M;;Large shareholder of the publicly traded Acron Group, one of Russia's largest fertilizer producers;138023;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138015;EU.7854.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vjatjeslav Vladimirovitj KANTOR;SV;;;;139269;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138015;EU.7854.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vjatjeslav Mosje KANTOR;SV;;;;139270;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138015;EU.7854.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vjačeslav Moše KANTOR;SL;;;;139271;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138015;EU.7854.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-09-08;8;9;1953;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;138016;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138015;EU.7854.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GB;;138017;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138015;EU.7854.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IL;;138018;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138015;EU.7854.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138019;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138024;EU.7855.11;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksey PIMANOV;;M;;;138027;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138024;EU.7855.11;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexei PIMANOV;;M;;;138028;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138024;EU.7855.11;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexey Viktorovich PIMANOV;;M;;;138029;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138024;EU.7855.11;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Алексей Викторович ПИМАНОВ;;M;;;138030;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138024;EU.7855.11;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksei Viktorovich PIMANOV;;M;;"Director General of Managing Organization “Creative Association Red Star; Head of the Krasnaya Zvezda media holding, owned by the Russian Defence Ministry";138031;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138024;EU.7855.11;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksej Viktorovič PIMANOV;SL;;;;139272;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138024;EU.7855.11;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksej Viktorovitj PIMANOV;SV;;;;139273;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138024;EU.7855.11;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-02-09;9;2;1962;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;138025;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138024;EU.7855.11;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138026;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138049;EU.7858.8;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олег Борисович ДОБРОДЕЕВ;;M;;;138052;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138049;EU.7858.8;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleg Borisovich DOBRODEEV;;M;;Director General of the All-Russian State Television and Radio Broadcasting Company (VGTRK);138053;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138049;EU.7858.8;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleg Borisovič DOBRODEJEV;SL;;;;139278;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138049;EU.7858.8;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleg Borisovitj DOBRODEJEV;SV;;;;139279;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138049;EU.7858.8;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-10-28;28;10;1959;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;138050;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138049;EU.7858.8;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138051;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138054;EU.7859.7;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Farkhad AKHMEDOV;;M;;"Businessperson involved in the energy branch and in Russian local politics; founder of Tansley Trading";138056;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138054;EU.7859.7;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Farhad AHMEDOV;SL;;;;139280;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138054;EU.7859.7;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-09-15;15;9;1955;;;NO;GREGORIAN;;;;Baku;AZ;AZERBAIJAN;138055;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138054;EU.7859.7;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;139659;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138057;EU.7860.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Павел Николаевич ГУСЕВ;;M;;;138060;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138057;EU.7860.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Pavel Nikolayevitch GUSEV;;M;;Propagandist, editor and owner of “Moskovskiy Komsomolets”;138061;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138057;EU.7860.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Pavel Nikolajevič GUSEV;SL;;;;139281;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138057;EU.7860.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Pavel Nikolajevitj GUSEV;SV;;;;139282;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138057;EU.7860.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-04-04;4;4;1949;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;138058;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138057;EU.7860.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138059;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138062;EU.7861.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Елена Петровна ТИМЧЕНКО;;F;;;138065;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138062;EU.7861.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Elena Petrovna YERMAKOVA;;F;;;138066;EN;maiden name;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138062;EU.7861.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Elena Petrovna ERMAKOVA;;F;;;138067;EN;maiden name;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138062;EU.7861.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Elena Petrovna TIMCHENKO;;F;;Co-president of the Foundation Timchenko;138068;EN;Associated individual: Gennady Timchenko (husband);amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138062;EU.7861.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Elena Petrovna TIMČENKO;SL;;;;139283;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138062;EU.7861.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jelena Yermakova;SV;;;;139284;EN;född;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138062;EU.7861.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jelena Jermakova;SV;;;;139285;EN;född;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138062;EU.7861.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jelena Petrovna TIMTJENKO;SV;;;;139286;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138062;EU.7861.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Елена Петровна ЕРМАКОВА;;F;;;139287;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138062;EU.7861.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;FI;;138063;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138062;EU.7861.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138064;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138069;EU.7862.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Мария Владимировна ВОРОНЦОВА;;F;;;138072;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138069;EU.7862.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maria FAASSEN;;F;;;138073;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138069;EU.7862.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Mariya VORONTSOVA;;F;;;138074;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138069;EU.7862.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maria Vladimirovna PUTINA;;F;;;138075;EN;maiden name;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138069;EU.7862.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maria Vladimirovna VORONTSOVA;;F;;Co-owner of 20 % of the company Nomenko involved in Russia's largest private investment project in healthcare with an estimated cost of 40 billion roubles;138076;EN;Associated individual: President Vladimir Putin (father);amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138069;EU.7862.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Marija Vladimirovna PUTINA;SL;;;;139288;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138069;EU.7862.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Marija Vladimirovna VORONCOVA;SL;;;;139289;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138069;EU.7862.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Marija Vladimirovna PUTINA;;;;;139290;EN;född;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138069;EU.7862.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Marija Vladimirovna VORONTSOVA;SV;;;;139291;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138069;EU.7862.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-04-28;28;4;1985;;;NO;GREGORIAN;;;;;00;UNKNOWN;138070;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138069;EU.7862.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138071;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138083;EU.7864.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Антон Валерьевич КУПРИН;;M;;;138084;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138083;EU.7864.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anton Valerevich KUPRIN;;M;;Captain of the frigate “Admiral Essen” of the Russian Black Sea fleet;138085;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138083;EU.7864.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anton Valerjevič KUPRIN;SL;;;;139292;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138083;EU.7864.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anton Valerjevitj KUPRIN;SV;;;;139293;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138091;EU.7866.76;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Михаил Aлександрович БАБАКОВ;;M;;;138093;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138091;EU.7866.76;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Mikhail Alexandrovich BABAKOV;;M;;;138094;EN;Associated individual: Aleksandr Babakov (father), Deputy Chairman of the State Duma;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138091;EU.7866.76;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Mihail Aleksandrovič BABAKOV;SL;;;;139296;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138091;EU.7866.76;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Michail Aleksandrovitj BABAKOV;SV;;;;139297;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138091;EU.7866.76;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1994-02-07;7;2;1994;;;NO;GREGORIAN;;;;;00;UNKNOWN;138092;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138095;EU.7867.75;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Кирилл Николаевич ШАМАЛОВ;;M;;;138098;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138095;EU.7867.75;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Kirill Nikolayevich SHAMALOV;;M;;Deputy Chairman of the Management Board of Sibur Holding PJSC;138099;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138095;EU.7867.75;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Kiril Nikolajevič ŠAMALOV;SL;;;;139298;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138095;EU.7867.75;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Kirill Nikolajevitj SJAMALOV;SV;;;;139299;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138095;EU.7867.75;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-03-22;22;3;1982;;;NO;GREGORIAN;;;;St. Petersburg;RU;RUSSIAN FEDERATION;138096;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138095;EU.7867.75;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138097;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138100;EU.7868.74;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Игорь Альбертович КЕСАЕВ;;M;;;138104;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138100;EU.7868.74;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Albertovich KESAEV;;M;;Owner and President of the Mercury Group;138105;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138100;EU.7868.74;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Albertovič KESAJEV;SL;;;;139300;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138100;EU.7868.74;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Albertovitj KESAJEV;SV;;;;139301;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138100;EU.7868.74;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-10-30;30;10;1966;;;NO;GREGORIAN;;;North Ossetia;Vladikavkaz;RU;RUSSIAN FEDERATION;138101;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138100;EU.7868.74;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138103;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138106;EU.7869.73;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александр Николаевич ПЕТАЙКИН;;M;;;138109;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138106;EU.7869.73;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexander Nikolaevich PETAYKIN;;M;;Owner and general director of road construction firms “OOO Vector” and “Trans Stroy”;138110;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138106;EU.7869.73;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksander Nikolajevič Petajkin;SL;;;;139302;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138106;EU.7869.73;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Nikolajevitj PETAJKIN;SV;;;;139303;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138106;EU.7869.73;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-05-24;24;5;1987;;;NO;GREGORIAN;;;Orenburg Oblast;Orenburg;RU;RUSSIAN FEDERATION;138107;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138106;EU.7869.73;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138108;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138115;EU.7871.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;SHULGIN;Aleksandr;Aleksandrovich;Aleksandr Aleksandrovich SHULGIN;;M;;Former Chief Executive Officer and former Director of Ozon Holdings Plc;138118;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138115;EU.7871.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Александр Александрович ШУЛЬГИН;;M;;;143936;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138115;EU.7871.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-05-02;2;5;1977;;;NO;GREGORIAN;;Stavropol Territory;;Essentuki;RU;RUSSIAN FEDERATION;138116;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138115;EU.7871.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138117;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138119;EU.7872.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Екатерина Владимировна ТИХОНОВА;;F;;;138122;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138119;EU.7872.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Катерина Владимировна ТИХОНОВА;;F;;;138123;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138119;EU.7872.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yekaterina Vladimirovna PUTINA;;F;;;138124;EN;maiden name;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138119;EU.7872.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yekaterina, Katerina;;F;;;138125;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138119;EU.7872.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ekaterina Vladimirovna TIKHONOVA;;F;;Head of the Innopraktika development initiative;138126;EN;Associated individual: President Vladimir Putin (father);amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138119;EU.7872.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jekaterina Vladimirovna TICHONOVA;SV;;;;139305;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138119;EU.7872.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Katerina Vladimirovna TICHONOVA;SV;;;;139306;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138119;EU.7872.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Katarina Vladimirovna TIHONOVA;SL;;;;139307;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138119;EU.7872.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-08-31;31;8;1986;;;NO;GREGORIAN;;;;Dresden;DE;GERMANY;138120;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138119;EU.7872.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138121;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138127;EU.7873.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Евгений Борисoвич ЗУБИЦКИЙ;;M;;;138130;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138127;EU.7873.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Evgeny Borisovich ZUBITSKIY;;M;;Entrepreneur, co-owner and Chairman of the Board and CEO of Industrial Metallurgical Holding (PMH);138131;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138127;EU.7873.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jevgenij Borisovič ZUBICKI;SL;;;;139308;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138127;EU.7873.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jevgenij Borisovitj ZUBITSKIJ;SV;;;;139309;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138127;EU.7873.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-03-10;10;3;1968;;;NO;GREGORIAN;;;;Kemerovo;RU;RUSSIAN FEDERATION;138128;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138127;EU.7873.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138129;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138132;EU.7874.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергей МИХАЙЛОВ;;M;;;138134;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138132;EU.7874.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergei MIKHAILOV;;M;;;138135;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138132;EU.7874.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergey Vladimirovich MIKHAILOV;;M;;Director General of the Russian News Agency TASS;138136;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138132;EU.7874.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergej Vladimirovič MIHAJLOV;SL;;;;139310;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138132;EU.7874.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergej MICHAJLOV;SV;;;;139311;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138132;EU.7874.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-03-17;17;3;1971;;;NO;GREGORIAN;;;;Arkhangelsk;RU;RUSSIAN FEDERATION;138133;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138132;EU.7874.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;139660;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138143;EU.7876.45;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александр Александрович МАЛЬКЕВИЧ;;M;;;138148;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138143;EU.7876.45;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexander Alexandrovich MALKEVICH;;M;;"First Deputy Chairman of the Public Chamber of the Russian Federation for the Development of the Information Community, Media and Mass Communications; General Director of the Saint Petersburg TV channel since January 2021";138149;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138143;EU.7876.45;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksander Aleksandrovič MALJKEVIČ;SL;;;;139314;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138143;EU.7876.45;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Aleksandrovitj MALKEVITJ;SV;;;;139315;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138143;EU.7876.45;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-07-14;14;7;1975;;;NO;GREGORIAN;;;;St. Petersburg;RU;RUSSIAN FEDERATION;138144;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138143;EU.7876.45;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;781005202108 (id-National identification card) (National ID No.);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;138146;EN;National ID No.;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;; +28/10/2022;138143;EU.7876.45;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"717637093 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;138147;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;; +28/10/2022;138143;EU.7876.45;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138145;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138155;EU.7878.43;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БАЖАЕВ;Муса;Юсупович;Муса Юсупович БАЖАЕВ;;M;;;138158;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138155;EU.7878.43;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;BAZHAEV;Musa;Yusupovich;Musa Yusupovich BAZHAEV;;M;;"Russian businessperson; current president of the Moscow Alliance Group, which owns assets in the oil, construction, textile, food, financial and media businesses; former Chairman of Russian Platinum";138159;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138155;EU.7878.43;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Musa Jusupovitj BAZJAJEV;SV;;;;139319;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138155;EU.7878.43;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-05-11;11;5;1966;;;NO;GREGORIAN;;;Achkoy Martan, Chechnya;;00;UNKNOWN;138156;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138155;EU.7878.43;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138157;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138160;EU.7879.42;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;БЕРЁЗКИН;Григорий;Викторович;Григорий Викторович БЕРЁЗКИН;;M;;;138163;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138160;EU.7879.42;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Grigory Viktorovich BEREZKIN;;M;;Chairman of the Board of Directors, ESN Group;138164;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138160;EU.7879.42;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Grigorij Viktorovitj BEREZKIN;SV;;;;139321;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138160;EU.7879.42;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-08-09;9;8;1966;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;138161;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138160;EU.7879.42;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101644415 (passport-National passport) (valid to 2023-03-18);NO;NO;NO;NO;NO;;;;2023-03-18;;;passport;National passport;;HR;;143934;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;; +28/10/2022;138160;EU.7879.42;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138162;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138165;EU.7880.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергей Ашотович МНДОЯНЦ;;M;;;138168;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138165;EU.7880.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Serguey Achotovich MNDOIANTS;;M;;"Russian businessman serving as vice-president of the conglomerate AFK Sistema; Founder of the consulting firm VLM Invest";138169;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138165;EU.7880.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergej Ašotovič MNDOJANC;SL;;;;139322;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138165;EU.7880.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergej Asjotovitj MNDOJANTS;SV;;;;139323;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138165;EU.7880.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-09-21;21;9;1961;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;138166;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138165;EU.7880.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138167;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138170;EU.7881.19;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Борис Романович РОТЕНБЕРГ;;M;;;138174;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138170;EU.7881.19;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Boris Romanovich ROTENBERG;;M;;;138175;EN;"Associated individuals: Arkady Rotenberg (brother), Igor Rotenberg (nephew);\nAssociated entities: SGM (Stroygazmontazh), SMP Bank, Gazprom Drillings";amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138170;EU.7881.19;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Boris Romanovič ROTENBERG;SL;;;;139324;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138170;EU.7881.19;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Boris Romanovitj ROTENBERG;SV;;;;139325;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138170;EU.7881.19;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-01-03;3;1;1957;;;NO;GREGORIAN;;;;St. Petersburg;RU;RUSSIAN FEDERATION;138171;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138170;EU.7881.19;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138172;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138170;EU.7881.19;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;FI;;138173;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138176;EU.7882.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Игорь Аркадьевич РОТЕНБЕРГ;;M;;;138179;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138176;EU.7882.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Arkadyevich ROTENBERG;;M;;;138180;EN;"Associated individuals: Arkady Rotenberg (father), Boris Rotenberg (uncle);\nAssociated entities: SGM (Stroygazmontazh) group, Gazprom Drilling, NPV Engineering Group";amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138176;EU.7882.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Arkadjevič ROTENBERG;SL;;;;139326;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138176;EU.7882.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Arkadjevitj ROTENBERG;SV;;;;139327;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138176;EU.7882.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-05-09;9;5;1973;;;NO;GREGORIAN;;;;St. Petersburg;RU;RUSSIAN FEDERATION;138177;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138176;EU.7882.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138178;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138181;EU.7883.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jekatarina IGNATOVA;;F;;;138184;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138181;EU.7883.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ekaterina IGNATOVA;;F;;;138185;EN;Associated individuals: Sergei Chemezow (Husband) \nAnastasia Ignatova (daughter)\nLyudmila Rukavishikova (mother);amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138181;EU.7883.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jekaterina IGNATOVA;SL;;;;139328;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138181;EU.7883.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;138182;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138181;EU.7883.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138183;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138186;EU.7884.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Анастасия ИГНАТОВА;;F;;;138188;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138186;EU.7884.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anastasia IGNATOVA;;F;;;138189;EN;Associated individuals: Sergei Chemezow (Stepfather) \nEkaterina Ignatova (mother)\nLyudmila Rukavishikova (grandmother);amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138186;EU.7884.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anastazija IGNATOVA;SL;;;;139329;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138186;EU.7884.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anastasija IGNATOVA;SV;;;;139330;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138186;EU.7884.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138187;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138190;EU.7885.15;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Lyudmila RUKAVISHIKOVA;;F;;;138192;EN;Associated individuals: Sergei Chemezov (Son-in-law) \nEkaterina Ignatova (daughter)\nAnastasia Ignatova (granddaughter);amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138190;EU.7885.15;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ljudmila RUKAVIŠIKOVA;SL;;;;139331;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138190;EU.7885.15;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138191;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138193;EU.7886.14;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юрий Борисович СЛЮСАРЬ;;M;;;138196;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138193;EU.7886.14;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yuri Borisovich SLYUSAR;;M;;"President United Aircraft Corporation (UAC); formerly Deputy Minister of Industry and Trade of the Russian Federation";138197;EN;"Associated individual: Vladimir Putin;\nAssociated entity: United Aircraft Corporation";amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138193;EU.7886.14;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jurij Borisovič SLJUSAR;SL;;;;139332;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138193;EU.7886.14;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jurij Borisovtij SLJUSAR;SV;;;;139333;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138193;EU.7886.14;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-07-20;20;7;1974;;;NO;GREGORIAN;;;;Rostov-on-Don;RU;RUSSIAN FEDERATION;138194;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138193;EU.7886.14;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138195;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138198;EU.7887.13;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Said KERIMOV;;M;;Heir to Suleiman Kerimow, Member of the Strategy committee and Board of Director of Polyus;138201;EN;"Associated individual: Suleiman Kerimow (father);\nAssociated entity: Polyus";amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138198;EU.7887.13;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1995-07-06;6;7;1995;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;138199;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138198;EU.7887.13;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138200;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138202;EU.7888.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Leonidovich BOGDANOV;;M;;Director General of Surgutneftegas;138205;EN;"Associated individual: Vladimir Putin;\nAssociated entity: Surgutneftegas";amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138202;EU.7888.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Leonidovič BOGDANOV;SL;;;;139334;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138202;EU.7888.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Leonidovitj BOGDANOV;SV;;;;139335;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138202;EU.7888.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Владимир Леонидович БОГДАНОВ;;M;;;139336;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138202;EU.7888.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-05-28;28;5;1951;;;NO;GREGORIAN;;;;;00;UNKNOWN;138203;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138202;EU.7888.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138204;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138206;EU.7889.11;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Герман Оскарович ГРЕФ;RU;M;;;138209;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138206;EU.7889.11;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Herman Oskarovich GREF;;M;;;138210;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138206;EU.7889.11;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;German Oskarovich GREF;;M;;Chief Executive Officer and Chairman of the Executive Board of Sberbank of Russia, confirmed by the Board of Directors on 16 October 2007;138211;EN;"Associated entities: Public Joint-Stock Company ""Sberbank of Russia”";amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138206;EU.7889.11;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;German Oskarovič GREF;SL;;;;139337;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138206;EU.7889.11;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;German Oskarovitj GREF;SV;;;;139338;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138206;EU.7889.11;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-02-08;8;2;1964;;;NO;GREGORIAN;;;Irtysh District, Pavlodar Region;Panfilovo village;KG;KYRGYZSTAN;138207;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138206;EU.7889.11;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138208;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138212;EU.7890.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олег Владимирович ДЕРИПАСКА;;M;;;138215;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138212;EU.7890.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleg Vladimirovich DERIPASKA;;M;;"Russian oligarch; owner of Russian Machines, Military Industrial Company and Arzamas Machine-Building Plant";138216;EN;Associated entities: Russian Machines, Military Industrial Company and Arzamas Machine-Building Plant;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138212;EU.7890.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleg Vladimirovič DERIPASKA;SL;;;;139339;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138212;EU.7890.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleg Vladimirovitj DERIPASKA;SV;;;;139340;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138212;EU.7890.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-01-02;2;1;1968;;;NO;GREGORIAN;;;;Dzerzhinsk;RU;RUSSIAN FEDERATION;138213;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138212;EU.7890.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138214;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138217;EU.7891.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Игорь Евгеньевич КОНАШЕНКОВ;;M;;;138220;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138217;EU.7891.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Evgenievich KONASHENKOV;;M;Major General;Head of the Department of Information and Communications of the Ministry of Defense of the Russian Federation;138221;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138217;EU.7891.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Evgenievič KONAŠENKOV;SL;;;;139341;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138217;EU.7891.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Jevgenjevitj KONASJENKOV;SV;;;;139342;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138217;EU.7891.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-05-15;15;5;1966;;;NO;GREGORIAN;;;;Chisinau;MD;MOLDOVA, REPUBLIC OF;138218;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138217;EU.7891.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;138219;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;138222;EU.7892.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Володимир Вiкторович ПАВЛЕНКО;;M;;;138224;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138222;EU.7892.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Владимир Викторович ПАВЛЕНКО;;M;;;138225;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138222;EU.7892.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Viktorovich PAVLENKO;;M;;So-called ‘Minister of State Security’ of the so-called ‘Donetsk People's Republic’;138226;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138222;EU.7892.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Volodymyr Viktorovitj PAVLENKO;SV;;;;139343;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138222;EU.7892.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Viktorovitj PAVLENKO;SV;;;;139344;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138222;EU.7892.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-04-14;14;4;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;138223;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138227;EU.7893.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александр Евгеньевич АНАНЧЕНКO;;M;;;138229;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138227;EU.7893.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexander Yevgenevych ANANCHENKO;;M;;So-called ‘Prime Minister’ of the so-called ‘Donetsk People's Republic’;138230;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138227;EU.7893.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Jevgenjevitj ANANTJENKO;SV;;;;139345;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138227;EU.7893.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-02-02;2;2;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;138228;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138231;EU.7894.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олексiй Олександрович ДIКIЙ;;M;;;138233;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138231;EU.7894.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Алексей Александрович ДИКИЙ;;M;;;138234;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138231;EU.7894.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksei Alexandrovich DIKIY;;M;;So-called ‘Minister of Internal Affairs’ of the so-called ‘Donetsk People's Republic’;138235;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138231;EU.7894.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleksij Oleksandrovytj DIKIJ;SV;;;;139346;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138231;EU.7894.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksej Aleksandrovitj DIKIJ;SV;;;;139347;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138231;EU.7894.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-07-05;5;7;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;138232;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138236;EU.7895.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Iгор Юрiйович АНТИПОВ;;M;;;138238;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138236;EU.7895.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Игорь Юрьевич АНТИПОВ;;M;;;138239;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138236;EU.7895.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Yurievich ANTIPOV;;M;;So-called ‘Minister of Information’ of the so-called ‘Donetsk People's Republic’;138240;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138236;EU.7895.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ihor Jurijovytj ANTYPOV;SV;;;;139348;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138236;EU.7895.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Jurjevitj ANTIPOV;SV;;;;139349;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138236;EU.7895.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-05-26;26;5;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;138237;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138241;EU.7896.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Артем Александрович КРАМАРЕНКО;;M;;;138243;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138241;EU.7896.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Artem Alexandrovich KRAMARENKO;;M;;So-called ‘Minister of Agro-Industrial Policy and Food’ of the so-called ‘Donetsk People's Republic’;138244;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138241;EU.7896.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Artem Aleksandrovitj KRAMARENKO;SV;;;;139350;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138241;EU.7896.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-01-13;13;1;1980;;;NO;GREGORIAN;;;;Pavlov Khutor;RU;RUSSIAN FEDERATION;138242;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138245;EU.7897.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Володимир Миколайович АНТОНОВ;;M;;;138247;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138245;EU.7897.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Владимир Николаевич АНТОНОВ;;M;;;138248;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138245;EU.7897.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Nikolaevich ANTONOV;;M;;So-called ‘Deputy of the Chair of the Government’ of the so-called ‘Donetsk People’s Republic’;138249;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138245;EU.7897.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Volodymyr Mykolajovytj ANTONOV;SV;;;;139351;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138245;EU.7897.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Nikolajevitj ANTONOV;SV;;;;139352;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138245;EU.7897.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-12-24;24;12;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;138246;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138250;EU.7898.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Тетяна Вiкторiвна ПЕРЕВЕРЗЕВА;;F;;;138252;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138250;EU.7898.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Татьяна Викторовна ПЕРЕВЕРЗЕВА;;F;;;138253;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138250;EU.7898.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Tatyana Viktorovna PEREVERZEVA;;F;;So-called ‘Deputy of the Chair of the Government’ of the so-called ‘Donetsk People’s Republic’;138254;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138250;EU.7898.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Tetiana Viktorivna PEREVERZEVA;SV;;;;139353;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138250;EU.7898.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Tatiana Viktorovna PEREVERZEVA;SV;;;;139354;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138250;EU.7898.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-06-20;20;6;1964;;;NO;GREGORIAN;;;Donetsk;;UA;UKRAINE;138251;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138255;EU.7899.77;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Євген Євгенович ЛАВРЕНОВ;;M;;;138257;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138255;EU.7899.77;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Евгений Евгеньевич ЛАВРЕНОВ;;M;;;138258;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138255;EU.7899.77;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Evgenij Evgenievich LAVRENOV;;M;;So-called ‘Minister of Income and Fees’ of the so-called ‘Donetsk People’s Republic’;138259;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138255;EU.7899.77;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jevhen Jevhenovytj LAVRENOV;SV;;;;139355;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138255;EU.7899.77;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jevgenij Jevgenjevitj LAVRENOV;SV;;;;139356;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138255;EU.7899.77;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-12-05;5;12;1979;;;NO;GREGORIAN;;;;Nikopol;00;UNKNOWN;138256;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138260;EU.7900.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олександр Олександрович ОПРИЩЕНКО;;M;;;138262;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138260;EU.7900.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александр Александрович ОПРИЩЕНКО;;M;;;138263;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138260;EU.7900.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Aleksandrovich OPRISHHENKO;;M;;So-called ‘Acting Minister of Health’ of the so-called ‘Donetsk People’s Republic’;138264;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138260;EU.7900.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleksandr Oleksandrovitj OPRYSJTJENK;SV;;;;139357;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138260;EU.7900.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Aleksandrovitj OPRISJTJENKO;SV;;;;139358;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138260;EU.7900.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-04-24;24;4;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;138261;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138265;EU.7901.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Наталя Юр'ївна НIКОНОРОВА;;F;;;138267;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138265;EU.7901.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Наталья Юрьевна НИКОНОРОВА;;F;;;138268;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138265;EU.7901.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalya Yurevna NIKONOROVA;;F;;So-called ‘Minister of Foreign Affairs’ of the so-called ‘Donetsk People’s Republic’;138269;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138265;EU.7901.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalja Jurjivna NIKONOROVA;SV;;;;139359;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138265;EU.7901.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalja Jurjevna NIKONOROVA;SV;;;;139360;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138265;EU.7901.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-09-28;28;9;1984;;;NO;GREGORIAN;;;;Donetsk;UA;UKRAINE;138266;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138270;EU.7902.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Михайло Васильович ЖЕЛТЯКОВ;;M;;;138272;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138270;EU.7902.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Михаил Васильевич ЖЕЛТЯКОВ;;M;;;138273;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138270;EU.7902.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Mihail Vasilevich ZHELTYAKOV;;M;;So-called ‘Minister of Culture’ of the so-called ‘Donetsk People’s Republic’;138274;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138270;EU.7902.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Mychajlo Vasyljovytj ZJELTJAKOV;SV;;;;139361;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138270;EU.7902.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Michail Vasiljevitj ZJELTJAKOV;SV;;;;139362;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138270;EU.7902.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-01-01;1;1;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;138271;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138275;EU.7903.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олександр Юрiйович ГРОМАКОВ;;M;;;138277;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138275;EU.7903.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александр Юрьевич ГРОМАКОВ;;M;;;138278;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138275;EU.7903.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Yurevich GROMAKOV;;M;;So-called ‘Minister of Youth, Sports, and Tourism of the so-called ‘Donetsk People’s Republic’;138279;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138275;EU.7903.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleksandr Jurijovytj HROMAKOV;SV;;;;139363;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138275;EU.7903.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Jurjevitj GROMAKOV;SV;;;;139364;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138275;EU.7903.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-09-04;4;9;1958;;;NO;GREGORIAN;;;;Donetsk;UA;UKRAINE;138276;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138280;EU.7904.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Михайло Миколайович КУШАКОВ;;M;;;138282;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138280;EU.7904.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Михаил Николаевич КУШАКОВ;;M;;;138283;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138280;EU.7904.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Mikhail Nikolaevich KUSHAKOV;;M;;So-called ‘Minister of Education and Science’ of the so-called ‘Donetsk People’s Republic’;138284;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138280;EU.7904.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Mychajlo Mykolajovytj KUSJAKOV;SV;;;;139365;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138280;EU.7904.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Michail Nikolajevitj KUSJAKOV;SV;;;;139366;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138280;EU.7904.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-11-23;23;11;1958;;;NO;GREGORIAN;;;;;MD;MOLDOVA, REPUBLIC OF;138281;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138285;EU.7905.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олексiй Олександрович КОСТРУБИЦЬКИЙ;;M;;;138287;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138285;EU.7905.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Алексей Александрович КОСТРУБИЦКИЙ;;M;;;138288;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138285;EU.7905.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexei Aleksandrovich KOSTRUBITSKIY;;M;;So-called ‘Minister for Civil Defense, Emergency Situations and Elimination of Consequences of Natural Disasters’ of the so-called ‘Donetsk People’s Republic’;138289;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138285;EU.7905.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleksij Oleksandrovytj KOSTRUBYTSKYJ;SV;;;;139367;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138285;EU.7905.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksej Aleksandrovitj KOSTRUBITSKIJ;SV;;;;139368;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138285;EU.7905.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-08-24;24;8;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;138286;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138290;EU.7906.77;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Володимир Михайлович РУЩАК;;M;;;138292;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138290;EU.7906.77;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Владимир Михайлович РУЩАК;;M;;;138293;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138290;EU.7906.77;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Mikhailovich RUSHHAK;;M;;So-called ‘Minister of Industry and Trade’ of the so-called ‘Donetsk People’s Republic’;138294;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138290;EU.7906.77;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Volodymyr Mykolajovytj RUSJTJAK;SV;;;;139369;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138290;EU.7906.77;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Michajlovitj RUSJTJAK;SV;;;;139370;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138290;EU.7906.77;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-09-02;2;9;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;138291;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138295;EU.7907.76;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Iгор Миколайович ХАЛЕПА;;M;;;138297;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138295;EU.7907.76;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Игорь Николаевич ХАЛЕПА;;M;;;138298;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138295;EU.7907.76;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Nikolaevich HALEPA;;M;;So-called ‘Acting Minister of Telecommunications’ of the so-called ‘Donetsk People’s Republic’;138299;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138295;EU.7907.76;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ihor Nikolajevitj CHALEPA;SV;;;;139371;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138295;EU.7907.76;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Nikolajevitj CHALEPA;SV;;;;139372;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138295;EU.7907.76;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-05-19;19;5;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;138296;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138300;EU.7908.75;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергiй Сергiйович НАУМЕЦЬ;;M;;;138302;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138300;EU.7908.75;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергей Сергеевич НАУМЕЦ;;M;;;138303;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138300;EU.7908.75;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergei Sergeevich NAUMETS;;M;;So-called ‘Minister of Construction, Housing, and Communal Services’ of the so-called ‘Donetsk People’s Republic’;138304;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138300;EU.7908.75;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Serhij Serhijovytj NAUMETS;SV;;;;139373;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138300;EU.7908.75;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergej Sergejevitj NAUMETS;SV;;;;139374;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138300;EU.7908.75;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-07-13;13;7;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;138301;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138305;EU.7909.74;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Дмитро Вiкторович ПОДЛИПАНОВ;;M;;;138307;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138305;EU.7909.74;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Дмитрий Викторович ПОДЛИПАНОВ;;M;;;138308;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138305;EU.7909.74;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmitriy Viktorovich PODLIPANOV;;M;;So-called ‘Minister of Transport’ of the so-called ‘Donetsk People’s Republic’;138309;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138305;EU.7909.74;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmytro Viktorovytj PODLYPANOV;SV;;;;139375;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138305;EU.7909.74;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmitrij Viktorovitj PODLIPANOV;SV;;;;139376;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138305;EU.7909.74;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-11-28;28;11;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;138306;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138310;EU.7910.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Лариса Валентинiвна ТОЛСТИКIНА;;F;;;138312;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138310;EU.7910.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Лариса Валентиновна ТОЛСТЫКИНА;;F;;;138313;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138310;EU.7910.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Larisa Valentinovna TOLSTYKINA;;F;;So-called ‘Minister of Labour and Social Affairs’ of the so-called ‘Donetsk People’s Republic’;138314;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138310;EU.7910.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Larysa Valentynivna TOLSTYKINA;SV;;;;139377;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138310;EU.7910.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-10-03;3;10;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;138311;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138315;EU.7911.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Руслан Михайлович ДУБОВСЬКИЙ;;M;;;138317;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138315;EU.7911.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Руслан Михайлович ДУБОВСКИЙ;;M;;;138318;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138315;EU.7911.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ruslan Mihajlovich DUBOVSKIY;;M;;So-called ‘Minister of Coal and Energy’ of the so-called ‘Donetsk People’s Republic’;138319;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138315;EU.7911.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ruslan Mychajlovytj DUBOVSKYJ;SV;;;;139378;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138315;EU.7911.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ruslan Michajlovitj DUBOVSKIJ;SV;;;;139379;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138315;EU.7911.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-02-20;20;2;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;138316;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138320;EU.7912.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Яна Сергiївна ЧАУСОВА;;F;;;138322;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138320;EU.7912.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Яна Сергеевна ЧАУСОВА;;F;;;138323;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138320;EU.7912.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yana Sergeevna CHAUSOVA;;F;;So-called ‘Minister of Finance’ of the so-called ‘Donetsk People’s Republic’;138324;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138320;EU.7912.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jana Serhijivna TJAUSOVA;SV;;;;139380;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138320;EU.7912.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jana Sergejevna TJAUSOVA;SV;;;;139381;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138320;EU.7912.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-09-22;22;9;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;138321;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138325;EU.7913.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олексiй Володимирович ПОЛОВЯН;;M;;;138327;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138325;EU.7913.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Алексей Владимирович ПОЛОВЯН;;M;;;138328;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138325;EU.7913.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksei Vladimirovich POLOVYAN;;M;;So-called ‘Minister of Economic Development’ of the so-called ‘Donetsk People’s Republic’;138329;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138325;EU.7913.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleksij Volodymyrovytj POLOVJAN;SV;;;;139382;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138325;EU.7913.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksej Vladimirovitj POLOVJAN;SV;;;;139383;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138325;EU.7913.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-05-03;3;5;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;138326;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138330;EU.7914.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юрiй Миколайович СИРОВАТКО;;M;;;138332;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138330;EU.7914.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юрий Николаевич СИРОВАТКО;;M;;;138333;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138330;EU.7914.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yuriy Nikolaevich SIROVATKO;;M;;So-called ‘Minister of Justice’ of the so-called ‘Donetsk People’s Republic’;138334;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138330;EU.7914.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jurij Mykolajovytj SYROVATKO;SV;;;;139384;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138330;EU.7914.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jurij Nikolajevitj SIROVATKO;SV;;;;139385;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138330;EU.7914.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-04-17;17;4;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;138331;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138335;EU.7915.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергій Іванович КОЗЛОВ;;M;;;138337;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138335;EU.7915.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергей Иванович КОЗЛОВ;;M;;;138338;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138335;EU.7915.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergey Ivanovich KOZLOV;;M;;So-called ‘Chair of the Government’ of the so-called ‘Luhansk People’s Republic’;138339;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138335;EU.7915.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Serhij Ivanovytj KOZLOV;SV;;;;139386;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138335;EU.7915.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergej Ivanovitj KOZLOV;SV;;;;139387;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138335;EU.7915.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-11-07;7;11;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;138336;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138340;EU.7916.46;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юрій Миколайович ГОВТВIН;;M;;;138342;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138340;EU.7916.46;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юрий Николаевич ГОВТВИН;;M;;;138343;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138340;EU.7916.46;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yuriy Nikolaevich GOVTVIN;;M;;So-called ‘First Deputy Chair of the government’ of the so-called ‘Luhansk People's Republic’;138344;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138340;EU.7916.46;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jurij Mykolajovytj HOVTVIN;SV;;;;139388;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138340;EU.7916.46;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jurij Nikolajevitj GOVTVIN;SV;;;;139389;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138340;EU.7916.46;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-04-12;12;4;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;138341;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138345;EU.7917.45;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олена Миколаївна КОСТЕНКО;;F;;;138347;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138345;EU.7917.45;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Елена Николаевна КОСТЕНКО;;F;;;138348;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138345;EU.7917.45;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Elena Nikolaevna KOSTENKO;;F;;So-called ‘Deputy Chair of the Government’ of the so-called ‘Luhansk People's Republic’;138349;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138345;EU.7917.45;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Olena Mykolajivna KOSTENKO;SV;;;;139390;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138345;EU.7917.45;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jelena Nikolajevna KOSTENKO;SV;;;;139391;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138345;EU.7917.45;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-11-13;13;11;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;138346;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138350;EU.7918.44;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ганна Юріївна ТОДОРОВА;;F;;;138352;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138350;EU.7918.44;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Анна Юрьевна ТОДОРОВА;;F;;;138353;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138350;EU.7918.44;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anna Yurievna TODOROVA;;F;;So-called ‘Deputy Chair of the Government’ of the so-called ‘Luhansk People’s Republic’;138354;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138350;EU.7918.44;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Hanna Jurjivna TODOROVA;SV;;;;139392;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138350;EU.7918.44;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anna Jurjevna TODOROVA;SV;;;;139393;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138350;EU.7918.44;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-02-20;20;2;1988;;;NO;GREGORIAN;;;;;00;UNKNOWN;138351;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138355;EU.7919.43;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Анатолий Андреевич АНТОНОВ;;M;;;138357;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138355;EU.7919.43;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anatoli Andreevich ANTONOV;;M;;So-called ‘Minister of State Security’ of the so-called ‘Luhansk People’s Republic’;138358;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138355;EU.7919.43;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anatolij Andrejevitj ANTONOV;SV;;;;139394;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138355;EU.7919.43;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-11-06;6;11;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;138356;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138359;EU.7920.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ігор Олександрович КОРНЕТ;;M;;;138361;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138359;EU.7920.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Игорь Александрович КОРНЕТ;;M;;;138362;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138359;EU.7920.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Aleksandrovich KORNET;;M;;So-called ‘Minister of Interior’ of the so-called ‘Luhansk People’s Republic’;138363;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138359;EU.7920.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ihor Oleksandrovytj KORNET;SV;;;;139395;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138359;EU.7920.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Aleksandrovitj KORNET;SV;;;;139396;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138359;EU.7920.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-04-29;29;4;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;138360;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138364;EU.7921.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Евгений Анатольевич КАЦАВАЛОВ;;M;;;138366;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138364;EU.7921.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Evgeny Anatolievich KATSAVALOV;;M;;So-called ‘Minister of Emergency Situations and Disaster Management’ of the so-called ‘Luhansk People’s Republic’;138367;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138364;EU.7921.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jevgenij Anatoljevitj KATSAVALOV;SV;;;;139397;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138364;EU.7921.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-02-11;11;2;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;138365;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138368;EU.7922.19;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Наталия Александровна ПАЩЕНКО;;F;;;138370;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138368;EU.7922.19;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalya Alexandrovna PASHCHENKO;;F;;So-called ‘Minister of Health’ of the so-called ‘Luhansk People's Republic’;138371;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138368;EU.7922.19;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalija Aleksandrovna PASJTENKO;SV;;;;139398;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138368;EU.7922.19;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-10-10;10;10;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;138369;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138372;EU.7923.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Андрей Юрьевич ЛУСТЕНКО;;M;;;138374;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138372;EU.7923.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Andrey Yurievich LUSTENKO;;M;;So-called ‘Minister of Education and Science’ of the so-called ‘Luhansk People's Republic’;138375;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138372;EU.7923.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Andrej Jurjevitj LUSTENKO;SV;;;;139399;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138372;EU.7923.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-06-16;16;6;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;138373;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138376;EU.7924.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Светлана Анатольевна МАЛАХОВА;;F;;;138378;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138376;EU.7924.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Svetlana Anatolievna MALAKHOVA;;F;;So-called ‘Minister of Labour and Social Policy’ of the so-called ‘Luhansk People's Republic’;138379;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138376;EU.7924.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Svetlana Anatoljevna MALACHOVA;SV;;;;139400;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138376;EU.7924.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-08-27;27;8;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;138377;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138380;EU.7925.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Дмитрий Сергеевич СИДОРОВ;;M;;;138382;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138380;EU.7925.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmitry Sergeevich SIDOROV;;M;;So-called ‘Minister of Culture, Sports and Youth’ of the so-called ‘Luhansk People's Republic’;138383;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138380;EU.7925.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmitrij Sergejevitj SIDOROV;SV;;;;139401;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138380;EU.7925.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989-09-02;2;9;1989;;;NO;GREGORIAN;;;;;00;UNKNOWN;138381;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138384;EU.7926.15;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергей Алексеевич БОРОДИН;;M;;;138386;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138384;EU.7926.15;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergey Alekseevich BORODIN;;M;;So-called ‘Chairman of the State Committee for Taxes and Duties’ of the so-called ‘Luhansk People's Republic’;138387;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138384;EU.7926.15;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergej Aleksejevitj BORODIN;SV;;;;139402;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138384;EU.7926.15;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-01-15;15;1;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;138385;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138392;EU.7928.13;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юрий Александрович ПРОНЬКО;;M;;;138394;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138392;EU.7928.13;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yuriy Alexandrovich PRONKO;;M;;So-called ‘Minister of Agriculture and Food’ of the so-called ‘Luhansk People's Republic’;138395;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138392;EU.7928.13;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jurij Aleksandrovitj PRONKO;SV;;;;139404;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138392;EU.7928.13;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-04-02;2;4;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;138393;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138396;EU.7929.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Светлана Николаевна ПОДЛИПАЕВА;;F;;;138398;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138396;EU.7929.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Svetlana Nikolaevna PODLIPAEVA;;F;;So-called ‘Minister of Economic Development’ of the so-called ‘Luhansk People's Republic’;138399;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138396;EU.7929.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Svetlana Nikolajevna PODLIPAJEVA;SV;;;;139405;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138396;EU.7929.12;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-09-16;16;9;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;138397;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138400;EU.7930.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Максим Алексеевич ПРОТАСОВ;;M;;;138402;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138400;EU.7930.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maxim Alekseevich PROTASOV;;M;;So-called ‘Minister of Construction and Housing and Communal Services’ of the so-called ‘Luhansk People's Republic’;138403;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138400;EU.7930.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maksim Aleksejevitj PROTASOV;SV;;;;139406;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138400;EU.7930.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-02-21;21;2;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;138401;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138404;EU.7931.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олег Васильевич ФЕТИСОВ;;M;;;138406;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138404;EU.7931.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleg Vasilievich FETISOV;;M;;So-called ‘Minister of Communications and Mass Communications’ of the so-called ‘Luhansk People's Republic’;138407;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138404;EU.7931.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleg Vasiljevitj FETISOV;SV;;;;139407;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138404;EU.7931.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-03-30;30;3;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;138405;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138408;EU.7932.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юрий Анатольевич ДЕГТЯРЕВ;;M;;;138410;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138408;EU.7932.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yuriy Anatolievich DEGTYAREV;;M;;So-called ‘Minister of Natural Resources and Environmental Security’ of the so-called ‘Luhansk People's Republic’;138411;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138408;EU.7932.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jurij Anatoljevitj DEGTIAREV;SV;;;;139408;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138408;EU.7932.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-07-07;7;7;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;138409;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138412;EU.7933.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергей Николаевич НЕВЕРОВ;;M;;;138413;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138412;EU.7933.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergey Nikolaevich NEVEROV;;M;;So-called ‘Minister of Industry and Trade’ of the so-called ‘Luhansk People's Republic’;138414;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138412;EU.7933.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergej Nikolajevitj NEVEROV;SV;;;;139409;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138415;EU.7934.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юрий Николаевич АФАНАСЬЕВСКИЙ;;M;;;138417;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138415;EU.7934.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yuriy Nikolaevich AFANASEVSKY;;M;;So-called ‘Chairman of the State Customs Committee’ of the so-called ‘Luhansk People's Republic’;138418;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138415;EU.7934.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jurij Nikolajevitj AFANASJEVSKIJ;SV;;;;139411;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138415;EU.7934.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-12-12;12;12;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;138416;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138419;EU.7935.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ольга Олександрівна МАКЄЄВА;;F;;;138421;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138419;EU.7935.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ольга Александровна МАКЕЕВА;;F;;;138422;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138419;EU.7935.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Olga Alexandrovna MAKEEVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138423;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138419;EU.7935.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Olha Oleksandrivna MAKJEJEVA;SV;;;;139412;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138419;EU.7935.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Olga Aleksandrovna MAKEJEVA;SV;;;;139413;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138419;EU.7935.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-11-21;21;11;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;138420;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138424;EU.7936.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Віталій Володимирович КРАВЕЦЬ;;M;;;138426;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138424;EU.7936.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Виталий Владимирович КРАВЕЦ;;M;;;138427;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138424;EU.7936.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vitaly Vladimirovich KRAVETS;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138428;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138424;EU.7936.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vitalij Volodymyrovytj KRAVETS;SV;;;;139414;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138424;EU.7936.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vitalij Vladimirovitj KRAVETS;SV;;;;139415;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138424;EU.7936.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-04-07;7;4;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;138425;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138429;EU.7937.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ярослав Геннадійович АНIКА;;M;;;138431;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138429;EU.7937.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ярослав Геннадьевич АНИКА;;M;;;138432;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138429;EU.7937.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yaroslav Gennadievich ANIKA;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138433;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138429;EU.7937.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jaroslav Hennadzijovytj ANIKA;SV;;;;139416;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138429;EU.7937.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jaroslav Gennadjevitj ANIKA;SV;;;;139417;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138429;EU.7937.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1990-06-26;26;6;1990;;;NO;GREGORIAN;;;;;00;UNKNOWN;138430;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138434;EU.7938.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Євген Дмитрович ГРИЦЕНКО;;M;;;138436;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138434;EU.7938.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Евгений Дмитриевич ГРИЦЕНКО;;M;;;138437;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138434;EU.7938.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yevgeny Dmitrievich GRITSENKO;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138438;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138434;EU.7938.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jevhen Dmytrovytj HRYTSENKO;SV;;;;139418;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138434;EU.7938.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jevgenij Dmitrijevitj GRITSENKO;SV;;;;139419;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138434;EU.7938.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-07-26;26;7;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;138435;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138439;EU.7939.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Андрій Сергійович ВОРОШИЛОВ;;M;;;138441;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138439;EU.7939.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Андрей Сергеевич ВОРОШИЛОВ;;M;;;138442;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138439;EU.7939.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Andrey Sergeevich VOROSHILOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138443;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138439;EU.7939.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Andrij Serhijovytj VOROSJYLOV;SV;;;;139420;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138439;EU.7939.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Andrej Sergejevitj VOROSJILOV;SV;;;;139421;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138439;EU.7939.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-04-02;2;4;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;138440;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138444;EU.7940.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олександр Павлович КУРЄНКОВ;;M;;;138446;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138444;EU.7940.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александр Павлович КУРЕНКОВ;;M;;;138447;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138444;EU.7940.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexander Pavlovich KURENKOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138448;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138444;EU.7940.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleksandr Pavlovytj KURJENKOV;SV;;;;139422;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138444;EU.7940.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Pavlovitj KURENKOV;SV;;;;139423;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138444;EU.7940.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-06-01;1;6;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;138445;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138449;EU.7941.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Владіслав Леонідович БЕРДIЧЕВСЬКИЙ;;M;;;138451;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138449;EU.7941.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Владислав Леонидович БЕРДИЧЕВСКИЙ;;M;;;138452;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138449;EU.7941.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladislav Leonidovich BERDICHEVSKY;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138453;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138449;EU.7941.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladislav Leonidovytj BERDITJEVSKYJ;SV;;;;139424;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138449;EU.7941.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladislav Leonidovitj BERDITJEVSKIJ;SV;;;;139425;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138449;EU.7941.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-09-10;10;9;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;138450;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138454;EU.7942.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ірина Василівна ПОПОВА;;F;;;138456;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138454;EU.7942.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ирина Васильевна ПОПОВА;;F;;;138457;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138454;EU.7942.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Irina Vasilievna POPOVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138458;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138454;EU.7942.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Iryna Vasylivna POPOVA;SV;;;;139426;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138454;EU.7942.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Irina Vasiljevna POPOVA;SV;;;;139427;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138454;EU.7942.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-08-07;7;8;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;138455;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138459;EU.7943.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Марія Володимирівна ПIРОГОВА;;F;;;138461;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138459;EU.7943.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Мария Владимировна ПИРОГОВА;;F;;;138462;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138459;EU.7943.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maria Vladimirovna PIROGOVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138463;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138459;EU.7943.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Marija Volodymyrivna PIROHOVA;SV;;;;139428;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138459;EU.7943.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Marija Vladimirova PIROGOVA;SV;;;;139429;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138459;EU.7943.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1993-05-13;13;5;1993;;;NO;GREGORIAN;;;;;00;UNKNOWN;138460;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138464;EU.7944.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергій Борисович ПРОКОПЕНКО;;M;;;138466;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138464;EU.7944.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергей Борисович ПРОКОПЕНКО;;M;;;138467;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138464;EU.7944.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergey Borisovich PROKOPENKO;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138468;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138464;EU.7944.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Serhij Borysovytj PROKOPENKO;SV;;;;139430;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138464;EU.7944.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergej Borisovitj PROKOPENKO;SV;;;;139431;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138464;EU.7944.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-10-20;20;10;1986;;;NO;GREGORIAN;;;;;00;UNKNOWN;138465;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138469;EU.7945.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Світлана Анатоліївна КУМАНОВА;;F;;;138471;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138469;EU.7945.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Светлана Анатольевна КУМАНОВА;;F;;;138472;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138469;EU.7945.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Svetlana Anatolievna KUMANOVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138473;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138469;EU.7945.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Svitlana Anatolijivna KUMANOVA;SV;;;;139432;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138469;EU.7945.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Svetlana Anatoljevna KUMANOVA;SV;;;;139433;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138469;EU.7945.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-11-01;1;11;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;138470;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138474;EU.7946.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Магдалина Марина ВОЛОДИМИРIВНА;;F;;;138476;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138474;EU.7946.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Магдалина Марина ВЛАДИМИРОВНА;;F;;;138477;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138474;EU.7946.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Magdalina Marina VLADIMIROVNA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138478;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138474;EU.7946.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Mahdalyna Maryna VOLODYMYRIVNA;SV;;;;139434;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138474;EU.7946.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Magdalina Marina VLADIMIROVNA;SV;;;;139435;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138474;EU.7946.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-01-04;4;1;1984;;;NO;GREGORIAN;;;;;00;UNKNOWN;138475;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138479;EU.7947.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Кирило Борисович МАКАРОВ;;M;;;138481;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138479;EU.7947.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Кирилл Борисович МАКАРОВ;;M;;;138482;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138479;EU.7947.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Kirill Borisovich MAKAROV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138483;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138479;EU.7947.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Kyrylo Borysovytj MAKAROV;SV;;;;139436;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138479;EU.7947.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Kirill Borisovitj MAKAROV;SV;;;;139437;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138479;EU.7947.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1995-11-06;6;11;1995;;;NO;GREGORIAN;;;;;00;UNKNOWN;138480;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138484;EU.7948.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олександр Вікторович МАЛЬКОВ;;M;;;138486;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138484;EU.7948.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александр Викторович МАЛЬКОВ;;M;;;138487;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138484;EU.7948.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexander Viktorovich MALKOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138488;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138484;EU.7948.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleksandr Viktorovytj MALKOV;SV;;;;139438;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138484;EU.7948.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Viktorovitj MALKOV;SV;;;;139439;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138484;EU.7948.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-07-18;18;7;1953;;;NO;GREGORIAN;;;;;00;UNKNOWN;138485;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138489;EU.7949.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ігор Юрійович МАРТИНОВ;;M;;;138491;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138489;EU.7949.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Игорь Юрьевич МАРТЫНОВ;;M;;;138492;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138489;EU.7949.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yury Igorevich MARTYNOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138493;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138489;EU.7949.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ihor Jurijovytj MARTYNOV;SV;;;;139440;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138489;EU.7949.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Jurjevitj MARTYNOV;SV;;;;139441;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138489;EU.7949.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-06-22;22;6;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;138490;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138494;EU.7950.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ігор Вікторович МАТРУС;;M;;;138496;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138494;EU.7950.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Игорь Викторович МАТРУС;;M;;;138497;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138494;EU.7950.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Viktorovich MATRUS;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138498;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138494;EU.7950.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ihor Viktorovytj MATRUS;SV;;;;139442;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138494;EU.7950.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Viktorovitj MATRUS;SV;;;;139443;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138494;EU.7950.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-07-27;27;7;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;138495;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138499;EU.7951.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Володимир Анатолійович МЕДВЕДЕВ;;M;;;138501;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138499;EU.7951.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Владимир Анатольевич МЕДВЕДЕВ;;M;;;138502;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138499;EU.7951.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Anatolievich MEDVEDEV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138503;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138499;EU.7951.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Volodymyr Anatolijovytj MEDVEDEV;SV;;;;139444;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138499;EU.7951.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Anatoljevitj MEDVEDEV;SV;;;;139445;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138499;EU.7951.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-10-27;27;10;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;138500;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138504;EU.7952.23;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юлія Валентинівн МИХАЙЛОВА;;F;;;138507;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138504;EU.7952.23;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юлия Валентиновна МИХАЙЛОВА;;F;;;138508;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138504;EU.7952.23;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yulia Valentinovna MIKHAILOVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138509;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138504;EU.7952.23;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Julija Valentynivna MYCHAJLOVA;SV;;;;139446;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138504;EU.7952.23;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Julija Valentinovna MICHAJLOVA;SV;;;;139447;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138504;EU.7952.23;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1991-06-14;14;6;1991;;;NO;GREGORIAN;;;;;00;UNKNOWN;138505;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138504;EU.7952.23;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1991-07-14;14;7;1991;;;NO;GREGORIAN;;;;;00;UNKNOWN;138506;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138510;EU.7953.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Володимир Євгенович МОШКIН;;M;;;138512;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138510;EU.7953.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Владимир Евгеньевич МОШКИН;;M;;;138513;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138510;EU.7953.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Evgenievich MOSHKIN;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138514;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138510;EU.7953.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Volodymyr Jevhenovytj MOSJKIN;SV;;;;139448;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138510;EU.7953.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Jevgenjevitj MOSJKIN;SV;;;;139449;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138510;EU.7953.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-06-25;25;6;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;138511;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138515;EU.7954.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Алла Іванівна ОБОЛЕНСЬКА;;F;;;138517;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138515;EU.7954.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Алла Ивановна ОБОЛЕНСКАЯ;;F;;;138518;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138515;EU.7954.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alla Ivanovna OBOLENSKAYA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138519;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138515;EU.7954.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alla Ivanivna OBOLENSKA;SV;;;;139450;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138515;EU.7954.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alla Ivanovna OBOLENSKAJA;SV;;;;139451;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138515;EU.7954.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-07-26;26;7;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;138516;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138520;EU.7955.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Дмитро Олександрович ОГIЛЕЦЬ;;M;;;138522;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138520;EU.7955.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Дмитрий Александрович ОГИЛЕЦ;;M;;;138523;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138520;EU.7955.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmitry Alexandrovich OGILETS;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138524;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138520;EU.7955.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmytro Oleksandrovytj OHILETS;SV;;;;139452;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138520;EU.7955.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmitrij Aleksandrovitj OGILETS;SV;;;;139453;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138520;EU.7955.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-09-02;2;9;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;138521;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138530;EU.7957.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олег Володимирович ОНОПКО;;M;;;138532;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138530;EU.7957.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олег Владимирович ОНОПКО;;M;;;138533;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138530;EU.7957.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleg Vladimirovich ONOPKO;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138534;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138530;EU.7957.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleh Volodymyrovytj ONOPKO;SV;;;;139454;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138530;EU.7957.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleg Vladimirovitj ONOPKO;SV;;;;139455;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138530;EU.7957.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;;00;UNKNOWN;138531;EN;DOB: 10 October (year unknown);amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138535;EU.7958.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Володимир Генадійович ПАКРЕЄВ;;M;;;138537;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138535;EU.7958.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Владимир Геннадьевич ПАКРЕЕВ;;M;;;138538;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138535;EU.7958.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Gennadievich PAKREEV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138539;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138535;EU.7958.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Volodymyr Henadijovytj PAKREJEV;SV;;;;139456;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138535;EU.7958.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Gennadjevitj PAKREJEV;SV;;;;139457;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138535;EU.7958.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-07-21;21;7;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;138536;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138540;EU.7959.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Максим Олексійович ПАРШИН;;M;;;138542;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138540;EU.7959.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Максим Алексеевич ПАРШИН;;M;;;138543;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138540;EU.7959.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maxim Alekseevich PARSHIN;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138544;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138540;EU.7959.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maksym Oleksijovytj PARSJYN;SV;;;;139458;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138540;EU.7959.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maksim Aleksejevitj PARSJIN;SV;;;;139459;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138540;EU.7959.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-08-03;3;8;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;138541;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138545;EU.7960.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ігор Валентинович ПАШКОВ;;M;;;138547;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138545;EU.7960.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Игорь Валентинович ПАШКОВ;;M;;;138548;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138545;EU.7960.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Valentinovich PASHKOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138549;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138545;EU.7960.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ihor Valentynovytj PASJKOV;SV;;;;139460;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138545;EU.7960.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Valentinovitj PASJKOV;SV;;;;139461;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138545;EU.7960.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-02-04;4;2;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;138546;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138560;EU.7961.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Василь Анатолійович ПЕРЦЕВ;;M;;;138562;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138560;EU.7961.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Василий Анатольевич ПЕРЦЕВ;;M;;;138563;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138560;EU.7961.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vasily Anatolievich PERTSEV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138564;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138560;EU.7961.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vasyl Anatolijovytj PERTSEV;SV;;;;139462;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138560;EU.7961.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vasilij Anatoljevitj PERTSEV;SV;;;;139463;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138560;EU.7961.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-08-09;9;8;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;138561;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138565;EU.7962.89;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юрій Іванович ПОКIНТЕЛИЦЯ;;M;;;138567;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138565;EU.7962.89;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юрий Иванович ПОКИНТЕЛИЦА;;M;;;138568;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138565;EU.7962.89;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yuri Ivanovich POKINTELITSA;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138569;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138565;EU.7962.89;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jurij Ivanovytj POKINTELYTSIA;SV;;;;139464;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138565;EU.7962.89;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jurij Ivanovitj POKINTELITSA;SV;;;;139465;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138565;EU.7962.89;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-05-21;21;5;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;138566;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138570;EU.7963.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Наталія Олексіївна ПОЛЯНСЬКА;;F;;;138572;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138570;EU.7963.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Наталья Алексеевна ПОЛЯНСКАЯ;;F;;;138573;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138570;EU.7963.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalya Alekseevna POLYANSKAYA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138574;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138570;EU.7963.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalija Oleksijivna POLJANSKA;SV;;;;139466;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138570;EU.7963.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalja Aleksejevna POLJANSKAJA;SV;;;;139467;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138570;EU.7963.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-11-06;6;11;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;138571;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138575;EU.7964.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Леонід Володимирович ПРИСЄНКО;;M;;;138577;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138575;EU.7964.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Леонид Владимирович ПРИСЕНКО;;M;;;138578;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138575;EU.7964.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Leonid Vladimirovich PRISENKO;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138579;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138575;EU.7964.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Leonid Volodymyrovytj PRYSIENKO;SV;;;;139468;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138575;EU.7964.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Leonid Vladimirovitj PRISENKO;SV;;;;139469;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138575;EU.7964.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-07-06;6;7;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;138576;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138580;EU.7965.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Наталія Валеріївна ПШЕНИЧНА;;F;;;138582;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138580;EU.7965.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Наталья Валерьевна ПШЕНИЧНАЯ;;F;;;138583;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138580;EU.7965.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalya Anatolyevna PSHENICHNAYA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138584;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138580;EU.7965.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalija Anatolijivna PSJENYTJNA;SV;;;;139470;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138580;EU.7965.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalja Anatoljevna PSJENITJNAJA;SV;;;;139471;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138580;EU.7965.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-06-30;30;6;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;138581;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138585;EU.7966.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Любомир Євгенiйович ПУШКIН;;M;;;138587;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138585;EU.7966.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Любомир Евгеньевич ПУШКИН;;M;;;138588;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138585;EU.7966.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Lyubomir Evgenevich PUSHKIN;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138589;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138585;EU.7966.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Luybiomir Jevhenijovytj PUSJIKN;SV;;;;139472;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138585;EU.7966.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Lubomir Jevgenjevitj PUSJKIN;SV;;;;139473;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138585;EU.7966.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-05-27;27;5;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;138586;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138590;EU.7967.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Владислав Адольфович РУСАНОВ;;M;;;138592;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138590;EU.7967.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladislav Adolfovich RUSANOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138593;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138590;EU.7967.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladyslav Adolfovytj RUSANOV;SV;;;;139474;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138590;EU.7967.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladislav Adolfovitj RUSANOV;SV;;;;139475;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138590;EU.7967.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Владислав Адольфович РУСАНОВ;;;;;139476;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138590;EU.7967.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-06-12;12;6;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;138591;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138594;EU.7968.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Володимир Володимирович САВЕЛОВ;;M;;;138596;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138594;EU.7968.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Владимир Владимирович САВЕЛОВ;;M;;;138597;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138594;EU.7968.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Vladimirovich SAVELOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138598;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138594;EU.7968.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Volodymyr Volodymyrovytj SAVELOV;SV;;;;139477;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138594;EU.7968.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Vladimirovitj SAVELOV;SV;;;;139478;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138594;EU.7968.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-02-24;24;2;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;138595;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138599;EU.7969.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Анастасія Юріївна СЕЛIВАНОВА;;F;;;138601;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138599;EU.7969.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Анастасия Юрьевна СЕЛИВАНОВА;;F;;;138602;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138599;EU.7969.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anastasia Yurievna SELIVANOVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138603;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138599;EU.7969.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anastasija Jurjevna SELIVANOVA;SV;;;;139479;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138599;EU.7969.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anastasija Jurijivna SELIVANOVA;SV;;;;139480;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138599;EU.7969.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-08-05;5;8;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;138600;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138604;EU.7970.60;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олександр Анатолійович СЕРЬОЖЕНКО;;M;;;138606;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138604;EU.7970.60;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александр Анатольевич СЕРЁЖЕНКО;;M;;;138607;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138604;EU.7970.60;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexander Anatolievich SERYOZHENKO;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138608;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138604;EU.7970.60;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleksandr Anatolijovytj SEROZJENKO;SV;;;;139481;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138604;EU.7970.60;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Anatoljevitj SERJOZJENKO;SV;;;;139482;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138604;EU.7970.60;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-03-17;17;3;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;138605;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138609;EU.7971.59;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олена Миколаївна ШИШКIНА;;F;;;138611;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138609;EU.7971.59;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Елена Николаевна ШИШКИНА;;F;;;138612;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138609;EU.7971.59;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Elena Nikolaevna SHISHKINA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138613;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138609;EU.7971.59;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Olena Mykolajivna SJYSJKINA;SV;;;;139483;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138609;EU.7971.59;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jelena Nikolajevna SJISJKINA;SV;;;;139484;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138609;EU.7971.59;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-04-19;19;4;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;138610;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138614;EU.7972.58;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Короткий Александр ВЛАДИМИРОВИЧ;;M;;;138616;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138614;EU.7972.58;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Korotkiy Alexander VLADIMIROVICH;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138617;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138614;EU.7972.58;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Korotkij Aleksandr VLADIMIROVITJ;SV;;;;139485;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138614;EU.7972.58;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1925-03-13;13;3;1925;;;NO;GREGORIAN;;;;;00;UNKNOWN;138615;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138618;EU.7973.57;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Оксана Вікторівна СIГIДIНА;;F;;;138620;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138618;EU.7973.57;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Оксана Викторовна СИГИДИНА;;F;;;138621;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138618;EU.7973.57;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oksana Viktorovna SIGIDINA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138622;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138618;EU.7973.57;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oksana Viktorivna SIHIDINA;SV;;;;139486;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138618;EU.7973.57;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oksana Viktorovna SIGIDINA;SV;;;;139487;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138618;EU.7973.57;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-08-17;17;8;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;138619;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138623;EU.7974.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Валерій Володимирович СКОРОХОДОВ;;M;;;138625;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138623;EU.7974.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Валерий Владимирович СКОРОХОДОВ;;M;;;138626;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138623;EU.7974.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Valery Vladimirovich SKOROKHODOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138627;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138623;EU.7974.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Valerij Volodymyrovytj SKOROCHODOV;SV;;;;139488;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138623;EU.7974.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Valerij Vladimirovitj SKOROCHODOV;SV;;;;139489;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138623;EU.7974.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-05-22;22;5;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;138624;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138628;EU.7975.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Наталія Іванівна СТРЕЛЬЧУК;;F;;;138630;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138628;EU.7975.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Наталья Ивановна СТРЕЛЬЧУК;;F;;;138631;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138628;EU.7975.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalya Ivanovna STRELCHUK;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138632;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138628;EU.7975.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalija Ivanivna STRELTJUK;SV;;;;139490;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138628;EU.7975.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalja Ivanovna STRELTJUK;SV;;;;139491;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138628;EU.7975.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-09-10;10;9;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;138629;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138633;EU.7976.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Павел Александрович ЧАЙКОВСКИЙ;;M;;;138635;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138633;EU.7976.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Pavel Alexandrovich TCHAIKOVSKY;;M;;;138636;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138633;EU.7976.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Павло Олександрович ШЕПОТЬКО;;M;;;138637;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138633;EU.7976.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Павел Александрович ШЕПОТЬКО;;M;;;138638;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138633;EU.7976.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Pavel Alexandrovich SHEPOTKO;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138639;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138633;EU.7976.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Pavlo Oleksandrovytj SJEPOTKO;SV;;;;139492;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138633;EU.7976.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Pavel Aleksandrovitj SJEPOTKO;SV;;;;139493;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138633;EU.7976.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-04-15;15;4;1986;;;NO;GREGORIAN;;;;;00;UNKNOWN;138634;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138640;EU.7977.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергій Леонідович ТЕЛЬНИХ;;M;;;138642;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138640;EU.7977.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергей Леонидович ТЕЛЬНЫХ;;M;;;138643;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138640;EU.7977.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergey Leonidovich TELNYKH;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138644;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138640;EU.7977.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Serhij Leonidovytj TELNYCH;SV;;;;139494;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138640;EU.7977.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergej Leonidovitj TELNYCH;SV;;;;139495;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138640;EU.7977.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-04-29;29;4;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;138641;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138645;EU.7978.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Роман Сергійович УДАЛОВ;;M;;;138647;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138645;EU.7978.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Роман Сергеевич УДАЛОВ;;M;;;138648;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138645;EU.7978.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Roman Sergeevich UDALOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138649;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138645;EU.7978.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Roman Serhijovytj UDALOV;SV;;;;139496;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138645;EU.7978.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Roman Sergejevitj UDALOV;SV;;;;139497;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138645;EU.7978.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1994-05-27;27;5;1994;;;NO;GREGORIAN;;;;;00;UNKNOWN;138646;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138650;EU.7979.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олександра Олександрівна УСАЧОВА;;F;;;138652;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138650;EU.7979.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александра Александровна УСАЧЕВА;;F;;;138653;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138650;EU.7979.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexandra Alexandrovna USACHEVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138654;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138650;EU.7979.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleksandra Oleksandrivna USATJOVA;SV;;;;139498;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138650;EU.7979.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandra Aleksandrovna USATJEVA;SV;;;;139499;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138650;EU.7979.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;;00;UNKNOWN;138651;EN;DOB: 28 September (year unknown);amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138655;EU.7980.29;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Наталія Марківна ВОЛКОВА;;F;;;138657;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138655;EU.7980.29;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Наталья Марковна ВОЛКОВА;;F;;;138658;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138655;EU.7980.29;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalya Markovna VOLKOVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138659;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138655;EU.7980.29;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalija Markivna VOLKOVA;SV;;;;139500;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138655;EU.7980.29;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalja Markovna VOLKOVA;SV;;;;139501;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138655;EU.7980.29;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-10-11;11;10;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;138656;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138660;EU.7981.28;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юрий Михайлович ЗАКАБЛУК;;M;;;138662;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138660;EU.7981.28;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yuri Mikhailovich ZAKABLUK;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138663;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138660;EU.7981.28;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jurij Michajlovitj ZAKABLUK;SV;;;;139502;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138660;EU.7981.28;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-08-19;19;8;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;138661;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138664;EU.7982.27;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Марина Миколаївна ЖЕЙНОВА;;F;;;138666;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138664;EU.7982.27;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Марина Николаевна ЖЕЙНОВА;;F;;;138667;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138664;EU.7982.27;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Marina Nikolaevna ZHEYNOVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138668;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138664;EU.7982.27;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maryna Mykolajivna ZJEJNOVA;SV;;;;139503;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138664;EU.7982.27;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Marina Nikolajevna ZJEJNOVA;SV;;;;139504;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138664;EU.7982.27;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-02-15;15;2;1985;;;NO;GREGORIAN;;;;;00;UNKNOWN;138665;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138669;EU.7983.26;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олексій Михайлович ЖИГУЛIН;;M;;;138671;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138669;EU.7983.26;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Алексей Михайлович ЖИГУЛИН;;M;;;138672;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138669;EU.7983.26;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksei Mikhailovich ZHIGULIN;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138673;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138669;EU.7983.26;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleksij Mychajlovytj ZJYGULIN;SV;;;;139505;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138669;EU.7983.26;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksej Michailovitj ZJIGULIN;SV;;;;139506;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138669;EU.7983.26;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-01-29;29;1;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;138670;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138674;EU.7984.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Михайло Валерійович ЖУКОВ;;M;;;138676;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138674;EU.7984.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Михаил Валерьевич ЖУКОВ;;M;;;138677;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138674;EU.7984.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Mikhail Valerievich ZHUKOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138678;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138674;EU.7984.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Mychajlo Valerijovytj ZJUKOV;SV;;;;139507;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138674;EU.7984.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Michail Valerjevitj ZJUKOV;SV;;;;139508;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138674;EU.7984.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-11-01;1;11;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;138675;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138679;EU.7985.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Тетяна Володимирівна ЖУРАВЛЕВА;;F;;;138681;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138679;EU.7985.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Татьяна Владимировна ЖУРАВЛЕВА;;F;;;138682;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138679;EU.7985.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Tatyana Vladimirovna ZHURAVLEVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138683;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138679;EU.7985.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Tetiana Volodymyrivna ZJURAVLEVA;SV;;;;139509;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138679;EU.7985.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Tatiana Vladimirovna ZJURAVLEVA;SV;;;;139510;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138679;EU.7985.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-12-19;19;12;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;138680;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138684;EU.7986.23;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Абду Тамер ХАССАН;;M;;;138686;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138684;EU.7986.23;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Abdu Tamer HASSAN;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138687;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138684;EU.7986.23;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1994-06-12;12;6;1994;;;NO;GREGORIAN;;;;;00;UNKNOWN;138685;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138688;EU.7987.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергей Навильевич АБУКОВ;;M;;;138690;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138688;EU.7987.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergei Navilievich ABUKOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138691;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138688;EU.7987.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergej Naviljevitj ABUKOV;SV;;;;139511;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138688;EU.7987.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-03-17;17;3;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;138689;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138692;EU.7988.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Владимир Николаевич АНДРИЕНКО;;M;;;138694;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138692;EU.7988.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Nikolaevich ANDRIENKO;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138695;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138692;EU.7988.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Nikolajevitj ANDRIJENKO;SV;;;;139512;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138692;EU.7988.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-04-27;27;4;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;138693;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138696;EU.7989.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александр Васильевич АВДЕЕВ;;M;;;138698;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138696;EU.7989.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexander Vasilievich AVDEEV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138699;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138696;EU.7989.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Vasiljevitj AVDEJEV;SV;;;;139513;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138696;EU.7989.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-12-07;7;12;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;138697;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138700;EU.7990.95;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Оксана Олександрівна БАБЕНКО;;F;;;138702;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138700;EU.7990.95;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Оксана Александровна БАБЕНКО;;F;;;138703;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138700;EU.7990.95;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oksana Alexandrovna BABENKO;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138704;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138700;EU.7990.95;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oksana Oleksandrivna BABENKO;SV;;;;139514;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138700;EU.7990.95;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oksana Aleksandrovna BABENKO;SV;;;;139515;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138700;EU.7990.95;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-06-03;3;6;1987;;;NO;GREGORIAN;;;;;00;UNKNOWN;138701;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138705;EU.7991.94;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Андрей Васильевич БАЕВСКИЙ;;M;;;138707;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138705;EU.7991.94;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Andrey Vasilievich BAEVSKY;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138708;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138705;EU.7991.94;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Andrej Vasiljevitj BAJEVSKIJ;SV;;;;139516;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138705;EU.7991.94;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-08-19;19;8;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;138706;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138709;EU.7992.93;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александр Сергеевич БАНАХ;;M;;;138711;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138709;EU.7992.93;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexander Sergeevich BANAKH;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138712;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138709;EU.7992.93;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Sergejevitj BANACH;SV;;;;139517;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138709;EU.7992.93;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-07-23;23;7;1985;;;NO;GREGORIAN;;;;;00;UNKNOWN;138710;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138713;EU.7993.92;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ринат Алиевич БИЛЯЛОВ;;M;;;138715;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138713;EU.7993.92;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Rinat Alievich BILYALOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138716;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138713;EU.7993.92;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Rinat Alijevitj BILJALOV;SV;;;;139518;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138713;EU.7993.92;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-10-20;20;10;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;138714;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138717;EU.7994.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Мария Викторовна БОГАТОВА;;F;;;138719;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138717;EU.7994.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maria Viktorovna BOGATOVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138720;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138717;EU.7994.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Marija Viktorovna BOGATOVA;SV;;;;139519;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138717;EU.7994.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1997-04-21;21;4;1997;;;NO;GREGORIAN;;;;;00;UNKNOWN;138718;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138721;EU.7995.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Анатолій Володимирович БОНДАРЧУК;;M;;;138723;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138721;EU.7995.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Анатолий Владимирович БОНДАРЧУК;;M;;;138724;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138721;EU.7995.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anatoly Vladimirovich BONDARCHUK;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138725;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138721;EU.7995.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anatolij Volodymyrovytj BONDARTJUK;SV;;;;139520;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138721;EU.7995.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anatolij Vladimirovitj BONDARTJUK;SV;;;;139521;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138721;EU.7995.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948-06-01;1;6;1948;;;NO;GREGORIAN;;;;;00;UNKNOWN;138722;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138731;EU.7997.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олександр Вікторович БИКАДОРОВ;;M;;;138733;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138731;EU.7997.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александр Викторович БЫКАДОРОВ;;M;;;138734;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138731;EU.7997.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexander Viktorovich BYKADOROV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138735;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138731;EU.7997.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleksandr Viktorovytj BYKADOROV;SV;;;;139524;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138731;EU.7997.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Viktorovitj BYKADOROV;SV;;;;139525;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138731;EU.7997.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-09-28;28;9;1985;;;NO;GREGORIAN;;;;;00;UNKNOWN;138732;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138741;EU.7999.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергій Анатолійович ЧУЧИН;;M;;;138743;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138741;EU.7999.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергей Анатольевич ЧУЧИН;;M;;;138744;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138741;EU.7999.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergey Anatolievich CHUCHIN;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138745;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138741;EU.7999.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Serhij Anatolijovytj TJUTJYN;SV;;;;139528;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138741;EU.7999.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergej Anatoljevitj TJUTJIN;SV;;;;139529;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138741;EU.7999.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-12-11;11;12;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;138742;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138746;EU.8000.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Дмитро Муртазійович ЧУРАДЗЕ;;M;;;138748;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138746;EU.8000.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Дмитрий Муртазиевич ЧУРАДЗЕ;;M;;;138749;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138746;EU.8000.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmitry Murtazievich CHURADZE;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138750;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138746;EU.8000.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmytro Murtazijovytj TJURADZE;SV;;;;139530;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138746;EU.8000.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmitrij Murtazijevitj TJURADZE;SV;;;;139531;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138746;EU.8000.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-10-24;24;10;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;138747;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138751;EU.8001.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Дмитро Едуардович ДЕЗОРЦЕВ;;M;;;138753;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138751;EU.8001.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Дмитрий Эдуардович ДЕЗОРЦЕВ;;M;;;138754;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138751;EU.8001.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmitry Eduardovich DEZORTSEV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138755;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138751;EU.8001.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmytro Eduardovytj DEZORTSEV;SV;;;;139532;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138751;EU.8001.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmitrij Eduardovitj DEZORTSEV;SV;;;;139533;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138751;EU.8001.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-06-19;19;6;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;138752;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138756;EU.8002.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Iрина Леонтiївна ДIАНОВА;;F;;;138758;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138756;EU.8002.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ирина Леонтьевна ДИАНОВА;;F;;;138759;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138756;EU.8002.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Irina Leontievna DIANOVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138760;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138756;EU.8002.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Iryna Leontijivna DIANOVA;SV;;;;139534;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138756;EU.8002.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Irina Leontievna DIANOVA;SV;;;;139535;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138756;EU.8002.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-10-13;13;10;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;138757;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138761;EU.8003.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олексій Сергійович ДОРОФЄЄВ;;M;;;138763;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138761;EU.8003.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Алексей Сергеевич ДОРОФЕЕВ;;M;;;138764;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138761;EU.8003.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexey Sergeevich DOROFEEV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138765;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138761;EU.8003.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleksij Serhijovytj DOROFEJEV;SV;;;;139536;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138761;EU.8003.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksej Sergejevitj DOROFEJEV;SV;;;;139537;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138761;EU.8003.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-11-11;11;11;1986;;;NO;GREGORIAN;;;;;00;UNKNOWN;138762;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138766;EU.8004.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Володимир Миколайович ДУБОВКА;;M;;;138768;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138766;EU.8004.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Владимир Николаевич ДУБОВКА;;M;;;138769;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138766;EU.8004.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Nikolaevich DUBOVKA;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138770;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138766;EU.8004.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Volodymyr Mykolajovytj DUBOVKA;;;;;139538;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138766;EU.8004.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Nikolajevitj DUBOVKA;SV;;;;139539;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138766;EU.8004.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-09-14;14;9;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;138767;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138771;EU.8005.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олександр Павлович ДЯГОВЕЦЬ;;M;;;138773;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138771;EU.8005.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александр Павлович ДЯГОВЕЦ;;M;;;138774;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138771;EU.8005.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexander Pavlovich DYAGOVETS;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138775;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138771;EU.8005.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleksandr Pavlovytj DJAHOVETS;SV;;;;139540;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138771;EU.8005.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Pavlovitj DJAGOVETS;SV;;;;139541;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138771;EU.8005.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-01-12;12;1;1962;;;NO;GREGORIAN;;;;;00;UNKNOWN;138772;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138776;EU.8006.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ольга Петрівна ГРЯЗНОВА;;F;;;138778;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138776;EU.8006.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ольга Петровна ГРЯЗНОВА;;F;;;138779;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138776;EU.8006.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Olga Petrovna GRYAZNOVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138780;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138776;EU.8006.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Olha Petrivna HRJAZNOVA;SV;;;;139542;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138776;EU.8006.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Olga Petrovna GRJAZNOVA;SV;;;;139543;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138776;EU.8006.81;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-05-16;16;5;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;138777;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138781;EU.8007.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Наталя Володимирівна ГУБАРЄВА;;F;;;138783;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138781;EU.8007.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Наталья Владимировна ГУБАРЕВА;;F;;;138784;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138781;EU.8007.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalya Vladimirovna GUBAREVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138785;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138781;EU.8007.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalja Volodymyrivna GUBAREVA;;;;;139544;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138781;EU.8007.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalja Vladimirovna GUBAREVA;SV;;;;139545;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138781;EU.8007.80;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-06-23;23;6;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;138782;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138786;EU.8008.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Євгеній Олексійович IЛЬЄНКО;;M;;;138788;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138786;EU.8008.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Евгений Алексеевич ИЛЬЕНКО;;M;;;138789;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138786;EU.8008.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Evgeny Alekseevich ILYENKO;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138790;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138786;EU.8008.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jevgenij Oleksijovytj ILJENKO;SV;;;;139546;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138786;EU.8008.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jevgenij Aleksejevitj ILJENKO;SV;;;;139547;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138786;EU.8008.79;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1995-11-05;5;11;1995;;;NO;GREGORIAN;;;;;00;UNKNOWN;138787;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138791;EU.8009.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Віктор Дмитрович ІIЩЕНКО;;M;;;138793;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138791;EU.8009.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Виктор Дмитриевич ИЩЕНКО;;M;;;138794;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138791;EU.8009.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Viktor Dmitrievich ISHCHENKO;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138795;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138791;EU.8009.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Viktor Dmytrovytj ISJTJENKO;SV;;;;139548;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138791;EU.8009.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Viktor Dmitrijevitj ISJTJENKO;SV;;;;139549;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138791;EU.8009.78;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-09-23;23;9;1958;;;NO;GREGORIAN;;;;;00;UNKNOWN;138792;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138796;EU.8010.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Герман Рустемович КАДИРОВ;;M;;;138798;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138796;EU.8010.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Герман Рустемович КАДЫРОВ;;M;;;138799;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138796;EU.8010.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;German Rustemovich KADYROV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138800;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138796;EU.8010.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Herman Rustemovytj KADYROV;SV;;;;139550;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138796;EU.8010.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;German Rustemovitj KADYROV;SV;;;;139551;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138796;EU.8010.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-10-15;15;10;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;138797;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138801;EU.8011.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олександр Сергійович КАМИШОВ;;M;;;138803;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138801;EU.8011.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александр Сергеевич КАМЫШОВ;;M;;;138804;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138801;EU.8011.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexander Sergeevich KAMYSHOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138805;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138801;EU.8011.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleksandr Serhijovytj KAMYSJOV;SV;;;;139552;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138801;EU.8011.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Sergejevitj KAMYSJOV;SV;;;;139553;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138801;EU.8011.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-05-24;24;5;1987;;;NO;GREGORIAN;;;;;00;UNKNOWN;138802;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138806;EU.8012.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Максим Геннадійович Книш;;M;;;138808;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138806;EU.8012.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Максим Геннадиевич Кныш;;M;;;138809;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138806;EU.8012.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maxim Gennadievich Knysh;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138810;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138806;EU.8012.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maksym Gennadijovytj KNYSJ;SV;;;;139554;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138806;EU.8012.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maksim Gennadijevitj KNYSJ;SV;;;;139555;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138806;EU.8012.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-05-27;27;5;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;138807;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138811;EU.8013.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Максим Віталійович КОРОЛЮК;;M;;;138813;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138811;EU.8013.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Максим Витальевич КОРОЛЮК;;M;;;138814;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138811;EU.8013.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maxim Vitalievich KOROLYUK;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138815;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138811;EU.8013.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maksym Vitalijovytj KOROLJUK;SV;;;;139556;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138811;EU.8013.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maksim Vitaljevitj KOROLJUK;SV;;;;139557;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138811;EU.8013.53;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-12-22;22;12;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;138812;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138816;EU.8014.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ірина Анатоліївна КОСТЕНКО;;F;;;138818;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138816;EU.8014.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ирина Анатольевна КОСТЕНКО;;F;;;138819;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138816;EU.8014.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Irina Anatolievna KOSTENKO;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138820;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138816;EU.8014.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Iryna Anatolijivna KOSTENKO;SV;;;;139558;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138816;EU.8014.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Irina Anatoljevna KOSTENKO;SV;;;;139559;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138816;EU.8014.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-04-04;4;4;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;138817;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138821;EU.8015.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Геннадій Євгенович КОВАЛЬЧУК;;M;;;138823;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138821;EU.8015.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Геннадий Евгеньевич КОВАЛЬЧУК;;M;;;138824;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138821;EU.8015.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Gennady Evgenievich KOVALCHUK;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138825;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138821;EU.8015.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Hennadij Jevgenovytj KOVALCHUK;SV;;;;139560;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138821;EU.8015.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Gennadij Jevgenjevitj KOVALCHUK;SV;;;;139561;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138821;EU.8015.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-09-16;16;9;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;138822;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138826;EU.8016.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергій Олександрович КОВАЛЬЧУК;;M;;;138828;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138826;EU.8016.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергей Александрович КОВАЛЬЧУК;;M;;;138829;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138826;EU.8016.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergey Alexandrovich KOVALCHUK;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138830;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138826;EU.8016.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Serhij Oleksandrovytj KOVALCHUK;SV;;;;139562;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138826;EU.8016.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergej Aleksandrovitj KOVALTJUK;SV;;;;139563;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138826;EU.8016.50;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-01-27;27;1;1966;;;NO;GREGORIAN;;;;;00;UNKNOWN;138827;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138831;EU.8017.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олександр Володимирович КОВТИРIН;;M;;;138833;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138831;EU.8017.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александр Владимирович КОВТЫРИН;;M;;;138834;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138831;EU.8017.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexander Vladimirovich KOVTYRIN;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138835;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138831;EU.8017.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleksandr Volodymyrovytj KOVTYRIN;SV;;;;139580;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138831;EU.8017.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Vladimirovitj KOVTYRIN;SV;;;;139581;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138831;EU.8017.49;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-10-10;10;10;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;138832;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138836;EU.8018.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ольга Олександрівна КРАВЦОВА;;F;;;138838;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138836;EU.8018.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ольга Александровна КРАВЦОВА;;F;;;138839;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138836;EU.8018.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Olga Alexandrovna KRAVTSOVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138840;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138836;EU.8018.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Olha Oleksandrivna KRAVTSOVA;SV;;;;139582;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138836;EU.8018.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Olga Aleksandrovna KRAVTSOVA;SV;;;;139583;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138836;EU.8018.48;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-02-19;19;2;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;138837;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138841;EU.8019.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юлія Михайлівна КРЮКОВА;;F;;;138843;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138841;EU.8019.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юлия Михайловна КРЮКОВА;;F;;;138844;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138841;EU.8019.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Julia Mikhailovna KRYUKOVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138845;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138841;EU.8019.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Julija Michajlivna KRJUKOVA;SV;;;;139584;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138841;EU.8019.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Julija Michajlovna KRJUKOVA;SV;;;;139585;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138841;EU.8019.47;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-05-28;28;5;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;138842;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138846;EU.8020.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Клавдія Юр'ївна КУЛЬБАЦЬКА;;F;;;138848;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138846;EU.8020.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Клавдия Юрьевна КУЛЬБАЦКАЯ;;F;;;138849;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138846;EU.8020.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Klavdia Yurievna KULBATSKAYA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138850;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138846;EU.8020.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Klavdia Jurjivna KULBATSKA;SV;;;;139586;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138846;EU.8020.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Klavdia Jurjevna KULBATSKAYA;SV;;;;139587;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138846;EU.8020.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-03-30;30;3;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;138847;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138851;EU.8021.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Костянтин Олександрович КУЗЬМIН;;M;;;138853;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138851;EU.8021.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Константин Александрович КУЗЬМИН;;M;;;138854;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138851;EU.8021.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Konstantin Alexandrovich KUZMIN;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138855;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138851;EU.8021.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Konstantin Oleksandrovych KUZMIN;SV;;;;139588;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138851;EU.8021.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Konstantin Aleksandrovitj KUZMIN;SV;;;;139589;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138851;EU.8021.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-11-28;28;11;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;138852;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138856;EU.8022.23;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юрій Володимирович ЛЕОНОВ;;M;;;138858;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138856;EU.8022.23;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юрий Владимирович ЛЕОНОВ;;M;;;138859;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138856;EU.8022.23;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yury Vladimirovich LEONOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138860;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138856;EU.8022.23;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jurij Volodymyrovytj LEONOV;SV;;;;139590;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138856;EU.8022.23;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jurij Vladimirovitj LEONOV;SV;;;;139591;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138856;EU.8022.23;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-04-01;1;4;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;138857;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138861;EU.8023.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Роман Миколайович ЛЕПА;;M;;;138863;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138861;EU.8023.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Роман Николаевич ЛЕПА;;M;;;138864;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138861;EU.8023.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Roman Nikolaevich LEPA;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138865;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138861;EU.8023.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Roman Mykolajovytj LEPA;SV;;;;139592;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138861;EU.8023.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Roman Nikolajevitj LEPA;SV;;;;139593;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138861;EU.8023.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-06-03;3;6;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;138862;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138866;EU.8024.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ярослав Игоревич ЛИСОБЕЙ;;M;;;138868;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138866;EU.8024.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yaroslav Igorevich LISOBEY;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;138869;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138866;EU.8024.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jaroslav Igorjevitj LISOBEJ;SV;;;;139594;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138866;EU.8024.21;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-01-24;24;1;1988;;;NO;GREGORIAN;;;;;00;UNKNOWN;138867;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138870;EU.8025.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ирина Ивановна АНДРУХ;;F;;;138872;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138870;EU.8025.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Irina Ivanovna ANDRUKH;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138873;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138870;EU.8025.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Irina Ivanovna ANDRUCH;SV;;;;139595;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138870;EU.8025.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-09-21;21;9;1959;;;NO;GREGORIAN;;;Luhansk;;UA;UKRAINE;138871;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138874;EU.8026.19;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Алексей Юрьевич БЕЛЕЦКИЙ;;M;;;138876;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138874;EU.8026.19;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksei Yuryevich BELETSKY;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138877;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138874;EU.8026.19;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksej Jurjevitj BELETSKIJ;SV;;;;139596;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138874;EU.8026.19;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-07-23;23;7;1988;;;NO;GREGORIAN;;;;;00;UNKNOWN;138875;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138878;EU.8027.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Геннадий Михайлович БУНЕЕВ;;M;;;138880;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138878;EU.8027.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Gennadiy Mikhaylovich BUNEEV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138881;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138878;EU.8027.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Gennadij Michajlovitj BUNEJEV;SV;;;;139597;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138878;EU.8027.18;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-02-11;11;2;1958;;;NO;GREGORIAN;;;Luhansk;;UA;UKRAINE;138879;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138882;EU.8028.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олег Вячеславович ДАДОНОВ;;M;;;138884;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138882;EU.8028.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleg Viacheslavovich DADONOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138885;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138882;EU.8028.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleg Vjatjeslavovitj DADONOV;SV;;;;139598;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138882;EU.8028.17;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-07-06;6;7;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;138883;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138886;EU.8029.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Бэлла Сейрановна ДЕМЕШКО;;F;;;138888;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138886;EU.8029.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Bella Seyranovna DEMESHKO;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138889;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138886;EU.8029.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Bella Sejranovna DEMESJKO;SV;;;;139599;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138886;EU.8029.16;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-02-19;19;2;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;138887;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138890;EU.8030.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергей Михайлович ДИДЕНКО;;M;;;138892;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138890;EU.8030.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergei Mikhaylovich DIDENKO;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138893;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138890;EU.8030.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergej Michajlovitj DIDENKO;SV;;;;139600;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138890;EU.8030.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-06-22;22;6;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;138891;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138894;EU.8031.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Елена Евгеньевна ФАРАХОВА;;F;;;138896;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138894;EU.8031.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Elena Evgenyevna FARAKHOVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138897;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138894;EU.8031.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jelena Jevgenjevna FARACHOVA;SV;;;;139601;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138894;EU.8031.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-12-31;31;12;1984;;;NO;GREGORIAN;;;Luhansk;;UA;UKRAINE;138895;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138898;EU.8032.89;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Валерий Иосифович ГАЛИНКИН;;M;;;138900;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138898;EU.8032.89;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Valeriy Iosifovich GALINKIN;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138901;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138898;EU.8032.89;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Valerij Iosifovitj GALINKIN;SV;;;;139602;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138898;EU.8032.89;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947-08-01;1;8;1947;;;NO;GREGORIAN;;;Luhansk;;UA;UKRAINE;138899;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138902;EU.8033.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Светлана Федоровна ГИЗАЙ;;F;;;138904;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138902;EU.8033.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Svetlana Fiodorovna GIZAY;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138905;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138902;EU.8033.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Svetlana Fjodorovna GIZAJ;SV;;;;139603;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138902;EU.8033.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-01-24;24;1;1965;;;NO;GREGORIAN;;;;Kehychivka;UA;UKRAINE;138903;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138906;EU.8034.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Дмитрий Юрьевич ГОЛДА;;M;;;138908;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138906;EU.8034.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmitry Yuryevich GOLDA;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138909;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138906;EU.8034.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmitrij Jurjevitj GOLDA;SV;;;;139604;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138906;EU.8034.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-08-02;2;8;1984;;;NO;GREGORIAN;;;;;00;UNKNOWN;138907;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138910;EU.8035.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Михаил Васильевич ГОЛУБОВИЧ;;M;;;138912;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138910;EU.8035.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Mikhail Vasilyevich GOLUBOVICH;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138913;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138910;EU.8035.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Michail Vasiljevitj GOLUBOVITJ;SV;;;;139605;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138910;EU.8035.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1943-11-21;21;11;1943;;;NO;GREGORIAN;;;;Zolotonosha;UA;UKRAINE;138911;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138914;EU.8036.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Андрей Анатольевич ГУБАРЕВ;;M;;;138916;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138914;EU.8036.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Andrei Anatolyevich GUBAREV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138917;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138914;EU.8036.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Andrej Anatoljevitj GUBAREV;SV;;;;139606;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138914;EU.8036.85;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-10-22;22;10;1974;;;NO;GREGORIAN;;;;Krasnodon;UA;UKRAINE;138915;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138918;EU.8037.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Светлана Вадимовна ХВОРОСТЯН;;F;;;138920;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138918;EU.8037.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Svetlana Vadimovna KHVOROSTIAN;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138921;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138918;EU.8037.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Svetlana Vadimovna CHVOROSTIAN;SV;;;;139607;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138918;EU.8037.84;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1990-03-07;7;3;1990;;;NO;GREGORIAN;;;Luhansk;;UA;UKRAINE;138919;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138922;EU.8038.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Виталий Михайлович КИШКИНОВ;;M;;;138924;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138922;EU.8038.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vitaliy Mikhaylovich KISHKINOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138925;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138922;EU.8038.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vitalij Michajlovitj KISJKINOV;SV;;;;139608;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138922;EU.8038.83;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-01-07;7;1;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;138923;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138926;EU.8039.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ольга Анатольевна КОБЦЕВА;;F;;;138928;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138926;EU.8039.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Olga Anatolyevna KOBTSEVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138929;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138926;EU.8039.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Olga Anatoljevna KOBTSEVA;SV;;;;139609;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138926;EU.8039.82;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-09-06;6;9;1966;;;NO;GREGORIAN;;;;Rubizhne;UA;UKRAINE;138927;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138930;EU.8040.60;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Денис Сергеевич КОЛЕСНИКОВ;;M;;;138932;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138930;EU.8040.60;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Denis Sergeevich KOLESNIKOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138933;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138930;EU.8040.60;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Denis Sergejevitj KOLESNIKOV;SV;;;;139610;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138930;EU.8040.60;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-06-01;1;6;1980;;;NO;GREGORIAN;;;Luhansk;;UA;UKRAINE;138931;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138934;EU.8041.59;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александра Сергеевна КОВАЛЕНКО;;F;;;138936;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138934;EU.8041.59;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandra Sergeevna KOVALENKO;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138937;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138934;EU.8041.59;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandra Sergejevna KOVALENKO;SV;;;;139611;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138934;EU.8041.59;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988-09-06;6;9;1988;;;NO;GREGORIAN;;;Luhansk;;UA;UKRAINE;138935;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138938;EU.8042.58;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;АО “Арзамасский машиностроительный завод”;;;;;138940;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138938;EU.8042.58;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;JSC Arzamas Machine-Building Plant;EN;;;;138941;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138938;EU.8042.58;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Arzamaska Fabryka Maszyn SA;PL;;;;139225;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138938;EU.8042.58;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;Nizhny Novgorod Oblast;Ulitsa 9 Maya, 2, Arzamas, Nizhny Novgorod Oblast;;607220;;;NO;WEB[amz.ru]\nPHONE[+7 831 4740780]\nEMAIL[oao_amz@amz.ru];RU;RUSSIAN FEDERATION;138939;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138942;EU.8043.57;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александр Валерьевич КРИЕРЕНКО;;M;;;138944;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138942;EU.8043.57;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Valeryevich KRIYERENKO;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138945;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138942;EU.8043.57;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Valerjevitj KRIJERENKO;SV;;;;139612;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138942;EU.8043.57;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1993-10-14;14;10;1993;;;NO;GREGORIAN;;;Luhansk;;UA;UKRAINE;138943;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138946;EU.8044.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Дмитрий Леонидович КУКАРСКИЙ;;M;;;138948;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138946;EU.8044.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmitry Leonidovich KUKARSKY;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138949;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138946;EU.8044.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmitrij Leonidovitj KUKARSKIJ;SV;;;;139613;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138946;EU.8044.56;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-01-20;20;1;1982;;;NO;GREGORIAN;;;;Antipino;RU;RUSSIAN FEDERATION;138947;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138950;EU.8045.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Андрей Викторович ЛИЦОЕВ;;M;;;138952;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138950;EU.8045.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Andrei Viktorovich LITSOEV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138953;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138950;EU.8045.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Andrej Viktorovitj LITSOJEV;SV;;;;139614;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138950;EU.8045.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-02-06;6;2;1967;;;NO;GREGORIAN;;;Luhansk;;UA;UKRAINE;138951;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138954;EU.8046.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Роман Григорьевич ЛЫСЕНКО;;M;;;138956;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138954;EU.8046.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Roman Grigoryevich LYSENKO;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138957;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138954;EU.8046.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Roman Grigorjevitj LYSENKO;SV;;;;139615;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138954;EU.8046.54;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-08-13;13;8;1962;;;NO;GREGORIAN;;;;Alchevsk;UA;UKRAINE;138955;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138962;EU.8048.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Павел Георгиевич МАЛЫЙ;;M;;;138964;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138962;EU.8048.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Pavel Georgievich MALY;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138965;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138962;EU.8048.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Pavel Georgijevitj MALYJ;SV;;;;139616;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138962;EU.8048.52;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-11-05;5;11;1968;;;NO;GREGORIAN;;;;Debaltseve;UA;UKRAINE;138963;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138966;EU.8049.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Руслан Раисович МАРДАНОВ;;M;;;138968;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138966;EU.8049.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ruslan Raisovich MARDANOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138969;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138966;EU.8049.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ruslan Raisovitj MARDANOV;SV;;;;139617;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138966;EU.8049.51;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-09-22;22;9;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;138967;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138970;EU.8050.29;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;JSC GTLK State Transport Leasing Company;EN;;;;138972;EN;"Type of entity: Transports company; Place of registration: Moscow, Russian Federation; Date of registration: 2001; Principal place of business: Russian Federation; Associated entities: GTLK Europe, GTLK Asia, GTLK Middle East";amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138970;EU.8050.29;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;JSC GTLK Valsts transporta nomas uzņēmums;LV;;;;139224;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138970;EU.8050.29;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Państwowa Transportowa Spółka Leasingowa;PL;;;;139238;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138970;EU.8050.29;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Štátna dopravná nájomná spoločnosť;SK;;;;139239;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138970;EU.8050.29;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;državna prevozna lizinška družba;SL;;;;139240;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138970;EU.8050.29;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;Salekhard, Yamalo-Nenets Autonomous Area;73 Respublika St., Suite 100;;62900B;;;NO;PHONE[(495) 221-00-12 8-800-200-12-99]\nEMAIL[gtlk@gtlk.ru ]\n(Legal address);RU;RUSSIAN FEDERATION;138971;EN;Legal address;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138970;EU.8050.29;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;31a Leningradsky Avenue, bldg. #1;;125284;;;NO;PHONE[(495) 221-00-12 8-800-200-12-99]\nEMAIL[gtlk@gtlk.ru];RU;RUSSIAN FEDERATION;139221;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138973;EU.8051.28;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Жанна Викторовна МАРФИНА;;F;;;138975;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138973;EU.8051.28;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Zhanna Viktorovna MARFINA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138976;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138973;EU.8051.28;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Zjanna Viktorovna MARFINA;SV;;;;139618;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138973;EU.8051.28;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-01-31;31;1;1974;;;NO;GREGORIAN;;;;Bile;UA;UKRAINE;138974;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138977;EU.8052.27;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Анна Михайловна МОСИНА;;F;;;138979;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138977;EU.8052.27;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anna Mikhaylovna MOSINA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138980;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138977;EU.8052.27;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Anna Michajlovna MOSINA;SV;;;;139619;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138977;EU.8052.27;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-10-27;27;10;1957;;;NO;GREGORIAN;;;Luhansk;;UA;UKRAINE;138978;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138981;EU.8053.26;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Зинаида Гавриловна НАДЕН;;F;;;138983;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138981;EU.8053.26;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Zinaida Gavrilovna NADEN;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138984;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138981;EU.8053.26;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947-07-22;22;7;1947;;;NO;GREGORIAN;;;;;00;UNKNOWN;138982;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138985;EU.8054.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Павел Аристиевич ПИЛАВОВ;;M;;;138987;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138985;EU.8054.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Pavel Aristievich PILAVOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138988;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138985;EU.8054.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Pavel Aristijevitj PILAVOV;SV;;;;139620;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138985;EU.8054.25;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-02-17;17;2;1969;;;NO;GREGORIAN;;;;Alekseyevka;GE;GEORGIA;138986;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138989;EU.8055.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Алла Аркадьевна ПОДТЫННАЯ;;F;;;138991;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138989;EU.8055.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alla Arkadyevna PODTYNNAYA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;138992;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138989;EU.8055.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alla Arkadjevna PODTYNNAJA;SV;;;;139621;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138989;EU.8055.24;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-06-08;8;6;1953;;;NO;GREGORIAN;;;Luhansk;;UA;UKRAINE;138990;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138993;EU.8056.23;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;АО «Корпорация Тактическое Ракетное Вооружение», КТРВ;;;;;138995;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138993;EU.8056.23;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;JSC Tactical Missiles Corporation (KTRV);EN;;;;138996;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138993;EU.8056.23;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Korporacja Pocisków Taktycznych SA , KTRV;PL;;;;139227;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138993;EU.8056.23;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;Korolev, Ilyicha str., 7;;141080;Moscow region;;NO;WEB[http://www.ktrv.ru]\nPHONE[+7 (495) 542-57-09]\nEMAIL[kmo@ktrv.ru]\nFAX[+7 (495) 511-94-39 ];RU;RUSSIAN FEDERATION;138994;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138997;EU.8057.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Владимир Николаевич ПОЛЯКОВ;;M;;;138999;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138997;EU.8057.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Nikolaevich POLYAKOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139000;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138997;EU.8057.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Nikolajevitj POLJAKOV;SV;;;;139622;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;138997;EU.8057.22;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-04-07;7;4;1987;;;NO;GREGORIAN;;;;Perevalsk;UA;UKRAINE;138998;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139001;EU.8058.21;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;ВТБ/Внешторгбанк;RU;;;;139003;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139001;EU.8058.21;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;VTB Bank;EN;;;The VTB Bank is a systemically important financial institution for the Russian government, which in turn is a major shareholder of VTB Bank. The bank itself has close ties to Russian intelligence and its CEO was appointed by the President of the Russian Federation, Vladimir Putin, and has defended his actions including the annexation of the Crimean peninsula.;139004;EN;"Type of entity: Public Joint Stock Company; Associated individuals: Andrei Leonidowitsch KOSTIN (President and Chairman of the Management Board); Anton SILUANOV (Chairman of the Supervisory Council); Associated entity: Federal Agency for State Property Management (subdivision of the Russian Ministry of Economic Development is a major shareholder)";amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139001;EU.8058.21;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;Vorontsovskaya Str., 43;;109044;;;NO;;RU;RUSSIAN FEDERATION;139002;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139001;EU.8058.21;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1027739609391 (regnumber-Registration Number) (on 1990-10-17 in St. Petersburg)(Place of registration: Degtyarnyy Pereulok, 11a, St. Petersburg, 191144, Russian Federation);NO;NO;NO;NO;NO;;1990-10-17;;;;;regnumber;Registration Number;St. Petersburg;RU;;139658;EN;Place of registration: Degtyarnyy Pereulok, 11a, St. Petersburg, 191144, Russian Federation;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;; +28/10/2022;139005;EU.8059.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олег Николаевич ПОПОВ;;M;;;139007;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139005;EU.8059.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleg Nikolaevich POPOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139008;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139005;EU.8059.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleg Nikolajevitj POPOV;SV;;;;139623;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139005;EU.8059.20;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-04-16;16;4;1972;;;NO;GREGORIAN;;;Luhansk;;UA;UKRAINE;139006;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139009;EU.8060.95;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Buycombank;;;;;139010;EN;formerly known as;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139009;EU.8060.95;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Sovcombank;EN;;;;139011;EN;"Full corporate name: Public Joint Stock Company ""Sovcombank"". Type of entity: Public Joint Stock Company\nAssociated entity: Government of the Russian Federation.";amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139009;EU.8060.95;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;Kostroma;Prospekt Tekstilshchikov, 46;;156000;Kostroma Oblast;;NO;;RU;RUSSIAN FEDERATION;139028;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139009;EU.8060.95;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4401116480 (other-Other identification number) (Tax ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;139656;EN;Tax ID number;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;; +28/10/2022;139009;EU.8060.95;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1144400000425 (regnumber-Registration Number) (Date of registration: 01.09.2014);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;139657;EN;Date of registration: 01.09.2014;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;; +28/10/2022;139012;EU.8061.94;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Елена Ивановна РАХМУКОВА;;F;;;139014;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139012;EU.8061.94;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Elena Ivanovna RAKHMUKOVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139015;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139012;EU.8061.94;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jelena Ivanovna RACHMUKOVA;SV;;;;139624;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139012;EU.8061.94;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-09-25;25;9;1956;;;NO;GREGORIAN;;;;Antratsyt;UA;UKRAINE;139013;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139020;EU.8063.92;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Игорь Николаевич РЯБУШКИН;;M;;;139022;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139020;EU.8063.92;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Nikolaevich RYABUSHKIN;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139023;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139020;EU.8063.92;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Nikolajevitj RJABUSJKIN;SV;;;;139625;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139020;EU.8063.92;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-05-05;5;5;1970;;;NO;GREGORIAN;;;;Rovenky;UA;UKRAINE;139021;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139024;EU.8064.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Иван Владимирович САНАЕВ;;M;;;139026;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139024;EU.8064.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ivan Vladimirovich SANAYEV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139027;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139024;EU.8064.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ivan Vladimirovitj SANAJEV;SV;;;;139626;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139024;EU.8064.91;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-06-10;10;6;1986;;;NO;GREGORIAN;;;;Molodohvardiisk;UA;UKRAINE;139025;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139029;EU.8065.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Владимир Владимирович САНКИН;;M;;;139031;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139029;EU.8065.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Vladimirovich SANKIN;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139032;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139029;EU.8065.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Vladimirovitj SANKIN;SV;;;;139627;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139029;EU.8065.90;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-06-07;7;6;1984;;;NO;GREGORIAN;;;Luhansk;;UA;UKRAINE;139030;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139033;EU.8066.89;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Наталья Владимировна СЕРГУН;;F;;;139035;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139033;EU.8066.89;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalya Vladimirovna SERGUN;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139036;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139033;EU.8066.89;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalja Vladimirovna SERGUN;SV;;;;139628;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139033;EU.8066.89;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-09-20;20;9;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;139034;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139037;EU.8067.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Сергей Викторович СЕРОВ;;M;;;139039;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139037;EU.8067.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergei Viktorovich SEROV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139040;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139037;EU.8067.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Sergej Viktorovitj SEROV;SV;;;;139629;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139037;EU.8067.88;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-12-13;13;12;1967;;;NO;GREGORIAN;;;;;00;UNKNOWN;139038;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139041;EU.8068.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Константин Евгеньевич СКРЫПНИК;;M;;;139043;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139041;EU.8068.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Konstantin Evgenevich SKRYPNYK;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139044;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139041;EU.8068.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Konstantin Jevgenjevitj SKRYPNIK;SV;;;;139630;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139041;EU.8068.87;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-04-15;15;4;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;139042;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139045;EU.8069.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Вячеслав Евгеньевич СВЕТЛОВ;;M;;;139047;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139045;EU.8069.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Viacheslav Evgenyevich SVETLOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139048;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139045;EU.8069.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vjatjeslav Jevgenjevitj SVETLOV;SV;;;;139631;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139045;EU.8069.86;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-01-27;27;1;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;139046;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139049;EU.8070.64;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Андрей Михайлович ТАМБОВЦЕВ;;M;;;139051;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139049;EU.8070.64;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Andrei Mikhaylovich TAMBOVTSEV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139052;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139049;EU.8070.64;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Andrej Michajlovitj TAMBOVTSEV;SV;;;;139632;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139049;EU.8070.64;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-08-06;6;8;1986;;;NO;GREGORIAN;;;Luhansk;;UA;UKRAINE;139050;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139053;EU.8071.63;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юрий Николаевич ТЕЛИКАНОВ;;M;;;139055;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139053;EU.8071.63;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yuriy Nikolaevich TELIKANOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139056;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139053;EU.8071.63;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jurij Nikolajevitj TELIKANOV;SV;;;;139633;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139053;EU.8071.63;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955-05-10;10;5;1955;;;NO;GREGORIAN;;;;Yenakiyeve;UA;UKRAINE;139054;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139057;EU.8072.62;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Максим Анатольевич УВАРОВ;;M;;;139059;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139057;EU.8072.62;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maksim Anatolyevich UVAROV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139060;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139057;EU.8072.62;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Maksim Anatoljevitj UVAROV;SV;;;;139634;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139057;EU.8072.62;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-08-14;14;8;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;139058;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139061;EU.8073.61;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Александр Викторович ЕРМОЛЕНКО;;M;;;139063;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139061;EU.8073.61;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Viktorovich YERMOLENKO;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139064;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139061;EU.8073.61;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Viktorovitj JERMOLENKO;SV;;;;139635;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139061;EU.8073.61;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-12-20;20;12;1985;;;NO;GREGORIAN;;;;Snezhnoe;UA;UKRAINE;139062;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139065;EU.8074.60;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Юрий Павлович ЮРОВ;;M;;;139067;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139065;EU.8074.60;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yuriy Pavlovich YUROV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139068;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139065;EU.8074.60;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Jurij Pavlovitj JUROV;SV;;;;139636;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139065;EU.8074.60;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-06-17;17;6;1969;;;NO;GREGORIAN;;;Luhansk;;UA;UKRAINE;139066;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139069;EU.8075.59;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Нелли Акоповна ЗАДИРАКА;;F;;;139071;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139069;EU.8075.59;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Nelli Akopovna ZADIRAKA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139072;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139069;EU.8075.59;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-08-24;24;8;1949;;;NO;GREGORIAN;;;;Akhaltsikhe;GE;GEORGIA;139070;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139073;EU.8076.58;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Новикомбанк;RU;;;;139075;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139073;EU.8076.58;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Novikombank;EN;;;;139076;EN;"Type of company: Joint Stock Commercial Bank; Associated individuals; Georgieva Elena ALEKSANDROVNA (Chairwoman of the Management Board); Andrey Valeryevich KONDRATYEV (Chairman of the Board of Directors); Associated entity: Rostec (Russian Technologies State Corporation)";amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139073;EU.8076.58;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;Bld.1, Polyanka Bolshaya str. 50/1;;119180;;;NO;;RU;RUSSIAN FEDERATION;139074;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139073;EU.8076.58;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1027739075891 (regnumber-Registration Number) (in Moscow)(Place of registration: Moscow, Russian Federation);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;Moscow;RU;;139655;EN;Place of registration: Moscow, Russian Federation;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;; +28/10/2022;139077;EU.8077.57;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Дмитро Олександрович ХОРОШИЛОВ;;M;;;139079;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139077;EU.8077.57;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Дмитрий Александрович ХОРОШИЛОВ;;M;;;139080;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139077;EU.8077.57;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmitry Aleksandrovich KHOROSHILOV;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139081;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139077;EU.8077.57;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmytro Oleksandrovytj CHOROSJYLOV;SV;;;;139637;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139077;EU.8077.57;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Dmitrij Aleksandrovitj CHOROSJILOV;SV;;;;139638;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139077;EU.8077.57;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-12-20;20;12;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;139078;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139086;EU.8079.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Андрій Федорович СОПЕЛЬНИК;;M;;;139088;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139086;EU.8079.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Андрей Федорович СОПЕЛЬНИК;;M;;;139089;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139086;EU.8079.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Andrei Fiodorovich SOPELNIK;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139090;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139086;EU.8079.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Andrij Fjodorovytj SOPELNYK;SV;;;;139639;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139086;EU.8079.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Andrej Fjodorovitj SOPELNIK;SV;;;;139640;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139086;EU.8079.55;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-03-16;16;3;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;139087;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139091;EU.8080.33;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олег Валерійович КОВАЛЬ;;M;;;139093;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139091;EU.8080.33;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Олег Валерьевич КОВАЛЬ;;M;;;139094;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139091;EU.8080.33;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleg Valeryevich KOVAL;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Luhansk People’s Republic’;139095;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139091;EU.8080.33;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleh Valerijovytj KOVAL;SV;;;;139641;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139091;EU.8080.33;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleg Valerjevitj KOVAL;SV;;;;139642;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139091;EU.8080.33;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-09-29;29;9;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;139092;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139096;EU.8081.32;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;NOMOS Bank;;;;;139098;EN;formerly known as;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139096;EU.8081.32;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Otkritie FC Bank;EN;;;;139099;EN;"Type of company: Public Joint Stock Company; Associated individual: Igor Finogenov, Co-founder (now CEO of the Eurasian Development Bank); Associated: Central Bank of Russia; Government of the Russian Federation";amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139096;EU.8081.32;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;D. 2, str. 4, ul. Letnikovskaya;;115114;;;NO;;RU;RUSSIAN FEDERATION;139097;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139096;EU.8081.32;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1027739019208 (regnumber-Registration Number) (on 1999-12-15)(Date of registration: 15.12.1999);NO;NO;NO;NO;NO;;1999-12-15;;;;;regnumber;Registration Number;;00;;139653;EN;Date of registration: 15.12.1999;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;; +28/10/2022;139096;EU.8081.32;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7706092528 (other-Other identification number) (Tax ID number\nSWIFT/BIC: JSNMRUMM);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;139654;EN;Tax ID number\nSWIFT/BIC: JSNMRUMM;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;; +28/10/2022;139112;EU.8085.28;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Прибалтийский судостроительный завод “Янтарь”;RU;;;;139114;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139112;EU.8085.28;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Yantar Shipyard;EN;;;;139115;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139112;EU.8085.28;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Stocznia Jantar;PL;;;;139237;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139112;EU.8085.28;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;Kaliningrad;1 Guskova square,;;236005;;;NO;WEB[https://shipyard-yantar.ru/en]\nPHONE[+7 (4012) 61 30 83]\nEMAIL[office@shipyard-yantar.ru];RU;RUSSIAN FEDERATION;139113;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139120;EU.8087.26;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;АО “Объединенная двигателестроительная корпорация”;RU;;;;139121;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139120;EU.8087.26;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;PJSC United Engine Corporation;EN;;;;139122;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139120;EU.8087.26;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Zjednoczona Korporacja Silnikowa Państwowa SA;PL;;;;139236;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139120;EU.8087.26;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;16, Budyonny Avenue;;1051158;;;NO;WEB[https://www.uecrus.com]\nPHONE[+7(495) 232-55-02]\nEMAIL[info@uecrus.com];RU;RUSSIAN FEDERATION;139124;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139125;EU.8088.25;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Акционерное Общество Судостроительный Завод “Море”;;;;;139127;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139125;EU.8088.25;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;PO More Shipyard;EN;;;;139128;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139125;EU.8088.25;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Stocznia „Morze” SA;PL;;;;139231;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139125;EU.8088.25;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;Desantnikov 1, Primorskiy, Fedosia, Crimea;;298176;;;NO;WEB[https://moreship.ru/main/]\nPHONE[+7 (36562) 29-3-22]\nEMAIL[office@moreship.ru];00;UNKNOWN;139126;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139129;EU.8089.24;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Холдинговая компания АО “Научно-производственный концерн ‘Технологии машиностроения’”;;;;;139131;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139129;EU.8089.24;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;JSC Research and Industrial Concern “Machine Engineering Technologies” - JSC RIC TECMASH;EN;;;;139132;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139129;EU.8089.24;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Koncern Badawczo-Przemysłowy „Technologie Inżynierii Maszyn”;PL;;;;139235;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139129;EU.8089.24;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;Bolshaya Tatarskaya Str. 35/5;;115184;;;NO;WEB[http://tecmash.ru]\nPHONE[+7 495 459 98 81]\nEMAIL[nfo@tecmash.ru];RU;RUSSIAN FEDERATION;139130;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139137;EU.8091.1;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;АО Концерн “Созвездие”;;;;;139139;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139137;EU.8091.1;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;JSC Sozvezdie Concern;EN;;;;139140;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139137;EU.8091.1;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Koncern Sozwezdije SA;PL;;;;139234;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139137;EU.8091.1;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;Voronezh;Plekhanovskaya Str., 14,;;394018;;;NO;WEB[ https://www.sozvezdie.su]\nPHONE[+7 473 252 52 52]\nEMAIL[ office@sozvezdie.su];RU;RUSSIAN FEDERATION;139138;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139141;EU.8092.0;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;ООО “Русские машины”;;;;;139143;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139141;EU.8092.0;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;JSC Russian Machines;EN;;;;139144;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139141;EU.8092.0;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Rosyjskie Maszyny SA;PL;;;;139233;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139141;EU.8092.0;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;Rochdelskaya 15, building 8 Moscow;;123022;;;NO;WEB[rm.ru]\nPHONE[+7 (495) 653 82 07 ]\nEMAIL[info@rm.ru];RU;RUSSIAN FEDERATION;139142;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139163;EU.8112.63;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Su-Gil;;M;;;139166;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139163;EU.8112.63;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KIM Su Gil;;M;;Director of the Korean People’s Army General Political Bureau between 2018 and 2021 and a Member of the State Affairs Commission between 2019 and 2021;139167;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139163;EU.8112.63;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;김수길;;M;;;141945;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139163;EU.8112.63;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950;;;NO;GREGORIAN;;;;;00;UNKNOWN;139164;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139163;EU.8112.63;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;139165;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC +28/10/2022;139168;EU.8113.62;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;JON Il-Ho;;M;;;139172;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139168;EU.8113.62;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;JON Il Ho;;M;;"“leading official in the field of national defence science” ; Promoted to Colonel General in August 2019, recipient of the February 16 Science and Technology Prize, Director of the Research Institute of Automation and Institute Director of Kim Chaek University of Technology, and Vice Director of a Department of the Central Committee of the Workers’ Party";139173;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139168;EU.8113.62;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;전일호;;M;;;141946;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139168;EU.8113.62;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;139169;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139168;EU.8113.62;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955;;;NO;GREGORIAN;;;;;00;UNKNOWN;139170;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139168;EU.8113.62;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;139171;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC +28/10/2022;139174;EU.8114.61;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;JONG Sung-Il;;M;;;139178;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139174;EU.8114.61;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;JONG Sung Il;;M;;“Senior Party Official” and “leading official in the field of national defence science” and identified by a UN Member State as a former Vice-Director of the Munitions Industry Department of the Central Committee of Workers’ Party of Korea;139179;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139174;EU.8114.61;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;정승일;;M;;;141947;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139174;EU.8114.61;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-03-20;20;3;1961;;;NO;GREGORIAN;;;;;00;UNKNOWN;139175;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139174;EU.8114.61;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"927240105 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;139177;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;; +28/10/2022;139174;EU.8114.61;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;139176;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC +28/10/2022;139180;EU.8115.60;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;YU Jin;;M;;Director of the Munitions Industry Department and Alternative Member of the Political Bureau of the Central Committee of Workers’ Party of Korea;139183;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139180;EU.8115.60;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;유진;;M;;;141948;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139180;EU.8115.60;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;139181;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139180;EU.8115.60;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;139182;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC +28/10/2022;139184;EU.8116.59;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;PAK Hwa-Song;;M;;;139189;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139184;EU.8116.59;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;PAK Hwa Song;;M;;Co-founder of the CONGO ACONDE company;139190;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139184;EU.8116.59;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;박화성;;M;;;142127;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139184;EU.8116.59;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);139185;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139184;EU.8116.59;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;139186;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139184;EU.8116.59;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"654331357 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;139188;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;; +28/10/2022;139184;EU.8116.59;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;139187;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC +28/10/2022;139191;EU.8117.58;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;HWANG Kil-Su;;M;;;139196;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139191;EU.8117.58;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;HWANG Kil Su;;M;;Co-founder of the CONGO ACONDE company;139197;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139191;EU.8117.58;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;황길수;;M;;;142128;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139191;EU.8117.58;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;NO;;CD;CONGO, Democratic Republic of (was Zaire);139192;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139191;EU.8117.58;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;139193;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139191;EU.8117.58;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"654331363 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;139195;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;; +28/10/2022;139191;EU.8117.58;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;139194;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC +28/10/2022;139198;EU.8118.57;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;IM Song-Sun;;M;;;139200;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139198;EU.8118.57;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;IM Song Sun;;M;;a representative of the Corman Construction Company (Tong Bang), a front company for the UN-designated Mansudae Overseas Project (MOP) Group;139201;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139198;EU.8118.57;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;139199;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC +28/10/2022;139202;EU.8119.56;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;CHOE Song-Chol;;M;;;139204;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139202;EU.8119.56;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;CHOE Song Chol;;M;;a representative of the Corman Construction company (Tong Bang), a front company for UN-designated Mansudae Overseas Project Group;139205;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139202;EU.8119.56;;2022-04-21;;(Date of UN designation: 2022-04-21);P;person;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KP;;139203;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC +28/10/2022;139206;EU.8120.34;;2022-04-21;;(Date of UN designation: 2022-04-21);E;enterprise;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;Eritech Computer Assembly & Communication Technology PLC;;;;;139208;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139206;EU.8120.34;;2022-04-21;;(Date of UN designation: 2022-04-21);E;enterprise;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;Asmara, 257;Denden Street N028;;;;;NO;;ER;ERITREA;139207;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139209;EU.8121.33;;2022-04-21;;(Date of UN designation: 2022-04-21);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;GENCO;;;;;139211;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139209;EU.8121.33;;2022-04-21;;(Date of UN designation: 2022-04-21);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;KOGEN;;;;;139212;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139209;EU.8121.33;;2022-04-21;;(Date of UN designation: 2022-04-21);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Korea General Corporation for External Construction;;;;;139213;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139209;EU.8121.33;;2022-04-21;;(Date of UN designation: 2022-04-21);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;조선대외건설총회사;;;;;142133;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139209;EU.8121.33;;2022-04-21;;(Date of UN designation: 2022-04-21);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;Pyongyang;Taedonggang District;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;139210;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139217;EU.8123.31;;2022-04-21;;(Date of UN designation: 2022-04-21);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Joson Paekho Muyok Hoesa;;;;;139219;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139217;EU.8123.31;;2022-04-21;;(Date of UN designation: 2022-04-21);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;Korea Paekho Trading Corporation;;;;Art company (statues);139220;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139217;EU.8123.31;;2022-04-21;;(Date of UN designation: 2022-04-21);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;조선백호무역회사;;;;;142134;EN;;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139217;EU.8123.31;;2022-04-21;;(Date of UN designation: 2022-04-21);E;enterprise;amendment;council;2022-08-01;2022-08-02;2022/1331 (OJ L201);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1331;;;;;;;;;;;;;;;;;;;Taedonggang District, Pyongyang;Chongryu 3-dong;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;139218;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139643;EU.8132.1;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Гульбахор ИСМАИЛОВА;;F;;;139648;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139643;EU.8132.1;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ismailova GULBAKHOR;;F;;;139649;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139643;EU.8132.1;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Gulbakhor ISMAILOVA;;F;;;139650;EN;Associated individual: Alisher Usmanov, brother;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139643;EU.8132.1;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Gulbachor ISMAILOVA;SV;;;;139651;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139643;EU.8132.1;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Ismailova Gulbachor;SV;;;;139652;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139643;EU.8132.1;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;Tashkent;Apartment 81-83, 79 Ustabayeva Street;;1000187;;;NO;;UZ;UZBEKISTAN;139644;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139643;EU.8132.1;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-12-22;22;12;1959;;;NO;GREGORIAN;;;;;UZ;UZBEKISTAN;139645;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139643;EU.8132.1;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"71 3059195 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;RU;;139647;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;; +28/10/2022;139643;EU.8132.1;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;139646;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;139809;EU.8152.36;;2022-04-21;;(Date of UN designation: 2022-04-21)\n(Person with the same name and date and place of birth listed pursuant to Regulation 208/2014.);P;person;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;КУРЧЕНКО;Сергей;Витальевич;Сергей Витальевич КУРЧЕНКО;RU;M;;;139812;EN;;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139809;EU.8152.36;;2022-04-21;;(Date of UN designation: 2022-04-21)\n(Person with the same name and date and place of birth listed pursuant to Regulation 208/2014.);P;person;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;КУРЧЕНКО;Сергiй;Вiталiйович;Сергiй Вiталiйович КУРЧЕНКО;UK;M;;;139813;EN;;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139809;EU.8152.36;;2022-04-21;;(Date of UN designation: 2022-04-21)\n(Person with the same name and date and place of birth listed pursuant to Regulation 208/2014.);P;person;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;KURCHENKO;Serhiy;Vitaliyovich;Serhiy Vitaliyovich KURCHENKO;;M;;Ukrainian businessman (‘Gaz-Alliance’ company);139814;EN;;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139809;EU.8152.36;;2022-04-21;;(Date of UN designation: 2022-04-21)\n(Person with the same name and date and place of birth listed pursuant to Regulation 208/2014.);P;person;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;KURTJENKO;Serhij;Vitalijovytj;Serhij Vitalijovytj KURTJENKO;SV;;;;139820;EN;;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139809;EU.8152.36;;2022-04-21;;(Date of UN designation: 2022-04-21)\n(Person with the same name and date and place of birth listed pursuant to Regulation 208/2014.);P;person;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-09-21;21;9;1985;;;NO;GREGORIAN;;;;Kharkiv;UA;UKRAINE;139810;EN;;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139809;EU.8152.36;;2022-04-21;;(Date of UN designation: 2022-04-21)\n(Person with the same name and date and place of birth listed pursuant to Regulation 208/2014.);P;person;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;139811;EN;;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658 +28/10/2022;139815;EU.8153.35;;2022-04-21;;(Date of UN designation: 2022-04-21)\n(Also designated under Libya sanctions);P;person;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;ПРИГОЖИН;Евгений;Викторович;Евгений Викторович ПРИГОЖИН;RU;M;;;139818;EN;;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139815;EU.8153.35;;2022-04-21;;(Date of UN designation: 2022-04-21)\n(Also designated under Libya sanctions);P;person;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;PRIGOZHIN;Yevgeniy;Viktorovich;Yevgeniy Viktorovich PRIGOZHIN;;M;;"Russian businessman (founder and former owner of Concord, also known as KOMBINAT PITANIYA KONKORD OOO, associated entities; Concord company group, Concord Management and Consulting LLC and Megaline LLC, Internet Research Agency). Unofficial head of the Wagner Group, a Russia based unincorporated military entity..";139819;EN;;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139815;EU.8153.35;;2022-04-21;;(Date of UN designation: 2022-04-21)\n(Also designated under Libya sanctions);P;person;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;PRIGOZJIN;Jevgenij;Viktorovitj;Jevgenij Viktorovitj PRIGOZJIN;SV;M;;;139821;EN;;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139815;EU.8153.35;;2022-04-21;;(Date of UN designation: 2022-04-21)\n(Also designated under Libya sanctions);P;person;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-06-01;1;6;1961;;;NO;GREGORIAN;;;;Leningrad (St Petersburg);RU;RUSSIAN FEDERATION;139816;EN;;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139815;EU.8153.35;;2022-04-21;;(Date of UN designation: 2022-04-21)\n(Also designated under Libya sanctions);P;person;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;139817;EN;;amendment;council;2022-04-21;2022-04-21;2022/658 (OJ L120);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0658 +28/10/2022;139865;EU.8172.71;;2022-04-21;;(Date of UN designation: 2022-04-21);E;enterprise;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;Chilsong Trading Corporation;;;;;139867;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139865;EU.8172.71;;2022-04-21;;(Date of UN designation: 2022-04-21);E;enterprise;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;Pyongyang;;;;;;NO;;KP;KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF;139866;EN;;amendment;council;2022-04-21;2022-04-21;2022/659 (OJ L120);PRK;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.120.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A120%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139871;EU.8173.70;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;ZKS-Klimow SA;PL;;;;139873;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139871;EU.8173.70;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;АО “ОДК-Климов”;;;;;139874;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139871;EU.8173.70;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;JSC UEC Klimov;;;;;139875;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139871;EU.8173.70;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;St. Petersburg;11, Kantemirovskaya st.;;194100;;;NO;WEB[https://www.klimov.ru/en]\nPHONE[+7 (812) 454 71 00]\nEMAIL[klimov@klimov.ru]\nFAX[+7 (812) 647 00 29];RU;RUSSIAN FEDERATION;139872;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139876;EU.8174.69;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Koncern „Kałasznikow” SA;PL;;;;139878;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139876;EU.8174.69;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;АО Концерн “Калашников”;;;;;139879;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139876;EU.8174.69;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;JSC Kalashnikov Concern;;;;;139880;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139876;EU.8174.69;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;Izhevsk;Deryabina avenue, 3B;;394018;;;NO;WEB[https://kalashnikovgroup.ru/]\nPHONE[+7 341 250 47 47]\nEMAIL[personal@kalashnikovconcern.ru ];RU;RUSSIAN FEDERATION;139877;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139900;EU.8175.68;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Wojskowe Przedsiębiorstwo Przemysłowe Sp. z o.o.;PL;;;;139902;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139900;EU.8175.68;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;ООО Военно-промышленная компания;;;;;139903;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139900;EU.8175.68;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;LLC Military Industrial Company;;;;;139904;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139900;EU.8175.68;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;Rochdelskaya st., 15/8, 3 floor, r. 10-14;;123376;;;NO;WEB[https://milindcom.ru]\nPHONE[+7 (495) 662-10-57]\nEMAIL[secrvpk@milindcom.ru];RU;RUSSIAN FEDERATION;139901;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139905;EU.8176.67;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Fabryka Maszyn Transportowych „Omsk” SA;PL;;;;139907;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139905;EU.8176.67;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;AO Омский завод транспортного машиностроения “ОМСКТРАНСМАШ”;;;;;139908;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139905;EU.8176.67;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;JSC Omsk Transport Machine Factory Omsktransmash;;;;;139909;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139905;EU.8176.67;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;Omsk;Krasnyy Pereulok 2;;644020;;;NO;WEB[http://transmash-omsk.ru]\nPHONE[+7 (3812) 44 61 03]\nEMAIL[info@transmash-omsk.ru];RU;RUSSIAN FEDERATION;139906;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139910;EU.8177.66;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Spółka akcyjna Ruselectronics;PL;;;;139912;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139910;EU.8177.66;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;АО “Росэлектроника”;;;;;139913;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139910;EU.8177.66;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;JSC Ruselectronics;;;;;139914;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139910;EU.8177.66;;2022-04-08;;(Date of UN designation: 2022-04-08);E;enterprise;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;Moscow;Vereiskaya Str., 29, p. 141.;;115184;;;NO;WEB[https://www.ruselectronics.ru/]\nPHONE[+7 495 777 42 82]\nEMAIL[info@ruselectronics.ru];RU;RUSSIAN FEDERATION;139911;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139915;EU.8178.65;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalja Dmitrijevna TJEKAREVA;SV;F;;;139917;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139915;EU.8178.65;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalja Dmytryjevna TJEKAREVA;SV;F;;;139918;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139915;EU.8178.65;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Наталя Дмитриевна ЧЕКАРЄВА;;F;;;139919;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139915;EU.8178.65;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Наталья Дмитриевна ЧЕКАРЕВА;;F;;;139920;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139915;EU.8178.65;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Natalya Dmitrievna CHEKAREVA;;F;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;139921;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139915;EU.8178.65;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-05-13;13;5;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;139916;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139922;EU.8179.64;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Oleksandr Oleksandrovytj BONDARENKO;SV;M;;;139924;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139922;EU.8179.64;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Aleksandr Aleksandrovitj BONDARENKO;SV;M;;;139925;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139922;EU.8179.64;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;ОЛЕКСАНДР ОЛЕКСАНДРОВИЧ БОНДАРЕНКО;;M;;;139926;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139922;EU.8179.64;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;АЛЕКСАНДР АЛЕКСАНДРОВИЧ БОНДАРЕНКО;;M;;;139927;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139922;EU.8179.64;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Alexander Alexandrovich BONDARENKO;;M;;Member of the so-called ‘People’s Council’ of the so-called ‘Donetsk People’s Republic’;139928;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139922;EU.8179.64;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-09-02;2;9;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;139923;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139929;EU.8180.42;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Nikolajevič SUNGORKIN;SL;M;;;139931;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139929;EU.8180.42;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Nikolajevitj SUNGORKIN;SV;M;;;139932;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139929;EU.8180.42;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Владимир Николаевич СУНГОРКИН;;M;;;139933;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139929;EU.8180.42;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Vladimir Nikolayevich SUNGORKIN;;M;;"Director General and Editor-in-Chief of Komsomolskaya Pravda; Member of public councils in the Ministry of Defence of the Russian Federation, the Ministry of Emergency Situations of the Russian Federation and the Ministry of Transport of the Russian Federation. In the Council of the Government of the Russian Federation on the Mass Media, Sungorkin deals with issues related to the awarding of government prizes.";139934;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139929;EU.8180.42;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-06-16;16;6;1954;;;NO;GREGORIAN;;;;Khabarovsk;RU;RUSSIAN FEDERATION;139930;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139929;EU.8180.42;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;139942;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;139935;EU.8181.41;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Jurjevič KOROČENKO;SL;M;;;139938;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139935;EU.8181.41;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Jurjevitj KOROTJENKO;SV;M;;;139939;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139935;EU.8181.41;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Игорь Юрьевич КОРОТЧЕНКО;;M;;;139940;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139935;EU.8181.41;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;Igor Yurievich KOROTCHENKO;;M;;"Chairman of the Public Council under the Ministry of Defence of the Russian Federation; Editor-in-Chief of the National Defence magazine; Director of the Centre for Analysis of the World Arms Trade; Military expert; Military rank - Reserve Colonel.";139941;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139935;EU.8181.41;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-02-15;15;2;1960;;;NO;GREGORIAN;;;;Riga;LV;LATVIA;139936;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139935;EU.8181.41;;2022-04-08;;(Date of UN designation: 2022-04-08);P;person;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;139937;EN;;amendment;council;2022-04-08;2022-04-08;2022/581 (OJ L110);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.110.01.0003.01.ENG&toc=OJ%3AL%3A2022%3A110%3ATOC +28/10/2022;139983;EU.8212.72;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Abu Humam Al-Shami;;M;;;139986;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139983;EU.8212.72;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Abu Hammam Al-Shami;;M;;;139987;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139983;EU.8212.72;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Samir ‘Abd al-Latif Hijazi;;M;;;139988;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139983;EU.8212.72;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Samir Hijazi;;M;;;139989;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139983;EU.8212.72;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Faruq AL-SURI;;M;;;139990;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139983;EU.8212.72;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Abu Hammam Al-'Askari;;M;;;140862;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139983;EU.8212.72;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;139984;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139983;EU.8212.72;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;139985;EN;(presumed);amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC +28/10/2022;139991;EU.8213.71;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Sheikh Dr. Sami Al-Uraydi;;M;;;139994;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139991;EU.8213.71;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Sami Al-Oraydi;;M;;;139995;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139991;EU.8213.71;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Sami Al-Oraidi;;M;;;139996;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139991;EU.8213.71;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Sami Al-Oride;;M;;;139997;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139991;EU.8213.71;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Abu Mahmud Al-Shami;;M;;;139998;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139991;EU.8213.71;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Abu Mahmud Al-Sham;;M;;;139999;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139991;EU.8213.71;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Abu Mohammad Al-Shami;;M;;;140000;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139991;EU.8213.71;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Sami AL-ARIDI;;M;;;140001;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139991;EU.8213.71;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;139992;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;139991;EU.8213.71;;2022-05-30;;(Date of UN designation: 2022-05-30);P;person;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;JO;;139993;EN;(presumed);amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC +28/10/2022;140002;EU.8214.70;;2022-05-30;;(Date of UN designation: 2022-05-30);E;enterprise;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;AQ-S;;;;;140003;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140002;EU.8214.70;;2022-05-30;;(Date of UN designation: 2022-05-30);E;enterprise;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Al-Qaida in Syria;;;;;140004;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140002;EU.8214.70;;2022-05-30;;(Date of UN designation: 2022-05-30);E;enterprise;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Sham Al-Ribat;;;;;140005;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140002;EU.8214.70;;2022-05-30;;(Date of UN designation: 2022-05-30);E;enterprise;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Tandhim Hurras Al-Deen;;;;;140006;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140002;EU.8214.70;;2022-05-30;;(Date of UN designation: 2022-05-30);E;enterprise;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Tanzim Hurras Al-Din;;;;;140007;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140002;EU.8214.70;;2022-05-30;;(Date of UN designation: 2022-05-30);E;enterprise;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Guardians of Religion;;;;;140008;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140002;EU.8214.70;;2022-05-30;;(Date of UN designation: 2022-05-30);E;enterprise;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Huras-al-Din;;;;;140009;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140002;EU.8214.70;;2022-05-30;;(Date of UN designation: 2022-05-30);E;enterprise;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Hurras al-Deen;;;;;140010;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140002;EU.8214.70;;2022-05-30;;(Date of UN designation: 2022-05-30);E;enterprise;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;Hurras AL-DIN (HaD);;;;;140011;EN;;amendment;council;2022-05-30;2022-05-30;2022/836 (OJ L147I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.147.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A147I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140026;EU.8232.10;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Азатбек Асанбекович ОМУРБЕКОВ;RU;;;;140029;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140026;EU.8232.10;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Azatbek Asanbekovich OMURBEKOV;;M;;Colonel, commander of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140030;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140026;EU.8232.10;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Azatbek Asanbekovitj OMURBEKOV;SV;;;;141082;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140026;EU.8232.10;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;Knyaz-Volkonskoye, Khabarovsky district, Motostrelkovy passage, 3;;;;;;NO;;00;UNKNOWN;140027;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140026;EU.8232.10;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140028;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140031;EU.8233.9;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Андрей Боевич КУРБАНОВ;RU;;;;140036;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140031;EU.8233.9;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Andrei Boevich KURBANOV;;M;;Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140037;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140031;EU.8233.9;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Andrej Bojevitj KURBANOV;SV;;;;141083;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140031;EU.8233.9;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-01-07;7;1;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;140032;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140031;EU.8233.9;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"У-184386 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140034;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140031;EU.8233.9;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"4615 949409 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140035;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140031;EU.8233.9;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140033;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140038;EU.8234.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Вячеслав Сергеевич КЛОБУКОВ;RU;;;;140043;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140038;EU.8234.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Viacheslav Sergeevich KLOBUKOV;;M;;Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140044;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140038;EU.8234.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Vjatjeslav Sergejevitj KLOBUKOV;SV;;;;141084;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140038;EU.8234.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-11-19;19;11;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;140039;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140038;EU.8234.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"Ф-703443 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140041;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140038;EU.8234.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"8001 142195 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140042;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140038;EU.8234.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140040;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140052;EU.8236.6;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Александр Леонидович ШЕРШНЕВ;RU;;;;140057;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140052;EU.8236.6;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Aleksandr Leonidovich SHERSHNEV;;M;;Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140058;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140052;EU.8236.6;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Aleksandr Leonidovitj SJERSJNJOV;SV;;;;141086;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140052;EU.8236.6;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-01-14;14;1;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;140053;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140052;EU.8236.6;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"Ф-529191 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140055;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140052;EU.8236.6;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"3802 634927 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140056;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140052;EU.8236.6;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140054;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140059;EU.8237.5;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Сергей Александрович ВЕТРОВ;RU;;;;140064;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140059;EU.8237.5;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Sergei Aleksandrovich VETROV;;M;;Lieutenant Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140065;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140059;EU.8237.5;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Sergej Aleksandrovitj VETROV;SV;;;;141087;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140059;EU.8237.5;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-09-25;25;9;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;140060;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140059;EU.8237.5;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"X-296449 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140062;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140059;EU.8237.5;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"6804 36337 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140063;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140059;EU.8237.5;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140061;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140066;EU.8238.4;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Руслан Овсепович МИТЯЕВ;RU;;;;140071;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140066;EU.8238.4;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Ruslan Ovsepovich MITIAEV;;M;;Lieutenant Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140072;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140066;EU.8238.4;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Ruslan Ovsepovitj MITIAJEV;SV;;;;141088;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140066;EU.8238.4;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-10-30;30;10;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;140067;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140066;EU.8238.4;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"Ф-052935 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140069;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140066;EU.8238.4;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"6002 284996 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140070;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140066;EU.8238.4;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140068;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140073;EU.8239.3;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Андрей Николаевич ЕРМИШКО;RU;;;;140078;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140073;EU.8239.3;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Andrei Nikolaevich ERMISHKO;;M;;Lieutenant Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140079;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140073;EU.8239.3;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Andrej Nikolajevitj JERMISJKO;SV;;;;141089;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140073;EU.8239.3;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-11-05;5;11;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;140074;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140073;EU.8239.3;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"У-639041 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140076;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140073;EU.8239.3;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1202 583493 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140077;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140073;EU.8239.3;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140075;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140080;EU.8240.78;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Максим Алексеевич ПЛАТОНЕНКОВ;RU;;;;140085;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140080;EU.8240.78;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Maksim Alekseevich PLATONENKOV;;M;;Lieutenant Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140086;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140080;EU.8240.78;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Maksim Aleksejevitj PLATONENKOV;SV;;;;141090;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140080;EU.8240.78;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-01-03;3;1;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;140081;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140080;EU.8240.78;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"У-874515 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140083;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140080;EU.8240.78;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"5003 593303 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140084;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140080;EU.8240.78;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140082;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140087;EU.8241.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Владимир Викторович МАТАФОНОВ;RU;;;;140092;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140087;EU.8241.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Vladimir Viktorovich MATAFONOV;;M;;Lieutenant Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140093;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140087;EU.8241.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Vladimir Viktorovitj MATAFONOV;SV;;;;141091;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140087;EU.8241.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-09-05;5;9;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;140088;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140087;EU.8241.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"Ф-594713 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140090;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140087;EU.8241.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"7600 562816 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140091;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140087;EU.8241.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140089;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140094;EU.8242.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Дмитрий Иванович ЛЬВОВ;RU;;;;140099;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140094;EU.8242.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Dmitrii Ivanovich LVIV;;;;;140100;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140094;EU.8242.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Dmitrii Ivanovich LVOV;;M;;Lieutenant Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140101;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140094;EU.8242.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Dmitrij Ivanovitj LVOV;SV;;;;141092;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140094;EU.8242.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-08-15;15;8;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;140095;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140094;EU.8242.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"Ф-620752 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140097;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140094;EU.8242.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"7603 794013 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140098;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140094;EU.8242.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140096;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140102;EU.8243.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Евгений Валерьевич ЛАДЫЖЕНСКИЙ;RU;;;;140107;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140102;EU.8243.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Evgenii Valerievich LADYZHENSKII;;M;;Lieutenant Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140108;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140102;EU.8243.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Jevgenij Valerjevitj LADYZJENSKIJ;SV;;;;141093;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140102;EU.8243.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-01-01;1;1;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;140103;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140102;EU.8243.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"У-853407 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140105;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140102;EU.8243.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"8103 551489 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140106;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140102;EU.8243.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140104;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140109;EU.8244.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Дмитрий Викторович ПАХАНДРИН;RU;;;;140114;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140109;EU.8244.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Dmitrii Viktorovich PAKHANDRIN;;M;;Lieutenant Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140115;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140109;EU.8244.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Dmitrij Viktorovitj PACHANDRIN;SV;;;;141094;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140109;EU.8244.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-09-19;19;9;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;140110;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140109;EU.8244.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"Ф-620770 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140112;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140109;EU.8244.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"0402 274319 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140113;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140109;EU.8244.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140111;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140116;EU.8245.73;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Анатолий Александрович ШИПИЦЫН;RU;;;;140121;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140116;EU.8245.73;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Anatolii Aleksandrovich SHIPITSYN;;M;;Lieutenant Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140122;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140116;EU.8245.73;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Anatolij Aleksandrovitj SJIPITSYN;SV;;;;141095;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140116;EU.8245.73;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-09-12;12;9;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;140117;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140116;EU.8245.73;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"Ф-607350 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140119;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140116;EU.8245.73;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"5301 903199 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140120;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140116;EU.8245.73;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140118;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140123;EU.8246.72;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Денис Николаевич ДЕЕВ;RU;;;;140128;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140123;EU.8246.72;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Denis Nikolaevich DEEV;;M;;Lieutenant Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140129;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140123;EU.8246.72;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Denis Nikolajevitj DEJEV;SV;;;;141096;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140123;EU.8246.72;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-07-30;30;7;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;140124;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140123;EU.8246.72;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"Ф-624703 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140126;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140123;EU.8246.72;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"9002 427497 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140127;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140123;EU.8246.72;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140125;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140130;EU.8247.71;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Олег Юрьевич БУХВАЛОВ;RU;;;;140135;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140130;EU.8247.71;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Oleg Iurievich BUKHVALOV;;M;;Lieutenant Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140136;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140130;EU.8247.71;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Oleg Jurjevitj BUCHVALOV;SV;;;;141097;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140130;EU.8247.71;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-05-20;20;5;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;140131;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140130;EU.8247.71;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"Ф-584921 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140133;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140130;EU.8247.71;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1804 68726 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140134;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140130;EU.8247.71;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140132;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140137;EU.8248.70;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Дмитрий Александрович СМОЛЯГО;RU;;;;140142;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140137;EU.8248.70;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Dmitrii Aleksandrovich SMOLIAGO;;M;;Lieutenant Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140143;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140137;EU.8248.70;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Dmitrij Aleksandrovitj SMOLJAGO;SV;;;;141098;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140137;EU.8248.70;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-12-27;27;12;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;140138;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140137;EU.8248.70;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"Ф-670103 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140140;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140137;EU.8248.70;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"2702 603048 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140141;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140137;EU.8248.70;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140139;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140144;EU.8249.69;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Алексей Вячеславович БОЛЬШАКОВ;RU;;;;140149;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140144;EU.8249.69;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Aleksei Viacheslavovich BOLSHAKOV;;M;;Lieutenant Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140150;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140144;EU.8249.69;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Aleksej Vjatjeslavovitj BOLSJAKOV;SV;;;;141099;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140144;EU.8249.69;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-03-15;15;3;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;140145;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140144;EU.8249.69;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"У-053364 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140147;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140144;EU.8249.69;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"0802 576504 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140148;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140144;EU.8249.69;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140146;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140151;EU.8250.47;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Роман Владимирович НАДЕЖДИН;RU;;;;140156;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140151;EU.8250.47;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Roman Vladimirovich NADEZDHIN;;M;;Lieutenant Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140157;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140151;EU.8250.47;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Roman Vladimirovitj NADEZJDIN;SV;;;;141100;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140151;EU.8250.47;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-07-21;21;7;1977;;;NO;GREGORIAN;;;;;00;UNKNOWN;140152;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140151;EU.8250.47;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"У-874071 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140154;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140151;EU.8250.47;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1002 570526 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140155;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140151;EU.8250.47;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140153;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140158;EU.8251.46;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Виктор Владимирович ФИЛИППОВ;RU;;;;140163;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140158;EU.8251.46;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Viktor Vladimirovich FILIPPOV;;M;;Lieutenant Colonel of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140164;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140158;EU.8251.46;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Viktor Vladimirovitj FILIPPOV;SV;;;;141260;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140158;EU.8251.46;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-10-27;27;10;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;140159;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140158;EU.8251.46;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"У-721933 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140161;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140158;EU.8251.46;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"0502 898734 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140162;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140158;EU.8251.46;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140160;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140165;EU.8252.45;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Фаик Самеддин оглы МАМЕДОВ;RU;;;;140170;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140165;EU.8252.45;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Faik Samaddin MAMMADOV;;;;;140171;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140165;EU.8252.45;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Faik Sameddin ogly MAMEDOV;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140172;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140165;EU.8252.45;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Faik Sameddin ogly MAMEDOV;SV;;;;141101;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140165;EU.8252.45;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-11-24;24;11;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;140166;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140165;EU.8252.45;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"802348 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140168;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140165;EU.8252.45;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"9902 119102 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140169;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140165;EU.8252.45;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140167;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140173;EU.8253.44;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Игорь Евгеньевич ФЕДОТОВ;RU;;;;140178;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140173;EU.8253.44;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Igor Evgenievich FEDOTOV;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140179;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140173;EU.8253.44;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Igor Jevgenjevitj FEDOTOV;SV;;;;141103;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140173;EU.8253.44;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-12-09;9;12;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;140174;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140173;EU.8253.44;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"845762 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140176;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140173;EU.8253.44;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"6602 516592 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140177;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140173;EU.8253.44;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140175;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140180;EU.8254.43;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Герман Николаевич КУЛЕМИН;RU;;;;140185;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140180;EU.8254.43;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;German Nikolaevich KULEMIN;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140186;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140180;EU.8254.43;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;German Nikolajevitj KULEMIN;SV;;;;141105;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140180;EU.8254.43;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-03-29;29;3;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;140181;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140180;EU.8254.43;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"949685 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140183;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140180;EU.8254.43;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"6702 594036 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140184;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140180;EU.8254.43;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140182;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140187;EU.8255.42;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Роман Викторович Бурдо;RU;;;;140192;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140187;EU.8255.42;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Roman Victorovich BURDO;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140193;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140187;EU.8255.42;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Roman Viktorovitj BURDO;SV;;;;141106;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140187;EU.8255.42;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-11-26;26;11;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;140188;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140187;EU.8255.42;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1083746 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140190;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140187;EU.8255.42;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1003 651875 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140191;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140187;EU.8255.42;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140189;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140194;EU.8256.41;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Дмитрий Аркадьевич КОЗЛОВ;RU;;;;140199;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140194;EU.8256.41;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Dmitry Arkadyevich KOZLOV;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140200;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140194;EU.8256.41;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Dmitrij Arkadjevitj KOZLOV;SV;;;;141107;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140194;EU.8256.41;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-10-11;11;10;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;140195;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140194;EU.8256.41;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1088985 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140197;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140194;EU.8256.41;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"0801 272127 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140198;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140194;EU.8256.41;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140196;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140206;EU.8258.39;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Иван Александрович КУРКИН;RU;;;;140211;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140206;EU.8258.39;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Ivan Alexandrovich KURKIN;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140212;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140206;EU.8258.39;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Ivan Aleksandrovitj KURKIN;SV;;;;141109;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140206;EU.8258.39;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-01-17;17;1;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;140207;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140206;EU.8258.39;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1091451 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140209;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140206;EU.8258.39;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"0804 232754 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140210;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140206;EU.8258.39;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140208;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140213;EU.8259.38;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Евгений Юрьевич Важенов;RU;;;;140218;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140213;EU.8259.38;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Evgeny Yurievich VAZHENOV;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140219;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140213;EU.8259.38;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Jevgenij Jurjevitj VAZJENOV;SV;;;;141110;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140213;EU.8259.38;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985-01-27;27;1;1985;;;NO;GREGORIAN;;;;;00;UNKNOWN;140214;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140213;EU.8259.38;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1092162 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140216;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140213;EU.8259.38;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1005 944897 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140217;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140213;EU.8259.38;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140215;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140220;EU.8260.16;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Дмитрий Юлианович ИОНОВ;RU;;;;140225;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140220;EU.8260.16;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Dmitry Yulianovich IONOV;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140226;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140220;EU.8260.16;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Dmitrij Julianovitj IONOV;SV;;;;141113;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140220;EU.8260.16;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-07-03;3;7;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;140221;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140220;EU.8260.16;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1093778 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140223;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140220;EU.8260.16;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1005 724322 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140224;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140220;EU.8260.16;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140222;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140227;EU.8261.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Александр Анатольевич Кочергин;RU;;;;140232;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140227;EU.8261.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Alexander Anatolyevich KOCHERGIN;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140233;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140227;EU.8261.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Aleksandr Anatoljevitj KOTJERGIN;SV;;;;141118;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140227;EU.8261.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-12-10;10;12;1971;;;NO;GREGORIAN;;;;;00;UNKNOWN;140228;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140227;EU.8261.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1093786 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140230;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140227;EU.8261.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"0803 940939 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140231;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140227;EU.8261.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140229;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140234;EU.8262.14;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Александр Владимирович КОПЫЛОВ;RU;;;;140239;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140234;EU.8262.14;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Alexander Vladimirovich KOPYLOV;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140240;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140234;EU.8262.14;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Aleksandr Vladimirovitj KOPYLOV;SV;;;;141119;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140234;EU.8262.14;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-09-29;29;9;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;140235;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140234;EU.8262.14;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1094262 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140237;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140234;EU.8262.14;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"7301 420589 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140238;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140234;EU.8262.14;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140236;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140241;EU.8263.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Максим Владимирович ЧЕРНЫШЕВ;RU;;;;140246;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140241;EU.8263.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Maxim Vladimirovich CHERNYSHEV;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140247;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140241;EU.8263.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Maksim Vladimirovitj TJERNYSJOV;SV;;;;141120;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140241;EU.8263.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-10-08;8;10;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;140242;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140241;EU.8263.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1094540 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140244;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140241;EU.8263.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"0810 999451 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140245;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140241;EU.8263.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140243;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140256;EU.8266.10;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Станислав Игорьевич МAКАРОВ;RU;;;;140261;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140256;EU.8266.10;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Stanislav Igorevich MAKAROV;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140262;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140256;EU.8266.10;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Stanislav Igorjevitj MAKAROV;SV;;;;141121;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140256;EU.8266.10;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-08-16;16;8;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;140257;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140256;EU.8266.10;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1095194 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140259;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140256;EU.8266.10;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"0810 953377 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140260;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140256;EU.8266.10;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140258;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140267;EU.8268.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Андрей Николаевич ИВАНОВ;RU;;;;140272;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140267;EU.8268.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Andrey Nikolaevich IVANOV;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140273;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140267;EU.8268.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Andrej Nikolajevitj IVANOV;SV;;;;141122;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140267;EU.8268.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-02-26;26;2;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;140268;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140267;EU.8268.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1095611 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140270;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140267;EU.8268.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"2701 493476 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140271;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140267;EU.8268.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140269;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140274;EU.8269.7;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Сергей Геннадьевич ПЕРЕШИВКИН;RU;;;;140279;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140274;EU.8269.7;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Sergei Gennadyevich PERESHIVKIN;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Army of Russian Federation;140280;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140274;EU.8269.7;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Sergej Gennadjevitj PERESJIVKIN;SV;;;;141123;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140274;EU.8269.7;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-01-19;19;1;1973;;;NO;GREGORIAN;;;;;00;UNKNOWN;140275;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140274;EU.8269.7;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"1100141 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140277;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140274;EU.8269.7;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"0804 277244 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;140278;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140274;EU.8269.7;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140276;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140285;EU.8271.81;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Алексей Владимирович ПРЫСЕВ;RU;;;;140291;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140285;EU.8271.81;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Aleksey Vladimirovich PRYSEV;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Combined Arms Army of the Russian Federation;140292;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140285;EU.8271.81;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Aleksej Vladimirovitj PRYSEV;SV;;;;141124;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140285;EU.8271.81;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-11-25;25;11;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;140286;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140285;EU.8271.81;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;У-360702 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140288;EN;ID number;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140285;EU.8271.81;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100633 (other-Other identification number) (Entity based ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140289;EN;Entity based ID;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140285;EU.8271.81;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0501 704733 (passport-National passport) (on 2002-03-20);NO;NO;NO;NO;NO;;2002-03-20;;;;;passport;National passport;;00;;140290;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140285;EU.8271.81;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140287;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140293;EU.8272.80;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Сергей Викторович РУДЕНКО;RU;;;;140299;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140293;EU.8272.80;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Sergey Viktorovich RUDENKO;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Combined Arms Army of the Russian Federation;140300;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140293;EU.8272.80;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Sergej Viktorovitj RUDENKO;SV;;;;141125;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140293;EU.8272.80;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-10-07;7;10;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;140294;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140293;EU.8272.80;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100637 (other-Other identification number) (Entity based ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140296;EN;Entity based ID;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140293;EU.8272.80;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;У-268570 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140297;EN;ID number;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140293;EU.8272.80;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0801 524291 (passport-National passport) (on 2002-03-14);NO;NO;NO;NO;NO;;2002-03-14;;;;;passport;National passport;;00;;140298;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140293;EU.8272.80;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140295;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Открытое акционерное общество “Беларуськалий“;;;;;140303;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Адкрытае акцыянернае таварыства “Беларуськалій“;;;;;140304;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Open Joint Stock Company “Belaruskali”;EN;;;;140305;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ανοικτή συμμετοχική εταιρία “Belaruskali”;EL;;;;141134;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Avatud aktsiaselts „Belaruskali“;ET;;;;141135;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Offene Aktiengesellschaft „Belaruskali“;DE;;;;141136;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Veřejná akciová společnost „Belaruskali“;CS;;;;141137;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Sociedad limitada por acciones abierta “Belaruskali”;ES;;;;141138;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Отворено акционерно дружество „Belaruskali“;BG;;;;141139;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Javno dioničko društvo „Belaruskali”;HR;;;;141140;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Cuideachta Comhstoic Oscailte ‘Belaruskali’;GA;;;;141141;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;"Société par actions ouverte ""Belaruskali""";FR;;;;141142;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Sociedade por ações aberta “Belaruskali”;PT;;;;141144;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Openbare vennootschap op aandelen “Belaruskali”;NL;;;;141145;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Atviroji akcinė bendrovė „Belaruskali“;LT;;;;141146;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Odprta delniška družba „Belaruskali“;SL;;;;141147;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Avoin osakeyhtiö ”Belaruskali”;FI;;;;141148;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Societatea deschisă pe acțiuni «Belaruskali»;RO;;;;141149;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;Soligorsk;5 Korzha St.;;223710;Minsk Region/Oblast;;NO;;BY;BELARUS;140302;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140301;EU.8273.79;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600122610 (regnumber-Registration Number) (on 1996-12-23)(Date of registration: 23.12.1996);NO;NO;NO;NO;NO;;1996-12-23;;;;;regnumber;Registration Number;;00;;140400;EN;Date of registration: 23.12.1996;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;; +28/10/2022;140306;EU.8274.78;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Ольга Александровна ХАМЕНОК;RU;;;;140312;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140306;EU.8274.78;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Olga Aleksandrovna KHAMENOK;;F;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Combined Arms Army of the Russian Federation;140313;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140306;EU.8274.78;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Olga Aleksandrovna CHAMENOK;SV;;;;141127;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140306;EU.8274.78;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-12-14;14;12;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;140307;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140306;EU.8274.78;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1102882 (other-Other identification number) (Entity based ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140309;EN;Entity based ID;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140306;EU.8274.78;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Ф-142685 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140310;EN;ID number;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140306;EU.8274.78;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6004 190824 (passport-National passport) (on 2003-10-10);NO;NO;NO;NO;NO;;2003-10-10;;;;;passport;National passport;;00;;140311;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140306;EU.8274.78;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140308;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140314;EU.8275.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Дмитрий Геннадьевич ЛЕВИН;RU;;;;140320;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140314;EU.8275.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Dmitriy Gennadyevich LEVIN;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Combined Arms Army of the Russian Federation;140321;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140314;EU.8275.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Dmitrij Gennadjevitj LEVIN;SV;;;;141242;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140314;EU.8275.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-10-25;25;10;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;140315;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140314;EU.8275.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1103126 (other-Other identification number) (Entity based ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140317;EN;Entity based ID;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140314;EU.8275.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;У-268857 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140318;EN;ID number;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140314;EU.8275.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0804 98883 (passport-National passport) (on 2003-06-30);NO;NO;NO;NO;NO;;2003-06-30;;;;;passport;National passport;;00;;140319;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140314;EU.8275.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140316;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140322;EU.8276.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Дмитрий Алексеевич ГОНЧАР;RU;;;;140328;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140322;EU.8276.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Dmitriy Alekseevich GONCHAR;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Combined Arms Army of the Russian Federation;140329;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140322;EU.8276.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Dmitrij Aleksejevitj GONTJAR;SV;;;;141243;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140322;EU.8276.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-01-31;31;1;1970;;;NO;GREGORIAN;;;;;00;UNKNOWN;140323;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140322;EU.8276.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1103591 (other-Other identification number) (Entity based ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140325;EN;Entity based ID;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140322;EU.8276.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;У-265899 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140326;EN;ID number;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140322;EU.8276.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0802 562844 (passport-National passport) (on 2002-05-27);NO;NO;NO;NO;NO;;2002-05-27;;;;;passport;National passport;;00;;140327;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140322;EU.8276.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140324;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140330;EU.8277.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Сергей Сергеевич ЗОРИН;RU;;;;140336;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140330;EU.8277.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Sergey Sergeevich ZORIN;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Combined Arms Army of the Russian Federation;140337;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140330;EU.8277.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Sergej Sergejevitj ZORIN;SV;;;;141244;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140330;EU.8277.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-10-25;25;10;1982;;;NO;GREGORIAN;;;;;00;UNKNOWN;140331;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140330;EU.8277.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1166487 (other-Other identification number) (Entity based ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140333;EN;Entity based ID;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140330;EU.8277.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;X-115531 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140334;EN;ID number;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140330;EU.8277.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7503 78809 (passport-National passport) (on 2003-03-02);NO;NO;NO;NO;NO;;2003-03-02;;;;;passport;National passport;;00;;140335;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140330;EU.8277.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140332;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140338;EU.8278.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Александр Александрович ПОТАПОВ;RU;;;;140344;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140338;EU.8278.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Aleksandr Aleksandrovich POTAPOV;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Combined Arms Army of the Russian Federation;140345;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140338;EU.8278.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Aleksandr Aleksandrovitj POTAPOV;SV;;;;141245;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140338;EU.8278.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1981-05-08;8;5;1981;;;NO;GREGORIAN;;;;;00;UNKNOWN;140339;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140338;EU.8278.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1170231 (other-Other identification number) (Entity based ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140341;EN;Entity based ID;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140338;EU.8278.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;X-078567 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140342;EN;ID number;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140338;EU.8278.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6603 808655 (passport-National passport) (on 2003-04-29);NO;NO;NO;NO;NO;;2003-04-29;;;;;passport;National passport;;00;;140343;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140338;EU.8278.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140340;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;ОАО “Белорусская калийная компания”;;;;;140355;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;ААТ “Беларуская калiйная кампанiя”;;;;;140356;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Joint Stock Company “Belarusian Potash Company”;;;;;140357;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Offene Aktiengesellschaft Belarusian Potash Company;DE;;;;141150;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Akciová společnost “Belarusian Potash Company“;CS;;;;141151;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Sociedad limitada por acciones “Belarusian Potash Company”;ES;;;;141152;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Акционерно дружество „Belarusian Potash Company“;BG;;;;141153;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;"Société par actions ""Belarusian Potash Company""";FR;;;;141154;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Συμμετοχική εταιρία Belarusian Potash Company;EL;;;;141155;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Aktsiaselts Belarusian Potash Company;ET;;;;141156;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Akcinė bendrovė „Baltarusijos kalio karbonato bendrovė“;LT;;;;141157;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Javno dioničko društvo „Belarusian Potash Company”;HR;;;;141158;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;An chuideachta chomhstoic Belarusian Potash Company;GA;;;;141159;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Societatea pe acțiuni «Belarusian Potash Company»;RO;;;;141160;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Sociedade por ações Belarusian Potash Company;PT;;;;141161;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Vennootschap op aandelen “Belarusian Potash Company”;NL;;;;141162;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Delniška družba Belarusian Potash Company;SL;;;;141163;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Avoin osakeyhtiö ”Belarusian Potash Company”;FI;;;;141164;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;35 Masherova Ave.;;220002;;;NO;"PHONE[ +375 (17) 309-30-10; +375 (17) 309-30-30]\nEMAIL[info@belpc.by ]";BY;BELARUS;140353;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140352;EU.8280.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192050251 (regnumber-Registration Number) (on 2013-09-13)(Date of registration: 13.9.2013);NO;NO;NO;NO;NO;;2013-09-13;;;;;regnumber;Registration Number;;00;;140354;EN;Date of registration: 13.9.2013;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;; +28/10/2022;140364;EU.8282.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Общество с ограниченной ответственностью “Интер Тобако”;RU;;;;140367;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140364;EU.8282.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Таварыства з абмежаванай адказнасцю “Інтэр Табак”;;;;;140368;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140364;EU.8282.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;“Inter Tobacco” LLC;;;;;140369;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140364;EU.8282.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Εταιρία περιορισμένης ευθύνης “Inter Tobacco”;EL;;;;141167;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140364;EU.8282.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;„Inter Tobacco“, společnost s ručením omezeným;CS;;;;141168;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140364;EU.8282.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Sociedad de responsabilidad limitada “Inter Tobacco”;ES;;;;141169;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140364;EU.8282.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Дружество с ограничена отговорност „Inter Tobacco“;BG;;;;141170;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140364;EU.8282.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;LLC “Inter Tobacco”;IT;;;;141171;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140364;EU.8282.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;An chuideachta theoranta ‘Inter Tobacco’;GA;;;;141172;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140364;EU.8282.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Družba z omejeno odgovornostjo „Inter Tobacco“;SL;;;;141173;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140364;EU.8282.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Societatea cu răspundere limitată «Inter Tobacco»;RO;;;;141174;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140364;EU.8282.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;RAB „Inter Tobacco“;LT;;;;141175;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140364;EU.8282.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;131 Novodvorskiy village, Novodvorskiy village council, Minsk District;;223016;Minsk Region/Oblast;;NO;(Belarus (Minsk Free Economic Zone));BY;BELARUS;140365;EN;Belarus (Minsk Free Economic Zone);amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140364;EU.8282.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;808000714 (regnumber-Registration Number) (on 2002-10-10)(Date of registration: 10.10.2002);NO;NO;NO;NO;NO;;2002-10-10;;;;;regnumber;Registration Number;;00;;140366;EN;Date of registration: 10.10.2002;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Открытое акционерное общество “Нафтан”;;;;;140373;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Адкрытае акцыянернае таварыства “Нафтан”;;;;;140374;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Open Joint Stock Company “Naftan”;;;;;140375;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Отворено акционерно дружество „Naftan“;BG;;;;141176;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Offene Aktiengesellschaft ‚Naftan‘;DE;;;;141177;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Veřejná akciová společnost „Naftan“;CS;;;;141178;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Sociedad limitada por acciones abierta “Naftan”;ES;;;;141179;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;An chuideachta comhstoic oscailte ‘Naftan’;GA;;;;141180;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;"Société par actions ouverte ""Naftan""";FR;;;;141181;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ανοικτή συμμετοχική εταιρία “Naftan”;EL;;;;141182;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Avatud aktsiaselts „Naftan“;ET;;;;141183;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Openbare vennootschap op aandelen “Naftan”;NL;;;;141185;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Atviroji akcinė bendrovė „Naftan“;LT;;;;141186;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Javno dioničko društvo „Naftan”;HR;;;;141187;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Societatea deschisă pe acțiuni «Naftan»;RO;;;;141188;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Sociedade por ações aberta “Naftan”;PT;;;;141189;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Odprta delniška družba „Naftan“;SL;;;;141191;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Avoin osakeyhtiö ”Naftan”;FI;;;;141192;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;Novopolotsk 1;;211440;Vitebsk Region/Oblast;;NO;;BY;BELARUS;140371;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140370;EU.8283.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300042199 (regnumber-Registration Number) (Date of registration: 1992);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;00;;140372;EN;Date of registration: 1992;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Oткрытое акционерное общество “Гродненская табачная фабрика Неман”;;;;;140379;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Адкрытае акцыянернае таварыства “Гродзенская тытунёвая фабрыка Нёман”;;;;;140380;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Open Joint-Stock Company “Grodno Tobacco Factory Neman”;;;;;140381;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Отворено акционерно дружество „Grodno Tobacco Factory Neman“;BG;;;;141194;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Avatud aktsiaselts „Grodno Tobacco Factory Neman“;ET;;;;141195;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Offene Aktiengesellschaft ‚Grodno Tobacco Factory Neman‘;DE;;;;141196;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Veřejná akciová společnost „Grodno Tobacco Factory Neman“;CS;;;;141197;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Sociedad limitada por acciones abierta “Grodno Tobacco Factory Neman”;ES;;;;141198;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Javno dioničko društvo „Grodno Tobacco Factory Neman”;HR;;;;141199;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;An chuideachta comhstoic oscailte ‘Grodno Tobacco Factory Neman’;GA;;;;141200;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;"Société par actions ouverte ""Grodno Tobacco Factory Neman""";FR;;;;141201;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ανοικτή συμμετοχική εταιρία “Grodno Tobacco Factory Neman”;EL;;;;141202;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Sociedade por ações aberta “Grodno Tobacco Factory Neman”;PT;;;;141204;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Openbare vennootschap op aandelen “Grodno Tobacco Factory Neman”;NL;;;;141205;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Gardino tabako fabrikas „Neman“;LT;;;;141206;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Atviroji akcinė bendrovė „Grodno Tobacco Factory Neman“;LT;;;;141207;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Odprta delniška družba „Grodno Tobacco Factory Neman“;SL;;;;141208;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Avoin osakeyhtiö ”Grodno Tobacco Factory Neman”;FI;;;;141209;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Societatea deschisă pe acțiuni «Grodno Tobacco Factory Neman»;RO;;;;141210;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;Grodno;18 Ordzhonikidze St.;;230771;Grodno/Hrodna;;NO;;BY;BELARUS;140377;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140376;EU.8284.47;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500047627 (regnumber-Registration Number) (on 1996-12-30)(Date of registration: 30.12.1996);NO;NO;NO;NO;NO;;1996-12-30;;;;;regnumber;Registration Number;;00;;140378;EN;Date of registration: 30.12.1996;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;; +28/10/2022;140382;EU.8285.46;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Республиканское унитарное предприятие “Белтаможсервис”;;;;;140385;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140382;EU.8285.46;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Рэспублiканскае унiтарнае прадпрыемства “Белмытсэрвiс”;;;;;140386;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140382;EU.8285.46;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Beltamozhservice;;;;;140387;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140382;EU.8285.46;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;17th km, Minsk- Dzerzhinsk highway, administrative building, office 75, Shchomyslitsky s/s;;223049;Minsk Region/Oblast;;NO;;BY;BELARUS;140383;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140382;EU.8285.46;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101561144 (regnumber-Registration Number) (on 1999-06-09)(Date of registration: 9.6.1999);NO;NO;NO;NO;NO;;1999-06-09;;;;;regnumber;Registration Number;;00;;140384;EN;Date of registration: 9.6.1999;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Открытое акционерное общество “Управляющая компания холдинга ‘Белкоммунмаш’”;;;;;140391;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Адкрытае акцыянернае таварыства “Кiруючая кампанiя холдынгу ‘Белкамунмаш’”;;;;;140392;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Open Joint Stock Company “Managing Company of Holding ‘Belkommunmash’”;;;;;140393;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;"Société par actions ouverte ""Managing Company of Holding ""Belkommunmash""""";FR;;;;141212;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ανοικτή συμμετοχική εταιρία ‘Managing Company of Holding “Belkommunmash”’;EL;;;;141213;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Avatud aktsiaselts „Valdusühingu „Belkommunmash“ haldajafirma“;ET;;;;141214;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Offene Aktiengesellschaft ‚Managing Company of Holding ‚Belkommunmash‘‘;DE;;;;141215;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Veřejná akciová společnost „Managing Company of Holding ‚Belkommunmash‘“;CS;;;;141216;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Sociedad limitada por acciones abierta “Managing Company of Holding Belkommunmash”;ES;;;;141217;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Отворено акционерно дружество „Managing Company of Holding „Belkommunmash““;BG;;;;141218;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Holdingo „Belkommunmash“ valdymo bendrovė;LT;;;;141219;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Atviroji akcinė bendrovė „Managing Company of Holding „Belkommunmash““;LT;;;;141220;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Javno dioničko društvo „Managing Company of Holding ‚Belkommunmash’”;HR;;;;141221;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;An chuideachta comhstoic oscailte “Managing Company of Holding ‘Belkommunmash’”;GA;;;;141222;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Odprta delniška družba „Managing Company of Holding ‚Belkommunmash“;SL;;;;141223;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Avoin osakeyhtiö ”Managing Company of Holding ’Belkommunmash’”;FI;;;;141224;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Societatea deschisă pe acțiuni «Managing Company of Holding „Belkommunmash”»;RO;;;;141225;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Sociedade por ações aberta “Managing Company of Holding ‘Belkommunmash’”;PT;;;;141226;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Open vennootschap op aandelen Beheermaatschappij van “Belkommunmash” Holding;NL;;;;141227;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;64B-2 Perekhodnaya St.;;220070;;;NO;;BY;BELARUS;140389;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140388;EU.8286.45;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100205408 (regnumber-Registration Number) (on 1991-08-13)(Date of registration: 13.8.1991);NO;NO;NO;NO;NO;;1991-08-13;;;;;regnumber;Registration Number;;00;;140390;EN;Date of registration: 13.8.1991;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Нацыянальная дзяржаўная тэлерадыёкампанiя Рэспублiкi Беларусь / Белтэлерадыёкампанiя;;;;;140397;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Национальная государственная телерадиокомпания Республики Беларусь / Белтелерадиокомпания;;;;;140398;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Belteleradio Company / National State TV and Radio Company of the Republic of Belarus;;;;;140399;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;nacionalna državna radiotelevizija Republike Belorusije;SL;;;;141228;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;compañía nacional de radiotelevisión pública de la República de Bielorrusia;ES;;;;141229;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Εθνική Κρατική Τηλεόραση και Ραδιοφωνία της Δημοκρατίας της Λευκορωσίας;EL;;;;141230;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Valgevene Vabariigi riiklik televisiooni- ja raadioringhäälingu ettevõte;ET;;;;141231;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Nationales staatliches Fernseh- und Hörfunkunternehmen der Republik Belarus;DE;;;;141232;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Státní televizní a rozhlasová společnost Běloruské republiky;CS;;;;141233;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Società Belteleradio / società radiotelevisiva pubblica della Repubblica di Bielorussia;IT;;;;141234;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Poduzeće Belteleradio / Nacionalna državna radiotelevizija Republike Bjelarusa;HR;;;;141235;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;cuideachta stáit náisiúnta teilifíse agus raidió Phoblacht na Bealarúise;GA;;;;141236;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;compagnie nationale de télévision et de radio d’État de la République de Biélorussie;FR;;;;141237;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Empresa Belteleradio/Empresa Nacional de Televisão e Rádio da República da Bielorrússia;PT;;;;141238;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;nationale staatstelevisie- en -radio-omroep van de Republiek Belarus;NL;;;;141239;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;„Belteleradio bendrovė“ / Baltarusijos Respublikos nacionalinė valstybinė televizijos ir radijo bendrovė;LT;;;;141240;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Societatea Națională de Stat de Televiziune și Radio a Republicii Belarus;RO;;;;141241;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;9 Makayonka St.;;;;;NO;WEB[tvr.by];BY;BELARUS;140395;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140394;EU.8287.44;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100717729 (regnumber-Registration Number) (on 1994-09-14)(Date of registration: 14.9.1994);NO;NO;NO;NO;NO;;1994-09-14;;;;;regnumber;Registration Number;;00;;140396;EN;Date of registration: 14.9.1994;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;; +28/10/2022;140413;EU.8291.19;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Акционерное общество „121 авиационный ремонтный завод”;RU;;;;140415;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140413;EU.8291.19;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;"JSC ""121 AIRCRAFT REPAIR PLANT""";;;;;140416;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140413;EU.8291.19;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;Moscow region;Odintsovo, Stary Gorodok, st. Postal, 10;;143079;;;NO;WEB[https://121arz.ru]\nPHONE[+7(498) 677-95-11]\nEMAIL[info@121arz.ru];RU;RUSSIAN FEDERATION;140414;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140417;EU.8292.18;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Russian: ПАО Компания „Сухой“;RU;;;;140419;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140417;EU.8292.18;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;JSC SUKHOI Company;;;;;140420;EN;Associated entities:\nUnited Aircraft Corporation (parent company);amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140417;EU.8292.18;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;Moscow;st. Polikarpova, 23B, PO box 604;;125284;;;NO;WEB[https://www.sukhoi.org]\nPHONE[+7 (499) 550-01-06]\nEMAIL[info@sukhoi.org];RU;RUSSIAN FEDERATION;140418;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140421;EU.8293.17;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;"АО ""Ремдизель""";RU;;;;140423;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140421;EU.8293.17;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;JSC REMDIZEL;;;;;140424;EN;Associated entities:\nKAMAZ;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140421;EU.8293.17;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;Republic of Tatarstan;Naberezhnye Chelny, Menzelinsky tract, 40;;423800;;;NO;WEB[http://www.remdizel.com]\nPHONE[+7 (8552) 55-15-88 / 7 (8552) 30-80-00]\nEMAIL[remdizel@kamaz.ru ];RU;RUSSIAN FEDERATION;140422;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140425;EU.8294.16;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;ОАО БЛМЗ;RU;;;;140427;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140425;EU.8294.16;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;OJSC BLMZ;;;;;140428;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140425;EU.8294.16;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;ОАО Балашихинский литейно-механический завод;RU;;;;140429;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140425;EU.8294.16;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;OJSC Balashikha Casting and Mechanical Plant;;;;;140430;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140425;EU.8294.16;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;Entuziastov sh., 4, Balashikha, Moskovskaya oblast;;143900;;;NO;WEB[https://www.blmz.ru]\nPHONE[+7 (495) 639-94-94]\nEMAIL[info@blmz.ru];RU;RUSSIAN FEDERATION;140426;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140431;EU.8295.15;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;"ООО ТД ""КАМА""";RU;;;;140433;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140431;EU.8295.15;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;LLC TD KAMA;;;;;140434;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140431;EU.8295.15;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;Republic of Tatarstan, Nizhnekamsk, Territoriya Promzona, AIK-24, room 402;;423570;;;NO;WEB[https://www.td-kama.com]\nPHONE[+7 (8555) 24-10-00, 24-10-10 ]\nEMAIL[info@td-kama.com ];RU;RUSSIAN FEDERATION;140432;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140435;EU.8296.14;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;"ПАО ""Нижнекамскшина""";;;;;140437;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140435;EU.8296.14;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;PJSC Nizhnekamskshina;;;;;140438;EN;Associated entities:\nTatneft\nTrading House KAMA\nManagement Company Tatneft-Neftekhim\nNizhnekamsk All-Steel Tyre Plant;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140435;EU.8296.14;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;Republic of Tatarstan, Nizhnekamsk;;;423570;;;NO;WEB[https://shinakama.tatneft.ru]\nPHONE[+8 555 49-79-30]\nEMAIL[nksh@tatneft.ru]\nFAX[+ 8 555 24-15-70];RU;RUSSIAN FEDERATION;140436;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140439;EU.8297.13;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;ООО Нижнекамский завод грузовых шин;RU;;;;140441;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140439;EU.8297.13;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Nizhnekamsk All-Steel Tyre Plant, LLC;;;;;140442;EN;Associated entities:\nTatneft\nTrading House KAMA\nManagement Company Tatneft-Neftekhim\nNizhnekamskshina;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140439;EU.8297.13;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;Nizhnekamsk, industrial zone, Republic of Tatarstan, Russia;;423580;;;NO;WEB[https://cmk.tatneft.ru/?lang=ru]\nPHONE[+7 (8555) 49-73-40]\nEMAIL[nkastp@tatneft.ru];RU;RUSSIAN FEDERATION;140440;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140443;EU.8298.12;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;OOO УК Татнефть-Нефтехим;RU;;;;140445;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140443;EU.8298.12;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Management Company Tatneft-Neftekhim LLC;;;;;140446;EN;"Associated entities:\nJSC Nizhnekamskshina;\nLLC Nizhnekamsk Truck Tyre Factory\nNizhnekamsk SSC Tyre Factory;\nJSC Nizhnekamsktekhuglerod;\nJSC Nizhnekamsk Mechanical Plant);\nTD ‘Kama’ Trading House;\nLLC ‘Kama’ Scientific & Technical Center;\nLLC TATNEFT-Neftekhimsnab;\nJSC Yarpolimermash-Tatneft;\nLLC Energoshinservis";amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140443;EU.8298.12;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;Republic of Tatarstan, Nizhnekamsk-10, PO Box 1, AIK-24;;423580;;;NO;WEB[www.neftehim.tatneft.ru]\nPHONE[+7(8555) 49-73-42, +7(8555) 49-75-86]\nEMAIL[nhk@tnnh.tatneft.ru ]\nFAX[+7(8555) 49-75-86];RU;RUSSIAN FEDERATION;140444;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140447;EU.8299.11;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Степан Викторович ГРИГОРОВ;;;;;140453;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140447;EU.8299.11;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Stepan Viktorovich GRIGOROV;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Combined Arms Army of the Russian Federation;140454;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140447;EU.8299.11;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Stepan Viktorovitj GRIGOROV;SV;;;;141246;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140447;EU.8299.11;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-03-26;26;3;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;140448;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140447;EU.8299.11;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1194779 (other-Other identification number) (Entity based ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140450;EN;Entity based ID;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140447;EU.8299.11;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Ф-594680 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140451;EN;ID number;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140447;EU.8299.11;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8110 342164 (passport-National passport) (on 2010-07-09);NO;NO;NO;NO;NO;;2010-07-09;;;;;passport;National passport;;00;;140452;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140447;EU.8299.11;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140449;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140455;EU.8300.17;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Кронштадт-технологии группа компаний АО;RU;;;;140458;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140455;EU.8300.17;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;JSC KRONSHTADT TEKHNOLOGII Group of Companies;;;;;140459;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140455;EU.8300.17;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;St. Petersburg;Maly prospekt Vasilievsky island, 54/4;;199178;;;NO;"WEB[https://kronshtadt.ru]\nPHONE[+7 (812) 449‑90‑90 ]\nEMAIL[uav@kronshtadt.ru; office@kronshtadt.ru]";RU;RUSSIAN FEDERATION;140456;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140455;EU.8300.17;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;Moscow;Andropov Ave., 18, bldg. 9, Descartes Business Center, Russia;;115432;;;NO;WEB[https://kronshtadt.ru]\nPHONE[+7 (495) 748‑35‑77, +7 (495) 230‑00‑36 ]\nEMAIL[uav@kronshtadt.ru];RU;RUSSIAN FEDERATION;140457;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140460;EU.8301.16;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Сергей Викторович МОСАЛЕВ;RU;;;;140466;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140460;EU.8301.16;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Sergey Viktorovich MOSALEV;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Combined Arms Army of the Russian Federation;140467;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140460;EU.8301.16;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Sergej Viktorovitj MOSALEV;SV;;;;141211;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140460;EU.8301.16;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-01-19;19;1;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;140461;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140460;EU.8301.16;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2737869 (other-Other identification number) (Entity based ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140463;EN;Entity based ID;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140460;EU.8301.16;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Ф-866954 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140464;EN;ID number;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140460;EU.8301.16;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0802 688231 (passport-National passport) (on 2015-10-18);NO;NO;NO;NO;NO;;2015-10-18;;;;;passport;National passport;;00;;140465;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140460;EU.8301.16;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140462;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140468;EU.8302.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Валентин Павлович ЛУЦАК;RU;;;;140474;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140468;EU.8302.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Valentin Pavlovich LUTSAK;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Combined Arms Army of the Russian Federation;140475;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140468;EU.8302.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Valentin Pavlovitj LUTSAK;SV;;;;141203;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140468;EU.8302.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-04-05;5;4;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;140469;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140468;EU.8302.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3102560 (other-Other identification number) (Entity based ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140471;EN;Entity based ID;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140468;EU.8302.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"Ф-879492 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;140472;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140468;EU.8302.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5004 572078 (passport-National passport) (on 2004-08-28);NO;NO;NO;NO;NO;;2004-08-28;;;;;passport;National passport;;00;;140473;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140468;EU.8302.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140470;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140476;EU.8303.14;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Сергей Николаевич БОРИСЕНКО;RU;;;;140482;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140476;EU.8303.14;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Sergey Nikolaevich BORISENKO;;M;;Major of the 64th Separate Motorized Rifle Brigade of the 35th Combined Arms Army of the Russian Federation;140483;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140476;EU.8303.14;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Sergej Nikolajevitj BORISENKO;SV;;;;141193;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140476;EU.8303.14;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-03-15;15;3;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;140477;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140476;EU.8303.14;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3127462 (other-Other identification number) (Entity based ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140479;EN;Entity based ID;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140476;EU.8303.14;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;У-268030 (other-Other identification number) (ID number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140480;EN;ID number;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140476;EU.8303.14;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0503 357858 (passport-National passport) (on 2003-01-30);NO;NO;NO;NO;NO;;2003-01-30;;;;;passport;National passport;;00;;140481;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140476;EU.8303.14;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140478;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140484;EU.8304.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Марина Александровна МОРДАШОВА;;F;;;140487;EN;;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140484;EU.8304.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Marina Alexandrovna MORDASHOVA;;F;;;140488;EN;Associated individuals:\nAlexey Mordashov (husband) \nKirill Mordashov (Stepson) \nNikita Mordashov (Stepson)\n\nAssociated entities: \nOndero Limited, British Virgin Islands\nUnifirm Limited, Cyprus\nRanel Assets Limited, British Virgin Islands\nRayglow Limited, Cyprus\nServerGroup LLC (Russian Conferdation)\nKN-Holding LLC (USA)\nNordgold;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140484;EU.8304.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;Marina Aleksandrovna MORDASJOVA;SV;;;;141190;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140484;EU.8304.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-05-17;17;5;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;140485;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140484;EU.8304.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-09-15;2022-09-16;2022/1529 (OJ L239);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140486;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140489;EU.8305.12;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Михаил Евгеньевич МИЗИНЦЕВ;RU;;;;140492;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140489;EU.8305.12;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Mikhail Evgenievich MIZINTSEV;;M;;Head of the National Defense Control Center of the Russian Federation, Colonel General;140493;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140489;EU.8305.12;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Michail Jevgenjevitj MIZINTSEV;SV;;;;141184;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140489;EU.8305.12;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-09-10;10;9;1962;;;NO;GREGORIAN;;;Averinskaya, Syamzhensky district, Vologda region;;00;UNKNOWN;140490;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140489;EU.8305.12;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140491;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140494;EU.8306.11;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;"ПАО ""КАМАЗ""";RU;;;;140496;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140494;EU.8306.11;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;KAMAZ PTC;;;;;140497;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140494;EU.8306.11;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;PJSC KAMAZ;;;;;140498;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140494;EU.8306.11;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;Avtozavodskiy Prospekt, 2, Naberezhnye Chelny, Respublika Tatarstan;;423827;;;NO;WEB[https://kamaz.ru/en]\nPHONE[+7 (800) 555-00-99 ]\nEMAIL[callcentre@kamaz.ru ];RU;RUSSIAN FEDERATION;140495;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140509;EU.8309.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Елизавета Дмитриевна ПЕСКОВА;RU;;;;140512;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140509;EU.8309.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Elizaveta Dmitrievna PESKOVA;;F;;Vice-President of the Foundation for the Development of Russian – French Historical Initiatives;140513;EN;Associated individual(s): Dmitriy Peskov (father);amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140509;EU.8309.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Jelizaveta Dmitrijevna PESKOVA;SV;;;;141166;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140509;EU.8309.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1998-01-09;9;1;1998;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;140510;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140509;EU.8309.8;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140511;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140525;EU.8311.82;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Татьяна Александровна НАВКА;RU;;;;140528;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140525;EU.8311.82;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Tatiana Aleksandrovna NAVKA;;F;;;140529;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140525;EU.8311.82;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-04-13;13;4;1975;;;NO;GREGORIAN;;;;;UA;UKRAINE;140526;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140525;EU.8311.82;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140527;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140535;EU.8313.80;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Андрей Юрьевич Липов;RU;;;;140538;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140535;EU.8313.80;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Andrei Yurievich LIPOV;;M;;Head of the Russian Federal Service for Supervision of Communications Information Technology and Mass Media (Roskomnadzor);140539;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140535;EU.8313.80;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Andrej Jurjevitj LIPOV;SV;;;;141133;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140535;EU.8313.80;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-11-23;23;11;1969;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;140536;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140535;EU.8313.80;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140537;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140549;EU.8316.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;СТРЕМОУСОВ Кирило Сергійович;UK;;;;140552;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140549;EU.8316.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Kyrylo Sergiyovich STREMOUSOV;;M;;President of the „Salvation Committee for Peace and Order” in Kherson;140553;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140549;EU.8316.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Kyrylo Serhijovytj STREMOUSOV;SV;;;;141131;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140549;EU.8316.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976;;;NO;GREGORIAN;;;;;00;UNKNOWN;140550;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140549;EU.8316.77;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140551;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140554;EU.8317.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;ЧЕРЕВКО Сергій Миколайович;UK;;;;140557;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140554;EU.8317.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Serhiy Mikolayovich CHEREVKO;;M;;Member of the „Salvation Committee for Peace and Order” in Kherson, former deputy Mayor of Kherson;140558;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140554;EU.8317.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Serhij Mykolajovytj TJEREVKO;SV;;;;141129;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140554;EU.8317.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-08-11;11;8;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;140555;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140554;EU.8317.76;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;140556;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140559;EU.8318.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Тетяна КУЗЬМИЧ;UK;;;;140562;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140559;EU.8318.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Tetiana KUZMICH;;F;;Member of the „Salvation Committee for Peace and Order” in Kherson.\nFormer deputy mayor of Kherson.\nPresident of civil society organisation Russian National Society „Rusich”.;140563;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140559;EU.8318.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Tetiana KUZMYTJ;SV;;;;141128;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140559;EU.8318.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-04-10;10;4;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;140560;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140559;EU.8318.75;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;140561;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140564;EU.8319.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Галина Вікторівна ДАНИЛЬЧЕНКО;UK;F;;;140567;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140564;EU.8319.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Galina Viktorivna DANILCHENCKO;;F;;Appointed acting mayor of Melitopol by Russian occupation forces;140568;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140564;EU.8319.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Halyna Viktorivna DANYLTJENKO;SV;;;;141126;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140564;EU.8319.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;140565;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140564;EU.8319.74;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;140566;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140569;EU.8320.52;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;АО Гарнизон;RU;;;;140572;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140569;EU.8320.52;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;JSC GARNIZON;;;;;140573;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140569;EU.8320.52;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;Moscow;Sadovnicheskaya 53;;;;;NO;(Postal address);RU;RUSSIAN FEDERATION;140570;EN;Postal address;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140569;EU.8320.52;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;Moscow;"Kosmodamianskaya Naberezhnaya 24; building 1";;115035;;;NO;WEB[http://ao-garnizon.ru]\nPHONE[+7 (499) 790-92-12]\nEMAIL[info@ao-garnizon.ru];RU;RUSSIAN FEDERATION;140571;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140574;EU.8321.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;АО Оборонэнерго;RU;;;;140576;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140574;EU.8321.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;JSC OBORONENERGO;;;;;140577;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140574;EU.8321.51;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;Moscow;1st Krasnoselsky lane, 11;;107140;;;NO;WEB[https://oboronenergo.su]\nPHONE[+7 (495) 532-13-06]\nEMAIL[info@oen.su];RU;RUSSIAN FEDERATION;140575;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140578;EU.8322.50;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;ООО Ульяновский автомобильный завод ( УАЗ);RU;;;;140580;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140578;EU.8322.50;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;OJSC Ulyanovsk Automobile Plant (UAZ);;;;;140581;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140578;EU.8322.50;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;Ulyanovsk;Moskovskoye Shosse, 92;;432008;;Ulyanovsk Oblast;NO;WEB[https://uaz.global/]\nPHONE[+7 (8422) 40-91-09]\nEMAIL[mm.medvedev@dnd.team ];00;UNKNOWN;140579;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140582;EU.8323.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;"АО ""Воентелеком""";RU;;;;140584;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140582;EU.8323.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;VOYENTELEKOM;;;;;140585;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140582;EU.8323.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;JSC VOENTELECOM;;;;;140586;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140582;EU.8323.49;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;Moscow;st. Bolshaya Olenya, 15A, building 1;;107014;;;NO;WEB[https://voentelecom.ru]\nPHONE[7 (495) 609-50-05 , +7 (985) 900-50-05 ]\nEMAIL[info@voentelecom.ru];RU;RUSSIAN FEDERATION;140583;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140587;EU.8324.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;"АО ""Военторг""";RU;;;;140589;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140587;EU.8324.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;JSC VOENTORG;;;;;140590;EN;"Associated entitie(s): Subordinated companies:\nJSC ""Voentorg-West"";\nJSC ""Voentorg-South"";\nJSC ""Voentorg-Center"";\nJSC ""Voentorg-Vostok"";\nJSC ""Voentorg-Moscow"";\nVoentorg-Retail LLC";amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140587;EU.8324.48;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;Moscow;Sadovnicheskaya st., 55/26, building 3;;115035;;;NO;WEB[http://www.oaovoentorg.ru]\nPHONE[+7 (495) 609-5200]\nEMAIL[info@oaovoentorg.ru];RU;RUSSIAN FEDERATION;140588;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140599;EU.8327.45;;2022-05-03;;(Date of UN designation: 2022-05-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Игорь Васильевич КАРПЕНКО;RU;M;;;140602;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140599;EU.8327.45;;2022-05-03;;(Date of UN designation: 2022-05-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ігар Васільевіч КАРПЕНКА;BE;M;;;140603;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140599;EU.8327.45;;2022-05-03;;(Date of UN designation: 2022-05-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Igor Vasilievich KARPENKO;;M;;;140604;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140599;EU.8327.45;;2022-05-03;;(Date of UN designation: 2022-05-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ihar Vasilievich KARPENKA;;M;;Chairperson of the Central Commission of the Republic of Belarus on elections and holding Republic Referenda;140605;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140599;EU.8327.45;;2022-05-03;;(Date of UN designation: 2022-05-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Igor Vasiljevitj KARPENKO;SV;;;;141047;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140599;EU.8327.45;;2022-05-03;;(Date of UN designation: 2022-05-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ihar Vasiljevitj KARPENKA;SV;;;;141048;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140599;EU.8327.45;;2022-05-03;;(Date of UN designation: 2022-05-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Igor KARPENKO;SL;;;;141049;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140599;EU.8327.45;;2022-05-03;;(Date of UN designation: 2022-05-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-04-28;28;4;1964;;;NO;GREGORIAN;;;;;00;UNKNOWN;140600;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140599;EU.8327.45;;2022-05-03;;(Date of UN designation: 2022-05-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;140601;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC +28/10/2022;140606;EU.8328.44;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Дмитрий Алексеевич ОЛЕКСИН;RU;M;;;140609;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140606;EU.8328.44;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Дзмітрый Аляксеевіч АЛЕКСІН;BE;M;;;140610;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140606;EU.8328.44;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Dmitry Alexeevich OLEKSIN;;M;;;140611;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140606;EU.8328.44;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Dzmitry Aliakseevich ALEKSIN;;M;;Son of Aliaksei Aleksin, shareholder of Belneftgaz, Energo-Oil and Grantlo (formerly Energo-Oil-Invest);140612;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140606;EU.8328.44;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Dmitrij ALEKSIN;SL;;;;141050;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140606;EU.8328.44;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Dmitrij Aleksejevitj OLEKSIN;SV;;;;141051;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140606;EU.8328.44;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Dzmitryj Aljaksejevitj ALEKSIN;SV;;;;141052;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140606;EU.8328.44;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987-04-25;25;4;1987;;;NO;GREGORIAN;;;;;00;UNKNOWN;140607;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140606;EU.8328.44;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;140608;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC +28/10/2022;140613;EU.8329.43;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Виталий Алексеевич ОЛЕКСИН;RU;M;;;140616;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140613;EU.8329.43;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Віталь Аляксеевіч АЛЯКСІН;BE;M;;;140617;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140613;EU.8329.43;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Vitaliy Alexeevich OLEKSIN;;M;;;140618;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140613;EU.8329.43;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Vital Aliaksaevich ALEKSIN;;M;;Son of Aliaksei Aleksin, shareholder of Belneftgaz, Energo-Oil and Grantlo (formerly Energo-Oil-Invest);140619;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140613;EU.8329.43;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Vitalij Aleksejevitj OLEKSIN;SV;;;;141053;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140613;EU.8329.43;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Vital Aljaksejevitj ALJAKSIN;SV;;;;141054;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140613;EU.8329.43;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Vitalij Aleksin;SL;;;;141055;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140613;EU.8329.43;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1997-08-29;29;8;1997;;;NO;GREGORIAN;;;;;00;UNKNOWN;140614;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140613;EU.8329.43;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;140615;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC +28/10/2022;140620;EU.8330.21;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Боголюб КАРИЧ;RU;M;;;140623;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140620;EU.8330.21;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Богољуб КАРИЋ;BE;M;;;140624;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140620;EU.8330.21;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Bogoljub KARIĆ;;M;;Serbian businessman and politician, associated with the company Dana Holdings;140625;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140620;EU.8330.21;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-01-17;17;1;1954;;;NO;GREGORIAN;;;;Peja / Pec;YU;YUGOSLAVIA;140621;EN;POB: Peja/Pec, Kosovo;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140620;EU.8330.21;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;012830978 (passport-National passport) (valid to 2026-12-27);NO;NO;NO;NO;NO;;;;2026-12-27;;;passport;National passport;;00;;141056;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;; +28/10/2022;140620;EU.8330.21;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CS;;140622;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC +28/10/2022;140626;EU.8331.20;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Андрей СЫЧ;RU;M;;;140629;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140626;EU.8331.20;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Андрій СИЧ;BE;M;;;140630;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140626;EU.8331.20;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Andrey SYCH;;M;;;140631;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140626;EU.8331.20;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Andrii SICH;;M;;Co-host of programme “Platform” on state-owned television channel “Belarus 1”\n\nMember of organisation “Rusj molodaja”;140632;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140626;EU.8331.20;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Andrej SIČ;SL;;;;141057;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140626;EU.8331.20;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Andrej SYTJ;SV;;;;141058;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140626;EU.8331.20;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Andrij SITJ;SV;;;;141059;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140626;EU.8331.20;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1990-09-20;20;9;1990;;;NO;GREGORIAN;;;;;BY;BELARUS;140627;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140626;EU.8331.20;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;140628;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC +28/10/2022;140633;EU.8332.19;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Денис Александрович МИКУШЕВ;RU;;;;140636;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140633;EU.8332.19;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Дзяніс Аляксандравіч МІКУШЭЎ;BE;M;;;140637;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140633;EU.8332.19;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Denis Alexandrovich MIKUSHEV;;M;;;140638;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140633;EU.8332.19;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Dzianis Aliaksandravich MIKUSHEU;;M;;"Head of the Department for Supervision of Compliance with the Law of Court Decisions in Criminal Cases of the Prosecutor’s Office of the Gomel Region/Oblast; senior legal adviser";140639;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140633;EU.8332.19;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Denis Aleksandrovitj MIKUSJEV;SV;;;;141060;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140633;EU.8332.19;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Dzianis Aljaksandravitj MIKUSJEU;SV;;;;141061;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140633;EU.8332.19;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Denis MIKUŠEV;SL;;;;141062;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140633;EU.8332.19;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-03-21;21;3;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;140634;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140633;EU.8332.19;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;140635;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC +28/10/2022;140664;EU.8336.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Андрей Евгеньевич ПАРШИН;RU;M;;;140668;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140664;EU.8336.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Андрэй Яўгенавіч ПАРШЫН;BE;M;;;140669;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140664;EU.8336.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Andrei Yevgenevich PARSHIN;;M;;;140670;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140664;EU.8336.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Andrei Yauhenavich PARSHYN;;M;;Head of the Main Department for Combating Organised Crime and Corruption in Belarus (GUBOPiK);140671;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140664;EU.8336.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Andrej Jevgenjevitj PARSJIN;SV;;;;141066;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140664;EU.8336.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Andrej Jauhenavitj PARSJYN;SV;;;;141067;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140664;EU.8336.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Andrej PARŠIN;SL;;;;141068;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140664;EU.8336.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;4A Skryganova St., Apt. 211;;;;;NO;;BY;BELARUS;140665;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140664;EU.8336.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-02-19;19;2;1974;;;NO;GREGORIAN;;;;;00;UNKNOWN;140666;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140664;EU.8336.15;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;140667;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC +28/10/2022;140679;EU.8338.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Игорь петрович ТУР;RU;M;;;140682;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140679;EU.8338.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ігар Пятровіч ТУР;BE;M;;;140683;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140679;EU.8338.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Igor Petrovich TUR;;M;;;140684;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140679;EU.8338.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ihar Piatrovich TUR;;M;;Employee of state-owned television channel “ONT”, author and anchor of several programmes (“Propaganda”, “To be completed”);140685;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140679;EU.8338.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Igor TUR;SL;;;;141069;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140679;EU.8338.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Igor Petrovitj TUR;SL;;;;141070;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140679;EU.8338.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ihar Pjatrovitj TUR;SV;;;;141071;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140679;EU.8338.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989-03-26;26;3;1989;;;NO;GREGORIAN;;;;Grodno/Hrodna;BY;BELARUS;140680;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140679;EU.8338.13;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;140681;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC +28/10/2022;140686;EU.8339.12;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Людмила Леонидовна ГЛАДКАЯ;RU;;;;140690;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140686;EU.8339.12;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Людміла Леанідаўна ГЛАДКАЯ;BE;F;;;140691;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140686;EU.8339.12;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Lyudmila Leonidovna GLADKAYA;;F;;;140692;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140686;EU.8339.12;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Lyudmila Leanidauna HLADKAYA;;F;;Special correspondent of “SB Belarus Segodnya” newspaper, presenter on state-owned television channel “Belarus 1”;140693;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140686;EU.8339.12;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ljudmila Leonidovna GLADKAJA;SV;;;;141072;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140686;EU.8339.12;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ljudmila Leanidauna HLADKAJA;SV;;;;141073;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140686;EU.8339.12;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ljudmila GLADKAJA;SL;;;;141074;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140686;EU.8339.12;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;Minsk;8A Vodolazhsky St., apt. 45;;;;;NO;;BY;BELARUS;140687;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140686;EU.8339.12;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-06-30;30;6;1983;;;NO;GREGORIAN;;;;;00;UNKNOWN;140688;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140686;EU.8339.12;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;140689;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC +28/10/2022;140694;EU.8340.87;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Рыгор Юр’евіч АЗАРОНАК;RU;M;;;140697;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140694;EU.8340.87;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Григорий Юрьевич АЗАРЁНОК;BE;M;;;140698;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140694;EU.8340.87;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Grigoriy Yurevich AZARYONOK;;M;;;140699;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140694;EU.8340.87;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ryhor Yuryevich AZARONAK;;M;;Employee of state-owned television channel “CTV”, author and host of several programmes (“Secret Springs of Politics”, “Order of Judas”, “Panopticon”) \nRank: Lieutenant in reserve;140700;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140694;EU.8340.87;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Grigorij AZARONAK;SL;;;;141075;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140694;EU.8340.87;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Grigorij Jurjevitj AZARJONOK;SV;;;;141076;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140694;EU.8340.87;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ryhor Jurjevitj AZARONAK;SV;;;;141077;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140694;EU.8340.87;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1995-10-18;18;10;1995;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;140695;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140694;EU.8340.87;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;140696;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC +28/10/2022;140701;EU.8341.86;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Иван Иванович ГОЛОВАТЫЙ;RU;M;;;140704;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140701;EU.8341.86;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Іван Іванавіч ГАЛАВАТЫ;BE;M;;;140705;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140701;EU.8341.86;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ivan Ivanovich GOLOVATY;;M;;;140706;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140701;EU.8341.86;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ivan Ivanavich GALAVATYI;;M;;Director-General of the Open Joint Stock Company “Belaruskali”\n\nMember of the Standing Committee of the Council of the Republic of the National Assembly of the Republic of Belarus for Foreign Affairs and National Security;140707;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140701;EU.8341.86;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ivan Ivanovitj GOLOVATYJ;SV;;;;141078;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140701;EU.8341.86;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ivan Ivanavitj HALAVATY);SV;;;;141079;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140701;EU.8341.86;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ivan GALAVATIJ;SL;;;;141080;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140701;EU.8341.86;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-06-15;15;6;1976;;;NO;GREGORIAN;;;;Pogost Settlement, Soligorsk District, Minsk Province;BY;BELARUS;140702;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140701;EU.8341.86;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;140703;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC +28/10/2022;140900;EU.8352.54;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Петр АКОПОВ;RU;M;;;140903;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140900;EU.8352.54;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Petr AKOPOV;;M;;Russian propagandist: columnist at RIA Novosti;140904;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140900;EU.8352.54;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Pjotr Akopov;SV;;;;141117;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140900;EU.8352.54;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-10-07;7;10;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;140901;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140900;EU.8352.54;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140902;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140905;EU.8353.53;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Тимофей Николаевич СЕРГЕЙЦЕВ;RU;M;;;140908;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140905;EU.8353.53;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Timofey Nikolaevich SERGEYTSEV;;M;;Russian propagandist: columnist at RIA Novosti;140909;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140905;EU.8353.53;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Timofej Nikolajevitj SERGEJTSEV;SV;;;;141116;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140905;EU.8353.53;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-11-03;3;11;1963;;;NO;GREGORIAN;;;;;00;UNKNOWN;140906;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140905;EU.8353.53;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140907;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140910;EU.8354.52;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Виктория НИКИФОРОВА;RU;F;;;140913;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140910;EU.8354.52;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Victoria NIKIFOROVA;;F;;Russian propagandist: working for RIA Novosti;140914;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140910;EU.8354.52;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Viktorija NIKIFOROVA;SV;;;;141115;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140910;EU.8354.52;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-06-12;12;6;1971;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;140911;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140910;EU.8354.52;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140912;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140915;EU.8355.51;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Алина Маратовна КАБАЕВА;RU;F;;;140918;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140915;EU.8355.51;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Alina Maratovna KABAYEVA;;F;;;140919;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140915;EU.8355.51;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Alina Maratovna KABAEVA;;F;;Chairwoman of the Board of Directors of the National Media Group (NMG);140920;EN;Associated entity: National Media Group (NMG);amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140915;EU.8355.51;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Alina Maratovna KABAJEVA;SV;;;;141114;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140915;EU.8355.51;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-05-12;12;5;1983;;;NO;GREGORIAN;;;;Tashkent;UZ;UZBEKISTAN;140916;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140915;EU.8355.51;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140917;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140921;EU.8356.50;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Александра МЕЉНИЧЕНКО;SR;F;;;140926;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140921;EU.8356.50;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Aleksandra MELNICHENKO;;F;;;140927;EN;Associated individual: Andrey Igorevich Melnichenko (husband);amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140921;EU.8356.50;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Aleksandra MELNIČENKO;SL;;;;141111;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140921;EU.8356.50;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Aleksandra Meljničenko;SV;;;;141112;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140921;EU.8356.50;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-04-21;21;4;1977;;;NO;GREGORIAN;;;;Belgrade;CS;SERBIA AND MONTENEGRO;140922;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140921;EU.8356.50;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;094949450 (passport-National passport) (valid to 2023-12-23);NO;NO;NO;NO;NO;;;;2023-12-23;;;passport;National passport;;HR;;140925;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140921;EU.8356.50;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CS;;140923;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140921;EU.8356.50;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;HR;;140924;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140928;EU.8357.49;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Эдуард Юрьевич ХУДАЙНАТОВ;;M;;;140932;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140928;EU.8357.49;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Eduard Yurevich KHUDAYNATOV;;M;;;140933;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140928;EU.8357.49;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Eduard Jurjevitj CHUDAJNATOV;SV;M;;;141108;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140928;EU.8357.49;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-09-11;11;9;1960;;;NO;GREGORIAN;;;;Shymkent;KZ;KAZAKHSTAN;140929;EN;USSR (now Kazakhstan);amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140928;EU.8357.49;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"753296761 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;RU;;140931;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140928;EU.8357.49;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140930;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140934;EU.8358.48;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Павел Евгеньевич ПРИГОЖИН;;M;;;140938;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140934;EU.8358.48;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Pavel Evgenevich PRIGOZHIN;;M;;;140939;EN;"Associated individuals: Yevgeniy Viktorovich Prigozhin (father), Lyubov Valentinovna Prigozhina (mother), Polina Evgenievna Prigozhina (sister);\nAssociated entities: Lakhta Park, Lakhta Park Premium, Lakhta Plaza, Turtrans";amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140934;EU.8358.48;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Pavel Jevgenjevitj PRIGOZJIN;SV;M;;;141104;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140934;EU.8358.48;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1996;;;NO;GREGORIAN;;;;;00;UNKNOWN;140935;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140934;EU.8358.48;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;780103765308 (other-Other identification number) (Taxpayer identification number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;140937;EN;Taxpayer identification number;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;140934;EU.8358.48;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140936;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140940;EU.8359.47;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Аркaдий Юрьевич ВOЛОЖ;;M;;;140944;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140940;EU.8359.47;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Arkady Yurievich VOLOZH;;M;;co-founder and CEO of Yandex N.V.;140945;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140940;EU.8359.47;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Arkadij Jurjevitj VOLOZJ;SV;;;;141102;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140940;EU.8359.47;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964-02-11;11;2;1964;;;NO;GREGORIAN;;;;Atyrau;KZ;KAZAKHSTAN;140941;EN;Kazakh Soviet Socialist Republic, USSR (now Kazakhstan);amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140940;EU.8359.47;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MT;;140942;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140940;EU.8359.47;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;140943;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;140946;EU.8360.25;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;ООО ВоенТекстильПром;RU;;;;140948;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140946;EU.8360.25;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;VOENTEKSTILPROM LLC;;;;;140949;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;140946;EU.8360.25;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;Moscow;Kolomensky proezd, 13a;;11544;;;NO;"WEB[https://voentekstilprom.ru/]\nPHONE[8-499-444-32-84; Fax: 8-499-611-90-46]\nEMAIL[office@vtpmsk.ru ]";RU;RUSSIAN FEDERATION;140947;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141268;EU.8373.88;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Национальный расчетный депозитарий;RU;;;;141273;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141268;EU.8373.88;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;National Settlement Depository (NSD);;;;;141274;EN;"Type of entity: non-bank credit institution, joint-stock company; \nPrincipal place of business: Russian Federation";amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141268;EU.8373.88;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Národný zúčtovací depozitár, NSD;SK;;;;141275;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141268;EU.8373.88;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Nationaler Zentralverwahrer;;;;;141276;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141268;EU.8373.88;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Národní zúčtovací depozitář;CS;;;;141277;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141268;EU.8373.88;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Nacionalna depotna družba;SL;;;;141278;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141268;EU.8373.88;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;Moscow;Spartakovskaya street 12;;105066;;;NO;;RU;RUSSIAN FEDERATION;141269;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141268;EU.8373.88;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7702165310 / 770101001 (other-Other identification number) (Taxpayer identification number);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;141270;EN;Taxpayer identification number;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;141268;EU.8373.88;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1027739132563 (regnumber-Registration Number) (on 1996-06-27)(Primary State registration number);NO;NO;NO;NO;NO;;1996-06-27;;;;;regnumber;Registration Number;;00;;141271;EN;Primary State registration number;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;141268;EU.8373.88;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3294 (regnumber-Registration Number) (on 1996-06-27)(Date of registration: 27.6.1996\nState registration number);NO;NO;NO;NO;NO;;1996-06-27;;;;;regnumber;Registration Number;;00;;141272;EN;Date of registration: 27.6.1996\nState registration number;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;141328;EU.8392.27;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Sergej Vladimirovitj SAVOSTIANOV;SV;M;;;141331;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141328;EU.8392.27;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Сергей Владимирович САВОСТЬЯНОВ;RU;M;;;141332;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141328;EU.8392.27;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Sergey Vladimirovich SAVOSTYANOV;;M;;Member of the Moscow City Duma;141333;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141328;EU.8392.27;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-08-22;22;8;1984;;;NO;GREGORIAN;;Moscow region;;Lyubertsy;RU;RUSSIAN FEDERATION;141329;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141328;EU.8392.27;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141330;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;141334;EU.8393.26;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;СК НЕЗАВИСИМАЯ СТРАХОВАЯ ГРУППА;RU;;;;141336;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141334;EU.8393.26;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;INDEPENDENT INSURANCE GROUP;;;;;141337;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141334;EU.8393.26;;2022-06-03;;(Date of UN designation: 2022-06-03);E;enterprise;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;Moscow;Vspolniy Pereulok 18, bldg. 2;;123001;;;NO;"WEB[www.nsg-ins.ru]\nPHONE[+7 (495) 926-72-70; 788-81-19]\nEMAIL[info@nsg-ins.ru]\nFAX[+7 (495) 788-81-16]";00;UNKNOWN;141335;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141338;EU.8394.25;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Николай Дмитриевич ЧОУЛЗ;RU;M;;;141343;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141338;EU.8394.25;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Николай Дмитриевич ПЕСКОВ;RU;M;;;141344;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141338;EU.8394.25;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Nikolay Dmitrievich CHOULZ;;M;;;141345;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141338;EU.8394.25;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Nikolay Dmitrievich CHOLES;;M;;;141346;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141338;EU.8394.25;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Nikolay Dmitrievich PESKOV;;M;;;141347;EN;Associated individuals: Dmitry Peskov (father);amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141338;EU.8394.25;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Nikolaj Dmitrijevitj PESKOV;SV;M;;;141373;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141338;EU.8394.25;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1990-02-03;3;2;1990;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;141339;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141338;EU.8394.25;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4516913332 (id-National identification card) (National ID no);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;141341;EN;National ID no;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;141338;EU.8394.25;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;721123760 (passport-National passport) (on 2012-09-12 valid to 2022-09-12);NO;NO;NO;NO;NO;;2012-09-12;;2022-09-12;;;passport;National passport;;00;;141342;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;141338;EU.8394.25;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141340;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;141348;EU.8395.24;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;SALDO Volodymyr Vasyljovytj;SV;M;;;141351;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141348;EU.8395.24;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Володимир Васильович САЛЬДО;UK;M;;;141352;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141348;EU.8395.24;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Volodymir Vasilyovich SALDO;;M;;Member of Kherson City Council, member of the ‘Salvation Committee for Peace and Order’ in Kherson\n\nFormer mayor of Kherson (2002–2012) and former Member of Parliament (Party of the Regions, 2012–2014).;141353;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141348;EU.8395.24;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-06-12;12;6;1956;;;NO;GREGORIAN;;;;;00;UNKNOWN;141349;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141348;EU.8395.24;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;141350;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;141354;EU.8396.23;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Aleksandr Viktorovitj VINS;SV;M;;;141359;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141354;EU.8396.23;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Александр Викторович ВИНС;RU;M;;;141360;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141354;EU.8396.23;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;Aleksandr Viktorovich VINS;;M;;Colonel of the 64th Separate Motorised Rifle Brigade of the 35th Combined Arms Army of the Russian Federation;141361;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141354;EU.8396.23;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-01-24;24;1;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;141355;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141354;EU.8396.23;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;T-194304 (id-National identification card) (National ID);NO;NO;NO;NO;NO;;;;;;;id;National identification card;;00;;141357;EN;National ID;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;141354;EU.8396.23;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"0801 547363 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;00;;141358;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;; +28/10/2022;141354;EU.8396.23;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141356;EN;;amendment;council;2022-06-03;2022-06-03;2022/878 (OJ L153);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0878&from=EN +28/10/2022;141362;EU.8397.22;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Nikolaj DOLJA;SL;M;;;141366;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141362;EU.8397.22;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Nikolaj Ivanovitj DOLJA;SV;M;;;141367;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141362;EU.8397.22;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Mikalaj Ivanavitj DOLJA;SV;M;;;141368;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141362;EU.8397.22;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Ниĸолай Иванович ДОЛЯ;RU;M;;;141369;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141362;EU.8397.22;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Мiĸалай Iванавiч ДОЛЯ;BE;M;;;141370;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141362;EU.8397.22;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Nikolai Ivanovich DOLYA;;M;;;141371;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141362;EU.8397.22;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;Mikalai Ivanavich DOLIA;;M;;Judge at the Gomel Regional Court;141372;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141362;EU.8397.22;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979-07-03;3;7;1979;;;NO;GREGORIAN;;;;;00;UNKNOWN;141363;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141362;EU.8397.22;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3070379H041PBI (other-Other identification number) (Personal ID);NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;00;;141365;EN;Personal ID;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;; +28/10/2022;141362;EU.8397.22;;2022-06-03;;(Date of UN designation: 2022-06-03);P;person;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BY;;141364;EN;;amendment;council;2022-06-03;2022-06-03;2022/876 (OJ L153);BLR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.153.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A153%3ATOC +28/10/2022;141403;EU.8412.90;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Abou Abdel Hamid Al Kidali;;M;;;141406;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141403;EU.8412.90;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Al Qaïrawani;;M;;;141407;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141403;EU.8412.90;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Abu Qarwani;;;;;141408;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141403;EU.8412.90;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Abu Abdelhakim al-Kidali;;M;;;141409;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141403;EU.8412.90;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Abu 'Abd al-Hakim;;M;;;141410;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141403;EU.8412.90;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;Hitta;Asidan Ag;;Asidan Ag Hitta;;M;;;141411;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141403;EU.8412.90;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;HITTA;Sidan Ag;;Sidan Ag HITTA;;M;;;141412;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141403;EU.8412.90;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976;;;NO;GREGORIAN;;;Kidal;Kidal;ML;MALI;141404;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141403;EU.8412.90;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ML;;141405;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949 +28/10/2022;141413;EU.8413.89;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Abu Hamza al-Chinguetti;;M;;;141414;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141413;EU.8413.89;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;NITRIK;Hamza;;Hamza NITRIK;;M;;;141415;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141413;EU.8413.89;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Hamza al-Mauritani;;M;;;141416;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141413;EU.8413.89;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Abu Hamza al-Shinqiti;;M;;;141417;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141413;EU.8413.89;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Abu Hamza al-Shanqiti;;M;;;141418;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141413;EU.8413.89;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;OULD ABED;Cheikh ould Mohamed Salec;;Cheikh ould Mohamed Salec OULD ABED;;M;;;141419;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141413;EU.8413.89;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;BREIHMATT;Salem ould;;Salem ould BREIHMATT;;M;;;141420;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141413;EU.8413.89;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978;;;NO;GREGORIAN;;;;;MR;MAURITANIA;141421;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141413;EU.8413.89;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984;;;NO;GREGORIAN;;;;;MR;MAURITANIA;141422;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141413;EU.8413.89;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MR;;141423;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949 +28/10/2022;141424;EU.8414.88;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;Dicko;Amadou;Boucary;Amadou Boucary Dicko;;M;;;141425;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141424;EU.8414.88;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;Boucary;Amadou;;Amadou Boucary;;M;;;141426;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141424;EU.8414.88;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;Dicko;Abdoul Salam;;Abdoul Salam Dicko;;M;;;141427;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141424;EU.8414.88;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;Dicko;Jaffar;;Jaffar Dicko;;M;;;141428;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141424;EU.8414.88;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;DICKO;Jafar;;Jafar DICKO;;M;;;141429;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141424;EU.8414.88;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;141430;EN;presumed year of birth;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141424;EU.8414.88;;2022-06-20;;(Date of UN designation: 2022-06-20);P;person;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;BF;;141431;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949 +28/10/2022;141432;EU.8415.87;;2022-06-20;;(Date of UN designation: 2022-06-20);E;enterprise;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Ansar ul Islam of Malam Boureima Dicko;;;;;141433;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141432;EU.8415.87;;2022-06-20;;(Date of UN designation: 2022-06-20);E;enterprise;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;IRSAD;;;;;141434;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141432;EU.8415.87;;2022-06-20;;(Date of UN designation: 2022-06-20);E;enterprise;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Ansar-ul-islam lil-ichad wal jihad;;;;;141435;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141432;EU.8415.87;;2022-06-20;;(Date of UN designation: 2022-06-20);E;enterprise;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Defenders of Islam;;;;;141436;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141432;EU.8415.87;;2022-06-20;;(Date of UN designation: 2022-06-20);E;enterprise;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Ansaroul Islam;;;;;141437;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141432;EU.8415.87;;2022-06-20;;(Date of UN designation: 2022-06-20);E;enterprise;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Ansarour Islam;;;;;141438;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141432;EU.8415.87;;2022-06-20;;(Date of UN designation: 2022-06-20);E;enterprise;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Ansar al-Islam;;;;;141439;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141432;EU.8415.87;;2022-06-20;;(Date of UN designation: 2022-06-20);E;enterprise;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Ansarul Islam;;;;;141440;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141432;EU.8415.87;;2022-06-20;;(Date of UN designation: 2022-06-20);E;enterprise;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Apărătorii Islamului;RO;;;;141503;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141432;EU.8415.87;;2022-06-20;;(Date of UN designation: 2022-06-20);E;enterprise;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;Defensores del Islam;ES;;;;141504;EN;;amendment;council;2022-06-20;2022-06-20;2022/949 (OJ L164 I);EUAQ;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141628;EU.8432.28;;2022-02-18;;(Date of UN designation: 2022-02-18);P;person;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC;;;;Ali Mohamud Rage;;;;;141632;EN;;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141628;EU.8432.28;;2022-02-18;;(Date of UN designation: 2022-02-18);P;person;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC;;;;Ali Mohamed Rage Cali Dheer;;;;;141633;EN;;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141628;EU.8432.28;;2022-02-18;;(Date of UN designation: 2022-02-18);P;person;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC;;;;Ali Dhere;;;;;141634;EN;;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141628;EU.8432.28;;2022-02-18;;(Date of UN designation: 2022-02-18);P;person;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC;;;;Ali Dheere;;;;;141635;EN;;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141628;EU.8432.28;;2022-02-18;;(Date of UN designation: 2022-02-18);P;person;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC;;;;Ali Mohammed Rage;;;;;141636;EN;;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141628;EU.8432.28;;2022-02-18;;(Date of UN designation: 2022-02-18);P;person;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC;;;;Ali Mohamed RAGE;;;;Spokesperson of Al-Shabaab;141637;EN;;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141628;EU.8432.28;;2022-02-18;;(Date of UN designation: 2022-02-18);P;person;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;;SO;SOMALIA;141629;EN;;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141628;EU.8432.28;;2022-02-18;;(Date of UN designation: 2022-02-18);P;person;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;;;NO;GREGORIAN;;;;;SO;SOMALIA;141630;EN;;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141628;EU.8432.28;;2022-02-18;;(Date of UN designation: 2022-02-18);P;person;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;141631;EN;;amendment;council;2022-02-28;2022-02-28;2022/340 (OJ L56);SOM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.056.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A056%3ATOC +28/10/2022;141662;EU.8452.63;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Адам Султанович ДЕЛИМХАНОВ;;;;;141665;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141662;EU.8452.63;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Adam Sultanovich DELIMKHANOV;EN;M;;Member of the State Duma of the Russian Federation since 19 September 2021, First Deputy Chairman of the Committee on Security and Anti-Corruption.;141666;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141662;EU.8452.63;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Adam Sultanovitj DELIMCHANOV;SV;;;;142166;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141662;EU.8452.63;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-09-25;25;9;1969;;;NO;GREGORIAN;;;;Benoy;RU;RUSSIAN FEDERATION;141663;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141662;EU.8452.63;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141664;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141672;EU.8454.61;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Алибе́к Султа́нович ДЕЛИМХА́НОВ;;;;;141675;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141672;EU.8454.61;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Alibek Sultanovich DELIMKHANOV;EN;M;;Deputy Commander of the Chechen branch of the Russian National Guard.;141676;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141672;EU.8454.61;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Alibek Sultanovitj DELIMCHANOV;SV;;;;142168;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141672;EU.8454.61;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974-10-16;16;10;1974;;;NO;GREGORIAN;;;;Dzhalka;RU;RUSSIAN FEDERATION;141673;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141672;EU.8454.61;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141674;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141677;EU.8455.60;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Виктор Николаевич СТРИГУНОВ;;;;;141700;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141677;EU.8455.60;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Viktor Nikolayevich STRIGUNOV;EN;M;;First Deputy Director of the Federal Service of the National Guard of the Russian Federation – Commander-in-Chief of the National Guard of the Russian Federation.;141701;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141677;EU.8455.60;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Viktor Nikolajevitj STRIGUNOV;SV;;;;142169;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141677;EU.8455.60;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-10-27;27;10;1958;;;NO;GREGORIAN;;;;Dubovoye;RU;RUSSIAN FEDERATION;141678;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141677;EU.8455.60;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141679;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141690;EU.8512.2;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Алексей Владимирович ДЕНИСЕНКО;;;;;141693;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141690;EU.8512.2;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Aleksey Vladimirovich DENISENKO;EN;M;;Aleksey Vladimirovich Denisenko is a member of the Chelyabinsk regional Legislative Assembly, member of the Presidium of the Regional Political Council, Chairman of the Legislative Assembly Committee on Construction Policy and Housing and Communal Services and Head of the Department for Interaction with Public Associations and Work with Youth of the Chelyabinsk Regional Branch of United Russia. Furthermore, he is member of the Kremlin-aligned ruling party United Russia.;141694;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141690;EU.8512.2;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Aleksej Vladimirovitj DENISENKO;SV;;;;142353;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141690;EU.8512.2;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-06-09;9;6;1978;;;NO;GREGORIAN;;;;;00;UNKNOWN;141691;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141690;EU.8512.2;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141692;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141695;EU.8513.1;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Александр Валентинович ИЩЕНКО;RU;;;;141698;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141695;EU.8513.1;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Alexander Valentinovich ISHCHENKO;EN;M;;Mr. Ishchenko is the Chairman of the Legislative Assembly of the Rostov Region and Secretary of the Rostov Regional Branch of the Kremlin-aligned ruling party United Russia Party (both since 2016).;141699;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141695;EU.8513.1;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Alexander Valentinovitj ISJTJENKO;SV;;;;142356;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141695;EU.8513.1;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-03-09;9;3;1970;;;NO;GREGORIAN;;;;Rostov-on-Don;RU;RUSSIAN FEDERATION;141696;EN;former USSR;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141695;EU.8513.1;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141697;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141702;EU.8456.59;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Олег Анатольевич ПЛОХОЙ;;;;;141705;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141702;EU.8456.59;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Oleg Anatolyevich PLOKHOI;EN;M;;Secretary of State, Deputy Director of the Federal Service of the National Guard of the Russian Federation – Commander-in-Chief of the National Guard of the Russian Federation.;141706;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141702;EU.8456.59;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Oleg Anatoljevitj PLOCHOJ;;;;;142170;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141702;EU.8456.59;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-12-04;4;12;1968;;;NO;GREGORIAN;;;;Kyiv;UA;UKRAINE;141703;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141702;EU.8456.59;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141704;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141712;EU.8458.57;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Игорь Анатольевич ИЛЬЯШ;;;;;141715;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141712;EU.8458.57;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Igor Anatolyevich ILYASH;EN;M;;Deputy Director of the Federal Service of the National Guard of the Russian Federation (Rosgvardia) – Commander-in-Chief of the National Guard of the Russian Federation.;141716;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141712;EU.8458.57;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Igor Anatoljevitj ILJASJ;SV;;;;142172;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141712;EU.8458.57;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-10-05;5;10;1967;;;NO;GREGORIAN;;;;Odessa;UA;UKRAINE;141713;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141712;EU.8458.57;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141714;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141717;EU.8459.56;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Сергей Анатольевич ЛЕБЕДЕВ;;;;;141720;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141717;EU.8459.56;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Sergei Anatolyevich LEBEDEV;EN;M;;Deputy Director of the Federal Service of the National Guard of the Russian Federation (Rosgvardia) – Commander-in-Chief of the National Guard of the Russian Federation.;141721;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141717;EU.8459.56;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Sergej Anatoljevitj LEBEDEV;SV;;;;142173;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141717;EU.8459.56;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-01-10;10;1;1966;;;NO;GREGORIAN;;;;Astrakhan;RU;RUSSIAN FEDERATION;141718;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141717;EU.8459.56;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141719;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141727;EU.8461.33;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Алексей Степанович БЕЗЗУБИКОВ;;;;;141730;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141727;EU.8461.33;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Alexey Stepanovich BEZZUBIKOV;EN;M;;Deputy Director of the Federal Service of the National Guard of the Russian Federation (Rosgvardia) – Commander-in-Chief of the National Guard of the Russian Federation.;141731;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141727;EU.8461.33;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Aleksej Stepanovitj BEZZUBIKOV;SV;;;;142175;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141727;EU.8461.33;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-07-05;5;7;1965;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;141728;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141727;EU.8461.33;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141729;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141738;EU.8463.31;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Костянтин Володимирович ІВАЩЕНКО;UK;;;;141741;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141738;EU.8463.31;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Константи́н Влади́мирович ИВА́ЩЕНКО;RU;;;;141742;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141738;EU.8463.31;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Konstantin Vladimirovich IVASHCHENKO;EN;M;;;141743;EN;After the capture of the city of Mariupol by the Russian armed forces, Konstantin Ivashchenko was appointed as mayor of Mariupol on 6 April 2022, by the so‐called ‘Head of the Donetsk People’s Republic’ Denis Pushilin.;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141738;EU.8463.31;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Konstantin Vladimirovitj IVASJTJENKO;SV;;;;142178;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141738;EU.8463.31;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-10-03;3;10;1963;;;NO;GREGORIAN;;;;Mariupol;UA;UKRAINE;141739;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141738;EU.8463.31;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;141740;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141750;EU.8465.29;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Олександр Юрійович КОБЕЦЬ;UK;;;;141753;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141750;EU.8465.29;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Александр Юрьевич КОБЕЦ;RU;;;;141754;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141750;EU.8465.29;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Oleksandr Yuriyovych KOBETS;EN;M;;Since 26 April 2022, the so-called mayor of the city of Kherson, as installed by the Russian authorities.;141755;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141750;EU.8465.29;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Oleksandr Jurijovytj KOBETS;SV;;;;142179;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141750;EU.8465.29;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Aleksandr Jurjevitj KOBETS;SV;;;;142340;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141750;EU.8465.29;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-09-27;27;9;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;141751;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141750;EU.8465.29;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;141752;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141756;EU.8466.28;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Володимир Валерійович РОГОВ;UK;;;;141759;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141756;EU.8466.28;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Владимир Валерьевич РОГОВ;RU;;;;141760;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141756;EU.8466.28;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Vladimir Valeryevich ROGOV;EN;M;;So-called representative of the main council of Zaporozhzhia region’s military-civil administration.;141761;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141756;EU.8466.28;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Volodymyr Valerijovytj ROGOV;SV;;;;142341;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141756;EU.8466.28;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Vladimir Valerjevitj ROGOV;SV;;;;142342;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141756;EU.8466.28;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-12-01;1;12;1976;;;NO;GREGORIAN;;;;Zaporozhzhia;UA;UKRAINE;141757;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141756;EU.8466.28;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;141758;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141768;EU.8468.26;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Андрей Владимирович ШЕВЧИК;RU;;;;141771;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141768;EU.8468.26;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Andrei Vladimirovich SHEVCHIK;EN;M;;So-called mayor of Enerhodar.;141772;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141768;EU.8468.26;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Andrej Vladimirovitj SJEVTJIK;SV;;;;142380;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141768;EU.8468.26;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-06-17;17;6;1973;;;NO;GREGORIAN;;;;Zheleznogorsk;RU;RUSSIAN FEDERATION;141769;EN;previously Krasnoyarsk-26;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141768;EU.8468.26;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141770;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141781;EU.8471.2;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Станислав Сергеевич ЧЕМЕЗОВ;;;;;141784;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141781;EU.8471.2;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Stanislav Sergeyevich CHEMEZOV;EN;M;;Stanislav Sergeyevich Chemezov is the son of Sergei Chemezov, a member of the Supreme Council of ‘United Russia’ and chairman of the Rostec conglomerate, the leading Russian state‐controlled defence and industrial manufacturing corporation.;141785;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141781;EU.8471.2;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Stanislav Sergejevitj TJEMEZOV;SV;;;;142348;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141781;EU.8471.2;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973;;;NO;GREGORIAN;;;;;RU;RUSSIAN FEDERATION;141782;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141781;EU.8471.2;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141783;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141839;EU.8481.68;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Corrigendum 2022/1270 (OJ L193) [corr. 04/08/2022-1]);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;МАКСИМЦЕВ;Александр;Анатольевич;Александр Анатольевич МАКСИМЦЕВ;RU;M;;;141842;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141839;EU.8481.68;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Corrigendum 2022/1270 (OJ L193) [corr. 04/08/2022-1]);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;MAKSIMTSEV;Alexander;Anatolievich;Alexander Anatolievich MAKSIMTSEV;EN;M;;Alexander Anatolievich Maksimysev is a Russian military leader and a Deputy Commander-in-Chief of the Aerospace Forces for military-political work.;141843;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141839;EU.8481.68;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Corrigendum 2022/1270 (OJ L193) [corr. 04/08/2022-1]);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;MAKSIMTSEV;Aleksandr;Anatoljevitj;Aleksandr Anatoljevitj MAKSIMTSEV;SV;M;;;142351;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141839;EU.8481.68;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Corrigendum 2022/1270 (OJ L193) [corr. 04/08/2022-1]);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-08-20;20;8;1963;;;NO;GREGORIAN;;Kirghiz SSR;;Tokmak;KG;KYRGYZSTAN;141840;EN;former USSR;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141839;EU.8481.68;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Corrigendum 2022/1270 (OJ L193) [corr. 04/08/2022-1]);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141841;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141844;EU.8482.67;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Мария Алексеевна ЛЬВОВА-БЕЛОВА;;;;;141847;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141844;EU.8482.67;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Maria Alexeyevna LVOVA-BELOVA;EN;F;;Maria Alexeyevna Lvova-Belova is a Presidential Commissioner for children's rights and initiated the simplification of the procedure for granting citizenship to orphaned children in Ukraine.;141848;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141844;EU.8482.67;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Marija Aleksejevna LVOVA-BELOVA;SV;;;;142383;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141844;EU.8482.67;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-10-25;25;10;1984;;;NO;GREGORIAN;;;;Penza;RU;RUSSIAN FEDERATION;141845;EN;former USSR;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141844;EU.8482.67;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141846;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141849;EU.8483.66;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Юрий Николаевич ГРЕХОВ;;;;;141852;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141849;EU.8483.66;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Yuri Nikolaevich GREKHOV;EN;M;;Yuri Nikolaevich Grekhov is a Russian military commander, Colonel-General, a Deputy Commander-in-Chief of the Russian Aerospace Forces.;141853;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141849;EU.8483.66;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Jurij Nikolajevitj GRECHOV;SV;;;;142352;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141849;EU.8483.66;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-10-15;15;10;1962;;;NO;GREGORIAN;;;;Gorky;RU;RUSSIAN FEDERATION;141850;EN;former USSR;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141849;EU.8483.66;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141851;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141854;EU.8484.65;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Забит Сабирович ХЕИРБЕКОВ;;M;;;141857;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141854;EU.8484.65;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Zabit Sabirovich KHEIRBEKOV;EN;M;;Zabit Kheirbekov is a Lieutenant General of the Russian Aerospace Forces, Deputy Commander-in-Chief of the Russian Aerospace Forces for Logistics.;141858;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141854;EU.8484.65;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Zabit Sabirovitj CHEIRBEKOV;SV;;;;142400;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141854;EU.8484.65;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-06-05;5;6;1968;;;NO;GREGORIAN;;Azerbaijan SSR;;Kusar;RU;RUSSIAN FEDERATION;141855;EN;former USSR;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141854;EU.8484.65;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141856;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141868;EU.8485.64;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;صالح عبدالله;AR;M;;;141870;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141868;EU.8485.64;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;AL-ABDULLAH;Saleh;;Saleh AL-ABDULLAH;;M;Brigadier General;Commander of the 16th Brigade and previously the deputy of Brigadier General Suhail al-Hassan in the 25th Division of the Syrian Army.;141871;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141868;EU.8485.64;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;;;NO;GREGORIAN;;;;Safita, Tartous;SY;SYRIAN ARAB REPUBLIC;141869;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141872;EU.8486.63;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;احمد خليل خليل;AR;M;;;141873;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141872;EU.8486.63;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;KHALIL;Ahmed;;Ahmed KHALIL;;M;;;141874;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141872;EU.8486.63;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;KHALIL KHALIL;Ahmed;;Ahmed KHALIL KHALIL;;M;;Co-owner of Sanad Protection and Security Services, a Syrian private security company established in 2017 and supervised by the Wagner Group in Syria;141875;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141876;EU.8487.62;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;ناصر ديب;AR;M;;;141877;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141876;EU.8487.62;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Nasser Deeb;;M;;;141878;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141876;EU.8487.62;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Nasser Dib;;M;;;141879;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141876;EU.8487.62;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Nasser Dhib;;M;;;141880;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141876;EU.8487.62;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;DEEB;Nasser Deeb;;Nasser Deeb DEEB;;M;;Co-owner of Sanad Protection and Security Services, a Syrian private security company established in 2017 and supervised by the Wagner Group. Co-owner of company Ella Services.;141881;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141882;EU.8488.61;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;محمد عصام شموط;AR;M;;;141884;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141882;EU.8488.61;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Muhammad Essam Shammout;;M;;;141885;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141882;EU.8488.61;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Muhammad Issam Shammout;;M;;;141886;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141882;EU.8488.61;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Mohamed Essam Shammout;;M;;;141887;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141882;EU.8488.61;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Mohammed Issam Shammout;;M;;;141888;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141882;EU.8488.61;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;SHAMMOUT;Issam;;Issam SHAMMOUT;;M;;Owner and chairman of the board of directors of the airline “Cham Wings”. Head of the Shammout Group active in the automotive, steel, aviation, freight forwarding, constructions, and real estate sectors.;141889;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141882;EU.8488.61;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;141883;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141898;EU.8491.37;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Андрей Анатольевич КОЗИЦЫН;;;;;141901;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141898;EU.8491.37;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Andrey Anatolyevich KOZITSYN;EN;M;;Andrey Anatolyevich Kozitsyn is a leading Russian businessperson. He is a co-founder (with Makhmudov) and CEO of UMMC (UGMK), one of the top Russian producers of major commodities (including copper, zinc, coal, gold, and silver).;141902;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141898;EU.8491.37;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Andrej Anatoljevitj KOZITSYN;SV;;;;142401;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141898;EU.8491.37;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960-06-09;9;6;1960;;;NO;GREGORIAN;;;;;00;UNKNOWN;141899;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141898;EU.8491.37;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141900;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141903;EU.8492.36;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Сергей Семёнович СОБЯНИН;;;;;141906;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141903;EU.8492.36;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Sergey Semyonovich SOBYANIN;EN;M;;Sergei Semyonovich Sobyanine is the mayor of Moscow and has close ties with Vladimir Putin. He was Head of the presidential administration from 2005-2008 and served as Deputy Prime Minister of Russia from 2008-2010 in Vladimir Putin’s Second Cabinet. He is a member of the Security Council.;141907;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141903;EU.8492.36;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Sergej Semjonovitj SOBJANIN;SV;;;;142354;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141903;EU.8492.36;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-06-21;21;6;1958;;;NO;GREGORIAN;;;;Nyaksimvol;RU;RUSSIAN FEDERATION;141904;EN;former USSR;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141903;EU.8492.36;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141905;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141920;EU.8514.0;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Михаил Владимирович СТРУК;;;;;141923;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141920;EU.8514.0;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Mikhail Vladimirovich STRUK;EN;M;;Mr. Struk is a member in the Legislative Assembly of the Volgograd Oblast (region) since 2017. Mr. Struk is a member of the Kremlin-aligned ruling party United Russia.;141924;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141920;EU.8514.0;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Michail Vladimirovitj STRUK;SV;;;;142357;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141920;EU.8514.0;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-10-26;26;10;1977;;;NO;GREGORIAN;;;;Novy Rogachik, Volgograd Oblast;RU;RUSSIAN FEDERATION;141921;EN;former USSR;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141920;EU.8514.0;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141922;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141925;EU.8515.96;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Николай Тимофеевич ВЕЛИКДАНЬ;;;;;141928;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141925;EU.8515.96;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Nikolay Timofeevich VELIKDAN;EN;M;;Mr. Velikdan is the Chairman of the Stavropol Regional Duma since 30 September 2021. He is a member of the Stavropol Regional Duma since 19 September 2021 and first Deputy Chairman of the Government of the Stavropol Territory. He is a member of the Kremlin-aligned ruling party United Russia and member of the Presidium of the Regional Political Council of the Party.;141929;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141925;EU.8515.96;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Nikolaj Timofejevitj VELIKDA;SV;;;;142359;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141925;EU.8515.96;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-03-06;6;3;1956;;;NO;GREGORIAN;;Ipatovsky District, Stavropol Territory,;;Sovetskoye Runo;RU;RUSSIAN FEDERATION;141926;EN;former USSR;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141925;EU.8515.96;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141927;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141961;EU.8518.93;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Роман Александрович ГOBOP;;;;;141964;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141961;EU.8518.93;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Roman Alexandrovich GOVOR;EN;M;;Mr. Govor is a member of the Legislative Assembly of the Kemerovo Region – Kuzbass. He is a member of the Kremlin-aligned ruling party United Russia.;141965;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141961;EU.8518.93;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Roman Alexandrovitj GOVOR;SV;;;;142422;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141961;EU.8518.93;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-11-22;22;11;1982;;;NO;GREGORIAN;;;;Novokuznetsk, Kemerovskaya Oblast;RU;RUSSIAN FEDERATION;141962;EN;former USSR;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141961;EU.8518.93;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141963;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141974;EU.8520.70;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Виктор Владимирович БАБЕНКО;;;;;141977;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141974;EU.8520.70;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Viktor Vladimirovich BABENKO;EN;M;;Mr. Babenko is Chairman of the Sverdlovsk Regional Council of Supporters of the United Russia Party. Member of the Legislative Assembly of the Sverdlovsk Region. Deputy Secretary of the Sverdlovsk Regional Branch of United Russia. Mr. Babenko is a key regional politician from the Kremlin-aligned ruling party United Russia in Sverdlovsk oblast.;141978;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141974;EU.8520.70;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Viktor Vladimirovitj BABENKO;SV;;;;142424;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141974;EU.8520.70;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-10-14;14;10;1968;;;NO;GREGORIAN;;;;;00;UNKNOWN;141975;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141974;EU.8520.70;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141976;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141980;EU.8521.69;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Юрий Александрович БУРЛАЧКО;;;;;141983;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141980;EU.8521.69;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Yury Alexandrovich BURLACHKO;EN;M;;Mr. Burlachko has served as the chairman of the Legislative Assembly of the Krasnodar Krai (region) since 2017 and is the highest ranking MP in Krasnodar Krai’s Legislative Assembly. Mr. Burlachko is a member of the Kremlin-aligned ruling party United Russia.;141984;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141980;EU.8521.69;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Jurij Aleksandrovitj BURLATJKO;SV;;;;142425;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141980;EU.8521.69;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-06-08;8;6;1961;;;NO;GREGORIAN;;;;Omsk;RU;RUSSIAN FEDERATION;141981;EN;former USSR;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141980;EU.8521.69;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141982;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141985;EU.8522.68;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Юрий Зимелевич КАМАЛТЫНОВ;;;;;141988;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141985;EU.8522.68;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Yury Zimelevich KAMALTYNOV;EN;M;;Mr. Kamaltynov is Deputy Chairman of the State Council of the Republic of Tatarstan. Previously he served as a Deputy Prime Minister of the Republic of Tatarstan and as plenipotentiary representative of the President of the Republic of Tatarstan in the State Council of the Republic of Tatarstan. Mr. Kamaltynov is a member of the Kremlin-aligned ruling party United Russia.;141989;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141985;EU.8522.68;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Jurij Zimelevitj KAMALTYNOV;SV;;;;142426;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141985;EU.8522.68;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-03-11;11;3;1957;;;NO;GREGORIAN;;Republic of Tatarstan;;Kazan;RU;RUSSIAN FEDERATION;141986;EN;former USSR;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141985;EU.8522.68;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141987;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141991;EU.8523.67;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Сергей Витальевич БЕЗРУКОВ;;;;;141994;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141991;EU.8523.67;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Sergey Vitalyevich BEZRUKOV;EN;M;;Sergey Bezrukov is Russian actor and politician.;141995;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141991;EU.8523.67;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Sergej Vitaljevitj BEZRUKOV;SV;;;;142427;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141991;EU.8523.67;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-10-18;18;10;1973;;;NO;GREGORIAN;;;;Moscow;00;UNKNOWN;141992;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141991;EU.8523.67;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141993;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;141996;EU.8524.66;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Владимир Львович МАШКОВ;;;;;141999;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141996;EU.8524.66;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Vladimir Lvovich MASHKOV;EN;M;;Vladimir Mashkov is Russian actor, director and screenwriter, who actively supported Russia’s war of aggression against Ukraine.;142000;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141996;EU.8524.66;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Vladimir Lvovitj MASJKOV;SV;;;;142428;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141996;EU.8524.66;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-11-27;27;11;1963;;;NO;GREGORIAN;;;;Tula;00;UNKNOWN;141997;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;141996;EU.8524.66;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;141998;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;142064;EU.8537.32;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Сбербанк;RU;;;;142067;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142064;EU.8537.32;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Sberbank;;;;Sberbank is a major financial institution in Russia.;142068;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142064;EU.8537.32;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;Moscow;19 Vavilova St., 117997;;;;;NO;;RU;RUSSIAN FEDERATION;142065;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142064;EU.8537.32;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1027700132195 (regnumber-Registration Number) (issued by 19 Vavilova St., 117997 Moscow on 1991-03-22)(Type of entity: Public Joint Stock Company);NO;NO;NO;NO;NO;19 Vavilova St., 117997 Moscow;1991-03-22;;;;;regnumber;Registration Number;;RU;;142066;EN;Type of entity: Public Joint Stock Company;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;142071;EU.8538.31;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Группа компаний ФОРСС;RU;;;;142073;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142071;EU.8538.31;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;FORSS Group of Companies;;;;FORSS is Russian company which provides engineering services to the shipbuilding industry.;142074;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142071;EU.8538.31;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;skupina spoločností FORSS;SK;;;;142447;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142071;EU.8538.31;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Grupul de Societăți FORSS;RO;;;;142453;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142071;EU.8538.31;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Grupo de Empresas FORSS;PT;;;;142460;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142071;EU.8538.31;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;FORSS-Konzern;DE;;;;142538;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142071;EU.8538.31;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;grupo de empresas FORSS;ES;;;;142544;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142071;EU.8538.31;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Консорциум ФОРСС;BG;;;;142552;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142071;EU.8538.31;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;FORSS-koncernen;SV;;;;142554;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142071;EU.8538.31;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;St. Petersburg;Magnitogorskaya street 51, lit. E,;;195027;;;NO;WEB[http://www.forss.ru/eng]\nPHONE[(+7 812) 605-00-78]\nEMAIL[info@forss-marine.ru];RU;RUSSIAN FEDERATION;142072;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142653;EU.8572.10;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Майя Николаевна БОЛОТОВА;RU;;;;142656;EN;ТОКАРЕВА;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142653;EU.8572.10;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Maja Nikolaevna BOLOTOVA;;;;;142657;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142653;EU.8572.10;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Maija Nikolaevna BOLOTOVA;;;;;142658;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142653;EU.8572.10;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Mayya Nikolaevna BOLOTOVA;;;;;142659;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142653;EU.8572.10;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Maya Nikolaevna BOLOTOVA;;F;;Maya Bolotova (born Tokareva) is the daughter of Nikolay Tokarev, the CEO of Transneft, a major Russian oil and gas company. Maya Bolotova \nand her ex-husband Andrei Bolotov own luxury real estate in Moscow, Latvia and Croatia worth more than $50 million, which can be linked to \nNikolay Tokarev. She also has links with the company Ronin, which manages the pension fund for Transneft. When she applied for Cypriot \ncitizenship, she listed the address of Ronin as her own. Additionally, Maya has received state contracts worth 8 billion Rubels through the \ncompany Irvin-2, which she owns with Stanislav Chemezov, the son of Rostec CEO, Sergei Chemezov. Maya Bolotova is therefore ...;142661;EN;born TOKAREVA;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142653;EU.8572.10;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Maiya Nikolaevna BOLOTOVA;CS;;;;142747;EN;roz. TOKAREVA;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142653;EU.8572.10;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-01-18;18;1;1975;;;NO;GREGORIAN;;;;Karaganda;KZ;KAZAKHSTAN;142654;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142653;EU.8572.10;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;142655;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Хирург;RU;;;;142665;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;The Surgeon;;;;;142666;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Александр Сергеевич ЗАЛДОСТAНОВ;RU;;;;142667;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Alexander Sergeyevich ZALDOSTANOV;;M;;Alexander Zaldostanov is the leader and founder of the nationalist motorcycle club Nightwolves MC. Due to his position as leader of the \nNightwolves MC, Alexander Zaldostanov, who has close links to Russian president Vladimir Putin, is a known public figure and a key supporter of the Russian government, actively supporting Russian state propaganda through publicly denying Ukraine’s right to statehood and calling for the ‘denazification’ as well as the ‘de-Ukrainisation’ of the country, promoting the idea that Ukraine should be an integral part of Russia. As \nleader of the Nightwolves MC, Zaldostanov is further responsible for actions and activities of the group that undermine or threaten the territorial \nintegrity, sovereignty and independence of Ukraine. Alexander Zaldostanov is the leader of the Nightwolves MC, which is responsible for \nmaterially supporting actions which undermine or threaten the territorial ...;142668;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;kirurgen;SV;;;;142750;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Aleksandr Sergejevitj ZALDOSTANOV;SV;;;;142751;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Kirurg;SL;;;;142752;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Chirurgul;RO;;;;142753;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;O Cirurgião;PT;;;;142754;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Il Kirurgu;MT;;;;142755;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;il Chirurgo;IT;;;;142756;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;kirurg;HU;;;;142757;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;An Máinlia;GA;;;;142758;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;le Chirurgien;FR;;;;142759;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Ο χειρουργός;EL;;;;142760;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Kirurg;ET;;;;142761;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Kirugen;DA;;;;142762;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Chirurg;CS;;;;142763;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Хирурга;BG;;;;142764;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Cirujano;ES;;;;142765;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-01-19;19;1;1963;;;NO;GREGORIAN;;;;Kropyvnytskyi, Crimea;UA;UKRAINE;142663;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142662;EU.8573.9;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;142664;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;142669;EU.8574.8;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Йозеф ХАМБАЛЕК;RU;;;;142672;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142669;EU.8574.8;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Josef HAMBÁLEK;;;;;142673;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142669;EU.8574.8;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Jozef HAMBÁLEK;;M;;Jozef Hambálek is the President of the Europe chapter of the nationalist \nmotorcycle club Nightwolves MC based in Slovakia. Hambálek, who can \nbe connected to the Russian president, Vladimir Putin, and other \nrepresentatives of the Russian government, is publicly known for building \nthe Europe headquarters of the Nightwolves MC on a former military base \nin Slovakia for which he used discarded military equipment, including \ntanks. His ongoing activities, which allegedly include training \nNightwolves members for active combat in Ukraine on his properties and \nactively promoting pro-Russian propaganda in Europe, can be deemed as \na security threat for Ukraine and the EU. Jozef Hambálek is therefore a \nnatural person supporting ....;142674;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142669;EU.8574.8;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972-03-14;14;3;1972;;;NO;GREGORIAN;;;;;00;UNKNOWN;142670;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142669;EU.8574.8;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SK;;142671;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;142675;EU.8575.7;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Алексей ВАЙЦ;RU;;;;142678;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142675;EU.8575.7;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Aleksey Yevgenevich VEITZ;;;;;142679;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142675;EU.8575.7;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Alexei VAYTS;;;;;142680;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142675;EU.8575.7;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Alexei WEITZ;;M;;Alexei Weitz is a member and spiritual leader of the nationalist \nmotorcycle club Nightwolves MC, with close personal links to the \nNightwolves MC leader Alexander Zaldostanov. He is responsible for \nlinking the Nightwolves MC with the Russian Orthodox Church and \nshaping its leaders’ worldview. He has previously acted as press secre ...;142681;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142675;EU.8575.7;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Aleksej VAJTS;SV;;;;142766;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142675;EU.8575.7;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-10-07;7;10;1965;;;NO;GREGORIAN;;;;;00;UNKNOWN;142676;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142675;EU.8575.7;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;142677;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;142682;EU.8576.6;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Андрей Рэмович БЕЛОУСОВ;RU;;;;142685;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142682;EU.8576.6;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Andrei Removich BELOUSOV;;;;;142686;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142682;EU.8576.6;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Andrey Removich BELOUSOV;;M;;Andrey Removich Belousov is the First Deputy Prime Minister of the Russian Federation and is considered to have been a member of Putin’s \nclosest inner circle for many years. He plays an influential role in the Government of the Russian Federation. Belousov is implementing the ...;142687;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142682;EU.8576.6;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Andrej Removitj BELOUSOV;SV;;;;142767;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142682;EU.8576.6;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-03-17;17;3;1959;;;NO;GREGORIAN;;;;;00;UNKNOWN;142683;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142682;EU.8576.6;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;142684;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;142688;EU.8577.5;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Юрий Яковлевич ЧАЙКА;RU;;;;142691;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142688;EU.8577.5;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Yuri Yakovlevich CHAIKA;;;;;142692;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142688;EU.8577.5;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Yury Yakovlevich CHAYKA;;;;;142693;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142688;EU.8577.5;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Yury Yakovlevich CHAIKA;;M;;"Yury Yakovlevich Chaika is a non-permanent member of the Security Council of the Russian Federation and the Plenipotentiary Representative \nof the President of the Russian Federation in the North Caucasus Federal District. He is directly involved in guiding and implementing Russia`s \naggressive foreign policy.In April 2022 Yuri Chaika presented state awards to servicemen who distinguished themselves during the so-called ""special operation to denazify Ukraine"". In the meeting with refugees from the so-called Donetsk People's Republic in Pyatigorsk on 17 March 2022, he justified Russia’s war on Ukraine and stated that Ukrainian authorities have committed genocide in Ukraine ...";142694;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142688;EU.8577.5;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Jurij Jakovlevitj TJAJKA;SV;;;;142768;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142688;EU.8577.5;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-05-21;21;5;1951;;;NO;GREGORIAN;;;;Nikolaevsk-on-Amur, Khabarovsk Krai;RU;RUSSIAN FEDERATION;142689;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142688;EU.8577.5;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;142690;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;142695;EU.8578.4;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;AVLITA Stevedoring Company;;;;AVLITA Stevedoring Company provides services related to loading grain onto ships in the port of Sevastopol in Crimea, which was \nillegally annexed by Russia. It is documented in numerous reports that it has been involved in loading onto ships grain which was stolen \nfrom the farmers and the Ukrainian state on ...;142697;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142695;EU.8578.4;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;dokárska spoločnosť AVLITA;SK;;;;142769;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142695;EU.8578.4;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Товаро-разтоварителна компания Авлита;BG;;;;142770;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142695;EU.8578.4;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;Sevastopol, Crimea;Prymorska Street 2h;;;;;NO;;UA;UKRAINE;142696;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142700;EU.8592.45;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Place of registtration: Russian Federation\nDate of registration: 1989);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Моторклуб, Ночные Волки;RU;;;;142702;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142700;EU.8592.45;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Place of registtration: Russian Federation\nDate of registration: 1989);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Nightwolves MC;;;;Nightwolves MC is a nationalist motorcycle club founded in Moscow in 1989 with approximately 45 chapters worldwide, including chapters in many Members States of the European Union. The Nightwolves MC has been actively involved in the Russian military aggression against Ukraine by publicly supporting the annexation of the Crimea in 2014 and the war against Ukraine in 2022, by actively spreading anti-Ukrainian \nand pro-Russian propaganda and by fighting ....;142703;EN;Type of entity: Motorcycle Group;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142700;EU.8592.45;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Place of registtration: Russian Federation\nDate of registration: 1989);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Motocyklový klub Noční vlci;SK;;;;142771;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142700;EU.8592.45;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Place of registtration: Russian Federation\nDate of registration: 1989);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Clube de motociclismo Lobos da Noite;PT;;;;142772;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142700;EU.8592.45;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Place of registtration: Russian Federation\nDate of registration: 1989);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Éjszakai Farkasok motoros klub;HU;;;;142773;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142700;EU.8592.45;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Place of registtration: Russian Federation\nDate of registration: 1989);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Natulvene MC;DA;;;;142774;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142700;EU.8592.45;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Place of registtration: Russian Federation\nDate of registration: 1989);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Мотоклуб Нощни вълци;BG;;;;142775;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142700;EU.8592.45;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Place of registtration: Russian Federation\nDate of registration: 1989);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;Moscow;Nizhniye Mnevniki, 110, Bike Centre;;;;;NO;;RU;RUSSIAN FEDERATION;142701;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142709;EU.8594.43;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: February, 2010);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Фонд общественной дипломатии Александра Горчакова;RU;;;;142712;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142709;EU.8594.43;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: February, 2010);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;The Alexander Gorchakov Public Diplomacy Fund;;;;The Alexander Gorchakov Public Diplomacy Fund was established in 2010 by the Russian President Dmitry Medvedev. The founder of the Fund was the Russian Ministry of Foreign Affairs and the Minister of Foreign Affairs is the head of the board of trustees. The Ministry funds the work of the Gorchakov Fund, which in turn grants funding to think tanks and GONGOs. The Gorchakov Fund is designed to support Russian compatriots in the post-Soviet space ...;142713;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142709;EU.8594.43;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: February, 2010);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Fond verejnej diplomacie Alexandra Gorčakova;SK;;;;142776;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142709;EU.8594.43;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: February, 2010);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Fondul pentru Diplomație Publică Alexander Gorchakov;RO;;;;142777;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142709;EU.8594.43;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: February, 2010);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Fundo de Diplomacia Pública Alexander Gorchakov;PT;;;;142778;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142709;EU.8594.43;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: February, 2010);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Fundacja Gorczakowa;PL;;;;142779;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142709;EU.8594.43;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: February, 2010);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Fonds voor publieksdiplomatie Alexander Gorchakov;NL;;;;142780;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142709;EU.8594.43;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: February, 2010);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Alekszander Gorcsakov Társadalmi Diplomáciai Alap;HU;;;;142781;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142709;EU.8594.43;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: February, 2010);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Aleksandro Gorčiakovo viešosios diplomatijos fondas;LV;;;;142782;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142709;EU.8594.43;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: February, 2010);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Fonds Alexander Gorchakov pour la diplomatie publique;FR;;;;142783;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142709;EU.8594.43;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: February, 2010);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Aleksandr Gortšakovi nimeline fond avaliku diplomaatia toetuseks;ET;;;;142784;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142709;EU.8594.43;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: February, 2010);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Alexander Gortschakow- Stiftung für öffentliche Diplomatie;DE;;;;142785;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142709;EU.8594.43;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: February, 2010);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;El Fondo de Diplomacia Pública Alexander Gorchakov;ES;;;;142786;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142709;EU.8594.43;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: February, 2010);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Фонд за публична дипломация Александър Горчаков;BG;;;;142787;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142709;EU.8594.43;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: February, 2010);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;Moscow;10/1 Yakovoapostolsky pereulok;;;;;NO;;RU;RUSSIAN FEDERATION;142710;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142709;EU.8594.43;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: February, 2010);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1107799026752 (regnumber-Registration Number) (Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: \nFebruary, 2010);NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;RU;;142711;EN;Type of entity: Non Governmental Organisation\nPlace of registration: Moscow\nDate of registration: \nFebruary, 2010;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;; +28/10/2022;142720;EU.8596.41;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nPlace of registration: Russian \nFederation, 119019, Moscow, \nVozdvizhenka Str. 18/9\nDate of registration: 6.9.2008);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Россотрудничество;RU;;;;142722;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142720;EU.8596.41;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nPlace of registration: Russian \nFederation, 119019, Moscow, \nVozdvizhenka Str. 18/9\nDate of registration: 6.9.2008);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Федеральное агентство по делам Содружества Независимых Государств, соотечественников, проживающих за рубежом, и по международному гуманитарному сотрудничеству;RU;;;;142723;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142720;EU.8596.41;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nPlace of registration: Russian \nFederation, 119019, Moscow, \nVozdvizhenka Str. 18/9\nDate of registration: 6.9.2008);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Rossotrudnichestvo;;;;;142724;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142720;EU.8596.41;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nPlace of registration: Russian \nFederation, 119019, Moscow, \nVozdvizhenka Str. 18/9\nDate of registration: 6.9.2008);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;The Federal Agency for the Commonwealth of Independent States Affairs, Compatriots Living Abroad and International Humanitarian Cooperation;;;;The Federal Agency for the Commonwealth of Independent States, Compatriots Living Abroad and International Humanitarian \nCooperation (Rossotrudnichestvo) is a federal executive body responsible for rendering state services and managing state property to support and develop international relations between the Russian Federation and the member-states of the Commonwealth of Independent States and other foreign countries.It is the main state agency projecting the Kremlin’s soft power and hybrid influence, including the promotion of the so-called “Russkiy Mir” concept.;142725;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142720;EU.8596.41;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nPlace of registration: Russian \nFederation, 119019, Moscow, \nVozdvizhenka Str. 18/9\nDate of registration: 6.9.2008);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Federálna agentúra pre Spoločenstvo nezávislých štátov, krajanov žijúcich v zahraničí a medzinárodnú humanitárnu spoluprácu;SK;;;;142788;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142720;EU.8596.41;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nPlace of registration: Russian \nFederation, 119019, Moscow, \nVozdvizhenka Str. 18/9\nDate of registration: 6.9.2008);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Agenția Federală pentru Afacerile privind Comunitatea Statelor Independente, Compatrioții din Străinătate și Cooperarea Umanitară Internațională;RO;;;;142789;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142720;EU.8596.41;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nPlace of registration: Russian \nFederation, 119019, Moscow, \nVozdvizhenka Str. 18/9\nDate of registration: 6.9.2008);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Het Federaal Agentschap voor het Gemenebest van de Onafhankelijke Staten, Landgenoten in het Buitenland en Internationale Humanitaire Samenwerking;NL;;;;142790;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142720;EU.8596.41;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nPlace of registration: Russian \nFederation, 119019, Moscow, \nVozdvizhenka Str. 18/9\nDate of registration: 6.9.2008);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;A Független Államok Közössége, a Külföldön Élő Honfitársak és a Nemzetközi Humanitárius Együttműködés Szövetségi Ügynöksége;HU;;;;142791;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142720;EU.8596.41;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nPlace of registration: Russian \nFederation, 119019, Moscow, \nVozdvizhenka Str. 18/9\nDate of registration: 6.9.2008);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Federalinė Nepriklausomų valstybių sandraugos, užsienyje gyvenančių tėvynainių reikalų ir tarptautinio humanitarinio bendradarbiavimo agentūra;LT;;;;142792;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142720;EU.8596.41;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nPlace of registration: Russian \nFederation, 119019, Moscow, \nVozdvizhenka Str. 18/9\nDate of registration: 6.9.2008);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Agence fédérale pour les affaires de la Communauté des États indépendants, les compatriotes vivant à l'étranger et la coopération humanitaire internationale;FR;;;;142793;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142720;EU.8596.41;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nPlace of registration: Russian \nFederation, 119019, Moscow, \nVozdvizhenka Str. 18/9\nDate of registration: 6.9.2008);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Föderaalne SRÜ Riikide Küsimuste, Välismaal Elavate Kaasmaalaste ja Rahvusvahelise Humanitaarkoostöö Amet;ET;;;;142794;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142720;EU.8596.41;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nPlace of registration: Russian \nFederation, 119019, Moscow, \nVozdvizhenka Str. 18/9\nDate of registration: 6.9.2008);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Föderale Agentur für Angelegenheiten der Gemeinschaft Unabhängiger Staaten, der im Ausland lebenden Landsleute und für internationale humanitäre Zusammenarbeit;DE;;;;142795;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142720;EU.8596.41;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nPlace of registration: Russian \nFederation, 119019, Moscow, \nVozdvizhenka Str. 18/9\nDate of registration: 6.9.2008);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;La Agencia Federal para los Asuntos de Colaboración con la Comunidad de Estados Independientes, Compatriotas en el Extranjero y Cooperación Humanitaria Internacional;ES;;;;142796;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142720;EU.8596.41;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nPlace of registration: Russian \nFederation, 119019, Moscow, \nVozdvizhenka Str. 18/9\nDate of registration: 6.9.2008);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Федерална агенция по въпросите на Общността на независимите държави, живеещите в чужбина сънародници и международното хуманитарно сътрудничество;BG;;;;142797;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142720;EU.8596.41;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nPlace of registration: Russian \nFederation, 119019, Moscow, \nVozdvizhenka Str. 18/9\nDate of registration: 6.9.2008);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;119019, Moscow;Vozdvizhenka Str. 18/9;;;;;NO;WEB[https://rs.gov.ru]\nPHONE[ +7 (495) 690-12-45]\nEMAIL[ rossotr@rs.gov.ru];RU;RUSSIAN FEDERATION;142721;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142730;EU.8598.39;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nDate of registration: 31.8.2007);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Фонд Русский мир;RU;;;;142732;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142730;EU.8598.39;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nDate of registration: 31.8.2007);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Russkiy Mir Foundation;;;;The “Russkiy Mir” Foundation was created, and has been financed, by the Government of the Russian Federation. It has been used by \nthe Russian Federation to advance its interests in the post-Soviet countries.Its official mandate is to promote the Russian language and culture worldwide but the Foundation has been used as an important influence tool by the Kremlin that is strongly promoting a Russia centric-agenda in the ...;142733;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142730;EU.8598.39;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nDate of registration: 31.8.2007);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Nadácia Ruský svet;SK;;;;142798;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142730;EU.8598.39;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nDate of registration: 31.8.2007);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Fundația Russkiy Mir;RO;;;;142799;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142730;EU.8598.39;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nDate of registration: 31.8.2007);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Fundação Russkiy Mir;PT;;;;142800;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142730;EU.8598.39;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nDate of registration: 31.8.2007);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Fundacja Ruski Mir;PL;;;;142801;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142730;EU.8598.39;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nDate of registration: 31.8.2007);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Stichting Russkiy Mir;NL;;;;142802;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142730;EU.8598.39;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nDate of registration: 31.8.2007);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Orosz Világ Alapítvány;HU;;;;142803;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142730;EU.8598.39;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nDate of registration: 31.8.2007);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Fondation Russkiy Mir;FR;;;;142804;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142730;EU.8598.39;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nDate of registration: 31.8.2007);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Stiftung Russkiy Mir;DE;;;;142805;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142730;EU.8598.39;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nDate of registration: 31.8.2007);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Fundación Russkiy Mir;ES;;;;142807;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142730;EU.8598.39;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nDate of registration: 31.8.2007);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Фондация Русский Мир;BG;;;;142808;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142730;EU.8598.39;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Type of entity: Russian Federal \nGovernment Agency\nDate of registration: 31.8.2007);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;Moscow;119285 Mosfilmovskaya Str. 40A;;;;;NO;WEB[https://russkiymir.ru]\nPHONE[+7 (495) 981-5680]\nEMAIL[ info@russkiymir.ru];RU;RUSSIAN FEDERATION;142731;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142734;EU.8599.38;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;akciová spoločnosť Združenie pre výskum a výrobu Kvant;SK;;;;142698;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142734;EU.8599.38;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Asociația de Cercetare și Producție Kvant S.A.;RO;;;;142699;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142734;EU.8599.38;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Акционерное общество Научно-производственное объединение Квант;RU;;;;142736;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142734;EU.8599.38;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;JSC Research and Production Association Kvant;;;;“Kvant” JSC is a Russian company operating in the military sector that produces electronic warfare systems for the Russian Armed Forces.\nIt co-designed and co-produced the Krasucha-4 electronic warfare system and manufactured the equipment for the Rtut-BM electronic warfare system. Krasucha-4 and Rtut-BM electronic warfar systems were used by the Armed Forces of the Russian Federation during Russia’s war of aggression against Ukraine ....;142737;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142734;EU.8599.38;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Associação Kvant de Investigação e Produção, sociedade por ações;PT;;;;142820;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142734;EU.8599.38;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Vennootschap op aandelen onderzoeks- en productievereniging Kvant;NL;;;;142821;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142734;EU.8599.38;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;JSC Forschungs- und Produktionsvereinigung Kvant;DE;;;;142822;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142734;EU.8599.38;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Акционерно дружество Научно-производствена асоциация Квант;BG;;;;142823;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142734;EU.8599.38;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;173000 Veliky Novgorod;Bolshaya Sankt-Peterburgskaya Str. 73;;;;;NO;PHONE[(8162) 681303]\nEMAIL[ok@kvant-vn.r];RU;RUSSIAN FEDERATION;142735;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142738;EU.8600.44;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Юнармия;RU;;;;142740;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142738;EU.8600.44;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Yunarmiya;;;;;142741;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142738;EU.8600.44;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Всероссийское военно патриотическое общественное движение Юнармия;RU;;;;142742;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142738;EU.8600.44;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;All-Russia Young Army Military Patriotic Social Movement;;;;All-Russia “Young Army” Military Patriotic Social Movement (Yunarmiya) is a Russian paramilitary organization. The Yunarmiya and its members supported Russia’s war of aggression against Ukraine and spread the Russian propaganda concerning the war. Yunarmiya used the “Z” military symbol, which has been employed by Russian propaganda to promote Russia’s invasion...;142743;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142738;EU.8600.44;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Asociația Panrusă privind Mișcarea Patriotică Militaro-Socială de la nivel Național din Întreaga Rusie Tânăra Armată;RO;;;;142809;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142738;EU.8600.44;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Associação Pan Russa do Movimento Social Militar-Patriótico Jovem Exército;PT;;;;142810;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142738;EU.8600.44;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Pan-Russische Jong Leger militaire patriottische en sociale beweging;NL;;;;142811;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142738;EU.8600.44;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Összorosz Ifjú hadsereg katonai hazafias társadalmi mozgalom;HU;;;;142812;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142738;EU.8600.44;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Visos Rusijos karinis-patriotinis visuomeninis judėjimas Jaunoji armija;LT;;;;142813;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142738;EU.8600.44;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Mouvement social patriotique militaire panrusse de la Jeune armée;FR;;;;142814;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142738;EU.8600.44;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Junarmija;DE;;;;142816;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142738;EU.8600.44;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Allrussische militärisch- patriotische gesellschaftliche Bewegung Jugendarmee;DE;;;;142817;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142738;EU.8600.44;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Movimiento Social Patriótico Militar Panruso del Ejército Joven;ES;;;;142819;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142738;EU.8600.44;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Общоруско военно- патриотично обществено движение Юнармия;BG;;;;142841;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142738;EU.8600.44;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;Moscow;1st Krasnokursantskiy passage, 1/4, Building 1;;;;;NO;WEB[ https://yunarmy.ru/]\nPHONE[+7 (495) 106-75-75]\nEMAIL[ info@yunarmy.ru];RU;RUSSIAN FEDERATION;142739;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142826;EU.8579.3;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Position: Commander-in-Chief of \nthe Palestine Liberation Army);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;محمد;AR;;;;142828;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142826;EU.8579.3;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Position: Commander-in-Chief of \nthe Palestine Liberation Army);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;أكرم محمد السلطي;AR;;;;142829;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142826;EU.8579.3;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Position: Commander-in-Chief of \nthe Palestine Liberation Army);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;أكرم السلطي;AR;;;;142830;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142826;EU.8579.3;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Position: Commander-in-Chief of \nthe Palestine Liberation Army);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;محمد السلطي;AR;;;;142831;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142826;EU.8579.3;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Position: Commander-in-Chief of \nthe Palestine Liberation Army);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Muhammad SALTI;;;;;142832;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142826;EU.8579.3;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Position: Commander-in-Chief of \nthe Palestine Liberation Army);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Akram Muhammad AL-SALTI;;;;;142833;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142826;EU.8579.3;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Position: Commander-in-Chief of \nthe Palestine Liberation Army);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Muhamad AL-SALTI;;;;;142834;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142826;EU.8579.3;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Position: Commander-in-Chief of \nthe Palestine Liberation Army);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Muhammad AL-SALTI;;M;;Muhammad AL-SALTI is the Commander-in-Chief of the “Palestine Liberation Army”, engaged in the recruitment of Palestinians to fight in Ukraine alongside Russia. He is therefore responsible for actions and policies which undermine or threaten the territorial integrity, so ...;142835;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142826;EU.8579.3;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Position: Commander-in-Chief of \nthe Palestine Liberation Army);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;142827;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC +28/10/2022;142836;EU.8580.78;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;هاني شموط;AR;;;;142837;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142836;EU.8580.78;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;أبو شموط;AR;;;;142838;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142836;EU.8580.78;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;أبو هاني شموط;AR;;;;142839;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142836;EU.8580.78;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Hani SHAMMOUT;;;;;142860;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142836;EU.8580.78;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Abu SHAMMOUT;;;;;142861;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142836;EU.8580.78;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Abu Hani SHAMOUT;;;;;142862;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142836;EU.8580.78;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Abu Hani SHAMMOUT;;M;;Abu Hani SHAMMOUT is a former Syrian military officer and leader of the “al-Ahdat al-Omariya” faction, responsible, alongside Russian recruiters, for the enrolment of Syrian mercenaries from Yalda, Babila and Beit Sahem, south of Damascus, destined to fight for the Russian forces in Libya and in Ukraine. He has been directly charged by the Wagner Group with overseeing the recruitment of veterans. He is therefore responsible for actions and policies which undermine ...;142863;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142864;EU.8581.77;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;نابل عبدالله;AR;;;;142865;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142864;EU.8581.77;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;نابل العبدالله;AR;;;;142866;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142864;EU.8581.77;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Nabel ABDULLAH;;;;;142867;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142864;EU.8581.77;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Nabel ABDALLAH;;;;;142868;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142864;EU.8581.77;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Nabel AL-ABDALLAH;;;;;142869;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142864;EU.8581.77;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Nabel AL-ABDULLAH;;;;;142870;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142864;EU.8581.77;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Nabeul AL-ABDULLAH;;M;;Position: Commander of the National Defence Forces in the city of Suqaylabiyah\n\nNabeul AL-ABDULLAH is the commander of the National Defence Forces in the city of Suqaylabiyah. He has been overseeing the recruitment of Syrian mercenaries to fight alongside Russia in Ukraine since the beginning of the Russian war of aggression. He is therefore responsible for actions and policies which undermine or threaten the territorial ...;142871;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142900;EU.8582.76;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;فواز ميخائيل جرجس;AR;;;;142901;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142900;EU.8582.76;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Fawaz Mikhail GERGES;;M;;Fawaz Mikhail Gerges is the director of Al-Sayyad Company for Guarding and Protection Services Ltd, a Syrian private security company established in 2017 and supervised by the Wagner Group in Syria, active in the protection of Russian interests (phosphates, gas and securing oil sites). He is responsible for recruiting mercenaries for the benefit of Russian forces in Libya and Ukraine.;142902;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142906;EU.8583.75;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;ياسر حسين ابراهيم;AR;;;;142909;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142906;EU.8583.75;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Yassar Hussein IBRAHIM;;;;;142910;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142906;EU.8583.75;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Yasar Hussein IBRAHIM;;;;;142911;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142906;EU.8583.75;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Yassar IBRAHIM;;M;;;142912;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142906;EU.8583.75;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-04-09;9;4;1983;;;NO;GREGORIAN;;;;Damascus;SY;SYRIAN ARAB REPUBLIC;142907;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142906;EU.8583.75;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SY;;142908;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC +28/10/2022;142913;EU.8584.74;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Date of creation: 2017\nHeadquarters: Al Suqaylabiya \nregion of Hama);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;شركة الصياد لخدمات الحراسة والحماية;AR;;;;142914;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142913;EU.8584.74;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Date of creation: 2017\nHeadquarters: Al Suqaylabiya \nregion of Hama);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;ISIS Hunters;;;;;142915;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;142913;EU.8584.74;;2022-07-21;;(Date of UN designation: 2022-07-21)\n(Date of creation: 2017\nHeadquarters: Al Suqaylabiya \nregion of Hama);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Al-Sayyad Company for Guarding and Protection Services Ltd;;;;Al-Sayyad Company for Guarding and Protection Services Ltd is a Syrian private security company established in 2017 and supervised by the Wagner Group in Syria, active in the protection of Russian interests (phosphates, gas and securing oil sites). The company, which operates under the name “ISIS Hunters”, is active in the recruitment of Syrian mercenaries to Libya and Ukraine. The company is...;142916;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143193;EU.8632.46;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;سيمون الوكيل;AR;;;;143194;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143193;EU.8632.46;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Simon WAKEEL;;;;;143195;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143193;EU.8632.46;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Simon AL WAKEEL;;;;;143196;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143193;EU.8632.46;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Simon WAQIL;;;;;143197;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143193;EU.8632.46;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Simon Al WAQIL;;;;;143198;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143193;EU.8632.46;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Simon WAKIL;;;;;143199;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143193;EU.8632.46;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Simon AL WAKIL;;M;;Commander of the National Defence Forces in the city of Maharda;143240;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143193;EU.8632.46;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;سيمون;AR;;;;143319;EN;;amendment;council;2022-07-21;2022-07-21;2022/1274 (OJ L194);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0005.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143223;EU.8652.81;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;شركة سند للحرسات والخدما الأمنية;AR;;;;143225;EN;;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143223;EU.8652.81;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;Sanad Protection and Security Services;EN;;;Sanad Protection and Security Services is a Syrian private security company, established in 2017 and supervised by the Wagner Group in Syria, active in the protection of Russian interests (phosphates, gas and securing oil sites) in Syria.;143226;EN;Type of entity: Limited Liability Company\n\nDate of creation: 22 October 2017;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143223;EU.8652.81;;2022-07-21;;(Date of UN designation: 2022-07-21);E;enterprise;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;Damascus;;;;;;NO;(Headquarters: Damascus);SY;SYRIAN ARAB REPUBLIC;143224;EN;Headquarters: Damascus;amendment;council;2022-07-21;2022-07-21;2022/1275 (OJ L194);SYR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.194.01.0008.01.ENG&toc=OJ%3AL%3A2022%3A194%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143241;EU.8633.45;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Sjarip Sultanovitj DELIMCHANOV;SV;;;;143244;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143241;EU.8633.45;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Шaрип Султанович ДЕЛИМХАНОВ;;;;;143245;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143241;EU.8633.45;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Sharip Sultanovich DELIMKHANOV;;M;;Commander of the Chechen branch of the National Guard of the Russian Federation.;143246;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143241;EU.8633.45;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-04-23;23;4;1980;;;NO;GREGORIAN;;;;Dzhalka;RU;RUSSIAN FEDERATION;143242;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143241;EU.8633.45;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;143243;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;143247;EU.8634.44;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Jurij Viktorovitj JASJIN;SV;;;;143250;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143247;EU.8634.44;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Юрий Викторович ЯШИН;;;;;143251;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143247;EU.8634.44;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Yuriy Viktorovich YASHIN;;M;;Chief of the General Staff of the National Guard Troops of the Russian Federation – Deputy Director of the Federal Service of the National Guard Troops of the Russian Federation – Commander-in-Chief of the National Guard Troops of the Russian Federation.;143252;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143247;EU.8634.44;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-03-11;11;3;1967;;;NO;GREGORIAN;;;;Mednogorsk;RU;RUSSIAN FEDERATION;143248;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143247;EU.8634.44;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;143249;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;143253;EU.8635.43;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Aleksej Michajlovitj KUZMENKOV;SV;;;;143256;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143253;EU.8635.43;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Алексей Михайлович КУЗЬМЕНКОВ;;;;;143257;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143253;EU.8635.43;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Alexey Mikhailovich KUZMENKOV;;M;;Deputy Director of the Federal Service of the National Guard of the Russian Federation (Rosgvardia) – Commander-in-Chief of Rosgvardia.;143258;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143253;EU.8635.43;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-06-10;10;6;1971;;;NO;GREGORIAN;;;;Horlivka;UA;UKRAINE;143254;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143253;EU.8635.43;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;143255;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;143259;EU.8636.42;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Oleksandr Fedorovytj SAULENKO;SV;;;;143262;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143259;EU.8636.42;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Aleksandr Fedorovitj SAULENKO;SV;;;;143263;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143259;EU.8636.42;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Олександр Федорович САУЛЕНКО;UK;;;;143264;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143259;EU.8636.42;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Oleksandr Fedorovich SAULENKO;;;;;143265;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143259;EU.8636.42;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Александр Федорович САУЛЕНКО;RU;;;;143266;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143259;EU.8636.42;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Alexandr Fedorovich SAULENKO;;M;;So-called head of the provisional administration of Berdyansk and the Berdyansk region.;143267;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143259;EU.8636.42;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-05-09;9;5;1962;;;NO;GREGORIAN;;;;Novopetrivka;UA;UKRAINE;143260;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143259;EU.8636.42;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;143261;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;143268;EU.8637.41;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Oleg KRJUTJKOV;SV;;;;143269;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143268;EU.8637.41;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Олег КРЮЧКОВ;;;;;143270;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143268;EU.8637.41;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Oleg KRYUCHKOV;;M;;the spokesperson for the Russian occupation authority in Crimea and advisor to the Head of Crimea;143271;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143272;EU.8638.40;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Sergej Borisovitj KOROLEV;SV;;;;143275;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143272;EU.8638.40;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Сергей Борисович КОРОЛЕВ;;;;;143276;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143272;EU.8638.40;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Sergei Borissovich KOROLEV;;M;;First Deputy Director of the Russian FSB, since February 2021;143277;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143272;EU.8638.40;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-07-25;25;7;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;143273;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143272;EU.8638.40;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952-11-09;9;11;1952;;;NO;GREGORIAN;;;;;00;UNKNOWN;143274;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143278;EU.8639.39;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Павел EЗУБОВ;;;;;143281;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143278;EU.8639.39;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Pavel EZOUBOV;;M;;the cousin of Oleg Deripaska, who owns the Russian Machines industrial conglomerate which includes the Military Industrial Company, a major arms and military equipment provider to the Russian armed forces;143282;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143278;EU.8639.39;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1975;;;NO;GREGORIAN;;;;;00;UNKNOWN;143279;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143278;EU.8639.39;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;143280;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;143283;EU.8640.17;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Andrej BOBROVSKIJ;SV;;;;143286;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143283;EU.8640.17;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Андрей БОБРОВСКИЙ;;;;;143287;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143283;EU.8640.17;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Andrey BOBROVSKIY;;M;;a member of the nationalist motorcycle club Nightwolves MC and leader of the “Roads for Victory” branch of Nightwolves MC;143288;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143283;EU.8640.17;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982-01-05;5;1;1982;;;NO;GREGORIAN;;;;Minsk;BY;BELARUS;143284;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143283;EU.8640.17;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;143285;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;143289;EU.8641.16;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Aleksandr Nikolajevitj BELSKIJ;SV;;;;143292;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143289;EU.8641.16;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Александр Николаевич БЕЛЬСКИЙ;;;;;143293;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143289;EU.8641.16;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Alexander Nikolaevich BELSKIY;;M;;the Chairman of the Legislative Assembly of St. Petersburg since 29 September 2021 as a member of the Kremlin-aligned political party “United Russia”;143294;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143289;EU.8641.16;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-07-16;16;7;1975;;;NO;GREGORIAN;;;;Leningrad;RU;RUSSIAN FEDERATION;143290;EN;former USSR (now Russian Federation);amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143289;EU.8641.16;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;143291;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;143295;EU.8642.15;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Nikolaj Nikolajevitj ZABOLOTNEV;SV;;;;143298;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143295;EU.8642.15;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Николай Николаевич ЗАБОЛОТНЕВ;;;;;143299;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143295;EU.8642.15;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Nikolay Nikolaevich ZABOLOTNEV;;M;;Mr. Zabolotnev is the head of the Regional Executive Committee of the Khanty-Mansiysk Regional Branch of the Kremlin-aligned ruling party “United Russia”.\n\nHe is also the former head of the Youth Duma (youth parliament) in Yugra;143300;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143295;EU.8642.15;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1992-01-30;30;1;1992;;;NO;GREGORIAN;;;Chuy Region in northern Kyrgyz Republic;;00;UNKNOWN;143296;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143295;EU.8642.15;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;143297;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;143301;EU.8643.14;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Dmitrij Vladimirovitj CHOLIN;SV;;;;143304;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143301;EU.8643.14;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Дмитрий Владимирович ХОЛИН;;;;;143305;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143301;EU.8643.14;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Dmitryi Vladimirovich KHOLIN;;M;;Mr. Kholin is a member of the Samara Provincial Duma, where he serves as the Chairman of the Regulations Committee. From 2020 to 2021 he was the head of the Executive Committee of the Samara Regional Branch of the Kremlin-aligned ruling party “United Russia”. He is also a member of the Samara Regional Branch of the all-Russian public organization “Combat Brotherhood” (organization for veterans).;143306;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143301;EU.8643.14;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-09-25;25;9;1977;;;NO;GREGORIAN;;;;Kuybyshev;RU;RUSSIAN FEDERATION;143302;EN;former USSR (now Russian Federation);amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143301;EU.8643.14;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;143303;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;143307;EU.8644.13;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Sergej Jevgenjevitj TSIVILEV;SV;;;;143310;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143307;EU.8644.13;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Сергей Евгеньевич ЦИВИЛЕВ;;;;;143311;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143307;EU.8644.13;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Sergey Evgenievich TSIVILEV;;M;;governor of the Kemerovo region and a well-known public figure;143312;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143307;EU.8644.13;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961-09-21;21;9;1961;;;NO;GREGORIAN;;;;Zhdanov (Mariupol);UA;UKRAINE;143308;EN;former USSR (now Ukraine);amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143307;EU.8644.13;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;143309;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;143313;EU.8645.12;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Roman Sergejevitj TJUJKO;SV;;;;143316;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143313;EU.8645.12;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Роман Сергеевич ЧУЙКО;;;;;143317;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143313;EU.8645.12;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Roman Sergeevich CHUYKO;;M;;Mr. Chuyko is the head of the Regional Executive Committee of the All-Russian People's Front and member of the regional Legislative Assembly in Tuymen Oblast. Mr. Chuyko is a member of the Kremlin-aligned ruling party “United Russia”.;143318;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143313;EU.8645.12;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983-05-12;12;5;1983;;;NO;GREGORIAN;;;;Blagoveshchensk;RU;RUSSIAN FEDERATION;143314;EN;former USSR (now Russian Federation);amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143313;EU.8645.12;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;143315;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;143345;EU.8672.19;;2022-08-04;;(Date of UN designation: 2022-08-04);P;person;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;Oleksandr Viktorovytj JANUKOVYTJ;SV;M;;;143348;EN;;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143345;EU.8672.19;;2022-08-04;;(Date of UN designation: 2022-08-04);P;person;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;ЯНУКОВИЧ;Олександр;Вiкторович;Олександр Вiкторович ЯНУКОВИЧ;UK;M;;;143349;EN;;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143345;EU.8672.19;;2022-08-04;;(Date of UN designation: 2022-08-04);P;person;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;YANUKOVYCH;Oleksandr;Viktorovych;Oleksandr Viktorovych YANUKOVYCH;;M;;a businessman and the son of former President of Ukraine Viktor Yanukovych;143350;EN;;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143345;EU.8672.19;;2022-08-04;;(Date of UN designation: 2022-08-04);P;person;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;Oleksandr Viktorovič JANUKOVIČ;SL;M;;;143359;EN;;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143345;EU.8672.19;;2022-08-04;;(Date of UN designation: 2022-08-04);P;person;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;Oleksandr Viktorovici IANUKOVICI;RO;M;;;143361;EN;;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143345;EU.8672.19;;2022-08-04;;(Date of UN designation: 2022-08-04);P;person;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-07-10;10;7;1973;;;NO;GREGORIAN;;Donetsk Oblast;;Yenakiyeve;UA;UKRAINE;143346;EN;(former Ukrainian SSR, now Ukraine);amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143345;EU.8672.19;;2022-08-04;;(Date of UN designation: 2022-08-04);P;person;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;143347;EN;;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC +28/10/2022;143351;EU.8673.18;;2022-08-04;;(Date of UN designation: 2022-08-04);P;person;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;Viktor Fedorovytj JANUKOVYTJ;SV;M;;;143354;EN;;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143351;EU.8673.18;;2022-08-04;;(Date of UN designation: 2022-08-04);P;person;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;Янукович;Вiктор;Федорович;Вiктор Федорович Янукович;UK;M;;;143355;EN;;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143351;EU.8673.18;;2022-08-04;;(Date of UN designation: 2022-08-04);P;person;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;YANUKOVYCH;Viktor;Fedorovych;Viktor Fedorovych YANUKOVYCH;;M;;former president of Ukraine, oligarch;143356;EN;;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143351;EU.8673.18;;2022-08-04;;(Date of UN designation: 2022-08-04);P;person;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;Viktor Fedorovič JANUKOVIČ;SL;M;;;143360;EN;;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143351;EU.8673.18;;2022-08-04;;(Date of UN designation: 2022-08-04);P;person;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;Viktor Fedorovici IANUKOVICI;RO;M;;;143362;EN;;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143351;EU.8673.18;;2022-08-04;;(Date of UN designation: 2022-08-04);P;person;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950-07-09;9;7;1950;;;NO;GREGORIAN;;Donetsk Oblast;;Yenakiyeve;UA;UKRAINE;143352;EN;(former Ukrainian SSR, now Ukraine);amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143351;EU.8673.18;;2022-08-04;;(Date of UN designation: 2022-08-04);P;person;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;143353;EN;;amendment;council;2022-08-04;2022-08-04;2022/1354 (OJ L204I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.204.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A204I%3ATOC +28/10/2022;143389;EU.8692.54;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Євген Вiталiйович БАЛИЦЬКИЙ;UK;M;;;143392;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143389;EU.8692.54;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Yevhen Vitaliiovych BALYTSKIY;;M;;;143393;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143389;EU.8692.54;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Евгений Витальевич БАЛИЦКИЙ;RU;M;;;143394;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143389;EU.8692.54;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Yevgeniy Vitalievich BALYTSKIY;;M;;On 9 April 2022, the Russian authorities nominated Yevgeniy Balytskiy as the so-called Governor of the Zaporizhzhia region of Ukraine.;143395;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143389;EU.8692.54;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;Jevgenij Vitaljevitj BALITSKIJ;SV;M;;;143397;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143389;EU.8692.54;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-12-10;10;12;1969;;;NO;GREGORIAN;;;;Melitopol;UA;UKRAINE;143390;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143389;EU.8692.54;;2022-07-21;;(Date of UN designation: 2022-07-21);P;person;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;143391;EN;;amendment;council;2022-07-21;2022-07-21;2022/1270 (OJ L193);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=OJ:L:2022:193:FULL&from=EN +28/10/2022;143443;EU.8712.20;;2022-09-01;;(Date of UN designation: 2022-09-01);P;person;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;POLYAKOVA;Alla;Viktorovna;Alla Viktorovna POLYAKOVA;;F;;Member of the State Duma;143446;EN;;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143443;EU.8712.20;;2022-09-01;;(Date of UN designation: 2022-09-01);P;person;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;POLJAKOVA;Alla;Viktorovna;Alla Viktorovna POLJAKOVA;SV;F;;;143506;EN;;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143443;EU.8712.20;;2022-09-01;;(Date of UN designation: 2022-09-01);P;person;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;Алла Викторовна ПОЛЯКОВА;;F;;;143522;EN;;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143443;EU.8712.20;;2022-09-01;;(Date of UN designation: 2022-09-01);P;person;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970-11-26;26;11;1970;;;NO;GREGORIAN;;;;Ryazan;RU;RUSSIAN FEDERATION;143444;EN;;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143443;EU.8712.20;;2022-09-01;;(Date of UN designation: 2022-09-01);P;person;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;143445;EN;;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446 +28/10/2022;143447;EU.8713.19;;2022-09-01;;(Date of UN designation: 2022-09-01);P;person;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;ПОНОМАРЕВ;Валерий;Андреевич;Валерий Андреевич ПОНОМАРЕВ;RU;M;;;143450;EN;;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143447;EU.8713.19;;2022-09-01;;(Date of UN designation: 2022-09-01);P;person;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;PONOMAREV;Valery;Andreevich;Valery Andreevich PONOMAREV;;M;;Member of the Federation Council;143451;EN;;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143447;EU.8713.19;;2022-09-01;;(Date of UN designation: 2022-09-01);P;person;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;Valerij Andrejevitj PONOMARJOV;SV;M;;;143523;EN;;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143447;EU.8713.19;;2022-09-01;;(Date of UN designation: 2022-09-01);P;person;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959-08-17;17;8;1959;;;NO;GREGORIAN;;Sakhalin Region;Kurilsky District;;RU;RUSSIAN FEDERATION;143448;EN;;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143447;EU.8713.19;;2022-09-01;;(Date of UN designation: 2022-09-01);P;person;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;143449;EN;;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446 +28/10/2022;143460;EU.8732.55;;2022-09-01;;(Date of UN designation: 2022-09-01);P;person;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;ТКАЧЁВ;Антон;Олегович;Антон Олегович ТКАЧЁВ;RU;M;;;143462;EN;;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143460;EU.8732.55;;2022-09-01;;(Date of UN designation: 2022-09-01);P;person;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;TKACHEV;Anton;Olegovich;Anton Olegovich TKACHEV;;M;;Member of the State Duma;143463;EN;;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143460;EU.8732.55;;2022-09-01;;(Date of UN designation: 2022-09-01);P;person;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;TKACHEV;Anton;Olegovič;Anton Olegovič TKACHEV;CS;M;;;143505;EN;;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143460;EU.8732.55;;2022-09-01;;(Date of UN designation: 2022-09-01);P;person;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;TKATJOV;Anton;Olegovitj;Anton Olegovitj TKATJOV;SV;M;;;143507;EN;;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143460;EU.8732.55;;2022-09-01;;(Date of UN designation: 2022-09-01);P;person;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1994-03-31;31;3;1994;;;NO;GREGORIAN;;;;Voronezh;RU;RUSSIAN FEDERATION;143461;EN;;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;143460;EU.8732.55;;2022-09-01;;(Date of UN designation: 2022-09-01);P;person;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;143464;EN;;amendment;council;2022-09-01;2022-09-01;2022/1446 (OJ L227I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1446 +28/10/2022;144289;EU.8752.90;;2022-09-26;;(Date of UN designation: 2022-09-26)\n(UNLI - 27.09.2022);P;person;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;Abu Sajjad;;;;;144755;EN;low quality alias;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144289;EU.8752.90;;2022-09-26;;(Date of UN designation: 2022-09-26)\n(UNLI - 27.09.2022);P;person;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;Mansur Ahmad al-Sa’adi;;;;;144756;EN;low quality alias;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144289;EU.8752.90;;2022-09-26;;(Date of UN designation: 2022-09-26)\n(UNLI - 27.09.2022);P;person;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;Mansoor Ahmed Al Saadi;;;;;144757;EN;low quality alias;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144289;EU.8752.90;;2022-09-26;;(Date of UN designation: 2022-09-26)\n(UNLI - 27.09.2022);P;person;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;Mansur Al-Sa'adi;;;;Major General, Houthi Commander of Yemen's Naval and Coastal Defense Forces;144758;EN;"Physical Description: Eye Color: Brown; Hair: Brown.";amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144289;EU.8752.90;;2022-09-26;;(Date of UN designation: 2022-09-26)\n(UNLI - 27.09.2022);P;person;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;منصور السعادي;;;;;144759;EN;;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144289;EU.8752.90;;2022-09-26;;(Date of UN designation: 2022-09-26)\n(UNLI - 27.09.2022);P;person;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;;YE;YEMEN;144752;EN;;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144289;EU.8752.90;;2022-09-26;;(Date of UN designation: 2022-09-26)\n(UNLI - 27.09.2022);P;person;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988;;;NO;GREGORIAN;;;;;YE;YEMEN;144753;EN;;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144289;EU.8752.90;;2022-09-26;;(Date of UN designation: 2022-09-26)\n(UNLI - 27.09.2022);P;person;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;144754;EN;;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC +28/10/2022;144297;EU.8753.89;;2022-09-26;;(Date of UN designation: 2022-09-26)\n(UNLI - 27.09.2022);P;person;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;مطلق عامر المراني;;;;;144763;EN;;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144297;EU.8753.89;;2022-09-26;;(Date of UN designation: 2022-09-26)\n(UNLI - 27.09.2022);P;person;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;Abu Emad;;;;;144764;EN;good quality alias;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144297;EU.8753.89;;2022-09-26;;(Date of UN designation: 2022-09-26)\n(UNLI - 27.09.2022);P;person;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;Mutlaq Ali Aamer Al Marrani;;;;;144765;EN;good quality alias;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144297;EU.8753.89;;2022-09-26;;(Date of UN designation: 2022-09-26)\n(UNLI - 27.09.2022);P;person;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;Motlaq Amer Al-Marrani;;;;(Former) Deputy Head of the Houthi National Security Bureau (NSB) (intelligence agency);144766;EN;"Physical Description: Eye Color: Brown; Hair: Brown.";amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144297;EU.8753.89;;2022-09-26;;(Date of UN designation: 2022-09-26)\n(UNLI - 27.09.2022);P;person;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;;YE;YEMEN;144760;EN;;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144297;EU.8753.89;;2022-09-26;;(Date of UN designation: 2022-09-26)\n(UNLI - 27.09.2022);P;person;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984-01-01;1;1;1984;;;NO;GREGORIAN;;;;Al-Jawf;YE;YEMEN;144761;EN;;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144297;EU.8753.89;;2022-09-26;;(Date of UN designation: 2022-09-26)\n(UNLI - 27.09.2022);P;person;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;144762;EN;;amendment;council;2022-10-06;2022-10-06;2022/1901 (OJ L260);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.L_.2022.260.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A260%3ATOC +28/10/2022;144313;EU.8754.88;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;ХАРИЧЕВ;Александр;Дмитриевич;Александр Дмитриевич ХАРИЧЕВ;RU;M;;;144315;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144313;EU.8754.88;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;KHARICHEV;Aleksandr;Dmitrievich;Aleksandr Dmitrievich KHARICHEV;;M;;Head of the Division of Operation of the State Council in the Administration of the President of the Russian Federation;144316;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144313;EU.8754.88;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;CHARITJEV;Aleksandr;Dmitrijevitj;Aleksandr Dmitrijevitj CHARITJEV;SV;M;;;144613;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144313;EU.8754.88;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966-02-08;8;2;1966;;;NO;GREGORIAN;;;;Kostroma;RU;RUSSIAN FEDERATION;144314;EN;former USSR (now Russian Federation);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144313;EU.8754.88;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144317;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144318;EU.8755.87;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;РАПОПОРТ;Борис;Яковлевич;Борис Яковлевич РАПОПОРТ;RU;M;;;144319;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144318;EU.8755.87;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;RAPOPORT;Boris;Yakovlevich;Boris Yakovlevich RAPOPORT;;M;;Deputy head of the Division of Operation of the State Council in the Administration of the President of the Russian Federation;144340;EN;Associated individuals: Alexander Kharichev\n\nAssociated entities: Presidential Directorate of the Russian Federation;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144318;EU.8755.87;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;RAPOPORT;Boris;Jakovlevitj;Boris Jakovlevitj RAPOPORT;SV;M;;;144614;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144318;EU.8755.87;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967-08-14;14;8;1967;;;NO;GREGORIAN;;;;St. Petersburg;RU;RUSSIAN FEDERATION;144341;EN;POB: Leningrad, former USSR;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144318;EU.8755.87;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144342;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144324;EU.8772.28;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;СЕЛІВАНОВ;Олексій;Сергійович;Олексій Сергійович СЕЛІВАНОВ;UK;M;;;144328;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144324;EU.8772.28;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;SELIVANOV;Oleksiy;Sergiyovich;Oleksiy Sergiyovich SELIVANOV;UK;M;;;144329;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144324;EU.8772.28;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;СЕЛИВАНОВ;Алексей;Сергеевич;Алексей Сергеевич СЕЛИВАНОВ;RU;M;;;144330;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144324;EU.8772.28;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;SELIVANOV;Alexey;Sergeyevich;Alexey Sergeyevich SELIVANOV;;M;;so-called “Deputy Head of the Main Directorate of the Ministry of Internal Affairs of the Zaporizhzhia Civil-Military Administration”;144331;EN;Associated entities: Government of the Russian Federation;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144324;EU.8772.28;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;SELIVANOV;Oleksij;Serhijovytj;Oleksij Serhijovytj SELIVANOV;SV;M;;;144616;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144324;EU.8772.28;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;SELIVANOV;Aleksej;Sergejevitj;Aleksej Sergejevitj SELIVANOV;SV;M;;;144617;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144324;EU.8772.28;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980-12-07;7;12;1980;;;NO;GREGORIAN;;;;Kyiv;UA;UKRAINE;144325;EN;former Ukrainian SSR (now Ukraine);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144324;EU.8772.28;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;144326;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144324;EU.8772.28;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144327;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144337;EU.8774.26;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;ТИЦКИЙ;Антон;Робертович;Антон Робертович ТИЦКИЙ;RU;M;;;144360;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144337;EU.8774.26;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;TITSKIY;Anton;Robertovich;Anton Robertovich TITSKIY;;M;;so-called “Minister of Youth Police of Zaporizhzhia Oblast”;144361;EN;Associated entities: Government of the Russian Federation;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144337;EU.8774.26;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;TITSKIJ;Anton;Robertovitj;Anton Robertovitj TITSKIJ;SV;M;;;144618;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144337;EU.8774.26;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1990-02-12;12;2;1990;;;NO;GREGORIAN;;;;;00;UNKNOWN;144338;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144337;EU.8774.26;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144339;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144343;EU.8756.86;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;КОЛЬЦОВ;Антон;Викторович;Антон Викторович КОЛЬЦОВ;RU;M;;;144346;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144343;EU.8756.86;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;KOLTSOV;Anton;Viktorovich;Anton Viktorovich KOLTSOV;;M;;so-called “head of the government of the Zaporizhzhia Oblast”;144347;EN;Associated entities: Government of the Russian Federation;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144343;EU.8756.86;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;KOLTSOV;Anton;Viktorovitj;Anton Viktorovitj KOLTSOV;SV;M;;;144615;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144343;EU.8756.86;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973-06-24;24;6;1973;;;NO;GREGORIAN;;;;Cherepovets;RU;RUSSIAN FEDERATION;144344;EN;former USSR (now Russian Federation);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144343;EU.8756.86;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144345;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144348;EU.8757.85;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;РОДИКОВ;Михаил;Леонидович;Михаил Леонидович РОДИКОВ;RU;M;;;144351;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144348;EU.8757.85;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;RODIKOV;Mikhail;Leonidovich;Mikhail Leonidovich RODIKOV;;M;;so-called Minister of Education and Science of Kherson Civil-Military Administration;144352;EN;Associated individuals: Sergey Eliseev\n\nAssociated entities: Government of the Russian Federation;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144348;EU.8757.85;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;RODIKOV;Michail;Leonidovitj;Michail Leonidovitj RODIKOV;SV;M;;;144640;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144348;EU.8757.85;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1958-01-26;26;1;1958;;;NO;GREGORIAN;;Moscow region;;Ozyory;RU;RUSSIAN FEDERATION;144349;EN;former USSR (now Russian Federation);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144348;EU.8757.85;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144350;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144353;EU.8758.84;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;ЛУШНИКОВ;Алан;Валерьевич;Алан Валерьевич ЛУШНИКОВ;RU;M;;;144356;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144353;EU.8758.84;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;LUSHNIKOV;Alan;Valerievich;Alan Valerievich LUSHNIKOV;;M;;largest shareholder of arms producer JSC Kalashnikov Concern;144357;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144353;EU.8758.84;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;LUSJNIKOV;Alan;Valerjevitj;Alan Valerjevitj LUSJNIKOV;SV;M;;;144646;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144353;EU.8758.84;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976-08-10;10;8;1976;;;NO;GREGORIAN;;;;St. Petersburg;RU;RUSSIAN FEDERATION;144354;EN;Leningrad, former USSR;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144353;EU.8758.84;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144355;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144358;EU.8759.83;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;ЧИЧЕРИНА;Юлия;Дмитриевна;Юлия Дмитриевна ЧИЧЕРИНА;RU;F;;;144421;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144358;EU.8759.83;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;CHICHERINA;Yulia;Dmitrievna;Yulia Dmitrievna CHICHERINA;;F;;Russian singer;144422;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144358;EU.8759.83;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;TJITJERINA;Julija;Dmitrijevna;Julija Dmitrijevna TJITJERINA;SV;F;;;144648;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144358;EU.8759.83;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1978-08-07;7;8;1978;;;NO;GREGORIAN;;;;Sverdlovsk;RU;RUSSIAN FEDERATION;144359;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144358;EU.8759.83;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144420;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144362;EU.8775.25;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;ЕЛИСЕЕВ;Сергей;Владимирович;Сергей Владимирович ЕЛИСЕЕВ;RU;M;;;144365;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144362;EU.8775.25;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;ELISEEV;Sergey;Vladimirovich;Sergey Vladimirovich ELISEEV;;M;;so-called Head of the Kherson Civil-Military Administration;144366;EN;Associated entities: Government of the Russian Federation;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144362;EU.8775.25;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;JELISEJEV;Sergej;Vladimirovitj;Sergej Vladimirovitj JELISEJEV;SV;M;;;144619;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144362;EU.8775.25;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;Kherson Oblast;;NO;;UA;UKRAINE;144367;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144362;EU.8775.25;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971-05-05;5;5;1971;;;NO;GREGORIAN;;;;Stavropol;RU;RUSSIAN FEDERATION;144363;EN;former USSR (now Russian Federation);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144362;EU.8775.25;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144364;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144368;EU.8776.24;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;БЕСПАЛОВ;Владимир;Александрович;Владимир Александрович БЕСПАЛОВ;RU;M;;;144370;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144368;EU.8776.24;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;BESPALOV;Vladimir;Alexandrovich;Vladimir Alexandrovich BESPALOV;;M;;so-called Minister of Domestic Policy of the Kherson Civil-Military Administration;144371;EN;Associated entities: Government of the Russian Federation;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144368;EU.8776.24;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;BESPALOV;Vladimir;Aleksandrovitj;Vladimir Aleksandrovitj BESPALOV;SV;M;;;144641;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144368;EU.8776.24;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144369;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144372;EU.8777.23;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Витaлий Пaвлович ХОЦЕEНКО;RU;M;;;144375;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144372;EU.8777.23;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;KHOTSENKO;Vitaliy;Pavlovich;Vitaliy Pavlovich KHOTSENKO;;M;;Prime Minister of the so-called Donetsk People’s Republic;144376;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144372;EU.8777.23;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;CHOTSENKO;Vitalij;Pavlovitj;Vitalij Pavlovitj CHOTSENKO;SV;M;;;144642;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144372;EU.8777.23;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;Donetsk;;;;;;NO;;UA;UKRAINE;144377;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144372;EU.8777.23;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986-03-18;18;3;1986;;;NO;GREGORIAN;;;;Dnepropetrovsk;UA;UKRAINE;144373;EN;former USSR (now Ukraine);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144372;EU.8777.23;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144374;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144378;EU.8778.22;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;КУЗНЕЦОВ;Владислав;Гариевич;Владислав Гариевич КУЗНЕЦОВ;RU;M;;;144381;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144378;EU.8778.22;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;KUZNETSOV;Vladislav;Garievich;Vladislav Garievich KUZNETSOV;;M;;"First Deputy Chairman of the ""government"" of the so-called Luhansk People’s Republic";144382;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144378;EU.8778.22;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;KUZNETSOV;Vladislav;Garijevitj;Vladislav Garijevitj KUZNETSOV;SV;M;;;144643;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144378;EU.8778.22;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-03-18;18;3;1969;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;144379;EN;former USSR (now Russian Federation);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144378;EU.8778.22;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144380;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144383;EU.8779.21;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;БУЛАЕВ;Николай;Иванович;Николай Иванович БУЛАЕВ;RU;M;;;144386;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144383;EU.8779.21;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;BULAYEV;Nikolay;Ivanovich;Nikolay Ivanovich BULAYEV;;M;;Deputy chairman of the Russian Central Election Commission;144387;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144383;EU.8779.21;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;BULAJEV;Nikolaj;Ivanovitj;Nikolaj Ivanovitj BULAJEV;SV;M;;;144644;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144383;EU.8779.21;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949-09-01;1;9;1949;;;NO;GREGORIAN;;;Kazachya Sloboda;;RU;RUSSIAN FEDERATION;144384;EN;former USSR (now Russian Federation);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144383;EU.8779.21;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144385;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144393;EU.8781.95;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;СОЛНЦЕВ;Евгений;Александрович;Евгений Александрович СОЛНЦЕВ;RU;M;;;144396;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144393;EU.8781.95;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;SOLNTSEV;Evgeniy;Alexandrovich;Evgeniy Alexandrovich SOLNTSEV;;M;;so-called “Deputy Chairman of the Government of the Donetsk People's Republic”;144397;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144393;EU.8781.95;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;SOLNTSEV;Jevgenij;Aleksandrovitj;Jevgenij Aleksandrovitj SOLNTSEV;SV;M;;;144645;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144393;EU.8781.95;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;SOLNTSEV;Yevgeniy;Alexandrovich;Yevgeniy Alexandrovich SOLNTSEV;DE;M;;;144662;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144393;EU.8781.95;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;SOLNTSEV;Yevgeniy;Alexandrovich;Yevgeniy Alexandrovich SOLNTSEV;SL;M;;;144737;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144393;EU.8781.95;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980;;;NO;GREGORIAN;;;;;00;UNKNOWN;144394;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144393;EU.8781.95;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144395;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144398;EU.8782.94;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;КОСТОМАРОВ;Александр;Константинович;Александр Константинович КОСТОМАРОВ;RU;M;;;144401;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144398;EU.8782.94;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;KOSTOMAROV;Alexander;Konstantinovich;Alexander Konstantinovich KOSTOMAROV;;M;;"""First Deputy Head of the administration of the Head of the Donetsk People’s Republic”";144402;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144398;EU.8782.94;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;KOSTOMAROV;Aleksandr;Konstantinovitj;Aleksandr Konstantinovitj KOSTOMAROV;SV;M;;;144647;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144398;EU.8782.94;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977-05-13;13;5;1977;;;NO;GREGORIAN;;;;Chelyabinsk;RU;RUSSIAN FEDERATION;144399;EN;former USSR (now Russian Federation);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144398;EU.8782.94;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144400;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144403;EU.8783.93;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;БУЛГАКОВ;Дмитрий;Витальевич;Дмитрий Витальевич БУЛГАКОВ;;M;;;144406;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144403;EU.8783.93;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;BULGAKOV;Dmitry;Vitalyevich;Dmitry Vitalyevich BULGAKOV;;M;;Deputy Minister of Defense of the Russian Federation until September 2022 and General in the Russian Army;144407;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144403;EU.8783.93;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;BULGAKOV;Dmitrij;Vitaljevitj;Dmitrij Vitaljevitj BULGAKOV;SV;M;;;144649;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144403;EU.8783.93;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-10-20;20;10;1954;;;NO;GREGORIAN;;;Verkhneye Gurovo;;RU;RUSSIAN FEDERATION;144404;EN;Former USSR (now Russian Federation);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144403;EU.8783.93;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144405;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144408;EU.8784.92;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;ЕВКУРОВ;Юнус-Бек;Баматгиреевич;Юнус-Бек Баматгиреевич ЕВКУРОВ;RU;M;;;144411;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144408;EU.8784.92;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;EVKUROV;Yunus-Bek;Bamatgireevich;Yunus-Bek Bamatgireevich EVKUROV;;M;;Deputy Minister of Defense of the Russian Federation;144412;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144408;EU.8784.92;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;JEVKUROV;Junus-Bek;Bamatgirejevitj;Junus-Bek Bamatgirejevitj JEVKUROV;SV;M;;;144650;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144408;EU.8784.92;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963-07-30;30;7;1963;;;NO;GREGORIAN;;;;;RU;RUSSIAN FEDERATION;144409;EN;North Ossetian Autonomous SSR (now Russian Federation);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144408;EU.8784.92;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144410;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144413;EU.8785.91;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;ЦАЛИКОВ;Руслан;Хаджисмелович;Руслан Хаджисмелович ЦАЛИКОВ;RU;M;;;144417;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144413;EU.8785.91;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;TSALIKOV;Ruslan;Khadzhismelovich;Ruslan Khadzhismelovich TSALIKOV;;M;;Deputy Minister of Defense of the Russian Federation;144418;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144413;EU.8785.91;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;TSALIKOV;Ruslan;Chadzjismelovitj;Ruslan Chadzjismelovitj TSALIKOV;SV;M;;;144651;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144413;EU.8785.91;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-07-31;31;7;1956;;;NO;GREGORIAN;;;;Vladikavkaz;RU;RUSSIAN FEDERATION;144414;EN;Vladikavkaz, the Republic of North Ossetia–Alania (current name);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144413;EU.8785.91;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1956-07-31;31;7;1956;;;NO;GREGORIAN;;;;Ordzhonikidze;RU;RUSSIAN FEDERATION;144415;EN;Ordzhonikidze, North Ossetian Autonomous SSR;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144413;EU.8785.91;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144416;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144440;EU.8786.90;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;ПАНКОВ;Николай;Александрович;Николай Александрович ПАНКОВ;RU;M;;;144443;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144440;EU.8786.90;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;PANKOV;Nikolay;Aleksandrovich;Nikolay Aleksandrovich PANKOV;;M;;Deputy Minister of Defense, general of the Russian army reserve, state secretary of the Russian Federation;144444;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144440;EU.8786.90;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;PANKOV;Nikolaj;Aleksandrovitj;Nikolaj Aleksandrovitj PANKOV;SV;M;;;144652;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144440;EU.8786.90;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954-12-02;2;12;1954;;;NO;GREGORIAN;;;Maryino;;RU;RUSSIAN FEDERATION;144441;EN;Former USSR (now Russian Federation);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144440;EU.8786.90;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144442;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144445;EU.8787.89;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;САДОВЕНКО;Юрий;Эдуардович;Юрий Эдуардович САДОВЕНКО;RU;M;;;144448;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144445;EU.8787.89;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;SADOVENKO;Yuriy;Eduardovich;Yuriy Eduardovich SADOVENKO;;M;;Deputy Minister of Defense of the Russian Federation, head of the Office of the Russian Federation Defense Minister, Colonel General of the Russian armed forces;144449;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144445;EU.8787.89;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;SADOVENKO;Jurij;Eduardovitj;Jurij Eduardovitj SADOVENKO;SV;M;;;144653;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144445;EU.8787.89;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-09-11;11;9;1969;;;NO;GREGORIAN;;;;Zhitomyr;UA;UKRAINE;144446;EN;former USSR (now Ukraine);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144445;EU.8787.89;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA;;144447;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144450;EU.8788.88;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;ИВАНОВ;Тимур;Вадимович;Тимур Вадимович ИВАНОВ;RU;M;;;144453;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144450;EU.8788.88;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;IVANOV;Timur;Vadimovich;Timur Vadimovich IVANOV;;M;;Deputy Minister of Defense;144454;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144450;EU.8788.88;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;IVANOV;Timur;Vadimovitj;Timur Vadimovitj IVANOV;SV;M;;;144639;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144450;EU.8788.88;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975-08-15;15;8;1975;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;144451;EN;former USSR (now Russian Federation);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144450;EU.8788.88;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144452;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144455;EU.8789.87;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;РЫЖКОВ;Сергей;Борисович;Сергей Борисович РЫЖКОВ;RU;M;;;144458;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144455;EU.8789.87;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;RYZHKOV;Sergey;Borissovich;Sergey Borissovich RYZHKOV;;M;;Major General of the Russian armed forces and Commander of the 41st Combined Arms Army;144459;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144455;EU.8789.87;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;RYZJKOV;Sergej;Borisovitj;Sergej Borisovitj RYZJKOV;SV;M;;;144660;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144455;EU.8789.87;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;RYZHKOV;Sergey;Borisovich;Sergey Borisovich RYZHKOV;DE;M;;;144663;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144455;EU.8789.87;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;RYZHKOV;Sergey;Borisovich;Sergey Borisovich RYZHKOV;NL;M;;;144667;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144455;EU.8789.87;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;RYZHKOV;Sergey;Borisovich;Sergey Borisovich RYZHKOV;PT;M;;;144742;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144455;EU.8789.87;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968-10-25;25;10;1968;;;NO;GREGORIAN;;;;Voronezh;RU;RUSSIAN FEDERATION;144456;EN;Former USSR (now Russian Federation);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144455;EU.8789.87;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144457;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144465;EU.8791.64;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;КОЧКИН;Александр;Викторович;Александр Викторович КОЧКИН;RU;M;;;144468;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144465;EU.8791.64;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;KOCHKIN;Aleksander;Viktorovich;Aleksander Viktorovich KOCHKIN;;M;;Executive Director of the Tecmash concern, a designer and manufacturer of missiles and munitions;144469;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144465;EU.8791.64;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;KOTJKIN;Aleksandr;Viktorovitj;Aleksandr Viktorovitj KOTJKIN;SV;M;;;144654;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144465;EU.8791.64;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;KOCHKIN;Aleksandr;Viktorovich;Aleksandr Viktorovich KOCHKIN;NL;M;;;144668;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144465;EU.8791.64;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;KOCHKIN;Aleksandr;Viktorovich;Aleksandr Viktorovich KOCHKIN;DE;M;;;144669;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144465;EU.8791.64;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-02-10;10;2;1957;;;NO;GREGORIAN;;;;;00;UNKNOWN;144466;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144465;EU.8791.64;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144467;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144470;EU.8792.63;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Владимир Григoрьевич КУЛИШOВ;RU;M;;;144473;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144470;EU.8792.63;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;KULISHOV;Vladimir;Grigorevich;Vladimir Grigorevich KULISHOV;;M;;Head of Russia’s Border Service and Deputy Director of the Federal Security Service (FSB) of the Russian Federation;144474;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144470;EU.8792.63;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;KULISJOV;Vladimir;Grigorjevitj;Vladimir Grigorjevitj KULISJOV;SV;M;;;144655;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144470;EU.8792.63;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-07-20;20;7;1957;;;NO;GREGORIAN;;Rostov Oblast;;;RU;RUSSIAN FEDERATION;144471;EN;Former USSR (now Russian Federation);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144470;EU.8792.63;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144472;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144475;EU.8793.62;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;РАСТОРГУЕВ;Николай;Вячеславович;Николай Вячеславович РАСТОРГУЕВ;RU;M;;;144478;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144475;EU.8793.62;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;RASTORGUEV;Nikolay;Viacheslavovich;Nikolay Viacheslavovich RASTORGUEV;;M;;Russian singer and member of the Public Council of the Ministry of Defense of the Russian Federation;144479;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144475;EU.8793.62;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;RASTORGUJEV;Nikolaj;Vjatjeslavovitj;Nikolaj Vjatjeslavovitj RASTORGUJEV;SV;M;;;144656;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144475;EU.8793.62;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;RASTORGUYEV;Nikolay;Viacheslavovich;Nikolay Viacheslavovich RASTORGUYEV;DE;M;;;144664;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144475;EU.8793.62;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-02-21;21;2;1957;;;NO;GREGORIAN;;Moscow Oblast;Lytkarino;;RU;RUSSIAN FEDERATION;144476;EN;former USSR (now Russian Federation);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144475;EU.8793.62;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144477;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144480;EU.8794.61;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;ГАЗМАНОВ;Олег;Михайлович;Олег Михайлович ГАЗМАНОВ;RU;M;;;144483;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144480;EU.8794.61;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;GAZMANOV;Oleg;Mikhaylovich;Oleg Mikhaylovich GAZMANOV;;M;;Russian musician, member of the Public Council of the Ministry of Defense of the Russian Federation;144484;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144480;EU.8794.61;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;GAZMANOV;Oleg;Michajlovitj;Oleg Michajlovitj GAZMANOV;SV;M;;;144657;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144480;EU.8794.61;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951-07-22;22;7;1951;;;NO;GREGORIAN;;;Gusev;;RU;RUSSIAN FEDERATION;144481;EN;former USSR (now Russian Federation);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144480;EU.8794.61;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144482;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144485;EU.8795.60;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;ШУГАЕВ;Дмитрий;Евгеньевич;Дмитрий Евгеньевич ШУГАЕВ;RU;M;;;144488;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144485;EU.8795.60;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;SHUGAEV;Dmitry;Evgenevich;Dmitry Evgenevich SHUGAEV;;M;;Director of the Federal Service for Military-Technical Cooperation of the Russian Federation (FSVTS);144489;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144485;EU.8795.60;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;SJUGAJEV;Dmitrij;Jevgenjevitj;Dmitrij Jevgenjevitj SJUGAJEV;SV;M;;;144658;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144485;EU.8795.60;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-08-11;11;8;1965;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;144486;EN;former USSR (now Russian Federation);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144485;EU.8795.60;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144487;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144490;EU.8796.59;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;ЖИДКО;Геннадий;Валериевич;Геннадий Валериевич ЖИДКО;RU;M;;;144493;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144490;EU.8796.59;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;ZHIDKO;Gennadiy;Valeryevich;Gennadiy Valeryevich ZHIDKO;;M;;Member of the Armed Forces of the Russian Federation;144494;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144490;EU.8796.59;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;ZJIDKO;Gennadij;Valerjevitj;Gennadij Valerjevitj ZJIDKO;SV;M;;;144659;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144490;EU.8796.59;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965-09-12;12;9;1965;;;NO;GREGORIAN;;;Yangiabad;;UZ;UZBEKISTAN;144491;EN;Yangiabad, former USSR;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144490;EU.8796.59;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144492;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144495;EU.8797.58;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;ДУГИН;Александр;Гельевич;Александр Гельевич ДУГИН;RU;M;;;144498;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144495;EU.8797.58;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;DUGIN;Aleksander;Gelyevich;Aleksander Gelyevich DUGIN;;M;;Russian political philosopher, political scientist, analyst, strategist and ideologue. Member of the so-called Izborsk Club, a Russian conservative think tank.;144499;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144495;EU.8797.58;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;DUGIN;Aleksandr;Geljevitj;Aleksandr Geljevitj DUGIN;SV;M;;;144680;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144495;EU.8797.58;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962-01-07;7;1;1962;;;NO;GREGORIAN;;;;Moscow;RU;RUSSIAN FEDERATION;144496;EN;former USSR (now Russian Federation);amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144495;EU.8797.58;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144497;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144500;EU.8798.57;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;JSC Goznak;;;;Joint Stock Company;144503;EN;"Type of entity: Joint Stock Company; Other associated entities: Government of the Russian Federation";amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144500;EU.8798.57;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;АО «Гознак»;RU;;;;144588;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144500;EU.8798.57;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;Moscow;17 Mytnaya Street;;;;;NO;(Principal place of business: Moscow, Russian Federation);RU;RUSSIAN FEDERATION;144501;EN;Principal place of business: Moscow, Russian Federation;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144500;EU.8798.57;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"TIN 7813252159 (regnumber-Registration Number) ";NO;NO;NO;NO;NO;;;;;;;regnumber;Registration Number;;RU;;144502;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;; +28/10/2022;144511;EU.8801.61;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;ЗиД;RU;;;;144513;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144511;EU.8801.61;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;ZiD;;;;;144514;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144511;EU.8801.61;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Завод имени Дегтярева;RU;;;;144515;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144511;EU.8801.61;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Degtyarev Plant;;;;;144516;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144511;EU.8801.61;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;ОАО Завод имени В. А. Дегтярева;RU;;;;144517;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144511;EU.8801.61;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;OJSC V. A. Degtyarev Plant;;;;defense company which provides weapons to the Russian Armed Forces;144518;EN;Associated individuals: Aleksander Vladimirovich Tmenov;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144511;EU.8801.61;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;zakłady Degtyareva;PL;;;;144682;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144511;EU.8801.61;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;zakłady i. V.A Degtyareva;PL;;;;144683;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144511;EU.8801.61;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Uzina OJSC V.A. Degtyarev;;;;;144724;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144511;EU.8801.61;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Uzina Degtyarev;RO;;;;144725;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144511;EU.8801.61;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Degtyarev-üzem;HU;;;;144767;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144511;EU.8801.61;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;Kovrov;4 Truda st.;;601900;Vladimir region;;NO;WEB[www.zid.ru]\nPHONE[+8 (49232) 9-12-09]\nEMAIL[zid@zid.ru];RU;RUSSIAN FEDERATION;144512;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;МКБ «Факел» имени академика П. Д. Грушина;RU;;;;144521;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;"MKB ""Fakel"" named after P.D.Grushin";;;;Russian defence company;144522;EN;Associated entities: JSC Concern VKO “Almaz-Antey”;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;MKB »Fakel« im. P.D. Grushina;PL;;;;144684;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;MKB “Fakel”, denominada así en honor a P. D. Grushin;ES;;;;144721;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;"MKB ""Fakel"", che prende il nome da P.D.Grushin";IT;;;;144723;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;MKB ‘Fakel’ a báisteadh as P.D.Grushin;GA;;;;144726;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;"MKB ""Fakel"" du nom de P.D. Grushin";FR;;;;144727;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;P. D. Grušino vardo MKB „Fakel“;LT;;;;144728;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;MKB „Fakel“ pojmenovaná po P. D. Grushinovi;CS;;;;144729;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;MKB „Fakel” nazvan po P. D. Grushinu;HR;;;;144730;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;MKB „Fakel“ P. D. Grushina;SK;;;;144731;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;MKB „Fakel“, poimenovan po P.D. Grushinu;SL;;;;144732;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;MKB «Fakel» denumită după P.D. Grushin;RO;;;;144740;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;"MKB ""Fakel"", assim denominada em honra de P.D. Grushin";PT;;;;144743;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;MKB «Fakel» που πήρε το όνομά της από τον Ρ.D.Grushin;EL;;;;144744;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;"MKB ""Fakel"" opkaldt efter P.D. Grushin";DA;;;;144745;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;MKB ”Fakel”, nimetty P.D.Grušinin mukaan;FI;;;;144746;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;MKB “Fakel” imsemmi għal P.D. Grushin;MT;;;;144747;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;A P.D.Grushinról elnevezett MKB „Fakel”;HU;;;;144768;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144519;EU.8802.60;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;Khimki;Akademika Grushina 33;;141401;Moscow region;;NO;WEB[www.mkbfakel.ru]\nPHONE[8 (495) 572-01-33]\nEMAIL[info@npofakel.ru];RU;RUSSIAN FEDERATION;144520;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144523;EU.8803.59;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Корпорация «ИРКУТ»;RU;;;;144525;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144523;EU.8803.59;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;JSC Irkut Corporation;;;;Russian aircraft manufacturer;144526;EN;Associated individuals: Alexander Veprev, Deputy General Director of JSC “Irkut” Corporation, and Yuri Slyusar, CEO of PJSC “UAC”;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144523;EU.8803.59;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Korporacja Irkut S.A.;PL;;;;144685;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144523;EU.8803.59;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;Moscow;Leningradskiy Prospect 68;;125315;;;NO;WEB[www.irkut.com]\nPHONE[+7 (495) 777-21-01]\nEMAIL[office@irkut.com];RU;RUSSIAN FEDERATION;144524;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144527;EU.8804.58;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;"АО ММЗ ""АВАНГАРД""";RU;;;;144529;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144527;EU.8804.58;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;MMZ Avangard;;;;Russian defence contractor;144530;EN;"Associated entities: JSC Concern VKO ""Almaz-Antey""";amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144527;EU.8804.58;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;Moscow;Klary Tsetkin street 33;;125130;;;NO;WEB[www.mmzavangard.ru]\nPHONE[+7 (495) 639-99-90]\nEMAIL[avangardmos@mmza.ru];RU;RUSSIAN FEDERATION;144528;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144531;EU.8805.57;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;АО НПО «Сплав»;RU;;;;144533;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144531;EU.8805.57;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;JSC NPO “Splav”;;;;;144534;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144531;EU.8805.57;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;АО «Научно-производственное объединение «СПЛАВ» имени А. Н. Ганичева»;RU;;;;144535;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144531;EU.8805.57;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;JSC A. N. Ganichev Scientific and Production Association “SPLAV”;;;;Russian weapons manufacturer;144536;EN;Associated individuals: Aleksander Vladimirovich Smirnov\n\nSergey Yurevich Alekseev\n\nBoris Andreevich Belobragin\n\nSergey Anatolevich Guliy\n\nVladimir Nikolaevich Kondaurov\n\nDenis Nikolaevich Kochetkov\n\nMaksim Grigorevich Rapota\n\nOleg Veniaminovich Stolyarov\n\nViktor Ivanovich Tregubov\n\nOlga Olegovna Yakunina\n\nAssociated entities: JSC Research and Industrial Concern “Machine Engineering Technologies” - JSC RIC TECMASH;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144531;EU.8805.57;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Stowarzyszenie Naukowo-Produkcyjne JSC A.N. Ganichev »SPLAV«;PL;;;;144686;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144531;EU.8805.57;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Asociación Científica y de Producción JSC A.N. Ganichev (“SPLAV”);;;;;144722;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144531;EU.8805.57;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Asociația Științifică și de Producție JSC A.N. Ganichev «SPLAV»;RO;;;;144741;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144531;EU.8805.57;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;JSC A.N. Ganyicsev Tudományos és Gyártási Szövetség “SPLAV”;HU;;;;144769;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144531;EU.8805.57;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;Tula;Shcheglovskaya zaseka Str. 33;;300004;;;NO;WEB[www.splav.org, www.splavtula.ru, сплав.рф]\nPHONE[+7 (4872) 46-44-09]\nEMAIL[mail@splavtula.ru];RU;RUSSIAN FEDERATION;144532;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144580;EU.8812.29;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;ПАМФИЛОВА;Элла;Александровна;Элла Александровна ПАМФИЛОВА;RU;F;;;144583;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144580;EU.8812.29;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;PAMFILOVA;Ella;Aleksandrovna;Ella Aleksandrovna PAMFILOVA;;F;;Chairperson of the Central Election Commission (CEC) of the Russian Federation;144584;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144580;EU.8812.29;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953-09-12;12;9;1953;;;NO;GREGORIAN;;;;Olmaliq;UZ;UZBEKISTAN;144581;EN;Olmaliq, former USSR;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144580;EU.8812.29;;2022-10-06;;(Date of UN designation: 2022-10-06);P;person;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;RU;;144582;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906 +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Central Election Commission (CEC);;;;Russian state body responsible for organizing elections and referendums for the Russian Federation;144587;EN;"Place of registration: Moscow, Russian Federation\nDate of Registration: 12.6.2002 by Federal Law No. 67-FZ; Type of entity: State body of the Russian Federation; Other associated entities: Government of the Russian Federation";amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Ryska federationens centrala valkommission;SV;;;;144661;EN;Ryska federationens centrala valkommission;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;zentrale Wahlkommission der Russischen Föderation;DE;;;;144665;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Centrale kiescommissie van de Russische Federatie;NL;;;;144670;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Ústřední volební komise Ruské federace;CS;;;;144671;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Централната избирателна комисия (ЦИК) на Руската федерация;BG;;;;144672;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Russiske Føderations centrale valgkommission;DA;;;;144673;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;κεντρική εκλογική επιτροπή (ΚΕΕ) της Ρωσικής Ομοσπονδίας;EL;;;;144674;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Comisión Electoral Central (CEC) de la Federación de Rusia;ES;;;;144675;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Venemaa Föderatsiooni keskvalimiskomisjon;ET;;;;144676;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Venäjän federaation keskusvaalilautakunta;FI;;;;144677;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Središnje izborno povjerenstvo Ruske Federacije;HR;;;;144678;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Orosz Föderáció Központi Választási Bizottság;HU;;;;144679;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Comissão Central de Eleições da Federação da Rússia;PT;;;;144681;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Commissione elettorale centrale (CEC) della Federazione russa;IT;;;;144700;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Rusijos Federacijos Centrinė rinkimų komisija;LT;;;;144701;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Krievijas Federācijas Centrālā vēlēšanu komisija;LV;;;;144702;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Kummissjoni Elettorali Ċentrali (CEC) tal-Federazzjoni Russa;MT;;;;144703;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Centralna Komisja Wyborcza Federacji Rosyjskiej;PL;;;;144704;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Comisia electorală centrală (CEC) a Federației Ruse;RO;;;;144705;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Ústredná volebná komisia Ruskej federácie;SK;;;;144706;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Centralna volilna komisija Ruske federacije;SL;;;;144707;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;Commission électorale centrale (CEC) de la Fédération de Russie;FR;;;;144770;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144585;EU.8813.28;;2022-10-06;;(Date of UN designation: 2022-10-06);E;enterprise;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;Moscow;Bol'shoy Cherkassky Pereulok, Building 9;;109012;;;NO;;RU;RUSSIAN FEDERATION;144586;EN;;amendment;council;2022-10-06;2022-10-06;2022/1906 (OJ L259 I);UKR;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144603;EU.8852.2;YEi.012;2022-10-04;;(UN ID: YEi.012)\n(Date of UN designation: 2022-10-04)\n(UNLI - 04.10.2022);P;person;amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC;;;;Muti al-Hamzi;;;;;145225;EN;low quality alias;amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144603;EU.8852.2;YEi.012;2022-10-04;;(UN ID: YEi.012)\n(Date of UN designation: 2022-10-04)\n(UNLI - 04.10.2022);P;person;amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC;;;;Ahmed Ali al-Hamzi;;;;;145226;EN;low quality alias;amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144603;EU.8852.2;YEi.012;2022-10-04;;(UN ID: YEi.012)\n(Date of UN designation: 2022-10-04)\n(UNLI - 04.10.2022);P;person;amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC;;;;Ahmad 'Ali Ahsan al-Hamzi;;;;;145227;EN;low quality alias;amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144603;EU.8852.2;YEi.012;2022-10-04;;(UN ID: YEi.012)\n(Date of UN designation: 2022-10-04)\n(UNLI - 04.10.2022);P;person;amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC;;;;Ahmad 'Ali al-Hamzi;;;;;145228;EN;low quality alias;amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144603;EU.8852.2;YEi.012;2022-10-04;;(UN ID: YEi.012)\n(Date of UN designation: 2022-10-04)\n(UNLI - 04.10.2022);P;person;amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC;;;;أحمد الحمزي;;;;;145229;EN;;amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144603;EU.8852.2;YEi.012;2022-10-04;;(UN ID: YEi.012)\n(Date of UN designation: 2022-10-04)\n(UNLI - 04.10.2022);P;person;amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC;;;;Ahmad Al-Hamzi;;;;Major General, Commander of the Houthi Air Force and Air Defense Forces;145230;EN;"Physical Description: Eye Color: Brown; Hair: Brown.";amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144603;EU.8852.2;YEi.012;2022-10-04;;(UN ID: YEi.012)\n(Date of UN designation: 2022-10-04)\n(UNLI - 04.10.2022);P;person;amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;NO;;YE;YEMEN;145222;EN;;amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144603;EU.8852.2;YEi.012;2022-10-04;;(UN ID: YEi.012)\n(Date of UN designation: 2022-10-04)\n(UNLI - 04.10.2022);P;person;amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985;;;NO;GREGORIAN;;;;Sana'a;YE;YEMEN;145223;EN;;amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144603;EU.8852.2;YEi.012;2022-10-04;;(UN ID: YEi.012)\n(Date of UN designation: 2022-10-04)\n(UNLI - 04.10.2022);P;person;amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YE;;145224;EN;;amendment;council;2022-10-24;2022-10-24;2022/2034 (OJ L274I);YEM;https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv%3AOJ.LI.2022.274.01.0001.01.ENG&toc=OJ%3AL%3A2022%3A274I%3ATOC +28/10/2022;144843;EU.8872.37;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;محمد رستمی;;M;;;144848;EN;ROSTAMI Mohammad;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144843;EU.8872.37;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;محمد گچی چشمه رستمی;;M;;;144849;EN;ROSTAMI CHESHMEH GACHI Mohammed;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144843;EU.8872.37;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;ROSTAMI CHESHMEH GACHI;Mohammed;;Mohammed ROSTAMI CHESHMEH GACHI;;M;;Head of Iran’s Morality Police, head of the Kermanshah Public Security Police from early 2014 until early 2019;144850;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144843;EU.8872.37;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;ROSTAMI;Mohammad;;Mohammad ROSTAMI;;M;;;144851;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144843;EU.8872.37;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1977;;;NO;GREGORIAN;;;;Kermanshah;IR;IRAN (ISLAMIC REPUBLIC OF);144844;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144843;EU.8872.37;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1976;;;NO;GREGORIAN;;;;Kermanshah;IR;IRAN (ISLAMIC REPUBLIC OF);145097;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144843;EU.8872.37;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"13821 (other-Other identification number) ";NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;IR;;144846;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;; +28/10/2022;144843;EU.8872.37;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"111936 (id-National identification card) ";NO;NO;NO;NO;NO;;;;;;;id;National identification card;;IR;;144847;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;; +28/10/2022;144843;EU.8872.37;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;144845;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955 +28/10/2022;144852;EU.8892.72;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;حسین رحیمی;;M;;;144855;EN;RAHIMI Hossein;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144852;EU.8892.72;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;RAHIMI;Hossein;;Hossein RAHIMI;;M;Brigadier General;Head of Iran’s Law Enforcement Forces (LEF) in Tehran since 7 August 2017;144856;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144852;EU.8892.72;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;;;NO;GREGORIAN;;Central province;Dodhak village, Mahalat;;IR;IRAN (ISLAMIC REPUBLIC OF);144853;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144852;EU.8892.72;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;144854;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955 +28/10/2022;144857;EU.8893.71;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;عبدی عباس;;M;;;144859;EN;ABDI Abbas;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144857;EU.8893.71;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;ABDI;Abbas;;Abbas ABDI;;M;Colonel;Head of Iran’s Law Enforcement Forces (LEF) in Divandarreh;144860;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144857;EU.8893.71;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;144858;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955 +28/10/2022;144861;EU.8894.70;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;MIRZAYI;Hajj Ahmad;;Hajj Ahmad MIRZAYI;;M;;;144865;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144861;EU.8894.70;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;MIRZAEI;Hajahmad;;Hajahmad MIRZAEI;;M;;;144866;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144861;EU.8894.70;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;حاج احمد میرزایی;;M;;;144867;EN;MIRZAEI Haj Ahmad;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144861;EU.8894.70;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;MIRZAEI;Haj Ahmad;;Haj Ahmad MIRZAEI;;M;Colonel;Head of Iran’s Morality Police in Tehran;144868;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144861;EU.8894.70;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957-02-09;9;2;1957;;;NO;GREGORIAN;;;;Tehran;IR;IRAN (ISLAMIC REPUBLIC OF);144862;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144861;EU.8894.70;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"4268935215 (other-Other identification number) ";NO;NO;NO;NO;NO;;;;;;;other;Other identification number;;IR;;144864;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;; +28/10/2022;144861;EU.8894.70;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;144863;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955 +28/10/2022;144880;EU.8912.38;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;عیسی زارع پور;;M;;;144883;EN;ZAREPOUR Issa;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144880;EU.8912.38;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;ZAREPOUR;Issa;;Issa ZAREPOUR;;M;;Minister of Information and Communications Technology;144884;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144880;EU.8912.38;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980;;;NO;GREGORIAN;;Kermanshah Province;;Eslamabad-e Gharb;IR;IRAN (ISLAMIC REPUBLIC OF);144881;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144880;EU.8912.38;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;144882;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955 +28/10/2022;144885;EU.8913.37;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;محمدحسین سپهر;;M;;;144886;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144885;EU.8913.37;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;SEPEHR;Mohammad-Hossein;;Mohammad-Hossein SEPEHR;;M;;Commander of the Iranian Central Training Base of the General Staff of the Armed Forces;144887;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144885;EU.8913.37;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;144898;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955 +28/10/2022;144888;EU.8914.36;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;صفری سید علی;;M;;;144889;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144888;EU.8914.36;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;SAFARI;Sayd Ali;;Sayd Ali SAFARI;;M;Colonel;Head of Iran’s Law Enforcement Forces (LEF) in Saqqez;144890;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144888;EU.8914.36;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;144899;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955 +28/10/2022;144891;EU.8915.35;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;ادیانی سید علیرضا;;M;;;144892;EN;ADYANI Seyed Alireza;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144891;EU.8915.35;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;ADIANI;Hojjat al-Islam Seyyed Alireza;;Hojjat al-Islam Seyyed Alireza ADIANI;;M;;;144893;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144891;EU.8915.35;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;ADYANI;Seyed Alireza;;Seyed Alireza ADYANI;;M;;Head of the ideological-political office of Iran’s Law Enforcement Forces (LEF);144894;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144891;EU.8915.35;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;145098;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955 +28/10/2022;144895;EU.8916.34;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;آزادی علی;;M;;;144896;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144895;EU.8916.34;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;AZADI;Ali;;Ali AZADI;;M;Second Brigadier General;Head of Iran’s Law Enforcement Forces (LEF) in Kurdistan;144897;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144895;EU.8916.34;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;144900;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955 +28/10/2022;144901;EU.8932.73;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;شالیکار محمد زمان;;M;;;144902;EN;SHALIKAR Mohammed Zaman;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144901;EU.8932.73;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;SHALIKAR;Mohammed Zaman;;Mohammed Zaman SHALIKAR;;M;Colonel;Head of Iran’s Law Enforcement Forces (LEF) in Babol, Mazandaran;144903;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144901;EU.8932.73;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;145099;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955 +28/10/2022;144904;EU.8933.72;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;حیدری سلمان;;M;;;144906;EN;HEIDARI Salman;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144904;EU.8933.72;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;HEIDARI;Salman;;Salman HEIDARI;;M;Colonel;Head of Iran’s Law Enforcement Forces (LEF) in Bukan;144907;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144904;EU.8933.72;;2022-10-17;;(Date of UN designation: 2022-10-17);P;person;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;144905;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955 +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;غشتى إرشاد;;;;;144910;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Iran’s Morality Police;;;;Special police unit that is part of Iran’s Law Enforcement Forces (LEF) and enforces the strict dress rules for women;144911;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Póilíní Moráltachta na hIaráine;GA;;;;144981;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Police des mœurs iranienne;FR;;;;144983;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Policía de la moral de Irán;ES;;;;144987;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Polícia da Moralidade do Irão;PT;;;;144991;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Polizia morale iraniana;IT;;;;144995;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Poliția iraniană a moralității;RO;;;;144999;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Iraanse zedenpolitie;NL;;;;145005;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Irans moralpolis;SV;;;;145009;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Pulizija tal-Moralità tal-Iran;MT;;;;145023;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Ιρανική Αστυνομία Ηθών;EL;;;;145027;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Патрули за напътствие;BG;;;;145030;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Патрули за ислямско напътствие;BG;;;;145031;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Иранска нравствена полиция;BG;;;;145032;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Iranische Sittenpolizei;DE;;;;145036;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Irans moralpoliti;DA;;;;145038;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Iranin siveyspoliisi;FI;;;;145041;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Iráni Erkölcsrendészet;HU;;;;145045;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Iránymutató Őrjárat;HU;;;;145046;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Iszlám Iránymutató Őrjárat;HU;;;;145047;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Irańska Policja Obyczajowa;PL;;;;145051;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Patrole Korekcyjne;PL;;;;145052;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Islamski Patrol Korekcyjny;PL;;;;145053;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Íránská mravnostní policie;CS;;;;145057;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Gasht-e-Ershad islámské hlídky;CS;;;;145058;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Gasht-e-Ershad;;;;;145059;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Guidance Patrols;;;;;145060;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Islamic Guidance Patrol;;;;;145061;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;usmerňovacie hliadky;SK;;;;145065;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Islamská usmerňovacia hliadka;SK;;;;145066;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Iránska mravnostná polícia;SK;;;;145067;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;policija za ćudoređe;HR;;;;145071;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;policija za islamsko usmjeravanje;HR;;;;145072;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Iranska policija za moralnost;HR;;;;145073;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Iranska policija za moralo;SL;;;;145077;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Irano moralės policija;LT;;;;145081;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Vadības patruļa;LV;;;;145085;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Islāmiskās vadības patruļa;LV;;;;145086;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Irānas Tikumības policija;LV;;;;145087;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;juhiste patrull;ET;;;;145091;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;islamijuhiste patrull;ET;;;;145092;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Iraani moraalipolitsei;ET;;;;145093;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144908;EU.8934.71;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;Tehran;Vozara Street, corner of 25th Street, District 6;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);144909;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;بسیج مستضعفین;;;;;144913;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Basij-e Mostazafan;;;;;144914;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Basij Resistance Force;;;;Paramilitary organisation operating under the Islamic Revolutionary Guard Corps (IRGC) with branches throughout Iran;144915;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Force de résistance Basij;FR;;;;144984;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Fuerza de Resistencia Basij;ES;;;;144988;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Força de Resistência Basij;PT;;;;144992;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Forza di resistenza Basij;IT;;;;144996;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Basij-weermacht;NL;;;;145006;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Motståndsstyrkan Basij;;;;;145010;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Forța de rezistență Basij;RO;;;;145020;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Forza ta’ Reżistenza ta’ Basij;MT;;;;145024;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Αντιστασιακή Δύναμη Basij;EL;;;;145028;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;сили за съпротива „Басидж“;BG;;;;145033;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Bassidsch-Milizen;DE;;;;145037;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Basij-liike;FI;;;;145042;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Basidzs Ellenállási Haderő;HU;;;;145048;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Siły Oporu Basidż;PL;;;;145054;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Jednotky Basídž;CS;;;;145062;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Milícia Basídž;SK;;;;145068;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Pokret otpora Basij;HR;;;;145074;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Odporniške sile Basij;SL;;;;145078;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;pasipriešinimo pajėgos „Basij“;LT;;;;145082;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Basij pretošanās spēki;LV;;;;145088;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144912;EU.8935.70;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Basij vastupanuliikumine;ET;;;;145094;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;قرارگاه دفاع سایبری;;;;;144918;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Cyber Defence Command of the Islamic Revolutionary Guard Corps;;;;;144919;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Commandement de la cyberdéfense du Corps des gardiens de la révolution islamique;FR;;;;144985;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Mando de la Defensa Cibernética del Cuerpo de los Guardianes de la Revolución Islámica;ES;;;;144989;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Comando de Ciberdefesa do Corpo dos Guardas da Revolução Islâmica;PT;;;;144993;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Comando per la ciberdifesa del Corpo delle guardie rivoluzionarie islamiche;IT;;;;144997;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Cyber-Abwehrkommando des Korps der Islamischen Revolutionsgarde;DE;;;;145003;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Cyberdefensiecommando van de Islamitische Revolutionaire Garde;NL;;;;145007;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Islamiska revolutionsgardets kommando för cyberförsvar;SV;;;;145011;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Comandamentul de apărare cibernetică al Corpului Gardienilor Revoluției Iraniene;RO;;;;145021;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Kmand taċ-Ċiberdifiża tal-Korp tal-Gwardjani tar-Rivoluzzjoni Iżlamika;MT;;;;145025;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Διοίκηση Κυβερνοάμυνας των Φρουρών της Ισλαμικής Επανάστασης;EL;;;;145029;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;командване за киберотбрана на Корпуса на гвардейците на ислямската революция;BG;;;;145034;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Den Islamiske Revolutionsgardes cyberforsvarskommando;DA;;;;145039;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Islamilaisen vallankumouskaartin kyberpuolustusosasto;FI;;;;145043;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Az Iszlám Forradalmi Gárda Kibervédelmi Parancsnoksága;;;;;145049;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Dowództwo Cyberobrony Korpusu Strażników Rewolucji Islamskiej;PL;;;;145055;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Velitelství kybernetické obrany Islámských revolučních gard;CS;;;;145063;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Veliteľstvo kybernetickej obrany Zboru islamských revolučných gárd;SK;;;;145069;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Zapovjedništvo Iranske revolucionarne garde za kiberobranu;HR;;;;145075;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Poveljstvo za kibernetsko obrambo v sklopu Islamske revolucionarne garde;SL;;;;145079;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Islamo revoliucijos gvardijos (IRGC) Kibernetinės gynybos vadavietė;LT;;;;145083;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Islāma revolucionāro gvardu korpusa Kiberaizsardzības pavēlniecība;LV;;;;145089;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Islami revolutsioonilise kaardiväe küberkaitsekeskus;ET;;;;145095;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144916;EU.8936.69;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;Tehran;;;;;;NO;PHONE[+98 26 3448 9826];IR;IRAN (ISLAMIC REPUBLIC OF);144917;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;LEF;;;;;144922;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Law Enforcement Forces of the Islamic Republic of Iran;;;;uniformed police force;144923;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;فرماندهی انتظامی جمهوری اسلامی ایران;;;;;144924;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;FARAJA;;;;;144925;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;NAJA;;;;;144926;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Fórsaí Forfheidhmithe Dlí Phoblacht Ioslamach na hIaráine;GA;;;;144982;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Forces de l’ordre de la République islamique d’Iran;FR;;;;144986;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Fuerza Disciplinaria de la República Islámica de Irán;ES;;;;144990;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Forças Policiais da República Islâmica do Irão;;;;;144994;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Forze dell’ordine della Repubblica islamica dell’Iran;IT;;;;144998;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Δυνάμεις Επιβολής του Νόμου της Ισλαμικής Δημοκρατίας του Ιράν;EL;;;;145002;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Iranische Strafverfolgungskräfte;DE;;;;145004;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Wetshandhavingsdiensten van de Islamitische Republiek Iran;NL;;;;145008;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Islamiska republiken Irans brottsbekämpande styrkor;SV;;;;145012;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Forțele de aplicare a legii ale Republicii Islamice Iran;RO;;;;145022;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Forzi tal-Infurzar tal-Liġi tar-Repubblika Iżlamika tal-Iran;MT;;;;145026;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;правоохранителни сили на Ислямска република Иран;BG;;;;145035;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Den Islamiske Republik Irans retshåndhævende styrker;DA;;;;145040;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Iranin islamilaisen tasavallan lainvalvontajoukot;FI;;;;145044;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Az Iráni Iszlám Köztársaság Bűnüldöző Erői;HU;;;;145050;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Irańskie Organy Ochrony Porządku Publicznego;PL;;;;145056;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Donucovací orgány Íránské islámské republiky;CS;;;;145064;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Sily presadzovania práva Iránskej islamskej republiky;SK;;;;145070;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Snage za izvršavanje zakonodavstva Islamske Republike Irana;HR;;;;145076;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Sile pregona Islamske republike Iran;SL;;;;145080;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Irano Islamo Respublikos teisėsaugos pajėgos;LT;;;;145084;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Irānas Islāma Republikas tiesībaizsardzības spēki;LV;;;;145090;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;Iraani Islamivabariigi õiguskaitsejõud;ET;;;;145096;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;144920;EU.8937.68;;2022-10-17;;(Date of UN designation: 2022-10-17);E;enterprise;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;Tehran;;;;;;NO;;IR;IRAN (ISLAMIC REPUBLIC OF);144921;EN;;amendment;council;2022-10-17;2022-10-17;2022/1955 (OJ L269I);IRN;https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R1955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145109;EU.8952.11;;2022-10-20;;(Date of UN designation: 2022-10-20);P;person;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;محمد حسین باقری;;M;;;145110;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145109;EU.8952.11;;2022-10-20;;(Date of UN designation: 2022-10-20);P;person;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;BAGHERI;Mohammad Hossein;;Mohammad Hossein BAGHERI;;M;Major-General;Chief of Staff of Iran’s Armed Forces;145111;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145109;EU.8952.11;;2022-10-20;;(Date of UN designation: 2022-10-20);P;person;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;NO;GREGORIAN;;;;Tehran;IR;IRAN (ISLAMIC REPUBLIC OF);145200;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145109;EU.8952.11;;2022-10-20;;(Date of UN designation: 2022-10-20);P;person;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;145201;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985 +28/10/2022;145112;EU.8953.10;;2022-10-20;;(Date of UN designation: 2022-10-20);P;person;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;GHOREISHI;Sayyed Hojatolah;;Sayyed Hojatolah GHOREISHI;;M;General;;145114;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145112;EU.8953.10;;2022-10-20;;(Date of UN designation: 2022-10-20);P;person;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;QUREISHI;Sayed Hojatollah;;Sayed Hojatollah QUREISHI;;M;General;Head of the Supply, Research, and Industrial Affairs Division at the Iranian Ministry of Defense and Armed Forces Logistics (MODAFL);145115;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145112;EU.8953.10;;2022-10-20;;(Date of UN designation: 2022-10-20);P;person;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;سید حجت الله قریشی;;M;;;145116;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145112;EU.8953.10;;2022-10-20;;(Date of UN designation: 2022-10-20);P;person;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;145113;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985 +28/10/2022;145150;EU.8973.45;;2022-10-20;;(Date of UN designation: 2022-10-20);P;person;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;Agha Jani;Said;;Said Agha Jani;;M;;;145153;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145150;EU.8973.45;;2022-10-20;;(Date of UN designation: 2022-10-20);P;person;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;Ara Jani;Said;;Said Ara Jani;;M;;;145154;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145150;EU.8973.45;;2022-10-20;;(Date of UN designation: 2022-10-20);P;person;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;Ara Jani;Saeed;;Saeed Ara Jani;;M;;;145155;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145150;EU.8973.45;;2022-10-20;;(Date of UN designation: 2022-10-20);P;person;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;Saeed AGHAJANI;;M;Brigadier-General;Commander of the Islamic Revolutionary Guard Corps Aerospace Force (IRGC ASF) UAV Command;145156;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145150;EU.8973.45;;2022-10-20;;(Date of UN designation: 2022-10-20);P;person;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;سعید آقاجانی;;M;;;145202;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145150;EU.8973.45;;2022-10-20;;(Date of UN designation: 2022-10-20);P;person;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969-04-03;3;4;1969;;;NO;GREGORIAN;;;;;00;UNKNOWN;145151;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145150;EU.8973.45;;2022-10-20;;(Date of UN designation: 2022-10-20);P;person;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"V47528711 (passport-National passport) ";NO;NO;NO;NO;NO;;;;;;;passport;National passport;;IR;;145152;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;; +28/10/2022;145150;EU.8973.45;;2022-10-20;;(Date of UN designation: 2022-10-20);P;person;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IR;;145203;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985 +28/10/2022;145157;EU.8974.44;;2022-10-20;;(Date of UN designation: 2022-10-20);E;enterprise;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;Shahed Aviation Industries Research Center/Centre;;;;;145158;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145157;EU.8974.44;;2022-10-20;;(Date of UN designation: 2022-10-20);E;enterprise;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;Shahed Aviation Industries;;;;an Islamic Revolutionary Guard Corps Aerospace Force-linked company in Iran responsible for the design and development of the Shahed series of Iranian Unmanned Aerial Vehicles (UAVs);145159;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145157;EU.8974.44;;2022-10-20;;(Date of UN designation: 2022-10-20);E;enterprise;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;مرکز تحقیقات صنایع هوایی شاهد;FA;;;;145204;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145157;EU.8974.44;;2022-10-20;;(Date of UN designation: 2022-10-20);E;enterprise;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;صنایع هوایی شاهد;FA;;;;145205;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145157;EU.8974.44;;2022-10-20;;(Date of UN designation: 2022-10-20);E;enterprise;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;Centro de Investigação das Indústrias de Aviação Shahed;PT;;;;145208;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145157;EU.8974.44;;2022-10-20;;(Date of UN designation: 2022-10-20);E;enterprise;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;Indústrias de Aviação Shahed;PT;;;;145209;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145157;EU.8974.44;;2022-10-20;;(Date of UN designation: 2022-10-20);E;enterprise;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;Centrul de cercetare al Shahed Aviation Industries;RO;;;;145210;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +28/10/2022;145157;EU.8974.44;;2022-10-20;;(Date of UN designation: 2022-10-20);E;enterprise;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;Shahed Aviation Industries Kutatóközpont;HU;;;;145211;EN;;amendment;council;2022-10-20;2022-10-20;2022/1985 (OJ L272 I);UKR;https://eur-lex.europa.eu/legal-content/en/TXT/PDF/?uri=CELEX:32022R1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/version.go b/version.go index edb9b8c..f57cc0a 100644 --- a/version.go +++ b/version.go @@ -4,4 +4,4 @@ package watchman -const Version = "v0.23.1" +const Version = "v0.27.0" diff --git a/webui/package-lock.json b/webui/package-lock.json index 993867e..35a2aad 100644 --- a/webui/package-lock.json +++ b/webui/package-lock.json @@ -8,14 +8,14 @@ "name": "watchman-search-ui", "version": "0.1.0", "dependencies": { - "express": "4.18.1", + "express": "4.18.2", "express-winston": "3.4.0", "history": "4.10.1", "http-proxy-middleware": "0.21.0", "react": "18.2.0", "react-dom": "18.2.0", "react-scripts": "^5.0.1", - "winston": "3.8.1" + "winston": "3.8.2" }, "devDependencies": { "@material-ui/core": "4.12.4", @@ -24,6 +24,25 @@ "styled-components": "4.4.1" } }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/@ampproject/remapping": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", @@ -37,20 +56,21 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", - "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", "dependencies": { - "@babel/highlight": "^7.16.7" + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.10.tgz", - "integrity": "sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.3.tgz", + "integrity": "sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==", "engines": { "node": ">=6.9.0" } @@ -84,43 +104,23 @@ "url": "https://opencollective.com/babel" } }, - "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@babel/eslint-parser": { - "version": "7.17.0", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.17.0.tgz", - "integrity": "sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.23.3.tgz", + "integrity": "sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==", "dependencies": { - "eslint-scope": "^5.1.1", + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", "eslint-visitor-keys": "^2.1.0", - "semver": "^6.3.0" + "semver": "^6.3.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || >=14.0.0" }, "peerDependencies": { - "@babel/core": ">=7.11.0", + "@babel/core": "^7.11.0", "eslint": "^7.5.0 || ^8.0.0" } }, - "node_modules/@babel/eslint-parser/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", @@ -129,95 +129,84 @@ "node": ">=10" } }, - "node_modules/@babel/eslint-parser/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/@babel/eslint-parser/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@babel/generator": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.17.10.tgz", - "integrity": "sha512-46MJZZo9y3o4kmhBVc7zW7i8dtR1oIK/sdO5NcfcZRhTGYi+KKJRtHNgsU6c4VUcJmUNV/LQdebD/9Dlv4K+Tg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.3.tgz", + "integrity": "sha512-keeZWAV4LU3tW0qRi19HRpabC/ilM0HRBBzf9/k8FFiG4KVpiv0FIy4hHfLfFQZNhziCTPTmd59zoyv6DNISzg==", "dependencies": { - "@babel/types": "^7.17.10", - "@jridgewell/gen-mapping": "^0.1.0", + "@babel/types": "^7.23.3", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz", - "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", "dependencies": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz", - "integrity": "sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", + "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", "dependencies": { - "@babel/helper-explode-assignable-expression": "^7.16.7", - "@babel/types": "^7.16.7" + "@babel/types": "^7.22.15" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.10.tgz", - "integrity": "sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", + "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", "dependencies": { - "@babel/compat-data": "^7.17.10", - "@babel/helper-validator-option": "^7.16.7", - "browserslist": "^4.20.2", - "semver": "^6.3.0" + "@babel/compat-data": "^7.22.9", + "@babel/helper-validator-option": "^7.22.15", + "browserslist": "^4.21.9", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.9.tgz", - "integrity": "sha512-kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz", + "integrity": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.16.7", - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.17.9", - "@babel/helper-member-expression-to-functions": "^7.17.7", - "@babel/helper-optimise-call-expression": "^7.16.7", - "@babel/helper-replace-supers": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -227,12 +216,13 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.17.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz", - "integrity": "sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", + "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.16.7", - "regexpu-core": "^5.0.1" + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -242,221 +232,207 @@ } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz", - "integrity": "sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==", - "dependencies": { - "@babel/helper-compilation-targets": "^7.13.0", - "@babel/helper-module-imports": "^7.12.13", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/traverse": "^7.13.0", + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz", + "integrity": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" + "resolve": "^1.14.2" }, "peerDependencies": { - "@babel/core": "^7.4.0-0" - } - }, - "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/@babel/helper-environment-visitor": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz", - "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==", - "dependencies": { - "@babel/types": "^7.16.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-explode-assignable-expression": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz", - "integrity": "sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==", - "dependencies": { - "@babel/types": "^7.16.7" - }, + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-function-name": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz", - "integrity": "sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", "dependencies": { - "@babel/template": "^7.16.7", - "@babel/types": "^7.17.0" + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-hoist-variables": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz", - "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", "dependencies": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.17.7", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz", - "integrity": "sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", + "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", "dependencies": { - "@babel/types": "^7.17.0" + "@babel/types": "^7.23.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz", - "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", "dependencies": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.22.15" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.17.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz", - "integrity": "sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-module-imports": "^7.16.7", - "@babel/helper-simple-access": "^7.17.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/helper-validator-identifier": "^7.16.7", - "@babel/template": "^7.16.7", - "@babel/traverse": "^7.17.3", - "@babel/types": "^7.17.0" + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz", - "integrity": "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", "dependencies": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz", - "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz", - "integrity": "sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", + "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.16.7", - "@babel/helper-wrap-function": "^7.16.8", - "@babel/types": "^7.16.8" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-wrap-function": "^7.22.20" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz", - "integrity": "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", + "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", "dependencies": { - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-member-expression-to-functions": "^7.16.7", - "@babel/helper-optimise-call-expression": "^7.16.7", - "@babel/traverse": "^7.16.7", - "@babel/types": "^7.16.7" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-optimise-call-expression": "^7.22.5" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-simple-access": { - "version": "7.17.7", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz", - "integrity": "sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", "dependencies": { - "@babel/types": "^7.17.0" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz", - "integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", "dependencies": { - "@babel/types": "^7.16.0" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz", - "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dependencies": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", - "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz", - "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", + "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz", - "integrity": "sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", + "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", "dependencies": { - "@babel/helper-function-name": "^7.16.7", - "@babel/template": "^7.16.7", - "@babel/traverse": "^7.16.8", - "@babel/types": "^7.16.8" + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.15", + "@babel/types": "^7.22.19" }, "engines": { "node": ">=6.9.0" @@ -476,12 +452,12 @@ } }, "node_modules/@babel/highlight": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.9.tgz", - "integrity": "sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "chalk": "^2.0.0", + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", "js-tokens": "^4.0.0" }, "engines": { @@ -489,9 +465,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.17.10.tgz", - "integrity": "sha512-n2Q6i+fnJqzOaq2VkdXxy2TCPCWQZHiCo0XqmrCvDWcZQKRyZzYi4Z0yxlBuN0w+r2ZHmre+Q087DSrw3pbJDQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.3.tgz", + "integrity": "sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw==", "bin": { "parser": "bin/babel-parser.js" }, @@ -500,11 +476,11 @@ } }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz", - "integrity": "sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz", + "integrity": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -514,13 +490,13 @@ } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz", - "integrity": "sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz", + "integrity": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", - "@babel/plugin-proposal-optional-chaining": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.23.3" }, "engines": { "node": ">=6.9.0" @@ -529,29 +505,29 @@ "@babel/core": "^7.13.0" } }, - "node_modules/@babel/plugin-proposal-async-generator-functions": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz", - "integrity": "sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==", + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.3.tgz", + "integrity": "sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-remap-async-to-generator": "^7.16.8", - "@babel/plugin-syntax-async-generators": "^7.8.4" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-proposal-class-properties": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz", - "integrity": "sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" }, "engines": { "node": ">=6.9.0" @@ -560,93 +536,16 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-class-static-block": { - "version": "7.17.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.17.6.tgz", - "integrity": "sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.17.6", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0" - } - }, "node_modules/@babel/plugin-proposal-decorators": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.17.9.tgz", - "integrity": "sha512-EfH2LZ/vPa2wuPwJ26j+kYRkaubf89UlwxKXtxqEm57HrgSEYDB8t4swFP+p8LcI9yiP9ZRJJjo/58hS6BnaDA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.3.tgz", + "integrity": "sha512-u8SwzOcP0DYSsa++nHd/9exlHb0NAlHCb890qtZZbSwPX2bFv8LBEztxwN7Xg/dS8oAFFidhrI9PBcLBJSkGRQ==", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.17.9", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-replace-supers": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/plugin-syntax-decorators": "^7.17.0", - "charcodes": "^0.2.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-dynamic-import": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz", - "integrity": "sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-export-namespace-from": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz", - "integrity": "sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-json-strings": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz", - "integrity": "sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-json-strings": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz", - "integrity": "sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/plugin-syntax-decorators": "^7.23.3" }, "engines": { "node": ">=6.9.0" @@ -656,11 +555,12 @@ } }, "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz", - "integrity": "sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" }, "engines": { @@ -671,11 +571,12 @@ } }, "node_modules/@babel/plugin-proposal-numeric-separator": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz", - "integrity": "sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-numeric-separator": "^7.10.4" }, "engines": { @@ -685,46 +586,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-object-rest-spread": { - "version": "7.17.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz", - "integrity": "sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==", - "dependencies": { - "@babel/compat-data": "^7.17.0", - "@babel/helper-compilation-targets": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.16.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-optional-catch-binding": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz", - "integrity": "sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/plugin-proposal-optional-chaining": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz", - "integrity": "sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, "engines": { @@ -735,12 +604,13 @@ } }, "node_modules/@babel/plugin-proposal-private-methods": { - "version": "7.16.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz", - "integrity": "sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.16.10", - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" }, "engines": { "node": ">=6.9.0" @@ -750,15 +620,9 @@ } }, "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz", - "integrity": "sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.16.7", - "@babel/helper-create-class-features-plugin": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - }, + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "engines": { "node": ">=6.9.0" }, @@ -766,27 +630,15 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-unicode-property-regex": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz", - "integrity": "sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-bigint": { @@ -806,6 +658,9 @@ "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-class-static-block": { @@ -823,11 +678,11 @@ } }, "node_modules/@babel/plugin-syntax-decorators": { - "version": "7.17.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.17.0.tgz", - "integrity": "sha512-qWe85yCXsvDEluNP0OyeQjH63DlhAR3W7K9BxxU1MvbDb48tgBG+Ao6IJJ6smPDrrVzSQZrbF6donpkFBMcs3A==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.23.3.tgz", + "integrity": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -859,11 +714,39 @@ } }, "node_modules/@babel/plugin-syntax-flow": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.16.7.tgz", - "integrity": "sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.23.3.tgz", + "integrity": "sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz", + "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz", + "integrity": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -889,14 +772,17 @@ "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz", - "integrity": "sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -911,6 +797,9 @@ "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { @@ -919,6 +808,9 @@ "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-numeric-separator": { @@ -927,6 +819,9 @@ "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-object-rest-spread": { @@ -935,6 +830,9 @@ "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-optional-catch-binding": { @@ -943,6 +841,9 @@ "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-optional-chaining": { @@ -951,6 +852,9 @@ "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-private-property-in-object": { @@ -976,14 +880,17 @@ }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.17.10.tgz", - "integrity": "sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -992,12 +899,44 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz", - "integrity": "sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz", + "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.3.tgz", + "integrity": "sha512-59GsVNavGxAXCDDbakWSMJhajASb4kBCqDjqJsv+p5nKdbz7istmZ3HrX3L2LuiI80+zsOADCvooqQH3qGCucQ==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.20", + "@babel/plugin-syntax-async-generators": "^7.8.4" }, "engines": { "node": ">=6.9.0" @@ -1007,13 +946,13 @@ } }, "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz", - "integrity": "sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz", + "integrity": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==", "dependencies": { - "@babel/helper-module-imports": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-remap-async-to-generator": "^7.16.8" + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.20" }, "engines": { "node": ">=6.9.0" @@ -1023,11 +962,11 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz", - "integrity": "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz", + "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1037,11 +976,11 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz", - "integrity": "sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.3.tgz", + "integrity": "sha512-QPZxHrThbQia7UdvfpaRRlq/J9ciz1J4go0k+lPBXbgaNeY7IQrBj/9ceWjvMMI07/ZBzHl/F0R/2K0qH7jCVw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1050,18 +989,50 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz", + "integrity": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.3.tgz", + "integrity": "sha512-PENDVxdr7ZxKPyi5Ffc0LjXdnJyrJxyqF5T5YjlVg4a0VFfQHW0r8iAtRiDXkfHlu1wwcvdtnndGYIeJLSuRMQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz", - "integrity": "sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.16.7", - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.16.7", - "@babel/helper-optimise-call-expression": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-replace-supers": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.3.tgz", + "integrity": "sha512-FGEQmugvAEu2QtgtU0uTASXevfLMFfBeVCIIdcQhn/uBQsMTjBajdnAtanQlOcuihWh10PZ7+HWvc7NtBwP74w==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-split-export-declaration": "^7.22.6", "globals": "^11.1.0" }, "engines": { @@ -1072,11 +1043,12 @@ } }, "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz", - "integrity": "sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz", + "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.15" }, "engines": { "node": ">=6.9.0" @@ -1086,11 +1058,11 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.17.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.7.tgz", - "integrity": "sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz", + "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1100,12 +1072,12 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz", - "integrity": "sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz", + "integrity": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1115,11 +1087,26 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz", - "integrity": "sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz", + "integrity": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.3.tgz", + "integrity": "sha512-vTG+cTGxPFou12Rj7ll+eD5yWeNl5/8xvQvF08y5Gv3v4mZQoyFf8/n9zg4q5vvCWt5jmgymfzMAldO7orBn7A==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" }, "engines": { "node": ">=6.9.0" @@ -1129,12 +1116,27 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz", - "integrity": "sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz", + "integrity": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==", "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.3.tgz", + "integrity": "sha512-yCLhW34wpJWRdTxxWtFZASJisihrfyMOTOQexhVzA78jlU+dH7Dw+zQgcPepQ5F3C6bAIiblZZ+qBggJdHiBAg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" }, "engines": { "node": ">=6.9.0" @@ -1144,12 +1146,12 @@ } }, "node_modules/@babel/plugin-transform-flow-strip-types": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.16.7.tgz", - "integrity": "sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.23.3.tgz", + "integrity": "sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-flow": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-flow": "^7.23.3" }, "engines": { "node": ">=6.9.0" @@ -1159,11 +1161,11 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz", - "integrity": "sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.3.tgz", + "integrity": "sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1173,13 +1175,28 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz", - "integrity": "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz", + "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.3.tgz", + "integrity": "sha512-H9Ej2OiISIZowZHaBwF0tsJOih1PftXJtE8EWqlEIwpc7LMTGq0rPOrywKLQ4nefzx8/HMR0D3JGXoMHYvhi0A==", "dependencies": { - "@babel/helper-compilation-targets": "^7.16.7", - "@babel/helper-function-name": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" }, "engines": { "node": ">=6.9.0" @@ -1189,11 +1206,26 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz", - "integrity": "sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz", + "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.3.tgz", + "integrity": "sha512-+pD5ZbxofyOygEp+zZAfujY2ShNCXRpDRIPOiBmTO693hhyOEteZgl876Xs9SAHPQpcV0vz8LvA/T+w8AzyX8A==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" }, "engines": { "node": ">=6.9.0" @@ -1203,11 +1235,11 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz", - "integrity": "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz", + "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1217,13 +1249,12 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz", - "integrity": "sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz", + "integrity": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==", "dependencies": { - "@babel/helper-module-transforms": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1233,14 +1264,13 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.9.tgz", - "integrity": "sha512-2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz", + "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", "dependencies": { - "@babel/helper-module-transforms": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-simple-access": "^7.17.7", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1250,15 +1280,14 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.17.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.17.8.tgz", - "integrity": "sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz", + "integrity": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==", "dependencies": { - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-module-transforms": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-validator-identifier": "^7.16.7", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.20" }, "engines": { "node": ">=6.9.0" @@ -1268,12 +1297,12 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz", - "integrity": "sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz", + "integrity": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==", "dependencies": { - "@babel/helper-module-transforms": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1283,11 +1312,12 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.17.10.tgz", - "integrity": "sha512-v54O6yLaJySCs6mGzaVOUw9T967GnH38T6CQSAtnzdNPwu84l2qAjssKzo/WSO8Yi7NF+7ekm5cVbF/5qiIgNA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.17.0" + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1297,11 +1327,59 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz", - "integrity": "sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz", + "integrity": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.3.tgz", + "integrity": "sha512-xzg24Lnld4DYIdysyf07zJ1P+iIfJpxtVFOzX4g+bsJ3Ng5Le7rXx9KwqKzuyaUeRnt+I1EICwQITqc0E2PmpA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.3.tgz", + "integrity": "sha512-s9GO7fIBi/BLsZ0v3Rftr6Oe4t0ctJ8h4CCXfPoEJwmvAPMyNrfkOOJzm6b9PX9YXcCJWWQd/sBF/N26eBiMVw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.3.tgz", + "integrity": "sha512-VxHt0ANkDmu8TANdE9Kc0rndo/ccsmfe2Cx2y5sI4hu3AukHQ5wAu4cM7j3ba8B9548ijVyclBU+nuDQftZsog==", + "dependencies": { + "@babel/compat-data": "^7.23.3", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.23.3" }, "engines": { "node": ">=6.9.0" @@ -1311,12 +1389,43 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz", - "integrity": "sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz", + "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-replace-supers": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.3.tgz", + "integrity": "sha512-LxYSb0iLjUamfm7f1D7GpiS4j0UAC8AOiehnsGAP8BEsIX8EOi3qV6bbctw8M7ZvLtcoZfZX5Z7rN9PlWk0m5A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.3.tgz", + "integrity": "sha512-zvL8vIfIUgMccIAK1lxjvNv572JHFJIKb4MWBz5OGdBQA0fB0Xluix5rmOby48exiJc987neOmP/m9Fnpkz3Tg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, "engines": { "node": ">=6.9.0" @@ -1326,11 +1435,43 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz", - "integrity": "sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz", + "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz", + "integrity": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.3.tgz", + "integrity": "sha512-a5m2oLNFyje2e/rGKjVfAELTVI5mbA0FeZpBnkOWWV7eSmKQ+T/XW0Vf+29ScLzSxX+rnsarvU0oie/4m6hkxA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" }, "engines": { "node": ">=6.9.0" @@ -1340,11 +1481,11 @@ } }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz", - "integrity": "sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz", + "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1354,22 +1495,25 @@ } }, "node_modules/@babel/plugin-transform-react-constant-elements": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.14.5.tgz", - "integrity": "sha512-NBqLEx1GxllIOXJInJAQbrnwwYJsV3WaMHIcOwD8rhYS0AabTWn7kHdHgPgu5RmHLU0q4DMxhAMu8ue/KampgQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.23.3.tgz", + "integrity": "sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-react-display-name": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.7.tgz", - "integrity": "sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz", + "integrity": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1379,15 +1523,15 @@ } }, "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.17.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.17.3.tgz", - "integrity": "sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.16.7", - "@babel/helper-module-imports": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-jsx": "^7.16.7", - "@babel/types": "^7.17.0" + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.15.tgz", + "integrity": "sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.22.5", + "@babel/types": "^7.22.15" }, "engines": { "node": ">=6.9.0" @@ -1397,11 +1541,11 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-development": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.7.tgz", - "integrity": "sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz", + "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==", "dependencies": { - "@babel/plugin-transform-react-jsx": "^7.16.7" + "@babel/plugin-transform-react-jsx": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1411,12 +1555,12 @@ } }, "node_modules/@babel/plugin-transform-react-pure-annotations": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.7.tgz", - "integrity": "sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.23.3.tgz", + "integrity": "sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1426,11 +1570,12 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.17.9.tgz", - "integrity": "sha512-Lc2TfbxR1HOyn/c6b4Y/b6NHoTb67n/IoWLxTu4kC7h4KQnWlhCq2S8Tx0t2SVvv5Uu87Hs+6JEJ5kt2tYGylQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz", + "integrity": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==", "dependencies": { - "regenerator-transform": "^0.15.0" + "@babel/helper-plugin-utils": "^7.22.5", + "regenerator-transform": "^0.15.2" }, "engines": { "node": ">=6.9.0" @@ -1440,11 +1585,11 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz", - "integrity": "sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz", + "integrity": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1454,16 +1599,16 @@ } }, "node_modules/@babel/plugin-transform-runtime": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.17.10.tgz", - "integrity": "sha512-6jrMilUAJhktTr56kACL8LnWC5hx3Lf27BS0R0DSyW/OoJfb/iTHeE96V3b1dgKG3FSFdd/0culnYWMkjcKCig==", - "dependencies": { - "@babel/helper-module-imports": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7", - "babel-plugin-polyfill-corejs2": "^0.3.0", - "babel-plugin-polyfill-corejs3": "^0.5.0", - "babel-plugin-polyfill-regenerator": "^0.3.0", - "semver": "^6.3.0" + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.3.tgz", + "integrity": "sha512-XcQ3X58CKBdBnnZpPaQjgVMePsXtSZzHoku70q9tUAQp02ggPQNM04BF3RvlW1GSM/McbSOQAzEK4MXbS7/JFg==", + "dependencies": { + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -1472,20 +1617,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz", - "integrity": "sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz", + "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1495,12 +1632,12 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz", - "integrity": "sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz", + "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1510,11 +1647,11 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz", - "integrity": "sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz", + "integrity": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1524,11 +1661,11 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz", - "integrity": "sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz", + "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1538,11 +1675,11 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz", - "integrity": "sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz", + "integrity": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1552,13 +1689,14 @@ } }, "node_modules/@babel/plugin-transform-typescript": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.8.tgz", - "integrity": "sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.3.tgz", + "integrity": "sha512-ogV0yWnq38CFwH20l2Afz0dfKuZBx9o/Y2Rmh5vuSS0YD1hswgEgTfyTzuSrT2q9btmHRSqYoSfwFUVaC1M1Jw==", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-typescript": "^7.16.7" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-typescript": "^7.23.3" }, "engines": { "node": ">=6.9.0" @@ -1568,11 +1706,26 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz", - "integrity": "sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz", + "integrity": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz", + "integrity": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1582,12 +1735,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz", - "integrity": "sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz", + "integrity": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1596,37 +1749,42 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/preset-env": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.17.10.tgz", - "integrity": "sha512-YNgyBHZQpeoBSRBg0xixsZzfT58Ze1iZrajvv0lJc70qDDGuGfonEnMGfWeSY0mQ3JTuCWFbMkzFRVafOyJx4g==", + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz", + "integrity": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==", "dependencies": { - "@babel/compat-data": "^7.17.10", - "@babel/helper-compilation-targets": "^7.17.10", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-validator-option": "^7.16.7", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.7", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.7", - "@babel/plugin-proposal-async-generator-functions": "^7.16.8", - "@babel/plugin-proposal-class-properties": "^7.16.7", - "@babel/plugin-proposal-class-static-block": "^7.17.6", - "@babel/plugin-proposal-dynamic-import": "^7.16.7", - "@babel/plugin-proposal-export-namespace-from": "^7.16.7", - "@babel/plugin-proposal-json-strings": "^7.16.7", - "@babel/plugin-proposal-logical-assignment-operators": "^7.16.7", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7", - "@babel/plugin-proposal-numeric-separator": "^7.16.7", - "@babel/plugin-proposal-object-rest-spread": "^7.17.3", - "@babel/plugin-proposal-optional-catch-binding": "^7.16.7", - "@babel/plugin-proposal-optional-chaining": "^7.16.7", - "@babel/plugin-proposal-private-methods": "^7.16.11", - "@babel/plugin-proposal-private-property-in-object": "^7.16.7", - "@babel/plugin-proposal-unicode-property-regex": "^7.16.7", + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.3.tgz", + "integrity": "sha512-ovzGc2uuyNfNAs/jyjIGxS8arOHS5FENZaNn4rtE7UdKMMkqHCvboHfcuhWLZNX5cB44QfcGNWjaevxMzzMf+Q==", + "dependencies": { + "@babel/compat-data": "^7.23.3", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.23.3", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.3", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.23.3", + "@babel/plugin-syntax-import-attributes": "^7.23.3", + "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", @@ -1636,45 +1794,61 @@ "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.16.7", - "@babel/plugin-transform-async-to-generator": "^7.16.8", - "@babel/plugin-transform-block-scoped-functions": "^7.16.7", - "@babel/plugin-transform-block-scoping": "^7.16.7", - "@babel/plugin-transform-classes": "^7.16.7", - "@babel/plugin-transform-computed-properties": "^7.16.7", - "@babel/plugin-transform-destructuring": "^7.17.7", - "@babel/plugin-transform-dotall-regex": "^7.16.7", - "@babel/plugin-transform-duplicate-keys": "^7.16.7", - "@babel/plugin-transform-exponentiation-operator": "^7.16.7", - "@babel/plugin-transform-for-of": "^7.16.7", - "@babel/plugin-transform-function-name": "^7.16.7", - "@babel/plugin-transform-literals": "^7.16.7", - "@babel/plugin-transform-member-expression-literals": "^7.16.7", - "@babel/plugin-transform-modules-amd": "^7.16.7", - "@babel/plugin-transform-modules-commonjs": "^7.17.9", - "@babel/plugin-transform-modules-systemjs": "^7.17.8", - "@babel/plugin-transform-modules-umd": "^7.16.7", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.17.10", - "@babel/plugin-transform-new-target": "^7.16.7", - "@babel/plugin-transform-object-super": "^7.16.7", - "@babel/plugin-transform-parameters": "^7.16.7", - "@babel/plugin-transform-property-literals": "^7.16.7", - "@babel/plugin-transform-regenerator": "^7.17.9", - "@babel/plugin-transform-reserved-words": "^7.16.7", - "@babel/plugin-transform-shorthand-properties": "^7.16.7", - "@babel/plugin-transform-spread": "^7.16.7", - "@babel/plugin-transform-sticky-regex": "^7.16.7", - "@babel/plugin-transform-template-literals": "^7.16.7", - "@babel/plugin-transform-typeof-symbol": "^7.16.7", - "@babel/plugin-transform-unicode-escapes": "^7.16.7", - "@babel/plugin-transform-unicode-regex": "^7.16.7", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.17.10", - "babel-plugin-polyfill-corejs2": "^0.3.0", - "babel-plugin-polyfill-corejs3": "^0.5.0", - "babel-plugin-polyfill-regenerator": "^0.3.0", - "core-js-compat": "^3.22.1", - "semver": "^6.3.0" + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.23.3", + "@babel/plugin-transform-async-generator-functions": "^7.23.3", + "@babel/plugin-transform-async-to-generator": "^7.23.3", + "@babel/plugin-transform-block-scoped-functions": "^7.23.3", + "@babel/plugin-transform-block-scoping": "^7.23.3", + "@babel/plugin-transform-class-properties": "^7.23.3", + "@babel/plugin-transform-class-static-block": "^7.23.3", + "@babel/plugin-transform-classes": "^7.23.3", + "@babel/plugin-transform-computed-properties": "^7.23.3", + "@babel/plugin-transform-destructuring": "^7.23.3", + "@babel/plugin-transform-dotall-regex": "^7.23.3", + "@babel/plugin-transform-duplicate-keys": "^7.23.3", + "@babel/plugin-transform-dynamic-import": "^7.23.3", + "@babel/plugin-transform-exponentiation-operator": "^7.23.3", + "@babel/plugin-transform-export-namespace-from": "^7.23.3", + "@babel/plugin-transform-for-of": "^7.23.3", + "@babel/plugin-transform-function-name": "^7.23.3", + "@babel/plugin-transform-json-strings": "^7.23.3", + "@babel/plugin-transform-literals": "^7.23.3", + "@babel/plugin-transform-logical-assignment-operators": "^7.23.3", + "@babel/plugin-transform-member-expression-literals": "^7.23.3", + "@babel/plugin-transform-modules-amd": "^7.23.3", + "@babel/plugin-transform-modules-commonjs": "^7.23.3", + "@babel/plugin-transform-modules-systemjs": "^7.23.3", + "@babel/plugin-transform-modules-umd": "^7.23.3", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.23.3", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.3", + "@babel/plugin-transform-numeric-separator": "^7.23.3", + "@babel/plugin-transform-object-rest-spread": "^7.23.3", + "@babel/plugin-transform-object-super": "^7.23.3", + "@babel/plugin-transform-optional-catch-binding": "^7.23.3", + "@babel/plugin-transform-optional-chaining": "^7.23.3", + "@babel/plugin-transform-parameters": "^7.23.3", + "@babel/plugin-transform-private-methods": "^7.23.3", + "@babel/plugin-transform-private-property-in-object": "^7.23.3", + "@babel/plugin-transform-property-literals": "^7.23.3", + "@babel/plugin-transform-regenerator": "^7.23.3", + "@babel/plugin-transform-reserved-words": "^7.23.3", + "@babel/plugin-transform-shorthand-properties": "^7.23.3", + "@babel/plugin-transform-spread": "^7.23.3", + "@babel/plugin-transform-sticky-regex": "^7.23.3", + "@babel/plugin-transform-template-literals": "^7.23.3", + "@babel/plugin-transform-typeof-symbol": "^7.23.3", + "@babel/plugin-transform-unicode-escapes": "^7.23.3", + "@babel/plugin-transform-unicode-property-regex": "^7.23.3", + "@babel/plugin-transform-unicode-regex": "^7.23.3", + "@babel/plugin-transform-unicode-sets-regex": "^7.23.3", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", + "core-js-compat": "^3.31.0", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -1683,40 +1857,30 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/preset-env/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", "@babel/types": "^7.4.4", "esutils": "^2.0.2" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" } }, "node_modules/@babel/preset-react": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.16.7.tgz", - "integrity": "sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.23.3.tgz", + "integrity": "sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-validator-option": "^7.16.7", - "@babel/plugin-transform-react-display-name": "^7.16.7", - "@babel/plugin-transform-react-jsx": "^7.16.7", - "@babel/plugin-transform-react-jsx-development": "^7.16.7", - "@babel/plugin-transform-react-pure-annotations": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-transform-react-display-name": "^7.23.3", + "@babel/plugin-transform-react-jsx": "^7.22.15", + "@babel/plugin-transform-react-jsx-development": "^7.22.5", + "@babel/plugin-transform-react-pure-annotations": "^7.23.3" }, "engines": { "node": ">=6.9.0" @@ -1726,13 +1890,15 @@ } }, "node_modules/@babel/preset-typescript": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.7.tgz", - "integrity": "sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz", + "integrity": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-validator-option": "^7.16.7", - "@babel/plugin-transform-typescript": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/plugin-transform-modules-commonjs": "^7.23.3", + "@babel/plugin-transform-typescript": "^7.23.3" }, "engines": { "node": ">=6.9.0" @@ -1741,55 +1907,53 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + }, "node_modules/@babel/runtime": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.9.tgz", - "integrity": "sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg==", + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", + "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", "dependencies": { - "regenerator-runtime": "^0.13.4" + "regenerator-runtime": "^0.14.0" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/runtime-corejs3": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.17.9.tgz", - "integrity": "sha512-WxYHHUWF2uZ7Hp1K+D1xQgbgkGUfA+5UPOegEXGt2Y5SMog/rYCVaifLZDbw8UkNXozEqqrZTy6bglL7xTaCOw==", - "dependencies": { - "core-js-pure": "^3.20.2", - "regenerator-runtime": "^0.13.4" - }, - "engines": { - "node": ">=6.9.0" - } + "node_modules/@babel/runtime/node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" }, "node_modules/@babel/template": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", - "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", "dependencies": { - "@babel/code-frame": "^7.16.7", - "@babel/parser": "^7.16.7", - "@babel/types": "^7.16.7" + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.10.tgz", - "integrity": "sha512-VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw==", - "dependencies": { - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.17.10", - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.17.9", - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.17.10", - "@babel/types": "^7.17.10", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.3.tgz", + "integrity": "sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ==", + "dependencies": { + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.3", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.3", + "@babel/types": "^7.23.3", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -1798,11 +1962,12 @@ } }, "node_modules/@babel/types": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.17.10.tgz", - "integrity": "sha512-9O26jG0mBYfGkUYCYZRnBwbVLd1UZOICEr2Em6InB6jVfsAv1GKgwXHmrSg+WFWDmeKTA6vyTZiN8tCSM5Oo3A==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.3.tgz", + "integrity": "sha512-OZnvoH2l8PK5eUvEcUyCt/sXgr/h+UWpVuBbOljwcrAgUl6lpchoQ++PHGyQy1AtYnVA6CEq3y5xeEI10brpXw==", "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.20", "to-fast-properties": "^2.0.0" }, "engines": { @@ -1827,10 +1992,29 @@ "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.0.0.tgz", "integrity": "sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==" }, + "node_modules/@csstools/postcss-cascade-layers": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", + "integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.2", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, "node_modules/@csstools/postcss-color-function": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.0.tgz", - "integrity": "sha512-5D5ND/mZWcQoSfYnSPsXtuiFxhzmhxt6pcjrFLJyldj+p0ZN2vvRpYNX+lahFTtMhAYOa2WmkdGINr0yP0CvGA==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz", + "integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==", "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" @@ -1843,7 +2027,7 @@ "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, "node_modules/@csstools/postcss-color-function/node_modules/postcss-value-parser": { @@ -1852,17 +2036,21 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/@csstools/postcss-font-format-keywords": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.0.tgz", - "integrity": "sha512-oO0cZt8do8FdVBX8INftvIA4lUrKUSCcWUf9IwH9IPWOgKT22oAZFXeHLoDK7nhB2SmkNycp5brxfNMRLIhd6Q==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz", + "integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, "peerDependencies": { - "postcss": "^8.3" + "postcss": "^8.2" } }, "node_modules/@csstools/postcss-font-format-keywords/node_modules/postcss-value-parser": { @@ -1871,17 +2059,21 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/@csstools/postcss-hwb-function": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.0.tgz", - "integrity": "sha512-VSTd7hGjmde4rTj1rR30sokY3ONJph1reCBTUXqeW1fKwETPy1x4t/XIeaaqbMbC5Xg4SM/lyXZ2S8NELT2TaA==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz", + "integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, "peerDependencies": { - "postcss": "^8.3" + "postcss": "^8.2" } }, "node_modules/@csstools/postcss-hwb-function/node_modules/postcss-value-parser": { @@ -1890,9 +2082,9 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/@csstools/postcss-ic-unit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.0.tgz", - "integrity": "sha512-i4yps1mBp2ijrx7E96RXrQXQQHm6F4ym1TOD0D69/sjDjZvQ22tqiEvaNw7pFZTUO5b9vWRHzbHzP9+UKuw+bA==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz", + "integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==", "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" @@ -1900,8 +2092,12 @@ "engines": { "node": "^12 || ^14 || >=16" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, "peerDependencies": { - "postcss": "^8.3" + "postcss": "^8.2" } }, "node_modules/@csstools/postcss-ic-unit/node_modules/postcss-value-parser": { @@ -1910,11 +2106,11 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/@csstools/postcss-is-pseudo-class": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.3.tgz", - "integrity": "sha512-wMQ3GMWrJyRQfvBJsD38ndF/nwHT32xevSn8w2X+iCoWqmhhoj0K7HgdGW8XQhah6sdENBa8yS9gRosdezaQZw==", + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz", + "integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==", "dependencies": { - "@csstools/selector-specificity": "^1.0.0", + "@csstools/selector-specificity": "^2.0.0", "postcss-selector-parser": "^6.0.10" }, "engines": { @@ -1925,21 +2121,48 @@ "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, - "node_modules/@csstools/postcss-normalize-display-values": { + "node_modules/@csstools/postcss-nested-calc": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.0.tgz", - "integrity": "sha512-bX+nx5V8XTJEmGtpWTO6kywdS725t71YSLlxWt78XoHUbELWgoCXeOFymRJmL3SU1TLlKSIi7v52EWqe60vJTQ==", + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz", + "integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, "peerDependencies": { - "postcss": "^8.3" + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-nested-calc/node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/@csstools/postcss-normalize-display-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz", + "integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, "node_modules/@csstools/postcss-normalize-display-values/node_modules/postcss-value-parser": { @@ -1948,9 +2171,9 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/@csstools/postcss-oklab-function": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.0.tgz", - "integrity": "sha512-e/Q5HopQzmnQgqimG9v3w2IG4VRABsBq3itOcn4bnm+j4enTgQZ0nWsaH/m9GV2otWGQ0nwccYL5vmLKyvP1ww==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz", + "integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==", "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" @@ -1963,7 +2186,7 @@ "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, "node_modules/@csstools/postcss-oklab-function/node_modules/postcss-value-parser": { @@ -1991,9 +2214,9 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/@csstools/postcss-stepped-value-functions": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.0.tgz", - "integrity": "sha512-q8c4bs1GumAiRenmFjASBcWSLKrbzHzWl6C2HcaAxAXIiL2rUlUWbqQZUjwVG5tied0rld19j/Mm90K3qI26vw==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz", + "integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -2005,7 +2228,7 @@ "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.3" + "postcss": "^8.2" } }, "node_modules/@csstools/postcss-stepped-value-functions/node_modules/postcss-value-parser": { @@ -2013,10 +2236,56 @@ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, + "node_modules/@csstools/postcss-text-decoration-shorthand": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz", + "integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-text-decoration-shorthand/node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/@csstools/postcss-trigonometric-functions": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz", + "integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-trigonometric-functions/node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, "node_modules/@csstools/postcss-unset-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.1.tgz", - "integrity": "sha512-f1G1WGDXEU/RN1TWAxBPQgQudtLnLQPyiWdtypkPC+mVYNKFKH/HYXSxH4MVNqwF8M0eDsoiU7HumJHCg/L/jg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz", + "integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==", "engines": { "node": "^12 || ^14 || >=16" }, @@ -2025,22 +2294,21 @@ "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.3" + "postcss": "^8.2" } }, "node_modules/@csstools/selector-specificity": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-1.0.0.tgz", - "integrity": "sha512-RkYG5KiGNX0fJ5YoI0f4Wfq2Yo74D25Hru4fxTOioYdQvHBxcrrtTTyT5Ozzh2ejcNrhFy7IEts2WyEY7yi5yw==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", + "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", "engines": { - "node": "^12 || ^14 || >=16" + "node": "^14 || ^16 || >=18" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.3", "postcss-selector-parser": "^6.0.10" } }, @@ -2081,15 +2349,37 @@ "integrity": "sha512-kBa+cDHOR9jpRJ+kcGMsysrls0leukrm68DmFQoMIWQcXdr2cZvyvypWuGYT7U+9kAExUE7+T7r6G3C3A6L8MQ==", "dev": true }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, "node_modules/@eslint/eslintrc": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.3.tgz", - "integrity": "sha512-uGo44hIwoLGNyduRpjdEpovcbMdd+Nv7amtmJxnKmI8xj6yd5LncmSwDa5NgX/41lIFJtkjD6YdVfgEzPfJ5UA==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz", + "integrity": "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==", "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", - "espree": "^9.3.2", - "globals": "^13.9.0", + "espree": "^9.6.0", + "globals": "^13.19.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", @@ -2098,6 +2388,9 @@ }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, "node_modules/@eslint/eslintrc/node_modules/argparse": { @@ -2106,9 +2399,9 @@ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" }, "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.14.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.14.0.tgz", - "integrity": "sha512-ERO68sOYwm5UuLvSJTY7w7NP2c8S4UcXs3X1GBX8cwOr+ShOcDBbCY5mH4zxz0jsYCdJ8ve8Mv9n2YGJMB1aeg==", + "version": "13.23.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", + "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", "dependencies": { "type-fest": "^0.20.2" }, @@ -2141,23 +2434,43 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@eslint/js": { + "version": "8.53.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.53.0.tgz", + "integrity": "sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, "node_modules/@humanwhocodes/config-array": { - "version": "0.9.5", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz", - "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==", + "version": "0.11.13", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", + "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", "dependencies": { - "@humanwhocodes/object-schema": "^1.2.1", + "@humanwhocodes/object-schema": "^2.0.1", "debug": "^4.1.1", - "minimatch": "^3.0.4" + "minimatch": "^3.0.5" }, "engines": { "node": ">=10.10.0" } }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, "node_modules/@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", + "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==" }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", @@ -2230,14 +2543,6 @@ "node": ">=8" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "engines": { - "node": ">=8" - } - }, "node_modules/@istanbuljs/schema": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", @@ -2595,11 +2900,11 @@ } }, "node_modules/@jest/schemas": { - "version": "28.0.2", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.0.2.tgz", - "integrity": "sha512-YVDJZjd4izeTDkij00vHHAymNXQ6WWsdChFRK86qck6Jpr3DCL5W3Is3vslviRlP+bLuMYRLbdp98amMvqudhA==", + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dependencies": { - "@sinclair/typebox": "^0.23.3" + "@sinclair/typebox": "^0.24.1" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" @@ -2843,9 +3148,9 @@ } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz", - "integrity": "sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", "engines": { "node": ">=6.0.0" } @@ -2859,18 +3164,18 @@ } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", "dependencies": { "@jridgewell/gen-mapping": "^0.3.0", "@jridgewell/trace-mapping": "^0.3.9" } }, "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", "dependencies": { "@jridgewell/set-array": "^1.0.1", "@jridgewell/sourcemap-codec": "^1.4.10", @@ -2881,17 +3186,17 @@ } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.13", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz", - "integrity": "sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==" + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.13", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz", - "integrity": "sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==", + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" } }, "node_modules/@leichtgewicht/ip-codec": { @@ -3053,6 +3358,34 @@ "integrity": "sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==", "dev": true }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -3086,17 +3419,17 @@ } }, "node_modules/@pmmmwh/react-refresh-webpack-plugin": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.6.tgz", - "integrity": "sha512-IIWxofIYt/AbMwoeBgj+O2aAXLrlCQVg+A4a2zfpXFNHgP8o8rvi3v+oe5t787Lj+KXlKOh8BAiUp9bhuELXhg==", + "version": "0.5.11", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.11.tgz", + "integrity": "sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==", "dependencies": { "ansi-html-community": "^0.0.8", "common-path-prefix": "^3.0.0", - "core-js-pure": "^3.8.1", + "core-js-pure": "^3.23.3", "error-stack-parser": "^2.0.6", "find-up": "^5.0.0", "html-entities": "^2.1.0", - "loader-utils": "^2.0.0", + "loader-utils": "^2.0.4", "schema-utils": "^3.0.0", "source-map": "^0.7.3" }, @@ -3107,7 +3440,7 @@ "@types/webpack": "4.x || 5.x", "react-refresh": ">=0.10.0 <1.0.0", "sockjs-client": "^1.4.0", - "type-fest": ">=0.17.0 <3.0.0", + "type-fest": ">=0.17.0 <5.0.0", "webpack": ">=4.43.0 <6.0.0", "webpack-dev-server": "3.x || 4.x", "webpack-hot-middleware": "2.x", @@ -3209,19 +3542,19 @@ "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" }, "node_modules/@rushstack/eslint-patch": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.1.3.tgz", - "integrity": "sha512-WiBSI6JBIhC6LRIsB2Kwh8DsGTlbBU+mLRxJmAe3LjHTdkDpwIbEOZgoXBbZilk/vlfjK8i6nKRAvIRn1XaIMw==" + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.5.1.tgz", + "integrity": "sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==" }, "node_modules/@sinclair/typebox": { - "version": "0.23.5", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.23.5.tgz", - "integrity": "sha512-AFBVi/iT4g20DHoujvMH1aEDn8fGJh4xsRGCP6d8RpLPMqsNPvW01Jcn0QysXTsg++/xj25NmJsGyH9xug/wKg==" + "version": "0.24.51", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==" }, "node_modules/@sinonjs/commons": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", - "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", "dependencies": { "type-detect": "4.0.8" } @@ -3251,6 +3584,10 @@ "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", "engines": { "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { @@ -3259,6 +3596,10 @@ "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", "engines": { "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { @@ -3267,6 +3608,10 @@ "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", "engines": { "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { @@ -3275,6 +3620,10 @@ "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", "engines": { "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/babel-plugin-svg-dynamic-title": { @@ -3283,6 +3632,10 @@ "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", "engines": { "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/babel-plugin-svg-em-dimensions": { @@ -3291,6 +3644,10 @@ "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", "engines": { "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/babel-plugin-transform-react-native-svg": { @@ -3299,6 +3656,10 @@ "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", "engines": { "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/babel-plugin-transform-svg-component": { @@ -3307,6 +3668,10 @@ "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", "engines": { "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/babel-preset": { @@ -3325,6 +3690,10 @@ }, "engines": { "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/core": { @@ -3338,6 +3707,10 @@ }, "engines": { "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/hast-util-to-babel-ast": { @@ -3349,6 +3722,10 @@ }, "engines": { "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/plugin-jsx": { @@ -3363,6 +3740,10 @@ }, "engines": { "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/plugin-svgo": { @@ -3376,6 +3757,10 @@ }, "engines": { "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@svgr/webpack": { @@ -3394,6 +3779,10 @@ }, "engines": { "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, "node_modules/@tootallnate/once": { @@ -3413,124 +3802,125 @@ } }, "node_modules/@types/babel__core": { - "version": "7.1.19", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz", - "integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==", + "version": "7.20.4", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.4.tgz", + "integrity": "sha512-mLnSC22IC4vcWiuObSRjrLd9XcBTGf59vUSoq2jkQDJ/QQ8PMI9rSuzE+aEV8karUMbskw07bKYoUJCKTUaygg==", "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", "@types/babel__generator": "*", "@types/babel__template": "*", "@types/babel__traverse": "*" } }, "node_modules/@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "version": "7.6.7", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.7.tgz", + "integrity": "sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==", "dependencies": { "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__traverse": { - "version": "7.17.1", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.17.1.tgz", - "integrity": "sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==", + "version": "7.20.4", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.4.tgz", + "integrity": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==", "dependencies": { - "@babel/types": "^7.3.0" + "@babel/types": "^7.20.7" } }, "node_modules/@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", "dependencies": { "@types/connect": "*", "@types/node": "*" } }, "node_modules/@types/bonjour": { - "version": "3.5.10", - "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", - "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", + "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", "dependencies": { "@types/node": "*" } }, "node_modules/@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", "dependencies": { "@types/node": "*" } }, "node_modules/@types/connect-history-api-fallback": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", - "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.3.tgz", + "integrity": "sha512-6mfQ6iNvhSKCZJoY6sIG3m0pKkdUcweVNOLuBBKvoWGzl2yRxOJcYOTRyLKt3nxXvBLJWa6QkW//tgbIwJehmA==", "dependencies": { "@types/express-serve-static-core": "*", "@types/node": "*" } }, "node_modules/@types/eslint": { - "version": "7.29.0", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", - "integrity": "sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==", + "version": "8.44.7", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.7.tgz", + "integrity": "sha512-f5ORu2hcBbKei97U73mf+l9t4zTGl74IqZ0GQk4oVea/VS8tQZYkUveSYojk+frraAVYId0V2WC9O4PTNru2FQ==", "dependencies": { "@types/estree": "*", "@types/json-schema": "*" } }, "node_modules/@types/eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "dependencies": { "@types/eslint": "*", "@types/estree": "*" } }, "node_modules/@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" }, "node_modules/@types/express": { - "version": "4.17.13", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", - "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", "dependencies": { "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.18", + "@types/express-serve-static-core": "^4.17.33", "@types/qs": "*", "@types/serve-static": "*" } }, "node_modules/@types/express-serve-static-core": { - "version": "4.17.28", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.28.tgz", - "integrity": "sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==", + "version": "4.17.41", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.41.tgz", + "integrity": "sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==", "dependencies": { "@types/node": "*", "@types/qs": "*", - "@types/range-parser": "*" + "@types/range-parser": "*", + "@types/send": "*" } }, "node_modules/@types/graceful-fs": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", - "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "dependencies": { "@types/node": "*" } @@ -3540,6 +3930,11 @@ "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" }, + "node_modules/@types/http-errors": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" + }, "node_modules/@types/http-proxy": { "version": "1.17.9", "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", @@ -3549,55 +3944,63 @@ } }, "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" }, "node_modules/@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", "dependencies": { "@types/istanbul-lib-coverage": "*" } }, "node_modules/@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", "dependencies": { "@types/istanbul-lib-report": "*" } }, "node_modules/@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==" + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" }, "node_modules/@types/json5": { "version": "0.0.29", "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" }, "node_modules/@types/mime": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", - "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==" + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" }, "node_modules/@types/node": { "version": "14.0.23", "resolved": "https://registry.npmjs.org/@types/node/-/node-14.0.23.tgz", "integrity": "sha512-Z4U8yDAl5TFkmYsZdFPdjeMa57NOvnaf1tljHzhouaPEp7LCj2JKkejpI1ODviIAQuW4CcQmxkQ77rnLsOOoKw==" }, + "node_modules/@types/node-forge": { + "version": "1.3.9", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.9.tgz", + "integrity": "sha512-meK88cx/sTalPSLSoCzkiUB4VPIFHmxtXm5FaaqRDqBX2i/Sy8bJ4odsan0b20RBjPh06dAQ+OTTdnyQyhJZyQ==", + "dependencies": { + "@types/node": "*" + } + }, "node_modules/@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" }, "node_modules/@types/prettier": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.6.0.tgz", - "integrity": "sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw==" + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==" }, "node_modules/@types/prop-types": { "version": "15.7.4", @@ -3606,19 +4009,19 @@ "dev": true }, "node_modules/@types/q": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", - "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==" + "version": "1.5.8", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz", + "integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==" }, "node_modules/@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + "version": "6.9.10", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.10.tgz", + "integrity": "sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==" }, "node_modules/@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" }, "node_modules/@types/react": { "version": "17.0.15", @@ -3665,75 +4068,91 @@ "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==", "dev": true }, + "node_modules/@types/semver": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.5.tgz", + "integrity": "sha512-+d+WYC1BxJ6yVOgUgzK8gWvp5qF8ssV5r4nsDcZWKRWcDQLQ619tvWAxJQYGgBrO1MnLJC7a5GtiYsAoQ47dJg==" + }, + "node_modules/@types/send": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, "node_modules/@types/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", + "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", "dependencies": { "@types/express": "*" } }, "node_modules/@types/serve-static": { - "version": "1.13.10", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz", - "integrity": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==", + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.5.tgz", + "integrity": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==", "dependencies": { - "@types/mime": "^1", + "@types/http-errors": "*", + "@types/mime": "*", "@types/node": "*" } }, "node_modules/@types/sockjs": { - "version": "0.3.33", - "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", - "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "version": "0.3.36", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", + "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", "dependencies": { "@types/node": "*" } }, "node_modules/@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" }, "node_modules/@types/trusted-types": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz", - "integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.6.tgz", + "integrity": "sha512-HYtNooPvUY9WAVRBr4u+4Qa9fYD1ze2IUlAD3HoA6oehn1taGwBx3Oa52U4mTslTS+GAExKpaFu39Y5xUEwfjg==" }, "node_modules/@types/ws": { - "version": "8.5.3", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", - "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", + "version": "8.5.9", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.9.tgz", + "integrity": "sha512-jbdrY0a8lxfdTp/+r7Z4CkycbOFN8WX+IOchLJr3juT/xzbJ8URyTVSJ/hvNdadTgM1mnedb47n+Y31GsFnQlg==", "dependencies": { "@types/node": "*" } }, "node_modules/@types/yargs": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "version": "16.0.8", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.8.tgz", + "integrity": "sha512-1GwLEkmFafeb/HbE6pC7tFlgYSQ4Iqh2qlWCq8xN+Qfaiaxr2PcLfuhfRFRYqI6XJyeFoLYyKnhFbNsst9FMtQ==", "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.23.0.tgz", - "integrity": "sha512-hEcSmG4XodSLiAp1uxv/OQSGsDY6QN3TcRU32gANp+19wGE1QQZLRS8/GV58VRUoXhnkuJ3ZxNQ3T6Z6zM59DA==", - "dependencies": { - "@typescript-eslint/scope-manager": "5.23.0", - "@typescript-eslint/type-utils": "5.23.0", - "@typescript-eslint/utils": "5.23.0", - "debug": "^4.3.2", - "functional-red-black-tree": "^1.0.1", - "ignore": "^5.1.8", - "regexpp": "^3.2.0", - "semver": "^7.3.5", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", "tsutils": "^3.21.0" }, "engines": { @@ -3753,12 +4172,42 @@ } } }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, "node_modules/@typescript-eslint/experimental-utils": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.23.0.tgz", - "integrity": "sha512-I+3YGQztH1DM9kgWzjslpZzJCBMRz0KhYG2WP62IwpooeZ1L6Qt0mNK8zs+uP+R2HOsr+TeDW35Pitc3PfVv8Q==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz", + "integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==", "dependencies": { - "@typescript-eslint/utils": "5.23.0" + "@typescript-eslint/utils": "5.62.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -3772,14 +4221,14 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.23.0.tgz", - "integrity": "sha512-V06cYUkqcGqpFjb8ttVgzNF53tgbB/KoQT/iB++DOIExKmzI9vBJKjZKt/6FuV9c+zrDsvJKbJ2DOCYwX91cbw==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", "dependencies": { - "@typescript-eslint/scope-manager": "5.23.0", - "@typescript-eslint/types": "5.23.0", - "@typescript-eslint/typescript-estree": "5.23.0", - "debug": "^4.3.2" + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -3798,12 +4247,12 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.23.0.tgz", - "integrity": "sha512-EhjaFELQHCRb5wTwlGsNMvzK9b8Oco4aYNleeDlNuL6qXWDF47ch4EhVNPh8Rdhf9tmqbN4sWDk/8g+Z/J8JVw==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", "dependencies": { - "@typescript-eslint/types": "5.23.0", - "@typescript-eslint/visitor-keys": "5.23.0" + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -3814,12 +4263,13 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.23.0.tgz", - "integrity": "sha512-iuI05JsJl/SUnOTXA9f4oI+/4qS/Zcgk+s2ir+lRmXI+80D8GaGwoUqs4p+X+4AxDolPpEpVUdlEH4ADxFy4gw==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", "dependencies": { - "@typescript-eslint/utils": "5.23.0", - "debug": "^4.3.2", + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", "tsutils": "^3.21.0" }, "engines": { @@ -3839,9 +4289,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.23.0.tgz", - "integrity": "sha512-NfBsV/h4dir/8mJwdZz7JFibaKC3E/QdeMEDJhiAE3/eMkoniZ7MjbEMCGXw6MZnZDMN3G9S0mH/6WUIj91dmw==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -3851,16 +4301,16 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.23.0.tgz", - "integrity": "sha512-xE9e0lrHhI647SlGMl+m+3E3CKPF1wzvvOEWnuE3CCjjT7UiRnDGJxmAcVKJIlFgK6DY9RB98eLr1OPigPEOGg==", - "dependencies": { - "@typescript-eslint/types": "5.23.0", - "@typescript-eslint/visitor-keys": "5.23.0", - "debug": "^4.3.2", - "globby": "^11.0.4", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", "is-glob": "^4.0.3", - "semver": "^7.3.5", + "semver": "^7.3.7", "tsutils": "^3.21.0" }, "engines": { @@ -3876,17 +4326,49 @@ } } }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, "node_modules/@typescript-eslint/utils": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.23.0.tgz", - "integrity": "sha512-dbgaKN21drqpkbbedGMNPCtRPZo1IOUr5EI9Jrrh99r5UW5Q0dz46RKXeSBoPV+56R6dFKpbrdhgUNSJsDDRZA==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", - "@typescript-eslint/scope-manager": "5.23.0", - "@typescript-eslint/types": "5.23.0", - "@typescript-eslint/typescript-estree": "5.23.0", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", "eslint-scope": "^5.1.1", - "eslint-utils": "^3.0.0" + "semver": "^7.3.7" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -3919,13 +4401,43 @@ "node": ">=4.0" } }, + "node_modules/@typescript-eslint/utils/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.23.0.tgz", - "integrity": "sha512-Vd4mFNchU62sJB8pX19ZSPog05B0Y0CE2UxAZPT5k4iqhRYjPnqyY3woMxCd0++t9OTqkgjST+1ydLBi7e2Fvg==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", "dependencies": { - "@typescript-eslint/types": "5.23.0", - "eslint-visitor-keys": "^3.0.0" + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -3935,134 +4447,139 @@ "url": "https://opencollective.com/typescript-eslint" } }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==" + }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, @@ -4094,9 +4611,9 @@ } }, "node_modules/acorn": { - "version": "8.7.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz", - "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==", + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", "bin": { "acorn": "bin/acorn" }, @@ -4125,9 +4642,9 @@ } }, "node_modules/acorn-import-assertions": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", - "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", "peerDependencies": { "acorn": "^8" } @@ -4140,27 +4657,6 @@ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/acorn-node": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", - "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", - "dependencies": { - "acorn": "^7.0.0", - "acorn-walk": "^7.0.0", - "xtend": "^4.0.2" - } - }, - "node_modules/acorn-node/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/acorn-walk": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", @@ -4170,9 +4666,9 @@ } }, "node_modules/address": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/address/-/address-1.2.0.tgz", - "integrity": "sha512-tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", "engines": { "node": ">= 10.0.0" } @@ -4232,9 +4728,9 @@ } }, "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -4303,10 +4799,15 @@ "node": ">=4" } }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" + }, "node_modules/anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" @@ -4316,9 +4817,9 @@ } }, "node_modules/arg": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz", - "integrity": "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" }, "node_modules/argparse": { "version": "1.0.10", @@ -4329,15 +4830,23 @@ } }, "node_modules/aria-query": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", - "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", "dependencies": { - "@babel/runtime": "^7.10.2", - "@babel/runtime-corejs3": "^7.10.2" + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" }, - "engines": { - "node": ">=6.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/array-flatten": { @@ -4346,14 +4855,14 @@ "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" }, "node_modules/array-includes": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz", - "integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.19.5", - "get-intrinsic": "^1.1.1", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", "is-string": "^1.0.7" }, "engines": { @@ -4371,14 +4880,32 @@ "node": ">=8" } }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", + "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/array.prototype.flat": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz", - "integrity": "sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", "es-shim-unscopables": "^1.0.0" }, "engines": { @@ -4389,13 +4916,13 @@ } }, "node_modules/array.prototype.flatmap": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz", - "integrity": "sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", "es-shim-unscopables": "^1.0.0" }, "engines": { @@ -4405,25 +4932,83 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/array.prototype.reduce": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.6.tgz", + "integrity": "sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", + "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/asap": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" }, "node_modules/ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==" }, "node_modules/async": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz", "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" }, + "node_modules/asynciterator.prototype": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "dependencies": { + "has-symbols": "^1.0.3" + } + }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" }, "node_modules/at-least-node": { "version": "1.0.0", @@ -4434,9 +5019,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.7", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.7.tgz", - "integrity": "sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==", + "version": "10.4.16", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", + "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", "funding": [ { "type": "opencollective", @@ -4445,12 +5030,16 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { - "browserslist": "^4.20.3", - "caniuse-lite": "^1.0.30001335", - "fraction.js": "^4.2.0", + "browserslist": "^4.21.10", + "caniuse-lite": "^1.0.30001538", + "fraction.js": "^4.3.6", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", "postcss-value-parser": "^4.2.0" @@ -4470,18 +5059,32 @@ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/axe-core": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.1.tgz", - "integrity": "sha512-gd1kmb21kwNuWr6BQz8fv6GNECPBnUasepcoLbekws23NVBLODdsClRZ+bQ8+9Uomf3Sm3+Vwn0oYG9NvwnJCw==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", + "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", "engines": { "node": ">=4" } }, "node_modules/axobject-query": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", - "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "dependencies": { + "dequal": "^2.0.3" + } }, "node_modules/babel-jest": { "version": "27.5.1", @@ -4569,9 +5172,9 @@ } }, "node_modules/babel-loader": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz", - "integrity": "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", "dependencies": { "find-cache-dir": "^3.3.1", "loader-utils": "^2.0.0", @@ -4603,14 +5206,6 @@ "url": "https://opencollective.com/webpack" } }, - "node_modules/babel-plugin-dynamic-import-node": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", - "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", - "dependencies": { - "object.assign": "^4.1.0" - } - }, "node_modules/babel-plugin-istanbul": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", @@ -4663,47 +5258,39 @@ } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz", - "integrity": "sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==", + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz", + "integrity": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==", "dependencies": { - "@babel/compat-data": "^7.13.11", - "@babel/helper-define-polyfill-provider": "^0.3.1", - "semver": "^6.1.1" + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.4.3", + "semver": "^6.3.1" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz", - "integrity": "sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==", + "version": "0.8.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.6.tgz", + "integrity": "sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.1", - "core-js-compat": "^3.21.0" + "@babel/helper-define-polyfill-provider": "^0.4.3", + "core-js-compat": "^3.33.1" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz", - "integrity": "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==", + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz", + "integrity": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.1" + "@babel/helper-define-polyfill-provider": "^0.4.3" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-styled-components": { @@ -4797,16 +5384,17 @@ "node_modules/batch": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" }, "node_modules/bfj": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz", - "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.1.0.tgz", + "integrity": "sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==", "dependencies": { - "bluebird": "^3.5.5", - "check-types": "^11.1.1", + "bluebird": "^3.7.2", + "check-types": "^11.2.3", "hoopy": "^0.1.4", + "jsonpath": "^1.1.1", "tryer": "^1.0.1" }, "engines": { @@ -4835,9 +5423,9 @@ "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" }, "node_modules/body-parser": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", - "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.4", @@ -4847,7 +5435,7 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", - "qs": "6.10.3", + "qs": "6.11.0", "raw-body": "2.5.1", "type-is": "~1.6.18", "unpipe": "1.0.0" @@ -4887,20 +5475,20 @@ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/bonjour-service": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.12.tgz", - "integrity": "sha512-pMmguXYCu63Ug37DluMKEHdxc+aaIf/ay4YbF8Gxtba+9d3u+rmEWy61VK3Z3hp8Rskok3BunHYnG0dUHAsblw==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", + "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", "dependencies": { "array-flatten": "^2.1.2", "dns-equal": "^1.0.0", "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.4" + "multicast-dns": "^7.2.5" } }, "node_modules/boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" }, "node_modules/brace-expansion": { "version": "1.1.11", @@ -4928,9 +5516,9 @@ "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" }, "node_modules/browserslist": { - "version": "4.20.3", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.20.3.tgz", - "integrity": "sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==", + "version": "4.22.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", + "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", "funding": [ { "type": "opencollective", @@ -4939,14 +5527,17 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { - "caniuse-lite": "^1.0.30001332", - "electron-to-chromium": "^1.4.118", - "escalade": "^3.1.1", - "node-releases": "^2.0.3", - "picocolors": "^1.0.0" + "caniuse-lite": "^1.0.30001541", + "electron-to-chromium": "^1.4.535", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.13" }, "bin": { "browserslist": "cli.js" @@ -4969,9 +5560,9 @@ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" }, "node_modules/builtin-modules": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz", - "integrity": "sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", "engines": { "node": ">=6" }, @@ -4982,18 +5573,22 @@ "node_modules/bytes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", "engines": { "node": ">= 0.8" } }, "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/callsites": { @@ -5050,9 +5645,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001339", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001339.tgz", - "integrity": "sha512-Es8PiVqCe+uXdms0Gu5xP5PF2bxLR7OBp3wUzUnuO7OHzhOfCyg3hdiGWVPVxhiuniOzng+hTc1u3fEQ0TlkSQ==", + "version": "1.0.30001561", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001561.tgz", + "integrity": "sha512-NTt0DNoKe958Q0BE0j0c1V9jbUzhBxHIEJy7asmGrpE0yG63KTV7PLHPnK2E1O9RsQrQ081I3NLuXGS6zht3cw==", "funding": [ { "type": "opencollective", @@ -5061,6 +5656,10 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ] }, @@ -5093,18 +5692,10 @@ "node": ">=10" } }, - "node_modules/charcodes": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/charcodes/-/charcodes-0.2.0.tgz", - "integrity": "sha512-Y4kiDb+AM4Ecy58YkuZrrSRJBDQdQ2L+NyS1vHHFtNtUjgutcZfx3yp1dAONI/oPaPmyGfCLx5CxL+zauIMyKQ==", - "engines": { - "node": ">=6" - } - }, "node_modules/check-types": { - "version": "11.1.2", - "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.1.2.tgz", - "integrity": "sha512-tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ==" + "version": "11.2.3", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz", + "integrity": "sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==" }, "node_modules/chokidar": { "version": "3.5.3", @@ -5152,19 +5743,28 @@ } }, "node_modules/ci-info": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.0.tgz", - "integrity": "sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==" + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } }, "node_modules/cjs-module-lexer": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", - "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==" + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" }, "node_modules/clean-css": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.0.tgz", - "integrity": "sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.2.tgz", + "integrity": "sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==", "dependencies": { "source-map": "~0.6.0" }, @@ -5202,7 +5802,7 @@ "node_modules/co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "engines": { "iojs": ">= 1.0.0", "node": ">= 0.12.0" @@ -5222,9 +5822,9 @@ } }, "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" }, "node_modules/color-convert": { "version": "1.9.3", @@ -5249,14 +5849,14 @@ } }, "node_modules/colord": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.2.tgz", - "integrity": "sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==" + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" }, "node_modules/colorette": { - "version": "2.0.16", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz", - "integrity": "sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==" + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" }, "node_modules/colorspace": { "version": "1.1.2", @@ -5311,7 +5911,7 @@ "node_modules/commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" }, "node_modules/compressible": { "version": "2.0.18", @@ -5352,12 +5952,12 @@ "node_modules/compression/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "node_modules/confusing-browser-globals": { "version": "1.0.11", @@ -5365,9 +5965,9 @@ "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" }, "node_modules/connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", "engines": { "node": ">=0.8" } @@ -5403,9 +6003,9 @@ ] }, "node_modules/content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", "engines": { "node": ">= 0.6" } @@ -5432,9 +6032,9 @@ "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" }, "node_modules/core-js": { - "version": "3.22.5", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.22.5.tgz", - "integrity": "sha512-VP/xYuvJ0MJWRAobcmQ8F2H6Bsn+s7zqAAjFaHGBMc5AQm7zaelhD1LGduFn2EehEcQcU+br6t+fwbpQ5d1ZWA==", + "version": "3.33.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.33.2.tgz", + "integrity": "sha512-XeBzWI6QL3nJQiHmdzbAOiMYqjrb7hwU7A39Qhvd/POSa/t9E1AeZyEZx3fNvp/vtM8zXwhoL0FsiS0hD0pruQ==", "hasInstallScript": true, "funding": { "type": "opencollective", @@ -5442,30 +6042,21 @@ } }, "node_modules/core-js-compat": { - "version": "3.22.5", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.5.tgz", - "integrity": "sha512-rEF75n3QtInrYICvJjrAgV03HwKiYvtKHdPtaba1KucG+cNZ4NJnH9isqt979e67KZlhpbCOTwnsvnIr+CVeOg==", + "version": "3.33.2", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.33.2.tgz", + "integrity": "sha512-axfo+wxFVxnqf8RvxTzoAlzW4gRoacrHeoFlc9n0x50+7BEyZL/Rt3hicaED1/CEd7I6tPCPVUYcJwCMO5XUYw==", "dependencies": { - "browserslist": "^4.20.3", - "semver": "7.0.0" + "browserslist": "^4.22.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/core-js" } }, - "node_modules/core-js-compat/node_modules/semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/core-js-pure": { - "version": "3.22.5", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.22.5.tgz", - "integrity": "sha512-8xo9R00iYD7TcV7OrC98GwxiUEAabVWO3dix+uyWjnYrx9fyASLlIX+f/3p5dW5qByaP2bcZ8X/T47s55et/tA==", + "version": "3.33.2", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.33.2.tgz", + "integrity": "sha512-a8zeCdyVk7uF2elKIGz67AjcXOxjRbwOLz8SbklEso1V+2DoW4OkAMZN9S9GBgvZIaqQi/OemFX4OiSoQEmg1Q==", "hasInstallScript": true, "funding": { "type": "opencollective", @@ -5478,9 +6069,9 @@ "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" }, "node_modules/cosmiconfig": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", - "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", @@ -5540,9 +6131,9 @@ } }, "node_modules/css-declaration-sorter": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.2.2.tgz", - "integrity": "sha512-Ufadglr88ZLsrvS11gjeu/40Lw74D9Am/Jpr3LlYm5Q4ZP5KdlUhG+6u2EjyXeZcxmZ2h1ebCKngDjolpeLHpg==", + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", + "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", "engines": { "node": "^10 || ^12 || >=14" }, @@ -5568,18 +6159,18 @@ } }, "node_modules/css-loader": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz", - "integrity": "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==", + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.8.1.tgz", + "integrity": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==", "dependencies": { "icss-utils": "^5.1.0", - "postcss": "^8.4.7", + "postcss": "^8.4.21", "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-local-by-default": "^4.0.3", "postcss-modules-scope": "^3.0.0", "postcss-modules-values": "^4.0.0", "postcss-value-parser": "^4.2.0", - "semver": "^7.3.5" + "semver": "^7.3.8" }, "engines": { "node": ">= 12.13.0" @@ -5588,14 +6179,44 @@ "type": "opencollective", "url": "https://opencollective.com/webpack" }, - "peerDependencies": { - "webpack": "^5.0.0" + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/css-loader/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-loader/node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/css-loader/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/css-loader/node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + "node_modules/css-loader/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, "node_modules/css-minimizer-webpack-plugin": { "version": "3.4.1", @@ -5635,9 +6256,9 @@ } }, "node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -5666,14 +6287,14 @@ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" }, "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", "dependencies": { "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", + "ajv": "^8.9.0", "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" + "ajv-keywords": "^5.1.0" }, "engines": { "node": ">= 12.13.0" @@ -5706,14 +6327,18 @@ } }, "node_modules/css-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", - "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "dependencies": { "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, "node_modules/css-select-base-adapter": { @@ -5763,21 +6388,30 @@ } }, "node_modules/css-what": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", - "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", "engines": { "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, "node_modules/cssdb": { - "version": "6.6.1", - "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-6.6.1.tgz", - "integrity": "sha512-0/nZEYfp8SFEzJkMud8NxZJsGfD7RHDJti6GRBLZptIwAzco6RTx1KgwFl4mGWsYS0ZNbCrsY9QryhQ4ldF3Mg==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.9.0.tgz", + "integrity": "sha512-WPMT9seTQq6fPAa1yN4zjgZZeoTriSN2LqW9C+otjar12DQIWA4LuSfFrvFJiKp4oD0xIk1vumDLw8K9ur4NBw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + } + ] }, "node_modules/cssesc": { "version": "3.0.0", @@ -5791,11 +6425,11 @@ } }, "node_modules/cssnano": { - "version": "5.1.7", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.7.tgz", - "integrity": "sha512-pVsUV6LcTXif7lvKKW9ZrmX+rGRzxkEdJuVJcp5ftUjWITgwam5LMZOgaTvUrWPkcORBey6he7JKb4XAJvrpKg==", + "version": "5.1.15", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", + "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", "dependencies": { - "cssnano-preset-default": "^5.2.7", + "cssnano-preset-default": "^5.2.14", "lilconfig": "^2.0.3", "yaml": "^1.10.2" }, @@ -5811,36 +6445,36 @@ } }, "node_modules/cssnano-preset-default": { - "version": "5.2.7", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.7.tgz", - "integrity": "sha512-JiKP38ymZQK+zVKevphPzNSGHSlTI+AOwlasoSRtSVMUU285O7/6uZyd5NbW92ZHp41m0sSHe6JoZosakj63uA==", + "version": "5.2.14", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", + "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", "dependencies": { - "css-declaration-sorter": "^6.2.2", + "css-declaration-sorter": "^6.3.1", "cssnano-utils": "^3.1.0", "postcss-calc": "^8.2.3", - "postcss-colormin": "^5.3.0", - "postcss-convert-values": "^5.1.0", - "postcss-discard-comments": "^5.1.1", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", "postcss-discard-duplicates": "^5.1.0", "postcss-discard-empty": "^5.1.1", "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.4", - "postcss-merge-rules": "^5.1.1", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", "postcss-minify-font-values": "^5.1.0", "postcss-minify-gradients": "^5.1.1", - "postcss-minify-params": "^5.1.2", - "postcss-minify-selectors": "^5.2.0", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", "postcss-normalize-charset": "^5.1.0", "postcss-normalize-display-values": "^5.1.0", - "postcss-normalize-positions": "^5.1.0", - "postcss-normalize-repeat-style": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", "postcss-normalize-string": "^5.1.0", "postcss-normalize-timing-functions": "^5.1.0", - "postcss-normalize-unicode": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", "postcss-normalize-url": "^5.1.0", "postcss-normalize-whitespace": "^5.1.1", - "postcss-ordered-values": "^5.1.1", - "postcss-reduce-initial": "^5.1.0", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.2", "postcss-reduce-transforms": "^5.1.0", "postcss-svgo": "^5.1.0", "postcss-unique-selectors": "^5.1.1" @@ -5961,14 +6595,14 @@ } }, "node_modules/decimal.js": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz", - "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==" + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" }, "node_modules/dedent": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=" + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" }, "node_modules/deep-is": { "version": "0.1.4", @@ -5976,9 +6610,9 @@ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" }, "node_modules/deepmerge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", - "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "engines": { "node": ">=0.10.0" } @@ -5994,6 +6628,19 @@ "node": ">= 10" } }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/define-lazy-prop": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", @@ -6003,10 +6650,11 @@ } }, "node_modules/define-properties": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dependencies": { + "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" }, @@ -6017,15 +6665,10 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/defined": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", - "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" - }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "engines": { "node": ">=0.4.0" } @@ -6033,11 +6676,19 @@ "node_modules/depd": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", "engines": { "node": ">= 0.6" } }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "engines": { + "node": ">=6" + } + }, "node_modules/destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", @@ -6087,23 +6738,7 @@ "node_modules/detect-port-alt/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "node_modules/detective": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz", - "integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==", - "dependencies": { - "acorn-node": "^1.6.1", - "defined": "^1.0.0", - "minimist": "^1.1.1" - }, - "bin": { - "detective": "bin/detective.js" - }, - "engines": { - "node": ">=0.8.0" - } + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/didyoumean": { "version": "1.2.2", @@ -6137,12 +6772,12 @@ "node_modules/dns-equal": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" }, "node_modules/dns-packet": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.3.1.tgz", - "integrity": "sha512-spBwIj0TK0Ey3666GwIdWVfUpLyubpU53BTCu8iPn4r4oXd9O14Hjg3EHw3ts2oed77/SeckunUYCyRlSngqHw==", + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", + "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", "dependencies": { "@leichtgewicht/ip-codec": "^2.0.1" }, @@ -6186,23 +6821,28 @@ "dev": true }, "node_modules/dom-serializer": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", - "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dependencies": { "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, - "node_modules/dom-serializer/node_modules/domelementtype": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", - "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==" - }, "node_modules/domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] }, "node_modules/domexception": { "version": "2.0.1", @@ -6237,24 +6877,17 @@ "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/domhandler/node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] - }, "node_modules/domutils": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dependencies": { - "dom-serializer": "0", - "domelementtype": "1" + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" } }, "node_modules/dot-case": { @@ -6290,9 +6923,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/ejs": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.7.tgz", - "integrity": "sha512-BIar7R6abbUxDA3bfXrO4DSgwo8I+fB5/1zgujl3HLLjwd6+9iOnrT+t3grn2qbk9vOgBubXOFwX2m9axoFaGw==", + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", + "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", "dependencies": { "jake": "^10.8.5" }, @@ -6304,9 +6937,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.137", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.137.tgz", - "integrity": "sha512-0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA==" + "version": "1.4.582", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.582.tgz", + "integrity": "sha512-89o0MGoocwYbzqUUjc+VNpeOFSOK9nIdC5wY4N+PVUarUK0MtjyTjks75AZS2bW4Kl8MdewdFsWaH0jLy+JNoA==" }, "node_modules/emittery": { "version": "0.8.1", @@ -6346,9 +6979,9 @@ } }, "node_modules/enhanced-resolve": { - "version": "5.9.3", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.9.3.tgz", - "integrity": "sha512-Bq9VSor+kjvW3f9/MiiR4eE3XYgOl7/rS8lnSxbRbF3kS0B2r+Y9w5krBWxZgDxASVZbdYrn5wT4j/Wb0J9qow==", + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -6360,7 +6993,10 @@ "node_modules/entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } }, "node_modules/error-ex": { "version": "1.3.2", @@ -6371,41 +7007,57 @@ } }, "node_modules/error-stack-parser": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.7.tgz", - "integrity": "sha512-chLOW0ZGRf4s8raLrDxa5sdkvPec5YdvwbFnqJme4rk0rFajP8mPtrDL1+I+CwrQDCjswDA5sREX7jYQDQs9vA==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", "dependencies": { - "stackframe": "^1.1.1" + "stackframe": "^1.3.4" } }, "node_modules/es-abstract": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.0.tgz", - "integrity": "sha512-URbD8tgRthKD3YcC39vbvSDrX23upXnPcnGAjQfgxXF5ID75YcENawc9ZX/9iTP9ptUyfCLIxTTuMYoRfiOVKA==", - "dependencies": { - "call-bind": "^1.0.2", + "version": "1.22.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", + "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.2", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.5", + "es-set-tostringtag": "^2.0.1", "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.1.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.2", "get-symbol-description": "^1.0.0", - "has": "^1.0.3", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.4", + "hasown": "^2.0.0", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", "is-negative-zero": "^2.0.2", "is-regex": "^1.1.4", "is-shared-array-buffer": "^1.0.2", "is-string": "^1.0.7", + "is-typed-array": "^1.1.12", "is-weakref": "^1.0.2", - "object-inspect": "^1.12.0", + "object-inspect": "^1.13.1", "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "regexp.prototype.flags": "^1.4.1", - "string.prototype.trimend": "^1.0.5", - "string.prototype.trimstart": "^1.0.5", - "unbox-primitive": "^1.0.2" + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "safe-array-concat": "^1.0.1", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.13" }, "engines": { "node": ">= 0.4" @@ -6414,17 +7066,56 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" + }, + "node_modules/es-iterator-helpers": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz", + "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", + "dependencies": { + "asynciterator.prototype": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.1", + "es-set-tostringtag": "^2.0.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.0.1" + } + }, "node_modules/es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", + "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==" + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", + "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", + "dependencies": { + "get-intrinsic": "^1.2.2", + "has-tostringtag": "^1.0.0", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } }, "node_modules/es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", "dependencies": { - "has": "^1.0.3" + "hasown": "^2.0.0" } }, "node_modules/es-to-primitive": { @@ -6438,6 +7129,9 @@ }, "engines": { "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/escalade": { @@ -6462,14 +7156,13 @@ } }, "node_modules/escodegen": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", - "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", "dependencies": { "esprima": "^4.0.1", "estraverse": "^5.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" + "esutils": "^2.0.2" }, "bin": { "escodegen": "bin/escodegen.js", @@ -6482,42 +7175,6 @@ "source-map": "~0.6.1" } }, - "node_modules/escodegen/node_modules/levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/escodegen/node_modules/optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/escodegen/node_modules/prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/escodegen/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -6527,57 +7184,49 @@ "node": ">=0.10.0" } }, - "node_modules/escodegen/node_modules/type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", - "dependencies": { - "prelude-ls": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/eslint": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.15.0.tgz", - "integrity": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==", - "dependencies": { - "@eslint/eslintrc": "^1.2.3", - "@humanwhocodes/config-array": "^0.9.2", - "ajv": "^6.10.0", + "version": "8.53.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.53.0.tgz", + "integrity": "sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.3", + "@eslint/js": "8.53.0", + "@humanwhocodes/config-array": "^0.11.13", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.3.2", - "esquery": "^1.4.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^6.0.1", - "globals": "^13.6.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", "ignore": "^5.2.0", - "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", + "optionator": "^0.9.3", "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" + "text-table": "^0.2.0" }, "bin": { "eslint": "bin/eslint.js" @@ -6617,101 +7266,45 @@ } }, "node_modules/eslint-import-resolver-node": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", - "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", "dependencies": { "debug": "^3.2.7", - "resolve": "^1.20.0" + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" } }, "node_modules/eslint-import-resolver-node/node_modules/debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-module-utils": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz", - "integrity": "sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==", - "dependencies": { - "debug": "^3.2.7", - "find-up": "^2.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-module-utils/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dependencies": { - "locate-path": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-module-utils/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-module-utils/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dependencies": { - "p-try": "^1.0.0" - }, - "engines": { - "node": ">=4" + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" } }, - "node_modules/eslint-module-utils/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", "dependencies": { - "p-limit": "^1.1.0" + "debug": "^3.2.7" }, "engines": { "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } } }, - "node_modules/eslint-module-utils/node_modules/p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-module-utils/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "engines": { - "node": ">=4" + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" } }, "node_modules/eslint-plugin-flowtype": { @@ -6732,23 +7325,27 @@ } }, "node_modules/eslint-plugin-import": { - "version": "2.26.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz", - "integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==", - "dependencies": { - "array-includes": "^3.1.4", - "array.prototype.flat": "^1.2.5", - "debug": "^2.6.9", + "version": "2.29.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz", + "integrity": "sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==", + "dependencies": { + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-module-utils": "^2.7.3", - "has": "^1.0.3", - "is-core-module": "^2.8.1", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", "is-glob": "^4.0.3", "minimatch": "^3.1.2", - "object.values": "^1.1.5", - "resolve": "^1.22.0", - "tsconfig-paths": "^3.14.1" + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.14.2" }, "engines": { "node": ">=4" @@ -6758,11 +7355,11 @@ } }, "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dependencies": { - "ms": "2.0.0" + "ms": "^2.1.1" } }, "node_modules/eslint-plugin-import/node_modules/doctrine": { @@ -6776,11 +7373,6 @@ "node": ">=0.10.0" } }, - "node_modules/eslint-plugin-import/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, "node_modules/eslint-plugin-jest": { "version": "25.7.0", "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", @@ -6805,22 +7397,26 @@ } }, "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz", - "integrity": "sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==", - "dependencies": { - "@babel/runtime": "^7.16.3", - "aria-query": "^4.2.2", - "array-includes": "^3.1.4", - "ast-types-flow": "^0.0.7", - "axe-core": "^4.3.5", - "axobject-query": "^2.2.0", - "damerau-levenshtein": "^1.0.7", + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", + "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", + "dependencies": { + "@babel/runtime": "^7.23.2", + "aria-query": "^5.3.0", + "array-includes": "^3.1.7", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "=4.7.0", + "axobject-query": "^3.2.1", + "damerau-levenshtein": "^1.0.8", "emoji-regex": "^9.2.2", - "has": "^1.0.3", - "jsx-ast-utils": "^3.2.1", - "language-tags": "^1.0.5", - "minimatch": "^3.0.4" + "es-iterator-helpers": "^1.0.15", + "hasown": "^2.0.0", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.entries": "^1.1.7", + "object.fromentries": "^2.0.7" }, "engines": { "node": ">=4.0" @@ -6830,24 +7426,26 @@ } }, "node_modules/eslint-plugin-react": { - "version": "7.29.4", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.29.4.tgz", - "integrity": "sha512-CVCXajliVh509PcZYRFyu/BoUEz452+jtQJq2b3Bae4v3xBUWPLCmtmBM+ZinG4MzwmxJgJ2M5rMqhqLVn7MtQ==", + "version": "7.33.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", "dependencies": { - "array-includes": "^3.1.4", - "array.prototype.flatmap": "^1.2.5", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.12", "estraverse": "^5.3.0", "jsx-ast-utils": "^2.4.1 || ^3.0.0", "minimatch": "^3.1.2", - "object.entries": "^1.1.5", - "object.fromentries": "^2.0.5", - "object.hasown": "^1.1.0", - "object.values": "^1.1.5", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.3", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.6" + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" }, "engines": { "node": ">=4" @@ -6857,9 +7455,9 @@ } }, "node_modules/eslint-plugin-react-hooks": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.5.0.tgz", - "integrity": "sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", "engines": { "node": ">=10" }, @@ -6879,31 +7477,27 @@ } }, "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.3", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.3.tgz", - "integrity": "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==", + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", "dependencies": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/eslint-plugin-testing-library": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.5.0.tgz", - "integrity": "sha512-eWQ19l6uWL7LW8oeMyQVSGjVYFnBqk7DMHjadm0yOHBvX3Xi9OBrsNuxoAMdX4r7wlQ5WWpW46d+CB6FWFL/PQ==", + "version": "5.11.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz", + "integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==", "dependencies": { - "@typescript-eslint/utils": "^5.13.0" + "@typescript-eslint/utils": "^5.58.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0", @@ -6914,60 +7508,115 @@ } }, "node_modules/eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", "dependencies": { - "eslint-visitor-keys": "^2.0.0" + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" }, "engines": { - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + "node": ">= 12.13.0" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" + "type": "opencollective", + "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "eslint": ">=5" + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" } }, - "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "node_modules/eslint-webpack-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/eslint-webpack-plugin": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.1.1.tgz", - "integrity": "sha512-xSucskTN9tOkfW7so4EaiFIkulWLXwCB/15H917lR6pTv0Zot6/fetFucmENRb7J5whVSFKIvwnrnsa78SG2yg==", + "node_modules/eslint-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/eslint-webpack-plugin/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", "dependencies": { - "@types/eslint": "^7.28.2", - "jest-worker": "^27.3.1", - "micromatch": "^4.0.4", - "normalize-path": "^3.0.0", - "schema-utils": "^3.1.1" + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" }, "engines": { "node": ">= 12.13.0" @@ -6975,10 +7624,20 @@ "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0", - "webpack": "^5.0.0" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/eslint/node_modules/ansi-styles": { @@ -7043,9 +7702,9 @@ } }, "node_modules/eslint/node_modules/globals": { - "version": "13.14.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.14.0.tgz", - "integrity": "sha512-ERO68sOYwm5UuLvSJTY7w7NP2c8S4UcXs3X1GBX8cwOr+ShOcDBbCY5mH4zxz0jsYCdJ8ve8Mv9n2YGJMB1aeg==", + "version": "13.23.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", + "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", "dependencies": { "type-fest": "^0.20.2" }, @@ -7098,16 +7757,19 @@ } }, "node_modules/espree": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.2.tgz", - "integrity": "sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==", + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "dependencies": { - "acorn": "^8.7.1", + "acorn": "^8.9.0", "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.3.0" + "eslint-visitor-keys": "^3.4.1" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, "node_modules/esprima": { @@ -7123,9 +7785,9 @@ } }, "node_modules/esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", "dependencies": { "estraverse": "^5.1.0" }, @@ -7211,7 +7873,7 @@ "node_modules/exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "engines": { "node": ">= 0.8.0" } @@ -7231,13 +7893,13 @@ } }, "node_modules/express": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", - "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.20.0", + "body-parser": "1.20.1", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.5.0", @@ -7256,7 +7918,7 @@ "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", - "qs": "6.10.3", + "qs": "6.11.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.18.0", @@ -7342,9 +8004,9 @@ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" }, "node_modules/fast-glob": { - "version": "3.2.11", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", - "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", @@ -7375,12 +8037,12 @@ "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" }, "node_modules/fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", "dependencies": { "reusify": "^1.0.4" } @@ -7397,9 +8059,9 @@ } }, "node_modules/fb-watchman": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", - "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dependencies": { "bser": "2.1.1" } @@ -7440,9 +8102,9 @@ } }, "node_modules/filelist": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.3.tgz", - "integrity": "sha512-LwjCsruLWQULGYKy7TX0OPtrL9kLpojOFKc5VCTxdFTV7w5zbsgqVKfnkKG7Qgjtq50gKfO56hJv88OfcGb70Q==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", "dependencies": { "minimatch": "^5.0.1" } @@ -7456,9 +8118,9 @@ } }, "node_modules/filelist/node_modules/minimatch": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", - "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dependencies": { "brace-expansion": "^2.0.1" }, @@ -7555,11 +8217,12 @@ } }, "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dependencies": { - "flatted": "^3.1.0", + "flatted": "^3.2.9", + "keyv": "^4.5.3", "rimraf": "^3.0.2" }, "engines": { @@ -7567,9 +8230,9 @@ } }, "node_modules/flatted": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz", - "integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==" + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" }, "node_modules/fn.name": { "version": "1.1.0", @@ -7595,10 +8258,18 @@ } } }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dependencies": { + "is-callable": "^1.1.3" + } + }, "node_modules/fork-ts-checker-webpack-plugin": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", - "integrity": "sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==", + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", + "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", "dependencies": { "@babel/code-frame": "^7.8.3", "@types/json-schema": "^7.0.5", @@ -7715,6 +8386,17 @@ "node": ">=8" } }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", @@ -7732,6 +8414,20 @@ "url": "https://opencollective.com/webpack" } }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -7751,6 +8447,11 @@ "node": ">=6" } }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, "node_modules/form-data": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", @@ -7773,15 +8474,15 @@ } }, "node_modules/fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", "engines": { "node": "*" }, "funding": { "type": "patreon", - "url": "https://www.patreon.com/infusion" + "url": "https://github.com/sponsors/rawify" } }, "node_modules/fresh": { @@ -7806,19 +8507,19 @@ } }, "node_modules/fs-monkey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", - "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz", + "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==" }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" }, "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "hasInstallScript": true, "optional": true, "os": [ @@ -7829,19 +8530,22 @@ } }, "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" }, "engines": { "node": ">= 0.4" @@ -7850,11 +8554,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" - }, "node_modules/functions-have-names": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", @@ -7880,13 +8579,17 @@ } }, "node_modules/get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/get-own-enumerable-property-symbols": { @@ -7929,14 +8632,14 @@ } }, "node_modules/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^3.0.4", + "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, @@ -8006,6 +8709,20 @@ "node": ">=4" } }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/globby": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", @@ -8025,10 +8742,26 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" }, "node_modules/gzip-size": { "version": "6.0.0", @@ -8054,17 +8787,6 @@ "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/has-bigints": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", @@ -8082,11 +8804,22 @@ } }, "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", "dependencies": { - "get-intrinsic": "^1.1.1" + "get-intrinsic": "^1.2.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -8117,6 +8850,17 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", @@ -8158,7 +8902,7 @@ "node_modules/hpack.js": { "version": "2.1.6", "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "dependencies": { "inherits": "^2.0.1", "obuf": "^1.0.0", @@ -8166,10 +8910,15 @@ "wbuf": "^1.1.0" } }, + "node_modules/hpack.js/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, "node_modules/hpack.js/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -8200,9 +8949,19 @@ } }, "node_modules/html-entities": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", - "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==" + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", + "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ] }, "node_modules/html-escaper": { "version": "2.0.2", @@ -8230,9 +8989,9 @@ } }, "node_modules/html-webpack-plugin": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", - "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.3.tgz", + "integrity": "sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg==", "dependencies": { "@types/html-minifier-terser": "^6.0.0", "html-minifier-terser": "^6.0.2", @@ -8269,47 +9028,10 @@ "entities": "^2.0.0" } }, - "node_modules/htmlparser2/node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/htmlparser2/node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] - }, - "node_modules/htmlparser2/node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, "node_modules/http-deceiver": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" }, "node_modules/http-errors": { "version": "2.0.0", @@ -8343,9 +9065,9 @@ } }, "node_modules/http-parser-js": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.6.tgz", - "integrity": "sha512-vDlkRPDJn93swjcjqMSaGSPABbIarsr1TLAui/gLDXzV5VsJNdXNzMYDyNBLQkjWQCJ1uizu8T2oDMhmGt0PRA==" + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" }, "node_modules/http-proxy": { "version": "1.18.1", @@ -8437,9 +9159,9 @@ } }, "node_modules/idb": { - "version": "6.1.5", - "resolved": "https://registry.npmjs.org/idb/-/idb-6.1.5.tgz", - "integrity": "sha512-IJtugpKkiVXQn5Y+LteyBCNk1N8xpGV3wWZk9EVtZWH8DYkjBn0bX1XnGP9RkyZF0sAcywa6unHqSWKe7q4LGw==" + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", + "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==" }, "node_modules/identity-obj-proxy": { "version": "3.0.0", @@ -8453,17 +9175,17 @@ } }, "node_modules/ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", "engines": { "node": ">= 4" } }, "node_modules/immer": { - "version": "9.0.12", - "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.12.tgz", - "integrity": "sha512-lk7UNmSbAukB5B6dh9fnh5D0bJTOFKxVg2cyJWTYrWRfhLrLMBquONcUs3aFq507hNoIZEDDh8lb8UtOizSMhA==", + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", "funding": { "type": "opencollective", "url": "https://opencollective.com/immer" @@ -8479,6 +9201,17 @@ }, "engines": { "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" } }, "node_modules/import-local": { @@ -8502,7 +9235,7 @@ "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "engines": { "node": ">=0.8.19" } @@ -8510,7 +9243,7 @@ "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -8527,12 +9260,12 @@ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" }, "node_modules/internal-slot": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", - "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", + "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", "dependencies": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", + "get-intrinsic": "^1.2.2", + "hasown": "^2.0.0", "side-channel": "^1.0.4" }, "engines": { @@ -8547,10 +9280,37 @@ "node": ">= 0.10" } }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/is-bigint": { "version": "1.0.4", @@ -8590,9 +9350,9 @@ } }, "node_modules/is-callable": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", - "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "engines": { "node": ">= 0.4" }, @@ -8601,22 +9361,28 @@ } }, "node_modules/is-core-module": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz", - "integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==", + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", "dependencies": { - "has": "^1.0.3" + "hasown": "^2.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-date-object": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz", - "integrity": "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, "engines": { "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-docker": { @@ -8641,6 +9407,17 @@ "node": ">=0.10.0" } }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", @@ -8657,6 +9434,20 @@ "node": ">=6" } }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", @@ -8674,10 +9465,18 @@ "integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=", "dev": true }, + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-module": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", - "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=" + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" }, "node_modules/is-negative-zero": { "version": "2.0.2", @@ -8715,11 +9514,19 @@ "node_modules/is-obj": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", "engines": { "node": ">=0.10.0" } }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "engines": { + "node": ">=8" + } + }, "node_modules/is-plain-obj": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", @@ -8754,7 +9561,7 @@ "node_modules/is-regexp": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", - "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", "engines": { "node": ">=0.10.0" } @@ -8767,6 +9574,14 @@ "node": ">=6" } }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-shared-array-buffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", @@ -8812,12 +9627,37 @@ }, "engines": { "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "dependencies": { + "which-typed-array": "^1.1.11" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/is-weakref": { "version": "1.0.2", @@ -8830,6 +9670,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-what": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.3.1.tgz", @@ -8848,27 +9700,27 @@ } }, "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" }, "node_modules/istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-instrument": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", - "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", @@ -8880,25 +9732,17 @@ "node": ">=8" } }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dependencies": { "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", + "make-dir": "^4.0.0", "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" } }, "node_modules/istanbul-lib-report/node_modules/has-flag": { @@ -8909,6 +9753,45 @@ "node": ">=8" } }, + "node_modules/istanbul-lib-report/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/istanbul-lib-report/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/istanbul-lib-report/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -8920,6 +9803,11 @@ "node": ">=8" } }, + "node_modules/istanbul-lib-report/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, "node_modules/istanbul-lib-source-maps": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", @@ -8942,9 +9830,9 @@ } }, "node_modules/istanbul-reports": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.4.tgz", - "integrity": "sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", "dependencies": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" @@ -8953,15 +9841,27 @@ "node": ">=8" } }, + "node_modules/iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "dependencies": { + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" + } + }, "node_modules/jake": { - "version": "10.8.5", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", - "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", + "version": "10.8.7", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", + "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", "dependencies": { "async": "^3.2.3", "chalk": "^4.0.2", - "filelist": "^1.0.1", - "minimatch": "^3.0.4" + "filelist": "^1.0.4", + "minimatch": "^3.1.2" }, "bin": { "jake": "bin/cli.js" @@ -9878,9 +10778,9 @@ } }, "node_modules/jest-pnp-resolver": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", - "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", "engines": { "node": ">=6" }, @@ -10286,6 +11186,31 @@ "node": ">=8" } }, + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/jest-snapshot/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -10297,6 +11222,11 @@ "node": ">=8" } }, + "node_modules/jest-snapshot/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, "node_modules/jest-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", @@ -10478,15 +11408,15 @@ } }, "node_modules/jest-watch-typeahead/node_modules/@jest/console": { - "version": "28.1.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.0.tgz", - "integrity": "sha512-tscn3dlJFGay47kb4qVruQg/XWlmvU0xp3EJOjzzY+sBaI+YgwKcvAmTcyYU7xEiLLIY5HCdWRooAL8dqkFlDA==", + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", + "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", "dependencies": { - "@jest/types": "^28.1.0", + "@jest/types": "^28.1.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^28.1.0", - "jest-util": "^28.1.0", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", "slash": "^3.0.0" }, "engines": { @@ -10502,12 +11432,12 @@ } }, "node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { - "version": "28.1.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.0.tgz", - "integrity": "sha512-sBBFIyoPzrZho3N+80P35A5oAkSKlGfsEFfXFWuPGBsW40UAjCkGakZhn4UQK4iQlW2vgCDMRDOob9FGKV8YoQ==", + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", + "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", "dependencies": { - "@jest/console": "^28.1.0", - "@jest/types": "^28.1.0", + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" }, @@ -10516,11 +11446,11 @@ } }, "node_modules/jest-watch-typeahead/node_modules/@jest/types": { - "version": "28.1.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.0.tgz", - "integrity": "sha512-xmEggMPr317MIOjjDoZ4ejCSr9Lpbt/u34+dvc99t7DS8YirW5rwZEhzKPC2BMUFkUhI48qs6qLUSGw5FuL0GA==", + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dependencies": { - "@jest/schemas": "^28.0.2", + "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", @@ -10532,9 +11462,9 @@ } }, "node_modules/jest-watch-typeahead/node_modules/@types/yargs": { - "version": "17.0.10", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.10.tgz", - "integrity": "sha512-gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA==", + "version": "17.0.31", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.31.tgz", + "integrity": "sha512-bocYSx4DI8TmdlvxqGpVNXOgCNR1Jj0gNPhhAY+iz1rgKDAaYrAYdFYnhDV1IFuiuVc9HkOwyDcFxaTElF3/wg==", "dependencies": { "@types/yargs-parser": "*" } @@ -10604,17 +11534,17 @@ } }, "node_modules/jest-watch-typeahead/node_modules/jest-message-util": { - "version": "28.1.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.0.tgz", - "integrity": "sha512-RpA8mpaJ/B2HphDMiDlrAZdDytkmwFqgjDZovM21F35lHGeUeCvYmm6W+sbQ0ydaLpg5bFAUuWG1cjqOl8vqrw==", + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", "dependencies": { "@babel/code-frame": "^7.12.13", - "@jest/types": "^28.1.0", + "@jest/types": "^28.1.3", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^28.1.0", + "pretty-format": "^28.1.3", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -10639,11 +11569,11 @@ } }, "node_modules/jest-watch-typeahead/node_modules/jest-util": { - "version": "28.1.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.0.tgz", - "integrity": "sha512-qYdCKD77k4Hwkose2YBEqQk7PzUf/NSE+rutzceduFveQREeH6b+89Dc9+wjX9dAwHcgdx4yedGA3FQlU/qCTA==", + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", "dependencies": { - "@jest/types": "^28.1.0", + "@jest/types": "^28.1.3", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", @@ -10655,17 +11585,17 @@ } }, "node_modules/jest-watch-typeahead/node_modules/jest-watcher": { - "version": "28.1.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.0.tgz", - "integrity": "sha512-tNHMtfLE8Njcr2IRS+5rXYA4BhU90gAOwI9frTGOqd+jX0P/Au/JfRSNqsf5nUTcWdbVYuLxS1KjnzILSoR5hA==", + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", + "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", "dependencies": { - "@jest/test-result": "^28.1.0", - "@jest/types": "^28.1.0", + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.10.2", - "jest-util": "^28.1.0", + "jest-util": "^28.1.3", "string-length": "^4.0.1" }, "engines": { @@ -10696,11 +11626,11 @@ } }, "node_modules/jest-watch-typeahead/node_modules/pretty-format": { - "version": "28.1.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.0.tgz", - "integrity": "sha512-79Z4wWOYCdvQkEoEuSlBhHJqWeZ8D8YRPiPctJFCtvuaClGpiwiQYSCUOE6IEKUbbFukKOTFIUAXE8N4EQTo1Q==", + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", "dependencies": { - "@jest/schemas": "^28.0.2", + "@jest/schemas": "^28.1.3", "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", "react-is": "^18.0.0" @@ -10721,9 +11651,9 @@ } }, "node_modules/jest-watch-typeahead/node_modules/react-is": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.1.0.tgz", - "integrity": "sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==" + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" }, "node_modules/jest-watch-typeahead/node_modules/slash": { "version": "4.0.0", @@ -10760,9 +11690,9 @@ } }, "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dependencies": { "ansi-regex": "^6.0.1" }, @@ -10911,6 +11841,14 @@ "url": "https://github.com/chalk/supports-color?sponsor=1" } }, + "node_modules/jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "bin": { + "jiti": "bin/jiti.js" + } + }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -10984,6 +11922,11 @@ "node": ">=4" } }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", @@ -11002,12 +11945,12 @@ "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" }, "node_modules/json5": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", - "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "bin": { "json5": "lib/cli.js" }, @@ -11026,10 +11969,32 @@ "graceful-fs": "^4.1.6" } }, + "node_modules/jsonpath": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz", + "integrity": "sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==", + "dependencies": { + "esprima": "1.2.2", + "static-eval": "2.0.2", + "underscore": "1.12.1" + } + }, + "node_modules/jsonpath/node_modules/esprima": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz", + "integrity": "sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/jsonpointer": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.0.tgz", - "integrity": "sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", "engines": { "node": ">=0.10.0" } @@ -11131,17 +12096,27 @@ "dev": true }, "node_modules/jsx-ast-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.0.tgz", - "integrity": "sha512-XzO9luP6L0xkxwhIJMTJQpZo/eeN60K08jHdexfD569AGxeNug6UketeHXEhROoM8aR7EcUoOQmIhcJQjcuq8Q==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", "dependencies": { - "array-includes": "^3.1.4", - "object.assign": "^4.1.2" + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" }, "engines": { "node": ">=4.0" } }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dependencies": { + "json-buffer": "3.0.1" + } + }, "node_modules/kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", @@ -11159,9 +12134,9 @@ } }, "node_modules/klona": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", - "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", "engines": { "node": ">= 8" } @@ -11172,16 +12147,28 @@ "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" }, "node_modules/language-subtag-registry": { - "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" }, "node_modules/language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=", + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/launch-editor": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz", + "integrity": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==", "dependencies": { - "language-subtag-registry": "~0.3.2" + "picocolors": "^1.0.0", + "shell-quote": "^1.8.1" } }, "node_modules/leven": { @@ -11205,17 +12192,17 @@ } }, "node_modules/lilconfig": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz", - "integrity": "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", "engines": { "node": ">=10" } }, "node_modules/lines-and-columns": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", - "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "node_modules/loader-runner": { "version": "4.3.0", @@ -11226,9 +12213,9 @@ } }, "node_modules/loader-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", - "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dependencies": { "big.js": "^5.2.2", "emojis-list": "^3.0.0", @@ -11260,12 +12247,12 @@ "node_modules/lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" }, "node_modules/lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" }, "node_modules/lodash.merge": { "version": "4.6.2", @@ -11275,12 +12262,12 @@ "node_modules/lodash.sortby": { "version": "4.7.0", "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" }, "node_modules/lodash.uniq": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" }, "node_modules/logform": { "version": "2.4.0", @@ -11314,14 +12301,11 @@ } }, "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" + "yallist": "^3.0.2" } }, "node_modules/magic-string": { @@ -11346,14 +12330,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/makeerror": { "version": "1.0.12", "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", @@ -11376,11 +12352,11 @@ } }, "node_modules/memfs": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.1.tgz", - "integrity": "sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==", + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", "dependencies": { - "fs-monkey": "1.0.3" + "fs-monkey": "^1.0.4" }, "engines": { "node": ">= 4.0.0" @@ -11478,9 +12454,9 @@ } }, "node_modules/mini-css-extract-plugin": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.0.tgz", - "integrity": "sha512-ndG8nxCEnAemsg4FSgS+yNyHKgkTB4nPKqCOgh65j3/30qqC5RaSQQXMm++Y6sb6E1zRSxPkztj9fqxhS1Eo6w==", + "version": "2.7.6", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz", + "integrity": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==", "dependencies": { "schema-utils": "^4.0.0" }, @@ -11496,9 +12472,9 @@ } }, "node_modules/mini-css-extract-plugin/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -11527,14 +12503,14 @@ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" }, "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", "dependencies": { "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", + "ajv": "^8.9.0", "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" + "ajv-keywords": "^5.1.0" }, "engines": { "node": ">= 12.13.0" @@ -11561,16 +12537,19 @@ } }, "node_modules/minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dependencies": { - "minimist": "^1.2.5" + "minimist": "^1.2.6" }, "bin": { "mkdirp": "bin/cmd.js" @@ -11582,9 +12561,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/multicast-dns": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.4.tgz", - "integrity": "sha512-XkCYOU+rr2Ft3LI6w4ye51M3VK31qJXFIxu0XLw169PtKG0Zx47OrXeVW/GCYOfpC9s1yyyf1S+L8/4LY0J9Zw==", + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "dependencies": { "dns-packet": "^5.2.2", "thunky": "^1.0.2" @@ -11593,10 +12572,26 @@ "multicast-dns": "cli.js" } }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, "node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -11607,7 +12602,12 @@ "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" }, "node_modules/negotiator": { "version": "0.6.3", @@ -11642,12 +12642,12 @@ "node_modules/node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" }, "node_modules/node-releases": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.4.tgz", - "integrity": "sha512-gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ==" + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" }, "node_modules/normalize-path": { "version": "3.0.0", @@ -11660,7 +12660,7 @@ "node_modules/normalize-range": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", "engines": { "node": ">=0.10.0" } @@ -11688,17 +12688,20 @@ } }, "node_modules/nth-check": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", - "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dependencies": { - "boolbase": "~1.0.0" + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" } }, "node_modules/nwsapi": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", - "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==" + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", + "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" }, "node_modules/object-assign": { "version": "4.1.1", @@ -11717,9 +12720,9 @@ } }, "node_modules/object-inspect": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", - "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==", + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -11733,40 +12736,43 @@ } }, "node_modules/object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", "object-keys": "^1.1.1" }, "engines": { "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/object.entries": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", - "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" }, "engines": { "node": ">= 0.4" } }, "node_modules/object.fromentries": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", - "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" }, "engines": { "node": ">= 0.4" @@ -11776,38 +12782,54 @@ } }, "node_modules/object.getownpropertydescriptors": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz", - "integrity": "sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ==", + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.7.tgz", + "integrity": "sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==", "dependencies": { + "array.prototype.reduce": "^1.0.6", "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "safe-array-concat": "^1.0.0" }, "engines": { "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", + "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1" } }, "node_modules/object.hasown": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.1.tgz", - "integrity": "sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", "dependencies": { - "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/object.values": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", - "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" }, "engines": { "node": ">= 0.4" @@ -11843,7 +12865,7 @@ "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dependencies": { "wrappy": "1" } @@ -11871,9 +12893,9 @@ } }, "node_modules/open": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", - "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "dependencies": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", @@ -11887,16 +12909,16 @@ } }, "node_modules/optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" + "type-check": "^0.4.0" }, "engines": { "node": ">= 0.8.0" @@ -11982,6 +13004,9 @@ }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/parse5": { @@ -12017,7 +13042,7 @@ "node_modules/path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "engines": { "node": ">=0.10.0" } @@ -12051,7 +13076,7 @@ "node_modules/performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" }, "node_modules/picocolors": { "version": "1.0.0", @@ -12069,10 +13094,18 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/pirates": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", "engines": { "node": ">= 6" } @@ -12198,7 +13231,7 @@ "node_modules/pkg-up/node_modules/path-exists": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "engines": { "node": ">=4" } @@ -12210,9 +13243,9 @@ "dev": true }, "node_modules/postcss": { - "version": "8.4.13", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.13.tgz", - "integrity": "sha512-jtL6eTBrza5MPzy8oJLFuUscHDXTV5KcLlqAWHl5q5WYRfnNRGSmOZmOZ1T6Gy7A99mOZfqungmZMpMmCVJ8ZA==", + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", "funding": [ { "type": "opencollective", @@ -12221,10 +13254,14 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { - "nanoid": "^3.3.3", + "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" }, @@ -12233,14 +13270,21 @@ } }, "node_modules/postcss-attribute-case-insensitive": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.0.tgz", - "integrity": "sha512-b4g9eagFGq9T5SWX4+USfVyjIb3liPnjhHHRMP7FMB2kFVpYyfEscV0wP3eaXhKlcHKUut8lt5BGoeylWA/dBQ==", + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", + "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", "dependencies": { - "postcss-selector-parser": "^6.0.2" + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.0.2" + "postcss": "^8.2" } }, "node_modules/postcss-browser-comments": { @@ -12292,17 +13336,21 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-color-functional-notation": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.2.tgz", - "integrity": "sha512-DXVtwUhIk4f49KK5EGuEdgx4Gnyj6+t2jBSEmxvpIK9QI40tWrpS2Pua8Q7iIZWBrki2QOaeUdEaLPPa91K0RQ==", + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", + "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, "node_modules/postcss-color-functional-notation/node_modules/postcss-value-parser": { @@ -12311,15 +13359,19 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-color-hex-alpha": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.3.tgz", - "integrity": "sha512-fESawWJCrBV035DcbKRPAVmy21LpoyiXdPTuHUfWJ14ZRjY7Y7PA6P4g8z6LQGYhU1WAxkTxjIjurXzoe68Glw==", + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", + "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, "peerDependencies": { "postcss": "^8.4" } @@ -12330,17 +13382,21 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-color-rebeccapurple": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.0.2.tgz", - "integrity": "sha512-SFc3MaocHaQ6k3oZaFwH8io6MdypkUtEy/eXzXEB1vEQlO3S3oDc/FSZA8AsS04Z25RirQhlDlHLh3dn7XewWw==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", + "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, "peerDependencies": { - "postcss": "^8.3" + "postcss": "^8.2" } }, "node_modules/postcss-color-rebeccapurple/node_modules/postcss-value-parser": { @@ -12349,11 +13405,11 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-colormin": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", - "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", + "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", "dependencies": { - "browserslist": "^4.16.6", + "browserslist": "^4.21.4", "caniuse-api": "^3.0.0", "colord": "^2.9.1", "postcss-value-parser": "^4.2.0" @@ -12371,10 +13427,11 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-convert-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.0.tgz", - "integrity": "sha512-GkyPbZEYJiWtQB0KZ0X6qusqFHUepguBCNFi9t5JJc7I2OTXG7C0twbTLvCfaKOLl3rSXmpAwV7W5txd91V84g==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", "dependencies": { + "browserslist": "^4.21.4", "postcss-value-parser": "^4.2.0" }, "engines": { @@ -12390,20 +13447,32 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-custom-media": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.0.tgz", - "integrity": "sha512-FvO2GzMUaTN0t1fBULDeIvxr5IvbDXcIatt6pnJghc736nqNgsGao5NT+5+WVLAQiTt6Cb3YUms0jiPaXhL//g==", + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", + "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=10.0.0" + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.1.0" + "postcss": "^8.3" } }, + "node_modules/postcss-custom-media/node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, "node_modules/postcss-custom-properties": { - "version": "12.1.7", - "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.7.tgz", - "integrity": "sha512-N/hYP5gSoFhaqxi2DPCmvto/ZcRDVjE3T1LiAMzc/bg53hvhcHOLpXOHb526LzBBp5ZlAUhkuot/bfpmpgStJg==", + "version": "12.1.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", + "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -12415,7 +13484,7 @@ "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, "node_modules/postcss-custom-properties/node_modules/postcss-value-parser": { @@ -12424,37 +13493,45 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-custom-selectors": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.0.tgz", - "integrity": "sha512-/1iyBhz/W8jUepjGyu7V1OPcGbc636snN1yXEQCinb6Bwt7KxsiU7/bLQlp8GwAXzCh7cobBU5odNn/2zQWR8Q==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", + "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", "dependencies": { "postcss-selector-parser": "^6.0.4" }, "engines": { - "node": ">=10.0.0" + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.1.2" + "postcss": "^8.3" } }, "node_modules/postcss-dir-pseudo-class": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.4.tgz", - "integrity": "sha512-I8epwGy5ftdzNWEYok9VjW9whC4xnelAtbajGv4adql4FIF09rnrxnA9Y8xSHN47y7gqFIv10C5+ImsLeJpKBw==", + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", + "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", "dependencies": { - "postcss-selector-parser": "^6.0.9" + "postcss-selector-parser": "^6.0.10" }, "engines": { "node": "^12 || ^14 || >=16" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, "node_modules/postcss-discard-comments": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.1.tgz", - "integrity": "sha512-5JscyFmvkUxz/5/+TB3QTTT9Gi9jHkcn8dcmmuN68JQcv3aQg4y88yEHHhwFB52l/NkaJ43O0dbksGMAo49nfQ==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", "engines": { "node": "^10 || ^12 || >=14.0" }, @@ -12496,9 +13573,9 @@ } }, "node_modules/postcss-double-position-gradients": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.1.tgz", - "integrity": "sha512-jM+CGkTs4FcG53sMPjrrGE0rIvLDdCrqMzgDC5fLI7JHDO7o6QG8C5TQBtExb13hdBdoH9C2QVbG4jo2y9lErQ==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", + "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" @@ -12506,8 +13583,12 @@ "engines": { "node": "^12 || ^14 || >=16" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, "node_modules/postcss-double-position-gradients/node_modules/postcss-value-parser": { @@ -12579,28 +13660,36 @@ } }, "node_modules/postcss-gap-properties": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.3.tgz", - "integrity": "sha512-rPPZRLPmEKgLk/KlXMqRaNkYTUpE7YC+bOIQFN5xcu1Vp11Y4faIXv6/Jpft6FMnl6YRxZqDZG0qQOW80stzxQ==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", + "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", "engines": { "node": "^12 || ^14 || >=16" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, "node_modules/postcss-image-set-function": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.6.tgz", - "integrity": "sha512-KfdC6vg53GC+vPd2+HYzsZ6obmPqOk6HY09kttU19+Gj1nC3S3XBVEXDHxkhxTohgZqzbUb94bKXvKDnYWBm/A==", + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", + "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, "node_modules/postcss-image-set-function/node_modules/postcss-value-parser": { @@ -12608,6 +13697,27 @@ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-import/node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, "node_modules/postcss-initial": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", @@ -12617,9 +13727,9 @@ } }, "node_modules/postcss-js": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz", - "integrity": "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", "dependencies": { "camelcase-css": "^2.0.1" }, @@ -12631,13 +13741,13 @@ "url": "https://opencollective.com/postcss/" }, "peerDependencies": { - "postcss": "^8.3.3" + "postcss": "^8.4.21" } }, "node_modules/postcss-lab-function": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.0.tgz", - "integrity": "sha512-Zb1EO9DGYfa3CP8LhINHCcTTCTLI+R3t7AX2mKsDzdgVQ/GkCpHOTgOr6HBHslP7XDdVbqgHW5vvRPMdVANQ8w==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", + "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" @@ -12650,7 +13760,7 @@ "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, "node_modules/postcss-lab-function/node_modules/postcss-value-parser": { @@ -12659,15 +13769,15 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-load-config": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", "dependencies": { "lilconfig": "^2.0.5", - "yaml": "^1.10.2" + "yaml": "^2.1.1" }, "engines": { - "node": ">= 10" + "node": ">= 14" }, "funding": { "type": "opencollective", @@ -12686,6 +13796,14 @@ } } }, + "node_modules/postcss-load-config/node_modules/yaml": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", + "engines": { + "node": ">= 14" + } + }, "node_modules/postcss-loader": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", @@ -12707,6 +13825,36 @@ "webpack": "^5.0.0" } }, + "node_modules/postcss-loader/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss-loader/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss-loader/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, "node_modules/postcss-logical": { "version": "5.0.4", "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", @@ -12730,12 +13878,12 @@ } }, "node_modules/postcss-merge-longhand": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.4.tgz", - "integrity": "sha512-hbqRRqYfmXoGpzYKeW0/NCZhvNyQIlQeWVSao5iKWdyx7skLvCfQFGIUsP9NUs3dSbPac2IC4Go85/zG+7MlmA==", + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", "dependencies": { "postcss-value-parser": "^4.2.0", - "stylehacks": "^5.1.0" + "stylehacks": "^5.1.1" }, "engines": { "node": "^10 || ^12 || >=14.0" @@ -12750,11 +13898,11 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-merge-rules": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.1.tgz", - "integrity": "sha512-8wv8q2cXjEuCcgpIB1Xx1pIy8/rhMPIQqYKNzEdyx37m6gpq83mQQdCxgIkFgliyEnKvdwJf/C61vN4tQDq4Ww==", + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", + "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", "dependencies": { - "browserslist": "^4.16.6", + "browserslist": "^4.21.4", "caniuse-api": "^3.0.0", "cssnano-utils": "^3.1.0", "postcss-selector-parser": "^6.0.5" @@ -12807,11 +13955,11 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-minify-params": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.2.tgz", - "integrity": "sha512-aEP+p71S/urY48HWaRHasyx4WHQJyOYaKpQ6eXl8k0kxg66Wt/30VR6/woh8THgcpRbonJD5IeD+CzNhPi1L8g==", + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", "dependencies": { - "browserslist": "^4.16.6", + "browserslist": "^4.21.4", "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" }, @@ -12828,9 +13976,9 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-minify-selectors": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.0.tgz", - "integrity": "sha512-vYxvHkW+iULstA+ctVNx0VoRAR4THQQRkG77o0oa4/mBS0OzGvvzLIvHDv/nNEM0crzN2WIyFU5X7wZhaUK3RA==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", "dependencies": { "postcss-selector-parser": "^6.0.5" }, @@ -12853,9 +14001,9 @@ } }, "node_modules/postcss-modules-local-by-default": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", - "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", + "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", "dependencies": { "icss-utils": "^5.0.0", "postcss-selector-parser": "^6.0.2", @@ -12902,11 +14050,11 @@ } }, "node_modules/postcss-nested": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz", - "integrity": "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", "dependencies": { - "postcss-selector-parser": "^6.0.6" + "postcss-selector-parser": "^6.0.11" }, "engines": { "node": ">=12.0" @@ -12920,11 +14068,11 @@ } }, "node_modules/postcss-nesting": { - "version": "10.1.5", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.1.5.tgz", - "integrity": "sha512-+NyBBE/wUcJ+NJgVd2FyKIZ414lul6ExqkOt1qXXw7oRzpQ0iT68cVpx+QfHh42QUMHXNoVLlN9InFY9XXK8ng==", + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", + "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", "dependencies": { - "@csstools/selector-specificity": "1.0.0", + "@csstools/selector-specificity": "^2.0.0", "postcss-selector-parser": "^6.0.10" }, "engines": { @@ -12935,7 +14083,7 @@ "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, "node_modules/postcss-normalize": { @@ -12986,9 +14134,9 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-normalize-positions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.0.tgz", - "integrity": "sha512-8gmItgA4H5xiUxgN/3TVvXRoJxkAWLW6f/KKhdsH03atg0cB8ilXnrB5PpSshwVu/dD2ZsRFQcR1OEmSBDAgcQ==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -13005,9 +14153,9 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-normalize-repeat-style": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.0.tgz", - "integrity": "sha512-IR3uBjc+7mcWGL6CtniKNQ4Rr5fTxwkaDHwMBDGGs1x9IVRkYIT/M4NelZWkAOBdV6v3Z9S46zqaKGlyzHSchw==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -13062,11 +14210,11 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-normalize-unicode": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.0.tgz", - "integrity": "sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", "dependencies": { - "browserslist": "^4.16.6", + "browserslist": "^4.21.4", "postcss-value-parser": "^4.2.0" }, "engines": { @@ -13121,9 +14269,9 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-opacity-percentage": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.2.tgz", - "integrity": "sha512-lyUfF7miG+yewZ8EAk9XUBIlrHyUE6fijnesuz+Mj5zrIHIEw6KcIZSOk/elVMqzLvREmXB83Zi/5QpNRYd47w==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz", + "integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==", "funding": [ { "type": "kofi", @@ -13136,12 +14284,15 @@ ], "engines": { "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.2" } }, "node_modules/postcss-ordered-values": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.1.tgz", - "integrity": "sha512-7lxgXF0NaoMIgyihL/2boNAEZKiW0+HkMhdKMTD93CjW8TdCy2hSdj8lsAo+uwm7EDG16Da2Jdmtqpedl0cMfw==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", "dependencies": { "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" @@ -13159,16 +14310,28 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-overflow-shorthand": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.3.tgz", - "integrity": "sha512-CxZwoWup9KXzQeeIxtgOciQ00tDtnylYIlJBBODqkgS/PU2jISuWOL/mYLHmZb9ZhZiCaNKsCRiLp22dZUtNsg==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", + "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { "node": "^12 || ^14 || >=16" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, + "node_modules/postcss-overflow-shorthand/node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, "node_modules/postcss-page-break": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", @@ -13178,17 +14341,21 @@ } }, "node_modules/postcss-place": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.4.tgz", - "integrity": "sha512-MrgKeiiu5OC/TETQO45kV3npRjOFxEHthsqGtkh3I1rPbZSbXGD/lZVi9j13cYh+NA8PIAPyk6sGjT9QbRyvSg==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", + "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, "node_modules/postcss-place/node_modules/postcss-value-parser": { @@ -13197,54 +14364,58 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-preset-env": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.5.0.tgz", - "integrity": "sha512-0BJzWEfCdTtK2R3EiKKSdkE51/DI/BwnhlnicSW482Ym6/DGHud8K0wGLcdjip1epVX0HKo4c8zzTeV/SkiejQ==", - "dependencies": { - "@csstools/postcss-color-function": "^1.1.0", - "@csstools/postcss-font-format-keywords": "^1.0.0", - "@csstools/postcss-hwb-function": "^1.0.0", - "@csstools/postcss-ic-unit": "^1.0.0", - "@csstools/postcss-is-pseudo-class": "^2.0.2", - "@csstools/postcss-normalize-display-values": "^1.0.0", - "@csstools/postcss-oklab-function": "^1.1.0", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz", + "integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==", + "dependencies": { + "@csstools/postcss-cascade-layers": "^1.1.1", + "@csstools/postcss-color-function": "^1.1.1", + "@csstools/postcss-font-format-keywords": "^1.0.1", + "@csstools/postcss-hwb-function": "^1.0.2", + "@csstools/postcss-ic-unit": "^1.0.1", + "@csstools/postcss-is-pseudo-class": "^2.0.7", + "@csstools/postcss-nested-calc": "^1.0.0", + "@csstools/postcss-normalize-display-values": "^1.0.1", + "@csstools/postcss-oklab-function": "^1.1.1", "@csstools/postcss-progressive-custom-properties": "^1.3.0", - "@csstools/postcss-stepped-value-functions": "^1.0.0", - "@csstools/postcss-unset-value": "^1.0.0", - "autoprefixer": "^10.4.6", - "browserslist": "^4.20.3", + "@csstools/postcss-stepped-value-functions": "^1.0.1", + "@csstools/postcss-text-decoration-shorthand": "^1.0.0", + "@csstools/postcss-trigonometric-functions": "^1.0.2", + "@csstools/postcss-unset-value": "^1.0.2", + "autoprefixer": "^10.4.13", + "browserslist": "^4.21.4", "css-blank-pseudo": "^3.0.3", "css-has-pseudo": "^3.0.4", "css-prefers-color-scheme": "^6.0.3", - "cssdb": "^6.6.1", - "postcss-attribute-case-insensitive": "^5.0.0", + "cssdb": "^7.1.0", + "postcss-attribute-case-insensitive": "^5.0.2", "postcss-clamp": "^4.1.0", - "postcss-color-functional-notation": "^4.2.2", - "postcss-color-hex-alpha": "^8.0.3", - "postcss-color-rebeccapurple": "^7.0.2", - "postcss-custom-media": "^8.0.0", - "postcss-custom-properties": "^12.1.7", - "postcss-custom-selectors": "^6.0.0", - "postcss-dir-pseudo-class": "^6.0.4", - "postcss-double-position-gradients": "^3.1.1", + "postcss-color-functional-notation": "^4.2.4", + "postcss-color-hex-alpha": "^8.0.4", + "postcss-color-rebeccapurple": "^7.1.1", + "postcss-custom-media": "^8.0.2", + "postcss-custom-properties": "^12.1.10", + "postcss-custom-selectors": "^6.0.3", + "postcss-dir-pseudo-class": "^6.0.5", + "postcss-double-position-gradients": "^3.1.2", "postcss-env-function": "^4.0.6", "postcss-focus-visible": "^6.0.4", "postcss-focus-within": "^5.0.4", "postcss-font-variant": "^5.0.0", - "postcss-gap-properties": "^3.0.3", - "postcss-image-set-function": "^4.0.6", + "postcss-gap-properties": "^3.0.5", + "postcss-image-set-function": "^4.0.7", "postcss-initial": "^4.0.1", - "postcss-lab-function": "^4.2.0", + "postcss-lab-function": "^4.2.1", "postcss-logical": "^5.0.4", "postcss-media-minmax": "^5.0.0", - "postcss-nesting": "^10.1.4", + "postcss-nesting": "^10.2.0", "postcss-opacity-percentage": "^1.1.2", - "postcss-overflow-shorthand": "^3.0.3", + "postcss-overflow-shorthand": "^3.0.4", "postcss-page-break": "^3.0.4", - "postcss-place": "^7.0.4", - "postcss-pseudo-class-any-link": "^7.1.2", + "postcss-place": "^7.0.5", + "postcss-pseudo-class-any-link": "^7.1.6", "postcss-replace-overflow-wrap": "^4.0.0", - "postcss-selector-not": "^5.0.0", + "postcss-selector-not": "^6.0.1", "postcss-value-parser": "^4.2.0" }, "engines": { @@ -13255,7 +14426,7 @@ "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, "node_modules/postcss-preset-env/node_modules/postcss-value-parser": { @@ -13264,9 +14435,9 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss-pseudo-class-any-link": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.3.tgz", - "integrity": "sha512-I9Yp1VV2r8xFwg/JrnAlPCcKmutv6f6Ig6/CHFPqGJiDgYXM9C+0kgLfK4KOXbKNw+63QYl4agRUB0Wi9ftUIg==", + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", + "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", "dependencies": { "postcss-selector-parser": "^6.0.10" }, @@ -13278,15 +14449,15 @@ "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, "node_modules/postcss-reduce-initial": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.0.tgz", - "integrity": "sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", + "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", "dependencies": { - "browserslist": "^4.16.6", + "browserslist": "^4.21.4", "caniuse-api": "^3.0.0" }, "engines": { @@ -13324,20 +14495,27 @@ } }, "node_modules/postcss-selector-not": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-5.0.0.tgz", - "integrity": "sha512-/2K3A4TCP9orP4TNS7u3tGdRFVKqz/E6pX3aGnriPG0jU78of8wsUcqE4QAhWEU0d+WnMSF93Ah3F//vUtK+iQ==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", + "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", "dependencies": { - "balanced-match": "^1.0.0" + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.1.0" + "postcss": "^8.2" } }, "node_modules/postcss-selector-parser": { - "version": "6.0.10", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", - "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -13369,21 +14547,6 @@ "node": ">= 10" } }, - "node_modules/postcss-svgo/node_modules/css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, "node_modules/postcss-svgo/node_modules/css-tree": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", @@ -13396,70 +14559,11 @@ "node": ">=8.0.0" } }, - "node_modules/postcss-svgo/node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/postcss-svgo/node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/postcss-svgo/node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] - }, - "node_modules/postcss-svgo/node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, "node_modules/postcss-svgo/node_modules/mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" }, - "node_modules/postcss-svgo/node_modules/nth-check": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", - "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==", - "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" - } - }, "node_modules/postcss-svgo/node_modules/postcss-value-parser": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", @@ -13576,9 +14680,9 @@ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" }, "node_modules/promise": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/promise/-/promise-8.1.0.tgz", - "integrity": "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", "dependencies": { "asap": "~2.0.6" } @@ -13618,14 +14722,14 @@ } }, "node_modules/psl": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" }, "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "engines": { "node": ">=6" } @@ -13633,16 +14737,16 @@ "node_modules/q": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", "engines": { "node": ">=0.6.0", "teleport": ">=0.2.0" } }, "node_modules/qs": { - "version": "6.10.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", - "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "dependencies": { "side-channel": "^1.0.4" }, @@ -13653,6 +14757,11 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", @@ -13672,17 +14781,6 @@ } ] }, - "node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/raf": { "version": "3.4.1", "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", @@ -13865,9 +14963,9 @@ } }, "node_modules/react-dev-utils/node_modules/loader-utils": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz", - "integrity": "sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", "engines": { "node": ">= 12.13.0" } @@ -13985,6 +15083,36 @@ } } }, + "node_modules/react-scripts/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-scripts/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-scripts/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, "node_modules/react-transition-group": { "version": "4.4.2", "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.2.tgz", @@ -13997,6 +15125,14 @@ "prop-types": "^15.6.2" } }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dependencies": { + "pify": "^2.3.0" + } + }, "node_modules/readable-stream": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", @@ -14022,25 +15158,33 @@ } }, "node_modules/recursive-readdir": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", - "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", + "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", "dependencies": { - "minimatch": "3.0.4" + "minimatch": "^3.0.5" }, "engines": { - "node": ">=0.10.0" + "node": ">=6.0.0" } }, - "node_modules/recursive-readdir/node_modules/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "node_modules/reflect.getprototypeof": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", + "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", "dependencies": { - "brace-expansion": "^1.1.7" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" }, "engines": { - "node": "*" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/regenerate": { @@ -14049,9 +15193,9 @@ "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" }, "node_modules/regenerate-unicode-properties": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz", - "integrity": "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==", + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", "dependencies": { "regenerate": "^1.4.2" }, @@ -14060,14 +15204,14 @@ } }, "node_modules/regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" }, "node_modules/regenerator-transform": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz", - "integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==", + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", "dependencies": { "@babel/runtime": "^7.8.4" } @@ -14078,13 +15222,13 @@ "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" }, "node_modules/regexp.prototype.flags": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", - "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" }, "engines": { "node": ">= 0.4" @@ -14093,42 +15237,26 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, "node_modules/regexpu-core": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.0.1.tgz", - "integrity": "sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", "dependencies": { + "@babel/regjsgen": "^0.8.0", "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.0.1", - "regjsgen": "^0.6.0", - "regjsparser": "^0.8.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.0.0" + "unicode-match-property-value-ecmascript": "^2.1.0" }, "engines": { "node": ">=4" } }, - "node_modules/regjsgen": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz", - "integrity": "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==" - }, "node_modules/regjsparser": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz", - "integrity": "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==", + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", "dependencies": { "jsesc": "~0.5.0" }, @@ -14139,7 +15267,7 @@ "node_modules/regjsparser/node_modules/jsesc": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", "bin": { "jsesc": "bin/jsesc" } @@ -14147,7 +15275,7 @@ "node_modules/relateurl": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", - "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", "engines": { "node": ">= 0.10" } @@ -14164,84 +15292,10 @@ "strip-ansi": "^6.0.1" } }, - "node_modules/renderkid/node_modules/css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/renderkid/node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/renderkid/node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/renderkid/node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] - }, - "node_modules/renderkid/node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/renderkid/node_modules/nth-check": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", - "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==", - "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" - } - }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "engines": { "node": ">=0.10.0" } @@ -14260,11 +15314,11 @@ "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" }, "node_modules/resolve": { - "version": "1.22.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", - "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dependencies": { - "is-core-module": "^2.8.1", + "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, @@ -14286,7 +15340,7 @@ "node": ">=8" } }, - "node_modules/resolve-cwd/node_modules/resolve-from": { + "node_modules/resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", @@ -14294,14 +15348,6 @@ "node": ">=8" } }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "engines": { - "node": ">=4" - } - }, "node_modules/resolve-pathname": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", @@ -14364,9 +15410,9 @@ } }, "node_modules/resolve.exports": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", - "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", "engines": { "node": ">=10" } @@ -14403,9 +15449,9 @@ } }, "node_modules/rollup": { - "version": "2.72.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.72.1.tgz", - "integrity": "sha512-NTc5UGy/NWFGpSqF1lFY8z9Adri6uhyMLI6LvPAXdBKoPRFhIIiBUpt+Qg2awixqO3xvzSijjhnb4+QEZwJmxA==", + "version": "2.79.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", "bin": { "rollup": "dist/bin/rollup" }, @@ -14420,6 +15466,7 @@ "version": "7.0.2", "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", + "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser", "dependencies": { "@babel/code-frame": "^7.10.4", "jest-worker": "^26.2.1", @@ -14492,11 +15539,41 @@ "queue-microtask": "^1.2.2" } }, + "node_modules/safe-array-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/safe-stable-stringify": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz", @@ -14577,9 +15654,9 @@ } }, "node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -14596,13 +15673,14 @@ "node_modules/select-hose": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" }, "node_modules/selfsigned": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.0.1.tgz", - "integrity": "sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", "dependencies": { + "@types/node-forge": "^1.3.0", "node-forge": "^1" }, "engines": { @@ -14610,17 +15688,11 @@ } }, "node_modules/semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "dependencies": { - "lru-cache": "^6.0.0" - }, + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "bin": { "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" } }, "node_modules/send": { @@ -14681,9 +15753,9 @@ } }, "node_modules/serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "dependencies": { "randombytes": "^2.1.0" } @@ -14691,7 +15763,7 @@ "node_modules/serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", "dependencies": { "accepts": "~1.3.4", "batch": "0.6.1", @@ -14716,7 +15788,7 @@ "node_modules/serve-index/node_modules/http-errors": { "version": "1.6.3", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", "dependencies": { "depd": "~1.1.2", "inherits": "2.0.3", @@ -14730,12 +15802,12 @@ "node_modules/serve-index/node_modules/inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" }, "node_modules/serve-index/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/serve-index/node_modules/setprototypeof": { "version": "1.1.0", @@ -14756,6 +15828,33 @@ "node": ">= 0.8.0" } }, + "node_modules/set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "dependencies": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", @@ -14781,9 +15880,12 @@ } }, "node_modules/shell-quote": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz", - "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==" + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/side-channel": { "version": "1.0.4", @@ -14845,9 +15947,9 @@ "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" }, "node_modules/source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", "engines": { "node": ">= 8" } @@ -14861,9 +15963,9 @@ } }, "node_modules/source-map-loader": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.1.tgz", - "integrity": "sha512-Vp1UsfyPvgujKQzi4pyDiTOnE3E4H+yHvkVRN3c/9PJmQS4CQJExvcDvaX/D+RV+xQben9HJ56jMJS3CgUeWyA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", + "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", "dependencies": { "abab": "^2.0.5", "iconv-lite": "^0.6.3", @@ -14911,7 +16013,8 @@ "node_modules/sourcemap-codec": { "version": "1.4.8", "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", - "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "deprecated": "Please use @jridgewell/sourcemap-codec instead" }, "node_modules/spdy": { "version": "4.0.2", @@ -14944,12 +16047,13 @@ "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" }, "node_modules/stable": { "version": "0.1.8", "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" }, "node_modules/stack-trace": { "version": "0.0.10", @@ -14960,9 +16064,9 @@ } }, "node_modules/stack-utils": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", - "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", "dependencies": { "escape-string-regexp": "^2.0.0" }, @@ -14979,14 +16083,107 @@ } }, "node_modules/stackframe": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.2.1.tgz", - "integrity": "sha512-h88QkzREN/hy8eRdyNhhsO7RSJ5oyTqxxmmn0dzBIMUclZsjpfmrsg81vp8mjjAs2vAZ72nyWxRUwSwmh0e4xg==" + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + }, + "node_modules/static-eval": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz", + "integrity": "sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==", + "dependencies": { + "escodegen": "^1.8.1" + } + }, + "node_modules/static-eval/node_modules/escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/static-eval/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/static-eval/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-eval/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } }, "node_modules/statuses": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", "engines": { "node": ">= 0.6" } @@ -15040,44 +16237,61 @@ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" }, "node_modules/string.prototype.matchall": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz", - "integrity": "sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==", + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", + "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1", - "get-intrinsic": "^1.1.1", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.1", + "internal-slot": "^1.0.5", + "regexp.prototype.flags": "^1.5.0", + "set-function-name": "^2.0.0", "side-channel": "^1.0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/string.prototype.trimend": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz", - "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/string.prototype.trimstart": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz", - "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -15143,9 +16357,9 @@ } }, "node_modules/style-loader": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.1.tgz", - "integrity": "sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz", + "integrity": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==", "engines": { "node": ">= 12.13.0" }, @@ -15179,11 +16393,11 @@ } }, "node_modules/stylehacks": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.0.tgz", - "integrity": "sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", "dependencies": { - "browserslist": "^4.16.6", + "browserslist": "^4.21.4", "postcss-selector-parser": "^6.0.4" }, "engines": { @@ -15205,6 +16419,67 @@ "integrity": "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==", "dev": true }, + "node_modules/sucrase": { + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz", + "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", @@ -15217,9 +16492,9 @@ } }, "node_modules/supports-hyperlinks": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz", - "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" @@ -15267,6 +16542,7 @@ "version": "1.3.2", "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", "dependencies": { "chalk": "^2.4.1", "coa": "^2.0.2", @@ -15289,59 +16565,100 @@ "node": ">=4.0.0" } }, + "node_modules/svgo/node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/svgo/node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/svgo/node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/svgo/node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/svgo/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "node_modules/svgo/node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dependencies": { + "boolbase": "~1.0.0" + } + }, "node_modules/symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" }, "node_modules/tailwindcss": { - "version": "3.0.24", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.24.tgz", - "integrity": "sha512-H3uMmZNWzG6aqmg9q07ZIRNIawoiEcNFKDfL+YzOPuPsXuDXxJxB9icqzLgdzKNwjG3SAro2h9SYav8ewXNgig==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.5.tgz", + "integrity": "sha512-5SEZU4J7pxZgSkv7FP1zY8i2TIAOooNZ1e/OGtxIEv6GltpoiXUqWvLy89+a10qYTB1N5Ifkuw9lqQkN9sscvA==", "dependencies": { - "arg": "^5.0.1", + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", "chokidar": "^3.5.3", - "color-name": "^1.1.4", - "detective": "^5.2.0", "didyoumean": "^1.2.2", "dlv": "^1.1.3", - "fast-glob": "^3.2.11", + "fast-glob": "^3.3.0", "glob-parent": "^6.0.2", "is-glob": "^4.0.3", - "lilconfig": "^2.0.5", + "jiti": "^1.19.1", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", "normalize-path": "^3.0.0", "object-hash": "^3.0.0", "picocolors": "^1.0.0", - "postcss": "^8.4.12", - "postcss-js": "^4.0.0", - "postcss-load-config": "^3.1.4", - "postcss-nested": "5.0.6", - "postcss-selector-parser": "^6.0.10", - "postcss-value-parser": "^4.2.0", - "quick-lru": "^5.1.1", - "resolve": "^1.22.0" + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" }, "bin": { "tailwind": "lib/cli.js", "tailwindcss": "lib/cli.js" }, "engines": { - "node": ">=12.13.0" - }, - "peerDependencies": { - "postcss": "^8.0.9" + "node": ">=14.0.0" } }, - "node_modules/tailwindcss/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/tailwindcss/node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - }, "node_modules/tapable": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", @@ -15402,12 +16719,12 @@ } }, "node_modules/terser": { - "version": "5.14.2", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", - "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", + "version": "5.24.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.24.0.tgz", + "integrity": "sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==", "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -15419,15 +16736,15 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.1.tgz", - "integrity": "sha512-GvlZdT6wPQKbDNW/GDQzZFg/j4vKU96yl2q6mcUkzKOgW4gwf1Z8cZToUCrz31XHlPWH8MVb1r2tFtdDtTGJ7g==", + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "source-map": "^0.6.1", - "terser": "^5.7.2" + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" }, "engines": { "node": ">= 10.13.0" @@ -15451,14 +16768,6 @@ } } }, - "node_modules/terser-webpack-plugin/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/terser/node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", @@ -15485,12 +16794,31 @@ "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } }, "node_modules/throat": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", - "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==" + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", + "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==" }, "node_modules/thunky": { "version": "1.1.0", @@ -15540,22 +16868,23 @@ } }, "node_modules/tough-cookie": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", - "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", "dependencies": { "psl": "^1.1.33", "punycode": "^2.1.1", - "universalify": "^0.1.2" + "universalify": "^0.2.0", + "url-parse": "^1.5.3" }, "engines": { "node": ">=6" } }, "node_modules/tough-cookie/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", "engines": { "node": ">= 4.0.0" } @@ -15581,21 +16910,26 @@ "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" + }, "node_modules/tsconfig-paths": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", - "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", "dependencies": { "@types/json5": "^0.0.29", - "json5": "^1.0.1", + "json5": "^1.0.2", "minimist": "^1.2.6", "strip-bom": "^3.0.0" } }, "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dependencies": { "minimist": "^1.2.0" }, @@ -15606,15 +16940,15 @@ "node_modules/tsconfig-paths/node_modules/strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "engines": { "node": ">=4" } }, "node_modules/tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/tsutils": { "version": "3.21.0", @@ -15677,6 +17011,67 @@ "node": ">= 0.6" } }, + "node_modules/typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", @@ -15685,6 +17080,19 @@ "is-typedarray": "^1.0.0" } }, + "node_modules/typescript": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, "node_modules/unbox-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", @@ -15699,6 +17107,11 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/underscore": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz", + "integrity": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==" + }, "node_modules/unicode-canonical-property-names-ecmascript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", @@ -15720,17 +17133,17 @@ } }, "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", - "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", "engines": { "node": ">=4" } }, "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", - "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", "engines": { "node": ">=4" } @@ -15747,9 +17160,9 @@ } }, "node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "engines": { "node": ">= 10.0.0" } @@ -15765,7 +17178,7 @@ "node_modules/unquote": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", - "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" }, "node_modules/upath": { "version": "1.2.0", @@ -15776,6 +17189,35 @@ "yarn": "*" } }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", @@ -15784,6 +17226,15 @@ "punycode": "^2.1.0" } }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -15798,12 +17249,15 @@ "es-abstract": "^1.17.2", "has-symbols": "^1.0.1", "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/utila": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", - "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" }, "node_modules/utils-merge": { "version": "1.0.1", @@ -15821,11 +17275,6 @@ "uuid": "dist/bin/uuid" } }, - "node_modules/v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" - }, "node_modules/v8-to-istanbul": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", @@ -15856,6 +17305,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.", "dependencies": { "browser-process-hrtime": "^1.0.0" } @@ -15880,9 +17330,9 @@ } }, "node_modules/watchpack": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.3.1.tgz", - "integrity": "sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -15908,21 +17358,21 @@ } }, "node_modules/webpack": { - "version": "5.72.1", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.72.1.tgz", - "integrity": "sha512-dXG5zXCLspQR4krZVR6QgajnZOjW2K/djHvdcRaDQvsjV9z9vaW6+ja5dZOYbqBBjF6kGXka/2ZyxNdc+8Jung==", + "version": "5.89.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.89.0.tgz", + "integrity": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==", "dependencies": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.4.1", - "acorn-import-assertions": "^1.7.6", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.9.3", - "es-module-lexer": "^0.9.0", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", @@ -15931,10 +17381,10 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.2.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.3.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, "bin": { @@ -15954,12 +17404,12 @@ } }, "node_modules/webpack-dev-middleware": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.1.tgz", - "integrity": "sha512-81EujCKkyles2wphtdrnPg/QqegC/AtqNH//mQkBYSMqwFVCQrxM6ktB2O/SPlZy7LqeEfTbV3cZARGQz6umhg==", + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", "dependencies": { "colorette": "^2.0.10", - "memfs": "^3.4.1", + "memfs": "^3.4.3", "mime-types": "^2.1.31", "range-parser": "^1.2.1", "schema-utils": "^4.0.0" @@ -15976,9 +17426,9 @@ } }, "node_modules/webpack-dev-middleware/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -16007,14 +17457,14 @@ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" }, "node_modules/webpack-dev-middleware/node_modules/schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", "dependencies": { "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", + "ajv": "^8.9.0", "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" + "ajv-keywords": "^5.1.0" }, "engines": { "node": ">= 12.13.0" @@ -16025,38 +17475,40 @@ } }, "node_modules/webpack-dev-server": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.9.0.tgz", - "integrity": "sha512-+Nlb39iQSOSsFv0lWUuUTim3jDQO8nhK3E68f//J2r5rIcp4lULHXz2oZ0UVdEeWXEh5lSzYUlzarZhDAeAVQw==", + "version": "4.15.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz", + "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==", "dependencies": { "@types/bonjour": "^3.5.9", "@types/connect-history-api-fallback": "^1.3.5", "@types/express": "^4.17.13", "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", "@types/sockjs": "^0.3.33", - "@types/ws": "^8.5.1", + "@types/ws": "^8.5.5", "ansi-html-community": "^0.0.8", "bonjour-service": "^1.0.11", "chokidar": "^3.5.3", "colorette": "^2.0.10", "compression": "^1.7.4", - "connect-history-api-fallback": "^1.6.0", + "connect-history-api-fallback": "^2.0.0", "default-gateway": "^6.0.3", "express": "^4.17.3", "graceful-fs": "^4.2.6", "html-entities": "^2.3.2", "http-proxy-middleware": "^2.0.3", "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", "open": "^8.0.9", "p-retry": "^4.5.0", "rimraf": "^3.0.2", "schema-utils": "^4.0.0", - "selfsigned": "^2.0.1", + "selfsigned": "^2.1.1", "serve-index": "^1.9.1", - "sockjs": "^0.3.21", + "sockjs": "^0.3.24", "spdy": "^4.0.2", "webpack-dev-middleware": "^5.3.1", - "ws": "^8.4.2" + "ws": "^8.13.0" }, "bin": { "webpack-dev-server": "bin/webpack-dev-server.js" @@ -16064,19 +17516,26 @@ "engines": { "node": ">= 12.13.0" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, "peerDependencies": { "webpack": "^4.37.0 || ^5.0.0" }, "peerDependenciesMeta": { + "webpack": { + "optional": true + }, "webpack-cli": { "optional": true } } }, "node_modules/webpack-dev-server/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -16123,9 +17582,9 @@ } }, "node_modules/webpack-dev-server/node_modules/ipaddr.js": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", - "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", + "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", "engines": { "node": ">= 10" } @@ -16136,14 +17595,14 @@ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" }, "node_modules/webpack-dev-server/node_modules/schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", "dependencies": { "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", + "ajv": "^8.9.0", "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" + "ajv-keywords": "^5.1.0" }, "engines": { "node": ">= 12.13.0" @@ -16154,15 +17613,15 @@ } }, "node_modules/webpack-dev-server/node_modules/ws": { - "version": "8.6.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.6.0.tgz", - "integrity": "sha512-AzmM3aH3gk0aX7/rZLYvjdvZooofDu3fFOzGqcSnQ1tOcTWwhM/o+q++E8mAyVVIyUdajrkzWUGftaVSDLn1bw==", + "version": "8.14.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz", + "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", "engines": { "node": ">=10.0.0" }, "peerDependencies": { "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" + "utf-8-validate": ">=5.0.2" }, "peerDependenciesMeta": { "bufferutil": { @@ -16266,9 +17725,9 @@ } }, "node_modules/whatwg-fetch": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", - "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" + "version": "3.6.19", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.19.tgz", + "integrity": "sha512-d67JP4dHSbm2TrpFj8AbO8DnL1JXL5J9u0Kq2xW6d0TFDbCA3Muhdt8orXC22utleTVj7Prqt82baN6RBvnEgw==" }, "node_modules/whatwg-mimetype": { "version": "2.3.0", @@ -16317,11 +17776,69 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/which-builtin-type": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "dependencies": { + "function.prototype.name": "^1.1.5", + "has-tostringtag": "^1.0.0", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", + "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.4", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/winston": { - "version": "3.8.1", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.8.1.tgz", - "integrity": "sha512-r+6YAiCR4uI3N8eQNOg8k3P3PqwAm20cLKlzVD9E66Ch39+LZC+VH1UKf9JemQj2B3QoUHfKD7Poewn0Pr3Y1w==", + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/winston/-/winston-3.8.2.tgz", + "integrity": "sha512-MsE1gRx1m5jdTTO9Ld/vND4krP2To+lgDoMEHGGa4HIlAUyXJtfc7CxQcGXVyz2IBpw5hbFkj2b/AtUdQwyRew==", "dependencies": { + "@colors/colors": "1.5.0", "@dabh/diagnostics": "^2.0.2", "async": "^3.2.3", "is-stream": "^2.0.0", @@ -16351,34 +17868,34 @@ } }, "node_modules/word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "engines": { "node": ">=0.10.0" } }, "node_modules/workbox-background-sync": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.5.3.tgz", - "integrity": "sha512-0DD/V05FAcek6tWv9XYj2w5T/plxhDSpclIcAGjA/b7t/6PdaRkQ7ZgtAX6Q/L7kV7wZ8uYRJUoH11VjNipMZw==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz", + "integrity": "sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==", "dependencies": { - "idb": "^6.1.4", - "workbox-core": "6.5.3" + "idb": "^7.0.1", + "workbox-core": "6.6.0" } }, "node_modules/workbox-broadcast-update": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.5.3.tgz", - "integrity": "sha512-4AwCIA5DiDrYhlN+Miv/fp5T3/whNmSL+KqhTwRBTZIL6pvTgE4lVuRzAt1JltmqyMcQ3SEfCdfxczuI4kwFQg==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz", + "integrity": "sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==", "dependencies": { - "workbox-core": "6.5.3" + "workbox-core": "6.6.0" } }, "node_modules/workbox-build": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.5.3.tgz", - "integrity": "sha512-8JNHHS7u13nhwIYCDea9MNXBNPHXCs5KDZPKI/ZNTr3f4sMGoD7hgFGecbyjX1gw4z6e9bMpMsOEJNyH5htA/w==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz", + "integrity": "sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==", "dependencies": { "@apideck/better-ajv-errors": "^0.3.1", "@babel/core": "^7.11.1", @@ -16402,30 +17919,30 @@ "strip-comments": "^2.0.1", "tempy": "^0.6.0", "upath": "^1.2.0", - "workbox-background-sync": "6.5.3", - "workbox-broadcast-update": "6.5.3", - "workbox-cacheable-response": "6.5.3", - "workbox-core": "6.5.3", - "workbox-expiration": "6.5.3", - "workbox-google-analytics": "6.5.3", - "workbox-navigation-preload": "6.5.3", - "workbox-precaching": "6.5.3", - "workbox-range-requests": "6.5.3", - "workbox-recipes": "6.5.3", - "workbox-routing": "6.5.3", - "workbox-strategies": "6.5.3", - "workbox-streams": "6.5.3", - "workbox-sw": "6.5.3", - "workbox-window": "6.5.3" + "workbox-background-sync": "6.6.0", + "workbox-broadcast-update": "6.6.0", + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-google-analytics": "6.6.0", + "workbox-navigation-preload": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-range-requests": "6.6.0", + "workbox-recipes": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0", + "workbox-streams": "6.6.0", + "workbox-sw": "6.6.0", + "workbox-window": "6.6.0" }, "engines": { "node": ">=10.0.0" } }, "node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.3.tgz", - "integrity": "sha512-9o+HO2MbJhJHjDYZaDxJmSDckvDpiuItEsrIShV0DXeCshXWRHhqYyU/PKHMkuClOmFnZhRd6wzv4vpDu/dRKg==", + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz", + "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==", "dependencies": { "json-schema": "^0.4.0", "jsonpointer": "^5.0.0", @@ -16439,9 +17956,9 @@ } }, "node_modules/workbox-build/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -16486,7 +18003,7 @@ "node_modules/workbox-build/node_modules/tr46": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", "dependencies": { "punycode": "^2.1.0" } @@ -16507,117 +18024,118 @@ } }, "node_modules/workbox-cacheable-response": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.5.3.tgz", - "integrity": "sha512-6JE/Zm05hNasHzzAGKDkqqgYtZZL2H06ic2GxuRLStA4S/rHUfm2mnLFFXuHAaGR1XuuYyVCEey1M6H3PdZ7SQ==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz", + "integrity": "sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==", + "deprecated": "workbox-background-sync@6.6.0", "dependencies": { - "workbox-core": "6.5.3" + "workbox-core": "6.6.0" } }, "node_modules/workbox-core": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.5.3.tgz", - "integrity": "sha512-Bb9ey5n/M9x+l3fBTlLpHt9ASTzgSGj6vxni7pY72ilB/Pb3XtN+cZ9yueboVhD5+9cNQrC9n/E1fSrqWsUz7Q==" + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz", + "integrity": "sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==" }, "node_modules/workbox-expiration": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.5.3.tgz", - "integrity": "sha512-jzYopYR1zD04ZMdlbn/R2Ik6ixiXbi15c9iX5H8CTi6RPDz7uhvMLZPKEndZTpfgmUk8mdmT9Vx/AhbuCl5Sqw==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz", + "integrity": "sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==", "dependencies": { - "idb": "^6.1.4", - "workbox-core": "6.5.3" + "idb": "^7.0.1", + "workbox-core": "6.6.0" } }, "node_modules/workbox-google-analytics": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.5.3.tgz", - "integrity": "sha512-3GLCHotz5umoRSb4aNQeTbILETcrTVEozSfLhHSBaegHs1PnqCmN0zbIy2TjTpph2AGXiNwDrWGF0AN+UgDNTw==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz", + "integrity": "sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==", "dependencies": { - "workbox-background-sync": "6.5.3", - "workbox-core": "6.5.3", - "workbox-routing": "6.5.3", - "workbox-strategies": "6.5.3" + "workbox-background-sync": "6.6.0", + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" } }, "node_modules/workbox-navigation-preload": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.5.3.tgz", - "integrity": "sha512-bK1gDFTc5iu6lH3UQ07QVo+0ovErhRNGvJJO/1ngknT0UQ702nmOUhoN9qE5mhuQSrnK+cqu7O7xeaJ+Rd9Tmg==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz", + "integrity": "sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==", "dependencies": { - "workbox-core": "6.5.3" + "workbox-core": "6.6.0" } }, "node_modules/workbox-precaching": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.5.3.tgz", - "integrity": "sha512-sjNfgNLSsRX5zcc63H/ar/hCf+T19fRtTqvWh795gdpghWb5xsfEkecXEvZ8biEi1QD7X/ljtHphdaPvXDygMQ==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz", + "integrity": "sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==", "dependencies": { - "workbox-core": "6.5.3", - "workbox-routing": "6.5.3", - "workbox-strategies": "6.5.3" + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" } }, "node_modules/workbox-range-requests": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.5.3.tgz", - "integrity": "sha512-pGCP80Bpn/0Q0MQsfETSfmtXsQcu3M2QCJwSFuJ6cDp8s2XmbUXkzbuQhCUzKR86ZH2Vex/VUjb2UaZBGamijA==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz", + "integrity": "sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==", "dependencies": { - "workbox-core": "6.5.3" + "workbox-core": "6.6.0" } }, "node_modules/workbox-recipes": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.5.3.tgz", - "integrity": "sha512-IcgiKYmbGiDvvf3PMSEtmwqxwfQ5zwI7OZPio3GWu4PfehA8jI8JHI3KZj+PCfRiUPZhjQHJ3v1HbNs+SiSkig==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz", + "integrity": "sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==", "dependencies": { - "workbox-cacheable-response": "6.5.3", - "workbox-core": "6.5.3", - "workbox-expiration": "6.5.3", - "workbox-precaching": "6.5.3", - "workbox-routing": "6.5.3", - "workbox-strategies": "6.5.3" + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" } }, "node_modules/workbox-routing": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.5.3.tgz", - "integrity": "sha512-DFjxcuRAJjjt4T34RbMm3MCn+xnd36UT/2RfPRfa8VWJGItGJIn7tG+GwVTdHmvE54i/QmVTJepyAGWtoLPTmg==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz", + "integrity": "sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==", "dependencies": { - "workbox-core": "6.5.3" + "workbox-core": "6.6.0" } }, "node_modules/workbox-strategies": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.5.3.tgz", - "integrity": "sha512-MgmGRrDVXs7rtSCcetZgkSZyMpRGw8HqL2aguszOc3nUmzGZsT238z/NN9ZouCxSzDu3PQ3ZSKmovAacaIhu1w==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz", + "integrity": "sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==", "dependencies": { - "workbox-core": "6.5.3" + "workbox-core": "6.6.0" } }, "node_modules/workbox-streams": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.5.3.tgz", - "integrity": "sha512-vN4Qi8o+b7zj1FDVNZ+PlmAcy1sBoV7SC956uhqYvZ9Sg1fViSbOpydULOssVJ4tOyKRifH/eoi6h99d+sJ33w==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz", + "integrity": "sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==", "dependencies": { - "workbox-core": "6.5.3", - "workbox-routing": "6.5.3" + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0" } }, "node_modules/workbox-sw": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.5.3.tgz", - "integrity": "sha512-BQBzm092w+NqdIEF2yhl32dERt9j9MDGUTa2Eaa+o3YKL4Qqw55W9yQC6f44FdAHdAJrJvp0t+HVrfh8AiGj8A==" + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz", + "integrity": "sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==" }, "node_modules/workbox-webpack-plugin": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.5.3.tgz", - "integrity": "sha512-Es8Xr02Gi6Kc3zaUwR691ZLy61hz3vhhs5GztcklQ7kl5k2qAusPh0s6LF3wEtlpfs9ZDErnmy5SErwoll7jBA==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.0.tgz", + "integrity": "sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==", "dependencies": { "fast-json-stable-stringify": "^2.1.0", "pretty-bytes": "^5.4.1", "upath": "^1.2.0", "webpack-sources": "^1.4.3", - "workbox-build": "6.5.3" + "workbox-build": "6.6.0" }, "engines": { "node": ">=10.0.0" @@ -16644,12 +18162,12 @@ } }, "node_modules/workbox-window": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.5.3.tgz", - "integrity": "sha512-GnJbx1kcKXDtoJBVZs/P7ddP0Yt52NNy4nocjBpYPiRhMqTpJCNrSL+fGHZ/i/oP6p/vhE8II0sA6AZGKGnssw==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz", + "integrity": "sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==", "dependencies": { "@types/trusted-types": "^2.0.2", - "workbox-core": "6.5.3" + "workbox-core": "6.6.0" } }, "node_modules/wrap-ansi": { @@ -16701,7 +18219,7 @@ "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, "node_modules/write-file-atomic": { "version": "3.0.3", @@ -16715,9 +18233,9 @@ } }, "node_modules/ws": { - "version": "7.5.7", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.7.tgz", - "integrity": "sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==", + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", "engines": { "node": ">=8.3.0" }, @@ -16744,14 +18262,6 @@ "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "engines": { - "node": ">=0.4" - } - }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", @@ -16761,9 +18271,9 @@ } }, "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" }, "node_modules/yaml": { "version": "1.10.2", @@ -16811,6 +18321,16 @@ } }, "dependencies": { + "@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==" + }, + "@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==" + }, "@ampproject/remapping": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", @@ -16821,17 +18341,18 @@ } }, "@babel/code-frame": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", - "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", "requires": { - "@babel/highlight": "^7.16.7" + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" } }, "@babel/compat-data": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.10.tgz", - "integrity": "sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==" + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.3.tgz", + "integrity": "sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==" }, "@babel/core": { "version": "7.17.10", @@ -16853,283 +18374,244 @@ "gensync": "^1.0.0-beta.2", "json5": "^2.2.1", "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } } }, "@babel/eslint-parser": { - "version": "7.17.0", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.17.0.tgz", - "integrity": "sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.23.3.tgz", + "integrity": "sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==", "requires": { - "eslint-scope": "^5.1.1", + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", "eslint-visitor-keys": "^2.1.0", - "semver": "^6.3.0" + "semver": "^6.3.1" }, "dependencies": { - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - } - }, "eslint-visitor-keys": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" - }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" } } }, "@babel/generator": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.17.10.tgz", - "integrity": "sha512-46MJZZo9y3o4kmhBVc7zW7i8dtR1oIK/sdO5NcfcZRhTGYi+KKJRtHNgsU6c4VUcJmUNV/LQdebD/9Dlv4K+Tg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.3.tgz", + "integrity": "sha512-keeZWAV4LU3tW0qRi19HRpabC/ilM0HRBBzf9/k8FFiG4KVpiv0FIy4hHfLfFQZNhziCTPTmd59zoyv6DNISzg==", "requires": { - "@babel/types": "^7.17.10", - "@jridgewell/gen-mapping": "^0.1.0", + "@babel/types": "^7.23.3", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" + }, + "dependencies": { + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + } } }, "@babel/helper-annotate-as-pure": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz", - "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", "requires": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.22.5" } }, "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz", - "integrity": "sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", + "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", "requires": { - "@babel/helper-explode-assignable-expression": "^7.16.7", - "@babel/types": "^7.16.7" + "@babel/types": "^7.22.15" } }, - "@babel/helper-compilation-targets": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.10.tgz", - "integrity": "sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ==", - "requires": { - "@babel/compat-data": "^7.17.10", - "@babel/helper-validator-option": "^7.16.7", - "browserslist": "^4.20.2", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } + "@babel/helper-compilation-targets": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", + "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", + "requires": { + "@babel/compat-data": "^7.22.9", + "@babel/helper-validator-option": "^7.22.15", + "browserslist": "^4.21.9", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" } }, "@babel/helper-create-class-features-plugin": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.9.tgz", - "integrity": "sha512-kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz", + "integrity": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==", "requires": { - "@babel/helper-annotate-as-pure": "^7.16.7", - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.17.9", - "@babel/helper-member-expression-to-functions": "^7.17.7", - "@babel/helper-optimise-call-expression": "^7.16.7", - "@babel/helper-replace-supers": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" } }, "@babel/helper-create-regexp-features-plugin": { - "version": "7.17.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz", - "integrity": "sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", + "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", "requires": { - "@babel/helper-annotate-as-pure": "^7.16.7", - "regexpu-core": "^5.0.1" + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" } }, "@babel/helper-define-polyfill-provider": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz", - "integrity": "sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==", - "requires": { - "@babel/helper-compilation-targets": "^7.13.0", - "@babel/helper-module-imports": "^7.12.13", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/traverse": "^7.13.0", + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz", + "integrity": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==", + "requires": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } + "resolve": "^1.14.2" } }, "@babel/helper-environment-visitor": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz", - "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==", - "requires": { - "@babel/types": "^7.16.7" - } - }, - "@babel/helper-explode-assignable-expression": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz", - "integrity": "sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==", - "requires": { - "@babel/types": "^7.16.7" - } + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==" }, "@babel/helper-function-name": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz", - "integrity": "sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", "requires": { - "@babel/template": "^7.16.7", - "@babel/types": "^7.17.0" + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" } }, "@babel/helper-hoist-variables": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz", - "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", "requires": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.22.5" } }, "@babel/helper-member-expression-to-functions": { - "version": "7.17.7", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz", - "integrity": "sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", + "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", "requires": { - "@babel/types": "^7.17.0" + "@babel/types": "^7.23.0" } }, "@babel/helper-module-imports": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz", - "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", "requires": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.22.15" } }, "@babel/helper-module-transforms": { - "version": "7.17.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz", - "integrity": "sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==", - "requires": { - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-module-imports": "^7.16.7", - "@babel/helper-simple-access": "^7.17.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/helper-validator-identifier": "^7.16.7", - "@babel/template": "^7.16.7", - "@babel/traverse": "^7.17.3", - "@babel/types": "^7.17.0" + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "requires": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" } }, "@babel/helper-optimise-call-expression": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz", - "integrity": "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", "requires": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.22.5" } }, "@babel/helper-plugin-utils": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz", - "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==" + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" }, "@babel/helper-remap-async-to-generator": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz", - "integrity": "sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", + "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", "requires": { - "@babel/helper-annotate-as-pure": "^7.16.7", - "@babel/helper-wrap-function": "^7.16.8", - "@babel/types": "^7.16.8" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-wrap-function": "^7.22.20" } }, "@babel/helper-replace-supers": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz", - "integrity": "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", + "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", "requires": { - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-member-expression-to-functions": "^7.16.7", - "@babel/helper-optimise-call-expression": "^7.16.7", - "@babel/traverse": "^7.16.7", - "@babel/types": "^7.16.7" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-optimise-call-expression": "^7.22.5" } }, "@babel/helper-simple-access": { - "version": "7.17.7", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz", - "integrity": "sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", "requires": { - "@babel/types": "^7.17.0" + "@babel/types": "^7.22.5" } }, "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz", - "integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", "requires": { - "@babel/types": "^7.16.0" + "@babel/types": "^7.22.5" } }, "@babel/helper-split-export-declaration": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz", - "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "requires": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.22.5" } }, + "@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==" + }, "@babel/helper-validator-identifier": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", - "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==" + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" }, "@babel/helper-validator-option": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz", - "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==" + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", + "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==" }, "@babel/helper-wrap-function": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz", - "integrity": "sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", + "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", "requires": { - "@babel/helper-function-name": "^7.16.7", - "@babel/template": "^7.16.7", - "@babel/traverse": "^7.16.8", - "@babel/types": "^7.16.8" + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.15", + "@babel/types": "^7.22.19" } }, "@babel/helpers": { @@ -17143,193 +18625,110 @@ } }, "@babel/highlight": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.9.tgz", - "integrity": "sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "chalk": "^2.0.0", + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", "js-tokens": "^4.0.0" } }, "@babel/parser": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.17.10.tgz", - "integrity": "sha512-n2Q6i+fnJqzOaq2VkdXxy2TCPCWQZHiCo0XqmrCvDWcZQKRyZzYi4Z0yxlBuN0w+r2ZHmre+Q087DSrw3pbJDQ==" + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.3.tgz", + "integrity": "sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz", - "integrity": "sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz", + "integrity": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz", - "integrity": "sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz", + "integrity": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", - "@babel/plugin-proposal-optional-chaining": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.23.3" } }, - "@babel/plugin-proposal-async-generator-functions": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz", - "integrity": "sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.3.tgz", + "integrity": "sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-remap-async-to-generator": "^7.16.8", - "@babel/plugin-syntax-async-generators": "^7.8.4" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-proposal-class-properties": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz", - "integrity": "sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7" - } - }, - "@babel/plugin-proposal-class-static-block": { - "version": "7.17.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.17.6.tgz", - "integrity": "sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", "requires": { - "@babel/helper-create-class-features-plugin": "^7.17.6", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-class-static-block": "^7.14.5" + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" } }, "@babel/plugin-proposal-decorators": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.17.9.tgz", - "integrity": "sha512-EfH2LZ/vPa2wuPwJ26j+kYRkaubf89UlwxKXtxqEm57HrgSEYDB8t4swFP+p8LcI9yiP9ZRJJjo/58hS6BnaDA==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.17.9", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-replace-supers": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/plugin-syntax-decorators": "^7.17.0", - "charcodes": "^0.2.0" - } - }, - "@babel/plugin-proposal-dynamic-import": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz", - "integrity": "sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==", - "requires": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - } - }, - "@babel/plugin-proposal-export-namespace-from": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz", - "integrity": "sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==", - "requires": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - } - }, - "@babel/plugin-proposal-json-strings": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz", - "integrity": "sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-json-strings": "^7.8.3" - } - }, - "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz", - "integrity": "sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.3.tgz", + "integrity": "sha512-u8SwzOcP0DYSsa++nHd/9exlHb0NAlHCb890qtZZbSwPX2bFv8LBEztxwN7Xg/dS8oAFFidhrI9PBcLBJSkGRQ==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/plugin-syntax-decorators": "^7.23.3" } }, "@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz", - "integrity": "sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" } }, "@babel/plugin-proposal-numeric-separator": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz", - "integrity": "sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-numeric-separator": "^7.10.4" } }, - "@babel/plugin-proposal-object-rest-spread": { - "version": "7.17.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz", - "integrity": "sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==", - "requires": { - "@babel/compat-data": "^7.17.0", - "@babel/helper-compilation-targets": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.16.7" - } - }, - "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz", - "integrity": "sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==", - "requires": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - } - }, "@babel/plugin-proposal-optional-chaining": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz", - "integrity": "sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", "@babel/plugin-syntax-optional-chaining": "^7.8.3" } }, "@babel/plugin-proposal-private-methods": { - "version": "7.16.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz", - "integrity": "sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", "requires": { - "@babel/helper-create-class-features-plugin": "^7.16.10", - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" } }, "@babel/plugin-proposal-private-property-in-object": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz", - "integrity": "sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.16.7", - "@babel/helper-create-class-features-plugin": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - } - }, - "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz", - "integrity": "sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7" - } + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "requires": {} }, "@babel/plugin-syntax-async-generators": { "version": "7.8.4", @@ -17364,11 +18763,11 @@ } }, "@babel/plugin-syntax-decorators": { - "version": "7.17.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.17.0.tgz", - "integrity": "sha512-qWe85yCXsvDEluNP0OyeQjH63DlhAR3W7K9BxxU1MvbDb48tgBG+Ao6IJJ6smPDrrVzSQZrbF6donpkFBMcs3A==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.23.3.tgz", + "integrity": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-syntax-dynamic-import": { @@ -17388,11 +18787,27 @@ } }, "@babel/plugin-syntax-flow": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.16.7.tgz", - "integrity": "sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.23.3.tgz", + "integrity": "sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==", + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-import-assertions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz", + "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-import-attributes": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz", + "integrity": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==", + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-syntax-import-meta": { @@ -17412,11 +18827,11 @@ } }, "@babel/plugin-syntax-jsx": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz", - "integrity": "sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-syntax-logical-assignment-operators": { @@ -17484,410 +18899,557 @@ } }, "@babel/plugin-syntax-typescript": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.17.10.tgz", - "integrity": "sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" } }, "@babel/plugin-transform-arrow-functions": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz", - "integrity": "sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz", + "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-async-generator-functions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.3.tgz", + "integrity": "sha512-59GsVNavGxAXCDDbakWSMJhajASb4kBCqDjqJsv+p5nKdbz7istmZ3HrX3L2LuiI80+zsOADCvooqQH3qGCucQ==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.20", + "@babel/plugin-syntax-async-generators": "^7.8.4" } }, "@babel/plugin-transform-async-to-generator": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz", - "integrity": "sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz", + "integrity": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==", "requires": { - "@babel/helper-module-imports": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-remap-async-to-generator": "^7.16.8" + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.20" } }, "@babel/plugin-transform-block-scoped-functions": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz", - "integrity": "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz", + "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-block-scoping": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz", - "integrity": "sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.3.tgz", + "integrity": "sha512-QPZxHrThbQia7UdvfpaRRlq/J9ciz1J4go0k+lPBXbgaNeY7IQrBj/9ceWjvMMI07/ZBzHl/F0R/2K0qH7jCVw==", + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-class-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz", + "integrity": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-class-static-block": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.3.tgz", + "integrity": "sha512-PENDVxdr7ZxKPyi5Ffc0LjXdnJyrJxyqF5T5YjlVg4a0VFfQHW0r8iAtRiDXkfHlu1wwcvdtnndGYIeJLSuRMQ==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" } }, "@babel/plugin-transform-classes": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz", - "integrity": "sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.16.7", - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.16.7", - "@babel/helper-optimise-call-expression": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-replace-supers": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.3.tgz", + "integrity": "sha512-FGEQmugvAEu2QtgtU0uTASXevfLMFfBeVCIIdcQhn/uBQsMTjBajdnAtanQlOcuihWh10PZ7+HWvc7NtBwP74w==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-split-export-declaration": "^7.22.6", "globals": "^11.1.0" } }, "@babel/plugin-transform-computed-properties": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz", - "integrity": "sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz", + "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.15" } }, "@babel/plugin-transform-destructuring": { - "version": "7.17.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.7.tgz", - "integrity": "sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz", + "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-dotall-regex": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz", - "integrity": "sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz", + "integrity": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==", "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-duplicate-keys": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz", - "integrity": "sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz", + "integrity": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==", + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-dynamic-import": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.3.tgz", + "integrity": "sha512-vTG+cTGxPFou12Rj7ll+eD5yWeNl5/8xvQvF08y5Gv3v4mZQoyFf8/n9zg4q5vvCWt5jmgymfzMAldO7orBn7A==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" } }, "@babel/plugin-transform-exponentiation-operator": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz", - "integrity": "sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz", + "integrity": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==", + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-export-namespace-from": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.3.tgz", + "integrity": "sha512-yCLhW34wpJWRdTxxWtFZASJisihrfyMOTOQexhVzA78jlU+dH7Dw+zQgcPepQ5F3C6bAIiblZZ+qBggJdHiBAg==", "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.16.7.tgz", - "integrity": "sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.23.3.tgz", + "integrity": "sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-flow": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-flow": "^7.23.3" } }, "@babel/plugin-transform-for-of": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz", - "integrity": "sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.3.tgz", + "integrity": "sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-function-name": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz", - "integrity": "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz", + "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==", + "requires": { + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-json-strings": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.3.tgz", + "integrity": "sha512-H9Ej2OiISIZowZHaBwF0tsJOih1PftXJtE8EWqlEIwpc7LMTGq0rPOrywKLQ4nefzx8/HMR0D3JGXoMHYvhi0A==", "requires": { - "@babel/helper-compilation-targets": "^7.16.7", - "@babel/helper-function-name": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" } }, "@babel/plugin-transform-literals": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz", - "integrity": "sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz", + "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-logical-assignment-operators": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.3.tgz", + "integrity": "sha512-+pD5ZbxofyOygEp+zZAfujY2ShNCXRpDRIPOiBmTO693hhyOEteZgl876Xs9SAHPQpcV0vz8LvA/T+w8AzyX8A==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" } }, "@babel/plugin-transform-member-expression-literals": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz", - "integrity": "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz", + "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-modules-amd": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz", - "integrity": "sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz", + "integrity": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==", "requires": { - "@babel/helper-module-transforms": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-modules-commonjs": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.9.tgz", - "integrity": "sha512-2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz", + "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", "requires": { - "@babel/helper-module-transforms": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-simple-access": "^7.17.7", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.17.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.17.8.tgz", - "integrity": "sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz", + "integrity": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==", "requires": { - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-module-transforms": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-validator-identifier": "^7.16.7", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.20" } }, "@babel/plugin-transform-modules-umd": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz", - "integrity": "sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz", + "integrity": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==", "requires": { - "@babel/helper-module-transforms": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.17.10.tgz", - "integrity": "sha512-v54O6yLaJySCs6mGzaVOUw9T967GnH38T6CQSAtnzdNPwu84l2qAjssKzo/WSO8Yi7NF+7ekm5cVbF/5qiIgNA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.17.0" + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-new-target": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz", - "integrity": "sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz", + "integrity": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.3.tgz", + "integrity": "sha512-xzg24Lnld4DYIdysyf07zJ1P+iIfJpxtVFOzX4g+bsJ3Ng5Le7rXx9KwqKzuyaUeRnt+I1EICwQITqc0E2PmpA==", + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-transform-numeric-separator": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.3.tgz", + "integrity": "sha512-s9GO7fIBi/BLsZ0v3Rftr6Oe4t0ctJ8h4CCXfPoEJwmvAPMyNrfkOOJzm6b9PX9YXcCJWWQd/sBF/N26eBiMVw==", + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-transform-object-rest-spread": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.3.tgz", + "integrity": "sha512-VxHt0ANkDmu8TANdE9Kc0rndo/ccsmfe2Cx2y5sI4hu3AukHQ5wAu4cM7j3ba8B9548ijVyclBU+nuDQftZsog==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/compat-data": "^7.23.3", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.23.3" } }, "@babel/plugin-transform-object-super": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz", - "integrity": "sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz", + "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==", + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20" + } + }, + "@babel/plugin-transform-optional-catch-binding": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.3.tgz", + "integrity": "sha512-LxYSb0iLjUamfm7f1D7GpiS4j0UAC8AOiehnsGAP8BEsIX8EOi3qV6bbctw8M7ZvLtcoZfZX5Z7rN9PlWk0m5A==", + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-transform-optional-chaining": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.3.tgz", + "integrity": "sha512-zvL8vIfIUgMccIAK1lxjvNv572JHFJIKb4MWBz5OGdBQA0fB0Xluix5rmOby48exiJc987neOmP/m9Fnpkz3Tg==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-replace-supers": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" } }, "@babel/plugin-transform-parameters": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz", - "integrity": "sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz", + "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==", + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-private-methods": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz", + "integrity": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-private-property-in-object": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.3.tgz", + "integrity": "sha512-a5m2oLNFyje2e/rGKjVfAELTVI5mbA0FeZpBnkOWWV7eSmKQ+T/XW0Vf+29ScLzSxX+rnsarvU0oie/4m6hkxA==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" } }, "@babel/plugin-transform-property-literals": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz", - "integrity": "sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz", + "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-react-constant-elements": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.14.5.tgz", - "integrity": "sha512-NBqLEx1GxllIOXJInJAQbrnwwYJsV3WaMHIcOwD8rhYS0AabTWn7kHdHgPgu5RmHLU0q4DMxhAMu8ue/KampgQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.23.3.tgz", + "integrity": "sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw==", "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-react-display-name": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.7.tgz", - "integrity": "sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz", + "integrity": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-react-jsx": { - "version": "7.17.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.17.3.tgz", - "integrity": "sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.16.7", - "@babel/helper-module-imports": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-jsx": "^7.16.7", - "@babel/types": "^7.17.0" + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.15.tgz", + "integrity": "sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.22.5", + "@babel/types": "^7.22.15" } }, "@babel/plugin-transform-react-jsx-development": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.7.tgz", - "integrity": "sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz", + "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==", "requires": { - "@babel/plugin-transform-react-jsx": "^7.16.7" + "@babel/plugin-transform-react-jsx": "^7.22.5" } }, "@babel/plugin-transform-react-pure-annotations": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.7.tgz", - "integrity": "sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.23.3.tgz", + "integrity": "sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==", "requires": { - "@babel/helper-annotate-as-pure": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-regenerator": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.17.9.tgz", - "integrity": "sha512-Lc2TfbxR1HOyn/c6b4Y/b6NHoTb67n/IoWLxTu4kC7h4KQnWlhCq2S8Tx0t2SVvv5Uu87Hs+6JEJ5kt2tYGylQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz", + "integrity": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==", "requires": { - "regenerator-transform": "^0.15.0" + "@babel/helper-plugin-utils": "^7.22.5", + "regenerator-transform": "^0.15.2" } }, "@babel/plugin-transform-reserved-words": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz", - "integrity": "sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz", + "integrity": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-runtime": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.17.10.tgz", - "integrity": "sha512-6jrMilUAJhktTr56kACL8LnWC5hx3Lf27BS0R0DSyW/OoJfb/iTHeE96V3b1dgKG3FSFdd/0culnYWMkjcKCig==", - "requires": { - "@babel/helper-module-imports": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7", - "babel-plugin-polyfill-corejs2": "^0.3.0", - "babel-plugin-polyfill-corejs3": "^0.5.0", - "babel-plugin-polyfill-regenerator": "^0.3.0", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.3.tgz", + "integrity": "sha512-XcQ3X58CKBdBnnZpPaQjgVMePsXtSZzHoku70q9tUAQp02ggPQNM04BF3RvlW1GSM/McbSOQAzEK4MXbS7/JFg==", + "requires": { + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", + "semver": "^6.3.1" } }, "@babel/plugin-transform-shorthand-properties": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz", - "integrity": "sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz", + "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-spread": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz", - "integrity": "sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz", + "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" } }, "@babel/plugin-transform-sticky-regex": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz", - "integrity": "sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz", + "integrity": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-template-literals": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz", - "integrity": "sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz", + "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-typeof-symbol": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz", - "integrity": "sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz", + "integrity": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-typescript": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.8.tgz", - "integrity": "sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.3.tgz", + "integrity": "sha512-ogV0yWnq38CFwH20l2Afz0dfKuZBx9o/Y2Rmh5vuSS0YD1hswgEgTfyTzuSrT2q9btmHRSqYoSfwFUVaC1M1Jw==", "requires": { - "@babel/helper-create-class-features-plugin": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/plugin-syntax-typescript": "^7.16.7" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-typescript": "^7.23.3" } }, "@babel/plugin-transform-unicode-escapes": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz", - "integrity": "sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz", + "integrity": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-unicode-property-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz", + "integrity": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-unicode-regex": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz", - "integrity": "sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz", + "integrity": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==", "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.16.7", - "@babel/helper-plugin-utils": "^7.16.7" + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" } }, - "@babel/preset-env": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.17.10.tgz", - "integrity": "sha512-YNgyBHZQpeoBSRBg0xixsZzfT58Ze1iZrajvv0lJc70qDDGuGfonEnMGfWeSY0mQ3JTuCWFbMkzFRVafOyJx4g==", + "@babel/plugin-transform-unicode-sets-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz", + "integrity": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==", "requires": { - "@babel/compat-data": "^7.17.10", - "@babel/helper-compilation-targets": "^7.17.10", - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-validator-option": "^7.16.7", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.7", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.7", - "@babel/plugin-proposal-async-generator-functions": "^7.16.8", - "@babel/plugin-proposal-class-properties": "^7.16.7", - "@babel/plugin-proposal-class-static-block": "^7.17.6", - "@babel/plugin-proposal-dynamic-import": "^7.16.7", - "@babel/plugin-proposal-export-namespace-from": "^7.16.7", - "@babel/plugin-proposal-json-strings": "^7.16.7", - "@babel/plugin-proposal-logical-assignment-operators": "^7.16.7", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7", - "@babel/plugin-proposal-numeric-separator": "^7.16.7", - "@babel/plugin-proposal-object-rest-spread": "^7.17.3", - "@babel/plugin-proposal-optional-catch-binding": "^7.16.7", - "@babel/plugin-proposal-optional-chaining": "^7.16.7", - "@babel/plugin-proposal-private-methods": "^7.16.11", - "@babel/plugin-proposal-private-property-in-object": "^7.16.7", - "@babel/plugin-proposal-unicode-property-regex": "^7.16.7", + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/preset-env": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.3.tgz", + "integrity": "sha512-ovzGc2uuyNfNAs/jyjIGxS8arOHS5FENZaNn4rtE7UdKMMkqHCvboHfcuhWLZNX5cB44QfcGNWjaevxMzzMf+Q==", + "requires": { + "@babel/compat-data": "^7.23.3", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.23.3", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.3", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.23.3", + "@babel/plugin-syntax-import-attributes": "^7.23.3", + "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", @@ -17897,139 +19459,152 @@ "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.16.7", - "@babel/plugin-transform-async-to-generator": "^7.16.8", - "@babel/plugin-transform-block-scoped-functions": "^7.16.7", - "@babel/plugin-transform-block-scoping": "^7.16.7", - "@babel/plugin-transform-classes": "^7.16.7", - "@babel/plugin-transform-computed-properties": "^7.16.7", - "@babel/plugin-transform-destructuring": "^7.17.7", - "@babel/plugin-transform-dotall-regex": "^7.16.7", - "@babel/plugin-transform-duplicate-keys": "^7.16.7", - "@babel/plugin-transform-exponentiation-operator": "^7.16.7", - "@babel/plugin-transform-for-of": "^7.16.7", - "@babel/plugin-transform-function-name": "^7.16.7", - "@babel/plugin-transform-literals": "^7.16.7", - "@babel/plugin-transform-member-expression-literals": "^7.16.7", - "@babel/plugin-transform-modules-amd": "^7.16.7", - "@babel/plugin-transform-modules-commonjs": "^7.17.9", - "@babel/plugin-transform-modules-systemjs": "^7.17.8", - "@babel/plugin-transform-modules-umd": "^7.16.7", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.17.10", - "@babel/plugin-transform-new-target": "^7.16.7", - "@babel/plugin-transform-object-super": "^7.16.7", - "@babel/plugin-transform-parameters": "^7.16.7", - "@babel/plugin-transform-property-literals": "^7.16.7", - "@babel/plugin-transform-regenerator": "^7.17.9", - "@babel/plugin-transform-reserved-words": "^7.16.7", - "@babel/plugin-transform-shorthand-properties": "^7.16.7", - "@babel/plugin-transform-spread": "^7.16.7", - "@babel/plugin-transform-sticky-regex": "^7.16.7", - "@babel/plugin-transform-template-literals": "^7.16.7", - "@babel/plugin-transform-typeof-symbol": "^7.16.7", - "@babel/plugin-transform-unicode-escapes": "^7.16.7", - "@babel/plugin-transform-unicode-regex": "^7.16.7", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.17.10", - "babel-plugin-polyfill-corejs2": "^0.3.0", - "babel-plugin-polyfill-corejs3": "^0.5.0", - "babel-plugin-polyfill-regenerator": "^0.3.0", - "core-js-compat": "^3.22.1", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.23.3", + "@babel/plugin-transform-async-generator-functions": "^7.23.3", + "@babel/plugin-transform-async-to-generator": "^7.23.3", + "@babel/plugin-transform-block-scoped-functions": "^7.23.3", + "@babel/plugin-transform-block-scoping": "^7.23.3", + "@babel/plugin-transform-class-properties": "^7.23.3", + "@babel/plugin-transform-class-static-block": "^7.23.3", + "@babel/plugin-transform-classes": "^7.23.3", + "@babel/plugin-transform-computed-properties": "^7.23.3", + "@babel/plugin-transform-destructuring": "^7.23.3", + "@babel/plugin-transform-dotall-regex": "^7.23.3", + "@babel/plugin-transform-duplicate-keys": "^7.23.3", + "@babel/plugin-transform-dynamic-import": "^7.23.3", + "@babel/plugin-transform-exponentiation-operator": "^7.23.3", + "@babel/plugin-transform-export-namespace-from": "^7.23.3", + "@babel/plugin-transform-for-of": "^7.23.3", + "@babel/plugin-transform-function-name": "^7.23.3", + "@babel/plugin-transform-json-strings": "^7.23.3", + "@babel/plugin-transform-literals": "^7.23.3", + "@babel/plugin-transform-logical-assignment-operators": "^7.23.3", + "@babel/plugin-transform-member-expression-literals": "^7.23.3", + "@babel/plugin-transform-modules-amd": "^7.23.3", + "@babel/plugin-transform-modules-commonjs": "^7.23.3", + "@babel/plugin-transform-modules-systemjs": "^7.23.3", + "@babel/plugin-transform-modules-umd": "^7.23.3", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.23.3", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.3", + "@babel/plugin-transform-numeric-separator": "^7.23.3", + "@babel/plugin-transform-object-rest-spread": "^7.23.3", + "@babel/plugin-transform-object-super": "^7.23.3", + "@babel/plugin-transform-optional-catch-binding": "^7.23.3", + "@babel/plugin-transform-optional-chaining": "^7.23.3", + "@babel/plugin-transform-parameters": "^7.23.3", + "@babel/plugin-transform-private-methods": "^7.23.3", + "@babel/plugin-transform-private-property-in-object": "^7.23.3", + "@babel/plugin-transform-property-literals": "^7.23.3", + "@babel/plugin-transform-regenerator": "^7.23.3", + "@babel/plugin-transform-reserved-words": "^7.23.3", + "@babel/plugin-transform-shorthand-properties": "^7.23.3", + "@babel/plugin-transform-spread": "^7.23.3", + "@babel/plugin-transform-sticky-regex": "^7.23.3", + "@babel/plugin-transform-template-literals": "^7.23.3", + "@babel/plugin-transform-typeof-symbol": "^7.23.3", + "@babel/plugin-transform-unicode-escapes": "^7.23.3", + "@babel/plugin-transform-unicode-property-regex": "^7.23.3", + "@babel/plugin-transform-unicode-regex": "^7.23.3", + "@babel/plugin-transform-unicode-sets-regex": "^7.23.3", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", + "core-js-compat": "^3.31.0", + "semver": "^6.3.1" } }, "@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", "requires": { "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", "@babel/types": "^7.4.4", "esutils": "^2.0.2" } }, "@babel/preset-react": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.16.7.tgz", - "integrity": "sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.23.3.tgz", + "integrity": "sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-validator-option": "^7.16.7", - "@babel/plugin-transform-react-display-name": "^7.16.7", - "@babel/plugin-transform-react-jsx": "^7.16.7", - "@babel/plugin-transform-react-jsx-development": "^7.16.7", - "@babel/plugin-transform-react-pure-annotations": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-transform-react-display-name": "^7.23.3", + "@babel/plugin-transform-react-jsx": "^7.22.15", + "@babel/plugin-transform-react-jsx-development": "^7.22.5", + "@babel/plugin-transform-react-pure-annotations": "^7.23.3" } }, "@babel/preset-typescript": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.7.tgz", - "integrity": "sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz", + "integrity": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==", "requires": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-validator-option": "^7.16.7", - "@babel/plugin-transform-typescript": "^7.16.7" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/plugin-transform-modules-commonjs": "^7.23.3", + "@babel/plugin-transform-typescript": "^7.23.3" } }, - "@babel/runtime": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.9.tgz", - "integrity": "sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg==", - "requires": { - "regenerator-runtime": "^0.13.4" - } + "@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" }, - "@babel/runtime-corejs3": { - "version": "7.17.9", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.17.9.tgz", - "integrity": "sha512-WxYHHUWF2uZ7Hp1K+D1xQgbgkGUfA+5UPOegEXGt2Y5SMog/rYCVaifLZDbw8UkNXozEqqrZTy6bglL7xTaCOw==", + "@babel/runtime": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", + "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", "requires": { - "core-js-pure": "^3.20.2", - "regenerator-runtime": "^0.13.4" + "regenerator-runtime": "^0.14.0" + }, + "dependencies": { + "regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + } } }, "@babel/template": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", - "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", "requires": { - "@babel/code-frame": "^7.16.7", - "@babel/parser": "^7.16.7", - "@babel/types": "^7.16.7" + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" } }, "@babel/traverse": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.10.tgz", - "integrity": "sha512-VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw==", - "requires": { - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.17.10", - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.17.9", - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.17.10", - "@babel/types": "^7.17.10", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.3.tgz", + "integrity": "sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ==", + "requires": { + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.3", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.3", + "@babel/types": "^7.23.3", "debug": "^4.1.0", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.17.10", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.17.10.tgz", - "integrity": "sha512-9O26jG0mBYfGkUYCYZRnBwbVLd1UZOICEr2Em6InB6jVfsAv1GKgwXHmrSg+WFWDmeKTA6vyTZiN8tCSM5Oo3A==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.3.tgz", + "integrity": "sha512-OZnvoH2l8PK5eUvEcUyCt/sXgr/h+UWpVuBbOljwcrAgUl6lpchoQ++PHGyQy1AtYnVA6CEq3y5xeEI10brpXw==", "requires": { - "@babel/helper-validator-identifier": "^7.16.7", + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.20", "to-fast-properties": "^2.0.0" } }, @@ -18048,10 +19623,19 @@ "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.0.0.tgz", "integrity": "sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==" }, + "@csstools/postcss-cascade-layers": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", + "integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==", + "requires": { + "@csstools/selector-specificity": "^2.0.2", + "postcss-selector-parser": "^6.0.10" + } + }, "@csstools/postcss-color-function": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.0.tgz", - "integrity": "sha512-5D5ND/mZWcQoSfYnSPsXtuiFxhzmhxt6pcjrFLJyldj+p0ZN2vvRpYNX+lahFTtMhAYOa2WmkdGINr0yP0CvGA==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz", + "integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==", "requires": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" @@ -18065,9 +19649,9 @@ } }, "@csstools/postcss-font-format-keywords": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.0.tgz", - "integrity": "sha512-oO0cZt8do8FdVBX8INftvIA4lUrKUSCcWUf9IwH9IPWOgKT22oAZFXeHLoDK7nhB2SmkNycp5brxfNMRLIhd6Q==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz", + "integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==", "requires": { "postcss-value-parser": "^4.2.0" }, @@ -18080,9 +19664,9 @@ } }, "@csstools/postcss-hwb-function": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.0.tgz", - "integrity": "sha512-VSTd7hGjmde4rTj1rR30sokY3ONJph1reCBTUXqeW1fKwETPy1x4t/XIeaaqbMbC5Xg4SM/lyXZ2S8NELT2TaA==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz", + "integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==", "requires": { "postcss-value-parser": "^4.2.0" }, @@ -18095,9 +19679,9 @@ } }, "@csstools/postcss-ic-unit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.0.tgz", - "integrity": "sha512-i4yps1mBp2ijrx7E96RXrQXQQHm6F4ym1TOD0D69/sjDjZvQ22tqiEvaNw7pFZTUO5b9vWRHzbHzP9+UKuw+bA==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz", + "integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==", "requires": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" @@ -18111,18 +19695,33 @@ } }, "@csstools/postcss-is-pseudo-class": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.3.tgz", - "integrity": "sha512-wMQ3GMWrJyRQfvBJsD38ndF/nwHT32xevSn8w2X+iCoWqmhhoj0K7HgdGW8XQhah6sdENBa8yS9gRosdezaQZw==", + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz", + "integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==", "requires": { - "@csstools/selector-specificity": "^1.0.0", + "@csstools/selector-specificity": "^2.0.0", "postcss-selector-parser": "^6.0.10" } }, - "@csstools/postcss-normalize-display-values": { + "@csstools/postcss-nested-calc": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.0.tgz", - "integrity": "sha512-bX+nx5V8XTJEmGtpWTO6kywdS725t71YSLlxWt78XoHUbELWgoCXeOFymRJmL3SU1TLlKSIi7v52EWqe60vJTQ==", + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz", + "integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==", + "requires": { + "postcss-value-parser": "^4.2.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + } + }, + "@csstools/postcss-normalize-display-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz", + "integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==", "requires": { "postcss-value-parser": "^4.2.0" }, @@ -18135,9 +19734,9 @@ } }, "@csstools/postcss-oklab-function": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.0.tgz", - "integrity": "sha512-e/Q5HopQzmnQgqimG9v3w2IG4VRABsBq3itOcn4bnm+j4enTgQZ0nWsaH/m9GV2otWGQ0nwccYL5vmLKyvP1ww==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz", + "integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==", "requires": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" @@ -18166,9 +19765,39 @@ } }, "@csstools/postcss-stepped-value-functions": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz", + "integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==", + "requires": { + "postcss-value-parser": "^4.2.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + } + }, + "@csstools/postcss-text-decoration-shorthand": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.0.tgz", - "integrity": "sha512-q8c4bs1GumAiRenmFjASBcWSLKrbzHzWl6C2HcaAxAXIiL2rUlUWbqQZUjwVG5tied0rld19j/Mm90K3qI26vw==", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz", + "integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==", + "requires": { + "postcss-value-parser": "^4.2.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + } + }, + "@csstools/postcss-trigonometric-functions": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz", + "integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==", "requires": { "postcss-value-parser": "^4.2.0" }, @@ -18181,14 +19810,16 @@ } }, "@csstools/postcss-unset-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.1.tgz", - "integrity": "sha512-f1G1WGDXEU/RN1TWAxBPQgQudtLnLQPyiWdtypkPC+mVYNKFKH/HYXSxH4MVNqwF8M0eDsoiU7HumJHCg/L/jg==" + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz", + "integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==", + "requires": {} }, "@csstools/selector-specificity": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-1.0.0.tgz", - "integrity": "sha512-RkYG5KiGNX0fJ5YoI0f4Wfq2Yo74D25Hru4fxTOioYdQvHBxcrrtTTyT5Ozzh2ejcNrhFy7IEts2WyEY7yi5yw==" + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", + "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", + "requires": {} }, "@dabh/diagnostics": { "version": "2.0.2", @@ -18227,15 +19858,28 @@ "integrity": "sha512-kBa+cDHOR9jpRJ+kcGMsysrls0leukrm68DmFQoMIWQcXdr2cZvyvypWuGYT7U+9kAExUE7+T7r6G3C3A6L8MQ==", "dev": true }, + "@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "requires": { + "eslint-visitor-keys": "^3.3.0" + } + }, + "@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==" + }, "@eslint/eslintrc": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.3.tgz", - "integrity": "sha512-uGo44hIwoLGNyduRpjdEpovcbMdd+Nv7amtmJxnKmI8xj6yd5LncmSwDa5NgX/41lIFJtkjD6YdVfgEzPfJ5UA==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz", + "integrity": "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==", "requires": { "ajv": "^6.12.4", "debug": "^4.3.2", - "espree": "^9.3.2", - "globals": "^13.9.0", + "espree": "^9.6.0", + "globals": "^13.19.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", @@ -18249,9 +19893,9 @@ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" }, "globals": { - "version": "13.14.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.14.0.tgz", - "integrity": "sha512-ERO68sOYwm5UuLvSJTY7w7NP2c8S4UcXs3X1GBX8cwOr+ShOcDBbCY5mH4zxz0jsYCdJ8ve8Mv9n2YGJMB1aeg==", + "version": "13.23.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", + "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", "requires": { "type-fest": "^0.20.2" } @@ -18271,20 +19915,30 @@ } } }, + "@eslint/js": { + "version": "8.53.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.53.0.tgz", + "integrity": "sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==" + }, "@humanwhocodes/config-array": { - "version": "0.9.5", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz", - "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==", + "version": "0.11.13", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", + "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", "requires": { - "@humanwhocodes/object-schema": "^1.2.1", + "@humanwhocodes/object-schema": "^2.0.1", "debug": "^4.1.1", - "minimatch": "^3.0.4" + "minimatch": "^3.0.5" } }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" + }, "@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", + "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==" }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", @@ -18335,11 +19989,6 @@ "requires": { "p-limit": "^2.2.0" } - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" } } }, @@ -18603,11 +20252,11 @@ } }, "@jest/schemas": { - "version": "28.0.2", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.0.2.tgz", - "integrity": "sha512-YVDJZjd4izeTDkij00vHHAymNXQ6WWsdChFRK86qck6Jpr3DCL5W3Is3vslviRlP+bLuMYRLbdp98amMvqudhA==", + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "requires": { - "@sinclair/typebox": "^0.23.3" + "@sinclair/typebox": "^0.24.1" } }, "@jest/source-map": { @@ -18788,9 +20437,9 @@ } }, "@jridgewell/resolve-uri": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz", - "integrity": "sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==" + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" }, "@jridgewell/set-array": { "version": "1.1.1", @@ -18798,18 +20447,18 @@ "integrity": "sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==" }, "@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", "requires": { "@jridgewell/gen-mapping": "^0.3.0", "@jridgewell/trace-mapping": "^0.3.9" }, "dependencies": { "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", "requires": { "@jridgewell/set-array": "^1.0.1", "@jridgewell/sourcemap-codec": "^1.4.10", @@ -18819,17 +20468,17 @@ } }, "@jridgewell/sourcemap-codec": { - "version": "1.4.13", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz", - "integrity": "sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==" + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" }, "@jridgewell/trace-mapping": { - "version": "0.3.13", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz", - "integrity": "sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==", + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" } }, "@leichtgewicht/ip-codec": { @@ -18921,6 +20570,30 @@ "integrity": "sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==", "dev": true }, + "@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "requires": { + "eslint-scope": "5.1.1" + }, + "dependencies": { + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + } + }, "@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -18945,17 +20618,17 @@ } }, "@pmmmwh/react-refresh-webpack-plugin": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.6.tgz", - "integrity": "sha512-IIWxofIYt/AbMwoeBgj+O2aAXLrlCQVg+A4a2zfpXFNHgP8o8rvi3v+oe5t787Lj+KXlKOh8BAiUp9bhuELXhg==", + "version": "0.5.11", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.11.tgz", + "integrity": "sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==", "requires": { "ansi-html-community": "^0.0.8", "common-path-prefix": "^3.0.0", - "core-js-pure": "^3.8.1", + "core-js-pure": "^3.23.3", "error-stack-parser": "^2.0.6", "find-up": "^5.0.0", "html-entities": "^2.1.0", - "loader-utils": "^2.0.0", + "loader-utils": "^2.0.4", "schema-utils": "^3.0.0", "source-map": "^0.7.3" } @@ -19009,19 +20682,19 @@ } }, "@rushstack/eslint-patch": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.1.3.tgz", - "integrity": "sha512-WiBSI6JBIhC6LRIsB2Kwh8DsGTlbBU+mLRxJmAe3LjHTdkDpwIbEOZgoXBbZilk/vlfjK8i6nKRAvIRn1XaIMw==" + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.5.1.tgz", + "integrity": "sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==" }, "@sinclair/typebox": { - "version": "0.23.5", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.23.5.tgz", - "integrity": "sha512-AFBVi/iT4g20DHoujvMH1aEDn8fGJh4xsRGCP6d8RpLPMqsNPvW01Jcn0QysXTsg++/xj25NmJsGyH9xug/wKg==" + "version": "0.24.51", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==" }, "@sinonjs/commons": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", - "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", "requires": { "type-detect": "4.0.8" } @@ -19165,124 +20838,125 @@ "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" }, "@types/babel__core": { - "version": "7.1.19", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz", - "integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==", + "version": "7.20.4", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.4.tgz", + "integrity": "sha512-mLnSC22IC4vcWiuObSRjrLd9XcBTGf59vUSoq2jkQDJ/QQ8PMI9rSuzE+aEV8karUMbskw07bKYoUJCKTUaygg==", "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", "@types/babel__generator": "*", "@types/babel__template": "*", "@types/babel__traverse": "*" } }, "@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "version": "7.6.7", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.7.tgz", + "integrity": "sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==", "requires": { "@babel/types": "^7.0.0" } }, "@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "requires": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" } }, "@types/babel__traverse": { - "version": "7.17.1", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.17.1.tgz", - "integrity": "sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==", + "version": "7.20.4", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.4.tgz", + "integrity": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==", "requires": { - "@babel/types": "^7.3.0" + "@babel/types": "^7.20.7" } }, "@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", "requires": { "@types/connect": "*", "@types/node": "*" } }, "@types/bonjour": { - "version": "3.5.10", - "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", - "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", + "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", "requires": { "@types/node": "*" } }, "@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", "requires": { "@types/node": "*" } }, "@types/connect-history-api-fallback": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", - "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.3.tgz", + "integrity": "sha512-6mfQ6iNvhSKCZJoY6sIG3m0pKkdUcweVNOLuBBKvoWGzl2yRxOJcYOTRyLKt3nxXvBLJWa6QkW//tgbIwJehmA==", "requires": { "@types/express-serve-static-core": "*", "@types/node": "*" } }, "@types/eslint": { - "version": "7.29.0", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", - "integrity": "sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==", + "version": "8.44.7", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.7.tgz", + "integrity": "sha512-f5ORu2hcBbKei97U73mf+l9t4zTGl74IqZ0GQk4oVea/VS8tQZYkUveSYojk+frraAVYId0V2WC9O4PTNru2FQ==", "requires": { "@types/estree": "*", "@types/json-schema": "*" } }, "@types/eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "requires": { "@types/eslint": "*", "@types/estree": "*" } }, "@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" }, "@types/express": { - "version": "4.17.13", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", - "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", "requires": { "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.18", + "@types/express-serve-static-core": "^4.17.33", "@types/qs": "*", "@types/serve-static": "*" } }, "@types/express-serve-static-core": { - "version": "4.17.28", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.28.tgz", - "integrity": "sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==", + "version": "4.17.41", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.41.tgz", + "integrity": "sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==", "requires": { "@types/node": "*", "@types/qs": "*", - "@types/range-parser": "*" + "@types/range-parser": "*", + "@types/send": "*" } }, "@types/graceful-fs": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", - "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "requires": { "@types/node": "*" } @@ -19292,6 +20966,11 @@ "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" }, + "@types/http-errors": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" + }, "@types/http-proxy": { "version": "1.17.9", "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", @@ -19301,55 +20980,63 @@ } }, "@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" }, "@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", "requires": { "@types/istanbul-lib-coverage": "*" } }, "@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", "requires": { "@types/istanbul-lib-report": "*" } }, "@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==" + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" }, "@types/json5": { "version": "0.0.29", "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" }, "@types/mime": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", - "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==" + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" }, "@types/node": { "version": "14.0.23", "resolved": "https://registry.npmjs.org/@types/node/-/node-14.0.23.tgz", "integrity": "sha512-Z4U8yDAl5TFkmYsZdFPdjeMa57NOvnaf1tljHzhouaPEp7LCj2JKkejpI1ODviIAQuW4CcQmxkQ77rnLsOOoKw==" }, + "@types/node-forge": { + "version": "1.3.9", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.9.tgz", + "integrity": "sha512-meK88cx/sTalPSLSoCzkiUB4VPIFHmxtXm5FaaqRDqBX2i/Sy8bJ4odsan0b20RBjPh06dAQ+OTTdnyQyhJZyQ==", + "requires": { + "@types/node": "*" + } + }, "@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" }, "@types/prettier": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.6.0.tgz", - "integrity": "sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw==" + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==" }, "@types/prop-types": { "version": "15.7.4", @@ -19358,19 +21045,19 @@ "dev": true }, "@types/q": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", - "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==" + "version": "1.5.8", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz", + "integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==" }, "@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + "version": "6.9.10", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.10.tgz", + "integrity": "sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==" }, "@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" }, "@types/react": { "version": "17.0.15", @@ -19419,146 +21106,211 @@ "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==", "dev": true }, + "@types/semver": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.5.tgz", + "integrity": "sha512-+d+WYC1BxJ6yVOgUgzK8gWvp5qF8ssV5r4nsDcZWKRWcDQLQ619tvWAxJQYGgBrO1MnLJC7a5GtiYsAoQ47dJg==" + }, + "@types/send": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "requires": { + "@types/mime": "^1", + "@types/node": "*" + } + }, "@types/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", + "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", "requires": { "@types/express": "*" } }, "@types/serve-static": { - "version": "1.13.10", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz", - "integrity": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==", + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.5.tgz", + "integrity": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==", "requires": { - "@types/mime": "^1", + "@types/http-errors": "*", + "@types/mime": "*", "@types/node": "*" } }, "@types/sockjs": { - "version": "0.3.33", - "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", - "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "version": "0.3.36", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", + "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", "requires": { "@types/node": "*" } }, "@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" }, "@types/trusted-types": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz", - "integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.6.tgz", + "integrity": "sha512-HYtNooPvUY9WAVRBr4u+4Qa9fYD1ze2IUlAD3HoA6oehn1taGwBx3Oa52U4mTslTS+GAExKpaFu39Y5xUEwfjg==" }, "@types/ws": { - "version": "8.5.3", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", - "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", + "version": "8.5.9", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.9.tgz", + "integrity": "sha512-jbdrY0a8lxfdTp/+r7Z4CkycbOFN8WX+IOchLJr3juT/xzbJ8URyTVSJ/hvNdadTgM1mnedb47n+Y31GsFnQlg==", "requires": { "@types/node": "*" } }, "@types/yargs": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "version": "16.0.8", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.8.tgz", + "integrity": "sha512-1GwLEkmFafeb/HbE6pC7tFlgYSQ4Iqh2qlWCq8xN+Qfaiaxr2PcLfuhfRFRYqI6XJyeFoLYyKnhFbNsst9FMtQ==", "requires": { "@types/yargs-parser": "*" } }, "@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" }, "@typescript-eslint/eslint-plugin": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.23.0.tgz", - "integrity": "sha512-hEcSmG4XodSLiAp1uxv/OQSGsDY6QN3TcRU32gANp+19wGE1QQZLRS8/GV58VRUoXhnkuJ3ZxNQ3T6Z6zM59DA==", - "requires": { - "@typescript-eslint/scope-manager": "5.23.0", - "@typescript-eslint/type-utils": "5.23.0", - "@typescript-eslint/utils": "5.23.0", - "debug": "^4.3.2", - "functional-red-black-tree": "^1.0.1", - "ignore": "^5.1.8", - "regexpp": "^3.2.0", - "semver": "^7.3.5", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "requires": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", "tsutils": "^3.21.0" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } } }, "@typescript-eslint/experimental-utils": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.23.0.tgz", - "integrity": "sha512-I+3YGQztH1DM9kgWzjslpZzJCBMRz0KhYG2WP62IwpooeZ1L6Qt0mNK8zs+uP+R2HOsr+TeDW35Pitc3PfVv8Q==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz", + "integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==", "requires": { - "@typescript-eslint/utils": "5.23.0" + "@typescript-eslint/utils": "5.62.0" } }, "@typescript-eslint/parser": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.23.0.tgz", - "integrity": "sha512-V06cYUkqcGqpFjb8ttVgzNF53tgbB/KoQT/iB++DOIExKmzI9vBJKjZKt/6FuV9c+zrDsvJKbJ2DOCYwX91cbw==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", "requires": { - "@typescript-eslint/scope-manager": "5.23.0", - "@typescript-eslint/types": "5.23.0", - "@typescript-eslint/typescript-estree": "5.23.0", - "debug": "^4.3.2" + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" } }, "@typescript-eslint/scope-manager": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.23.0.tgz", - "integrity": "sha512-EhjaFELQHCRb5wTwlGsNMvzK9b8Oco4aYNleeDlNuL6qXWDF47ch4EhVNPh8Rdhf9tmqbN4sWDk/8g+Z/J8JVw==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", "requires": { - "@typescript-eslint/types": "5.23.0", - "@typescript-eslint/visitor-keys": "5.23.0" + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" } }, "@typescript-eslint/type-utils": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.23.0.tgz", - "integrity": "sha512-iuI05JsJl/SUnOTXA9f4oI+/4qS/Zcgk+s2ir+lRmXI+80D8GaGwoUqs4p+X+4AxDolPpEpVUdlEH4ADxFy4gw==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", "requires": { - "@typescript-eslint/utils": "5.23.0", - "debug": "^4.3.2", + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", "tsutils": "^3.21.0" } }, "@typescript-eslint/types": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.23.0.tgz", - "integrity": "sha512-NfBsV/h4dir/8mJwdZz7JFibaKC3E/QdeMEDJhiAE3/eMkoniZ7MjbEMCGXw6MZnZDMN3G9S0mH/6WUIj91dmw==" + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==" }, "@typescript-eslint/typescript-estree": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.23.0.tgz", - "integrity": "sha512-xE9e0lrHhI647SlGMl+m+3E3CKPF1wzvvOEWnuE3CCjjT7UiRnDGJxmAcVKJIlFgK6DY9RB98eLr1OPigPEOGg==", - "requires": { - "@typescript-eslint/types": "5.23.0", - "@typescript-eslint/visitor-keys": "5.23.0", - "debug": "^4.3.2", - "globby": "^11.0.4", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "requires": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", "is-glob": "^4.0.3", - "semver": "^7.3.5", + "semver": "^7.3.7", "tsutils": "^3.21.0" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } } }, "@typescript-eslint/utils": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.23.0.tgz", - "integrity": "sha512-dbgaKN21drqpkbbedGMNPCtRPZo1IOUr5EI9Jrrh99r5UW5Q0dz46RKXeSBoPV+56R6dFKpbrdhgUNSJsDDRZA==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", "requires": { + "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", - "@typescript-eslint/scope-manager": "5.23.0", - "@typescript-eslint/types": "5.23.0", - "@typescript-eslint/typescript-estree": "5.23.0", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", "eslint-scope": "^5.1.1", - "eslint-utils": "^3.0.0" + "semver": "^7.3.7" }, "dependencies": { "eslint-scope": { @@ -19574,146 +21326,172 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" } } }, "@typescript-eslint/visitor-keys": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.23.0.tgz", - "integrity": "sha512-Vd4mFNchU62sJB8pX19ZSPog05B0Y0CE2UxAZPT5k4iqhRYjPnqyY3woMxCd0++t9OTqkgjST+1ydLBi7e2Fvg==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", "requires": { - "@typescript-eslint/types": "5.23.0", - "eslint-visitor-keys": "^3.0.0" + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" } }, + "@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==" + }, "@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "requires": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" }, "@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" }, "@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" }, "@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" }, "@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" }, "@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "requires": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, @@ -19742,9 +21520,9 @@ } }, "acorn": { - "version": "8.7.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz", - "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==" + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==" }, "acorn-globals": { "version": "6.0.0", @@ -19763,31 +21541,16 @@ } }, "acorn-import-assertions": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", - "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==" + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "requires": {} }, "acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" - }, - "acorn-node": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", - "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", - "requires": { - "acorn": "^7.0.0", - "acorn-walk": "^7.0.0", - "xtend": "^4.0.2" - }, - "dependencies": { - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" - } - } + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "requires": {} }, "acorn-walk": { "version": "7.2.0", @@ -19795,9 +21558,9 @@ "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" }, "address": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/address/-/address-1.2.0.tgz", - "integrity": "sha512-tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig==" + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==" }, "adjust-sourcemap-loader": { "version": "4.0.0", @@ -19836,9 +21599,9 @@ }, "dependencies": { "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "requires": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -19856,7 +21619,8 @@ "ajv-keywords": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "requires": {} }, "ansi-escapes": { "version": "4.3.2", @@ -19884,19 +21648,24 @@ "color-convert": "^1.9.0" } }, + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" + }, "anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "requires": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" } }, "arg": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz", - "integrity": "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" }, "argparse": { "version": "1.0.10", @@ -19907,12 +21676,20 @@ } }, "aria-query": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", - "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "requires": { + "dequal": "^2.0.3" + } + }, + "array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", "requires": { - "@babel/runtime": "^7.10.2", - "@babel/runtime-corejs3": "^7.10.2" + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" } }, "array-flatten": { @@ -19921,14 +21698,14 @@ "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" }, "array-includes": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz", - "integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.19.5", - "get-intrinsic": "^1.1.1", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", "is-string": "^1.0.7" } }, @@ -19937,47 +21714,105 @@ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" }, + "array.prototype.findlastindex": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", + "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + } + }, "array.prototype.flat": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz", - "integrity": "sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", "es-shim-unscopables": "^1.0.0" } }, "array.prototype.flatmap": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz", - "integrity": "sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", "es-shim-unscopables": "^1.0.0" } }, + "array.prototype.reduce": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.6.tgz", + "integrity": "sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + } + }, + "array.prototype.tosorted": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", + "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + } + }, + "arraybuffer.prototype.slice": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "requires": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + } + }, "asap": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" }, "ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==" }, "async": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz", "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" }, + "asynciterator.prototype": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "requires": { + "has-symbols": "^1.0.3" + } + }, "asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" }, "at-least-node": { "version": "1.0.0", @@ -19985,13 +21820,13 @@ "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" }, "autoprefixer": { - "version": "10.4.7", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.7.tgz", - "integrity": "sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==", + "version": "10.4.16", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", + "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", "requires": { - "browserslist": "^4.20.3", - "caniuse-lite": "^1.0.30001335", - "fraction.js": "^4.2.0", + "browserslist": "^4.21.10", + "caniuse-lite": "^1.0.30001538", + "fraction.js": "^4.3.6", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", "postcss-value-parser": "^4.2.0" @@ -20004,15 +21839,23 @@ } } }, + "available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" + }, "axe-core": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.1.tgz", - "integrity": "sha512-gd1kmb21kwNuWr6BQz8fv6GNECPBnUasepcoLbekws23NVBLODdsClRZ+bQ8+9Uomf3Sm3+Vwn0oYG9NvwnJCw==" + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", + "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==" }, "axobject-query": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", - "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "requires": { + "dequal": "^2.0.3" + } }, "babel-jest": { "version": "27.5.1", @@ -20075,9 +21918,9 @@ } }, "babel-loader": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz", - "integrity": "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", "requires": { "find-cache-dir": "^3.3.1", "loader-utils": "^2.0.0", @@ -20097,14 +21940,6 @@ } } }, - "babel-plugin-dynamic-import-node": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", - "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", - "requires": { - "object.assign": "^4.1.0" - } - }, "babel-plugin-istanbul": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", @@ -20141,40 +21976,34 @@ "babel-plugin-named-asset-import": { "version": "0.3.8", "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", - "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==" + "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "requires": {} }, "babel-plugin-polyfill-corejs2": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz", - "integrity": "sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==", + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz", + "integrity": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==", "requires": { - "@babel/compat-data": "^7.13.11", - "@babel/helper-define-polyfill-provider": "^0.3.1", - "semver": "^6.1.1" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.4.3", + "semver": "^6.3.1" } }, "babel-plugin-polyfill-corejs3": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz", - "integrity": "sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==", + "version": "0.8.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.6.tgz", + "integrity": "sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==", "requires": { - "@babel/helper-define-polyfill-provider": "^0.3.1", - "core-js-compat": "^3.21.0" + "@babel/helper-define-polyfill-provider": "^0.4.3", + "core-js-compat": "^3.33.1" } }, "babel-plugin-polyfill-regenerator": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz", - "integrity": "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==", + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz", + "integrity": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==", "requires": { - "@babel/helper-define-polyfill-provider": "^0.3.1" + "@babel/helper-define-polyfill-provider": "^0.4.3" } }, "babel-plugin-styled-components": { @@ -20259,16 +22088,17 @@ "batch": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" }, "bfj": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz", - "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.1.0.tgz", + "integrity": "sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==", "requires": { - "bluebird": "^3.5.5", - "check-types": "^11.1.1", + "bluebird": "^3.7.2", + "check-types": "^11.2.3", "hoopy": "^0.1.4", + "jsonpath": "^1.1.1", "tryer": "^1.0.1" } }, @@ -20288,9 +22118,9 @@ "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" }, "body-parser": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", - "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", "requires": { "bytes": "3.1.2", "content-type": "~1.0.4", @@ -20300,7 +22130,7 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", - "qs": "6.10.3", + "qs": "6.11.0", "raw-body": "2.5.1", "type-is": "~1.6.18", "unpipe": "1.0.0" @@ -20332,20 +22162,20 @@ } }, "bonjour-service": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.12.tgz", - "integrity": "sha512-pMmguXYCu63Ug37DluMKEHdxc+aaIf/ay4YbF8Gxtba+9d3u+rmEWy61VK3Z3hp8Rskok3BunHYnG0dUHAsblw==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", + "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", "requires": { "array-flatten": "^2.1.2", "dns-equal": "^1.0.0", "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.4" + "multicast-dns": "^7.2.5" } }, "boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" }, "brace-expansion": { "version": "1.1.11", @@ -20370,15 +22200,14 @@ "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" }, "browserslist": { - "version": "4.20.3", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.20.3.tgz", - "integrity": "sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==", + "version": "4.22.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", + "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", "requires": { - "caniuse-lite": "^1.0.30001332", - "electron-to-chromium": "^1.4.118", - "escalade": "^3.1.1", - "node-releases": "^2.0.3", - "picocolors": "^1.0.0" + "caniuse-lite": "^1.0.30001541", + "electron-to-chromium": "^1.4.535", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.13" } }, "bser": { @@ -20395,22 +22224,23 @@ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" }, "builtin-modules": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz", - "integrity": "sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==" + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==" }, "bytes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" }, "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" } }, "callsites": { @@ -20455,9 +22285,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001339", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001339.tgz", - "integrity": "sha512-Es8PiVqCe+uXdms0Gu5xP5PF2bxLR7OBp3wUzUnuO7OHzhOfCyg3hdiGWVPVxhiuniOzng+hTc1u3fEQ0TlkSQ==" + "version": "1.0.30001561", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001561.tgz", + "integrity": "sha512-NTt0DNoKe958Q0BE0j0c1V9jbUzhBxHIEJy7asmGrpE0yG63KTV7PLHPnK2E1O9RsQrQ081I3NLuXGS6zht3cw==" }, "case-sensitive-paths-webpack-plugin": { "version": "2.4.0", @@ -20479,15 +22309,10 @@ "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" }, - "charcodes": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/charcodes/-/charcodes-0.2.0.tgz", - "integrity": "sha512-Y4kiDb+AM4Ecy58YkuZrrSRJBDQdQ2L+NyS1vHHFtNtUjgutcZfx3yp1dAONI/oPaPmyGfCLx5CxL+zauIMyKQ==" - }, "check-types": { - "version": "11.1.2", - "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.1.2.tgz", - "integrity": "sha512-tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ==" + "version": "11.2.3", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz", + "integrity": "sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==" }, "chokidar": { "version": "3.5.3", @@ -20520,19 +22345,19 @@ "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" }, "ci-info": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.0.tgz", - "integrity": "sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==" + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" }, "cjs-module-lexer": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", - "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==" + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" }, "clean-css": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.0.tgz", - "integrity": "sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.2.tgz", + "integrity": "sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==", "requires": { "source-map": "~0.6.0" }, @@ -20563,7 +22388,7 @@ "co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" }, "coa": { "version": "2.0.2", @@ -20576,9 +22401,9 @@ } }, "collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" }, "color-convert": { "version": "1.9.3", @@ -20603,14 +22428,14 @@ } }, "colord": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.2.tgz", - "integrity": "sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==" + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" }, "colorette": { - "version": "2.0.16", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz", - "integrity": "sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==" + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" }, "colorspace": { "version": "1.1.2", @@ -20658,7 +22483,7 @@ "commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" }, "compressible": { "version": "2.0.18", @@ -20693,14 +22518,14 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" } } }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "confusing-browser-globals": { "version": "1.0.11", @@ -20708,9 +22533,9 @@ "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" }, "connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" }, "content-disposition": { "version": "0.5.4", @@ -20728,9 +22553,9 @@ } }, "content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" }, "convert-source-map": { "version": "1.8.0", @@ -20751,30 +22576,22 @@ "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" }, "core-js": { - "version": "3.22.5", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.22.5.tgz", - "integrity": "sha512-VP/xYuvJ0MJWRAobcmQ8F2H6Bsn+s7zqAAjFaHGBMc5AQm7zaelhD1LGduFn2EehEcQcU+br6t+fwbpQ5d1ZWA==" + "version": "3.33.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.33.2.tgz", + "integrity": "sha512-XeBzWI6QL3nJQiHmdzbAOiMYqjrb7hwU7A39Qhvd/POSa/t9E1AeZyEZx3fNvp/vtM8zXwhoL0FsiS0hD0pruQ==" }, "core-js-compat": { - "version": "3.22.5", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.5.tgz", - "integrity": "sha512-rEF75n3QtInrYICvJjrAgV03HwKiYvtKHdPtaba1KucG+cNZ4NJnH9isqt979e67KZlhpbCOTwnsvnIr+CVeOg==", + "version": "3.33.2", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.33.2.tgz", + "integrity": "sha512-axfo+wxFVxnqf8RvxTzoAlzW4gRoacrHeoFlc9n0x50+7BEyZL/Rt3hicaED1/CEd7I6tPCPVUYcJwCMO5XUYw==", "requires": { - "browserslist": "^4.20.3", - "semver": "7.0.0" - }, - "dependencies": { - "semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" - } + "browserslist": "^4.22.1" } }, "core-js-pure": { - "version": "3.22.5", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.22.5.tgz", - "integrity": "sha512-8xo9R00iYD7TcV7OrC98GwxiUEAabVWO3dix+uyWjnYrx9fyASLlIX+f/3p5dW5qByaP2bcZ8X/T47s55et/tA==" + "version": "3.33.2", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.33.2.tgz", + "integrity": "sha512-a8zeCdyVk7uF2elKIGz67AjcXOxjRbwOLz8SbklEso1V+2DoW4OkAMZN9S9GBgvZIaqQi/OemFX4OiSoQEmg1Q==" }, "core-util-is": { "version": "1.0.3", @@ -20782,9 +22599,9 @@ "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" }, "cosmiconfig": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", - "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "requires": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", @@ -20823,9 +22640,10 @@ "dev": true }, "css-declaration-sorter": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.2.2.tgz", - "integrity": "sha512-Ufadglr88ZLsrvS11gjeu/40Lw74D9Am/Jpr3LlYm5Q4ZP5KdlUhG+6u2EjyXeZcxmZ2h1ebCKngDjolpeLHpg==" + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", + "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", + "requires": {} }, "css-has-pseudo": { "version": "3.0.4", @@ -20836,24 +22654,45 @@ } }, "css-loader": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz", - "integrity": "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==", + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.8.1.tgz", + "integrity": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==", "requires": { "icss-utils": "^5.1.0", - "postcss": "^8.4.7", + "postcss": "^8.4.21", "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-local-by-default": "^4.0.3", "postcss-modules-scope": "^3.0.0", "postcss-modules-values": "^4.0.0", "postcss-value-parser": "^4.2.0", - "semver": "^7.3.5" + "semver": "^7.3.8" }, "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, "postcss-value-parser": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" } } }, @@ -20871,9 +22710,9 @@ }, "dependencies": { "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "requires": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -20895,14 +22734,14 @@ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" }, "schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", "requires": { "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", + "ajv": "^8.9.0", "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" + "ajv-keywords": "^5.1.0" } }, "source-map": { @@ -20915,17 +22754,19 @@ "css-prefers-color-scheme": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", - "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==" + "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", + "requires": {} }, "css-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", - "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "requires": { "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" } }, "css-select-base-adapter": { @@ -20971,14 +22812,14 @@ } }, "css-what": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", - "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==" + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" }, "cssdb": { - "version": "6.6.1", - "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-6.6.1.tgz", - "integrity": "sha512-0/nZEYfp8SFEzJkMud8NxZJsGfD7RHDJti6GRBLZptIwAzco6RTx1KgwFl4mGWsYS0ZNbCrsY9QryhQ4ldF3Mg==" + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.9.0.tgz", + "integrity": "sha512-WPMT9seTQq6fPAa1yN4zjgZZeoTriSN2LqW9C+otjar12DQIWA4LuSfFrvFJiKp4oD0xIk1vumDLw8K9ur4NBw==" }, "cssesc": { "version": "3.0.0", @@ -20986,46 +22827,46 @@ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" }, "cssnano": { - "version": "5.1.7", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.7.tgz", - "integrity": "sha512-pVsUV6LcTXif7lvKKW9ZrmX+rGRzxkEdJuVJcp5ftUjWITgwam5LMZOgaTvUrWPkcORBey6he7JKb4XAJvrpKg==", + "version": "5.1.15", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", + "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", "requires": { - "cssnano-preset-default": "^5.2.7", + "cssnano-preset-default": "^5.2.14", "lilconfig": "^2.0.3", "yaml": "^1.10.2" } }, "cssnano-preset-default": { - "version": "5.2.7", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.7.tgz", - "integrity": "sha512-JiKP38ymZQK+zVKevphPzNSGHSlTI+AOwlasoSRtSVMUU285O7/6uZyd5NbW92ZHp41m0sSHe6JoZosakj63uA==", + "version": "5.2.14", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", + "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", "requires": { - "css-declaration-sorter": "^6.2.2", + "css-declaration-sorter": "^6.3.1", "cssnano-utils": "^3.1.0", "postcss-calc": "^8.2.3", - "postcss-colormin": "^5.3.0", - "postcss-convert-values": "^5.1.0", - "postcss-discard-comments": "^5.1.1", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", "postcss-discard-duplicates": "^5.1.0", "postcss-discard-empty": "^5.1.1", "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.4", - "postcss-merge-rules": "^5.1.1", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", "postcss-minify-font-values": "^5.1.0", "postcss-minify-gradients": "^5.1.1", - "postcss-minify-params": "^5.1.2", - "postcss-minify-selectors": "^5.2.0", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", "postcss-normalize-charset": "^5.1.0", "postcss-normalize-display-values": "^5.1.0", - "postcss-normalize-positions": "^5.1.0", - "postcss-normalize-repeat-style": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", "postcss-normalize-string": "^5.1.0", "postcss-normalize-timing-functions": "^5.1.0", - "postcss-normalize-unicode": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", "postcss-normalize-url": "^5.1.0", "postcss-normalize-whitespace": "^5.1.1", - "postcss-ordered-values": "^5.1.1", - "postcss-reduce-initial": "^5.1.0", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.2", "postcss-reduce-transforms": "^5.1.0", "postcss-svgo": "^5.1.0", "postcss-unique-selectors": "^5.1.1" @@ -21034,7 +22875,8 @@ "cssnano-utils": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", - "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==" + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "requires": {} }, "csso": { "version": "4.2.0", @@ -21115,14 +22957,14 @@ } }, "decimal.js": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz", - "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==" + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" }, "dedent": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=" + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" }, "deep-is": { "version": "0.1.4", @@ -21130,9 +22972,9 @@ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" }, "deepmerge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", - "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" }, "default-gateway": { "version": "6.0.3", @@ -21142,34 +22984,45 @@ "execa": "^5.0.0" } }, + "define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "requires": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + } + }, "define-lazy-prop": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" }, "define-properties": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "requires": { + "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" } }, - "defined": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", - "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" - }, "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" }, "depd": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" + }, + "dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" }, "destroy": { "version": "1.2.0", @@ -21206,20 +23059,10 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" } } }, - "detective": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz", - "integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==", - "requires": { - "acorn-node": "^1.6.1", - "defined": "^1.0.0", - "minimist": "^1.1.1" - } - }, "didyoumean": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", @@ -21246,12 +23089,12 @@ "dns-equal": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" }, "dns-packet": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.3.1.tgz", - "integrity": "sha512-spBwIj0TK0Ey3666GwIdWVfUpLyubpU53BTCu8iPn4r4oXd9O14Hjg3EHw3ts2oed77/SeckunUYCyRlSngqHw==", + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", + "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", "requires": { "@leichtgewicht/ip-codec": "^2.0.1" } @@ -21291,25 +23134,19 @@ } }, "dom-serializer": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", - "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "requires": { "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", "entities": "^2.0.0" - }, - "dependencies": { - "domelementtype": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", - "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==" - } } }, "domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" }, "domexception": { "version": "2.0.1", @@ -21332,22 +23169,16 @@ "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "requires": { "domelementtype": "^2.2.0" - }, - "dependencies": { - "domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - } } }, "domutils": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "requires": { - "dom-serializer": "0", - "domelementtype": "1" + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" } }, "dot-case": { @@ -21380,17 +23211,17 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "ejs": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.7.tgz", - "integrity": "sha512-BIar7R6abbUxDA3bfXrO4DSgwo8I+fB5/1zgujl3HLLjwd6+9iOnrT+t3grn2qbk9vOgBubXOFwX2m9axoFaGw==", + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", + "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", "requires": { "jake": "^10.8.5" } }, "electron-to-chromium": { - "version": "1.4.137", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.137.tgz", - "integrity": "sha512-0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA==" + "version": "1.4.582", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.582.tgz", + "integrity": "sha512-89o0MGoocwYbzqUUjc+VNpeOFSOK9nIdC5wY4N+PVUarUK0MtjyTjks75AZS2bW4Kl8MdewdFsWaH0jLy+JNoA==" }, "emittery": { "version": "0.8.1", @@ -21418,9 +23249,9 @@ "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" }, "enhanced-resolve": { - "version": "5.9.3", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.9.3.tgz", - "integrity": "sha512-Bq9VSor+kjvW3f9/MiiR4eE3XYgOl7/rS8lnSxbRbF3kS0B2r+Y9w5krBWxZgDxASVZbdYrn5wT4j/Wb0J9qow==", + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", "requires": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -21440,54 +23271,106 @@ } }, "error-stack-parser": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.7.tgz", - "integrity": "sha512-chLOW0ZGRf4s8raLrDxa5sdkvPec5YdvwbFnqJme4rk0rFajP8mPtrDL1+I+CwrQDCjswDA5sREX7jYQDQs9vA==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", "requires": { - "stackframe": "^1.1.1" + "stackframe": "^1.3.4" } }, "es-abstract": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.0.tgz", - "integrity": "sha512-URbD8tgRthKD3YcC39vbvSDrX23upXnPcnGAjQfgxXF5ID75YcENawc9ZX/9iTP9ptUyfCLIxTTuMYoRfiOVKA==", - "requires": { - "call-bind": "^1.0.2", + "version": "1.22.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", + "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", + "requires": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.2", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.5", + "es-set-tostringtag": "^2.0.1", "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.1.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.2", "get-symbol-description": "^1.0.0", - "has": "^1.0.3", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.4", + "hasown": "^2.0.0", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", "is-negative-zero": "^2.0.2", "is-regex": "^1.1.4", "is-shared-array-buffer": "^1.0.2", "is-string": "^1.0.7", + "is-typed-array": "^1.1.12", "is-weakref": "^1.0.2", - "object-inspect": "^1.12.0", + "object-inspect": "^1.13.1", "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "regexp.prototype.flags": "^1.4.1", - "string.prototype.trimend": "^1.0.5", - "string.prototype.trimstart": "^1.0.5", - "unbox-primitive": "^1.0.2" + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "safe-array-concat": "^1.0.1", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.13" + } + }, + "es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" + }, + "es-iterator-helpers": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz", + "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", + "requires": { + "asynciterator.prototype": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.1", + "es-set-tostringtag": "^2.0.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.0.1" } }, "es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", + "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==" + }, + "es-set-tostringtag": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", + "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", + "requires": { + "get-intrinsic": "^1.2.2", + "has-tostringtag": "^1.0.0", + "hasown": "^2.0.0" + } }, "es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", "requires": { - "has": "^1.0.3" + "hasown": "^2.0.0" } }, "es-to-primitive": { @@ -21516,100 +23399,67 @@ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" }, "escodegen": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", - "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", "requires": { "esprima": "^4.0.1", "estraverse": "^5.2.0", "esutils": "^2.0.2", - "optionator": "^0.8.1", "source-map": "~0.6.1" }, "dependencies": { - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } - }, - "optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - } - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" - }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "optional": true - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", - "requires": { - "prelude-ls": "~1.1.2" - } } } }, "eslint": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.15.0.tgz", - "integrity": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==", - "requires": { - "@eslint/eslintrc": "^1.2.3", - "@humanwhocodes/config-array": "^0.9.2", - "ajv": "^6.10.0", + "version": "8.53.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.53.0.tgz", + "integrity": "sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==", + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.3", + "@eslint/js": "8.53.0", + "@humanwhocodes/config-array": "^0.11.13", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.3.2", - "esquery": "^1.4.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^6.0.1", - "globals": "^13.6.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", "ignore": "^5.2.0", - "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", + "optionator": "^0.9.3", "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" + "text-table": "^0.2.0" }, "dependencies": { "ansi-styles": { @@ -21653,9 +23503,9 @@ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" }, "globals": { - "version": "13.14.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.14.0.tgz", - "integrity": "sha512-ERO68sOYwm5UuLvSJTY7w7NP2c8S4UcXs3X1GBX8cwOr+ShOcDBbCY5mH4zxz0jsYCdJ8ve8Mv9n2YGJMB1aeg==", + "version": "13.23.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", + "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", "requires": { "type-fest": "^0.20.2" } @@ -21710,12 +23560,13 @@ } }, "eslint-import-resolver-node": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", - "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", "requires": { "debug": "^3.2.7", - "resolve": "^1.20.0" + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" }, "dependencies": { "debug": { @@ -21729,12 +23580,11 @@ } }, "eslint-module-utils": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz", - "integrity": "sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==", + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", "requires": { - "debug": "^3.2.7", - "find-up": "^2.1.0" + "debug": "^3.2.7" }, "dependencies": { "debug": { @@ -21744,49 +23594,6 @@ "requires": { "ms": "^2.1.1" } - }, - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "requires": { - "locate-path": "^2.0.0" - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "requires": { - "p-limit": "^1.1.0" - } - }, - "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" } } }, @@ -21800,31 +23607,35 @@ } }, "eslint-plugin-import": { - "version": "2.26.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz", - "integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==", - "requires": { - "array-includes": "^3.1.4", - "array.prototype.flat": "^1.2.5", - "debug": "^2.6.9", + "version": "2.29.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz", + "integrity": "sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==", + "requires": { + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-module-utils": "^2.7.3", - "has": "^1.0.3", - "is-core-module": "^2.8.1", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", "is-glob": "^4.0.3", "minimatch": "^3.1.2", - "object.values": "^1.1.5", - "resolve": "^1.22.0", - "tsconfig-paths": "^3.14.1" + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.14.2" }, "dependencies": { "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "requires": { - "ms": "2.0.0" + "ms": "^2.1.1" } }, "doctrine": { @@ -21834,11 +23645,6 @@ "requires": { "esutils": "^2.0.2" } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" } } }, @@ -21851,43 +23657,49 @@ } }, "eslint-plugin-jsx-a11y": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz", - "integrity": "sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==", - "requires": { - "@babel/runtime": "^7.16.3", - "aria-query": "^4.2.2", - "array-includes": "^3.1.4", - "ast-types-flow": "^0.0.7", - "axe-core": "^4.3.5", - "axobject-query": "^2.2.0", - "damerau-levenshtein": "^1.0.7", + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", + "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", + "requires": { + "@babel/runtime": "^7.23.2", + "aria-query": "^5.3.0", + "array-includes": "^3.1.7", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "=4.7.0", + "axobject-query": "^3.2.1", + "damerau-levenshtein": "^1.0.8", "emoji-regex": "^9.2.2", - "has": "^1.0.3", - "jsx-ast-utils": "^3.2.1", - "language-tags": "^1.0.5", - "minimatch": "^3.0.4" + "es-iterator-helpers": "^1.0.15", + "hasown": "^2.0.0", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.entries": "^1.1.7", + "object.fromentries": "^2.0.7" } }, "eslint-plugin-react": { - "version": "7.29.4", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.29.4.tgz", - "integrity": "sha512-CVCXajliVh509PcZYRFyu/BoUEz452+jtQJq2b3Bae4v3xBUWPLCmtmBM+ZinG4MzwmxJgJ2M5rMqhqLVn7MtQ==", + "version": "7.33.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", "requires": { - "array-includes": "^3.1.4", - "array.prototype.flatmap": "^1.2.5", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.12", "estraverse": "^5.3.0", "jsx-ast-utils": "^2.4.1 || ^3.0.0", "minimatch": "^3.1.2", - "object.entries": "^1.1.5", - "object.fromentries": "^2.0.5", - "object.hasown": "^1.1.0", - "object.values": "^1.1.5", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.3", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.6" + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" }, "dependencies": { "doctrine": { @@ -21899,83 +23711,125 @@ } }, "resolve": { - "version": "2.0.0-next.3", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.3.tgz", - "integrity": "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==", + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" } } }, "eslint-plugin-react-hooks": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.5.0.tgz", - "integrity": "sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==" + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "requires": {} }, "eslint-plugin-testing-library": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.5.0.tgz", - "integrity": "sha512-eWQ19l6uWL7LW8oeMyQVSGjVYFnBqk7DMHjadm0yOHBvX3Xi9OBrsNuxoAMdX4r7wlQ5WWpW46d+CB6FWFL/PQ==", + "version": "5.11.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz", + "integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==", "requires": { - "@typescript-eslint/utils": "^5.13.0" + "@typescript-eslint/utils": "^5.58.0" } }, "eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "requires": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, - "eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", - "requires": { - "eslint-visitor-keys": "^2.0.0" - }, - "dependencies": { - "eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" - } - } - }, "eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==" + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" }, "eslint-webpack-plugin": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.1.1.tgz", - "integrity": "sha512-xSucskTN9tOkfW7so4EaiFIkulWLXwCB/15H917lR6pTv0Zot6/fetFucmENRb7J5whVSFKIvwnrnsa78SG2yg==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", "requires": { - "@types/eslint": "^7.28.2", - "jest-worker": "^27.3.1", - "micromatch": "^4.0.4", + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", "normalize-path": "^3.0.0", - "schema-utils": "^3.1.1" + "schema-utils": "^4.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "requires": { + "has-flag": "^4.0.0" + } + } } }, "espree": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.2.tgz", - "integrity": "sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==", + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "requires": { - "acorn": "^8.7.1", + "acorn": "^8.9.0", "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.3.0" + "eslint-visitor-keys": "^3.4.1" } }, "esprima": { @@ -21984,9 +23838,9 @@ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" }, "esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", "requires": { "estraverse": "^5.1.0" } @@ -22048,7 +23902,7 @@ "exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" }, "expect": { "version": "27.5.1", @@ -22062,13 +23916,13 @@ } }, "express": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", - "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "requires": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.20.0", + "body-parser": "1.20.1", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.5.0", @@ -22087,7 +23941,7 @@ "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", - "qs": "6.10.3", + "qs": "6.11.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.18.0", @@ -22149,9 +24003,9 @@ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" }, "fast-glob": { - "version": "3.2.11", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", - "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "requires": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", @@ -22178,12 +24032,12 @@ "fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" }, "fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", "requires": { "reusify": "^1.0.4" } @@ -22197,9 +24051,9 @@ } }, "fb-watchman": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", - "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "requires": { "bser": "2.1.1" } @@ -22227,9 +24081,9 @@ } }, "filelist": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.3.tgz", - "integrity": "sha512-LwjCsruLWQULGYKy7TX0OPtrL9kLpojOFKc5VCTxdFTV7w5zbsgqVKfnkKG7Qgjtq50gKfO56hJv88OfcGb70Q==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", "requires": { "minimatch": "^5.0.1" }, @@ -22243,9 +24097,9 @@ } }, "minimatch": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", - "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "requires": { "brace-expansion": "^2.0.1" } @@ -22319,18 +24173,19 @@ } }, "flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "requires": { - "flatted": "^3.1.0", + "flatted": "^3.2.9", + "keyv": "^4.5.3", "rimraf": "^3.0.2" } }, "flatted": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz", - "integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==" + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" }, "fn.name": { "version": "1.1.0", @@ -22342,10 +24197,18 @@ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz", "integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==" }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "requires": { + "is-callable": "^1.1.3" + } + }, "fork-ts-checker-webpack-plugin": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", - "integrity": "sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==", + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", + "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", "requires": { "@babel/code-frame": "^7.8.3", "@types/json-schema": "^7.0.5", @@ -22420,6 +24283,14 @@ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, "schema-utils": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", @@ -22430,6 +24301,14 @@ "ajv-keywords": "^3.4.1" } }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "requires": { + "lru-cache": "^6.0.0" + } + }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -22442,6 +24321,11 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" } } }, @@ -22461,9 +24345,9 @@ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" }, "fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==" }, "fresh": { "version": "0.5.2", @@ -22481,42 +24365,37 @@ } }, "fs-monkey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", - "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz", + "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==" }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" }, "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "optional": true }, "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" }, "function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" } }, - "functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" - }, "functions-have-names": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", @@ -22533,13 +24412,14 @@ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" }, "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" } }, "get-own-enumerable-property-symbols": { @@ -22567,14 +24447,14 @@ } }, "glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^3.0.4", + "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } @@ -22625,6 +24505,14 @@ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" }, + "globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "requires": { + "define-properties": "^1.1.3" + } + }, "globby": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", @@ -22638,10 +24526,23 @@ "slash": "^3.0.0" } }, + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "requires": { + "get-intrinsic": "^1.1.3" + } + }, "graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" }, "gzip-size": { "version": "6.0.0", @@ -22661,14 +24562,6 @@ "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" - } - }, "has-bigints": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", @@ -22680,13 +24573,18 @@ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" }, "has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", "requires": { - "get-intrinsic": "^1.1.1" + "get-intrinsic": "^1.2.2" } }, + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" + }, "has-symbols": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", @@ -22700,6 +24598,14 @@ "has-symbols": "^1.0.2" } }, + "hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "requires": { + "function-bind": "^1.1.2" + } + }, "he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", @@ -22735,7 +24641,7 @@ "hpack.js": { "version": "2.1.6", "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "requires": { "inherits": "^2.0.1", "obuf": "^1.0.0", @@ -22743,10 +24649,15 @@ "wbuf": "^1.1.0" }, "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -22776,9 +24687,9 @@ } }, "html-entities": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", - "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==" + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", + "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==" }, "html-escaper": { "version": "2.0.2", @@ -22800,9 +24711,9 @@ } }, "html-webpack-plugin": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", - "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.3.tgz", + "integrity": "sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg==", "requires": { "@types/html-minifier-terser": "^6.0.0", "html-minifier-terser": "^6.0.2", @@ -22820,39 +24731,12 @@ "domhandler": "^4.0.0", "domutils": "^2.5.2", "entities": "^2.0.0" - }, - "dependencies": { - "dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - } - }, - "domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - }, - "domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "requires": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - } - } } }, "http-deceiver": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" }, "http-errors": { "version": "2.0.0", @@ -22879,9 +24763,9 @@ } }, "http-parser-js": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.6.tgz", - "integrity": "sha512-vDlkRPDJn93swjcjqMSaGSPABbIarsr1TLAui/gLDXzV5VsJNdXNzMYDyNBLQkjWQCJ1uizu8T2oDMhmGt0PRA==" + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" }, "http-proxy": { "version": "1.18.1", @@ -22946,12 +24830,13 @@ "icss-utils": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "requires": {} }, "idb": { - "version": "6.1.5", - "resolved": "https://registry.npmjs.org/idb/-/idb-6.1.5.tgz", - "integrity": "sha512-IJtugpKkiVXQn5Y+LteyBCNk1N8xpGV3wWZk9EVtZWH8DYkjBn0bX1XnGP9RkyZF0sAcywa6unHqSWKe7q4LGw==" + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", + "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==" }, "identity-obj-proxy": { "version": "3.0.0", @@ -22962,14 +24847,14 @@ } }, "ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==" + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" }, "immer": { - "version": "9.0.12", - "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.12.tgz", - "integrity": "sha512-lk7UNmSbAukB5B6dh9fnh5D0bJTOFKxVg2cyJWTYrWRfhLrLMBquONcUs3aFq507hNoIZEDDh8lb8UtOizSMhA==" + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==" }, "import-fresh": { "version": "3.3.0", @@ -22978,6 +24863,13 @@ "requires": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + } } }, "import-local": { @@ -22992,12 +24884,12 @@ "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "requires": { "once": "^1.3.0", "wrappy": "1" @@ -23014,12 +24906,12 @@ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" }, "internal-slot": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", - "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", + "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", "requires": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", + "get-intrinsic": "^1.2.2", + "hasown": "^2.0.0", "side-channel": "^1.0.4" } }, @@ -23028,10 +24920,28 @@ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" }, + "is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + } + }, "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "requires": { + "has-tostringtag": "^1.0.0" + } }, "is-bigint": { "version": "1.0.4", @@ -23059,22 +24969,25 @@ } }, "is-callable": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", - "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==" + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" }, "is-core-module": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz", - "integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==", + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", "requires": { - "has": "^1.0.3" + "hasown": "^2.0.0" } }, "is-date-object": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz", - "integrity": "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==" + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } }, "is-docker": { "version": "2.2.1", @@ -23086,6 +24999,14 @@ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" }, + "is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "requires": { + "call-bind": "^1.0.2" + } + }, "is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", @@ -23096,6 +25017,14 @@ "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" }, + "is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, "is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", @@ -23110,10 +25039,15 @@ "integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=", "dev": true }, + "is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==" + }, "is-module": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", - "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=" + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" }, "is-negative-zero": { "version": "2.0.2", @@ -23136,7 +25070,12 @@ "is-obj": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==" + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" }, "is-plain-obj": { "version": "3.0.0", @@ -23160,13 +25099,18 @@ "is-regexp": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", - "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=" + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==" }, "is-root": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" }, + "is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==" + }, "is-shared-array-buffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", @@ -23196,10 +25140,23 @@ "has-symbols": "^1.0.2" } }, + "is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "requires": { + "which-typed-array": "^1.1.11" + } + }, "is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + }, + "is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==" }, "is-weakref": { "version": "1.0.2", @@ -23209,6 +25166,15 @@ "call-bind": "^1.0.2" } }, + "is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, "is-what": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.3.1.tgz", @@ -23224,46 +25190,39 @@ } }, "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" }, "istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==" + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==" }, "istanbul-lib-instrument": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", - "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", "requires": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.2.0", "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } } }, "istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "requires": { "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", + "make-dir": "^4.0.0", "supports-color": "^7.1.0" }, "dependencies": { @@ -23272,6 +25231,30 @@ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "requires": { + "semver": "^7.5.3" + } + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "requires": { + "lru-cache": "^6.0.0" + } + }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -23279,6 +25262,11 @@ "requires": { "has-flag": "^4.0.0" } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" } } }, @@ -23300,23 +25288,35 @@ } }, "istanbul-reports": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.4.tgz", - "integrity": "sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", "requires": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" } }, + "iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "requires": { + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" + } + }, "jake": { - "version": "10.8.5", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", - "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", + "version": "10.8.7", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", + "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", "requires": { "async": "^3.2.3", "chalk": "^4.0.2", - "filelist": "^1.0.1", - "minimatch": "^3.0.4" + "filelist": "^1.0.4", + "minimatch": "^3.1.2" }, "dependencies": { "ansi-styles": { @@ -23973,9 +25973,10 @@ } }, "jest-pnp-resolver": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", - "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==" + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "requires": {} }, "jest-regex-util": { "version": "27.5.1", @@ -24274,6 +26275,22 @@ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "requires": { + "lru-cache": "^6.0.0" + } + }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -24281,6 +26298,11 @@ "requires": { "has-flag": "^4.0.0" } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" } } }, @@ -24415,15 +26437,15 @@ }, "dependencies": { "@jest/console": { - "version": "28.1.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.0.tgz", - "integrity": "sha512-tscn3dlJFGay47kb4qVruQg/XWlmvU0xp3EJOjzzY+sBaI+YgwKcvAmTcyYU7xEiLLIY5HCdWRooAL8dqkFlDA==", + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", + "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", "requires": { - "@jest/types": "^28.1.0", + "@jest/types": "^28.1.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^28.1.0", - "jest-util": "^28.1.0", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", "slash": "^3.0.0" }, "dependencies": { @@ -24435,22 +26457,22 @@ } }, "@jest/test-result": { - "version": "28.1.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.0.tgz", - "integrity": "sha512-sBBFIyoPzrZho3N+80P35A5oAkSKlGfsEFfXFWuPGBsW40UAjCkGakZhn4UQK4iQlW2vgCDMRDOob9FGKV8YoQ==", + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", + "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", "requires": { - "@jest/console": "^28.1.0", - "@jest/types": "^28.1.0", + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" } }, "@jest/types": { - "version": "28.1.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.0.tgz", - "integrity": "sha512-xmEggMPr317MIOjjDoZ4ejCSr9Lpbt/u34+dvc99t7DS8YirW5rwZEhzKPC2BMUFkUhI48qs6qLUSGw5FuL0GA==", + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "requires": { - "@jest/schemas": "^28.0.2", + "@jest/schemas": "^28.1.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", @@ -24459,9 +26481,9 @@ } }, "@types/yargs": { - "version": "17.0.10", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.10.tgz", - "integrity": "sha512-gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA==", + "version": "17.0.31", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.31.tgz", + "integrity": "sha512-bocYSx4DI8TmdlvxqGpVNXOgCNR1Jj0gNPhhAY+iz1rgKDAaYrAYdFYnhDV1IFuiuVc9HkOwyDcFxaTElF3/wg==", "requires": { "@types/yargs-parser": "*" } @@ -24507,17 +26529,17 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" }, "jest-message-util": { - "version": "28.1.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.0.tgz", - "integrity": "sha512-RpA8mpaJ/B2HphDMiDlrAZdDytkmwFqgjDZovM21F35lHGeUeCvYmm6W+sbQ0ydaLpg5bFAUuWG1cjqOl8vqrw==", + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", "requires": { "@babel/code-frame": "^7.12.13", - "@jest/types": "^28.1.0", + "@jest/types": "^28.1.3", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^28.1.0", + "pretty-format": "^28.1.3", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -24535,11 +26557,11 @@ "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==" }, "jest-util": { - "version": "28.1.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.0.tgz", - "integrity": "sha512-qYdCKD77k4Hwkose2YBEqQk7PzUf/NSE+rutzceduFveQREeH6b+89Dc9+wjX9dAwHcgdx4yedGA3FQlU/qCTA==", + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", "requires": { - "@jest/types": "^28.1.0", + "@jest/types": "^28.1.3", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", @@ -24548,17 +26570,17 @@ } }, "jest-watcher": { - "version": "28.1.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.0.tgz", - "integrity": "sha512-tNHMtfLE8Njcr2IRS+5rXYA4BhU90gAOwI9frTGOqd+jX0P/Au/JfRSNqsf5nUTcWdbVYuLxS1KjnzILSoR5hA==", + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", + "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", "requires": { - "@jest/test-result": "^28.1.0", - "@jest/types": "^28.1.0", + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.10.2", - "jest-util": "^28.1.0", + "jest-util": "^28.1.3", "string-length": "^4.0.1" }, "dependencies": { @@ -24582,11 +26604,11 @@ } }, "pretty-format": { - "version": "28.1.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.0.tgz", - "integrity": "sha512-79Z4wWOYCdvQkEoEuSlBhHJqWeZ8D8YRPiPctJFCtvuaClGpiwiQYSCUOE6IEKUbbFukKOTFIUAXE8N4EQTo1Q==", + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", "requires": { - "@jest/schemas": "^28.0.2", + "@jest/schemas": "^28.1.3", "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", "react-is": "^18.0.0" @@ -24600,9 +26622,9 @@ } }, "react-is": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.1.0.tgz", - "integrity": "sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==" + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" }, "slash": { "version": "4.0.0", @@ -24626,9 +26648,9 @@ } }, "strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "requires": { "ansi-regex": "^6.0.1" }, @@ -24734,6 +26756,11 @@ } } }, + "jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==" + }, "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -24787,6 +26814,11 @@ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" }, + "json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + }, "json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", @@ -24805,12 +26837,12 @@ "json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" }, "json5": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", - "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==" + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" }, "jsonfile": { "version": "6.1.0", @@ -24821,10 +26853,27 @@ "universalify": "^2.0.0" } }, + "jsonpath": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz", + "integrity": "sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==", + "requires": { + "esprima": "1.2.2", + "static-eval": "2.0.2", + "underscore": "1.12.1" + }, + "dependencies": { + "esprima": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz", + "integrity": "sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==" + } + } + }, "jsonpointer": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.0.tgz", - "integrity": "sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==" + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==" }, "jss": { "version": "10.9.0", @@ -24921,12 +26970,22 @@ } }, "jsx-ast-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.0.tgz", - "integrity": "sha512-XzO9luP6L0xkxwhIJMTJQpZo/eeN60K08jHdexfD569AGxeNug6UketeHXEhROoM8aR7EcUoOQmIhcJQjcuq8Q==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "requires": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + } + }, + "keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "requires": { - "array-includes": "^3.1.4", - "object.assign": "^4.1.2" + "json-buffer": "3.0.1" } }, "kind-of": { @@ -24940,9 +26999,9 @@ "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" }, "klona": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", - "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==" }, "kuler": { "version": "2.0.0", @@ -24950,16 +27009,25 @@ "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" }, "language-subtag-registry": { - "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" }, "language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=", + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "requires": { + "language-subtag-registry": "^0.3.20" + } + }, + "launch-editor": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz", + "integrity": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==", "requires": { - "language-subtag-registry": "~0.3.2" + "picocolors": "^1.0.0", + "shell-quote": "^1.8.1" } }, "leven": { @@ -24977,14 +27045,14 @@ } }, "lilconfig": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz", - "integrity": "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==" + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" }, "lines-and-columns": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", - "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "loader-runner": { "version": "4.3.0", @@ -24992,9 +27060,9 @@ "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" }, "loader-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", - "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "requires": { "big.js": "^5.2.2", "emojis-list": "^3.0.0", @@ -25017,12 +27085,12 @@ "lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" }, "lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" }, "lodash.merge": { "version": "4.6.2", @@ -25032,12 +27100,12 @@ "lodash.sortby": { "version": "4.7.0", "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" }, "lodash.uniq": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" }, "logform": { "version": "2.4.0", @@ -25068,11 +27136,11 @@ } }, "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "requires": { - "yallist": "^4.0.0" + "yallist": "^3.0.2" } }, "magic-string": { @@ -25089,13 +27157,6 @@ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "requires": { "semver": "^6.0.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } } }, "makeerror": { @@ -25117,11 +27178,11 @@ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" }, "memfs": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.1.tgz", - "integrity": "sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==", + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", "requires": { - "fs-monkey": "1.0.3" + "fs-monkey": "^1.0.4" } }, "memfs": { @@ -25200,17 +27261,17 @@ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" }, "mini-css-extract-plugin": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.0.tgz", - "integrity": "sha512-ndG8nxCEnAemsg4FSgS+yNyHKgkTB4nPKqCOgh65j3/30qqC5RaSQQXMm++Y6sb6E1zRSxPkztj9fqxhS1Eo6w==", + "version": "2.7.6", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz", + "integrity": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==", "requires": { "schema-utils": "^4.0.0" }, "dependencies": { "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "requires": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -25232,14 +27293,14 @@ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" }, "schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", "requires": { "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", + "ajv": "^8.9.0", "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" + "ajv-keywords": "^5.1.0" } } } @@ -25258,16 +27319,16 @@ } }, "minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" }, "mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "requires": { - "minimist": "^1.2.5" + "minimist": "^1.2.6" } }, "ms": { @@ -25276,23 +27337,38 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "multicast-dns": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.4.tgz", - "integrity": "sha512-XkCYOU+rr2Ft3LI6w4ye51M3VK31qJXFIxu0XLw169PtKG0Zx47OrXeVW/GCYOfpC9s1yyyf1S+L8/4LY0J9Zw==", + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "requires": { "dns-packet": "^5.2.2", "thunky": "^1.0.2" } }, + "mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, "nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" }, "natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" }, "negotiator": { "version": "0.6.3", @@ -25321,12 +27397,12 @@ "node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" }, "node-releases": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.4.tgz", - "integrity": "sha512-gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ==" + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" }, "normalize-path": { "version": "3.0.0", @@ -25336,7 +27412,7 @@ "normalize-range": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" }, "normalize-url": { "version": "6.1.0", @@ -25352,17 +27428,17 @@ } }, "nth-check": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", - "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "requires": { - "boolbase": "~1.0.0" + "boolbase": "^1.0.0" } }, "nwsapi": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", - "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==" + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", + "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" }, "object-assign": { "version": "4.1.1", @@ -25375,9 +27451,9 @@ "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==" }, "object-inspect": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", - "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==" + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" }, "object-keys": { "version": "1.1.1", @@ -25385,63 +27461,76 @@ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" }, "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", "object-keys": "^1.1.1" } }, "object.entries": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", - "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" } }, "object.fromentries": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", - "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" } }, "object.getownpropertydescriptors": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz", - "integrity": "sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ==", + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.7.tgz", + "integrity": "sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==", "requires": { + "array.prototype.reduce": "^1.0.6", "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "safe-array-concat": "^1.0.0" + } + }, + "object.groupby": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", + "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1" } }, "object.hasown": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.1.tgz", - "integrity": "sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", "requires": { - "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" } }, "object.values": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", - "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" } }, "obuf": { @@ -25465,7 +27554,7 @@ "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "requires": { "wrappy": "1" } @@ -25487,9 +27576,9 @@ } }, "open": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", - "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "requires": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", @@ -25497,16 +27586,16 @@ } }, "optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", "requires": { + "@aashutoshrathi/word-wrap": "^1.2.3", "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" + "type-check": "^0.4.0" } }, "p-limit": { @@ -25594,7 +27683,7 @@ "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" }, "path-key": { "version": "3.1.1", @@ -25619,7 +27708,7 @@ "performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" }, "picocolors": { "version": "1.0.0", @@ -25631,10 +27720,15 @@ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + }, "pirates": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==" + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" }, "pkg-dir": { "version": "4.2.0", @@ -25723,7 +27817,7 @@ "path-exists": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" } } }, @@ -25734,27 +27828,28 @@ "dev": true }, "postcss": { - "version": "8.4.13", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.13.tgz", - "integrity": "sha512-jtL6eTBrza5MPzy8oJLFuUscHDXTV5KcLlqAWHl5q5WYRfnNRGSmOZmOZ1T6Gy7A99mOZfqungmZMpMmCVJ8ZA==", + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", "requires": { - "nanoid": "^3.3.3", + "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" } }, "postcss-attribute-case-insensitive": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.0.tgz", - "integrity": "sha512-b4g9eagFGq9T5SWX4+USfVyjIb3liPnjhHHRMP7FMB2kFVpYyfEscV0wP3eaXhKlcHKUut8lt5BGoeylWA/dBQ==", + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", + "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", "requires": { - "postcss-selector-parser": "^6.0.2" + "postcss-selector-parser": "^6.0.10" } }, "postcss-browser-comments": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", - "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==" + "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", + "requires": {} }, "postcss-calc": { "version": "8.2.4", @@ -25788,9 +27883,9 @@ } }, "postcss-color-functional-notation": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.2.tgz", - "integrity": "sha512-DXVtwUhIk4f49KK5EGuEdgx4Gnyj6+t2jBSEmxvpIK9QI40tWrpS2Pua8Q7iIZWBrki2QOaeUdEaLPPa91K0RQ==", + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", + "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", "requires": { "postcss-value-parser": "^4.2.0" }, @@ -25803,9 +27898,9 @@ } }, "postcss-color-hex-alpha": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.3.tgz", - "integrity": "sha512-fESawWJCrBV035DcbKRPAVmy21LpoyiXdPTuHUfWJ14ZRjY7Y7PA6P4g8z6LQGYhU1WAxkTxjIjurXzoe68Glw==", + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", + "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", "requires": { "postcss-value-parser": "^4.2.0" }, @@ -25818,9 +27913,9 @@ } }, "postcss-color-rebeccapurple": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.0.2.tgz", - "integrity": "sha512-SFc3MaocHaQ6k3oZaFwH8io6MdypkUtEy/eXzXEB1vEQlO3S3oDc/FSZA8AsS04Z25RirQhlDlHLh3dn7XewWw==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", + "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", "requires": { "postcss-value-parser": "^4.2.0" }, @@ -25833,11 +27928,11 @@ } }, "postcss-colormin": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", - "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", + "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", "requires": { - "browserslist": "^4.16.6", + "browserslist": "^4.21.4", "caniuse-api": "^3.0.0", "colord": "^2.9.1", "postcss-value-parser": "^4.2.0" @@ -25851,10 +27946,11 @@ } }, "postcss-convert-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.0.tgz", - "integrity": "sha512-GkyPbZEYJiWtQB0KZ0X6qusqFHUepguBCNFi9t5JJc7I2OTXG7C0twbTLvCfaKOLl3rSXmpAwV7W5txd91V84g==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", "requires": { + "browserslist": "^4.21.4", "postcss-value-parser": "^4.2.0" }, "dependencies": { @@ -25866,14 +27962,24 @@ } }, "postcss-custom-media": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.0.tgz", - "integrity": "sha512-FvO2GzMUaTN0t1fBULDeIvxr5IvbDXcIatt6pnJghc736nqNgsGao5NT+5+WVLAQiTt6Cb3YUms0jiPaXhL//g==" + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", + "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", + "requires": { + "postcss-value-parser": "^4.2.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + } }, "postcss-custom-properties": { - "version": "12.1.7", - "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.7.tgz", - "integrity": "sha512-N/hYP5gSoFhaqxi2DPCmvto/ZcRDVjE3T1LiAMzc/bg53hvhcHOLpXOHb526LzBBp5ZlAUhkuot/bfpmpgStJg==", + "version": "12.1.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", + "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", "requires": { "postcss-value-parser": "^4.2.0" }, @@ -25886,45 +27992,49 @@ } }, "postcss-custom-selectors": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.0.tgz", - "integrity": "sha512-/1iyBhz/W8jUepjGyu7V1OPcGbc636snN1yXEQCinb6Bwt7KxsiU7/bLQlp8GwAXzCh7cobBU5odNn/2zQWR8Q==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", + "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", "requires": { "postcss-selector-parser": "^6.0.4" } }, "postcss-dir-pseudo-class": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.4.tgz", - "integrity": "sha512-I8epwGy5ftdzNWEYok9VjW9whC4xnelAtbajGv4adql4FIF09rnrxnA9Y8xSHN47y7gqFIv10C5+ImsLeJpKBw==", + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", + "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", "requires": { - "postcss-selector-parser": "^6.0.9" + "postcss-selector-parser": "^6.0.10" } }, "postcss-discard-comments": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.1.tgz", - "integrity": "sha512-5JscyFmvkUxz/5/+TB3QTTT9Gi9jHkcn8dcmmuN68JQcv3aQg4y88yEHHhwFB52l/NkaJ43O0dbksGMAo49nfQ==" + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "requires": {} }, "postcss-discard-duplicates": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", - "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==" + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "requires": {} }, "postcss-discard-empty": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", - "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==" + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "requires": {} }, "postcss-discard-overridden": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", - "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==" + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "requires": {} }, "postcss-double-position-gradients": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.1.tgz", - "integrity": "sha512-jM+CGkTs4FcG53sMPjrrGE0rIvLDdCrqMzgDC5fLI7JHDO7o6QG8C5TQBtExb13hdBdoH9C2QVbG4jo2y9lErQ==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", + "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", "requires": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" @@ -25955,7 +28065,8 @@ "postcss-flexbugs-fixes": { "version": "5.0.2", "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", - "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==" + "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", + "requires": {} }, "postcss-focus-visible": { "version": "6.0.4", @@ -25976,17 +28087,19 @@ "postcss-font-variant": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", - "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==" + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "requires": {} }, "postcss-gap-properties": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.3.tgz", - "integrity": "sha512-rPPZRLPmEKgLk/KlXMqRaNkYTUpE7YC+bOIQFN5xcu1Vp11Y4faIXv6/Jpft6FMnl6YRxZqDZG0qQOW80stzxQ==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", + "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", + "requires": {} }, "postcss-image-set-function": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.6.tgz", - "integrity": "sha512-KfdC6vg53GC+vPd2+HYzsZ6obmPqOk6HY09kttU19+Gj1nC3S3XBVEXDHxkhxTohgZqzbUb94bKXvKDnYWBm/A==", + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", + "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", "requires": { "postcss-value-parser": "^4.2.0" }, @@ -25998,23 +28111,41 @@ } } }, + "postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "requires": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "dependencies": { + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + } + }, "postcss-initial": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", - "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==" + "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", + "requires": {} }, "postcss-js": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz", - "integrity": "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", "requires": { "camelcase-css": "^2.0.1" } }, "postcss-lab-function": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.0.tgz", - "integrity": "sha512-Zb1EO9DGYfa3CP8LhINHCcTTCTLI+R3t7AX2mKsDzdgVQ/GkCpHOTgOr6HBHslP7XDdVbqgHW5vvRPMdVANQ8w==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", + "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", "requires": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" @@ -26028,12 +28159,19 @@ } }, "postcss-load-config": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", "requires": { "lilconfig": "^2.0.5", - "yaml": "^1.10.2" + "yaml": "^2.1.1" + }, + "dependencies": { + "yaml": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==" + } } }, "postcss-loader": { @@ -26044,25 +28182,50 @@ "cosmiconfig": "^7.0.0", "klona": "^2.0.5", "semver": "^7.3.5" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } } }, "postcss-logical": { "version": "5.0.4", "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", - "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==" + "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", + "requires": {} }, "postcss-media-minmax": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", - "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==" + "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", + "requires": {} }, "postcss-merge-longhand": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.4.tgz", - "integrity": "sha512-hbqRRqYfmXoGpzYKeW0/NCZhvNyQIlQeWVSao5iKWdyx7skLvCfQFGIUsP9NUs3dSbPac2IC4Go85/zG+7MlmA==", + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", "requires": { "postcss-value-parser": "^4.2.0", - "stylehacks": "^5.1.0" + "stylehacks": "^5.1.1" }, "dependencies": { "postcss-value-parser": { @@ -26073,11 +28236,11 @@ } }, "postcss-merge-rules": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.1.tgz", - "integrity": "sha512-8wv8q2cXjEuCcgpIB1Xx1pIy8/rhMPIQqYKNzEdyx37m6gpq83mQQdCxgIkFgliyEnKvdwJf/C61vN4tQDq4Ww==", + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", + "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", "requires": { - "browserslist": "^4.16.6", + "browserslist": "^4.21.4", "caniuse-api": "^3.0.0", "cssnano-utils": "^3.1.0", "postcss-selector-parser": "^6.0.5" @@ -26116,11 +28279,11 @@ } }, "postcss-minify-params": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.2.tgz", - "integrity": "sha512-aEP+p71S/urY48HWaRHasyx4WHQJyOYaKpQ6eXl8k0kxg66Wt/30VR6/woh8THgcpRbonJD5IeD+CzNhPi1L8g==", + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", "requires": { - "browserslist": "^4.16.6", + "browserslist": "^4.21.4", "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" }, @@ -26133,9 +28296,9 @@ } }, "postcss-minify-selectors": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.0.tgz", - "integrity": "sha512-vYxvHkW+iULstA+ctVNx0VoRAR4THQQRkG77o0oa4/mBS0OzGvvzLIvHDv/nNEM0crzN2WIyFU5X7wZhaUK3RA==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", "requires": { "postcss-selector-parser": "^6.0.5" } @@ -26143,12 +28306,13 @@ "postcss-modules-extract-imports": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "requires": {} }, "postcss-modules-local-by-default": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", - "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", + "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", "requires": { "icss-utils": "^5.0.0", "postcss-selector-parser": "^6.0.2", @@ -26179,19 +28343,19 @@ } }, "postcss-nested": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz", - "integrity": "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", "requires": { - "postcss-selector-parser": "^6.0.6" + "postcss-selector-parser": "^6.0.11" } }, "postcss-nesting": { - "version": "10.1.5", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.1.5.tgz", - "integrity": "sha512-+NyBBE/wUcJ+NJgVd2FyKIZ414lul6ExqkOt1qXXw7oRzpQ0iT68cVpx+QfHh42QUMHXNoVLlN9InFY9XXK8ng==", + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", + "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", "requires": { - "@csstools/selector-specificity": "1.0.0", + "@csstools/selector-specificity": "^2.0.0", "postcss-selector-parser": "^6.0.10" } }, @@ -26208,7 +28372,8 @@ "postcss-normalize-charset": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", - "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==" + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "requires": {} }, "postcss-normalize-display-values": { "version": "5.1.0", @@ -26226,9 +28391,9 @@ } }, "postcss-normalize-positions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.0.tgz", - "integrity": "sha512-8gmItgA4H5xiUxgN/3TVvXRoJxkAWLW6f/KKhdsH03atg0cB8ilXnrB5PpSshwVu/dD2ZsRFQcR1OEmSBDAgcQ==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", "requires": { "postcss-value-parser": "^4.2.0" }, @@ -26241,9 +28406,9 @@ } }, "postcss-normalize-repeat-style": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.0.tgz", - "integrity": "sha512-IR3uBjc+7mcWGL6CtniKNQ4Rr5fTxwkaDHwMBDGGs1x9IVRkYIT/M4NelZWkAOBdV6v3Z9S46zqaKGlyzHSchw==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", "requires": { "postcss-value-parser": "^4.2.0" }, @@ -26286,11 +28451,11 @@ } }, "postcss-normalize-unicode": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.0.tgz", - "integrity": "sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", "requires": { - "browserslist": "^4.16.6", + "browserslist": "^4.21.4", "postcss-value-parser": "^4.2.0" }, "dependencies": { @@ -26333,14 +28498,15 @@ } }, "postcss-opacity-percentage": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.2.tgz", - "integrity": "sha512-lyUfF7miG+yewZ8EAk9XUBIlrHyUE6fijnesuz+Mj5zrIHIEw6KcIZSOk/elVMqzLvREmXB83Zi/5QpNRYd47w==" + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz", + "integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==", + "requires": {} }, "postcss-ordered-values": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.1.tgz", - "integrity": "sha512-7lxgXF0NaoMIgyihL/2boNAEZKiW0+HkMhdKMTD93CjW8TdCy2hSdj8lsAo+uwm7EDG16Da2Jdmtqpedl0cMfw==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", "requires": { "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" @@ -26354,19 +28520,30 @@ } }, "postcss-overflow-shorthand": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.3.tgz", - "integrity": "sha512-CxZwoWup9KXzQeeIxtgOciQ00tDtnylYIlJBBODqkgS/PU2jISuWOL/mYLHmZb9ZhZiCaNKsCRiLp22dZUtNsg==" + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", + "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", + "requires": { + "postcss-value-parser": "^4.2.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + } }, "postcss-page-break": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", - "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==" + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "requires": {} }, "postcss-place": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.4.tgz", - "integrity": "sha512-MrgKeiiu5OC/TETQO45kV3npRjOFxEHthsqGtkh3I1rPbZSbXGD/lZVi9j13cYh+NA8PIAPyk6sGjT9QbRyvSg==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", + "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", "requires": { "postcss-value-parser": "^4.2.0" }, @@ -26379,54 +28556,58 @@ } }, "postcss-preset-env": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.5.0.tgz", - "integrity": "sha512-0BJzWEfCdTtK2R3EiKKSdkE51/DI/BwnhlnicSW482Ym6/DGHud8K0wGLcdjip1epVX0HKo4c8zzTeV/SkiejQ==", - "requires": { - "@csstools/postcss-color-function": "^1.1.0", - "@csstools/postcss-font-format-keywords": "^1.0.0", - "@csstools/postcss-hwb-function": "^1.0.0", - "@csstools/postcss-ic-unit": "^1.0.0", - "@csstools/postcss-is-pseudo-class": "^2.0.2", - "@csstools/postcss-normalize-display-values": "^1.0.0", - "@csstools/postcss-oklab-function": "^1.1.0", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz", + "integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==", + "requires": { + "@csstools/postcss-cascade-layers": "^1.1.1", + "@csstools/postcss-color-function": "^1.1.1", + "@csstools/postcss-font-format-keywords": "^1.0.1", + "@csstools/postcss-hwb-function": "^1.0.2", + "@csstools/postcss-ic-unit": "^1.0.1", + "@csstools/postcss-is-pseudo-class": "^2.0.7", + "@csstools/postcss-nested-calc": "^1.0.0", + "@csstools/postcss-normalize-display-values": "^1.0.1", + "@csstools/postcss-oklab-function": "^1.1.1", "@csstools/postcss-progressive-custom-properties": "^1.3.0", - "@csstools/postcss-stepped-value-functions": "^1.0.0", - "@csstools/postcss-unset-value": "^1.0.0", - "autoprefixer": "^10.4.6", - "browserslist": "^4.20.3", + "@csstools/postcss-stepped-value-functions": "^1.0.1", + "@csstools/postcss-text-decoration-shorthand": "^1.0.0", + "@csstools/postcss-trigonometric-functions": "^1.0.2", + "@csstools/postcss-unset-value": "^1.0.2", + "autoprefixer": "^10.4.13", + "browserslist": "^4.21.4", "css-blank-pseudo": "^3.0.3", "css-has-pseudo": "^3.0.4", "css-prefers-color-scheme": "^6.0.3", - "cssdb": "^6.6.1", - "postcss-attribute-case-insensitive": "^5.0.0", + "cssdb": "^7.1.0", + "postcss-attribute-case-insensitive": "^5.0.2", "postcss-clamp": "^4.1.0", - "postcss-color-functional-notation": "^4.2.2", - "postcss-color-hex-alpha": "^8.0.3", - "postcss-color-rebeccapurple": "^7.0.2", - "postcss-custom-media": "^8.0.0", - "postcss-custom-properties": "^12.1.7", - "postcss-custom-selectors": "^6.0.0", - "postcss-dir-pseudo-class": "^6.0.4", - "postcss-double-position-gradients": "^3.1.1", + "postcss-color-functional-notation": "^4.2.4", + "postcss-color-hex-alpha": "^8.0.4", + "postcss-color-rebeccapurple": "^7.1.1", + "postcss-custom-media": "^8.0.2", + "postcss-custom-properties": "^12.1.10", + "postcss-custom-selectors": "^6.0.3", + "postcss-dir-pseudo-class": "^6.0.5", + "postcss-double-position-gradients": "^3.1.2", "postcss-env-function": "^4.0.6", "postcss-focus-visible": "^6.0.4", "postcss-focus-within": "^5.0.4", "postcss-font-variant": "^5.0.0", - "postcss-gap-properties": "^3.0.3", - "postcss-image-set-function": "^4.0.6", + "postcss-gap-properties": "^3.0.5", + "postcss-image-set-function": "^4.0.7", "postcss-initial": "^4.0.1", - "postcss-lab-function": "^4.2.0", + "postcss-lab-function": "^4.2.1", "postcss-logical": "^5.0.4", "postcss-media-minmax": "^5.0.0", - "postcss-nesting": "^10.1.4", + "postcss-nesting": "^10.2.0", "postcss-opacity-percentage": "^1.1.2", - "postcss-overflow-shorthand": "^3.0.3", + "postcss-overflow-shorthand": "^3.0.4", "postcss-page-break": "^3.0.4", - "postcss-place": "^7.0.4", - "postcss-pseudo-class-any-link": "^7.1.2", + "postcss-place": "^7.0.5", + "postcss-pseudo-class-any-link": "^7.1.6", "postcss-replace-overflow-wrap": "^4.0.0", - "postcss-selector-not": "^5.0.0", + "postcss-selector-not": "^6.0.1", "postcss-value-parser": "^4.2.0" }, "dependencies": { @@ -26438,19 +28619,19 @@ } }, "postcss-pseudo-class-any-link": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.3.tgz", - "integrity": "sha512-I9Yp1VV2r8xFwg/JrnAlPCcKmutv6f6Ig6/CHFPqGJiDgYXM9C+0kgLfK4KOXbKNw+63QYl4agRUB0Wi9ftUIg==", + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", + "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", "requires": { "postcss-selector-parser": "^6.0.10" } }, "postcss-reduce-initial": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.0.tgz", - "integrity": "sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", + "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", "requires": { - "browserslist": "^4.16.6", + "browserslist": "^4.21.4", "caniuse-api": "^3.0.0" } }, @@ -26472,20 +28653,21 @@ "postcss-replace-overflow-wrap": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", - "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==" + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "requires": {} }, "postcss-selector-not": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-5.0.0.tgz", - "integrity": "sha512-/2K3A4TCP9orP4TNS7u3tGdRFVKqz/E6pX3aGnriPG0jU78of8wsUcqE4QAhWEU0d+WnMSF93Ah3F//vUtK+iQ==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", + "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", "requires": { - "balanced-match": "^1.0.0" + "postcss-selector-parser": "^6.0.10" } }, "postcss-selector-parser": { - "version": "6.0.10", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", - "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -26505,18 +28687,6 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" }, - "css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "requires": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - } - }, "css-tree": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", @@ -26526,49 +28696,11 @@ "source-map": "^0.6.1" } }, - "css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" - }, - "dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - } - }, - "domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - }, - "domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "requires": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - } - }, "mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" }, - "nth-check": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", - "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==", - "requires": { - "boolbase": "^1.0.0" - } - }, "postcss-value-parser": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", @@ -26656,9 +28788,9 @@ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" }, "promise": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/promise/-/promise-8.1.0.tgz", - "integrity": "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", "requires": { "asap": "~2.0.6" } @@ -26692,38 +28824,38 @@ } }, "psl": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" }, "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" }, "q": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=" + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==" }, "qs": { - "version": "6.10.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", - "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "requires": { "side-channel": "^1.0.4" } }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, "queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" }, - "quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" - }, "raf": { "version": "3.4.1", "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", @@ -26862,9 +28994,9 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" }, "loader-utils": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz", - "integrity": "sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==" + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==" }, "supports-color": { "version": "7.2.0", @@ -26953,6 +29085,29 @@ "webpack-dev-server": "^4.6.0", "webpack-manifest-plugin": "^4.0.2", "workbox-webpack-plugin": "^6.4.1" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } } }, "react-transition-group": { @@ -26967,6 +29122,14 @@ "prop-types": "^15.6.2" } }, + "read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "requires": { + "pify": "^2.3.0" + } + }, "readable-stream": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", @@ -26986,21 +29149,24 @@ } }, "recursive-readdir": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", - "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", + "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", "requires": { - "minimatch": "3.0.4" - }, - "dependencies": { - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "requires": { - "brace-expansion": "^1.1.7" - } - } + "minimatch": "^3.0.5" + } + }, + "reflect.getprototypeof": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", + "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" } }, "regenerate": { @@ -27009,22 +29175,22 @@ "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" }, "regenerate-unicode-properties": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz", - "integrity": "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==", + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", "requires": { "regenerate": "^1.4.2" } }, "regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" }, "regenerator-transform": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz", - "integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==", + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", "requires": { "@babel/runtime": "^7.8.4" } @@ -27035,42 +29201,32 @@ "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" }, "regexp.prototype.flags": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", - "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" } }, - "regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" - }, "regexpu-core": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.0.1.tgz", - "integrity": "sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", "requires": { + "@babel/regjsgen": "^0.8.0", "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.0.1", - "regjsgen": "^0.6.0", - "regjsparser": "^0.8.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.0.0" + "unicode-match-property-value-ecmascript": "^2.1.0" } }, - "regjsgen": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz", - "integrity": "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==" - }, "regjsparser": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz", - "integrity": "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==", + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", "requires": { "jsesc": "~0.5.0" }, @@ -27078,14 +29234,14 @@ "jsesc": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" } } }, "relateurl": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", - "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==" }, "renderkid": { "version": "3.0.0", @@ -27097,64 +29253,12 @@ "htmlparser2": "^6.1.0", "lodash": "^4.17.21", "strip-ansi": "^6.0.1" - }, - "dependencies": { - "css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "requires": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - } - }, - "css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" - }, - "dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - } - }, - "domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - }, - "domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "requires": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - } - }, - "nth-check": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", - "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==", - "requires": { - "boolbase": "^1.0.0" - } - } } }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" }, "require-from-string": { "version": "2.0.2", @@ -27167,11 +29271,11 @@ "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" }, "resolve": { - "version": "1.22.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", - "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "requires": { - "is-core-module": "^2.8.1", + "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" } @@ -27182,19 +29286,12 @@ "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "requires": { "resolve-from": "^5.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - } } }, "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" }, "resolve-pathname": { "version": "3.0.0", @@ -27235,9 +29332,9 @@ } }, "resolve.exports": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", - "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==" }, "retry": { "version": "0.13.1", @@ -27258,9 +29355,9 @@ } }, "rollup": { - "version": "2.72.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.72.1.tgz", - "integrity": "sha512-NTc5UGy/NWFGpSqF1lFY8z9Adri6uhyMLI6LvPAXdBKoPRFhIIiBUpt+Qg2awixqO3xvzSijjhnb4+QEZwJmxA==", + "version": "2.79.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", "requires": { "fsevents": "~2.3.2" } @@ -27317,11 +29414,32 @@ "queue-microtask": "^1.2.2" } }, + "safe-array-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + } + }, "safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, + "safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + } + }, "safe-stable-stringify": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz", @@ -27368,9 +29486,9 @@ } }, "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "requires": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -27380,23 +29498,21 @@ "select-hose": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" }, "selfsigned": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.0.1.tgz", - "integrity": "sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", "requires": { + "@types/node-forge": "^1.3.0", "node-forge": "^1" } }, "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "requires": { - "lru-cache": "^6.0.0" - } + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" }, "send": { "version": "0.18.0", @@ -27451,9 +29567,9 @@ } }, "serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "requires": { "randombytes": "^2.1.0" } @@ -27461,7 +29577,7 @@ "serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", "requires": { "accepts": "~1.3.4", "batch": "0.6.1", @@ -27483,7 +29599,7 @@ "http-errors": { "version": "1.6.3", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", "requires": { "depd": "~1.1.2", "inherits": "2.0.3", @@ -27494,12 +29610,12 @@ "inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" }, "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "setprototypeof": { "version": "1.1.0", @@ -27519,6 +29635,27 @@ "send": "0.18.0" } }, + "set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "requires": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + } + }, + "set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "requires": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + } + }, "setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", @@ -27538,9 +29675,9 @@ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" }, "shell-quote": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz", - "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==" + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==" }, "side-channel": { "version": "1.0.4", @@ -27598,9 +29735,9 @@ "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" }, "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" }, "source-map-js": { "version": "1.0.2", @@ -27608,9 +29745,9 @@ "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" }, "source-map-loader": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.1.tgz", - "integrity": "sha512-Vp1UsfyPvgujKQzi4pyDiTOnE3E4H+yHvkVRN3c/9PJmQS4CQJExvcDvaX/D+RV+xQben9HJ56jMJS3CgUeWyA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", + "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", "requires": { "abab": "^2.0.5", "iconv-lite": "^0.6.3", @@ -27676,7 +29813,7 @@ "sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" }, "stable": { "version": "0.1.8", @@ -27689,9 +29826,9 @@ "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" }, "stack-utils": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", - "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", "requires": { "escape-string-regexp": "^2.0.0" }, @@ -27704,14 +29841,82 @@ } }, "stackframe": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.2.1.tgz", - "integrity": "sha512-h88QkzREN/hy8eRdyNhhsO7RSJ5oyTqxxmmn0dzBIMUclZsjpfmrsg81vp8mjjAs2vAZ72nyWxRUwSwmh0e4xg==" + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + }, + "static-eval": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz", + "integrity": "sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==", + "requires": { + "escodegen": "^1.8.1" + }, + "dependencies": { + "escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + } + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "requires": { + "prelude-ls": "~1.1.2" + } + } + } }, "statuses": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" }, "string_decoder": { "version": "1.3.0", @@ -27760,38 +29965,49 @@ } }, "string.prototype.matchall": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz", - "integrity": "sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==", + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", + "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1", - "get-intrinsic": "^1.1.1", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.1", + "internal-slot": "^1.0.5", + "regexp.prototype.flags": "^1.5.0", + "set-function-name": "^2.0.0", "side-channel": "^1.0.4" } }, + "string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + } + }, "string.prototype.trimend": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz", - "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" } }, "string.prototype.trimstart": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz", - "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" } }, "stringify-object": { @@ -27833,9 +30049,10 @@ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" }, "style-loader": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.1.tgz", - "integrity": "sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==" + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz", + "integrity": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==", + "requires": {} }, "styled-components": { "version": "4.4.1", @@ -27859,11 +30076,11 @@ } }, "stylehacks": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.0.tgz", - "integrity": "sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", "requires": { - "browserslist": "^4.16.6", + "browserslist": "^4.21.4", "postcss-selector-parser": "^6.0.4" } }, @@ -27879,6 +30096,50 @@ "integrity": "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==", "dev": true }, + "sucrase": { + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz", + "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==", + "requires": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "dependencies": { + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + } + } + }, "supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", @@ -27888,9 +30149,9 @@ } }, "supports-hyperlinks": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz", - "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", "requires": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" @@ -27939,6 +30200,57 @@ "stable": "^0.1.8", "unquote": "~1.1.1", "util.promisify": "~1.0.0" + }, + "dependencies": { + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==" + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + }, + "dependencies": { + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + } + } + }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "requires": { + "boolbase": "~1.0.0" + } + } } }, "symbol-tree": { @@ -27947,43 +30259,32 @@ "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" }, "tailwindcss": { - "version": "3.0.24", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.24.tgz", - "integrity": "sha512-H3uMmZNWzG6aqmg9q07ZIRNIawoiEcNFKDfL+YzOPuPsXuDXxJxB9icqzLgdzKNwjG3SAro2h9SYav8ewXNgig==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.5.tgz", + "integrity": "sha512-5SEZU4J7pxZgSkv7FP1zY8i2TIAOooNZ1e/OGtxIEv6GltpoiXUqWvLy89+a10qYTB1N5Ifkuw9lqQkN9sscvA==", "requires": { - "arg": "^5.0.1", + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", "chokidar": "^3.5.3", - "color-name": "^1.1.4", - "detective": "^5.2.0", "didyoumean": "^1.2.2", "dlv": "^1.1.3", - "fast-glob": "^3.2.11", + "fast-glob": "^3.3.0", "glob-parent": "^6.0.2", "is-glob": "^4.0.3", - "lilconfig": "^2.0.5", + "jiti": "^1.19.1", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", "normalize-path": "^3.0.0", "object-hash": "^3.0.0", "picocolors": "^1.0.0", - "postcss": "^8.4.12", - "postcss-js": "^4.0.0", - "postcss-load-config": "^3.1.4", - "postcss-nested": "5.0.6", - "postcss-selector-parser": "^6.0.10", - "postcss-value-parser": "^4.2.0", - "quick-lru": "^5.1.1", - "resolve": "^1.22.0" - }, - "dependencies": { - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - } + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" } }, "tapable": { @@ -28024,12 +30325,12 @@ } }, "terser": { - "version": "5.14.2", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", - "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", + "version": "5.24.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.24.0.tgz", + "integrity": "sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==", "requires": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -28042,22 +30343,15 @@ } }, "terser-webpack-plugin": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.1.tgz", - "integrity": "sha512-GvlZdT6wPQKbDNW/GDQzZFg/j4vKU96yl2q6mcUkzKOgW4gwf1Z8cZToUCrz31XHlPWH8MVb1r2tFtdDtTGJ7g==", + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", "requires": { + "@jridgewell/trace-mapping": "^0.3.17", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "source-map": "^0.6.1", - "terser": "^5.7.2" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" } }, "test-exclude": { @@ -28078,12 +30372,28 @@ "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "requires": { + "any-promise": "^1.0.0" + } + }, + "thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "requires": { + "thenify": ">= 3.1.0 < 4" + } }, "throat": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", - "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==" + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", + "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==" }, "thunky": { "version": "1.1.0", @@ -28124,19 +30434,20 @@ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" }, "tough-cookie": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", - "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", "requires": { "psl": "^1.1.33", "punycode": "^2.1.1", - "universalify": "^0.1.2" + "universalify": "^0.2.0", + "url-parse": "^1.5.3" }, "dependencies": { "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" } } }, @@ -28158,21 +30469,26 @@ "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" }, + "ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" + }, "tsconfig-paths": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", - "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", "requires": { "@types/json5": "^0.0.29", - "json5": "^1.0.1", + "json5": "^1.0.2", "minimist": "^1.2.6", "strip-bom": "^3.0.0" }, "dependencies": { "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "requires": { "minimist": "^1.2.0" } @@ -28180,14 +30496,14 @@ "strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" } } }, "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "tsutils": { "version": "3.21.0", @@ -28231,6 +30547,49 @@ "mime-types": "~2.1.24" } }, + "typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "requires": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "requires": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + } + }, "typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", @@ -28239,6 +30598,12 @@ "is-typedarray": "^1.0.0" } }, + "typescript": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "peer": true + }, "unbox-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", @@ -28250,6 +30615,11 @@ "which-boxed-primitive": "^1.0.2" } }, + "underscore": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz", + "integrity": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==" + }, "unicode-canonical-property-names-ecmascript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", @@ -28265,14 +30635,14 @@ } }, "unicode-match-property-value-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", - "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==" + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" }, "unicode-property-aliases-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", - "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==" + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" }, "unique-string": { "version": "2.0.0", @@ -28283,9 +30653,9 @@ } }, "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" }, "unpipe": { "version": "1.0.0", @@ -28295,13 +30665,22 @@ "unquote": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", - "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" }, "upath": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" }, + "update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, "uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", @@ -28310,6 +30689,15 @@ "punycode": "^2.1.0" } }, + "url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -28329,7 +30717,7 @@ "utila": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", - "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" }, "utils-merge": { "version": "1.0.1", @@ -28341,11 +30729,6 @@ "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" }, - "v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" - }, "v8-to-istanbul": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", @@ -28391,9 +30774,9 @@ } }, "watchpack": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.3.1.tgz", - "integrity": "sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", "requires": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -28413,21 +30796,21 @@ "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==" }, "webpack": { - "version": "5.72.1", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.72.1.tgz", - "integrity": "sha512-dXG5zXCLspQR4krZVR6QgajnZOjW2K/djHvdcRaDQvsjV9z9vaW6+ja5dZOYbqBBjF6kGXka/2ZyxNdc+8Jung==", + "version": "5.89.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.89.0.tgz", + "integrity": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==", "requires": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.4.1", - "acorn-import-assertions": "^1.7.6", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.9.3", - "es-module-lexer": "^0.9.0", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", @@ -28436,10 +30819,10 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.2.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.3.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, "dependencies": { @@ -28460,21 +30843,21 @@ } }, "webpack-dev-middleware": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.1.tgz", - "integrity": "sha512-81EujCKkyles2wphtdrnPg/QqegC/AtqNH//mQkBYSMqwFVCQrxM6ktB2O/SPlZy7LqeEfTbV3cZARGQz6umhg==", + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", "requires": { "colorette": "^2.0.10", - "memfs": "^3.4.1", + "memfs": "^3.4.3", "mime-types": "^2.1.31", "range-parser": "^1.2.1", "schema-utils": "^4.0.0" }, "dependencies": { "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "requires": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -28496,57 +30879,59 @@ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" }, "schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", "requires": { "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", + "ajv": "^8.9.0", "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" + "ajv-keywords": "^5.1.0" } } } }, "webpack-dev-server": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.9.0.tgz", - "integrity": "sha512-+Nlb39iQSOSsFv0lWUuUTim3jDQO8nhK3E68f//J2r5rIcp4lULHXz2oZ0UVdEeWXEh5lSzYUlzarZhDAeAVQw==", + "version": "4.15.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz", + "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==", "requires": { "@types/bonjour": "^3.5.9", "@types/connect-history-api-fallback": "^1.3.5", "@types/express": "^4.17.13", "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", "@types/sockjs": "^0.3.33", - "@types/ws": "^8.5.1", + "@types/ws": "^8.5.5", "ansi-html-community": "^0.0.8", "bonjour-service": "^1.0.11", "chokidar": "^3.5.3", "colorette": "^2.0.10", "compression": "^1.7.4", - "connect-history-api-fallback": "^1.6.0", + "connect-history-api-fallback": "^2.0.0", "default-gateway": "^6.0.3", "express": "^4.17.3", "graceful-fs": "^4.2.6", "html-entities": "^2.3.2", "http-proxy-middleware": "^2.0.3", "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", "open": "^8.0.9", "p-retry": "^4.5.0", "rimraf": "^3.0.2", "schema-utils": "^4.0.0", - "selfsigned": "^2.0.1", + "selfsigned": "^2.1.1", "serve-index": "^1.9.1", - "sockjs": "^0.3.21", + "sockjs": "^0.3.24", "spdy": "^4.0.2", "webpack-dev-middleware": "^5.3.1", - "ws": "^8.4.2" + "ws": "^8.13.0" }, "dependencies": { "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "requires": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -28575,9 +30960,9 @@ } }, "ipaddr.js": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", - "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==" + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", + "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==" }, "json-schema-traverse": { "version": "1.0.0", @@ -28585,20 +30970,21 @@ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" }, "schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", "requires": { "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", + "ajv": "^8.9.0", "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" + "ajv-keywords": "^5.1.0" } }, "ws": { - "version": "8.6.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.6.0.tgz", - "integrity": "sha512-AzmM3aH3gk0aX7/rZLYvjdvZooofDu3fFOzGqcSnQ1tOcTWwhM/o+q++E8mAyVVIyUdajrkzWUGftaVSDLn1bw==" + "version": "8.14.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz", + "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", + "requires": {} } } }, @@ -28656,9 +31042,9 @@ } }, "whatwg-fetch": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", - "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" + "version": "3.6.19", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.19.tgz", + "integrity": "sha512-d67JP4dHSbm2TrpFj8AbO8DnL1JXL5J9u0Kq2xW6d0TFDbCA3Muhdt8orXC22utleTVj7Prqt82baN6RBvnEgw==" }, "whatwg-mimetype": { "version": "2.3.0", @@ -28695,11 +31081,54 @@ "is-symbol": "^1.0.3" } }, + "which-builtin-type": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "requires": { + "function.prototype.name": "^1.1.5", + "has-tostringtag": "^1.0.0", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + } + }, + "which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "requires": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + } + }, + "which-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", + "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.4", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + } + }, "winston": { - "version": "3.8.1", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.8.1.tgz", - "integrity": "sha512-r+6YAiCR4uI3N8eQNOg8k3P3PqwAm20cLKlzVD9E66Ch39+LZC+VH1UKf9JemQj2B3QoUHfKD7Poewn0Pr3Y1w==", + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/winston/-/winston-3.8.2.tgz", + "integrity": "sha512-MsE1gRx1m5jdTTO9Ld/vND4krP2To+lgDoMEHGGa4HIlAUyXJtfc7CxQcGXVyz2IBpw5hbFkj2b/AtUdQwyRew==", "requires": { + "@colors/colors": "1.5.0", "@dabh/diagnostics": "^2.0.2", "async": "^3.2.3", "is-stream": "^2.0.0", @@ -28723,31 +31152,31 @@ } }, "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==" }, "workbox-background-sync": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.5.3.tgz", - "integrity": "sha512-0DD/V05FAcek6tWv9XYj2w5T/plxhDSpclIcAGjA/b7t/6PdaRkQ7ZgtAX6Q/L7kV7wZ8uYRJUoH11VjNipMZw==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz", + "integrity": "sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==", "requires": { - "idb": "^6.1.4", - "workbox-core": "6.5.3" + "idb": "^7.0.1", + "workbox-core": "6.6.0" } }, "workbox-broadcast-update": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.5.3.tgz", - "integrity": "sha512-4AwCIA5DiDrYhlN+Miv/fp5T3/whNmSL+KqhTwRBTZIL6pvTgE4lVuRzAt1JltmqyMcQ3SEfCdfxczuI4kwFQg==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz", + "integrity": "sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==", "requires": { - "workbox-core": "6.5.3" + "workbox-core": "6.6.0" } }, "workbox-build": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.5.3.tgz", - "integrity": "sha512-8JNHHS7u13nhwIYCDea9MNXBNPHXCs5KDZPKI/ZNTr3f4sMGoD7hgFGecbyjX1gw4z6e9bMpMsOEJNyH5htA/w==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz", + "integrity": "sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==", "requires": { "@apideck/better-ajv-errors": "^0.3.1", "@babel/core": "^7.11.1", @@ -28771,27 +31200,27 @@ "strip-comments": "^2.0.1", "tempy": "^0.6.0", "upath": "^1.2.0", - "workbox-background-sync": "6.5.3", - "workbox-broadcast-update": "6.5.3", - "workbox-cacheable-response": "6.5.3", - "workbox-core": "6.5.3", - "workbox-expiration": "6.5.3", - "workbox-google-analytics": "6.5.3", - "workbox-navigation-preload": "6.5.3", - "workbox-precaching": "6.5.3", - "workbox-range-requests": "6.5.3", - "workbox-recipes": "6.5.3", - "workbox-routing": "6.5.3", - "workbox-strategies": "6.5.3", - "workbox-streams": "6.5.3", - "workbox-sw": "6.5.3", - "workbox-window": "6.5.3" + "workbox-background-sync": "6.6.0", + "workbox-broadcast-update": "6.6.0", + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-google-analytics": "6.6.0", + "workbox-navigation-preload": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-range-requests": "6.6.0", + "workbox-recipes": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0", + "workbox-streams": "6.6.0", + "workbox-sw": "6.6.0", + "workbox-window": "6.6.0" }, "dependencies": { "@apideck/better-ajv-errors": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.3.tgz", - "integrity": "sha512-9o+HO2MbJhJHjDYZaDxJmSDckvDpiuItEsrIShV0DXeCshXWRHhqYyU/PKHMkuClOmFnZhRd6wzv4vpDu/dRKg==", + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz", + "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==", "requires": { "json-schema": "^0.4.0", "jsonpointer": "^5.0.0", @@ -28799,9 +31228,9 @@ } }, "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "requires": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -28836,7 +31265,7 @@ "tr46": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", "requires": { "punycode": "^2.1.0" } @@ -28859,117 +31288,117 @@ } }, "workbox-cacheable-response": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.5.3.tgz", - "integrity": "sha512-6JE/Zm05hNasHzzAGKDkqqgYtZZL2H06ic2GxuRLStA4S/rHUfm2mnLFFXuHAaGR1XuuYyVCEey1M6H3PdZ7SQ==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz", + "integrity": "sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==", "requires": { - "workbox-core": "6.5.3" + "workbox-core": "6.6.0" } }, "workbox-core": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.5.3.tgz", - "integrity": "sha512-Bb9ey5n/M9x+l3fBTlLpHt9ASTzgSGj6vxni7pY72ilB/Pb3XtN+cZ9yueboVhD5+9cNQrC9n/E1fSrqWsUz7Q==" + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz", + "integrity": "sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==" }, "workbox-expiration": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.5.3.tgz", - "integrity": "sha512-jzYopYR1zD04ZMdlbn/R2Ik6ixiXbi15c9iX5H8CTi6RPDz7uhvMLZPKEndZTpfgmUk8mdmT9Vx/AhbuCl5Sqw==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz", + "integrity": "sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==", "requires": { - "idb": "^6.1.4", - "workbox-core": "6.5.3" + "idb": "^7.0.1", + "workbox-core": "6.6.0" } }, "workbox-google-analytics": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.5.3.tgz", - "integrity": "sha512-3GLCHotz5umoRSb4aNQeTbILETcrTVEozSfLhHSBaegHs1PnqCmN0zbIy2TjTpph2AGXiNwDrWGF0AN+UgDNTw==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz", + "integrity": "sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==", "requires": { - "workbox-background-sync": "6.5.3", - "workbox-core": "6.5.3", - "workbox-routing": "6.5.3", - "workbox-strategies": "6.5.3" + "workbox-background-sync": "6.6.0", + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" } }, "workbox-navigation-preload": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.5.3.tgz", - "integrity": "sha512-bK1gDFTc5iu6lH3UQ07QVo+0ovErhRNGvJJO/1ngknT0UQ702nmOUhoN9qE5mhuQSrnK+cqu7O7xeaJ+Rd9Tmg==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz", + "integrity": "sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==", "requires": { - "workbox-core": "6.5.3" + "workbox-core": "6.6.0" } }, "workbox-precaching": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.5.3.tgz", - "integrity": "sha512-sjNfgNLSsRX5zcc63H/ar/hCf+T19fRtTqvWh795gdpghWb5xsfEkecXEvZ8biEi1QD7X/ljtHphdaPvXDygMQ==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz", + "integrity": "sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==", "requires": { - "workbox-core": "6.5.3", - "workbox-routing": "6.5.3", - "workbox-strategies": "6.5.3" + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" } }, "workbox-range-requests": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.5.3.tgz", - "integrity": "sha512-pGCP80Bpn/0Q0MQsfETSfmtXsQcu3M2QCJwSFuJ6cDp8s2XmbUXkzbuQhCUzKR86ZH2Vex/VUjb2UaZBGamijA==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz", + "integrity": "sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==", "requires": { - "workbox-core": "6.5.3" + "workbox-core": "6.6.0" } }, "workbox-recipes": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.5.3.tgz", - "integrity": "sha512-IcgiKYmbGiDvvf3PMSEtmwqxwfQ5zwI7OZPio3GWu4PfehA8jI8JHI3KZj+PCfRiUPZhjQHJ3v1HbNs+SiSkig==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz", + "integrity": "sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==", "requires": { - "workbox-cacheable-response": "6.5.3", - "workbox-core": "6.5.3", - "workbox-expiration": "6.5.3", - "workbox-precaching": "6.5.3", - "workbox-routing": "6.5.3", - "workbox-strategies": "6.5.3" + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" } }, "workbox-routing": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.5.3.tgz", - "integrity": "sha512-DFjxcuRAJjjt4T34RbMm3MCn+xnd36UT/2RfPRfa8VWJGItGJIn7tG+GwVTdHmvE54i/QmVTJepyAGWtoLPTmg==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz", + "integrity": "sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==", "requires": { - "workbox-core": "6.5.3" + "workbox-core": "6.6.0" } }, "workbox-strategies": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.5.3.tgz", - "integrity": "sha512-MgmGRrDVXs7rtSCcetZgkSZyMpRGw8HqL2aguszOc3nUmzGZsT238z/NN9ZouCxSzDu3PQ3ZSKmovAacaIhu1w==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz", + "integrity": "sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==", "requires": { - "workbox-core": "6.5.3" + "workbox-core": "6.6.0" } }, "workbox-streams": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.5.3.tgz", - "integrity": "sha512-vN4Qi8o+b7zj1FDVNZ+PlmAcy1sBoV7SC956uhqYvZ9Sg1fViSbOpydULOssVJ4tOyKRifH/eoi6h99d+sJ33w==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz", + "integrity": "sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==", "requires": { - "workbox-core": "6.5.3", - "workbox-routing": "6.5.3" + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0" } }, "workbox-sw": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.5.3.tgz", - "integrity": "sha512-BQBzm092w+NqdIEF2yhl32dERt9j9MDGUTa2Eaa+o3YKL4Qqw55W9yQC6f44FdAHdAJrJvp0t+HVrfh8AiGj8A==" + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz", + "integrity": "sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==" }, "workbox-webpack-plugin": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.5.3.tgz", - "integrity": "sha512-Es8Xr02Gi6Kc3zaUwR691ZLy61hz3vhhs5GztcklQ7kl5k2qAusPh0s6LF3wEtlpfs9ZDErnmy5SErwoll7jBA==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.0.tgz", + "integrity": "sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==", "requires": { "fast-json-stable-stringify": "^2.1.0", "pretty-bytes": "^5.4.1", "upath": "^1.2.0", "webpack-sources": "^1.4.3", - "workbox-build": "6.5.3" + "workbox-build": "6.6.0" }, "dependencies": { "source-map": { @@ -28989,12 +31418,12 @@ } }, "workbox-window": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.5.3.tgz", - "integrity": "sha512-GnJbx1kcKXDtoJBVZs/P7ddP0Yt52NNy4nocjBpYPiRhMqTpJCNrSL+fGHZ/i/oP6p/vhE8II0sA6AZGKGnssw==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz", + "integrity": "sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==", "requires": { "@types/trusted-types": "^2.0.2", - "workbox-core": "6.5.3" + "workbox-core": "6.6.0" } }, "wrap-ansi": { @@ -29033,7 +31462,7 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, "write-file-atomic": { "version": "3.0.3", @@ -29047,9 +31476,10 @@ } }, "ws": { - "version": "7.5.7", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.7.tgz", - "integrity": "sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==" + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "requires": {} }, "xml-name-validator": { "version": "3.0.0", @@ -29061,20 +31491,15 @@ "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - }, "y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" }, "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" }, "yaml": { "version": "1.10.2", diff --git a/webui/package.json b/webui/package.json index ad418b5..64956a3 100644 --- a/webui/package.json +++ b/webui/package.json @@ -3,14 +3,14 @@ "version": "0.1.0", "private": true, "dependencies": { - "express": "4.18.1", + "express": "4.18.2", "express-winston": "3.4.0", "history": "4.10.1", "http-proxy-middleware": "0.21.0", "react": "18.2.0", "react-dom": "18.2.0", "react-scripts": "^5.0.1", - "winston": "3.8.1" + "winston": "3.8.2" }, "scripts": { "build": "react-scripts build",